From ad55b85912b34df4c74b20502fe910b220e6d7ed Mon Sep 17 00:00:00 2001 From: liabru Date: Sat, 15 Aug 2015 20:38:40 +0100 Subject: [PATCH 1/7] fix Matter.Runner for node --- src/core/Runner.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/core/Runner.js b/src/core/Runner.js index 82a10238..138435c9 100644 --- a/src/core/Runner.js +++ b/src/core/Runner.js @@ -16,17 +16,17 @@ var Runner = {}; (function() { - if (typeof window === 'undefined') { - // TODO: support Runner on non-browser environments. - return; - } + var _requestAnimationFrame, + _cancelAnimationFrame; - var _requestAnimationFrame = window.requestAnimationFrame || window.webkitRequestAnimationFrame + if (typeof window !== 'undefined') { + _requestAnimationFrame = window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || window.msRequestAnimationFrame || function(callback){ window.setTimeout(function() { callback(Common.now()); }, 1000 / 60); }; - var _cancelAnimationFrame = window.cancelAnimationFrame || window.mozCancelAnimationFrame + _cancelAnimationFrame = window.cancelAnimationFrame || window.mozCancelAnimationFrame || window.webkitCancelAnimationFrame || window.msCancelAnimationFrame; + } /** * Creates a new Runner. The options parameter is an object that specifies any properties you wish to override the defaults. @@ -163,7 +163,7 @@ var Runner = {}; Events.trigger(runner, 'afterUpdate', event); // render - if (engine.render) { + if (engine.render && engine.render.controller) { Events.trigger(runner, 'beforeRender', event); Events.trigger(engine, 'beforeRender', event); // @deprecated From 2de1161db200d49adeab51aa6b96f73b17eb7baa Mon Sep 17 00:00:00 2001 From: liabru Date: Sat, 15 Aug 2015 20:39:13 +0100 Subject: [PATCH 2/7] fix Matter.Demo for node --- demo/js/Demo.js | 110 +++++++++++++++++++++++++++++------------------- 1 file changed, 66 insertions(+), 44 deletions(-) diff --git a/demo/js/Demo.js b/demo/js/Demo.js index b9370313..ba3d0d17 100644 --- a/demo/js/Demo.js +++ b/demo/js/Demo.js @@ -1,5 +1,15 @@ (function() { + var _isBrowser = typeof window !== 'undefined', + Matter = _isBrowser ? window.Matter : require('../../build/matter-dev.js'); + + var Demo = {}; + Matter.Demo = Demo; + + if (!_isBrowser) { + module.exports = Demo; + } + // Matter aliases var Engine = Matter.Engine, World = Matter.World, @@ -19,14 +29,11 @@ Svg = Matter.Svg; // MatterTools aliases - if (window.MatterTools) { + if (_isBrowser && window.MatterTools) { var Gui = MatterTools.Gui, Inspector = MatterTools.Inspector; } - var Demo = {}; - Matter.Demo = Demo; - var _engine, _runner, _gui, @@ -34,15 +41,13 @@ _sceneName, _mouseConstraint, _sceneEvents = [], - _useInspector = window.location.hash.indexOf('-inspect') !== -1, - _isMobile = /(ipad|iphone|ipod|android)/gi.test(navigator.userAgent), - _isAutomatedTest = window._phantom ? true : false; + _useInspector = _isBrowser && window.location.hash.indexOf('-inspect') !== -1, + _isMobile = _isBrowser && /(ipad|iphone|ipod|android)/gi.test(navigator.userAgent), + _isAutomatedTest = _isBrowser ? false : true; // initialise the demo Demo.init = function() { - var container = document.getElementById('canvas-container'); - // some example engine options var options = { positionIterations: 6, @@ -53,11 +58,18 @@ // create a Matter engine // NOTE: this is actually Matter.Engine.create(), see the aliases at top of this file - _engine = Engine.create(container, options); - - // add a mouse controlled constraint - _mouseConstraint = MouseConstraint.create(_engine); - World.add(_engine.world, _mouseConstraint); + if (_isBrowser) { + var container = document.getElementById('canvas-container'); + _engine = Engine.create(container, options); + + // add a mouse controlled constraint + _mouseConstraint = MouseConstraint.create(_engine); + World.add(_engine.world, _mouseConstraint); + } else { + _engine = Engine.create(options); + _engine.render = {}; + _engine.render.options = {}; + } // engine reference for external use Matter.Demo._engine = _engine; @@ -84,10 +96,12 @@ // call init when the page has loaded fully - if (window.addEventListener) { - window.addEventListener('load', Demo.init); - } else if (window.attachEvent) { - window.attachEvent('load', Demo.init); + if (_isBrowser) { + if (window.addEventListener) { + window.addEventListener('load', Demo.init); + } else if (window.attachEvent) { + window.attachEvent('load', Demo.init); + } } // each demo scene is set up in its own function, see below @@ -1720,15 +1734,17 @@ Engine.clear(_engine); // clear scene graph (if defined in controller) - var renderController = _engine.render.controller; - if (renderController.clear) - renderController.clear(_engine.render); + if (_engine.render) { + var renderController = _engine.render.controller; + if (renderController && renderController.clear) + renderController.clear(_engine.render); + } // clear all scene events for (var i = 0; i < _sceneEvents.length; i++) Events.off(_engine, _sceneEvents[i]); - if (_mouseConstraint.events) { + if (_mouseConstraint && _mouseConstraint.events) { for (i = 0; i < _sceneEvents.length; i++) Events.off(_mouseConstraint, _sceneEvents[i]); } @@ -1743,7 +1759,7 @@ Events.off(_runner, _sceneEvents[i]); } - if (_engine.render.events) { + if (_engine.render && _engine.render.events) { for (i = 0; i < _sceneEvents.length; i++) Events.off(_engine.render, _sceneEvents[i]); } @@ -1757,8 +1773,10 @@ Common._seed = 0; // reset mouse offset and scale (only required for Demo.views) - Mouse.setScale(_mouseConstraint.mouse, { x: 1, y: 1 }); - Mouse.setOffset(_mouseConstraint.mouse, { x: 0, y: 0 }); + if (_mouseConstraint) { + Mouse.setScale(_mouseConstraint.mouse, { x: 1, y: 1 }); + Mouse.setOffset(_mouseConstraint.mouse, { x: 0, y: 0 }); + } _engine.enableSleeping = false; _engine.world.gravity.y = 1; @@ -1773,26 +1791,30 @@ Bodies.rectangle(-offset, 300, 50.5, 600.5 + 2 * offset, { isStatic: true }) ]); - World.add(_world, _mouseConstraint); + if (_mouseConstraint) { + World.add(_world, _mouseConstraint); + } - var renderOptions = _engine.render.options; - renderOptions.wireframes = true; - renderOptions.hasBounds = false; - renderOptions.showDebug = false; - renderOptions.showBroadphase = false; - renderOptions.showBounds = false; - renderOptions.showVelocity = false; - renderOptions.showCollisions = false; - renderOptions.showAxes = false; - renderOptions.showPositions = false; - renderOptions.showAngleIndicator = true; - renderOptions.showIds = false; - renderOptions.showShadows = false; - renderOptions.showVertexNumbers = false; - renderOptions.showConvexHulls = false; - renderOptions.showInternalEdges = false; - renderOptions.showSeparations = false; - renderOptions.background = '#fff'; + if (_engine.render) { + var renderOptions = _engine.render.options; + renderOptions.wireframes = true; + renderOptions.hasBounds = false; + renderOptions.showDebug = false; + renderOptions.showBroadphase = false; + renderOptions.showBounds = false; + renderOptions.showVelocity = false; + renderOptions.showCollisions = false; + renderOptions.showAxes = false; + renderOptions.showPositions = false; + renderOptions.showAngleIndicator = true; + renderOptions.showIds = false; + renderOptions.showShadows = false; + renderOptions.showVertexNumbers = false; + renderOptions.showConvexHulls = false; + renderOptions.showInternalEdges = false; + renderOptions.showSeparations = false; + renderOptions.background = '#fff'; + } if (_isMobile) renderOptions.showDebug = true; From 75af920f1d422622226ba8aeefe49620d12eb039 Mon Sep 17 00:00:00 2001 From: liabru Date: Mon, 17 Aug 2015 00:47:26 +0100 Subject: [PATCH 3/7] change browser tests to use JSON.stringify --- test/browser/TestDemo.js | 20 ++++++++++---------- test/{browser => }/lib/resurrect.js | 0 2 files changed, 10 insertions(+), 10 deletions(-) rename test/{browser => }/lib/resurrect.js (100%) diff --git a/test/browser/TestDemo.js b/test/browser/TestDemo.js index 989ce3af..dbf7bd8c 100644 --- a/test/browser/TestDemo.js +++ b/test/browser/TestDemo.js @@ -1,6 +1,6 @@ var page = require('webpage').create(); var fs = require('fs'); -var Resurrect = require('./lib/resurrect'); +var Resurrect = require('../lib/resurrect'); var compare = require('fast-json-patch').compare; var system = require('system'); @@ -70,11 +70,11 @@ var test = function(status) { return engine.world; }, demo, frames); - worldEnd = resurrect.resurrect(resurrect.stringify(worldEnd, precisionLimiter)); - worldStart = resurrect.resurrect(resurrect.stringify(worldStart, precisionLimiter)); + worldEnd = JSON.parse(resurrect.stringify(worldEnd, precisionLimiter)); + worldStart = JSON.parse(resurrect.stringify(worldStart, precisionLimiter)); if (fs.exists(worldStartPath)) { - var worldStartRef = resurrect.resurrect(fs.read(worldStartPath)); + var worldStartRef = JSON.parse(fs.read(worldStartPath)); var worldStartDiff = compare(worldStartRef, worldStart); if (worldStartDiff.length !== 0) { @@ -84,18 +84,18 @@ var test = function(status) { if (forceUpdate) { hasCreated = true; - fs.write(worldStartPath, resurrect.stringify(worldStart, precisionLimiter, 2), 'w'); + fs.write(worldStartPath, JSON.stringify(worldStart, precisionLimiter, 2), 'w'); } else { hasChanged = true; } } } else { hasCreated = true; - fs.write(worldStartPath, resurrect.stringify(worldStart, precisionLimiter, 2), 'w'); + fs.write(worldStartPath, JSON.stringify(worldStart, precisionLimiter, 2), 'w'); } if (fs.exists(worldEndPath)) { - var worldEndRef = resurrect.resurrect(fs.read(worldEndPath)); + var worldEndRef = JSON.parse(fs.read(worldEndPath)); var worldEndDiff = compare(worldEndRef, worldEnd); if (worldEndDiff.length !== 0) { @@ -105,14 +105,14 @@ var test = function(status) { if (forceUpdate) { hasCreated = true; - fs.write(worldEndPath, resurrect.stringify(worldEnd, precisionLimiter, 2), 'w'); + fs.write(worldEndPath, JSON.stringify(worldEnd, precisionLimiter, 2), 'w'); } else { hasChanged = true; } } } else { hasCreated = true; - fs.write(worldEndPath, resurrect.stringify(worldEnd, precisionLimiter, 2), 'w'); + fs.write(worldEndPath, JSON.stringify(worldEnd, precisionLimiter, 2), 'w'); } if (hasChanged) { @@ -167,7 +167,7 @@ page.onError = function(msg, trace) { if (trace && trace.length) { trace.forEach(function(t) { - msgStack.push(' -> ' + (t.file || t.sourceURL) + ': ' + t.line + (t.function ? ' (fn: ' + t.function +')' : '')); + msgStack.push(' at ' + (t.file || t.sourceURL) + ': ' + t.line + (t.function ? ' (fn: ' + t.function +')' : '')); }); } diff --git a/test/browser/lib/resurrect.js b/test/lib/resurrect.js similarity index 100% rename from test/browser/lib/resurrect.js rename to test/lib/resurrect.js From 06eea3ec3a4d9ef773203bd196c6f59ebe738f24 Mon Sep 17 00:00:00 2001 From: liabru Date: Mon, 17 Aug 2015 00:48:52 +0100 Subject: [PATCH 4/7] fix Matter.Demo for node --- demo/js/Demo.js | 36 ++++++++++++++++++------------------ src/core/Events.js | 2 +- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/demo/js/Demo.js b/demo/js/Demo.js index ba3d0d17..1f034455 100644 --- a/demo/js/Demo.js +++ b/demo/js/Demo.js @@ -8,6 +8,7 @@ if (!_isBrowser) { module.exports = Demo; + window = {}; } // Matter aliases @@ -29,7 +30,7 @@ Svg = Matter.Svg; // MatterTools aliases - if (_isBrowser && window.MatterTools) { + if (window.MatterTools) { var Gui = MatterTools.Gui, Inspector = MatterTools.Inspector; } @@ -43,7 +44,7 @@ _sceneEvents = [], _useInspector = _isBrowser && window.location.hash.indexOf('-inspect') !== -1, _isMobile = _isBrowser && /(ipad|iphone|ipod|android)/gi.test(navigator.userAgent), - _isAutomatedTest = _isBrowser ? false : true; + _isAutomatedTest = !_isBrowser || window._phantom; // initialise the demo @@ -95,13 +96,11 @@ }; // call init when the page has loaded fully - - if (_isBrowser) { - if (window.addEventListener) { - window.addEventListener('load', Demo.init); - } else if (window.attachEvent) { - window.attachEvent('load', Demo.init); - } + + if (window.addEventListener) { + window.addEventListener('load', Demo.init); + } else if (window.attachEvent) { + window.attachEvent('load', Demo.init); } // each demo scene is set up in its own function, see below @@ -690,9 +689,6 @@ var renderOptions = _engine.render.options; renderOptions.wireframes = false; renderOptions.showAngleIndicator = false; - - if (window.chrome) - renderOptions.showShadows = true; }; Demo.chains = function() { @@ -1728,7 +1724,8 @@ }; Demo.reset = function() { - var _world = _engine.world; + var _world = _engine.world, + i; World.clear(_world); Engine.clear(_engine); @@ -1741,8 +1738,10 @@ } // clear all scene events - for (var i = 0; i < _sceneEvents.length; i++) - Events.off(_engine, _sceneEvents[i]); + if (_engine.events) { + for (i = 0; i < _sceneEvents.length; i++) + Events.off(_engine, _sceneEvents[i]); + } if (_mouseConstraint && _mouseConstraint.events) { for (i = 0; i < _sceneEvents.length; i++) @@ -1814,10 +1813,11 @@ renderOptions.showInternalEdges = false; renderOptions.showSeparations = false; renderOptions.background = '#fff'; - } - if (_isMobile) - renderOptions.showDebug = true; + if (_isMobile) { + renderOptions.showDebug = true; + } + } }; })(); diff --git a/src/core/Events.js b/src/core/Events.js index 1e87d365..175a2d9d 100644 --- a/src/core/Events.js +++ b/src/core/Events.js @@ -55,7 +55,7 @@ var Events = {}; var callbacks = object.events[names[i]], newCallbacks = []; - if (callback) { + if (callback && callbacks) { for (var j = 0; j < callbacks.length; j++) { if (callbacks[j] !== callback) newCallbacks.push(callbacks[j]); From 71c1ae8786bb763fc166658675d379960827dd8b Mon Sep 17 00:00:00 2001 From: liabru Date: Mon, 17 Aug 2015 00:50:23 +0100 Subject: [PATCH 5/7] added node demo tests --- .gitignore | 3 +- .jshintrc | 5 +- Gruntfile.js | 36 +++++++-- package.json | 5 +- test/node/TestDemo.js | 177 ++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 216 insertions(+), 10 deletions(-) create mode 100644 test/node/TestDemo.js diff --git a/.gitignore b/.gitignore index 813b9840..e8fa5d7d 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,5 @@ matter-doc-theme build/matter-dev.js build/matter-dev.min.js demo/js/lib/matter-dev.js -test/browser/diffs \ No newline at end of file +test/browser/diffs +test/node/diffs \ No newline at end of file diff --git a/.jshintrc b/.jshintrc index 60e8c21c..749f70f3 100644 --- a/.jshintrc +++ b/.jshintrc @@ -31,8 +31,9 @@ "undef": true, "-W079": true, // Silence redefinition errors (they are false positives). "predef": [ - "Matter", "window", "document", "Element", "MatterTools", "PIXI", "phantom", - "$", "Image", "navigator", "setTimeout", "decomp", "HTMLElement", "require", + "Matter", "window", "document", "Element", "MatterTools", + "phantom", "process", "HTMLElement", "require", "PIXI", + "$", "Image", "navigator", "setTimeout", "decomp", "module", "Body", "Composite", "World", "Contact", "Detector", "Grid", "Pairs", "Pair", "Resolver", "SAT", "Constraint", "MouseConstraint", "Common", "Engine", "Mouse", "Sleeping", "Bodies", "Composites", diff --git a/Gruntfile.js b/Gruntfile.js index 4fccedc1..3c9c18e6 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -57,7 +57,7 @@ module.exports = function(grunt) { options: { jshintrc: '.jshintrc' }, - all: ['src/**/*.js', 'demo/js/*.js', 'test/browser/TestDemo.js', '!src/module/*'] + all: ['src/**/*.js', 'demo/js/*.js', 'test/browser/TestDemo.js', 'test/node/TestDemo.js', '!src/module/*'] }, connect: { watch: { @@ -114,7 +114,7 @@ module.exports = function(grunt) { } }, shell: { - testDemo: { + testDemoBrowser: { command: function(arg) { arg = arg ? ' --' + arg : ''; return 'phantomjs test/browser/TestDemo.js' + arg; @@ -124,6 +124,17 @@ module.exports = function(grunt) { timeout: 1000 * 60 } } + }, + testDemoNode: { + command: function(arg) { + arg = arg ? ' --' + arg : ''; + return 'node test/node/TestDemo.js' + arg; + }, + options: { + execOptions: { + timeout: 1000 * 60 + } + } } } }); @@ -139,7 +150,7 @@ module.exports = function(grunt) { grunt.loadNpmTasks('grunt-shell'); grunt.registerTask('default', ['test', 'build']); - grunt.registerTask('test', ['build:dev', 'connect:serve', 'jshint', 'test:demo']); + grunt.registerTask('test', ['build:dev', 'connect:serve', 'jshint', 'test:demo', 'test:demoNode']); grunt.registerTask('dev', ['build:dev', 'connect:watch', 'watch']); grunt.registerTask('test:demo', function() { @@ -147,11 +158,24 @@ module.exports = function(grunt) { diff = grunt.option('diff'); if (updateAll) { - grunt.task.run('shell:testDemo:updateAll'); + grunt.task.run('shell:testDemoBrowser:updateAll'); + } else if (diff) { + grunt.task.run('shell:testDemoBrowser:diff'); + } else { + grunt.task.run('shell:testDemoBrowser'); + } + }); + + grunt.registerTask('test:demoNode', function() { + var updateAll = grunt.option('updateAll'), + diff = grunt.option('diff'); + + if (updateAll) { + grunt.task.run('shell:testDemoNode:updateAll'); } else if (diff) { - grunt.task.run('shell:testDemo:diff'); + grunt.task.run('shell:testDemoNode:diff'); } else { - grunt.task.run('shell:testDemo'); + grunt.task.run('shell:testDemoNode'); } }); diff --git a/package.json b/package.json index 20b9a7b6..eefe1356 100644 --- a/package.json +++ b/package.json @@ -20,6 +20,7 @@ "rigid body physics" ], "devDependencies": { + "cheerio": "^0.19.0", "fast-json-patch": "^0.5.4", "grunt": "~0.4.2", "grunt-contrib-concat": "~0.3.0", @@ -30,7 +31,9 @@ "grunt-contrib-watch": "~0.5.3", "grunt-contrib-yuidoc": "~0.5.1", "grunt-preprocess": "^4.1.0", - "grunt-shell": "^1.1.2" + "grunt-shell": "^1.1.2", + "mkdirp": "^0.5.1", + "rimraf": "^2.4.2" }, "scripts": { "dev": "npm install && grunt dev", diff --git a/test/node/TestDemo.js b/test/node/TestDemo.js new file mode 100644 index 00000000..04a5eb85 --- /dev/null +++ b/test/node/TestDemo.js @@ -0,0 +1,177 @@ +var fs = require('fs'); +var mkdirp = require('mkdirp').sync; +var removeDir = require('rimraf').sync; +var Resurrect = require('../lib/resurrect'); +var compare = require('fast-json-patch').compare; +var path = require('path'); +var $ = require('cheerio'); +var Matter = require('../../build/matter-dev.js'); +Matter.Demo = require('../../demo/js/Demo.js'); + +var demo, + frames = 10, + refsPath = 'test/node/refs', + diffsPath = 'test/node/diffs'; + +var update = arg('--update'), + updateAll = typeof arg('--updateAll') !== 'undefined', + diff = arg('--diff'); + +var resurrect = new Resurrect({ cleanup: true, revive: false }), + created = [], + changed = []; + +var test = function(status) { + var demos = getDemoNames(); + + removeDir(diffsPath); + + if (diff) { + mkdirp(diffsPath); + } + + for (var i = 0; i < demos.length; i += 1) { + demo = demos[i]; + + var hasChanged = false, + hasCreated = false, + forceUpdate = update === demo || updateAll, + worldStartPath = refsPath + '/' + demo + '/' + demo + '-0.json', + worldEndPath = refsPath + '/' + demo + '/' + demo + '-' + frames + '.json', + worldStartDiffPath = diffsPath + '/' + demo + '/' + demo + '-0.json', + worldEndDiffPath = diffsPath + '/' + demo + '/' + demo + '-' + frames + '.json'; + + Matter.Demo.init(); + + var engine = Matter.Demo._engine, + runner = Matter.Runner.create(); + + if (!(demo in Matter.Demo)) { + throw '\'' + demo + '\' is not defined in Matter.Demo'; + } + + Matter.Demo[demo](); + + var worldStart = JSON.parse(resurrect.stringify(engine.world, precisionLimiter)); + + for (var j = 0; j <= frames; j += 1) { + Matter.Runner.tick(runner, engine, j * runner.delta); + } + + var worldEnd = JSON.parse(resurrect.stringify(engine.world, precisionLimiter)); + + if (fs.existsSync(worldStartPath)) { + var worldStartRef = JSON.parse(fs.readFileSync(worldStartPath)); + var worldStartDiff = compare(worldStartRef, worldStart); + + if (worldStartDiff.length !== 0) { + if (diff) { + writeFile(worldStartDiffPath, JSON.stringify(worldStartDiff, precisionLimiter, 2)); + } + + if (forceUpdate) { + hasCreated = true; + writeFile(worldStartPath, JSON.stringify(worldStart, precisionLimiter, 2)); + } else { + hasChanged = true; + } + } + } else { + hasCreated = true; + writeFile(worldStartPath, JSON.stringify(worldStart, precisionLimiter, 2)); + } + + if (fs.existsSync(worldEndPath)) { + var worldEndRef = JSON.parse(fs.readFileSync(worldEndPath)); + var worldEndDiff = compare(worldEndRef, worldEnd); + + if (worldEndDiff.length !== 0) { + if (diff) { + writeFile(worldEndDiffPath, JSON.stringify(worldEndDiff, precisionLimiter, 2)); + } + + if (forceUpdate) { + hasCreated = true; + writeFile(worldEndPath, JSON.stringify(worldEnd, precisionLimiter, 2)); + } else { + hasChanged = true; + } + } + } else { + hasCreated = true; + writeFile(worldEndPath, JSON.stringify(worldEnd, precisionLimiter, 2)); + } + + if (hasChanged) { + changed.push("'" + demo + "'"); + process.stdout.write('x'); + } else if (hasCreated) { + created.push("'" + demo + "'"); + process.stdout.write('+'); + } else { + process.stdout.write('.'); + } + } + + if (created.length > 0) { + console.log('\nupdated', created.join(', ')); + } + + var isOk = changed.length === 0 ? 1 : 0; + + console.log(''); + + if (isOk) { + console.log('ok'); + } else { + console.log('\nchanges detected on:'); + console.log(changed.join(', ')); + console.log('\nreview, then --update [name] or --updateAll'); + console.log('use --diff for diff log'); + } + + setTimeout(function() { + process.exit(!isOk); + }, 100); +}; + +var precisionLimiter = function(key, value) { + if (typeof value === 'number') { + return parseFloat(value.toFixed(5)); + } + return value; +}; + +function arg(name) { + var index = process.argv.indexOf(name); + if (index >= 0) { + return process.argv[index + 1] || true; + } + return undefined; +} + +var getDemoNames = function() { + var demos = [], + skip = [ + 'terrain', 'svg', 'concave', + 'slingshot', 'views', 'raycasting', + 'events', 'collisionFiltering', 'sleeping' + ]; + + $('#demo-select option', fs.readFileSync('demo/dev.html').toString()) + .each(function() { + var name = $(this).val(); + if (skip.indexOf(name) === -1) { + demos.push(name); + } + }); + + return demos; +}; + +var writeFile = function(filePath, string) { + mkdirp(path.dirname(filePath)); + fs.writeFileSync(filePath, string); +}; + +test(); \ No newline at end of file From b1e6a45ca11560987d48c35bc00d905fcc4efc0c Mon Sep 17 00:00:00 2001 From: liabru Date: Mon, 17 Aug 2015 00:50:47 +0100 Subject: [PATCH 6/7] updated node test refs --- test/node/refs/airFriction/airFriction-0.json | 1535 + .../node/refs/airFriction/airFriction-10.json | 1605 + test/node/refs/avalanche/avalanche-0.json | 40592 +++++++ test/node/refs/avalanche/avalanche-10.json | 41662 +++++++ test/node/refs/ballPool/ballPool-0.json | 75258 ++++++++++++ test/node/refs/ballPool/ballPool-10.json | 76828 +++++++++++++ test/node/refs/beachBalls/beachBalls-0.json | 3673 + test/node/refs/beachBalls/beachBalls-10.json | 3763 + test/node/refs/bridge/bridge-0.json | 8908 ++ test/node/refs/bridge/bridge-10.json | 9238 ++ test/node/refs/broadphase/broadphase-0.json | 25272 ++++ test/node/refs/broadphase/broadphase-10.json | 26312 +++++ test/node/refs/car/car-0.json | 4793 + test/node/refs/car/car-10.json | 4923 + test/node/refs/catapult/catapult-0.json | 3205 + test/node/refs/catapult/catapult-10.json | 3335 + test/node/refs/chains/chains-0.json | 8313 ++ test/node/refs/chains/chains-10.json | 8553 ++ test/node/refs/circleStack/circleStack-0.json | 45958 ++++++++ .../node/refs/circleStack/circleStack-10.json | 46998 ++++++++ test/node/refs/cloth/cloth-0.json | 92101 +++++++++++++++ test/node/refs/cloth/cloth-10.json | 94561 +++++++++++++++ .../compositeManipulation-0.json | 4174 + .../compositeManipulation-10.json | 4374 + test/node/refs/compound/compound-0.json | 4383 + test/node/refs/compound/compound-10.json | 4443 + .../refs/compoundStack/compoundStack-0.json | 48838 ++++++++ .../refs/compoundStack/compoundStack-10.json | 49598 ++++++++ test/node/refs/friction/friction-0.json | 2183 + test/node/refs/friction/friction-10.json | 2283 + test/node/refs/gravity/gravity-0.json | 25272 ++++ test/node/refs/gravity/gravity-10.json | 26312 +++++ .../refs/manipulation/manipulation-0.json | 3382 + .../refs/manipulation/manipulation-10.json | 3509 + test/node/refs/mixed/mixed-0.json | 19816 ++++ test/node/refs/mixed/mixed-10.json | 20456 ++++ test/node/refs/mixedSolid/mixedSolid-0.json | 9564 ++ test/node/refs/mixedSolid/mixedSolid-10.json | 9964 ++ .../refs/newtonsCradle/newtonsCradle-0.json | 7330 ++ .../refs/newtonsCradle/newtonsCradle-10.json | 7490 ++ test/node/refs/pyramid/pyramid-0.json | 13822 +++ test/node/refs/pyramid/pyramid-10.json | 14502 +++ test/node/refs/restitution/restitution-0.json | 2279 + .../node/refs/restitution/restitution-10.json | 2369 + test/node/refs/rounded/rounded-0.json | 5093 + test/node/refs/rounded/rounded-10.json | 5213 + test/node/refs/softBody/softBody-0.json | 34670 ++++++ test/node/refs/softBody/softBody-10.json | 35360 ++++++ test/node/refs/sprites/sprites-0.json | 13142 +++ test/node/refs/sprites/sprites-10.json | 13582 +++ test/node/refs/stack/stack-0.json | 11008 ++ test/node/refs/stack/stack-10.json | 11548 ++ .../refs/staticFriction/staticFriction-0.json | 2596 + .../staticFriction/staticFriction-10.json | 2706 + test/node/refs/stress/stress-0.json | 55228 +++++++++ test/node/refs/stress/stress-10.json | 57968 ++++++++++ test/node/refs/stress2/stress2-0.json | 91408 +++++++++++++++ test/node/refs/stress2/stress2-10.json | 95948 ++++++++++++++++ test/node/refs/timescale/timescale-0.json | 24086 ++++ test/node/refs/timescale/timescale-10.json | 24816 ++++ .../refs/wreckingBall/wreckingBall-0.json | 11592 ++ .../refs/wreckingBall/wreckingBall-10.json | 12142 ++ 62 files changed, 1421835 insertions(+) create mode 100644 test/node/refs/airFriction/airFriction-0.json create mode 100644 test/node/refs/airFriction/airFriction-10.json create mode 100644 test/node/refs/avalanche/avalanche-0.json create mode 100644 test/node/refs/avalanche/avalanche-10.json create mode 100644 test/node/refs/ballPool/ballPool-0.json create mode 100644 test/node/refs/ballPool/ballPool-10.json create mode 100644 test/node/refs/beachBalls/beachBalls-0.json create mode 100644 test/node/refs/beachBalls/beachBalls-10.json create mode 100644 test/node/refs/bridge/bridge-0.json create mode 100644 test/node/refs/bridge/bridge-10.json create mode 100644 test/node/refs/broadphase/broadphase-0.json create mode 100644 test/node/refs/broadphase/broadphase-10.json create mode 100644 test/node/refs/car/car-0.json create mode 100644 test/node/refs/car/car-10.json create mode 100644 test/node/refs/catapult/catapult-0.json create mode 100644 test/node/refs/catapult/catapult-10.json create mode 100644 test/node/refs/chains/chains-0.json create mode 100644 test/node/refs/chains/chains-10.json create mode 100644 test/node/refs/circleStack/circleStack-0.json create mode 100644 test/node/refs/circleStack/circleStack-10.json create mode 100644 test/node/refs/cloth/cloth-0.json create mode 100644 test/node/refs/cloth/cloth-10.json create mode 100644 test/node/refs/compositeManipulation/compositeManipulation-0.json create mode 100644 test/node/refs/compositeManipulation/compositeManipulation-10.json create mode 100644 test/node/refs/compound/compound-0.json create mode 100644 test/node/refs/compound/compound-10.json create mode 100644 test/node/refs/compoundStack/compoundStack-0.json create mode 100644 test/node/refs/compoundStack/compoundStack-10.json create mode 100644 test/node/refs/friction/friction-0.json create mode 100644 test/node/refs/friction/friction-10.json create mode 100644 test/node/refs/gravity/gravity-0.json create mode 100644 test/node/refs/gravity/gravity-10.json create mode 100644 test/node/refs/manipulation/manipulation-0.json create mode 100644 test/node/refs/manipulation/manipulation-10.json create mode 100644 test/node/refs/mixed/mixed-0.json create mode 100644 test/node/refs/mixed/mixed-10.json create mode 100644 test/node/refs/mixedSolid/mixedSolid-0.json create mode 100644 test/node/refs/mixedSolid/mixedSolid-10.json create mode 100644 test/node/refs/newtonsCradle/newtonsCradle-0.json create mode 100644 test/node/refs/newtonsCradle/newtonsCradle-10.json create mode 100644 test/node/refs/pyramid/pyramid-0.json create mode 100644 test/node/refs/pyramid/pyramid-10.json create mode 100644 test/node/refs/restitution/restitution-0.json create mode 100644 test/node/refs/restitution/restitution-10.json create mode 100644 test/node/refs/rounded/rounded-0.json create mode 100644 test/node/refs/rounded/rounded-10.json create mode 100644 test/node/refs/softBody/softBody-0.json create mode 100644 test/node/refs/softBody/softBody-10.json create mode 100644 test/node/refs/sprites/sprites-0.json create mode 100644 test/node/refs/sprites/sprites-10.json create mode 100644 test/node/refs/stack/stack-0.json create mode 100644 test/node/refs/stack/stack-10.json create mode 100644 test/node/refs/staticFriction/staticFriction-0.json create mode 100644 test/node/refs/staticFriction/staticFriction-10.json create mode 100644 test/node/refs/stress/stress-0.json create mode 100644 test/node/refs/stress/stress-10.json create mode 100644 test/node/refs/stress2/stress2-0.json create mode 100644 test/node/refs/stress2/stress2-10.json create mode 100644 test/node/refs/timescale/timescale-0.json create mode 100644 test/node/refs/timescale/timescale-10.json create mode 100644 test/node/refs/wreckingBall/wreckingBall-0.json create mode 100644 test/node/refs/wreckingBall/wreckingBall-10.json diff --git a/test/node/refs/airFriction/airFriction-0.json b/test/node/refs/airFriction/airFriction-0.json new file mode 100644 index 00000000..1916d149 --- /dev/null +++ b/test/node/refs/airFriction/airFriction-0.json @@ -0,0 +1,1535 @@ +[ + { + "id": 10, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 156 + }, + "composites": { + "#": 157 + }, + "label": "World", + "gravity": { + "#": 158 + }, + "bounds": { + "#": 159 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 112 + }, + { + "#": 134 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 4, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 91 + }, + "angle": 0, + "vertices": { + "#": 92 + }, + "position": { + "#": 97 + }, + "force": { + "#": 98 + }, + "torque": 0, + "positionImpulse": { + "#": 99 + }, + "constraintImpulse": { + "#": 100 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 101 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.001, + "collisionFilter": { + "#": 102 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 103 + }, + "bounds": { + "#": 105 + }, + "positionPrev": { + "#": 108 + }, + "anglePrev": 0, + "axes": { + "#": 109 + }, + "area": 3600, + "mass": 3.6, + "inverseMass": 0.27778, + "inertia": 8640, + "inverseInertia": 0.00012, + "parent": { + "#": 90 + }, + "sleepCounter": 0 + }, + [ + { + "#": 90 + } + ], + [ + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + } + ], + { + "x": 170, + "y": 70, + "index": 0, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 230, + "y": 70, + "index": 1, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 230, + "y": 130, + "index": 2, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 170, + "y": 130, + "index": 3, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 200, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 104 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 106 + }, + "max": { + "#": 107 + } + }, + { + "x": 170, + "y": 70 + }, + { + "x": 230, + "y": 130 + }, + { + "x": 200, + "y": 100 + }, + [ + { + "#": 110 + }, + { + "#": 111 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 113 + }, + "angle": 0, + "vertices": { + "#": 114 + }, + "position": { + "#": 119 + }, + "force": { + "#": 120 + }, + "torque": 0, + "positionImpulse": { + "#": 121 + }, + "constraintImpulse": { + "#": 122 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 123 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.05, + "collisionFilter": { + "#": 124 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 125 + }, + "bounds": { + "#": 127 + }, + "positionPrev": { + "#": 130 + }, + "anglePrev": 0, + "axes": { + "#": 131 + }, + "area": 3600, + "mass": 3.6, + "inverseMass": 0.27778, + "inertia": 8640, + "inverseInertia": 0.00012, + "parent": { + "#": 112 + }, + "sleepCounter": 0 + }, + [ + { + "#": 112 + } + ], + [ + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + } + ], + { + "x": 370, + "y": 70, + "index": 0, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 430, + "y": 70, + "index": 1, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 430, + "y": 130, + "index": 2, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 370, + "y": 130, + "index": 3, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 400, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 126 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 128 + }, + "max": { + "#": 129 + } + }, + { + "x": 370, + "y": 70 + }, + { + "x": 430, + "y": 130 + }, + { + "x": 400, + "y": 100 + }, + [ + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 135 + }, + "angle": 0, + "vertices": { + "#": 136 + }, + "position": { + "#": 141 + }, + "force": { + "#": 142 + }, + "torque": 0, + "positionImpulse": { + "#": 143 + }, + "constraintImpulse": { + "#": 144 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 145 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.1, + "collisionFilter": { + "#": 146 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 147 + }, + "bounds": { + "#": 149 + }, + "positionPrev": { + "#": 152 + }, + "anglePrev": 0, + "axes": { + "#": 153 + }, + "area": 3600, + "mass": 3.6, + "inverseMass": 0.27778, + "inertia": 8640, + "inverseInertia": 0.00012, + "parent": { + "#": 134 + }, + "sleepCounter": 0 + }, + [ + { + "#": 134 + } + ], + [ + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + } + ], + { + "x": 570, + "y": 70, + "index": 0, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 630, + "y": 70, + "index": 1, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 630, + "y": 130, + "index": 2, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 570, + "y": 130, + "index": 3, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 600, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 148 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 150 + }, + "max": { + "#": 151 + } + }, + { + "x": 570, + "y": 70 + }, + { + "x": 630, + "y": 130 + }, + { + "x": 600, + "y": 100 + }, + [ + { + "#": 154 + }, + { + "#": 155 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 160 + }, + "max": { + "#": 161 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/airFriction/airFriction-10.json b/test/node/refs/airFriction/airFriction-10.json new file mode 100644 index 00000000..8eaee1b5 --- /dev/null +++ b/test/node/refs/airFriction/airFriction-10.json @@ -0,0 +1,1605 @@ +[ + { + "id": 10, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 163 + }, + "composites": { + "#": 164 + }, + "label": "World", + "gravity": { + "#": 165 + }, + "bounds": { + "#": 166 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + }, + { + "#": 94 + }, + { + "#": 117 + }, + { + "#": 140 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + { + "id": 4, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 96 + }, + "position": { + "#": 101 + }, + "force": { + "#": 102 + }, + "torque": 0, + "positionImpulse": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "totalContacts": 0, + "speed": 3.04032, + "angularSpeed": 0, + "velocity": { + "#": 105 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.001, + "collisionFilter": { + "#": 106 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 107 + }, + "bounds": { + "#": 109 + }, + "positionPrev": { + "#": 112 + }, + "anglePrev": 0, + "axes": { + "#": 113 + }, + "area": 3600, + "mass": 3.6, + "inverseMass": 0.27778, + "inertia": 8640, + "inverseInertia": 0.00012, + "parent": { + "#": 94 + }, + "sleepCounter": 0, + "region": { + "#": 116 + } + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + } + ], + { + "x": 170, + "y": 88.27236, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 230, + "y": 88.27236, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 230, + "y": 148.27236, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 170, + "y": 148.27236, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 200, + "y": 118.27236 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.04032 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 108 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 110 + }, + "max": { + "#": 111 + } + }, + { + "x": 170, + "y": 88.27236 + }, + { + "x": 230, + "y": 148.27236 + }, + { + "x": 200, + "y": 115.23204 + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,1,3", + "startCol": 3, + "endCol": 4, + "startRow": 1, + "endRow": 3 + }, + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 118 + }, + "angle": 0, + "vertices": { + "#": 119 + }, + "position": { + "#": 124 + }, + "force": { + "#": 125 + }, + "torque": 0, + "positionImpulse": { + "#": 126 + }, + "constraintImpulse": { + "#": 127 + }, + "totalContacts": 0, + "speed": 2.39556, + "angularSpeed": 0, + "velocity": { + "#": 128 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.05, + "collisionFilter": { + "#": 129 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 130 + }, + "bounds": { + "#": 132 + }, + "positionPrev": { + "#": 135 + }, + "anglePrev": 0, + "axes": { + "#": 136 + }, + "area": 3600, + "mass": 3.6, + "inverseMass": 0.27778, + "inertia": 8640, + "inverseInertia": 0.00012, + "parent": { + "#": 117 + }, + "sleepCounter": 0, + "region": { + "#": 139 + } + }, + [ + { + "#": 117 + } + ], + [ + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + } + ], + { + "x": 370, + "y": 85.59557, + "index": 0, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 430, + "y": 85.59557, + "index": 1, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 430, + "y": 145.59557, + "index": 2, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 370, + "y": 145.59557, + "index": 3, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 400, + "y": 115.59557 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.39556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 131 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 133 + }, + "max": { + "#": 134 + } + }, + { + "x": 370, + "y": 85.59557 + }, + { + "x": 430, + "y": 145.59557 + }, + { + "x": 400, + "y": 113.20001 + }, + [ + { + "#": 137 + }, + { + "#": 138 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,1,3", + "startCol": 7, + "endCol": 8, + "startRow": 1, + "endRow": 3 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 141 + }, + "angle": 0, + "vertices": { + "#": 142 + }, + "position": { + "#": 147 + }, + "force": { + "#": 148 + }, + "torque": 0, + "positionImpulse": { + "#": 149 + }, + "constraintImpulse": { + "#": 150 + }, + "totalContacts": 0, + "speed": 1.90608, + "angularSpeed": 0, + "velocity": { + "#": 151 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.1, + "collisionFilter": { + "#": 152 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 153 + }, + "bounds": { + "#": 155 + }, + "positionPrev": { + "#": 158 + }, + "anglePrev": 0, + "axes": { + "#": 159 + }, + "area": 3600, + "mass": 3.6, + "inverseMass": 0.27778, + "inertia": 8640, + "inverseInertia": 0.00012, + "parent": { + "#": 140 + }, + "sleepCounter": 0, + "region": { + "#": 162 + } + }, + [ + { + "#": 140 + } + ], + [ + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + } + ], + { + "x": 570, + "y": 83.40082, + "index": 0, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 630, + "y": 83.40082, + "index": 1, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 630, + "y": 143.40082, + "index": 2, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 570, + "y": 143.40082, + "index": 3, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 600, + "y": 113.40082 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.90608 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 154 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 156 + }, + "max": { + "#": 157 + } + }, + { + "x": 570, + "y": 83.40082 + }, + { + "x": 630, + "y": 143.40082 + }, + { + "x": 600, + "y": 111.49474 + }, + [ + { + "#": 160 + }, + { + "#": 161 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,13,1,2", + "startCol": 11, + "endCol": 13, + "startRow": 1, + "endRow": 2 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 167 + }, + "max": { + "#": 168 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/avalanche/avalanche-0.json b/test/node/refs/avalanche/avalanche-0.json new file mode 100644 index 00000000..f075818e --- /dev/null +++ b/test/node/refs/avalanche/avalanche-0.json @@ -0,0 +1,40592 @@ +[ + { + "id": 45, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 156 + }, + "composites": { + "#": 157 + }, + "label": "World", + "gravity": { + "#": 4180 + }, + "bounds": { + "#": 4181 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 112 + }, + { + "#": 134 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 105, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 91 + }, + "angle": 0.1885, + "vertices": { + "#": 92 + }, + "position": { + "#": 97 + }, + "force": { + "#": 98 + }, + "torque": 0, + "positionImpulse": { + "#": 99 + }, + "constraintImpulse": { + "#": 100 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 101 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 102 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 103 + }, + "bounds": { + "#": 105 + }, + "positionPrev": { + "#": 108 + }, + "anglePrev": 0.1885, + "axes": { + "#": 109 + }, + "area": 14000, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 90 + }, + "sleepCounter": 0 + }, + [ + { + "#": 90 + } + ], + [ + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + } + ], + { + "x": -141.92672, + "y": 74.59367, + "index": 0, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 545.67435, + "y": 205.76059, + "index": 1, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 541.92672, + "y": 225.40633, + "index": 2, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": -145.67435, + "y": 94.23941, + "index": 3, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 200, + "y": 150 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 104 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 106 + }, + "max": { + "#": 107 + } + }, + { + "x": -145.67435, + "y": 74.59367 + }, + { + "x": 545.67435, + "y": 225.40633 + }, + { + "x": 200, + "y": 150 + }, + [ + { + "#": 110 + }, + { + "#": 111 + } + ], + { + "x": -0.18738, + "y": 0.98229 + }, + { + "x": -0.98229, + "y": -0.18738 + }, + { + "id": 106, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 113 + }, + "angle": -0.1885, + "vertices": { + "#": 114 + }, + "position": { + "#": 119 + }, + "force": { + "#": 120 + }, + "torque": 0, + "positionImpulse": { + "#": 121 + }, + "constraintImpulse": { + "#": 122 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 123 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 124 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 125 + }, + "bounds": { + "#": 127 + }, + "positionPrev": { + "#": 130 + }, + "anglePrev": -0.1885, + "axes": { + "#": 131 + }, + "area": 14000, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 112 + }, + "sleepCounter": 0 + }, + [ + { + "#": 112 + } + ], + [ + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + } + ], + { + "x": 154.32565, + "y": 405.76059, + "index": 0, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 841.92672, + "y": 274.59367, + "index": 1, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 845.67435, + "y": 294.23941, + "index": 2, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 158.07328, + "y": 425.40633, + "index": 3, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 500, + "y": 350 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 126 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 128 + }, + "max": { + "#": 129 + } + }, + { + "x": 154.32565, + "y": 274.59367 + }, + { + "x": 845.67435, + "y": 425.40633 + }, + { + "x": 500, + "y": 350 + }, + [ + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "x": 0.18738, + "y": 0.98229 + }, + { + "x": -0.98229, + "y": 0.18738 + }, + { + "id": 107, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 135 + }, + "angle": 0.12566, + "vertices": { + "#": 136 + }, + "position": { + "#": 141 + }, + "force": { + "#": 142 + }, + "torque": 0, + "positionImpulse": { + "#": 143 + }, + "constraintImpulse": { + "#": 144 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 145 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 146 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 147 + }, + "bounds": { + "#": 149 + }, + "positionPrev": { + "#": 152 + }, + "anglePrev": 0.12566, + "axes": { + "#": 153 + }, + "area": 14000, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 134 + }, + "sleepCounter": 0 + }, + [ + { + "#": 134 + } + ], + [ + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + } + ], + { + "x": -5.98681, + "y": 526.21222, + "index": 0, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 688.49348, + "y": 613.94548, + "index": 1, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 685.98681, + "y": 633.78778, + "index": 2, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": -8.49348, + "y": 546.05452, + "index": 3, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 340, + "y": 580 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 148 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 150 + }, + "max": { + "#": 151 + } + }, + { + "x": -8.49348, + "y": 526.21222 + }, + { + "x": 688.49348, + "y": 633.78778 + }, + { + "x": 340, + "y": 580 + }, + [ + { + "#": 154 + }, + { + "#": 155 + } + ], + { + "x": -0.12533, + "y": 0.99211 + }, + { + "x": -0.99211, + "y": -0.12533 + }, + [], + [ + { + "#": 158 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 159 + }, + "constraints": { + "#": 4178 + }, + "composites": { + "#": 4179 + }, + "label": "Stack" + }, + [ + { + "#": 160 + }, + { + "#": 197 + }, + { + "#": 237 + }, + { + "#": 283 + }, + { + "#": 320 + }, + { + "#": 366 + }, + { + "#": 400 + }, + { + "#": 443 + }, + { + "#": 483 + }, + { + "#": 523 + }, + { + "#": 560 + }, + { + "#": 603 + }, + { + "#": 640 + }, + { + "#": 686 + }, + { + "#": 732 + }, + { + "#": 775 + }, + { + "#": 812 + }, + { + "#": 846 + }, + { + "#": 892 + }, + { + "#": 929 + }, + { + "#": 975 + }, + { + "#": 1018 + }, + { + "#": 1052 + }, + { + "#": 1095 + }, + { + "#": 1141 + }, + { + "#": 1175 + }, + { + "#": 1215 + }, + { + "#": 1252 + }, + { + "#": 1289 + }, + { + "#": 1335 + }, + { + "#": 1381 + }, + { + "#": 1421 + }, + { + "#": 1458 + }, + { + "#": 1495 + }, + { + "#": 1538 + }, + { + "#": 1584 + }, + { + "#": 1624 + }, + { + "#": 1661 + }, + { + "#": 1707 + }, + { + "#": 1741 + }, + { + "#": 1784 + }, + { + "#": 1830 + }, + { + "#": 1867 + }, + { + "#": 1901 + }, + { + "#": 1935 + }, + { + "#": 1978 + }, + { + "#": 2012 + }, + { + "#": 2058 + }, + { + "#": 2095 + }, + { + "#": 2138 + }, + { + "#": 2178 + }, + { + "#": 2218 + }, + { + "#": 2258 + }, + { + "#": 2295 + }, + { + "#": 2338 + }, + { + "#": 2381 + }, + { + "#": 2424 + }, + { + "#": 2461 + }, + { + "#": 2504 + }, + { + "#": 2550 + }, + { + "#": 2590 + }, + { + "#": 2636 + }, + { + "#": 2676 + }, + { + "#": 2719 + }, + { + "#": 2756 + }, + { + "#": 2796 + }, + { + "#": 2830 + }, + { + "#": 2873 + }, + { + "#": 2910 + }, + { + "#": 2947 + }, + { + "#": 2981 + }, + { + "#": 3021 + }, + { + "#": 3061 + }, + { + "#": 3107 + }, + { + "#": 3141 + }, + { + "#": 3175 + }, + { + "#": 3215 + }, + { + "#": 3258 + }, + { + "#": 3295 + }, + { + "#": 3332 + }, + { + "#": 3369 + }, + { + "#": 3406 + }, + { + "#": 3443 + }, + { + "#": 3486 + }, + { + "#": 3532 + }, + { + "#": 3569 + }, + { + "#": 3615 + }, + { + "#": 3661 + }, + { + "#": 3698 + }, + { + "#": 3732 + }, + { + "#": 3766 + }, + { + "#": 3809 + }, + { + "#": 3843 + }, + { + "#": 3883 + }, + { + "#": 3929 + }, + { + "#": 3975 + }, + { + "#": 4018 + }, + { + "#": 4055 + }, + { + "#": 4101 + }, + { + "#": 4144 + } + ], + { + "id": 5, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 161 + }, + "angle": 0, + "vertices": { + "#": 162 + }, + "position": { + "#": 177 + }, + "force": { + "#": 178 + }, + "torque": 0, + "positionImpulse": { + "#": 179 + }, + "constraintImpulse": { + "#": 180 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 181 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 182 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 183 + }, + "circleRadius": 12.11321, + "bounds": { + "#": 185 + }, + "positionPrev": { + "#": 188 + }, + "anglePrev": 0, + "axes": { + "#": 189 + }, + "area": 445.64723, + "mass": 0.44565, + "inverseMass": 2.24393, + "inertia": 126.46281, + "inverseInertia": 0.00791, + "parent": { + "#": 160 + }, + "sleepCounter": 0 + }, + [ + { + "#": 160 + } + ], + [ + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + } + ], + { + "x": 43.62, + "y": 34.808, + "index": 0, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 41.28, + "y": 39.665, + "index": 1, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 37.066, + "y": 43.027, + "index": 2, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 31.81, + "y": 44.226, + "index": 3, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 26.554, + "y": 43.027, + "index": 4, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 22.34, + "y": 39.665, + "index": 5, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 20, + "y": 34.808, + "index": 6, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 20, + "y": 29.418, + "index": 7, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 22.34, + "y": 24.561, + "index": 8, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 26.554, + "y": 21.199, + "index": 9, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 31.81, + "y": 20, + "index": 10, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 37.066, + "y": 21.199, + "index": 11, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 41.28, + "y": 24.561, + "index": 12, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 43.62, + "y": 29.418, + "index": 13, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 31.81, + "y": 32.113 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 184 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 186 + }, + "max": { + "#": 187 + } + }, + { + "x": 20, + "y": 20 + }, + { + "x": 43.62, + "y": 44.226 + }, + { + "x": 31.81, + "y": 32.113 + }, + [ + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + } + ], + { + "x": -0.9009, + "y": -0.43403 + }, + { + "x": -0.62365, + "y": -0.7817 + }, + { + "x": -0.22241, + "y": -0.97495 + }, + { + "x": 0.22241, + "y": -0.97495 + }, + { + "x": 0.62365, + "y": -0.7817 + }, + { + "x": 0.9009, + "y": -0.43403 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 198 + }, + "angle": 0, + "vertices": { + "#": 199 + }, + "position": { + "#": 216 + }, + "force": { + "#": 217 + }, + "torque": 0, + "positionImpulse": { + "#": 218 + }, + "constraintImpulse": { + "#": 219 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 220 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 221 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 222 + }, + "circleRadius": 15.46772, + "bounds": { + "#": 224 + }, + "positionPrev": { + "#": 227 + }, + "anglePrev": 0, + "axes": { + "#": 228 + }, + "area": 732.47528, + "mass": 0.73248, + "inverseMass": 1.36523, + "inertia": 341.60523, + "inverseInertia": 0.00293, + "parent": { + "#": 197 + }, + "sleepCounter": 0 + }, + [ + { + "#": 197 + } + ], + [ + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + } + ], + { + "x": 73.962, + "y": 38.189, + "index": 0, + "body": { + "#": 197 + }, + "isInternal": false + }, + { + "x": 71.652, + "y": 43.764, + "index": 1, + "body": { + "#": 197 + }, + "isInternal": false + }, + { + "x": 67.384, + "y": 48.032, + "index": 2, + "body": { + "#": 197 + }, + "isInternal": false + }, + { + "x": 61.809, + "y": 50.342, + "index": 3, + "body": { + "#": 197 + }, + "isInternal": false + }, + { + "x": 55.773, + "y": 50.342, + "index": 4, + "body": { + "#": 197 + }, + "isInternal": false + }, + { + "x": 50.198, + "y": 48.032, + "index": 5, + "body": { + "#": 197 + }, + "isInternal": false + }, + { + "x": 45.93, + "y": 43.764, + "index": 6, + "body": { + "#": 197 + }, + "isInternal": false + }, + { + "x": 43.62, + "y": 38.189, + "index": 7, + "body": { + "#": 197 + }, + "isInternal": false + }, + { + "x": 43.62, + "y": 32.153, + "index": 8, + "body": { + "#": 197 + }, + "isInternal": false + }, + { + "x": 45.93, + "y": 26.578, + "index": 9, + "body": { + "#": 197 + }, + "isInternal": false + }, + { + "x": 50.198, + "y": 22.31, + "index": 10, + "body": { + "#": 197 + }, + "isInternal": false + }, + { + "x": 55.773, + "y": 20, + "index": 11, + "body": { + "#": 197 + }, + "isInternal": false + }, + { + "x": 61.809, + "y": 20, + "index": 12, + "body": { + "#": 197 + }, + "isInternal": false + }, + { + "x": 67.384, + "y": 22.31, + "index": 13, + "body": { + "#": 197 + }, + "isInternal": false + }, + { + "x": 71.652, + "y": 26.578, + "index": 14, + "body": { + "#": 197 + }, + "isInternal": false + }, + { + "x": 73.962, + "y": 32.153, + "index": 15, + "body": { + "#": 197 + }, + "isInternal": false + }, + { + "x": 58.791, + "y": 35.171 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 223 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 225 + }, + "max": { + "#": 226 + } + }, + { + "x": 43.62, + "y": 20 + }, + { + "x": 73.962, + "y": 50.342 + }, + { + "x": 58.791, + "y": 35.171 + }, + [ + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + } + ], + { + "x": -0.92384, + "y": -0.38279 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38279, + "y": -0.92384 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38279, + "y": -0.92384 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92384, + "y": -0.38279 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 238 + }, + "angle": 0, + "vertices": { + "#": 239 + }, + "position": { + "#": 260 + }, + "force": { + "#": 261 + }, + "torque": 0, + "positionImpulse": { + "#": 262 + }, + "constraintImpulse": { + "#": 263 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 264 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 265 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 266 + }, + "circleRadius": 18.19466, + "bounds": { + "#": 268 + }, + "positionPrev": { + "#": 271 + }, + "anglePrev": 0, + "axes": { + "#": 272 + }, + "area": 1023.02802, + "mass": 1.02303, + "inverseMass": 0.97749, + "inertia": 666.31404, + "inverseInertia": 0.0015, + "parent": { + "#": 237 + }, + "sleepCounter": 0 + }, + [ + { + "#": 237 + } + ], + [ + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + } + ], + { + "x": 109.904, + "y": 40.817, + "index": 0, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 108.145, + "y": 46.231, + "index": 1, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 104.799, + "y": 50.837, + "index": 2, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 100.193, + "y": 54.183, + "index": 3, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 94.779, + "y": 55.942, + "index": 4, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 89.087, + "y": 55.942, + "index": 5, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 83.673, + "y": 54.183, + "index": 6, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 79.067, + "y": 50.837, + "index": 7, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 75.721, + "y": 46.231, + "index": 8, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 73.962, + "y": 40.817, + "index": 9, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 73.962, + "y": 35.125, + "index": 10, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 75.721, + "y": 29.711, + "index": 11, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 79.067, + "y": 25.105, + "index": 12, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 83.673, + "y": 21.759, + "index": 13, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 89.087, + "y": 20, + "index": 14, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 94.779, + "y": 20, + "index": 15, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 100.193, + "y": 21.759, + "index": 16, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 104.799, + "y": 25.105, + "index": 17, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 108.145, + "y": 29.711, + "index": 18, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 109.904, + "y": 35.125, + "index": 19, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 91.933, + "y": 37.971 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 267 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 269 + }, + "max": { + "#": 270 + } + }, + { + "x": 73.962, + "y": 20 + }, + { + "x": 109.904, + "y": 55.942 + }, + { + "x": 91.933, + "y": 37.971 + }, + [ + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + } + ], + { + "x": -0.95106, + "y": -0.309 + }, + { + "x": -0.80905, + "y": -0.58773 + }, + { + "x": -0.58773, + "y": -0.80905 + }, + { + "x": -0.309, + "y": -0.95106 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.309, + "y": -0.95106 + }, + { + "x": 0.58773, + "y": -0.80905 + }, + { + "x": 0.80905, + "y": -0.58773 + }, + { + "x": 0.95106, + "y": -0.309 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 284 + }, + "angle": 0, + "vertices": { + "#": 285 + }, + "position": { + "#": 300 + }, + "force": { + "#": 301 + }, + "torque": 0, + "positionImpulse": { + "#": 302 + }, + "constraintImpulse": { + "#": 303 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 304 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 305 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 306 + }, + "circleRadius": 13.75081, + "bounds": { + "#": 308 + }, + "positionPrev": { + "#": 311 + }, + "anglePrev": 0, + "axes": { + "#": 312 + }, + "area": 574.28005, + "mass": 0.57428, + "inverseMass": 1.74131, + "inertia": 210.00414, + "inverseInertia": 0.00476, + "parent": { + "#": 283 + }, + "sleepCounter": 0 + }, + [ + { + "#": 283 + } + ], + [ + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + } + ], + { + "x": 136.716, + "y": 36.811, + "index": 0, + "body": { + "#": 283 + }, + "isInternal": false + }, + { + "x": 134.061, + "y": 42.324, + "index": 1, + "body": { + "#": 283 + }, + "isInternal": false + }, + { + "x": 129.276, + "y": 46.14, + "index": 2, + "body": { + "#": 283 + }, + "isInternal": false + }, + { + "x": 123.31, + "y": 47.502, + "index": 3, + "body": { + "#": 283 + }, + "isInternal": false + }, + { + "x": 117.344, + "y": 46.14, + "index": 4, + "body": { + "#": 283 + }, + "isInternal": false + }, + { + "x": 112.559, + "y": 42.324, + "index": 5, + "body": { + "#": 283 + }, + "isInternal": false + }, + { + "x": 109.904, + "y": 36.811, + "index": 6, + "body": { + "#": 283 + }, + "isInternal": false + }, + { + "x": 109.904, + "y": 30.691, + "index": 7, + "body": { + "#": 283 + }, + "isInternal": false + }, + { + "x": 112.559, + "y": 25.178, + "index": 8, + "body": { + "#": 283 + }, + "isInternal": false + }, + { + "x": 117.344, + "y": 21.362, + "index": 9, + "body": { + "#": 283 + }, + "isInternal": false + }, + { + "x": 123.31, + "y": 20, + "index": 10, + "body": { + "#": 283 + }, + "isInternal": false + }, + { + "x": 129.276, + "y": 21.362, + "index": 11, + "body": { + "#": 283 + }, + "isInternal": false + }, + { + "x": 134.061, + "y": 25.178, + "index": 12, + "body": { + "#": 283 + }, + "isInternal": false + }, + { + "x": 136.716, + "y": 30.691, + "index": 13, + "body": { + "#": 283 + }, + "isInternal": false + }, + { + "x": 123.31, + "y": 33.751 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 307 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 309 + }, + "max": { + "#": 310 + } + }, + { + "x": 109.904, + "y": 20 + }, + { + "x": 136.716, + "y": 47.502 + }, + { + "x": 123.31, + "y": 33.751 + }, + [ + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + } + ], + { + "x": -0.90096, + "y": -0.43389 + }, + { + "x": -0.6235, + "y": -0.78182 + }, + { + "x": -0.22257, + "y": -0.97492 + }, + { + "x": 0.22257, + "y": -0.97492 + }, + { + "x": 0.6235, + "y": -0.78182 + }, + { + "x": 0.90096, + "y": -0.43389 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 321 + }, + "angle": 0, + "vertices": { + "#": 322 + }, + "position": { + "#": 343 + }, + "force": { + "#": 344 + }, + "torque": 0, + "positionImpulse": { + "#": 345 + }, + "constraintImpulse": { + "#": 346 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 347 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 348 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 349 + }, + "circleRadius": 19.66705, + "bounds": { + "#": 351 + }, + "positionPrev": { + "#": 354 + }, + "anglePrev": 0, + "axes": { + "#": 355 + }, + "area": 1195.26015, + "mass": 1.19526, + "inverseMass": 0.83664, + "inertia": 909.55462, + "inverseInertia": 0.0011, + "parent": { + "#": 320 + }, + "sleepCounter": 0 + }, + [ + { + "#": 320 + } + ], + [ + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + } + ], + { + "x": 175.566, + "y": 42.502, + "index": 0, + "body": { + "#": 320 + }, + "isInternal": false + }, + { + "x": 173.664, + "y": 48.354, + "index": 1, + "body": { + "#": 320 + }, + "isInternal": false + }, + { + "x": 170.048, + "y": 53.332, + "index": 2, + "body": { + "#": 320 + }, + "isInternal": false + }, + { + "x": 165.07, + "y": 56.948, + "index": 3, + "body": { + "#": 320 + }, + "isInternal": false + }, + { + "x": 159.218, + "y": 58.85, + "index": 4, + "body": { + "#": 320 + }, + "isInternal": false + }, + { + "x": 153.064, + "y": 58.85, + "index": 5, + "body": { + "#": 320 + }, + "isInternal": false + }, + { + "x": 147.212, + "y": 56.948, + "index": 6, + "body": { + "#": 320 + }, + "isInternal": false + }, + { + "x": 142.234, + "y": 53.332, + "index": 7, + "body": { + "#": 320 + }, + "isInternal": false + }, + { + "x": 138.618, + "y": 48.354, + "index": 8, + "body": { + "#": 320 + }, + "isInternal": false + }, + { + "x": 136.716, + "y": 42.502, + "index": 9, + "body": { + "#": 320 + }, + "isInternal": false + }, + { + "x": 136.716, + "y": 36.348, + "index": 10, + "body": { + "#": 320 + }, + "isInternal": false + }, + { + "x": 138.618, + "y": 30.496, + "index": 11, + "body": { + "#": 320 + }, + "isInternal": false + }, + { + "x": 142.234, + "y": 25.518, + "index": 12, + "body": { + "#": 320 + }, + "isInternal": false + }, + { + "x": 147.212, + "y": 21.902, + "index": 13, + "body": { + "#": 320 + }, + "isInternal": false + }, + { + "x": 153.064, + "y": 20, + "index": 14, + "body": { + "#": 320 + }, + "isInternal": false + }, + { + "x": 159.218, + "y": 20, + "index": 15, + "body": { + "#": 320 + }, + "isInternal": false + }, + { + "x": 165.07, + "y": 21.902, + "index": 16, + "body": { + "#": 320 + }, + "isInternal": false + }, + { + "x": 170.048, + "y": 25.518, + "index": 17, + "body": { + "#": 320 + }, + "isInternal": false + }, + { + "x": 173.664, + "y": 30.496, + "index": 18, + "body": { + "#": 320 + }, + "isInternal": false + }, + { + "x": 175.566, + "y": 36.348, + "index": 19, + "body": { + "#": 320 + }, + "isInternal": false + }, + { + "x": 156.141, + "y": 39.425 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 350 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 352 + }, + "max": { + "#": 353 + } + }, + { + "x": 136.716, + "y": 20 + }, + { + "x": 175.566, + "y": 58.85 + }, + { + "x": 156.141, + "y": 39.425 + }, + [ + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + } + ], + { + "x": -0.95103, + "y": -0.3091 + }, + { + "x": -0.80907, + "y": -0.58771 + }, + { + "x": -0.58771, + "y": -0.80907 + }, + { + "x": -0.3091, + "y": -0.95103 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3091, + "y": -0.95103 + }, + { + "x": 0.58771, + "y": -0.80907 + }, + { + "x": 0.80907, + "y": -0.58771 + }, + { + "x": 0.95103, + "y": -0.3091 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 10, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 367 + }, + "angle": 0, + "vertices": { + "#": 368 + }, + "position": { + "#": 381 + }, + "force": { + "#": 382 + }, + "torque": 0, + "positionImpulse": { + "#": 383 + }, + "constraintImpulse": { + "#": 384 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 385 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 386 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 387 + }, + "circleRadius": 11.99276, + "bounds": { + "#": 389 + }, + "positionPrev": { + "#": 392 + }, + "anglePrev": 0, + "axes": { + "#": 393 + }, + "area": 431.46854, + "mass": 0.43147, + "inverseMass": 2.31767, + "inertia": 118.56754, + "inverseInertia": 0.00843, + "parent": { + "#": 366 + }, + "sleepCounter": 0 + }, + [ + { + "#": 366 + } + ], + [ + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + } + ], + { + "x": 198.734, + "y": 34.688, + "index": 0, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 195.63, + "y": 40.064, + "index": 1, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 190.254, + "y": 43.168, + "index": 2, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 184.046, + "y": 43.168, + "index": 3, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 178.67, + "y": 40.064, + "index": 4, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 175.566, + "y": 34.688, + "index": 5, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 175.566, + "y": 28.48, + "index": 6, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 178.67, + "y": 23.104, + "index": 7, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 184.046, + "y": 20, + "index": 8, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 190.254, + "y": 20, + "index": 9, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 195.63, + "y": 23.104, + "index": 10, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 198.734, + "y": 28.48, + "index": 11, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 187.15, + "y": 31.584 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 388 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 390 + }, + "max": { + "#": 391 + } + }, + { + "x": 175.566, + "y": 20 + }, + { + "x": 198.734, + "y": 43.168 + }, + { + "x": 187.15, + "y": 31.584 + }, + [ + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + } + ], + { + "x": -0.86601, + "y": -0.50002 + }, + { + "x": -0.50002, + "y": -0.86601 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.50002, + "y": -0.86601 + }, + { + "x": 0.86601, + "y": -0.50002 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 11, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 401 + }, + "angle": 0, + "vertices": { + "#": 402 + }, + "position": { + "#": 421 + }, + "force": { + "#": 422 + }, + "torque": 0, + "positionImpulse": { + "#": 423 + }, + "constraintImpulse": { + "#": 424 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 425 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 426 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 427 + }, + "circleRadius": 16.40694, + "bounds": { + "#": 429 + }, + "positionPrev": { + "#": 432 + }, + "anglePrev": 0, + "axes": { + "#": 433 + }, + "area": 828.5976, + "mass": 0.8286, + "inverseMass": 1.20686, + "inertia": 437.12315, + "inverseInertia": 0.00229, + "parent": { + "#": 400 + }, + "sleepCounter": 0 + }, + [ + { + "#": 400 + } + ], + [ + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + } + ], + { + "x": 231.05, + "y": 39.256, + "index": 0, + "body": { + "#": 400 + }, + "isInternal": false + }, + { + "x": 229.101, + "y": 44.61, + "index": 1, + "body": { + "#": 400 + }, + "isInternal": false + }, + { + "x": 225.438, + "y": 48.975, + "index": 2, + "body": { + "#": 400 + }, + "isInternal": false + }, + { + "x": 220.504, + "y": 51.824, + "index": 3, + "body": { + "#": 400 + }, + "isInternal": false + }, + { + "x": 214.892, + "y": 52.814, + "index": 4, + "body": { + "#": 400 + }, + "isInternal": false + }, + { + "x": 209.28, + "y": 51.824, + "index": 5, + "body": { + "#": 400 + }, + "isInternal": false + }, + { + "x": 204.346, + "y": 48.975, + "index": 6, + "body": { + "#": 400 + }, + "isInternal": false + }, + { + "x": 200.683, + "y": 44.61, + "index": 7, + "body": { + "#": 400 + }, + "isInternal": false + }, + { + "x": 198.734, + "y": 39.256, + "index": 8, + "body": { + "#": 400 + }, + "isInternal": false + }, + { + "x": 198.734, + "y": 33.558, + "index": 9, + "body": { + "#": 400 + }, + "isInternal": false + }, + { + "x": 200.683, + "y": 28.204, + "index": 10, + "body": { + "#": 400 + }, + "isInternal": false + }, + { + "x": 204.346, + "y": 23.839, + "index": 11, + "body": { + "#": 400 + }, + "isInternal": false + }, + { + "x": 209.28, + "y": 20.99, + "index": 12, + "body": { + "#": 400 + }, + "isInternal": false + }, + { + "x": 214.892, + "y": 20, + "index": 13, + "body": { + "#": 400 + }, + "isInternal": false + }, + { + "x": 220.504, + "y": 20.99, + "index": 14, + "body": { + "#": 400 + }, + "isInternal": false + }, + { + "x": 225.438, + "y": 23.839, + "index": 15, + "body": { + "#": 400 + }, + "isInternal": false + }, + { + "x": 229.101, + "y": 28.204, + "index": 16, + "body": { + "#": 400 + }, + "isInternal": false + }, + { + "x": 231.05, + "y": 33.558, + "index": 17, + "body": { + "#": 400 + }, + "isInternal": false + }, + { + "x": 214.892, + "y": 36.407 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 428 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 430 + }, + "max": { + "#": 431 + } + }, + { + "x": 198.734, + "y": 20 + }, + { + "x": 231.05, + "y": 52.814 + }, + { + "x": 214.892, + "y": 36.407 + }, + [ + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + } + ], + { + "x": -0.93968, + "y": -0.34207 + }, + { + "x": -0.76602, + "y": -0.64282 + }, + { + "x": -0.50005, + "y": -0.866 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.50005, + "y": -0.866 + }, + { + "x": 0.76602, + "y": -0.64282 + }, + { + "x": 0.93968, + "y": -0.34207 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 12, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 444 + }, + "angle": 0, + "vertices": { + "#": 445 + }, + "position": { + "#": 462 + }, + "force": { + "#": 463 + }, + "torque": 0, + "positionImpulse": { + "#": 464 + }, + "constraintImpulse": { + "#": 465 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 466 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 467 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 468 + }, + "circleRadius": 15.99601, + "bounds": { + "#": 470 + }, + "positionPrev": { + "#": 473 + }, + "anglePrev": 0, + "axes": { + "#": 474 + }, + "area": 783.35931, + "mass": 0.78336, + "inverseMass": 1.27655, + "inertia": 390.71545, + "inverseInertia": 0.00256, + "parent": { + "#": 443 + }, + "sleepCounter": 0 + }, + [ + { + "#": 443 + } + ], + [ + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + } + ], + { + "x": 262.428, + "y": 38.81, + "index": 0, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 260.039, + "y": 44.576, + "index": 1, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 255.626, + "y": 48.989, + "index": 2, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 249.86, + "y": 51.378, + "index": 3, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 243.618, + "y": 51.378, + "index": 4, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 237.852, + "y": 48.989, + "index": 5, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 233.439, + "y": 44.576, + "index": 6, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 231.05, + "y": 38.81, + "index": 7, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 231.05, + "y": 32.568, + "index": 8, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 233.439, + "y": 26.802, + "index": 9, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 237.852, + "y": 22.389, + "index": 10, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 243.618, + "y": 20, + "index": 11, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 249.86, + "y": 20, + "index": 12, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 255.626, + "y": 22.389, + "index": 13, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 260.039, + "y": 26.802, + "index": 14, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 262.428, + "y": 32.568, + "index": 15, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 246.739, + "y": 35.689 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 469 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 471 + }, + "max": { + "#": 472 + } + }, + { + "x": 231.05, + "y": 20 + }, + { + "x": 262.428, + "y": 51.378 + }, + { + "x": 246.739, + "y": 35.689 + }, + [ + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + } + ], + { + "x": -0.92384, + "y": -0.38277 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38277, + "y": -0.92384 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38277, + "y": -0.92384 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92384, + "y": -0.38277 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 13, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 484 + }, + "angle": 0, + "vertices": { + "#": 485 + }, + "position": { + "#": 502 + }, + "force": { + "#": 503 + }, + "torque": 0, + "positionImpulse": { + "#": 504 + }, + "constraintImpulse": { + "#": 505 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 506 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 507 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 508 + }, + "circleRadius": 15.69826, + "bounds": { + "#": 510 + }, + "positionPrev": { + "#": 513 + }, + "anglePrev": 0, + "axes": { + "#": 514 + }, + "area": 754.47757, + "mass": 0.75448, + "inverseMass": 1.32542, + "inertia": 362.43592, + "inverseInertia": 0.00276, + "parent": { + "#": 483 + }, + "sleepCounter": 0 + }, + [ + { + "#": 483 + } + ], + [ + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + }, + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + } + ], + { + "x": 293.222, + "y": 38.46, + "index": 0, + "body": { + "#": 483 + }, + "isInternal": false + }, + { + "x": 290.878, + "y": 44.118, + "index": 1, + "body": { + "#": 483 + }, + "isInternal": false + }, + { + "x": 286.546, + "y": 48.45, + "index": 2, + "body": { + "#": 483 + }, + "isInternal": false + }, + { + "x": 280.888, + "y": 50.794, + "index": 3, + "body": { + "#": 483 + }, + "isInternal": false + }, + { + "x": 274.762, + "y": 50.794, + "index": 4, + "body": { + "#": 483 + }, + "isInternal": false + }, + { + "x": 269.104, + "y": 48.45, + "index": 5, + "body": { + "#": 483 + }, + "isInternal": false + }, + { + "x": 264.772, + "y": 44.118, + "index": 6, + "body": { + "#": 483 + }, + "isInternal": false + }, + { + "x": 262.428, + "y": 38.46, + "index": 7, + "body": { + "#": 483 + }, + "isInternal": false + }, + { + "x": 262.428, + "y": 32.334, + "index": 8, + "body": { + "#": 483 + }, + "isInternal": false + }, + { + "x": 264.772, + "y": 26.676, + "index": 9, + "body": { + "#": 483 + }, + "isInternal": false + }, + { + "x": 269.104, + "y": 22.344, + "index": 10, + "body": { + "#": 483 + }, + "isInternal": false + }, + { + "x": 274.762, + "y": 20, + "index": 11, + "body": { + "#": 483 + }, + "isInternal": false + }, + { + "x": 280.888, + "y": 20, + "index": 12, + "body": { + "#": 483 + }, + "isInternal": false + }, + { + "x": 286.546, + "y": 22.344, + "index": 13, + "body": { + "#": 483 + }, + "isInternal": false + }, + { + "x": 290.878, + "y": 26.676, + "index": 14, + "body": { + "#": 483 + }, + "isInternal": false + }, + { + "x": 293.222, + "y": 32.334, + "index": 15, + "body": { + "#": 483 + }, + "isInternal": false + }, + { + "x": 277.825, + "y": 35.397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 509 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 511 + }, + "max": { + "#": 512 + } + }, + { + "x": 262.428, + "y": 20 + }, + { + "x": 293.222, + "y": 50.794 + }, + { + "x": 277.825, + "y": 35.397 + }, + [ + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + } + ], + { + "x": -0.92386, + "y": -0.38274 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38274, + "y": -0.92386 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38274, + "y": -0.92386 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92386, + "y": -0.38274 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 14, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 524 + }, + "angle": 0, + "vertices": { + "#": 525 + }, + "position": { + "#": 540 + }, + "force": { + "#": 541 + }, + "torque": 0, + "positionImpulse": { + "#": 542 + }, + "constraintImpulse": { + "#": 543 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 544 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 545 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 546 + }, + "circleRadius": 13.41491, + "bounds": { + "#": 548 + }, + "positionPrev": { + "#": 551 + }, + "anglePrev": 0, + "axes": { + "#": 552 + }, + "area": 546.57346, + "mass": 0.54657, + "inverseMass": 1.82958, + "inertia": 190.22933, + "inverseInertia": 0.00526, + "parent": { + "#": 523 + }, + "sleepCounter": 0 + }, + [ + { + "#": 523 + } + ], + [ + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + } + ], + { + "x": 319.38, + "y": 36.4, + "index": 0, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 316.789, + "y": 41.779, + "index": 1, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 312.122, + "y": 45.501, + "index": 2, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 306.301, + "y": 46.83, + "index": 3, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 300.48, + "y": 45.501, + "index": 4, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 295.813, + "y": 41.779, + "index": 5, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 293.222, + "y": 36.4, + "index": 6, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 293.222, + "y": 30.43, + "index": 7, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 295.813, + "y": 25.051, + "index": 8, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 300.48, + "y": 21.329, + "index": 9, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 306.301, + "y": 20, + "index": 10, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 312.122, + "y": 21.329, + "index": 11, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 316.789, + "y": 25.051, + "index": 12, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 319.38, + "y": 30.43, + "index": 13, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 306.301, + "y": 33.415 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 547 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 549 + }, + "max": { + "#": 550 + } + }, + { + "x": 293.222, + "y": 20 + }, + { + "x": 319.38, + "y": 46.83 + }, + { + "x": 306.301, + "y": 33.415 + }, + [ + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + } + ], + { + "x": -0.90093, + "y": -0.43397 + }, + { + "x": -0.62351, + "y": -0.78182 + }, + { + "x": -0.22258, + "y": -0.97491 + }, + { + "x": 0.22258, + "y": -0.97491 + }, + { + "x": 0.62351, + "y": -0.78182 + }, + { + "x": 0.90093, + "y": -0.43397 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 15, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 561 + }, + "angle": 0, + "vertices": { + "#": 562 + }, + "position": { + "#": 581 + }, + "force": { + "#": 582 + }, + "torque": 0, + "positionImpulse": { + "#": 583 + }, + "constraintImpulse": { + "#": 584 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 585 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 586 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 587 + }, + "circleRadius": 17.78794, + "bounds": { + "#": 589 + }, + "positionPrev": { + "#": 592 + }, + "anglePrev": 0, + "axes": { + "#": 593 + }, + "area": 973.9752, + "mass": 0.97398, + "inverseMass": 1.02672, + "inertia": 603.96569, + "inverseInertia": 0.00166, + "parent": { + "#": 560 + }, + "sleepCounter": 0 + }, + [ + { + "#": 560 + } + ], + [ + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + } + ], + { + "x": 354.416, + "y": 40.877, + "index": 0, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 352.303, + "y": 46.682, + "index": 1, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 348.332, + "y": 51.414, + "index": 2, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 342.982, + "y": 54.503, + "index": 3, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 336.898, + "y": 55.576, + "index": 4, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 330.814, + "y": 54.503, + "index": 5, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 325.464, + "y": 51.414, + "index": 6, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 321.493, + "y": 46.682, + "index": 7, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 319.38, + "y": 40.877, + "index": 8, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 319.38, + "y": 34.699, + "index": 9, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 321.493, + "y": 28.894, + "index": 10, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 325.464, + "y": 24.162, + "index": 11, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 330.814, + "y": 21.073, + "index": 12, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 336.898, + "y": 20, + "index": 13, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 342.982, + "y": 21.073, + "index": 14, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 348.332, + "y": 24.162, + "index": 15, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 352.303, + "y": 28.894, + "index": 16, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 354.416, + "y": 34.699, + "index": 17, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 336.898, + "y": 37.788 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 588 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 590 + }, + "max": { + "#": 591 + } + }, + { + "x": 319.38, + "y": 20 + }, + { + "x": 354.416, + "y": 55.576 + }, + { + "x": 336.898, + "y": 37.788 + }, + [ + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + } + ], + { + "x": -0.93968, + "y": -0.34204 + }, + { + "x": -0.76601, + "y": -0.64282 + }, + { + "x": -0.50002, + "y": -0.86601 + }, + { + "x": -0.17368, + "y": -0.9848 + }, + { + "x": 0.17368, + "y": -0.9848 + }, + { + "x": 0.50002, + "y": -0.86601 + }, + { + "x": 0.76601, + "y": -0.64282 + }, + { + "x": 0.93968, + "y": -0.34204 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 16, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 604 + }, + "angle": 0, + "vertices": { + "#": 605 + }, + "position": { + "#": 620 + }, + "force": { + "#": 621 + }, + "torque": 0, + "positionImpulse": { + "#": 622 + }, + "constraintImpulse": { + "#": 623 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 624 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 625 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 626 + }, + "circleRadius": 12.6445, + "bounds": { + "#": 628 + }, + "positionPrev": { + "#": 631 + }, + "anglePrev": 0, + "axes": { + "#": 632 + }, + "area": 485.5904, + "mass": 0.48559, + "inverseMass": 2.05935, + "inertia": 150.14836, + "inverseInertia": 0.00666, + "parent": { + "#": 603 + }, + "sleepCounter": 0 + }, + [ + { + "#": 603 + } + ], + [ + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + } + ], + { + "x": 379.07, + "y": 35.459, + "index": 0, + "body": { + "#": 603 + }, + "isInternal": false + }, + { + "x": 376.629, + "y": 40.529, + "index": 1, + "body": { + "#": 603 + }, + "isInternal": false + }, + { + "x": 372.229, + "y": 44.037, + "index": 2, + "body": { + "#": 603 + }, + "isInternal": false + }, + { + "x": 366.743, + "y": 45.29, + "index": 3, + "body": { + "#": 603 + }, + "isInternal": false + }, + { + "x": 361.257, + "y": 44.037, + "index": 4, + "body": { + "#": 603 + }, + "isInternal": false + }, + { + "x": 356.857, + "y": 40.529, + "index": 5, + "body": { + "#": 603 + }, + "isInternal": false + }, + { + "x": 354.416, + "y": 35.459, + "index": 6, + "body": { + "#": 603 + }, + "isInternal": false + }, + { + "x": 354.416, + "y": 29.831, + "index": 7, + "body": { + "#": 603 + }, + "isInternal": false + }, + { + "x": 356.857, + "y": 24.761, + "index": 8, + "body": { + "#": 603 + }, + "isInternal": false + }, + { + "x": 361.257, + "y": 21.253, + "index": 9, + "body": { + "#": 603 + }, + "isInternal": false + }, + { + "x": 366.743, + "y": 20, + "index": 10, + "body": { + "#": 603 + }, + "isInternal": false + }, + { + "x": 372.229, + "y": 21.253, + "index": 11, + "body": { + "#": 603 + }, + "isInternal": false + }, + { + "x": 376.629, + "y": 24.761, + "index": 12, + "body": { + "#": 603 + }, + "isInternal": false + }, + { + "x": 379.07, + "y": 29.831, + "index": 13, + "body": { + "#": 603 + }, + "isInternal": false + }, + { + "x": 366.743, + "y": 32.645 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 627 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 629 + }, + "max": { + "#": 630 + } + }, + { + "x": 354.416, + "y": 20 + }, + { + "x": 379.07, + "y": 45.29 + }, + { + "x": 366.743, + "y": 32.645 + }, + [ + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + } + ], + { + "x": -0.90101, + "y": -0.4338 + }, + { + "x": -0.62339, + "y": -0.78191 + }, + { + "x": -0.22267, + "y": -0.97489 + }, + { + "x": 0.22267, + "y": -0.97489 + }, + { + "x": 0.62339, + "y": -0.78191 + }, + { + "x": 0.90101, + "y": -0.4338 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 17, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 641 + }, + "angle": 0, + "vertices": { + "#": 642 + }, + "position": { + "#": 663 + }, + "force": { + "#": 664 + }, + "torque": 0, + "positionImpulse": { + "#": 665 + }, + "constraintImpulse": { + "#": 666 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 667 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 668 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 669 + }, + "circleRadius": 18.10807, + "bounds": { + "#": 671 + }, + "positionPrev": { + "#": 674 + }, + "anglePrev": 0, + "axes": { + "#": 675 + }, + "area": 1013.24488, + "mass": 1.01324, + "inverseMass": 0.98693, + "inertia": 653.63115, + "inverseInertia": 0.00153, + "parent": { + "#": 640 + }, + "sleepCounter": 0 + }, + [ + { + "#": 640 + } + ], + [ + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + } + ], + { + "x": 414.84, + "y": 40.718, + "index": 0, + "body": { + "#": 640 + }, + "isInternal": false + }, + { + "x": 413.089, + "y": 46.106, + "index": 1, + "body": { + "#": 640 + }, + "isInternal": false + }, + { + "x": 409.759, + "y": 50.689, + "index": 2, + "body": { + "#": 640 + }, + "isInternal": false + }, + { + "x": 405.176, + "y": 54.019, + "index": 3, + "body": { + "#": 640 + }, + "isInternal": false + }, + { + "x": 399.788, + "y": 55.77, + "index": 4, + "body": { + "#": 640 + }, + "isInternal": false + }, + { + "x": 394.122, + "y": 55.77, + "index": 5, + "body": { + "#": 640 + }, + "isInternal": false + }, + { + "x": 388.734, + "y": 54.019, + "index": 6, + "body": { + "#": 640 + }, + "isInternal": false + }, + { + "x": 384.151, + "y": 50.689, + "index": 7, + "body": { + "#": 640 + }, + "isInternal": false + }, + { + "x": 380.821, + "y": 46.106, + "index": 8, + "body": { + "#": 640 + }, + "isInternal": false + }, + { + "x": 379.07, + "y": 40.718, + "index": 9, + "body": { + "#": 640 + }, + "isInternal": false + }, + { + "x": 379.07, + "y": 35.052, + "index": 10, + "body": { + "#": 640 + }, + "isInternal": false + }, + { + "x": 380.821, + "y": 29.664, + "index": 11, + "body": { + "#": 640 + }, + "isInternal": false + }, + { + "x": 384.151, + "y": 25.081, + "index": 12, + "body": { + "#": 640 + }, + "isInternal": false + }, + { + "x": 388.734, + "y": 21.751, + "index": 13, + "body": { + "#": 640 + }, + "isInternal": false + }, + { + "x": 394.122, + "y": 20, + "index": 14, + "body": { + "#": 640 + }, + "isInternal": false + }, + { + "x": 399.788, + "y": 20, + "index": 15, + "body": { + "#": 640 + }, + "isInternal": false + }, + { + "x": 405.176, + "y": 21.751, + "index": 16, + "body": { + "#": 640 + }, + "isInternal": false + }, + { + "x": 409.759, + "y": 25.081, + "index": 17, + "body": { + "#": 640 + }, + "isInternal": false + }, + { + "x": 413.089, + "y": 29.664, + "index": 18, + "body": { + "#": 640 + }, + "isInternal": false + }, + { + "x": 414.84, + "y": 35.052, + "index": 19, + "body": { + "#": 640 + }, + "isInternal": false + }, + { + "x": 396.955, + "y": 37.885 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 670 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 672 + }, + "max": { + "#": 673 + } + }, + { + "x": 379.07, + "y": 20 + }, + { + "x": 414.84, + "y": 55.77 + }, + { + "x": 396.955, + "y": 37.885 + }, + [ + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + } + ], + { + "x": -0.95104, + "y": -0.30907 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30907, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30907, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30907 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 18, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 687 + }, + "angle": 0, + "vertices": { + "#": 688 + }, + "position": { + "#": 709 + }, + "force": { + "#": 710 + }, + "torque": 0, + "positionImpulse": { + "#": 711 + }, + "constraintImpulse": { + "#": 712 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 713 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 714 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 715 + }, + "circleRadius": 18.37616, + "bounds": { + "#": 717 + }, + "positionPrev": { + "#": 720 + }, + "anglePrev": 0, + "axes": { + "#": 721 + }, + "area": 1043.50458, + "mass": 1.0435, + "inverseMass": 0.95831, + "inertia": 693.25438, + "inverseInertia": 0.00144, + "parent": { + "#": 686 + }, + "sleepCounter": 0 + }, + [ + { + "#": 686 + } + ], + [ + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + } + ], + { + "x": 451.14, + "y": 41.025, + "index": 0, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 449.363, + "y": 46.493, + "index": 1, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 445.984, + "y": 51.144, + "index": 2, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 441.333, + "y": 54.523, + "index": 3, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 435.865, + "y": 56.3, + "index": 4, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 430.115, + "y": 56.3, + "index": 5, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 424.647, + "y": 54.523, + "index": 6, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 419.996, + "y": 51.144, + "index": 7, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 416.617, + "y": 46.493, + "index": 8, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 414.84, + "y": 41.025, + "index": 9, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 414.84, + "y": 35.275, + "index": 10, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 416.617, + "y": 29.807, + "index": 11, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 419.996, + "y": 25.156, + "index": 12, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 424.647, + "y": 21.777, + "index": 13, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 430.115, + "y": 20, + "index": 14, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 435.865, + "y": 20, + "index": 15, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 441.333, + "y": 21.777, + "index": 16, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 445.984, + "y": 25.156, + "index": 17, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 449.363, + "y": 29.807, + "index": 18, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 451.14, + "y": 35.275, + "index": 19, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 432.99, + "y": 38.15 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 716 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 718 + }, + "max": { + "#": 719 + } + }, + { + "x": 414.84, + "y": 20 + }, + { + "x": 451.14, + "y": 56.3 + }, + { + "x": 432.99, + "y": 38.15 + }, + [ + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + } + ], + { + "x": -0.95104, + "y": -0.30907 + }, + { + "x": -0.80903, + "y": -0.58777 + }, + { + "x": -0.58777, + "y": -0.80903 + }, + { + "x": -0.30907, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30907, + "y": -0.95104 + }, + { + "x": 0.58777, + "y": -0.80903 + }, + { + "x": 0.80903, + "y": -0.58777 + }, + { + "x": 0.95104, + "y": -0.30907 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 19, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 733 + }, + "angle": 0, + "vertices": { + "#": 734 + }, + "position": { + "#": 753 + }, + "force": { + "#": 754 + }, + "torque": 0, + "positionImpulse": { + "#": 755 + }, + "constraintImpulse": { + "#": 756 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 757 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 758 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 759 + }, + "circleRadius": 16.16482, + "bounds": { + "#": 761 + }, + "positionPrev": { + "#": 764 + }, + "anglePrev": 0, + "axes": { + "#": 765 + }, + "area": 804.33264, + "mass": 0.80433, + "inverseMass": 1.24327, + "inertia": 411.89627, + "inverseInertia": 0.00243, + "parent": { + "#": 732 + }, + "sleepCounter": 0 + }, + [ + { + "#": 732 + } + ], + [ + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + }, + { + "#": 752 + } + ], + { + "x": 482.978, + "y": 38.972, + "index": 0, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 481.058, + "y": 44.247, + "index": 1, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 477.45, + "y": 48.548, + "index": 2, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 472.588, + "y": 51.355, + "index": 3, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 467.059, + "y": 52.33, + "index": 4, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 461.53, + "y": 51.355, + "index": 5, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 456.668, + "y": 48.548, + "index": 6, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 453.06, + "y": 44.247, + "index": 7, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 451.14, + "y": 38.972, + "index": 8, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 451.14, + "y": 33.358, + "index": 9, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 453.06, + "y": 28.083, + "index": 10, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 456.668, + "y": 23.782, + "index": 11, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 461.53, + "y": 20.975, + "index": 12, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 467.059, + "y": 20, + "index": 13, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 472.588, + "y": 20.975, + "index": 14, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 477.45, + "y": 23.782, + "index": 15, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 481.058, + "y": 28.083, + "index": 16, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 482.978, + "y": 33.358, + "index": 17, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 467.059, + "y": 36.165 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 760 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 762 + }, + "max": { + "#": 763 + } + }, + { + "x": 451.14, + "y": 20 + }, + { + "x": 482.978, + "y": 52.33 + }, + { + "x": 467.059, + "y": 36.165 + }, + [ + { + "#": 766 + }, + { + "#": 767 + }, + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + }, + { + "#": 774 + } + ], + { + "x": -0.93969, + "y": -0.34203 + }, + { + "x": -0.76613, + "y": -0.64269 + }, + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": -0.17366, + "y": -0.98481 + }, + { + "x": 0.17366, + "y": -0.98481 + }, + { + "x": 0.49999, + "y": -0.86603 + }, + { + "x": 0.76613, + "y": -0.64269 + }, + { + "x": 0.93969, + "y": -0.34203 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 20, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 776 + }, + "angle": 0, + "vertices": { + "#": 777 + }, + "position": { + "#": 792 + }, + "force": { + "#": 793 + }, + "torque": 0, + "positionImpulse": { + "#": 794 + }, + "constraintImpulse": { + "#": 795 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 796 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 797 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 798 + }, + "circleRadius": 13.81974, + "bounds": { + "#": 800 + }, + "positionPrev": { + "#": 803 + }, + "anglePrev": 0, + "axes": { + "#": 804 + }, + "area": 580.04741, + "mass": 0.58005, + "inverseMass": 1.724, + "inertia": 214.24337, + "inverseInertia": 0.00467, + "parent": { + "#": 775 + }, + "sleepCounter": 0 + }, + [ + { + "#": 775 + } + ], + [ + { + "#": 778 + }, + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + }, + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + } + ], + { + "x": 509.924, + "y": 36.895, + "index": 0, + "body": { + "#": 775 + }, + "isInternal": false + }, + { + "x": 507.256, + "y": 42.436, + "index": 1, + "body": { + "#": 775 + }, + "isInternal": false + }, + { + "x": 502.447, + "y": 46.271, + "index": 2, + "body": { + "#": 775 + }, + "isInternal": false + }, + { + "x": 496.451, + "y": 47.64, + "index": 3, + "body": { + "#": 775 + }, + "isInternal": false + }, + { + "x": 490.455, + "y": 46.271, + "index": 4, + "body": { + "#": 775 + }, + "isInternal": false + }, + { + "x": 485.646, + "y": 42.436, + "index": 5, + "body": { + "#": 775 + }, + "isInternal": false + }, + { + "x": 482.978, + "y": 36.895, + "index": 6, + "body": { + "#": 775 + }, + "isInternal": false + }, + { + "x": 482.978, + "y": 30.745, + "index": 7, + "body": { + "#": 775 + }, + "isInternal": false + }, + { + "x": 485.646, + "y": 25.204, + "index": 8, + "body": { + "#": 775 + }, + "isInternal": false + }, + { + "x": 490.455, + "y": 21.369, + "index": 9, + "body": { + "#": 775 + }, + "isInternal": false + }, + { + "x": 496.451, + "y": 20, + "index": 10, + "body": { + "#": 775 + }, + "isInternal": false + }, + { + "x": 502.447, + "y": 21.369, + "index": 11, + "body": { + "#": 775 + }, + "isInternal": false + }, + { + "x": 507.256, + "y": 25.204, + "index": 12, + "body": { + "#": 775 + }, + "isInternal": false + }, + { + "x": 509.924, + "y": 30.745, + "index": 13, + "body": { + "#": 775 + }, + "isInternal": false + }, + { + "x": 496.451, + "y": 33.82 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 799 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 801 + }, + "max": { + "#": 802 + } + }, + { + "x": 482.978, + "y": 20 + }, + { + "x": 509.924, + "y": 47.64 + }, + { + "x": 496.451, + "y": 33.82 + }, + [ + { + "#": 805 + }, + { + "#": 806 + }, + { + "#": 807 + }, + { + "#": 808 + }, + { + "#": 809 + }, + { + "#": 810 + }, + { + "#": 811 + } + ], + { + "x": -0.90099, + "y": -0.43383 + }, + { + "x": -0.62348, + "y": -0.78184 + }, + { + "x": -0.22259, + "y": -0.97491 + }, + { + "x": 0.22259, + "y": -0.97491 + }, + { + "x": 0.62348, + "y": -0.78184 + }, + { + "x": 0.90099, + "y": -0.43383 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 21, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 813 + }, + "angle": 0, + "vertices": { + "#": 814 + }, + "position": { + "#": 827 + }, + "force": { + "#": 828 + }, + "torque": 0, + "positionImpulse": { + "#": 829 + }, + "constraintImpulse": { + "#": 830 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 831 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 832 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 833 + }, + "circleRadius": 11.09401, + "bounds": { + "#": 835 + }, + "positionPrev": { + "#": 838 + }, + "anglePrev": 0, + "axes": { + "#": 839 + }, + "area": 369.23864, + "mass": 0.36924, + "inverseMass": 2.70828, + "inertia": 86.8324, + "inverseInertia": 0.01152, + "parent": { + "#": 812 + }, + "sleepCounter": 0 + }, + [ + { + "#": 812 + } + ], + [ + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + } + ], + { + "x": 531.356, + "y": 33.587, + "index": 0, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 528.485, + "y": 38.561, + "index": 1, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 523.511, + "y": 41.432, + "index": 2, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 517.769, + "y": 41.432, + "index": 3, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 512.795, + "y": 38.561, + "index": 4, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 509.924, + "y": 33.587, + "index": 5, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 509.924, + "y": 27.845, + "index": 6, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 512.795, + "y": 22.871, + "index": 7, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 517.769, + "y": 20, + "index": 8, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 523.511, + "y": 20, + "index": 9, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 528.485, + "y": 22.871, + "index": 10, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 531.356, + "y": 27.845, + "index": 11, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 520.64, + "y": 30.716 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 834 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 836 + }, + "max": { + "#": 837 + } + }, + { + "x": 509.924, + "y": 20 + }, + { + "x": 531.356, + "y": 41.432 + }, + { + "x": 520.64, + "y": 30.716 + }, + [ + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + }, + { + "#": 845 + } + ], + { + "x": -0.86608, + "y": -0.4999 + }, + { + "x": -0.4999, + "y": -0.86608 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.4999, + "y": -0.86608 + }, + { + "x": 0.86608, + "y": -0.4999 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 22, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 847 + }, + "angle": 0, + "vertices": { + "#": 848 + }, + "position": { + "#": 869 + }, + "force": { + "#": 870 + }, + "torque": 0, + "positionImpulse": { + "#": 871 + }, + "constraintImpulse": { + "#": 872 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 873 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 874 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 875 + }, + "circleRadius": 19.59255, + "bounds": { + "#": 877 + }, + "positionPrev": { + "#": 880 + }, + "anglePrev": 0, + "axes": { + "#": 881 + }, + "area": 1186.20081, + "mass": 1.1862, + "inverseMass": 0.84303, + "inertia": 895.81914, + "inverseInertia": 0.00112, + "parent": { + "#": 846 + }, + "sleepCounter": 0 + }, + [ + { + "#": 846 + } + ], + [ + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + }, + { + "#": 852 + }, + { + "#": 853 + }, + { + "#": 854 + }, + { + "#": 855 + }, + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + }, + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + } + ], + { + "x": 570.058, + "y": 42.416, + "index": 0, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 568.164, + "y": 48.246, + "index": 1, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 564.561, + "y": 53.205, + "index": 2, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 559.602, + "y": 56.808, + "index": 3, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 553.772, + "y": 58.702, + "index": 4, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 547.642, + "y": 58.702, + "index": 5, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 541.812, + "y": 56.808, + "index": 6, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 536.853, + "y": 53.205, + "index": 7, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 533.25, + "y": 48.246, + "index": 8, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 531.356, + "y": 42.416, + "index": 9, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 531.356, + "y": 36.286, + "index": 10, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 533.25, + "y": 30.456, + "index": 11, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 536.853, + "y": 25.497, + "index": 12, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 541.812, + "y": 21.894, + "index": 13, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 547.642, + "y": 20, + "index": 14, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 553.772, + "y": 20, + "index": 15, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 559.602, + "y": 21.894, + "index": 16, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 564.561, + "y": 25.497, + "index": 17, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 568.164, + "y": 30.456, + "index": 18, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 570.058, + "y": 36.286, + "index": 19, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 550.707, + "y": 39.351 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 876 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 878 + }, + "max": { + "#": 879 + } + }, + { + "x": 531.356, + "y": 20 + }, + { + "x": 570.058, + "y": 58.702 + }, + { + "x": 550.707, + "y": 39.351 + }, + [ + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + }, + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + }, + { + "#": 890 + }, + { + "#": 891 + } + ], + { + "x": -0.95107, + "y": -0.30898 + }, + { + "x": -0.80901, + "y": -0.58779 + }, + { + "x": -0.58779, + "y": -0.80901 + }, + { + "x": -0.30898, + "y": -0.95107 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30898, + "y": -0.95107 + }, + { + "x": 0.58779, + "y": -0.80901 + }, + { + "x": 0.80901, + "y": -0.58779 + }, + { + "x": 0.95107, + "y": -0.30898 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 23, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 893 + }, + "angle": 0, + "vertices": { + "#": 894 + }, + "position": { + "#": 909 + }, + "force": { + "#": 910 + }, + "torque": 0, + "positionImpulse": { + "#": 911 + }, + "constraintImpulse": { + "#": 912 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 913 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 914 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 915 + }, + "circleRadius": 13.88327, + "bounds": { + "#": 917 + }, + "positionPrev": { + "#": 920 + }, + "anglePrev": 0, + "axes": { + "#": 921 + }, + "area": 585.3797, + "mass": 0.58538, + "inverseMass": 1.70829, + "inertia": 218.20048, + "inverseInertia": 0.00458, + "parent": { + "#": 892 + }, + "sleepCounter": 0 + }, + [ + { + "#": 892 + } + ], + [ + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + }, + { + "#": 901 + }, + { + "#": 902 + }, + { + "#": 903 + }, + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + } + ], + { + "x": 597.128, + "y": 36.972, + "index": 0, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 594.447, + "y": 42.539, + "index": 1, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 589.617, + "y": 46.391, + "index": 2, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 583.593, + "y": 47.766, + "index": 3, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 577.569, + "y": 46.391, + "index": 4, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 572.739, + "y": 42.539, + "index": 5, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 570.058, + "y": 36.972, + "index": 6, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 570.058, + "y": 30.794, + "index": 7, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 572.739, + "y": 25.227, + "index": 8, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 577.569, + "y": 21.375, + "index": 9, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 583.593, + "y": 20, + "index": 10, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 589.617, + "y": 21.375, + "index": 11, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 594.447, + "y": 25.227, + "index": 12, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 597.128, + "y": 30.794, + "index": 13, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 583.593, + "y": 33.883 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 916 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 918 + }, + "max": { + "#": 919 + } + }, + { + "x": 570.058, + "y": 20 + }, + { + "x": 597.128, + "y": 47.766 + }, + { + "x": 583.593, + "y": 33.883 + }, + [ + { + "#": 922 + }, + { + "#": 923 + }, + { + "#": 924 + }, + { + "#": 925 + }, + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + } + ], + { + "x": -0.90096, + "y": -0.43389 + }, + { + "x": -0.62351, + "y": -0.78182 + }, + { + "x": -0.22253, + "y": -0.97493 + }, + { + "x": 0.22253, + "y": -0.97493 + }, + { + "x": 0.62351, + "y": -0.78182 + }, + { + "x": 0.90096, + "y": -0.43389 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 24, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 930 + }, + "angle": 0, + "vertices": { + "#": 931 + }, + "position": { + "#": 952 + }, + "force": { + "#": 953 + }, + "torque": 0, + "positionImpulse": { + "#": 954 + }, + "constraintImpulse": { + "#": 955 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 956 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 957 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 958 + }, + "circleRadius": 19.27482, + "bounds": { + "#": 960 + }, + "positionPrev": { + "#": 963 + }, + "anglePrev": 0, + "axes": { + "#": 964 + }, + "area": 1148.07426, + "mass": 1.14807, + "inverseMass": 0.87102, + "inertia": 839.15824, + "inverseInertia": 0.00119, + "parent": { + "#": 929 + }, + "sleepCounter": 0 + }, + [ + { + "#": 929 + } + ], + [ + { + "#": 932 + }, + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + }, + { + "#": 943 + }, + { + "#": 944 + }, + { + "#": 945 + }, + { + "#": 946 + }, + { + "#": 947 + }, + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + } + ], + { + "x": 635.204, + "y": 42.053, + "index": 0, + "body": { + "#": 929 + }, + "isInternal": false + }, + { + "x": 633.34, + "y": 47.789, + "index": 1, + "body": { + "#": 929 + }, + "isInternal": false + }, + { + "x": 629.795, + "y": 52.667, + "index": 2, + "body": { + "#": 929 + }, + "isInternal": false + }, + { + "x": 624.917, + "y": 56.212, + "index": 3, + "body": { + "#": 929 + }, + "isInternal": false + }, + { + "x": 619.181, + "y": 58.076, + "index": 4, + "body": { + "#": 929 + }, + "isInternal": false + }, + { + "x": 613.151, + "y": 58.076, + "index": 5, + "body": { + "#": 929 + }, + "isInternal": false + }, + { + "x": 607.415, + "y": 56.212, + "index": 6, + "body": { + "#": 929 + }, + "isInternal": false + }, + { + "x": 602.537, + "y": 52.667, + "index": 7, + "body": { + "#": 929 + }, + "isInternal": false + }, + { + "x": 598.992, + "y": 47.789, + "index": 8, + "body": { + "#": 929 + }, + "isInternal": false + }, + { + "x": 597.128, + "y": 42.053, + "index": 9, + "body": { + "#": 929 + }, + "isInternal": false + }, + { + "x": 597.128, + "y": 36.023, + "index": 10, + "body": { + "#": 929 + }, + "isInternal": false + }, + { + "x": 598.992, + "y": 30.287, + "index": 11, + "body": { + "#": 929 + }, + "isInternal": false + }, + { + "x": 602.537, + "y": 25.409, + "index": 12, + "body": { + "#": 929 + }, + "isInternal": false + }, + { + "x": 607.415, + "y": 21.864, + "index": 13, + "body": { + "#": 929 + }, + "isInternal": false + }, + { + "x": 613.151, + "y": 20, + "index": 14, + "body": { + "#": 929 + }, + "isInternal": false + }, + { + "x": 619.181, + "y": 20, + "index": 15, + "body": { + "#": 929 + }, + "isInternal": false + }, + { + "x": 624.917, + "y": 21.864, + "index": 16, + "body": { + "#": 929 + }, + "isInternal": false + }, + { + "x": 629.795, + "y": 25.409, + "index": 17, + "body": { + "#": 929 + }, + "isInternal": false + }, + { + "x": 633.34, + "y": 30.287, + "index": 18, + "body": { + "#": 929 + }, + "isInternal": false + }, + { + "x": 635.204, + "y": 36.023, + "index": 19, + "body": { + "#": 929 + }, + "isInternal": false + }, + { + "x": 616.166, + "y": 39.038 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 959 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 961 + }, + "max": { + "#": 962 + } + }, + { + "x": 597.128, + "y": 20 + }, + { + "x": 635.204, + "y": 58.076 + }, + { + "x": 616.166, + "y": 39.038 + }, + [ + { + "#": 965 + }, + { + "#": 966 + }, + { + "#": 967 + }, + { + "#": 968 + }, + { + "#": 969 + }, + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + } + ], + { + "x": -0.95104, + "y": -0.30906 + }, + { + "x": -0.80894, + "y": -0.58789 + }, + { + "x": -0.58789, + "y": -0.80894 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.58789, + "y": -0.80894 + }, + { + "x": 0.80894, + "y": -0.58789 + }, + { + "x": 0.95104, + "y": -0.30906 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 25, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 976 + }, + "angle": 0, + "vertices": { + "#": 977 + }, + "position": { + "#": 996 + }, + "force": { + "#": 997 + }, + "torque": 0, + "positionImpulse": { + "#": 998 + }, + "constraintImpulse": { + "#": 999 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1000 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1001 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1002 + }, + "circleRadius": 16.26102, + "bounds": { + "#": 1004 + }, + "positionPrev": { + "#": 1007 + }, + "anglePrev": 0, + "axes": { + "#": 1008 + }, + "area": 813.92894, + "mass": 0.81393, + "inverseMass": 1.22861, + "inertia": 421.78337, + "inverseInertia": 0.00237, + "parent": { + "#": 975 + }, + "sleepCounter": 0 + }, + [ + { + "#": 975 + } + ], + [ + { + "#": 978 + }, + { + "#": 979 + }, + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + }, + { + "#": 985 + }, + { + "#": 986 + }, + { + "#": 987 + }, + { + "#": 988 + }, + { + "#": 989 + }, + { + "#": 990 + }, + { + "#": 991 + }, + { + "#": 992 + }, + { + "#": 993 + }, + { + "#": 994 + }, + { + "#": 995 + } + ], + { + "x": 52.028, + "y": 77.935, + "index": 0, + "body": { + "#": 975 + }, + "isInternal": false + }, + { + "x": 50.096, + "y": 83.242, + "index": 1, + "body": { + "#": 975 + }, + "isInternal": false + }, + { + "x": 46.466, + "y": 87.568, + "index": 2, + "body": { + "#": 975 + }, + "isInternal": false + }, + { + "x": 41.576, + "y": 90.391, + "index": 3, + "body": { + "#": 975 + }, + "isInternal": false + }, + { + "x": 36.014, + "y": 91.372, + "index": 4, + "body": { + "#": 975 + }, + "isInternal": false + }, + { + "x": 30.452, + "y": 90.391, + "index": 5, + "body": { + "#": 975 + }, + "isInternal": false + }, + { + "x": 25.562, + "y": 87.568, + "index": 6, + "body": { + "#": 975 + }, + "isInternal": false + }, + { + "x": 21.932, + "y": 83.242, + "index": 7, + "body": { + "#": 975 + }, + "isInternal": false + }, + { + "x": 20, + "y": 77.935, + "index": 8, + "body": { + "#": 975 + }, + "isInternal": false + }, + { + "x": 20, + "y": 72.287, + "index": 9, + "body": { + "#": 975 + }, + "isInternal": false + }, + { + "x": 21.932, + "y": 66.98, + "index": 10, + "body": { + "#": 975 + }, + "isInternal": false + }, + { + "x": 25.562, + "y": 62.654, + "index": 11, + "body": { + "#": 975 + }, + "isInternal": false + }, + { + "x": 30.452, + "y": 59.831, + "index": 12, + "body": { + "#": 975 + }, + "isInternal": false + }, + { + "x": 36.014, + "y": 58.85, + "index": 13, + "body": { + "#": 975 + }, + "isInternal": false + }, + { + "x": 41.576, + "y": 59.831, + "index": 14, + "body": { + "#": 975 + }, + "isInternal": false + }, + { + "x": 46.466, + "y": 62.654, + "index": 15, + "body": { + "#": 975 + }, + "isInternal": false + }, + { + "x": 50.096, + "y": 66.98, + "index": 16, + "body": { + "#": 975 + }, + "isInternal": false + }, + { + "x": 52.028, + "y": 72.287, + "index": 17, + "body": { + "#": 975 + }, + "isInternal": false + }, + { + "x": 36.014, + "y": 75.111 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1003 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1005 + }, + "max": { + "#": 1006 + } + }, + { + "x": 20, + "y": 58.85 + }, + { + "x": 52.028, + "y": 91.372 + }, + { + "x": 36.014, + "y": 75.111 + }, + [ + { + "#": 1009 + }, + { + "#": 1010 + }, + { + "#": 1011 + }, + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + }, + { + "#": 1016 + }, + { + "#": 1017 + } + ], + { + "x": -0.93967, + "y": -0.34208 + }, + { + "x": -0.76604, + "y": -0.64279 + }, + { + "x": -0.49997, + "y": -0.86604 + }, + { + "x": -0.17369, + "y": -0.9848 + }, + { + "x": 0.17369, + "y": -0.9848 + }, + { + "x": 0.49997, + "y": -0.86604 + }, + { + "x": 0.76604, + "y": -0.64279 + }, + { + "x": 0.93967, + "y": -0.34208 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 26, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1019 + }, + "angle": 0, + "vertices": { + "#": 1020 + }, + "position": { + "#": 1033 + }, + "force": { + "#": 1034 + }, + "torque": 0, + "positionImpulse": { + "#": 1035 + }, + "constraintImpulse": { + "#": 1036 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1037 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1038 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1039 + }, + "circleRadius": 11.63199, + "bounds": { + "#": 1041 + }, + "positionPrev": { + "#": 1044 + }, + "anglePrev": 0, + "axes": { + "#": 1045 + }, + "area": 405.92888, + "mass": 0.40593, + "inverseMass": 2.46349, + "inertia": 104.94637, + "inverseInertia": 0.00953, + "parent": { + "#": 1018 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1018 + } + ], + [ + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + }, + { + "#": 1026 + }, + { + "#": 1027 + }, + { + "#": 1028 + }, + { + "#": 1029 + }, + { + "#": 1030 + }, + { + "#": 1031 + }, + { + "#": 1032 + } + ], + { + "x": 74.5, + "y": 73.097, + "index": 0, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 71.489, + "y": 78.311, + "index": 1, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 66.275, + "y": 81.322, + "index": 2, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 60.253, + "y": 81.322, + "index": 3, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 55.039, + "y": 78.311, + "index": 4, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 52.028, + "y": 73.097, + "index": 5, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 52.028, + "y": 67.075, + "index": 6, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 55.039, + "y": 61.861, + "index": 7, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 60.253, + "y": 58.85, + "index": 8, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 66.275, + "y": 58.85, + "index": 9, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 71.489, + "y": 61.861, + "index": 10, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 74.5, + "y": 67.075, + "index": 11, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 63.264, + "y": 70.086 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1040 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1042 + }, + "max": { + "#": 1043 + } + }, + { + "x": 52.028, + "y": 58.85 + }, + { + "x": 74.5, + "y": 81.322 + }, + { + "x": 63.264, + "y": 70.086 + }, + [ + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + } + ], + { + "x": -0.86598, + "y": -0.50009 + }, + { + "x": -0.50009, + "y": -0.86598 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.50009, + "y": -0.86598 + }, + { + "x": 0.86598, + "y": -0.50009 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 27, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1053 + }, + "angle": 0, + "vertices": { + "#": 1054 + }, + "position": { + "#": 1073 + }, + "force": { + "#": 1074 + }, + "torque": 0, + "positionImpulse": { + "#": 1075 + }, + "constraintImpulse": { + "#": 1076 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1077 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1078 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1079 + }, + "circleRadius": 16.25193, + "bounds": { + "#": 1081 + }, + "positionPrev": { + "#": 1084 + }, + "anglePrev": 0, + "axes": { + "#": 1085 + }, + "area": 813.04524, + "mass": 0.81305, + "inverseMass": 1.22994, + "inertia": 420.86798, + "inverseInertia": 0.00238, + "parent": { + "#": 1052 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1052 + } + ], + [ + { + "#": 1055 + }, + { + "#": 1056 + }, + { + "#": 1057 + }, + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + }, + { + "#": 1061 + }, + { + "#": 1062 + }, + { + "#": 1063 + }, + { + "#": 1064 + }, + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + } + ], + { + "x": 106.51, + "y": 77.924, + "index": 0, + "body": { + "#": 1052 + }, + "isInternal": false + }, + { + "x": 104.58, + "y": 83.228, + "index": 1, + "body": { + "#": 1052 + }, + "isInternal": false + }, + { + "x": 100.952, + "y": 87.552, + "index": 2, + "body": { + "#": 1052 + }, + "isInternal": false + }, + { + "x": 96.063, + "y": 90.374, + "index": 3, + "body": { + "#": 1052 + }, + "isInternal": false + }, + { + "x": 90.505, + "y": 91.354, + "index": 4, + "body": { + "#": 1052 + }, + "isInternal": false + }, + { + "x": 84.947, + "y": 90.374, + "index": 5, + "body": { + "#": 1052 + }, + "isInternal": false + }, + { + "x": 80.058, + "y": 87.552, + "index": 6, + "body": { + "#": 1052 + }, + "isInternal": false + }, + { + "x": 76.43, + "y": 83.228, + "index": 7, + "body": { + "#": 1052 + }, + "isInternal": false + }, + { + "x": 74.5, + "y": 77.924, + "index": 8, + "body": { + "#": 1052 + }, + "isInternal": false + }, + { + "x": 74.5, + "y": 72.28, + "index": 9, + "body": { + "#": 1052 + }, + "isInternal": false + }, + { + "x": 76.43, + "y": 66.976, + "index": 10, + "body": { + "#": 1052 + }, + "isInternal": false + }, + { + "x": 80.058, + "y": 62.652, + "index": 11, + "body": { + "#": 1052 + }, + "isInternal": false + }, + { + "x": 84.947, + "y": 59.83, + "index": 12, + "body": { + "#": 1052 + }, + "isInternal": false + }, + { + "x": 90.505, + "y": 58.85, + "index": 13, + "body": { + "#": 1052 + }, + "isInternal": false + }, + { + "x": 96.063, + "y": 59.83, + "index": 14, + "body": { + "#": 1052 + }, + "isInternal": false + }, + { + "x": 100.952, + "y": 62.652, + "index": 15, + "body": { + "#": 1052 + }, + "isInternal": false + }, + { + "x": 104.58, + "y": 66.976, + "index": 16, + "body": { + "#": 1052 + }, + "isInternal": false + }, + { + "x": 106.51, + "y": 72.28, + "index": 17, + "body": { + "#": 1052 + }, + "isInternal": false + }, + { + "x": 90.505, + "y": 75.102 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1080 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1082 + }, + "max": { + "#": 1083 + } + }, + { + "x": 74.5, + "y": 58.85 + }, + { + "x": 106.51, + "y": 91.354 + }, + { + "x": 90.505, + "y": 75.102 + }, + [ + { + "#": 1086 + }, + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + } + ], + { + "x": -0.93972, + "y": -0.34194 + }, + { + "x": -0.76607, + "y": -0.64276 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17364, + "y": -0.98481 + }, + { + "x": 0.17364, + "y": -0.98481 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76607, + "y": -0.64276 + }, + { + "x": 0.93972, + "y": -0.34194 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 28, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1096 + }, + "angle": 0, + "vertices": { + "#": 1097 + }, + "position": { + "#": 1118 + }, + "force": { + "#": 1119 + }, + "torque": 0, + "positionImpulse": { + "#": 1120 + }, + "constraintImpulse": { + "#": 1121 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1122 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1123 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1124 + }, + "circleRadius": 19.50356, + "bounds": { + "#": 1126 + }, + "positionPrev": { + "#": 1129 + }, + "anglePrev": 0, + "axes": { + "#": 1130 + }, + "area": 1175.44088, + "mass": 1.17544, + "inverseMass": 0.85074, + "inertia": 879.64105, + "inverseInertia": 0.00114, + "parent": { + "#": 1095 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1095 + } + ], + [ + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + }, + { + "#": 1108 + }, + { + "#": 1109 + }, + { + "#": 1110 + }, + { + "#": 1111 + }, + { + "#": 1112 + }, + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + } + ], + { + "x": 145.036, + "y": 81.164, + "index": 0, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 143.151, + "y": 86.967, + "index": 1, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 139.564, + "y": 91.904, + "index": 2, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 134.627, + "y": 95.491, + "index": 3, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 128.824, + "y": 97.376, + "index": 4, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 122.722, + "y": 97.376, + "index": 5, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 116.919, + "y": 95.491, + "index": 6, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 111.982, + "y": 91.904, + "index": 7, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 108.395, + "y": 86.967, + "index": 8, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 106.51, + "y": 81.164, + "index": 9, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 106.51, + "y": 75.062, + "index": 10, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 108.395, + "y": 69.259, + "index": 11, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 111.982, + "y": 64.322, + "index": 12, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 116.919, + "y": 60.735, + "index": 13, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 122.722, + "y": 58.85, + "index": 14, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 128.824, + "y": 58.85, + "index": 15, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 134.627, + "y": 60.735, + "index": 16, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 139.564, + "y": 64.322, + "index": 17, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 143.151, + "y": 69.259, + "index": 18, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 145.036, + "y": 75.062, + "index": 19, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 125.773, + "y": 78.113 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1125 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1127 + }, + "max": { + "#": 1128 + } + }, + { + "x": 106.51, + "y": 58.85 + }, + { + "x": 145.036, + "y": 97.376 + }, + { + "x": 125.773, + "y": 78.113 + }, + [ + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + } + ], + { + "x": -0.95108, + "y": -0.30894 + }, + { + "x": -0.80901, + "y": -0.58779 + }, + { + "x": -0.58779, + "y": -0.80901 + }, + { + "x": -0.30894, + "y": -0.95108 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30894, + "y": -0.95108 + }, + { + "x": 0.58779, + "y": -0.80901 + }, + { + "x": 0.80901, + "y": -0.58779 + }, + { + "x": 0.95108, + "y": -0.30894 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 29, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1142 + }, + "angle": 0, + "vertices": { + "#": 1143 + }, + "position": { + "#": 1156 + }, + "force": { + "#": 1157 + }, + "torque": 0, + "positionImpulse": { + "#": 1158 + }, + "constraintImpulse": { + "#": 1159 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1160 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1161 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1162 + }, + "circleRadius": 10.39922, + "bounds": { + "#": 1164 + }, + "positionPrev": { + "#": 1167 + }, + "anglePrev": 0, + "axes": { + "#": 1168 + }, + "area": 324.431, + "mass": 0.32443, + "inverseMass": 3.08232, + "inertia": 67.03663, + "inverseInertia": 0.01492, + "parent": { + "#": 1141 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1141 + } + ], + [ + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + }, + { + "#": 1152 + }, + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + } + ], + { + "x": 165.126, + "y": 71.587, + "index": 0, + "body": { + "#": 1141 + }, + "isInternal": false + }, + { + "x": 162.434, + "y": 76.248, + "index": 1, + "body": { + "#": 1141 + }, + "isInternal": false + }, + { + "x": 157.773, + "y": 78.94, + "index": 2, + "body": { + "#": 1141 + }, + "isInternal": false + }, + { + "x": 152.389, + "y": 78.94, + "index": 3, + "body": { + "#": 1141 + }, + "isInternal": false + }, + { + "x": 147.728, + "y": 76.248, + "index": 4, + "body": { + "#": 1141 + }, + "isInternal": false + }, + { + "x": 145.036, + "y": 71.587, + "index": 5, + "body": { + "#": 1141 + }, + "isInternal": false + }, + { + "x": 145.036, + "y": 66.203, + "index": 6, + "body": { + "#": 1141 + }, + "isInternal": false + }, + { + "x": 147.728, + "y": 61.542, + "index": 7, + "body": { + "#": 1141 + }, + "isInternal": false + }, + { + "x": 152.389, + "y": 58.85, + "index": 8, + "body": { + "#": 1141 + }, + "isInternal": false + }, + { + "x": 157.773, + "y": 58.85, + "index": 9, + "body": { + "#": 1141 + }, + "isInternal": false + }, + { + "x": 162.434, + "y": 61.542, + "index": 10, + "body": { + "#": 1141 + }, + "isInternal": false + }, + { + "x": 165.126, + "y": 66.203, + "index": 11, + "body": { + "#": 1141 + }, + "isInternal": false + }, + { + "x": 155.081, + "y": 68.895 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1163 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1165 + }, + "max": { + "#": 1166 + } + }, + { + "x": 145.036, + "y": 58.85 + }, + { + "x": 165.126, + "y": 78.94 + }, + { + "x": 155.081, + "y": 68.895 + }, + [ + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + } + ], + { + "x": -0.86595, + "y": -0.50014 + }, + { + "x": -0.50014, + "y": -0.86595 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.50014, + "y": -0.86595 + }, + { + "x": 0.86595, + "y": -0.50014 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 30, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1176 + }, + "angle": 0, + "vertices": { + "#": 1177 + }, + "position": { + "#": 1194 + }, + "force": { + "#": 1195 + }, + "torque": 0, + "positionImpulse": { + "#": 1196 + }, + "constraintImpulse": { + "#": 1197 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1198 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1199 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1200 + }, + "circleRadius": 15.35867, + "bounds": { + "#": 1202 + }, + "positionPrev": { + "#": 1205 + }, + "anglePrev": 0, + "axes": { + "#": 1206 + }, + "area": 722.17737, + "mass": 0.72218, + "inverseMass": 1.3847, + "inertia": 332.06746, + "inverseInertia": 0.00301, + "parent": { + "#": 1175 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1175 + } + ], + [ + { + "#": 1178 + }, + { + "#": 1179 + }, + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + }, + { + "#": 1186 + }, + { + "#": 1187 + }, + { + "#": 1188 + }, + { + "#": 1189 + }, + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + } + ], + { + "x": 195.254, + "y": 76.91, + "index": 0, + "body": { + "#": 1175 + }, + "isInternal": false + }, + { + "x": 192.96, + "y": 82.447, + "index": 1, + "body": { + "#": 1175 + }, + "isInternal": false + }, + { + "x": 188.723, + "y": 86.684, + "index": 2, + "body": { + "#": 1175 + }, + "isInternal": false + }, + { + "x": 183.186, + "y": 88.978, + "index": 3, + "body": { + "#": 1175 + }, + "isInternal": false + }, + { + "x": 177.194, + "y": 88.978, + "index": 4, + "body": { + "#": 1175 + }, + "isInternal": false + }, + { + "x": 171.657, + "y": 86.684, + "index": 5, + "body": { + "#": 1175 + }, + "isInternal": false + }, + { + "x": 167.42, + "y": 82.447, + "index": 6, + "body": { + "#": 1175 + }, + "isInternal": false + }, + { + "x": 165.126, + "y": 76.91, + "index": 7, + "body": { + "#": 1175 + }, + "isInternal": false + }, + { + "x": 165.126, + "y": 70.918, + "index": 8, + "body": { + "#": 1175 + }, + "isInternal": false + }, + { + "x": 167.42, + "y": 65.381, + "index": 9, + "body": { + "#": 1175 + }, + "isInternal": false + }, + { + "x": 171.657, + "y": 61.144, + "index": 10, + "body": { + "#": 1175 + }, + "isInternal": false + }, + { + "x": 177.194, + "y": 58.85, + "index": 11, + "body": { + "#": 1175 + }, + "isInternal": false + }, + { + "x": 183.186, + "y": 58.85, + "index": 12, + "body": { + "#": 1175 + }, + "isInternal": false + }, + { + "x": 188.723, + "y": 61.144, + "index": 13, + "body": { + "#": 1175 + }, + "isInternal": false + }, + { + "x": 192.96, + "y": 65.381, + "index": 14, + "body": { + "#": 1175 + }, + "isInternal": false + }, + { + "x": 195.254, + "y": 70.918, + "index": 15, + "body": { + "#": 1175 + }, + "isInternal": false + }, + { + "x": 180.19, + "y": 73.914 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1201 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1203 + }, + "max": { + "#": 1204 + } + }, + { + "x": 165.126, + "y": 58.85 + }, + { + "x": 195.254, + "y": 88.978 + }, + { + "x": 180.19, + "y": 73.914 + }, + [ + { + "#": 1207 + }, + { + "#": 1208 + }, + { + "#": 1209 + }, + { + "#": 1210 + }, + { + "#": 1211 + }, + { + "#": 1212 + }, + { + "#": 1213 + }, + { + "#": 1214 + } + ], + { + "x": -0.92385, + "y": -0.38275 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38275, + "y": -0.92385 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38275, + "y": -0.92385 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92385, + "y": -0.38275 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 31, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1216 + }, + "angle": 0, + "vertices": { + "#": 1217 + }, + "position": { + "#": 1232 + }, + "force": { + "#": 1233 + }, + "torque": 0, + "positionImpulse": { + "#": 1234 + }, + "constraintImpulse": { + "#": 1235 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1236 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1237 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1238 + }, + "circleRadius": 12.65351, + "bounds": { + "#": 1240 + }, + "positionPrev": { + "#": 1243 + }, + "anglePrev": 0, + "axes": { + "#": 1244 + }, + "area": 486.27648, + "mass": 0.48628, + "inverseMass": 2.05644, + "inertia": 150.57294, + "inverseInertia": 0.00664, + "parent": { + "#": 1215 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1215 + } + ], + [ + { + "#": 1218 + }, + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + }, + { + "#": 1226 + }, + { + "#": 1227 + }, + { + "#": 1228 + }, + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + } + ], + { + "x": 219.926, + "y": 74.32, + "index": 0, + "body": { + "#": 1215 + }, + "isInternal": false + }, + { + "x": 217.483, + "y": 79.393, + "index": 1, + "body": { + "#": 1215 + }, + "isInternal": false + }, + { + "x": 213.08, + "y": 82.904, + "index": 2, + "body": { + "#": 1215 + }, + "isInternal": false + }, + { + "x": 207.59, + "y": 84.158, + "index": 3, + "body": { + "#": 1215 + }, + "isInternal": false + }, + { + "x": 202.1, + "y": 82.904, + "index": 4, + "body": { + "#": 1215 + }, + "isInternal": false + }, + { + "x": 197.697, + "y": 79.393, + "index": 5, + "body": { + "#": 1215 + }, + "isInternal": false + }, + { + "x": 195.254, + "y": 74.32, + "index": 6, + "body": { + "#": 1215 + }, + "isInternal": false + }, + { + "x": 195.254, + "y": 68.688, + "index": 7, + "body": { + "#": 1215 + }, + "isInternal": false + }, + { + "x": 197.697, + "y": 63.615, + "index": 8, + "body": { + "#": 1215 + }, + "isInternal": false + }, + { + "x": 202.1, + "y": 60.104, + "index": 9, + "body": { + "#": 1215 + }, + "isInternal": false + }, + { + "x": 207.59, + "y": 58.85, + "index": 10, + "body": { + "#": 1215 + }, + "isInternal": false + }, + { + "x": 213.08, + "y": 60.104, + "index": 11, + "body": { + "#": 1215 + }, + "isInternal": false + }, + { + "x": 217.483, + "y": 63.615, + "index": 12, + "body": { + "#": 1215 + }, + "isInternal": false + }, + { + "x": 219.926, + "y": 68.688, + "index": 13, + "body": { + "#": 1215 + }, + "isInternal": false + }, + { + "x": 207.59, + "y": 71.504 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1239 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1241 + }, + "max": { + "#": 1242 + } + }, + { + "x": 195.254, + "y": 58.85 + }, + { + "x": 219.926, + "y": 84.158 + }, + { + "x": 207.59, + "y": 71.504 + }, + [ + { + "#": 1245 + }, + { + "#": 1246 + }, + { + "#": 1247 + }, + { + "#": 1248 + }, + { + "#": 1249 + }, + { + "#": 1250 + }, + { + "#": 1251 + } + ], + { + "x": -0.90097, + "y": -0.43388 + }, + { + "x": -0.62346, + "y": -0.78186 + }, + { + "x": -0.22268, + "y": -0.97489 + }, + { + "x": 0.22268, + "y": -0.97489 + }, + { + "x": 0.62346, + "y": -0.78186 + }, + { + "x": 0.90097, + "y": -0.43388 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 32, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1253 + }, + "angle": 0, + "vertices": { + "#": 1254 + }, + "position": { + "#": 1269 + }, + "force": { + "#": 1270 + }, + "torque": 0, + "positionImpulse": { + "#": 1271 + }, + "constraintImpulse": { + "#": 1272 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1273 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1274 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1275 + }, + "circleRadius": 13.5183, + "bounds": { + "#": 1277 + }, + "positionPrev": { + "#": 1280 + }, + "anglePrev": 0, + "axes": { + "#": 1281 + }, + "area": 555.02815, + "mass": 0.55503, + "inverseMass": 1.80171, + "inertia": 196.15998, + "inverseInertia": 0.0051, + "parent": { + "#": 1252 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1252 + } + ], + [ + { + "#": 1255 + }, + { + "#": 1256 + }, + { + "#": 1257 + }, + { + "#": 1258 + }, + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + }, + { + "#": 1263 + }, + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + }, + { + "#": 1267 + }, + { + "#": 1268 + } + ], + { + "x": 246.284, + "y": 75.376, + "index": 0, + "body": { + "#": 1252 + }, + "isInternal": false + }, + { + "x": 243.674, + "y": 80.797, + "index": 1, + "body": { + "#": 1252 + }, + "isInternal": false + }, + { + "x": 238.97, + "y": 84.548, + "index": 2, + "body": { + "#": 1252 + }, + "isInternal": false + }, + { + "x": 233.105, + "y": 85.886, + "index": 3, + "body": { + "#": 1252 + }, + "isInternal": false + }, + { + "x": 227.24, + "y": 84.548, + "index": 4, + "body": { + "#": 1252 + }, + "isInternal": false + }, + { + "x": 222.536, + "y": 80.797, + "index": 5, + "body": { + "#": 1252 + }, + "isInternal": false + }, + { + "x": 219.926, + "y": 75.376, + "index": 6, + "body": { + "#": 1252 + }, + "isInternal": false + }, + { + "x": 219.926, + "y": 69.36, + "index": 7, + "body": { + "#": 1252 + }, + "isInternal": false + }, + { + "x": 222.536, + "y": 63.939, + "index": 8, + "body": { + "#": 1252 + }, + "isInternal": false + }, + { + "x": 227.24, + "y": 60.188, + "index": 9, + "body": { + "#": 1252 + }, + "isInternal": false + }, + { + "x": 233.105, + "y": 58.85, + "index": 10, + "body": { + "#": 1252 + }, + "isInternal": false + }, + { + "x": 238.97, + "y": 60.188, + "index": 11, + "body": { + "#": 1252 + }, + "isInternal": false + }, + { + "x": 243.674, + "y": 63.939, + "index": 12, + "body": { + "#": 1252 + }, + "isInternal": false + }, + { + "x": 246.284, + "y": 69.36, + "index": 13, + "body": { + "#": 1252 + }, + "isInternal": false + }, + { + "x": 233.105, + "y": 72.368 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1276 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1278 + }, + "max": { + "#": 1279 + } + }, + { + "x": 219.926, + "y": 58.85 + }, + { + "x": 246.284, + "y": 85.886 + }, + { + "x": 233.105, + "y": 72.368 + }, + [ + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + }, + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + } + ], + { + "x": -0.90101, + "y": -0.4338 + }, + { + "x": -0.62346, + "y": -0.78186 + }, + { + "x": -0.22242, + "y": -0.97495 + }, + { + "x": 0.22242, + "y": -0.97495 + }, + { + "x": 0.62346, + "y": -0.78186 + }, + { + "x": 0.90101, + "y": -0.4338 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 33, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1290 + }, + "angle": 0, + "vertices": { + "#": 1291 + }, + "position": { + "#": 1312 + }, + "force": { + "#": 1313 + }, + "torque": 0, + "positionImpulse": { + "#": 1314 + }, + "constraintImpulse": { + "#": 1315 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1316 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1317 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1318 + }, + "circleRadius": 19.92837, + "bounds": { + "#": 1320 + }, + "positionPrev": { + "#": 1323 + }, + "anglePrev": 0, + "axes": { + "#": 1324 + }, + "area": 1227.18832, + "mass": 1.22719, + "inverseMass": 0.81487, + "inertia": 958.79625, + "inverseInertia": 0.00104, + "parent": { + "#": 1289 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1289 + } + ], + [ + { + "#": 1292 + }, + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + }, + { + "#": 1296 + }, + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + }, + { + "#": 1301 + }, + { + "#": 1302 + }, + { + "#": 1303 + }, + { + "#": 1304 + }, + { + "#": 1305 + }, + { + "#": 1306 + }, + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + }, + { + "#": 1310 + }, + { + "#": 1311 + } + ], + { + "x": 285.65, + "y": 81.65, + "index": 0, + "body": { + "#": 1289 + }, + "isInternal": false + }, + { + "x": 283.723, + "y": 87.58, + "index": 1, + "body": { + "#": 1289 + }, + "isInternal": false + }, + { + "x": 280.058, + "y": 92.624, + "index": 2, + "body": { + "#": 1289 + }, + "isInternal": false + }, + { + "x": 275.014, + "y": 96.289, + "index": 3, + "body": { + "#": 1289 + }, + "isInternal": false + }, + { + "x": 269.084, + "y": 98.216, + "index": 4, + "body": { + "#": 1289 + }, + "isInternal": false + }, + { + "x": 262.85, + "y": 98.216, + "index": 5, + "body": { + "#": 1289 + }, + "isInternal": false + }, + { + "x": 256.92, + "y": 96.289, + "index": 6, + "body": { + "#": 1289 + }, + "isInternal": false + }, + { + "x": 251.876, + "y": 92.624, + "index": 7, + "body": { + "#": 1289 + }, + "isInternal": false + }, + { + "x": 248.211, + "y": 87.58, + "index": 8, + "body": { + "#": 1289 + }, + "isInternal": false + }, + { + "x": 246.284, + "y": 81.65, + "index": 9, + "body": { + "#": 1289 + }, + "isInternal": false + }, + { + "x": 246.284, + "y": 75.416, + "index": 10, + "body": { + "#": 1289 + }, + "isInternal": false + }, + { + "x": 248.211, + "y": 69.486, + "index": 11, + "body": { + "#": 1289 + }, + "isInternal": false + }, + { + "x": 251.876, + "y": 64.442, + "index": 12, + "body": { + "#": 1289 + }, + "isInternal": false + }, + { + "x": 256.92, + "y": 60.777, + "index": 13, + "body": { + "#": 1289 + }, + "isInternal": false + }, + { + "x": 262.85, + "y": 58.85, + "index": 14, + "body": { + "#": 1289 + }, + "isInternal": false + }, + { + "x": 269.084, + "y": 58.85, + "index": 15, + "body": { + "#": 1289 + }, + "isInternal": false + }, + { + "x": 275.014, + "y": 60.777, + "index": 16, + "body": { + "#": 1289 + }, + "isInternal": false + }, + { + "x": 280.058, + "y": 64.442, + "index": 17, + "body": { + "#": 1289 + }, + "isInternal": false + }, + { + "x": 283.723, + "y": 69.486, + "index": 18, + "body": { + "#": 1289 + }, + "isInternal": false + }, + { + "x": 285.65, + "y": 75.416, + "index": 19, + "body": { + "#": 1289 + }, + "isInternal": false + }, + { + "x": 265.967, + "y": 78.533 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1319 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1321 + }, + "max": { + "#": 1322 + } + }, + { + "x": 246.284, + "y": 58.85 + }, + { + "x": 285.65, + "y": 98.216 + }, + { + "x": 265.967, + "y": 78.533 + }, + [ + { + "#": 1325 + }, + { + "#": 1326 + }, + { + "#": 1327 + }, + { + "#": 1328 + }, + { + "#": 1329 + }, + { + "#": 1330 + }, + { + "#": 1331 + }, + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + } + ], + { + "x": -0.95105, + "y": -0.30905 + }, + { + "x": -0.80899, + "y": -0.58782 + }, + { + "x": -0.58782, + "y": -0.80899 + }, + { + "x": -0.30905, + "y": -0.95105 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30905, + "y": -0.95105 + }, + { + "x": 0.58782, + "y": -0.80899 + }, + { + "x": 0.80899, + "y": -0.58782 + }, + { + "x": 0.95105, + "y": -0.30905 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 34, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1336 + }, + "angle": 0, + "vertices": { + "#": 1337 + }, + "position": { + "#": 1358 + }, + "force": { + "#": 1359 + }, + "torque": 0, + "positionImpulse": { + "#": 1360 + }, + "constraintImpulse": { + "#": 1361 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1362 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1363 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1364 + }, + "circleRadius": 19.0442, + "bounds": { + "#": 1366 + }, + "positionPrev": { + "#": 1369 + }, + "anglePrev": 0, + "axes": { + "#": 1370 + }, + "area": 1120.77247, + "mass": 1.12077, + "inverseMass": 0.89224, + "inertia": 799.72157, + "inverseInertia": 0.00125, + "parent": { + "#": 1335 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1335 + } + ], + [ + { + "#": 1338 + }, + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + }, + { + "#": 1342 + }, + { + "#": 1343 + }, + { + "#": 1344 + }, + { + "#": 1345 + }, + { + "#": 1346 + }, + { + "#": 1347 + }, + { + "#": 1348 + }, + { + "#": 1349 + }, + { + "#": 1350 + }, + { + "#": 1351 + }, + { + "#": 1352 + }, + { + "#": 1353 + }, + { + "#": 1354 + }, + { + "#": 1355 + }, + { + "#": 1356 + }, + { + "#": 1357 + } + ], + { + "x": 323.27, + "y": 80.639, + "index": 0, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 321.429, + "y": 86.306, + "index": 1, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 317.926, + "y": 91.126, + "index": 2, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 313.106, + "y": 94.629, + "index": 3, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 307.439, + "y": 96.47, + "index": 4, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 301.481, + "y": 96.47, + "index": 5, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 295.814, + "y": 94.629, + "index": 6, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 290.994, + "y": 91.126, + "index": 7, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 287.491, + "y": 86.306, + "index": 8, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 285.65, + "y": 80.639, + "index": 9, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 285.65, + "y": 74.681, + "index": 10, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 287.491, + "y": 69.014, + "index": 11, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 290.994, + "y": 64.194, + "index": 12, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 295.814, + "y": 60.691, + "index": 13, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 301.481, + "y": 58.85, + "index": 14, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 307.439, + "y": 58.85, + "index": 15, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 313.106, + "y": 60.691, + "index": 16, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 317.926, + "y": 64.194, + "index": 17, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 321.429, + "y": 69.014, + "index": 18, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 323.27, + "y": 74.681, + "index": 19, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 304.46, + "y": 77.66 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1365 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1367 + }, + "max": { + "#": 1368 + } + }, + { + "x": 285.65, + "y": 58.85 + }, + { + "x": 323.27, + "y": 96.47 + }, + { + "x": 304.46, + "y": 77.66 + }, + [ + { + "#": 1371 + }, + { + "#": 1372 + }, + { + "#": 1373 + }, + { + "#": 1374 + }, + { + "#": 1375 + }, + { + "#": 1376 + }, + { + "#": 1377 + }, + { + "#": 1378 + }, + { + "#": 1379 + }, + { + "#": 1380 + } + ], + { + "x": -0.95107, + "y": -0.30897 + }, + { + "x": -0.80893, + "y": -0.5879 + }, + { + "x": -0.5879, + "y": -0.80893 + }, + { + "x": -0.30897, + "y": -0.95107 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30897, + "y": -0.95107 + }, + { + "x": 0.5879, + "y": -0.80893 + }, + { + "x": 0.80893, + "y": -0.5879 + }, + { + "x": 0.95107, + "y": -0.30897 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 35, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1382 + }, + "angle": 0, + "vertices": { + "#": 1383 + }, + "position": { + "#": 1400 + }, + "force": { + "#": 1401 + }, + "torque": 0, + "positionImpulse": { + "#": 1402 + }, + "constraintImpulse": { + "#": 1403 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1404 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1405 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1406 + }, + "circleRadius": 14.32257, + "bounds": { + "#": 1408 + }, + "positionPrev": { + "#": 1411 + }, + "anglePrev": 0, + "axes": { + "#": 1412 + }, + "area": 628.00307, + "mass": 0.628, + "inverseMass": 1.59235, + "inertia": 251.1089, + "inverseInertia": 0.00398, + "parent": { + "#": 1381 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1381 + } + ], + [ + { + "#": 1384 + }, + { + "#": 1385 + }, + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + }, + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + }, + { + "#": 1394 + }, + { + "#": 1395 + }, + { + "#": 1396 + }, + { + "#": 1397 + }, + { + "#": 1398 + }, + { + "#": 1399 + } + ], + { + "x": 351.364, + "y": 75.691, + "index": 0, + "body": { + "#": 1381 + }, + "isInternal": false + }, + { + "x": 349.226, + "y": 80.854, + "index": 1, + "body": { + "#": 1381 + }, + "isInternal": false + }, + { + "x": 345.274, + "y": 84.806, + "index": 2, + "body": { + "#": 1381 + }, + "isInternal": false + }, + { + "x": 340.111, + "y": 86.944, + "index": 3, + "body": { + "#": 1381 + }, + "isInternal": false + }, + { + "x": 334.523, + "y": 86.944, + "index": 4, + "body": { + "#": 1381 + }, + "isInternal": false + }, + { + "x": 329.36, + "y": 84.806, + "index": 5, + "body": { + "#": 1381 + }, + "isInternal": false + }, + { + "x": 325.408, + "y": 80.854, + "index": 6, + "body": { + "#": 1381 + }, + "isInternal": false + }, + { + "x": 323.27, + "y": 75.691, + "index": 7, + "body": { + "#": 1381 + }, + "isInternal": false + }, + { + "x": 323.27, + "y": 70.103, + "index": 8, + "body": { + "#": 1381 + }, + "isInternal": false + }, + { + "x": 325.408, + "y": 64.94, + "index": 9, + "body": { + "#": 1381 + }, + "isInternal": false + }, + { + "x": 329.36, + "y": 60.988, + "index": 10, + "body": { + "#": 1381 + }, + "isInternal": false + }, + { + "x": 334.523, + "y": 58.85, + "index": 11, + "body": { + "#": 1381 + }, + "isInternal": false + }, + { + "x": 340.111, + "y": 58.85, + "index": 12, + "body": { + "#": 1381 + }, + "isInternal": false + }, + { + "x": 345.274, + "y": 60.988, + "index": 13, + "body": { + "#": 1381 + }, + "isInternal": false + }, + { + "x": 349.226, + "y": 64.94, + "index": 14, + "body": { + "#": 1381 + }, + "isInternal": false + }, + { + "x": 351.364, + "y": 70.103, + "index": 15, + "body": { + "#": 1381 + }, + "isInternal": false + }, + { + "x": 337.317, + "y": 72.897 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1407 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1409 + }, + "max": { + "#": 1410 + } + }, + { + "x": 323.27, + "y": 58.85 + }, + { + "x": 351.364, + "y": 86.944 + }, + { + "x": 337.317, + "y": 72.897 + }, + [ + { + "#": 1413 + }, + { + "#": 1414 + }, + { + "#": 1415 + }, + { + "#": 1416 + }, + { + "#": 1417 + }, + { + "#": 1418 + }, + { + "#": 1419 + }, + { + "#": 1420 + } + ], + { + "x": -0.92392, + "y": -0.38259 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38259, + "y": -0.92392 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38259, + "y": -0.92392 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92392, + "y": -0.38259 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 36, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1422 + }, + "angle": 0, + "vertices": { + "#": 1423 + }, + "position": { + "#": 1438 + }, + "force": { + "#": 1439 + }, + "torque": 0, + "positionImpulse": { + "#": 1440 + }, + "constraintImpulse": { + "#": 1441 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1442 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1443 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1444 + }, + "circleRadius": 13.29437, + "bounds": { + "#": 1446 + }, + "positionPrev": { + "#": 1449 + }, + "anglePrev": 0, + "axes": { + "#": 1450 + }, + "area": 536.79017, + "mass": 0.53679, + "inverseMass": 1.86293, + "inertia": 183.48033, + "inverseInertia": 0.00545, + "parent": { + "#": 1421 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1421 + } + ], + [ + { + "#": 1424 + }, + { + "#": 1425 + }, + { + "#": 1426 + }, + { + "#": 1427 + }, + { + "#": 1428 + }, + { + "#": 1429 + }, + { + "#": 1430 + }, + { + "#": 1431 + }, + { + "#": 1432 + }, + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + } + ], + { + "x": 377.286, + "y": 75.102, + "index": 0, + "body": { + "#": 1421 + }, + "isInternal": false + }, + { + "x": 374.719, + "y": 80.433, + "index": 1, + "body": { + "#": 1421 + }, + "isInternal": false + }, + { + "x": 370.093, + "y": 84.122, + "index": 2, + "body": { + "#": 1421 + }, + "isInternal": false + }, + { + "x": 364.325, + "y": 85.438, + "index": 3, + "body": { + "#": 1421 + }, + "isInternal": false + }, + { + "x": 358.557, + "y": 84.122, + "index": 4, + "body": { + "#": 1421 + }, + "isInternal": false + }, + { + "x": 353.931, + "y": 80.433, + "index": 5, + "body": { + "#": 1421 + }, + "isInternal": false + }, + { + "x": 351.364, + "y": 75.102, + "index": 6, + "body": { + "#": 1421 + }, + "isInternal": false + }, + { + "x": 351.364, + "y": 69.186, + "index": 7, + "body": { + "#": 1421 + }, + "isInternal": false + }, + { + "x": 353.931, + "y": 63.855, + "index": 8, + "body": { + "#": 1421 + }, + "isInternal": false + }, + { + "x": 358.557, + "y": 60.166, + "index": 9, + "body": { + "#": 1421 + }, + "isInternal": false + }, + { + "x": 364.325, + "y": 58.85, + "index": 10, + "body": { + "#": 1421 + }, + "isInternal": false + }, + { + "x": 370.093, + "y": 60.166, + "index": 11, + "body": { + "#": 1421 + }, + "isInternal": false + }, + { + "x": 374.719, + "y": 63.855, + "index": 12, + "body": { + "#": 1421 + }, + "isInternal": false + }, + { + "x": 377.286, + "y": 69.186, + "index": 13, + "body": { + "#": 1421 + }, + "isInternal": false + }, + { + "x": 364.325, + "y": 72.144 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1445 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1447 + }, + "max": { + "#": 1448 + } + }, + { + "x": 351.364, + "y": 58.85 + }, + { + "x": 377.286, + "y": 85.438 + }, + { + "x": 364.325, + "y": 72.144 + }, + [ + { + "#": 1451 + }, + { + "#": 1452 + }, + { + "#": 1453 + }, + { + "#": 1454 + }, + { + "#": 1455 + }, + { + "#": 1456 + }, + { + "#": 1457 + } + ], + { + "x": -0.90099, + "y": -0.43385 + }, + { + "x": -0.62348, + "y": -0.78184 + }, + { + "x": -0.22244, + "y": -0.97495 + }, + { + "x": 0.22244, + "y": -0.97495 + }, + { + "x": 0.62348, + "y": -0.78184 + }, + { + "x": 0.90099, + "y": -0.43385 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 37, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1459 + }, + "angle": 0, + "vertices": { + "#": 1460 + }, + "position": { + "#": 1475 + }, + "force": { + "#": 1476 + }, + "torque": 0, + "positionImpulse": { + "#": 1477 + }, + "constraintImpulse": { + "#": 1478 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1479 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1480 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1481 + }, + "circleRadius": 12.00896, + "bounds": { + "#": 1483 + }, + "positionPrev": { + "#": 1486 + }, + "anglePrev": 0, + "axes": { + "#": 1487 + }, + "area": 438.00553, + "mass": 0.43801, + "inverseMass": 2.28308, + "inertia": 122.16297, + "inverseInertia": 0.00819, + "parent": { + "#": 1458 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1458 + } + ], + [ + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + }, + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + }, + { + "#": 1473 + }, + { + "#": 1474 + } + ], + { + "x": 400.702, + "y": 73.531, + "index": 0, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 398.383, + "y": 78.346, + "index": 1, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 394.204, + "y": 81.679, + "index": 2, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 388.994, + "y": 82.868, + "index": 3, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 383.784, + "y": 81.679, + "index": 4, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 379.605, + "y": 78.346, + "index": 5, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 377.286, + "y": 73.531, + "index": 6, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 377.286, + "y": 68.187, + "index": 7, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 379.605, + "y": 63.372, + "index": 8, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 383.784, + "y": 60.039, + "index": 9, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 388.994, + "y": 58.85, + "index": 10, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 394.204, + "y": 60.039, + "index": 11, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 398.383, + "y": 63.372, + "index": 12, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 400.702, + "y": 68.187, + "index": 13, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 388.994, + "y": 70.859 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1482 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1484 + }, + "max": { + "#": 1485 + } + }, + { + "x": 377.286, + "y": 58.85 + }, + { + "x": 400.702, + "y": 82.868 + }, + { + "x": 388.994, + "y": 70.859 + }, + [ + { + "#": 1488 + }, + { + "#": 1489 + }, + { + "#": 1490 + }, + { + "#": 1491 + }, + { + "#": 1492 + }, + { + "#": 1493 + }, + { + "#": 1494 + } + ], + { + "x": -0.90095, + "y": -0.43392 + }, + { + "x": -0.62353, + "y": -0.7818 + }, + { + "x": -0.22249, + "y": -0.97493 + }, + { + "x": 0.22249, + "y": -0.97493 + }, + { + "x": 0.62353, + "y": -0.7818 + }, + { + "x": 0.90095, + "y": -0.43392 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 38, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1496 + }, + "angle": 0, + "vertices": { + "#": 1497 + }, + "position": { + "#": 1516 + }, + "force": { + "#": 1517 + }, + "torque": 0, + "positionImpulse": { + "#": 1518 + }, + "constraintImpulse": { + "#": 1519 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1520 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1521 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1522 + }, + "circleRadius": 16.14536, + "bounds": { + "#": 1524 + }, + "positionPrev": { + "#": 1527 + }, + "anglePrev": 0, + "axes": { + "#": 1528 + }, + "area": 802.39633, + "mass": 0.8024, + "inverseMass": 1.24627, + "inertia": 409.91549, + "inverseInertia": 0.00244, + "parent": { + "#": 1495 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1495 + } + ], + [ + { + "#": 1498 + }, + { + "#": 1499 + }, + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + }, + { + "#": 1510 + }, + { + "#": 1511 + }, + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + }, + { + "#": 1515 + } + ], + { + "x": 432.502, + "y": 77.799, + "index": 0, + "body": { + "#": 1495 + }, + "isInternal": false + }, + { + "x": 430.584, + "y": 83.068, + "index": 1, + "body": { + "#": 1495 + }, + "isInternal": false + }, + { + "x": 426.98, + "y": 87.363, + "index": 2, + "body": { + "#": 1495 + }, + "isInternal": false + }, + { + "x": 422.124, + "y": 90.167, + "index": 3, + "body": { + "#": 1495 + }, + "isInternal": false + }, + { + "x": 416.602, + "y": 91.14, + "index": 4, + "body": { + "#": 1495 + }, + "isInternal": false + }, + { + "x": 411.08, + "y": 90.167, + "index": 5, + "body": { + "#": 1495 + }, + "isInternal": false + }, + { + "x": 406.224, + "y": 87.363, + "index": 6, + "body": { + "#": 1495 + }, + "isInternal": false + }, + { + "x": 402.62, + "y": 83.068, + "index": 7, + "body": { + "#": 1495 + }, + "isInternal": false + }, + { + "x": 400.702, + "y": 77.799, + "index": 8, + "body": { + "#": 1495 + }, + "isInternal": false + }, + { + "x": 400.702, + "y": 72.191, + "index": 9, + "body": { + "#": 1495 + }, + "isInternal": false + }, + { + "x": 402.62, + "y": 66.922, + "index": 10, + "body": { + "#": 1495 + }, + "isInternal": false + }, + { + "x": 406.224, + "y": 62.627, + "index": 11, + "body": { + "#": 1495 + }, + "isInternal": false + }, + { + "x": 411.08, + "y": 59.823, + "index": 12, + "body": { + "#": 1495 + }, + "isInternal": false + }, + { + "x": 416.602, + "y": 58.85, + "index": 13, + "body": { + "#": 1495 + }, + "isInternal": false + }, + { + "x": 422.124, + "y": 59.823, + "index": 14, + "body": { + "#": 1495 + }, + "isInternal": false + }, + { + "x": 426.98, + "y": 62.627, + "index": 15, + "body": { + "#": 1495 + }, + "isInternal": false + }, + { + "x": 430.584, + "y": 66.922, + "index": 16, + "body": { + "#": 1495 + }, + "isInternal": false + }, + { + "x": 432.502, + "y": 72.191, + "index": 17, + "body": { + "#": 1495 + }, + "isInternal": false + }, + { + "x": 416.602, + "y": 74.995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1523 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1525 + }, + "max": { + "#": 1526 + } + }, + { + "x": 400.702, + "y": 58.85 + }, + { + "x": 432.502, + "y": 91.14 + }, + { + "x": 416.602, + "y": 74.995 + }, + [ + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + }, + { + "#": 1533 + }, + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + }, + { + "#": 1537 + } + ], + { + "x": -0.93968, + "y": -0.34206 + }, + { + "x": -0.76604, + "y": -0.64279 + }, + { + "x": -0.50005, + "y": -0.866 + }, + { + "x": -0.17353, + "y": -0.98483 + }, + { + "x": 0.17353, + "y": -0.98483 + }, + { + "x": 0.50005, + "y": -0.866 + }, + { + "x": 0.76604, + "y": -0.64279 + }, + { + "x": 0.93968, + "y": -0.34206 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 39, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1539 + }, + "angle": 0, + "vertices": { + "#": 1540 + }, + "position": { + "#": 1561 + }, + "force": { + "#": 1562 + }, + "torque": 0, + "positionImpulse": { + "#": 1563 + }, + "constraintImpulse": { + "#": 1564 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1565 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1566 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1567 + }, + "circleRadius": 18.78999, + "bounds": { + "#": 1569 + }, + "positionPrev": { + "#": 1572 + }, + "anglePrev": 0, + "axes": { + "#": 1573 + }, + "area": 1091.04511, + "mass": 1.09105, + "inverseMass": 0.91655, + "inertia": 757.86058, + "inverseInertia": 0.00132, + "parent": { + "#": 1538 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1538 + } + ], + [ + { + "#": 1541 + }, + { + "#": 1542 + }, + { + "#": 1543 + }, + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + }, + { + "#": 1548 + }, + { + "#": 1549 + }, + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + }, + { + "#": 1553 + }, + { + "#": 1554 + }, + { + "#": 1555 + }, + { + "#": 1556 + }, + { + "#": 1557 + }, + { + "#": 1558 + }, + { + "#": 1559 + }, + { + "#": 1560 + } + ], + { + "x": 469.62, + "y": 80.348, + "index": 0, + "body": { + "#": 1538 + }, + "isInternal": false + }, + { + "x": 467.803, + "y": 85.939, + "index": 1, + "body": { + "#": 1538 + }, + "isInternal": false + }, + { + "x": 464.348, + "y": 90.696, + "index": 2, + "body": { + "#": 1538 + }, + "isInternal": false + }, + { + "x": 459.591, + "y": 94.151, + "index": 3, + "body": { + "#": 1538 + }, + "isInternal": false + }, + { + "x": 454, + "y": 95.968, + "index": 4, + "body": { + "#": 1538 + }, + "isInternal": false + }, + { + "x": 448.122, + "y": 95.968, + "index": 5, + "body": { + "#": 1538 + }, + "isInternal": false + }, + { + "x": 442.531, + "y": 94.151, + "index": 6, + "body": { + "#": 1538 + }, + "isInternal": false + }, + { + "x": 437.774, + "y": 90.696, + "index": 7, + "body": { + "#": 1538 + }, + "isInternal": false + }, + { + "x": 434.319, + "y": 85.939, + "index": 8, + "body": { + "#": 1538 + }, + "isInternal": false + }, + { + "x": 432.502, + "y": 80.348, + "index": 9, + "body": { + "#": 1538 + }, + "isInternal": false + }, + { + "x": 432.502, + "y": 74.47, + "index": 10, + "body": { + "#": 1538 + }, + "isInternal": false + }, + { + "x": 434.319, + "y": 68.879, + "index": 11, + "body": { + "#": 1538 + }, + "isInternal": false + }, + { + "x": 437.774, + "y": 64.122, + "index": 12, + "body": { + "#": 1538 + }, + "isInternal": false + }, + { + "x": 442.531, + "y": 60.667, + "index": 13, + "body": { + "#": 1538 + }, + "isInternal": false + }, + { + "x": 448.122, + "y": 58.85, + "index": 14, + "body": { + "#": 1538 + }, + "isInternal": false + }, + { + "x": 454, + "y": 58.85, + "index": 15, + "body": { + "#": 1538 + }, + "isInternal": false + }, + { + "x": 459.591, + "y": 60.667, + "index": 16, + "body": { + "#": 1538 + }, + "isInternal": false + }, + { + "x": 464.348, + "y": 64.122, + "index": 17, + "body": { + "#": 1538 + }, + "isInternal": false + }, + { + "x": 467.803, + "y": 68.879, + "index": 18, + "body": { + "#": 1538 + }, + "isInternal": false + }, + { + "x": 469.62, + "y": 74.47, + "index": 19, + "body": { + "#": 1538 + }, + "isInternal": false + }, + { + "x": 451.061, + "y": 77.409 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1568 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1570 + }, + "max": { + "#": 1571 + } + }, + { + "x": 432.502, + "y": 58.85 + }, + { + "x": 469.62, + "y": 95.968 + }, + { + "x": 451.061, + "y": 77.409 + }, + [ + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + }, + { + "#": 1577 + }, + { + "#": 1578 + }, + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + }, + { + "#": 1583 + } + ], + { + "x": -0.95104, + "y": -0.30907 + }, + { + "x": -0.80911, + "y": -0.58766 + }, + { + "x": -0.58766, + "y": -0.80911 + }, + { + "x": -0.30907, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30907, + "y": -0.95104 + }, + { + "x": 0.58766, + "y": -0.80911 + }, + { + "x": 0.80911, + "y": -0.58766 + }, + { + "x": 0.95104, + "y": -0.30907 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 40, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1585 + }, + "angle": 0, + "vertices": { + "#": 1586 + }, + "position": { + "#": 1603 + }, + "force": { + "#": 1604 + }, + "torque": 0, + "positionImpulse": { + "#": 1605 + }, + "constraintImpulse": { + "#": 1606 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1607 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1608 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1609 + }, + "circleRadius": 14.88113, + "bounds": { + "#": 1611 + }, + "positionPrev": { + "#": 1614 + }, + "anglePrev": 0, + "axes": { + "#": 1615 + }, + "area": 677.95031, + "mass": 0.67795, + "inverseMass": 1.47503, + "inertia": 292.64041, + "inverseInertia": 0.00342, + "parent": { + "#": 1584 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1584 + } + ], + [ + { + "#": 1587 + }, + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + }, + { + "#": 1592 + }, + { + "#": 1593 + }, + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + }, + { + "#": 1597 + }, + { + "#": 1598 + }, + { + "#": 1599 + }, + { + "#": 1600 + }, + { + "#": 1601 + }, + { + "#": 1602 + } + ], + { + "x": 498.81, + "y": 76.348, + "index": 0, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 496.588, + "y": 81.713, + "index": 1, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 492.483, + "y": 85.818, + "index": 2, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 487.118, + "y": 88.04, + "index": 3, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 481.312, + "y": 88.04, + "index": 4, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 475.947, + "y": 85.818, + "index": 5, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 471.842, + "y": 81.713, + "index": 6, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 469.62, + "y": 76.348, + "index": 7, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 469.62, + "y": 70.542, + "index": 8, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 471.842, + "y": 65.177, + "index": 9, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 475.947, + "y": 61.072, + "index": 10, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 481.312, + "y": 58.85, + "index": 11, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 487.118, + "y": 58.85, + "index": 12, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 492.483, + "y": 61.072, + "index": 13, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 496.588, + "y": 65.177, + "index": 14, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 498.81, + "y": 70.542, + "index": 15, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 484.215, + "y": 73.445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1610 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1612 + }, + "max": { + "#": 1613 + } + }, + { + "x": 469.62, + "y": 58.85 + }, + { + "x": 498.81, + "y": 88.04 + }, + { + "x": 484.215, + "y": 73.445 + }, + [ + { + "#": 1616 + }, + { + "#": 1617 + }, + { + "#": 1618 + }, + { + "#": 1619 + }, + { + "#": 1620 + }, + { + "#": 1621 + }, + { + "#": 1622 + }, + { + "#": 1623 + } + ], + { + "x": -0.9239, + "y": -0.38265 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38265, + "y": -0.9239 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38265, + "y": -0.9239 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.9239, + "y": -0.38265 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 41, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1625 + }, + "angle": 0, + "vertices": { + "#": 1626 + }, + "position": { + "#": 1641 + }, + "force": { + "#": 1642 + }, + "torque": 0, + "positionImpulse": { + "#": 1643 + }, + "constraintImpulse": { + "#": 1644 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1645 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1646 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1647 + }, + "circleRadius": 12.32, + "bounds": { + "#": 1649 + }, + "positionPrev": { + "#": 1652 + }, + "anglePrev": 0, + "axes": { + "#": 1653 + }, + "area": 460.97597, + "mass": 0.46098, + "inverseMass": 2.16931, + "inertia": 135.3122, + "inverseInertia": 0.00739, + "parent": { + "#": 1624 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1624 + } + ], + [ + { + "#": 1627 + }, + { + "#": 1628 + }, + { + "#": 1629 + }, + { + "#": 1630 + }, + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + }, + { + "#": 1637 + }, + { + "#": 1638 + }, + { + "#": 1639 + }, + { + "#": 1640 + } + ], + { + "x": 522.832, + "y": 73.911, + "index": 0, + "body": { + "#": 1624 + }, + "isInternal": false + }, + { + "x": 520.453, + "y": 78.851, + "index": 1, + "body": { + "#": 1624 + }, + "isInternal": false + }, + { + "x": 516.166, + "y": 82.27, + "index": 2, + "body": { + "#": 1624 + }, + "isInternal": false + }, + { + "x": 510.821, + "y": 83.49, + "index": 3, + "body": { + "#": 1624 + }, + "isInternal": false + }, + { + "x": 505.476, + "y": 82.27, + "index": 4, + "body": { + "#": 1624 + }, + "isInternal": false + }, + { + "x": 501.189, + "y": 78.851, + "index": 5, + "body": { + "#": 1624 + }, + "isInternal": false + }, + { + "x": 498.81, + "y": 73.911, + "index": 6, + "body": { + "#": 1624 + }, + "isInternal": false + }, + { + "x": 498.81, + "y": 68.429, + "index": 7, + "body": { + "#": 1624 + }, + "isInternal": false + }, + { + "x": 501.189, + "y": 63.489, + "index": 8, + "body": { + "#": 1624 + }, + "isInternal": false + }, + { + "x": 505.476, + "y": 60.07, + "index": 9, + "body": { + "#": 1624 + }, + "isInternal": false + }, + { + "x": 510.821, + "y": 58.85, + "index": 10, + "body": { + "#": 1624 + }, + "isInternal": false + }, + { + "x": 516.166, + "y": 60.07, + "index": 11, + "body": { + "#": 1624 + }, + "isInternal": false + }, + { + "x": 520.453, + "y": 63.489, + "index": 12, + "body": { + "#": 1624 + }, + "isInternal": false + }, + { + "x": 522.832, + "y": 68.429, + "index": 13, + "body": { + "#": 1624 + }, + "isInternal": false + }, + { + "x": 510.821, + "y": 71.17 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1648 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1650 + }, + "max": { + "#": 1651 + } + }, + { + "x": 498.81, + "y": 58.85 + }, + { + "x": 522.832, + "y": 83.49 + }, + { + "x": 510.821, + "y": 71.17 + }, + [ + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + } + ], + { + "x": -0.90097, + "y": -0.43389 + }, + { + "x": -0.62352, + "y": -0.78181 + }, + { + "x": -0.22253, + "y": -0.97493 + }, + { + "x": 0.22253, + "y": -0.97493 + }, + { + "x": 0.62352, + "y": -0.78181 + }, + { + "x": 0.90097, + "y": -0.43389 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 42, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1662 + }, + "angle": 0, + "vertices": { + "#": 1663 + }, + "position": { + "#": 1684 + }, + "force": { + "#": 1685 + }, + "torque": 0, + "positionImpulse": { + "#": 1686 + }, + "constraintImpulse": { + "#": 1687 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1688 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1689 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1690 + }, + "circleRadius": 19.74859, + "bounds": { + "#": 1692 + }, + "positionPrev": { + "#": 1695 + }, + "anglePrev": 0, + "axes": { + "#": 1696 + }, + "area": 1205.1522, + "mass": 1.20515, + "inverseMass": 0.82977, + "inertia": 924.67199, + "inverseInertia": 0.00108, + "parent": { + "#": 1661 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1661 + } + ], + [ + { + "#": 1664 + }, + { + "#": 1665 + }, + { + "#": 1666 + }, + { + "#": 1667 + }, + { + "#": 1668 + }, + { + "#": 1669 + }, + { + "#": 1670 + }, + { + "#": 1671 + }, + { + "#": 1672 + }, + { + "#": 1673 + }, + { + "#": 1674 + }, + { + "#": 1675 + }, + { + "#": 1676 + }, + { + "#": 1677 + }, + { + "#": 1678 + }, + { + "#": 1679 + }, + { + "#": 1680 + }, + { + "#": 1681 + }, + { + "#": 1682 + }, + { + "#": 1683 + } + ], + { + "x": 561.842, + "y": 81.444, + "index": 0, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 559.933, + "y": 87.321, + "index": 1, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 556.301, + "y": 92.319, + "index": 2, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 551.303, + "y": 95.951, + "index": 3, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 545.426, + "y": 97.86, + "index": 4, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 539.248, + "y": 97.86, + "index": 5, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 533.371, + "y": 95.951, + "index": 6, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 528.373, + "y": 92.319, + "index": 7, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 524.741, + "y": 87.321, + "index": 8, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 522.832, + "y": 81.444, + "index": 9, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 522.832, + "y": 75.266, + "index": 10, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 524.741, + "y": 69.389, + "index": 11, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 528.373, + "y": 64.391, + "index": 12, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 533.371, + "y": 60.759, + "index": 13, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 539.248, + "y": 58.85, + "index": 14, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 545.426, + "y": 58.85, + "index": 15, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 551.303, + "y": 60.759, + "index": 16, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 556.301, + "y": 64.391, + "index": 17, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 559.933, + "y": 69.389, + "index": 18, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 561.842, + "y": 75.266, + "index": 19, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 542.337, + "y": 78.355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1691 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1693 + }, + "max": { + "#": 1694 + } + }, + { + "x": 522.832, + "y": 58.85 + }, + { + "x": 561.842, + "y": 97.86 + }, + { + "x": 542.337, + "y": 78.355 + }, + [ + { + "#": 1697 + }, + { + "#": 1698 + }, + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + }, + { + "#": 1703 + }, + { + "#": 1704 + }, + { + "#": 1705 + }, + { + "#": 1706 + } + ], + { + "x": -0.95108, + "y": -0.30894 + }, + { + "x": -0.80896, + "y": -0.58786 + }, + { + "x": -0.58786, + "y": -0.80896 + }, + { + "x": -0.30894, + "y": -0.95108 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30894, + "y": -0.95108 + }, + { + "x": 0.58786, + "y": -0.80896 + }, + { + "x": 0.80896, + "y": -0.58786 + }, + { + "x": 0.95108, + "y": -0.30894 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 43, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1708 + }, + "angle": 0, + "vertices": { + "#": 1709 + }, + "position": { + "#": 1722 + }, + "force": { + "#": 1723 + }, + "torque": 0, + "positionImpulse": { + "#": 1724 + }, + "constraintImpulse": { + "#": 1725 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1726 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1727 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1728 + }, + "circleRadius": 10.99404, + "bounds": { + "#": 1730 + }, + "positionPrev": { + "#": 1733 + }, + "anglePrev": 0, + "axes": { + "#": 1734 + }, + "area": 362.58452, + "mass": 0.36258, + "inverseMass": 2.75798, + "inertia": 83.73096, + "inverseInertia": 0.01194, + "parent": { + "#": 1707 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1707 + } + ], + [ + { + "#": 1710 + }, + { + "#": 1711 + }, + { + "#": 1712 + }, + { + "#": 1713 + }, + { + "#": 1714 + }, + { + "#": 1715 + }, + { + "#": 1716 + }, + { + "#": 1717 + }, + { + "#": 1718 + }, + { + "#": 1719 + }, + { + "#": 1720 + }, + { + "#": 1721 + } + ], + { + "x": 583.08, + "y": 72.314, + "index": 0, + "body": { + "#": 1707 + }, + "isInternal": false + }, + { + "x": 580.235, + "y": 77.243, + "index": 1, + "body": { + "#": 1707 + }, + "isInternal": false + }, + { + "x": 575.306, + "y": 80.088, + "index": 2, + "body": { + "#": 1707 + }, + "isInternal": false + }, + { + "x": 569.616, + "y": 80.088, + "index": 3, + "body": { + "#": 1707 + }, + "isInternal": false + }, + { + "x": 564.687, + "y": 77.243, + "index": 4, + "body": { + "#": 1707 + }, + "isInternal": false + }, + { + "x": 561.842, + "y": 72.314, + "index": 5, + "body": { + "#": 1707 + }, + "isInternal": false + }, + { + "x": 561.842, + "y": 66.624, + "index": 6, + "body": { + "#": 1707 + }, + "isInternal": false + }, + { + "x": 564.687, + "y": 61.695, + "index": 7, + "body": { + "#": 1707 + }, + "isInternal": false + }, + { + "x": 569.616, + "y": 58.85, + "index": 8, + "body": { + "#": 1707 + }, + "isInternal": false + }, + { + "x": 575.306, + "y": 58.85, + "index": 9, + "body": { + "#": 1707 + }, + "isInternal": false + }, + { + "x": 580.235, + "y": 61.695, + "index": 10, + "body": { + "#": 1707 + }, + "isInternal": false + }, + { + "x": 583.08, + "y": 66.624, + "index": 11, + "body": { + "#": 1707 + }, + "isInternal": false + }, + { + "x": 572.461, + "y": 69.469 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1729 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1731 + }, + "max": { + "#": 1732 + } + }, + { + "x": 561.842, + "y": 58.85 + }, + { + "x": 583.08, + "y": 80.088 + }, + { + "x": 572.461, + "y": 69.469 + }, + [ + { + "#": 1735 + }, + { + "#": 1736 + }, + { + "#": 1737 + }, + { + "#": 1738 + }, + { + "#": 1739 + }, + { + "#": 1740 + } + ], + { + "x": -0.86608, + "y": -0.4999 + }, + { + "x": -0.4999, + "y": -0.86608 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.4999, + "y": -0.86608 + }, + { + "x": 0.86608, + "y": -0.4999 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 44, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1742 + }, + "angle": 0, + "vertices": { + "#": 1743 + }, + "position": { + "#": 1762 + }, + "force": { + "#": 1763 + }, + "torque": 0, + "positionImpulse": { + "#": 1764 + }, + "constraintImpulse": { + "#": 1765 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1766 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1767 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1768 + }, + "circleRadius": 16.17983, + "bounds": { + "#": 1770 + }, + "positionPrev": { + "#": 1773 + }, + "anglePrev": 0, + "axes": { + "#": 1774 + }, + "area": 805.81786, + "mass": 0.80582, + "inverseMass": 1.24098, + "inertia": 413.41883, + "inverseInertia": 0.00242, + "parent": { + "#": 1741 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1741 + } + ], + [ + { + "#": 1744 + }, + { + "#": 1745 + }, + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + }, + { + "#": 1751 + }, + { + "#": 1752 + }, + { + "#": 1753 + }, + { + "#": 1754 + }, + { + "#": 1755 + }, + { + "#": 1756 + }, + { + "#": 1757 + }, + { + "#": 1758 + }, + { + "#": 1759 + }, + { + "#": 1760 + }, + { + "#": 1761 + } + ], + { + "x": 614.948, + "y": 77.84, + "index": 0, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 613.026, + "y": 83.12, + "index": 1, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 609.414, + "y": 87.424, + "index": 2, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 604.548, + "y": 90.234, + "index": 3, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 599.014, + "y": 91.21, + "index": 4, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 593.48, + "y": 90.234, + "index": 5, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 588.614, + "y": 87.424, + "index": 6, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 585.002, + "y": 83.12, + "index": 7, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 583.08, + "y": 77.84, + "index": 8, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 583.08, + "y": 72.22, + "index": 9, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 585.002, + "y": 66.94, + "index": 10, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 588.614, + "y": 62.636, + "index": 11, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 593.48, + "y": 59.826, + "index": 12, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 599.014, + "y": 58.85, + "index": 13, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 604.548, + "y": 59.826, + "index": 14, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 609.414, + "y": 62.636, + "index": 15, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 613.026, + "y": 66.94, + "index": 16, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 614.948, + "y": 72.22, + "index": 17, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 599.014, + "y": 75.03 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1769 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1771 + }, + "max": { + "#": 1772 + } + }, + { + "x": 583.08, + "y": 58.85 + }, + { + "x": 614.948, + "y": 91.21 + }, + { + "x": 599.014, + "y": 75.03 + }, + [ + { + "#": 1775 + }, + { + "#": 1776 + }, + { + "#": 1777 + }, + { + "#": 1778 + }, + { + "#": 1779 + }, + { + "#": 1780 + }, + { + "#": 1781 + }, + { + "#": 1782 + }, + { + "#": 1783 + } + ], + { + "x": -0.93968, + "y": -0.34206 + }, + { + "x": -0.766, + "y": -0.64284 + }, + { + "x": -0.50008, + "y": -0.86598 + }, + { + "x": -0.17368, + "y": -0.9848 + }, + { + "x": 0.17368, + "y": -0.9848 + }, + { + "x": 0.50008, + "y": -0.86598 + }, + { + "x": 0.766, + "y": -0.64284 + }, + { + "x": 0.93968, + "y": -0.34206 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 45, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1785 + }, + "angle": 0, + "vertices": { + "#": 1786 + }, + "position": { + "#": 1807 + }, + "force": { + "#": 1808 + }, + "torque": 0, + "positionImpulse": { + "#": 1809 + }, + "constraintImpulse": { + "#": 1810 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1811 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1812 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1813 + }, + "circleRadius": 19.50347, + "bounds": { + "#": 1815 + }, + "positionPrev": { + "#": 1818 + }, + "anglePrev": 0, + "axes": { + "#": 1819 + }, + "area": 1175.44088, + "mass": 1.17544, + "inverseMass": 0.85074, + "inertia": 879.64105, + "inverseInertia": 0.00114, + "parent": { + "#": 1784 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1784 + } + ], + [ + { + "#": 1787 + }, + { + "#": 1788 + }, + { + "#": 1789 + }, + { + "#": 1790 + }, + { + "#": 1791 + }, + { + "#": 1792 + }, + { + "#": 1793 + }, + { + "#": 1794 + }, + { + "#": 1795 + }, + { + "#": 1796 + }, + { + "#": 1797 + }, + { + "#": 1798 + }, + { + "#": 1799 + }, + { + "#": 1800 + }, + { + "#": 1801 + }, + { + "#": 1802 + }, + { + "#": 1803 + }, + { + "#": 1804 + }, + { + "#": 1805 + }, + { + "#": 1806 + } + ], + { + "x": 58.526, + "y": 120.53, + "index": 0, + "body": { + "#": 1784 + }, + "isInternal": false + }, + { + "x": 56.641, + "y": 126.333, + "index": 1, + "body": { + "#": 1784 + }, + "isInternal": false + }, + { + "x": 53.054, + "y": 131.27, + "index": 2, + "body": { + "#": 1784 + }, + "isInternal": false + }, + { + "x": 48.117, + "y": 134.857, + "index": 3, + "body": { + "#": 1784 + }, + "isInternal": false + }, + { + "x": 42.314, + "y": 136.742, + "index": 4, + "body": { + "#": 1784 + }, + "isInternal": false + }, + { + "x": 36.212, + "y": 136.742, + "index": 5, + "body": { + "#": 1784 + }, + "isInternal": false + }, + { + "x": 30.409, + "y": 134.857, + "index": 6, + "body": { + "#": 1784 + }, + "isInternal": false + }, + { + "x": 25.472, + "y": 131.27, + "index": 7, + "body": { + "#": 1784 + }, + "isInternal": false + }, + { + "x": 21.885, + "y": 126.333, + "index": 8, + "body": { + "#": 1784 + }, + "isInternal": false + }, + { + "x": 20, + "y": 120.53, + "index": 9, + "body": { + "#": 1784 + }, + "isInternal": false + }, + { + "x": 20, + "y": 114.428, + "index": 10, + "body": { + "#": 1784 + }, + "isInternal": false + }, + { + "x": 21.885, + "y": 108.625, + "index": 11, + "body": { + "#": 1784 + }, + "isInternal": false + }, + { + "x": 25.472, + "y": 103.688, + "index": 12, + "body": { + "#": 1784 + }, + "isInternal": false + }, + { + "x": 30.409, + "y": 100.101, + "index": 13, + "body": { + "#": 1784 + }, + "isInternal": false + }, + { + "x": 36.212, + "y": 98.216, + "index": 14, + "body": { + "#": 1784 + }, + "isInternal": false + }, + { + "x": 42.314, + "y": 98.216, + "index": 15, + "body": { + "#": 1784 + }, + "isInternal": false + }, + { + "x": 48.117, + "y": 100.101, + "index": 16, + "body": { + "#": 1784 + }, + "isInternal": false + }, + { + "x": 53.054, + "y": 103.688, + "index": 17, + "body": { + "#": 1784 + }, + "isInternal": false + }, + { + "x": 56.641, + "y": 108.625, + "index": 18, + "body": { + "#": 1784 + }, + "isInternal": false + }, + { + "x": 58.526, + "y": 114.428, + "index": 19, + "body": { + "#": 1784 + }, + "isInternal": false + }, + { + "x": 39.263, + "y": 117.479 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1814 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1816 + }, + "max": { + "#": 1817 + } + }, + { + "x": 20, + "y": 98.216 + }, + { + "x": 58.526, + "y": 136.742 + }, + { + "x": 39.263, + "y": 117.479 + }, + [ + { + "#": 1820 + }, + { + "#": 1821 + }, + { + "#": 1822 + }, + { + "#": 1823 + }, + { + "#": 1824 + }, + { + "#": 1825 + }, + { + "#": 1826 + }, + { + "#": 1827 + }, + { + "#": 1828 + }, + { + "#": 1829 + } + ], + { + "x": -0.95108, + "y": -0.30894 + }, + { + "x": -0.80901, + "y": -0.58779 + }, + { + "x": -0.58779, + "y": -0.80901 + }, + { + "x": -0.30894, + "y": -0.95108 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30894, + "y": -0.95108 + }, + { + "x": 0.58779, + "y": -0.80901 + }, + { + "x": 0.80901, + "y": -0.58779 + }, + { + "x": 0.95108, + "y": -0.30894 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 46, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1831 + }, + "angle": 0, + "vertices": { + "#": 1832 + }, + "position": { + "#": 1847 + }, + "force": { + "#": 1848 + }, + "torque": 0, + "positionImpulse": { + "#": 1849 + }, + "constraintImpulse": { + "#": 1850 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1851 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1852 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1853 + }, + "circleRadius": 13.68103, + "bounds": { + "#": 1855 + }, + "positionPrev": { + "#": 1858 + }, + "anglePrev": 0, + "axes": { + "#": 1859 + }, + "area": 568.46124, + "mass": 0.56846, + "inverseMass": 1.75913, + "inertia": 205.77003, + "inverseInertia": 0.00486, + "parent": { + "#": 1830 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1830 + } + ], + [ + { + "#": 1833 + }, + { + "#": 1834 + }, + { + "#": 1835 + }, + { + "#": 1836 + }, + { + "#": 1837 + }, + { + "#": 1838 + }, + { + "#": 1839 + }, + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + }, + { + "#": 1844 + }, + { + "#": 1845 + }, + { + "#": 1846 + } + ], + { + "x": 85.202, + "y": 114.941, + "index": 0, + "body": { + "#": 1830 + }, + "isInternal": false + }, + { + "x": 82.56, + "y": 120.427, + "index": 1, + "body": { + "#": 1830 + }, + "isInternal": false + }, + { + "x": 77.8, + "y": 124.223, + "index": 2, + "body": { + "#": 1830 + }, + "isInternal": false + }, + { + "x": 71.864, + "y": 125.578, + "index": 3, + "body": { + "#": 1830 + }, + "isInternal": false + }, + { + "x": 65.928, + "y": 124.223, + "index": 4, + "body": { + "#": 1830 + }, + "isInternal": false + }, + { + "x": 61.168, + "y": 120.427, + "index": 5, + "body": { + "#": 1830 + }, + "isInternal": false + }, + { + "x": 58.526, + "y": 114.941, + "index": 6, + "body": { + "#": 1830 + }, + "isInternal": false + }, + { + "x": 58.526, + "y": 108.853, + "index": 7, + "body": { + "#": 1830 + }, + "isInternal": false + }, + { + "x": 61.168, + "y": 103.367, + "index": 8, + "body": { + "#": 1830 + }, + "isInternal": false + }, + { + "x": 65.928, + "y": 99.571, + "index": 9, + "body": { + "#": 1830 + }, + "isInternal": false + }, + { + "x": 71.864, + "y": 98.216, + "index": 10, + "body": { + "#": 1830 + }, + "isInternal": false + }, + { + "x": 77.8, + "y": 99.571, + "index": 11, + "body": { + "#": 1830 + }, + "isInternal": false + }, + { + "x": 82.56, + "y": 103.367, + "index": 12, + "body": { + "#": 1830 + }, + "isInternal": false + }, + { + "x": 85.202, + "y": 108.853, + "index": 13, + "body": { + "#": 1830 + }, + "isInternal": false + }, + { + "x": 71.864, + "y": 111.897 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1854 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1856 + }, + "max": { + "#": 1857 + } + }, + { + "x": 58.526, + "y": 98.216 + }, + { + "x": 85.202, + "y": 125.578 + }, + { + "x": 71.864, + "y": 111.897 + }, + [ + { + "#": 1860 + }, + { + "#": 1861 + }, + { + "#": 1862 + }, + { + "#": 1863 + }, + { + "#": 1864 + }, + { + "#": 1865 + }, + { + "#": 1866 + } + ], + { + "x": -0.90096, + "y": -0.43389 + }, + { + "x": -0.62349, + "y": -0.78183 + }, + { + "x": -0.22254, + "y": -0.97492 + }, + { + "x": 0.22254, + "y": -0.97492 + }, + { + "x": 0.62349, + "y": -0.78183 + }, + { + "x": 0.90096, + "y": -0.43389 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 47, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1868 + }, + "angle": 0, + "vertices": { + "#": 1869 + }, + "position": { + "#": 1882 + }, + "force": { + "#": 1883 + }, + "torque": 0, + "positionImpulse": { + "#": 1884 + }, + "constraintImpulse": { + "#": 1885 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1886 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1887 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1888 + }, + "circleRadius": 11.05817, + "bounds": { + "#": 1890 + }, + "positionPrev": { + "#": 1893 + }, + "anglePrev": 0, + "axes": { + "#": 1894 + }, + "area": 366.82313, + "mass": 0.36682, + "inverseMass": 2.72611, + "inertia": 85.70003, + "inverseInertia": 0.01167, + "parent": { + "#": 1867 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1867 + } + ], + [ + { + "#": 1870 + }, + { + "#": 1871 + }, + { + "#": 1872 + }, + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + }, + { + "#": 1877 + }, + { + "#": 1878 + }, + { + "#": 1879 + }, + { + "#": 1880 + }, + { + "#": 1881 + } + ], + { + "x": 106.564, + "y": 111.759, + "index": 0, + "body": { + "#": 1867 + }, + "isInternal": false + }, + { + "x": 103.702, + "y": 116.716, + "index": 1, + "body": { + "#": 1867 + }, + "isInternal": false + }, + { + "x": 98.745, + "y": 119.578, + "index": 2, + "body": { + "#": 1867 + }, + "isInternal": false + }, + { + "x": 93.021, + "y": 119.578, + "index": 3, + "body": { + "#": 1867 + }, + "isInternal": false + }, + { + "x": 88.064, + "y": 116.716, + "index": 4, + "body": { + "#": 1867 + }, + "isInternal": false + }, + { + "x": 85.202, + "y": 111.759, + "index": 5, + "body": { + "#": 1867 + }, + "isInternal": false + }, + { + "x": 85.202, + "y": 106.035, + "index": 6, + "body": { + "#": 1867 + }, + "isInternal": false + }, + { + "x": 88.064, + "y": 101.078, + "index": 7, + "body": { + "#": 1867 + }, + "isInternal": false + }, + { + "x": 93.021, + "y": 98.216, + "index": 8, + "body": { + "#": 1867 + }, + "isInternal": false + }, + { + "x": 98.745, + "y": 98.216, + "index": 9, + "body": { + "#": 1867 + }, + "isInternal": false + }, + { + "x": 103.702, + "y": 101.078, + "index": 10, + "body": { + "#": 1867 + }, + "isInternal": false + }, + { + "x": 106.564, + "y": 106.035, + "index": 11, + "body": { + "#": 1867 + }, + "isInternal": false + }, + { + "x": 95.883, + "y": 108.897 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1889 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1891 + }, + "max": { + "#": 1892 + } + }, + { + "x": 85.202, + "y": 98.216 + }, + { + "x": 106.564, + "y": 119.578 + }, + { + "x": 95.883, + "y": 108.897 + }, + [ + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + } + ], + { + "x": -0.86602, + "y": -0.50001 + }, + { + "x": -0.50001, + "y": -0.86602 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.50001, + "y": -0.86602 + }, + { + "x": 0.86602, + "y": -0.50001 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 48, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1902 + }, + "angle": 0, + "vertices": { + "#": 1903 + }, + "position": { + "#": 1916 + }, + "force": { + "#": 1917 + }, + "torque": 0, + "positionImpulse": { + "#": 1918 + }, + "constraintImpulse": { + "#": 1919 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1920 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1921 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1922 + }, + "circleRadius": 11.38799, + "bounds": { + "#": 1924 + }, + "positionPrev": { + "#": 1927 + }, + "anglePrev": 0, + "axes": { + "#": 1928 + }, + "area": 389.07124, + "mass": 0.38907, + "inverseMass": 2.57022, + "inertia": 96.41082, + "inverseInertia": 0.01037, + "parent": { + "#": 1901 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1901 + } + ], + [ + { + "#": 1904 + }, + { + "#": 1905 + }, + { + "#": 1906 + }, + { + "#": 1907 + }, + { + "#": 1908 + }, + { + "#": 1909 + }, + { + "#": 1910 + }, + { + "#": 1911 + }, + { + "#": 1912 + }, + { + "#": 1913 + }, + { + "#": 1914 + }, + { + "#": 1915 + } + ], + { + "x": 128.564, + "y": 112.163, + "index": 0, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 125.617, + "y": 117.269, + "index": 1, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 120.511, + "y": 120.216, + "index": 2, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 114.617, + "y": 120.216, + "index": 3, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 109.511, + "y": 117.269, + "index": 4, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 106.564, + "y": 112.163, + "index": 5, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 106.564, + "y": 106.269, + "index": 6, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 109.511, + "y": 101.163, + "index": 7, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 114.617, + "y": 98.216, + "index": 8, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 120.511, + "y": 98.216, + "index": 9, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 125.617, + "y": 101.163, + "index": 10, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 128.564, + "y": 106.269, + "index": 11, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 117.564, + "y": 109.216 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1923 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1925 + }, + "max": { + "#": 1926 + } + }, + { + "x": 106.564, + "y": 98.216 + }, + { + "x": 128.564, + "y": 120.216 + }, + { + "x": 117.564, + "y": 109.216 + }, + [ + { + "#": 1929 + }, + { + "#": 1930 + }, + { + "#": 1931 + }, + { + "#": 1932 + }, + { + "#": 1933 + }, + { + "#": 1934 + } + ], + { + "x": -0.8661, + "y": -0.49988 + }, + { + "x": -0.49988, + "y": -0.8661 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.49988, + "y": -0.8661 + }, + { + "x": 0.8661, + "y": -0.49988 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 49, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1936 + }, + "angle": 0, + "vertices": { + "#": 1937 + }, + "position": { + "#": 1956 + }, + "force": { + "#": 1957 + }, + "torque": 0, + "positionImpulse": { + "#": 1958 + }, + "constraintImpulse": { + "#": 1959 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1960 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1961 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1962 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 1964 + }, + "positionPrev": { + "#": 1967 + }, + "anglePrev": 0, + "axes": { + "#": 1968 + }, + "area": 815.38925, + "mass": 0.81539, + "inverseMass": 1.22641, + "inertia": 423.29821, + "inverseInertia": 0.00236, + "parent": { + "#": 1935 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1935 + } + ], + [ + { + "#": 1938 + }, + { + "#": 1939 + }, + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + }, + { + "#": 1944 + }, + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + }, + { + "#": 1948 + }, + { + "#": 1949 + }, + { + "#": 1950 + }, + { + "#": 1951 + }, + { + "#": 1952 + }, + { + "#": 1953 + }, + { + "#": 1954 + }, + { + "#": 1955 + } + ], + { + "x": 160.62, + "y": 117.317, + "index": 0, + "body": { + "#": 1935 + }, + "isInternal": false + }, + { + "x": 158.687, + "y": 122.629, + "index": 1, + "body": { + "#": 1935 + }, + "isInternal": false + }, + { + "x": 155.054, + "y": 126.959, + "index": 2, + "body": { + "#": 1935 + }, + "isInternal": false + }, + { + "x": 150.159, + "y": 129.785, + "index": 3, + "body": { + "#": 1935 + }, + "isInternal": false + }, + { + "x": 144.592, + "y": 130.766, + "index": 4, + "body": { + "#": 1935 + }, + "isInternal": false + }, + { + "x": 139.025, + "y": 129.785, + "index": 5, + "body": { + "#": 1935 + }, + "isInternal": false + }, + { + "x": 134.13, + "y": 126.959, + "index": 6, + "body": { + "#": 1935 + }, + "isInternal": false + }, + { + "x": 130.497, + "y": 122.629, + "index": 7, + "body": { + "#": 1935 + }, + "isInternal": false + }, + { + "x": 128.564, + "y": 117.317, + "index": 8, + "body": { + "#": 1935 + }, + "isInternal": false + }, + { + "x": 128.564, + "y": 111.665, + "index": 9, + "body": { + "#": 1935 + }, + "isInternal": false + }, + { + "x": 130.497, + "y": 106.353, + "index": 10, + "body": { + "#": 1935 + }, + "isInternal": false + }, + { + "x": 134.13, + "y": 102.023, + "index": 11, + "body": { + "#": 1935 + }, + "isInternal": false + }, + { + "x": 139.025, + "y": 99.197, + "index": 12, + "body": { + "#": 1935 + }, + "isInternal": false + }, + { + "x": 144.592, + "y": 98.216, + "index": 13, + "body": { + "#": 1935 + }, + "isInternal": false + }, + { + "x": 150.159, + "y": 99.197, + "index": 14, + "body": { + "#": 1935 + }, + "isInternal": false + }, + { + "x": 155.054, + "y": 102.023, + "index": 15, + "body": { + "#": 1935 + }, + "isInternal": false + }, + { + "x": 158.687, + "y": 106.353, + "index": 16, + "body": { + "#": 1935 + }, + "isInternal": false + }, + { + "x": 160.62, + "y": 111.665, + "index": 17, + "body": { + "#": 1935 + }, + "isInternal": false + }, + { + "x": 144.592, + "y": 114.491 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1963 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1965 + }, + "max": { + "#": 1966 + } + }, + { + "x": 128.564, + "y": 98.216 + }, + { + "x": 160.62, + "y": 130.766 + }, + { + "x": 144.592, + "y": 114.491 + }, + [ + { + "#": 1969 + }, + { + "#": 1970 + }, + { + "#": 1971 + }, + { + "#": 1972 + }, + { + "#": 1973 + }, + { + "#": 1974 + }, + { + "#": 1975 + }, + { + "#": 1976 + }, + { + "#": 1977 + } + ], + { + "x": -0.93972, + "y": -0.34196 + }, + { + "x": -0.76607, + "y": -0.64276 + }, + { + "x": -0.49998, + "y": -0.86604 + }, + { + "x": -0.17354, + "y": -0.98483 + }, + { + "x": 0.17354, + "y": -0.98483 + }, + { + "x": 0.49998, + "y": -0.86604 + }, + { + "x": 0.76607, + "y": -0.64276 + }, + { + "x": 0.93972, + "y": -0.34196 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 50, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1979 + }, + "angle": 0, + "vertices": { + "#": 1980 + }, + "position": { + "#": 1993 + }, + "force": { + "#": 1994 + }, + "torque": 0, + "positionImpulse": { + "#": 1995 + }, + "constraintImpulse": { + "#": 1996 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1997 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1998 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1999 + }, + "circleRadius": 10.28837, + "bounds": { + "#": 2001 + }, + "positionPrev": { + "#": 2004 + }, + "anglePrev": 0, + "axes": { + "#": 2005 + }, + "area": 317.56208, + "mass": 0.31756, + "inverseMass": 3.14899, + "inertia": 64.22806, + "inverseInertia": 0.01557, + "parent": { + "#": 1978 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1978 + } + ], + [ + { + "#": 1981 + }, + { + "#": 1982 + }, + { + "#": 1983 + }, + { + "#": 1984 + }, + { + "#": 1985 + }, + { + "#": 1986 + }, + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + } + ], + { + "x": 180.496, + "y": 110.817, + "index": 0, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 177.833, + "y": 115.429, + "index": 1, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 173.221, + "y": 118.092, + "index": 2, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 167.895, + "y": 118.092, + "index": 3, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 163.283, + "y": 115.429, + "index": 4, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 160.62, + "y": 110.817, + "index": 5, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 160.62, + "y": 105.491, + "index": 6, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 163.283, + "y": 100.879, + "index": 7, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 167.895, + "y": 98.216, + "index": 8, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 173.221, + "y": 98.216, + "index": 9, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 177.833, + "y": 100.879, + "index": 10, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 180.496, + "y": 105.491, + "index": 11, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 170.558, + "y": 108.154 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2000 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2002 + }, + "max": { + "#": 2003 + } + }, + { + "x": 160.62, + "y": 98.216 + }, + { + "x": 180.496, + "y": 118.092 + }, + { + "x": 170.558, + "y": 108.154 + }, + [ + { + "#": 2006 + }, + { + "#": 2007 + }, + { + "#": 2008 + }, + { + "#": 2009 + }, + { + "#": 2010 + }, + { + "#": 2011 + } + ], + { + "x": -0.866, + "y": -0.50004 + }, + { + "x": -0.50004, + "y": -0.866 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.50004, + "y": -0.866 + }, + { + "x": 0.866, + "y": -0.50004 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 51, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2013 + }, + "angle": 0, + "vertices": { + "#": 2014 + }, + "position": { + "#": 2035 + }, + "force": { + "#": 2036 + }, + "torque": 0, + "positionImpulse": { + "#": 2037 + }, + "constraintImpulse": { + "#": 2038 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2039 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2040 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2041 + }, + "circleRadius": 18.73547, + "bounds": { + "#": 2043 + }, + "positionPrev": { + "#": 2046 + }, + "anglePrev": 0, + "axes": { + "#": 2047 + }, + "area": 1084.70351, + "mass": 1.0847, + "inverseMass": 0.92191, + "inertia": 749.0762, + "inverseInertia": 0.00133, + "parent": { + "#": 2012 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2012 + } + ], + [ + { + "#": 2015 + }, + { + "#": 2016 + }, + { + "#": 2017 + }, + { + "#": 2018 + }, + { + "#": 2019 + }, + { + "#": 2020 + }, + { + "#": 2021 + }, + { + "#": 2022 + }, + { + "#": 2023 + }, + { + "#": 2024 + }, + { + "#": 2025 + }, + { + "#": 2026 + }, + { + "#": 2027 + }, + { + "#": 2028 + }, + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + }, + { + "#": 2032 + }, + { + "#": 2033 + }, + { + "#": 2034 + } + ], + { + "x": 217.506, + "y": 119.652, + "index": 0, + "body": { + "#": 2012 + }, + "isInternal": false + }, + { + "x": 215.694, + "y": 125.227, + "index": 1, + "body": { + "#": 2012 + }, + "isInternal": false + }, + { + "x": 212.249, + "y": 129.969, + "index": 2, + "body": { + "#": 2012 + }, + "isInternal": false + }, + { + "x": 207.507, + "y": 133.414, + "index": 3, + "body": { + "#": 2012 + }, + "isInternal": false + }, + { + "x": 201.932, + "y": 135.226, + "index": 4, + "body": { + "#": 2012 + }, + "isInternal": false + }, + { + "x": 196.07, + "y": 135.226, + "index": 5, + "body": { + "#": 2012 + }, + "isInternal": false + }, + { + "x": 190.495, + "y": 133.414, + "index": 6, + "body": { + "#": 2012 + }, + "isInternal": false + }, + { + "x": 185.753, + "y": 129.969, + "index": 7, + "body": { + "#": 2012 + }, + "isInternal": false + }, + { + "x": 182.308, + "y": 125.227, + "index": 8, + "body": { + "#": 2012 + }, + "isInternal": false + }, + { + "x": 180.496, + "y": 119.652, + "index": 9, + "body": { + "#": 2012 + }, + "isInternal": false + }, + { + "x": 180.496, + "y": 113.79, + "index": 10, + "body": { + "#": 2012 + }, + "isInternal": false + }, + { + "x": 182.308, + "y": 108.215, + "index": 11, + "body": { + "#": 2012 + }, + "isInternal": false + }, + { + "x": 185.753, + "y": 103.473, + "index": 12, + "body": { + "#": 2012 + }, + "isInternal": false + }, + { + "x": 190.495, + "y": 100.028, + "index": 13, + "body": { + "#": 2012 + }, + "isInternal": false + }, + { + "x": 196.07, + "y": 98.216, + "index": 14, + "body": { + "#": 2012 + }, + "isInternal": false + }, + { + "x": 201.932, + "y": 98.216, + "index": 15, + "body": { + "#": 2012 + }, + "isInternal": false + }, + { + "x": 207.507, + "y": 100.028, + "index": 16, + "body": { + "#": 2012 + }, + "isInternal": false + }, + { + "x": 212.249, + "y": 103.473, + "index": 17, + "body": { + "#": 2012 + }, + "isInternal": false + }, + { + "x": 215.694, + "y": 108.215, + "index": 18, + "body": { + "#": 2012 + }, + "isInternal": false + }, + { + "x": 217.506, + "y": 113.79, + "index": 19, + "body": { + "#": 2012 + }, + "isInternal": false + }, + { + "x": 199.001, + "y": 116.721 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2042 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2044 + }, + "max": { + "#": 2045 + } + }, + { + "x": 180.496, + "y": 98.216 + }, + { + "x": 217.506, + "y": 135.226 + }, + { + "x": 199.001, + "y": 116.721 + }, + [ + { + "#": 2048 + }, + { + "#": 2049 + }, + { + "#": 2050 + }, + { + "#": 2051 + }, + { + "#": 2052 + }, + { + "#": 2053 + }, + { + "#": 2054 + }, + { + "#": 2055 + }, + { + "#": 2056 + }, + { + "#": 2057 + } + ], + { + "x": -0.95103, + "y": -0.30911 + }, + { + "x": -0.80904, + "y": -0.58776 + }, + { + "x": -0.58776, + "y": -0.80904 + }, + { + "x": -0.30911, + "y": -0.95103 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30911, + "y": -0.95103 + }, + { + "x": 0.58776, + "y": -0.80904 + }, + { + "x": 0.80904, + "y": -0.58776 + }, + { + "x": 0.95103, + "y": -0.30911 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 52, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2059 + }, + "angle": 0, + "vertices": { + "#": 2060 + }, + "position": { + "#": 2075 + }, + "force": { + "#": 2076 + }, + "torque": 0, + "positionImpulse": { + "#": 2077 + }, + "constraintImpulse": { + "#": 2078 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2079 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2080 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2081 + }, + "circleRadius": 12.11055, + "bounds": { + "#": 2083 + }, + "positionPrev": { + "#": 2086 + }, + "anglePrev": 0, + "axes": { + "#": 2087 + }, + "area": 445.45282, + "mass": 0.44545, + "inverseMass": 2.24491, + "inertia": 126.35249, + "inverseInertia": 0.00791, + "parent": { + "#": 2058 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2058 + } + ], + [ + { + "#": 2061 + }, + { + "#": 2062 + }, + { + "#": 2063 + }, + { + "#": 2064 + }, + { + "#": 2065 + }, + { + "#": 2066 + }, + { + "#": 2067 + }, + { + "#": 2068 + }, + { + "#": 2069 + }, + { + "#": 2070 + }, + { + "#": 2071 + }, + { + "#": 2072 + }, + { + "#": 2073 + }, + { + "#": 2074 + } + ], + { + "x": 241.12, + "y": 113.022, + "index": 0, + "body": { + "#": 2058 + }, + "isInternal": false + }, + { + "x": 238.781, + "y": 117.878, + "index": 1, + "body": { + "#": 2058 + }, + "isInternal": false + }, + { + "x": 234.568, + "y": 121.238, + "index": 2, + "body": { + "#": 2058 + }, + "isInternal": false + }, + { + "x": 229.313, + "y": 122.438, + "index": 3, + "body": { + "#": 2058 + }, + "isInternal": false + }, + { + "x": 224.058, + "y": 121.238, + "index": 4, + "body": { + "#": 2058 + }, + "isInternal": false + }, + { + "x": 219.845, + "y": 117.878, + "index": 5, + "body": { + "#": 2058 + }, + "isInternal": false + }, + { + "x": 217.506, + "y": 113.022, + "index": 6, + "body": { + "#": 2058 + }, + "isInternal": false + }, + { + "x": 217.506, + "y": 107.632, + "index": 7, + "body": { + "#": 2058 + }, + "isInternal": false + }, + { + "x": 219.845, + "y": 102.776, + "index": 8, + "body": { + "#": 2058 + }, + "isInternal": false + }, + { + "x": 224.058, + "y": 99.416, + "index": 9, + "body": { + "#": 2058 + }, + "isInternal": false + }, + { + "x": 229.313, + "y": 98.216, + "index": 10, + "body": { + "#": 2058 + }, + "isInternal": false + }, + { + "x": 234.568, + "y": 99.416, + "index": 11, + "body": { + "#": 2058 + }, + "isInternal": false + }, + { + "x": 238.781, + "y": 102.776, + "index": 12, + "body": { + "#": 2058 + }, + "isInternal": false + }, + { + "x": 241.12, + "y": 107.632, + "index": 13, + "body": { + "#": 2058 + }, + "isInternal": false + }, + { + "x": 229.313, + "y": 110.327 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2082 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2084 + }, + "max": { + "#": 2085 + } + }, + { + "x": 217.506, + "y": 98.216 + }, + { + "x": 241.12, + "y": 122.438 + }, + { + "x": 229.313, + "y": 110.327 + }, + [ + { + "#": 2088 + }, + { + "#": 2089 + }, + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + }, + { + "#": 2094 + } + ], + { + "x": -0.90093, + "y": -0.43396 + }, + { + "x": -0.62352, + "y": -0.78181 + }, + { + "x": -0.22262, + "y": -0.9749 + }, + { + "x": 0.22262, + "y": -0.9749 + }, + { + "x": 0.62352, + "y": -0.78181 + }, + { + "x": 0.90093, + "y": -0.43396 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 53, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2096 + }, + "angle": 0, + "vertices": { + "#": 2097 + }, + "position": { + "#": 2116 + }, + "force": { + "#": 2117 + }, + "torque": 0, + "positionImpulse": { + "#": 2118 + }, + "constraintImpulse": { + "#": 2119 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2120 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2121 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2122 + }, + "circleRadius": 17.20375, + "bounds": { + "#": 2124 + }, + "positionPrev": { + "#": 2127 + }, + "anglePrev": 0, + "axes": { + "#": 2128 + }, + "area": 911.03452, + "mass": 0.91103, + "inverseMass": 1.09765, + "inertia": 528.42838, + "inverseInertia": 0.00189, + "parent": { + "#": 2095 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2095 + } + ], + [ + { + "#": 2098 + }, + { + "#": 2099 + }, + { + "#": 2100 + }, + { + "#": 2101 + }, + { + "#": 2102 + }, + { + "#": 2103 + }, + { + "#": 2104 + }, + { + "#": 2105 + }, + { + "#": 2106 + }, + { + "#": 2107 + }, + { + "#": 2108 + }, + { + "#": 2109 + }, + { + "#": 2110 + }, + { + "#": 2111 + }, + { + "#": 2112 + }, + { + "#": 2113 + }, + { + "#": 2114 + }, + { + "#": 2115 + } + ], + { + "x": 275.004, + "y": 118.407, + "index": 0, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 272.961, + "y": 124.022, + "index": 1, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 269.12, + "y": 128.599, + "index": 2, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 263.946, + "y": 131.586, + "index": 3, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 258.062, + "y": 132.624, + "index": 4, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 252.178, + "y": 131.586, + "index": 5, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 247.004, + "y": 128.599, + "index": 6, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 243.163, + "y": 124.022, + "index": 7, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 241.12, + "y": 118.407, + "index": 8, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 241.12, + "y": 112.433, + "index": 9, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 243.163, + "y": 106.818, + "index": 10, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 247.004, + "y": 102.241, + "index": 11, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 252.178, + "y": 99.254, + "index": 12, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 258.062, + "y": 98.216, + "index": 13, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 263.946, + "y": 99.254, + "index": 14, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 269.12, + "y": 102.241, + "index": 15, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 272.961, + "y": 106.818, + "index": 16, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 275.004, + "y": 112.433, + "index": 17, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 258.062, + "y": 115.42 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2123 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2125 + }, + "max": { + "#": 2126 + } + }, + { + "x": 241.12, + "y": 98.216 + }, + { + "x": 275.004, + "y": 132.624 + }, + { + "x": 258.062, + "y": 115.42 + }, + [ + { + "#": 2129 + }, + { + "#": 2130 + }, + { + "#": 2131 + }, + { + "#": 2132 + }, + { + "#": 2133 + }, + { + "#": 2134 + }, + { + "#": 2135 + }, + { + "#": 2136 + }, + { + "#": 2137 + } + ], + { + "x": -0.93973, + "y": -0.34192 + }, + { + "x": -0.76601, + "y": -0.64283 + }, + { + "x": -0.49997, + "y": -0.86604 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49997, + "y": -0.86604 + }, + { + "x": 0.76601, + "y": -0.64283 + }, + { + "x": 0.93973, + "y": -0.34192 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 54, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2139 + }, + "angle": 0, + "vertices": { + "#": 2140 + }, + "position": { + "#": 2157 + }, + "force": { + "#": 2158 + }, + "torque": 0, + "positionImpulse": { + "#": 2159 + }, + "constraintImpulse": { + "#": 2160 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2161 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2162 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2163 + }, + "circleRadius": 14.87924, + "bounds": { + "#": 2165 + }, + "positionPrev": { + "#": 2168 + }, + "anglePrev": 0, + "axes": { + "#": 2169 + }, + "area": 677.77246, + "mass": 0.67777, + "inverseMass": 1.47542, + "inertia": 292.48689, + "inverseInertia": 0.00342, + "parent": { + "#": 2138 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2138 + } + ], + [ + { + "#": 2141 + }, + { + "#": 2142 + }, + { + "#": 2143 + }, + { + "#": 2144 + }, + { + "#": 2145 + }, + { + "#": 2146 + }, + { + "#": 2147 + }, + { + "#": 2148 + }, + { + "#": 2149 + }, + { + "#": 2150 + }, + { + "#": 2151 + }, + { + "#": 2152 + }, + { + "#": 2153 + }, + { + "#": 2154 + }, + { + "#": 2155 + }, + { + "#": 2156 + } + ], + { + "x": 304.19, + "y": 115.712, + "index": 0, + "body": { + "#": 2138 + }, + "isInternal": false + }, + { + "x": 301.969, + "y": 121.075, + "index": 1, + "body": { + "#": 2138 + }, + "isInternal": false + }, + { + "x": 297.863, + "y": 125.181, + "index": 2, + "body": { + "#": 2138 + }, + "isInternal": false + }, + { + "x": 292.5, + "y": 127.402, + "index": 3, + "body": { + "#": 2138 + }, + "isInternal": false + }, + { + "x": 286.694, + "y": 127.402, + "index": 4, + "body": { + "#": 2138 + }, + "isInternal": false + }, + { + "x": 281.331, + "y": 125.181, + "index": 5, + "body": { + "#": 2138 + }, + "isInternal": false + }, + { + "x": 277.225, + "y": 121.075, + "index": 6, + "body": { + "#": 2138 + }, + "isInternal": false + }, + { + "x": 275.004, + "y": 115.712, + "index": 7, + "body": { + "#": 2138 + }, + "isInternal": false + }, + { + "x": 275.004, + "y": 109.906, + "index": 8, + "body": { + "#": 2138 + }, + "isInternal": false + }, + { + "x": 277.225, + "y": 104.543, + "index": 9, + "body": { + "#": 2138 + }, + "isInternal": false + }, + { + "x": 281.331, + "y": 100.437, + "index": 10, + "body": { + "#": 2138 + }, + "isInternal": false + }, + { + "x": 286.694, + "y": 98.216, + "index": 11, + "body": { + "#": 2138 + }, + "isInternal": false + }, + { + "x": 292.5, + "y": 98.216, + "index": 12, + "body": { + "#": 2138 + }, + "isInternal": false + }, + { + "x": 297.863, + "y": 100.437, + "index": 13, + "body": { + "#": 2138 + }, + "isInternal": false + }, + { + "x": 301.969, + "y": 104.543, + "index": 14, + "body": { + "#": 2138 + }, + "isInternal": false + }, + { + "x": 304.19, + "y": 109.906, + "index": 15, + "body": { + "#": 2138 + }, + "isInternal": false + }, + { + "x": 289.597, + "y": 112.809 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2164 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2166 + }, + "max": { + "#": 2167 + } + }, + { + "x": 275.004, + "y": 98.216 + }, + { + "x": 304.19, + "y": 127.402 + }, + { + "x": 289.597, + "y": 112.809 + }, + [ + { + "#": 2170 + }, + { + "#": 2171 + }, + { + "#": 2172 + }, + { + "#": 2173 + }, + { + "#": 2174 + }, + { + "#": 2175 + }, + { + "#": 2176 + }, + { + "#": 2177 + } + ], + { + "x": -0.92391, + "y": -0.38262 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38262, + "y": -0.92391 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38262, + "y": -0.92391 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92391, + "y": -0.38262 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 55, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2179 + }, + "angle": 0, + "vertices": { + "#": 2180 + }, + "position": { + "#": 2197 + }, + "force": { + "#": 2198 + }, + "torque": 0, + "positionImpulse": { + "#": 2199 + }, + "constraintImpulse": { + "#": 2200 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2201 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2202 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2203 + }, + "circleRadius": 14.51976, + "bounds": { + "#": 2205 + }, + "positionPrev": { + "#": 2208 + }, + "anglePrev": 0, + "axes": { + "#": 2209 + }, + "area": 645.45804, + "mass": 0.64546, + "inverseMass": 1.54929, + "inertia": 265.26173, + "inverseInertia": 0.00377, + "parent": { + "#": 2178 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2178 + } + ], + [ + { + "#": 2181 + }, + { + "#": 2182 + }, + { + "#": 2183 + }, + { + "#": 2184 + }, + { + "#": 2185 + }, + { + "#": 2186 + }, + { + "#": 2187 + }, + { + "#": 2188 + }, + { + "#": 2189 + }, + { + "#": 2190 + }, + { + "#": 2191 + }, + { + "#": 2192 + }, + { + "#": 2193 + }, + { + "#": 2194 + }, + { + "#": 2195 + }, + { + "#": 2196 + } + ], + { + "x": 332.672, + "y": 115.29, + "index": 0, + "body": { + "#": 2178 + }, + "isInternal": false + }, + { + "x": 330.504, + "y": 120.524, + "index": 1, + "body": { + "#": 2178 + }, + "isInternal": false + }, + { + "x": 326.498, + "y": 124.53, + "index": 2, + "body": { + "#": 2178 + }, + "isInternal": false + }, + { + "x": 321.264, + "y": 126.698, + "index": 3, + "body": { + "#": 2178 + }, + "isInternal": false + }, + { + "x": 315.598, + "y": 126.698, + "index": 4, + "body": { + "#": 2178 + }, + "isInternal": false + }, + { + "x": 310.364, + "y": 124.53, + "index": 5, + "body": { + "#": 2178 + }, + "isInternal": false + }, + { + "x": 306.358, + "y": 120.524, + "index": 6, + "body": { + "#": 2178 + }, + "isInternal": false + }, + { + "x": 304.19, + "y": 115.29, + "index": 7, + "body": { + "#": 2178 + }, + "isInternal": false + }, + { + "x": 304.19, + "y": 109.624, + "index": 8, + "body": { + "#": 2178 + }, + "isInternal": false + }, + { + "x": 306.358, + "y": 104.39, + "index": 9, + "body": { + "#": 2178 + }, + "isInternal": false + }, + { + "x": 310.364, + "y": 100.384, + "index": 10, + "body": { + "#": 2178 + }, + "isInternal": false + }, + { + "x": 315.598, + "y": 98.216, + "index": 11, + "body": { + "#": 2178 + }, + "isInternal": false + }, + { + "x": 321.264, + "y": 98.216, + "index": 12, + "body": { + "#": 2178 + }, + "isInternal": false + }, + { + "x": 326.498, + "y": 100.384, + "index": 13, + "body": { + "#": 2178 + }, + "isInternal": false + }, + { + "x": 330.504, + "y": 104.39, + "index": 14, + "body": { + "#": 2178 + }, + "isInternal": false + }, + { + "x": 332.672, + "y": 109.624, + "index": 15, + "body": { + "#": 2178 + }, + "isInternal": false + }, + { + "x": 318.431, + "y": 112.457 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2204 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2206 + }, + "max": { + "#": 2207 + } + }, + { + "x": 304.19, + "y": 98.216 + }, + { + "x": 332.672, + "y": 126.698 + }, + { + "x": 318.431, + "y": 112.457 + }, + [ + { + "#": 2210 + }, + { + "#": 2211 + }, + { + "#": 2212 + }, + { + "#": 2213 + }, + { + "#": 2214 + }, + { + "#": 2215 + }, + { + "#": 2216 + }, + { + "#": 2217 + } + ], + { + "x": -0.92388, + "y": -0.38268 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38268, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38268, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38268 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 56, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2219 + }, + "angle": 0, + "vertices": { + "#": 2220 + }, + "position": { + "#": 2237 + }, + "force": { + "#": 2238 + }, + "torque": 0, + "positionImpulse": { + "#": 2239 + }, + "constraintImpulse": { + "#": 2240 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2241 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2242 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2243 + }, + "circleRadius": 15.13765, + "bounds": { + "#": 2245 + }, + "positionPrev": { + "#": 2248 + }, + "anglePrev": 0, + "axes": { + "#": 2249 + }, + "area": 701.5186, + "mass": 0.70152, + "inverseMass": 1.42548, + "inertia": 313.3408, + "inverseInertia": 0.00319, + "parent": { + "#": 2218 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2218 + } + ], + [ + { + "#": 2221 + }, + { + "#": 2222 + }, + { + "#": 2223 + }, + { + "#": 2224 + }, + { + "#": 2225 + }, + { + "#": 2226 + }, + { + "#": 2227 + }, + { + "#": 2228 + }, + { + "#": 2229 + }, + { + "#": 2230 + }, + { + "#": 2231 + }, + { + "#": 2232 + }, + { + "#": 2233 + }, + { + "#": 2234 + }, + { + "#": 2235 + }, + { + "#": 2236 + } + ], + { + "x": 362.366, + "y": 116.016, + "index": 0, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 360.105, + "y": 121.473, + "index": 1, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 355.929, + "y": 125.649, + "index": 2, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 350.472, + "y": 127.91, + "index": 3, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 344.566, + "y": 127.91, + "index": 4, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 339.109, + "y": 125.649, + "index": 5, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 334.933, + "y": 121.473, + "index": 6, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 332.672, + "y": 116.016, + "index": 7, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 332.672, + "y": 110.11, + "index": 8, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 334.933, + "y": 104.653, + "index": 9, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 339.109, + "y": 100.477, + "index": 10, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 344.566, + "y": 98.216, + "index": 11, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 350.472, + "y": 98.216, + "index": 12, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 355.929, + "y": 100.477, + "index": 13, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 360.105, + "y": 104.653, + "index": 14, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 362.366, + "y": 110.11, + "index": 15, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 347.519, + "y": 113.063 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2244 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2246 + }, + "max": { + "#": 2247 + } + }, + { + "x": 332.672, + "y": 98.216 + }, + { + "x": 362.366, + "y": 127.91 + }, + { + "x": 347.519, + "y": 113.063 + }, + [ + { + "#": 2250 + }, + { + "#": 2251 + }, + { + "#": 2252 + }, + { + "#": 2253 + }, + { + "#": 2254 + }, + { + "#": 2255 + }, + { + "#": 2256 + }, + { + "#": 2257 + } + ], + { + "x": -0.92384, + "y": -0.38278 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38278, + "y": -0.92384 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38278, + "y": -0.92384 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92384, + "y": -0.38278 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 57, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2259 + }, + "angle": 0, + "vertices": { + "#": 2260 + }, + "position": { + "#": 2275 + }, + "force": { + "#": 2276 + }, + "torque": 0, + "positionImpulse": { + "#": 2277 + }, + "constraintImpulse": { + "#": 2278 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2279 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2280 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2281 + }, + "circleRadius": 13.15265, + "bounds": { + "#": 2283 + }, + "positionPrev": { + "#": 2286 + }, + "anglePrev": 0, + "axes": { + "#": 2287 + }, + "area": 525.42123, + "mass": 0.52542, + "inverseMass": 1.90323, + "inertia": 175.79059, + "inverseInertia": 0.00569, + "parent": { + "#": 2258 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2258 + } + ], + [ + { + "#": 2261 + }, + { + "#": 2262 + }, + { + "#": 2263 + }, + { + "#": 2264 + }, + { + "#": 2265 + }, + { + "#": 2266 + }, + { + "#": 2267 + }, + { + "#": 2268 + }, + { + "#": 2269 + }, + { + "#": 2270 + }, + { + "#": 2271 + }, + { + "#": 2272 + }, + { + "#": 2273 + }, + { + "#": 2274 + } + ], + { + "x": 388.012, + "y": 114.296, + "index": 0, + "body": { + "#": 2258 + }, + "isInternal": false + }, + { + "x": 385.472, + "y": 119.57, + "index": 1, + "body": { + "#": 2258 + }, + "isInternal": false + }, + { + "x": 380.896, + "y": 123.219, + "index": 2, + "body": { + "#": 2258 + }, + "isInternal": false + }, + { + "x": 375.189, + "y": 124.522, + "index": 3, + "body": { + "#": 2258 + }, + "isInternal": false + }, + { + "x": 369.482, + "y": 123.219, + "index": 4, + "body": { + "#": 2258 + }, + "isInternal": false + }, + { + "x": 364.906, + "y": 119.57, + "index": 5, + "body": { + "#": 2258 + }, + "isInternal": false + }, + { + "x": 362.366, + "y": 114.296, + "index": 6, + "body": { + "#": 2258 + }, + "isInternal": false + }, + { + "x": 362.366, + "y": 108.442, + "index": 7, + "body": { + "#": 2258 + }, + "isInternal": false + }, + { + "x": 364.906, + "y": 103.168, + "index": 8, + "body": { + "#": 2258 + }, + "isInternal": false + }, + { + "x": 369.482, + "y": 99.519, + "index": 9, + "body": { + "#": 2258 + }, + "isInternal": false + }, + { + "x": 375.189, + "y": 98.216, + "index": 10, + "body": { + "#": 2258 + }, + "isInternal": false + }, + { + "x": 380.896, + "y": 99.519, + "index": 11, + "body": { + "#": 2258 + }, + "isInternal": false + }, + { + "x": 385.472, + "y": 103.168, + "index": 12, + "body": { + "#": 2258 + }, + "isInternal": false + }, + { + "x": 388.012, + "y": 108.442, + "index": 13, + "body": { + "#": 2258 + }, + "isInternal": false + }, + { + "x": 375.189, + "y": 111.369 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2282 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2284 + }, + "max": { + "#": 2285 + } + }, + { + "x": 362.366, + "y": 98.216 + }, + { + "x": 388.012, + "y": 124.522 + }, + { + "x": 375.189, + "y": 111.369 + }, + [ + { + "#": 2288 + }, + { + "#": 2289 + }, + { + "#": 2290 + }, + { + "#": 2291 + }, + { + "#": 2292 + }, + { + "#": 2293 + }, + { + "#": 2294 + } + ], + { + "x": -0.90096, + "y": -0.43391 + }, + { + "x": -0.62346, + "y": -0.78185 + }, + { + "x": -0.22259, + "y": -0.97491 + }, + { + "x": 0.22259, + "y": -0.97491 + }, + { + "x": 0.62346, + "y": -0.78185 + }, + { + "x": 0.90096, + "y": -0.43391 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 58, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2296 + }, + "angle": 0, + "vertices": { + "#": 2297 + }, + "position": { + "#": 2316 + }, + "force": { + "#": 2317 + }, + "torque": 0, + "positionImpulse": { + "#": 2318 + }, + "constraintImpulse": { + "#": 2319 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2320 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2321 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2322 + }, + "circleRadius": 16.83638, + "bounds": { + "#": 2324 + }, + "positionPrev": { + "#": 2327 + }, + "anglePrev": 0, + "axes": { + "#": 2328 + }, + "area": 872.54809, + "mass": 0.87255, + "inverseMass": 1.14607, + "inertia": 484.72477, + "inverseInertia": 0.00206, + "parent": { + "#": 2295 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2295 + } + ], + [ + { + "#": 2298 + }, + { + "#": 2299 + }, + { + "#": 2300 + }, + { + "#": 2301 + }, + { + "#": 2302 + }, + { + "#": 2303 + }, + { + "#": 2304 + }, + { + "#": 2305 + }, + { + "#": 2306 + }, + { + "#": 2307 + }, + { + "#": 2308 + }, + { + "#": 2309 + }, + { + "#": 2310 + }, + { + "#": 2311 + }, + { + "#": 2312 + }, + { + "#": 2313 + }, + { + "#": 2314 + }, + { + "#": 2315 + } + ], + { + "x": 421.174, + "y": 117.976, + "index": 0, + "body": { + "#": 2295 + }, + "isInternal": false + }, + { + "x": 419.174, + "y": 123.47, + "index": 1, + "body": { + "#": 2295 + }, + "isInternal": false + }, + { + "x": 415.415, + "y": 127.949, + "index": 2, + "body": { + "#": 2295 + }, + "isInternal": false + }, + { + "x": 410.351, + "y": 130.873, + "index": 3, + "body": { + "#": 2295 + }, + "isInternal": false + }, + { + "x": 404.593, + "y": 131.888, + "index": 4, + "body": { + "#": 2295 + }, + "isInternal": false + }, + { + "x": 398.835, + "y": 130.873, + "index": 5, + "body": { + "#": 2295 + }, + "isInternal": false + }, + { + "x": 393.771, + "y": 127.949, + "index": 6, + "body": { + "#": 2295 + }, + "isInternal": false + }, + { + "x": 390.012, + "y": 123.47, + "index": 7, + "body": { + "#": 2295 + }, + "isInternal": false + }, + { + "x": 388.012, + "y": 117.976, + "index": 8, + "body": { + "#": 2295 + }, + "isInternal": false + }, + { + "x": 388.012, + "y": 112.128, + "index": 9, + "body": { + "#": 2295 + }, + "isInternal": false + }, + { + "x": 390.012, + "y": 106.634, + "index": 10, + "body": { + "#": 2295 + }, + "isInternal": false + }, + { + "x": 393.771, + "y": 102.155, + "index": 11, + "body": { + "#": 2295 + }, + "isInternal": false + }, + { + "x": 398.835, + "y": 99.231, + "index": 12, + "body": { + "#": 2295 + }, + "isInternal": false + }, + { + "x": 404.593, + "y": 98.216, + "index": 13, + "body": { + "#": 2295 + }, + "isInternal": false + }, + { + "x": 410.351, + "y": 99.231, + "index": 14, + "body": { + "#": 2295 + }, + "isInternal": false + }, + { + "x": 415.415, + "y": 102.155, + "index": 15, + "body": { + "#": 2295 + }, + "isInternal": false + }, + { + "x": 419.174, + "y": 106.634, + "index": 16, + "body": { + "#": 2295 + }, + "isInternal": false + }, + { + "x": 421.174, + "y": 112.128, + "index": 17, + "body": { + "#": 2295 + }, + "isInternal": false + }, + { + "x": 404.593, + "y": 115.052 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2323 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2325 + }, + "max": { + "#": 2326 + } + }, + { + "x": 388.012, + "y": 98.216 + }, + { + "x": 421.174, + "y": 131.888 + }, + { + "x": 404.593, + "y": 115.052 + }, + [ + { + "#": 2329 + }, + { + "#": 2330 + }, + { + "#": 2331 + }, + { + "#": 2332 + }, + { + "#": 2333 + }, + { + "#": 2334 + }, + { + "#": 2335 + }, + { + "#": 2336 + }, + { + "#": 2337 + } + ], + { + "x": -0.93967, + "y": -0.34207 + }, + { + "x": -0.76599, + "y": -0.64286 + }, + { + "x": -0.50004, + "y": -0.866 + }, + { + "x": -0.1736, + "y": -0.98482 + }, + { + "x": 0.1736, + "y": -0.98482 + }, + { + "x": 0.50004, + "y": -0.866 + }, + { + "x": 0.76599, + "y": -0.64286 + }, + { + "x": 0.93967, + "y": -0.34207 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 59, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2339 + }, + "angle": 0, + "vertices": { + "#": 2340 + }, + "position": { + "#": 2359 + }, + "force": { + "#": 2360 + }, + "torque": 0, + "positionImpulse": { + "#": 2361 + }, + "constraintImpulse": { + "#": 2362 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2363 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2364 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2365 + }, + "circleRadius": 17.4234, + "bounds": { + "#": 2367 + }, + "positionPrev": { + "#": 2370 + }, + "anglePrev": 0, + "axes": { + "#": 2371 + }, + "area": 934.47599, + "mass": 0.93448, + "inverseMass": 1.07012, + "inertia": 555.9718, + "inverseInertia": 0.0018, + "parent": { + "#": 2338 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2338 + } + ], + [ + { + "#": 2341 + }, + { + "#": 2342 + }, + { + "#": 2343 + }, + { + "#": 2344 + }, + { + "#": 2345 + }, + { + "#": 2346 + }, + { + "#": 2347 + }, + { + "#": 2348 + }, + { + "#": 2349 + }, + { + "#": 2350 + }, + { + "#": 2351 + }, + { + "#": 2352 + }, + { + "#": 2353 + }, + { + "#": 2354 + }, + { + "#": 2355 + }, + { + "#": 2356 + }, + { + "#": 2357 + }, + { + "#": 2358 + } + ], + { + "x": 455.492, + "y": 118.665, + "index": 0, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 453.422, + "y": 124.351, + "index": 1, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 449.533, + "y": 128.986, + "index": 2, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 444.292, + "y": 132.012, + "index": 3, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 438.333, + "y": 133.062, + "index": 4, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 432.374, + "y": 132.012, + "index": 5, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 427.133, + "y": 128.986, + "index": 6, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 423.244, + "y": 124.351, + "index": 7, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 421.174, + "y": 118.665, + "index": 8, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 421.174, + "y": 112.613, + "index": 9, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 423.244, + "y": 106.927, + "index": 10, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 427.133, + "y": 102.292, + "index": 11, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 432.374, + "y": 99.266, + "index": 12, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 438.333, + "y": 98.216, + "index": 13, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 444.292, + "y": 99.266, + "index": 14, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 449.533, + "y": 102.292, + "index": 15, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 453.422, + "y": 106.927, + "index": 16, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 455.492, + "y": 112.613, + "index": 17, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 438.333, + "y": 115.639 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2366 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2368 + }, + "max": { + "#": 2369 + } + }, + { + "x": 421.174, + "y": 98.216 + }, + { + "x": 455.492, + "y": 133.062 + }, + { + "x": 438.333, + "y": 115.639 + }, + [ + { + "#": 2372 + }, + { + "#": 2373 + }, + { + "#": 2374 + }, + { + "#": 2375 + }, + { + "#": 2376 + }, + { + "#": 2377 + }, + { + "#": 2378 + }, + { + "#": 2379 + }, + { + "#": 2380 + } + ], + { + "x": -0.93967, + "y": -0.34209 + }, + { + "x": -0.76606, + "y": -0.64277 + }, + { + "x": -0.50001, + "y": -0.86602 + }, + { + "x": -0.17353, + "y": -0.98483 + }, + { + "x": 0.17353, + "y": -0.98483 + }, + { + "x": 0.50001, + "y": -0.86602 + }, + { + "x": 0.76606, + "y": -0.64277 + }, + { + "x": 0.93967, + "y": -0.34209 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 60, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2382 + }, + "angle": 0, + "vertices": { + "#": 2383 + }, + "position": { + "#": 2402 + }, + "force": { + "#": 2403 + }, + "torque": 0, + "positionImpulse": { + "#": 2404 + }, + "constraintImpulse": { + "#": 2405 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2406 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2407 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2408 + }, + "circleRadius": 16.88902, + "bounds": { + "#": 2410 + }, + "positionPrev": { + "#": 2413 + }, + "anglePrev": 0, + "axes": { + "#": 2414 + }, + "area": 877.9976, + "mass": 0.878, + "inverseMass": 1.13896, + "inertia": 490.79839, + "inverseInertia": 0.00204, + "parent": { + "#": 2381 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2381 + } + ], + [ + { + "#": 2384 + }, + { + "#": 2385 + }, + { + "#": 2386 + }, + { + "#": 2387 + }, + { + "#": 2388 + }, + { + "#": 2389 + }, + { + "#": 2390 + }, + { + "#": 2391 + }, + { + "#": 2392 + }, + { + "#": 2393 + }, + { + "#": 2394 + }, + { + "#": 2395 + }, + { + "#": 2396 + }, + { + "#": 2397 + }, + { + "#": 2398 + }, + { + "#": 2399 + }, + { + "#": 2400 + }, + { + "#": 2401 + } + ], + { + "x": 488.756, + "y": 118.038, + "index": 0, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 486.75, + "y": 123.55, + "index": 1, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 482.98, + "y": 128.043, + "index": 2, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 477.9, + "y": 130.975, + "index": 3, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 472.124, + "y": 131.994, + "index": 4, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 466.348, + "y": 130.975, + "index": 5, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 461.268, + "y": 128.043, + "index": 6, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 457.498, + "y": 123.55, + "index": 7, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 455.492, + "y": 118.038, + "index": 8, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 455.492, + "y": 112.172, + "index": 9, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 457.498, + "y": 106.66, + "index": 10, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 461.268, + "y": 102.167, + "index": 11, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 466.348, + "y": 99.235, + "index": 12, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 472.124, + "y": 98.216, + "index": 13, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 477.9, + "y": 99.235, + "index": 14, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 482.98, + "y": 102.167, + "index": 15, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 486.75, + "y": 106.66, + "index": 16, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 488.756, + "y": 112.172, + "index": 17, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 472.124, + "y": 115.105 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2409 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2411 + }, + "max": { + "#": 2412 + } + }, + { + "x": 455.492, + "y": 98.216 + }, + { + "x": 488.756, + "y": 131.994 + }, + { + "x": 472.124, + "y": 115.105 + }, + [ + { + "#": 2415 + }, + { + "#": 2416 + }, + { + "#": 2417 + }, + { + "#": 2418 + }, + { + "#": 2419 + }, + { + "#": 2420 + }, + { + "#": 2421 + }, + { + "#": 2422 + }, + { + "#": 2423 + } + ], + { + "x": -0.9397, + "y": -0.34199 + }, + { + "x": -0.76605, + "y": -0.64278 + }, + { + "x": -0.49988, + "y": -0.86609 + }, + { + "x": -0.17374, + "y": -0.98479 + }, + { + "x": 0.17374, + "y": -0.98479 + }, + { + "x": 0.49988, + "y": -0.86609 + }, + { + "x": 0.76605, + "y": -0.64278 + }, + { + "x": 0.9397, + "y": -0.34199 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 61, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2425 + }, + "angle": 0, + "vertices": { + "#": 2426 + }, + "position": { + "#": 2441 + }, + "force": { + "#": 2442 + }, + "torque": 0, + "positionImpulse": { + "#": 2443 + }, + "constraintImpulse": { + "#": 2444 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2445 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2446 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2447 + }, + "circleRadius": 12.39373, + "bounds": { + "#": 2449 + }, + "positionPrev": { + "#": 2452 + }, + "anglePrev": 0, + "axes": { + "#": 2453 + }, + "area": 466.51647, + "mass": 0.46652, + "inverseMass": 2.14355, + "inertia": 138.5844, + "inverseInertia": 0.00722, + "parent": { + "#": 2424 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2424 + } + ], + [ + { + "#": 2427 + }, + { + "#": 2428 + }, + { + "#": 2429 + }, + { + "#": 2430 + }, + { + "#": 2431 + }, + { + "#": 2432 + }, + { + "#": 2433 + }, + { + "#": 2434 + }, + { + "#": 2435 + }, + { + "#": 2436 + }, + { + "#": 2437 + }, + { + "#": 2438 + }, + { + "#": 2439 + }, + { + "#": 2440 + } + ], + { + "x": 512.922, + "y": 113.368, + "index": 0, + "body": { + "#": 2424 + }, + "isInternal": false + }, + { + "x": 510.529, + "y": 118.337, + "index": 1, + "body": { + "#": 2424 + }, + "isInternal": false + }, + { + "x": 506.216, + "y": 121.776, + "index": 2, + "body": { + "#": 2424 + }, + "isInternal": false + }, + { + "x": 500.839, + "y": 123.004, + "index": 3, + "body": { + "#": 2424 + }, + "isInternal": false + }, + { + "x": 495.462, + "y": 121.776, + "index": 4, + "body": { + "#": 2424 + }, + "isInternal": false + }, + { + "x": 491.149, + "y": 118.337, + "index": 5, + "body": { + "#": 2424 + }, + "isInternal": false + }, + { + "x": 488.756, + "y": 113.368, + "index": 6, + "body": { + "#": 2424 + }, + "isInternal": false + }, + { + "x": 488.756, + "y": 107.852, + "index": 7, + "body": { + "#": 2424 + }, + "isInternal": false + }, + { + "x": 491.149, + "y": 102.883, + "index": 8, + "body": { + "#": 2424 + }, + "isInternal": false + }, + { + "x": 495.462, + "y": 99.444, + "index": 9, + "body": { + "#": 2424 + }, + "isInternal": false + }, + { + "x": 500.839, + "y": 98.216, + "index": 10, + "body": { + "#": 2424 + }, + "isInternal": false + }, + { + "x": 506.216, + "y": 99.444, + "index": 11, + "body": { + "#": 2424 + }, + "isInternal": false + }, + { + "x": 510.529, + "y": 102.883, + "index": 12, + "body": { + "#": 2424 + }, + "isInternal": false + }, + { + "x": 512.922, + "y": 107.852, + "index": 13, + "body": { + "#": 2424 + }, + "isInternal": false + }, + { + "x": 500.839, + "y": 110.61 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2448 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2450 + }, + "max": { + "#": 2451 + } + }, + { + "x": 488.756, + "y": 98.216 + }, + { + "x": 512.922, + "y": 123.004 + }, + { + "x": 500.839, + "y": 110.61 + }, + [ + { + "#": 2454 + }, + { + "#": 2455 + }, + { + "#": 2456 + }, + { + "#": 2457 + }, + { + "#": 2458 + }, + { + "#": 2459 + }, + { + "#": 2460 + } + ], + { + "x": -0.90096, + "y": -0.43389 + }, + { + "x": -0.62343, + "y": -0.78188 + }, + { + "x": -0.22265, + "y": -0.9749 + }, + { + "x": 0.22265, + "y": -0.9749 + }, + { + "x": 0.62343, + "y": -0.78188 + }, + { + "x": 0.90096, + "y": -0.43389 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 62, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2462 + }, + "angle": 0, + "vertices": { + "#": 2463 + }, + "position": { + "#": 2482 + }, + "force": { + "#": 2483 + }, + "torque": 0, + "positionImpulse": { + "#": 2484 + }, + "constraintImpulse": { + "#": 2485 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2486 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2487 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2488 + }, + "circleRadius": 17.39433, + "bounds": { + "#": 2490 + }, + "positionPrev": { + "#": 2493 + }, + "anglePrev": 0, + "axes": { + "#": 2494 + }, + "area": 931.331, + "mass": 0.93133, + "inverseMass": 1.07373, + "inertia": 552.23584, + "inverseInertia": 0.00181, + "parent": { + "#": 2461 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2461 + } + ], + [ + { + "#": 2464 + }, + { + "#": 2465 + }, + { + "#": 2466 + }, + { + "#": 2467 + }, + { + "#": 2468 + }, + { + "#": 2469 + }, + { + "#": 2470 + }, + { + "#": 2471 + }, + { + "#": 2472 + }, + { + "#": 2473 + }, + { + "#": 2474 + }, + { + "#": 2475 + }, + { + "#": 2476 + }, + { + "#": 2477 + }, + { + "#": 2478 + }, + { + "#": 2479 + }, + { + "#": 2480 + }, + { + "#": 2481 + } + ], + { + "x": 547.182, + "y": 118.63, + "index": 0, + "body": { + "#": 2461 + }, + "isInternal": false + }, + { + "x": 545.116, + "y": 124.307, + "index": 1, + "body": { + "#": 2461 + }, + "isInternal": false + }, + { + "x": 541.233, + "y": 128.935, + "index": 2, + "body": { + "#": 2461 + }, + "isInternal": false + }, + { + "x": 536.001, + "y": 131.955, + "index": 3, + "body": { + "#": 2461 + }, + "isInternal": false + }, + { + "x": 530.052, + "y": 133.004, + "index": 4, + "body": { + "#": 2461 + }, + "isInternal": false + }, + { + "x": 524.103, + "y": 131.955, + "index": 5, + "body": { + "#": 2461 + }, + "isInternal": false + }, + { + "x": 518.871, + "y": 128.935, + "index": 6, + "body": { + "#": 2461 + }, + "isInternal": false + }, + { + "x": 514.988, + "y": 124.307, + "index": 7, + "body": { + "#": 2461 + }, + "isInternal": false + }, + { + "x": 512.922, + "y": 118.63, + "index": 8, + "body": { + "#": 2461 + }, + "isInternal": false + }, + { + "x": 512.922, + "y": 112.59, + "index": 9, + "body": { + "#": 2461 + }, + "isInternal": false + }, + { + "x": 514.988, + "y": 106.913, + "index": 10, + "body": { + "#": 2461 + }, + "isInternal": false + }, + { + "x": 518.871, + "y": 102.285, + "index": 11, + "body": { + "#": 2461 + }, + "isInternal": false + }, + { + "x": 524.103, + "y": 99.265, + "index": 12, + "body": { + "#": 2461 + }, + "isInternal": false + }, + { + "x": 530.052, + "y": 98.216, + "index": 13, + "body": { + "#": 2461 + }, + "isInternal": false + }, + { + "x": 536.001, + "y": 99.265, + "index": 14, + "body": { + "#": 2461 + }, + "isInternal": false + }, + { + "x": 541.233, + "y": 102.285, + "index": 15, + "body": { + "#": 2461 + }, + "isInternal": false + }, + { + "x": 545.116, + "y": 106.913, + "index": 16, + "body": { + "#": 2461 + }, + "isInternal": false + }, + { + "x": 547.182, + "y": 112.59, + "index": 17, + "body": { + "#": 2461 + }, + "isInternal": false + }, + { + "x": 530.052, + "y": 115.61 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2489 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2491 + }, + "max": { + "#": 2492 + } + }, + { + "x": 512.922, + "y": 98.216 + }, + { + "x": 547.182, + "y": 133.004 + }, + { + "x": 530.052, + "y": 115.61 + }, + [ + { + "#": 2495 + }, + { + "#": 2496 + }, + { + "#": 2497 + }, + { + "#": 2498 + }, + { + "#": 2499 + }, + { + "#": 2500 + }, + { + "#": 2501 + }, + { + "#": 2502 + }, + { + "#": 2503 + } + ], + { + "x": -0.93971, + "y": -0.34198 + }, + { + "x": -0.76607, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17365, + "y": -0.98481 + }, + { + "x": 0.17365, + "y": -0.98481 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76607, + "y": -0.64275 + }, + { + "x": 0.93971, + "y": -0.34198 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 63, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2505 + }, + "angle": 0, + "vertices": { + "#": 2506 + }, + "position": { + "#": 2527 + }, + "force": { + "#": 2528 + }, + "torque": 0, + "positionImpulse": { + "#": 2529 + }, + "constraintImpulse": { + "#": 2530 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2531 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2532 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2533 + }, + "circleRadius": 19.42168, + "bounds": { + "#": 2535 + }, + "positionPrev": { + "#": 2538 + }, + "anglePrev": 0, + "axes": { + "#": 2539 + }, + "area": 1165.63032, + "mass": 1.16563, + "inverseMass": 0.8579, + "inertia": 865.01885, + "inverseInertia": 0.00116, + "parent": { + "#": 2504 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2504 + } + ], + [ + { + "#": 2507 + }, + { + "#": 2508 + }, + { + "#": 2509 + }, + { + "#": 2510 + }, + { + "#": 2511 + }, + { + "#": 2512 + }, + { + "#": 2513 + }, + { + "#": 2514 + }, + { + "#": 2515 + }, + { + "#": 2516 + }, + { + "#": 2517 + }, + { + "#": 2518 + }, + { + "#": 2519 + }, + { + "#": 2520 + }, + { + "#": 2521 + }, + { + "#": 2522 + }, + { + "#": 2523 + }, + { + "#": 2524 + }, + { + "#": 2525 + }, + { + "#": 2526 + } + ], + { + "x": 585.548, + "y": 120.437, + "index": 0, + "body": { + "#": 2504 + }, + "isInternal": false + }, + { + "x": 583.67, + "y": 126.216, + "index": 1, + "body": { + "#": 2504 + }, + "isInternal": false + }, + { + "x": 580.098, + "y": 131.132, + "index": 2, + "body": { + "#": 2504 + }, + "isInternal": false + }, + { + "x": 575.182, + "y": 134.704, + "index": 3, + "body": { + "#": 2504 + }, + "isInternal": false + }, + { + "x": 569.403, + "y": 136.582, + "index": 4, + "body": { + "#": 2504 + }, + "isInternal": false + }, + { + "x": 563.327, + "y": 136.582, + "index": 5, + "body": { + "#": 2504 + }, + "isInternal": false + }, + { + "x": 557.548, + "y": 134.704, + "index": 6, + "body": { + "#": 2504 + }, + "isInternal": false + }, + { + "x": 552.632, + "y": 131.132, + "index": 7, + "body": { + "#": 2504 + }, + "isInternal": false + }, + { + "x": 549.06, + "y": 126.216, + "index": 8, + "body": { + "#": 2504 + }, + "isInternal": false + }, + { + "x": 547.182, + "y": 120.437, + "index": 9, + "body": { + "#": 2504 + }, + "isInternal": false + }, + { + "x": 547.182, + "y": 114.361, + "index": 10, + "body": { + "#": 2504 + }, + "isInternal": false + }, + { + "x": 549.06, + "y": 108.582, + "index": 11, + "body": { + "#": 2504 + }, + "isInternal": false + }, + { + "x": 552.632, + "y": 103.666, + "index": 12, + "body": { + "#": 2504 + }, + "isInternal": false + }, + { + "x": 557.548, + "y": 100.094, + "index": 13, + "body": { + "#": 2504 + }, + "isInternal": false + }, + { + "x": 563.327, + "y": 98.216, + "index": 14, + "body": { + "#": 2504 + }, + "isInternal": false + }, + { + "x": 569.403, + "y": 98.216, + "index": 15, + "body": { + "#": 2504 + }, + "isInternal": false + }, + { + "x": 575.182, + "y": 100.094, + "index": 16, + "body": { + "#": 2504 + }, + "isInternal": false + }, + { + "x": 580.098, + "y": 103.666, + "index": 17, + "body": { + "#": 2504 + }, + "isInternal": false + }, + { + "x": 583.67, + "y": 108.582, + "index": 18, + "body": { + "#": 2504 + }, + "isInternal": false + }, + { + "x": 585.548, + "y": 114.361, + "index": 19, + "body": { + "#": 2504 + }, + "isInternal": false + }, + { + "x": 566.365, + "y": 117.399 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2534 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2536 + }, + "max": { + "#": 2537 + } + }, + { + "x": 547.182, + "y": 98.216 + }, + { + "x": 585.548, + "y": 136.582 + }, + { + "x": 566.365, + "y": 117.399 + }, + [ + { + "#": 2540 + }, + { + "#": 2541 + }, + { + "#": 2542 + }, + { + "#": 2543 + }, + { + "#": 2544 + }, + { + "#": 2545 + }, + { + "#": 2546 + }, + { + "#": 2547 + }, + { + "#": 2548 + }, + { + "#": 2549 + } + ], + { + "x": -0.95104, + "y": -0.30906 + }, + { + "x": -0.80899, + "y": -0.58782 + }, + { + "x": -0.58782, + "y": -0.80899 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.58782, + "y": -0.80899 + }, + { + "x": 0.80899, + "y": -0.58782 + }, + { + "x": 0.95104, + "y": -0.30906 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 64, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2551 + }, + "angle": 0, + "vertices": { + "#": 2552 + }, + "position": { + "#": 2569 + }, + "force": { + "#": 2570 + }, + "torque": 0, + "positionImpulse": { + "#": 2571 + }, + "constraintImpulse": { + "#": 2572 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2573 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2574 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2575 + }, + "circleRadius": 14.52516, + "bounds": { + "#": 2577 + }, + "positionPrev": { + "#": 2580 + }, + "anglePrev": 0, + "axes": { + "#": 2581 + }, + "area": 645.90672, + "mass": 0.64591, + "inverseMass": 1.54821, + "inertia": 265.63065, + "inverseInertia": 0.00376, + "parent": { + "#": 2550 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2550 + } + ], + [ + { + "#": 2553 + }, + { + "#": 2554 + }, + { + "#": 2555 + }, + { + "#": 2556 + }, + { + "#": 2557 + }, + { + "#": 2558 + }, + { + "#": 2559 + }, + { + "#": 2560 + }, + { + "#": 2561 + }, + { + "#": 2562 + }, + { + "#": 2563 + }, + { + "#": 2564 + }, + { + "#": 2565 + }, + { + "#": 2566 + }, + { + "#": 2567 + }, + { + "#": 2568 + } + ], + { + "x": 614.04, + "y": 115.296, + "index": 0, + "body": { + "#": 2550 + }, + "isInternal": false + }, + { + "x": 611.871, + "y": 120.532, + "index": 1, + "body": { + "#": 2550 + }, + "isInternal": false + }, + { + "x": 607.864, + "y": 124.539, + "index": 2, + "body": { + "#": 2550 + }, + "isInternal": false + }, + { + "x": 602.628, + "y": 126.708, + "index": 3, + "body": { + "#": 2550 + }, + "isInternal": false + }, + { + "x": 596.96, + "y": 126.708, + "index": 4, + "body": { + "#": 2550 + }, + "isInternal": false + }, + { + "x": 591.724, + "y": 124.539, + "index": 5, + "body": { + "#": 2550 + }, + "isInternal": false + }, + { + "x": 587.717, + "y": 120.532, + "index": 6, + "body": { + "#": 2550 + }, + "isInternal": false + }, + { + "x": 585.548, + "y": 115.296, + "index": 7, + "body": { + "#": 2550 + }, + "isInternal": false + }, + { + "x": 585.548, + "y": 109.628, + "index": 8, + "body": { + "#": 2550 + }, + "isInternal": false + }, + { + "x": 587.717, + "y": 104.392, + "index": 9, + "body": { + "#": 2550 + }, + "isInternal": false + }, + { + "x": 591.724, + "y": 100.385, + "index": 10, + "body": { + "#": 2550 + }, + "isInternal": false + }, + { + "x": 596.96, + "y": 98.216, + "index": 11, + "body": { + "#": 2550 + }, + "isInternal": false + }, + { + "x": 602.628, + "y": 98.216, + "index": 12, + "body": { + "#": 2550 + }, + "isInternal": false + }, + { + "x": 607.864, + "y": 100.385, + "index": 13, + "body": { + "#": 2550 + }, + "isInternal": false + }, + { + "x": 611.871, + "y": 104.392, + "index": 14, + "body": { + "#": 2550 + }, + "isInternal": false + }, + { + "x": 614.04, + "y": 109.628, + "index": 15, + "body": { + "#": 2550 + }, + "isInternal": false + }, + { + "x": 599.794, + "y": 112.462 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2576 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2578 + }, + "max": { + "#": 2579 + } + }, + { + "x": 585.548, + "y": 98.216 + }, + { + "x": 614.04, + "y": 126.708 + }, + { + "x": 599.794, + "y": 112.462 + }, + [ + { + "#": 2582 + }, + { + "#": 2583 + }, + { + "#": 2584 + }, + { + "#": 2585 + }, + { + "#": 2586 + }, + { + "#": 2587 + }, + { + "#": 2588 + }, + { + "#": 2589 + } + ], + { + "x": -0.92387, + "y": -0.38271 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38271, + "y": -0.92387 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38271, + "y": -0.92387 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92387, + "y": -0.38271 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 65, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2591 + }, + "angle": 0, + "vertices": { + "#": 2592 + }, + "position": { + "#": 2613 + }, + "force": { + "#": 2614 + }, + "torque": 0, + "positionImpulse": { + "#": 2615 + }, + "constraintImpulse": { + "#": 2616 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2617 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2618 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2619 + }, + "circleRadius": 18.38379, + "bounds": { + "#": 2621 + }, + "positionPrev": { + "#": 2624 + }, + "anglePrev": 0, + "axes": { + "#": 2625 + }, + "area": 1044.33176, + "mass": 1.04433, + "inverseMass": 0.95755, + "inertia": 694.35389, + "inverseInertia": 0.00144, + "parent": { + "#": 2590 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2590 + } + ], + [ + { + "#": 2593 + }, + { + "#": 2594 + }, + { + "#": 2595 + }, + { + "#": 2596 + }, + { + "#": 2597 + }, + { + "#": 2598 + }, + { + "#": 2599 + }, + { + "#": 2600 + }, + { + "#": 2601 + }, + { + "#": 2602 + }, + { + "#": 2603 + }, + { + "#": 2604 + }, + { + "#": 2605 + }, + { + "#": 2606 + }, + { + "#": 2607 + }, + { + "#": 2608 + }, + { + "#": 2609 + }, + { + "#": 2610 + }, + { + "#": 2611 + }, + { + "#": 2612 + } + ], + { + "x": 56.314, + "y": 157.775, + "index": 0, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 54.537, + "y": 163.245, + "index": 1, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 51.156, + "y": 167.898, + "index": 2, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 46.503, + "y": 171.279, + "index": 3, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 41.033, + "y": 173.056, + "index": 4, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 35.281, + "y": 173.056, + "index": 5, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 29.811, + "y": 171.279, + "index": 6, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 25.158, + "y": 167.898, + "index": 7, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 21.777, + "y": 163.245, + "index": 8, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 20, + "y": 157.775, + "index": 9, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 20, + "y": 152.023, + "index": 10, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 21.777, + "y": 146.553, + "index": 11, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 25.158, + "y": 141.9, + "index": 12, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 29.811, + "y": 138.519, + "index": 13, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 35.281, + "y": 136.742, + "index": 14, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 41.033, + "y": 136.742, + "index": 15, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 46.503, + "y": 138.519, + "index": 16, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 51.156, + "y": 141.9, + "index": 17, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 54.537, + "y": 146.553, + "index": 18, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 56.314, + "y": 152.023, + "index": 19, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 38.157, + "y": 154.899 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2620 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2622 + }, + "max": { + "#": 2623 + } + }, + { + "x": 20, + "y": 136.742 + }, + { + "x": 56.314, + "y": 173.056 + }, + { + "x": 38.157, + "y": 154.899 + }, + [ + { + "#": 2626 + }, + { + "#": 2627 + }, + { + "#": 2628 + }, + { + "#": 2629 + }, + { + "#": 2630 + }, + { + "#": 2631 + }, + { + "#": 2632 + }, + { + "#": 2633 + }, + { + "#": 2634 + }, + { + "#": 2635 + } + ], + { + "x": -0.95107, + "y": -0.30897 + }, + { + "x": -0.80898, + "y": -0.58783 + }, + { + "x": -0.58783, + "y": -0.80898 + }, + { + "x": -0.30897, + "y": -0.95107 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30897, + "y": -0.95107 + }, + { + "x": 0.58783, + "y": -0.80898 + }, + { + "x": 0.80898, + "y": -0.58783 + }, + { + "x": 0.95107, + "y": -0.30897 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 66, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2637 + }, + "angle": 0, + "vertices": { + "#": 2638 + }, + "position": { + "#": 2655 + }, + "force": { + "#": 2656 + }, + "torque": 0, + "positionImpulse": { + "#": 2657 + }, + "constraintImpulse": { + "#": 2658 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2659 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2660 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2661 + }, + "circleRadius": 14.08398, + "bounds": { + "#": 2663 + }, + "positionPrev": { + "#": 2666 + }, + "anglePrev": 0, + "axes": { + "#": 2667 + }, + "area": 607.25003, + "mass": 0.60725, + "inverseMass": 1.64677, + "inertia": 234.78679, + "inverseInertia": 0.00426, + "parent": { + "#": 2636 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2636 + } + ], + [ + { + "#": 2639 + }, + { + "#": 2640 + }, + { + "#": 2641 + }, + { + "#": 2642 + }, + { + "#": 2643 + }, + { + "#": 2644 + }, + { + "#": 2645 + }, + { + "#": 2646 + }, + { + "#": 2647 + }, + { + "#": 2648 + }, + { + "#": 2649 + }, + { + "#": 2650 + }, + { + "#": 2651 + }, + { + "#": 2652 + }, + { + "#": 2653 + }, + { + "#": 2654 + } + ], + { + "x": 83.94, + "y": 153.303, + "index": 0, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 81.837, + "y": 158.38, + "index": 1, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 77.952, + "y": 162.265, + "index": 2, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 72.875, + "y": 164.368, + "index": 3, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 67.379, + "y": 164.368, + "index": 4, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 62.302, + "y": 162.265, + "index": 5, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 58.417, + "y": 158.38, + "index": 6, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 56.314, + "y": 153.303, + "index": 7, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 56.314, + "y": 147.807, + "index": 8, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 58.417, + "y": 142.73, + "index": 9, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 62.302, + "y": 138.845, + "index": 10, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 67.379, + "y": 136.742, + "index": 11, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 72.875, + "y": 136.742, + "index": 12, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 77.952, + "y": 138.845, + "index": 13, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 81.837, + "y": 142.73, + "index": 14, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 83.94, + "y": 147.807, + "index": 15, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 70.127, + "y": 150.555 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2662 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2664 + }, + "max": { + "#": 2665 + } + }, + { + "x": 56.314, + "y": 136.742 + }, + { + "x": 83.94, + "y": 164.368 + }, + { + "x": 70.127, + "y": 150.555 + }, + [ + { + "#": 2668 + }, + { + "#": 2669 + }, + { + "#": 2670 + }, + { + "#": 2671 + }, + { + "#": 2672 + }, + { + "#": 2673 + }, + { + "#": 2674 + }, + { + "#": 2675 + } + ], + { + "x": -0.92388, + "y": -0.38269 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38269, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38269, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38269 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 67, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2677 + }, + "angle": 0, + "vertices": { + "#": 2678 + }, + "position": { + "#": 2697 + }, + "force": { + "#": 2698 + }, + "torque": 0, + "positionImpulse": { + "#": 2699 + }, + "constraintImpulse": { + "#": 2700 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2701 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2702 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2703 + }, + "circleRadius": 16.564, + "bounds": { + "#": 2705 + }, + "positionPrev": { + "#": 2708 + }, + "anglePrev": 0, + "axes": { + "#": 2709 + }, + "area": 844.54151, + "mass": 0.84454, + "inverseMass": 1.18407, + "inertia": 454.10729, + "inverseInertia": 0.0022, + "parent": { + "#": 2676 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2676 + } + ], + [ + { + "#": 2679 + }, + { + "#": 2680 + }, + { + "#": 2681 + }, + { + "#": 2682 + }, + { + "#": 2683 + }, + { + "#": 2684 + }, + { + "#": 2685 + }, + { + "#": 2686 + }, + { + "#": 2687 + }, + { + "#": 2688 + }, + { + "#": 2689 + }, + { + "#": 2690 + }, + { + "#": 2691 + }, + { + "#": 2692 + }, + { + "#": 2693 + }, + { + "#": 2694 + }, + { + "#": 2695 + }, + { + "#": 2696 + } + ], + { + "x": 116.564, + "y": 156.182, + "index": 0, + "body": { + "#": 2676 + }, + "isInternal": false + }, + { + "x": 114.597, + "y": 161.588, + "index": 1, + "body": { + "#": 2676 + }, + "isInternal": false + }, + { + "x": 110.899, + "y": 165.995, + "index": 2, + "body": { + "#": 2676 + }, + "isInternal": false + }, + { + "x": 105.917, + "y": 168.871, + "index": 3, + "body": { + "#": 2676 + }, + "isInternal": false + }, + { + "x": 100.252, + "y": 169.87, + "index": 4, + "body": { + "#": 2676 + }, + "isInternal": false + }, + { + "x": 94.587, + "y": 168.871, + "index": 5, + "body": { + "#": 2676 + }, + "isInternal": false + }, + { + "x": 89.605, + "y": 165.995, + "index": 6, + "body": { + "#": 2676 + }, + "isInternal": false + }, + { + "x": 85.907, + "y": 161.588, + "index": 7, + "body": { + "#": 2676 + }, + "isInternal": false + }, + { + "x": 83.94, + "y": 156.182, + "index": 8, + "body": { + "#": 2676 + }, + "isInternal": false + }, + { + "x": 83.94, + "y": 150.43, + "index": 9, + "body": { + "#": 2676 + }, + "isInternal": false + }, + { + "x": 85.907, + "y": 145.024, + "index": 10, + "body": { + "#": 2676 + }, + "isInternal": false + }, + { + "x": 89.605, + "y": 140.617, + "index": 11, + "body": { + "#": 2676 + }, + "isInternal": false + }, + { + "x": 94.587, + "y": 137.741, + "index": 12, + "body": { + "#": 2676 + }, + "isInternal": false + }, + { + "x": 100.252, + "y": 136.742, + "index": 13, + "body": { + "#": 2676 + }, + "isInternal": false + }, + { + "x": 105.917, + "y": 137.741, + "index": 14, + "body": { + "#": 2676 + }, + "isInternal": false + }, + { + "x": 110.899, + "y": 140.617, + "index": 15, + "body": { + "#": 2676 + }, + "isInternal": false + }, + { + "x": 114.597, + "y": 145.024, + "index": 16, + "body": { + "#": 2676 + }, + "isInternal": false + }, + { + "x": 116.564, + "y": 150.43, + "index": 17, + "body": { + "#": 2676 + }, + "isInternal": false + }, + { + "x": 100.252, + "y": 153.306 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2704 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2706 + }, + "max": { + "#": 2707 + } + }, + { + "x": 83.94, + "y": 136.742 + }, + { + "x": 116.564, + "y": 169.87 + }, + { + "x": 100.252, + "y": 153.306 + }, + [ + { + "#": 2710 + }, + { + "#": 2711 + }, + { + "#": 2712 + }, + { + "#": 2713 + }, + { + "#": 2714 + }, + { + "#": 2715 + }, + { + "#": 2716 + }, + { + "#": 2717 + }, + { + "#": 2718 + } + ], + { + "x": -0.93973, + "y": -0.34192 + }, + { + "x": -0.76604, + "y": -0.6428 + }, + { + "x": -0.49995, + "y": -0.86605 + }, + { + "x": -0.17367, + "y": -0.9848 + }, + { + "x": 0.17367, + "y": -0.9848 + }, + { + "x": 0.49995, + "y": -0.86605 + }, + { + "x": 0.76604, + "y": -0.6428 + }, + { + "x": 0.93973, + "y": -0.34192 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 68, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2720 + }, + "angle": 0, + "vertices": { + "#": 2721 + }, + "position": { + "#": 2736 + }, + "force": { + "#": 2737 + }, + "torque": 0, + "positionImpulse": { + "#": 2738 + }, + "constraintImpulse": { + "#": 2739 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2740 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2741 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2742 + }, + "circleRadius": 13.72509, + "bounds": { + "#": 2744 + }, + "positionPrev": { + "#": 2747 + }, + "anglePrev": 0, + "axes": { + "#": 2748 + }, + "area": 572.13861, + "mass": 0.57214, + "inverseMass": 1.74783, + "inertia": 208.44088, + "inverseInertia": 0.0048, + "parent": { + "#": 2719 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2719 + } + ], + [ + { + "#": 2722 + }, + { + "#": 2723 + }, + { + "#": 2724 + }, + { + "#": 2725 + }, + { + "#": 2726 + }, + { + "#": 2727 + }, + { + "#": 2728 + }, + { + "#": 2729 + }, + { + "#": 2730 + }, + { + "#": 2731 + }, + { + "#": 2732 + }, + { + "#": 2733 + }, + { + "#": 2734 + }, + { + "#": 2735 + } + ], + { + "x": 143.326, + "y": 153.521, + "index": 0, + "body": { + "#": 2719 + }, + "isInternal": false + }, + { + "x": 140.676, + "y": 159.024, + "index": 1, + "body": { + "#": 2719 + }, + "isInternal": false + }, + { + "x": 135.9, + "y": 162.833, + "index": 2, + "body": { + "#": 2719 + }, + "isInternal": false + }, + { + "x": 129.945, + "y": 164.192, + "index": 3, + "body": { + "#": 2719 + }, + "isInternal": false + }, + { + "x": 123.99, + "y": 162.833, + "index": 4, + "body": { + "#": 2719 + }, + "isInternal": false + }, + { + "x": 119.214, + "y": 159.024, + "index": 5, + "body": { + "#": 2719 + }, + "isInternal": false + }, + { + "x": 116.564, + "y": 153.521, + "index": 6, + "body": { + "#": 2719 + }, + "isInternal": false + }, + { + "x": 116.564, + "y": 147.413, + "index": 7, + "body": { + "#": 2719 + }, + "isInternal": false + }, + { + "x": 119.214, + "y": 141.91, + "index": 8, + "body": { + "#": 2719 + }, + "isInternal": false + }, + { + "x": 123.99, + "y": 138.101, + "index": 9, + "body": { + "#": 2719 + }, + "isInternal": false + }, + { + "x": 129.945, + "y": 136.742, + "index": 10, + "body": { + "#": 2719 + }, + "isInternal": false + }, + { + "x": 135.9, + "y": 138.101, + "index": 11, + "body": { + "#": 2719 + }, + "isInternal": false + }, + { + "x": 140.676, + "y": 141.91, + "index": 12, + "body": { + "#": 2719 + }, + "isInternal": false + }, + { + "x": 143.326, + "y": 147.413, + "index": 13, + "body": { + "#": 2719 + }, + "isInternal": false + }, + { + "x": 129.945, + "y": 150.467 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2743 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2745 + }, + "max": { + "#": 2746 + } + }, + { + "x": 116.564, + "y": 136.742 + }, + { + "x": 143.326, + "y": 164.192 + }, + { + "x": 129.945, + "y": 150.467 + }, + [ + { + "#": 2749 + }, + { + "#": 2750 + }, + { + "#": 2751 + }, + { + "#": 2752 + }, + { + "#": 2753 + }, + { + "#": 2754 + }, + { + "#": 2755 + } + ], + { + "x": -0.90098, + "y": -0.43387 + }, + { + "x": -0.62352, + "y": -0.78181 + }, + { + "x": -0.22249, + "y": -0.97493 + }, + { + "x": 0.22249, + "y": -0.97493 + }, + { + "x": 0.62352, + "y": -0.78181 + }, + { + "x": 0.90098, + "y": -0.43387 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 69, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2757 + }, + "angle": 0, + "vertices": { + "#": 2758 + }, + "position": { + "#": 2775 + }, + "force": { + "#": 2776 + }, + "torque": 0, + "positionImpulse": { + "#": 2777 + }, + "constraintImpulse": { + "#": 2778 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2779 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2780 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2781 + }, + "circleRadius": 14.20923, + "bounds": { + "#": 2783 + }, + "positionPrev": { + "#": 2786 + }, + "anglePrev": 0, + "axes": { + "#": 2787 + }, + "area": 618.11876, + "mass": 0.61812, + "inverseMass": 1.61781, + "inertia": 243.26656, + "inverseInertia": 0.00411, + "parent": { + "#": 2756 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2756 + } + ], + [ + { + "#": 2759 + }, + { + "#": 2760 + }, + { + "#": 2761 + }, + { + "#": 2762 + }, + { + "#": 2763 + }, + { + "#": 2764 + }, + { + "#": 2765 + }, + { + "#": 2766 + }, + { + "#": 2767 + }, + { + "#": 2768 + }, + { + "#": 2769 + }, + { + "#": 2770 + }, + { + "#": 2771 + }, + { + "#": 2772 + }, + { + "#": 2773 + }, + { + "#": 2774 + } + ], + { + "x": 171.198, + "y": 153.45, + "index": 0, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 169.077, + "y": 158.572, + "index": 1, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 165.156, + "y": 162.493, + "index": 2, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 160.034, + "y": 164.614, + "index": 3, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 154.49, + "y": 164.614, + "index": 4, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 149.368, + "y": 162.493, + "index": 5, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 145.447, + "y": 158.572, + "index": 6, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 143.326, + "y": 153.45, + "index": 7, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 143.326, + "y": 147.906, + "index": 8, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 145.447, + "y": 142.784, + "index": 9, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 149.368, + "y": 138.863, + "index": 10, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 154.49, + "y": 136.742, + "index": 11, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 160.034, + "y": 136.742, + "index": 12, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 165.156, + "y": 138.863, + "index": 13, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 169.077, + "y": 142.784, + "index": 14, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 171.198, + "y": 147.906, + "index": 15, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 157.262, + "y": 150.678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2782 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2784 + }, + "max": { + "#": 2785 + } + }, + { + "x": 143.326, + "y": 136.742 + }, + { + "x": 171.198, + "y": 164.614 + }, + { + "x": 157.262, + "y": 150.678 + }, + [ + { + "#": 2788 + }, + { + "#": 2789 + }, + { + "#": 2790 + }, + { + "#": 2791 + }, + { + "#": 2792 + }, + { + "#": 2793 + }, + { + "#": 2794 + }, + { + "#": 2795 + } + ], + { + "x": -0.92392, + "y": -0.38259 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38259, + "y": -0.92392 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38259, + "y": -0.92392 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92392, + "y": -0.38259 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 70, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2797 + }, + "angle": 0, + "vertices": { + "#": 2798 + }, + "position": { + "#": 2811 + }, + "force": { + "#": 2812 + }, + "torque": 0, + "positionImpulse": { + "#": 2813 + }, + "constraintImpulse": { + "#": 2814 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2815 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2816 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2817 + }, + "circleRadius": 11.84358, + "bounds": { + "#": 2819 + }, + "positionPrev": { + "#": 2822 + }, + "anglePrev": 0, + "axes": { + "#": 2823 + }, + "area": 420.8169, + "mass": 0.42082, + "inverseMass": 2.37633, + "inertia": 112.78566, + "inverseInertia": 0.00887, + "parent": { + "#": 2796 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2796 + } + ], + [ + { + "#": 2799 + }, + { + "#": 2800 + }, + { + "#": 2801 + }, + { + "#": 2802 + }, + { + "#": 2803 + }, + { + "#": 2804 + }, + { + "#": 2805 + }, + { + "#": 2806 + }, + { + "#": 2807 + }, + { + "#": 2808 + }, + { + "#": 2809 + }, + { + "#": 2810 + } + ], + { + "x": 194.078, + "y": 151.247, + "index": 0, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 191.013, + "y": 156.557, + "index": 1, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 185.703, + "y": 159.622, + "index": 2, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 179.573, + "y": 159.622, + "index": 3, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 174.263, + "y": 156.557, + "index": 4, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 171.198, + "y": 151.247, + "index": 5, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 171.198, + "y": 145.117, + "index": 6, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 174.263, + "y": 139.807, + "index": 7, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 179.573, + "y": 136.742, + "index": 8, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 185.703, + "y": 136.742, + "index": 9, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 191.013, + "y": 139.807, + "index": 10, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 194.078, + "y": 145.117, + "index": 11, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 182.638, + "y": 148.182 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2818 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2820 + }, + "max": { + "#": 2821 + } + }, + { + "x": 171.198, + "y": 136.742 + }, + { + "x": 194.078, + "y": 159.622 + }, + { + "x": 182.638, + "y": 148.182 + }, + [ + { + "#": 2824 + }, + { + "#": 2825 + }, + { + "#": 2826 + }, + { + "#": 2827 + }, + { + "#": 2828 + }, + { + "#": 2829 + } + ], + { + "x": -0.86608, + "y": -0.49991 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.86608, + "y": -0.49991 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 71, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2831 + }, + "angle": 0, + "vertices": { + "#": 2832 + }, + "position": { + "#": 2851 + }, + "force": { + "#": 2852 + }, + "torque": 0, + "positionImpulse": { + "#": 2853 + }, + "constraintImpulse": { + "#": 2854 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2855 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2856 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2857 + }, + "circleRadius": 16.75159, + "bounds": { + "#": 2859 + }, + "positionPrev": { + "#": 2862 + }, + "anglePrev": 0, + "axes": { + "#": 2863 + }, + "area": 863.77121, + "mass": 0.86377, + "inverseMass": 1.15771, + "inertia": 475.02222, + "inverseInertia": 0.00211, + "parent": { + "#": 2830 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2830 + } + ], + [ + { + "#": 2833 + }, + { + "#": 2834 + }, + { + "#": 2835 + }, + { + "#": 2836 + }, + { + "#": 2837 + }, + { + "#": 2838 + }, + { + "#": 2839 + }, + { + "#": 2840 + }, + { + "#": 2841 + }, + { + "#": 2842 + }, + { + "#": 2843 + }, + { + "#": 2844 + }, + { + "#": 2845 + }, + { + "#": 2846 + }, + { + "#": 2847 + }, + { + "#": 2848 + }, + { + "#": 2849 + }, + { + "#": 2850 + } + ], + { + "x": 227.072, + "y": 156.403, + "index": 0, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 225.082, + "y": 161.87, + "index": 1, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 221.343, + "y": 166.326, + "index": 2, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 216.304, + "y": 169.235, + "index": 3, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 210.575, + "y": 170.246, + "index": 4, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 204.846, + "y": 169.235, + "index": 5, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 199.807, + "y": 166.326, + "index": 6, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 196.068, + "y": 161.87, + "index": 7, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 194.078, + "y": 156.403, + "index": 8, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 194.078, + "y": 150.585, + "index": 9, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 196.068, + "y": 145.118, + "index": 10, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 199.807, + "y": 140.662, + "index": 11, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 204.846, + "y": 137.753, + "index": 12, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 210.575, + "y": 136.742, + "index": 13, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 216.304, + "y": 137.753, + "index": 14, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 221.343, + "y": 140.662, + "index": 15, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 225.082, + "y": 145.118, + "index": 16, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 227.072, + "y": 150.585, + "index": 17, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 210.575, + "y": 153.494 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2858 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2860 + }, + "max": { + "#": 2861 + } + }, + { + "x": 194.078, + "y": 136.742 + }, + { + "x": 227.072, + "y": 170.246 + }, + { + "x": 210.575, + "y": 153.494 + }, + [ + { + "#": 2864 + }, + { + "#": 2865 + }, + { + "#": 2866 + }, + { + "#": 2867 + }, + { + "#": 2868 + }, + { + "#": 2869 + }, + { + "#": 2870 + }, + { + "#": 2871 + }, + { + "#": 2872 + } + ], + { + "x": -0.93968, + "y": -0.34205 + }, + { + "x": -0.76605, + "y": -0.64278 + }, + { + "x": -0.49997, + "y": -0.86605 + }, + { + "x": -0.17379, + "y": -0.98478 + }, + { + "x": 0.17379, + "y": -0.98478 + }, + { + "x": 0.49997, + "y": -0.86605 + }, + { + "x": 0.76605, + "y": -0.64278 + }, + { + "x": 0.93968, + "y": -0.34205 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 72, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2874 + }, + "angle": 0, + "vertices": { + "#": 2875 + }, + "position": { + "#": 2890 + }, + "force": { + "#": 2891 + }, + "torque": 0, + "positionImpulse": { + "#": 2892 + }, + "constraintImpulse": { + "#": 2893 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2894 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2895 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2896 + }, + "circleRadius": 13.13079, + "bounds": { + "#": 2898 + }, + "positionPrev": { + "#": 2901 + }, + "anglePrev": 0, + "axes": { + "#": 2902 + }, + "area": 523.66583, + "mass": 0.52367, + "inverseMass": 1.90961, + "inertia": 174.61794, + "inverseInertia": 0.00573, + "parent": { + "#": 2873 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2873 + } + ], + [ + { + "#": 2876 + }, + { + "#": 2877 + }, + { + "#": 2878 + }, + { + "#": 2879 + }, + { + "#": 2880 + }, + { + "#": 2881 + }, + { + "#": 2882 + }, + { + "#": 2883 + }, + { + "#": 2884 + }, + { + "#": 2885 + }, + { + "#": 2886 + }, + { + "#": 2887 + }, + { + "#": 2888 + }, + { + "#": 2889 + } + ], + { + "x": 252.676, + "y": 152.795, + "index": 0, + "body": { + "#": 2873 + }, + "isInternal": false + }, + { + "x": 250.14, + "y": 158.06, + "index": 1, + "body": { + "#": 2873 + }, + "isInternal": false + }, + { + "x": 245.571, + "y": 161.703, + "index": 2, + "body": { + "#": 2873 + }, + "isInternal": false + }, + { + "x": 239.874, + "y": 163.004, + "index": 3, + "body": { + "#": 2873 + }, + "isInternal": false + }, + { + "x": 234.177, + "y": 161.703, + "index": 4, + "body": { + "#": 2873 + }, + "isInternal": false + }, + { + "x": 229.608, + "y": 158.06, + "index": 5, + "body": { + "#": 2873 + }, + "isInternal": false + }, + { + "x": 227.072, + "y": 152.795, + "index": 6, + "body": { + "#": 2873 + }, + "isInternal": false + }, + { + "x": 227.072, + "y": 146.951, + "index": 7, + "body": { + "#": 2873 + }, + "isInternal": false + }, + { + "x": 229.608, + "y": 141.686, + "index": 8, + "body": { + "#": 2873 + }, + "isInternal": false + }, + { + "x": 234.177, + "y": 138.043, + "index": 9, + "body": { + "#": 2873 + }, + "isInternal": false + }, + { + "x": 239.874, + "y": 136.742, + "index": 10, + "body": { + "#": 2873 + }, + "isInternal": false + }, + { + "x": 245.571, + "y": 138.043, + "index": 11, + "body": { + "#": 2873 + }, + "isInternal": false + }, + { + "x": 250.14, + "y": 141.686, + "index": 12, + "body": { + "#": 2873 + }, + "isInternal": false + }, + { + "x": 252.676, + "y": 146.951, + "index": 13, + "body": { + "#": 2873 + }, + "isInternal": false + }, + { + "x": 239.874, + "y": 149.873 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2897 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2899 + }, + "max": { + "#": 2900 + } + }, + { + "x": 227.072, + "y": 136.742 + }, + { + "x": 252.676, + "y": 163.004 + }, + { + "x": 239.874, + "y": 149.873 + }, + [ + { + "#": 2903 + }, + { + "#": 2904 + }, + { + "#": 2905 + }, + { + "#": 2906 + }, + { + "#": 2907 + }, + { + "#": 2908 + }, + { + "#": 2909 + } + ], + { + "x": -0.90093, + "y": -0.43395 + }, + { + "x": -0.62342, + "y": -0.78189 + }, + { + "x": -0.22263, + "y": -0.9749 + }, + { + "x": 0.22263, + "y": -0.9749 + }, + { + "x": 0.62342, + "y": -0.78189 + }, + { + "x": 0.90093, + "y": -0.43395 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 73, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2911 + }, + "angle": 0, + "vertices": { + "#": 2912 + }, + "position": { + "#": 2927 + }, + "force": { + "#": 2928 + }, + "torque": 0, + "positionImpulse": { + "#": 2929 + }, + "constraintImpulse": { + "#": 2930 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2931 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2932 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2933 + }, + "circleRadius": 13.69723, + "bounds": { + "#": 2935 + }, + "positionPrev": { + "#": 2938 + }, + "anglePrev": 0, + "axes": { + "#": 2939 + }, + "area": 569.82588, + "mass": 0.56983, + "inverseMass": 1.75492, + "inertia": 206.75915, + "inverseInertia": 0.00484, + "parent": { + "#": 2910 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2910 + } + ], + [ + { + "#": 2913 + }, + { + "#": 2914 + }, + { + "#": 2915 + }, + { + "#": 2916 + }, + { + "#": 2917 + }, + { + "#": 2918 + }, + { + "#": 2919 + }, + { + "#": 2920 + }, + { + "#": 2921 + }, + { + "#": 2922 + }, + { + "#": 2923 + }, + { + "#": 2924 + }, + { + "#": 2925 + }, + { + "#": 2926 + } + ], + { + "x": 279.384, + "y": 153.487, + "index": 0, + "body": { + "#": 2910 + }, + "isInternal": false + }, + { + "x": 276.739, + "y": 158.979, + "index": 1, + "body": { + "#": 2910 + }, + "isInternal": false + }, + { + "x": 271.973, + "y": 162.78, + "index": 2, + "body": { + "#": 2910 + }, + "isInternal": false + }, + { + "x": 266.03, + "y": 164.136, + "index": 3, + "body": { + "#": 2910 + }, + "isInternal": false + }, + { + "x": 260.087, + "y": 162.78, + "index": 4, + "body": { + "#": 2910 + }, + "isInternal": false + }, + { + "x": 255.321, + "y": 158.979, + "index": 5, + "body": { + "#": 2910 + }, + "isInternal": false + }, + { + "x": 252.676, + "y": 153.487, + "index": 6, + "body": { + "#": 2910 + }, + "isInternal": false + }, + { + "x": 252.676, + "y": 147.391, + "index": 7, + "body": { + "#": 2910 + }, + "isInternal": false + }, + { + "x": 255.321, + "y": 141.899, + "index": 8, + "body": { + "#": 2910 + }, + "isInternal": false + }, + { + "x": 260.087, + "y": 138.098, + "index": 9, + "body": { + "#": 2910 + }, + "isInternal": false + }, + { + "x": 266.03, + "y": 136.742, + "index": 10, + "body": { + "#": 2910 + }, + "isInternal": false + }, + { + "x": 271.973, + "y": 138.098, + "index": 11, + "body": { + "#": 2910 + }, + "isInternal": false + }, + { + "x": 276.739, + "y": 141.899, + "index": 12, + "body": { + "#": 2910 + }, + "isInternal": false + }, + { + "x": 279.384, + "y": 147.391, + "index": 13, + "body": { + "#": 2910 + }, + "isInternal": false + }, + { + "x": 266.03, + "y": 150.439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2934 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2936 + }, + "max": { + "#": 2937 + } + }, + { + "x": 252.676, + "y": 136.742 + }, + { + "x": 279.384, + "y": 164.136 + }, + { + "x": 266.03, + "y": 150.439 + }, + [ + { + "#": 2940 + }, + { + "#": 2941 + }, + { + "#": 2942 + }, + { + "#": 2943 + }, + { + "#": 2944 + }, + { + "#": 2945 + }, + { + "#": 2946 + } + ], + { + "x": -0.90096, + "y": -0.43391 + }, + { + "x": -0.62351, + "y": -0.78181 + }, + { + "x": -0.22245, + "y": -0.97494 + }, + { + "x": 0.22245, + "y": -0.97494 + }, + { + "x": 0.62351, + "y": -0.78181 + }, + { + "x": 0.90096, + "y": -0.43391 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 74, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2948 + }, + "angle": 0, + "vertices": { + "#": 2949 + }, + "position": { + "#": 2962 + }, + "force": { + "#": 2963 + }, + "torque": 0, + "positionImpulse": { + "#": 2964 + }, + "constraintImpulse": { + "#": 2965 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2966 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2967 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2968 + }, + "circleRadius": 10.7966, + "bounds": { + "#": 2970 + }, + "positionPrev": { + "#": 2973 + }, + "anglePrev": 0, + "axes": { + "#": 2974 + }, + "area": 349.69686, + "mass": 0.3497, + "inverseMass": 2.85962, + "inertia": 77.88449, + "inverseInertia": 0.01284, + "parent": { + "#": 2947 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2947 + } + ], + [ + { + "#": 2950 + }, + { + "#": 2951 + }, + { + "#": 2952 + }, + { + "#": 2953 + }, + { + "#": 2954 + }, + { + "#": 2955 + }, + { + "#": 2956 + }, + { + "#": 2957 + }, + { + "#": 2958 + }, + { + "#": 2959 + }, + { + "#": 2960 + }, + { + "#": 2961 + } + ], + { + "x": 300.242, + "y": 149.965, + "index": 0, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 297.447, + "y": 154.805, + "index": 1, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 292.607, + "y": 157.6, + "index": 2, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 287.019, + "y": 157.6, + "index": 3, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 282.179, + "y": 154.805, + "index": 4, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 279.384, + "y": 149.965, + "index": 5, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 279.384, + "y": 144.377, + "index": 6, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 282.179, + "y": 139.537, + "index": 7, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 287.019, + "y": 136.742, + "index": 8, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 292.607, + "y": 136.742, + "index": 9, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 297.447, + "y": 139.537, + "index": 10, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 300.242, + "y": 144.377, + "index": 11, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 289.813, + "y": 147.171 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2969 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2971 + }, + "max": { + "#": 2972 + } + }, + { + "x": 279.384, + "y": 136.742 + }, + { + "x": 300.242, + "y": 157.6 + }, + { + "x": 289.813, + "y": 147.171 + }, + [ + { + "#": 2975 + }, + { + "#": 2976 + }, + { + "#": 2977 + }, + { + "#": 2978 + }, + { + "#": 2979 + }, + { + "#": 2980 + } + ], + { + "x": -0.86598, + "y": -0.50008 + }, + { + "x": -0.50008, + "y": -0.86598 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.50008, + "y": -0.86598 + }, + { + "x": 0.86598, + "y": -0.50008 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 75, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2982 + }, + "angle": 0, + "vertices": { + "#": 2983 + }, + "position": { + "#": 3000 + }, + "force": { + "#": 3001 + }, + "torque": 0, + "positionImpulse": { + "#": 3002 + }, + "constraintImpulse": { + "#": 3003 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3004 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3005 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3006 + }, + "circleRadius": 14.18197, + "bounds": { + "#": 3008 + }, + "positionPrev": { + "#": 3011 + }, + "anglePrev": 0, + "axes": { + "#": 3012 + }, + "area": 615.73225, + "mass": 0.61573, + "inverseMass": 1.62408, + "inertia": 241.39172, + "inverseInertia": 0.00414, + "parent": { + "#": 2981 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2981 + } + ], + [ + { + "#": 2984 + }, + { + "#": 2985 + }, + { + "#": 2986 + }, + { + "#": 2987 + }, + { + "#": 2988 + }, + { + "#": 2989 + }, + { + "#": 2990 + }, + { + "#": 2991 + }, + { + "#": 2992 + }, + { + "#": 2993 + }, + { + "#": 2994 + }, + { + "#": 2995 + }, + { + "#": 2996 + }, + { + "#": 2997 + }, + { + "#": 2998 + }, + { + "#": 2999 + } + ], + { + "x": 328.06, + "y": 153.418, + "index": 0, + "body": { + "#": 2981 + }, + "isInternal": false + }, + { + "x": 325.943, + "y": 158.53, + "index": 1, + "body": { + "#": 2981 + }, + "isInternal": false + }, + { + "x": 322.03, + "y": 162.443, + "index": 2, + "body": { + "#": 2981 + }, + "isInternal": false + }, + { + "x": 316.918, + "y": 164.56, + "index": 3, + "body": { + "#": 2981 + }, + "isInternal": false + }, + { + "x": 311.384, + "y": 164.56, + "index": 4, + "body": { + "#": 2981 + }, + "isInternal": false + }, + { + "x": 306.272, + "y": 162.443, + "index": 5, + "body": { + "#": 2981 + }, + "isInternal": false + }, + { + "x": 302.359, + "y": 158.53, + "index": 6, + "body": { + "#": 2981 + }, + "isInternal": false + }, + { + "x": 300.242, + "y": 153.418, + "index": 7, + "body": { + "#": 2981 + }, + "isInternal": false + }, + { + "x": 300.242, + "y": 147.884, + "index": 8, + "body": { + "#": 2981 + }, + "isInternal": false + }, + { + "x": 302.359, + "y": 142.772, + "index": 9, + "body": { + "#": 2981 + }, + "isInternal": false + }, + { + "x": 306.272, + "y": 138.859, + "index": 10, + "body": { + "#": 2981 + }, + "isInternal": false + }, + { + "x": 311.384, + "y": 136.742, + "index": 11, + "body": { + "#": 2981 + }, + "isInternal": false + }, + { + "x": 316.918, + "y": 136.742, + "index": 12, + "body": { + "#": 2981 + }, + "isInternal": false + }, + { + "x": 322.03, + "y": 138.859, + "index": 13, + "body": { + "#": 2981 + }, + "isInternal": false + }, + { + "x": 325.943, + "y": 142.772, + "index": 14, + "body": { + "#": 2981 + }, + "isInternal": false + }, + { + "x": 328.06, + "y": 147.884, + "index": 15, + "body": { + "#": 2981 + }, + "isInternal": false + }, + { + "x": 314.151, + "y": 150.651 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3007 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3009 + }, + "max": { + "#": 3010 + } + }, + { + "x": 300.242, + "y": 136.742 + }, + { + "x": 328.06, + "y": 164.56 + }, + { + "x": 314.151, + "y": 150.651 + }, + [ + { + "#": 3013 + }, + { + "#": 3014 + }, + { + "#": 3015 + }, + { + "#": 3016 + }, + { + "#": 3017 + }, + { + "#": 3018 + }, + { + "#": 3019 + }, + { + "#": 3020 + } + ], + { + "x": -0.92391, + "y": -0.38261 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38261, + "y": -0.92391 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38261, + "y": -0.92391 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92391, + "y": -0.38261 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 76, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3022 + }, + "angle": 0, + "vertices": { + "#": 3023 + }, + "position": { + "#": 3040 + }, + "force": { + "#": 3041 + }, + "torque": 0, + "positionImpulse": { + "#": 3042 + }, + "constraintImpulse": { + "#": 3043 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3044 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3045 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3046 + }, + "circleRadius": 15.45829, + "bounds": { + "#": 3048 + }, + "positionPrev": { + "#": 3051 + }, + "anglePrev": 0, + "axes": { + "#": 3052 + }, + "area": 731.54611, + "mass": 0.73155, + "inverseMass": 1.36697, + "inertia": 340.73911, + "inverseInertia": 0.00293, + "parent": { + "#": 3021 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3021 + } + ], + [ + { + "#": 3024 + }, + { + "#": 3025 + }, + { + "#": 3026 + }, + { + "#": 3027 + }, + { + "#": 3028 + }, + { + "#": 3029 + }, + { + "#": 3030 + }, + { + "#": 3031 + }, + { + "#": 3032 + }, + { + "#": 3033 + }, + { + "#": 3034 + }, + { + "#": 3035 + }, + { + "#": 3036 + }, + { + "#": 3037 + }, + { + "#": 3038 + }, + { + "#": 3039 + } + ], + { + "x": 358.382, + "y": 154.919, + "index": 0, + "body": { + "#": 3021 + }, + "isInternal": false + }, + { + "x": 356.074, + "y": 160.491, + "index": 1, + "body": { + "#": 3021 + }, + "isInternal": false + }, + { + "x": 351.809, + "y": 164.756, + "index": 2, + "body": { + "#": 3021 + }, + "isInternal": false + }, + { + "x": 346.237, + "y": 167.064, + "index": 3, + "body": { + "#": 3021 + }, + "isInternal": false + }, + { + "x": 340.205, + "y": 167.064, + "index": 4, + "body": { + "#": 3021 + }, + "isInternal": false + }, + { + "x": 334.633, + "y": 164.756, + "index": 5, + "body": { + "#": 3021 + }, + "isInternal": false + }, + { + "x": 330.368, + "y": 160.491, + "index": 6, + "body": { + "#": 3021 + }, + "isInternal": false + }, + { + "x": 328.06, + "y": 154.919, + "index": 7, + "body": { + "#": 3021 + }, + "isInternal": false + }, + { + "x": 328.06, + "y": 148.887, + "index": 8, + "body": { + "#": 3021 + }, + "isInternal": false + }, + { + "x": 330.368, + "y": 143.315, + "index": 9, + "body": { + "#": 3021 + }, + "isInternal": false + }, + { + "x": 334.633, + "y": 139.05, + "index": 10, + "body": { + "#": 3021 + }, + "isInternal": false + }, + { + "x": 340.205, + "y": 136.742, + "index": 11, + "body": { + "#": 3021 + }, + "isInternal": false + }, + { + "x": 346.237, + "y": 136.742, + "index": 12, + "body": { + "#": 3021 + }, + "isInternal": false + }, + { + "x": 351.809, + "y": 139.05, + "index": 13, + "body": { + "#": 3021 + }, + "isInternal": false + }, + { + "x": 356.074, + "y": 143.315, + "index": 14, + "body": { + "#": 3021 + }, + "isInternal": false + }, + { + "x": 358.382, + "y": 148.887, + "index": 15, + "body": { + "#": 3021 + }, + "isInternal": false + }, + { + "x": 343.221, + "y": 151.903 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3047 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3049 + }, + "max": { + "#": 3050 + } + }, + { + "x": 328.06, + "y": 136.742 + }, + { + "x": 358.382, + "y": 167.064 + }, + { + "x": 343.221, + "y": 151.903 + }, + [ + { + "#": 3053 + }, + { + "#": 3054 + }, + { + "#": 3055 + }, + { + "#": 3056 + }, + { + "#": 3057 + }, + { + "#": 3058 + }, + { + "#": 3059 + }, + { + "#": 3060 + } + ], + { + "x": -0.92388, + "y": -0.38268 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38268, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38268, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38268 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 77, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3062 + }, + "angle": 0, + "vertices": { + "#": 3063 + }, + "position": { + "#": 3084 + }, + "force": { + "#": 3085 + }, + "torque": 0, + "positionImpulse": { + "#": 3086 + }, + "constraintImpulse": { + "#": 3087 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3088 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3089 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3090 + }, + "circleRadius": 19.19346, + "bounds": { + "#": 3092 + }, + "positionPrev": { + "#": 3095 + }, + "anglePrev": 0, + "axes": { + "#": 3096 + }, + "area": 1138.37292, + "mass": 1.13837, + "inverseMass": 0.87845, + "inertia": 825.03622, + "inverseInertia": 0.00121, + "parent": { + "#": 3061 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3061 + } + ], + [ + { + "#": 3064 + }, + { + "#": 3065 + }, + { + "#": 3066 + }, + { + "#": 3067 + }, + { + "#": 3068 + }, + { + "#": 3069 + }, + { + "#": 3070 + }, + { + "#": 3071 + }, + { + "#": 3072 + }, + { + "#": 3073 + }, + { + "#": 3074 + }, + { + "#": 3075 + }, + { + "#": 3076 + }, + { + "#": 3077 + }, + { + "#": 3078 + }, + { + "#": 3079 + }, + { + "#": 3080 + }, + { + "#": 3081 + }, + { + "#": 3082 + }, + { + "#": 3083 + } + ], + { + "x": 396.296, + "y": 158.702, + "index": 0, + "body": { + "#": 3061 + }, + "isInternal": false + }, + { + "x": 394.44, + "y": 164.413, + "index": 1, + "body": { + "#": 3061 + }, + "isInternal": false + }, + { + "x": 390.911, + "y": 169.271, + "index": 2, + "body": { + "#": 3061 + }, + "isInternal": false + }, + { + "x": 386.053, + "y": 172.8, + "index": 3, + "body": { + "#": 3061 + }, + "isInternal": false + }, + { + "x": 380.342, + "y": 174.656, + "index": 4, + "body": { + "#": 3061 + }, + "isInternal": false + }, + { + "x": 374.336, + "y": 174.656, + "index": 5, + "body": { + "#": 3061 + }, + "isInternal": false + }, + { + "x": 368.625, + "y": 172.8, + "index": 6, + "body": { + "#": 3061 + }, + "isInternal": false + }, + { + "x": 363.767, + "y": 169.271, + "index": 7, + "body": { + "#": 3061 + }, + "isInternal": false + }, + { + "x": 360.238, + "y": 164.413, + "index": 8, + "body": { + "#": 3061 + }, + "isInternal": false + }, + { + "x": 358.382, + "y": 158.702, + "index": 9, + "body": { + "#": 3061 + }, + "isInternal": false + }, + { + "x": 358.382, + "y": 152.696, + "index": 10, + "body": { + "#": 3061 + }, + "isInternal": false + }, + { + "x": 360.238, + "y": 146.985, + "index": 11, + "body": { + "#": 3061 + }, + "isInternal": false + }, + { + "x": 363.767, + "y": 142.127, + "index": 12, + "body": { + "#": 3061 + }, + "isInternal": false + }, + { + "x": 368.625, + "y": 138.598, + "index": 13, + "body": { + "#": 3061 + }, + "isInternal": false + }, + { + "x": 374.336, + "y": 136.742, + "index": 14, + "body": { + "#": 3061 + }, + "isInternal": false + }, + { + "x": 380.342, + "y": 136.742, + "index": 15, + "body": { + "#": 3061 + }, + "isInternal": false + }, + { + "x": 386.053, + "y": 138.598, + "index": 16, + "body": { + "#": 3061 + }, + "isInternal": false + }, + { + "x": 390.911, + "y": 142.127, + "index": 17, + "body": { + "#": 3061 + }, + "isInternal": false + }, + { + "x": 394.44, + "y": 146.985, + "index": 18, + "body": { + "#": 3061 + }, + "isInternal": false + }, + { + "x": 396.296, + "y": 152.696, + "index": 19, + "body": { + "#": 3061 + }, + "isInternal": false + }, + { + "x": 377.339, + "y": 155.699 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3091 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3093 + }, + "max": { + "#": 3094 + } + }, + { + "x": 358.382, + "y": 136.742 + }, + { + "x": 396.296, + "y": 174.656 + }, + { + "x": 377.339, + "y": 155.699 + }, + [ + { + "#": 3097 + }, + { + "#": 3098 + }, + { + "#": 3099 + }, + { + "#": 3100 + }, + { + "#": 3101 + }, + { + "#": 3102 + }, + { + "#": 3103 + }, + { + "#": 3104 + }, + { + "#": 3105 + }, + { + "#": 3106 + } + ], + { + "x": -0.95104, + "y": -0.30907 + }, + { + "x": -0.80906, + "y": -0.58773 + }, + { + "x": -0.58773, + "y": -0.80906 + }, + { + "x": -0.30907, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30907, + "y": -0.95104 + }, + { + "x": 0.58773, + "y": -0.80906 + }, + { + "x": 0.80906, + "y": -0.58773 + }, + { + "x": 0.95104, + "y": -0.30907 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 78, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3108 + }, + "angle": 0, + "vertices": { + "#": 3109 + }, + "position": { + "#": 3122 + }, + "force": { + "#": 3123 + }, + "torque": 0, + "positionImpulse": { + "#": 3124 + }, + "constraintImpulse": { + "#": 3125 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3126 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3127 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3128 + }, + "circleRadius": 10.69612, + "bounds": { + "#": 3130 + }, + "positionPrev": { + "#": 3133 + }, + "anglePrev": 0, + "axes": { + "#": 3134 + }, + "area": 343.22203, + "mass": 0.34322, + "inverseMass": 2.91357, + "inertia": 75.02704, + "inverseInertia": 0.01333, + "parent": { + "#": 3107 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3107 + } + ], + [ + { + "#": 3110 + }, + { + "#": 3111 + }, + { + "#": 3112 + }, + { + "#": 3113 + }, + { + "#": 3114 + }, + { + "#": 3115 + }, + { + "#": 3116 + }, + { + "#": 3117 + }, + { + "#": 3118 + }, + { + "#": 3119 + }, + { + "#": 3120 + }, + { + "#": 3121 + } + ], + { + "x": 416.96, + "y": 149.842, + "index": 0, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 414.191, + "y": 154.637, + "index": 1, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 409.396, + "y": 157.406, + "index": 2, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 403.86, + "y": 157.406, + "index": 3, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 399.065, + "y": 154.637, + "index": 4, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 396.296, + "y": 149.842, + "index": 5, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 396.296, + "y": 144.306, + "index": 6, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 399.065, + "y": 139.511, + "index": 7, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 403.86, + "y": 136.742, + "index": 8, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 409.396, + "y": 136.742, + "index": 9, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 414.191, + "y": 139.511, + "index": 10, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 416.96, + "y": 144.306, + "index": 11, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 406.628, + "y": 147.074 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3129 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3131 + }, + "max": { + "#": 3132 + } + }, + { + "x": 396.296, + "y": 136.742 + }, + { + "x": 416.96, + "y": 157.406 + }, + { + "x": 406.628, + "y": 147.074 + }, + [ + { + "#": 3135 + }, + { + "#": 3136 + }, + { + "#": 3137 + }, + { + "#": 3138 + }, + { + "#": 3139 + }, + { + "#": 3140 + } + ], + { + "x": -0.86598, + "y": -0.50008 + }, + { + "x": -0.50008, + "y": -0.86598 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.50008, + "y": -0.86598 + }, + { + "x": 0.86598, + "y": -0.50008 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 79, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3142 + }, + "angle": 0, + "vertices": { + "#": 3143 + }, + "position": { + "#": 3156 + }, + "force": { + "#": 3157 + }, + "torque": 0, + "positionImpulse": { + "#": 3158 + }, + "constraintImpulse": { + "#": 3159 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3160 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3161 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3162 + }, + "circleRadius": 10.46009, + "bounds": { + "#": 3164 + }, + "positionPrev": { + "#": 3167 + }, + "anglePrev": 0, + "axes": { + "#": 3168 + }, + "area": 328.23896, + "mass": 0.32824, + "inverseMass": 3.04656, + "inertia": 68.61954, + "inverseInertia": 0.01457, + "parent": { + "#": 3141 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3141 + } + ], + [ + { + "#": 3144 + }, + { + "#": 3145 + }, + { + "#": 3146 + }, + { + "#": 3147 + }, + { + "#": 3148 + }, + { + "#": 3149 + }, + { + "#": 3150 + }, + { + "#": 3151 + }, + { + "#": 3152 + }, + { + "#": 3153 + }, + { + "#": 3154 + }, + { + "#": 3155 + } + ], + { + "x": 437.168, + "y": 149.553, + "index": 0, + "body": { + "#": 3141 + }, + "isInternal": false + }, + { + "x": 434.46, + "y": 154.242, + "index": 1, + "body": { + "#": 3141 + }, + "isInternal": false + }, + { + "x": 429.771, + "y": 156.95, + "index": 2, + "body": { + "#": 3141 + }, + "isInternal": false + }, + { + "x": 424.357, + "y": 156.95, + "index": 3, + "body": { + "#": 3141 + }, + "isInternal": false + }, + { + "x": 419.668, + "y": 154.242, + "index": 4, + "body": { + "#": 3141 + }, + "isInternal": false + }, + { + "x": 416.96, + "y": 149.553, + "index": 5, + "body": { + "#": 3141 + }, + "isInternal": false + }, + { + "x": 416.96, + "y": 144.139, + "index": 6, + "body": { + "#": 3141 + }, + "isInternal": false + }, + { + "x": 419.668, + "y": 139.45, + "index": 7, + "body": { + "#": 3141 + }, + "isInternal": false + }, + { + "x": 424.357, + "y": 136.742, + "index": 8, + "body": { + "#": 3141 + }, + "isInternal": false + }, + { + "x": 429.771, + "y": 136.742, + "index": 9, + "body": { + "#": 3141 + }, + "isInternal": false + }, + { + "x": 434.46, + "y": 139.45, + "index": 10, + "body": { + "#": 3141 + }, + "isInternal": false + }, + { + "x": 437.168, + "y": 144.139, + "index": 11, + "body": { + "#": 3141 + }, + "isInternal": false + }, + { + "x": 427.064, + "y": 146.846 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3163 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3165 + }, + "max": { + "#": 3166 + } + }, + { + "x": 416.96, + "y": 136.742 + }, + { + "x": 437.168, + "y": 156.95 + }, + { + "x": 427.064, + "y": 146.846 + }, + [ + { + "#": 3169 + }, + { + "#": 3170 + }, + { + "#": 3171 + }, + { + "#": 3172 + }, + { + "#": 3173 + }, + { + "#": 3174 + } + ], + { + "x": -0.86596, + "y": -0.50011 + }, + { + "x": -0.50011, + "y": -0.86596 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.50011, + "y": -0.86596 + }, + { + "x": 0.86596, + "y": -0.50011 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 80, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3176 + }, + "angle": 0, + "vertices": { + "#": 3177 + }, + "position": { + "#": 3194 + }, + "force": { + "#": 3195 + }, + "torque": 0, + "positionImpulse": { + "#": 3196 + }, + "constraintImpulse": { + "#": 3197 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3198 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3199 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3200 + }, + "circleRadius": 15.27551, + "bounds": { + "#": 3202 + }, + "positionPrev": { + "#": 3205 + }, + "anglePrev": 0, + "axes": { + "#": 3206 + }, + "area": 714.37092, + "mass": 0.71437, + "inverseMass": 1.39983, + "inertia": 324.92723, + "inverseInertia": 0.00308, + "parent": { + "#": 3175 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3175 + } + ], + [ + { + "#": 3178 + }, + { + "#": 3179 + }, + { + "#": 3180 + }, + { + "#": 3181 + }, + { + "#": 3182 + }, + { + "#": 3183 + }, + { + "#": 3184 + }, + { + "#": 3185 + }, + { + "#": 3186 + }, + { + "#": 3187 + }, + { + "#": 3188 + }, + { + "#": 3189 + }, + { + "#": 3190 + }, + { + "#": 3191 + }, + { + "#": 3192 + }, + { + "#": 3193 + } + ], + { + "x": 467.132, + "y": 154.704, + "index": 0, + "body": { + "#": 3175 + }, + "isInternal": false + }, + { + "x": 464.851, + "y": 160.211, + "index": 1, + "body": { + "#": 3175 + }, + "isInternal": false + }, + { + "x": 460.637, + "y": 164.425, + "index": 2, + "body": { + "#": 3175 + }, + "isInternal": false + }, + { + "x": 455.13, + "y": 166.706, + "index": 3, + "body": { + "#": 3175 + }, + "isInternal": false + }, + { + "x": 449.17, + "y": 166.706, + "index": 4, + "body": { + "#": 3175 + }, + "isInternal": false + }, + { + "x": 443.663, + "y": 164.425, + "index": 5, + "body": { + "#": 3175 + }, + "isInternal": false + }, + { + "x": 439.449, + "y": 160.211, + "index": 6, + "body": { + "#": 3175 + }, + "isInternal": false + }, + { + "x": 437.168, + "y": 154.704, + "index": 7, + "body": { + "#": 3175 + }, + "isInternal": false + }, + { + "x": 437.168, + "y": 148.744, + "index": 8, + "body": { + "#": 3175 + }, + "isInternal": false + }, + { + "x": 439.449, + "y": 143.237, + "index": 9, + "body": { + "#": 3175 + }, + "isInternal": false + }, + { + "x": 443.663, + "y": 139.023, + "index": 10, + "body": { + "#": 3175 + }, + "isInternal": false + }, + { + "x": 449.17, + "y": 136.742, + "index": 11, + "body": { + "#": 3175 + }, + "isInternal": false + }, + { + "x": 455.13, + "y": 136.742, + "index": 12, + "body": { + "#": 3175 + }, + "isInternal": false + }, + { + "x": 460.637, + "y": 139.023, + "index": 13, + "body": { + "#": 3175 + }, + "isInternal": false + }, + { + "x": 464.851, + "y": 143.237, + "index": 14, + "body": { + "#": 3175 + }, + "isInternal": false + }, + { + "x": 467.132, + "y": 148.744, + "index": 15, + "body": { + "#": 3175 + }, + "isInternal": false + }, + { + "x": 452.15, + "y": 151.724 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3201 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3203 + }, + "max": { + "#": 3204 + } + }, + { + "x": 437.168, + "y": 136.742 + }, + { + "x": 467.132, + "y": 166.706 + }, + { + "x": 452.15, + "y": 151.724 + }, + [ + { + "#": 3207 + }, + { + "#": 3208 + }, + { + "#": 3209 + }, + { + "#": 3210 + }, + { + "#": 3211 + }, + { + "#": 3212 + }, + { + "#": 3213 + }, + { + "#": 3214 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 81, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3216 + }, + "angle": 0, + "vertices": { + "#": 3217 + }, + "position": { + "#": 3236 + }, + "force": { + "#": 3237 + }, + "torque": 0, + "positionImpulse": { + "#": 3238 + }, + "constraintImpulse": { + "#": 3239 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3240 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3241 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3242 + }, + "circleRadius": 16.00656, + "bounds": { + "#": 3244 + }, + "positionPrev": { + "#": 3247 + }, + "anglePrev": 0, + "axes": { + "#": 3248 + }, + "area": 788.65954, + "mass": 0.78866, + "inverseMass": 1.26797, + "inertia": 396.00037, + "inverseInertia": 0.00253, + "parent": { + "#": 3215 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3215 + } + ], + [ + { + "#": 3218 + }, + { + "#": 3219 + }, + { + "#": 3220 + }, + { + "#": 3221 + }, + { + "#": 3222 + }, + { + "#": 3223 + }, + { + "#": 3224 + }, + { + "#": 3225 + }, + { + "#": 3226 + }, + { + "#": 3227 + }, + { + "#": 3228 + }, + { + "#": 3229 + }, + { + "#": 3230 + }, + { + "#": 3231 + }, + { + "#": 3232 + }, + { + "#": 3233 + }, + { + "#": 3234 + }, + { + "#": 3235 + } + ], + { + "x": 498.658, + "y": 155.529, + "index": 0, + "body": { + "#": 3215 + }, + "isInternal": false + }, + { + "x": 496.757, + "y": 160.752, + "index": 1, + "body": { + "#": 3215 + }, + "isInternal": false + }, + { + "x": 493.184, + "y": 165.011, + "index": 2, + "body": { + "#": 3215 + }, + "isInternal": false + }, + { + "x": 488.37, + "y": 167.79, + "index": 3, + "body": { + "#": 3215 + }, + "isInternal": false + }, + { + "x": 482.895, + "y": 168.756, + "index": 4, + "body": { + "#": 3215 + }, + "isInternal": false + }, + { + "x": 477.42, + "y": 167.79, + "index": 5, + "body": { + "#": 3215 + }, + "isInternal": false + }, + { + "x": 472.606, + "y": 165.011, + "index": 6, + "body": { + "#": 3215 + }, + "isInternal": false + }, + { + "x": 469.033, + "y": 160.752, + "index": 7, + "body": { + "#": 3215 + }, + "isInternal": false + }, + { + "x": 467.132, + "y": 155.529, + "index": 8, + "body": { + "#": 3215 + }, + "isInternal": false + }, + { + "x": 467.132, + "y": 149.969, + "index": 9, + "body": { + "#": 3215 + }, + "isInternal": false + }, + { + "x": 469.033, + "y": 144.746, + "index": 10, + "body": { + "#": 3215 + }, + "isInternal": false + }, + { + "x": 472.606, + "y": 140.487, + "index": 11, + "body": { + "#": 3215 + }, + "isInternal": false + }, + { + "x": 477.42, + "y": 137.708, + "index": 12, + "body": { + "#": 3215 + }, + "isInternal": false + }, + { + "x": 482.895, + "y": 136.742, + "index": 13, + "body": { + "#": 3215 + }, + "isInternal": false + }, + { + "x": 488.37, + "y": 137.708, + "index": 14, + "body": { + "#": 3215 + }, + "isInternal": false + }, + { + "x": 493.184, + "y": 140.487, + "index": 15, + "body": { + "#": 3215 + }, + "isInternal": false + }, + { + "x": 496.757, + "y": 144.746, + "index": 16, + "body": { + "#": 3215 + }, + "isInternal": false + }, + { + "x": 498.658, + "y": 149.969, + "index": 17, + "body": { + "#": 3215 + }, + "isInternal": false + }, + { + "x": 482.895, + "y": 152.749 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3243 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3245 + }, + "max": { + "#": 3246 + } + }, + { + "x": 467.132, + "y": 136.742 + }, + { + "x": 498.658, + "y": 168.756 + }, + { + "x": 482.895, + "y": 152.749 + }, + [ + { + "#": 3249 + }, + { + "#": 3250 + }, + { + "#": 3251 + }, + { + "#": 3252 + }, + { + "#": 3253 + }, + { + "#": 3254 + }, + { + "#": 3255 + }, + { + "#": 3256 + }, + { + "#": 3257 + } + ], + { + "x": -0.93969, + "y": -0.34202 + }, + { + "x": -0.76611, + "y": -0.64271 + }, + { + "x": -0.49995, + "y": -0.86605 + }, + { + "x": -0.17375, + "y": -0.98479 + }, + { + "x": 0.17375, + "y": -0.98479 + }, + { + "x": 0.49995, + "y": -0.86605 + }, + { + "x": 0.76611, + "y": -0.64271 + }, + { + "x": 0.93969, + "y": -0.34202 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 82, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3259 + }, + "angle": 0, + "vertices": { + "#": 3260 + }, + "position": { + "#": 3275 + }, + "force": { + "#": 3276 + }, + "torque": 0, + "positionImpulse": { + "#": 3277 + }, + "constraintImpulse": { + "#": 3278 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3279 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3280 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3281 + }, + "circleRadius": 12.03597, + "bounds": { + "#": 3283 + }, + "positionPrev": { + "#": 3286 + }, + "anglePrev": 0, + "axes": { + "#": 3287 + }, + "area": 439.9675, + "mass": 0.43997, + "inverseMass": 2.2729, + "inertia": 123.25984, + "inverseInertia": 0.00811, + "parent": { + "#": 3258 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3258 + } + ], + [ + { + "#": 3261 + }, + { + "#": 3262 + }, + { + "#": 3263 + }, + { + "#": 3264 + }, + { + "#": 3265 + }, + { + "#": 3266 + }, + { + "#": 3267 + }, + { + "#": 3268 + }, + { + "#": 3269 + }, + { + "#": 3270 + }, + { + "#": 3271 + }, + { + "#": 3272 + }, + { + "#": 3273 + }, + { + "#": 3274 + } + ], + { + "x": 522.126, + "y": 151.456, + "index": 0, + "body": { + "#": 3258 + }, + "isInternal": false + }, + { + "x": 519.802, + "y": 156.282, + "index": 1, + "body": { + "#": 3258 + }, + "isInternal": false + }, + { + "x": 515.614, + "y": 159.622, + "index": 2, + "body": { + "#": 3258 + }, + "isInternal": false + }, + { + "x": 510.392, + "y": 160.814, + "index": 3, + "body": { + "#": 3258 + }, + "isInternal": false + }, + { + "x": 505.17, + "y": 159.622, + "index": 4, + "body": { + "#": 3258 + }, + "isInternal": false + }, + { + "x": 500.982, + "y": 156.282, + "index": 5, + "body": { + "#": 3258 + }, + "isInternal": false + }, + { + "x": 498.658, + "y": 151.456, + "index": 6, + "body": { + "#": 3258 + }, + "isInternal": false + }, + { + "x": 498.658, + "y": 146.1, + "index": 7, + "body": { + "#": 3258 + }, + "isInternal": false + }, + { + "x": 500.982, + "y": 141.274, + "index": 8, + "body": { + "#": 3258 + }, + "isInternal": false + }, + { + "x": 505.17, + "y": 137.934, + "index": 9, + "body": { + "#": 3258 + }, + "isInternal": false + }, + { + "x": 510.392, + "y": 136.742, + "index": 10, + "body": { + "#": 3258 + }, + "isInternal": false + }, + { + "x": 515.614, + "y": 137.934, + "index": 11, + "body": { + "#": 3258 + }, + "isInternal": false + }, + { + "x": 519.802, + "y": 141.274, + "index": 12, + "body": { + "#": 3258 + }, + "isInternal": false + }, + { + "x": 522.126, + "y": 146.1, + "index": 13, + "body": { + "#": 3258 + }, + "isInternal": false + }, + { + "x": 510.392, + "y": 148.778 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3282 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3284 + }, + "max": { + "#": 3285 + } + }, + { + "x": 498.658, + "y": 136.742 + }, + { + "x": 522.126, + "y": 160.814 + }, + { + "x": 510.392, + "y": 148.778 + }, + [ + { + "#": 3288 + }, + { + "#": 3289 + }, + { + "#": 3290 + }, + { + "#": 3291 + }, + { + "#": 3292 + }, + { + "#": 3293 + }, + { + "#": 3294 + } + ], + { + "x": -0.90097, + "y": -0.43387 + }, + { + "x": -0.62351, + "y": -0.78181 + }, + { + "x": -0.22254, + "y": -0.97492 + }, + { + "x": 0.22254, + "y": -0.97492 + }, + { + "x": 0.62351, + "y": -0.78181 + }, + { + "x": 0.90097, + "y": -0.43387 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 83, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3296 + }, + "angle": 0, + "vertices": { + "#": 3297 + }, + "position": { + "#": 3312 + }, + "force": { + "#": 3313 + }, + "torque": 0, + "positionImpulse": { + "#": 3314 + }, + "constraintImpulse": { + "#": 3315 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3316 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3317 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3318 + }, + "circleRadius": 12.37607, + "bounds": { + "#": 3320 + }, + "positionPrev": { + "#": 3323 + }, + "anglePrev": 0, + "axes": { + "#": 3324 + }, + "area": 465.18983, + "mass": 0.46519, + "inverseMass": 2.14966, + "inertia": 137.79734, + "inverseInertia": 0.00726, + "parent": { + "#": 3295 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3295 + } + ], + [ + { + "#": 3298 + }, + { + "#": 3299 + }, + { + "#": 3300 + }, + { + "#": 3301 + }, + { + "#": 3302 + }, + { + "#": 3303 + }, + { + "#": 3304 + }, + { + "#": 3305 + }, + { + "#": 3306 + }, + { + "#": 3307 + }, + { + "#": 3308 + }, + { + "#": 3309 + }, + { + "#": 3310 + }, + { + "#": 3311 + } + ], + { + "x": 546.258, + "y": 151.872, + "index": 0, + "body": { + "#": 3295 + }, + "isInternal": false + }, + { + "x": 543.868, + "y": 156.834, + "index": 1, + "body": { + "#": 3295 + }, + "isInternal": false + }, + { + "x": 539.562, + "y": 160.268, + "index": 2, + "body": { + "#": 3295 + }, + "isInternal": false + }, + { + "x": 534.192, + "y": 161.494, + "index": 3, + "body": { + "#": 3295 + }, + "isInternal": false + }, + { + "x": 528.822, + "y": 160.268, + "index": 4, + "body": { + "#": 3295 + }, + "isInternal": false + }, + { + "x": 524.516, + "y": 156.834, + "index": 5, + "body": { + "#": 3295 + }, + "isInternal": false + }, + { + "x": 522.126, + "y": 151.872, + "index": 6, + "body": { + "#": 3295 + }, + "isInternal": false + }, + { + "x": 522.126, + "y": 146.364, + "index": 7, + "body": { + "#": 3295 + }, + "isInternal": false + }, + { + "x": 524.516, + "y": 141.402, + "index": 8, + "body": { + "#": 3295 + }, + "isInternal": false + }, + { + "x": 528.822, + "y": 137.968, + "index": 9, + "body": { + "#": 3295 + }, + "isInternal": false + }, + { + "x": 534.192, + "y": 136.742, + "index": 10, + "body": { + "#": 3295 + }, + "isInternal": false + }, + { + "x": 539.562, + "y": 137.968, + "index": 11, + "body": { + "#": 3295 + }, + "isInternal": false + }, + { + "x": 543.868, + "y": 141.402, + "index": 12, + "body": { + "#": 3295 + }, + "isInternal": false + }, + { + "x": 546.258, + "y": 146.364, + "index": 13, + "body": { + "#": 3295 + }, + "isInternal": false + }, + { + "x": 534.192, + "y": 149.118 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3319 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3321 + }, + "max": { + "#": 3322 + } + }, + { + "x": 522.126, + "y": 136.742 + }, + { + "x": 546.258, + "y": 161.494 + }, + { + "x": 534.192, + "y": 149.118 + }, + [ + { + "#": 3325 + }, + { + "#": 3326 + }, + { + "#": 3327 + }, + { + "#": 3328 + }, + { + "#": 3329 + }, + { + "#": 3330 + }, + { + "#": 3331 + } + ], + { + "x": -0.90094, + "y": -0.43395 + }, + { + "x": -0.6235, + "y": -0.78182 + }, + { + "x": -0.22258, + "y": -0.97491 + }, + { + "x": 0.22258, + "y": -0.97491 + }, + { + "x": 0.6235, + "y": -0.78182 + }, + { + "x": 0.90094, + "y": -0.43395 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 84, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3333 + }, + "angle": 0, + "vertices": { + "#": 3334 + }, + "position": { + "#": 3349 + }, + "force": { + "#": 3350 + }, + "torque": 0, + "positionImpulse": { + "#": 3351 + }, + "constraintImpulse": { + "#": 3352 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3353 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3354 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3355 + }, + "circleRadius": 13.44663, + "bounds": { + "#": 3357 + }, + "positionPrev": { + "#": 3360 + }, + "anglePrev": 0, + "axes": { + "#": 3361 + }, + "area": 549.15125, + "mass": 0.54915, + "inverseMass": 1.82099, + "inertia": 192.02791, + "inverseInertia": 0.00521, + "parent": { + "#": 3332 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3332 + } + ], + [ + { + "#": 3335 + }, + { + "#": 3336 + }, + { + "#": 3337 + }, + { + "#": 3338 + }, + { + "#": 3339 + }, + { + "#": 3340 + }, + { + "#": 3341 + }, + { + "#": 3342 + }, + { + "#": 3343 + }, + { + "#": 3344 + }, + { + "#": 3345 + }, + { + "#": 3346 + }, + { + "#": 3347 + }, + { + "#": 3348 + } + ], + { + "x": 572.476, + "y": 153.181, + "index": 0, + "body": { + "#": 3332 + }, + "isInternal": false + }, + { + "x": 569.88, + "y": 158.573, + "index": 1, + "body": { + "#": 3332 + }, + "isInternal": false + }, + { + "x": 565.201, + "y": 162.304, + "index": 2, + "body": { + "#": 3332 + }, + "isInternal": false + }, + { + "x": 559.367, + "y": 163.636, + "index": 3, + "body": { + "#": 3332 + }, + "isInternal": false + }, + { + "x": 553.533, + "y": 162.304, + "index": 4, + "body": { + "#": 3332 + }, + "isInternal": false + }, + { + "x": 548.854, + "y": 158.573, + "index": 5, + "body": { + "#": 3332 + }, + "isInternal": false + }, + { + "x": 546.258, + "y": 153.181, + "index": 6, + "body": { + "#": 3332 + }, + "isInternal": false + }, + { + "x": 546.258, + "y": 147.197, + "index": 7, + "body": { + "#": 3332 + }, + "isInternal": false + }, + { + "x": 548.854, + "y": 141.805, + "index": 8, + "body": { + "#": 3332 + }, + "isInternal": false + }, + { + "x": 553.533, + "y": 138.074, + "index": 9, + "body": { + "#": 3332 + }, + "isInternal": false + }, + { + "x": 559.367, + "y": 136.742, + "index": 10, + "body": { + "#": 3332 + }, + "isInternal": false + }, + { + "x": 565.201, + "y": 138.074, + "index": 11, + "body": { + "#": 3332 + }, + "isInternal": false + }, + { + "x": 569.88, + "y": 141.805, + "index": 12, + "body": { + "#": 3332 + }, + "isInternal": false + }, + { + "x": 572.476, + "y": 147.197, + "index": 13, + "body": { + "#": 3332 + }, + "isInternal": false + }, + { + "x": 559.367, + "y": 150.189 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3356 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3358 + }, + "max": { + "#": 3359 + } + }, + { + "x": 546.258, + "y": 136.742 + }, + { + "x": 572.476, + "y": 163.636 + }, + { + "x": 559.367, + "y": 150.189 + }, + [ + { + "#": 3362 + }, + { + "#": 3363 + }, + { + "#": 3364 + }, + { + "#": 3365 + }, + { + "#": 3366 + }, + { + "#": 3367 + }, + { + "#": 3368 + } + ], + { + "x": -0.90101, + "y": -0.4338 + }, + { + "x": -0.62345, + "y": -0.78186 + }, + { + "x": -0.22259, + "y": -0.97491 + }, + { + "x": 0.22259, + "y": -0.97491 + }, + { + "x": 0.62345, + "y": -0.78186 + }, + { + "x": 0.90101, + "y": -0.4338 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 85, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3370 + }, + "angle": 0, + "vertices": { + "#": 3371 + }, + "position": { + "#": 3386 + }, + "force": { + "#": 3387 + }, + "torque": 0, + "positionImpulse": { + "#": 3388 + }, + "constraintImpulse": { + "#": 3389 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3390 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3391 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3392 + }, + "circleRadius": 13.51925, + "bounds": { + "#": 3394 + }, + "positionPrev": { + "#": 3397 + }, + "anglePrev": 0, + "axes": { + "#": 3398 + }, + "area": 555.09128, + "mass": 0.55509, + "inverseMass": 1.80151, + "inertia": 196.20461, + "inverseInertia": 0.0051, + "parent": { + "#": 3369 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3369 + } + ], + [ + { + "#": 3372 + }, + { + "#": 3373 + }, + { + "#": 3374 + }, + { + "#": 3375 + }, + { + "#": 3376 + }, + { + "#": 3377 + }, + { + "#": 3378 + }, + { + "#": 3379 + }, + { + "#": 3380 + }, + { + "#": 3381 + }, + { + "#": 3382 + }, + { + "#": 3383 + }, + { + "#": 3384 + }, + { + "#": 3385 + } + ], + { + "x": 46.36, + "y": 191.183, + "index": 0, + "body": { + "#": 3369 + }, + "isInternal": false + }, + { + "x": 43.75, + "y": 196.604, + "index": 1, + "body": { + "#": 3369 + }, + "isInternal": false + }, + { + "x": 39.046, + "y": 200.355, + "index": 2, + "body": { + "#": 3369 + }, + "isInternal": false + }, + { + "x": 33.18, + "y": 201.694, + "index": 3, + "body": { + "#": 3369 + }, + "isInternal": false + }, + { + "x": 27.314, + "y": 200.355, + "index": 4, + "body": { + "#": 3369 + }, + "isInternal": false + }, + { + "x": 22.61, + "y": 196.604, + "index": 5, + "body": { + "#": 3369 + }, + "isInternal": false + }, + { + "x": 20, + "y": 191.183, + "index": 6, + "body": { + "#": 3369 + }, + "isInternal": false + }, + { + "x": 20, + "y": 185.167, + "index": 7, + "body": { + "#": 3369 + }, + "isInternal": false + }, + { + "x": 22.61, + "y": 179.746, + "index": 8, + "body": { + "#": 3369 + }, + "isInternal": false + }, + { + "x": 27.314, + "y": 175.995, + "index": 9, + "body": { + "#": 3369 + }, + "isInternal": false + }, + { + "x": 33.18, + "y": 174.656, + "index": 10, + "body": { + "#": 3369 + }, + "isInternal": false + }, + { + "x": 39.046, + "y": 175.995, + "index": 11, + "body": { + "#": 3369 + }, + "isInternal": false + }, + { + "x": 43.75, + "y": 179.746, + "index": 12, + "body": { + "#": 3369 + }, + "isInternal": false + }, + { + "x": 46.36, + "y": 185.167, + "index": 13, + "body": { + "#": 3369 + }, + "isInternal": false + }, + { + "x": 33.18, + "y": 188.175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3393 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3395 + }, + "max": { + "#": 3396 + } + }, + { + "x": 20, + "y": 174.656 + }, + { + "x": 46.36, + "y": 201.694 + }, + { + "x": 33.18, + "y": 188.175 + }, + [ + { + "#": 3399 + }, + { + "#": 3400 + }, + { + "#": 3401 + }, + { + "#": 3402 + }, + { + "#": 3403 + }, + { + "#": 3404 + }, + { + "#": 3405 + } + ], + { + "x": -0.90101, + "y": -0.4338 + }, + { + "x": -0.62346, + "y": -0.78186 + }, + { + "x": -0.22254, + "y": -0.97492 + }, + { + "x": 0.22254, + "y": -0.97492 + }, + { + "x": 0.62346, + "y": -0.78186 + }, + { + "x": 0.90101, + "y": -0.4338 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 86, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3407 + }, + "angle": 0, + "vertices": { + "#": 3408 + }, + "position": { + "#": 3423 + }, + "force": { + "#": 3424 + }, + "torque": 0, + "positionImpulse": { + "#": 3425 + }, + "constraintImpulse": { + "#": 3426 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3427 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3428 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3429 + }, + "circleRadius": 13.82849, + "bounds": { + "#": 3431 + }, + "positionPrev": { + "#": 3434 + }, + "anglePrev": 0, + "axes": { + "#": 3435 + }, + "area": 580.8002, + "mass": 0.5808, + "inverseMass": 1.72176, + "inertia": 214.79982, + "inverseInertia": 0.00466, + "parent": { + "#": 3406 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3406 + } + ], + [ + { + "#": 3409 + }, + { + "#": 3410 + }, + { + "#": 3411 + }, + { + "#": 3412 + }, + { + "#": 3413 + }, + { + "#": 3414 + }, + { + "#": 3415 + }, + { + "#": 3416 + }, + { + "#": 3417 + }, + { + "#": 3418 + }, + { + "#": 3419 + }, + { + "#": 3420 + }, + { + "#": 3421 + }, + { + "#": 3422 + } + ], + { + "x": 73.324, + "y": 191.561, + "index": 0, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 70.654, + "y": 197.106, + "index": 1, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 65.842, + "y": 200.943, + "index": 2, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 59.842, + "y": 202.312, + "index": 3, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 53.842, + "y": 200.943, + "index": 4, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 49.03, + "y": 197.106, + "index": 5, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 46.36, + "y": 191.561, + "index": 6, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 46.36, + "y": 185.407, + "index": 7, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 49.03, + "y": 179.862, + "index": 8, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 53.842, + "y": 176.025, + "index": 9, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 59.842, + "y": 174.656, + "index": 10, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 65.842, + "y": 176.025, + "index": 11, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 70.654, + "y": 179.862, + "index": 12, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 73.324, + "y": 185.407, + "index": 13, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 59.842, + "y": 188.484 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3430 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3432 + }, + "max": { + "#": 3433 + } + }, + { + "x": 46.36, + "y": 174.656 + }, + { + "x": 73.324, + "y": 202.312 + }, + { + "x": 59.842, + "y": 188.484 + }, + [ + { + "#": 3436 + }, + { + "#": 3437 + }, + { + "#": 3438 + }, + { + "#": 3439 + }, + { + "#": 3440 + }, + { + "#": 3441 + }, + { + "#": 3442 + } + ], + { + "x": -0.90099, + "y": -0.43384 + }, + { + "x": -0.62345, + "y": -0.78187 + }, + { + "x": -0.22245, + "y": -0.97494 + }, + { + "x": 0.22245, + "y": -0.97494 + }, + { + "x": 0.62345, + "y": -0.78187 + }, + { + "x": 0.90099, + "y": -0.43384 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 87, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3444 + }, + "angle": 0, + "vertices": { + "#": 3445 + }, + "position": { + "#": 3464 + }, + "force": { + "#": 3465 + }, + "torque": 0, + "positionImpulse": { + "#": 3466 + }, + "constraintImpulse": { + "#": 3467 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3468 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3469 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3470 + }, + "circleRadius": 16.34967, + "bounds": { + "#": 3472 + }, + "positionPrev": { + "#": 3475 + }, + "anglePrev": 0, + "axes": { + "#": 3476 + }, + "area": 822.83818, + "mass": 0.82284, + "inverseMass": 1.21531, + "inertia": 431.06756, + "inverseInertia": 0.00232, + "parent": { + "#": 3443 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3443 + } + ], + [ + { + "#": 3446 + }, + { + "#": 3447 + }, + { + "#": 3448 + }, + { + "#": 3449 + }, + { + "#": 3450 + }, + { + "#": 3451 + }, + { + "#": 3452 + }, + { + "#": 3453 + }, + { + "#": 3454 + }, + { + "#": 3455 + }, + { + "#": 3456 + }, + { + "#": 3457 + }, + { + "#": 3458 + }, + { + "#": 3459 + }, + { + "#": 3460 + }, + { + "#": 3461 + }, + { + "#": 3462 + }, + { + "#": 3463 + } + ], + { + "x": 105.526, + "y": 193.845, + "index": 0, + "body": { + "#": 3443 + }, + "isInternal": false + }, + { + "x": 103.584, + "y": 199.181, + "index": 1, + "body": { + "#": 3443 + }, + "isInternal": false + }, + { + "x": 99.934, + "y": 203.531, + "index": 2, + "body": { + "#": 3443 + }, + "isInternal": false + }, + { + "x": 95.017, + "y": 206.37, + "index": 3, + "body": { + "#": 3443 + }, + "isInternal": false + }, + { + "x": 89.425, + "y": 207.356, + "index": 4, + "body": { + "#": 3443 + }, + "isInternal": false + }, + { + "x": 83.833, + "y": 206.37, + "index": 5, + "body": { + "#": 3443 + }, + "isInternal": false + }, + { + "x": 78.916, + "y": 203.531, + "index": 6, + "body": { + "#": 3443 + }, + "isInternal": false + }, + { + "x": 75.266, + "y": 199.181, + "index": 7, + "body": { + "#": 3443 + }, + "isInternal": false + }, + { + "x": 73.324, + "y": 193.845, + "index": 8, + "body": { + "#": 3443 + }, + "isInternal": false + }, + { + "x": 73.324, + "y": 188.167, + "index": 9, + "body": { + "#": 3443 + }, + "isInternal": false + }, + { + "x": 75.266, + "y": 182.831, + "index": 10, + "body": { + "#": 3443 + }, + "isInternal": false + }, + { + "x": 78.916, + "y": 178.481, + "index": 11, + "body": { + "#": 3443 + }, + "isInternal": false + }, + { + "x": 83.833, + "y": 175.642, + "index": 12, + "body": { + "#": 3443 + }, + "isInternal": false + }, + { + "x": 89.425, + "y": 174.656, + "index": 13, + "body": { + "#": 3443 + }, + "isInternal": false + }, + { + "x": 95.017, + "y": 175.642, + "index": 14, + "body": { + "#": 3443 + }, + "isInternal": false + }, + { + "x": 99.934, + "y": 178.481, + "index": 15, + "body": { + "#": 3443 + }, + "isInternal": false + }, + { + "x": 103.584, + "y": 182.831, + "index": 16, + "body": { + "#": 3443 + }, + "isInternal": false + }, + { + "x": 105.526, + "y": 188.167, + "index": 17, + "body": { + "#": 3443 + }, + "isInternal": false + }, + { + "x": 89.425, + "y": 191.006 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3471 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3473 + }, + "max": { + "#": 3474 + } + }, + { + "x": 73.324, + "y": 174.656 + }, + { + "x": 105.526, + "y": 207.356 + }, + { + "x": 89.425, + "y": 191.006 + }, + [ + { + "#": 3477 + }, + { + "#": 3478 + }, + { + "#": 3479 + }, + { + "#": 3480 + }, + { + "#": 3481 + }, + { + "#": 3482 + }, + { + "#": 3483 + }, + { + "#": 3484 + }, + { + "#": 3485 + } + ], + { + "x": -0.9397, + "y": -0.342 + }, + { + "x": -0.76605, + "y": -0.64278 + }, + { + "x": -0.50002, + "y": -0.86601 + }, + { + "x": -0.17364, + "y": -0.98481 + }, + { + "x": 0.17364, + "y": -0.98481 + }, + { + "x": 0.50002, + "y": -0.86601 + }, + { + "x": 0.76605, + "y": -0.64278 + }, + { + "x": 0.9397, + "y": -0.342 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 88, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3487 + }, + "angle": 0, + "vertices": { + "#": 3488 + }, + "position": { + "#": 3509 + }, + "force": { + "#": 3510 + }, + "torque": 0, + "positionImpulse": { + "#": 3511 + }, + "constraintImpulse": { + "#": 3512 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3513 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3514 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3515 + }, + "circleRadius": 18.24327, + "bounds": { + "#": 3517 + }, + "positionPrev": { + "#": 3520 + }, + "anglePrev": 0, + "axes": { + "#": 3521 + }, + "area": 1028.47806, + "mass": 1.02848, + "inverseMass": 0.97231, + "inertia": 673.43233, + "inverseInertia": 0.00148, + "parent": { + "#": 3486 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3486 + } + ], + [ + { + "#": 3489 + }, + { + "#": 3490 + }, + { + "#": 3491 + }, + { + "#": 3492 + }, + { + "#": 3493 + }, + { + "#": 3494 + }, + { + "#": 3495 + }, + { + "#": 3496 + }, + { + "#": 3497 + }, + { + "#": 3498 + }, + { + "#": 3499 + }, + { + "#": 3500 + }, + { + "#": 3501 + }, + { + "#": 3502 + }, + { + "#": 3503 + }, + { + "#": 3504 + }, + { + "#": 3505 + }, + { + "#": 3506 + }, + { + "#": 3507 + }, + { + "#": 3508 + } + ], + { + "x": 141.564, + "y": 195.529, + "index": 0, + "body": { + "#": 3486 + }, + "isInternal": false + }, + { + "x": 139.8, + "y": 200.957, + "index": 1, + "body": { + "#": 3486 + }, + "isInternal": false + }, + { + "x": 136.445, + "y": 205.575, + "index": 2, + "body": { + "#": 3486 + }, + "isInternal": false + }, + { + "x": 131.827, + "y": 208.93, + "index": 3, + "body": { + "#": 3486 + }, + "isInternal": false + }, + { + "x": 126.399, + "y": 210.694, + "index": 4, + "body": { + "#": 3486 + }, + "isInternal": false + }, + { + "x": 120.691, + "y": 210.694, + "index": 5, + "body": { + "#": 3486 + }, + "isInternal": false + }, + { + "x": 115.263, + "y": 208.93, + "index": 6, + "body": { + "#": 3486 + }, + "isInternal": false + }, + { + "x": 110.645, + "y": 205.575, + "index": 7, + "body": { + "#": 3486 + }, + "isInternal": false + }, + { + "x": 107.29, + "y": 200.957, + "index": 8, + "body": { + "#": 3486 + }, + "isInternal": false + }, + { + "x": 105.526, + "y": 195.529, + "index": 9, + "body": { + "#": 3486 + }, + "isInternal": false + }, + { + "x": 105.526, + "y": 189.821, + "index": 10, + "body": { + "#": 3486 + }, + "isInternal": false + }, + { + "x": 107.29, + "y": 184.393, + "index": 11, + "body": { + "#": 3486 + }, + "isInternal": false + }, + { + "x": 110.645, + "y": 179.775, + "index": 12, + "body": { + "#": 3486 + }, + "isInternal": false + }, + { + "x": 115.263, + "y": 176.42, + "index": 13, + "body": { + "#": 3486 + }, + "isInternal": false + }, + { + "x": 120.691, + "y": 174.656, + "index": 14, + "body": { + "#": 3486 + }, + "isInternal": false + }, + { + "x": 126.399, + "y": 174.656, + "index": 15, + "body": { + "#": 3486 + }, + "isInternal": false + }, + { + "x": 131.827, + "y": 176.42, + "index": 16, + "body": { + "#": 3486 + }, + "isInternal": false + }, + { + "x": 136.445, + "y": 179.775, + "index": 17, + "body": { + "#": 3486 + }, + "isInternal": false + }, + { + "x": 139.8, + "y": 184.393, + "index": 18, + "body": { + "#": 3486 + }, + "isInternal": false + }, + { + "x": 141.564, + "y": 189.821, + "index": 19, + "body": { + "#": 3486 + }, + "isInternal": false + }, + { + "x": 123.545, + "y": 192.675 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3516 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3518 + }, + "max": { + "#": 3519 + } + }, + { + "x": 105.526, + "y": 174.656 + }, + { + "x": 141.564, + "y": 210.694 + }, + { + "x": 123.545, + "y": 192.675 + }, + [ + { + "#": 3522 + }, + { + "#": 3523 + }, + { + "#": 3524 + }, + { + "#": 3525 + }, + { + "#": 3526 + }, + { + "#": 3527 + }, + { + "#": 3528 + }, + { + "#": 3529 + }, + { + "#": 3530 + }, + { + "#": 3531 + } + ], + { + "x": -0.95104, + "y": -0.30907 + }, + { + "x": -0.80903, + "y": -0.58777 + }, + { + "x": -0.58777, + "y": -0.80903 + }, + { + "x": -0.30907, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30907, + "y": -0.95104 + }, + { + "x": 0.58777, + "y": -0.80903 + }, + { + "x": 0.80903, + "y": -0.58777 + }, + { + "x": 0.95104, + "y": -0.30907 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 89, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3533 + }, + "angle": 0, + "vertices": { + "#": 3534 + }, + "position": { + "#": 3549 + }, + "force": { + "#": 3550 + }, + "torque": 0, + "positionImpulse": { + "#": 3551 + }, + "constraintImpulse": { + "#": 3552 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3553 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3554 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3555 + }, + "circleRadius": 12.96609, + "bounds": { + "#": 3557 + }, + "positionPrev": { + "#": 3560 + }, + "anglePrev": 0, + "axes": { + "#": 3561 + }, + "area": 510.6009, + "mass": 0.5106, + "inverseMass": 1.95848, + "inertia": 166.01355, + "inverseInertia": 0.00602, + "parent": { + "#": 3532 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3532 + } + ], + [ + { + "#": 3535 + }, + { + "#": 3536 + }, + { + "#": 3537 + }, + { + "#": 3538 + }, + { + "#": 3539 + }, + { + "#": 3540 + }, + { + "#": 3541 + }, + { + "#": 3542 + }, + { + "#": 3543 + }, + { + "#": 3544 + }, + { + "#": 3545 + }, + { + "#": 3546 + }, + { + "#": 3547 + }, + { + "#": 3548 + } + ], + { + "x": 166.846, + "y": 190.507, + "index": 0, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 164.342, + "y": 195.706, + "index": 1, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 159.831, + "y": 199.304, + "index": 2, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 154.205, + "y": 200.588, + "index": 3, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 148.579, + "y": 199.304, + "index": 4, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 144.068, + "y": 195.706, + "index": 5, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 141.564, + "y": 190.507, + "index": 6, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 141.564, + "y": 184.737, + "index": 7, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 144.068, + "y": 179.538, + "index": 8, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 148.579, + "y": 175.94, + "index": 9, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 154.205, + "y": 174.656, + "index": 10, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 159.831, + "y": 175.94, + "index": 11, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 164.342, + "y": 179.538, + "index": 12, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 166.846, + "y": 184.737, + "index": 13, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 154.205, + "y": 187.622 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3556 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3558 + }, + "max": { + "#": 3559 + } + }, + { + "x": 141.564, + "y": 174.656 + }, + { + "x": 166.846, + "y": 200.588 + }, + { + "x": 154.205, + "y": 187.622 + }, + [ + { + "#": 3562 + }, + { + "#": 3563 + }, + { + "#": 3564 + }, + { + "#": 3565 + }, + { + "#": 3566 + }, + { + "#": 3567 + }, + { + "#": 3568 + } + ], + { + "x": -0.90095, + "y": -0.43393 + }, + { + "x": -0.62355, + "y": -0.78178 + }, + { + "x": -0.2225, + "y": -0.97493 + }, + { + "x": 0.2225, + "y": -0.97493 + }, + { + "x": 0.62355, + "y": -0.78178 + }, + { + "x": 0.90095, + "y": -0.43393 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 90, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3570 + }, + "angle": 0, + "vertices": { + "#": 3571 + }, + "position": { + "#": 3592 + }, + "force": { + "#": 3593 + }, + "torque": 0, + "positionImpulse": { + "#": 3594 + }, + "constraintImpulse": { + "#": 3595 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3596 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3597 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3598 + }, + "circleRadius": 18.049, + "bounds": { + "#": 3600 + }, + "positionPrev": { + "#": 3603 + }, + "anglePrev": 0, + "axes": { + "#": 3604 + }, + "area": 1006.70047, + "mass": 1.0067, + "inverseMass": 0.99334, + "inertia": 645.21498, + "inverseInertia": 0.00155, + "parent": { + "#": 3569 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3569 + } + ], + [ + { + "#": 3572 + }, + { + "#": 3573 + }, + { + "#": 3574 + }, + { + "#": 3575 + }, + { + "#": 3576 + }, + { + "#": 3577 + }, + { + "#": 3578 + }, + { + "#": 3579 + }, + { + "#": 3580 + }, + { + "#": 3581 + }, + { + "#": 3582 + }, + { + "#": 3583 + }, + { + "#": 3584 + }, + { + "#": 3585 + }, + { + "#": 3586 + }, + { + "#": 3587 + }, + { + "#": 3588 + }, + { + "#": 3589 + }, + { + "#": 3590 + }, + { + "#": 3591 + } + ], + { + "x": 202.5, + "y": 195.306, + "index": 0, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 200.755, + "y": 200.677, + "index": 1, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 197.436, + "y": 205.246, + "index": 2, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 192.867, + "y": 208.565, + "index": 3, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 187.496, + "y": 210.31, + "index": 4, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 181.85, + "y": 210.31, + "index": 5, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 176.479, + "y": 208.565, + "index": 6, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 171.91, + "y": 205.246, + "index": 7, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 168.591, + "y": 200.677, + "index": 8, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 166.846, + "y": 195.306, + "index": 9, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 166.846, + "y": 189.66, + "index": 10, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 168.591, + "y": 184.289, + "index": 11, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 171.91, + "y": 179.72, + "index": 12, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 176.479, + "y": 176.401, + "index": 13, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 181.85, + "y": 174.656, + "index": 14, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 187.496, + "y": 174.656, + "index": 15, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 192.867, + "y": 176.401, + "index": 16, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 197.436, + "y": 179.72, + "index": 17, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 200.755, + "y": 184.289, + "index": 18, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 202.5, + "y": 189.66, + "index": 19, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 184.673, + "y": 192.483 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3599 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3601 + }, + "max": { + "#": 3602 + } + }, + { + "x": 166.846, + "y": 174.656 + }, + { + "x": 202.5, + "y": 210.31 + }, + { + "x": 184.673, + "y": 192.483 + }, + [ + { + "#": 3605 + }, + { + "#": 3606 + }, + { + "#": 3607 + }, + { + "#": 3608 + }, + { + "#": 3609 + }, + { + "#": 3610 + }, + { + "#": 3611 + }, + { + "#": 3612 + }, + { + "#": 3613 + }, + { + "#": 3614 + } + ], + { + "x": -0.95106, + "y": -0.30899 + }, + { + "x": -0.80907, + "y": -0.58772 + }, + { + "x": -0.58772, + "y": -0.80907 + }, + { + "x": -0.30899, + "y": -0.95106 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30899, + "y": -0.95106 + }, + { + "x": 0.58772, + "y": -0.80907 + }, + { + "x": 0.80907, + "y": -0.58772 + }, + { + "x": 0.95106, + "y": -0.30899 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 91, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3616 + }, + "angle": 0, + "vertices": { + "#": 3617 + }, + "position": { + "#": 3638 + }, + "force": { + "#": 3639 + }, + "torque": 0, + "positionImpulse": { + "#": 3640 + }, + "constraintImpulse": { + "#": 3641 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3642 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3643 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3644 + }, + "circleRadius": 19.54137, + "bounds": { + "#": 3646 + }, + "positionPrev": { + "#": 3649 + }, + "anglePrev": 0, + "axes": { + "#": 3650 + }, + "area": 1180.03242, + "mass": 1.18003, + "inverseMass": 0.84743, + "inertia": 886.52662, + "inverseInertia": 0.00113, + "parent": { + "#": 3615 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3615 + } + ], + [ + { + "#": 3618 + }, + { + "#": 3619 + }, + { + "#": 3620 + }, + { + "#": 3621 + }, + { + "#": 3622 + }, + { + "#": 3623 + }, + { + "#": 3624 + }, + { + "#": 3625 + }, + { + "#": 3626 + }, + { + "#": 3627 + }, + { + "#": 3628 + }, + { + "#": 3629 + }, + { + "#": 3630 + }, + { + "#": 3631 + }, + { + "#": 3632 + }, + { + "#": 3633 + }, + { + "#": 3634 + }, + { + "#": 3635 + }, + { + "#": 3636 + }, + { + "#": 3637 + } + ], + { + "x": 241.102, + "y": 197.014, + "index": 0, + "body": { + "#": 3615 + }, + "isInternal": false + }, + { + "x": 239.212, + "y": 202.829, + "index": 1, + "body": { + "#": 3615 + }, + "isInternal": false + }, + { + "x": 235.619, + "y": 207.775, + "index": 2, + "body": { + "#": 3615 + }, + "isInternal": false + }, + { + "x": 230.673, + "y": 211.368, + "index": 3, + "body": { + "#": 3615 + }, + "isInternal": false + }, + { + "x": 224.858, + "y": 213.258, + "index": 4, + "body": { + "#": 3615 + }, + "isInternal": false + }, + { + "x": 218.744, + "y": 213.258, + "index": 5, + "body": { + "#": 3615 + }, + "isInternal": false + }, + { + "x": 212.929, + "y": 211.368, + "index": 6, + "body": { + "#": 3615 + }, + "isInternal": false + }, + { + "x": 207.983, + "y": 207.775, + "index": 7, + "body": { + "#": 3615 + }, + "isInternal": false + }, + { + "x": 204.39, + "y": 202.829, + "index": 8, + "body": { + "#": 3615 + }, + "isInternal": false + }, + { + "x": 202.5, + "y": 197.014, + "index": 9, + "body": { + "#": 3615 + }, + "isInternal": false + }, + { + "x": 202.5, + "y": 190.9, + "index": 10, + "body": { + "#": 3615 + }, + "isInternal": false + }, + { + "x": 204.39, + "y": 185.085, + "index": 11, + "body": { + "#": 3615 + }, + "isInternal": false + }, + { + "x": 207.983, + "y": 180.139, + "index": 12, + "body": { + "#": 3615 + }, + "isInternal": false + }, + { + "x": 212.929, + "y": 176.546, + "index": 13, + "body": { + "#": 3615 + }, + "isInternal": false + }, + { + "x": 218.744, + "y": 174.656, + "index": 14, + "body": { + "#": 3615 + }, + "isInternal": false + }, + { + "x": 224.858, + "y": 174.656, + "index": 15, + "body": { + "#": 3615 + }, + "isInternal": false + }, + { + "x": 230.673, + "y": 176.546, + "index": 16, + "body": { + "#": 3615 + }, + "isInternal": false + }, + { + "x": 235.619, + "y": 180.139, + "index": 17, + "body": { + "#": 3615 + }, + "isInternal": false + }, + { + "x": 239.212, + "y": 185.085, + "index": 18, + "body": { + "#": 3615 + }, + "isInternal": false + }, + { + "x": 241.102, + "y": 190.9, + "index": 19, + "body": { + "#": 3615 + }, + "isInternal": false + }, + { + "x": 221.801, + "y": 193.957 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3645 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3647 + }, + "max": { + "#": 3648 + } + }, + { + "x": 202.5, + "y": 174.656 + }, + { + "x": 241.102, + "y": 213.258 + }, + { + "x": 221.801, + "y": 193.957 + }, + [ + { + "#": 3651 + }, + { + "#": 3652 + }, + { + "#": 3653 + }, + { + "#": 3654 + }, + { + "#": 3655 + }, + { + "#": 3656 + }, + { + "#": 3657 + }, + { + "#": 3658 + }, + { + "#": 3659 + }, + { + "#": 3660 + } + ], + { + "x": -0.95103, + "y": -0.3091 + }, + { + "x": -0.80905, + "y": -0.58773 + }, + { + "x": -0.58773, + "y": -0.80905 + }, + { + "x": -0.3091, + "y": -0.95103 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3091, + "y": -0.95103 + }, + { + "x": 0.58773, + "y": -0.80905 + }, + { + "x": 0.80905, + "y": -0.58773 + }, + { + "x": 0.95103, + "y": -0.3091 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 92, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3662 + }, + "angle": 0, + "vertices": { + "#": 3663 + }, + "position": { + "#": 3678 + }, + "force": { + "#": 3679 + }, + "torque": 0, + "positionImpulse": { + "#": 3680 + }, + "constraintImpulse": { + "#": 3681 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3682 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3683 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3684 + }, + "circleRadius": 13.12221, + "bounds": { + "#": 3686 + }, + "positionPrev": { + "#": 3689 + }, + "anglePrev": 0, + "axes": { + "#": 3690 + }, + "area": 522.98425, + "mass": 0.52298, + "inverseMass": 1.9121, + "inertia": 174.16369, + "inverseInertia": 0.00574, + "parent": { + "#": 3661 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3661 + } + ], + [ + { + "#": 3664 + }, + { + "#": 3665 + }, + { + "#": 3666 + }, + { + "#": 3667 + }, + { + "#": 3668 + }, + { + "#": 3669 + }, + { + "#": 3670 + }, + { + "#": 3671 + }, + { + "#": 3672 + }, + { + "#": 3673 + }, + { + "#": 3674 + }, + { + "#": 3675 + }, + { + "#": 3676 + }, + { + "#": 3677 + } + ], + { + "x": 266.688, + "y": 190.698, + "index": 0, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 264.154, + "y": 195.96, + "index": 1, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 259.589, + "y": 199.601, + "index": 2, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 253.895, + "y": 200.9, + "index": 3, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 248.201, + "y": 199.601, + "index": 4, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 243.636, + "y": 195.96, + "index": 5, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 241.102, + "y": 190.698, + "index": 6, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 241.102, + "y": 184.858, + "index": 7, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 243.636, + "y": 179.596, + "index": 8, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 248.201, + "y": 175.955, + "index": 9, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 253.895, + "y": 174.656, + "index": 10, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 259.589, + "y": 175.955, + "index": 11, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 264.154, + "y": 179.596, + "index": 12, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 266.688, + "y": 184.858, + "index": 13, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 253.895, + "y": 187.778 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3685 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3687 + }, + "max": { + "#": 3688 + } + }, + { + "x": 241.102, + "y": 174.656 + }, + { + "x": 266.688, + "y": 200.9 + }, + { + "x": 253.895, + "y": 187.778 + }, + [ + { + "#": 3691 + }, + { + "#": 3692 + }, + { + "#": 3693 + }, + { + "#": 3694 + }, + { + "#": 3695 + }, + { + "#": 3696 + }, + { + "#": 3697 + } + ], + { + "x": -0.90097, + "y": -0.43388 + }, + { + "x": -0.62355, + "y": -0.78179 + }, + { + "x": -0.22242, + "y": -0.97495 + }, + { + "x": 0.22242, + "y": -0.97495 + }, + { + "x": 0.62355, + "y": -0.78179 + }, + { + "x": 0.90097, + "y": -0.43388 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 93, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3699 + }, + "angle": 0, + "vertices": { + "#": 3700 + }, + "position": { + "#": 3713 + }, + "force": { + "#": 3714 + }, + "torque": 0, + "positionImpulse": { + "#": 3715 + }, + "constraintImpulse": { + "#": 3716 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3717 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3718 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3719 + }, + "circleRadius": 11.87796, + "bounds": { + "#": 3721 + }, + "positionPrev": { + "#": 3724 + }, + "anglePrev": 0, + "axes": { + "#": 3725 + }, + "area": 423.24481, + "mass": 0.42324, + "inverseMass": 2.3627, + "inertia": 114.09085, + "inverseInertia": 0.00876, + "parent": { + "#": 3698 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3698 + } + ], + [ + { + "#": 3701 + }, + { + "#": 3702 + }, + { + "#": 3703 + }, + { + "#": 3704 + }, + { + "#": 3705 + }, + { + "#": 3706 + }, + { + "#": 3707 + }, + { + "#": 3708 + }, + { + "#": 3709 + }, + { + "#": 3710 + }, + { + "#": 3711 + }, + { + "#": 3712 + } + ], + { + "x": 289.634, + "y": 189.203, + "index": 0, + "body": { + "#": 3698 + }, + "isInternal": false + }, + { + "x": 286.56, + "y": 194.528, + "index": 1, + "body": { + "#": 3698 + }, + "isInternal": false + }, + { + "x": 281.235, + "y": 197.602, + "index": 2, + "body": { + "#": 3698 + }, + "isInternal": false + }, + { + "x": 275.087, + "y": 197.602, + "index": 3, + "body": { + "#": 3698 + }, + "isInternal": false + }, + { + "x": 269.762, + "y": 194.528, + "index": 4, + "body": { + "#": 3698 + }, + "isInternal": false + }, + { + "x": 266.688, + "y": 189.203, + "index": 5, + "body": { + "#": 3698 + }, + "isInternal": false + }, + { + "x": 266.688, + "y": 183.055, + "index": 6, + "body": { + "#": 3698 + }, + "isInternal": false + }, + { + "x": 269.762, + "y": 177.73, + "index": 7, + "body": { + "#": 3698 + }, + "isInternal": false + }, + { + "x": 275.087, + "y": 174.656, + "index": 8, + "body": { + "#": 3698 + }, + "isInternal": false + }, + { + "x": 281.235, + "y": 174.656, + "index": 9, + "body": { + "#": 3698 + }, + "isInternal": false + }, + { + "x": 286.56, + "y": 177.73, + "index": 10, + "body": { + "#": 3698 + }, + "isInternal": false + }, + { + "x": 289.634, + "y": 183.055, + "index": 11, + "body": { + "#": 3698 + }, + "isInternal": false + }, + { + "x": 278.161, + "y": 186.129 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3720 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3722 + }, + "max": { + "#": 3723 + } + }, + { + "x": 266.688, + "y": 174.656 + }, + { + "x": 289.634, + "y": 197.602 + }, + { + "x": 278.161, + "y": 186.129 + }, + [ + { + "#": 3726 + }, + { + "#": 3727 + }, + { + "#": 3728 + }, + { + "#": 3729 + }, + { + "#": 3730 + }, + { + "#": 3731 + } + ], + { + "x": -0.86605, + "y": -0.49995 + }, + { + "x": -0.49995, + "y": -0.86605 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.49995, + "y": -0.86605 + }, + { + "x": 0.86605, + "y": -0.49995 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 94, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3733 + }, + "angle": 0, + "vertices": { + "#": 3734 + }, + "position": { + "#": 3747 + }, + "force": { + "#": 3748 + }, + "torque": 0, + "positionImpulse": { + "#": 3749 + }, + "constraintImpulse": { + "#": 3750 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3751 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3752 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3753 + }, + "circleRadius": 10.74687, + "bounds": { + "#": 3755 + }, + "positionPrev": { + "#": 3758 + }, + "anglePrev": 0, + "axes": { + "#": 3759 + }, + "area": 346.48784, + "mass": 0.34649, + "inverseMass": 2.8861, + "inertia": 76.46163, + "inverseInertia": 0.01308, + "parent": { + "#": 3732 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3732 + } + ], + [ + { + "#": 3735 + }, + { + "#": 3736 + }, + { + "#": 3737 + }, + { + "#": 3738 + }, + { + "#": 3739 + }, + { + "#": 3740 + }, + { + "#": 3741 + }, + { + "#": 3742 + }, + { + "#": 3743 + }, + { + "#": 3744 + }, + { + "#": 3745 + }, + { + "#": 3746 + } + ], + { + "x": 310.396, + "y": 187.818, + "index": 0, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 307.614, + "y": 192.636, + "index": 1, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 302.796, + "y": 195.418, + "index": 2, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 297.234, + "y": 195.418, + "index": 3, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 292.416, + "y": 192.636, + "index": 4, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 289.634, + "y": 187.818, + "index": 5, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 289.634, + "y": 182.256, + "index": 6, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 292.416, + "y": 177.438, + "index": 7, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 297.234, + "y": 174.656, + "index": 8, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 302.796, + "y": 174.656, + "index": 9, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 307.614, + "y": 177.438, + "index": 10, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 310.396, + "y": 182.256, + "index": 11, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 300.015, + "y": 185.037 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3754 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3756 + }, + "max": { + "#": 3757 + } + }, + { + "x": 289.634, + "y": 174.656 + }, + { + "x": 310.396, + "y": 195.418 + }, + { + "x": 300.015, + "y": 185.037 + }, + [ + { + "#": 3760 + }, + { + "#": 3761 + }, + { + "#": 3762 + }, + { + "#": 3763 + }, + { + "#": 3764 + }, + { + "#": 3765 + } + ], + { + "x": -0.866, + "y": -0.50004 + }, + { + "x": -0.50004, + "y": -0.866 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.50004, + "y": -0.866 + }, + { + "x": 0.866, + "y": -0.50004 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 95, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3767 + }, + "angle": 0, + "vertices": { + "#": 3768 + }, + "position": { + "#": 3787 + }, + "force": { + "#": 3788 + }, + "torque": 0, + "positionImpulse": { + "#": 3789 + }, + "constraintImpulse": { + "#": 3790 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3791 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3792 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3793 + }, + "circleRadius": 17.63019, + "bounds": { + "#": 3795 + }, + "positionPrev": { + "#": 3798 + }, + "anglePrev": 0, + "axes": { + "#": 3799 + }, + "area": 956.75751, + "mass": 0.95676, + "inverseMass": 1.0452, + "inertia": 582.80092, + "inverseInertia": 0.00172, + "parent": { + "#": 3766 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3766 + } + ], + [ + { + "#": 3769 + }, + { + "#": 3770 + }, + { + "#": 3771 + }, + { + "#": 3772 + }, + { + "#": 3773 + }, + { + "#": 3774 + }, + { + "#": 3775 + }, + { + "#": 3776 + }, + { + "#": 3777 + }, + { + "#": 3778 + }, + { + "#": 3779 + }, + { + "#": 3780 + }, + { + "#": 3781 + }, + { + "#": 3782 + }, + { + "#": 3783 + }, + { + "#": 3784 + }, + { + "#": 3785 + }, + { + "#": 3786 + } + ], + { + "x": 345.12, + "y": 195.347, + "index": 0, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 343.026, + "y": 201.101, + "index": 1, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 339.09, + "y": 205.792, + "index": 2, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 333.788, + "y": 208.853, + "index": 3, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 327.758, + "y": 209.916, + "index": 4, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 321.728, + "y": 208.853, + "index": 5, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 316.426, + "y": 205.792, + "index": 6, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 312.49, + "y": 201.101, + "index": 7, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 310.396, + "y": 195.347, + "index": 8, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 310.396, + "y": 189.225, + "index": 9, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 312.49, + "y": 183.471, + "index": 10, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 316.426, + "y": 178.78, + "index": 11, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 321.728, + "y": 175.719, + "index": 12, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 327.758, + "y": 174.656, + "index": 13, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 333.788, + "y": 175.719, + "index": 14, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 339.09, + "y": 178.78, + "index": 15, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 343.026, + "y": 183.471, + "index": 16, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 345.12, + "y": 189.225, + "index": 17, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 327.758, + "y": 192.286 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3794 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3796 + }, + "max": { + "#": 3797 + } + }, + { + "x": 310.396, + "y": 174.656 + }, + { + "x": 345.12, + "y": 209.916 + }, + { + "x": 327.758, + "y": 192.286 + }, + [ + { + "#": 3800 + }, + { + "#": 3801 + }, + { + "#": 3802 + }, + { + "#": 3803 + }, + { + "#": 3804 + }, + { + "#": 3805 + }, + { + "#": 3806 + }, + { + "#": 3807 + }, + { + "#": 3808 + } + ], + { + "x": -0.93971, + "y": -0.34198 + }, + { + "x": -0.76606, + "y": -0.64277 + }, + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": -0.17361, + "y": -0.98481 + }, + { + "x": 0.17361, + "y": -0.98481 + }, + { + "x": 0.49999, + "y": -0.86603 + }, + { + "x": 0.76606, + "y": -0.64277 + }, + { + "x": 0.93971, + "y": -0.34198 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 96, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3810 + }, + "angle": 0, + "vertices": { + "#": 3811 + }, + "position": { + "#": 3824 + }, + "force": { + "#": 3825 + }, + "torque": 0, + "positionImpulse": { + "#": 3826 + }, + "constraintImpulse": { + "#": 3827 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3828 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3829 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3830 + }, + "circleRadius": 11.16988, + "bounds": { + "#": 3832 + }, + "positionPrev": { + "#": 3835 + }, + "anglePrev": 0, + "axes": { + "#": 3836 + }, + "area": 374.27761, + "mass": 0.37428, + "inverseMass": 2.67181, + "inertia": 89.21856, + "inverseInertia": 0.01121, + "parent": { + "#": 3809 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3809 + } + ], + [ + { + "#": 3812 + }, + { + "#": 3813 + }, + { + "#": 3814 + }, + { + "#": 3815 + }, + { + "#": 3816 + }, + { + "#": 3817 + }, + { + "#": 3818 + }, + { + "#": 3819 + }, + { + "#": 3820 + }, + { + "#": 3821 + }, + { + "#": 3822 + }, + { + "#": 3823 + } + ], + { + "x": 366.698, + "y": 188.336, + "index": 0, + "body": { + "#": 3809 + }, + "isInternal": false + }, + { + "x": 363.807, + "y": 193.343, + "index": 1, + "body": { + "#": 3809 + }, + "isInternal": false + }, + { + "x": 358.8, + "y": 196.234, + "index": 2, + "body": { + "#": 3809 + }, + "isInternal": false + }, + { + "x": 353.018, + "y": 196.234, + "index": 3, + "body": { + "#": 3809 + }, + "isInternal": false + }, + { + "x": 348.011, + "y": 193.343, + "index": 4, + "body": { + "#": 3809 + }, + "isInternal": false + }, + { + "x": 345.12, + "y": 188.336, + "index": 5, + "body": { + "#": 3809 + }, + "isInternal": false + }, + { + "x": 345.12, + "y": 182.554, + "index": 6, + "body": { + "#": 3809 + }, + "isInternal": false + }, + { + "x": 348.011, + "y": 177.547, + "index": 7, + "body": { + "#": 3809 + }, + "isInternal": false + }, + { + "x": 353.018, + "y": 174.656, + "index": 8, + "body": { + "#": 3809 + }, + "isInternal": false + }, + { + "x": 358.8, + "y": 174.656, + "index": 9, + "body": { + "#": 3809 + }, + "isInternal": false + }, + { + "x": 363.807, + "y": 177.547, + "index": 10, + "body": { + "#": 3809 + }, + "isInternal": false + }, + { + "x": 366.698, + "y": 182.554, + "index": 11, + "body": { + "#": 3809 + }, + "isInternal": false + }, + { + "x": 355.909, + "y": 185.445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3831 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3833 + }, + "max": { + "#": 3834 + } + }, + { + "x": 345.12, + "y": 174.656 + }, + { + "x": 366.698, + "y": 196.234 + }, + { + "x": 355.909, + "y": 185.445 + }, + [ + { + "#": 3837 + }, + { + "#": 3838 + }, + { + "#": 3839 + }, + { + "#": 3840 + }, + { + "#": 3841 + }, + { + "#": 3842 + } + ], + { + "x": -0.86601, + "y": -0.50003 + }, + { + "x": -0.50003, + "y": -0.86601 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.50003, + "y": -0.86601 + }, + { + "x": 0.86601, + "y": -0.50003 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 97, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3844 + }, + "angle": 0, + "vertices": { + "#": 3845 + }, + "position": { + "#": 3862 + }, + "force": { + "#": 3863 + }, + "torque": 0, + "positionImpulse": { + "#": 3864 + }, + "constraintImpulse": { + "#": 3865 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3866 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3867 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3868 + }, + "circleRadius": 15.19312, + "bounds": { + "#": 3870 + }, + "positionPrev": { + "#": 3873 + }, + "anglePrev": 0, + "axes": { + "#": 3874 + }, + "area": 706.69119, + "mass": 0.70669, + "inverseMass": 1.41505, + "inertia": 317.97862, + "inverseInertia": 0.00314, + "parent": { + "#": 3843 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3843 + } + ], + [ + { + "#": 3846 + }, + { + "#": 3847 + }, + { + "#": 3848 + }, + { + "#": 3849 + }, + { + "#": 3850 + }, + { + "#": 3851 + }, + { + "#": 3852 + }, + { + "#": 3853 + }, + { + "#": 3854 + }, + { + "#": 3855 + }, + { + "#": 3856 + }, + { + "#": 3857 + }, + { + "#": 3858 + }, + { + "#": 3859 + }, + { + "#": 3860 + }, + { + "#": 3861 + } + ], + { + "x": 396.5, + "y": 192.521, + "index": 0, + "body": { + "#": 3843 + }, + "isInternal": false + }, + { + "x": 394.232, + "y": 197.998, + "index": 1, + "body": { + "#": 3843 + }, + "isInternal": false + }, + { + "x": 390.04, + "y": 202.19, + "index": 2, + "body": { + "#": 3843 + }, + "isInternal": false + }, + { + "x": 384.563, + "y": 204.458, + "index": 3, + "body": { + "#": 3843 + }, + "isInternal": false + }, + { + "x": 378.635, + "y": 204.458, + "index": 4, + "body": { + "#": 3843 + }, + "isInternal": false + }, + { + "x": 373.158, + "y": 202.19, + "index": 5, + "body": { + "#": 3843 + }, + "isInternal": false + }, + { + "x": 368.966, + "y": 197.998, + "index": 6, + "body": { + "#": 3843 + }, + "isInternal": false + }, + { + "x": 366.698, + "y": 192.521, + "index": 7, + "body": { + "#": 3843 + }, + "isInternal": false + }, + { + "x": 366.698, + "y": 186.593, + "index": 8, + "body": { + "#": 3843 + }, + "isInternal": false + }, + { + "x": 368.966, + "y": 181.116, + "index": 9, + "body": { + "#": 3843 + }, + "isInternal": false + }, + { + "x": 373.158, + "y": 176.924, + "index": 10, + "body": { + "#": 3843 + }, + "isInternal": false + }, + { + "x": 378.635, + "y": 174.656, + "index": 11, + "body": { + "#": 3843 + }, + "isInternal": false + }, + { + "x": 384.563, + "y": 174.656, + "index": 12, + "body": { + "#": 3843 + }, + "isInternal": false + }, + { + "x": 390.04, + "y": 176.924, + "index": 13, + "body": { + "#": 3843 + }, + "isInternal": false + }, + { + "x": 394.232, + "y": 181.116, + "index": 14, + "body": { + "#": 3843 + }, + "isInternal": false + }, + { + "x": 396.5, + "y": 186.593, + "index": 15, + "body": { + "#": 3843 + }, + "isInternal": false + }, + { + "x": 381.599, + "y": 189.557 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3869 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3871 + }, + "max": { + "#": 3872 + } + }, + { + "x": 366.698, + "y": 174.656 + }, + { + "x": 396.5, + "y": 204.458 + }, + { + "x": 381.599, + "y": 189.557 + }, + [ + { + "#": 3875 + }, + { + "#": 3876 + }, + { + "#": 3877 + }, + { + "#": 3878 + }, + { + "#": 3879 + }, + { + "#": 3880 + }, + { + "#": 3881 + }, + { + "#": 3882 + } + ], + { + "x": -0.92392, + "y": -0.38259 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38259, + "y": -0.92392 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38259, + "y": -0.92392 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92392, + "y": -0.38259 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 98, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3884 + }, + "angle": 0, + "vertices": { + "#": 3885 + }, + "position": { + "#": 3906 + }, + "force": { + "#": 3907 + }, + "torque": 0, + "positionImpulse": { + "#": 3908 + }, + "constraintImpulse": { + "#": 3909 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3910 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3911 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3912 + }, + "circleRadius": 19.82335, + "bounds": { + "#": 3914 + }, + "positionPrev": { + "#": 3917 + }, + "anglePrev": 0, + "axes": { + "#": 3918 + }, + "area": 1214.32715, + "mass": 1.21433, + "inverseMass": 0.8235, + "inertia": 938.80482, + "inverseInertia": 0.00107, + "parent": { + "#": 3883 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3883 + } + ], + [ + { + "#": 3886 + }, + { + "#": 3887 + }, + { + "#": 3888 + }, + { + "#": 3889 + }, + { + "#": 3890 + }, + { + "#": 3891 + }, + { + "#": 3892 + }, + { + "#": 3893 + }, + { + "#": 3894 + }, + { + "#": 3895 + }, + { + "#": 3896 + }, + { + "#": 3897 + }, + { + "#": 3898 + }, + { + "#": 3899 + }, + { + "#": 3900 + }, + { + "#": 3901 + }, + { + "#": 3902 + }, + { + "#": 3903 + }, + { + "#": 3904 + }, + { + "#": 3905 + } + ], + { + "x": 435.658, + "y": 197.336, + "index": 0, + "body": { + "#": 3883 + }, + "isInternal": false + }, + { + "x": 433.742, + "y": 203.235, + "index": 1, + "body": { + "#": 3883 + }, + "isInternal": false + }, + { + "x": 430.096, + "y": 208.252, + "index": 2, + "body": { + "#": 3883 + }, + "isInternal": false + }, + { + "x": 425.079, + "y": 211.898, + "index": 3, + "body": { + "#": 3883 + }, + "isInternal": false + }, + { + "x": 419.18, + "y": 213.814, + "index": 4, + "body": { + "#": 3883 + }, + "isInternal": false + }, + { + "x": 412.978, + "y": 213.814, + "index": 5, + "body": { + "#": 3883 + }, + "isInternal": false + }, + { + "x": 407.079, + "y": 211.898, + "index": 6, + "body": { + "#": 3883 + }, + "isInternal": false + }, + { + "x": 402.062, + "y": 208.252, + "index": 7, + "body": { + "#": 3883 + }, + "isInternal": false + }, + { + "x": 398.416, + "y": 203.235, + "index": 8, + "body": { + "#": 3883 + }, + "isInternal": false + }, + { + "x": 396.5, + "y": 197.336, + "index": 9, + "body": { + "#": 3883 + }, + "isInternal": false + }, + { + "x": 396.5, + "y": 191.134, + "index": 10, + "body": { + "#": 3883 + }, + "isInternal": false + }, + { + "x": 398.416, + "y": 185.235, + "index": 11, + "body": { + "#": 3883 + }, + "isInternal": false + }, + { + "x": 402.062, + "y": 180.218, + "index": 12, + "body": { + "#": 3883 + }, + "isInternal": false + }, + { + "x": 407.079, + "y": 176.572, + "index": 13, + "body": { + "#": 3883 + }, + "isInternal": false + }, + { + "x": 412.978, + "y": 174.656, + "index": 14, + "body": { + "#": 3883 + }, + "isInternal": false + }, + { + "x": 419.18, + "y": 174.656, + "index": 15, + "body": { + "#": 3883 + }, + "isInternal": false + }, + { + "x": 425.079, + "y": 176.572, + "index": 16, + "body": { + "#": 3883 + }, + "isInternal": false + }, + { + "x": 430.096, + "y": 180.218, + "index": 17, + "body": { + "#": 3883 + }, + "isInternal": false + }, + { + "x": 433.742, + "y": 185.235, + "index": 18, + "body": { + "#": 3883 + }, + "isInternal": false + }, + { + "x": 435.658, + "y": 191.134, + "index": 19, + "body": { + "#": 3883 + }, + "isInternal": false + }, + { + "x": 416.079, + "y": 194.235 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3913 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3915 + }, + "max": { + "#": 3916 + } + }, + { + "x": 396.5, + "y": 174.656 + }, + { + "x": 435.658, + "y": 213.814 + }, + { + "x": 416.079, + "y": 194.235 + }, + [ + { + "#": 3919 + }, + { + "#": 3920 + }, + { + "#": 3921 + }, + { + "#": 3922 + }, + { + "#": 3923 + }, + { + "#": 3924 + }, + { + "#": 3925 + }, + { + "#": 3926 + }, + { + "#": 3927 + }, + { + "#": 3928 + } + ], + { + "x": -0.95109, + "y": -0.30891 + }, + { + "x": -0.80895, + "y": -0.58788 + }, + { + "x": -0.58788, + "y": -0.80895 + }, + { + "x": -0.30891, + "y": -0.95109 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30891, + "y": -0.95109 + }, + { + "x": 0.58788, + "y": -0.80895 + }, + { + "x": 0.80895, + "y": -0.58788 + }, + { + "x": 0.95109, + "y": -0.30891 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 99, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3930 + }, + "angle": 0, + "vertices": { + "#": 3931 + }, + "position": { + "#": 3952 + }, + "force": { + "#": 3953 + }, + "torque": 0, + "positionImpulse": { + "#": 3954 + }, + "constraintImpulse": { + "#": 3955 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3956 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3957 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3958 + }, + "circleRadius": 19.2581, + "bounds": { + "#": 3960 + }, + "positionPrev": { + "#": 3963 + }, + "anglePrev": 0, + "axes": { + "#": 3964 + }, + "area": 1146.07959, + "mass": 1.14608, + "inverseMass": 0.87254, + "inertia": 836.24486, + "inverseInertia": 0.0012, + "parent": { + "#": 3929 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3929 + } + ], + [ + { + "#": 3932 + }, + { + "#": 3933 + }, + { + "#": 3934 + }, + { + "#": 3935 + }, + { + "#": 3936 + }, + { + "#": 3937 + }, + { + "#": 3938 + }, + { + "#": 3939 + }, + { + "#": 3940 + }, + { + "#": 3941 + }, + { + "#": 3942 + }, + { + "#": 3943 + }, + { + "#": 3944 + }, + { + "#": 3945 + }, + { + "#": 3946 + }, + { + "#": 3947 + }, + { + "#": 3948 + }, + { + "#": 3949 + }, + { + "#": 3950 + }, + { + "#": 3951 + } + ], + { + "x": 473.7, + "y": 196.69, + "index": 0, + "body": { + "#": 3929 + }, + "isInternal": false + }, + { + "x": 471.838, + "y": 202.42, + "index": 1, + "body": { + "#": 3929 + }, + "isInternal": false + }, + { + "x": 468.297, + "y": 207.295, + "index": 2, + "body": { + "#": 3929 + }, + "isInternal": false + }, + { + "x": 463.422, + "y": 210.836, + "index": 3, + "body": { + "#": 3929 + }, + "isInternal": false + }, + { + "x": 457.692, + "y": 212.698, + "index": 4, + "body": { + "#": 3929 + }, + "isInternal": false + }, + { + "x": 451.666, + "y": 212.698, + "index": 5, + "body": { + "#": 3929 + }, + "isInternal": false + }, + { + "x": 445.936, + "y": 210.836, + "index": 6, + "body": { + "#": 3929 + }, + "isInternal": false + }, + { + "x": 441.061, + "y": 207.295, + "index": 7, + "body": { + "#": 3929 + }, + "isInternal": false + }, + { + "x": 437.52, + "y": 202.42, + "index": 8, + "body": { + "#": 3929 + }, + "isInternal": false + }, + { + "x": 435.658, + "y": 196.69, + "index": 9, + "body": { + "#": 3929 + }, + "isInternal": false + }, + { + "x": 435.658, + "y": 190.664, + "index": 10, + "body": { + "#": 3929 + }, + "isInternal": false + }, + { + "x": 437.52, + "y": 184.934, + "index": 11, + "body": { + "#": 3929 + }, + "isInternal": false + }, + { + "x": 441.061, + "y": 180.059, + "index": 12, + "body": { + "#": 3929 + }, + "isInternal": false + }, + { + "x": 445.936, + "y": 176.518, + "index": 13, + "body": { + "#": 3929 + }, + "isInternal": false + }, + { + "x": 451.666, + "y": 174.656, + "index": 14, + "body": { + "#": 3929 + }, + "isInternal": false + }, + { + "x": 457.692, + "y": 174.656, + "index": 15, + "body": { + "#": 3929 + }, + "isInternal": false + }, + { + "x": 463.422, + "y": 176.518, + "index": 16, + "body": { + "#": 3929 + }, + "isInternal": false + }, + { + "x": 468.297, + "y": 180.059, + "index": 17, + "body": { + "#": 3929 + }, + "isInternal": false + }, + { + "x": 471.838, + "y": 184.934, + "index": 18, + "body": { + "#": 3929 + }, + "isInternal": false + }, + { + "x": 473.7, + "y": 190.664, + "index": 19, + "body": { + "#": 3929 + }, + "isInternal": false + }, + { + "x": 454.679, + "y": 193.677 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3959 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3961 + }, + "max": { + "#": 3962 + } + }, + { + "x": 435.658, + "y": 174.656 + }, + { + "x": 473.7, + "y": 212.698 + }, + { + "x": 454.679, + "y": 193.677 + }, + [ + { + "#": 3965 + }, + { + "#": 3966 + }, + { + "#": 3967 + }, + { + "#": 3968 + }, + { + "#": 3969 + }, + { + "#": 3970 + }, + { + "#": 3971 + }, + { + "#": 3972 + }, + { + "#": 3973 + }, + { + "#": 3974 + } + ], + { + "x": -0.95105, + "y": -0.30905 + }, + { + "x": -0.80909, + "y": -0.58769 + }, + { + "x": -0.58769, + "y": -0.80909 + }, + { + "x": -0.30905, + "y": -0.95105 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30905, + "y": -0.95105 + }, + { + "x": 0.58769, + "y": -0.80909 + }, + { + "x": 0.80909, + "y": -0.58769 + }, + { + "x": 0.95105, + "y": -0.30905 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 100, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3976 + }, + "angle": 0, + "vertices": { + "#": 3977 + }, + "position": { + "#": 3996 + }, + "force": { + "#": 3997 + }, + "torque": 0, + "positionImpulse": { + "#": 3998 + }, + "constraintImpulse": { + "#": 3999 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4000 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4001 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4002 + }, + "circleRadius": 16.21343, + "bounds": { + "#": 4004 + }, + "positionPrev": { + "#": 4007 + }, + "anglePrev": 0, + "axes": { + "#": 4008 + }, + "area": 809.172, + "mass": 0.80917, + "inverseMass": 1.23583, + "inertia": 416.86762, + "inverseInertia": 0.0024, + "parent": { + "#": 3975 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3975 + } + ], + [ + { + "#": 3978 + }, + { + "#": 3979 + }, + { + "#": 3980 + }, + { + "#": 3981 + }, + { + "#": 3982 + }, + { + "#": 3983 + }, + { + "#": 3984 + }, + { + "#": 3985 + }, + { + "#": 3986 + }, + { + "#": 3987 + }, + { + "#": 3988 + }, + { + "#": 3989 + }, + { + "#": 3990 + }, + { + "#": 3991 + }, + { + "#": 3992 + }, + { + "#": 3993 + }, + { + "#": 3994 + }, + { + "#": 3995 + } + ], + { + "x": 505.634, + "y": 193.684, + "index": 0, + "body": { + "#": 3975 + }, + "isInternal": false + }, + { + "x": 503.708, + "y": 198.976, + "index": 1, + "body": { + "#": 3975 + }, + "isInternal": false + }, + { + "x": 500.089, + "y": 203.289, + "index": 2, + "body": { + "#": 3975 + }, + "isInternal": false + }, + { + "x": 495.212, + "y": 206.105, + "index": 3, + "body": { + "#": 3975 + }, + "isInternal": false + }, + { + "x": 489.667, + "y": 207.082, + "index": 4, + "body": { + "#": 3975 + }, + "isInternal": false + }, + { + "x": 484.122, + "y": 206.105, + "index": 5, + "body": { + "#": 3975 + }, + "isInternal": false + }, + { + "x": 479.245, + "y": 203.289, + "index": 6, + "body": { + "#": 3975 + }, + "isInternal": false + }, + { + "x": 475.626, + "y": 198.976, + "index": 7, + "body": { + "#": 3975 + }, + "isInternal": false + }, + { + "x": 473.7, + "y": 193.684, + "index": 8, + "body": { + "#": 3975 + }, + "isInternal": false + }, + { + "x": 473.7, + "y": 188.054, + "index": 9, + "body": { + "#": 3975 + }, + "isInternal": false + }, + { + "x": 475.626, + "y": 182.762, + "index": 10, + "body": { + "#": 3975 + }, + "isInternal": false + }, + { + "x": 479.245, + "y": 178.449, + "index": 11, + "body": { + "#": 3975 + }, + "isInternal": false + }, + { + "x": 484.122, + "y": 175.633, + "index": 12, + "body": { + "#": 3975 + }, + "isInternal": false + }, + { + "x": 489.667, + "y": 174.656, + "index": 13, + "body": { + "#": 3975 + }, + "isInternal": false + }, + { + "x": 495.212, + "y": 175.633, + "index": 14, + "body": { + "#": 3975 + }, + "isInternal": false + }, + { + "x": 500.089, + "y": 178.449, + "index": 15, + "body": { + "#": 3975 + }, + "isInternal": false + }, + { + "x": 503.708, + "y": 182.762, + "index": 16, + "body": { + "#": 3975 + }, + "isInternal": false + }, + { + "x": 505.634, + "y": 188.054, + "index": 17, + "body": { + "#": 3975 + }, + "isInternal": false + }, + { + "x": 489.667, + "y": 190.869 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4003 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4005 + }, + "max": { + "#": 4006 + } + }, + { + "x": 473.7, + "y": 174.656 + }, + { + "x": 505.634, + "y": 207.082 + }, + { + "x": 489.667, + "y": 190.869 + }, + [ + { + "#": 4009 + }, + { + "#": 4010 + }, + { + "#": 4011 + }, + { + "#": 4012 + }, + { + "#": 4013 + }, + { + "#": 4014 + }, + { + "#": 4015 + }, + { + "#": 4016 + }, + { + "#": 4017 + } + ], + { + "x": -0.9397, + "y": -0.342 + }, + { + "x": -0.76605, + "y": -0.64278 + }, + { + "x": -0.50003, + "y": -0.86601 + }, + { + "x": -0.17352, + "y": -0.98483 + }, + { + "x": 0.17352, + "y": -0.98483 + }, + { + "x": 0.50003, + "y": -0.86601 + }, + { + "x": 0.76605, + "y": -0.64278 + }, + { + "x": 0.9397, + "y": -0.342 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 101, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4019 + }, + "angle": 0, + "vertices": { + "#": 4020 + }, + "position": { + "#": 4035 + }, + "force": { + "#": 4036 + }, + "torque": 0, + "positionImpulse": { + "#": 4037 + }, + "constraintImpulse": { + "#": 4038 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4039 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4040 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4041 + }, + "circleRadius": 13.03502, + "bounds": { + "#": 4043 + }, + "positionPrev": { + "#": 4046 + }, + "anglePrev": 0, + "axes": { + "#": 4047 + }, + "area": 516.04497, + "mass": 0.51604, + "inverseMass": 1.93782, + "inertia": 169.57253, + "inverseInertia": 0.0059, + "parent": { + "#": 4018 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4018 + } + ], + [ + { + "#": 4021 + }, + { + "#": 4022 + }, + { + "#": 4023 + }, + { + "#": 4024 + }, + { + "#": 4025 + }, + { + "#": 4026 + }, + { + "#": 4027 + }, + { + "#": 4028 + }, + { + "#": 4029 + }, + { + "#": 4030 + }, + { + "#": 4031 + }, + { + "#": 4032 + }, + { + "#": 4033 + }, + { + "#": 4034 + } + ], + { + "x": 531.05, + "y": 190.592, + "index": 0, + "body": { + "#": 4018 + }, + "isInternal": false + }, + { + "x": 528.533, + "y": 195.818, + "index": 1, + "body": { + "#": 4018 + }, + "isInternal": false + }, + { + "x": 523.998, + "y": 199.435, + "index": 2, + "body": { + "#": 4018 + }, + "isInternal": false + }, + { + "x": 518.342, + "y": 200.726, + "index": 3, + "body": { + "#": 4018 + }, + "isInternal": false + }, + { + "x": 512.686, + "y": 199.435, + "index": 4, + "body": { + "#": 4018 + }, + "isInternal": false + }, + { + "x": 508.151, + "y": 195.818, + "index": 5, + "body": { + "#": 4018 + }, + "isInternal": false + }, + { + "x": 505.634, + "y": 190.592, + "index": 6, + "body": { + "#": 4018 + }, + "isInternal": false + }, + { + "x": 505.634, + "y": 184.79, + "index": 7, + "body": { + "#": 4018 + }, + "isInternal": false + }, + { + "x": 508.151, + "y": 179.564, + "index": 8, + "body": { + "#": 4018 + }, + "isInternal": false + }, + { + "x": 512.686, + "y": 175.947, + "index": 9, + "body": { + "#": 4018 + }, + "isInternal": false + }, + { + "x": 518.342, + "y": 174.656, + "index": 10, + "body": { + "#": 4018 + }, + "isInternal": false + }, + { + "x": 523.998, + "y": 175.947, + "index": 11, + "body": { + "#": 4018 + }, + "isInternal": false + }, + { + "x": 528.533, + "y": 179.564, + "index": 12, + "body": { + "#": 4018 + }, + "isInternal": false + }, + { + "x": 531.05, + "y": 184.79, + "index": 13, + "body": { + "#": 4018 + }, + "isInternal": false + }, + { + "x": 518.342, + "y": 187.691 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4042 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4044 + }, + "max": { + "#": 4045 + } + }, + { + "x": 505.634, + "y": 174.656 + }, + { + "x": 531.05, + "y": 200.726 + }, + { + "x": 518.342, + "y": 187.691 + }, + [ + { + "#": 4048 + }, + { + "#": 4049 + }, + { + "#": 4050 + }, + { + "#": 4051 + }, + { + "#": 4052 + }, + { + "#": 4053 + }, + { + "#": 4054 + } + ], + { + "x": -0.90095, + "y": -0.43392 + }, + { + "x": -0.62354, + "y": -0.78179 + }, + { + "x": -0.22253, + "y": -0.97493 + }, + { + "x": 0.22253, + "y": -0.97493 + }, + { + "x": 0.62354, + "y": -0.78179 + }, + { + "x": 0.90095, + "y": -0.43392 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 102, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4056 + }, + "angle": 0, + "vertices": { + "#": 4057 + }, + "position": { + "#": 4078 + }, + "force": { + "#": 4079 + }, + "torque": 0, + "positionImpulse": { + "#": 4080 + }, + "constraintImpulse": { + "#": 4081 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4082 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4083 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4084 + }, + "circleRadius": 19.47595, + "bounds": { + "#": 4086 + }, + "positionPrev": { + "#": 4089 + }, + "anglePrev": 0, + "axes": { + "#": 4090 + }, + "area": 1172.14282, + "mass": 1.17214, + "inverseMass": 0.85314, + "inertia": 874.71176, + "inverseInertia": 0.00114, + "parent": { + "#": 4055 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4055 + } + ], + [ + { + "#": 4058 + }, + { + "#": 4059 + }, + { + "#": 4060 + }, + { + "#": 4061 + }, + { + "#": 4062 + }, + { + "#": 4063 + }, + { + "#": 4064 + }, + { + "#": 4065 + }, + { + "#": 4066 + }, + { + "#": 4067 + }, + { + "#": 4068 + }, + { + "#": 4069 + }, + { + "#": 4070 + }, + { + "#": 4071 + }, + { + "#": 4072 + }, + { + "#": 4073 + }, + { + "#": 4074 + }, + { + "#": 4075 + }, + { + "#": 4076 + }, + { + "#": 4077 + } + ], + { + "x": 569.522, + "y": 196.939, + "index": 0, + "body": { + "#": 4055 + }, + "isInternal": false + }, + { + "x": 567.639, + "y": 202.734, + "index": 1, + "body": { + "#": 4055 + }, + "isInternal": false + }, + { + "x": 564.058, + "y": 207.664, + "index": 2, + "body": { + "#": 4055 + }, + "isInternal": false + }, + { + "x": 559.128, + "y": 211.245, + "index": 3, + "body": { + "#": 4055 + }, + "isInternal": false + }, + { + "x": 553.333, + "y": 213.128, + "index": 4, + "body": { + "#": 4055 + }, + "isInternal": false + }, + { + "x": 547.239, + "y": 213.128, + "index": 5, + "body": { + "#": 4055 + }, + "isInternal": false + }, + { + "x": 541.444, + "y": 211.245, + "index": 6, + "body": { + "#": 4055 + }, + "isInternal": false + }, + { + "x": 536.514, + "y": 207.664, + "index": 7, + "body": { + "#": 4055 + }, + "isInternal": false + }, + { + "x": 532.933, + "y": 202.734, + "index": 8, + "body": { + "#": 4055 + }, + "isInternal": false + }, + { + "x": 531.05, + "y": 196.939, + "index": 9, + "body": { + "#": 4055 + }, + "isInternal": false + }, + { + "x": 531.05, + "y": 190.845, + "index": 10, + "body": { + "#": 4055 + }, + "isInternal": false + }, + { + "x": 532.933, + "y": 185.05, + "index": 11, + "body": { + "#": 4055 + }, + "isInternal": false + }, + { + "x": 536.514, + "y": 180.12, + "index": 12, + "body": { + "#": 4055 + }, + "isInternal": false + }, + { + "x": 541.444, + "y": 176.539, + "index": 13, + "body": { + "#": 4055 + }, + "isInternal": false + }, + { + "x": 547.239, + "y": 174.656, + "index": 14, + "body": { + "#": 4055 + }, + "isInternal": false + }, + { + "x": 553.333, + "y": 174.656, + "index": 15, + "body": { + "#": 4055 + }, + "isInternal": false + }, + { + "x": 559.128, + "y": 176.539, + "index": 16, + "body": { + "#": 4055 + }, + "isInternal": false + }, + { + "x": 564.058, + "y": 180.12, + "index": 17, + "body": { + "#": 4055 + }, + "isInternal": false + }, + { + "x": 567.639, + "y": 185.05, + "index": 18, + "body": { + "#": 4055 + }, + "isInternal": false + }, + { + "x": 569.522, + "y": 190.845, + "index": 19, + "body": { + "#": 4055 + }, + "isInternal": false + }, + { + "x": 550.286, + "y": 193.892 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4085 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4087 + }, + "max": { + "#": 4088 + } + }, + { + "x": 531.05, + "y": 174.656 + }, + { + "x": 569.522, + "y": 213.128 + }, + { + "x": 550.286, + "y": 193.892 + }, + [ + { + "#": 4091 + }, + { + "#": 4092 + }, + { + "#": 4093 + }, + { + "#": 4094 + }, + { + "#": 4095 + }, + { + "#": 4096 + }, + { + "#": 4097 + }, + { + "#": 4098 + }, + { + "#": 4099 + }, + { + "#": 4100 + } + ], + { + "x": -0.95105, + "y": -0.30903 + }, + { + "x": -0.80908, + "y": -0.58769 + }, + { + "x": -0.58769, + "y": -0.80908 + }, + { + "x": -0.30903, + "y": -0.95105 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30903, + "y": -0.95105 + }, + { + "x": 0.58769, + "y": -0.80908 + }, + { + "x": 0.80908, + "y": -0.58769 + }, + { + "x": 0.95105, + "y": -0.30903 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 103, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4102 + }, + "angle": 0, + "vertices": { + "#": 4103 + }, + "position": { + "#": 4122 + }, + "force": { + "#": 4123 + }, + "torque": 0, + "positionImpulse": { + "#": 4124 + }, + "constraintImpulse": { + "#": 4125 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4126 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4127 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4128 + }, + "circleRadius": 17.14116, + "bounds": { + "#": 4130 + }, + "positionPrev": { + "#": 4133 + }, + "anglePrev": 0, + "axes": { + "#": 4134 + }, + "area": 904.44039, + "mass": 0.90444, + "inverseMass": 1.10566, + "inertia": 520.80647, + "inverseInertia": 0.00192, + "parent": { + "#": 4101 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4101 + } + ], + [ + { + "#": 4104 + }, + { + "#": 4105 + }, + { + "#": 4106 + }, + { + "#": 4107 + }, + { + "#": 4108 + }, + { + "#": 4109 + }, + { + "#": 4110 + }, + { + "#": 4111 + }, + { + "#": 4112 + }, + { + "#": 4113 + }, + { + "#": 4114 + }, + { + "#": 4115 + }, + { + "#": 4116 + }, + { + "#": 4117 + }, + { + "#": 4118 + }, + { + "#": 4119 + }, + { + "#": 4120 + }, + { + "#": 4121 + } + ], + { + "x": 603.284, + "y": 194.774, + "index": 0, + "body": { + "#": 4101 + }, + "isInternal": false + }, + { + "x": 601.248, + "y": 200.368, + "index": 1, + "body": { + "#": 4101 + }, + "isInternal": false + }, + { + "x": 597.421, + "y": 204.928, + "index": 2, + "body": { + "#": 4101 + }, + "isInternal": false + }, + { + "x": 592.266, + "y": 207.904, + "index": 3, + "body": { + "#": 4101 + }, + "isInternal": false + }, + { + "x": 586.403, + "y": 208.938, + "index": 4, + "body": { + "#": 4101 + }, + "isInternal": false + }, + { + "x": 580.54, + "y": 207.904, + "index": 5, + "body": { + "#": 4101 + }, + "isInternal": false + }, + { + "x": 575.385, + "y": 204.928, + "index": 6, + "body": { + "#": 4101 + }, + "isInternal": false + }, + { + "x": 571.558, + "y": 200.368, + "index": 7, + "body": { + "#": 4101 + }, + "isInternal": false + }, + { + "x": 569.522, + "y": 194.774, + "index": 8, + "body": { + "#": 4101 + }, + "isInternal": false + }, + { + "x": 569.522, + "y": 188.82, + "index": 9, + "body": { + "#": 4101 + }, + "isInternal": false + }, + { + "x": 571.558, + "y": 183.226, + "index": 10, + "body": { + "#": 4101 + }, + "isInternal": false + }, + { + "x": 575.385, + "y": 178.666, + "index": 11, + "body": { + "#": 4101 + }, + "isInternal": false + }, + { + "x": 580.54, + "y": 175.69, + "index": 12, + "body": { + "#": 4101 + }, + "isInternal": false + }, + { + "x": 586.403, + "y": 174.656, + "index": 13, + "body": { + "#": 4101 + }, + "isInternal": false + }, + { + "x": 592.266, + "y": 175.69, + "index": 14, + "body": { + "#": 4101 + }, + "isInternal": false + }, + { + "x": 597.421, + "y": 178.666, + "index": 15, + "body": { + "#": 4101 + }, + "isInternal": false + }, + { + "x": 601.248, + "y": 183.226, + "index": 16, + "body": { + "#": 4101 + }, + "isInternal": false + }, + { + "x": 603.284, + "y": 188.82, + "index": 17, + "body": { + "#": 4101 + }, + "isInternal": false + }, + { + "x": 586.403, + "y": 191.797 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4129 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4131 + }, + "max": { + "#": 4132 + } + }, + { + "x": 569.522, + "y": 174.656 + }, + { + "x": 603.284, + "y": 208.938 + }, + { + "x": 586.403, + "y": 191.797 + }, + [ + { + "#": 4135 + }, + { + "#": 4136 + }, + { + "#": 4137 + }, + { + "#": 4138 + }, + { + "#": 4139 + }, + { + "#": 4140 + }, + { + "#": 4141 + }, + { + "#": 4142 + }, + { + "#": 4143 + } + ], + { + "x": -0.9397, + "y": -0.34201 + }, + { + "x": -0.76599, + "y": -0.64286 + }, + { + "x": -0.49997, + "y": -0.86604 + }, + { + "x": -0.17368, + "y": -0.9848 + }, + { + "x": 0.17368, + "y": -0.9848 + }, + { + "x": 0.49997, + "y": -0.86604 + }, + { + "x": 0.76599, + "y": -0.64286 + }, + { + "x": 0.9397, + "y": -0.34201 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 104, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4145 + }, + "angle": 0, + "vertices": { + "#": 4146 + }, + "position": { + "#": 4159 + }, + "force": { + "#": 4160 + }, + "torque": 0, + "positionImpulse": { + "#": 4161 + }, + "constraintImpulse": { + "#": 4162 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4163 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4164 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4165 + }, + "circleRadius": 10.59855, + "bounds": { + "#": 4167 + }, + "positionPrev": { + "#": 4170 + }, + "anglePrev": 0, + "axes": { + "#": 4171 + }, + "area": 336.96051, + "mass": 0.33696, + "inverseMass": 2.96771, + "inertia": 72.31452, + "inverseInertia": 0.01383, + "parent": { + "#": 4144 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4144 + } + ], + [ + { + "#": 4147 + }, + { + "#": 4148 + }, + { + "#": 4149 + }, + { + "#": 4150 + }, + { + "#": 4151 + }, + { + "#": 4152 + }, + { + "#": 4153 + }, + { + "#": 4154 + }, + { + "#": 4155 + }, + { + "#": 4156 + }, + { + "#": 4157 + }, + { + "#": 4158 + } + ], + { + "x": 623.758, + "y": 187.636, + "index": 0, + "body": { + "#": 4144 + }, + "isInternal": false + }, + { + "x": 621.015, + "y": 192.387, + "index": 1, + "body": { + "#": 4144 + }, + "isInternal": false + }, + { + "x": 616.264, + "y": 195.13, + "index": 2, + "body": { + "#": 4144 + }, + "isInternal": false + }, + { + "x": 610.778, + "y": 195.13, + "index": 3, + "body": { + "#": 4144 + }, + "isInternal": false + }, + { + "x": 606.027, + "y": 192.387, + "index": 4, + "body": { + "#": 4144 + }, + "isInternal": false + }, + { + "x": 603.284, + "y": 187.636, + "index": 5, + "body": { + "#": 4144 + }, + "isInternal": false + }, + { + "x": 603.284, + "y": 182.15, + "index": 6, + "body": { + "#": 4144 + }, + "isInternal": false + }, + { + "x": 606.027, + "y": 177.399, + "index": 7, + "body": { + "#": 4144 + }, + "isInternal": false + }, + { + "x": 610.778, + "y": 174.656, + "index": 8, + "body": { + "#": 4144 + }, + "isInternal": false + }, + { + "x": 616.264, + "y": 174.656, + "index": 9, + "body": { + "#": 4144 + }, + "isInternal": false + }, + { + "x": 621.015, + "y": 177.399, + "index": 10, + "body": { + "#": 4144 + }, + "isInternal": false + }, + { + "x": 623.758, + "y": 182.15, + "index": 11, + "body": { + "#": 4144 + }, + "isInternal": false + }, + { + "x": 613.521, + "y": 184.893 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4166 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4168 + }, + "max": { + "#": 4169 + } + }, + { + "x": 603.284, + "y": 174.656 + }, + { + "x": 623.758, + "y": 195.13 + }, + { + "x": 613.521, + "y": 184.893 + }, + [ + { + "#": 4172 + }, + { + "#": 4173 + }, + { + "#": 4174 + }, + { + "#": 4175 + }, + { + "#": 4176 + }, + { + "#": 4177 + } + ], + { + "x": -0.86602, + "y": -0.5 + }, + { + "x": -0.5, + "y": -0.86602 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.5, + "y": -0.86602 + }, + { + "x": 0.86602, + "y": -0.5 + }, + { + "x": 1, + "y": 0 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 4182 + }, + "max": { + "#": 4183 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/avalanche/avalanche-10.json b/test/node/refs/avalanche/avalanche-10.json new file mode 100644 index 00000000..db41f83d --- /dev/null +++ b/test/node/refs/avalanche/avalanche-10.json @@ -0,0 +1,41662 @@ +[ + { + "id": 45, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 163 + }, + "composites": { + "#": 164 + }, + "label": "World", + "gravity": { + "#": 4287 + }, + "bounds": { + "#": 4288 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + }, + { + "#": 94 + }, + { + "#": 117 + }, + { + "#": 140 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + { + "id": 105, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 95 + }, + "angle": 0.1885, + "vertices": { + "#": 96 + }, + "position": { + "#": 101 + }, + "force": { + "#": 102 + }, + "torque": 0, + "positionImpulse": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 105 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 106 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 107 + }, + "bounds": { + "#": 109 + }, + "positionPrev": { + "#": 112 + }, + "anglePrev": 0.1885, + "axes": { + "#": 113 + }, + "area": 14000, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 94 + }, + "sleepCounter": 0, + "region": { + "#": 116 + } + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + } + ], + { + "x": -141.92672, + "y": 74.59367, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 545.67435, + "y": 205.76059, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 541.92672, + "y": 225.40633, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": -145.67435, + "y": 94.23941, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 200, + "y": 150 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 108 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 110 + }, + "max": { + "#": 111 + } + }, + { + "x": -145.67435, + "y": 74.59367 + }, + { + "x": 545.67435, + "y": 225.40633 + }, + { + "x": 200, + "y": 150 + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": -0.18738, + "y": 0.98229 + }, + { + "x": -0.98229, + "y": -0.18738 + }, + { + "id": "-4,11,1,4", + "startCol": -4, + "endCol": 11, + "startRow": 1, + "endRow": 4 + }, + { + "id": 106, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 118 + }, + "angle": -0.1885, + "vertices": { + "#": 119 + }, + "position": { + "#": 124 + }, + "force": { + "#": 125 + }, + "torque": 0, + "positionImpulse": { + "#": 126 + }, + "constraintImpulse": { + "#": 127 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 128 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 129 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 130 + }, + "bounds": { + "#": 132 + }, + "positionPrev": { + "#": 135 + }, + "anglePrev": -0.1885, + "axes": { + "#": 136 + }, + "area": 14000, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 117 + }, + "sleepCounter": 0, + "region": { + "#": 139 + } + }, + [ + { + "#": 117 + } + ], + [ + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + } + ], + { + "x": 154.32565, + "y": 405.76059, + "index": 0, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 841.92672, + "y": 274.59367, + "index": 1, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 845.67435, + "y": 294.23941, + "index": 2, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 158.07328, + "y": 425.40633, + "index": 3, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 500, + "y": 350 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 131 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 133 + }, + "max": { + "#": 134 + } + }, + { + "x": 154.32565, + "y": 274.59367 + }, + { + "x": 845.67435, + "y": 425.40633 + }, + { + "x": 500, + "y": 350 + }, + [ + { + "#": 137 + }, + { + "#": 138 + } + ], + { + "x": 0.18738, + "y": 0.98229 + }, + { + "x": -0.98229, + "y": 0.18738 + }, + { + "id": "3,17,5,8", + "startCol": 3, + "endCol": 17, + "startRow": 5, + "endRow": 8 + }, + { + "id": 107, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 141 + }, + "angle": 0.12566, + "vertices": { + "#": 142 + }, + "position": { + "#": 147 + }, + "force": { + "#": 148 + }, + "torque": 0, + "positionImpulse": { + "#": 149 + }, + "constraintImpulse": { + "#": 150 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 151 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 152 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 153 + }, + "bounds": { + "#": 155 + }, + "positionPrev": { + "#": 158 + }, + "anglePrev": 0.12566, + "axes": { + "#": 159 + }, + "area": 14000, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 140 + }, + "sleepCounter": 0, + "region": { + "#": 162 + } + }, + [ + { + "#": 140 + } + ], + [ + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + } + ], + { + "x": -5.98681, + "y": 526.21222, + "index": 0, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 688.49348, + "y": 613.94548, + "index": 1, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 685.98681, + "y": 633.78778, + "index": 2, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": -8.49348, + "y": 546.05452, + "index": 3, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 340, + "y": 580 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 154 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 156 + }, + "max": { + "#": 157 + } + }, + { + "x": -8.49348, + "y": 526.21222 + }, + { + "x": 688.49348, + "y": 633.78778 + }, + { + "x": 340, + "y": 580 + }, + [ + { + "#": 160 + }, + { + "#": 161 + } + ], + { + "x": -0.12533, + "y": 0.99211 + }, + { + "x": -0.99211, + "y": -0.12533 + }, + { + "id": "-1,14,10,13", + "startCol": -1, + "endCol": 14, + "startRow": 10, + "endRow": 13 + }, + [], + [ + { + "#": 165 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 166 + }, + "constraints": { + "#": 4285 + }, + "composites": { + "#": 4286 + }, + "label": "Stack" + }, + [ + { + "#": 167 + }, + { + "#": 205 + }, + { + "#": 246 + }, + { + "#": 293 + }, + { + "#": 331 + }, + { + "#": 378 + }, + { + "#": 413 + }, + { + "#": 457 + }, + { + "#": 498 + }, + { + "#": 539 + }, + { + "#": 577 + }, + { + "#": 621 + }, + { + "#": 659 + }, + { + "#": 706 + }, + { + "#": 753 + }, + { + "#": 797 + }, + { + "#": 835 + }, + { + "#": 870 + }, + { + "#": 917 + }, + { + "#": 955 + }, + { + "#": 1002 + }, + { + "#": 1046 + }, + { + "#": 1081 + }, + { + "#": 1125 + }, + { + "#": 1172 + }, + { + "#": 1207 + }, + { + "#": 1248 + }, + { + "#": 1286 + }, + { + "#": 1324 + }, + { + "#": 1371 + }, + { + "#": 1418 + }, + { + "#": 1459 + }, + { + "#": 1497 + }, + { + "#": 1535 + }, + { + "#": 1579 + }, + { + "#": 1626 + }, + { + "#": 1667 + }, + { + "#": 1705 + }, + { + "#": 1752 + }, + { + "#": 1787 + }, + { + "#": 1831 + }, + { + "#": 1878 + }, + { + "#": 1916 + }, + { + "#": 1951 + }, + { + "#": 1986 + }, + { + "#": 2030 + }, + { + "#": 2065 + }, + { + "#": 2112 + }, + { + "#": 2150 + }, + { + "#": 2194 + }, + { + "#": 2235 + }, + { + "#": 2276 + }, + { + "#": 2317 + }, + { + "#": 2355 + }, + { + "#": 2399 + }, + { + "#": 2443 + }, + { + "#": 2487 + }, + { + "#": 2525 + }, + { + "#": 2569 + }, + { + "#": 2616 + }, + { + "#": 2657 + }, + { + "#": 2704 + }, + { + "#": 2745 + }, + { + "#": 2789 + }, + { + "#": 2827 + }, + { + "#": 2868 + }, + { + "#": 2903 + }, + { + "#": 2947 + }, + { + "#": 2985 + }, + { + "#": 3023 + }, + { + "#": 3058 + }, + { + "#": 3099 + }, + { + "#": 3140 + }, + { + "#": 3187 + }, + { + "#": 3222 + }, + { + "#": 3257 + }, + { + "#": 3298 + }, + { + "#": 3342 + }, + { + "#": 3380 + }, + { + "#": 3418 + }, + { + "#": 3456 + }, + { + "#": 3494 + }, + { + "#": 3532 + }, + { + "#": 3576 + }, + { + "#": 3623 + }, + { + "#": 3661 + }, + { + "#": 3708 + }, + { + "#": 3755 + }, + { + "#": 3793 + }, + { + "#": 3828 + }, + { + "#": 3863 + }, + { + "#": 3907 + }, + { + "#": 3942 + }, + { + "#": 3983 + }, + { + "#": 4030 + }, + { + "#": 4077 + }, + { + "#": 4121 + }, + { + "#": 4159 + }, + { + "#": 4206 + }, + { + "#": 4250 + } + ], + { + "id": 5, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 168 + }, + "angle": 0.02794, + "vertices": { + "#": 169 + }, + "position": { + "#": 184 + }, + "force": { + "#": 185 + }, + "torque": 0, + "positionImpulse": { + "#": 186 + }, + "constraintImpulse": { + "#": 187 + }, + "totalContacts": 0, + "speed": 0.42074, + "angularSpeed": 0.00626, + "velocity": { + "#": 188 + }, + "angularVelocity": 0.00766, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 189 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 190 + }, + "circleRadius": 12.11321, + "bounds": { + "#": 192 + }, + "positionPrev": { + "#": 195 + }, + "anglePrev": 0.0202, + "axes": { + "#": 196 + }, + "area": 445.64723, + "mass": 0.44565, + "inverseMass": 2.24393, + "inertia": 126.46281, + "inverseInertia": 0.00791, + "parent": { + "#": 167 + }, + "sleepCounter": 0, + "region": { + "#": 204 + } + }, + [ + { + "#": 167 + } + ], + [ + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + } + ], + { + "x": 43.80064, + "y": 37.41322, + "index": 0, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 41.32587, + "y": 42.20296, + "index": 1, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 37.0196, + "y": 45.44593, + "index": 2, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 31.73216, + "y": 46.49764, + "index": 3, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 26.5117, + "y": 45.15228, + "index": 4, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 22.39326, + "y": 41.67387, + "index": 5, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 20.18985, + "y": 36.7534, + "index": 6, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 20.34042, + "y": 31.36551, + "index": 7, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 22.81519, + "y": 26.57577, + "index": 8, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 27.12146, + "y": 23.3328, + "index": 9, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 32.4089, + "y": 22.28109, + "index": 10, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 37.62936, + "y": 23.62645, + "index": 11, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 41.7478, + "y": 27.10485, + "index": 12, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 43.9512, + "y": 32.02532, + "index": 13, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 32.07053, + "y": 34.38936 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.0247, + "y": 0.14591 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 191 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 193 + }, + "max": { + "#": 194 + } + }, + { + "x": 20.18985, + "y": 22.28109 + }, + { + "x": 43.95661, + "y": 46.91834 + }, + { + "x": 32.04745, + "y": 34.25591 + }, + [ + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + } + ], + { + "x": -0.88842, + "y": -0.45903 + }, + { + "x": -0.60157, + "y": -0.79882 + }, + { + "x": -0.19508, + "y": -0.98079 + }, + { + "x": 0.24955, + "y": -0.96836 + }, + { + "x": 0.64525, + "y": -0.76397 + }, + { + "x": 0.91267, + "y": -0.4087 + }, + { + "x": 0.99961, + "y": 0.02793 + }, + { + "id": "0,0,0,0", + "startCol": 0, + "endCol": 0, + "startRow": 0, + "endRow": 0 + }, + { + "id": 6, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 206 + }, + "angle": 0.00476, + "vertices": { + "#": 207 + }, + "position": { + "#": 224 + }, + "force": { + "#": 225 + }, + "torque": 0, + "positionImpulse": { + "#": 226 + }, + "constraintImpulse": { + "#": 227 + }, + "totalContacts": 0, + "speed": 0.75893, + "angularSpeed": 0.00103, + "velocity": { + "#": 228 + }, + "angularVelocity": 0.00064, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 229 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 230 + }, + "circleRadius": 15.46772, + "bounds": { + "#": 232 + }, + "positionPrev": { + "#": 235 + }, + "anglePrev": 0.00412, + "axes": { + "#": 236 + }, + "area": 732.47528, + "mass": 0.73248, + "inverseMass": 1.36523, + "inertia": 341.60523, + "inverseInertia": 0.00293, + "parent": { + "#": 205 + }, + "sleepCounter": 0, + "region": { + "#": 245 + } + }, + [ + { + "#": 205 + } + ], + [ + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + } + ], + { + "x": 76.103, + "y": 46.84681, + "index": 0, + "body": { + "#": 205 + }, + "isInternal": false + }, + { + "x": 73.76648, + "y": 52.41074, + "index": 1, + "body": { + "#": 205 + }, + "isInternal": false + }, + { + "x": 69.4782, + "y": 56.65837, + "index": 2, + "body": { + "#": 205 + }, + "isInternal": false + }, + { + "x": 63.89227, + "y": 58.9418, + "index": 3, + "body": { + "#": 205 + }, + "isInternal": false + }, + { + "x": 57.85633, + "y": 58.91306, + "index": 4, + "body": { + "#": 205 + }, + "isInternal": false + }, + { + "x": 52.2924, + "y": 56.57653, + "index": 5, + "body": { + "#": 205 + }, + "isInternal": false + }, + { + "x": 48.04477, + "y": 52.28826, + "index": 6, + "body": { + "#": 205 + }, + "isInternal": false + }, + { + "x": 45.76134, + "y": 46.70232, + "index": 7, + "body": { + "#": 205 + }, + "isInternal": false + }, + { + "x": 45.79008, + "y": 40.66639, + "index": 8, + "body": { + "#": 205 + }, + "isInternal": false + }, + { + "x": 48.12661, + "y": 35.10245, + "index": 9, + "body": { + "#": 205 + }, + "isInternal": false + }, + { + "x": 52.41488, + "y": 30.85483, + "index": 10, + "body": { + "#": 205 + }, + "isInternal": false + }, + { + "x": 58.00082, + "y": 28.5714, + "index": 11, + "body": { + "#": 205 + }, + "isInternal": false + }, + { + "x": 64.03675, + "y": 28.60014, + "index": 12, + "body": { + "#": 205 + }, + "isInternal": false + }, + { + "x": 69.60069, + "y": 30.93666, + "index": 13, + "body": { + "#": 205 + }, + "isInternal": false + }, + { + "x": 73.84831, + "y": 35.22494, + "index": 14, + "body": { + "#": 205 + }, + "isInternal": false + }, + { + "x": 76.13174, + "y": 40.81088, + "index": 15, + "body": { + "#": 205 + }, + "isInternal": false + }, + { + "x": 60.94654, + "y": 43.7566 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.31989, + "y": 0.58444 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 231 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 233 + }, + "max": { + "#": 234 + } + }, + { + "x": 45.76134, + "y": 28.5714 + }, + { + "x": 76.32543, + "y": 59.6756 + }, + { + "x": 60.62665, + "y": 43.17216 + }, + [ + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + } + ], + { + "x": -0.922, + "y": -0.38719 + }, + { + "x": -0.70373, + "y": -0.71047 + }, + { + "x": -0.37839, + "y": -0.92565 + }, + { + "x": 0.00476, + "y": -0.99999 + }, + { + "x": 0.38719, + "y": -0.922 + }, + { + "x": 0.71047, + "y": -0.70373 + }, + { + "x": 0.92565, + "y": -0.37839 + }, + { + "x": 0.99999, + "y": 0.00476 + }, + { + "id": "0,1,0,1", + "startCol": 0, + "endCol": 1, + "startRow": 0, + "endRow": 1 + }, + { + "id": 7, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 247 + }, + "angle": -0.02393, + "vertices": { + "#": 248 + }, + "position": { + "#": 269 + }, + "force": { + "#": 270 + }, + "torque": 0, + "positionImpulse": { + "#": 271 + }, + "constraintImpulse": { + "#": 272 + }, + "totalContacts": 0, + "speed": 0.62759, + "angularSpeed": 0.00568, + "velocity": { + "#": 273 + }, + "angularVelocity": -0.00631, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 274 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 275 + }, + "circleRadius": 18.19466, + "bounds": { + "#": 277 + }, + "positionPrev": { + "#": 280 + }, + "anglePrev": -0.01792, + "axes": { + "#": 281 + }, + "area": 1023.02802, + "mass": 1.02303, + "inverseMass": 0.97749, + "inertia": 666.31404, + "inverseInertia": 0.0015, + "parent": { + "#": 246 + }, + "sleepCounter": 0, + "region": { + "#": 292 + } + }, + [ + { + "#": 246 + } + ], + [ + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + } + ], + { + "x": 111.89896, + "y": 47.35765, + "index": 0, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 110.27002, + "y": 52.81219, + "index": 1, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 107.03519, + "y": 57.49694, + "index": 2, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 102.51057, + "y": 60.95219, + "index": 3, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 97.14021, + "y": 62.84024, + "index": 4, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 91.44984, + "y": 62.97644, + "index": 5, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 85.9953, + "y": 61.34749, + "index": 6, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 81.31056, + "y": 58.11266, + "index": 7, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 77.8553, + "y": 53.58805, + "index": 8, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 75.96726, + "y": 48.21769, + "index": 9, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 75.83105, + "y": 42.52732, + "index": 10, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 77.46, + "y": 37.07278, + "index": 11, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 80.69483, + "y": 32.38803, + "index": 12, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 85.21945, + "y": 28.93278, + "index": 13, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 90.5898, + "y": 27.04473, + "index": 14, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 96.28017, + "y": 26.90853, + "index": 15, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 101.73472, + "y": 28.53748, + "index": 16, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 106.41946, + "y": 31.7723, + "index": 17, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 109.87472, + "y": 36.29692, + "index": 18, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 111.76276, + "y": 41.66728, + "index": 19, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 93.86501, + "y": 44.94248 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.31615, + "y": 0.3631 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 276 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 278 + }, + "max": { + "#": 279 + } + }, + { + "x": 75.83105, + "y": 26.90853 + }, + { + "x": 112.17092, + "y": 63.54204 + }, + { + "x": 93.5471, + "y": 44.50635 + }, + [ + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + } + ], + { + "x": -0.95818, + "y": -0.28615 + }, + { + "x": -0.82289, + "y": -0.56821 + }, + { + "x": -0.60692, + "y": -0.79476 + }, + { + "x": -0.33167, + "y": -0.9434 + }, + { + "x": -0.02393, + "y": -0.99971 + }, + { + "x": 0.28615, + "y": -0.95818 + }, + { + "x": 0.56821, + "y": -0.82289 + }, + { + "x": 0.79476, + "y": -0.60692 + }, + { + "x": 0.9434, + "y": -0.33167 + }, + { + "x": 0.99971, + "y": -0.02393 + }, + { + "id": "1,2,0,1", + "startCol": 1, + "endCol": 2, + "startRow": 0, + "endRow": 1 + }, + { + "id": 8, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 294 + }, + "angle": 0.01146, + "vertices": { + "#": 295 + }, + "position": { + "#": 310 + }, + "force": { + "#": 311 + }, + "torque": 0, + "positionImpulse": { + "#": 312 + }, + "constraintImpulse": { + "#": 313 + }, + "totalContacts": 0, + "speed": 2.90554, + "angularSpeed": 0.00443, + "velocity": { + "#": 314 + }, + "angularVelocity": 0.00504, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 315 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 316 + }, + "circleRadius": 13.75081, + "bounds": { + "#": 318 + }, + "positionPrev": { + "#": 321 + }, + "anglePrev": 0.00648, + "axes": { + "#": 322 + }, + "area": 574.28005, + "mass": 0.57428, + "inverseMass": 1.74131, + "inertia": 210.00414, + "inverseInertia": 0.00476, + "parent": { + "#": 293 + }, + "sleepCounter": 0, + "region": { + "#": 330 + } + }, + [ + { + "#": 293 + } + ], + [ + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + } + ], + { + "x": 138.20684, + "y": 54.71596, + "index": 0, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 135.48884, + "y": 60.19818, + "index": 1, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 130.66043, + "y": 63.9591, + "index": 2, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 124.67922, + "y": 65.25265, + "index": 3, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 118.72922, + "y": 63.82238, + "index": 4, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 113.98826, + "y": 59.9518, + "index": 5, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 111.3966, + "y": 54.40874, + "index": 6, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 111.46673, + "y": 48.28914, + "index": 7, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 114.18472, + "y": 42.80692, + "index": 8, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 119.01313, + "y": 39.046, + "index": 9, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 124.99435, + "y": 37.75245, + "index": 10, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 130.94435, + "y": 39.18273, + "index": 11, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 135.68531, + "y": 43.0533, + "index": 12, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 138.27697, + "y": 48.59636, + "index": 13, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 124.83678, + "y": 51.50255 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.01627, + "y": 0.0358 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.03934, + "y": 2.89807 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 317 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 319 + }, + "max": { + "#": 320 + } + }, + { + "x": 111.3966, + "y": 37.75245 + }, + { + "x": 138.45853, + "y": 68.15251 + }, + { + "x": 124.78426, + "y": 48.60433 + }, + [ + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + } + ], + { + "x": -0.89593, + "y": -0.44419 + }, + { + "x": -0.6145, + "y": -0.78892 + }, + { + "x": -0.21138, + "y": -0.9774 + }, + { + "x": 0.23372, + "y": -0.9723 + }, + { + "x": 0.63242, + "y": -0.77463 + }, + { + "x": 0.90588, + "y": -0.42354 + }, + { + "x": 0.99993, + "y": 0.01146 + }, + { + "id": "2,2,0,1", + "startCol": 2, + "endCol": 2, + "startRow": 0, + "endRow": 1 + }, + { + "id": 9, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 332 + }, + "angle": 0.01084, + "vertices": { + "#": 333 + }, + "position": { + "#": 354 + }, + "force": { + "#": 355 + }, + "torque": 0, + "positionImpulse": { + "#": 356 + }, + "constraintImpulse": { + "#": 357 + }, + "totalContacts": 0, + "speed": 2.53425, + "angularSpeed": 0.00398, + "velocity": { + "#": 358 + }, + "angularVelocity": 0.00414, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 359 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 360 + }, + "circleRadius": 19.66705, + "bounds": { + "#": 362 + }, + "positionPrev": { + "#": 365 + }, + "anglePrev": 0.00672, + "axes": { + "#": 366 + }, + "area": 1195.26015, + "mass": 1.19526, + "inverseMass": 0.83664, + "inertia": 909.55462, + "inverseInertia": 0.0011, + "parent": { + "#": 331 + }, + "sleepCounter": 0, + "region": { + "#": 377 + } + }, + [ + { + "#": 331 + } + ], + [ + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + } + ], + { + "x": 176.93091, + "y": 58.45528, + "index": 0, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 174.96559, + "y": 64.28632, + "index": 1, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 171.29584, + "y": 69.22484, + "index": 2, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 166.27894, + "y": 72.78667, + "index": 3, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 160.40667, + "y": 74.62512, + "index": 4, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 154.25303, + "y": 74.55842, + "index": 5, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 148.42199, + "y": 72.5931, + "index": 6, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 143.48348, + "y": 68.92335, + "index": 7, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 139.92165, + "y": 63.90645, + "index": 8, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 138.08319, + "y": 58.03418, + "index": 9, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 138.14989, + "y": 51.88054, + "index": 10, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 140.11521, + "y": 46.0495, + "index": 11, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 143.78496, + "y": 41.11099, + "index": 12, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 148.80186, + "y": 37.54916, + "index": 13, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 154.67413, + "y": 35.7107, + "index": 14, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 160.82777, + "y": 35.7774, + "index": 15, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 166.65881, + "y": 37.74272, + "index": 16, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 171.59732, + "y": 41.41247, + "index": 17, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 175.15915, + "y": 46.42937, + "index": 18, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 176.99761, + "y": 52.30164, + "index": 19, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 157.5404, + "y": 55.16791 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.25912, + "y": 0.00297 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.04157, + "y": 2.53496 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 361 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 363 + }, + "max": { + "#": 364 + } + }, + { + "x": 138.05642, + "y": 35.7107 + }, + { + "x": 176.99761, + "y": 77.15923 + }, + { + "x": 157.50517, + "y": 52.63303 + }, + [ + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + } + ], + { + "x": -0.94762, + "y": -0.31939 + }, + { + "x": -0.80266, + "y": -0.59644 + }, + { + "x": -0.5789, + "y": -0.8154 + }, + { + "x": -0.29877, + "y": -0.95432 + }, + { + "x": 0.01084, + "y": -0.99994 + }, + { + "x": 0.31939, + "y": -0.94762 + }, + { + "x": 0.59644, + "y": -0.80266 + }, + { + "x": 0.8154, + "y": -0.5789 + }, + { + "x": 0.95432, + "y": -0.29877 + }, + { + "x": 0.99994, + "y": 0.01084 + }, + { + "id": "2,3,0,1", + "startCol": 2, + "endCol": 3, + "startRow": 0, + "endRow": 1 + }, + { + "id": 10, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 379 + }, + "angle": 0.02552, + "vertices": { + "#": 380 + }, + "position": { + "#": 393 + }, + "force": { + "#": 394 + }, + "torque": 0, + "positionImpulse": { + "#": 395 + }, + "constraintImpulse": { + "#": 396 + }, + "totalContacts": 0, + "speed": 2.39678, + "angularSpeed": 0.01811, + "velocity": { + "#": 397 + }, + "angularVelocity": 0.01873, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 398 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 399 + }, + "circleRadius": 11.99276, + "bounds": { + "#": 401 + }, + "positionPrev": { + "#": 404 + }, + "anglePrev": 0.00645, + "axes": { + "#": 405 + }, + "area": 431.46854, + "mass": 0.43147, + "inverseMass": 2.31767, + "inertia": 118.56754, + "inverseInertia": 0.00843, + "parent": { + "#": 378 + }, + "sleepCounter": 0, + "region": { + "#": 412 + } + }, + [ + { + "#": 378 + } + ], + [ + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + } + ], + { + "x": 199.2463, + "y": 51.6818, + "index": 0, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 196.00615, + "y": 56.97686, + "index": 1, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 190.5527, + "y": 59.94268, + "index": 2, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 184.34672, + "y": 59.78429, + "index": 3, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 179.05167, + "y": 56.54414, + "index": 4, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 176.08584, + "y": 51.09069, + "index": 5, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 176.24424, + "y": 44.88471, + "index": 6, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 179.48439, + "y": 39.58966, + "index": 7, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 184.93784, + "y": 36.62383, + "index": 8, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 191.14382, + "y": 36.78222, + "index": 9, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 196.43887, + "y": 40.02238, + "index": 10, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 199.40469, + "y": 45.47582, + "index": 11, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 187.74527, + "y": 48.28326 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.06122, + "y": 2.39234 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 400 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 402 + }, + "max": { + "#": 403 + } + }, + { + "x": 176.08584, + "y": 36.62383 + }, + { + "x": 199.52453, + "y": 62.33647 + }, + { + "x": 187.71614, + "y": 45.89173 + }, + [ + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + } + ], + { + "x": -0.85297, + "y": -0.52195 + }, + { + "x": -0.47776, + "y": -0.87849 + }, + { + "x": 0.02551, + "y": -0.99967 + }, + { + "x": 0.52195, + "y": -0.85297 + }, + { + "x": 0.87849, + "y": -0.47776 + }, + { + "x": 0.99967, + "y": 0.02551 + }, + { + "id": "3,4,0,1", + "startCol": 3, + "endCol": 4, + "startRow": 0, + "endRow": 1 + }, + { + "id": 11, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 414 + }, + "angle": 0.00314, + "vertices": { + "#": 415 + }, + "position": { + "#": 434 + }, + "force": { + "#": 435 + }, + "torque": 0, + "positionImpulse": { + "#": 436 + }, + "constraintImpulse": { + "#": 437 + }, + "totalContacts": 0, + "speed": 2.91124, + "angularSpeed": 0.00196, + "velocity": { + "#": 438 + }, + "angularVelocity": 0.00224, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 439 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 440 + }, + "circleRadius": 16.40694, + "bounds": { + "#": 442 + }, + "positionPrev": { + "#": 445 + }, + "anglePrev": 0.00091, + "axes": { + "#": 446 + }, + "area": 828.5976, + "mass": 0.8286, + "inverseMass": 1.20686, + "inertia": 437.12315, + "inverseInertia": 0.00229, + "parent": { + "#": 413 + }, + "sleepCounter": 0, + "region": { + "#": 456 + } + }, + [ + { + "#": 413 + } + ], + [ + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + } + ], + { + "x": 231.49922, + "y": 57.0506, + "index": 0, + "body": { + "#": 413 + }, + "isInternal": false + }, + { + "x": 229.53341, + "y": 62.39845, + "index": 1, + "body": { + "#": 413 + }, + "isInternal": false + }, + { + "x": 225.85672, + "y": 66.75192, + "index": 2, + "body": { + "#": 413 + }, + "isInternal": false + }, + { + "x": 220.91379, + "y": 69.5854, + "index": 3, + "body": { + "#": 413 + }, + "isInternal": false + }, + { + "x": 215.2987, + "y": 70.55776, + "index": 4, + "body": { + "#": 413 + }, + "isInternal": false + }, + { + "x": 209.68984, + "y": 69.55013, + "index": 5, + "body": { + "#": 413 + }, + "isInternal": false + }, + { + "x": 204.76482, + "y": 66.68564, + "index": 6, + "body": { + "#": 413 + }, + "isInternal": false + }, + { + "x": 201.11555, + "y": 62.30916, + "index": 7, + "body": { + "#": 413 + }, + "isInternal": false + }, + { + "x": 199.18338, + "y": 56.94906, + "index": 8, + "body": { + "#": 413 + }, + "isInternal": false + }, + { + "x": 199.20129, + "y": 51.25109, + "index": 9, + "body": { + "#": 413 + }, + "isInternal": false + }, + { + "x": 201.1671, + "y": 45.90324, + "index": 10, + "body": { + "#": 413 + }, + "isInternal": false + }, + { + "x": 204.8438, + "y": 41.54977, + "index": 11, + "body": { + "#": 413 + }, + "isInternal": false + }, + { + "x": 209.78672, + "y": 38.71629, + "index": 12, + "body": { + "#": 413 + }, + "isInternal": false + }, + { + "x": 215.40181, + "y": 37.74392, + "index": 13, + "body": { + "#": 413 + }, + "isInternal": false + }, + { + "x": 221.01067, + "y": 38.75155, + "index": 14, + "body": { + "#": 413 + }, + "isInternal": false + }, + { + "x": 225.93569, + "y": 41.61604, + "index": 15, + "body": { + "#": 413 + }, + "isInternal": false + }, + { + "x": 229.58496, + "y": 45.99253, + "index": 16, + "body": { + "#": 413 + }, + "isInternal": false + }, + { + "x": 231.51713, + "y": 51.35263, + "index": 17, + "body": { + "#": 413 + }, + "isInternal": false + }, + { + "x": 215.35026, + "y": 54.15084 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00901, + "y": 0.00203 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.02768, + "y": 2.91215 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 441 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 443 + }, + "max": { + "#": 444 + } + }, + { + "x": 199.15937, + "y": 37.74392 + }, + { + "x": 231.51713, + "y": 73.4689 + }, + { + "x": 215.37577, + "y": 51.23869 + }, + [ + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + } + ], + { + "x": -0.9386, + "y": -0.34502 + }, + { + "x": -0.76399, + "y": -0.64523 + }, + { + "x": -0.49732, + "y": -0.86757 + }, + { + "x": -0.17063, + "y": -0.98534 + }, + { + "x": 0.17682, + "y": -0.98424 + }, + { + "x": 0.50277, + "y": -0.86442 + }, + { + "x": 0.76803, + "y": -0.64041 + }, + { + "x": 0.94075, + "y": -0.33911 + }, + { + "x": 1, + "y": 0.00314 + }, + { + "id": "4,4,0,1", + "startCol": 4, + "endCol": 4, + "startRow": 0, + "endRow": 1 + }, + { + "id": 12, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 458 + }, + "angle": 0.00289, + "vertices": { + "#": 459 + }, + "position": { + "#": 476 + }, + "force": { + "#": 477 + }, + "torque": 0, + "positionImpulse": { + "#": 478 + }, + "constraintImpulse": { + "#": 479 + }, + "totalContacts": 0, + "speed": 1.66808, + "angularSpeed": 0.00289, + "velocity": { + "#": 480 + }, + "angularVelocity": 0.00255, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 481 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 482 + }, + "circleRadius": 15.99601, + "bounds": { + "#": 484 + }, + "positionPrev": { + "#": 487 + }, + "anglePrev": 0.00032, + "axes": { + "#": 488 + }, + "area": 783.35931, + "mass": 0.78336, + "inverseMass": 1.27655, + "inertia": 390.71545, + "inverseInertia": 0.00256, + "parent": { + "#": 457 + }, + "sleepCounter": 0, + "region": { + "#": 497 + } + }, + [ + { + "#": 457 + } + ], + [ + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + } + ], + { + "x": 262.82865, + "y": 55.03473, + "index": 0, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 260.42302, + "y": 60.79382, + "index": 1, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 255.99731, + "y": 65.19407, + "index": 2, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 250.22444, + "y": 67.56642, + "index": 3, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 243.98246, + "y": 67.54841, + "index": 4, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 238.22338, + "y": 65.14279, + "index": 5, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 233.82313, + "y": 60.71707, + "index": 6, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 231.45078, + "y": 54.94421, + "index": 7, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 231.46879, + "y": 48.70223, + "index": 8, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 233.87441, + "y": 42.94315, + "index": 9, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 238.30012, + "y": 38.5429, + "index": 10, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 244.07299, + "y": 36.17054, + "index": 11, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 250.31497, + "y": 36.18855, + "index": 12, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 256.07405, + "y": 38.59418, + "index": 13, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 260.4743, + "y": 43.01989, + "index": 14, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 262.84665, + "y": 48.79276, + "index": 15, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 247.14872, + "y": 51.86848 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01181, + "y": 1.66696 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 483 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 485 + }, + "max": { + "#": 486 + } + }, + { + "x": 231.38513, + "y": 36.17054 + }, + { + "x": 262.84665, + "y": 69.23321 + }, + { + "x": 247.16281, + "y": 50.20153 + }, + [ + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + } + ], + { + "x": -0.92273, + "y": -0.38544 + }, + { + "x": -0.70506, + "y": -0.70914 + }, + { + "x": -0.3801, + "y": -0.92494 + }, + { + "x": 0.00289, + "y": -1 + }, + { + "x": 0.38544, + "y": -0.92273 + }, + { + "x": 0.70914, + "y": -0.70506 + }, + { + "x": 0.92494, + "y": -0.3801 + }, + { + "x": 1, + "y": 0.00289 + }, + { + "id": "4,5,0,1", + "startCol": 4, + "endCol": 5, + "startRow": 0, + "endRow": 1 + }, + { + "id": 13, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 499 + }, + "angle": -0.00085, + "vertices": { + "#": 500 + }, + "position": { + "#": 517 + }, + "force": { + "#": 518 + }, + "torque": 0, + "positionImpulse": { + "#": 519 + }, + "constraintImpulse": { + "#": 520 + }, + "totalContacts": 0, + "speed": 0.59813, + "angularSpeed": 0.00097, + "velocity": { + "#": 521 + }, + "angularVelocity": -0.00311, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 522 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 523 + }, + "circleRadius": 15.69826, + "bounds": { + "#": 525 + }, + "positionPrev": { + "#": 528 + }, + "anglePrev": 0.00226, + "axes": { + "#": 529 + }, + "area": 754.47757, + "mass": 0.75448, + "inverseMass": 1.32542, + "inertia": 362.43592, + "inverseInertia": 0.00276, + "parent": { + "#": 498 + }, + "sleepCounter": 0, + "region": { + "#": 538 + } + }, + [ + { + "#": 498 + } + ], + [ + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + } + ], + { + "x": 294.80578, + "y": 47.51464, + "index": 0, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 292.46661, + "y": 53.17464, + "index": 1, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 288.13831, + "y": 57.51034, + "index": 2, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 282.48231, + "y": 59.85916, + "index": 3, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 276.35632, + "y": 59.86439, + "index": 4, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 270.69632, + "y": 57.52522, + "index": 5, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 266.36062, + "y": 53.19692, + "index": 6, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 264.0118, + "y": 47.54092, + "index": 7, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 264.00657, + "y": 41.41492, + "index": 8, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 266.34574, + "y": 35.75493, + "index": 9, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 270.67404, + "y": 31.41923, + "index": 10, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 276.33004, + "y": 29.0704, + "index": 11, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 282.45604, + "y": 29.06517, + "index": 12, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 288.11603, + "y": 31.40435, + "index": 13, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 292.45173, + "y": 35.73265, + "index": 14, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 294.80056, + "y": 41.38865, + "index": 15, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 279.40618, + "y": 44.46478 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.43717, + "y": 0.01722 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 524 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 526 + }, + "max": { + "#": 527 + } + }, + { + "x": 264.00657, + "y": 29.06517 + }, + { + "x": 295.07359, + "y": 60.39922 + }, + { + "x": 278.969, + "y": 44.44756 + }, + [ + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + } + ], + { + "x": -0.92418, + "y": -0.38195 + }, + { + "x": -0.70771, + "y": -0.7065 + }, + { + "x": -0.38352, + "y": -0.92353 + }, + { + "x": -0.00085, + "y": -1 + }, + { + "x": 0.38195, + "y": -0.92418 + }, + { + "x": 0.7065, + "y": -0.70771 + }, + { + "x": 0.92353, + "y": -0.38352 + }, + { + "x": 1, + "y": -0.00085 + }, + { + "id": "5,6,0,1", + "startCol": 5, + "endCol": 6, + "startRow": 0, + "endRow": 1 + }, + { + "id": 14, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 540 + }, + "angle": 0.00477, + "vertices": { + "#": 541 + }, + "position": { + "#": 556 + }, + "force": { + "#": 557 + }, + "torque": 0, + "positionImpulse": { + "#": 558 + }, + "constraintImpulse": { + "#": 559 + }, + "totalContacts": 0, + "speed": 2.91924, + "angularSpeed": 0.0048, + "velocity": { + "#": 560 + }, + "angularVelocity": 0.00498, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 561 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 562 + }, + "circleRadius": 13.41491, + "bounds": { + "#": 564 + }, + "positionPrev": { + "#": 567 + }, + "anglePrev": -0.0004, + "axes": { + "#": 568 + }, + "area": 546.57346, + "mass": 0.54657, + "inverseMass": 1.82958, + "inertia": 190.22933, + "inverseInertia": 0.00526, + "parent": { + "#": 539 + }, + "sleepCounter": 0, + "region": { + "#": 576 + } + }, + [ + { + "#": 539 + } + ], + [ + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + } + ], + { + "x": 320.76855, + "y": 54.19873, + "index": 0, + "body": { + "#": 539 + }, + "isInternal": false + }, + { + "x": 318.1519, + "y": 59.5653, + "index": 1, + "body": { + "#": 539 + }, + "isInternal": false + }, + { + "x": 313.46719, + "y": 63.26498, + "index": 2, + "body": { + "#": 539 + }, + "isInternal": false + }, + { + "x": 307.63991, + "y": 64.56617, + "index": 3, + "body": { + "#": 539 + }, + "isInternal": false + }, + { + "x": 301.82532, + "y": 63.2094, + "index": 4, + "body": { + "#": 539 + }, + "isInternal": false + }, + { + "x": 297.17614, + "y": 59.46516, + "index": 5, + "body": { + "#": 539 + }, + "isInternal": false + }, + { + "x": 294.61085, + "y": 54.07386, + "index": 6, + "body": { + "#": 539 + }, + "isInternal": false + }, + { + "x": 294.63935, + "y": 48.10393, + "index": 7, + "body": { + "#": 539 + }, + "isInternal": false + }, + { + "x": 297.256, + "y": 42.73736, + "index": 8, + "body": { + "#": 539 + }, + "isInternal": false + }, + { + "x": 301.94071, + "y": 39.03768, + "index": 9, + "body": { + "#": 539 + }, + "isInternal": false + }, + { + "x": 307.76799, + "y": 37.73648, + "index": 10, + "body": { + "#": 539 + }, + "isInternal": false + }, + { + "x": 313.58258, + "y": 39.09325, + "index": 11, + "body": { + "#": 539 + }, + "isInternal": false + }, + { + "x": 318.23176, + "y": 42.83749, + "index": 12, + "body": { + "#": 539 + }, + "isInternal": false + }, + { + "x": 320.79705, + "y": 48.2288, + "index": 13, + "body": { + "#": 539 + }, + "isInternal": false + }, + { + "x": 307.70395, + "y": 51.15133 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.03725, + "y": 0.00009 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.22978, + "y": 2.90712 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 563 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 565 + }, + "max": { + "#": 566 + } + }, + { + "x": 294.61085, + "y": 37.73648 + }, + { + "x": 321.06029, + "y": 67.47352 + }, + { + "x": 307.50773, + "y": 48.24437 + }, + [ + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + } + ], + { + "x": -0.89885, + "y": -0.43826 + }, + { + "x": -0.61977, + "y": -0.78478 + }, + { + "x": -0.21793, + "y": -0.97596 + }, + { + "x": 0.22724, + "y": -0.97384 + }, + { + "x": 0.62723, + "y": -0.77883 + }, + { + "x": 0.90299, + "y": -0.42966 + }, + { + "x": 0.99999, + "y": 0.00477 + }, + { + "id": "6,6,0,1", + "startCol": 6, + "endCol": 6, + "startRow": 0, + "endRow": 1 + }, + { + "id": 15, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 578 + }, + "angle": 0.00091, + "vertices": { + "#": 579 + }, + "position": { + "#": 598 + }, + "force": { + "#": 599 + }, + "torque": 0, + "positionImpulse": { + "#": 600 + }, + "constraintImpulse": { + "#": 601 + }, + "totalContacts": 0, + "speed": 2.91793, + "angularSpeed": 0.00091, + "velocity": { + "#": 602 + }, + "angularVelocity": 0.00067, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 603 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 604 + }, + "circleRadius": 17.78794, + "bounds": { + "#": 606 + }, + "positionPrev": { + "#": 609 + }, + "anglePrev": 0.0003, + "axes": { + "#": 610 + }, + "area": 973.9752, + "mass": 0.97398, + "inverseMass": 1.02672, + "inertia": 603.96569, + "inverseInertia": 0.00166, + "parent": { + "#": 577 + }, + "sleepCounter": 0, + "region": { + "#": 620 + } + }, + [ + { + "#": 577 + } + ], + [ + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + } + ], + { + "x": 355.82567, + "y": 58.62867, + "index": 0, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 353.7074, + "y": 64.43175, + "index": 1, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 349.7321, + "y": 69.16014, + "index": 2, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 344.3793, + "y": 72.24428, + "index": 3, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 338.29433, + "y": 73.31176, + "index": 4, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 332.21131, + "y": 72.23323, + "index": 5, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 326.86411, + "y": 69.13938, + "index": 6, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 322.89741, + "y": 64.40377, + "index": 7, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 320.78968, + "y": 58.59686, + "index": 8, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 320.79529, + "y": 52.41886, + "index": 9, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 322.91356, + "y": 46.61578, + "index": 10, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 326.88886, + "y": 41.88739, + "index": 11, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 332.24166, + "y": 38.80325, + "index": 12, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 338.32663, + "y": 37.73577, + "index": 13, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 344.40966, + "y": 38.8143, + "index": 14, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 349.75685, + "y": 41.90815, + "index": 15, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 353.72355, + "y": 46.64376, + "index": 16, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 355.83128, + "y": 52.45067, + "index": 17, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 338.31048, + "y": 55.52377 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.11079, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.20154, + "y": 2.90748 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 605 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 607 + }, + "max": { + "#": 608 + } + }, + { + "x": 320.78968, + "y": 37.73577 + }, + { + "x": 356.08037, + "y": 76.21904 + }, + { + "x": 338.12328, + "y": 52.61628 + }, + [ + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + } + ], + { + "x": -0.93937, + "y": -0.3429 + }, + { + "x": -0.76543, + "y": -0.64352 + }, + { + "x": -0.49923, + "y": -0.86647 + }, + { + "x": -0.17279, + "y": -0.98496 + }, + { + "x": 0.17458, + "y": -0.98464 + }, + { + "x": 0.50081, + "y": -0.86556 + }, + { + "x": 0.7666, + "y": -0.64213 + }, + { + "x": 0.93999, + "y": -0.34119 + }, + { + "x": 1, + "y": 0.00091 + }, + { + "id": "6,7,0,1", + "startCol": 6, + "endCol": 7, + "startRow": 0, + "endRow": 1 + }, + { + "id": 16, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 622 + }, + "angle": 0, + "vertices": { + "#": 623 + }, + "position": { + "#": 638 + }, + "force": { + "#": 639 + }, + "torque": 0, + "positionImpulse": { + "#": 640 + }, + "constraintImpulse": { + "#": 641 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 642 + }, + "angularVelocity": -0.00135, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 643 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 644 + }, + "circleRadius": 12.6445, + "bounds": { + "#": 646 + }, + "positionPrev": { + "#": 649 + }, + "anglePrev": 0.00157, + "axes": { + "#": 650 + }, + "area": 485.5904, + "mass": 0.48559, + "inverseMass": 2.05935, + "inertia": 150.14836, + "inverseInertia": 0.00666, + "parent": { + "#": 621 + }, + "sleepCounter": 0, + "region": { + "#": 658 + } + }, + [ + { + "#": 621 + } + ], + [ + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + } + ], + { + "x": 380.43287, + "y": 53.19475, + "index": 0, + "body": { + "#": 621 + }, + "isInternal": false + }, + { + "x": 377.99187, + "y": 58.26475, + "index": 1, + "body": { + "#": 621 + }, + "isInternal": false + }, + { + "x": 373.59187, + "y": 61.77275, + "index": 2, + "body": { + "#": 621 + }, + "isInternal": false + }, + { + "x": 368.10587, + "y": 63.02575, + "index": 3, + "body": { + "#": 621 + }, + "isInternal": false + }, + { + "x": 362.61987, + "y": 61.77275, + "index": 4, + "body": { + "#": 621 + }, + "isInternal": false + }, + { + "x": 358.21987, + "y": 58.26475, + "index": 5, + "body": { + "#": 621 + }, + "isInternal": false + }, + { + "x": 355.77887, + "y": 53.19475, + "index": 6, + "body": { + "#": 621 + }, + "isInternal": false + }, + { + "x": 355.77887, + "y": 47.56675, + "index": 7, + "body": { + "#": 621 + }, + "isInternal": false + }, + { + "x": 358.21987, + "y": 42.49675, + "index": 8, + "body": { + "#": 621 + }, + "isInternal": false + }, + { + "x": 362.61987, + "y": 38.98875, + "index": 9, + "body": { + "#": 621 + }, + "isInternal": false + }, + { + "x": 368.10587, + "y": 37.73575, + "index": 10, + "body": { + "#": 621 + }, + "isInternal": false + }, + { + "x": 373.59187, + "y": 38.98875, + "index": 11, + "body": { + "#": 621 + }, + "isInternal": false + }, + { + "x": 377.99187, + "y": 42.49675, + "index": 12, + "body": { + "#": 621 + }, + "isInternal": false + }, + { + "x": 380.43287, + "y": 47.56675, + "index": 13, + "body": { + "#": 621 + }, + "isInternal": false + }, + { + "x": 368.10587, + "y": 50.38075 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1.09029, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.17085, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 645 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 647 + }, + "max": { + "#": 648 + } + }, + { + "x": 355.77887, + "y": 37.73575 + }, + { + "x": 380.43287, + "y": 65.93303 + }, + { + "x": 367.90626, + "y": 47.47349 + }, + [ + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + } + ], + { + "x": -0.90101, + "y": -0.4338 + }, + { + "x": -0.62339, + "y": -0.78191 + }, + { + "x": -0.22267, + "y": -0.97489 + }, + { + "x": 0.22267, + "y": -0.97489 + }, + { + "x": 0.62339, + "y": -0.78191 + }, + { + "x": 0.90101, + "y": -0.4338 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,0,1", + "startCol": 7, + "endCol": 7, + "startRow": 0, + "endRow": 1 + }, + { + "id": 17, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 660 + }, + "angle": 0, + "vertices": { + "#": 661 + }, + "position": { + "#": 682 + }, + "force": { + "#": 683 + }, + "torque": 0, + "positionImpulse": { + "#": 684 + }, + "constraintImpulse": { + "#": 685 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 686 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 687 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 688 + }, + "circleRadius": 18.10807, + "bounds": { + "#": 690 + }, + "positionPrev": { + "#": 693 + }, + "anglePrev": 0, + "axes": { + "#": 694 + }, + "area": 1013.24488, + "mass": 1.01324, + "inverseMass": 0.98693, + "inertia": 653.63115, + "inverseInertia": 0.00153, + "parent": { + "#": 659 + }, + "sleepCounter": 0, + "region": { + "#": 705 + } + }, + [ + { + "#": 659 + } + ], + [ + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + } + ], + { + "x": 414.84, + "y": 58.45375, + "index": 0, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 413.089, + "y": 63.84175, + "index": 1, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 409.759, + "y": 68.42475, + "index": 2, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 405.176, + "y": 71.75475, + "index": 3, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 399.788, + "y": 73.50575, + "index": 4, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 394.122, + "y": 73.50575, + "index": 5, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 388.734, + "y": 71.75475, + "index": 6, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 384.151, + "y": 68.42475, + "index": 7, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 380.821, + "y": 63.84175, + "index": 8, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 379.07, + "y": 58.45375, + "index": 9, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 379.07, + "y": 52.78775, + "index": 10, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 380.821, + "y": 47.39975, + "index": 11, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 384.151, + "y": 42.81675, + "index": 12, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 388.734, + "y": 39.48675, + "index": 13, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 394.122, + "y": 37.73575, + "index": 14, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 399.788, + "y": 37.73575, + "index": 15, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 405.176, + "y": 39.48675, + "index": 16, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 409.759, + "y": 42.81675, + "index": 17, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 413.089, + "y": 47.39975, + "index": 18, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 414.84, + "y": 52.78775, + "index": 19, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 396.955, + "y": 55.62075 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 689 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 691 + }, + "max": { + "#": 692 + } + }, + { + "x": 379.07, + "y": 37.73575 + }, + { + "x": 414.84, + "y": 73.50575 + }, + { + "x": 396.955, + "y": 52.71348 + }, + [ + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + } + ], + { + "x": -0.95104, + "y": -0.30907 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30907, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30907, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30907 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,0,1", + "startCol": 7, + "endCol": 8, + "startRow": 0, + "endRow": 1 + }, + { + "id": 18, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 707 + }, + "angle": 0, + "vertices": { + "#": 708 + }, + "position": { + "#": 729 + }, + "force": { + "#": 730 + }, + "torque": 0, + "positionImpulse": { + "#": 731 + }, + "constraintImpulse": { + "#": 732 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 733 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 734 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 735 + }, + "circleRadius": 18.37616, + "bounds": { + "#": 737 + }, + "positionPrev": { + "#": 740 + }, + "anglePrev": 0, + "axes": { + "#": 741 + }, + "area": 1043.50458, + "mass": 1.0435, + "inverseMass": 0.95831, + "inertia": 693.25438, + "inverseInertia": 0.00144, + "parent": { + "#": 706 + }, + "sleepCounter": 0, + "region": { + "#": 752 + } + }, + [ + { + "#": 706 + } + ], + [ + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + }, + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + } + ], + { + "x": 451.14, + "y": 58.76075, + "index": 0, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 449.363, + "y": 64.22875, + "index": 1, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 445.984, + "y": 68.87975, + "index": 2, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 441.333, + "y": 72.25875, + "index": 3, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 435.865, + "y": 74.03575, + "index": 4, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 430.115, + "y": 74.03575, + "index": 5, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 424.647, + "y": 72.25875, + "index": 6, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 419.996, + "y": 68.87975, + "index": 7, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 416.617, + "y": 64.22875, + "index": 8, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 414.84, + "y": 58.76075, + "index": 9, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 414.84, + "y": 53.01075, + "index": 10, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 416.617, + "y": 47.54275, + "index": 11, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 419.996, + "y": 42.89175, + "index": 12, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 424.647, + "y": 39.51275, + "index": 13, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 430.115, + "y": 37.73575, + "index": 14, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 435.865, + "y": 37.73575, + "index": 15, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 441.333, + "y": 39.51275, + "index": 16, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 445.984, + "y": 42.89175, + "index": 17, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 449.363, + "y": 47.54275, + "index": 18, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 451.14, + "y": 53.01075, + "index": 19, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 432.99, + "y": 55.88575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 736 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 738 + }, + "max": { + "#": 739 + } + }, + { + "x": 414.84, + "y": 37.73575 + }, + { + "x": 451.14, + "y": 74.03575 + }, + { + "x": 432.99, + "y": 52.97848 + }, + [ + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + } + ], + { + "x": -0.95104, + "y": -0.30907 + }, + { + "x": -0.80903, + "y": -0.58777 + }, + { + "x": -0.58777, + "y": -0.80903 + }, + { + "x": -0.30907, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30907, + "y": -0.95104 + }, + { + "x": 0.58777, + "y": -0.80903 + }, + { + "x": 0.80903, + "y": -0.58777 + }, + { + "x": 0.95104, + "y": -0.30907 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,0,1", + "startCol": 8, + "endCol": 9, + "startRow": 0, + "endRow": 1 + }, + { + "id": 19, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 754 + }, + "angle": 0, + "vertices": { + "#": 755 + }, + "position": { + "#": 774 + }, + "force": { + "#": 775 + }, + "torque": 0, + "positionImpulse": { + "#": 776 + }, + "constraintImpulse": { + "#": 777 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 778 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 779 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 780 + }, + "circleRadius": 16.16482, + "bounds": { + "#": 782 + }, + "positionPrev": { + "#": 785 + }, + "anglePrev": 0, + "axes": { + "#": 786 + }, + "area": 804.33264, + "mass": 0.80433, + "inverseMass": 1.24327, + "inertia": 411.89627, + "inverseInertia": 0.00243, + "parent": { + "#": 753 + }, + "sleepCounter": 0, + "region": { + "#": 796 + } + }, + [ + { + "#": 753 + } + ], + [ + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + }, + { + "#": 767 + }, + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + } + ], + { + "x": 482.978, + "y": 56.70775, + "index": 0, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 481.058, + "y": 61.98275, + "index": 1, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 477.45, + "y": 66.28375, + "index": 2, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 472.588, + "y": 69.09075, + "index": 3, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 467.059, + "y": 70.06575, + "index": 4, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 461.53, + "y": 69.09075, + "index": 5, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 456.668, + "y": 66.28375, + "index": 6, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 453.06, + "y": 61.98275, + "index": 7, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 451.14, + "y": 56.70775, + "index": 8, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 451.14, + "y": 51.09375, + "index": 9, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 453.06, + "y": 45.81875, + "index": 10, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 456.668, + "y": 41.51775, + "index": 11, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 461.53, + "y": 38.71075, + "index": 12, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 467.059, + "y": 37.73575, + "index": 13, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 472.588, + "y": 38.71075, + "index": 14, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 477.45, + "y": 41.51775, + "index": 15, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 481.058, + "y": 45.81875, + "index": 16, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 482.978, + "y": 51.09375, + "index": 17, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 467.059, + "y": 53.90075 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 781 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 783 + }, + "max": { + "#": 784 + } + }, + { + "x": 451.14, + "y": 37.73575 + }, + { + "x": 482.978, + "y": 70.06575 + }, + { + "x": 467.059, + "y": 50.99348 + }, + [ + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + } + ], + { + "x": -0.93969, + "y": -0.34203 + }, + { + "x": -0.76613, + "y": -0.64269 + }, + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": -0.17366, + "y": -0.98481 + }, + { + "x": 0.17366, + "y": -0.98481 + }, + { + "x": 0.49999, + "y": -0.86603 + }, + { + "x": 0.76613, + "y": -0.64269 + }, + { + "x": 0.93969, + "y": -0.34203 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,0,1", + "startCol": 9, + "endCol": 10, + "startRow": 0, + "endRow": 1 + }, + { + "id": 20, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 798 + }, + "angle": 0, + "vertices": { + "#": 799 + }, + "position": { + "#": 814 + }, + "force": { + "#": 815 + }, + "torque": 0, + "positionImpulse": { + "#": 816 + }, + "constraintImpulse": { + "#": 817 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 818 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 819 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 820 + }, + "circleRadius": 13.81974, + "bounds": { + "#": 822 + }, + "positionPrev": { + "#": 825 + }, + "anglePrev": 0, + "axes": { + "#": 826 + }, + "area": 580.04741, + "mass": 0.58005, + "inverseMass": 1.724, + "inertia": 214.24337, + "inverseInertia": 0.00467, + "parent": { + "#": 797 + }, + "sleepCounter": 0, + "region": { + "#": 834 + } + }, + [ + { + "#": 797 + } + ], + [ + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + }, + { + "#": 806 + }, + { + "#": 807 + }, + { + "#": 808 + }, + { + "#": 809 + }, + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + } + ], + { + "x": 509.949, + "y": 54.63075, + "index": 0, + "body": { + "#": 797 + }, + "isInternal": false + }, + { + "x": 507.281, + "y": 60.17175, + "index": 1, + "body": { + "#": 797 + }, + "isInternal": false + }, + { + "x": 502.472, + "y": 64.00675, + "index": 2, + "body": { + "#": 797 + }, + "isInternal": false + }, + { + "x": 496.476, + "y": 65.37575, + "index": 3, + "body": { + "#": 797 + }, + "isInternal": false + }, + { + "x": 490.48, + "y": 64.00675, + "index": 4, + "body": { + "#": 797 + }, + "isInternal": false + }, + { + "x": 485.671, + "y": 60.17175, + "index": 5, + "body": { + "#": 797 + }, + "isInternal": false + }, + { + "x": 483.003, + "y": 54.63075, + "index": 6, + "body": { + "#": 797 + }, + "isInternal": false + }, + { + "x": 483.003, + "y": 48.48075, + "index": 7, + "body": { + "#": 797 + }, + "isInternal": false + }, + { + "x": 485.671, + "y": 42.93975, + "index": 8, + "body": { + "#": 797 + }, + "isInternal": false + }, + { + "x": 490.48, + "y": 39.10475, + "index": 9, + "body": { + "#": 797 + }, + "isInternal": false + }, + { + "x": 496.476, + "y": 37.73575, + "index": 10, + "body": { + "#": 797 + }, + "isInternal": false + }, + { + "x": 502.472, + "y": 39.10475, + "index": 11, + "body": { + "#": 797 + }, + "isInternal": false + }, + { + "x": 507.281, + "y": 42.93975, + "index": 12, + "body": { + "#": 797 + }, + "isInternal": false + }, + { + "x": 509.949, + "y": 48.48075, + "index": 13, + "body": { + "#": 797 + }, + "isInternal": false + }, + { + "x": 496.476, + "y": 51.55575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 821 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 823 + }, + "max": { + "#": 824 + } + }, + { + "x": 483.003, + "y": 37.73575 + }, + { + "x": 509.949, + "y": 68.28303 + }, + { + "x": 496.476, + "y": 48.64848 + }, + [ + { + "#": 827 + }, + { + "#": 828 + }, + { + "#": 829 + }, + { + "#": 830 + }, + { + "#": 831 + }, + { + "#": 832 + }, + { + "#": 833 + } + ], + { + "x": -0.90099, + "y": -0.43383 + }, + { + "x": -0.62348, + "y": -0.78184 + }, + { + "x": -0.22259, + "y": -0.97491 + }, + { + "x": 0.22259, + "y": -0.97491 + }, + { + "x": 0.62348, + "y": -0.78184 + }, + { + "x": 0.90099, + "y": -0.43383 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,0,1", + "startCol": 10, + "endCol": 10, + "startRow": 0, + "endRow": 1 + }, + { + "id": 21, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 836 + }, + "angle": 0, + "vertices": { + "#": 837 + }, + "position": { + "#": 850 + }, + "force": { + "#": 851 + }, + "torque": 0, + "positionImpulse": { + "#": 852 + }, + "constraintImpulse": { + "#": 853 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 854 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 855 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 856 + }, + "circleRadius": 11.09401, + "bounds": { + "#": 858 + }, + "positionPrev": { + "#": 861 + }, + "anglePrev": 0, + "axes": { + "#": 862 + }, + "area": 369.23864, + "mass": 0.36924, + "inverseMass": 2.70828, + "inertia": 86.8324, + "inverseInertia": 0.01152, + "parent": { + "#": 835 + }, + "sleepCounter": 0, + "region": { + "#": 869 + } + }, + [ + { + "#": 835 + } + ], + [ + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + } + ], + { + "x": 531.331, + "y": 51.32275, + "index": 0, + "body": { + "#": 835 + }, + "isInternal": false + }, + { + "x": 528.46, + "y": 56.29675, + "index": 1, + "body": { + "#": 835 + }, + "isInternal": false + }, + { + "x": 523.486, + "y": 59.16775, + "index": 2, + "body": { + "#": 835 + }, + "isInternal": false + }, + { + "x": 517.744, + "y": 59.16775, + "index": 3, + "body": { + "#": 835 + }, + "isInternal": false + }, + { + "x": 512.77, + "y": 56.29675, + "index": 4, + "body": { + "#": 835 + }, + "isInternal": false + }, + { + "x": 509.899, + "y": 51.32275, + "index": 5, + "body": { + "#": 835 + }, + "isInternal": false + }, + { + "x": 509.899, + "y": 45.58075, + "index": 6, + "body": { + "#": 835 + }, + "isInternal": false + }, + { + "x": 512.77, + "y": 40.60675, + "index": 7, + "body": { + "#": 835 + }, + "isInternal": false + }, + { + "x": 517.744, + "y": 37.73575, + "index": 8, + "body": { + "#": 835 + }, + "isInternal": false + }, + { + "x": 523.486, + "y": 37.73575, + "index": 9, + "body": { + "#": 835 + }, + "isInternal": false + }, + { + "x": 528.46, + "y": 40.60675, + "index": 10, + "body": { + "#": 835 + }, + "isInternal": false + }, + { + "x": 531.331, + "y": 45.58075, + "index": 11, + "body": { + "#": 835 + }, + "isInternal": false + }, + { + "x": 520.615, + "y": 48.45175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 857 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 859 + }, + "max": { + "#": 860 + } + }, + { + "x": 509.899, + "y": 37.73575 + }, + { + "x": 531.331, + "y": 62.07503 + }, + { + "x": 520.615, + "y": 45.54448 + }, + [ + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + } + ], + { + "x": -0.86608, + "y": -0.4999 + }, + { + "x": -0.4999, + "y": -0.86608 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.4999, + "y": -0.86608 + }, + { + "x": 0.86608, + "y": -0.4999 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,0,1", + "startCol": 10, + "endCol": 11, + "startRow": 0, + "endRow": 1 + }, + { + "id": 22, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 871 + }, + "angle": 0, + "vertices": { + "#": 872 + }, + "position": { + "#": 893 + }, + "force": { + "#": 894 + }, + "torque": 0, + "positionImpulse": { + "#": 895 + }, + "constraintImpulse": { + "#": 896 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 897 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 898 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 899 + }, + "circleRadius": 19.59255, + "bounds": { + "#": 901 + }, + "positionPrev": { + "#": 904 + }, + "anglePrev": 0, + "axes": { + "#": 905 + }, + "area": 1186.20081, + "mass": 1.1862, + "inverseMass": 0.84303, + "inertia": 895.81914, + "inverseInertia": 0.00112, + "parent": { + "#": 870 + }, + "sleepCounter": 0, + "region": { + "#": 916 + } + }, + [ + { + "#": 870 + } + ], + [ + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + }, + { + "#": 877 + }, + { + "#": 878 + }, + { + "#": 879 + }, + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + }, + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + }, + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + } + ], + { + "x": 570.058, + "y": 60.15175, + "index": 0, + "body": { + "#": 870 + }, + "isInternal": false + }, + { + "x": 568.164, + "y": 65.98175, + "index": 1, + "body": { + "#": 870 + }, + "isInternal": false + }, + { + "x": 564.561, + "y": 70.94075, + "index": 2, + "body": { + "#": 870 + }, + "isInternal": false + }, + { + "x": 559.602, + "y": 74.54375, + "index": 3, + "body": { + "#": 870 + }, + "isInternal": false + }, + { + "x": 553.772, + "y": 76.43775, + "index": 4, + "body": { + "#": 870 + }, + "isInternal": false + }, + { + "x": 547.642, + "y": 76.43775, + "index": 5, + "body": { + "#": 870 + }, + "isInternal": false + }, + { + "x": 541.812, + "y": 74.54375, + "index": 6, + "body": { + "#": 870 + }, + "isInternal": false + }, + { + "x": 536.853, + "y": 70.94075, + "index": 7, + "body": { + "#": 870 + }, + "isInternal": false + }, + { + "x": 533.25, + "y": 65.98175, + "index": 8, + "body": { + "#": 870 + }, + "isInternal": false + }, + { + "x": 531.356, + "y": 60.15175, + "index": 9, + "body": { + "#": 870 + }, + "isInternal": false + }, + { + "x": 531.356, + "y": 54.02175, + "index": 10, + "body": { + "#": 870 + }, + "isInternal": false + }, + { + "x": 533.25, + "y": 48.19175, + "index": 11, + "body": { + "#": 870 + }, + "isInternal": false + }, + { + "x": 536.853, + "y": 43.23275, + "index": 12, + "body": { + "#": 870 + }, + "isInternal": false + }, + { + "x": 541.812, + "y": 39.62975, + "index": 13, + "body": { + "#": 870 + }, + "isInternal": false + }, + { + "x": 547.642, + "y": 37.73575, + "index": 14, + "body": { + "#": 870 + }, + "isInternal": false + }, + { + "x": 553.772, + "y": 37.73575, + "index": 15, + "body": { + "#": 870 + }, + "isInternal": false + }, + { + "x": 559.602, + "y": 39.62975, + "index": 16, + "body": { + "#": 870 + }, + "isInternal": false + }, + { + "x": 564.561, + "y": 43.23275, + "index": 17, + "body": { + "#": 870 + }, + "isInternal": false + }, + { + "x": 568.164, + "y": 48.19175, + "index": 18, + "body": { + "#": 870 + }, + "isInternal": false + }, + { + "x": 570.058, + "y": 54.02175, + "index": 19, + "body": { + "#": 870 + }, + "isInternal": false + }, + { + "x": 550.707, + "y": 57.08675 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 900 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 902 + }, + "max": { + "#": 903 + } + }, + { + "x": 531.356, + "y": 37.73575 + }, + { + "x": 570.058, + "y": 76.43775 + }, + { + "x": 550.707, + "y": 54.17948 + }, + [ + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + }, + { + "#": 915 + } + ], + { + "x": -0.95107, + "y": -0.30898 + }, + { + "x": -0.80901, + "y": -0.58779 + }, + { + "x": -0.58779, + "y": -0.80901 + }, + { + "x": -0.30898, + "y": -0.95107 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30898, + "y": -0.95107 + }, + { + "x": 0.58779, + "y": -0.80901 + }, + { + "x": 0.80901, + "y": -0.58779 + }, + { + "x": 0.95107, + "y": -0.30898 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,11,0,1", + "startCol": 11, + "endCol": 11, + "startRow": 0, + "endRow": 1 + }, + { + "id": 23, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 918 + }, + "angle": 0, + "vertices": { + "#": 919 + }, + "position": { + "#": 934 + }, + "force": { + "#": 935 + }, + "torque": 0, + "positionImpulse": { + "#": 936 + }, + "constraintImpulse": { + "#": 937 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 938 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 939 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 940 + }, + "circleRadius": 13.88327, + "bounds": { + "#": 942 + }, + "positionPrev": { + "#": 945 + }, + "anglePrev": 0, + "axes": { + "#": 946 + }, + "area": 585.3797, + "mass": 0.58538, + "inverseMass": 1.70829, + "inertia": 218.20048, + "inverseInertia": 0.00458, + "parent": { + "#": 917 + }, + "sleepCounter": 0, + "region": { + "#": 954 + } + }, + [ + { + "#": 917 + } + ], + [ + { + "#": 920 + }, + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + }, + { + "#": 924 + }, + { + "#": 925 + }, + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + }, + { + "#": 932 + }, + { + "#": 933 + } + ], + { + "x": 597.128, + "y": 54.70775, + "index": 0, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 594.447, + "y": 60.27475, + "index": 1, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 589.617, + "y": 64.12675, + "index": 2, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 583.593, + "y": 65.50175, + "index": 3, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 577.569, + "y": 64.12675, + "index": 4, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 572.739, + "y": 60.27475, + "index": 5, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 570.058, + "y": 54.70775, + "index": 6, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 570.058, + "y": 48.52975, + "index": 7, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 572.739, + "y": 42.96275, + "index": 8, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 577.569, + "y": 39.11075, + "index": 9, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 583.593, + "y": 37.73575, + "index": 10, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 589.617, + "y": 39.11075, + "index": 11, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 594.447, + "y": 42.96275, + "index": 12, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 597.128, + "y": 48.52975, + "index": 13, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 583.593, + "y": 51.61875 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 941 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 943 + }, + "max": { + "#": 944 + } + }, + { + "x": 570.058, + "y": 37.73575 + }, + { + "x": 597.128, + "y": 65.50175 + }, + { + "x": 583.593, + "y": 48.71148 + }, + [ + { + "#": 947 + }, + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + } + ], + { + "x": -0.90096, + "y": -0.43389 + }, + { + "x": -0.62351, + "y": -0.78182 + }, + { + "x": -0.22253, + "y": -0.97493 + }, + { + "x": 0.22253, + "y": -0.97493 + }, + { + "x": 0.62351, + "y": -0.78182 + }, + { + "x": 0.90096, + "y": -0.43389 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,0,1", + "startCol": 11, + "endCol": 12, + "startRow": 0, + "endRow": 1 + }, + { + "id": 24, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 956 + }, + "angle": 0, + "vertices": { + "#": 957 + }, + "position": { + "#": 978 + }, + "force": { + "#": 979 + }, + "torque": 0, + "positionImpulse": { + "#": 980 + }, + "constraintImpulse": { + "#": 981 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 982 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 983 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 984 + }, + "circleRadius": 19.27482, + "bounds": { + "#": 986 + }, + "positionPrev": { + "#": 989 + }, + "anglePrev": 0, + "axes": { + "#": 990 + }, + "area": 1148.07426, + "mass": 1.14807, + "inverseMass": 0.87102, + "inertia": 839.15824, + "inverseInertia": 0.00119, + "parent": { + "#": 955 + }, + "sleepCounter": 0, + "region": { + "#": 1001 + } + }, + [ + { + "#": 955 + } + ], + [ + { + "#": 958 + }, + { + "#": 959 + }, + { + "#": 960 + }, + { + "#": 961 + }, + { + "#": 962 + }, + { + "#": 963 + }, + { + "#": 964 + }, + { + "#": 965 + }, + { + "#": 966 + }, + { + "#": 967 + }, + { + "#": 968 + }, + { + "#": 969 + }, + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + } + ], + { + "x": 635.204, + "y": 59.78875, + "index": 0, + "body": { + "#": 955 + }, + "isInternal": false + }, + { + "x": 633.34, + "y": 65.52475, + "index": 1, + "body": { + "#": 955 + }, + "isInternal": false + }, + { + "x": 629.795, + "y": 70.40275, + "index": 2, + "body": { + "#": 955 + }, + "isInternal": false + }, + { + "x": 624.917, + "y": 73.94775, + "index": 3, + "body": { + "#": 955 + }, + "isInternal": false + }, + { + "x": 619.181, + "y": 75.81175, + "index": 4, + "body": { + "#": 955 + }, + "isInternal": false + }, + { + "x": 613.151, + "y": 75.81175, + "index": 5, + "body": { + "#": 955 + }, + "isInternal": false + }, + { + "x": 607.415, + "y": 73.94775, + "index": 6, + "body": { + "#": 955 + }, + "isInternal": false + }, + { + "x": 602.537, + "y": 70.40275, + "index": 7, + "body": { + "#": 955 + }, + "isInternal": false + }, + { + "x": 598.992, + "y": 65.52475, + "index": 8, + "body": { + "#": 955 + }, + "isInternal": false + }, + { + "x": 597.128, + "y": 59.78875, + "index": 9, + "body": { + "#": 955 + }, + "isInternal": false + }, + { + "x": 597.128, + "y": 53.75875, + "index": 10, + "body": { + "#": 955 + }, + "isInternal": false + }, + { + "x": 598.992, + "y": 48.02275, + "index": 11, + "body": { + "#": 955 + }, + "isInternal": false + }, + { + "x": 602.537, + "y": 43.14475, + "index": 12, + "body": { + "#": 955 + }, + "isInternal": false + }, + { + "x": 607.415, + "y": 39.59975, + "index": 13, + "body": { + "#": 955 + }, + "isInternal": false + }, + { + "x": 613.151, + "y": 37.73575, + "index": 14, + "body": { + "#": 955 + }, + "isInternal": false + }, + { + "x": 619.181, + "y": 37.73575, + "index": 15, + "body": { + "#": 955 + }, + "isInternal": false + }, + { + "x": 624.917, + "y": 39.59975, + "index": 16, + "body": { + "#": 955 + }, + "isInternal": false + }, + { + "x": 629.795, + "y": 43.14475, + "index": 17, + "body": { + "#": 955 + }, + "isInternal": false + }, + { + "x": 633.34, + "y": 48.02275, + "index": 18, + "body": { + "#": 955 + }, + "isInternal": false + }, + { + "x": 635.204, + "y": 53.75875, + "index": 19, + "body": { + "#": 955 + }, + "isInternal": false + }, + { + "x": 616.166, + "y": 56.77375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 985 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 987 + }, + "max": { + "#": 988 + } + }, + { + "x": 597.128, + "y": 37.73575 + }, + { + "x": 635.204, + "y": 75.81175 + }, + { + "x": 616.166, + "y": 53.86648 + }, + [ + { + "#": 991 + }, + { + "#": 992 + }, + { + "#": 993 + }, + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + }, + { + "#": 997 + }, + { + "#": 998 + }, + { + "#": 999 + }, + { + "#": 1000 + } + ], + { + "x": -0.95104, + "y": -0.30906 + }, + { + "x": -0.80894, + "y": -0.58789 + }, + { + "x": -0.58789, + "y": -0.80894 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.58789, + "y": -0.80894 + }, + { + "x": 0.80894, + "y": -0.58789 + }, + { + "x": 0.95104, + "y": -0.30906 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,13,0,1", + "startCol": 12, + "endCol": 13, + "startRow": 0, + "endRow": 1 + }, + { + "id": 25, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1003 + }, + "angle": 0.04495, + "vertices": { + "#": 1004 + }, + "position": { + "#": 1023 + }, + "force": { + "#": 1024 + }, + "torque": 0, + "positionImpulse": { + "#": 1025 + }, + "constraintImpulse": { + "#": 1026 + }, + "totalContacts": 0, + "speed": 0.41951, + "angularSpeed": 0.00415, + "velocity": { + "#": 1027 + }, + "angularVelocity": 0.00201, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1028 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1029 + }, + "circleRadius": 16.26102, + "bounds": { + "#": 1031 + }, + "positionPrev": { + "#": 1034 + }, + "anglePrev": 0.04292, + "axes": { + "#": 1035 + }, + "area": 813.92894, + "mass": 0.81393, + "inverseMass": 1.22861, + "inertia": 421.78337, + "inverseInertia": 0.00237, + "parent": { + "#": 1002 + }, + "sleepCounter": 0, + "region": { + "#": 1045 + } + }, + [ + { + "#": 1002 + } + ], + [ + { + "#": 1005 + }, + { + "#": 1006 + }, + { + "#": 1007 + }, + { + "#": 1008 + }, + { + "#": 1009 + }, + { + "#": 1010 + }, + { + "#": 1011 + }, + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + }, + { + "#": 1016 + }, + { + "#": 1017 + }, + { + "#": 1018 + }, + { + "#": 1019 + }, + { + "#": 1020 + }, + { + "#": 1021 + }, + { + "#": 1022 + } + ], + { + "x": 51.75582, + "y": 65.44245, + "index": 0, + "body": { + "#": 1002 + }, + "isInternal": false + }, + { + "x": 49.58733, + "y": 70.65729, + "index": 1, + "body": { + "#": 1002 + }, + "isInternal": false + }, + { + "x": 45.76663, + "y": 74.81582, + "index": 2, + "body": { + "#": 1002 + }, + "isInternal": false + }, + { + "x": 40.75473, + "y": 77.41627, + "index": 3, + "body": { + "#": 1002 + }, + "isInternal": false + }, + { + "x": 35.15427, + "y": 78.14637, + "index": 4, + "body": { + "#": 1002 + }, + "isInternal": false + }, + { + "x": 29.64196, + "y": 76.91647, + "index": 5, + "body": { + "#": 1002 + }, + "isInternal": false + }, + { + "x": 24.88374, + "y": 73.87661, + "index": 6, + "body": { + "#": 1002 + }, + "isInternal": false + }, + { + "x": 21.45177, + "y": 69.39188, + "index": 7, + "body": { + "#": 1002 + }, + "isInternal": false + }, + { + "x": 19.76016, + "y": 64.00344, + "index": 8, + "body": { + "#": 1002 + }, + "isInternal": false + }, + { + "x": 20.01393, + "y": 58.36114, + "index": 9, + "body": { + "#": 1002 + }, + "isInternal": false + }, + { + "x": 22.18242, + "y": 53.1463, + "index": 10, + "body": { + "#": 1002 + }, + "isInternal": false + }, + { + "x": 26.00312, + "y": 48.98777, + "index": 11, + "body": { + "#": 1002 + }, + "isInternal": false + }, + { + "x": 31.01502, + "y": 46.38733, + "index": 12, + "body": { + "#": 1002 + }, + "isInternal": false + }, + { + "x": 36.61548, + "y": 45.65722, + "index": 13, + "body": { + "#": 1002 + }, + "isInternal": false + }, + { + "x": 42.12779, + "y": 46.88713, + "index": 14, + "body": { + "#": 1002 + }, + "isInternal": false + }, + { + "x": 46.88601, + "y": 49.92698, + "index": 15, + "body": { + "#": 1002 + }, + "isInternal": false + }, + { + "x": 50.31798, + "y": 54.41171, + "index": 16, + "body": { + "#": 1002 + }, + "isInternal": false + }, + { + "x": 52.00958, + "y": 59.80016, + "index": 17, + "body": { + "#": 1002 + }, + "isInternal": false + }, + { + "x": 35.88487, + "y": 61.9018 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01793, + "y": 0.13488 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1030 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1032 + }, + "max": { + "#": 1033 + } + }, + { + "x": 19.76016, + "y": 45.65722 + }, + { + "x": 52.0191, + "y": 78.56578 + }, + { + "x": 35.90969, + "y": 61.76163 + }, + [ + { + "#": 1036 + }, + { + "#": 1037 + }, + { + "#": 1038 + }, + { + "#": 1039 + }, + { + "#": 1040 + }, + { + "#": 1041 + }, + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + } + ], + { + "x": -0.92335, + "y": -0.38396 + }, + { + "x": -0.73639, + "y": -0.67656 + }, + { + "x": -0.46055, + "y": -0.88763 + }, + { + "x": -0.12927, + "y": -0.99161 + }, + { + "x": 0.21777, + "y": -0.976 + }, + { + "x": 0.53837, + "y": -0.84271 + }, + { + "x": 0.79415, + "y": -0.60773 + }, + { + "x": 0.95409, + "y": -0.29952 + }, + { + "x": 0.99899, + "y": 0.04493 + }, + { + "id": "0,1,0,1", + "startCol": 0, + "endCol": 1, + "startRow": 0, + "endRow": 1 + }, + { + "id": 26, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1047 + }, + "angle": 0.01412, + "vertices": { + "#": 1048 + }, + "position": { + "#": 1061 + }, + "force": { + "#": 1062 + }, + "torque": 0, + "positionImpulse": { + "#": 1063 + }, + "constraintImpulse": { + "#": 1064 + }, + "totalContacts": 0, + "speed": 0.78534, + "angularSpeed": 0.00883, + "velocity": { + "#": 1065 + }, + "angularVelocity": 0.00958, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1066 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1067 + }, + "circleRadius": 11.63199, + "bounds": { + "#": 1069 + }, + "positionPrev": { + "#": 1072 + }, + "anglePrev": 0.00454, + "axes": { + "#": 1073 + }, + "area": 405.92888, + "mass": 0.40593, + "inverseMass": 2.46349, + "inertia": 104.94637, + "inverseInertia": 0.00953, + "parent": { + "#": 1046 + }, + "sleepCounter": 0, + "region": { + "#": 1080 + } + }, + [ + { + "#": 1046 + } + ], + [ + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + }, + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + }, + { + "#": 1057 + }, + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + } + ], + { + "x": 82.41717, + "y": 71.54838, + "index": 0, + "body": { + "#": 1046 + }, + "isInternal": false + }, + { + "x": 79.33287, + "y": 76.71936, + "index": 1, + "body": { + "#": 1046 + }, + "isInternal": false + }, + { + "x": 74.07688, + "y": 79.65645, + "index": 2, + "body": { + "#": 1046 + }, + "isInternal": false + }, + { + "x": 68.05548, + "y": 79.57144, + "index": 3, + "body": { + "#": 1046 + }, + "isInternal": false + }, + { + "x": 62.88451, + "y": 76.48714, + "index": 4, + "body": { + "#": 1046 + }, + "isInternal": false + }, + { + "x": 59.94741, + "y": 71.23115, + "index": 5, + "body": { + "#": 1046 + }, + "isInternal": false + }, + { + "x": 60.03242, + "y": 65.20975, + "index": 6, + "body": { + "#": 1046 + }, + "isInternal": false + }, + { + "x": 63.11672, + "y": 60.03878, + "index": 7, + "body": { + "#": 1046 + }, + "isInternal": false + }, + { + "x": 68.37271, + "y": 57.10168, + "index": 8, + "body": { + "#": 1046 + }, + "isInternal": false + }, + { + "x": 74.39411, + "y": 57.18669, + "index": 9, + "body": { + "#": 1046 + }, + "isInternal": false + }, + { + "x": 79.56509, + "y": 60.271, + "index": 10, + "body": { + "#": 1046 + }, + "isInternal": false + }, + { + "x": 82.50218, + "y": 65.52698, + "index": 11, + "body": { + "#": 1046 + }, + "isInternal": false + }, + { + "x": 71.2248, + "y": 68.37907 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.64723, + "y": 0.442 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1068 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1070 + }, + "max": { + "#": 1071 + } + }, + { + "x": 59.94741, + "y": 57.10168 + }, + { + "x": 83.06772, + "y": 80.20137 + }, + { + "x": 70.57757, + "y": 67.93707 + }, + [ + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + }, + { + "#": 1079 + } + ], + { + "x": -0.85883, + "y": -0.51226 + }, + { + "x": -0.48781, + "y": -0.87295 + }, + { + "x": 0.01412, + "y": -0.9999 + }, + { + "x": 0.51226, + "y": -0.85883 + }, + { + "x": 0.87295, + "y": -0.48781 + }, + { + "x": 0.9999, + "y": 0.01412 + }, + { + "id": "1,1,1,1", + "startCol": 1, + "endCol": 1, + "startRow": 1, + "endRow": 1 + }, + { + "id": 27, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1082 + }, + "angle": -0.00433, + "vertices": { + "#": 1083 + }, + "position": { + "#": 1102 + }, + "force": { + "#": 1103 + }, + "torque": 0, + "positionImpulse": { + "#": 1104 + }, + "constraintImpulse": { + "#": 1105 + }, + "totalContacts": 0, + "speed": 0.79155, + "angularSpeed": 0.00302, + "velocity": { + "#": 1106 + }, + "angularVelocity": -0.00075, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1107 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1108 + }, + "circleRadius": 16.25193, + "bounds": { + "#": 1110 + }, + "positionPrev": { + "#": 1113 + }, + "anglePrev": -0.00348, + "axes": { + "#": 1114 + }, + "area": 813.04524, + "mass": 0.81305, + "inverseMass": 1.22994, + "inertia": 420.86798, + "inverseInertia": 0.00238, + "parent": { + "#": 1081 + }, + "sleepCounter": 0, + "region": { + "#": 1124 + } + }, + [ + { + "#": 1081 + } + ], + [ + { + "#": 1084 + }, + { + "#": 1085 + }, + { + "#": 1086 + }, + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + } + ], + { + "x": 112.76709, + "y": 81.65586, + "index": 0, + "body": { + "#": 1081 + }, + "isInternal": false + }, + { + "x": 110.86009, + "y": 86.96818, + "index": 1, + "body": { + "#": 1081 + }, + "isInternal": false + }, + { + "x": 107.25086, + "y": 91.30786, + "index": 2, + "body": { + "#": 1081 + }, + "isInternal": false + }, + { + "x": 102.37414, + "y": 94.15102, + "index": 3, + "body": { + "#": 1081 + }, + "isInternal": false + }, + { + "x": 96.82044, + "y": 95.1551, + "index": 4, + "body": { + "#": 1081 + }, + "isInternal": false + }, + { + "x": 91.25825, + "y": 94.1992, + "index": 5, + "body": { + "#": 1081 + }, + "isInternal": false + }, + { + "x": 86.35706, + "y": 91.39841, + "index": 6, + "body": { + "#": 1081 + }, + "isInternal": false + }, + { + "x": 82.71036, + "y": 87.09017, + "index": 7, + "body": { + "#": 1081 + }, + "isInternal": false + }, + { + "x": 80.75739, + "y": 81.79459, + "index": 8, + "body": { + "#": 1081 + }, + "isInternal": false + }, + { + "x": 80.73293, + "y": 76.15064, + "index": 9, + "body": { + "#": 1081 + }, + "isInternal": false + }, + { + "x": 82.63992, + "y": 70.83833, + "index": 10, + "body": { + "#": 1081 + }, + "isInternal": false + }, + { + "x": 86.24915, + "y": 66.49864, + "index": 11, + "body": { + "#": 1081 + }, + "isInternal": false + }, + { + "x": 91.12587, + "y": 63.65548, + "index": 12, + "body": { + "#": 1081 + }, + "isInternal": false + }, + { + "x": 96.67957, + "y": 62.6514, + "index": 13, + "body": { + "#": 1081 + }, + "isInternal": false + }, + { + "x": 102.24177, + "y": 63.60731, + "index": 14, + "body": { + "#": 1081 + }, + "isInternal": false + }, + { + "x": 107.14295, + "y": 66.40809, + "index": 15, + "body": { + "#": 1081 + }, + "isInternal": false + }, + { + "x": 110.78966, + "y": 70.71633, + "index": 16, + "body": { + "#": 1081 + }, + "isInternal": false + }, + { + "x": 112.74263, + "y": 76.01192, + "index": 17, + "body": { + "#": 1081 + }, + "isInternal": false + }, + { + "x": 96.75001, + "y": 78.90325 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.13804, + "y": -0.12247 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.75506, + "y": 0.44705 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1109 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1111 + }, + "max": { + "#": 1112 + } + }, + { + "x": 80.73293, + "y": 62.6514 + }, + { + "x": 113.35474, + "y": 95.6854 + }, + { + "x": 95.99715, + "y": 78.54809 + }, + [ + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + } + ], + { + "x": -0.94119, + "y": -0.33787 + }, + { + "x": -0.76885, + "y": -0.63943 + }, + { + "x": -0.50366, + "y": -0.8639 + }, + { + "x": -0.17791, + "y": -0.98405 + }, + { + "x": 0.16937, + "y": -0.98555 + }, + { + "x": 0.49615, + "y": -0.86823 + }, + { + "x": 0.76327, + "y": -0.64607 + }, + { + "x": 0.93823, + "y": -0.34601 + }, + { + "x": 0.99999, + "y": -0.00433 + }, + { + "id": "1,2,1,1", + "startCol": 1, + "endCol": 2, + "startRow": 1, + "endRow": 1 + }, + { + "id": 28, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1126 + }, + "angle": 0.01665, + "vertices": { + "#": 1127 + }, + "position": { + "#": 1148 + }, + "force": { + "#": 1149 + }, + "torque": 0, + "positionImpulse": { + "#": 1150 + }, + "constraintImpulse": { + "#": 1151 + }, + "totalContacts": 0, + "speed": 0.78125, + "angularSpeed": 0.00122, + "velocity": { + "#": 1152 + }, + "angularVelocity": 0.00092, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1153 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1154 + }, + "circleRadius": 19.50356, + "bounds": { + "#": 1156 + }, + "positionPrev": { + "#": 1159 + }, + "anglePrev": 0.01566, + "axes": { + "#": 1160 + }, + "area": 1175.44088, + "mass": 1.17544, + "inverseMass": 0.85074, + "inertia": 879.64105, + "inverseInertia": 0.00114, + "parent": { + "#": 1125 + }, + "sleepCounter": 0, + "region": { + "#": 1171 + } + }, + [ + { + "#": 1125 + } + ], + [ + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + } + ], + { + "x": 151.20523, + "y": 88.1705, + "index": 0, + "body": { + "#": 1125 + }, + "isInternal": false + }, + { + "x": 149.22387, + "y": 93.94131, + "index": 1, + "body": { + "#": 1125 + }, + "isInternal": false + }, + { + "x": 145.55517, + "y": 98.8179, + "index": 2, + "body": { + "#": 1125 + }, + "isInternal": false + }, + { + "x": 140.55914, + "y": 102.32221, + "index": 3, + "body": { + "#": 1125 + }, + "isInternal": false + }, + { + "x": 134.72556, + "y": 104.11033, + "index": 4, + "body": { + "#": 1125 + }, + "isInternal": false + }, + { + "x": 128.6244, + "y": 104.00874, + "index": 5, + "body": { + "#": 1125 + }, + "isInternal": false + }, + { + "x": 122.85359, + "y": 102.02739, + "index": 6, + "body": { + "#": 1125 + }, + "isInternal": false + }, + { + "x": 117.977, + "y": 98.35869, + "index": 7, + "body": { + "#": 1125 + }, + "isInternal": false + }, + { + "x": 114.47269, + "y": 93.36265, + "index": 8, + "body": { + "#": 1125 + }, + "isInternal": false + }, + { + "x": 112.68457, + "y": 87.52907, + "index": 9, + "body": { + "#": 1125 + }, + "isInternal": false + }, + { + "x": 112.78616, + "y": 81.42792, + "index": 10, + "body": { + "#": 1125 + }, + "isInternal": false + }, + { + "x": 114.76751, + "y": 75.65711, + "index": 11, + "body": { + "#": 1125 + }, + "isInternal": false + }, + { + "x": 118.43621, + "y": 70.78051, + "index": 12, + "body": { + "#": 1125 + }, + "isInternal": false + }, + { + "x": 123.43225, + "y": 67.27621, + "index": 13, + "body": { + "#": 1125 + }, + "isInternal": false + }, + { + "x": 129.26583, + "y": 65.48808, + "index": 14, + "body": { + "#": 1125 + }, + "isInternal": false + }, + { + "x": 135.36698, + "y": 65.58967, + "index": 15, + "body": { + "#": 1125 + }, + "isInternal": false + }, + { + "x": 141.13779, + "y": 67.57103, + "index": 16, + "body": { + "#": 1125 + }, + "isInternal": false + }, + { + "x": 146.01439, + "y": 71.23973, + "index": 17, + "body": { + "#": 1125 + }, + "isInternal": false + }, + { + "x": 149.51869, + "y": 76.23576, + "index": 18, + "body": { + "#": 1125 + }, + "isInternal": false + }, + { + "x": 151.30682, + "y": 82.06934, + "index": 19, + "body": { + "#": 1125 + }, + "isInternal": false + }, + { + "x": 131.99569, + "y": 84.79921 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.23273, + "y": -0.22376 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.79869, + "y": 0.12248 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1155 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1157 + }, + "max": { + "#": 1158 + } + }, + { + "x": 112.68457, + "y": 65.48808 + }, + { + "x": 152.04481, + "y": 104.3667 + }, + { + "x": 131.20406, + "y": 84.6523 + }, + [ + { + "#": 1161 + }, + { + "#": 1162 + }, + { + "#": 1163 + }, + { + "#": 1164 + }, + { + "#": 1165 + }, + { + "#": 1166 + }, + { + "#": 1167 + }, + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + } + ], + { + "x": -0.94581, + "y": -0.32473 + }, + { + "x": -0.79911, + "y": -0.60118 + }, + { + "x": -0.57424, + "y": -0.81869 + }, + { + "x": -0.29306, + "y": -0.95609 + }, + { + "x": 0.01665, + "y": -0.99986 + }, + { + "x": 0.32473, + "y": -0.94581 + }, + { + "x": 0.60118, + "y": -0.79911 + }, + { + "x": 0.81869, + "y": -0.57424 + }, + { + "x": 0.95609, + "y": -0.29306 + }, + { + "x": 0.99986, + "y": 0.01665 + }, + { + "id": "2,3,1,2", + "startCol": 2, + "endCol": 3, + "startRow": 1, + "endRow": 2 + }, + { + "id": 29, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1173 + }, + "angle": 0.26171, + "vertices": { + "#": 1174 + }, + "position": { + "#": 1187 + }, + "force": { + "#": 1188 + }, + "torque": 0, + "positionImpulse": { + "#": 1189 + }, + "constraintImpulse": { + "#": 1190 + }, + "totalContacts": 0, + "speed": 2.79638, + "angularSpeed": 0.07627, + "velocity": { + "#": 1191 + }, + "angularVelocity": 0.07627, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1192 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1193 + }, + "circleRadius": 10.39922, + "bounds": { + "#": 1195 + }, + "positionPrev": { + "#": 1198 + }, + "anglePrev": 0.18519, + "axes": { + "#": 1199 + }, + "area": 324.431, + "mass": 0.32443, + "inverseMass": 3.08232, + "inertia": 67.03663, + "inverseInertia": 0.01492, + "parent": { + "#": 1172 + }, + "sleepCounter": 0, + "region": { + "#": 1206 + } + }, + [ + { + "#": 1172 + } + ], + [ + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + }, + { + "#": 1179 + }, + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + }, + { + "#": 1186 + } + ], + { + "x": 170.62233, + "y": 90.08249, + "index": 0, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 166.81604, + "y": 93.88827, + "index": 1, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 161.61724, + "y": 95.28264, + "index": 2, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 156.41657, + "y": 93.88962, + "index": 3, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 152.6108, + "y": 90.08332, + "index": 4, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 151.21642, + "y": 84.88453, + "index": 5, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 152.60945, + "y": 79.68386, + "index": 6, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 156.41574, + "y": 75.87808, + "index": 7, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 161.61454, + "y": 74.48371, + "index": 8, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 166.8152, + "y": 75.87673, + "index": 9, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 170.62098, + "y": 79.68303, + "index": 10, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 172.01535, + "y": 84.88182, + "index": 11, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 161.61589, + "y": 84.88317 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 1.12862, + "y": 2.55846 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1194 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1196 + }, + "max": { + "#": 1197 + } + }, + { + "x": 151.21642, + "y": 74.48371 + }, + { + "x": 173.14396, + "y": 97.84115 + }, + { + "x": 160.52546, + "y": 82.33495 + }, + [ + { + "#": 1200 + }, + { + "#": 1201 + }, + { + "#": 1202 + }, + { + "#": 1203 + }, + { + "#": 1204 + }, + { + "#": 1205 + } + ], + { + "x": -0.70706, + "y": -0.70715 + }, + { + "x": -0.25905, + "y": -0.96586 + }, + { + "x": 0.25873, + "y": -0.96595 + }, + { + "x": 0.70715, + "y": -0.70706 + }, + { + "x": 0.96586, + "y": -0.25905 + }, + { + "x": 0.96595, + "y": 0.25873 + }, + { + "id": "3,3,1,1", + "startCol": 3, + "endCol": 3, + "startRow": 1, + "endRow": 1 + }, + { + "id": 30, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1208 + }, + "angle": 0.02829, + "vertices": { + "#": 1209 + }, + "position": { + "#": 1226 + }, + "force": { + "#": 1227 + }, + "torque": 0, + "positionImpulse": { + "#": 1228 + }, + "constraintImpulse": { + "#": 1229 + }, + "totalContacts": 0, + "speed": 3.16001, + "angularSpeed": 0.00732, + "velocity": { + "#": 1230 + }, + "angularVelocity": 0.00709, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1231 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1232 + }, + "circleRadius": 15.35867, + "bounds": { + "#": 1234 + }, + "positionPrev": { + "#": 1237 + }, + "anglePrev": 0.02143, + "axes": { + "#": 1238 + }, + "area": 722.17737, + "mass": 0.72218, + "inverseMass": 1.3847, + "inertia": 332.06746, + "inverseInertia": 0.00301, + "parent": { + "#": 1207 + }, + "sleepCounter": 0, + "region": { + "#": 1247 + } + }, + [ + { + "#": 1207 + } + ], + [ + { + "#": 1210 + }, + { + "#": 1211 + }, + { + "#": 1212 + }, + { + "#": 1213 + }, + { + "#": 1214 + }, + { + "#": 1215 + }, + { + "#": 1216 + }, + { + "#": 1217 + }, + { + "#": 1218 + }, + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + } + ], + { + "x": 200.85793, + "y": 95.58766, + "index": 0, + "body": { + "#": 1207 + }, + "isInternal": false + }, + { + "x": 198.40824, + "y": 101.05756, + "index": 1, + "body": { + "#": 1207 + }, + "isInternal": false + }, + { + "x": 194.05309, + "y": 105.17302, + "index": 2, + "body": { + "#": 1207 + }, + "isInternal": false + }, + { + "x": 188.45342, + "y": 107.30949, + "index": 3, + "body": { + "#": 1207 + }, + "isInternal": false + }, + { + "x": 182.46382, + "y": 107.14001, + "index": 4, + "body": { + "#": 1207 + }, + "isInternal": false + }, + { + "x": 176.99392, + "y": 104.69032, + "index": 5, + "body": { + "#": 1207 + }, + "isInternal": false + }, + { + "x": 172.87845, + "y": 100.33517, + "index": 6, + "body": { + "#": 1207 + }, + "isInternal": false + }, + { + "x": 170.74198, + "y": 94.7355, + "index": 7, + "body": { + "#": 1207 + }, + "isInternal": false + }, + { + "x": 170.91146, + "y": 88.7459, + "index": 8, + "body": { + "#": 1207 + }, + "isInternal": false + }, + { + "x": 173.36116, + "y": 83.276, + "index": 9, + "body": { + "#": 1207 + }, + "isInternal": false + }, + { + "x": 177.7163, + "y": 79.16054, + "index": 10, + "body": { + "#": 1207 + }, + "isInternal": false + }, + { + "x": 183.31597, + "y": 77.02407, + "index": 11, + "body": { + "#": 1207 + }, + "isInternal": false + }, + { + "x": 189.30558, + "y": 77.19355, + "index": 12, + "body": { + "#": 1207 + }, + "isInternal": false + }, + { + "x": 194.77548, + "y": 79.64324, + "index": 13, + "body": { + "#": 1207 + }, + "isInternal": false + }, + { + "x": 198.89094, + "y": 83.99839, + "index": 14, + "body": { + "#": 1207 + }, + "isInternal": false + }, + { + "x": 201.02741, + "y": 89.59806, + "index": 15, + "body": { + "#": 1207 + }, + "isInternal": false + }, + { + "x": 185.8847, + "y": 92.16678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.07145, + "y": 0.0589 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.88164, + "y": 3.02539 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1233 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1235 + }, + "max": { + "#": 1236 + } + }, + { + "x": 170.74198, + "y": 77.02407 + }, + { + "x": 201.95854, + "y": 110.32921 + }, + { + "x": 185.08992, + "y": 89.13996 + }, + [ + { + "#": 1239 + }, + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + } + ], + { + "x": -0.91265, + "y": -0.40873 + }, + { + "x": -0.68682, + "y": -0.72682 + }, + { + "x": -0.35647, + "y": -0.93431 + }, + { + "x": 0.02828, + "y": -0.9996 + }, + { + "x": 0.40873, + "y": -0.91265 + }, + { + "x": 0.72682, + "y": -0.68682 + }, + { + "x": 0.93431, + "y": -0.35647 + }, + { + "x": 0.9996, + "y": 0.02828 + }, + { + "id": "3,4,1,2", + "startCol": 3, + "endCol": 4, + "startRow": 1, + "endRow": 2 + }, + { + "id": 31, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1249 + }, + "angle": -0.01655, + "vertices": { + "#": 1250 + }, + "position": { + "#": 1265 + }, + "force": { + "#": 1266 + }, + "torque": 0, + "positionImpulse": { + "#": 1267 + }, + "constraintImpulse": { + "#": 1268 + }, + "totalContacts": 0, + "speed": 3.05915, + "angularSpeed": 0.00716, + "velocity": { + "#": 1269 + }, + "angularVelocity": -0.00831, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1270 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1271 + }, + "circleRadius": 12.65351, + "bounds": { + "#": 1273 + }, + "positionPrev": { + "#": 1276 + }, + "anglePrev": -0.00815, + "axes": { + "#": 1277 + }, + "area": 486.27648, + "mass": 0.48628, + "inverseMass": 2.05644, + "inertia": 150.57294, + "inverseInertia": 0.00664, + "parent": { + "#": 1248 + }, + "sleepCounter": 0, + "region": { + "#": 1285 + } + }, + [ + { + "#": 1248 + } + ], + [ + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + }, + { + "#": 1254 + }, + { + "#": 1255 + }, + { + "#": 1256 + }, + { + "#": 1257 + }, + { + "#": 1258 + }, + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + }, + { + "#": 1263 + }, + { + "#": 1264 + } + ], + { + "x": 225.61581, + "y": 91.84434, + "index": 0, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 223.25712, + "y": 96.95709, + "index": 1, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 218.91284, + "y": 100.54049, + "index": 2, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 213.44435, + "y": 101.88519, + "index": 3, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 207.93434, + "y": 100.72224, + "index": 4, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 203.47383, + "y": 97.2846, + "index": 5, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 200.94719, + "y": 92.25274, + "index": 6, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 200.85396, + "y": 86.62151, + "index": 7, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 203.21265, + "y": 81.50877, + "index": 8, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 207.55693, + "y": 77.92536, + "index": 9, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 213.02542, + "y": 76.58066, + "index": 10, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 218.53543, + "y": 77.74361, + "index": 11, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 222.99594, + "y": 81.18125, + "index": 12, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 225.52258, + "y": 86.21311, + "index": 13, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 213.23488, + "y": 89.23293 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.10219, + "y": -0.00041 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.85889, + "y": 2.90749 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1272 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1274 + }, + "max": { + "#": 1275 + } + }, + { + "x": 200.85396, + "y": 76.58066 + }, + { + "x": 226.57223, + "y": 104.79099 + }, + { + "x": 212.4831, + "y": 86.32367 + }, + [ + { + "#": 1278 + }, + { + "#": 1279 + }, + { + "#": 1280 + }, + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + } + ], + { + "x": -0.90803, + "y": -0.41891 + }, + { + "x": -0.63632, + "y": -0.77143 + }, + { + "x": -0.23879, + "y": -0.97107 + }, + { + "x": 0.20651, + "y": -0.97844 + }, + { + "x": 0.61043, + "y": -0.79207 + }, + { + "x": 0.89367, + "y": -0.44873 + }, + { + "x": 0.99986, + "y": -0.01655 + }, + { + "id": "4,4,1,2", + "startCol": 4, + "endCol": 4, + "startRow": 1, + "endRow": 2 + }, + { + "id": 32, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1287 + }, + "angle": 0.01582, + "vertices": { + "#": 1288 + }, + "position": { + "#": 1303 + }, + "force": { + "#": 1304 + }, + "torque": 0, + "positionImpulse": { + "#": 1305 + }, + "constraintImpulse": { + "#": 1306 + }, + "totalContacts": 0, + "speed": 1.43518, + "angularSpeed": 0.01326, + "velocity": { + "#": 1307 + }, + "angularVelocity": 0.015, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1308 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1309 + }, + "circleRadius": 13.5183, + "bounds": { + "#": 1311 + }, + "positionPrev": { + "#": 1314 + }, + "anglePrev": 0.00099, + "axes": { + "#": 1315 + }, + "area": 555.02815, + "mass": 0.55503, + "inverseMass": 1.80171, + "inertia": 196.15998, + "inverseInertia": 0.0051, + "parent": { + "#": 1286 + }, + "sleepCounter": 0, + "region": { + "#": 1323 + } + }, + [ + { + "#": 1286 + } + ], + [ + { + "#": 1289 + }, + { + "#": 1290 + }, + { + "#": 1291 + }, + { + "#": 1292 + }, + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + }, + { + "#": 1296 + }, + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + }, + { + "#": 1301 + }, + { + "#": 1302 + } + ], + { + "x": 251.71724, + "y": 89.18591, + "index": 0, + "body": { + "#": 1286 + }, + "isInternal": false + }, + { + "x": 249.02181, + "y": 94.56495, + "index": 1, + "body": { + "#": 1286 + }, + "isInternal": false + }, + { + "x": 244.25907, + "y": 98.24107, + "index": 2, + "body": { + "#": 1286 + }, + "isInternal": false + }, + { + "x": 238.37364, + "y": 99.48613, + "index": 3, + "body": { + "#": 1286 + }, + "isInternal": false + }, + { + "x": 232.53054, + "y": 98.05553, + "index": 4, + "body": { + "#": 1286 + }, + "isInternal": false + }, + { + "x": 227.88646, + "y": 94.23059, + "index": 5, + "body": { + "#": 1286 + }, + "isInternal": false + }, + { + "x": 225.36253, + "y": 88.76898, + "index": 6, + "body": { + "#": 1286 + }, + "isInternal": false + }, + { + "x": 225.4577, + "y": 82.75373, + "index": 7, + "body": { + "#": 1286 + }, + "isInternal": false + }, + { + "x": 228.15312, + "y": 77.3747, + "index": 8, + "body": { + "#": 1286 + }, + "isInternal": false + }, + { + "x": 232.91586, + "y": 73.69857, + "index": 9, + "body": { + "#": 1286 + }, + "isInternal": false + }, + { + "x": 238.80129, + "y": 72.45351, + "index": 10, + "body": { + "#": 1286 + }, + "isInternal": false + }, + { + "x": 244.6444, + "y": 73.88412, + "index": 11, + "body": { + "#": 1286 + }, + "isInternal": false + }, + { + "x": 249.28847, + "y": 77.70906, + "index": 12, + "body": { + "#": 1286 + }, + "isInternal": false + }, + { + "x": 251.8124, + "y": 83.17067, + "index": 13, + "body": { + "#": 1286 + }, + "isInternal": false + }, + { + "x": 238.58747, + "y": 85.96982 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.68563, + "y": 0.17404 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1310 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1312 + }, + "max": { + "#": 1313 + } + }, + { + "x": 225.36253, + "y": 72.45351 + }, + { + "x": 252.96506, + "y": 100.34118 + }, + { + "x": 237.90875, + "y": 85.76758 + }, + [ + { + "#": 1316 + }, + { + "#": 1317 + }, + { + "#": 1318 + }, + { + "#": 1319 + }, + { + "#": 1320 + }, + { + "#": 1321 + }, + { + "#": 1322 + } + ], + { + "x": -0.89403, + "y": -0.448 + }, + { + "x": -0.61101, + "y": -0.79162 + }, + { + "x": -0.20697, + "y": -0.97835 + }, + { + "x": 0.23781, + "y": -0.97131 + }, + { + "x": 0.63575, + "y": -0.7719 + }, + { + "x": 0.90776, + "y": -0.41949 + }, + { + "x": 0.99987, + "y": 0.01582 + }, + { + "id": "4,5,1,2", + "startCol": 4, + "endCol": 5, + "startRow": 1, + "endRow": 2 + }, + { + "id": 33, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1325 + }, + "angle": 0.002, + "vertices": { + "#": 1326 + }, + "position": { + "#": 1347 + }, + "force": { + "#": 1348 + }, + "torque": 0, + "positionImpulse": { + "#": 1349 + }, + "constraintImpulse": { + "#": 1350 + }, + "totalContacts": 0, + "speed": 1.48123, + "angularSpeed": 0.0004, + "velocity": { + "#": 1351 + }, + "angularVelocity": 0.0027, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1352 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1353 + }, + "circleRadius": 19.92837, + "bounds": { + "#": 1355 + }, + "positionPrev": { + "#": 1358 + }, + "anglePrev": -0.00087, + "axes": { + "#": 1359 + }, + "area": 1227.18832, + "mass": 1.22719, + "inverseMass": 0.81487, + "inertia": 958.79625, + "inverseInertia": 0.00104, + "parent": { + "#": 1324 + }, + "sleepCounter": 0, + "region": { + "#": 1370 + } + }, + [ + { + "#": 1324 + } + ], + [ + { + "#": 1327 + }, + { + "#": 1328 + }, + { + "#": 1329 + }, + { + "#": 1330 + }, + { + "#": 1331 + }, + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + }, + { + "#": 1335 + }, + { + "#": 1336 + }, + { + "#": 1337 + }, + { + "#": 1338 + }, + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + }, + { + "#": 1342 + }, + { + "#": 1343 + }, + { + "#": 1344 + }, + { + "#": 1345 + }, + { + "#": 1346 + } + ], + { + "x": 290.13719, + "y": 81.63994, + "index": 0, + "body": { + "#": 1324 + }, + "isInternal": false + }, + { + "x": 288.19835, + "y": 87.56608, + "index": 1, + "body": { + "#": 1324 + }, + "isInternal": false + }, + { + "x": 284.52328, + "y": 92.60274, + "index": 2, + "body": { + "#": 1324 + }, + "isInternal": false + }, + { + "x": 279.47196, + "y": 96.25766, + "index": 3, + "body": { + "#": 1324 + }, + "isInternal": false + }, + { + "x": 273.53812, + "y": 98.1728, + "index": 4, + "body": { + "#": 1324 + }, + "isInternal": false + }, + { + "x": 267.30414, + "y": 98.16035, + "index": 5, + "body": { + "#": 1324 + }, + "isInternal": false + }, + { + "x": 261.378, + "y": 96.2215, + "index": 6, + "body": { + "#": 1324 + }, + "isInternal": false + }, + { + "x": 256.34133, + "y": 92.54643, + "index": 7, + "body": { + "#": 1324 + }, + "isInternal": false + }, + { + "x": 252.68642, + "y": 87.49511, + "index": 8, + "body": { + "#": 1324 + }, + "isInternal": false + }, + { + "x": 250.77127, + "y": 81.56127, + "index": 9, + "body": { + "#": 1324 + }, + "isInternal": false + }, + { + "x": 250.78373, + "y": 75.32729, + "index": 10, + "body": { + "#": 1324 + }, + "isInternal": false + }, + { + "x": 252.72258, + "y": 69.40115, + "index": 11, + "body": { + "#": 1324 + }, + "isInternal": false + }, + { + "x": 256.39765, + "y": 64.36448, + "index": 12, + "body": { + "#": 1324 + }, + "isInternal": false + }, + { + "x": 261.44896, + "y": 60.70957, + "index": 13, + "body": { + "#": 1324 + }, + "isInternal": false + }, + { + "x": 267.3828, + "y": 58.79442, + "index": 14, + "body": { + "#": 1324 + }, + "isInternal": false + }, + { + "x": 273.61679, + "y": 58.80688, + "index": 15, + "body": { + "#": 1324 + }, + "isInternal": false + }, + { + "x": 279.54293, + "y": 60.74573, + "index": 16, + "body": { + "#": 1324 + }, + "isInternal": false + }, + { + "x": 284.57959, + "y": 64.4208, + "index": 17, + "body": { + "#": 1324 + }, + "isInternal": false + }, + { + "x": 288.23451, + "y": 69.47212, + "index": 18, + "body": { + "#": 1324 + }, + "isInternal": false + }, + { + "x": 290.14965, + "y": 75.40595, + "index": 19, + "body": { + "#": 1324 + }, + "isInternal": false + }, + { + "x": 270.46046, + "y": 78.48361 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.63993, + "y": 0.06283 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1354 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1356 + }, + "max": { + "#": 1357 + } + }, + { + "x": 250.77127, + "y": 58.79442 + }, + { + "x": 291.28939, + "y": 99.11886 + }, + { + "x": 269.76449, + "y": 78.43887 + }, + [ + { + "#": 1360 + }, + { + "#": 1361 + }, + { + "#": 1362 + }, + { + "#": 1363 + }, + { + "#": 1364 + }, + { + "#": 1365 + }, + { + "#": 1366 + }, + { + "#": 1367 + }, + { + "#": 1368 + }, + { + "#": 1369 + } + ], + { + "x": -0.95043, + "y": -0.31095 + }, + { + "x": -0.80782, + "y": -0.58943 + }, + { + "x": -0.5862, + "y": -0.81017 + }, + { + "x": -0.30715, + "y": -0.95166 + }, + { + "x": 0.002, + "y": -1 + }, + { + "x": 0.31095, + "y": -0.95043 + }, + { + "x": 0.58943, + "y": -0.80782 + }, + { + "x": 0.81017, + "y": -0.5862 + }, + { + "x": 0.95166, + "y": -0.30715 + }, + { + "x": 1, + "y": 0.002 + }, + { + "id": "5,6,1,2", + "startCol": 5, + "endCol": 6, + "startRow": 1, + "endRow": 2 + }, + { + "id": 34, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1372 + }, + "angle": -0.00048, + "vertices": { + "#": 1373 + }, + "position": { + "#": 1394 + }, + "force": { + "#": 1395 + }, + "torque": 0, + "positionImpulse": { + "#": 1396 + }, + "constraintImpulse": { + "#": 1397 + }, + "totalContacts": 0, + "speed": 0.57354, + "angularSpeed": 0.00125, + "velocity": { + "#": 1398 + }, + "angularVelocity": -0.00204, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1399 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1400 + }, + "circleRadius": 19.0442, + "bounds": { + "#": 1402 + }, + "positionPrev": { + "#": 1405 + }, + "anglePrev": 0.00166, + "axes": { + "#": 1406 + }, + "area": 1120.77247, + "mass": 1.12077, + "inverseMass": 0.89224, + "inertia": 799.72157, + "inverseInertia": 0.00125, + "parent": { + "#": 1371 + }, + "sleepCounter": 0, + "region": { + "#": 1417 + } + }, + [ + { + "#": 1371 + } + ], + [ + { + "#": 1374 + }, + { + "#": 1375 + }, + { + "#": 1376 + }, + { + "#": 1377 + }, + { + "#": 1378 + }, + { + "#": 1379 + }, + { + "#": 1380 + }, + { + "#": 1381 + }, + { + "#": 1382 + }, + { + "#": 1383 + }, + { + "#": 1384 + }, + { + "#": 1385 + }, + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + }, + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + } + ], + { + "x": 324.77647, + "y": 94.71427, + "index": 0, + "body": { + "#": 1371 + }, + "isInternal": false + }, + { + "x": 322.93821, + "y": 100.38216, + "index": 1, + "body": { + "#": 1371 + }, + "isInternal": false + }, + { + "x": 319.43755, + "y": 105.20386, + "index": 2, + "body": { + "#": 1371 + }, + "isInternal": false + }, + { + "x": 314.61925, + "y": 108.70919, + "index": 3, + "body": { + "#": 1371 + }, + "isInternal": false + }, + { + "x": 308.95314, + "y": 110.55294, + "index": 4, + "body": { + "#": 1371 + }, + "isInternal": false + }, + { + "x": 302.99514, + "y": 110.55582, + "index": 5, + "body": { + "#": 1371 + }, + "isInternal": false + }, + { + "x": 297.32725, + "y": 108.71757, + "index": 6, + "body": { + "#": 1371 + }, + "isInternal": false + }, + { + "x": 292.50555, + "y": 105.2169, + "index": 7, + "body": { + "#": 1371 + }, + "isInternal": false + }, + { + "x": 289.00022, + "y": 100.3986, + "index": 8, + "body": { + "#": 1371 + }, + "isInternal": false + }, + { + "x": 287.15647, + "y": 94.73249, + "index": 9, + "body": { + "#": 1371 + }, + "isInternal": false + }, + { + "x": 287.15359, + "y": 88.77449, + "index": 10, + "body": { + "#": 1371 + }, + "isInternal": false + }, + { + "x": 288.99185, + "y": 83.1066, + "index": 11, + "body": { + "#": 1371 + }, + "isInternal": false + }, + { + "x": 292.49251, + "y": 78.2849, + "index": 12, + "body": { + "#": 1371 + }, + "isInternal": false + }, + { + "x": 297.31081, + "y": 74.77957, + "index": 13, + "body": { + "#": 1371 + }, + "isInternal": false + }, + { + "x": 302.97692, + "y": 72.93583, + "index": 14, + "body": { + "#": 1371 + }, + "isInternal": false + }, + { + "x": 308.93492, + "y": 72.93294, + "index": 15, + "body": { + "#": 1371 + }, + "isInternal": false + }, + { + "x": 314.60281, + "y": 74.7712, + "index": 16, + "body": { + "#": 1371 + }, + "isInternal": false + }, + { + "x": 319.42451, + "y": 78.27186, + "index": 17, + "body": { + "#": 1371 + }, + "isInternal": false + }, + { + "x": 322.92984, + "y": 83.09017, + "index": 18, + "body": { + "#": 1371 + }, + "isInternal": false + }, + { + "x": 324.77359, + "y": 88.75627, + "index": 19, + "body": { + "#": 1371 + }, + "isInternal": false + }, + { + "x": 305.96503, + "y": 91.74438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.41976, + "y": -0.02105 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.66631, + "y": 0.22104 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1401 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1403 + }, + "max": { + "#": 1404 + } + }, + { + "x": 287.15359, + "y": 72.93294 + }, + { + "x": 324.87209, + "y": 111.12134 + }, + { + "x": 305.32552, + "y": 91.59116 + }, + [ + { + "#": 1407 + }, + { + "#": 1408 + }, + { + "#": 1409 + }, + { + "#": 1410 + }, + { + "#": 1411 + }, + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + }, + { + "#": 1415 + }, + { + "#": 1416 + } + ], + { + "x": -0.95122, + "y": -0.30851 + }, + { + "x": -0.80922, + "y": -0.58751 + }, + { + "x": -0.58829, + "y": -0.80865 + }, + { + "x": -0.30943, + "y": -0.95092 + }, + { + "x": -0.00048, + "y": -1 + }, + { + "x": 0.30851, + "y": -0.95122 + }, + { + "x": 0.58751, + "y": -0.80922 + }, + { + "x": 0.80865, + "y": -0.58829 + }, + { + "x": 0.95092, + "y": -0.30943 + }, + { + "x": 1, + "y": -0.00048 + }, + { + "id": "5,6,1,2", + "startCol": 5, + "endCol": 6, + "startRow": 1, + "endRow": 2 + }, + { + "id": 35, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1419 + }, + "angle": -0.00534, + "vertices": { + "#": 1420 + }, + "position": { + "#": 1437 + }, + "force": { + "#": 1438 + }, + "torque": 0, + "positionImpulse": { + "#": 1439 + }, + "constraintImpulse": { + "#": 1440 + }, + "totalContacts": 0, + "speed": 2.90833, + "angularSpeed": 0.00212, + "velocity": { + "#": 1441 + }, + "angularVelocity": -0.00266, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1442 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1443 + }, + "circleRadius": 14.32257, + "bounds": { + "#": 1445 + }, + "positionPrev": { + "#": 1448 + }, + "anglePrev": -0.00267, + "axes": { + "#": 1449 + }, + "area": 628.00307, + "mass": 0.628, + "inverseMass": 1.59235, + "inertia": 251.1089, + "inverseInertia": 0.00398, + "parent": { + "#": 1418 + }, + "sleepCounter": 0, + "region": { + "#": 1458 + } + }, + [ + { + "#": 1418 + } + ], + [ + { + "#": 1421 + }, + { + "#": 1422 + }, + { + "#": 1423 + }, + { + "#": 1424 + }, + { + "#": 1425 + }, + { + "#": 1426 + }, + { + "#": 1427 + }, + { + "#": 1428 + }, + { + "#": 1429 + }, + { + "#": 1430 + }, + { + "#": 1431 + }, + { + "#": 1432 + }, + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + } + ], + { + "x": 352.72485, + "y": 93.34978, + "index": 0, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 350.61443, + "y": 98.52411, + "index": 1, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 346.68357, + "y": 102.49714, + "index": 2, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 341.53205, + "y": 104.66266, + "index": 3, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 335.94413, + "y": 104.69248, + "index": 4, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 330.7698, + "y": 102.58205, + "index": 5, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 326.79677, + "y": 98.6512, + "index": 6, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 324.63125, + "y": 93.49968, + "index": 7, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 324.60144, + "y": 87.91176, + "index": 8, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 326.71186, + "y": 82.73742, + "index": 9, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 330.64272, + "y": 78.76439, + "index": 10, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 335.79424, + "y": 76.59888, + "index": 11, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 341.38216, + "y": 76.56906, + "index": 12, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 346.55649, + "y": 78.67948, + "index": 13, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 350.52952, + "y": 82.61034, + "index": 14, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 352.69504, + "y": 87.76186, + "index": 15, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 338.66314, + "y": 90.63077 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.3353, + "y": -0.00176 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.68719, + "y": 2.90368 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1444 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1446 + }, + "max": { + "#": 1447 + } + }, + { + "x": 324.60144, + "y": 76.56906 + }, + { + "x": 352.81326, + "y": 107.59947 + }, + { + "x": 337.96481, + "y": 87.72715 + }, + [ + { + "#": 1450 + }, + { + "#": 1451 + }, + { + "#": 1452 + }, + { + "#": 1453 + }, + { + "#": 1454 + }, + { + "#": 1455 + }, + { + "#": 1456 + }, + { + "#": 1457 + } + ], + { + "x": -0.92594, + "y": -0.37766 + }, + { + "x": -0.71087, + "y": -0.70332 + }, + { + "x": -0.38752, + "y": -0.92186 + }, + { + "x": -0.00534, + "y": -0.99999 + }, + { + "x": 0.37766, + "y": -0.92594 + }, + { + "x": 0.70332, + "y": -0.71087 + }, + { + "x": 0.92186, + "y": -0.38752 + }, + { + "x": 0.99999, + "y": -0.00534 + }, + { + "id": "6,7,1,2", + "startCol": 6, + "endCol": 7, + "startRow": 1, + "endRow": 2 + }, + { + "id": 36, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1460 + }, + "angle": -0.00275, + "vertices": { + "#": 1461 + }, + "position": { + "#": 1476 + }, + "force": { + "#": 1477 + }, + "torque": 0, + "positionImpulse": { + "#": 1478 + }, + "constraintImpulse": { + "#": 1479 + }, + "totalContacts": 0, + "speed": 2.91008, + "angularSpeed": 0.00134, + "velocity": { + "#": 1480 + }, + "angularVelocity": -0.00133, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1481 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1482 + }, + "circleRadius": 13.29437, + "bounds": { + "#": 1484 + }, + "positionPrev": { + "#": 1487 + }, + "anglePrev": -0.00145, + "axes": { + "#": 1488 + }, + "area": 536.79017, + "mass": 0.53679, + "inverseMass": 1.86293, + "inertia": 183.48033, + "inverseInertia": 0.00545, + "parent": { + "#": 1459 + }, + "sleepCounter": 0, + "region": { + "#": 1496 + } + }, + [ + { + "#": 1459 + } + ], + [ + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + }, + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + }, + { + "#": 1473 + }, + { + "#": 1474 + }, + { + "#": 1475 + } + ], + { + "x": 378.26234, + "y": 92.7999, + "index": 0, + "body": { + "#": 1459 + }, + "isInternal": false + }, + { + "x": 375.70999, + "y": 98.13793, + "index": 1, + "body": { + "#": 1459 + }, + "isInternal": false + }, + { + "x": 371.09414, + "y": 101.83963, + "index": 2, + "body": { + "#": 1459 + }, + "isInternal": false + }, + { + "x": 365.32977, + "y": 103.17146, + "index": 3, + "body": { + "#": 1459 + }, + "isInternal": false + }, + { + "x": 359.55818, + "y": 101.87131, + "index": 4, + "body": { + "#": 1459 + }, + "isInternal": false + }, + { + "x": 354.92207, + "y": 98.19503, + "index": 5, + "body": { + "#": 1459 + }, + "isInternal": false + }, + { + "x": 352.34043, + "y": 92.8711, + "index": 6, + "body": { + "#": 1459 + }, + "isInternal": false + }, + { + "x": 352.32419, + "y": 86.95512, + "index": 7, + "body": { + "#": 1459 + }, + "isInternal": false + }, + { + "x": 354.87654, + "y": 81.61709, + "index": 8, + "body": { + "#": 1459 + }, + "isInternal": false + }, + { + "x": 359.49239, + "y": 77.9154, + "index": 9, + "body": { + "#": 1459 + }, + "isInternal": false + }, + { + "x": 365.25675, + "y": 76.58356, + "index": 10, + "body": { + "#": 1459 + }, + "isInternal": false + }, + { + "x": 371.02834, + "y": 77.88372, + "index": 11, + "body": { + "#": 1459 + }, + "isInternal": false + }, + { + "x": 375.66446, + "y": 81.56, + "index": 12, + "body": { + "#": 1459 + }, + "isInternal": false + }, + { + "x": 378.24609, + "y": 86.88393, + "index": 13, + "body": { + "#": 1459 + }, + "isInternal": false + }, + { + "x": 365.29326, + "y": 89.87751 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.02091, + "y": -0.00004 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.13298, + "y": 2.90643 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1483 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1485 + }, + "max": { + "#": 1486 + } + }, + { + "x": 352.32419, + "y": 76.58356 + }, + { + "x": 378.41003, + "y": 106.07779 + }, + { + "x": 365.15541, + "y": 86.97109 + }, + [ + { + "#": 1489 + }, + { + "#": 1490 + }, + { + "#": 1491 + }, + { + "#": 1492 + }, + { + "#": 1493 + }, + { + "#": 1494 + }, + { + "#": 1495 + } + ], + { + "x": -0.90218, + "y": -0.43137 + }, + { + "x": -0.62562, + "y": -0.78013 + }, + { + "x": -0.22512, + "y": -0.97433 + }, + { + "x": 0.21976, + "y": -0.97555 + }, + { + "x": 0.62133, + "y": -0.78355 + }, + { + "x": 0.89979, + "y": -0.43632 + }, + { + "x": 1, + "y": -0.00275 + }, + { + "id": "7,7,1,2", + "startCol": 7, + "endCol": 7, + "startRow": 1, + "endRow": 2 + }, + { + "id": 37, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1498 + }, + "angle": 0.00094, + "vertices": { + "#": 1499 + }, + "position": { + "#": 1514 + }, + "force": { + "#": 1515 + }, + "torque": 0, + "positionImpulse": { + "#": 1516 + }, + "constraintImpulse": { + "#": 1517 + }, + "totalContacts": 0, + "speed": 2.91033, + "angularSpeed": 0.00062, + "velocity": { + "#": 1518 + }, + "angularVelocity": 0.00068, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1519 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1520 + }, + "circleRadius": 12.00896, + "bounds": { + "#": 1522 + }, + "positionPrev": { + "#": 1525 + }, + "anglePrev": 0.0003, + "axes": { + "#": 1526 + }, + "area": 438.00553, + "mass": 0.43801, + "inverseMass": 2.28308, + "inertia": 122.16297, + "inverseInertia": 0.00819, + "parent": { + "#": 1497 + }, + "sleepCounter": 0, + "region": { + "#": 1534 + } + }, + [ + { + "#": 1497 + } + ], + [ + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + }, + { + "#": 1510 + }, + { + "#": 1511 + }, + { + "#": 1512 + }, + { + "#": 1513 + } + ], + { + "x": 401.62415, + "y": 91.27673, + "index": 0, + "body": { + "#": 1497 + }, + "isInternal": false + }, + { + "x": 399.30061, + "y": 96.08955, + "index": 1, + "body": { + "#": 1497 + }, + "isInternal": false + }, + { + "x": 395.11847, + "y": 99.4186, + "index": 2, + "body": { + "#": 1497 + }, + "isInternal": false + }, + { + "x": 389.90735, + "y": 100.60269, + "index": 3, + "body": { + "#": 1497 + }, + "isInternal": false + }, + { + "x": 384.69847, + "y": 99.40878, + "index": 4, + "body": { + "#": 1497 + }, + "isInternal": false + }, + { + "x": 380.52262, + "y": 96.07184, + "index": 5, + "body": { + "#": 1497 + }, + "isInternal": false + }, + { + "x": 378.20816, + "y": 91.25466, + "index": 6, + "body": { + "#": 1497 + }, + "isInternal": false + }, + { + "x": 378.2132, + "y": 85.91066, + "index": 7, + "body": { + "#": 1497 + }, + "isInternal": false + }, + { + "x": 380.53673, + "y": 81.09785, + "index": 8, + "body": { + "#": 1497 + }, + "isInternal": false + }, + { + "x": 384.71887, + "y": 77.76879, + "index": 9, + "body": { + "#": 1497 + }, + "isInternal": false + }, + { + "x": 389.92999, + "y": 76.5847, + "index": 10, + "body": { + "#": 1497 + }, + "isInternal": false + }, + { + "x": 395.13887, + "y": 77.77861, + "index": 11, + "body": { + "#": 1497 + }, + "isInternal": false + }, + { + "x": 399.31472, + "y": 81.11555, + "index": 12, + "body": { + "#": 1497 + }, + "isInternal": false + }, + { + "x": 401.62918, + "y": 85.93274, + "index": 13, + "body": { + "#": 1497 + }, + "isInternal": false + }, + { + "x": 389.91867, + "y": 88.5937 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.02027, + "y": 0.00001 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.13408, + "y": 2.90641 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1521 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1523 + }, + "max": { + "#": 1524 + } + }, + { + "x": 378.20816, + "y": 76.5847 + }, + { + "x": 401.77641, + "y": 103.50929 + }, + { + "x": 389.77901, + "y": 85.68729 + }, + [ + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + }, + { + "#": 1533 + } + ], + { + "x": -0.90054, + "y": -0.43477 + }, + { + "x": -0.62279, + "y": -0.78239 + }, + { + "x": -0.22158, + "y": -0.97514 + }, + { + "x": 0.22341, + "y": -0.97472 + }, + { + "x": 0.62427, + "y": -0.78121 + }, + { + "x": 0.90136, + "y": -0.43307 + }, + { + "x": 1, + "y": 0.00094 + }, + { + "id": "7,8,1,2", + "startCol": 7, + "endCol": 8, + "startRow": 1, + "endRow": 2 + }, + { + "id": 38, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1536 + }, + "angle": 0.00084, + "vertices": { + "#": 1537 + }, + "position": { + "#": 1556 + }, + "force": { + "#": 1557 + }, + "torque": 0, + "positionImpulse": { + "#": 1558 + }, + "constraintImpulse": { + "#": 1559 + }, + "totalContacts": 0, + "speed": 2.90995, + "angularSpeed": 0.00051, + "velocity": { + "#": 1560 + }, + "angularVelocity": 0.00057, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1561 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1562 + }, + "circleRadius": 16.14536, + "bounds": { + "#": 1564 + }, + "positionPrev": { + "#": 1567 + }, + "anglePrev": 0.00029, + "axes": { + "#": 1568 + }, + "area": 802.39633, + "mass": 0.8024, + "inverseMass": 1.24627, + "inertia": 409.91549, + "inverseInertia": 0.00244, + "parent": { + "#": 1535 + }, + "sleepCounter": 0, + "region": { + "#": 1578 + } + }, + [ + { + "#": 1535 + } + ], + [ + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + }, + { + "#": 1543 + }, + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + }, + { + "#": 1548 + }, + { + "#": 1549 + }, + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + }, + { + "#": 1553 + }, + { + "#": 1554 + }, + { + "#": 1555 + } + ], + { + "x": 433.37075, + "y": 95.54813, + "index": 0, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 431.4483, + "y": 100.8155, + "index": 1, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 427.84067, + "y": 105.10746, + "index": 2, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 422.98231, + "y": 107.90736, + "index": 3, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 417.45949, + "y": 108.87569, + "index": 4, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 411.93831, + "y": 107.89803, + "index": 5, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 407.08468, + "y": 105.08993, + "index": 6, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 403.48431, + "y": 100.79189, + "index": 7, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 401.57076, + "y": 95.52127, + "index": 8, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 401.5755, + "y": 89.91327, + "index": 9, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 403.49795, + "y": 84.64589, + "index": 10, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 407.10557, + "y": 80.35394, + "index": 11, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 411.96394, + "y": 77.55404, + "index": 12, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 417.48676, + "y": 76.5857, + "index": 13, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 423.00794, + "y": 77.56337, + "index": 14, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 427.86157, + "y": 80.37147, + "index": 15, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 431.46194, + "y": 84.66951, + "index": 16, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 433.37549, + "y": 89.94013, + "index": 17, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 417.47312, + "y": 92.7307 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.03532, + "y": -0.00003 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.13734, + "y": 2.90737 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1563 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1565 + }, + "max": { + "#": 1566 + } + }, + { + "x": 401.57076, + "y": 76.5857 + }, + { + "x": 433.49906, + "y": 111.78302 + }, + { + "x": 417.33883, + "y": 89.82333 + }, + [ + { + "#": 1569 + }, + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + }, + { + "#": 1577 + } + ], + { + "x": -0.93939, + "y": -0.34285 + }, + { + "x": -0.7655, + "y": -0.64344 + }, + { + "x": -0.49932, + "y": -0.86642 + }, + { + "x": -0.1727, + "y": -0.98497 + }, + { + "x": 0.17436, + "y": -0.98468 + }, + { + "x": 0.50078, + "y": -0.86557 + }, + { + "x": 0.76658, + "y": -0.64215 + }, + { + "x": 0.93997, + "y": -0.34126 + }, + { + "x": 1, + "y": 0.00084 + }, + { + "id": "8,9,1,2", + "startCol": 8, + "endCol": 9, + "startRow": 1, + "endRow": 2 + }, + { + "id": 39, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1580 + }, + "angle": 0.01396, + "vertices": { + "#": 1581 + }, + "position": { + "#": 1602 + }, + "force": { + "#": 1603 + }, + "torque": 0, + "positionImpulse": { + "#": 1604 + }, + "constraintImpulse": { + "#": 1605 + }, + "totalContacts": 0, + "speed": 1.17732, + "angularSpeed": 0.0068, + "velocity": { + "#": 1606 + }, + "angularVelocity": 0.00661, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1607 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1608 + }, + "circleRadius": 18.78999, + "bounds": { + "#": 1610 + }, + "positionPrev": { + "#": 1613 + }, + "anglePrev": 0.00736, + "axes": { + "#": 1614 + }, + "area": 1091.04511, + "mass": 1.09105, + "inverseMass": 0.91655, + "inertia": 757.86058, + "inverseInertia": 0.00132, + "parent": { + "#": 1579 + }, + "sleepCounter": 0, + "region": { + "#": 1625 + } + }, + [ + { + "#": 1579 + } + ], + [ + { + "#": 1582 + }, + { + "#": 1583 + }, + { + "#": 1584 + }, + { + "#": 1585 + }, + { + "#": 1586 + }, + { + "#": 1587 + }, + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + }, + { + "#": 1592 + }, + { + "#": 1593 + }, + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + }, + { + "#": 1597 + }, + { + "#": 1598 + }, + { + "#": 1599 + }, + { + "#": 1600 + }, + { + "#": 1601 + } + ], + { + "x": 470.93674, + "y": 92.95755, + "index": 0, + "body": { + "#": 1579 + }, + "isInternal": false + }, + { + "x": 469.04186, + "y": 98.52264, + "index": 1, + "body": { + "#": 1579 + }, + "isInternal": false + }, + { + "x": 465.52079, + "y": 103.23094, + "index": 2, + "body": { + "#": 1579 + }, + "isInternal": false + }, + { + "x": 460.71602, + "y": 106.61919, + "index": 3, + "body": { + "#": 1579 + }, + "isInternal": false + }, + { + "x": 455.10019, + "y": 108.35796, + "index": 4, + "body": { + "#": 1579 + }, + "isInternal": false + }, + { + "x": 449.22277, + "y": 108.2759, + "index": 5, + "body": { + "#": 1579 + }, + "isInternal": false + }, + { + "x": 443.65768, + "y": 106.38102, + "index": 6, + "body": { + "#": 1579 + }, + "isInternal": false + }, + { + "x": 438.94938, + "y": 102.85995, + "index": 7, + "body": { + "#": 1579 + }, + "isInternal": false + }, + { + "x": 435.56113, + "y": 98.05518, + "index": 8, + "body": { + "#": 1579 + }, + "isInternal": false + }, + { + "x": 433.82236, + "y": 92.43935, + "index": 9, + "body": { + "#": 1579 + }, + "isInternal": false + }, + { + "x": 433.90442, + "y": 86.56193, + "index": 10, + "body": { + "#": 1579 + }, + "isInternal": false + }, + { + "x": 435.7993, + "y": 80.99684, + "index": 11, + "body": { + "#": 1579 + }, + "isInternal": false + }, + { + "x": 439.32037, + "y": 76.28854, + "index": 12, + "body": { + "#": 1579 + }, + "isInternal": false + }, + { + "x": 444.12514, + "y": 72.90029, + "index": 13, + "body": { + "#": 1579 + }, + "isInternal": false + }, + { + "x": 449.74097, + "y": 71.16152, + "index": 14, + "body": { + "#": 1579 + }, + "isInternal": false + }, + { + "x": 455.61839, + "y": 71.24358, + "index": 15, + "body": { + "#": 1579 + }, + "isInternal": false + }, + { + "x": 461.18348, + "y": 73.13846, + "index": 16, + "body": { + "#": 1579 + }, + "isInternal": false + }, + { + "x": 465.89178, + "y": 76.65953, + "index": 17, + "body": { + "#": 1579 + }, + "isInternal": false + }, + { + "x": 469.28003, + "y": 81.4643, + "index": 18, + "body": { + "#": 1579 + }, + "isInternal": false + }, + { + "x": 471.0188, + "y": 87.08012, + "index": 19, + "body": { + "#": 1579 + }, + "isInternal": false + }, + { + "x": 452.42058, + "y": 89.75974 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.30862, + "y": 1.10438 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1609 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1611 + }, + "max": { + "#": 1612 + } + }, + { + "x": 433.82236, + "y": 71.16152 + }, + { + "x": 471.39813, + "y": 109.47249 + }, + { + "x": 452.11742, + "y": 88.65544 + }, + [ + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + }, + { + "#": 1618 + }, + { + "#": 1619 + }, + { + "#": 1620 + }, + { + "#": 1621 + }, + { + "#": 1622 + }, + { + "#": 1623 + }, + { + "#": 1624 + } + ], + { + "x": -0.94663, + "y": -0.32232 + }, + { + "x": -0.80083, + "y": -0.59889 + }, + { + "x": -0.5763, + "y": -0.81724 + }, + { + "x": -0.29577, + "y": -0.95526 + }, + { + "x": 0.01396, + "y": -0.9999 + }, + { + "x": 0.32232, + "y": -0.94663 + }, + { + "x": 0.59889, + "y": -0.80083 + }, + { + "x": 0.81724, + "y": -0.5763 + }, + { + "x": 0.95526, + "y": -0.29577 + }, + { + "x": 0.9999, + "y": 0.01396 + }, + { + "id": "9,9,1,2", + "startCol": 9, + "endCol": 9, + "startRow": 1, + "endRow": 2 + }, + { + "id": 40, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1627 + }, + "angle": 0.00049, + "vertices": { + "#": 1628 + }, + "position": { + "#": 1645 + }, + "force": { + "#": 1646 + }, + "torque": 0, + "positionImpulse": { + "#": 1647 + }, + "constraintImpulse": { + "#": 1648 + }, + "totalContacts": 0, + "speed": 2.92589, + "angularSpeed": 0.00049, + "velocity": { + "#": 1649 + }, + "angularVelocity": 0.00038, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1650 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1651 + }, + "circleRadius": 14.88113, + "bounds": { + "#": 1653 + }, + "positionPrev": { + "#": 1656 + }, + "anglePrev": 0.00021, + "axes": { + "#": 1657 + }, + "area": 677.95031, + "mass": 0.67795, + "inverseMass": 1.47503, + "inertia": 292.64041, + "inverseInertia": 0.00342, + "parent": { + "#": 1626 + }, + "sleepCounter": 0, + "region": { + "#": 1666 + } + }, + [ + { + "#": 1626 + } + ], + [ + { + "#": 1629 + }, + { + "#": 1630 + }, + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + }, + { + "#": 1637 + }, + { + "#": 1638 + }, + { + "#": 1639 + }, + { + "#": 1640 + }, + { + "#": 1641 + }, + { + "#": 1642 + }, + { + "#": 1643 + }, + { + "#": 1644 + } + ], + { + "x": 500.09742, + "y": 94.09149, + "index": 0, + "body": { + "#": 1626 + }, + "isInternal": false + }, + { + "x": 497.87277, + "y": 99.45539, + "index": 1, + "body": { + "#": 1626 + }, + "isInternal": false + }, + { + "x": 493.76574, + "y": 103.55837, + "index": 2, + "body": { + "#": 1626 + }, + "isInternal": false + }, + { + "x": 488.39965, + "y": 105.77772, + "index": 3, + "body": { + "#": 1626 + }, + "isInternal": false + }, + { + "x": 482.59365, + "y": 105.77485, + "index": 4, + "body": { + "#": 1626 + }, + "isInternal": false + }, + { + "x": 477.22974, + "y": 103.5502, + "index": 5, + "body": { + "#": 1626 + }, + "isInternal": false + }, + { + "x": 473.12677, + "y": 99.44317, + "index": 6, + "body": { + "#": 1626 + }, + "isInternal": false + }, + { + "x": 470.90742, + "y": 94.07707, + "index": 7, + "body": { + "#": 1626 + }, + "isInternal": false + }, + { + "x": 470.91029, + "y": 88.27107, + "index": 8, + "body": { + "#": 1626 + }, + "isInternal": false + }, + { + "x": 473.13494, + "y": 82.90717, + "index": 9, + "body": { + "#": 1626 + }, + "isInternal": false + }, + { + "x": 477.24197, + "y": 78.8042, + "index": 10, + "body": { + "#": 1626 + }, + "isInternal": false + }, + { + "x": 482.60807, + "y": 76.58485, + "index": 11, + "body": { + "#": 1626 + }, + "isInternal": false + }, + { + "x": 488.41406, + "y": 76.58772, + "index": 12, + "body": { + "#": 1626 + }, + "isInternal": false + }, + { + "x": 493.77797, + "y": 78.81237, + "index": 13, + "body": { + "#": 1626 + }, + "isInternal": false + }, + { + "x": 497.88094, + "y": 82.9194, + "index": 14, + "body": { + "#": 1626 + }, + "isInternal": false + }, + { + "x": 500.10029, + "y": 88.28549, + "index": 15, + "body": { + "#": 1626 + }, + "isInternal": false + }, + { + "x": 485.50386, + "y": 91.18128 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.08712, + "y": 0.00044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.28366, + "y": 2.909 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1652 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1654 + }, + "max": { + "#": 1655 + } + }, + { + "x": 470.90742, + "y": 76.58485 + }, + { + "x": 500.43, + "y": 108.68497 + }, + { + "x": 485.23744, + "y": 88.27229 + }, + [ + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + }, + { + "#": 1661 + }, + { + "#": 1662 + }, + { + "#": 1663 + }, + { + "#": 1664 + }, + { + "#": 1665 + } + ], + { + "x": -0.92371, + "y": -0.3831 + }, + { + "x": -0.70676, + "y": -0.70746 + }, + { + "x": -0.38219, + "y": -0.92408 + }, + { + "x": 0.00049, + "y": -1 + }, + { + "x": 0.3831, + "y": -0.92371 + }, + { + "x": 0.70746, + "y": -0.70676 + }, + { + "x": 0.92408, + "y": -0.38219 + }, + { + "x": 1, + "y": 0.00049 + }, + { + "id": "9,10,1,2", + "startCol": 9, + "endCol": 10, + "startRow": 1, + "endRow": 2 + }, + { + "id": 41, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1668 + }, + "angle": 0, + "vertices": { + "#": 1669 + }, + "position": { + "#": 1684 + }, + "force": { + "#": 1685 + }, + "torque": 0, + "positionImpulse": { + "#": 1686 + }, + "constraintImpulse": { + "#": 1687 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1688 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1689 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1690 + }, + "circleRadius": 12.32, + "bounds": { + "#": 1692 + }, + "positionPrev": { + "#": 1695 + }, + "anglePrev": -0.00001, + "axes": { + "#": 1696 + }, + "area": 460.97597, + "mass": 0.46098, + "inverseMass": 2.16931, + "inertia": 135.3122, + "inverseInertia": 0.00739, + "parent": { + "#": 1667 + }, + "sleepCounter": 0, + "region": { + "#": 1704 + } + }, + [ + { + "#": 1667 + } + ], + [ + { + "#": 1670 + }, + { + "#": 1671 + }, + { + "#": 1672 + }, + { + "#": 1673 + }, + { + "#": 1674 + }, + { + "#": 1675 + }, + { + "#": 1676 + }, + { + "#": 1677 + }, + { + "#": 1678 + }, + { + "#": 1679 + }, + { + "#": 1680 + }, + { + "#": 1681 + }, + { + "#": 1682 + }, + { + "#": 1683 + } + ], + { + "x": 524.05272, + "y": 91.64675, + "index": 0, + "body": { + "#": 1667 + }, + "isInternal": false + }, + { + "x": 521.67372, + "y": 96.58675, + "index": 1, + "body": { + "#": 1667 + }, + "isInternal": false + }, + { + "x": 517.38672, + "y": 100.00575, + "index": 2, + "body": { + "#": 1667 + }, + "isInternal": false + }, + { + "x": 512.04172, + "y": 101.22575, + "index": 3, + "body": { + "#": 1667 + }, + "isInternal": false + }, + { + "x": 506.69672, + "y": 100.00575, + "index": 4, + "body": { + "#": 1667 + }, + "isInternal": false + }, + { + "x": 502.40972, + "y": 96.58675, + "index": 5, + "body": { + "#": 1667 + }, + "isInternal": false + }, + { + "x": 500.03072, + "y": 91.64675, + "index": 6, + "body": { + "#": 1667 + }, + "isInternal": false + }, + { + "x": 500.03072, + "y": 86.16475, + "index": 7, + "body": { + "#": 1667 + }, + "isInternal": false + }, + { + "x": 502.40972, + "y": 81.22475, + "index": 8, + "body": { + "#": 1667 + }, + "isInternal": false + }, + { + "x": 506.69672, + "y": 77.80575, + "index": 9, + "body": { + "#": 1667 + }, + "isInternal": false + }, + { + "x": 512.04172, + "y": 76.58575, + "index": 10, + "body": { + "#": 1667 + }, + "isInternal": false + }, + { + "x": 517.38672, + "y": 77.80575, + "index": 11, + "body": { + "#": 1667 + }, + "isInternal": false + }, + { + "x": 521.67372, + "y": 81.22475, + "index": 12, + "body": { + "#": 1667 + }, + "isInternal": false + }, + { + "x": 524.05272, + "y": 86.16475, + "index": 13, + "body": { + "#": 1667 + }, + "isInternal": false + }, + { + "x": 512.04172, + "y": 88.90575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.97657, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.25534, + "y": 2.90728 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1691 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1693 + }, + "max": { + "#": 1694 + } + }, + { + "x": 500.03072, + "y": 76.58575 + }, + { + "x": 524.05272, + "y": 104.13303 + }, + { + "x": 511.76101, + "y": 85.99847 + }, + [ + { + "#": 1697 + }, + { + "#": 1698 + }, + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + }, + { + "#": 1703 + } + ], + { + "x": -0.90097, + "y": -0.43389 + }, + { + "x": -0.62352, + "y": -0.78181 + }, + { + "x": -0.22253, + "y": -0.97493 + }, + { + "x": 0.22253, + "y": -0.97493 + }, + { + "x": 0.62352, + "y": -0.78181 + }, + { + "x": 0.90097, + "y": -0.43389 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,1,2", + "startCol": 10, + "endCol": 10, + "startRow": 1, + "endRow": 2 + }, + { + "id": 42, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1706 + }, + "angle": 0, + "vertices": { + "#": 1707 + }, + "position": { + "#": 1728 + }, + "force": { + "#": 1729 + }, + "torque": 0, + "positionImpulse": { + "#": 1730 + }, + "constraintImpulse": { + "#": 1731 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1732 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1733 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1734 + }, + "circleRadius": 19.74859, + "bounds": { + "#": 1736 + }, + "positionPrev": { + "#": 1739 + }, + "anglePrev": 0, + "axes": { + "#": 1740 + }, + "area": 1205.1522, + "mass": 1.20515, + "inverseMass": 0.82977, + "inertia": 924.67199, + "inverseInertia": 0.00108, + "parent": { + "#": 1705 + }, + "sleepCounter": 0, + "region": { + "#": 1751 + } + }, + [ + { + "#": 1705 + } + ], + [ + { + "#": 1708 + }, + { + "#": 1709 + }, + { + "#": 1710 + }, + { + "#": 1711 + }, + { + "#": 1712 + }, + { + "#": 1713 + }, + { + "#": 1714 + }, + { + "#": 1715 + }, + { + "#": 1716 + }, + { + "#": 1717 + }, + { + "#": 1718 + }, + { + "#": 1719 + }, + { + "#": 1720 + }, + { + "#": 1721 + }, + { + "#": 1722 + }, + { + "#": 1723 + }, + { + "#": 1724 + }, + { + "#": 1725 + }, + { + "#": 1726 + }, + { + "#": 1727 + } + ], + { + "x": 561.842, + "y": 99.17975, + "index": 0, + "body": { + "#": 1705 + }, + "isInternal": false + }, + { + "x": 559.933, + "y": 105.05675, + "index": 1, + "body": { + "#": 1705 + }, + "isInternal": false + }, + { + "x": 556.301, + "y": 110.05475, + "index": 2, + "body": { + "#": 1705 + }, + "isInternal": false + }, + { + "x": 551.303, + "y": 113.68675, + "index": 3, + "body": { + "#": 1705 + }, + "isInternal": false + }, + { + "x": 545.426, + "y": 115.59575, + "index": 4, + "body": { + "#": 1705 + }, + "isInternal": false + }, + { + "x": 539.248, + "y": 115.59575, + "index": 5, + "body": { + "#": 1705 + }, + "isInternal": false + }, + { + "x": 533.371, + "y": 113.68675, + "index": 6, + "body": { + "#": 1705 + }, + "isInternal": false + }, + { + "x": 528.373, + "y": 110.05475, + "index": 7, + "body": { + "#": 1705 + }, + "isInternal": false + }, + { + "x": 524.741, + "y": 105.05675, + "index": 8, + "body": { + "#": 1705 + }, + "isInternal": false + }, + { + "x": 522.832, + "y": 99.17975, + "index": 9, + "body": { + "#": 1705 + }, + "isInternal": false + }, + { + "x": 522.832, + "y": 93.00175, + "index": 10, + "body": { + "#": 1705 + }, + "isInternal": false + }, + { + "x": 524.741, + "y": 87.12475, + "index": 11, + "body": { + "#": 1705 + }, + "isInternal": false + }, + { + "x": 528.373, + "y": 82.12675, + "index": 12, + "body": { + "#": 1705 + }, + "isInternal": false + }, + { + "x": 533.371, + "y": 78.49475, + "index": 13, + "body": { + "#": 1705 + }, + "isInternal": false + }, + { + "x": 539.248, + "y": 76.58575, + "index": 14, + "body": { + "#": 1705 + }, + "isInternal": false + }, + { + "x": 545.426, + "y": 76.58575, + "index": 15, + "body": { + "#": 1705 + }, + "isInternal": false + }, + { + "x": 551.303, + "y": 78.49475, + "index": 16, + "body": { + "#": 1705 + }, + "isInternal": false + }, + { + "x": 556.301, + "y": 82.12675, + "index": 17, + "body": { + "#": 1705 + }, + "isInternal": false + }, + { + "x": 559.933, + "y": 87.12475, + "index": 18, + "body": { + "#": 1705 + }, + "isInternal": false + }, + { + "x": 561.842, + "y": 93.00175, + "index": 19, + "body": { + "#": 1705 + }, + "isInternal": false + }, + { + "x": 542.337, + "y": 96.09075 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1735 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1737 + }, + "max": { + "#": 1738 + } + }, + { + "x": 522.832, + "y": 76.58575 + }, + { + "x": 561.842, + "y": 115.59575 + }, + { + "x": 542.337, + "y": 93.18348 + }, + [ + { + "#": 1741 + }, + { + "#": 1742 + }, + { + "#": 1743 + }, + { + "#": 1744 + }, + { + "#": 1745 + }, + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + } + ], + { + "x": -0.95108, + "y": -0.30894 + }, + { + "x": -0.80896, + "y": -0.58786 + }, + { + "x": -0.58786, + "y": -0.80896 + }, + { + "x": -0.30894, + "y": -0.95108 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30894, + "y": -0.95108 + }, + { + "x": 0.58786, + "y": -0.80896 + }, + { + "x": 0.80896, + "y": -0.58786 + }, + { + "x": 0.95108, + "y": -0.30894 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,1,2", + "startCol": 10, + "endCol": 11, + "startRow": 1, + "endRow": 2 + }, + { + "id": 43, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1753 + }, + "angle": 0, + "vertices": { + "#": 1754 + }, + "position": { + "#": 1767 + }, + "force": { + "#": 1768 + }, + "torque": 0, + "positionImpulse": { + "#": 1769 + }, + "constraintImpulse": { + "#": 1770 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1771 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1772 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1773 + }, + "circleRadius": 10.99404, + "bounds": { + "#": 1775 + }, + "positionPrev": { + "#": 1778 + }, + "anglePrev": 0, + "axes": { + "#": 1779 + }, + "area": 362.58452, + "mass": 0.36258, + "inverseMass": 2.75798, + "inertia": 83.73096, + "inverseInertia": 0.01194, + "parent": { + "#": 1752 + }, + "sleepCounter": 0, + "region": { + "#": 1786 + } + }, + [ + { + "#": 1752 + } + ], + [ + { + "#": 1755 + }, + { + "#": 1756 + }, + { + "#": 1757 + }, + { + "#": 1758 + }, + { + "#": 1759 + }, + { + "#": 1760 + }, + { + "#": 1761 + }, + { + "#": 1762 + }, + { + "#": 1763 + }, + { + "#": 1764 + }, + { + "#": 1765 + }, + { + "#": 1766 + } + ], + { + "x": 583.08, + "y": 90.04975, + "index": 0, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 580.235, + "y": 94.97875, + "index": 1, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 575.306, + "y": 97.82375, + "index": 2, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 569.616, + "y": 97.82375, + "index": 3, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 564.687, + "y": 94.97875, + "index": 4, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 561.842, + "y": 90.04975, + "index": 5, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 561.842, + "y": 84.35975, + "index": 6, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 564.687, + "y": 79.43075, + "index": 7, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 569.616, + "y": 76.58575, + "index": 8, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 575.306, + "y": 76.58575, + "index": 9, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 580.235, + "y": 79.43075, + "index": 10, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 583.08, + "y": 84.35975, + "index": 11, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 572.461, + "y": 87.20475 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1774 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1776 + }, + "max": { + "#": 1777 + } + }, + { + "x": 561.842, + "y": 76.58575 + }, + { + "x": 583.08, + "y": 97.82375 + }, + { + "x": 572.461, + "y": 84.29748 + }, + [ + { + "#": 1780 + }, + { + "#": 1781 + }, + { + "#": 1782 + }, + { + "#": 1783 + }, + { + "#": 1784 + }, + { + "#": 1785 + } + ], + { + "x": -0.86608, + "y": -0.4999 + }, + { + "x": -0.4999, + "y": -0.86608 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.4999, + "y": -0.86608 + }, + { + "x": 0.86608, + "y": -0.4999 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,1,2", + "startCol": 11, + "endCol": 12, + "startRow": 1, + "endRow": 2 + }, + { + "id": 44, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1788 + }, + "angle": 0, + "vertices": { + "#": 1789 + }, + "position": { + "#": 1808 + }, + "force": { + "#": 1809 + }, + "torque": 0, + "positionImpulse": { + "#": 1810 + }, + "constraintImpulse": { + "#": 1811 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1812 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1813 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1814 + }, + "circleRadius": 16.17983, + "bounds": { + "#": 1816 + }, + "positionPrev": { + "#": 1819 + }, + "anglePrev": 0, + "axes": { + "#": 1820 + }, + "area": 805.81786, + "mass": 0.80582, + "inverseMass": 1.24098, + "inertia": 413.41883, + "inverseInertia": 0.00242, + "parent": { + "#": 1787 + }, + "sleepCounter": 0, + "region": { + "#": 1830 + } + }, + [ + { + "#": 1787 + } + ], + [ + { + "#": 1790 + }, + { + "#": 1791 + }, + { + "#": 1792 + }, + { + "#": 1793 + }, + { + "#": 1794 + }, + { + "#": 1795 + }, + { + "#": 1796 + }, + { + "#": 1797 + }, + { + "#": 1798 + }, + { + "#": 1799 + }, + { + "#": 1800 + }, + { + "#": 1801 + }, + { + "#": 1802 + }, + { + "#": 1803 + }, + { + "#": 1804 + }, + { + "#": 1805 + }, + { + "#": 1806 + }, + { + "#": 1807 + } + ], + { + "x": 614.948, + "y": 95.57575, + "index": 0, + "body": { + "#": 1787 + }, + "isInternal": false + }, + { + "x": 613.026, + "y": 100.85575, + "index": 1, + "body": { + "#": 1787 + }, + "isInternal": false + }, + { + "x": 609.414, + "y": 105.15975, + "index": 2, + "body": { + "#": 1787 + }, + "isInternal": false + }, + { + "x": 604.548, + "y": 107.96975, + "index": 3, + "body": { + "#": 1787 + }, + "isInternal": false + }, + { + "x": 599.014, + "y": 108.94575, + "index": 4, + "body": { + "#": 1787 + }, + "isInternal": false + }, + { + "x": 593.48, + "y": 107.96975, + "index": 5, + "body": { + "#": 1787 + }, + "isInternal": false + }, + { + "x": 588.614, + "y": 105.15975, + "index": 6, + "body": { + "#": 1787 + }, + "isInternal": false + }, + { + "x": 585.002, + "y": 100.85575, + "index": 7, + "body": { + "#": 1787 + }, + "isInternal": false + }, + { + "x": 583.08, + "y": 95.57575, + "index": 8, + "body": { + "#": 1787 + }, + "isInternal": false + }, + { + "x": 583.08, + "y": 89.95575, + "index": 9, + "body": { + "#": 1787 + }, + "isInternal": false + }, + { + "x": 585.002, + "y": 84.67575, + "index": 10, + "body": { + "#": 1787 + }, + "isInternal": false + }, + { + "x": 588.614, + "y": 80.37175, + "index": 11, + "body": { + "#": 1787 + }, + "isInternal": false + }, + { + "x": 593.48, + "y": 77.56175, + "index": 12, + "body": { + "#": 1787 + }, + "isInternal": false + }, + { + "x": 599.014, + "y": 76.58575, + "index": 13, + "body": { + "#": 1787 + }, + "isInternal": false + }, + { + "x": 604.548, + "y": 77.56175, + "index": 14, + "body": { + "#": 1787 + }, + "isInternal": false + }, + { + "x": 609.414, + "y": 80.37175, + "index": 15, + "body": { + "#": 1787 + }, + "isInternal": false + }, + { + "x": 613.026, + "y": 84.67575, + "index": 16, + "body": { + "#": 1787 + }, + "isInternal": false + }, + { + "x": 614.948, + "y": 89.95575, + "index": 17, + "body": { + "#": 1787 + }, + "isInternal": false + }, + { + "x": 599.014, + "y": 92.76575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1815 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1817 + }, + "max": { + "#": 1818 + } + }, + { + "x": 583.08, + "y": 76.58575 + }, + { + "x": 614.948, + "y": 108.94575 + }, + { + "x": 599.014, + "y": 89.85848 + }, + [ + { + "#": 1821 + }, + { + "#": 1822 + }, + { + "#": 1823 + }, + { + "#": 1824 + }, + { + "#": 1825 + }, + { + "#": 1826 + }, + { + "#": 1827 + }, + { + "#": 1828 + }, + { + "#": 1829 + } + ], + { + "x": -0.93968, + "y": -0.34206 + }, + { + "x": -0.766, + "y": -0.64284 + }, + { + "x": -0.50008, + "y": -0.86598 + }, + { + "x": -0.17368, + "y": -0.9848 + }, + { + "x": 0.17368, + "y": -0.9848 + }, + { + "x": 0.50008, + "y": -0.86598 + }, + { + "x": 0.766, + "y": -0.64284 + }, + { + "x": 0.93968, + "y": -0.34206 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,1,2", + "startCol": 12, + "endCol": 12, + "startRow": 1, + "endRow": 2 + }, + { + "id": 45, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1832 + }, + "angle": 0.04377, + "vertices": { + "#": 1833 + }, + "position": { + "#": 1854 + }, + "force": { + "#": 1855 + }, + "torque": 0, + "positionImpulse": { + "#": 1856 + }, + "constraintImpulse": { + "#": 1857 + }, + "totalContacts": 0, + "speed": 0.35021, + "angularSpeed": 0.00312, + "velocity": { + "#": 1858 + }, + "angularVelocity": 0.00227, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1859 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1860 + }, + "circleRadius": 19.50347, + "bounds": { + "#": 1862 + }, + "positionPrev": { + "#": 1865 + }, + "anglePrev": 0.04147, + "axes": { + "#": 1866 + }, + "area": 1175.44088, + "mass": 1.17544, + "inverseMass": 0.85074, + "inertia": 879.64105, + "inverseInertia": 0.00114, + "parent": { + "#": 1831 + }, + "sleepCounter": 0, + "region": { + "#": 1877 + } + }, + [ + { + "#": 1831 + } + ], + [ + { + "#": 1834 + }, + { + "#": 1835 + }, + { + "#": 1836 + }, + { + "#": 1837 + }, + { + "#": 1838 + }, + { + "#": 1839 + }, + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + }, + { + "#": 1844 + }, + { + "#": 1845 + }, + { + "#": 1846 + }, + { + "#": 1847 + }, + { + "#": 1848 + }, + { + "#": 1849 + }, + { + "#": 1850 + }, + { + "#": 1851 + }, + { + "#": 1852 + }, + { + "#": 1853 + } + ], + { + "x": 71.13227, + "y": 96.16821, + "index": 0, + "body": { + "#": 1831 + }, + "isInternal": false + }, + { + "x": 68.99515, + "y": 101.88317, + "index": 1, + "body": { + "#": 1831 + }, + "isInternal": false + }, + { + "x": 65.19556, + "y": 106.65848, + "index": 2, + "body": { + "#": 1831 + }, + "isInternal": false + }, + { + "x": 60.10634, + "y": 110.02602, + "index": 3, + "body": { + "#": 1831 + }, + "isInternal": false + }, + { + "x": 54.22641, + "y": 111.6553, + "index": 4, + "body": { + "#": 1831 + }, + "isInternal": false + }, + { + "x": 48.13026, + "y": 111.38829, + "index": 5, + "body": { + "#": 1831 + }, + "isInternal": false + }, + { + "x": 42.4153, + "y": 109.25118, + "index": 6, + "body": { + "#": 1831 + }, + "isInternal": false + }, + { + "x": 37.63998, + "y": 105.45159, + "index": 7, + "body": { + "#": 1831 + }, + "isInternal": false + }, + { + "x": 34.27244, + "y": 100.36236, + "index": 8, + "body": { + "#": 1831 + }, + "isInternal": false + }, + { + "x": 32.64317, + "y": 94.48244, + "index": 9, + "body": { + "#": 1831 + }, + "isInternal": false + }, + { + "x": 32.91017, + "y": 88.38628, + "index": 10, + "body": { + "#": 1831 + }, + "isInternal": false + }, + { + "x": 35.04728, + "y": 82.67132, + "index": 11, + "body": { + "#": 1831 + }, + "isInternal": false + }, + { + "x": 38.84688, + "y": 77.89601, + "index": 12, + "body": { + "#": 1831 + }, + "isInternal": false + }, + { + "x": 43.9361, + "y": 74.52847, + "index": 13, + "body": { + "#": 1831 + }, + "isInternal": false + }, + { + "x": 49.81603, + "y": 72.89919, + "index": 14, + "body": { + "#": 1831 + }, + "isInternal": false + }, + { + "x": 55.91218, + "y": 73.1662, + "index": 15, + "body": { + "#": 1831 + }, + "isInternal": false + }, + { + "x": 61.62714, + "y": 75.30331, + "index": 16, + "body": { + "#": 1831 + }, + "isInternal": false + }, + { + "x": 66.40246, + "y": 79.1029, + "index": 17, + "body": { + "#": 1831 + }, + "isInternal": false + }, + { + "x": 69.77, + "y": 84.19213, + "index": 18, + "body": { + "#": 1831 + }, + "isInternal": false + }, + { + "x": 71.39927, + "y": 90.07205, + "index": 19, + "body": { + "#": 1831 + }, + "isInternal": false + }, + { + "x": 52.02122, + "y": 92.27724 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.17792, + "y": 0.04858 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1861 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1863 + }, + "max": { + "#": 1864 + } + }, + { + "x": 32.64317, + "y": 72.89919 + }, + { + "x": 71.6344, + "y": 111.91484 + }, + { + "x": 51.83408, + "y": 92.24025 + }, + [ + { + "#": 1867 + }, + { + "#": 1868 + }, + { + "#": 1869 + }, + { + "#": 1870 + }, + { + "#": 1871 + }, + { + "#": 1872 + }, + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + } + ], + { + "x": -0.93665, + "y": -0.35026 + }, + { + "x": -0.78252, + "y": -0.62263 + }, + { + "x": -0.55183, + "y": -0.83396 + }, + { + "x": -0.26703, + "y": -0.96369 + }, + { + "x": 0.04376, + "y": -0.99904 + }, + { + "x": 0.35026, + "y": -0.93665 + }, + { + "x": 0.62263, + "y": -0.78252 + }, + { + "x": 0.83396, + "y": -0.55183 + }, + { + "x": 0.96369, + "y": -0.26703 + }, + { + "x": 0.99904, + "y": 0.04376 + }, + { + "id": "0,1,1,2", + "startCol": 0, + "endCol": 1, + "startRow": 1, + "endRow": 2 + }, + { + "id": 46, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1879 + }, + "angle": -0.02593, + "vertices": { + "#": 1880 + }, + "position": { + "#": 1895 + }, + "force": { + "#": 1896 + }, + "torque": 0, + "positionImpulse": { + "#": 1897 + }, + "constraintImpulse": { + "#": 1898 + }, + "totalContacts": 0, + "speed": 0.40021, + "angularSpeed": 0.00072, + "velocity": { + "#": 1899 + }, + "angularVelocity": -0.002, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1900 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1901 + }, + "circleRadius": 13.68103, + "bounds": { + "#": 1903 + }, + "positionPrev": { + "#": 1906 + }, + "anglePrev": -0.02481, + "axes": { + "#": 1907 + }, + "area": 568.46124, + "mass": 0.56846, + "inverseMass": 1.75913, + "inertia": 205.77003, + "inverseInertia": 0.00486, + "parent": { + "#": 1878 + }, + "sleepCounter": 0, + "region": { + "#": 1915 + } + }, + [ + { + "#": 1878 + } + ], + [ + { + "#": 1881 + }, + { + "#": 1882 + }, + { + "#": 1883 + }, + { + "#": 1884 + }, + { + "#": 1885 + }, + { + "#": 1886 + }, + { + "#": 1887 + }, + { + "#": 1888 + }, + { + "#": 1889 + }, + { + "#": 1890 + }, + { + "#": 1891 + }, + { + "#": 1892 + }, + { + "#": 1893 + }, + { + "#": 1894 + } + ], + { + "x": 95.24405, + "y": 106.67579, + "index": 0, + "body": { + "#": 1878 + }, + "isInternal": false + }, + { + "x": 92.74517, + "y": 112.22844, + "index": 1, + "body": { + "#": 1878 + }, + "isInternal": false + }, + { + "x": 88.08518, + "y": 116.14658, + "index": 2, + "body": { + "#": 1878 + }, + "isInternal": false + }, + { + "x": 82.18631, + "y": 117.65502, + "index": 3, + "body": { + "#": 1878 + }, + "isInternal": false + }, + { + "x": 76.21717, + "y": 116.45437, + "index": 4, + "body": { + "#": 1878 + }, + "isInternal": false + }, + { + "x": 71.36036, + "y": 112.78306, + "index": 5, + "body": { + "#": 1878 + }, + "isInternal": false + }, + { + "x": 68.57701, + "y": 107.3674, + "index": 6, + "body": { + "#": 1878 + }, + "isInternal": false + }, + { + "x": 68.41918, + "y": 101.28144, + "index": 7, + "body": { + "#": 1878 + }, + "isInternal": false + }, + { + "x": 70.91806, + "y": 95.72879, + "index": 8, + "body": { + "#": 1878 + }, + "isInternal": false + }, + { + "x": 75.57804, + "y": 91.81066, + "index": 9, + "body": { + "#": 1878 + }, + "isInternal": false + }, + { + "x": 81.47691, + "y": 90.30222, + "index": 10, + "body": { + "#": 1878 + }, + "isInternal": false + }, + { + "x": 87.44605, + "y": 91.50286, + "index": 11, + "body": { + "#": 1878 + }, + "isInternal": false + }, + { + "x": 92.30287, + "y": 95.17418, + "index": 12, + "body": { + "#": 1878 + }, + "isInternal": false + }, + { + "x": 95.08621, + "y": 100.58984, + "index": 13, + "body": { + "#": 1878 + }, + "isInternal": false + }, + { + "x": 81.83161, + "y": 103.97862 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.07104, + "y": 0.0621 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1902 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1904 + }, + "max": { + "#": 1905 + } + }, + { + "x": 68.41918, + "y": 90.30222 + }, + { + "x": 95.48454, + "y": 117.97491 + }, + { + "x": 81.81481, + "y": 104.07022 + }, + [ + { + "#": 1908 + }, + { + "#": 1909 + }, + { + "#": 1910 + }, + { + "#": 1911 + }, + { + "#": 1912 + }, + { + "#": 1913 + }, + { + "#": 1914 + } + ], + { + "x": -0.91191, + "y": -0.41039 + }, + { + "x": -0.64355, + "y": -0.7654 + }, + { + "x": -0.24775, + "y": -0.96883 + }, + { + "x": 0.19719, + "y": -0.98036 + }, + { + "x": 0.60301, + "y": -0.79773 + }, + { + "x": 0.88941, + "y": -0.45711 + }, + { + "x": 0.99966, + "y": -0.02593 + }, + { + "id": "1,1,1,2", + "startCol": 1, + "endCol": 1, + "startRow": 1, + "endRow": 2 + }, + { + "id": 47, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1917 + }, + "angle": 0.05314, + "vertices": { + "#": 1918 + }, + "position": { + "#": 1931 + }, + "force": { + "#": 1932 + }, + "torque": 0, + "positionImpulse": { + "#": 1933 + }, + "constraintImpulse": { + "#": 1934 + }, + "totalContacts": 0, + "speed": 0.38083, + "angularSpeed": 0.0108, + "velocity": { + "#": 1935 + }, + "angularVelocity": 0.01158, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1936 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1937 + }, + "circleRadius": 11.05817, + "bounds": { + "#": 1939 + }, + "positionPrev": { + "#": 1942 + }, + "anglePrev": 0.041, + "axes": { + "#": 1943 + }, + "area": 366.82313, + "mass": 0.36682, + "inverseMass": 2.72611, + "inertia": 85.70003, + "inverseInertia": 0.01167, + "parent": { + "#": 1916 + }, + "sleepCounter": 0, + "region": { + "#": 1950 + } + }, + [ + { + "#": 1916 + } + ], + [ + { + "#": 1919 + }, + { + "#": 1920 + }, + { + "#": 1921 + }, + { + "#": 1922 + }, + { + "#": 1923 + }, + { + "#": 1924 + }, + { + "#": 1925 + }, + { + "#": 1926 + }, + { + "#": 1927 + }, + { + "#": 1928 + }, + { + "#": 1929 + }, + { + "#": 1930 + } + ], + { + "x": 115.2546, + "y": 114.01828, + "index": 0, + "body": { + "#": 1916 + }, + "isInternal": false + }, + { + "x": 112.13335, + "y": 118.81627, + "index": 1, + "body": { + "#": 1916 + }, + "isInternal": false + }, + { + "x": 107.03133, + "y": 121.41093, + "index": 2, + "body": { + "#": 1916 + }, + "isInternal": false + }, + { + "x": 101.31541, + "y": 121.1069, + "index": 3, + "body": { + "#": 1916 + }, + "isInternal": false + }, + { + "x": 96.51742, + "y": 117.98565, + "index": 4, + "body": { + "#": 1916 + }, + "isInternal": false + }, + { + "x": 93.92276, + "y": 112.88363, + "index": 5, + "body": { + "#": 1916 + }, + "isInternal": false + }, + { + "x": 94.22679, + "y": 107.16771, + "index": 6, + "body": { + "#": 1916 + }, + "isInternal": false + }, + { + "x": 97.34804, + "y": 102.36972, + "index": 7, + "body": { + "#": 1916 + }, + "isInternal": false + }, + { + "x": 102.45006, + "y": 99.77505, + "index": 8, + "body": { + "#": 1916 + }, + "isInternal": false + }, + { + "x": 108.16598, + "y": 100.07909, + "index": 9, + "body": { + "#": 1916 + }, + "isInternal": false + }, + { + "x": 112.96397, + "y": 103.20034, + "index": 10, + "body": { + "#": 1916 + }, + "isInternal": false + }, + { + "x": 115.55863, + "y": 108.30236, + "index": 11, + "body": { + "#": 1916 + }, + "isInternal": false + }, + { + "x": 104.7407, + "y": 110.59299 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.16645, + "y": 0.11617 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1938 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1940 + }, + "max": { + "#": 1941 + } + }, + { + "x": 93.92276, + "y": 99.77505 + }, + { + "x": 115.83488, + "y": 121.67308 + }, + { + "x": 104.77627, + "y": 110.53522 + }, + [ + { + "#": 1944 + }, + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + }, + { + "#": 1948 + }, + { + "#": 1949 + } + ], + { + "x": -0.83824, + "y": -0.5453 + }, + { + "x": -0.4533, + "y": -0.89136 + }, + { + "x": 0.05312, + "y": -0.99859 + }, + { + "x": 0.5453, + "y": -0.83824 + }, + { + "x": 0.89136, + "y": -0.4533 + }, + { + "x": 0.99859, + "y": 0.05312 + }, + { + "id": "1,2,2,2", + "startCol": 1, + "endCol": 2, + "startRow": 2, + "endRow": 2 + }, + { + "id": 48, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1952 + }, + "angle": 0.28134, + "vertices": { + "#": 1953 + }, + "position": { + "#": 1966 + }, + "force": { + "#": 1967 + }, + "torque": 0, + "positionImpulse": { + "#": 1968 + }, + "constraintImpulse": { + "#": 1969 + }, + "totalContacts": 0, + "speed": 0.26137, + "angularSpeed": 0.03764, + "velocity": { + "#": 1970 + }, + "angularVelocity": 0.02197, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1971 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1972 + }, + "circleRadius": 11.38799, + "bounds": { + "#": 1974 + }, + "positionPrev": { + "#": 1977 + }, + "anglePrev": 0.25932, + "axes": { + "#": 1978 + }, + "area": 389.07124, + "mass": 0.38907, + "inverseMass": 2.57022, + "inertia": 96.41082, + "inverseInertia": 0.01037, + "parent": { + "#": 1951 + }, + "sleepCounter": 0, + "region": { + "#": 1985 + } + }, + [ + { + "#": 1951 + } + ], + [ + { + "#": 1954 + }, + { + "#": 1955 + }, + { + "#": 1956 + }, + { + "#": 1957 + }, + { + "#": 1958 + }, + { + "#": 1959 + }, + { + "#": 1960 + }, + { + "#": 1961 + }, + { + "#": 1962 + }, + { + "#": 1963 + }, + { + "#": 1964 + }, + { + "#": 1965 + } + ], + { + "x": 135.51446, + "y": 120.37722, + "index": 0, + "body": { + "#": 1951 + }, + "isInternal": false + }, + { + "x": 131.26566, + "y": 124.46425, + "index": 1, + "body": { + "#": 1951 + }, + "isInternal": false + }, + { + "x": 125.54219, + "y": 125.87772, + "index": 2, + "body": { + "#": 1951 + }, + "isInternal": false + }, + { + "x": 119.87992, + "y": 124.24127, + "index": 3, + "body": { + "#": 1951 + }, + "isInternal": false + }, + { + "x": 115.79289, + "y": 119.99248, + "index": 4, + "body": { + "#": 1951 + }, + "isInternal": false + }, + { + "x": 114.37942, + "y": 114.269, + "index": 5, + "body": { + "#": 1951 + }, + "isInternal": false + }, + { + "x": 116.01587, + "y": 108.60674, + "index": 6, + "body": { + "#": 1951 + }, + "isInternal": false + }, + { + "x": 120.26466, + "y": 104.51971, + "index": 7, + "body": { + "#": 1951 + }, + "isInternal": false + }, + { + "x": 125.98813, + "y": 103.10624, + "index": 8, + "body": { + "#": 1951 + }, + "isInternal": false + }, + { + "x": 131.6504, + "y": 104.74268, + "index": 9, + "body": { + "#": 1951 + }, + "isInternal": false + }, + { + "x": 135.73743, + "y": 108.99148, + "index": 10, + "body": { + "#": 1951 + }, + "isInternal": false + }, + { + "x": 137.1509, + "y": 114.71495, + "index": 11, + "body": { + "#": 1951 + }, + "isInternal": false + }, + { + "x": 125.76516, + "y": 114.49198 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.12181, + "y": 0.00431 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1973 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1975 + }, + "max": { + "#": 1976 + } + }, + { + "x": 114.37942, + "y": 103.10624 + }, + { + "x": 137.30849, + "y": 126.08624 + }, + { + "x": 125.86564, + "y": 114.56146 + }, + [ + { + "#": 1979 + }, + { + "#": 1980 + }, + { + "#": 1981 + }, + { + "#": 1982 + }, + { + "#": 1983 + }, + { + "#": 1984 + } + ], + { + "x": -0.69325, + "y": -0.72069 + }, + { + "x": -0.23976, + "y": -0.97083 + }, + { + "x": 0.27765, + "y": -0.96068 + }, + { + "x": 0.72069, + "y": -0.69325 + }, + { + "x": 0.97083, + "y": -0.23976 + }, + { + "x": 0.96068, + "y": 0.27765 + }, + { + "id": "2,2,2,2", + "startCol": 2, + "endCol": 2, + "startRow": 2, + "endRow": 2 + }, + { + "id": 49, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1987 + }, + "angle": 0.0212, + "vertices": { + "#": 1988 + }, + "position": { + "#": 2007 + }, + "force": { + "#": 2008 + }, + "torque": 0, + "positionImpulse": { + "#": 2009 + }, + "constraintImpulse": { + "#": 2010 + }, + "totalContacts": 0, + "speed": 0.38901, + "angularSpeed": 0.0055, + "velocity": { + "#": 2011 + }, + "angularVelocity": 0.00537, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2012 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2013 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2015 + }, + "positionPrev": { + "#": 2018 + }, + "anglePrev": 0.01627, + "axes": { + "#": 2019 + }, + "area": 815.38925, + "mass": 0.81539, + "inverseMass": 1.22641, + "inertia": 423.29821, + "inverseInertia": 0.00236, + "parent": { + "#": 1986 + }, + "sleepCounter": 0, + "region": { + "#": 2029 + } + }, + [ + { + "#": 1986 + } + ], + [ + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + }, + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + }, + { + "#": 1996 + }, + { + "#": 1997 + }, + { + "#": 1998 + }, + { + "#": 1999 + }, + { + "#": 2000 + }, + { + "#": 2001 + }, + { + "#": 2002 + }, + { + "#": 2003 + }, + { + "#": 2004 + }, + { + "#": 2005 + }, + { + "#": 2006 + } + ], + { + "x": 168.3332, + "y": 117.65678, + "index": 0, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 166.28801, + "y": 122.9266, + "index": 1, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 162.56403, + "y": 127.1786, + "index": 2, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 157.61021, + "y": 129.90019, + "index": 3, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 152.02367, + "y": 130.76295, + "index": 4, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 146.47872, + "y": 129.66414, + "index": 5, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 141.64473, + "y": 126.735, + "index": 6, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 138.10435, + "y": 122.32895, + "index": 7, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 136.2844, + "y": 116.97716, + "index": 8, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 136.40423, + "y": 111.32643, + "index": 9, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 138.44941, + "y": 106.05661, + "index": 10, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 142.17339, + "y": 101.8046, + "index": 11, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 147.12721, + "y": 99.08302, + "index": 12, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 152.71375, + "y": 98.22026, + "index": 13, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 158.25871, + "y": 99.31907, + "index": 14, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 163.09269, + "y": 102.24821, + "index": 15, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 166.63308, + "y": 106.65426, + "index": 16, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 168.45302, + "y": 112.00605, + "index": 17, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 152.36871, + "y": 114.4916 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.13232, + "y": -0.01536 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2014 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2016 + }, + "max": { + "#": 2017 + } + }, + { + "x": 136.2844, + "y": 98.22026 + }, + { + "x": 168.67599, + "y": 131.08171 + }, + { + "x": 152.35822, + "y": 114.50394 + }, + [ + { + "#": 2020 + }, + { + "#": 2021 + }, + { + "#": 2022 + }, + { + "#": 2023 + }, + { + "#": 2024 + }, + { + "#": 2025 + }, + { + "#": 2026 + }, + { + "#": 2027 + }, + { + "#": 2028 + } + ], + { + "x": -0.93225, + "y": -0.3618 + }, + { + "x": -0.75227, + "y": -0.65885 + }, + { + "x": -0.48151, + "y": -0.87644 + }, + { + "x": -0.15262, + "y": -0.98828 + }, + { + "x": 0.19438, + "y": -0.98093 + }, + { + "x": 0.51823, + "y": -0.85524 + }, + { + "x": 0.77953, + "y": -0.62637 + }, + { + "x": 0.94675, + "y": -0.32196 + }, + { + "x": 0.99978, + "y": 0.0212 + }, + { + "id": "2,3,2,2", + "startCol": 2, + "endCol": 3, + "startRow": 2, + "endRow": 2 + }, + { + "id": 50, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2031 + }, + "angle": -0.03986, + "vertices": { + "#": 2032 + }, + "position": { + "#": 2045 + }, + "force": { + "#": 2046 + }, + "torque": 0, + "positionImpulse": { + "#": 2047 + }, + "constraintImpulse": { + "#": 2048 + }, + "totalContacts": 0, + "speed": 0.6798, + "angularSpeed": 0.00043, + "velocity": { + "#": 2049 + }, + "angularVelocity": -0.00301, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2050 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2051 + }, + "circleRadius": 10.28837, + "bounds": { + "#": 2053 + }, + "positionPrev": { + "#": 2056 + }, + "anglePrev": -0.03708, + "axes": { + "#": 2057 + }, + "area": 317.56208, + "mass": 0.31756, + "inverseMass": 3.14899, + "inertia": 64.22806, + "inverseInertia": 0.01557, + "parent": { + "#": 2030 + }, + "sleepCounter": 0, + "region": { + "#": 2064 + } + }, + [ + { + "#": 2030 + } + ], + [ + { + "#": 2033 + }, + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + }, + { + "#": 2038 + }, + { + "#": 2039 + }, + { + "#": 2040 + }, + { + "#": 2041 + }, + { + "#": 2042 + }, + { + "#": 2043 + }, + { + "#": 2044 + } + ], + { + "x": 187.62602, + "y": 118.73593, + "index": 0, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 185.14893, + "y": 123.45039, + "index": 1, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 180.64671, + "y": 126.29506, + "index": 2, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 175.32494, + "y": 126.5073, + "index": 3, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 170.61048, + "y": 124.03021, + "index": 4, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 167.76581, + "y": 119.52799, + "index": 5, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 167.55357, + "y": 114.20622, + "index": 6, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 170.03066, + "y": 109.49177, + "index": 7, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 174.53288, + "y": 106.64709, + "index": 8, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 179.85465, + "y": 106.43485, + "index": 9, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 184.56911, + "y": 108.91195, + "index": 10, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 187.41378, + "y": 113.41416, + "index": 11, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 177.58979, + "y": 116.47108 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.04027, + "y": -0.06593 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2052 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2054 + }, + "max": { + "#": 2055 + } + }, + { + "x": 167.34274, + "y": 106.43485 + }, + { + "x": 187.62602, + "y": 127.15358 + }, + { + "x": 177.85391, + "y": 116.6245 + }, + [ + { + "#": 2058 + }, + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + }, + { + "#": 2062 + }, + { + "#": 2063 + } + ], + { + "x": -0.88524, + "y": -0.46513 + }, + { + "x": -0.53415, + "y": -0.84539 + }, + { + "x": -0.03985, + "y": -0.99921 + }, + { + "x": 0.46513, + "y": -0.88524 + }, + { + "x": 0.84539, + "y": -0.53415 + }, + { + "x": 0.99921, + "y": -0.03985 + }, + { + "id": "3,3,2,2", + "startCol": 3, + "endCol": 3, + "startRow": 2, + "endRow": 2 + }, + { + "id": 51, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2066 + }, + "angle": -0.03433, + "vertices": { + "#": 2067 + }, + "position": { + "#": 2088 + }, + "force": { + "#": 2089 + }, + "torque": 0, + "positionImpulse": { + "#": 2090 + }, + "constraintImpulse": { + "#": 2091 + }, + "totalContacts": 0, + "speed": 0.35855, + "angularSpeed": 0.00875, + "velocity": { + "#": 2092 + }, + "angularVelocity": -0.00698, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2093 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2094 + }, + "circleRadius": 18.73547, + "bounds": { + "#": 2096 + }, + "positionPrev": { + "#": 2099 + }, + "anglePrev": -0.02732, + "axes": { + "#": 2100 + }, + "area": 1084.70351, + "mass": 1.0847, + "inverseMass": 0.92191, + "inertia": 749.0762, + "inverseInertia": 0.00133, + "parent": { + "#": 2065 + }, + "sleepCounter": 0, + "region": { + "#": 2111 + } + }, + [ + { + "#": 2065 + } + ], + [ + { + "#": 2068 + }, + { + "#": 2069 + }, + { + "#": 2070 + }, + { + "#": 2071 + }, + { + "#": 2072 + }, + { + "#": 2073 + }, + { + "#": 2074 + }, + { + "#": 2075 + }, + { + "#": 2076 + }, + { + "#": 2077 + }, + { + "#": 2078 + }, + { + "#": 2079 + }, + { + "#": 2080 + }, + { + "#": 2081 + }, + { + "#": 2082 + }, + { + "#": 2083 + }, + { + "#": 2084 + }, + { + "#": 2085 + }, + { + "#": 2086 + }, + { + "#": 2087 + } + ], + { + "x": 223.55164, + "y": 124.52151, + "index": 0, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 221.93208, + "y": 130.15543, + "index": 1, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 218.65189, + "y": 135.01289, + "index": 2, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 214.03094, + "y": 138.61864, + "index": 3, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 208.52143, + "y": 140.62095, + "index": 4, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 202.66288, + "y": 140.82217, + "index": 5, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 197.02897, + "y": 139.20262, + "index": 6, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 192.1715, + "y": 135.92243, + "index": 7, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 188.56575, + "y": 131.30148, + "index": 8, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 186.56345, + "y": 125.79197, + "index": 9, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 186.36222, + "y": 119.93342, + "index": 10, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 187.98178, + "y": 114.29951, + "index": 11, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 191.26197, + "y": 109.44204, + "index": 12, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 195.88292, + "y": 105.83629, + "index": 13, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 201.39243, + "y": 103.83399, + "index": 14, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 207.25098, + "y": 103.63276, + "index": 15, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 212.88489, + "y": 105.25232, + "index": 16, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 217.74235, + "y": 108.53251, + "index": 17, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 221.3481, + "y": 113.15346, + "index": 18, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 223.35041, + "y": 118.66297, + "index": 19, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 204.95693, + "y": 122.22747 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.19715, + "y": 0.05255 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2095 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2097 + }, + "max": { + "#": 2098 + } + }, + { + "x": 186.34237, + "y": 103.63276 + }, + { + "x": 223.55164, + "y": 141.18018 + }, + { + "x": 205.10831, + "y": 122.1991 + }, + [ + { + "#": 2101 + }, + { + "#": 2102 + }, + { + "#": 2103 + }, + { + "#": 2104 + }, + { + "#": 2105 + }, + { + "#": 2106 + }, + { + "#": 2107 + }, + { + "#": 2108 + }, + { + "#": 2109 + }, + { + "#": 2110 + } + ], + { + "x": -0.96108, + "y": -0.27628 + }, + { + "x": -0.82874, + "y": -0.55964 + }, + { + "x": -0.61518, + "y": -0.78839 + }, + { + "x": -0.34157, + "y": -0.93986 + }, + { + "x": -0.03433, + "y": -0.99941 + }, + { + "x": 0.27628, + "y": -0.96108 + }, + { + "x": 0.55964, + "y": -0.82874 + }, + { + "x": 0.78839, + "y": -0.61518 + }, + { + "x": 0.93986, + "y": -0.34157 + }, + { + "x": 0.99941, + "y": -0.03433 + }, + { + "id": "3,4,2,2", + "startCol": 3, + "endCol": 4, + "startRow": 2, + "endRow": 2 + }, + { + "id": 52, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2113 + }, + "angle": -0.0373, + "vertices": { + "#": 2114 + }, + "position": { + "#": 2129 + }, + "force": { + "#": 2130 + }, + "torque": 0, + "positionImpulse": { + "#": 2131 + }, + "constraintImpulse": { + "#": 2132 + }, + "totalContacts": 0, + "speed": 0.73989, + "angularSpeed": 0.00539, + "velocity": { + "#": 2133 + }, + "angularVelocity": 0.004, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2134 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2135 + }, + "circleRadius": 12.11055, + "bounds": { + "#": 2137 + }, + "positionPrev": { + "#": 2140 + }, + "anglePrev": -0.0414, + "axes": { + "#": 2141 + }, + "area": 445.45282, + "mass": 0.44545, + "inverseMass": 2.24491, + "inertia": 126.35249, + "inverseInertia": 0.00791, + "parent": { + "#": 2112 + }, + "sleepCounter": 0, + "region": { + "#": 2149 + } + }, + [ + { + "#": 2112 + } + ], + [ + { + "#": 2115 + }, + { + "#": 2116 + }, + { + "#": 2117 + }, + { + "#": 2118 + }, + { + "#": 2119 + }, + { + "#": 2120 + }, + { + "#": 2121 + }, + { + "#": 2122 + }, + { + "#": 2123 + }, + { + "#": 2124 + }, + { + "#": 2125 + }, + { + "#": 2126 + }, + { + "#": 2127 + }, + { + "#": 2128 + } + ], + { + "x": 243.3825, + "y": 111.81691, + "index": 0, + "body": { + "#": 2112 + }, + "isInternal": false + }, + { + "x": 241.22622, + "y": 116.75676, + "index": 1, + "body": { + "#": 2112 + }, + "isInternal": false + }, + { + "x": 237.14145, + "y": 120.27154, + "index": 2, + "body": { + "#": 2112 + }, + "isInternal": false + }, + { + "x": 231.93486, + "y": 121.66667, + "index": 3, + "body": { + "#": 2112 + }, + "isInternal": false + }, + { + "x": 226.63876, + "y": 120.66348, + "index": 4, + "body": { + "#": 2112 + }, + "isInternal": false + }, + { + "x": 222.30339, + "y": 117.46293, + "index": 5, + "body": { + "#": 2112 + }, + "isInternal": false + }, + { + "x": 219.78493, + "y": 112.69754, + "index": 6, + "body": { + "#": 2112 + }, + "isInternal": false + }, + { + "x": 219.58392, + "y": 107.31129, + "index": 7, + "body": { + "#": 2112 + }, + "isInternal": false + }, + { + "x": 221.7402, + "y": 102.37144, + "index": 8, + "body": { + "#": 2112 + }, + "isInternal": false + }, + { + "x": 225.82496, + "y": 98.85666, + "index": 9, + "body": { + "#": 2112 + }, + "isInternal": false + }, + { + "x": 231.03156, + "y": 97.46152, + "index": 10, + "body": { + "#": 2112 + }, + "isInternal": false + }, + { + "x": 236.32765, + "y": 98.46472, + "index": 11, + "body": { + "#": 2112 + }, + "isInternal": false + }, + { + "x": 240.66303, + "y": 101.66526, + "index": 12, + "body": { + "#": 2112 + }, + "isInternal": false + }, + { + "x": 243.18149, + "y": 106.43066, + "index": 13, + "body": { + "#": 2112 + }, + "isInternal": false + }, + { + "x": 231.48321, + "y": 109.5641 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.23357, + "y": -0.02352 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2136 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2138 + }, + "max": { + "#": 2139 + } + }, + { + "x": 219.58392, + "y": 97.46152 + }, + { + "x": 243.69987, + "y": 122.33505 + }, + { + "x": 231.70817, + "y": 109.62276 + }, + [ + { + "#": 2142 + }, + { + "#": 2143 + }, + { + "#": 2144 + }, + { + "#": 2145 + }, + { + "#": 2146 + }, + { + "#": 2147 + }, + { + "#": 2148 + } + ], + { + "x": -0.91649, + "y": -0.40005 + }, + { + "x": -0.65224, + "y": -0.75801 + }, + { + "x": -0.25883, + "y": -0.96592 + }, + { + "x": 0.18611, + "y": -0.98253 + }, + { + "x": 0.59393, + "y": -0.80452 + }, + { + "x": 0.88412, + "y": -0.46725 + }, + { + "x": 0.9993, + "y": -0.03729 + }, + { + "id": "4,5,2,2", + "startCol": 4, + "endCol": 5, + "startRow": 2, + "endRow": 2 + }, + { + "id": 53, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2151 + }, + "angle": 0.11293, + "vertices": { + "#": 2152 + }, + "position": { + "#": 2171 + }, + "force": { + "#": 2172 + }, + "torque": 0, + "positionImpulse": { + "#": 2173 + }, + "constraintImpulse": { + "#": 2174 + }, + "totalContacts": 0, + "speed": 0.76061, + "angularSpeed": 0.03594, + "velocity": { + "#": 2175 + }, + "angularVelocity": 0.03867, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2176 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2177 + }, + "circleRadius": 17.20375, + "bounds": { + "#": 2179 + }, + "positionPrev": { + "#": 2182 + }, + "anglePrev": 0.07477, + "axes": { + "#": 2183 + }, + "area": 911.03452, + "mass": 0.91103, + "inverseMass": 1.09765, + "inertia": 528.42838, + "inverseInertia": 0.00189, + "parent": { + "#": 2150 + }, + "sleepCounter": 0, + "region": { + "#": 2193 + } + }, + [ + { + "#": 2150 + } + ], + [ + { + "#": 2153 + }, + { + "#": 2154 + }, + { + "#": 2155 + }, + { + "#": 2156 + }, + { + "#": 2157 + }, + { + "#": 2158 + }, + { + "#": 2159 + }, + { + "#": 2160 + }, + { + "#": 2161 + }, + { + "#": 2162 + }, + { + "#": 2163 + }, + { + "#": 2164 + }, + { + "#": 2165 + }, + { + "#": 2166 + }, + { + "#": 2167 + }, + { + "#": 2168 + }, + { + "#": 2169 + }, + { + "#": 2170 + } + ], + { + "x": 275.96285, + "y": 118.07904, + "index": 0, + "body": { + "#": 2150 + }, + "isInternal": false + }, + { + "x": 273.30013, + "y": 123.42805, + "index": 1, + "body": { + "#": 2150 + }, + "isInternal": false + }, + { + "x": 268.96783, + "y": 127.54307, + "index": 2, + "body": { + "#": 2150 + }, + "isInternal": false + }, + { + "x": 263.49019, + "y": 129.92801, + "index": 3, + "body": { + "#": 2150 + }, + "isInternal": false + }, + { + "x": 257.5267, + "y": 130.29636, + "index": 4, + "body": { + "#": 2150 + }, + "isInternal": false + }, + { + "x": 251.79715, + "y": 128.60192, + "index": 5, + "body": { + "#": 2150 + }, + "isInternal": false + }, + { + "x": 246.99269, + "y": 125.05091, + "index": 6, + "body": { + "#": 2150 + }, + "isInternal": false + }, + { + "x": 243.69192, + "y": 120.07024, + "index": 7, + "body": { + "#": 2150 + }, + "isInternal": false + }, + { + "x": 242.29467, + "y": 114.26078, + "index": 8, + "body": { + "#": 2150 + }, + "isInternal": false + }, + { + "x": 242.96785, + "y": 108.32483, + "index": 9, + "body": { + "#": 2150 + }, + "isInternal": false + }, + { + "x": 245.63057, + "y": 102.97581, + "index": 10, + "body": { + "#": 2150 + }, + "isInternal": false + }, + { + "x": 249.96287, + "y": 98.86079, + "index": 11, + "body": { + "#": 2150 + }, + "isInternal": false + }, + { + "x": 255.44051, + "y": 96.47586, + "index": 12, + "body": { + "#": 2150 + }, + "isInternal": false + }, + { + "x": 261.404, + "y": 96.10751, + "index": 13, + "body": { + "#": 2150 + }, + "isInternal": false + }, + { + "x": 267.13356, + "y": 97.80195, + "index": 14, + "body": { + "#": 2150 + }, + "isInternal": false + }, + { + "x": 271.93801, + "y": 101.35296, + "index": 15, + "body": { + "#": 2150 + }, + "isInternal": false + }, + { + "x": 275.23878, + "y": 106.33363, + "index": 16, + "body": { + "#": 2150 + }, + "isInternal": false + }, + { + "x": 276.63603, + "y": 112.14309, + "index": 17, + "body": { + "#": 2150 + }, + "isInternal": false + }, + { + "x": 259.46535, + "y": 113.20193 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.53374, + "y": 0.04519 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2178 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2180 + }, + "max": { + "#": 2181 + } + }, + { + "x": 242.29467, + "y": 96.10751 + }, + { + "x": 276.65997, + "y": 131.05659 + }, + { + "x": 258.94446, + "y": 113.11747 + }, + [ + { + "#": 2184 + }, + { + "#": 2185 + }, + { + "#": 2186 + }, + { + "#": 2187 + }, + { + "#": 2188 + }, + { + "#": 2189 + }, + { + "#": 2190 + }, + { + "#": 2191 + }, + { + "#": 2192 + } + ], + { + "x": -0.89522, + "y": -0.44563 + }, + { + "x": -0.68869, + "y": -0.72505 + }, + { + "x": -0.3992, + "y": -0.91686 + }, + { + "x": -0.06165, + "y": -0.9981 + }, + { + "x": 0.28359, + "y": -0.95894 + }, + { + "x": 0.59438, + "y": -0.80418 + }, + { + "x": 0.83357, + "y": -0.55242 + }, + { + "x": 0.97227, + "y": -0.23385 + }, + { + "x": 0.99363, + "y": 0.11269 + }, + { + "id": "5,5,2,2", + "startCol": 5, + "endCol": 5, + "startRow": 2, + "endRow": 2 + }, + { + "id": 54, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2195 + }, + "angle": -0.00143, + "vertices": { + "#": 2196 + }, + "position": { + "#": 2213 + }, + "force": { + "#": 2214 + }, + "torque": 0, + "positionImpulse": { + "#": 2215 + }, + "constraintImpulse": { + "#": 2216 + }, + "totalContacts": 0, + "speed": 1.45272, + "angularSpeed": 0.00462, + "velocity": { + "#": 2217 + }, + "angularVelocity": 0.00289, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2218 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2219 + }, + "circleRadius": 14.87924, + "bounds": { + "#": 2221 + }, + "positionPrev": { + "#": 2224 + }, + "anglePrev": -0.00427, + "axes": { + "#": 2225 + }, + "area": 677.77246, + "mass": 0.67777, + "inverseMass": 1.47542, + "inertia": 292.48689, + "inverseInertia": 0.00342, + "parent": { + "#": 2194 + }, + "sleepCounter": 0, + "region": { + "#": 2234 + } + }, + [ + { + "#": 2194 + } + ], + [ + { + "#": 2197 + }, + { + "#": 2198 + }, + { + "#": 2199 + }, + { + "#": 2200 + }, + { + "#": 2201 + }, + { + "#": 2202 + }, + { + "#": 2203 + }, + { + "#": 2204 + }, + { + "#": 2205 + }, + { + "#": 2206 + }, + { + "#": 2207 + }, + { + "#": 2208 + }, + { + "#": 2209 + }, + { + "#": 2210 + }, + { + "#": 2211 + }, + { + "#": 2212 + } + ], + { + "x": 307.0313, + "y": 125.21003, + "index": 0, + "body": { + "#": 2194 + }, + "isInternal": false + }, + { + "x": 304.81799, + "y": 130.57621, + "index": 1, + "body": { + "#": 2194 + }, + "isInternal": false + }, + { + "x": 300.71788, + "y": 134.68809, + "index": 2, + "body": { + "#": 2194 + }, + "isInternal": false + }, + { + "x": 295.35807, + "y": 136.91678, + "index": 3, + "body": { + "#": 2194 + }, + "isInternal": false + }, + { + "x": 289.55207, + "y": 136.9251, + "index": 4, + "body": { + "#": 2194 + }, + "isInternal": false + }, + { + "x": 284.18589, + "y": 134.7118, + "index": 5, + "body": { + "#": 2194 + }, + "isInternal": false + }, + { + "x": 280.07401, + "y": 130.61169, + "index": 6, + "body": { + "#": 2194 + }, + "isInternal": false + }, + { + "x": 277.84533, + "y": 125.25188, + "index": 7, + "body": { + "#": 2194 + }, + "isInternal": false + }, + { + "x": 277.837, + "y": 119.44588, + "index": 8, + "body": { + "#": 2194 + }, + "isInternal": false + }, + { + "x": 280.05031, + "y": 114.0797, + "index": 9, + "body": { + "#": 2194 + }, + "isInternal": false + }, + { + "x": 284.15042, + "y": 109.96782, + "index": 10, + "body": { + "#": 2194 + }, + "isInternal": false + }, + { + "x": 289.51023, + "y": 107.73913, + "index": 11, + "body": { + "#": 2194 + }, + "isInternal": false + }, + { + "x": 295.31622, + "y": 107.73081, + "index": 12, + "body": { + "#": 2194 + }, + "isInternal": false + }, + { + "x": 300.6824, + "y": 109.94412, + "index": 13, + "body": { + "#": 2194 + }, + "isInternal": false + }, + { + "x": 304.79428, + "y": 114.04423, + "index": 14, + "body": { + "#": 2194 + }, + "isInternal": false + }, + { + "x": 307.02297, + "y": 119.40404, + "index": 15, + "body": { + "#": 2194 + }, + "isInternal": false + }, + { + "x": 292.43415, + "y": 122.32796 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.57256, + "y": 0.15257 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2220 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2222 + }, + "max": { + "#": 2223 + } + }, + { + "x": 277.837, + "y": 107.73081 + }, + { + "x": 307.89232, + "y": 138.09517 + }, + { + "x": 291.86165, + "y": 122.22063 + }, + [ + { + "#": 2226 + }, + { + "#": 2227 + }, + { + "#": 2228 + }, + { + "#": 2229 + }, + { + "#": 2230 + }, + { + "#": 2231 + }, + { + "#": 2232 + }, + { + "#": 2233 + } + ], + { + "x": -0.92445, + "y": -0.3813 + }, + { + "x": -0.70812, + "y": -0.70609 + }, + { + "x": -0.38394, + "y": -0.92336 + }, + { + "x": -0.00143, + "y": -1 + }, + { + "x": 0.3813, + "y": -0.92445 + }, + { + "x": 0.70609, + "y": -0.70812 + }, + { + "x": 0.92336, + "y": -0.38394 + }, + { + "x": 1, + "y": -0.00143 + }, + { + "id": "5,6,2,2", + "startCol": 5, + "endCol": 6, + "startRow": 2, + "endRow": 2 + }, + { + "id": 55, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2236 + }, + "angle": 0.01632, + "vertices": { + "#": 2237 + }, + "position": { + "#": 2254 + }, + "force": { + "#": 2255 + }, + "torque": 0, + "positionImpulse": { + "#": 2256 + }, + "constraintImpulse": { + "#": 2257 + }, + "totalContacts": 0, + "speed": 0.71256, + "angularSpeed": 0.00547, + "velocity": { + "#": 2258 + }, + "angularVelocity": 0.00079, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2259 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2260 + }, + "circleRadius": 14.51976, + "bounds": { + "#": 2262 + }, + "positionPrev": { + "#": 2265 + }, + "anglePrev": 0.01619, + "axes": { + "#": 2266 + }, + "area": 645.45804, + "mass": 0.64546, + "inverseMass": 1.54929, + "inertia": 265.26173, + "inverseInertia": 0.00377, + "parent": { + "#": 2235 + }, + "sleepCounter": 0, + "region": { + "#": 2275 + } + }, + [ + { + "#": 2235 + } + ], + [ + { + "#": 2238 + }, + { + "#": 2239 + }, + { + "#": 2240 + }, + { + "#": 2241 + }, + { + "#": 2242 + }, + { + "#": 2243 + }, + { + "#": 2244 + }, + { + "#": 2245 + }, + { + "#": 2246 + }, + { + "#": 2247 + }, + { + "#": 2248 + }, + { + "#": 2249 + }, + { + "#": 2250 + }, + { + "#": 2251 + }, + { + "#": 2252 + }, + { + "#": 2253 + } + ], + { + "x": 335.18853, + "y": 124.00136, + "index": 0, + "body": { + "#": 2235 + }, + "isInternal": false + }, + { + "x": 332.93542, + "y": 129.19929, + "index": 1, + "body": { + "#": 2235 + }, + "isInternal": false + }, + { + "x": 328.86458, + "y": 133.13939, + "index": 2, + "body": { + "#": 2235 + }, + "isInternal": false + }, + { + "x": 323.59591, + "y": 135.2217, + "index": 3, + "body": { + "#": 2235 + }, + "isInternal": false + }, + { + "x": 317.93066, + "y": 135.12925, + "index": 4, + "body": { + "#": 2235 + }, + "isInternal": false + }, + { + "x": 312.73273, + "y": 132.87614, + "index": 5, + "body": { + "#": 2235 + }, + "isInternal": false + }, + { + "x": 308.79263, + "y": 128.80531, + "index": 6, + "body": { + "#": 2235 + }, + "isInternal": false + }, + { + "x": 306.71032, + "y": 123.53663, + "index": 7, + "body": { + "#": 2235 + }, + "isInternal": false + }, + { + "x": 306.80277, + "y": 117.87139, + "index": 8, + "body": { + "#": 2235 + }, + "isInternal": false + }, + { + "x": 309.05588, + "y": 112.67346, + "index": 9, + "body": { + "#": 2235 + }, + "isInternal": false + }, + { + "x": 313.12671, + "y": 108.73336, + "index": 10, + "body": { + "#": 2235 + }, + "isInternal": false + }, + { + "x": 318.39539, + "y": 106.65105, + "index": 11, + "body": { + "#": 2235 + }, + "isInternal": false + }, + { + "x": 324.06063, + "y": 106.74349, + "index": 12, + "body": { + "#": 2235 + }, + "isInternal": false + }, + { + "x": 329.25856, + "y": 108.99661, + "index": 13, + "body": { + "#": 2235 + }, + "isInternal": false + }, + { + "x": 333.19866, + "y": 113.06744, + "index": 14, + "body": { + "#": 2235 + }, + "isInternal": false + }, + { + "x": 335.28098, + "y": 118.33611, + "index": 15, + "body": { + "#": 2235 + }, + "isInternal": false + }, + { + "x": 320.99565, + "y": 120.93637 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.07935, + "y": -0.09401 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.73629, + "y": 0.04847 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2261 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2263 + }, + "max": { + "#": 2264 + } + }, + { + "x": 306.71032, + "y": 106.65105 + }, + { + "x": 335.84761, + "y": 135.65375 + }, + { + "x": 320.21282, + "y": 120.77015 + }, + [ + { + "#": 2267 + }, + { + "#": 2268 + }, + { + "#": 2269 + }, + { + "#": 2270 + }, + { + "#": 2271 + }, + { + "#": 2272 + }, + { + "#": 2273 + }, + { + "#": 2274 + } + ], + { + "x": -0.91751, + "y": -0.39771 + }, + { + "x": -0.69548, + "y": -0.71855 + }, + { + "x": -0.36756, + "y": -0.93 + }, + { + "x": 0.01632, + "y": -0.99987 + }, + { + "x": 0.39771, + "y": -0.91751 + }, + { + "x": 0.71855, + "y": -0.69548 + }, + { + "x": 0.93, + "y": -0.36756 + }, + { + "x": 0.99987, + "y": 0.01632 + }, + { + "id": "6,6,2,2", + "startCol": 6, + "endCol": 6, + "startRow": 2, + "endRow": 2 + }, + { + "id": 56, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2277 + }, + "angle": 0.00951, + "vertices": { + "#": 2278 + }, + "position": { + "#": 2295 + }, + "force": { + "#": 2296 + }, + "torque": 0, + "positionImpulse": { + "#": 2297 + }, + "constraintImpulse": { + "#": 2298 + }, + "totalContacts": 0, + "speed": 0.60467, + "angularSpeed": 0.00033, + "velocity": { + "#": 2299 + }, + "angularVelocity": 0.00116, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2300 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2301 + }, + "circleRadius": 15.13765, + "bounds": { + "#": 2303 + }, + "positionPrev": { + "#": 2306 + }, + "anglePrev": 0.00847, + "axes": { + "#": 2307 + }, + "area": 701.5186, + "mass": 0.70152, + "inverseMass": 1.42548, + "inertia": 313.3408, + "inverseInertia": 0.00319, + "parent": { + "#": 2276 + }, + "sleepCounter": 0, + "region": { + "#": 2316 + } + }, + [ + { + "#": 2276 + } + ], + [ + { + "#": 2279 + }, + { + "#": 2280 + }, + { + "#": 2281 + }, + { + "#": 2282 + }, + { + "#": 2283 + }, + { + "#": 2284 + }, + { + "#": 2285 + }, + { + "#": 2286 + }, + { + "#": 2287 + }, + { + "#": 2288 + }, + { + "#": 2289 + }, + { + "#": 2290 + }, + { + "#": 2291 + }, + { + "#": 2292 + }, + { + "#": 2293 + }, + { + "#": 2294 + } + ], + { + "x": 364.37977, + "y": 125.6415, + "index": 0, + "body": { + "#": 2276 + }, + "isInternal": false + }, + { + "x": 362.06696, + "y": 131.07675, + "index": 1, + "body": { + "#": 2276 + }, + "isInternal": false + }, + { + "x": 357.85141, + "y": 135.21283, + "index": 2, + "body": { + "#": 2276 + }, + "isInternal": false + }, + { + "x": 352.37315, + "y": 137.42181, + "index": 3, + "body": { + "#": 2276 + }, + "isInternal": false + }, + { + "x": 346.46742, + "y": 137.36562, + "index": 4, + "body": { + "#": 2276 + }, + "isInternal": false + }, + { + "x": 341.03218, + "y": 135.0528, + "index": 5, + "body": { + "#": 2276 + }, + "isInternal": false + }, + { + "x": 336.89609, + "y": 130.83726, + "index": 6, + "body": { + "#": 2276 + }, + "isInternal": false + }, + { + "x": 334.68711, + "y": 125.359, + "index": 7, + "body": { + "#": 2276 + }, + "isInternal": false + }, + { + "x": 334.7433, + "y": 119.45327, + "index": 8, + "body": { + "#": 2276 + }, + "isInternal": false + }, + { + "x": 337.05612, + "y": 114.01802, + "index": 9, + "body": { + "#": 2276 + }, + "isInternal": false + }, + { + "x": 341.27166, + "y": 109.88194, + "index": 10, + "body": { + "#": 2276 + }, + "isInternal": false + }, + { + "x": 346.74992, + "y": 107.67296, + "index": 11, + "body": { + "#": 2276 + }, + "isInternal": false + }, + { + "x": 352.65566, + "y": 107.72915, + "index": 12, + "body": { + "#": 2276 + }, + "isInternal": false + }, + { + "x": 358.0909, + "y": 110.04197, + "index": 13, + "body": { + "#": 2276 + }, + "isInternal": false + }, + { + "x": 362.22698, + "y": 114.25751, + "index": 14, + "body": { + "#": 2276 + }, + "isInternal": false + }, + { + "x": 364.43596, + "y": 119.73577, + "index": 15, + "body": { + "#": 2276 + }, + "isInternal": false + }, + { + "x": 349.56154, + "y": 122.54738 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.74747, + "y": 0.0939 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2302 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2304 + }, + "max": { + "#": 2305 + } + }, + { + "x": 334.68711, + "y": 107.67296 + }, + { + "x": 364.88283, + "y": 137.82916 + }, + { + "x": 348.81717, + "y": 122.42154 + }, + [ + { + "#": 2308 + }, + { + "#": 2309 + }, + { + "#": 2310 + }, + { + "#": 2311 + }, + { + "#": 2312 + }, + { + "#": 2313 + }, + { + "#": 2314 + }, + { + "#": 2315 + } + ], + { + "x": -0.92016, + "y": -0.39155 + }, + { + "x": -0.70035, + "y": -0.7138 + }, + { + "x": -0.37397, + "y": -0.92744 + }, + { + "x": 0.00951, + "y": -0.99995 + }, + { + "x": 0.39155, + "y": -0.92016 + }, + { + "x": 0.7138, + "y": -0.70035 + }, + { + "x": 0.92744, + "y": -0.37397 + }, + { + "x": 0.99995, + "y": 0.00951 + }, + { + "id": "6,7,2,2", + "startCol": 6, + "endCol": 7, + "startRow": 2, + "endRow": 2 + }, + { + "id": 57, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2318 + }, + "angle": 0.03175, + "vertices": { + "#": 2319 + }, + "position": { + "#": 2334 + }, + "force": { + "#": 2335 + }, + "torque": 0, + "positionImpulse": { + "#": 2336 + }, + "constraintImpulse": { + "#": 2337 + }, + "totalContacts": 0, + "speed": 0.64597, + "angularSpeed": 0.03376, + "velocity": { + "#": 2338 + }, + "angularVelocity": 0.04496, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2339 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2340 + }, + "circleRadius": 13.15265, + "bounds": { + "#": 2342 + }, + "positionPrev": { + "#": 2345 + }, + "anglePrev": -0.01295, + "axes": { + "#": 2346 + }, + "area": 525.42123, + "mass": 0.52542, + "inverseMass": 1.90323, + "inertia": 175.79059, + "inverseInertia": 0.00569, + "parent": { + "#": 2317 + }, + "sleepCounter": 0, + "region": { + "#": 2354 + } + }, + [ + { + "#": 2317 + } + ], + [ + { + "#": 2320 + }, + { + "#": 2321 + }, + { + "#": 2322 + }, + { + "#": 2323 + }, + { + "#": 2324 + }, + { + "#": 2325 + }, + { + "#": 2326 + }, + { + "#": 2327 + }, + { + "#": 2328 + }, + { + "#": 2329 + }, + { + "#": 2330 + }, + { + "#": 2331 + }, + { + "#": 2332 + }, + { + "#": 2333 + } + ], + { + "x": 389.415, + "y": 126.59583, + "index": 0, + "body": { + "#": 2317 + }, + "isInternal": false + }, + { + "x": 386.70885, + "y": 131.78653, + "index": 1, + "body": { + "#": 2317 + }, + "isInternal": false + }, + { + "x": 382.01931, + "y": 135.28841, + "index": 2, + "body": { + "#": 2317 + }, + "isInternal": false + }, + { + "x": 376.27382, + "y": 136.40957, + "index": 3, + "body": { + "#": 2317 + }, + "isInternal": false + }, + { + "x": 370.61106, + "y": 134.92604, + "index": 4, + "body": { + "#": 2317 + }, + "isInternal": false + }, + { + "x": 366.15321, + "y": 131.13361, + "index": 5, + "body": { + "#": 2317 + }, + "isInternal": false + }, + { + "x": 363.78193, + "y": 125.78163, + "index": 6, + "body": { + "#": 2317 + }, + "isInternal": false + }, + { + "x": 363.96778, + "y": 119.93058, + "index": 7, + "body": { + "#": 2317 + }, + "isInternal": false + }, + { + "x": 366.67394, + "y": 114.73987, + "index": 8, + "body": { + "#": 2317 + }, + "isInternal": false + }, + { + "x": 371.36348, + "y": 111.23799, + "index": 9, + "body": { + "#": 2317 + }, + "isInternal": false + }, + { + "x": 377.10897, + "y": 110.11683, + "index": 10, + "body": { + "#": 2317 + }, + "isInternal": false + }, + { + "x": 382.77173, + "y": 111.60036, + "index": 11, + "body": { + "#": 2317 + }, + "isInternal": false + }, + { + "x": 387.22957, + "y": 115.3928, + "index": 12, + "body": { + "#": 2317 + }, + "isInternal": false + }, + { + "x": 389.60086, + "y": 120.74478, + "index": 13, + "body": { + "#": 2317 + }, + "isInternal": false + }, + { + "x": 376.69139, + "y": 123.2632 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.69863, + "y": 0.16402 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2341 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2343 + }, + "max": { + "#": 2344 + } + }, + { + "x": 363.78193, + "y": 110.11683 + }, + { + "x": 390.02219, + "y": 136.89921 + }, + { + "x": 375.9872, + "y": 123.07071 + }, + [ + { + "#": 2347 + }, + { + "#": 2348 + }, + { + "#": 2349 + }, + { + "#": 2350 + }, + { + "#": 2351 + }, + { + "#": 2352 + }, + { + "#": 2353 + } + ], + { + "x": -0.88673, + "y": -0.46229 + }, + { + "x": -0.59833, + "y": -0.80125 + }, + { + "x": -0.19152, + "y": -0.98149 + }, + { + "x": 0.25343, + "y": -0.96735 + }, + { + "x": 0.64797, + "y": -0.76166 + }, + { + "x": 0.91428, + "y": -0.40509 + }, + { + "x": 0.9995, + "y": 0.03175 + }, + { + "id": "7,8,2,2", + "startCol": 7, + "endCol": 8, + "startRow": 2, + "endRow": 2 + }, + { + "id": 58, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2356 + }, + "angle": -0.00319, + "vertices": { + "#": 2357 + }, + "position": { + "#": 2376 + }, + "force": { + "#": 2377 + }, + "torque": 0, + "positionImpulse": { + "#": 2378 + }, + "constraintImpulse": { + "#": 2379 + }, + "totalContacts": 0, + "speed": 1.97485, + "angularSpeed": 0.00162, + "velocity": { + "#": 2380 + }, + "angularVelocity": 0.00298, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2381 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2382 + }, + "circleRadius": 16.83638, + "bounds": { + "#": 2384 + }, + "positionPrev": { + "#": 2387 + }, + "anglePrev": -0.00614, + "axes": { + "#": 2388 + }, + "area": 872.54809, + "mass": 0.87255, + "inverseMass": 1.14607, + "inertia": 484.72477, + "inverseInertia": 0.00206, + "parent": { + "#": 2355 + }, + "sleepCounter": 0, + "region": { + "#": 2398 + } + }, + [ + { + "#": 2355 + } + ], + [ + { + "#": 2358 + }, + { + "#": 2359 + }, + { + "#": 2360 + }, + { + "#": 2361 + }, + { + "#": 2362 + }, + { + "#": 2363 + }, + { + "#": 2364 + }, + { + "#": 2365 + }, + { + "#": 2366 + }, + { + "#": 2367 + }, + { + "#": 2368 + }, + { + "#": 2369 + }, + { + "#": 2370 + }, + { + "#": 2371 + }, + { + "#": 2372 + }, + { + "#": 2373 + }, + { + "#": 2374 + }, + { + "#": 2375 + } + ], + { + "x": 422.0449, + "y": 130.86688, + "index": 0, + "body": { + "#": 2355 + }, + "isInternal": false + }, + { + "x": 420.06243, + "y": 136.36723, + "index": 1, + "body": { + "#": 2355 + }, + "isInternal": false + }, + { + "x": 416.31774, + "y": 140.8582, + "index": 2, + "body": { + "#": 2355 + }, + "isInternal": false + }, + { + "x": 411.2631, + "y": 143.79834, + "index": 3, + "body": { + "#": 2355 + }, + "isInternal": false + }, + { + "x": 405.50836, + "y": 144.8317, + "index": 4, + "body": { + "#": 2355 + }, + "isInternal": false + }, + { + "x": 399.74716, + "y": 143.83508, + "index": 5, + "body": { + "#": 2355 + }, + "isInternal": false + }, + { + "x": 394.67385, + "y": 140.92725, + "index": 6, + "body": { + "#": 2355 + }, + "isInternal": false + }, + { + "x": 390.90058, + "y": 136.46027, + "index": 7, + "body": { + "#": 2355 + }, + "isInternal": false + }, + { + "x": 388.88307, + "y": 130.97267, + "index": 8, + "body": { + "#": 2355 + }, + "isInternal": false + }, + { + "x": 388.86441, + "y": 125.1247, + "index": 9, + "body": { + "#": 2355 + }, + "isInternal": false + }, + { + "x": 390.84687, + "y": 119.62435, + "index": 10, + "body": { + "#": 2355 + }, + "isInternal": false + }, + { + "x": 394.59156, + "y": 115.13338, + "index": 11, + "body": { + "#": 2355 + }, + "isInternal": false + }, + { + "x": 399.64621, + "y": 112.19324, + "index": 12, + "body": { + "#": 2355 + }, + "isInternal": false + }, + { + "x": 405.40094, + "y": 111.15988, + "index": 13, + "body": { + "#": 2355 + }, + "isInternal": false + }, + { + "x": 411.16215, + "y": 112.1565, + "index": 14, + "body": { + "#": 2355 + }, + "isInternal": false + }, + { + "x": 416.23545, + "y": 115.06433, + "index": 15, + "body": { + "#": 2355 + }, + "isInternal": false + }, + { + "x": 420.00872, + "y": 119.53132, + "index": 16, + "body": { + "#": 2355 + }, + "isInternal": false + }, + { + "x": 422.02624, + "y": 125.01891, + "index": 17, + "body": { + "#": 2355 + }, + "isInternal": false + }, + { + "x": 405.45465, + "y": 127.99579 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.63222, + "y": 1.63087 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2383 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2385 + }, + "max": { + "#": 2386 + } + }, + { + "x": 388.86441, + "y": 111.15988 + }, + { + "x": 422.3371, + "y": 146.78482 + }, + { + "x": 404.84058, + "y": 126.3655 + }, + [ + { + "#": 2389 + }, + { + "#": 2390 + }, + { + "#": 2391 + }, + { + "#": 2392 + }, + { + "#": 2393 + }, + { + "#": 2394 + }, + { + "#": 2395 + }, + { + "#": 2396 + }, + { + "#": 2397 + } + ], + { + "x": -0.94076, + "y": -0.33907 + }, + { + "x": -0.76803, + "y": -0.64041 + }, + { + "x": -0.5028, + "y": -0.8644 + }, + { + "x": -0.17674, + "y": -0.98426 + }, + { + "x": 0.17046, + "y": -0.98537 + }, + { + "x": 0.49727, + "y": -0.86759 + }, + { + "x": 0.76393, + "y": -0.6453 + }, + { + "x": 0.93858, + "y": -0.34507 + }, + { + "x": 0.99999, + "y": -0.00319 + }, + { + "id": "8,8,2,3", + "startCol": 8, + "endCol": 8, + "startRow": 2, + "endRow": 3 + }, + { + "id": 59, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2400 + }, + "angle": -0.00406, + "vertices": { + "#": 2401 + }, + "position": { + "#": 2420 + }, + "force": { + "#": 2421 + }, + "torque": 0, + "positionImpulse": { + "#": 2422 + }, + "constraintImpulse": { + "#": 2423 + }, + "totalContacts": 0, + "speed": 1.03417, + "angularSpeed": 0.00008, + "velocity": { + "#": 2424 + }, + "angularVelocity": -0.00005, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2425 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2426 + }, + "circleRadius": 17.4234, + "bounds": { + "#": 2428 + }, + "positionPrev": { + "#": 2431 + }, + "anglePrev": -0.00399, + "axes": { + "#": 2432 + }, + "area": 934.47599, + "mass": 0.93448, + "inverseMass": 1.07012, + "inertia": 555.9718, + "inverseInertia": 0.0018, + "parent": { + "#": 2399 + }, + "sleepCounter": 0, + "region": { + "#": 2442 + } + }, + [ + { + "#": 2399 + } + ], + [ + { + "#": 2402 + }, + { + "#": 2403 + }, + { + "#": 2404 + }, + { + "#": 2405 + }, + { + "#": 2406 + }, + { + "#": 2407 + }, + { + "#": 2408 + }, + { + "#": 2409 + }, + { + "#": 2410 + }, + { + "#": 2411 + }, + { + "#": 2412 + }, + { + "#": 2413 + }, + { + "#": 2414 + }, + { + "#": 2415 + }, + { + "#": 2416 + }, + { + "#": 2417 + }, + { + "#": 2418 + }, + { + "#": 2419 + } + ], + { + "x": 457.82758, + "y": 126.55167, + "index": 0, + "body": { + "#": 2399 + }, + "isInternal": false + }, + { + "x": 455.78066, + "y": 132.24603, + "index": 1, + "body": { + "#": 2399 + }, + "isInternal": false + }, + { + "x": 451.9105, + "y": 136.89676, + "index": 2, + "body": { + "#": 2399 + }, + "isInternal": false + }, + { + "x": 446.68182, + "y": 139.944, + "index": 3, + "body": { + "#": 2399 + }, + "isInternal": false + }, + { + "x": 440.72712, + "y": 141.01817, + "index": 4, + "body": { + "#": 2399 + }, + "isInternal": false + }, + { + "x": 434.76391, + "y": 139.99235, + "index": 5, + "body": { + "#": 2399 + }, + "isInternal": false + }, + { + "x": 429.51068, + "y": 136.98764, + "index": 6, + "body": { + "#": 2399 + }, + "isInternal": false + }, + { + "x": 425.60291, + "y": 132.36845, + "index": 7, + "body": { + "#": 2399 + }, + "isInternal": false + }, + { + "x": 423.50986, + "y": 126.6909, + "index": 8, + "body": { + "#": 2399 + }, + "isInternal": false + }, + { + "x": 423.48531, + "y": 120.63895, + "index": 9, + "body": { + "#": 2399 + }, + "isInternal": false + }, + { + "x": 425.53222, + "y": 114.9446, + "index": 10, + "body": { + "#": 2399 + }, + "isInternal": false + }, + { + "x": 429.40239, + "y": 110.29386, + "index": 11, + "body": { + "#": 2399 + }, + "isInternal": false + }, + { + "x": 434.63107, + "y": 107.24662, + "index": 12, + "body": { + "#": 2399 + }, + "isInternal": false + }, + { + "x": 440.58576, + "y": 106.17245, + "index": 13, + "body": { + "#": 2399 + }, + "isInternal": false + }, + { + "x": 446.54897, + "y": 107.19827, + "index": 14, + "body": { + "#": 2399 + }, + "isInternal": false + }, + { + "x": 451.8022, + "y": 110.20298, + "index": 15, + "body": { + "#": 2399 + }, + "isInternal": false + }, + { + "x": 455.70997, + "y": 114.82217, + "index": 16, + "body": { + "#": 2399 + }, + "isInternal": false + }, + { + "x": 457.80302, + "y": 120.49972, + "index": 17, + "body": { + "#": 2399 + }, + "isInternal": false + }, + { + "x": 440.65644, + "y": 123.59531 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.15147, + "y": 1.0661 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2427 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2429 + }, + "max": { + "#": 2430 + } + }, + { + "x": 423.48531, + "y": 106.17245 + }, + { + "x": 457.99451, + "y": 142.03878 + }, + { + "x": 440.49314, + "y": 122.56396 + }, + [ + { + "#": 2433 + }, + { + "#": 2434 + }, + { + "#": 2435 + }, + { + "#": 2436 + }, + { + "#": 2437 + }, + { + "#": 2438 + }, + { + "#": 2439 + }, + { + "#": 2440 + }, + { + "#": 2441 + } + ], + { + "x": -0.94105, + "y": -0.33827 + }, + { + "x": -0.76866, + "y": -0.63965 + }, + { + "x": -0.50352, + "y": -0.86398 + }, + { + "x": -0.17752, + "y": -0.98412 + }, + { + "x": 0.16953, + "y": -0.98552 + }, + { + "x": 0.4965, + "y": -0.86804 + }, + { + "x": 0.76345, + "y": -0.64587 + }, + { + "x": 0.93827, + "y": -0.3459 + }, + { + "x": 0.99999, + "y": -0.00406 + }, + { + "id": "8,9,2,2", + "startCol": 8, + "endCol": 9, + "startRow": 2, + "endRow": 2 + }, + { + "id": 60, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2444 + }, + "angle": -0.01938, + "vertices": { + "#": 2445 + }, + "position": { + "#": 2464 + }, + "force": { + "#": 2465 + }, + "torque": 0, + "positionImpulse": { + "#": 2466 + }, + "constraintImpulse": { + "#": 2467 + }, + "totalContacts": 0, + "speed": 1.22653, + "angularSpeed": 0.00226, + "velocity": { + "#": 2468 + }, + "angularVelocity": -0.00214, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2469 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2470 + }, + "circleRadius": 16.88902, + "bounds": { + "#": 2472 + }, + "positionPrev": { + "#": 2475 + }, + "anglePrev": -0.01727, + "axes": { + "#": 2476 + }, + "area": 877.9976, + "mass": 0.878, + "inverseMass": 1.13896, + "inertia": 490.79839, + "inverseInertia": 0.00204, + "parent": { + "#": 2443 + }, + "sleepCounter": 0, + "region": { + "#": 2486 + } + }, + [ + { + "#": 2443 + } + ], + [ + { + "#": 2446 + }, + { + "#": 2447 + }, + { + "#": 2448 + }, + { + "#": 2449 + }, + { + "#": 2450 + }, + { + "#": 2451 + }, + { + "#": 2452 + }, + { + "#": 2453 + }, + { + "#": 2454 + }, + { + "#": 2455 + }, + { + "#": 2456 + }, + { + "#": 2457 + }, + { + "#": 2458 + }, + { + "#": 2459 + }, + { + "#": 2460 + }, + { + "#": 2461 + }, + { + "#": 2462 + }, + { + "#": 2463 + } + ], + { + "x": 491.04183, + "y": 129.03934, + "index": 0, + "body": { + "#": 2443 + }, + "isInternal": false + }, + { + "x": 489.14303, + "y": 134.58918, + "index": 1, + "body": { + "#": 2443 + }, + "isInternal": false + }, + { + "x": 485.46081, + "y": 139.1544, + "index": 2, + "body": { + "#": 2443 + }, + "isInternal": false + }, + { + "x": 480.43859, + "y": 142.1843, + "index": 3, + "body": { + "#": 2443 + }, + "isInternal": false + }, + { + "x": 474.68342, + "y": 143.31505, + "index": 4, + "body": { + "#": 2443 + }, + "isInternal": false + }, + { + "x": 468.88876, + "y": 142.40818, + "index": 5, + "body": { + "#": 2443 + }, + "isInternal": false + }, + { + "x": 463.75289, + "y": 139.57518, + "index": 6, + "body": { + "#": 2443 + }, + "isInternal": false + }, + { + "x": 459.89652, + "y": 135.15609, + "index": 7, + "body": { + "#": 2443 + }, + "isInternal": false + }, + { + "x": 457.78407, + "y": 129.684, + "index": 8, + "body": { + "#": 2443 + }, + "isInternal": false + }, + { + "x": 457.67039, + "y": 123.8191, + "index": 9, + "body": { + "#": 2443 + }, + "isInternal": false + }, + { + "x": 459.56919, + "y": 118.26926, + "index": 10, + "body": { + "#": 2443 + }, + "isInternal": false + }, + { + "x": 463.25141, + "y": 113.70404, + "index": 11, + "body": { + "#": 2443 + }, + "isInternal": false + }, + { + "x": 468.27363, + "y": 110.67414, + "index": 12, + "body": { + "#": 2443 + }, + "isInternal": false + }, + { + "x": 474.0288, + "y": 109.54339, + "index": 13, + "body": { + "#": 2443 + }, + "isInternal": false + }, + { + "x": 479.82346, + "y": 110.45026, + "index": 14, + "body": { + "#": 2443 + }, + "isInternal": false + }, + { + "x": 484.95933, + "y": 113.28326, + "index": 15, + "body": { + "#": 2443 + }, + "isInternal": false + }, + { + "x": 488.8157, + "y": 117.70235, + "index": 16, + "body": { + "#": 2443 + }, + "isInternal": false + }, + { + "x": 490.92814, + "y": 123.17444, + "index": 17, + "body": { + "#": 2443 + }, + "isInternal": false + }, + { + "x": 474.35611, + "y": 126.42922 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.19873, + "y": 1.17296 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2471 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2473 + }, + "max": { + "#": 2474 + } + }, + { + "x": 457.67039, + "y": 109.54339 + }, + { + "x": 491.27492, + "y": 144.51922 + }, + { + "x": 474.15259, + "y": 125.25193 + }, + [ + { + "#": 2477 + }, + { + "#": 2478 + }, + { + "#": 2479 + }, + { + "#": 2480 + }, + { + "#": 2481 + }, + { + "#": 2482 + }, + { + "#": 2483 + }, + { + "#": 2484 + }, + { + "#": 2485 + } + ], + { + "x": -0.94616, + "y": -0.32371 + }, + { + "x": -0.77836, + "y": -0.62781 + }, + { + "x": -0.51657, + "y": -0.85624 + }, + { + "x": -0.19279, + "y": -0.98124 + }, + { + "x": 0.15462, + "y": -0.98797 + }, + { + "x": 0.483, + "y": -0.87562 + }, + { + "x": 0.75345, + "y": -0.65751 + }, + { + "x": 0.9329, + "y": -0.36014 + }, + { + "x": 0.99981, + "y": -0.01938 + }, + { + "id": "9,10,2,2", + "startCol": 9, + "endCol": 10, + "startRow": 2, + "endRow": 2 + }, + { + "id": 61, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2488 + }, + "angle": 0.02646, + "vertices": { + "#": 2489 + }, + "position": { + "#": 2504 + }, + "force": { + "#": 2505 + }, + "torque": 0, + "positionImpulse": { + "#": 2506 + }, + "constraintImpulse": { + "#": 2507 + }, + "totalContacts": 0, + "speed": 0.68895, + "angularSpeed": 0.01333, + "velocity": { + "#": 2508 + }, + "angularVelocity": 0.00867, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2509 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2510 + }, + "circleRadius": 12.39373, + "bounds": { + "#": 2512 + }, + "positionPrev": { + "#": 2515 + }, + "anglePrev": 0.01682, + "axes": { + "#": 2516 + }, + "area": 466.51647, + "mass": 0.46652, + "inverseMass": 2.14355, + "inertia": 138.5844, + "inverseInertia": 0.00722, + "parent": { + "#": 2487 + }, + "sleepCounter": 0, + "region": { + "#": 2524 + } + }, + [ + { + "#": 2487 + } + ], + [ + { + "#": 2490 + }, + { + "#": 2491 + }, + { + "#": 2492 + }, + { + "#": 2493 + }, + { + "#": 2494 + }, + { + "#": 2495 + }, + { + "#": 2496 + }, + { + "#": 2497 + }, + { + "#": 2498 + }, + { + "#": 2499 + }, + { + "#": 2500 + }, + { + "#": 2501 + }, + { + "#": 2502 + }, + { + "#": 2503 + } + ], + { + "x": 515.28673, + "y": 125.67699, + "index": 0, + "body": { + "#": 2487 + }, + "isInternal": false + }, + { + "x": 512.76312, + "y": 130.58095, + "index": 1, + "body": { + "#": 2487 + }, + "isInternal": false + }, + { + "x": 508.36065, + "y": 133.90465, + "index": 2, + "body": { + "#": 2487 + }, + "isInternal": false + }, + { + "x": 502.95305, + "y": 134.98998, + "index": 3, + "body": { + "#": 2487 + }, + "isInternal": false + }, + { + "x": 497.61041, + "y": 133.62016, + "index": 4, + "body": { + "#": 2487 + }, + "isInternal": false + }, + { + "x": 493.3899, + "y": 130.06827, + "index": 5, + "body": { + "#": 2487 + }, + "isInternal": false + }, + { + "x": 491.12919, + "y": 125.03771, + "index": 6, + "body": { + "#": 2487 + }, + "isInternal": false + }, + { + "x": 491.27511, + "y": 119.52364, + "index": 7, + "body": { + "#": 2487 + }, + "isInternal": false + }, + { + "x": 493.79872, + "y": 114.61968, + "index": 8, + "body": { + "#": 2487 + }, + "isInternal": false + }, + { + "x": 498.20118, + "y": 111.29598, + "index": 9, + "body": { + "#": 2487 + }, + "isInternal": false + }, + { + "x": 503.60879, + "y": 110.21065, + "index": 10, + "body": { + "#": 2487 + }, + "isInternal": false + }, + { + "x": 508.95142, + "y": 111.58046, + "index": 11, + "body": { + "#": 2487 + }, + "isInternal": false + }, + { + "x": 513.17193, + "y": 115.13236, + "index": 12, + "body": { + "#": 2487 + }, + "isInternal": false + }, + { + "x": 515.43265, + "y": 120.16292, + "index": 13, + "body": { + "#": 2487 + }, + "isInternal": false + }, + { + "x": 503.28092, + "y": 122.60031 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.38336, + "y": 0.15538 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2511 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2513 + }, + "max": { + "#": 2514 + } + }, + { + "x": 491.12919, + "y": 110.21065 + }, + { + "x": 515.69217, + "y": 135.62818 + }, + { + "x": 502.92335, + "y": 122.34431 + }, + [ + { + "#": 2517 + }, + { + "#": 2518 + }, + { + "#": 2519 + }, + { + "#": 2520 + }, + { + "#": 2521 + }, + { + "#": 2522 + }, + { + "#": 2523 + } + ], + { + "x": -0.88917, + "y": -0.45757 + }, + { + "x": -0.60253, + "y": -0.79809 + }, + { + "x": -0.19678, + "y": -0.98045 + }, + { + "x": 0.24836, + "y": -0.96867 + }, + { + "x": 0.6439, + "y": -0.76511 + }, + { + "x": 0.91213, + "y": -0.40991 + }, + { + "x": 0.99965, + "y": 0.02645 + }, + { + "id": "10,10,2,2", + "startCol": 10, + "endCol": 10, + "startRow": 2, + "endRow": 2 + }, + { + "id": 62, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2526 + }, + "angle": 0.00675, + "vertices": { + "#": 2527 + }, + "position": { + "#": 2546 + }, + "force": { + "#": 2547 + }, + "torque": 0, + "positionImpulse": { + "#": 2548 + }, + "constraintImpulse": { + "#": 2549 + }, + "totalContacts": 0, + "speed": 2.91104, + "angularSpeed": 0.00242, + "velocity": { + "#": 2550 + }, + "angularVelocity": 0.00242, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2551 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2552 + }, + "circleRadius": 17.39433, + "bounds": { + "#": 2554 + }, + "positionPrev": { + "#": 2557 + }, + "anglePrev": 0.00434, + "axes": { + "#": 2558 + }, + "area": 931.331, + "mass": 0.93133, + "inverseMass": 1.07373, + "inertia": 552.23584, + "inverseInertia": 0.00181, + "parent": { + "#": 2525 + }, + "sleepCounter": 0, + "region": { + "#": 2568 + } + }, + [ + { + "#": 2525 + } + ], + [ + { + "#": 2528 + }, + { + "#": 2529 + }, + { + "#": 2530 + }, + { + "#": 2531 + }, + { + "#": 2532 + }, + { + "#": 2533 + }, + { + "#": 2534 + }, + { + "#": 2535 + }, + { + "#": 2536 + }, + { + "#": 2537 + }, + { + "#": 2538 + }, + { + "#": 2539 + }, + { + "#": 2540 + }, + { + "#": 2541 + }, + { + "#": 2542 + }, + { + "#": 2543 + }, + { + "#": 2544 + }, + { + "#": 2545 + } + ], + { + "x": 549.40067, + "y": 136.48057, + "index": 0, + "body": { + "#": 2525 + }, + "isInternal": false + }, + { + "x": 547.29638, + "y": 142.14349, + "index": 1, + "body": { + "#": 2525 + }, + "isInternal": false + }, + { + "x": 543.38222, + "y": 146.74517, + "index": 2, + "body": { + "#": 2525 + }, + "isInternal": false + }, + { + "x": 538.12995, + "y": 149.72977, + "index": 3, + "body": { + "#": 2525 + }, + "isInternal": false + }, + { + "x": 532.174, + "y": 150.73857, + "index": 4, + "body": { + "#": 2525 + }, + "isInternal": false + }, + { + "x": 526.23222, + "y": 149.64943, + "index": 5, + "body": { + "#": 2525 + }, + "isInternal": false + }, + { + "x": 521.02073, + "y": 146.59416, + "index": 6, + "body": { + "#": 2525 + }, + "isInternal": false + }, + { + "x": 517.16907, + "y": 141.94005, + "index": 7, + "body": { + "#": 2525 + }, + "isInternal": false + }, + { + "x": 515.14145, + "y": 136.24923, + "index": 8, + "body": { + "#": 2525 + }, + "isInternal": false + }, + { + "x": 515.18224, + "y": 130.20936, + "index": 9, + "body": { + "#": 2525 + }, + "isInternal": false + }, + { + "x": 517.28653, + "y": 124.54645, + "index": 10, + "body": { + "#": 2525 + }, + "isInternal": false + }, + { + "x": 521.20069, + "y": 119.94477, + "index": 11, + "body": { + "#": 2525 + }, + "isInternal": false + }, + { + "x": 526.45296, + "y": 116.96017, + "index": 12, + "body": { + "#": 2525 + }, + "isInternal": false + }, + { + "x": 532.40891, + "y": 115.95137, + "index": 13, + "body": { + "#": 2525 + }, + "isInternal": false + }, + { + "x": 538.35069, + "y": 117.04051, + "index": 14, + "body": { + "#": 2525 + }, + "isInternal": false + }, + { + "x": 543.56218, + "y": 120.09578, + "index": 15, + "body": { + "#": 2525 + }, + "isInternal": false + }, + { + "x": 547.41384, + "y": 124.74989, + "index": 16, + "body": { + "#": 2525 + }, + "isInternal": false + }, + { + "x": 549.44146, + "y": 130.44071, + "index": 17, + "body": { + "#": 2525 + }, + "isInternal": false + }, + { + "x": 532.29146, + "y": 133.34497 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.083, + "y": -0.00012 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.1471, + "y": 2.90732 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2553 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2555 + }, + "max": { + "#": 2556 + } + }, + { + "x": 515.14145, + "y": 115.95137 + }, + { + "x": 549.58856, + "y": 153.64589 + }, + { + "x": 532.14435, + "y": 130.43765 + }, + [ + { + "#": 2559 + }, + { + "#": 2560 + }, + { + "#": 2561 + }, + { + "#": 2562 + }, + { + "#": 2563 + }, + { + "#": 2564 + }, + { + "#": 2565 + }, + { + "#": 2566 + }, + { + "#": 2567 + } + ], + { + "x": -0.93738, + "y": -0.34832 + }, + { + "x": -0.76172, + "y": -0.64791 + }, + { + "x": -0.49405, + "y": -0.86943 + }, + { + "x": -0.167, + "y": -0.98596 + }, + { + "x": 0.1803, + "y": -0.98361 + }, + { + "x": 0.50575, + "y": -0.86268 + }, + { + "x": 0.7704, + "y": -0.63757 + }, + { + "x": 0.94199, + "y": -0.33563 + }, + { + "x": 0.99998, + "y": 0.00675 + }, + { + "id": "10,11,2,3", + "startCol": 10, + "endCol": 11, + "startRow": 2, + "endRow": 3 + }, + { + "id": 63, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2570 + }, + "angle": 0.00024, + "vertices": { + "#": 2571 + }, + "position": { + "#": 2592 + }, + "force": { + "#": 2593 + }, + "torque": 0, + "positionImpulse": { + "#": 2594 + }, + "constraintImpulse": { + "#": 2595 + }, + "totalContacts": 0, + "speed": 2.91204, + "angularSpeed": 0.0001, + "velocity": { + "#": 2596 + }, + "angularVelocity": -0.00057, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2597 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2598 + }, + "circleRadius": 19.42168, + "bounds": { + "#": 2600 + }, + "positionPrev": { + "#": 2603 + }, + "anglePrev": 0.00073, + "axes": { + "#": 2604 + }, + "area": 1165.63032, + "mass": 1.16563, + "inverseMass": 0.8579, + "inertia": 865.01885, + "inverseInertia": 0.00116, + "parent": { + "#": 2569 + }, + "sleepCounter": 0, + "region": { + "#": 2615 + } + }, + [ + { + "#": 2569 + } + ], + [ + { + "#": 2572 + }, + { + "#": 2573 + }, + { + "#": 2574 + }, + { + "#": 2575 + }, + { + "#": 2576 + }, + { + "#": 2577 + }, + { + "#": 2578 + }, + { + "#": 2579 + }, + { + "#": 2580 + }, + { + "#": 2581 + }, + { + "#": 2582 + }, + { + "#": 2583 + }, + { + "#": 2584 + }, + { + "#": 2585 + }, + { + "#": 2586 + }, + { + "#": 2587 + }, + { + "#": 2588 + }, + { + "#": 2589 + }, + { + "#": 2590 + }, + { + "#": 2591 + } + ], + { + "x": 588.07836, + "y": 138.04747, + "index": 0, + "body": { + "#": 2569 + }, + "isInternal": false + }, + { + "x": 586.19899, + "y": 143.82603, + "index": 1, + "body": { + "#": 2569 + }, + "isInternal": false + }, + { + "x": 582.62582, + "y": 148.74118, + "index": 2, + "body": { + "#": 2569 + }, + "isInternal": false + }, + { + "x": 577.70897, + "y": 152.31201, + "index": 3, + "body": { + "#": 2569 + }, + "isInternal": false + }, + { + "x": 571.92952, + "y": 154.18864, + "index": 4, + "body": { + "#": 2569 + }, + "isInternal": false + }, + { + "x": 565.85352, + "y": 154.18719, + "index": 5, + "body": { + "#": 2569 + }, + "isInternal": false + }, + { + "x": 560.07497, + "y": 152.30782, + "index": 6, + "body": { + "#": 2569 + }, + "isInternal": false + }, + { + "x": 555.15982, + "y": 148.73465, + "index": 7, + "body": { + "#": 2569 + }, + "isInternal": false + }, + { + "x": 551.58899, + "y": 143.8178, + "index": 8, + "body": { + "#": 2569 + }, + "isInternal": false + }, + { + "x": 549.71236, + "y": 138.03836, + "index": 9, + "body": { + "#": 2569 + }, + "isInternal": false + }, + { + "x": 549.7138, + "y": 131.96236, + "index": 10, + "body": { + "#": 2569 + }, + "isInternal": false + }, + { + "x": 551.59318, + "y": 126.1838, + "index": 11, + "body": { + "#": 2569 + }, + "isInternal": false + }, + { + "x": 555.16634, + "y": 121.26865, + "index": 12, + "body": { + "#": 2569 + }, + "isInternal": false + }, + { + "x": 560.08319, + "y": 117.69782, + "index": 13, + "body": { + "#": 2569 + }, + "isInternal": false + }, + { + "x": 565.86264, + "y": 115.82119, + "index": 14, + "body": { + "#": 2569 + }, + "isInternal": false + }, + { + "x": 571.93864, + "y": 115.82264, + "index": 15, + "body": { + "#": 2569 + }, + "isInternal": false + }, + { + "x": 577.71719, + "y": 117.70201, + "index": 16, + "body": { + "#": 2569 + }, + "isInternal": false + }, + { + "x": 582.63234, + "y": 121.27518, + "index": 17, + "body": { + "#": 2569 + }, + "isInternal": false + }, + { + "x": 586.20318, + "y": 126.19203, + "index": 18, + "body": { + "#": 2569 + }, + "isInternal": false + }, + { + "x": 588.0798, + "y": 131.97147, + "index": 19, + "body": { + "#": 2569 + }, + "isInternal": false + }, + { + "x": 568.89608, + "y": 135.00492 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.59419, + "y": 2.31056 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2599 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2601 + }, + "max": { + "#": 2602 + } + }, + { + "x": 549.71236, + "y": 115.82119 + }, + { + "x": 588.23994, + "y": 157.09627 + }, + { + "x": 568.35254, + "y": 132.62469 + }, + [ + { + "#": 2605 + }, + { + "#": 2606 + }, + { + "#": 2607 + }, + { + "#": 2608 + }, + { + "#": 2609 + }, + { + "#": 2610 + }, + { + "#": 2611 + }, + { + "#": 2612 + }, + { + "#": 2613 + }, + { + "#": 2614 + } + ], + { + "x": -0.95097, + "y": -0.30929 + }, + { + "x": -0.80885, + "y": -0.58801 + }, + { + "x": -0.58763, + "y": -0.80913 + }, + { + "x": -0.30883, + "y": -0.95112 + }, + { + "x": 0.00024, + "y": -1 + }, + { + "x": 0.30929, + "y": -0.95097 + }, + { + "x": 0.58801, + "y": -0.80885 + }, + { + "x": 0.80913, + "y": -0.58763 + }, + { + "x": 0.95112, + "y": -0.30883 + }, + { + "x": 1, + "y": 0.00024 + }, + { + "id": "11,12,2,3", + "startCol": 11, + "endCol": 12, + "startRow": 2, + "endRow": 3 + }, + { + "id": 64, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2617 + }, + "angle": -0.00181, + "vertices": { + "#": 2618 + }, + "position": { + "#": 2635 + }, + "force": { + "#": 2636 + }, + "torque": 0, + "positionImpulse": { + "#": 2637 + }, + "constraintImpulse": { + "#": 2638 + }, + "totalContacts": 0, + "speed": 2.91156, + "angularSpeed": 0.00091, + "velocity": { + "#": 2639 + }, + "angularVelocity": -0.00091, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2640 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2641 + }, + "circleRadius": 14.52516, + "bounds": { + "#": 2643 + }, + "positionPrev": { + "#": 2646 + }, + "anglePrev": -0.00091, + "axes": { + "#": 2647 + }, + "area": 645.90672, + "mass": 0.64591, + "inverseMass": 1.54821, + "inertia": 265.63065, + "inverseInertia": 0.00376, + "parent": { + "#": 2616 + }, + "sleepCounter": 0, + "region": { + "#": 2656 + } + }, + [ + { + "#": 2616 + } + ], + [ + { + "#": 2619 + }, + { + "#": 2620 + }, + { + "#": 2621 + }, + { + "#": 2622 + }, + { + "#": 2623 + }, + { + "#": 2624 + }, + { + "#": 2625 + }, + { + "#": 2626 + }, + { + "#": 2627 + }, + { + "#": 2628 + }, + { + "#": 2629 + }, + { + "#": 2630 + }, + { + "#": 2631 + }, + { + "#": 2632 + }, + { + "#": 2633 + }, + { + "#": 2634 + } + ], + { + "x": 618.48059, + "y": 133.00586, + "index": 0, + "body": { + "#": 2616 + }, + "isInternal": false + }, + { + "x": 616.3211, + "y": 138.24579, + "index": 1, + "body": { + "#": 2616 + }, + "isInternal": false + }, + { + "x": 612.32137, + "y": 142.26005, + "index": 2, + "body": { + "#": 2616 + }, + "isInternal": false + }, + { + "x": 607.08931, + "y": 144.43854, + "index": 3, + "body": { + "#": 2616 + }, + "isInternal": false + }, + { + "x": 601.42132, + "y": 144.44883, + "index": 4, + "body": { + "#": 2616 + }, + "isInternal": false + }, + { + "x": 596.1814, + "y": 142.28933, + "index": 5, + "body": { + "#": 2616 + }, + "isInternal": false + }, + { + "x": 592.16714, + "y": 138.2896, + "index": 6, + "body": { + "#": 2616 + }, + "isInternal": false + }, + { + "x": 589.98864, + "y": 133.05755, + "index": 7, + "body": { + "#": 2616 + }, + "isInternal": false + }, + { + "x": 589.97836, + "y": 127.38955, + "index": 8, + "body": { + "#": 2616 + }, + "isInternal": false + }, + { + "x": 592.13786, + "y": 122.14963, + "index": 9, + "body": { + "#": 2616 + }, + "isInternal": false + }, + { + "x": 596.13758, + "y": 118.13537, + "index": 10, + "body": { + "#": 2616 + }, + "isInternal": false + }, + { + "x": 601.36964, + "y": 115.95687, + "index": 11, + "body": { + "#": 2616 + }, + "isInternal": false + }, + { + "x": 607.03763, + "y": 115.94659, + "index": 12, + "body": { + "#": 2616 + }, + "isInternal": false + }, + { + "x": 612.27756, + "y": 118.10609, + "index": 13, + "body": { + "#": 2616 + }, + "isInternal": false + }, + { + "x": 616.29182, + "y": 122.10581, + "index": 14, + "body": { + "#": 2616 + }, + "isInternal": false + }, + { + "x": 618.47031, + "y": 127.33787, + "index": 15, + "body": { + "#": 2616 + }, + "isInternal": false + }, + { + "x": 604.22948, + "y": 130.19771 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.86433, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.15868, + "y": 2.90723 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2642 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2644 + }, + "max": { + "#": 2645 + } + }, + { + "x": 589.97836, + "y": 115.94659 + }, + { + "x": 618.63927, + "y": 147.35606 + }, + { + "x": 604.0708, + "y": 127.29048 + }, + [ + { + "#": 2648 + }, + { + "#": 2649 + }, + { + "#": 2650 + }, + { + "#": 2651 + }, + { + "#": 2652 + }, + { + "#": 2653 + }, + { + "#": 2654 + }, + { + "#": 2655 + } + ], + { + "x": -0.92456, + "y": -0.38103 + }, + { + "x": -0.70839, + "y": -0.70582 + }, + { + "x": -0.38439, + "y": -0.92317 + }, + { + "x": -0.00181, + "y": -1 + }, + { + "x": 0.38103, + "y": -0.92456 + }, + { + "x": 0.70582, + "y": -0.70839 + }, + { + "x": 0.92317, + "y": -0.38439 + }, + { + "x": 1, + "y": -0.00181 + }, + { + "id": "12,12,2,3", + "startCol": 12, + "endCol": 12, + "startRow": 2, + "endRow": 3 + }, + { + "id": 65, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2658 + }, + "angle": 0.00012, + "vertices": { + "#": 2659 + }, + "position": { + "#": 2680 + }, + "force": { + "#": 2681 + }, + "torque": 0, + "positionImpulse": { + "#": 2682 + }, + "constraintImpulse": { + "#": 2683 + }, + "totalContacts": 0, + "speed": 2.90637, + "angularSpeed": 0.00003, + "velocity": { + "#": 2684 + }, + "angularVelocity": 0.00004, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2685 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2686 + }, + "circleRadius": 18.38379, + "bounds": { + "#": 2688 + }, + "positionPrev": { + "#": 2691 + }, + "anglePrev": 0.00008, + "axes": { + "#": 2692 + }, + "area": 1044.33176, + "mass": 1.04433, + "inverseMass": 0.95755, + "inertia": 694.35389, + "inverseInertia": 0.00144, + "parent": { + "#": 2657 + }, + "sleepCounter": 0, + "region": { + "#": 2703 + } + }, + [ + { + "#": 2657 + } + ], + [ + { + "#": 2660 + }, + { + "#": 2661 + }, + { + "#": 2662 + }, + { + "#": 2663 + }, + { + "#": 2664 + }, + { + "#": 2665 + }, + { + "#": 2666 + }, + { + "#": 2667 + }, + { + "#": 2668 + }, + { + "#": 2669 + }, + { + "#": 2670 + }, + { + "#": 2671 + }, + { + "#": 2672 + }, + { + "#": 2673 + }, + { + "#": 2674 + }, + { + "#": 2675 + }, + { + "#": 2676 + }, + { + "#": 2677 + }, + { + "#": 2678 + }, + { + "#": 2679 + } + ], + { + "x": 56.51362, + "y": 175.50926, + "index": 0, + "body": { + "#": 2657 + }, + "isInternal": false + }, + { + "x": 54.73598, + "y": 180.97905, + "index": 1, + "body": { + "#": 2657 + }, + "isInternal": false + }, + { + "x": 51.35444, + "y": 185.63166, + "index": 2, + "body": { + "#": 2657 + }, + "isInternal": false + }, + { + "x": 46.70105, + "y": 189.01211, + "index": 3, + "body": { + "#": 2657 + }, + "isInternal": false + }, + { + "x": 41.23084, + "y": 190.78847, + "index": 4, + "body": { + "#": 2657 + }, + "isInternal": false + }, + { + "x": 35.47884, + "y": 190.7878, + "index": 5, + "body": { + "#": 2657 + }, + "isInternal": false + }, + { + "x": 30.00905, + "y": 189.01017, + "index": 6, + "body": { + "#": 2657 + }, + "isInternal": false + }, + { + "x": 25.35644, + "y": 185.62862, + "index": 7, + "body": { + "#": 2657 + }, + "isInternal": false + }, + { + "x": 21.97598, + "y": 180.97523, + "index": 8, + "body": { + "#": 2657 + }, + "isInternal": false + }, + { + "x": 20.19962, + "y": 175.50502, + "index": 9, + "body": { + "#": 2657 + }, + "isInternal": false + }, + { + "x": 20.20029, + "y": 169.75302, + "index": 10, + "body": { + "#": 2657 + }, + "isInternal": false + }, + { + "x": 21.97793, + "y": 164.28323, + "index": 11, + "body": { + "#": 2657 + }, + "isInternal": false + }, + { + "x": 25.35947, + "y": 159.63062, + "index": 12, + "body": { + "#": 2657 + }, + "isInternal": false + }, + { + "x": 30.01287, + "y": 156.25017, + "index": 13, + "body": { + "#": 2657 + }, + "isInternal": false + }, + { + "x": 35.48308, + "y": 154.4738, + "index": 14, + "body": { + "#": 2657 + }, + "isInternal": false + }, + { + "x": 41.23508, + "y": 154.47447, + "index": 15, + "body": { + "#": 2657 + }, + "isInternal": false + }, + { + "x": 46.70487, + "y": 156.25211, + "index": 16, + "body": { + "#": 2657 + }, + "isInternal": false + }, + { + "x": 51.35747, + "y": 159.63366, + "index": 17, + "body": { + "#": 2657 + }, + "isInternal": false + }, + { + "x": 54.73793, + "y": 164.28705, + "index": 18, + "body": { + "#": 2657 + }, + "isInternal": false + }, + { + "x": 56.51429, + "y": 169.75726, + "index": 19, + "body": { + "#": 2657 + }, + "isInternal": false + }, + { + "x": 38.35696, + "y": 172.63114 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00217, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.0001, + "y": 2.90618 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2687 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2689 + }, + "max": { + "#": 2690 + } + }, + { + "x": 20.19962, + "y": 154.4738 + }, + { + "x": 56.51438, + "y": 193.69484 + }, + { + "x": 38.35686, + "y": 169.72495 + }, + [ + { + "#": 2693 + }, + { + "#": 2694 + }, + { + "#": 2695 + }, + { + "#": 2696 + }, + { + "#": 2697 + }, + { + "#": 2698 + }, + { + "#": 2699 + }, + { + "#": 2700 + }, + { + "#": 2701 + }, + { + "#": 2702 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.80892, + "y": -0.58792 + }, + { + "x": -0.58774, + "y": -0.80905 + }, + { + "x": -0.30886, + "y": -0.95111 + }, + { + "x": 0.00012, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58792, + "y": -0.80892 + }, + { + "x": 0.80905, + "y": -0.58774 + }, + { + "x": 0.95111, + "y": -0.30886 + }, + { + "x": 1, + "y": 0.00012 + }, + { + "id": "0,1,3,3", + "startCol": 0, + "endCol": 1, + "startRow": 3, + "endRow": 3 + }, + { + "id": 66, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2705 + }, + "angle": 0.00004, + "vertices": { + "#": 2706 + }, + "position": { + "#": 2723 + }, + "force": { + "#": 2724 + }, + "torque": 0, + "positionImpulse": { + "#": 2725 + }, + "constraintImpulse": { + "#": 2726 + }, + "totalContacts": 0, + "speed": 2.90706, + "angularSpeed": 0.00001, + "velocity": { + "#": 2727 + }, + "angularVelocity": 0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2728 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2729 + }, + "circleRadius": 14.08398, + "bounds": { + "#": 2731 + }, + "positionPrev": { + "#": 2734 + }, + "anglePrev": 0.00003, + "axes": { + "#": 2735 + }, + "area": 607.25003, + "mass": 0.60725, + "inverseMass": 1.64677, + "inertia": 234.78679, + "inverseInertia": 0.00426, + "parent": { + "#": 2704 + }, + "sleepCounter": 0, + "region": { + "#": 2744 + } + }, + [ + { + "#": 2704 + } + ], + [ + { + "#": 2707 + }, + { + "#": 2708 + }, + { + "#": 2709 + }, + { + "#": 2710 + }, + { + "#": 2711 + }, + { + "#": 2712 + }, + { + "#": 2713 + }, + { + "#": 2714 + }, + { + "#": 2715 + }, + { + "#": 2716 + }, + { + "#": 2717 + }, + { + "#": 2718 + }, + { + "#": 2719 + }, + { + "#": 2720 + }, + { + "#": 2721 + }, + { + "#": 2722 + } + ], + { + "x": 84.08989, + "y": 170.31217, + "index": 0, + "body": { + "#": 2704 + }, + "isInternal": false + }, + { + "x": 81.98669, + "y": 175.38909, + "index": 1, + "body": { + "#": 2704 + }, + "isInternal": false + }, + { + "x": 78.10153, + "y": 179.27393, + "index": 2, + "body": { + "#": 2704 + }, + "isInternal": false + }, + { + "x": 73.02445, + "y": 181.37673, + "index": 3, + "body": { + "#": 2704 + }, + "isInternal": false + }, + { + "x": 67.52845, + "y": 181.37651, + "index": 4, + "body": { + "#": 2704 + }, + "isInternal": false + }, + { + "x": 62.45153, + "y": 179.2733, + "index": 5, + "body": { + "#": 2704 + }, + "isInternal": false + }, + { + "x": 58.56669, + "y": 175.38814, + "index": 6, + "body": { + "#": 2704 + }, + "isInternal": false + }, + { + "x": 56.46389, + "y": 170.31106, + "index": 7, + "body": { + "#": 2704 + }, + "isInternal": false + }, + { + "x": 56.46412, + "y": 164.81506, + "index": 8, + "body": { + "#": 2704 + }, + "isInternal": false + }, + { + "x": 58.56732, + "y": 159.73814, + "index": 9, + "body": { + "#": 2704 + }, + "isInternal": false + }, + { + "x": 62.45248, + "y": 155.8533, + "index": 10, + "body": { + "#": 2704 + }, + "isInternal": false + }, + { + "x": 67.52956, + "y": 153.75051, + "index": 11, + "body": { + "#": 2704 + }, + "isInternal": false + }, + { + "x": 73.02556, + "y": 153.75073, + "index": 12, + "body": { + "#": 2704 + }, + "isInternal": false + }, + { + "x": 78.10248, + "y": 155.85393, + "index": 13, + "body": { + "#": 2704 + }, + "isInternal": false + }, + { + "x": 81.98732, + "y": 159.73909, + "index": 14, + "body": { + "#": 2704 + }, + "isInternal": false + }, + { + "x": 84.09012, + "y": 164.81617, + "index": 15, + "body": { + "#": 2704 + }, + "isInternal": false + }, + { + "x": 70.277, + "y": 167.56362 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00433, + "y": 0.00147 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00022, + "y": 2.90701 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2730 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2732 + }, + "max": { + "#": 2733 + } + }, + { + "x": 56.46389, + "y": 153.75051 + }, + { + "x": 84.0903, + "y": 184.28379 + }, + { + "x": 70.27678, + "y": 164.65661 + }, + [ + { + "#": 2736 + }, + { + "#": 2737 + }, + { + "#": 2738 + }, + { + "#": 2739 + }, + { + "#": 2740 + }, + { + "#": 2741 + }, + { + "#": 2742 + }, + { + "#": 2743 + } + ], + { + "x": -0.92386, + "y": -0.38273 + }, + { + "x": -0.70708, + "y": -0.70714 + }, + { + "x": -0.38265, + "y": -0.92389 + }, + { + "x": 0.00004, + "y": -1 + }, + { + "x": 0.38273, + "y": -0.92386 + }, + { + "x": 0.70714, + "y": -0.70708 + }, + { + "x": 0.92389, + "y": -0.38265 + }, + { + "x": 1, + "y": 0.00004 + }, + { + "id": "1,1,3,3", + "startCol": 1, + "endCol": 1, + "startRow": 3, + "endRow": 3 + }, + { + "id": 67, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2746 + }, + "angle": 0.00001, + "vertices": { + "#": 2747 + }, + "position": { + "#": 2766 + }, + "force": { + "#": 2767 + }, + "torque": 0, + "positionImpulse": { + "#": 2768 + }, + "constraintImpulse": { + "#": 2769 + }, + "totalContacts": 0, + "speed": 2.90726, + "angularSpeed": 0, + "velocity": { + "#": 2770 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2771 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2772 + }, + "circleRadius": 16.564, + "bounds": { + "#": 2774 + }, + "positionPrev": { + "#": 2777 + }, + "anglePrev": 0.00001, + "axes": { + "#": 2778 + }, + "area": 844.54151, + "mass": 0.84454, + "inverseMass": 1.18407, + "inertia": 454.10729, + "inverseInertia": 0.0022, + "parent": { + "#": 2745 + }, + "sleepCounter": 0, + "region": { + "#": 2788 + } + }, + [ + { + "#": 2745 + } + ], + [ + { + "#": 2748 + }, + { + "#": 2749 + }, + { + "#": 2750 + }, + { + "#": 2751 + }, + { + "#": 2752 + }, + { + "#": 2753 + }, + { + "#": 2754 + }, + { + "#": 2755 + }, + { + "#": 2756 + }, + { + "#": 2757 + }, + { + "#": 2758 + }, + { + "#": 2759 + }, + { + "#": 2760 + }, + { + "#": 2761 + }, + { + "#": 2762 + }, + { + "#": 2763 + }, + { + "#": 2764 + }, + { + "#": 2765 + } + ], + { + "x": 112.39661, + "y": 187.99109, + "index": 0, + "body": { + "#": 2745 + }, + "isInternal": false + }, + { + "x": 110.42956, + "y": 193.39707, + "index": 1, + "body": { + "#": 2745 + }, + "isInternal": false + }, + { + "x": 106.73153, + "y": 197.80404, + "index": 2, + "body": { + "#": 2745 + }, + "isInternal": false + }, + { + "x": 101.7495, + "y": 200.68, + "index": 3, + "body": { + "#": 2745 + }, + "isInternal": false + }, + { + "x": 96.08449, + "y": 201.67895, + "index": 4, + "body": { + "#": 2745 + }, + "isInternal": false + }, + { + "x": 90.4195, + "y": 200.6799, + "index": 5, + "body": { + "#": 2745 + }, + "isInternal": false + }, + { + "x": 85.43753, + "y": 197.80386, + "index": 6, + "body": { + "#": 2745 + }, + "isInternal": false + }, + { + "x": 81.73956, + "y": 193.39683, + "index": 7, + "body": { + "#": 2745 + }, + "isInternal": false + }, + { + "x": 79.77261, + "y": 187.99081, + "index": 8, + "body": { + "#": 2745 + }, + "isInternal": false + }, + { + "x": 79.77266, + "y": 182.23881, + "index": 9, + "body": { + "#": 2745 + }, + "isInternal": false + }, + { + "x": 81.7397, + "y": 176.83283, + "index": 10, + "body": { + "#": 2745 + }, + "isInternal": false + }, + { + "x": 85.43774, + "y": 172.42586, + "index": 11, + "body": { + "#": 2745 + }, + "isInternal": false + }, + { + "x": 90.41977, + "y": 169.5499, + "index": 12, + "body": { + "#": 2745 + }, + "isInternal": false + }, + { + "x": 96.08477, + "y": 168.55095, + "index": 13, + "body": { + "#": 2745 + }, + "isInternal": false + }, + { + "x": 101.74977, + "y": 169.55, + "index": 14, + "body": { + "#": 2745 + }, + "isInternal": false + }, + { + "x": 106.73174, + "y": 172.42604, + "index": 15, + "body": { + "#": 2745 + }, + "isInternal": false + }, + { + "x": 110.4297, + "y": 176.83307, + "index": 16, + "body": { + "#": 2745 + }, + "isInternal": false + }, + { + "x": 112.39666, + "y": 182.23909, + "index": 17, + "body": { + "#": 2745 + }, + "isInternal": false + }, + { + "x": 96.08463, + "y": 185.11495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.02514, + "y": 0.22261 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00005, + "y": 2.90725 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2773 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2775 + }, + "max": { + "#": 2776 + } + }, + { + "x": 79.77261, + "y": 168.55095 + }, + { + "x": 112.3967, + "y": 204.58621 + }, + { + "x": 96.08459, + "y": 182.2077 + }, + [ + { + "#": 2779 + }, + { + "#": 2780 + }, + { + "#": 2781 + }, + { + "#": 2782 + }, + { + "#": 2783 + }, + { + "#": 2784 + }, + { + "#": 2785 + }, + { + "#": 2786 + }, + { + "#": 2787 + } + ], + { + "x": -0.93972, + "y": -0.34193 + }, + { + "x": -0.76603, + "y": -0.6428 + }, + { + "x": -0.49995, + "y": -0.86606 + }, + { + "x": -0.17366, + "y": -0.98481 + }, + { + "x": 0.17367, + "y": -0.9848 + }, + { + "x": 0.49996, + "y": -0.86605 + }, + { + "x": 0.76604, + "y": -0.64279 + }, + { + "x": 0.93973, + "y": -0.34192 + }, + { + "x": 1, + "y": 0.00001 + }, + { + "id": "1,2,3,4", + "startCol": 1, + "endCol": 2, + "startRow": 3, + "endRow": 4 + }, + { + "id": 68, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2790 + }, + "angle": 0, + "vertices": { + "#": 2791 + }, + "position": { + "#": 2806 + }, + "force": { + "#": 2807 + }, + "torque": 0, + "positionImpulse": { + "#": 2808 + }, + "constraintImpulse": { + "#": 2809 + }, + "totalContacts": 0, + "speed": 2.90728, + "angularSpeed": 0, + "velocity": { + "#": 2810 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2811 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2812 + }, + "circleRadius": 13.72509, + "bounds": { + "#": 2814 + }, + "positionPrev": { + "#": 2817 + }, + "anglePrev": 0, + "axes": { + "#": 2818 + }, + "area": 572.13861, + "mass": 0.57214, + "inverseMass": 1.74783, + "inertia": 208.44088, + "inverseInertia": 0.0048, + "parent": { + "#": 2789 + }, + "sleepCounter": 0, + "region": { + "#": 2826 + } + }, + [ + { + "#": 2789 + } + ], + [ + { + "#": 2792 + }, + { + "#": 2793 + }, + { + "#": 2794 + }, + { + "#": 2795 + }, + { + "#": 2796 + }, + { + "#": 2797 + }, + { + "#": 2798 + }, + { + "#": 2799 + }, + { + "#": 2800 + }, + { + "#": 2801 + }, + { + "#": 2802 + }, + { + "#": 2803 + }, + { + "#": 2804 + }, + { + "#": 2805 + } + ], + { + "x": 139.10862, + "y": 192.28213, + "index": 0, + "body": { + "#": 2789 + }, + "isInternal": false + }, + { + "x": 136.45861, + "y": 197.78513, + "index": 1, + "body": { + "#": 2789 + }, + "isInternal": false + }, + { + "x": 131.6826, + "y": 201.59412, + "index": 2, + "body": { + "#": 2789 + }, + "isInternal": false + }, + { + "x": 125.7276, + "y": 202.95311, + "index": 3, + "body": { + "#": 2789 + }, + "isInternal": false + }, + { + "x": 119.7726, + "y": 201.59411, + "index": 4, + "body": { + "#": 2789 + }, + "isInternal": false + }, + { + "x": 114.99661, + "y": 197.7851, + "index": 5, + "body": { + "#": 2789 + }, + "isInternal": false + }, + { + "x": 112.34662, + "y": 192.2821, + "index": 6, + "body": { + "#": 2789 + }, + "isInternal": false + }, + { + "x": 112.34662, + "y": 186.1741, + "index": 7, + "body": { + "#": 2789 + }, + "isInternal": false + }, + { + "x": 114.99663, + "y": 180.6711, + "index": 8, + "body": { + "#": 2789 + }, + "isInternal": false + }, + { + "x": 119.77264, + "y": 176.86211, + "index": 9, + "body": { + "#": 2789 + }, + "isInternal": false + }, + { + "x": 125.72764, + "y": 175.50311, + "index": 10, + "body": { + "#": 2789 + }, + "isInternal": false + }, + { + "x": 131.68264, + "y": 176.86212, + "index": 11, + "body": { + "#": 2789 + }, + "isInternal": false + }, + { + "x": 136.45863, + "y": 180.67113, + "index": 12, + "body": { + "#": 2789 + }, + "isInternal": false + }, + { + "x": 139.10862, + "y": 186.17413, + "index": 13, + "body": { + "#": 2789 + }, + "isInternal": false + }, + { + "x": 125.72762, + "y": 189.22811 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.02514, + "y": 0.14918 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00004, + "y": 2.90728 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2813 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2815 + }, + "max": { + "#": 2816 + } + }, + { + "x": 112.34662, + "y": 175.50311 + }, + { + "x": 139.10867, + "y": 205.86039 + }, + { + "x": 125.72758, + "y": 186.32084 + }, + [ + { + "#": 2819 + }, + { + "#": 2820 + }, + { + "#": 2821 + }, + { + "#": 2822 + }, + { + "#": 2823 + }, + { + "#": 2824 + }, + { + "#": 2825 + } + ], + { + "x": -0.90098, + "y": -0.43387 + }, + { + "x": -0.62352, + "y": -0.78181 + }, + { + "x": -0.22249, + "y": -0.97493 + }, + { + "x": 0.22249, + "y": -0.97493 + }, + { + "x": 0.62352, + "y": -0.78181 + }, + { + "x": 0.90098, + "y": -0.43387 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,2,3,4", + "startCol": 2, + "endCol": 2, + "startRow": 3, + "endRow": 4 + }, + { + "id": 69, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2828 + }, + "angle": 0, + "vertices": { + "#": 2829 + }, + "position": { + "#": 2846 + }, + "force": { + "#": 2847 + }, + "torque": 0, + "positionImpulse": { + "#": 2848 + }, + "constraintImpulse": { + "#": 2849 + }, + "totalContacts": 0, + "speed": 2.90726, + "angularSpeed": 0, + "velocity": { + "#": 2850 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2851 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2852 + }, + "circleRadius": 14.20923, + "bounds": { + "#": 2854 + }, + "positionPrev": { + "#": 2857 + }, + "anglePrev": 0, + "axes": { + "#": 2858 + }, + "area": 618.11876, + "mass": 0.61812, + "inverseMass": 1.61781, + "inertia": 243.26656, + "inverseInertia": 0.00411, + "parent": { + "#": 2827 + }, + "sleepCounter": 0, + "region": { + "#": 2867 + } + }, + [ + { + "#": 2827 + } + ], + [ + { + "#": 2830 + }, + { + "#": 2831 + }, + { + "#": 2832 + }, + { + "#": 2833 + }, + { + "#": 2834 + }, + { + "#": 2835 + }, + { + "#": 2836 + }, + { + "#": 2837 + }, + { + "#": 2838 + }, + { + "#": 2839 + }, + { + "#": 2840 + }, + { + "#": 2841 + }, + { + "#": 2842 + }, + { + "#": 2843 + }, + { + "#": 2844 + }, + { + "#": 2845 + } + ], + { + "x": 168.15549, + "y": 202.61864, + "index": 0, + "body": { + "#": 2827 + }, + "isInternal": false + }, + { + "x": 166.03449, + "y": 207.74064, + "index": 1, + "body": { + "#": 2827 + }, + "isInternal": false + }, + { + "x": 162.11349, + "y": 211.66165, + "index": 2, + "body": { + "#": 2827 + }, + "isInternal": false + }, + { + "x": 156.99149, + "y": 213.78265, + "index": 3, + "body": { + "#": 2827 + }, + "isInternal": false + }, + { + "x": 151.44749, + "y": 213.78265, + "index": 4, + "body": { + "#": 2827 + }, + "isInternal": false + }, + { + "x": 146.32549, + "y": 211.66166, + "index": 5, + "body": { + "#": 2827 + }, + "isInternal": false + }, + { + "x": 142.40449, + "y": 207.74066, + "index": 6, + "body": { + "#": 2827 + }, + "isInternal": false + }, + { + "x": 140.28349, + "y": 202.61866, + "index": 7, + "body": { + "#": 2827 + }, + "isInternal": false + }, + { + "x": 140.28348, + "y": 197.07466, + "index": 8, + "body": { + "#": 2827 + }, + "isInternal": false + }, + { + "x": 142.40448, + "y": 191.95266, + "index": 9, + "body": { + "#": 2827 + }, + "isInternal": false + }, + { + "x": 146.32548, + "y": 188.03166, + "index": 10, + "body": { + "#": 2827 + }, + "isInternal": false + }, + { + "x": 151.44748, + "y": 185.91065, + "index": 11, + "body": { + "#": 2827 + }, + "isInternal": false + }, + { + "x": 156.99148, + "y": 185.91065, + "index": 12, + "body": { + "#": 2827 + }, + "isInternal": false + }, + { + "x": 162.11348, + "y": 188.03165, + "index": 13, + "body": { + "#": 2827 + }, + "isInternal": false + }, + { + "x": 166.03448, + "y": 191.95264, + "index": 14, + "body": { + "#": 2827 + }, + "isInternal": false + }, + { + "x": 168.15548, + "y": 197.07464, + "index": 15, + "body": { + "#": 2827 + }, + "isInternal": false + }, + { + "x": 154.21948, + "y": 199.84665 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.04662, + "y": 0.37891 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00001, + "y": 2.90726 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2853 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2855 + }, + "max": { + "#": 2856 + } + }, + { + "x": 140.28348, + "y": 185.91065 + }, + { + "x": 168.1555, + "y": 216.68992 + }, + { + "x": 154.21948, + "y": 196.93939 + }, + [ + { + "#": 2859 + }, + { + "#": 2860 + }, + { + "#": 2861 + }, + { + "#": 2862 + }, + { + "#": 2863 + }, + { + "#": 2864 + }, + { + "#": 2865 + }, + { + "#": 2866 + } + ], + { + "x": -0.92392, + "y": -0.38259 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38259, + "y": -0.92392 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38259, + "y": -0.92392 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92392, + "y": -0.38259 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,3,3,4", + "startCol": 2, + "endCol": 3, + "startRow": 3, + "endRow": 4 + }, + { + "id": 70, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2869 + }, + "angle": -0.00001, + "vertices": { + "#": 2870 + }, + "position": { + "#": 2883 + }, + "force": { + "#": 2884 + }, + "torque": 0, + "positionImpulse": { + "#": 2885 + }, + "constraintImpulse": { + "#": 2886 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2887 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2888 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2889 + }, + "circleRadius": 11.84358, + "bounds": { + "#": 2891 + }, + "positionPrev": { + "#": 2894 + }, + "anglePrev": -0.00001, + "axes": { + "#": 2895 + }, + "area": 420.8169, + "mass": 0.42082, + "inverseMass": 2.37633, + "inertia": 112.78566, + "inverseInertia": 0.00887, + "parent": { + "#": 2868 + }, + "sleepCounter": 0, + "region": { + "#": 2902 + } + }, + [ + { + "#": 2868 + } + ], + [ + { + "#": 2871 + }, + { + "#": 2872 + }, + { + "#": 2873 + }, + { + "#": 2874 + }, + { + "#": 2875 + }, + { + "#": 2876 + }, + { + "#": 2877 + }, + { + "#": 2878 + }, + { + "#": 2879 + }, + { + "#": 2880 + }, + { + "#": 2881 + }, + { + "#": 2882 + } + ], + { + "x": 177.43699, + "y": 244.44053, + "index": 0, + "body": { + "#": 2868 + }, + "isInternal": false + }, + { + "x": 174.37203, + "y": 249.75056, + "index": 1, + "body": { + "#": 2868 + }, + "isInternal": false + }, + { + "x": 169.06205, + "y": 252.81559, + "index": 2, + "body": { + "#": 2868 + }, + "isInternal": false + }, + { + "x": 162.93205, + "y": 252.81563, + "index": 3, + "body": { + "#": 2868 + }, + "isInternal": false + }, + { + "x": 157.62203, + "y": 249.75067, + "index": 4, + "body": { + "#": 2868 + }, + "isInternal": false + }, + { + "x": 154.55699, + "y": 244.44069, + "index": 5, + "body": { + "#": 2868 + }, + "isInternal": false + }, + { + "x": 154.55695, + "y": 238.31069, + "index": 6, + "body": { + "#": 2868 + }, + "isInternal": false + }, + { + "x": 157.62191, + "y": 233.00067, + "index": 7, + "body": { + "#": 2868 + }, + "isInternal": false + }, + { + "x": 162.93189, + "y": 229.93563, + "index": 8, + "body": { + "#": 2868 + }, + "isInternal": false + }, + { + "x": 169.06189, + "y": 229.93559, + "index": 9, + "body": { + "#": 2868 + }, + "isInternal": false + }, + { + "x": 174.37191, + "y": 233.00056, + "index": 10, + "body": { + "#": 2868 + }, + "isInternal": false + }, + { + "x": 177.43695, + "y": 238.31053, + "index": 11, + "body": { + "#": 2868 + }, + "isInternal": false + }, + { + "x": 165.99697, + "y": 241.37561 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.58583, + "y": 1.47955 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90728 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2890 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2892 + }, + "max": { + "#": 2893 + } + }, + { + "x": 154.55695, + "y": 229.93559 + }, + { + "x": 177.437, + "y": 255.7229 + }, + { + "x": 165.99697, + "y": 238.46834 + }, + [ + { + "#": 2896 + }, + { + "#": 2897 + }, + { + "#": 2898 + }, + { + "#": 2899 + }, + { + "#": 2900 + }, + { + "#": 2901 + } + ], + { + "x": -0.86608, + "y": -0.4999 + }, + { + "x": -0.49992, + "y": -0.86607 + }, + { + "x": -0.00001, + "y": -1 + }, + { + "x": 0.4999, + "y": -0.86608 + }, + { + "x": 0.86607, + "y": -0.49992 + }, + { + "x": 1, + "y": -0.00001 + }, + { + "id": "3,3,4,5", + "startCol": 3, + "endCol": 3, + "startRow": 4, + "endRow": 5 + }, + { + "id": 71, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2904 + }, + "angle": 0, + "vertices": { + "#": 2905 + }, + "position": { + "#": 2924 + }, + "force": { + "#": 2925 + }, + "torque": 0, + "positionImpulse": { + "#": 2926 + }, + "constraintImpulse": { + "#": 2927 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2928 + }, + "angularVelocity": 0.00171, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2929 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2930 + }, + "circleRadius": 16.75159, + "bounds": { + "#": 2932 + }, + "positionPrev": { + "#": 2935 + }, + "anglePrev": -0.00171, + "axes": { + "#": 2936 + }, + "area": 863.77121, + "mass": 0.86377, + "inverseMass": 1.15771, + "inertia": 475.02222, + "inverseInertia": 0.00211, + "parent": { + "#": 2903 + }, + "sleepCounter": 0, + "region": { + "#": 2946 + } + }, + [ + { + "#": 2903 + } + ], + [ + { + "#": 2906 + }, + { + "#": 2907 + }, + { + "#": 2908 + }, + { + "#": 2909 + }, + { + "#": 2910 + }, + { + "#": 2911 + }, + { + "#": 2912 + }, + { + "#": 2913 + }, + { + "#": 2914 + }, + { + "#": 2915 + }, + { + "#": 2916 + }, + { + "#": 2917 + }, + { + "#": 2918 + }, + { + "#": 2919 + }, + { + "#": 2920 + }, + { + "#": 2921 + }, + { + "#": 2922 + }, + { + "#": 2923 + } + ], + { + "x": 221.15337, + "y": 382.28554, + "index": 0, + "body": { + "#": 2903 + }, + "isInternal": false + }, + { + "x": 219.16337, + "y": 387.75254, + "index": 1, + "body": { + "#": 2903 + }, + "isInternal": false + }, + { + "x": 215.42437, + "y": 392.20854, + "index": 2, + "body": { + "#": 2903 + }, + "isInternal": false + }, + { + "x": 210.38537, + "y": 395.11754, + "index": 3, + "body": { + "#": 2903 + }, + "isInternal": false + }, + { + "x": 204.65637, + "y": 396.12854, + "index": 4, + "body": { + "#": 2903 + }, + "isInternal": false + }, + { + "x": 198.92737, + "y": 395.11754, + "index": 5, + "body": { + "#": 2903 + }, + "isInternal": false + }, + { + "x": 193.88837, + "y": 392.20854, + "index": 6, + "body": { + "#": 2903 + }, + "isInternal": false + }, + { + "x": 190.14937, + "y": 387.75254, + "index": 7, + "body": { + "#": 2903 + }, + "isInternal": false + }, + { + "x": 188.15937, + "y": 382.28554, + "index": 8, + "body": { + "#": 2903 + }, + "isInternal": false + }, + { + "x": 188.15937, + "y": 376.46754, + "index": 9, + "body": { + "#": 2903 + }, + "isInternal": false + }, + { + "x": 190.14937, + "y": 371.00054, + "index": 10, + "body": { + "#": 2903 + }, + "isInternal": false + }, + { + "x": 193.88837, + "y": 366.54454, + "index": 11, + "body": { + "#": 2903 + }, + "isInternal": false + }, + { + "x": 198.92737, + "y": 363.63554, + "index": 12, + "body": { + "#": 2903 + }, + "isInternal": false + }, + { + "x": 204.65637, + "y": 362.62454, + "index": 13, + "body": { + "#": 2903 + }, + "isInternal": false + }, + { + "x": 210.38537, + "y": 363.63554, + "index": 14, + "body": { + "#": 2903 + }, + "isInternal": false + }, + { + "x": 215.42437, + "y": 366.54454, + "index": 15, + "body": { + "#": 2903 + }, + "isInternal": false + }, + { + "x": 219.16337, + "y": 371.00054, + "index": 16, + "body": { + "#": 2903 + }, + "isInternal": false + }, + { + "x": 221.15337, + "y": 376.46754, + "index": 17, + "body": { + "#": 2903 + }, + "isInternal": false + }, + { + "x": 204.65637, + "y": 379.37654 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.79043, + "y": -1.2364 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2931 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2933 + }, + "max": { + "#": 2934 + } + }, + { + "x": 188.15937, + "y": 362.62454 + }, + { + "x": 221.15337, + "y": 399.03581 + }, + { + "x": 205.44679, + "y": 380.61295 + }, + [ + { + "#": 2937 + }, + { + "#": 2938 + }, + { + "#": 2939 + }, + { + "#": 2940 + }, + { + "#": 2941 + }, + { + "#": 2942 + }, + { + "#": 2943 + }, + { + "#": 2944 + }, + { + "#": 2945 + } + ], + { + "x": -0.93968, + "y": -0.34205 + }, + { + "x": -0.76605, + "y": -0.64278 + }, + { + "x": -0.49997, + "y": -0.86605 + }, + { + "x": -0.17379, + "y": -0.98478 + }, + { + "x": 0.17379, + "y": -0.98478 + }, + { + "x": 0.49997, + "y": -0.86605 + }, + { + "x": 0.76605, + "y": -0.64278 + }, + { + "x": 0.93968, + "y": -0.34205 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,7,8", + "startCol": 3, + "endCol": 4, + "startRow": 7, + "endRow": 8 + }, + { + "id": 72, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2948 + }, + "angle": 0.01207, + "vertices": { + "#": 2949 + }, + "position": { + "#": 2964 + }, + "force": { + "#": 2965 + }, + "torque": 0, + "positionImpulse": { + "#": 2966 + }, + "constraintImpulse": { + "#": 2967 + }, + "totalContacts": 0, + "speed": 0.40642, + "angularSpeed": 0.00171, + "velocity": { + "#": 2968 + }, + "angularVelocity": 0.00076, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2969 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2970 + }, + "circleRadius": 13.13079, + "bounds": { + "#": 2972 + }, + "positionPrev": { + "#": 2975 + }, + "anglePrev": 0.01131, + "axes": { + "#": 2976 + }, + "area": 523.66583, + "mass": 0.52367, + "inverseMass": 1.90961, + "inertia": 174.61794, + "inverseInertia": 0.00573, + "parent": { + "#": 2947 + }, + "sleepCounter": 0, + "region": { + "#": 2984 + } + }, + [ + { + "#": 2947 + } + ], + [ + { + "#": 2950 + }, + { + "#": 2951 + }, + { + "#": 2952 + }, + { + "#": 2953 + }, + { + "#": 2954 + }, + { + "#": 2955 + }, + { + "#": 2956 + }, + { + "#": 2957 + }, + { + "#": 2958 + }, + { + "#": 2959 + }, + { + "#": 2960 + }, + { + "#": 2961 + }, + { + "#": 2962 + }, + { + "#": 2963 + } + ], + { + "x": 249.89619, + "y": 136.87721, + "index": 0, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 247.29682, + "y": 142.11121, + "index": 1, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 242.68418, + "y": 145.6988, + "index": 2, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 236.97189, + "y": 146.93094, + "index": 3, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 231.29101, + "y": 145.56126, + "index": 4, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 226.76632, + "y": 141.86338, + "index": 5, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 224.29405, + "y": 136.56815, + "index": 6, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 224.36459, + "y": 130.72458, + "index": 7, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 226.96396, + "y": 125.49057, + "index": 8, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 231.5766, + "y": 121.90299, + "index": 9, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 237.28889, + "y": 120.67085, + "index": 10, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 242.96977, + "y": 122.04052, + "index": 11, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 247.49447, + "y": 125.73841, + "index": 12, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 249.96673, + "y": 131.03363, + "index": 13, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 237.13039, + "y": 133.80089 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.30759, + "y": -0.03355 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2971 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2973 + }, + "max": { + "#": 2974 + } + }, + { + "x": 223.94129, + "y": 120.67085 + }, + { + "x": 249.96673, + "y": 147.13277 + }, + { + "x": 237.43798, + "y": 133.83444 + }, + [ + { + "#": 2977 + }, + { + "#": 2978 + }, + { + "#": 2979 + }, + { + "#": 2980 + }, + { + "#": 2981 + }, + { + "#": 2982 + }, + { + "#": 2983 + } + ], + { + "x": -0.89563, + "y": -0.4448 + }, + { + "x": -0.61394, + "y": -0.78935 + }, + { + "x": -0.21085, + "y": -0.97752 + }, + { + "x": 0.23439, + "y": -0.97214 + }, + { + "x": 0.63281, + "y": -0.7743 + }, + { + "x": 0.90611, + "y": -0.42305 + }, + { + "x": 0.99993, + "y": 0.01207 + }, + { + "id": "4,5,2,3", + "startCol": 4, + "endCol": 5, + "startRow": 2, + "endRow": 3 + }, + { + "id": 73, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2986 + }, + "angle": -0.07019, + "vertices": { + "#": 2987 + }, + "position": { + "#": 3002 + }, + "force": { + "#": 3003 + }, + "torque": 0, + "positionImpulse": { + "#": 3004 + }, + "constraintImpulse": { + "#": 3005 + }, + "totalContacts": 0, + "speed": 0.74289, + "angularSpeed": 0.00711, + "velocity": { + "#": 3006 + }, + "angularVelocity": -0.00431, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3007 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3008 + }, + "circleRadius": 13.69723, + "bounds": { + "#": 3010 + }, + "positionPrev": { + "#": 3013 + }, + "anglePrev": -0.06571, + "axes": { + "#": 3014 + }, + "area": 569.82588, + "mass": 0.56983, + "inverseMass": 1.75492, + "inertia": 206.75915, + "inverseInertia": 0.00484, + "parent": { + "#": 2985 + }, + "sleepCounter": 0, + "region": { + "#": 3022 + } + }, + [ + { + "#": 2985 + } + ], + [ + { + "#": 2988 + }, + { + "#": 2989 + }, + { + "#": 2990 + }, + { + "#": 2991 + }, + { + "#": 2992 + }, + { + "#": 2993 + }, + { + "#": 2994 + }, + { + "#": 2995 + }, + { + "#": 2996 + }, + { + "#": 2997 + }, + { + "#": 2998 + }, + { + "#": 2999 + }, + { + "#": 3000 + }, + { + "#": 3001 + } + ], + { + "x": 284.68402, + "y": 142.49826, + "index": 0, + "body": { + "#": 2985 + }, + "isInternal": false + }, + { + "x": 282.43072, + "y": 148.16224, + "index": 1, + "body": { + "#": 2985 + }, + "isInternal": false + }, + { + "x": 277.94304, + "y": 152.28815, + "index": 2, + "body": { + "#": 2985 + }, + "isInternal": false + }, + { + "x": 272.10978, + "y": 154.05762, + "index": 3, + "body": { + "#": 2985 + }, + "isInternal": false + }, + { + "x": 266.08631, + "y": 153.12177, + "index": 4, + "body": { + "#": 2985 + }, + "isInternal": false + }, + { + "x": 261.06546, + "y": 149.66439, + "index": 5, + "body": { + "#": 2985 + }, + "isInternal": false + }, + { + "x": 258.04179, + "y": 144.37142, + "index": 6, + "body": { + "#": 2985 + }, + "isInternal": false + }, + { + "x": 257.61425, + "y": 138.29043, + "index": 7, + "body": { + "#": 2985 + }, + "isInternal": false + }, + { + "x": 259.86756, + "y": 132.62645, + "index": 8, + "body": { + "#": 2985 + }, + "isInternal": false + }, + { + "x": 264.35524, + "y": 128.50055, + "index": 9, + "body": { + "#": 2985 + }, + "isInternal": false + }, + { + "x": 270.1885, + "y": 126.73107, + "index": 10, + "body": { + "#": 2985 + }, + "isInternal": false + }, + { + "x": 276.21197, + "y": 127.66692, + "index": 11, + "body": { + "#": 2985 + }, + "isInternal": false + }, + { + "x": 281.23281, + "y": 131.1243, + "index": 12, + "body": { + "#": 2985 + }, + "isInternal": false + }, + { + "x": 284.25648, + "y": 136.41727, + "index": 13, + "body": { + "#": 2985 + }, + "isInternal": false + }, + { + "x": 271.14914, + "y": 140.39435 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.41676, + "y": 0.13029 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3009 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3011 + }, + "max": { + "#": 3012 + } + }, + { + "x": 257.57812, + "y": 126.73107 + }, + { + "x": 284.68402, + "y": 154.79963 + }, + { + "x": 270.65837, + "y": 140.33826 + }, + [ + { + "#": 3015 + }, + { + "#": 3016 + }, + { + "#": 3017 + }, + { + "#": 3018 + }, + { + "#": 3019 + }, + { + "#": 3020 + }, + { + "#": 3021 + } + ], + { + "x": -0.92917, + "y": -0.36965 + }, + { + "x": -0.67681, + "y": -0.73616 + }, + { + "x": -0.29028, + "y": -0.95694 + }, + { + "x": 0.15353, + "y": -0.98814 + }, + { + "x": 0.56715, + "y": -0.82362 + }, + { + "x": 0.86831, + "y": -0.49603 + }, + { + "x": 0.99754, + "y": -0.07013 + }, + { + "id": "5,5,2,3", + "startCol": 5, + "endCol": 5, + "startRow": 2, + "endRow": 3 + }, + { + "id": 74, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3024 + }, + "angle": 0.05595, + "vertices": { + "#": 3025 + }, + "position": { + "#": 3038 + }, + "force": { + "#": 3039 + }, + "torque": 0, + "positionImpulse": { + "#": 3040 + }, + "constraintImpulse": { + "#": 3041 + }, + "totalContacts": 0, + "speed": 0.57164, + "angularSpeed": 0.01909, + "velocity": { + "#": 3042 + }, + "angularVelocity": 0.02275, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3043 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3044 + }, + "circleRadius": 10.7966, + "bounds": { + "#": 3046 + }, + "positionPrev": { + "#": 3049 + }, + "anglePrev": 0.03365, + "axes": { + "#": 3050 + }, + "area": 349.69686, + "mass": 0.3497, + "inverseMass": 2.85962, + "inertia": 77.88449, + "inverseInertia": 0.01284, + "parent": { + "#": 3023 + }, + "sleepCounter": 0, + "region": { + "#": 3057 + } + }, + [ + { + "#": 3023 + } + ], + [ + { + "#": 3026 + }, + { + "#": 3027 + }, + { + "#": 3028 + }, + { + "#": 3029 + }, + { + "#": 3030 + }, + { + "#": 3031 + }, + { + "#": 3032 + }, + { + "#": 3033 + }, + { + "#": 3034 + }, + { + "#": 3035 + }, + { + "#": 3036 + }, + { + "#": 3037 + } + ], + { + "x": 304.39901, + "y": 150.56268, + "index": 0, + "body": { + "#": 3023 + }, + "isInternal": false + }, + { + "x": 301.33772, + "y": 155.23881, + "index": 1, + "body": { + "#": 3023 + }, + "isInternal": false + }, + { + "x": 296.34899, + "y": 157.75877, + "index": 2, + "body": { + "#": 3023 + }, + "isInternal": false + }, + { + "x": 290.76973, + "y": 157.44627, + "index": 3, + "body": { + "#": 3023 + }, + "isInternal": false + }, + { + "x": 286.09361, + "y": 154.38498, + "index": 4, + "body": { + "#": 3023 + }, + "isInternal": false + }, + { + "x": 283.57365, + "y": 149.39626, + "index": 5, + "body": { + "#": 3023 + }, + "isInternal": false + }, + { + "x": 283.88614, + "y": 143.817, + "index": 6, + "body": { + "#": 3023 + }, + "isInternal": false + }, + { + "x": 286.94743, + "y": 139.14088, + "index": 7, + "body": { + "#": 3023 + }, + "isInternal": false + }, + { + "x": 291.93616, + "y": 136.62091, + "index": 8, + "body": { + "#": 3023 + }, + "isInternal": false + }, + { + "x": 297.51542, + "y": 136.93341, + "index": 9, + "body": { + "#": 3023 + }, + "isInternal": false + }, + { + "x": 302.19154, + "y": 139.9947, + "index": 10, + "body": { + "#": 3023 + }, + "isInternal": false + }, + { + "x": 304.7115, + "y": 144.98343, + "index": 11, + "body": { + "#": 3023 + }, + "isInternal": false + }, + { + "x": 294.14257, + "y": 147.18984 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.48325, + "y": 0.07727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3045 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3047 + }, + "max": { + "#": 3048 + } + }, + { + "x": 283.57365, + "y": 136.62091 + }, + { + "x": 305.13858, + "y": 158.13873 + }, + { + "x": 293.6592, + "y": 147.02488 + }, + [ + { + "#": 3051 + }, + { + "#": 3052 + }, + { + "#": 3053 + }, + { + "#": 3054 + }, + { + "#": 3055 + }, + { + "#": 3056 + } + ], + { + "x": -0.83666, + "y": -0.54773 + }, + { + "x": -0.45087, + "y": -0.89259 + }, + { + "x": 0.05592, + "y": -0.99844 + }, + { + "x": 0.54773, + "y": -0.83666 + }, + { + "x": 0.89259, + "y": -0.45087 + }, + { + "x": 0.99844, + "y": 0.05592 + }, + { + "id": "5,6,2,3", + "startCol": 5, + "endCol": 6, + "startRow": 2, + "endRow": 3 + }, + { + "id": 75, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3059 + }, + "angle": 0.08185, + "vertices": { + "#": 3060 + }, + "position": { + "#": 3077 + }, + "force": { + "#": 3078 + }, + "torque": 0, + "positionImpulse": { + "#": 3079 + }, + "constraintImpulse": { + "#": 3080 + }, + "totalContacts": 0, + "speed": 0.62868, + "angularSpeed": 0.02401, + "velocity": { + "#": 3081 + }, + "angularVelocity": 0.02646, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3082 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3083 + }, + "circleRadius": 14.18197, + "bounds": { + "#": 3085 + }, + "positionPrev": { + "#": 3088 + }, + "anglePrev": 0.05577, + "axes": { + "#": 3089 + }, + "area": 615.73225, + "mass": 0.61573, + "inverseMass": 1.62408, + "inertia": 241.39172, + "inverseInertia": 0.00414, + "parent": { + "#": 3058 + }, + "sleepCounter": 0, + "region": { + "#": 3098 + } + }, + [ + { + "#": 3058 + } + ], + [ + { + "#": 3061 + }, + { + "#": 3062 + }, + { + "#": 3063 + }, + { + "#": 3064 + }, + { + "#": 3065 + }, + { + "#": 3066 + }, + { + "#": 3067 + }, + { + "#": 3068 + }, + { + "#": 3069 + }, + { + "#": 3070 + }, + { + "#": 3071 + }, + { + "#": 3072 + }, + { + "#": 3073 + }, + { + "#": 3074 + }, + { + "#": 3075 + }, + { + "#": 3076 + } + ], + { + "x": 331.82227, + "y": 152.30896, + "index": 0, + "body": { + "#": 3058 + }, + "isInternal": false + }, + { + "x": 329.29438, + "y": 157.23076, + "index": 1, + "body": { + "#": 3058 + }, + "isInternal": false + }, + { + "x": 325.07455, + "y": 160.81072, + "index": 2, + "body": { + "#": 3058 + }, + "isInternal": false + }, + { + "x": 319.80657, + "y": 162.50266, + "index": 3, + "body": { + "#": 3058 + }, + "isInternal": false + }, + { + "x": 314.2911, + "y": 162.05018, + "index": 4, + "body": { + "#": 3058 + }, + "isInternal": false + }, + { + "x": 309.36931, + "y": 159.5223, + "index": 5, + "body": { + "#": 3058 + }, + "isInternal": false + }, + { + "x": 305.78935, + "y": 155.30246, + "index": 6, + "body": { + "#": 3058 + }, + "isInternal": false + }, + { + "x": 304.09741, + "y": 150.03448, + "index": 7, + "body": { + "#": 3058 + }, + "isInternal": false + }, + { + "x": 304.54988, + "y": 144.51901, + "index": 8, + "body": { + "#": 3058 + }, + "isInternal": false + }, + { + "x": 307.07777, + "y": 139.59722, + "index": 9, + "body": { + "#": 3058 + }, + "isInternal": false + }, + { + "x": 311.2976, + "y": 136.01726, + "index": 10, + "body": { + "#": 3058 + }, + "isInternal": false + }, + { + "x": 316.56558, + "y": 134.32532, + "index": 11, + "body": { + "#": 3058 + }, + "isInternal": false + }, + { + "x": 322.08105, + "y": 134.7778, + "index": 12, + "body": { + "#": 3058 + }, + "isInternal": false + }, + { + "x": 327.00284, + "y": 137.30568, + "index": 13, + "body": { + "#": 3058 + }, + "isInternal": false + }, + { + "x": 330.5828, + "y": 141.52552, + "index": 14, + "body": { + "#": 3058 + }, + "isInternal": false + }, + { + "x": 332.27474, + "y": 146.79349, + "index": 15, + "body": { + "#": 3058 + }, + "isInternal": false + }, + { + "x": 318.18608, + "y": 148.41399 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.47468, + "y": 0.00945 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3084 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3086 + }, + "max": { + "#": 3087 + } + }, + { + "x": 304.09741, + "y": 134.32532 + }, + { + "x": 332.68589, + "y": 162.97826 + }, + { + "x": 317.71512, + "y": 148.35916 + }, + [ + { + "#": 3090 + }, + { + "#": 3091 + }, + { + "#": 3092 + }, + { + "#": 3093 + }, + { + "#": 3094 + }, + { + "#": 3095 + }, + { + "#": 3096 + }, + { + "#": 3097 + } + ], + { + "x": -0.88953, + "y": -0.45687 + }, + { + "x": -0.64692, + "y": -0.76255 + }, + { + "x": -0.30579, + "y": -0.9521 + }, + { + "x": 0.08176, + "y": -0.99665 + }, + { + "x": 0.45687, + "y": -0.88953 + }, + { + "x": 0.76255, + "y": -0.64692 + }, + { + "x": 0.9521, + "y": -0.30579 + }, + { + "x": 0.99665, + "y": 0.08176 + }, + { + "id": "6,6,2,3", + "startCol": 6, + "endCol": 6, + "startRow": 2, + "endRow": 3 + }, + { + "id": 76, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3100 + }, + "angle": 0.09676, + "vertices": { + "#": 3101 + }, + "position": { + "#": 3118 + }, + "force": { + "#": 3119 + }, + "torque": 0, + "positionImpulse": { + "#": 3120 + }, + "constraintImpulse": { + "#": 3121 + }, + "totalContacts": 0, + "speed": 0.54886, + "angularSpeed": 0.01995, + "velocity": { + "#": 3122 + }, + "angularVelocity": 0.019, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3123 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3124 + }, + "circleRadius": 15.45829, + "bounds": { + "#": 3126 + }, + "positionPrev": { + "#": 3129 + }, + "anglePrev": 0.07766, + "axes": { + "#": 3130 + }, + "area": 731.54611, + "mass": 0.73155, + "inverseMass": 1.36697, + "inertia": 340.73911, + "inverseInertia": 0.00293, + "parent": { + "#": 3099 + }, + "sleepCounter": 0, + "region": { + "#": 3139 + } + }, + [ + { + "#": 3099 + } + ], + [ + { + "#": 3102 + }, + { + "#": 3103 + }, + { + "#": 3104 + }, + { + "#": 3105 + }, + { + "#": 3106 + }, + { + "#": 3107 + }, + { + "#": 3108 + }, + { + "#": 3109 + }, + { + "#": 3110 + }, + { + "#": 3111 + }, + { + "#": 3112 + }, + { + "#": 3113 + }, + { + "#": 3114 + }, + { + "#": 3115 + }, + { + "#": 3116 + }, + { + "#": 3117 + } + ], + { + "x": 361.39398, + "y": 156.81467, + "index": 0, + "body": { + "#": 3099 + }, + "isInternal": false + }, + { + "x": 358.55846, + "y": 162.13763, + "index": 1, + "body": { + "#": 3099 + }, + "isInternal": false + }, + { + "x": 353.90137, + "y": 165.97064, + "index": 2, + "body": { + "#": 3099 + }, + "isInternal": false + }, + { + "x": 348.13246, + "y": 167.72953, + "index": 3, + "body": { + "#": 3099 + }, + "isInternal": false + }, + { + "x": 342.12867, + "y": 167.14677, + "index": 4, + "body": { + "#": 3099 + }, + "isInternal": false + }, + { + "x": 336.80571, + "y": 164.31126, + "index": 5, + "body": { + "#": 3099 + }, + "isInternal": false + }, + { + "x": 332.97271, + "y": 159.65416, + "index": 6, + "body": { + "#": 3099 + }, + "isInternal": false + }, + { + "x": 331.21382, + "y": 153.88525, + "index": 7, + "body": { + "#": 3099 + }, + "isInternal": false + }, + { + "x": 331.79657, + "y": 147.88147, + "index": 8, + "body": { + "#": 3099 + }, + "isInternal": false + }, + { + "x": 334.63209, + "y": 142.55851, + "index": 9, + "body": { + "#": 3099 + }, + "isInternal": false + }, + { + "x": 339.28918, + "y": 138.7255, + "index": 10, + "body": { + "#": 3099 + }, + "isInternal": false + }, + { + "x": 345.0581, + "y": 136.96661, + "index": 11, + "body": { + "#": 3099 + }, + "isInternal": false + }, + { + "x": 351.06188, + "y": 137.54937, + "index": 12, + "body": { + "#": 3099 + }, + "isInternal": false + }, + { + "x": 356.38484, + "y": 140.38488, + "index": 13, + "body": { + "#": 3099 + }, + "isInternal": false + }, + { + "x": 360.21784, + "y": 145.04198, + "index": 14, + "body": { + "#": 3099 + }, + "isInternal": false + }, + { + "x": 361.97673, + "y": 150.81089, + "index": 15, + "body": { + "#": 3099 + }, + "isInternal": false + }, + { + "x": 346.59528, + "y": 152.34807 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.54354, + "y": 0.1446 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3125 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3127 + }, + "max": { + "#": 3128 + } + }, + { + "x": 331.21382, + "y": 136.96661 + }, + { + "x": 362.38678, + "y": 168.09438 + }, + { + "x": 346.04876, + "y": 152.23411 + }, + [ + { + "#": 3131 + }, + { + "#": 3132 + }, + { + "#": 3133 + }, + { + "#": 3134 + }, + { + "#": 3135 + }, + { + "#": 3136 + }, + { + "#": 3137 + }, + { + "#": 3138 + } + ], + { + "x": -0.88259, + "y": -0.47015 + }, + { + "x": -0.63549, + "y": -0.77211 + }, + { + "x": -0.29164, + "y": -0.95653 + }, + { + "x": 0.09661, + "y": -0.99532 + }, + { + "x": 0.47015, + "y": -0.88259 + }, + { + "x": 0.77211, + "y": -0.63549 + }, + { + "x": 0.95653, + "y": -0.29164 + }, + { + "x": 0.99532, + "y": 0.09661 + }, + { + "id": "6,7,2,3", + "startCol": 6, + "endCol": 7, + "startRow": 2, + "endRow": 3 + }, + { + "id": 77, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3141 + }, + "angle": 0.02114, + "vertices": { + "#": 3142 + }, + "position": { + "#": 3163 + }, + "force": { + "#": 3164 + }, + "torque": 0, + "positionImpulse": { + "#": 3165 + }, + "constraintImpulse": { + "#": 3166 + }, + "totalContacts": 0, + "speed": 0.54386, + "angularSpeed": 0.00083, + "velocity": { + "#": 3167 + }, + "angularVelocity": 0.00253, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3168 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3169 + }, + "circleRadius": 19.19346, + "bounds": { + "#": 3171 + }, + "positionPrev": { + "#": 3174 + }, + "anglePrev": 0.0186, + "axes": { + "#": 3175 + }, + "area": 1138.37292, + "mass": 1.13837, + "inverseMass": 0.87845, + "inertia": 825.03622, + "inverseInertia": 0.00121, + "parent": { + "#": 3140 + }, + "sleepCounter": 0, + "region": { + "#": 3186 + } + }, + [ + { + "#": 3140 + } + ], + [ + { + "#": 3143 + }, + { + "#": 3144 + }, + { + "#": 3145 + }, + { + "#": 3146 + }, + { + "#": 3147 + }, + { + "#": 3148 + }, + { + "#": 3149 + }, + { + "#": 3150 + }, + { + "#": 3151 + }, + { + "#": 3152 + }, + { + "#": 3153 + }, + { + "#": 3154 + }, + { + "#": 3155 + }, + { + "#": 3156 + }, + { + "#": 3157 + }, + { + "#": 3158 + }, + { + "#": 3159 + }, + { + "#": 3160 + }, + { + "#": 3161 + }, + { + "#": 3162 + } + ], + { + "x": 399.19143, + "y": 158.30714, + "index": 0, + "body": { + "#": 3140 + }, + "isInternal": false + }, + { + "x": 397.21514, + "y": 163.97764, + "index": 1, + "body": { + "#": 3140 + }, + "isInternal": false + }, + { + "x": 393.58426, + "y": 168.75996, + "index": 2, + "body": { + "#": 3140 + }, + "isInternal": false + }, + { + "x": 388.65275, + "y": 172.1855, + "index": 3, + "body": { + "#": 3140 + }, + "isInternal": false + }, + { + "x": 382.9038, + "y": 173.92038, + "index": 4, + "body": { + "#": 3140 + }, + "isInternal": false + }, + { + "x": 376.89914, + "y": 173.79344, + "index": 5, + "body": { + "#": 3140 + }, + "isInternal": false + }, + { + "x": 371.22865, + "y": 171.81715, + "index": 6, + "body": { + "#": 3140 + }, + "isInternal": false + }, + { + "x": 366.44632, + "y": 168.18626, + "index": 7, + "body": { + "#": 3140 + }, + "isInternal": false + }, + { + "x": 363.02078, + "y": 163.25476, + "index": 8, + "body": { + "#": 3140 + }, + "isInternal": false + }, + { + "x": 361.2859, + "y": 157.50581, + "index": 9, + "body": { + "#": 3140 + }, + "isInternal": false + }, + { + "x": 361.41284, + "y": 151.50115, + "index": 10, + "body": { + "#": 3140 + }, + "isInternal": false + }, + { + "x": 363.38913, + "y": 145.83065, + "index": 11, + "body": { + "#": 3140 + }, + "isInternal": false + }, + { + "x": 367.02002, + "y": 141.04833, + "index": 12, + "body": { + "#": 3140 + }, + "isInternal": false + }, + { + "x": 371.95152, + "y": 137.62279, + "index": 13, + "body": { + "#": 3140 + }, + "isInternal": false + }, + { + "x": 377.70048, + "y": 135.88791, + "index": 14, + "body": { + "#": 3140 + }, + "isInternal": false + }, + { + "x": 383.70513, + "y": 136.01485, + "index": 15, + "body": { + "#": 3140 + }, + "isInternal": false + }, + { + "x": 389.37563, + "y": 137.99114, + "index": 16, + "body": { + "#": 3140 + }, + "isInternal": false + }, + { + "x": 394.15796, + "y": 141.62203, + "index": 17, + "body": { + "#": 3140 + }, + "isInternal": false + }, + { + "x": 397.58349, + "y": 146.55353, + "index": 18, + "body": { + "#": 3140 + }, + "isInternal": false + }, + { + "x": 399.31837, + "y": 152.30248, + "index": 19, + "body": { + "#": 3140 + }, + "isInternal": false + }, + { + "x": 380.30214, + "y": 154.90414 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.149, + "y": -0.16453 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.54663, + "y": 0.12238 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3170 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3172 + }, + "max": { + "#": 3173 + } + }, + { + "x": 361.2859, + "y": 135.88791 + }, + { + "x": 399.74888, + "y": 174.25273 + }, + { + "x": 379.75808, + "y": 154.7949 + }, + [ + { + "#": 3176 + }, + { + "#": 3177 + }, + { + "#": 3178 + }, + { + "#": 3179 + }, + { + "#": 3180 + }, + { + "#": 3181 + }, + { + "#": 3182 + }, + { + "#": 3183 + }, + { + "#": 3184 + }, + { + "#": 3185 + } + ], + { + "x": -0.94429, + "y": -0.32911 + }, + { + "x": -0.79646, + "y": -0.60469 + }, + { + "x": -0.57049, + "y": -0.8213 + }, + { + "x": -0.28891, + "y": -0.95736 + }, + { + "x": 0.02114, + "y": -0.99978 + }, + { + "x": 0.32911, + "y": -0.94429 + }, + { + "x": 0.60469, + "y": -0.79646 + }, + { + "x": 0.8213, + "y": -0.57049 + }, + { + "x": 0.95736, + "y": -0.28891 + }, + { + "x": 0.99978, + "y": 0.02114 + }, + { + "id": "7,8,2,3", + "startCol": 7, + "endCol": 8, + "startRow": 2, + "endRow": 3 + }, + { + "id": 78, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3188 + }, + "angle": -0.01197, + "vertices": { + "#": 3189 + }, + "position": { + "#": 3202 + }, + "force": { + "#": 3203 + }, + "torque": 0, + "positionImpulse": { + "#": 3204 + }, + "constraintImpulse": { + "#": 3205 + }, + "totalContacts": 0, + "speed": 2.13098, + "angularSpeed": 0.01978, + "velocity": { + "#": 3206 + }, + "angularVelocity": -0.02703, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3207 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3208 + }, + "circleRadius": 10.69612, + "bounds": { + "#": 3210 + }, + "positionPrev": { + "#": 3213 + }, + "anglePrev": 0.01162, + "axes": { + "#": 3214 + }, + "area": 343.22203, + "mass": 0.34322, + "inverseMass": 2.91357, + "inertia": 75.02704, + "inverseInertia": 0.01333, + "parent": { + "#": 3187 + }, + "sleepCounter": 0, + "region": { + "#": 3221 + } + }, + [ + { + "#": 3187 + } + ], + [ + { + "#": 3190 + }, + { + "#": 3191 + }, + { + "#": 3192 + }, + { + "#": 3193 + }, + { + "#": 3194 + }, + { + "#": 3195 + }, + { + "#": 3196 + }, + { + "#": 3197 + }, + { + "#": 3198 + }, + { + "#": 3199 + }, + { + "#": 3200 + }, + { + "#": 3201 + } + ], + { + "x": 419.41253, + "y": 161.2343, + "index": 0, + "body": { + "#": 3187 + }, + "isInternal": false + }, + { + "x": 416.70114, + "y": 166.06211, + "index": 1, + "body": { + "#": 3187 + }, + "isInternal": false + }, + { + "x": 411.93963, + "y": 168.88832, + "index": 2, + "body": { + "#": 3187 + }, + "isInternal": false + }, + { + "x": 406.40403, + "y": 168.9546, + "index": 3, + "body": { + "#": 3187 + }, + "isInternal": false + }, + { + "x": 401.57622, + "y": 166.24321, + "index": 4, + "body": { + "#": 3187 + }, + "isInternal": false + }, + { + "x": 398.75001, + "y": 161.4817, + "index": 5, + "body": { + "#": 3187 + }, + "isInternal": false + }, + { + "x": 398.68373, + "y": 155.9461, + "index": 6, + "body": { + "#": 3187 + }, + "isInternal": false + }, + { + "x": 401.39512, + "y": 151.11829, + "index": 7, + "body": { + "#": 3187 + }, + "isInternal": false + }, + { + "x": 406.15662, + "y": 148.29208, + "index": 8, + "body": { + "#": 3187 + }, + "isInternal": false + }, + { + "x": 411.69223, + "y": 148.2258, + "index": 9, + "body": { + "#": 3187 + }, + "isInternal": false + }, + { + "x": 416.52004, + "y": 150.93719, + "index": 10, + "body": { + "#": 3187 + }, + "isInternal": false + }, + { + "x": 419.34625, + "y": 155.69869, + "index": 11, + "body": { + "#": 3187 + }, + "isInternal": false + }, + { + "x": 409.04813, + "y": 158.5902 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.15219, + "y": 0.00672 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.60652, + "y": 1.4287 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3209 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3211 + }, + "max": { + "#": 3212 + } + }, + { + "x": 398.68373, + "y": 148.2258 + }, + { + "x": 419.91843, + "y": 171.02465 + }, + { + "x": 408.20252, + "y": 157.02723 + }, + [ + { + "#": 3215 + }, + { + "#": 3216 + }, + { + "#": 3217 + }, + { + "#": 3218 + }, + { + "#": 3219 + }, + { + "#": 3220 + } + ], + { + "x": -0.8719, + "y": -0.48968 + }, + { + "x": -0.51041, + "y": -0.85993 + }, + { + "x": -0.01197, + "y": -0.99993 + }, + { + "x": 0.48968, + "y": -0.8719 + }, + { + "x": 0.85993, + "y": -0.51041 + }, + { + "x": 0.99993, + "y": -0.01197 + }, + { + "id": "8,8,3,3", + "startCol": 8, + "endCol": 8, + "startRow": 3, + "endRow": 3 + }, + { + "id": 79, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3223 + }, + "angle": 0.02532, + "vertices": { + "#": 3224 + }, + "position": { + "#": 3237 + }, + "force": { + "#": 3238 + }, + "torque": 0, + "positionImpulse": { + "#": 3239 + }, + "constraintImpulse": { + "#": 3240 + }, + "totalContacts": 0, + "speed": 0.67977, + "angularSpeed": 0.00165, + "velocity": { + "#": 3241 + }, + "angularVelocity": -0.00594, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3242 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3243 + }, + "circleRadius": 10.46009, + "bounds": { + "#": 3245 + }, + "positionPrev": { + "#": 3248 + }, + "anglePrev": 0.03126, + "axes": { + "#": 3249 + }, + "area": 328.23896, + "mass": 0.32824, + "inverseMass": 3.04656, + "inertia": 68.61954, + "inverseInertia": 0.01457, + "parent": { + "#": 3222 + }, + "sleepCounter": 0, + "region": { + "#": 3256 + } + }, + [ + { + "#": 3222 + } + ], + [ + { + "#": 3225 + }, + { + "#": 3226 + }, + { + "#": 3227 + }, + { + "#": 3228 + }, + { + "#": 3229 + }, + { + "#": 3230 + }, + { + "#": 3231 + }, + { + "#": 3232 + }, + { + "#": 3233 + }, + { + "#": 3234 + }, + { + "#": 3235 + }, + { + "#": 3236 + } + ], + { + "x": 435.12681, + "y": 148.79135, + "index": 0, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 432.30099, + "y": 153.4103, + "index": 1, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 427.54494, + "y": 155.99874, + "index": 2, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 422.13268, + "y": 155.8617, + "index": 3, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 417.51373, + "y": 153.03588, + "index": 4, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 414.92529, + "y": 148.27984, + "index": 5, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 415.06233, + "y": 142.86757, + "index": 6, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 417.88815, + "y": 138.24862, + "index": 7, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 422.64419, + "y": 135.66018, + "index": 8, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 428.05646, + "y": 135.79722, + "index": 9, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 432.67541, + "y": 138.62304, + "index": 10, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 435.26385, + "y": 143.37909, + "index": 11, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 425.09457, + "y": 145.82946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.74499, + "y": 0.7648 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.65451, + "y": 1.42451 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3244 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3246 + }, + "max": { + "#": 3247 + } + }, + { + "x": 414.47193, + "y": 135.66018 + }, + { + "x": 435.26385, + "y": 156.50526 + }, + { + "x": 424.44006, + "y": 144.40496 + }, + [ + { + "#": 3250 + }, + { + "#": 3251 + }, + { + "#": 3252 + }, + { + "#": 3253 + }, + { + "#": 3254 + }, + { + "#": 3255 + } + ], + { + "x": -0.85302, + "y": -0.52187 + }, + { + "x": -0.47803, + "y": -0.87834 + }, + { + "x": 0.02531, + "y": -0.99968 + }, + { + "x": 0.52187, + "y": -0.85302 + }, + { + "x": 0.87834, + "y": -0.47803 + }, + { + "x": 0.99968, + "y": 0.02531 + }, + { + "id": "8,9,2,3", + "startCol": 8, + "endCol": 9, + "startRow": 2, + "endRow": 3 + }, + { + "id": 80, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3258 + }, + "angle": -0.06192, + "vertices": { + "#": 3259 + }, + "position": { + "#": 3276 + }, + "force": { + "#": 3277 + }, + "torque": 0, + "positionImpulse": { + "#": 3278 + }, + "constraintImpulse": { + "#": 3279 + }, + "totalContacts": 0, + "speed": 1.5238, + "angularSpeed": 0.02288, + "velocity": { + "#": 3280 + }, + "angularVelocity": -0.02285, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3281 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3282 + }, + "circleRadius": 15.27551, + "bounds": { + "#": 3284 + }, + "positionPrev": { + "#": 3287 + }, + "anglePrev": -0.03917, + "axes": { + "#": 3288 + }, + "area": 714.37092, + "mass": 0.71437, + "inverseMass": 1.39983, + "inertia": 324.92723, + "inverseInertia": 0.00308, + "parent": { + "#": 3257 + }, + "sleepCounter": 0, + "region": { + "#": 3297 + } + }, + [ + { + "#": 3257 + } + ], + [ + { + "#": 3260 + }, + { + "#": 3261 + }, + { + "#": 3262 + }, + { + "#": 3263 + }, + { + "#": 3264 + }, + { + "#": 3265 + }, + { + "#": 3266 + }, + { + "#": 3267 + }, + { + "#": 3268 + }, + { + "#": 3269 + }, + { + "#": 3270 + }, + { + "#": 3271 + }, + { + "#": 3272 + }, + { + "#": 3273 + }, + { + "#": 3274 + }, + { + "#": 3275 + } + ], + { + "x": 447.36995, + "y": 170.80719, + "index": 0, + "body": { + "#": 3257 + }, + "isInternal": false + }, + { + "x": 445.43407, + "y": 176.44478, + "index": 1, + "body": { + "#": 3257 + }, + "isInternal": false + }, + { + "x": 441.48889, + "y": 180.91145, + "index": 2, + "body": { + "#": 3257 + }, + "isInternal": false + }, + { + "x": 436.13358, + "y": 183.52883, + "index": 3, + "body": { + "#": 3257 + }, + "isInternal": false + }, + { + "x": 430.185, + "y": 183.89761, + "index": 4, + "body": { + "#": 3257 + }, + "isInternal": false + }, + { + "x": 424.54741, + "y": 181.96173, + "index": 5, + "body": { + "#": 3257 + }, + "isInternal": false + }, + { + "x": 420.08074, + "y": 178.01655, + "index": 6, + "body": { + "#": 3257 + }, + "isInternal": false + }, + { + "x": 417.46336, + "y": 172.66124, + "index": 7, + "body": { + "#": 3257 + }, + "isInternal": false + }, + { + "x": 417.09458, + "y": 166.71266, + "index": 8, + "body": { + "#": 3257 + }, + "isInternal": false + }, + { + "x": 419.03046, + "y": 161.07508, + "index": 9, + "body": { + "#": 3257 + }, + "isInternal": false + }, + { + "x": 422.97564, + "y": 156.60841, + "index": 10, + "body": { + "#": 3257 + }, + "isInternal": false + }, + { + "x": 428.33095, + "y": 153.99102, + "index": 11, + "body": { + "#": 3257 + }, + "isInternal": false + }, + { + "x": 434.27953, + "y": 153.62224, + "index": 12, + "body": { + "#": 3257 + }, + "isInternal": false + }, + { + "x": 439.91711, + "y": 155.55812, + "index": 13, + "body": { + "#": 3257 + }, + "isInternal": false + }, + { + "x": 444.38378, + "y": 159.5033, + "index": 14, + "body": { + "#": 3257 + }, + "isInternal": false + }, + { + "x": 447.00116, + "y": 164.85861, + "index": 15, + "body": { + "#": 3257 + }, + "isInternal": false + }, + { + "x": 432.23226, + "y": 168.75993 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.27036, + "y": -0.45332 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 1.36261, + "y": 0.23949 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3283 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3285 + }, + "max": { + "#": 3286 + } + }, + { + "x": 417.09458, + "y": 153.62224 + }, + { + "x": 448.77267, + "y": 184.49286 + }, + { + "x": 430.88058, + "y": 168.46314 + }, + [ + { + "#": 3289 + }, + { + "#": 3290 + }, + { + "#": 3291 + }, + { + "#": 3292 + }, + { + "#": 3293 + }, + { + "#": 3294 + }, + { + "#": 3295 + }, + { + "#": 3296 + } + ], + { + "x": -0.94579, + "y": -0.32477 + }, + { + "x": -0.7495, + "y": -0.662 + }, + { + "x": -0.43911, + "y": -0.89844 + }, + { + "x": -0.06188, + "y": -0.99808 + }, + { + "x": 0.32477, + "y": -0.94579 + }, + { + "x": 0.662, + "y": -0.7495 + }, + { + "x": 0.89844, + "y": -0.43911 + }, + { + "x": 0.99808, + "y": -0.06188 + }, + { + "id": "8,9,3,3", + "startCol": 8, + "endCol": 9, + "startRow": 3, + "endRow": 3 + }, + { + "id": 81, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3299 + }, + "angle": 0.0368, + "vertices": { + "#": 3300 + }, + "position": { + "#": 3319 + }, + "force": { + "#": 3320 + }, + "torque": 0, + "positionImpulse": { + "#": 3321 + }, + "constraintImpulse": { + "#": 3322 + }, + "totalContacts": 0, + "speed": 0.95184, + "angularSpeed": 0.01288, + "velocity": { + "#": 3323 + }, + "angularVelocity": 0.01241, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3324 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3325 + }, + "circleRadius": 16.00656, + "bounds": { + "#": 3327 + }, + "positionPrev": { + "#": 3330 + }, + "anglePrev": 0.02465, + "axes": { + "#": 3331 + }, + "area": 788.65954, + "mass": 0.78866, + "inverseMass": 1.26797, + "inertia": 396.00037, + "inverseInertia": 0.00253, + "parent": { + "#": 3298 + }, + "sleepCounter": 0, + "region": { + "#": 3341 + } + }, + [ + { + "#": 3298 + } + ], + [ + { + "#": 3301 + }, + { + "#": 3302 + }, + { + "#": 3303 + }, + { + "#": 3304 + }, + { + "#": 3305 + }, + { + "#": 3306 + }, + { + "#": 3307 + }, + { + "#": 3308 + }, + { + "#": 3309 + }, + { + "#": 3310 + }, + { + "#": 3311 + }, + { + "#": 3312 + }, + { + "#": 3313 + }, + { + "#": 3314 + }, + { + "#": 3315 + }, + { + "#": 3316 + }, + { + "#": 3317 + }, + { + "#": 3318 + } + ], + { + "x": 512.64242, + "y": 153.03461, + "index": 0, + "body": { + "#": 3298 + }, + "isInternal": false + }, + { + "x": 510.55053, + "y": 158.18413, + "index": 1, + "body": { + "#": 3298 + }, + "isInternal": false + }, + { + "x": 506.82325, + "y": 162.30879, + "index": 2, + "body": { + "#": 3298 + }, + "isInternal": false + }, + { + "x": 501.91026, + "y": 164.90878, + "index": 3, + "body": { + "#": 3298 + }, + "isInternal": false + }, + { + "x": 496.40342, + "y": 165.67268, + "index": 4, + "body": { + "#": 3298 + }, + "isInternal": false + }, + { + "x": 490.96767, + "y": 164.50589, + "index": 5, + "body": { + "#": 3298 + }, + "isInternal": false + }, + { + "x": 486.25918, + "y": 161.55164, + "index": 6, + "body": { + "#": 3298 + }, + "isInternal": false + }, + { + "x": 482.8453, + "y": 157.16406, + "index": 7, + "body": { + "#": 3298 + }, + "isInternal": false + }, + { + "x": 481.13777, + "y": 151.87466, + "index": 8, + "body": { + "#": 3298 + }, + "isInternal": false + }, + { + "x": 481.34234, + "y": 146.31842, + "index": 9, + "body": { + "#": 3298 + }, + "isInternal": false + }, + { + "x": 483.43422, + "y": 141.1689, + "index": 10, + "body": { + "#": 3298 + }, + "isInternal": false + }, + { + "x": 487.16151, + "y": 137.04425, + "index": 11, + "body": { + "#": 3298 + }, + "isInternal": false + }, + { + "x": 492.0745, + "y": 134.44426, + "index": 12, + "body": { + "#": 3298 + }, + "isInternal": false + }, + { + "x": 497.58134, + "y": 133.68036, + "index": 13, + "body": { + "#": 3298 + }, + "isInternal": false + }, + { + "x": 503.01709, + "y": 134.84715, + "index": 14, + "body": { + "#": 3298 + }, + "isInternal": false + }, + { + "x": 507.72558, + "y": 137.80139, + "index": 15, + "body": { + "#": 3298 + }, + "isInternal": false + }, + { + "x": 511.13945, + "y": 142.18897, + "index": 16, + "body": { + "#": 3298 + }, + "isInternal": false + }, + { + "x": 512.84699, + "y": 147.47838, + "index": 17, + "body": { + "#": 3298 + }, + "isInternal": false + }, + { + "x": 496.99238, + "y": 149.67652 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.884, + "y": 0.39717 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3326 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3328 + }, + "max": { + "#": 3329 + } + }, + { + "x": 481.13777, + "y": 133.68036 + }, + { + "x": 513.45148, + "y": 166.40793 + }, + { + "x": 496.09312, + "y": 149.33887 + }, + [ + { + "#": 3332 + }, + { + "#": 3333 + }, + { + "#": 3334 + }, + { + "#": 3335 + }, + { + "#": 3336 + }, + { + "#": 3337 + }, + { + "#": 3338 + }, + { + "#": 3339 + }, + { + "#": 3340 + } + ], + { + "x": -0.92647, + "y": -0.37636 + }, + { + "x": -0.74194, + "y": -0.67046 + }, + { + "x": -0.46775, + "y": -0.88386 + }, + { + "x": -0.1374, + "y": -0.99052 + }, + { + "x": 0.20987, + "y": -0.97773 + }, + { + "x": 0.53148, + "y": -0.84707 + }, + { + "x": 0.78924, + "y": -0.61409 + }, + { + "x": 0.95164, + "y": -0.30721 + }, + { + "x": 0.99932, + "y": 0.03679 + }, + { + "id": "10,10,2,3", + "startCol": 10, + "endCol": 10, + "startRow": 2, + "endRow": 3 + }, + { + "id": 82, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3343 + }, + "angle": 0.0052, + "vertices": { + "#": 3344 + }, + "position": { + "#": 3359 + }, + "force": { + "#": 3360 + }, + "torque": 0, + "positionImpulse": { + "#": 3361 + }, + "constraintImpulse": { + "#": 3362 + }, + "totalContacts": 0, + "speed": 2.90864, + "angularSpeed": 0.00066, + "velocity": { + "#": 3363 + }, + "angularVelocity": -0.04611, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3364 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3365 + }, + "circleRadius": 12.03597, + "bounds": { + "#": 3367 + }, + "positionPrev": { + "#": 3370 + }, + "anglePrev": 0.04624, + "axes": { + "#": 3371 + }, + "area": 439.9675, + "mass": 0.43997, + "inverseMass": 2.2729, + "inertia": 123.25984, + "inverseInertia": 0.00811, + "parent": { + "#": 3342 + }, + "sleepCounter": 0, + "region": { + "#": 3379 + } + }, + [ + { + "#": 3342 + } + ], + [ + { + "#": 3345 + }, + { + "#": 3346 + }, + { + "#": 3347 + }, + { + "#": 3348 + }, + { + "#": 3349 + }, + { + "#": 3350 + }, + { + "#": 3351 + }, + { + "#": 3352 + }, + { + "#": 3353 + }, + { + "#": 3354 + }, + { + "#": 3355 + }, + { + "#": 3356 + }, + { + "#": 3357 + }, + { + "#": 3358 + } + ], + { + "x": 540.45542, + "y": 168.14712, + "index": 0, + "body": { + "#": 3342 + }, + "isInternal": false + }, + { + "x": 538.10635, + "y": 172.96097, + "index": 1, + "body": { + "#": 3342 + }, + "isInternal": false + }, + { + "x": 533.90103, + "y": 176.27914, + "index": 2, + "body": { + "#": 3342 + }, + "isInternal": false + }, + { + "x": 528.6729, + "y": 177.44396, + "index": 3, + "body": { + "#": 3342 + }, + "isInternal": false + }, + { + "x": 523.45717, + "y": 176.22481, + "index": 4, + "body": { + "#": 3342 + }, + "isInternal": false + }, + { + "x": 519.2866, + "y": 172.86307, + "index": 5, + "body": { + "#": 3342 + }, + "isInternal": false + }, + { + "x": 516.98774, + "y": 168.02504, + "index": 6, + "body": { + "#": 3342 + }, + "isInternal": false + }, + { + "x": 517.0156, + "y": 162.66912, + "index": 7, + "body": { + "#": 3342 + }, + "isInternal": false + }, + { + "x": 519.36467, + "y": 157.85527, + "index": 8, + "body": { + "#": 3342 + }, + "isInternal": false + }, + { + "x": 523.56999, + "y": 154.5371, + "index": 9, + "body": { + "#": 3342 + }, + "isInternal": false + }, + { + "x": 528.79812, + "y": 153.37228, + "index": 10, + "body": { + "#": 3342 + }, + "isInternal": false + }, + { + "x": 534.01385, + "y": 154.59143, + "index": 11, + "body": { + "#": 3342 + }, + "isInternal": false + }, + { + "x": 538.18442, + "y": 157.95317, + "index": 12, + "body": { + "#": 3342 + }, + "isInternal": false + }, + { + "x": 540.48328, + "y": 162.79119, + "index": 13, + "body": { + "#": 3342 + }, + "isInternal": false + }, + { + "x": 528.73551, + "y": 165.40812 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.36845, + "y": -0.19536 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3366 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3368 + }, + "max": { + "#": 3369 + } + }, + { + "x": 516.98774, + "y": 153.37228 + }, + { + "x": 540.5333, + "y": 180.35216 + }, + { + "x": 529.17386, + "y": 165.29926 + }, + [ + { + "#": 3372 + }, + { + "#": 3373 + }, + { + "#": 3374 + }, + { + "#": 3375 + }, + { + "#": 3376 + }, + { + "#": 3377 + }, + { + "#": 3378 + } + ], + { + "x": -0.89871, + "y": -0.43855 + }, + { + "x": -0.61944, + "y": -0.78505 + }, + { + "x": -0.21747, + "y": -0.97607 + }, + { + "x": 0.22761, + "y": -0.97375 + }, + { + "x": 0.62757, + "y": -0.77856 + }, + { + "x": 0.90322, + "y": -0.42918 + }, + { + "x": 0.99999, + "y": 0.0052 + }, + { + "id": "10,11,3,3", + "startCol": 10, + "endCol": 11, + "startRow": 3, + "endRow": 3 + }, + { + "id": 83, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3381 + }, + "angle": 0.0335, + "vertices": { + "#": 3382 + }, + "position": { + "#": 3397 + }, + "force": { + "#": 3398 + }, + "torque": 0, + "positionImpulse": { + "#": 3399 + }, + "constraintImpulse": { + "#": 3400 + }, + "totalContacts": 0, + "speed": 1.39727, + "angularSpeed": 0.00995, + "velocity": { + "#": 3401 + }, + "angularVelocity": -0.01843, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3402 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3403 + }, + "circleRadius": 12.37607, + "bounds": { + "#": 3405 + }, + "positionPrev": { + "#": 3408 + }, + "anglePrev": 0.05061, + "axes": { + "#": 3409 + }, + "area": 465.18983, + "mass": 0.46519, + "inverseMass": 2.14966, + "inertia": 137.79734, + "inverseInertia": 0.00726, + "parent": { + "#": 3380 + }, + "sleepCounter": 0, + "region": { + "#": 3417 + } + }, + [ + { + "#": 3380 + } + ], + [ + { + "#": 3383 + }, + { + "#": 3384 + }, + { + "#": 3385 + }, + { + "#": 3386 + }, + { + "#": 3387 + }, + { + "#": 3388 + }, + { + "#": 3389 + }, + { + "#": 3390 + }, + { + "#": 3391 + }, + { + "#": 3392 + }, + { + "#": 3393 + }, + { + "#": 3394 + }, + { + "#": 3395 + }, + { + "#": 3396 + } + ], + { + "x": 564.42722, + "y": 164.97884, + "index": 0, + "body": { + "#": 3380 + }, + "isInternal": false + }, + { + "x": 561.87237, + "y": 169.85801, + "index": 1, + "body": { + "#": 3380 + }, + "isInternal": false + }, + { + "x": 557.45378, + "y": 173.14587, + "index": 2, + "body": { + "#": 3380 + }, + "isInternal": false + }, + { + "x": 552.04573, + "y": 174.19134, + "index": 3, + "body": { + "#": 3380 + }, + "isInternal": false + }, + { + "x": 546.71981, + "y": 172.78618, + "index": 4, + "body": { + "#": 3380 + }, + "isInternal": false + }, + { + "x": 542.53123, + "y": 169.20989, + "index": 5, + "body": { + "#": 3380 + }, + "isInternal": false + }, + { + "x": 540.30875, + "y": 164.17063, + "index": 6, + "body": { + "#": 3380 + }, + "isInternal": false + }, + { + "x": 540.49322, + "y": 158.66572, + "index": 7, + "body": { + "#": 3380 + }, + "isInternal": false + }, + { + "x": 543.04806, + "y": 153.78655, + "index": 8, + "body": { + "#": 3380 + }, + "isInternal": false + }, + { + "x": 547.46666, + "y": 150.49869, + "index": 9, + "body": { + "#": 3380 + }, + "isInternal": false + }, + { + "x": 552.8747, + "y": 149.45323, + "index": 10, + "body": { + "#": 3380 + }, + "isInternal": false + }, + { + "x": 558.20063, + "y": 150.85838, + "index": 11, + "body": { + "#": 3380 + }, + "isInternal": false + }, + { + "x": 562.38921, + "y": 154.43467, + "index": 12, + "body": { + "#": 3380 + }, + "isInternal": false + }, + { + "x": 564.61168, + "y": 159.47393, + "index": 13, + "body": { + "#": 3380 + }, + "isInternal": false + }, + { + "x": 552.46022, + "y": 161.82228 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.54455, + "y": 1.69204 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3404 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3406 + }, + "max": { + "#": 3407 + } + }, + { + "x": 540.00977, + "y": 149.45323 + }, + { + "x": 564.61168, + "y": 175.55625 + }, + { + "x": 552.87785, + "y": 160.30481 + }, + [ + { + "#": 3410 + }, + { + "#": 3411 + }, + { + "#": 3412 + }, + { + "#": 3413 + }, + { + "#": 3414 + }, + { + "#": 3415 + }, + { + "#": 3416 + } + ], + { + "x": -0.8859, + "y": -0.46388 + }, + { + "x": -0.59696, + "y": -0.80227 + }, + { + "x": -0.1898, + "y": -0.98182 + }, + { + "x": 0.2551, + "y": -0.96691 + }, + { + "x": 0.64933, + "y": -0.7605 + }, + { + "x": 0.91497, + "y": -0.40353 + }, + { + "x": 0.99944, + "y": 0.03349 + }, + { + "id": "11,11,3,3", + "startCol": 11, + "endCol": 11, + "startRow": 3, + "endRow": 3 + }, + { + "id": 84, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3419 + }, + "angle": 0.00015, + "vertices": { + "#": 3420 + }, + "position": { + "#": 3435 + }, + "force": { + "#": 3436 + }, + "torque": 0, + "positionImpulse": { + "#": 3437 + }, + "constraintImpulse": { + "#": 3438 + }, + "totalContacts": 0, + "speed": 2.90769, + "angularSpeed": 0.00002, + "velocity": { + "#": 3439 + }, + "angularVelocity": 0.00002, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3440 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3441 + }, + "circleRadius": 13.44663, + "bounds": { + "#": 3443 + }, + "positionPrev": { + "#": 3446 + }, + "anglePrev": 0.00013, + "axes": { + "#": 3447 + }, + "area": 549.15125, + "mass": 0.54915, + "inverseMass": 1.82099, + "inertia": 192.02791, + "inverseInertia": 0.00521, + "parent": { + "#": 3418 + }, + "sleepCounter": 0, + "region": { + "#": 3455 + } + }, + [ + { + "#": 3418 + } + ], + [ + { + "#": 3421 + }, + { + "#": 3422 + }, + { + "#": 3423 + }, + { + "#": 3424 + }, + { + "#": 3425 + }, + { + "#": 3426 + }, + { + "#": 3427 + }, + { + "#": 3428 + }, + { + "#": 3429 + }, + { + "#": 3430 + }, + { + "#": 3431 + }, + { + "#": 3432 + }, + { + "#": 3433 + }, + { + "#": 3434 + } + ], + { + "x": 628.70215, + "y": 170.92233, + "index": 0, + "body": { + "#": 3418 + }, + "isInternal": false + }, + { + "x": 626.10534, + "y": 176.31394, + "index": 1, + "body": { + "#": 3418 + }, + "isInternal": false + }, + { + "x": 621.42578, + "y": 180.04423, + "index": 2, + "body": { + "#": 3418 + }, + "isInternal": false + }, + { + "x": 615.59158, + "y": 181.37535, + "index": 3, + "body": { + "#": 3418 + }, + "isInternal": false + }, + { + "x": 609.75778, + "y": 180.04247, + "index": 4, + "body": { + "#": 3418 + }, + "isInternal": false + }, + { + "x": 605.07934, + "y": 176.31077, + "index": 5, + "body": { + "#": 3418 + }, + "isInternal": false + }, + { + "x": 602.48415, + "y": 170.91838, + "index": 6, + "body": { + "#": 3418 + }, + "isInternal": false + }, + { + "x": 602.48506, + "y": 164.93438, + "index": 7, + "body": { + "#": 3418 + }, + "isInternal": false + }, + { + "x": 605.08187, + "y": 159.54277, + "index": 8, + "body": { + "#": 3418 + }, + "isInternal": false + }, + { + "x": 609.76143, + "y": 155.81247, + "index": 9, + "body": { + "#": 3418 + }, + "isInternal": false + }, + { + "x": 615.59563, + "y": 154.48135, + "index": 10, + "body": { + "#": 3418 + }, + "isInternal": false + }, + { + "x": 621.42943, + "y": 155.81423, + "index": 11, + "body": { + "#": 3418 + }, + "isInternal": false + }, + { + "x": 626.10787, + "y": 159.54594, + "index": 12, + "body": { + "#": 3418 + }, + "isInternal": false + }, + { + "x": 628.70306, + "y": 164.93833, + "index": 13, + "body": { + "#": 3418 + }, + "isInternal": false + }, + { + "x": 615.5936, + "y": 167.92835 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 2.96873, + "y": 0.00018 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.04716, + "y": 2.90731 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3442 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3444 + }, + "max": { + "#": 3445 + } + }, + { + "x": 602.48415, + "y": 154.48135 + }, + { + "x": 628.75022, + "y": 184.28266 + }, + { + "x": 615.54644, + "y": 165.02105 + }, + [ + { + "#": 3448 + }, + { + "#": 3449 + }, + { + "#": 3450 + }, + { + "#": 3451 + }, + { + "#": 3452 + }, + { + "#": 3453 + }, + { + "#": 3454 + } + ], + { + "x": -0.90095, + "y": -0.43393 + }, + { + "x": -0.62333, + "y": -0.78196 + }, + { + "x": -0.22244, + "y": -0.97495 + }, + { + "x": 0.22274, + "y": -0.97488 + }, + { + "x": 0.62357, + "y": -0.78177 + }, + { + "x": 0.90108, + "y": -0.43366 + }, + { + "x": 1, + "y": 0.00015 + }, + { + "id": "12,13,3,3", + "startCol": 12, + "endCol": 13, + "startRow": 3, + "endRow": 3 + }, + { + "id": 85, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3457 + }, + "angle": 0.00014, + "vertices": { + "#": 3458 + }, + "position": { + "#": 3473 + }, + "force": { + "#": 3474 + }, + "torque": 0, + "positionImpulse": { + "#": 3475 + }, + "constraintImpulse": { + "#": 3476 + }, + "totalContacts": 0, + "speed": 2.90634, + "angularSpeed": 0.00004, + "velocity": { + "#": 3477 + }, + "angularVelocity": 0.00004, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3478 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3479 + }, + "circleRadius": 13.51925, + "bounds": { + "#": 3481 + }, + "positionPrev": { + "#": 3484 + }, + "anglePrev": 0.0001, + "axes": { + "#": 3485 + }, + "area": 555.09128, + "mass": 0.55509, + "inverseMass": 1.80151, + "inertia": 196.20461, + "inverseInertia": 0.0051, + "parent": { + "#": 3456 + }, + "sleepCounter": 0, + "region": { + "#": 3493 + } + }, + [ + { + "#": 3456 + } + ], + [ + { + "#": 3459 + }, + { + "#": 3460 + }, + { + "#": 3461 + }, + { + "#": 3462 + }, + { + "#": 3463 + }, + { + "#": 3464 + }, + { + "#": 3465 + }, + { + "#": 3466 + }, + { + "#": 3467 + }, + { + "#": 3468 + }, + { + "#": 3469 + }, + { + "#": 3470 + }, + { + "#": 3471 + }, + { + "#": 3472 + } + ], + { + "x": 46.92662, + "y": 208.91716, + "index": 0, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 44.31585, + "y": 214.33779, + "index": 1, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 39.61131, + "y": 218.08812, + "index": 2, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 33.74512, + "y": 219.42628, + "index": 3, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 27.87931, + "y": 218.08645, + "index": 4, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 23.17585, + "y": 214.33477, + "index": 5, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 20.56662, + "y": 208.9134, + "index": 6, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 20.56748, + "y": 202.8974, + "index": 7, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 23.17825, + "y": 197.47678, + "index": 8, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 27.88279, + "y": 193.72645, + "index": 9, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 33.74898, + "y": 192.38828, + "index": 10, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 39.61479, + "y": 193.72812, + "index": 11, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 44.31825, + "y": 197.47979, + "index": 12, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 46.92748, + "y": 202.90116, + "index": 13, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 33.74705, + "y": 205.90728 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.13299, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00012, + "y": 2.90634 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3480 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3482 + }, + "max": { + "#": 3483 + } + }, + { + "x": 20.56662, + "y": 192.38828 + }, + { + "x": 46.92759, + "y": 222.33262 + }, + { + "x": 33.74693, + "y": 203.00094 + }, + [ + { + "#": 3486 + }, + { + "#": 3487 + }, + { + "#": 3488 + }, + { + "#": 3489 + }, + { + "#": 3490 + }, + { + "#": 3491 + }, + { + "#": 3492 + } + ], + { + "x": -0.90095, + "y": -0.43393 + }, + { + "x": -0.62335, + "y": -0.78195 + }, + { + "x": -0.2224, + "y": -0.97496 + }, + { + "x": 0.22268, + "y": -0.97489 + }, + { + "x": 0.62357, + "y": -0.78177 + }, + { + "x": 0.90107, + "y": -0.43367 + }, + { + "x": 1, + "y": 0.00014 + }, + { + "id": "0,0,4,4", + "startCol": 0, + "endCol": 0, + "startRow": 4, + "endRow": 4 + }, + { + "id": 86, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3495 + }, + "angle": 0.00005, + "vertices": { + "#": 3496 + }, + "position": { + "#": 3511 + }, + "force": { + "#": 3512 + }, + "torque": 0, + "positionImpulse": { + "#": 3513 + }, + "constraintImpulse": { + "#": 3514 + }, + "totalContacts": 0, + "speed": 2.90711, + "angularSpeed": 0.00001, + "velocity": { + "#": 3515 + }, + "angularVelocity": 0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3516 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3517 + }, + "circleRadius": 13.82849, + "bounds": { + "#": 3519 + }, + "positionPrev": { + "#": 3522 + }, + "anglePrev": 0.00004, + "axes": { + "#": 3523 + }, + "area": 580.8002, + "mass": 0.5808, + "inverseMass": 1.72176, + "inertia": 214.79982, + "inverseInertia": 0.00466, + "parent": { + "#": 3494 + }, + "sleepCounter": 0, + "region": { + "#": 3531 + } + }, + [ + { + "#": 3494 + } + ], + [ + { + "#": 3497 + }, + { + "#": 3498 + }, + { + "#": 3499 + }, + { + "#": 3500 + }, + { + "#": 3501 + }, + { + "#": 3502 + }, + { + "#": 3503 + }, + { + "#": 3504 + }, + { + "#": 3505 + }, + { + "#": 3506 + }, + { + "#": 3507 + }, + { + "#": 3508 + }, + { + "#": 3509 + }, + { + "#": 3510 + } + ], + { + "x": 74.53785, + "y": 206.16909, + "index": 0, + "body": { + "#": 3494 + }, + "isInternal": false + }, + { + "x": 71.86757, + "y": 211.71396, + "index": 1, + "body": { + "#": 3494 + }, + "isInternal": false + }, + { + "x": 67.05538, + "y": 215.55072, + "index": 2, + "body": { + "#": 3494 + }, + "isInternal": false + }, + { + "x": 61.05531, + "y": 216.91942, + "index": 3, + "body": { + "#": 3494 + }, + "isInternal": false + }, + { + "x": 55.05538, + "y": 215.55012, + "index": 4, + "body": { + "#": 3494 + }, + "isInternal": false + }, + { + "x": 50.24357, + "y": 211.71288, + "index": 5, + "body": { + "#": 3494 + }, + "isInternal": false + }, + { + "x": 47.57385, + "y": 206.16775, + "index": 6, + "body": { + "#": 3494 + }, + "isInternal": false + }, + { + "x": 47.57415, + "y": 200.01375, + "index": 7, + "body": { + "#": 3494 + }, + "isInternal": false + }, + { + "x": 50.24443, + "y": 194.46888, + "index": 8, + "body": { + "#": 3494 + }, + "isInternal": false + }, + { + "x": 55.05662, + "y": 190.63212, + "index": 9, + "body": { + "#": 3494 + }, + "isInternal": false + }, + { + "x": 61.05669, + "y": 189.26342, + "index": 10, + "body": { + "#": 3494 + }, + "isInternal": false + }, + { + "x": 67.05662, + "y": 190.63272, + "index": 11, + "body": { + "#": 3494 + }, + "isInternal": false + }, + { + "x": 71.86843, + "y": 194.46996, + "index": 12, + "body": { + "#": 3494 + }, + "isInternal": false + }, + { + "x": 74.53815, + "y": 200.01509, + "index": 13, + "body": { + "#": 3494 + }, + "isInternal": false + }, + { + "x": 61.056, + "y": 203.09142 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.35843, + "y": 0.00001 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00017, + "y": 2.90711 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3518 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3520 + }, + "max": { + "#": 3521 + } + }, + { + "x": 47.57385, + "y": 189.26342 + }, + { + "x": 74.53833, + "y": 219.82653 + }, + { + "x": 61.05583, + "y": 200.18431 + }, + [ + { + "#": 3524 + }, + { + "#": 3525 + }, + { + "#": 3526 + }, + { + "#": 3527 + }, + { + "#": 3528 + }, + { + "#": 3529 + }, + { + "#": 3530 + } + ], + { + "x": -0.90097, + "y": -0.43388 + }, + { + "x": -0.62341, + "y": -0.7819 + }, + { + "x": -0.2224, + "y": -0.97496 + }, + { + "x": 0.2225, + "y": -0.97493 + }, + { + "x": 0.62348, + "y": -0.78184 + }, + { + "x": 0.90101, + "y": -0.4338 + }, + { + "x": 1, + "y": 0.00005 + }, + { + "id": "0,1,3,4", + "startCol": 0, + "endCol": 1, + "startRow": 3, + "endRow": 4 + }, + { + "id": 87, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3533 + }, + "angle": 0, + "vertices": { + "#": 3534 + }, + "position": { + "#": 3553 + }, + "force": { + "#": 3554 + }, + "torque": 0, + "positionImpulse": { + "#": 3555 + }, + "constraintImpulse": { + "#": 3556 + }, + "totalContacts": 0, + "speed": 2.90726, + "angularSpeed": 0, + "velocity": { + "#": 3557 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3558 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3559 + }, + "circleRadius": 16.34967, + "bounds": { + "#": 3561 + }, + "positionPrev": { + "#": 3564 + }, + "anglePrev": 0, + "axes": { + "#": 3565 + }, + "area": 822.83818, + "mass": 0.82284, + "inverseMass": 1.21531, + "inertia": 431.06756, + "inverseInertia": 0.00232, + "parent": { + "#": 3532 + }, + "sleepCounter": 0, + "region": { + "#": 3575 + } + }, + [ + { + "#": 3532 + } + ], + [ + { + "#": 3535 + }, + { + "#": 3536 + }, + { + "#": 3537 + }, + { + "#": 3538 + }, + { + "#": 3539 + }, + { + "#": 3540 + }, + { + "#": 3541 + }, + { + "#": 3542 + }, + { + "#": 3543 + }, + { + "#": 3544 + }, + { + "#": 3545 + }, + { + "#": 3546 + }, + { + "#": 3547 + }, + { + "#": 3548 + }, + { + "#": 3549 + }, + { + "#": 3550 + }, + { + "#": 3551 + }, + { + "#": 3552 + } + ], + { + "x": 96.1981, + "y": 233.22413, + "index": 0, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 94.25607, + "y": 238.56012, + "index": 1, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 90.60605, + "y": 242.9101, + "index": 2, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 85.68904, + "y": 245.74908, + "index": 3, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 80.09703, + "y": 246.73505, + "index": 4, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 74.50504, + "y": 245.74902, + "index": 5, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 69.58805, + "y": 242.91, + "index": 6, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 65.93807, + "y": 238.55998, + "index": 7, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 63.9961, + "y": 233.22397, + "index": 8, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 63.99613, + "y": 227.54597, + "index": 9, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 65.93816, + "y": 222.20998, + "index": 10, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 69.58818, + "y": 217.86, + "index": 11, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 74.50519, + "y": 215.02102, + "index": 12, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 80.0972, + "y": 214.03505, + "index": 13, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 85.68919, + "y": 215.02108, + "index": 14, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 90.60618, + "y": 217.8601, + "index": 15, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 94.25616, + "y": 222.21012, + "index": 16, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 96.19813, + "y": 227.54613, + "index": 17, + "body": { + "#": 3532 + }, + "isInternal": false + }, + { + "x": 80.09711, + "y": 230.38505 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.03596, + "y": 1.04596 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00003, + "y": 2.90726 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3560 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3562 + }, + "max": { + "#": 3563 + } + }, + { + "x": 63.9961, + "y": 214.03505 + }, + { + "x": 96.19816, + "y": 249.64231 + }, + { + "x": 80.09708, + "y": 227.47779 + }, + [ + { + "#": 3566 + }, + { + "#": 3567 + }, + { + "#": 3568 + }, + { + "#": 3569 + }, + { + "#": 3570 + }, + { + "#": 3571 + }, + { + "#": 3572 + }, + { + "#": 3573 + }, + { + "#": 3574 + } + ], + { + "x": -0.9397, + "y": -0.342 + }, + { + "x": -0.76605, + "y": -0.64278 + }, + { + "x": -0.50002, + "y": -0.86602 + }, + { + "x": -0.17364, + "y": -0.98481 + }, + { + "x": 0.17365, + "y": -0.98481 + }, + { + "x": 0.50003, + "y": -0.86601 + }, + { + "x": 0.76605, + "y": -0.64278 + }, + { + "x": 0.9397, + "y": -0.34199 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "1,2,4,5", + "startCol": 1, + "endCol": 2, + "startRow": 4, + "endRow": 5 + }, + { + "id": 88, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3577 + }, + "angle": 0, + "vertices": { + "#": 3578 + }, + "position": { + "#": 3599 + }, + "force": { + "#": 3600 + }, + "torque": 0, + "positionImpulse": { + "#": 3601 + }, + "constraintImpulse": { + "#": 3602 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3603 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3604 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3605 + }, + "circleRadius": 18.24327, + "bounds": { + "#": 3607 + }, + "positionPrev": { + "#": 3610 + }, + "anglePrev": 0, + "axes": { + "#": 3611 + }, + "area": 1028.47806, + "mass": 1.02848, + "inverseMass": 0.97231, + "inertia": 673.43233, + "inverseInertia": 0.00148, + "parent": { + "#": 3576 + }, + "sleepCounter": 0, + "region": { + "#": 3622 + } + }, + [ + { + "#": 3576 + } + ], + [ + { + "#": 3579 + }, + { + "#": 3580 + }, + { + "#": 3581 + }, + { + "#": 3582 + }, + { + "#": 3583 + }, + { + "#": 3584 + }, + { + "#": 3585 + }, + { + "#": 3586 + }, + { + "#": 3587 + }, + { + "#": 3588 + }, + { + "#": 3589 + }, + { + "#": 3590 + }, + { + "#": 3591 + }, + { + "#": 3592 + }, + { + "#": 3593 + }, + { + "#": 3594 + }, + { + "#": 3595 + }, + { + "#": 3596 + }, + { + "#": 3597 + }, + { + "#": 3598 + } + ], + { + "x": 134.12094, + "y": 223.78468, + "index": 0, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 132.35693, + "y": 229.21268, + "index": 1, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 129.00193, + "y": 233.83068, + "index": 2, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 124.38393, + "y": 237.18567, + "index": 3, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 118.95592, + "y": 238.94967, + "index": 4, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 113.24792, + "y": 238.94966, + "index": 5, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 107.81993, + "y": 237.18566, + "index": 6, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 103.20193, + "y": 233.83065, + "index": 7, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 99.84693, + "y": 229.21265, + "index": 8, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 98.08294, + "y": 223.78465, + "index": 9, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 98.08294, + "y": 218.07665, + "index": 10, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 99.84695, + "y": 212.64865, + "index": 11, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 103.20195, + "y": 208.03065, + "index": 12, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 107.81995, + "y": 204.67566, + "index": 13, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 113.24796, + "y": 202.91166, + "index": 14, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 118.95596, + "y": 202.91167, + "index": 15, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 124.38395, + "y": 204.67567, + "index": 16, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 129.00195, + "y": 208.03068, + "index": 17, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 132.35695, + "y": 212.64868, + "index": 18, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 134.12094, + "y": 218.07668, + "index": 19, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 116.10194, + "y": 220.93067 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.22339, + "y": 0.19718 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00003, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3606 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3608 + }, + "max": { + "#": 3609 + } + }, + { + "x": 98.08294, + "y": 202.91166 + }, + { + "x": 134.12098, + "y": 241.85694 + }, + { + "x": 116.10191, + "y": 218.02339 + }, + [ + { + "#": 3612 + }, + { + "#": 3613 + }, + { + "#": 3614 + }, + { + "#": 3615 + }, + { + "#": 3616 + }, + { + "#": 3617 + }, + { + "#": 3618 + }, + { + "#": 3619 + }, + { + "#": 3620 + }, + { + "#": 3621 + } + ], + { + "x": -0.95104, + "y": -0.30907 + }, + { + "x": -0.80903, + "y": -0.58777 + }, + { + "x": -0.58776, + "y": -0.80903 + }, + { + "x": -0.30907, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30907, + "y": -0.95104 + }, + { + "x": 0.58777, + "y": -0.80903 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 0.95104, + "y": -0.30907 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,2,4,4", + "startCol": 2, + "endCol": 2, + "startRow": 4, + "endRow": 4 + }, + { + "id": 89, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3624 + }, + "angle": 0, + "vertices": { + "#": 3625 + }, + "position": { + "#": 3640 + }, + "force": { + "#": 3641 + }, + "torque": 0, + "positionImpulse": { + "#": 3642 + }, + "constraintImpulse": { + "#": 3643 + }, + "totalContacts": 0, + "speed": 2.90728, + "angularSpeed": 0, + "velocity": { + "#": 3644 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3645 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3646 + }, + "circleRadius": 12.96609, + "bounds": { + "#": 3648 + }, + "positionPrev": { + "#": 3651 + }, + "anglePrev": 0, + "axes": { + "#": 3652 + }, + "area": 510.6009, + "mass": 0.5106, + "inverseMass": 1.95848, + "inertia": 166.01355, + "inverseInertia": 0.00602, + "parent": { + "#": 3623 + }, + "sleepCounter": 0, + "region": { + "#": 3660 + } + }, + [ + { + "#": 3623 + } + ], + [ + { + "#": 3626 + }, + { + "#": 3627 + }, + { + "#": 3628 + }, + { + "#": 3629 + }, + { + "#": 3630 + }, + { + "#": 3631 + }, + { + "#": 3632 + }, + { + "#": 3633 + }, + { + "#": 3634 + }, + { + "#": 3635 + }, + { + "#": 3636 + }, + { + "#": 3637 + }, + { + "#": 3638 + }, + { + "#": 3639 + } + ], + { + "x": 152.58007, + "y": 254.37421, + "index": 0, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 150.07607, + "y": 259.57321, + "index": 1, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 145.56506, + "y": 263.1712, + "index": 2, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 139.93906, + "y": 264.4552, + "index": 3, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 134.31306, + "y": 263.17119, + "index": 4, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 129.80207, + "y": 259.57319, + "index": 5, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 127.29807, + "y": 254.37418, + "index": 6, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 127.29808, + "y": 248.60418, + "index": 7, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 129.80209, + "y": 243.40519, + "index": 8, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 134.31309, + "y": 239.80719, + "index": 9, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 139.93909, + "y": 238.5232, + "index": 10, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 145.56509, + "y": 239.8072, + "index": 11, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 150.07609, + "y": 243.40521, + "index": 12, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 152.58008, + "y": 248.60421, + "index": 13, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 139.93908, + "y": 251.4892 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.06399, + "y": 1.29896 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00002, + "y": 2.90728 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3647 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3649 + }, + "max": { + "#": 3650 + } + }, + { + "x": 127.29807, + "y": 238.5232 + }, + { + "x": 152.5801, + "y": 267.36248 + }, + { + "x": 139.93906, + "y": 248.58192 + }, + [ + { + "#": 3653 + }, + { + "#": 3654 + }, + { + "#": 3655 + }, + { + "#": 3656 + }, + { + "#": 3657 + }, + { + "#": 3658 + }, + { + "#": 3659 + } + ], + { + "x": -0.90095, + "y": -0.43393 + }, + { + "x": -0.62355, + "y": -0.78178 + }, + { + "x": -0.2225, + "y": -0.97493 + }, + { + "x": 0.22251, + "y": -0.97493 + }, + { + "x": 0.62355, + "y": -0.78178 + }, + { + "x": 0.90095, + "y": -0.43392 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,3,4,5", + "startCol": 2, + "endCol": 3, + "startRow": 4, + "endRow": 5 + }, + { + "id": 90, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3662 + }, + "angle": 0, + "vertices": { + "#": 3663 + }, + "position": { + "#": 3684 + }, + "force": { + "#": 3685 + }, + "torque": 0, + "positionImpulse": { + "#": 3686 + }, + "constraintImpulse": { + "#": 3687 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3688 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3689 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3690 + }, + "circleRadius": 18.049, + "bounds": { + "#": 3692 + }, + "positionPrev": { + "#": 3695 + }, + "anglePrev": 0, + "axes": { + "#": 3696 + }, + "area": 1006.70047, + "mass": 1.0067, + "inverseMass": 0.99334, + "inertia": 645.21498, + "inverseInertia": 0.00155, + "parent": { + "#": 3661 + }, + "sleepCounter": 0, + "region": { + "#": 3707 + } + }, + [ + { + "#": 3661 + } + ], + [ + { + "#": 3664 + }, + { + "#": 3665 + }, + { + "#": 3666 + }, + { + "#": 3667 + }, + { + "#": 3668 + }, + { + "#": 3669 + }, + { + "#": 3670 + }, + { + "#": 3671 + }, + { + "#": 3672 + }, + { + "#": 3673 + }, + { + "#": 3674 + }, + { + "#": 3675 + }, + { + "#": 3676 + }, + { + "#": 3677 + }, + { + "#": 3678 + }, + { + "#": 3679 + }, + { + "#": 3680 + }, + { + "#": 3681 + }, + { + "#": 3682 + }, + { + "#": 3683 + } + ], + { + "x": 199.13409, + "y": 279.06432, + "index": 0, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 197.38908, + "y": 284.43532, + "index": 1, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 194.07008, + "y": 289.00432, + "index": 2, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 189.50108, + "y": 292.32332, + "index": 3, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 184.13008, + "y": 294.06831, + "index": 4, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 178.48408, + "y": 294.06831, + "index": 5, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 173.11308, + "y": 292.32331, + "index": 6, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 168.54408, + "y": 289.0043, + "index": 7, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 165.22508, + "y": 284.4353, + "index": 8, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 163.48009, + "y": 279.0643, + "index": 9, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 163.48009, + "y": 273.4183, + "index": 10, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 165.22509, + "y": 268.0473, + "index": 11, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 168.5441, + "y": 263.4783, + "index": 12, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 173.1131, + "y": 260.15931, + "index": 13, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 178.4841, + "y": 258.41431, + "index": 14, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 184.1301, + "y": 258.41431, + "index": 15, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 189.5011, + "y": 260.15932, + "index": 16, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 194.0701, + "y": 263.47832, + "index": 17, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 197.38909, + "y": 268.04732, + "index": 18, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 199.13409, + "y": 273.41832, + "index": 19, + "body": { + "#": 3661 + }, + "isInternal": false + }, + { + "x": 181.30709, + "y": 276.24131 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.08101, + "y": 1.58835 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3691 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3693 + }, + "max": { + "#": 3694 + } + }, + { + "x": 163.48009, + "y": 258.41431 + }, + { + "x": 199.13409, + "y": 296.97558 + }, + { + "x": 181.30708, + "y": 273.33404 + }, + [ + { + "#": 3697 + }, + { + "#": 3698 + }, + { + "#": 3699 + }, + { + "#": 3700 + }, + { + "#": 3701 + }, + { + "#": 3702 + }, + { + "#": 3703 + }, + { + "#": 3704 + }, + { + "#": 3705 + }, + { + "#": 3706 + } + ], + { + "x": -0.95106, + "y": -0.30899 + }, + { + "x": -0.80906, + "y": -0.58772 + }, + { + "x": -0.58772, + "y": -0.80907 + }, + { + "x": -0.30899, + "y": -0.95106 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30899, + "y": -0.95106 + }, + { + "x": 0.58772, + "y": -0.80906 + }, + { + "x": 0.80907, + "y": -0.58772 + }, + { + "x": 0.95106, + "y": -0.30899 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,5,6", + "startCol": 3, + "endCol": 4, + "startRow": 5, + "endRow": 6 + }, + { + "id": 91, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3709 + }, + "angle": 0, + "vertices": { + "#": 3710 + }, + "position": { + "#": 3731 + }, + "force": { + "#": 3732 + }, + "torque": 0, + "positionImpulse": { + "#": 3733 + }, + "constraintImpulse": { + "#": 3734 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3735 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3736 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3737 + }, + "circleRadius": 19.54137, + "bounds": { + "#": 3739 + }, + "positionPrev": { + "#": 3742 + }, + "anglePrev": 0, + "axes": { + "#": 3743 + }, + "area": 1180.03242, + "mass": 1.18003, + "inverseMass": 0.84743, + "inertia": 886.52662, + "inverseInertia": 0.00113, + "parent": { + "#": 3708 + }, + "sleepCounter": 0, + "region": { + "#": 3754 + } + }, + [ + { + "#": 3708 + } + ], + [ + { + "#": 3711 + }, + { + "#": 3712 + }, + { + "#": 3713 + }, + { + "#": 3714 + }, + { + "#": 3715 + }, + { + "#": 3716 + }, + { + "#": 3717 + }, + { + "#": 3718 + }, + { + "#": 3719 + }, + { + "#": 3720 + }, + { + "#": 3721 + }, + { + "#": 3722 + }, + { + "#": 3723 + }, + { + "#": 3724 + }, + { + "#": 3725 + }, + { + "#": 3726 + }, + { + "#": 3727 + }, + { + "#": 3728 + }, + { + "#": 3729 + }, + { + "#": 3730 + } + ], + { + "x": 211.87961, + "y": 228.66406, + "index": 0, + "body": { + "#": 3708 + }, + "isInternal": false + }, + { + "x": 209.98961, + "y": 234.47906, + "index": 1, + "body": { + "#": 3708 + }, + "isInternal": false + }, + { + "x": 206.39661, + "y": 239.42507, + "index": 2, + "body": { + "#": 3708 + }, + "isInternal": false + }, + { + "x": 201.45061, + "y": 243.01807, + "index": 3, + "body": { + "#": 3708 + }, + "isInternal": false + }, + { + "x": 195.63561, + "y": 244.90807, + "index": 4, + "body": { + "#": 3708 + }, + "isInternal": false + }, + { + "x": 189.52161, + "y": 244.90807, + "index": 5, + "body": { + "#": 3708 + }, + "isInternal": false + }, + { + "x": 183.70661, + "y": 243.01807, + "index": 6, + "body": { + "#": 3708 + }, + "isInternal": false + }, + { + "x": 178.76061, + "y": 239.42508, + "index": 7, + "body": { + "#": 3708 + }, + "isInternal": false + }, + { + "x": 175.16761, + "y": 234.47908, + "index": 8, + "body": { + "#": 3708 + }, + "isInternal": false + }, + { + "x": 173.27761, + "y": 228.66408, + "index": 9, + "body": { + "#": 3708 + }, + "isInternal": false + }, + { + "x": 173.27761, + "y": 222.55008, + "index": 10, + "body": { + "#": 3708 + }, + "isInternal": false + }, + { + "x": 175.1676, + "y": 216.73508, + "index": 11, + "body": { + "#": 3708 + }, + "isInternal": false + }, + { + "x": 178.7606, + "y": 211.78908, + "index": 12, + "body": { + "#": 3708 + }, + "isInternal": false + }, + { + "x": 183.7066, + "y": 208.19607, + "index": 13, + "body": { + "#": 3708 + }, + "isInternal": false + }, + { + "x": 189.5216, + "y": 206.30607, + "index": 14, + "body": { + "#": 3708 + }, + "isInternal": false + }, + { + "x": 195.6356, + "y": 206.30607, + "index": 15, + "body": { + "#": 3708 + }, + "isInternal": false + }, + { + "x": 201.4506, + "y": 208.19607, + "index": 16, + "body": { + "#": 3708 + }, + "isInternal": false + }, + { + "x": 206.3966, + "y": 211.78907, + "index": 17, + "body": { + "#": 3708 + }, + "isInternal": false + }, + { + "x": 209.9896, + "y": 216.73506, + "index": 18, + "body": { + "#": 3708 + }, + "isInternal": false + }, + { + "x": 211.87961, + "y": 222.55006, + "index": 19, + "body": { + "#": 3708 + }, + "isInternal": false + }, + { + "x": 192.57861, + "y": 225.60707 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3738 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3740 + }, + "max": { + "#": 3741 + } + }, + { + "x": 173.2776, + "y": 206.30607 + }, + { + "x": 211.87961, + "y": 247.81534 + }, + { + "x": 192.57861, + "y": 222.6998 + }, + [ + { + "#": 3744 + }, + { + "#": 3745 + }, + { + "#": 3746 + }, + { + "#": 3747 + }, + { + "#": 3748 + }, + { + "#": 3749 + }, + { + "#": 3750 + }, + { + "#": 3751 + }, + { + "#": 3752 + }, + { + "#": 3753 + } + ], + { + "x": -0.95103, + "y": -0.3091 + }, + { + "x": -0.80905, + "y": -0.58773 + }, + { + "x": -0.58773, + "y": -0.80905 + }, + { + "x": -0.3091, + "y": -0.95103 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3091, + "y": -0.95103 + }, + { + "x": 0.58773, + "y": -0.80905 + }, + { + "x": 0.80905, + "y": -0.58773 + }, + { + "x": 0.95103, + "y": -0.3091 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,4,5", + "startCol": 3, + "endCol": 4, + "startRow": 4, + "endRow": 5 + }, + { + "id": 92, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3756 + }, + "angle": 0, + "vertices": { + "#": 3757 + }, + "position": { + "#": 3772 + }, + "force": { + "#": 3773 + }, + "torque": 0, + "positionImpulse": { + "#": 3774 + }, + "constraintImpulse": { + "#": 3775 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3776 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3777 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3778 + }, + "circleRadius": 13.12221, + "bounds": { + "#": 3780 + }, + "positionPrev": { + "#": 3783 + }, + "anglePrev": 0, + "axes": { + "#": 3784 + }, + "area": 522.98425, + "mass": 0.52298, + "inverseMass": 1.9121, + "inertia": 174.16369, + "inverseInertia": 0.00574, + "parent": { + "#": 3755 + }, + "sleepCounter": 0, + "region": { + "#": 3792 + } + }, + [ + { + "#": 3755 + } + ], + [ + { + "#": 3758 + }, + { + "#": 3759 + }, + { + "#": 3760 + }, + { + "#": 3761 + }, + { + "#": 3762 + }, + { + "#": 3763 + }, + { + "#": 3764 + }, + { + "#": 3765 + }, + { + "#": 3766 + }, + { + "#": 3767 + }, + { + "#": 3768 + }, + { + "#": 3769 + }, + { + "#": 3770 + }, + { + "#": 3771 + } + ], + { + "x": 268.57703, + "y": 206.75073, + "index": 0, + "body": { + "#": 3755 + }, + "isInternal": false + }, + { + "x": 266.04303, + "y": 212.01274, + "index": 1, + "body": { + "#": 3755 + }, + "isInternal": false + }, + { + "x": 261.47803, + "y": 215.65374, + "index": 2, + "body": { + "#": 3755 + }, + "isInternal": false + }, + { + "x": 255.78403, + "y": 216.95274, + "index": 3, + "body": { + "#": 3755 + }, + "isInternal": false + }, + { + "x": 250.09003, + "y": 215.65374, + "index": 4, + "body": { + "#": 3755 + }, + "isInternal": false + }, + { + "x": 245.52503, + "y": 212.01274, + "index": 5, + "body": { + "#": 3755 + }, + "isInternal": false + }, + { + "x": 242.99103, + "y": 206.75074, + "index": 6, + "body": { + "#": 3755 + }, + "isInternal": false + }, + { + "x": 242.99103, + "y": 200.91074, + "index": 7, + "body": { + "#": 3755 + }, + "isInternal": false + }, + { + "x": 245.52502, + "y": 195.64874, + "index": 8, + "body": { + "#": 3755 + }, + "isInternal": false + }, + { + "x": 250.09002, + "y": 192.00774, + "index": 9, + "body": { + "#": 3755 + }, + "isInternal": false + }, + { + "x": 255.78402, + "y": 190.70874, + "index": 10, + "body": { + "#": 3755 + }, + "isInternal": false + }, + { + "x": 261.47802, + "y": 192.00774, + "index": 11, + "body": { + "#": 3755 + }, + "isInternal": false + }, + { + "x": 266.04302, + "y": 195.64874, + "index": 12, + "body": { + "#": 3755 + }, + "isInternal": false + }, + { + "x": 268.57703, + "y": 200.91073, + "index": 13, + "body": { + "#": 3755 + }, + "isInternal": false + }, + { + "x": 255.78403, + "y": 203.83074 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00001, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3779 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3781 + }, + "max": { + "#": 3782 + } + }, + { + "x": 242.99103, + "y": 190.70874 + }, + { + "x": 268.57703, + "y": 216.95274 + }, + { + "x": 255.78404, + "y": 200.92347 + }, + [ + { + "#": 3785 + }, + { + "#": 3786 + }, + { + "#": 3787 + }, + { + "#": 3788 + }, + { + "#": 3789 + }, + { + "#": 3790 + }, + { + "#": 3791 + } + ], + { + "x": -0.90097, + "y": -0.43388 + }, + { + "x": -0.62355, + "y": -0.78179 + }, + { + "x": -0.22242, + "y": -0.97495 + }, + { + "x": 0.22242, + "y": -0.97495 + }, + { + "x": 0.62355, + "y": -0.78179 + }, + { + "x": 0.90097, + "y": -0.43388 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,3,4", + "startCol": 5, + "endCol": 5, + "startRow": 3, + "endRow": 4 + }, + { + "id": 93, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3794 + }, + "angle": 0, + "vertices": { + "#": 3795 + }, + "position": { + "#": 3808 + }, + "force": { + "#": 3809 + }, + "torque": 0, + "positionImpulse": { + "#": 3810 + }, + "constraintImpulse": { + "#": 3811 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3812 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3813 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3814 + }, + "circleRadius": 11.87796, + "bounds": { + "#": 3816 + }, + "positionPrev": { + "#": 3819 + }, + "anglePrev": 0, + "axes": { + "#": 3820 + }, + "area": 423.24481, + "mass": 0.42324, + "inverseMass": 2.3627, + "inertia": 114.09085, + "inverseInertia": 0.00876, + "parent": { + "#": 3793 + }, + "sleepCounter": 0, + "region": { + "#": 3827 + } + }, + [ + { + "#": 3793 + } + ], + [ + { + "#": 3796 + }, + { + "#": 3797 + }, + { + "#": 3798 + }, + { + "#": 3799 + }, + { + "#": 3800 + }, + { + "#": 3801 + }, + { + "#": 3802 + }, + { + "#": 3803 + }, + { + "#": 3804 + }, + { + "#": 3805 + }, + { + "#": 3806 + }, + { + "#": 3807 + } + ], + { + "x": 295.73535, + "y": 212.43218, + "index": 0, + "body": { + "#": 3793 + }, + "isInternal": false + }, + { + "x": 292.66137, + "y": 217.75719, + "index": 1, + "body": { + "#": 3793 + }, + "isInternal": false + }, + { + "x": 287.33638, + "y": 220.83121, + "index": 2, + "body": { + "#": 3793 + }, + "isInternal": false + }, + { + "x": 281.18838, + "y": 220.83123, + "index": 3, + "body": { + "#": 3793 + }, + "isInternal": false + }, + { + "x": 275.86337, + "y": 217.75725, + "index": 4, + "body": { + "#": 3793 + }, + "isInternal": false + }, + { + "x": 272.78935, + "y": 212.43226, + "index": 5, + "body": { + "#": 3793 + }, + "isInternal": false + }, + { + "x": 272.78932, + "y": 206.28426, + "index": 6, + "body": { + "#": 3793 + }, + "isInternal": false + }, + { + "x": 275.86331, + "y": 200.95925, + "index": 7, + "body": { + "#": 3793 + }, + "isInternal": false + }, + { + "x": 281.1883, + "y": 197.88523, + "index": 8, + "body": { + "#": 3793 + }, + "isInternal": false + }, + { + "x": 287.3363, + "y": 197.88521, + "index": 9, + "body": { + "#": 3793 + }, + "isInternal": false + }, + { + "x": 292.66131, + "y": 200.95919, + "index": 10, + "body": { + "#": 3793 + }, + "isInternal": false + }, + { + "x": 295.73532, + "y": 206.28418, + "index": 11, + "body": { + "#": 3793 + }, + "isInternal": false + }, + { + "x": 284.26234, + "y": 209.35822 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.20791, + "y": 0.10325 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00001, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3815 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3817 + }, + "max": { + "#": 3818 + } + }, + { + "x": 272.78932, + "y": 197.88521 + }, + { + "x": 295.73535, + "y": 223.7385 + }, + { + "x": 284.26234, + "y": 206.45096 + }, + [ + { + "#": 3821 + }, + { + "#": 3822 + }, + { + "#": 3823 + }, + { + "#": 3824 + }, + { + "#": 3825 + }, + { + "#": 3826 + } + ], + { + "x": -0.86605, + "y": -0.49995 + }, + { + "x": -0.49996, + "y": -0.86605 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.49995, + "y": -0.86605 + }, + { + "x": 0.86605, + "y": -0.49996 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,4,4", + "startCol": 5, + "endCol": 6, + "startRow": 4, + "endRow": 4 + }, + { + "id": 94, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3829 + }, + "angle": -0.00001, + "vertices": { + "#": 3830 + }, + "position": { + "#": 3843 + }, + "force": { + "#": 3844 + }, + "torque": 0, + "positionImpulse": { + "#": 3845 + }, + "constraintImpulse": { + "#": 3846 + }, + "totalContacts": 0, + "speed": 2.90726, + "angularSpeed": 0, + "velocity": { + "#": 3847 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3848 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3849 + }, + "circleRadius": 10.74687, + "bounds": { + "#": 3851 + }, + "positionPrev": { + "#": 3854 + }, + "anglePrev": -0.00001, + "axes": { + "#": 3855 + }, + "area": 346.48784, + "mass": 0.34649, + "inverseMass": 2.8861, + "inertia": 76.46163, + "inverseInertia": 0.01308, + "parent": { + "#": 3828 + }, + "sleepCounter": 0, + "region": { + "#": 3862 + } + }, + [ + { + "#": 3828 + } + ], + [ + { + "#": 3831 + }, + { + "#": 3832 + }, + { + "#": 3833 + }, + { + "#": 3834 + }, + { + "#": 3835 + }, + { + "#": 3836 + }, + { + "#": 3837 + }, + { + "#": 3838 + }, + { + "#": 3839 + }, + { + "#": 3840 + }, + { + "#": 3841 + }, + { + "#": 3842 + } + ], + { + "x": 314.59598, + "y": 226.74383, + "index": 0, + "body": { + "#": 3828 + }, + "isInternal": false + }, + { + "x": 311.81401, + "y": 231.56184, + "index": 1, + "body": { + "#": 3828 + }, + "isInternal": false + }, + { + "x": 306.99603, + "y": 234.34387, + "index": 2, + "body": { + "#": 3828 + }, + "isInternal": false + }, + { + "x": 301.43403, + "y": 234.34391, + "index": 3, + "body": { + "#": 3828 + }, + "isInternal": false + }, + { + "x": 296.61601, + "y": 231.56194, + "index": 4, + "body": { + "#": 3828 + }, + "isInternal": false + }, + { + "x": 293.83398, + "y": 226.74396, + "index": 5, + "body": { + "#": 3828 + }, + "isInternal": false + }, + { + "x": 293.83394, + "y": 221.18196, + "index": 6, + "body": { + "#": 3828 + }, + "isInternal": false + }, + { + "x": 296.61591, + "y": 216.36394, + "index": 7, + "body": { + "#": 3828 + }, + "isInternal": false + }, + { + "x": 301.4339, + "y": 213.58191, + "index": 8, + "body": { + "#": 3828 + }, + "isInternal": false + }, + { + "x": 306.9959, + "y": 213.58187, + "index": 9, + "body": { + "#": 3828 + }, + "isInternal": false + }, + { + "x": 311.81391, + "y": 216.36384, + "index": 10, + "body": { + "#": 3828 + }, + "isInternal": false + }, + { + "x": 314.59594, + "y": 221.18183, + "index": 11, + "body": { + "#": 3828 + }, + "isInternal": false + }, + { + "x": 304.21496, + "y": 223.96289 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.15115, + "y": 0.39826 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00001, + "y": 2.90726 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3850 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3852 + }, + "max": { + "#": 3853 + } + }, + { + "x": 293.83394, + "y": 213.58187 + }, + { + "x": 314.59598, + "y": 237.25117 + }, + { + "x": 304.21497, + "y": 221.05563 + }, + [ + { + "#": 3856 + }, + { + "#": 3857 + }, + { + "#": 3858 + }, + { + "#": 3859 + }, + { + "#": 3860 + }, + { + "#": 3861 + } + ], + { + "x": -0.866, + "y": -0.50004 + }, + { + "x": -0.50005, + "y": -0.866 + }, + { + "x": -0.00001, + "y": -1 + }, + { + "x": 0.50004, + "y": -0.866 + }, + { + "x": 0.866, + "y": -0.50005 + }, + { + "x": 1, + "y": -0.00001 + }, + { + "id": "6,6,4,4", + "startCol": 6, + "endCol": 6, + "startRow": 4, + "endRow": 4 + }, + { + "id": 95, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3864 + }, + "angle": 0, + "vertices": { + "#": 3865 + }, + "position": { + "#": 3884 + }, + "force": { + "#": 3885 + }, + "torque": 0, + "positionImpulse": { + "#": 3886 + }, + "constraintImpulse": { + "#": 3887 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3888 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3889 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3890 + }, + "circleRadius": 17.63019, + "bounds": { + "#": 3892 + }, + "positionPrev": { + "#": 3895 + }, + "anglePrev": 0, + "axes": { + "#": 3896 + }, + "area": 956.75751, + "mass": 0.95676, + "inverseMass": 1.0452, + "inertia": 582.80092, + "inverseInertia": 0.00172, + "parent": { + "#": 3863 + }, + "sleepCounter": 0, + "region": { + "#": 3906 + } + }, + [ + { + "#": 3863 + } + ], + [ + { + "#": 3866 + }, + { + "#": 3867 + }, + { + "#": 3868 + }, + { + "#": 3869 + }, + { + "#": 3870 + }, + { + "#": 3871 + }, + { + "#": 3872 + }, + { + "#": 3873 + }, + { + "#": 3874 + }, + { + "#": 3875 + }, + { + "#": 3876 + }, + { + "#": 3877 + }, + { + "#": 3878 + }, + { + "#": 3879 + }, + { + "#": 3880 + }, + { + "#": 3881 + }, + { + "#": 3882 + }, + { + "#": 3883 + } + ], + { + "x": 332.79626, + "y": 255.6573, + "index": 0, + "body": { + "#": 3863 + }, + "isInternal": false + }, + { + "x": 330.70229, + "y": 261.41131, + "index": 1, + "body": { + "#": 3863 + }, + "isInternal": false + }, + { + "x": 326.76631, + "y": 266.10233, + "index": 2, + "body": { + "#": 3863 + }, + "isInternal": false + }, + { + "x": 321.46432, + "y": 269.16336, + "index": 3, + "body": { + "#": 3863 + }, + "isInternal": false + }, + { + "x": 315.43433, + "y": 270.22638, + "index": 4, + "body": { + "#": 3863 + }, + "isInternal": false + }, + { + "x": 309.40432, + "y": 269.16341, + "index": 5, + "body": { + "#": 3863 + }, + "isInternal": false + }, + { + "x": 304.10231, + "y": 266.10244, + "index": 6, + "body": { + "#": 3863 + }, + "isInternal": false + }, + { + "x": 300.16629, + "y": 261.41146, + "index": 7, + "body": { + "#": 3863 + }, + "isInternal": false + }, + { + "x": 298.07226, + "y": 255.65747, + "index": 8, + "body": { + "#": 3863 + }, + "isInternal": false + }, + { + "x": 298.07223, + "y": 249.53547, + "index": 9, + "body": { + "#": 3863 + }, + "isInternal": false + }, + { + "x": 300.1662, + "y": 243.78146, + "index": 10, + "body": { + "#": 3863 + }, + "isInternal": false + }, + { + "x": 304.10218, + "y": 239.09044, + "index": 11, + "body": { + "#": 3863 + }, + "isInternal": false + }, + { + "x": 309.40417, + "y": 236.02941, + "index": 12, + "body": { + "#": 3863 + }, + "isInternal": false + }, + { + "x": 315.43416, + "y": 234.96638, + "index": 13, + "body": { + "#": 3863 + }, + "isInternal": false + }, + { + "x": 321.46417, + "y": 236.02936, + "index": 14, + "body": { + "#": 3863 + }, + "isInternal": false + }, + { + "x": 326.76618, + "y": 239.09033, + "index": 15, + "body": { + "#": 3863 + }, + "isInternal": false + }, + { + "x": 330.7022, + "y": 243.78131, + "index": 16, + "body": { + "#": 3863 + }, + "isInternal": false + }, + { + "x": 332.79623, + "y": 249.5353, + "index": 17, + "body": { + "#": 3863 + }, + "isInternal": false + }, + { + "x": 315.43425, + "y": 252.59638 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.25373, + "y": 0.80016 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00002, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3891 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3893 + }, + "max": { + "#": 3894 + } + }, + { + "x": 298.07221, + "y": 234.96638 + }, + { + "x": 332.79626, + "y": 273.13365 + }, + { + "x": 315.43427, + "y": 249.68911 + }, + [ + { + "#": 3897 + }, + { + "#": 3898 + }, + { + "#": 3899 + }, + { + "#": 3900 + }, + { + "#": 3901 + }, + { + "#": 3902 + }, + { + "#": 3903 + }, + { + "#": 3904 + }, + { + "#": 3905 + } + ], + { + "x": -0.93971, + "y": -0.34197 + }, + { + "x": -0.76606, + "y": -0.64276 + }, + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": -0.17361, + "y": -0.98481 + }, + { + "x": 0.1736, + "y": -0.98482 + }, + { + "x": 0.49998, + "y": -0.86604 + }, + { + "x": 0.76606, + "y": -0.64277 + }, + { + "x": 0.93971, + "y": -0.34198 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,6,4,5", + "startCol": 6, + "endCol": 6, + "startRow": 4, + "endRow": 5 + }, + { + "id": 96, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3908 + }, + "angle": -0.00001, + "vertices": { + "#": 3909 + }, + "position": { + "#": 3922 + }, + "force": { + "#": 3923 + }, + "torque": 0, + "positionImpulse": { + "#": 3924 + }, + "constraintImpulse": { + "#": 3925 + }, + "totalContacts": 0, + "speed": 2.90726, + "angularSpeed": 0, + "velocity": { + "#": 3926 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3927 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3928 + }, + "circleRadius": 11.16988, + "bounds": { + "#": 3930 + }, + "positionPrev": { + "#": 3933 + }, + "anglePrev": -0.00001, + "axes": { + "#": 3934 + }, + "area": 374.27761, + "mass": 0.37428, + "inverseMass": 2.67181, + "inertia": 89.21856, + "inverseInertia": 0.01121, + "parent": { + "#": 3907 + }, + "sleepCounter": 0, + "region": { + "#": 3941 + } + }, + [ + { + "#": 3907 + } + ], + [ + { + "#": 3910 + }, + { + "#": 3911 + }, + { + "#": 3912 + }, + { + "#": 3913 + }, + { + "#": 3914 + }, + { + "#": 3915 + }, + { + "#": 3916 + }, + { + "#": 3917 + }, + { + "#": 3918 + }, + { + "#": 3919 + }, + { + "#": 3920 + }, + { + "#": 3921 + } + ], + { + "x": 357.87014, + "y": 274.37554, + "index": 0, + "body": { + "#": 3907 + }, + "isInternal": false + }, + { + "x": 354.97918, + "y": 279.38257, + "index": 1, + "body": { + "#": 3907 + }, + "isInternal": false + }, + { + "x": 349.97221, + "y": 282.27361, + "index": 2, + "body": { + "#": 3907 + }, + "isInternal": false + }, + { + "x": 344.19021, + "y": 282.27366, + "index": 3, + "body": { + "#": 3907 + }, + "isInternal": false + }, + { + "x": 339.18318, + "y": 279.3827, + "index": 4, + "body": { + "#": 3907 + }, + "isInternal": false + }, + { + "x": 336.29214, + "y": 274.37573, + "index": 5, + "body": { + "#": 3907 + }, + "isInternal": false + }, + { + "x": 336.29209, + "y": 268.59373, + "index": 6, + "body": { + "#": 3907 + }, + "isInternal": false + }, + { + "x": 339.18305, + "y": 263.5867, + "index": 7, + "body": { + "#": 3907 + }, + "isInternal": false + }, + { + "x": 344.19002, + "y": 260.69566, + "index": 8, + "body": { + "#": 3907 + }, + "isInternal": false + }, + { + "x": 349.97202, + "y": 260.69561, + "index": 9, + "body": { + "#": 3907 + }, + "isInternal": false + }, + { + "x": 354.97905, + "y": 263.58657, + "index": 10, + "body": { + "#": 3907 + }, + "isInternal": false + }, + { + "x": 357.87009, + "y": 268.59354, + "index": 11, + "body": { + "#": 3907 + }, + "isInternal": false + }, + { + "x": 347.08112, + "y": 271.48463 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.14379, + "y": 1.28372 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00002, + "y": 2.90726 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3929 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3931 + }, + "max": { + "#": 3932 + } + }, + { + "x": 336.29207, + "y": 260.69561 + }, + { + "x": 357.87014, + "y": 285.18092 + }, + { + "x": 347.08113, + "y": 268.57737 + }, + [ + { + "#": 3935 + }, + { + "#": 3936 + }, + { + "#": 3937 + }, + { + "#": 3938 + }, + { + "#": 3939 + }, + { + "#": 3940 + } + ], + { + "x": -0.86601, + "y": -0.50002 + }, + { + "x": -0.50003, + "y": -0.86601 + }, + { + "x": -0.00001, + "y": -1 + }, + { + "x": 0.50002, + "y": -0.86601 + }, + { + "x": 0.86601, + "y": -0.50003 + }, + { + "x": 1, + "y": -0.00001 + }, + { + "id": "7,7,5,5", + "startCol": 7, + "endCol": 7, + "startRow": 5, + "endRow": 5 + }, + { + "id": 97, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3943 + }, + "angle": -0.08256, + "vertices": { + "#": 3944 + }, + "position": { + "#": 3961 + }, + "force": { + "#": 3962 + }, + "torque": 0, + "positionImpulse": { + "#": 3963 + }, + "constraintImpulse": { + "#": 3964 + }, + "totalContacts": 0, + "speed": 2.49776, + "angularSpeed": 0.02033, + "velocity": { + "#": 3965 + }, + "angularVelocity": -0.02033, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3966 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3967 + }, + "circleRadius": 15.19312, + "bounds": { + "#": 3969 + }, + "positionPrev": { + "#": 3972 + }, + "anglePrev": -0.06223, + "axes": { + "#": 3973 + }, + "area": 706.69119, + "mass": 0.70669, + "inverseMass": 1.41505, + "inertia": 317.97862, + "inverseInertia": 0.00314, + "parent": { + "#": 3942 + }, + "sleepCounter": 0, + "region": { + "#": 3982 + } + }, + [ + { + "#": 3942 + } + ], + [ + { + "#": 3945 + }, + { + "#": 3946 + }, + { + "#": 3947 + }, + { + "#": 3948 + }, + { + "#": 3949 + }, + { + "#": 3950 + }, + { + "#": 3951 + }, + { + "#": 3952 + }, + { + "#": 3953 + }, + { + "#": 3954 + }, + { + "#": 3955 + }, + { + "#": 3956 + }, + { + "#": 3957 + }, + { + "#": 3958 + }, + { + "#": 3959 + }, + { + "#": 3960 + } + ], + { + "x": 336.61455, + "y": 349.96018, + "index": 0, + "body": { + "#": 3942 + }, + "isInternal": false + }, + { + "x": 334.80596, + "y": 355.60556, + "index": 1, + "body": { + "#": 3942 + }, + "isInternal": false + }, + { + "x": 330.97394, + "y": 360.12899, + "index": 2, + "body": { + "#": 3942 + }, + "isInternal": false + }, + { + "x": 325.70263, + "y": 362.84094, + "index": 3, + "body": { + "#": 3942 + }, + "isInternal": false + }, + { + "x": 319.79483, + "y": 363.32981, + "index": 4, + "body": { + "#": 3942 + }, + "isInternal": false + }, + { + "x": 314.14945, + "y": 361.52121, + "index": 5, + "body": { + "#": 3942 + }, + "isInternal": false + }, + { + "x": 309.62602, + "y": 357.6892, + "index": 6, + "body": { + "#": 3942 + }, + "isInternal": false + }, + { + "x": 306.91407, + "y": 352.41789, + "index": 7, + "body": { + "#": 3942 + }, + "isInternal": false + }, + { + "x": 306.4252, + "y": 346.51008, + "index": 8, + "body": { + "#": 3942 + }, + "isInternal": false + }, + { + "x": 308.2338, + "y": 340.8647, + "index": 9, + "body": { + "#": 3942 + }, + "isInternal": false + }, + { + "x": 312.06581, + "y": 336.34128, + "index": 10, + "body": { + "#": 3942 + }, + "isInternal": false + }, + { + "x": 317.33712, + "y": 333.62932, + "index": 11, + "body": { + "#": 3942 + }, + "isInternal": false + }, + { + "x": 323.24493, + "y": 333.14045, + "index": 12, + "body": { + "#": 3942 + }, + "isInternal": false + }, + { + "x": 328.89031, + "y": 334.94905, + "index": 13, + "body": { + "#": 3942 + }, + "isInternal": false + }, + { + "x": 333.41373, + "y": 338.78107, + "index": 14, + "body": { + "#": 3942 + }, + "isInternal": false + }, + { + "x": 336.12568, + "y": 344.05237, + "index": 15, + "body": { + "#": 3942 + }, + "isInternal": false + }, + { + "x": 321.51988, + "y": 348.23513 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -3.1432, + "y": 1.19847 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.71289, + "y": 2.39387 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3968 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3970 + }, + "max": { + "#": 3971 + } + }, + { + "x": 305.71231, + "y": 333.14045 + }, + { + "x": 336.61455, + "y": 365.72368 + }, + { + "x": 322.23277, + "y": 345.84126 + }, + [ + { + "#": 3974 + }, + { + "#": 3975 + }, + { + "#": 3976 + }, + { + "#": 3977 + }, + { + "#": 3978 + }, + { + "#": 3979 + }, + { + "#": 3980 + }, + { + "#": 3981 + } + ], + { + "x": -0.95232, + "y": -0.30509 + }, + { + "x": -0.76301, + "y": -0.64638 + }, + { + "x": -0.45748, + "y": -0.88922 + }, + { + "x": -0.08247, + "y": -0.99659 + }, + { + "x": 0.30509, + "y": -0.95232 + }, + { + "x": 0.64638, + "y": -0.76301 + }, + { + "x": 0.88922, + "y": -0.45748 + }, + { + "x": 0.99659, + "y": -0.08247 + }, + { + "id": "6,7,6,7", + "startCol": 6, + "endCol": 7, + "startRow": 6, + "endRow": 7 + }, + { + "id": 98, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3984 + }, + "angle": -0.02022, + "vertices": { + "#": 3985 + }, + "position": { + "#": 4006 + }, + "force": { + "#": 4007 + }, + "torque": 0, + "positionImpulse": { + "#": 4008 + }, + "constraintImpulse": { + "#": 4009 + }, + "totalContacts": 0, + "speed": 0.34206, + "angularSpeed": 0.00372, + "velocity": { + "#": 4010 + }, + "angularVelocity": -0.00365, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4011 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4012 + }, + "circleRadius": 19.82335, + "bounds": { + "#": 4014 + }, + "positionPrev": { + "#": 4017 + }, + "anglePrev": -0.01659, + "axes": { + "#": 4018 + }, + "area": 1214.32715, + "mass": 1.21433, + "inverseMass": 0.8235, + "inertia": 938.80482, + "inverseInertia": 0.00107, + "parent": { + "#": 3983 + }, + "sleepCounter": 0, + "region": { + "#": 4029 + } + }, + [ + { + "#": 3983 + } + ], + [ + { + "#": 3986 + }, + { + "#": 3987 + }, + { + "#": 3988 + }, + { + "#": 3989 + }, + { + "#": 3990 + }, + { + "#": 3991 + }, + { + "#": 3992 + }, + { + "#": 3993 + }, + { + "#": 3994 + }, + { + "#": 3995 + }, + { + "#": 3996 + }, + { + "#": 3997 + }, + { + "#": 3998 + }, + { + "#": 3999 + }, + { + "#": 4000 + }, + { + "#": 4001 + }, + { + "#": 4002 + }, + { + "#": 4003 + }, + { + "#": 4004 + }, + { + "#": 4005 + } + ], + { + "x": 400.51704, + "y": 345.04776, + "index": 0, + "body": { + "#": 3983 + }, + "isInternal": false + }, + { + "x": 398.72072, + "y": 350.9843, + "index": 1, + "body": { + "#": 3983 + }, + "isInternal": false + }, + { + "x": 395.17692, + "y": 356.074, + "index": 2, + "body": { + "#": 3983 + }, + "isInternal": false + }, + { + "x": 390.23468, + "y": 359.82071, + "index": 3, + "body": { + "#": 3983 + }, + "isInternal": false + }, + { + "x": 384.37563, + "y": 361.85561, + "index": 4, + "body": { + "#": 3983 + }, + "isInternal": false + }, + { + "x": 378.1749, + "y": 361.98102, + "index": 5, + "body": { + "#": 3983 + }, + "isInternal": false + }, + { + "x": 372.23836, + "y": 360.18471, + "index": 6, + "body": { + "#": 3983 + }, + "isInternal": false + }, + { + "x": 367.14865, + "y": 356.64091, + "index": 7, + "body": { + "#": 3983 + }, + "isInternal": false + }, + { + "x": 363.40195, + "y": 351.69866, + "index": 8, + "body": { + "#": 3983 + }, + "isInternal": false + }, + { + "x": 361.36705, + "y": 345.83961, + "index": 9, + "body": { + "#": 3983 + }, + "isInternal": false + }, + { + "x": 361.24163, + "y": 339.63888, + "index": 10, + "body": { + "#": 3983 + }, + "isInternal": false + }, + { + "x": 363.03795, + "y": 333.70234, + "index": 11, + "body": { + "#": 3983 + }, + "isInternal": false + }, + { + "x": 366.58175, + "y": 328.61264, + "index": 12, + "body": { + "#": 3983 + }, + "isInternal": false + }, + { + "x": 371.524, + "y": 324.86593, + "index": 13, + "body": { + "#": 3983 + }, + "isInternal": false + }, + { + "x": 377.38304, + "y": 322.83103, + "index": 14, + "body": { + "#": 3983 + }, + "isInternal": false + }, + { + "x": 383.58378, + "y": 322.70561, + "index": 15, + "body": { + "#": 3983 + }, + "isInternal": false + }, + { + "x": 389.52031, + "y": 324.50193, + "index": 16, + "body": { + "#": 3983 + }, + "isInternal": false + }, + { + "x": 394.61002, + "y": 328.04573, + "index": 17, + "body": { + "#": 3983 + }, + "isInternal": false + }, + { + "x": 398.35673, + "y": 332.98798, + "index": 18, + "body": { + "#": 3983 + }, + "isInternal": false + }, + { + "x": 400.39162, + "y": 338.84703, + "index": 19, + "body": { + "#": 3983 + }, + "isInternal": false + }, + { + "x": 380.87934, + "y": 342.34332 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.18467, + "y": 0.06311 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4013 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4015 + }, + "max": { + "#": 4016 + } + }, + { + "x": 361.1047, + "y": 322.70561 + }, + { + "x": 400.51704, + "y": 362.29448 + }, + { + "x": 381.07193, + "y": 342.32176 + }, + [ + { + "#": 4019 + }, + { + "#": 4020 + }, + { + "#": 4021 + }, + { + "#": 4022 + }, + { + "#": 4023 + }, + { + "#": 4024 + }, + { + "#": 4025 + }, + { + "#": 4026 + }, + { + "#": 4027 + }, + { + "#": 4028 + } + ], + { + "x": -0.95714, + "y": -0.28962 + }, + { + "x": -0.82067, + "y": -0.57141 + }, + { + "x": -0.60412, + "y": -0.79689 + }, + { + "x": -0.32808, + "y": -0.94465 + }, + { + "x": -0.02022, + "y": -0.9998 + }, + { + "x": 0.28962, + "y": -0.95714 + }, + { + "x": 0.57141, + "y": -0.82067 + }, + { + "x": 0.79689, + "y": -0.60412 + }, + { + "x": 0.94465, + "y": -0.32808 + }, + { + "x": 0.9998, + "y": -0.02022 + }, + { + "id": "7,8,6,7", + "startCol": 7, + "endCol": 8, + "startRow": 6, + "endRow": 7 + }, + { + "id": 99, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4031 + }, + "angle": 0.00582, + "vertices": { + "#": 4032 + }, + "position": { + "#": 4053 + }, + "force": { + "#": 4054 + }, + "torque": 0, + "positionImpulse": { + "#": 4055 + }, + "constraintImpulse": { + "#": 4056 + }, + "totalContacts": 0, + "speed": 2.89493, + "angularSpeed": 0.00049, + "velocity": { + "#": 4057 + }, + "angularVelocity": -0.00171, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4058 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4059 + }, + "circleRadius": 19.2581, + "bounds": { + "#": 4061 + }, + "positionPrev": { + "#": 4064 + }, + "anglePrev": 0.00738, + "axes": { + "#": 4065 + }, + "area": 1146.07959, + "mass": 1.14608, + "inverseMass": 0.87254, + "inertia": 836.24486, + "inverseInertia": 0.0012, + "parent": { + "#": 4030 + }, + "sleepCounter": 0, + "region": { + "#": 4076 + } + }, + [ + { + "#": 4030 + } + ], + [ + { + "#": 4033 + }, + { + "#": 4034 + }, + { + "#": 4035 + }, + { + "#": 4036 + }, + { + "#": 4037 + }, + { + "#": 4038 + }, + { + "#": 4039 + }, + { + "#": 4040 + }, + { + "#": 4041 + }, + { + "#": 4042 + }, + { + "#": 4043 + }, + { + "#": 4044 + }, + { + "#": 4045 + }, + { + "#": 4046 + }, + { + "#": 4047 + }, + { + "#": 4048 + }, + { + "#": 4049 + }, + { + "#": 4050 + }, + { + "#": 4051 + }, + { + "#": 4052 + } + ], + { + "x": 484.8962, + "y": 168.74588, + "index": 0, + "body": { + "#": 4030 + }, + "isInternal": false + }, + { + "x": 483.00087, + "y": 174.46494, + "index": 1, + "body": { + "#": 4030 + }, + "isInternal": false + }, + { + "x": 479.43155, + "y": 179.31924, + "index": 2, + "body": { + "#": 4030 + }, + "isInternal": false + }, + { + "x": 474.53602, + "y": 182.8318, + "index": 3, + "body": { + "#": 4030 + }, + "isInternal": false + }, + { + "x": 468.79527, + "y": 184.66041, + "index": 4, + "body": { + "#": 4030 + }, + "isInternal": false + }, + { + "x": 462.76938, + "y": 184.62533, + "index": 5, + "body": { + "#": 4030 + }, + "isInternal": false + }, + { + "x": 457.05031, + "y": 182.73, + "index": 6, + "body": { + "#": 4030 + }, + "isInternal": false + }, + { + "x": 452.19601, + "y": 179.16068, + "index": 7, + "body": { + "#": 4030 + }, + "isInternal": false + }, + { + "x": 448.68345, + "y": 174.26515, + "index": 8, + "body": { + "#": 4030 + }, + "isInternal": false + }, + { + "x": 446.85484, + "y": 168.5244, + "index": 9, + "body": { + "#": 4030 + }, + "isInternal": false + }, + { + "x": 446.88992, + "y": 162.49851, + "index": 10, + "body": { + "#": 4030 + }, + "isInternal": false + }, + { + "x": 448.78525, + "y": 156.77944, + "index": 11, + "body": { + "#": 4030 + }, + "isInternal": false + }, + { + "x": 452.35457, + "y": 151.92514, + "index": 12, + "body": { + "#": 4030 + }, + "isInternal": false + }, + { + "x": 457.2501, + "y": 148.41258, + "index": 13, + "body": { + "#": 4030 + }, + "isInternal": false + }, + { + "x": 462.99085, + "y": 146.58397, + "index": 14, + "body": { + "#": 4030 + }, + "isInternal": false + }, + { + "x": 469.01674, + "y": 146.61905, + "index": 15, + "body": { + "#": 4030 + }, + "isInternal": false + }, + { + "x": 474.73581, + "y": 148.51438, + "index": 16, + "body": { + "#": 4030 + }, + "isInternal": false + }, + { + "x": 479.59011, + "y": 152.0837, + "index": 17, + "body": { + "#": 4030 + }, + "isInternal": false + }, + { + "x": 483.10267, + "y": 156.97923, + "index": 18, + "body": { + "#": 4030 + }, + "isInternal": false + }, + { + "x": 484.93128, + "y": 162.71998, + "index": 19, + "body": { + "#": 4030 + }, + "isInternal": false + }, + { + "x": 465.89306, + "y": 165.62219 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.14825, + "y": 0.18591 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 1.55131, + "y": 2.56898 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4060 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4062 + }, + "max": { + "#": 4063 + } + }, + { + "x": 446.85484, + "y": 146.58397 + }, + { + "x": 486.40155, + "y": 187.15419 + }, + { + "x": 464.30435, + "y": 163.06529 + }, + [ + { + "#": 4066 + }, + { + "#": 4067 + }, + { + "#": 4068 + }, + { + "#": 4069 + }, + { + "#": 4070 + }, + { + "#": 4071 + }, + { + "#": 4072 + }, + { + "#": 4073 + }, + { + "#": 4074 + }, + { + "#": 4075 + } + ], + { + "x": -0.94923, + "y": -0.31458 + }, + { + "x": -0.80565, + "y": -0.59239 + }, + { + "x": -0.58297, + "y": -0.8125 + }, + { + "x": -0.30351, + "y": -0.95283 + }, + { + "x": 0.00582, + "y": -0.99998 + }, + { + "x": 0.31458, + "y": -0.94923 + }, + { + "x": 0.59239, + "y": -0.80565 + }, + { + "x": 0.8125, + "y": -0.58297 + }, + { + "x": 0.95283, + "y": -0.30351 + }, + { + "x": 0.99998, + "y": 0.00582 + }, + { + "id": "9,10,3,3", + "startCol": 9, + "endCol": 10, + "startRow": 3, + "endRow": 3 + }, + { + "id": 100, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4078 + }, + "angle": 0.01219, + "vertices": { + "#": 4079 + }, + "position": { + "#": 4098 + }, + "force": { + "#": 4099 + }, + "torque": 0, + "positionImpulse": { + "#": 4100 + }, + "constraintImpulse": { + "#": 4101 + }, + "totalContacts": 0, + "speed": 1.44767, + "angularSpeed": 0.0097, + "velocity": { + "#": 4102 + }, + "angularVelocity": 0.00918, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4103 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4104 + }, + "circleRadius": 16.21343, + "bounds": { + "#": 4106 + }, + "positionPrev": { + "#": 4109 + }, + "anglePrev": 0.00301, + "axes": { + "#": 4110 + }, + "area": 809.172, + "mass": 0.80917, + "inverseMass": 1.23583, + "inertia": 416.86762, + "inverseInertia": 0.0024, + "parent": { + "#": 4077 + }, + "sleepCounter": 0, + "region": { + "#": 4120 + } + }, + [ + { + "#": 4077 + } + ], + [ + { + "#": 4080 + }, + { + "#": 4081 + }, + { + "#": 4082 + }, + { + "#": 4083 + }, + { + "#": 4084 + }, + { + "#": 4085 + }, + { + "#": 4086 + }, + { + "#": 4087 + }, + { + "#": 4088 + }, + { + "#": 4089 + }, + { + "#": 4090 + }, + { + "#": 4091 + }, + { + "#": 4092 + }, + { + "#": 4093 + }, + { + "#": 4094 + }, + { + "#": 4095 + }, + { + "#": 4096 + }, + { + "#": 4097 + } + ], + { + "x": 515.46727, + "y": 183.97895, + "index": 0, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 513.47691, + "y": 189.24708, + "index": 1, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 509.8056, + "y": 193.51564, + "index": 2, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 504.89464, + "y": 196.27198, + "index": 3, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 499.33814, + "y": 197.18132, + "index": 4, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 493.80546, + "y": 196.1368, + "index": 5, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 488.96315, + "y": 193.26156, + "index": 6, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 485.397, + "y": 188.90477, + "index": 7, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 483.53565, + "y": 183.58968, + "index": 8, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 483.60427, + "y": 177.9601, + "index": 9, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 485.59464, + "y": 172.69197, + "index": 10, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 489.26594, + "y": 168.42341, + "index": 11, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 494.17691, + "y": 165.66707, + "index": 12, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 499.7334, + "y": 164.75773, + "index": 13, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 505.26608, + "y": 165.80225, + "index": 14, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 510.10839, + "y": 168.67749, + "index": 15, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 513.67455, + "y": 173.03428, + "index": 16, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 515.5359, + "y": 178.34937, + "index": 17, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 499.53577, + "y": 180.96952 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.31791, + "y": -0.18589 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 1.49849, + "y": 0.29525 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4105 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4107 + }, + "max": { + "#": 4108 + } + }, + { + "x": 483.53565, + "y": 164.75773 + }, + { + "x": 516.86589, + "y": 197.75305 + }, + { + "x": 498.07502, + "y": 180.68853 + }, + [ + { + "#": 4111 + }, + { + "#": 4112 + }, + { + "#": 4113 + }, + { + "#": 4114 + }, + { + "#": 4115 + }, + { + "#": 4116 + }, + { + "#": 4117 + }, + { + "#": 4118 + }, + { + "#": 4119 + } + ], + { + "x": -0.93546, + "y": -0.35343 + }, + { + "x": -0.75816, + "y": -0.65207 + }, + { + "x": -0.48944, + "y": -0.87204 + }, + { + "x": -0.1615, + "y": -0.98687 + }, + { + "x": 0.18551, + "y": -0.98264 + }, + { + "x": 0.51055, + "y": -0.85985 + }, + { + "x": 0.77383, + "y": -0.6334 + }, + { + "x": 0.9438, + "y": -0.33052 + }, + { + "x": 0.99993, + "y": 0.01219 + }, + { + "id": "10,10,3,4", + "startCol": 10, + "endCol": 10, + "startRow": 3, + "endRow": 4 + }, + { + "id": 101, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4122 + }, + "angle": 0.00147, + "vertices": { + "#": 4123 + }, + "position": { + "#": 4138 + }, + "force": { + "#": 4139 + }, + "torque": 0, + "positionImpulse": { + "#": 4140 + }, + "constraintImpulse": { + "#": 4141 + }, + "totalContacts": 0, + "speed": 1.47789, + "angularSpeed": 0.00129, + "velocity": { + "#": 4142 + }, + "angularVelocity": -0.00073, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4143 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4144 + }, + "circleRadius": 13.03502, + "bounds": { + "#": 4146 + }, + "positionPrev": { + "#": 4149 + }, + "anglePrev": 0.00287, + "axes": { + "#": 4150 + }, + "area": 516.04497, + "mass": 0.51604, + "inverseMass": 1.93782, + "inertia": 169.57253, + "inverseInertia": 0.0059, + "parent": { + "#": 4121 + }, + "sleepCounter": 0, + "region": { + "#": 4158 + } + }, + [ + { + "#": 4121 + } + ], + [ + { + "#": 4124 + }, + { + "#": 4125 + }, + { + "#": 4126 + }, + { + "#": 4127 + }, + { + "#": 4128 + }, + { + "#": 4129 + }, + { + "#": 4130 + }, + { + "#": 4131 + }, + { + "#": 4132 + }, + { + "#": 4133 + }, + { + "#": 4134 + }, + { + "#": 4135 + }, + { + "#": 4136 + }, + { + "#": 4137 + } + ], + { + "x": 539.71696, + "y": 192.49194, + "index": 0, + "body": { + "#": 4121 + }, + "isInternal": false + }, + { + "x": 537.19227, + "y": 197.71423, + "index": 1, + "body": { + "#": 4121 + }, + "isInternal": false + }, + { + "x": 532.65195, + "y": 201.32455, + "index": 2, + "body": { + "#": 4121 + }, + "isInternal": false + }, + { + "x": 526.99405, + "y": 202.60722, + "index": 3, + "body": { + "#": 4121 + }, + "isInternal": false + }, + { + "x": 521.33996, + "y": 201.30789, + "index": 4, + "body": { + "#": 4121 + }, + "isInternal": false + }, + { + "x": 516.81029, + "y": 197.68422, + "index": 5, + "body": { + "#": 4121 + }, + "isInternal": false + }, + { + "x": 514.30099, + "y": 192.45452, + "index": 6, + "body": { + "#": 4121 + }, + "isInternal": false + }, + { + "x": 514.30953, + "y": 186.65252, + "index": 7, + "body": { + "#": 4121 + }, + "isInternal": false + }, + { + "x": 516.83423, + "y": 181.43024, + "index": 8, + "body": { + "#": 4121 + }, + "isInternal": false + }, + { + "x": 521.37455, + "y": 177.81992, + "index": 9, + "body": { + "#": 4121 + }, + "isInternal": false + }, + { + "x": 527.03244, + "y": 176.53725, + "index": 10, + "body": { + "#": 4121 + }, + "isInternal": false + }, + { + "x": 532.68653, + "y": 177.83657, + "index": 11, + "body": { + "#": 4121 + }, + "isInternal": false + }, + { + "x": 537.2162, + "y": 181.46025, + "index": 12, + "body": { + "#": 4121 + }, + "isInternal": false + }, + { + "x": 539.72551, + "y": 186.68995, + "index": 13, + "body": { + "#": 4121 + }, + "isInternal": false + }, + { + "x": 527.01325, + "y": 189.57223 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.16415, + "y": 0.06901 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 1.42699, + "y": 0.46254 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4145 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4147 + }, + "max": { + "#": 4148 + } + }, + { + "x": 514.30099, + "y": 176.53725 + }, + { + "x": 541.08865, + "y": 203.17817 + }, + { + "x": 525.52666, + "y": 189.36906 + }, + [ + { + "#": 4151 + }, + { + "#": 4152 + }, + { + "#": 4153 + }, + { + "#": 4154 + }, + { + "#": 4155 + }, + { + "#": 4156 + }, + { + "#": 4157 + } + ], + { + "x": -0.90031, + "y": -0.43525 + }, + { + "x": -0.62239, + "y": -0.78271 + }, + { + "x": -0.22109, + "y": -0.97525 + }, + { + "x": 0.22397, + "y": -0.9746 + }, + { + "x": 0.62469, + "y": -0.78087 + }, + { + "x": 0.90159, + "y": -0.4326 + }, + { + "x": 1, + "y": 0.00147 + }, + { + "id": "10,11,3,4", + "startCol": 10, + "endCol": 11, + "startRow": 3, + "endRow": 4 + }, + { + "id": 102, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4160 + }, + "angle": 0.03079, + "vertices": { + "#": 4161 + }, + "position": { + "#": 4182 + }, + "force": { + "#": 4183 + }, + "torque": 0, + "positionImpulse": { + "#": 4184 + }, + "constraintImpulse": { + "#": 4185 + }, + "totalContacts": 0, + "speed": 1.48907, + "angularSpeed": 0.00493, + "velocity": { + "#": 4186 + }, + "angularVelocity": 0.00803, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4187 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4188 + }, + "circleRadius": 19.47595, + "bounds": { + "#": 4190 + }, + "positionPrev": { + "#": 4193 + }, + "anglePrev": 0.02294, + "axes": { + "#": 4194 + }, + "area": 1172.14282, + "mass": 1.17214, + "inverseMass": 0.85314, + "inertia": 874.71176, + "inverseInertia": 0.00114, + "parent": { + "#": 4159 + }, + "sleepCounter": 0, + "region": { + "#": 4205 + } + }, + [ + { + "#": 4159 + } + ], + [ + { + "#": 4162 + }, + { + "#": 4163 + }, + { + "#": 4164 + }, + { + "#": 4165 + }, + { + "#": 4166 + }, + { + "#": 4167 + }, + { + "#": 4168 + }, + { + "#": 4169 + }, + { + "#": 4170 + }, + { + "#": 4171 + }, + { + "#": 4172 + }, + { + "#": 4173 + }, + { + "#": 4174 + }, + { + "#": 4175 + }, + { + "#": 4176 + }, + { + "#": 4177 + }, + { + "#": 4178 + }, + { + "#": 4179 + }, + { + "#": 4180 + }, + { + "#": 4181 + } + ], + { + "x": 578.85622, + "y": 196.03895, + "index": 0, + "body": { + "#": 4159 + }, + "isInternal": false + }, + { + "x": 576.79568, + "y": 201.77323, + "index": 1, + "body": { + "#": 4159 + }, + "isInternal": false + }, + { + "x": 573.06459, + "y": 206.59063, + "index": 2, + "body": { + "#": 4159 + }, + "isInternal": false + }, + { + "x": 568.02666, + "y": 210.01814, + "index": 3, + "body": { + "#": 4159 + }, + "isInternal": false + }, + { + "x": 562.17643, + "y": 211.72182, + "index": 4, + "body": { + "#": 4159 + }, + "isInternal": false + }, + { + "x": 556.08532, + "y": 211.53418, + "index": 5, + "body": { + "#": 4159 + }, + "isInternal": false + }, + { + "x": 550.35105, + "y": 209.47365, + "index": 6, + "body": { + "#": 4159 + }, + "isInternal": false + }, + { + "x": 545.53365, + "y": 205.74255, + "index": 7, + "body": { + "#": 4159 + }, + "isInternal": false + }, + { + "x": 542.10614, + "y": 200.70463, + "index": 8, + "body": { + "#": 4159 + }, + "isInternal": false + }, + { + "x": 540.40246, + "y": 194.8544, + "index": 9, + "body": { + "#": 4159 + }, + "isInternal": false + }, + { + "x": 540.5901, + "y": 188.76329, + "index": 10, + "body": { + "#": 4159 + }, + "isInternal": false + }, + { + "x": 542.65063, + "y": 183.02901, + "index": 11, + "body": { + "#": 4159 + }, + "isInternal": false + }, + { + "x": 546.38173, + "y": 178.21161, + "index": 12, + "body": { + "#": 4159 + }, + "isInternal": false + }, + { + "x": 551.41965, + "y": 174.7841, + "index": 13, + "body": { + "#": 4159 + }, + "isInternal": false + }, + { + "x": 557.26988, + "y": 173.08042, + "index": 14, + "body": { + "#": 4159 + }, + "isInternal": false + }, + { + "x": 563.36099, + "y": 173.26806, + "index": 15, + "body": { + "#": 4159 + }, + "isInternal": false + }, + { + "x": 569.09527, + "y": 175.32859, + "index": 16, + "body": { + "#": 4159 + }, + "isInternal": false + }, + { + "x": 573.91267, + "y": 179.05969, + "index": 17, + "body": { + "#": 4159 + }, + "isInternal": false + }, + { + "x": 577.34018, + "y": 184.09761, + "index": 18, + "body": { + "#": 4159 + }, + "isInternal": false + }, + { + "x": 579.04385, + "y": 189.94784, + "index": 19, + "body": { + "#": 4159 + }, + "isInternal": false + }, + { + "x": 559.72316, + "y": 192.40112 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.20505, + "y": -0.03942 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 1.45919, + "y": 1.22432 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4189 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4191 + }, + "max": { + "#": 4192 + } + }, + { + "x": 540.40246, + "y": 173.08042 + }, + { + "x": 580.0733, + "y": 212.79772 + }, + { + "x": 558.2827, + "y": 191.27368 + }, + [ + { + "#": 4195 + }, + { + "#": 4196 + }, + { + "#": 4197 + }, + { + "#": 4198 + }, + { + "#": 4199 + }, + { + "#": 4200 + }, + { + "#": 4201 + }, + { + "#": 4202 + }, + { + "#": 4203 + }, + { + "#": 4204 + } + ], + { + "x": -0.94109, + "y": -0.33817 + }, + { + "x": -0.7906, + "y": -0.61233 + }, + { + "x": -0.5625, + "y": -0.8268 + }, + { + "x": -0.2796, + "y": -0.96012 + }, + { + "x": 0.03079, + "y": -0.99953 + }, + { + "x": 0.33817, + "y": -0.94109 + }, + { + "x": 0.61233, + "y": -0.7906 + }, + { + "x": 0.8268, + "y": -0.5625 + }, + { + "x": 0.96012, + "y": -0.2796 + }, + { + "x": 0.99953, + "y": 0.03079 + }, + { + "id": "11,12,3,4", + "startCol": 11, + "endCol": 12, + "startRow": 3, + "endRow": 4 + }, + { + "id": 103, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4207 + }, + "angle": 0.00585, + "vertices": { + "#": 4208 + }, + "position": { + "#": 4227 + }, + "force": { + "#": 4228 + }, + "torque": 0, + "positionImpulse": { + "#": 4229 + }, + "constraintImpulse": { + "#": 4230 + }, + "totalContacts": 0, + "speed": 3.05469, + "angularSpeed": 0.00138, + "velocity": { + "#": 4231 + }, + "angularVelocity": 0.00138, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4232 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4233 + }, + "circleRadius": 17.14116, + "bounds": { + "#": 4235 + }, + "positionPrev": { + "#": 4238 + }, + "anglePrev": 0.00447, + "axes": { + "#": 4239 + }, + "area": 904.44039, + "mass": 0.90444, + "inverseMass": 1.10566, + "inertia": 520.80647, + "inverseInertia": 0.00192, + "parent": { + "#": 4206 + }, + "sleepCounter": 0, + "region": { + "#": 4249 + } + }, + [ + { + "#": 4206 + } + ], + [ + { + "#": 4209 + }, + { + "#": 4210 + }, + { + "#": 4211 + }, + { + "#": 4212 + }, + { + "#": 4213 + }, + { + "#": 4214 + }, + { + "#": 4215 + }, + { + "#": 4216 + }, + { + "#": 4217 + }, + { + "#": 4218 + }, + { + "#": 4219 + }, + { + "#": 4220 + }, + { + "#": 4221 + }, + { + "#": 4222 + }, + { + "#": 4223 + }, + { + "#": 4224 + }, + { + "#": 4225 + }, + { + "#": 4226 + } + ], + { + "x": 608.13093, + "y": 214.96488, + "index": 0, + "body": { + "#": 4206 + }, + "isInternal": false + }, + { + "x": 606.06225, + "y": 220.54688, + "index": 1, + "body": { + "#": 4206 + }, + "isInternal": false + }, + { + "x": 602.20865, + "y": 225.08443, + "index": 2, + "body": { + "#": 4206 + }, + "isInternal": false + }, + { + "x": 597.03634, + "y": 228.03023, + "index": 3, + "body": { + "#": 4206 + }, + "isInternal": false + }, + { + "x": 591.16739, + "y": 229.02993, + "index": 4, + "body": { + "#": 4206 + }, + "isInternal": false + }, + { + "x": 585.31054, + "y": 227.96166, + "index": 5, + "body": { + "#": 4206 + }, + "isInternal": false + }, + { + "x": 580.17303, + "y": 224.95557, + "index": 6, + "body": { + "#": 4206 + }, + "isInternal": false + }, + { + "x": 576.37276, + "y": 220.37327, + "index": 7, + "body": { + "#": 4206 + }, + "isInternal": false + }, + { + "x": 574.36951, + "y": 214.76746, + "index": 8, + "body": { + "#": 4206 + }, + "isInternal": false + }, + { + "x": 574.40432, + "y": 208.81356, + "index": 9, + "body": { + "#": 4206 + }, + "isInternal": false + }, + { + "x": 576.473, + "y": 203.23156, + "index": 10, + "body": { + "#": 4206 + }, + "isInternal": false + }, + { + "x": 580.3266, + "y": 198.69402, + "index": 11, + "body": { + "#": 4206 + }, + "isInternal": false + }, + { + "x": 585.49891, + "y": 195.74821, + "index": 12, + "body": { + "#": 4206 + }, + "isInternal": false + }, + { + "x": 591.36786, + "y": 194.74851, + "index": 13, + "body": { + "#": 4206 + }, + "isInternal": false + }, + { + "x": 597.22471, + "y": 195.81678, + "index": 14, + "body": { + "#": 4206 + }, + "isInternal": false + }, + { + "x": 602.36222, + "y": 198.82287, + "index": 15, + "body": { + "#": 4206 + }, + "isInternal": false + }, + { + "x": 606.16249, + "y": 203.40518, + "index": 16, + "body": { + "#": 4206 + }, + "isInternal": false + }, + { + "x": 608.16574, + "y": 209.01099, + "index": 17, + "body": { + "#": 4206 + }, + "isInternal": false + }, + { + "x": 591.26762, + "y": 211.88922 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.15631, + "y": 0.19184 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.32376, + "y": 3.03748 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4234 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4236 + }, + "max": { + "#": 4237 + } + }, + { + "x": 574.36951, + "y": 194.74851 + }, + { + "x": 608.4895, + "y": 232.06741 + }, + { + "x": 590.94387, + "y": 208.85174 + }, + [ + { + "#": 4240 + }, + { + "#": 4241 + }, + { + "#": 4242 + }, + { + "#": 4243 + }, + { + "#": 4244 + }, + { + "#": 4245 + }, + { + "#": 4246 + }, + { + "#": 4247 + }, + { + "#": 4248 + } + ], + { + "x": -0.93768, + "y": -0.3475 + }, + { + "x": -0.76221, + "y": -0.64733 + }, + { + "x": -0.4949, + "y": -0.86895 + }, + { + "x": -0.16792, + "y": -0.9858 + }, + { + "x": 0.17944, + "y": -0.98377 + }, + { + "x": 0.50503, + "y": -0.8631 + }, + { + "x": 0.76973, + "y": -0.63837 + }, + { + "x": 0.94168, + "y": -0.33651 + }, + { + "x": 0.99998, + "y": 0.00585 + }, + { + "id": "11,12,4,4", + "startCol": 11, + "endCol": 12, + "startRow": 4, + "endRow": 4 + }, + { + "id": 104, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4251 + }, + "angle": 0.00034, + "vertices": { + "#": 4252 + }, + "position": { + "#": 4265 + }, + "force": { + "#": 4266 + }, + "torque": 0, + "positionImpulse": { + "#": 4267 + }, + "constraintImpulse": { + "#": 4268 + }, + "totalContacts": 0, + "speed": 2.83114, + "angularSpeed": 0.00059, + "velocity": { + "#": 4269 + }, + "angularVelocity": 0.00059, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.5, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4270 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4271 + }, + "circleRadius": 10.59855, + "bounds": { + "#": 4273 + }, + "positionPrev": { + "#": 4276 + }, + "anglePrev": -0.00025, + "axes": { + "#": 4277 + }, + "area": 336.96051, + "mass": 0.33696, + "inverseMass": 2.96771, + "inertia": 72.31452, + "inverseInertia": 0.01383, + "parent": { + "#": 4250 + }, + "sleepCounter": 0, + "region": { + "#": 4284 + } + }, + [ + { + "#": 4250 + } + ], + [ + { + "#": 4253 + }, + { + "#": 4254 + }, + { + "#": 4255 + }, + { + "#": 4256 + }, + { + "#": 4257 + }, + { + "#": 4258 + }, + { + "#": 4259 + }, + { + "#": 4260 + }, + { + "#": 4261 + }, + { + "#": 4262 + }, + { + "#": 4263 + }, + { + "#": 4264 + } + ], + { + "x": 626.90857, + "y": 204.23291, + "index": 0, + "body": { + "#": 4250 + }, + "isInternal": false + }, + { + "x": 624.16394, + "y": 208.98297, + "index": 1, + "body": { + "#": 4250 + }, + "isInternal": false + }, + { + "x": 619.41201, + "y": 211.72435, + "index": 2, + "body": { + "#": 4250 + }, + "isInternal": false + }, + { + "x": 613.92601, + "y": 211.72248, + "index": 3, + "body": { + "#": 4250 + }, + "isInternal": false + }, + { + "x": 609.17594, + "y": 208.97786, + "index": 4, + "body": { + "#": 4250 + }, + "isInternal": false + }, + { + "x": 606.43457, + "y": 204.22592, + "index": 5, + "body": { + "#": 4250 + }, + "isInternal": false + }, + { + "x": 606.43644, + "y": 198.73992, + "index": 6, + "body": { + "#": 4250 + }, + "isInternal": false + }, + { + "x": 609.18106, + "y": 193.98986, + "index": 7, + "body": { + "#": 4250 + }, + "isInternal": false + }, + { + "x": 613.933, + "y": 191.24848, + "index": 8, + "body": { + "#": 4250 + }, + "isInternal": false + }, + { + "x": 619.419, + "y": 191.25035, + "index": 9, + "body": { + "#": 4250 + }, + "isInternal": false + }, + { + "x": 624.16906, + "y": 193.99497, + "index": 10, + "body": { + "#": 4250 + }, + "isInternal": false + }, + { + "x": 626.91044, + "y": 198.74691, + "index": 11, + "body": { + "#": 4250 + }, + "isInternal": false + }, + { + "x": 616.6725, + "y": 201.48641 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.23941, + "y": 2.821 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4272 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4274 + }, + "max": { + "#": 4275 + } + }, + { + "x": 606.43457, + "y": 191.24848 + }, + { + "x": 626.91044, + "y": 211.72435 + }, + { + "x": 616.4331, + "y": 198.66542 + }, + [ + { + "#": 4278 + }, + { + "#": 4279 + }, + { + "#": 4280 + }, + { + "#": 4281 + }, + { + "#": 4282 + }, + { + "#": 4283 + } + ], + { + "x": -0.86585, + "y": -0.5003 + }, + { + "x": -0.49971, + "y": -0.8662 + }, + { + "x": 0.00034, + "y": -1 + }, + { + "x": 0.5003, + "y": -0.86585 + }, + { + "x": 0.8662, + "y": -0.49971 + }, + { + "x": 1, + "y": 0.00034 + }, + { + "id": "12,13,3,4", + "startCol": 12, + "endCol": 13, + "startRow": 3, + "endRow": 4 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 4289 + }, + "max": { + "#": 4290 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/ballPool/ballPool-0.json b/test/node/refs/ballPool/ballPool-0.json new file mode 100644 index 00000000..d2c002ae --- /dev/null +++ b/test/node/refs/ballPool/ballPool-0.json @@ -0,0 +1,75258 @@ +[ + { + "id": 46, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 160 + }, + "composites": { + "#": 161 + }, + "label": "World", + "gravity": { + "#": 7663 + }, + "bounds": { + "#": 7664 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 112 + }, + { + "#": 138 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 155, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 91 + }, + "angle": 0, + "vertices": { + "#": 92 + }, + "position": { + "#": 96 + }, + "force": { + "#": 97 + }, + "torque": 0, + "positionImpulse": { + "#": 98 + }, + "constraintImpulse": { + "#": 99 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 100 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 101 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 102 + }, + "bounds": { + "#": 104 + }, + "positionPrev": { + "#": 107 + }, + "anglePrev": 0, + "axes": { + "#": 108 + }, + "area": 4676.58, + "mass": 4.67658, + "inverseMass": 0.21383, + "inertia": 16835.84215, + "inverseInertia": 0.00006, + "parent": { + "#": 90 + }, + "sleepCounter": 0 + }, + [ + { + "#": 90 + } + ], + [ + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + } + ], + { + "x": 230, + "y": 611.962, + "index": 0, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 140, + "y": 560, + "index": 1, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 230, + "y": 508.038, + "index": 2, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 200, + "y": 560 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 103 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 105 + }, + "max": { + "#": 106 + } + }, + { + "x": 140, + "y": 508.038 + }, + { + "x": 230, + "y": 611.962 + }, + { + "x": 200, + "y": 560 + }, + [ + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + } + ], + { + "x": -0.5, + "y": 0.86602 + }, + { + "x": -0.5, + "y": -0.86602 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 156, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 113 + }, + "angle": 0, + "vertices": { + "#": 114 + }, + "position": { + "#": 120 + }, + "force": { + "#": 121 + }, + "torque": 0, + "positionImpulse": { + "#": 122 + }, + "constraintImpulse": { + "#": 123 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 124 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 125 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 126 + }, + "bounds": { + "#": 128 + }, + "positionPrev": { + "#": 131 + }, + "anglePrev": 0, + "axes": { + "#": 132 + }, + "area": 8559.45598, + "mass": 8.55946, + "inverseMass": 0.11683, + "inertia": 47433.13848, + "inverseInertia": 0.00002, + "parent": { + "#": 112 + }, + "sleepCounter": 0 + }, + [ + { + "#": 112 + } + ], + [ + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + } + ], + { + "x": 448.54098, + "y": 595.267, + "index": 0, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 381.45898, + "y": 617.063, + "index": 1, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 339.99998, + "y": 560, + "index": 2, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 381.45898, + "y": 502.937, + "index": 3, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 448.54098, + "y": 524.733, + "index": 4, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 400, + "y": 560 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 127 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 129 + }, + "max": { + "#": 130 + } + }, + { + "x": 339.99998, + "y": 502.937 + }, + { + "x": 448.54098, + "y": 617.063 + }, + { + "x": 400, + "y": 560 + }, + [ + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": 0.30901, + "y": 0.95106 + }, + { + "x": -0.80901, + "y": 0.58779 + }, + { + "x": -0.80901, + "y": -0.58779 + }, + { + "x": 0.30901, + "y": -0.95106 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 157, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 139 + }, + "angle": 0, + "vertices": { + "#": 140 + }, + "position": { + "#": 145 + }, + "force": { + "#": 146 + }, + "torque": 0, + "positionImpulse": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 149 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 150 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 151 + }, + "bounds": { + "#": 153 + }, + "positionPrev": { + "#": 156 + }, + "anglePrev": 0, + "axes": { + "#": 157 + }, + "area": 6400, + "mass": 6.4, + "inverseMass": 0.15625, + "inertia": 27306.66667, + "inverseInertia": 0.00004, + "parent": { + "#": 138 + }, + "sleepCounter": 0 + }, + [ + { + "#": 138 + } + ], + [ + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + } + ], + { + "x": 560, + "y": 520, + "index": 0, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 640, + "y": 520, + "index": 1, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 640, + "y": 600, + "index": 2, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 560, + "y": 600, + "index": 3, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 600, + "y": 560 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 152 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 154 + }, + "max": { + "#": 155 + } + }, + { + "x": 560, + "y": 520 + }, + { + "x": 640, + "y": 600 + }, + { + "x": 600, + "y": 560 + }, + [ + { + "#": 158 + }, + { + "#": 159 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [ + { + "#": 162 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 163 + }, + "constraints": { + "#": 7661 + }, + "composites": { + "#": 7662 + }, + "label": "Stack" + }, + [ + { + "#": 164 + }, + { + "#": 210 + }, + { + "#": 262 + }, + { + "#": 317 + }, + { + "#": 366 + }, + { + "#": 421 + }, + { + "#": 464 + }, + { + "#": 519 + }, + { + "#": 571 + }, + { + "#": 623 + }, + { + "#": 672 + }, + { + "#": 727 + }, + { + "#": 773 + }, + { + "#": 828 + }, + { + "#": 883 + }, + { + "#": 938 + }, + { + "#": 987 + }, + { + "#": 1030 + }, + { + "#": 1085 + }, + { + "#": 1134 + }, + { + "#": 1189 + }, + { + "#": 1244 + }, + { + "#": 1287 + }, + { + "#": 1342 + }, + { + "#": 1397 + }, + { + "#": 1437 + }, + { + "#": 1489 + }, + { + "#": 1535 + }, + { + "#": 1584 + }, + { + "#": 1639 + }, + { + "#": 1694 + }, + { + "#": 1743 + }, + { + "#": 1789 + }, + { + "#": 1835 + }, + { + "#": 1890 + }, + { + "#": 1945 + }, + { + "#": 1997 + }, + { + "#": 2043 + }, + { + "#": 2098 + }, + { + "#": 2141 + }, + { + "#": 2196 + }, + { + "#": 2251 + }, + { + "#": 2300 + }, + { + "#": 2343 + }, + { + "#": 2386 + }, + { + "#": 2441 + }, + { + "#": 2481 + }, + { + "#": 2536 + }, + { + "#": 2582 + }, + { + "#": 2637 + }, + { + "#": 2689 + }, + { + "#": 2738 + }, + { + "#": 2790 + }, + { + "#": 2836 + }, + { + "#": 2891 + }, + { + "#": 2946 + }, + { + "#": 3001 + }, + { + "#": 3047 + }, + { + "#": 3102 + }, + { + "#": 3157 + }, + { + "#": 3206 + }, + { + "#": 3261 + }, + { + "#": 3310 + }, + { + "#": 3365 + }, + { + "#": 3414 + }, + { + "#": 3463 + }, + { + "#": 3506 + }, + { + "#": 3561 + }, + { + "#": 3607 + }, + { + "#": 3656 + }, + { + "#": 3699 + }, + { + "#": 3748 + }, + { + "#": 3800 + }, + { + "#": 3855 + }, + { + "#": 3898 + }, + { + "#": 3938 + }, + { + "#": 3990 + }, + { + "#": 4045 + }, + { + "#": 4091 + }, + { + "#": 4137 + }, + { + "#": 4186 + }, + { + "#": 4235 + }, + { + "#": 4284 + }, + { + "#": 4339 + }, + { + "#": 4394 + }, + { + "#": 4440 + }, + { + "#": 4495 + }, + { + "#": 4550 + }, + { + "#": 4596 + }, + { + "#": 4639 + }, + { + "#": 4682 + }, + { + "#": 4737 + }, + { + "#": 4780 + }, + { + "#": 4832 + }, + { + "#": 4887 + }, + { + "#": 4942 + }, + { + "#": 4997 + }, + { + "#": 5043 + }, + { + "#": 5098 + }, + { + "#": 5153 + }, + { + "#": 5193 + }, + { + "#": 5245 + }, + { + "#": 5288 + }, + { + "#": 5340 + }, + { + "#": 5395 + }, + { + "#": 5441 + }, + { + "#": 5487 + }, + { + "#": 5542 + }, + { + "#": 5588 + }, + { + "#": 5634 + }, + { + "#": 5689 + }, + { + "#": 5744 + }, + { + "#": 5787 + }, + { + "#": 5842 + }, + { + "#": 5897 + }, + { + "#": 5937 + }, + { + "#": 5983 + }, + { + "#": 6038 + }, + { + "#": 6087 + }, + { + "#": 6127 + }, + { + "#": 6170 + }, + { + "#": 6222 + }, + { + "#": 6277 + }, + { + "#": 6320 + }, + { + "#": 6375 + }, + { + "#": 6430 + }, + { + "#": 6473 + }, + { + "#": 6522 + }, + { + "#": 6568 + }, + { + "#": 6617 + }, + { + "#": 6672 + }, + { + "#": 6724 + }, + { + "#": 6773 + }, + { + "#": 6822 + }, + { + "#": 6865 + }, + { + "#": 6914 + }, + { + "#": 6963 + }, + { + "#": 7009 + }, + { + "#": 7064 + }, + { + "#": 7107 + }, + { + "#": 7153 + }, + { + "#": 7208 + }, + { + "#": 7248 + }, + { + "#": 7300 + }, + { + "#": 7355 + }, + { + "#": 7401 + }, + { + "#": 7447 + }, + { + "#": 7502 + }, + { + "#": 7551 + }, + { + "#": 7606 + } + ], + { + "id": 5, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 165 + }, + "angle": 0, + "vertices": { + "#": 166 + }, + "position": { + "#": 187 + }, + "force": { + "#": 188 + }, + "torque": 0, + "positionImpulse": { + "#": 189 + }, + "constraintImpulse": { + "#": 190 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 191 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 192 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 193 + }, + "circleRadius": 18.16982, + "bounds": { + "#": 195 + }, + "positionPrev": { + "#": 198 + }, + "anglePrev": 0, + "axes": { + "#": 199 + }, + "area": 1020.17227, + "mass": 1.02017, + "inverseMass": 0.98023, + "inertia": 662.59924, + "inverseInertia": 0.00151, + "parent": { + "#": 164 + }, + "sleepCounter": 0 + }, + [ + { + "#": 164 + } + ], + [ + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + } + ], + { + "x": 135.892, + "y": 70.788, + "index": 0, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 134.135, + "y": 76.195, + "index": 1, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 130.794, + "y": 80.794, + "index": 2, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 126.195, + "y": 84.135, + "index": 3, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 120.788, + "y": 85.892, + "index": 4, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 115.104, + "y": 85.892, + "index": 5, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 109.697, + "y": 84.135, + "index": 6, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 105.098, + "y": 80.794, + "index": 7, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 101.757, + "y": 76.195, + "index": 8, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 100, + "y": 70.788, + "index": 9, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 100, + "y": 65.104, + "index": 10, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 101.757, + "y": 59.697, + "index": 11, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 105.098, + "y": 55.098, + "index": 12, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 109.697, + "y": 51.757, + "index": 13, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 115.104, + "y": 50, + "index": 14, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 120.788, + "y": 50, + "index": 15, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 126.195, + "y": 51.757, + "index": 16, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 130.794, + "y": 55.098, + "index": 17, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 134.135, + "y": 59.697, + "index": 18, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 135.892, + "y": 65.104, + "index": 19, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 117.946, + "y": 67.946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 194 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 196 + }, + "max": { + "#": 197 + } + }, + { + "x": 100, + "y": 50 + }, + { + "x": 135.892, + "y": 85.892 + }, + { + "x": 117.946, + "y": 67.946 + }, + [ + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + } + ], + { + "x": -0.95105, + "y": -0.30904 + }, + { + "x": -0.80905, + "y": -0.58774 + }, + { + "x": -0.58774, + "y": -0.80905 + }, + { + "x": -0.30904, + "y": -0.95105 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30904, + "y": -0.95105 + }, + { + "x": 0.58774, + "y": -0.80905 + }, + { + "x": 0.80905, + "y": -0.58774 + }, + { + "x": 0.95105, + "y": -0.30904 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 211 + }, + "angle": 0, + "vertices": { + "#": 212 + }, + "position": { + "#": 237 + }, + "force": { + "#": 238 + }, + "torque": 0, + "positionImpulse": { + "#": 239 + }, + "constraintImpulse": { + "#": 240 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 241 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 242 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 243 + }, + "circleRadius": 23.20158, + "bounds": { + "#": 245 + }, + "positionPrev": { + "#": 248 + }, + "anglePrev": 0, + "axes": { + "#": 249 + }, + "area": 1671.87546, + "mass": 1.67188, + "inverseMass": 0.59813, + "inertia": 1779.50575, + "inverseInertia": 0.00056, + "parent": { + "#": 210 + }, + "sleepCounter": 0 + }, + [ + { + "#": 210 + } + ], + [ + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + } + ], + { + "x": 191.898, + "y": 76.031, + "index": 0, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 190.33, + "y": 81.882, + "index": 1, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 187.302, + "y": 87.127, + "index": 2, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 183.019, + "y": 91.41, + "index": 3, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 177.774, + "y": 94.438, + "index": 4, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 171.923, + "y": 96.006, + "index": 5, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 165.867, + "y": 96.006, + "index": 6, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 160.016, + "y": 94.438, + "index": 7, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 154.771, + "y": 91.41, + "index": 8, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 150.488, + "y": 87.127, + "index": 9, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 147.46, + "y": 81.882, + "index": 10, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 145.892, + "y": 76.031, + "index": 11, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 145.892, + "y": 69.975, + "index": 12, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 147.46, + "y": 64.124, + "index": 13, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 150.488, + "y": 58.879, + "index": 14, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 154.771, + "y": 54.596, + "index": 15, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 160.016, + "y": 51.568, + "index": 16, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 165.867, + "y": 50, + "index": 17, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 171.923, + "y": 50, + "index": 18, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 177.774, + "y": 51.568, + "index": 19, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 183.019, + "y": 54.596, + "index": 20, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 187.302, + "y": 58.879, + "index": 21, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 190.33, + "y": 64.124, + "index": 22, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 191.898, + "y": 69.975, + "index": 23, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 168.895, + "y": 73.003 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 244 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 246 + }, + "max": { + "#": 247 + } + }, + { + "x": 145.892, + "y": 50 + }, + { + "x": 191.898, + "y": 96.006 + }, + { + "x": 168.895, + "y": 73.003 + }, + [ + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + } + ], + { + "x": -0.96592, + "y": -0.25885 + }, + { + "x": -0.86604, + "y": -0.49997 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.49997, + "y": -0.86604 + }, + { + "x": -0.25885, + "y": -0.96592 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25885, + "y": -0.96592 + }, + { + "x": 0.49997, + "y": -0.86604 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86604, + "y": -0.49997 + }, + { + "x": 0.96592, + "y": -0.25885 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 263 + }, + "angle": 0, + "vertices": { + "#": 264 + }, + "position": { + "#": 291 + }, + "force": { + "#": 292 + }, + "torque": 0, + "positionImpulse": { + "#": 293 + }, + "constraintImpulse": { + "#": 294 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 295 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 296 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 297 + }, + "circleRadius": 27.29199, + "bounds": { + "#": 299 + }, + "positionPrev": { + "#": 302 + }, + "anglePrev": 0, + "axes": { + "#": 303 + }, + "area": 2317.3078, + "mass": 2.31731, + "inverseMass": 0.43154, + "inertia": 3418.65958, + "inverseInertia": 0.00029, + "parent": { + "#": 262 + }, + "sleepCounter": 0 + }, + [ + { + "#": 262 + } + ], + [ + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + } + ], + { + "x": 256.084, + "y": 80.582, + "index": 0, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 254.509, + "y": 86.97, + "index": 1, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 251.452, + "y": 92.796, + "index": 2, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 247.089, + "y": 97.72, + "index": 3, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 241.674, + "y": 101.458, + "index": 4, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 235.522, + "y": 103.791, + "index": 5, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 228.991, + "y": 104.584, + "index": 6, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 222.46, + "y": 103.791, + "index": 7, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 216.308, + "y": 101.458, + "index": 8, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 210.893, + "y": 97.72, + "index": 9, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 206.53, + "y": 92.796, + "index": 10, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 203.473, + "y": 86.97, + "index": 11, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 201.898, + "y": 80.582, + "index": 12, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 201.898, + "y": 74.002, + "index": 13, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 203.473, + "y": 67.614, + "index": 14, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 206.53, + "y": 61.788, + "index": 15, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 210.893, + "y": 56.864, + "index": 16, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 216.308, + "y": 53.126, + "index": 17, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 222.46, + "y": 50.793, + "index": 18, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 228.991, + "y": 50, + "index": 19, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 235.522, + "y": 50.793, + "index": 20, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 241.674, + "y": 53.126, + "index": 21, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 247.089, + "y": 56.864, + "index": 22, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 251.452, + "y": 61.788, + "index": 23, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 254.509, + "y": 67.614, + "index": 24, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 256.084, + "y": 74.002, + "index": 25, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 228.991, + "y": 77.292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 298 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 300 + }, + "max": { + "#": 301 + } + }, + { + "x": 201.898, + "y": 50 + }, + { + "x": 256.084, + "y": 104.584 + }, + { + "x": 228.991, + "y": 77.292 + }, + [ + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + } + ], + { + "x": -0.97092, + "y": -0.23939 + }, + { + "x": -0.8855, + "y": -0.46464 + }, + { + "x": -0.74846, + "y": -0.66318 + }, + { + "x": -0.5681, + "y": -0.82296 + }, + { + "x": -0.35459, + "y": -0.93502 + }, + { + "x": -0.12054, + "y": -0.99271 + }, + { + "x": 0.12054, + "y": -0.99271 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.5681, + "y": -0.82296 + }, + { + "x": 0.74846, + "y": -0.66318 + }, + { + "x": 0.8855, + "y": -0.46464 + }, + { + "x": 0.97092, + "y": -0.23939 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 318 + }, + "angle": 0, + "vertices": { + "#": 319 + }, + "position": { + "#": 342 + }, + "force": { + "#": 343 + }, + "torque": 0, + "positionImpulse": { + "#": 344 + }, + "constraintImpulse": { + "#": 345 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 346 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 347 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 348 + }, + "circleRadius": 20.62622, + "bounds": { + "#": 350 + }, + "positionPrev": { + "#": 353 + }, + "anglePrev": 0, + "axes": { + "#": 354 + }, + "area": 1318.4404, + "mass": 1.31844, + "inverseMass": 0.75847, + "inertia": 1106.66797, + "inverseInertia": 0.0009, + "parent": { + "#": 317 + }, + "sleepCounter": 0 + }, + [ + { + "#": 317 + } + ], + [ + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + } + ], + { + "x": 306.916, + "y": 73.561, + "index": 0, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 305.262, + "y": 79.194, + "index": 1, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 302.088, + "y": 84.133, + "index": 2, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 297.651, + "y": 87.978, + "index": 3, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 292.311, + "y": 90.417, + "index": 4, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 286.5, + "y": 91.252, + "index": 5, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 280.689, + "y": 90.417, + "index": 6, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 275.349, + "y": 87.978, + "index": 7, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 270.912, + "y": 84.133, + "index": 8, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 267.738, + "y": 79.194, + "index": 9, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 266.084, + "y": 73.561, + "index": 10, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 266.084, + "y": 67.691, + "index": 11, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 267.738, + "y": 62.058, + "index": 12, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 270.912, + "y": 57.119, + "index": 13, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 275.349, + "y": 53.274, + "index": 14, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 280.689, + "y": 50.835, + "index": 15, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 286.5, + "y": 50, + "index": 16, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 292.311, + "y": 50.835, + "index": 17, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 297.651, + "y": 53.274, + "index": 18, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 302.088, + "y": 57.119, + "index": 19, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 305.262, + "y": 62.058, + "index": 20, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 306.916, + "y": 67.691, + "index": 21, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 286.5, + "y": 70.626 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 349 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 351 + }, + "max": { + "#": 352 + } + }, + { + "x": 266.084, + "y": 50 + }, + { + "x": 306.916, + "y": 91.252 + }, + { + "x": 286.5, + "y": 70.626 + }, + [ + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + } + ], + { + "x": -0.95949, + "y": -0.28173 + }, + { + "x": -0.84126, + "y": -0.54063 + }, + { + "x": -0.65489, + "y": -0.75572 + }, + { + "x": -0.41546, + "y": -0.90961 + }, + { + "x": -0.14223, + "y": -0.98983 + }, + { + "x": 0.14223, + "y": -0.98983 + }, + { + "x": 0.41546, + "y": -0.90961 + }, + { + "x": 0.65489, + "y": -0.75572 + }, + { + "x": 0.84126, + "y": -0.54063 + }, + { + "x": 0.95949, + "y": -0.28173 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 367 + }, + "angle": 0, + "vertices": { + "#": 368 + }, + "position": { + "#": 395 + }, + "force": { + "#": 396 + }, + "torque": 0, + "positionImpulse": { + "#": 397 + }, + "constraintImpulse": { + "#": 398 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 399 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 400 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 401 + }, + "circleRadius": 29.50058, + "bounds": { + "#": 403 + }, + "positionPrev": { + "#": 406 + }, + "anglePrev": 0, + "axes": { + "#": 407 + }, + "area": 2707.5611, + "mass": 2.70756, + "inverseMass": 0.36934, + "inertia": 4667.07674, + "inverseInertia": 0.00021, + "parent": { + "#": 366 + }, + "sleepCounter": 0 + }, + [ + { + "#": 366 + } + ], + [ + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + } + ], + { + "x": 375.486, + "y": 83.057, + "index": 0, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 373.785, + "y": 89.962, + "index": 1, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 370.48, + "y": 96.259, + "index": 2, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 365.764, + "y": 101.583, + "index": 3, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 359.911, + "y": 105.622, + "index": 4, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 353.261, + "y": 108.144, + "index": 5, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 346.201, + "y": 109.002, + "index": 6, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 339.141, + "y": 108.144, + "index": 7, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 332.491, + "y": 105.622, + "index": 8, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 326.638, + "y": 101.583, + "index": 9, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 321.922, + "y": 96.259, + "index": 10, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 318.617, + "y": 89.962, + "index": 11, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 316.916, + "y": 83.057, + "index": 12, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 316.916, + "y": 75.945, + "index": 13, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 318.617, + "y": 69.04, + "index": 14, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 321.922, + "y": 62.743, + "index": 15, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 326.638, + "y": 57.419, + "index": 16, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 332.491, + "y": 53.38, + "index": 17, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 339.141, + "y": 50.858, + "index": 18, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 346.201, + "y": 50, + "index": 19, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 353.261, + "y": 50.858, + "index": 20, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 359.911, + "y": 53.38, + "index": 21, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 365.764, + "y": 57.419, + "index": 22, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 370.48, + "y": 62.743, + "index": 23, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 373.785, + "y": 69.04, + "index": 24, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 375.486, + "y": 75.945, + "index": 25, + "body": { + "#": 366 + }, + "isInternal": false + }, + { + "x": 346.201, + "y": 79.501 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 402 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 404 + }, + "max": { + "#": 405 + } + }, + { + "x": 316.916, + "y": 50 + }, + { + "x": 375.486, + "y": 109.002 + }, + { + "x": 346.201, + "y": 79.501 + }, + [ + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + } + ], + { + "x": -0.97097, + "y": -0.23919 + }, + { + "x": -0.88545, + "y": -0.46473 + }, + { + "x": -0.74856, + "y": -0.66307 + }, + { + "x": -0.56797, + "y": -0.82305 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12064, + "y": -0.9927 + }, + { + "x": 0.12064, + "y": -0.9927 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56797, + "y": -0.82305 + }, + { + "x": 0.74856, + "y": -0.66307 + }, + { + "x": 0.88545, + "y": -0.46473 + }, + { + "x": 0.97097, + "y": -0.23919 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 10, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 422 + }, + "angle": 0, + "vertices": { + "#": 423 + }, + "position": { + "#": 442 + }, + "force": { + "#": 443 + }, + "torque": 0, + "positionImpulse": { + "#": 444 + }, + "constraintImpulse": { + "#": 445 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 446 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 447 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 448 + }, + "circleRadius": 17.98913, + "bounds": { + "#": 450 + }, + "positionPrev": { + "#": 453 + }, + "anglePrev": 0, + "axes": { + "#": 454 + }, + "area": 996.11954, + "mass": 0.99612, + "inverseMass": 1.0039, + "inertia": 631.74148, + "inverseInertia": 0.00158, + "parent": { + "#": 421 + }, + "sleepCounter": 0 + }, + [ + { + "#": 421 + } + ], + [ + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + } + ], + { + "x": 420.918, + "y": 71.113, + "index": 0, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 418.781, + "y": 76.984, + "index": 1, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 414.765, + "y": 81.769, + "index": 2, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 409.355, + "y": 84.893, + "index": 3, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 403.202, + "y": 85.978, + "index": 4, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 397.049, + "y": 84.893, + "index": 5, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 391.639, + "y": 81.769, + "index": 6, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 387.623, + "y": 76.984, + "index": 7, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 385.486, + "y": 71.113, + "index": 8, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 385.486, + "y": 64.865, + "index": 9, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 387.623, + "y": 58.994, + "index": 10, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 391.639, + "y": 54.209, + "index": 11, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 397.049, + "y": 51.085, + "index": 12, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 403.202, + "y": 50, + "index": 13, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 409.355, + "y": 51.085, + "index": 14, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 414.765, + "y": 54.209, + "index": 15, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 418.781, + "y": 58.994, + "index": 16, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 420.918, + "y": 64.865, + "index": 17, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 403.202, + "y": 67.989 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 449 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 451 + }, + "max": { + "#": 452 + } + }, + { + "x": 385.486, + "y": 50 + }, + { + "x": 420.918, + "y": 85.978 + }, + { + "x": 403.202, + "y": 67.989 + }, + [ + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + } + ], + { + "x": -0.93969, + "y": -0.34204 + }, + { + "x": -0.76597, + "y": -0.64287 + }, + { + "x": -0.50006, + "y": -0.86599 + }, + { + "x": -0.17366, + "y": -0.98481 + }, + { + "x": 0.17366, + "y": -0.98481 + }, + { + "x": 0.50006, + "y": -0.86599 + }, + { + "x": 0.76597, + "y": -0.64287 + }, + { + "x": 0.93969, + "y": -0.34204 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 11, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 465 + }, + "angle": 0, + "vertices": { + "#": 466 + }, + "position": { + "#": 493 + }, + "force": { + "#": 494 + }, + "torque": 0, + "positionImpulse": { + "#": 495 + }, + "constraintImpulse": { + "#": 496 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 497 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 498 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 499 + }, + "circleRadius": 24.6104, + "bounds": { + "#": 501 + }, + "positionPrev": { + "#": 504 + }, + "anglePrev": 0, + "axes": { + "#": 505 + }, + "area": 1884.28536, + "mass": 1.88429, + "inverseMass": 0.53071, + "inertia": 2260.38157, + "inverseInertia": 0.00044, + "parent": { + "#": 464 + }, + "sleepCounter": 0 + }, + [ + { + "#": 464 + } + ], + [ + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + } + ], + { + "x": 479.78, + "y": 77.576, + "index": 0, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 478.36, + "y": 83.337, + "index": 1, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 475.603, + "y": 88.59, + "index": 2, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 471.669, + "y": 93.031, + "index": 3, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 466.786, + "y": 96.401, + "index": 4, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 461.239, + "y": 98.505, + "index": 5, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 455.349, + "y": 99.22, + "index": 6, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 449.459, + "y": 98.505, + "index": 7, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 443.912, + "y": 96.401, + "index": 8, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 439.029, + "y": 93.031, + "index": 9, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 435.095, + "y": 88.59, + "index": 10, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 432.338, + "y": 83.337, + "index": 11, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 430.918, + "y": 77.576, + "index": 12, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 430.918, + "y": 71.644, + "index": 13, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 432.338, + "y": 65.883, + "index": 14, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 435.095, + "y": 60.63, + "index": 15, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 439.029, + "y": 56.189, + "index": 16, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 443.912, + "y": 52.819, + "index": 17, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 449.459, + "y": 50.715, + "index": 18, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 455.349, + "y": 50, + "index": 19, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 461.239, + "y": 50.715, + "index": 20, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 466.786, + "y": 52.819, + "index": 21, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 471.669, + "y": 56.189, + "index": 22, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 475.603, + "y": 60.63, + "index": 23, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 478.36, + "y": 65.883, + "index": 24, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 479.78, + "y": 71.644, + "index": 25, + "body": { + "#": 464 + }, + "isInternal": false + }, + { + "x": 455.349, + "y": 74.61 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 500 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 502 + }, + "max": { + "#": 503 + } + }, + { + "x": 430.918, + "y": 50 + }, + { + "x": 479.78, + "y": 99.22 + }, + { + "x": 455.349, + "y": 74.61 + }, + [ + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + } + ], + { + "x": -0.97094, + "y": -0.23932 + }, + { + "x": -0.88546, + "y": -0.46472 + }, + { + "x": -0.74854, + "y": -0.66309 + }, + { + "x": -0.56801, + "y": -0.82302 + }, + { + "x": -0.35465, + "y": -0.935 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35465, + "y": -0.935 + }, + { + "x": 0.56801, + "y": -0.82302 + }, + { + "x": 0.74854, + "y": -0.66309 + }, + { + "x": 0.88546, + "y": -0.46472 + }, + { + "x": 0.97094, + "y": -0.23932 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 12, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 520 + }, + "angle": 0, + "vertices": { + "#": 521 + }, + "position": { + "#": 546 + }, + "force": { + "#": 547 + }, + "torque": 0, + "positionImpulse": { + "#": 548 + }, + "constraintImpulse": { + "#": 549 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 550 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 551 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 552 + }, + "circleRadius": 23.99402, + "bounds": { + "#": 554 + }, + "positionPrev": { + "#": 557 + }, + "anglePrev": 0, + "axes": { + "#": 558 + }, + "area": 1788.11767, + "mass": 1.78812, + "inverseMass": 0.55925, + "inertia": 2035.55921, + "inverseInertia": 0.00049, + "parent": { + "#": 519 + }, + "sleepCounter": 0 + }, + [ + { + "#": 519 + } + ], + [ + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + } + ], + { + "x": 537.358, + "y": 76.921, + "index": 0, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 535.737, + "y": 82.971, + "index": 1, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 532.605, + "y": 88.396, + "index": 2, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 528.176, + "y": 92.825, + "index": 3, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 522.751, + "y": 95.957, + "index": 4, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 516.701, + "y": 97.578, + "index": 5, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 510.437, + "y": 97.578, + "index": 6, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 504.387, + "y": 95.957, + "index": 7, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 498.962, + "y": 92.825, + "index": 8, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 494.533, + "y": 88.396, + "index": 9, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 491.401, + "y": 82.971, + "index": 10, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 489.78, + "y": 76.921, + "index": 11, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 489.78, + "y": 70.657, + "index": 12, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 491.401, + "y": 64.607, + "index": 13, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 494.533, + "y": 59.182, + "index": 14, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 498.962, + "y": 54.753, + "index": 15, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 504.387, + "y": 51.621, + "index": 16, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 510.437, + "y": 50, + "index": 17, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 516.701, + "y": 50, + "index": 18, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 522.751, + "y": 51.621, + "index": 19, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 528.176, + "y": 54.753, + "index": 20, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 532.605, + "y": 59.182, + "index": 21, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 535.737, + "y": 64.607, + "index": 22, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 537.358, + "y": 70.657, + "index": 23, + "body": { + "#": 519 + }, + "isInternal": false + }, + { + "x": 513.569, + "y": 73.789 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 553 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 555 + }, + "max": { + "#": 556 + } + }, + { + "x": 489.78, + "y": 50 + }, + { + "x": 537.358, + "y": 97.578 + }, + { + "x": 513.569, + "y": 73.789 + }, + [ + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + } + ], + { + "x": -0.96593, + "y": -0.25881 + }, + { + "x": -0.86603, + "y": -0.49999 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": -0.25881, + "y": -0.96593 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25881, + "y": -0.96593 + }, + { + "x": 0.49999, + "y": -0.86603 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86603, + "y": -0.49999 + }, + { + "x": 0.96593, + "y": -0.25881 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 13, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 572 + }, + "angle": 0, + "vertices": { + "#": 573 + }, + "position": { + "#": 598 + }, + "force": { + "#": 599 + }, + "torque": 0, + "positionImpulse": { + "#": 600 + }, + "constraintImpulse": { + "#": 601 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 602 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 603 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 604 + }, + "circleRadius": 23.54739, + "bounds": { + "#": 606 + }, + "positionPrev": { + "#": 609 + }, + "anglePrev": 0, + "axes": { + "#": 610 + }, + "area": 1722.11497, + "mass": 1.72211, + "inverseMass": 0.58068, + "inertia": 1888.06018, + "inverseInertia": 0.00053, + "parent": { + "#": 571 + }, + "sleepCounter": 0 + }, + [ + { + "#": 571 + } + ], + [ + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + } + ], + { + "x": 594.05, + "y": 76.42, + "index": 0, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 592.459, + "y": 82.357, + "index": 1, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 589.385, + "y": 87.681, + "index": 2, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 585.039, + "y": 92.027, + "index": 3, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 579.715, + "y": 95.101, + "index": 4, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 573.778, + "y": 96.692, + "index": 5, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 567.63, + "y": 96.692, + "index": 6, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 561.693, + "y": 95.101, + "index": 7, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 556.369, + "y": 92.027, + "index": 8, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 552.023, + "y": 87.681, + "index": 9, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 548.949, + "y": 82.357, + "index": 10, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 547.358, + "y": 76.42, + "index": 11, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 547.358, + "y": 70.272, + "index": 12, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 548.949, + "y": 64.335, + "index": 13, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 552.023, + "y": 59.011, + "index": 14, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 556.369, + "y": 54.665, + "index": 15, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 561.693, + "y": 51.591, + "index": 16, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 567.63, + "y": 50, + "index": 17, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 573.778, + "y": 50, + "index": 18, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 579.715, + "y": 51.591, + "index": 19, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 585.039, + "y": 54.665, + "index": 20, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 589.385, + "y": 59.011, + "index": 21, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 592.459, + "y": 64.335, + "index": 22, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 594.05, + "y": 70.272, + "index": 23, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 570.704, + "y": 73.346 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 605 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 607 + }, + "max": { + "#": 608 + } + }, + { + "x": 547.358, + "y": 50 + }, + { + "x": 594.05, + "y": 96.692 + }, + { + "x": 570.704, + "y": 73.346 + }, + [ + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + } + ], + { + "x": -0.96592, + "y": -0.25885 + }, + { + "x": -0.86601, + "y": -0.50002 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.50002, + "y": -0.86601 + }, + { + "x": -0.25885, + "y": -0.96592 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25885, + "y": -0.96592 + }, + { + "x": 0.50002, + "y": -0.86601 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86601, + "y": -0.50002 + }, + { + "x": 0.96592, + "y": -0.25885 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 14, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 624 + }, + "angle": 0, + "vertices": { + "#": 625 + }, + "position": { + "#": 648 + }, + "force": { + "#": 649 + }, + "torque": 0, + "positionImpulse": { + "#": 650 + }, + "constraintImpulse": { + "#": 651 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 652 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 653 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 654 + }, + "circleRadius": 20.12236, + "bounds": { + "#": 656 + }, + "positionPrev": { + "#": 659 + }, + "anglePrev": 0, + "axes": { + "#": 660 + }, + "area": 1254.82541, + "mass": 1.25483, + "inverseMass": 0.79692, + "inertia": 1002.45051, + "inverseInertia": 0.001, + "parent": { + "#": 623 + }, + "sleepCounter": 0 + }, + [ + { + "#": 623 + } + ], + [ + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + } + ], + { + "x": 643.886, + "y": 72.986, + "index": 0, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 642.272, + "y": 78.481, + "index": 1, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 639.175, + "y": 83.299, + "index": 2, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 634.847, + "y": 87.05, + "index": 3, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 629.637, + "y": 89.429, + "index": 4, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 623.968, + "y": 90.244, + "index": 5, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 618.299, + "y": 89.429, + "index": 6, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 613.089, + "y": 87.05, + "index": 7, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 608.761, + "y": 83.299, + "index": 8, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 605.664, + "y": 78.481, + "index": 9, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 604.05, + "y": 72.986, + "index": 10, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 604.05, + "y": 67.258, + "index": 11, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 605.664, + "y": 61.763, + "index": 12, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 608.761, + "y": 56.945, + "index": 13, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 613.089, + "y": 53.194, + "index": 14, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 618.299, + "y": 50.815, + "index": 15, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 623.968, + "y": 50, + "index": 16, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 629.637, + "y": 50.815, + "index": 17, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 634.847, + "y": 53.194, + "index": 18, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 639.175, + "y": 56.945, + "index": 19, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 642.272, + "y": 61.763, + "index": 20, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 643.886, + "y": 67.258, + "index": 21, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 623.968, + "y": 70.122 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 655 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 657 + }, + "max": { + "#": 658 + } + }, + { + "x": 604.05, + "y": 50 + }, + { + "x": 643.886, + "y": 90.244 + }, + { + "x": 623.968, + "y": 70.122 + }, + [ + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + } + ], + { + "x": -0.95947, + "y": -0.28182 + }, + { + "x": -0.8412, + "y": -0.54072 + }, + { + "x": -0.65494, + "y": -0.75568 + }, + { + "x": -0.41537, + "y": -0.90965 + }, + { + "x": -0.1423, + "y": -0.98982 + }, + { + "x": 0.1423, + "y": -0.98982 + }, + { + "x": 0.41537, + "y": -0.90965 + }, + { + "x": 0.65494, + "y": -0.75568 + }, + { + "x": 0.8412, + "y": -0.54072 + }, + { + "x": 0.95947, + "y": -0.28182 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 15, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 673 + }, + "angle": 0, + "vertices": { + "#": 674 + }, + "position": { + "#": 701 + }, + "force": { + "#": 702 + }, + "torque": 0, + "positionImpulse": { + "#": 703 + }, + "constraintImpulse": { + "#": 704 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 705 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 706 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 707 + }, + "circleRadius": 26.68191, + "bounds": { + "#": 709 + }, + "positionPrev": { + "#": 712 + }, + "anglePrev": 0, + "axes": { + "#": 713 + }, + "area": 2214.88784, + "mass": 2.21489, + "inverseMass": 0.45149, + "inertia": 3123.14313, + "inverseInertia": 0.00032, + "parent": { + "#": 672 + }, + "sleepCounter": 0 + }, + [ + { + "#": 672 + } + ], + [ + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + } + ], + { + "x": 152.974, + "y": 148.9, + "index": 0, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 151.435, + "y": 155.146, + "index": 1, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 148.446, + "y": 160.841, + "index": 2, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 144.18, + "y": 165.656, + "index": 3, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 138.887, + "y": 169.31, + "index": 4, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 132.872, + "y": 171.591, + "index": 5, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 126.487, + "y": 172.366, + "index": 6, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 120.102, + "y": 171.591, + "index": 7, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 114.087, + "y": 169.31, + "index": 8, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 108.794, + "y": 165.656, + "index": 9, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 104.528, + "y": 160.841, + "index": 10, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 101.539, + "y": 155.146, + "index": 11, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 100, + "y": 148.9, + "index": 12, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 100, + "y": 142.468, + "index": 13, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 101.539, + "y": 136.222, + "index": 14, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 104.528, + "y": 130.527, + "index": 15, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 108.794, + "y": 125.712, + "index": 16, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 114.087, + "y": 122.058, + "index": 17, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 120.102, + "y": 119.777, + "index": 18, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 126.487, + "y": 119.002, + "index": 19, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 132.872, + "y": 119.777, + "index": 20, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 138.887, + "y": 122.058, + "index": 21, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 144.18, + "y": 125.712, + "index": 22, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 148.446, + "y": 130.527, + "index": 23, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 151.435, + "y": 136.222, + "index": 24, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 152.974, + "y": 142.468, + "index": 25, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 126.487, + "y": 145.684 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 708 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 710 + }, + "max": { + "#": 711 + } + }, + { + "x": 100, + "y": 119.002 + }, + { + "x": 152.974, + "y": 172.366 + }, + { + "x": 126.487, + "y": 145.684 + }, + [ + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + } + ], + { + "x": -0.97096, + "y": -0.23924 + }, + { + "x": -0.88545, + "y": -0.46473 + }, + { + "x": -0.74849, + "y": -0.66315 + }, + { + "x": -0.56812, + "y": -0.82295 + }, + { + "x": -0.35458, + "y": -0.93503 + }, + { + "x": -0.12049, + "y": -0.99271 + }, + { + "x": 0.12049, + "y": -0.99271 + }, + { + "x": 0.35458, + "y": -0.93503 + }, + { + "x": 0.56812, + "y": -0.82295 + }, + { + "x": 0.74849, + "y": -0.66315 + }, + { + "x": 0.88545, + "y": -0.46473 + }, + { + "x": 0.97096, + "y": -0.23924 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 16, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 728 + }, + "angle": 0, + "vertices": { + "#": 729 + }, + "position": { + "#": 750 + }, + "force": { + "#": 751 + }, + "torque": 0, + "positionImpulse": { + "#": 752 + }, + "constraintImpulse": { + "#": 753 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 754 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 755 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 756 + }, + "circleRadius": 18.96676, + "bounds": { + "#": 758 + }, + "positionPrev": { + "#": 761 + }, + "anglePrev": 0, + "axes": { + "#": 762 + }, + "area": 1111.68177, + "mass": 1.11168, + "inverseMass": 0.89954, + "inertia": 786.80094, + "inverseInertia": 0.00127, + "parent": { + "#": 727 + }, + "sleepCounter": 0 + }, + [ + { + "#": 727 + } + ], + [ + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + }, + { + "#": 749 + } + ], + { + "x": 200.44, + "y": 140.702, + "index": 0, + "body": { + "#": 727 + }, + "isInternal": false + }, + { + "x": 198.607, + "y": 146.346, + "index": 1, + "body": { + "#": 727 + }, + "isInternal": false + }, + { + "x": 195.119, + "y": 151.147, + "index": 2, + "body": { + "#": 727 + }, + "isInternal": false + }, + { + "x": 190.318, + "y": 154.635, + "index": 3, + "body": { + "#": 727 + }, + "isInternal": false + }, + { + "x": 184.674, + "y": 156.468, + "index": 4, + "body": { + "#": 727 + }, + "isInternal": false + }, + { + "x": 178.74, + "y": 156.468, + "index": 5, + "body": { + "#": 727 + }, + "isInternal": false + }, + { + "x": 173.096, + "y": 154.635, + "index": 6, + "body": { + "#": 727 + }, + "isInternal": false + }, + { + "x": 168.295, + "y": 151.147, + "index": 7, + "body": { + "#": 727 + }, + "isInternal": false + }, + { + "x": 164.807, + "y": 146.346, + "index": 8, + "body": { + "#": 727 + }, + "isInternal": false + }, + { + "x": 162.974, + "y": 140.702, + "index": 9, + "body": { + "#": 727 + }, + "isInternal": false + }, + { + "x": 162.974, + "y": 134.768, + "index": 10, + "body": { + "#": 727 + }, + "isInternal": false + }, + { + "x": 164.807, + "y": 129.124, + "index": 11, + "body": { + "#": 727 + }, + "isInternal": false + }, + { + "x": 168.295, + "y": 124.323, + "index": 12, + "body": { + "#": 727 + }, + "isInternal": false + }, + { + "x": 173.096, + "y": 120.835, + "index": 13, + "body": { + "#": 727 + }, + "isInternal": false + }, + { + "x": 178.74, + "y": 119.002, + "index": 14, + "body": { + "#": 727 + }, + "isInternal": false + }, + { + "x": 184.674, + "y": 119.002, + "index": 15, + "body": { + "#": 727 + }, + "isInternal": false + }, + { + "x": 190.318, + "y": 120.835, + "index": 16, + "body": { + "#": 727 + }, + "isInternal": false + }, + { + "x": 195.119, + "y": 124.323, + "index": 17, + "body": { + "#": 727 + }, + "isInternal": false + }, + { + "x": 198.607, + "y": 129.124, + "index": 18, + "body": { + "#": 727 + }, + "isInternal": false + }, + { + "x": 200.44, + "y": 134.768, + "index": 19, + "body": { + "#": 727 + }, + "isInternal": false + }, + { + "x": 181.707, + "y": 137.735 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 757 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 759 + }, + "max": { + "#": 760 + } + }, + { + "x": 162.974, + "y": 119.002 + }, + { + "x": 200.44, + "y": 156.468 + }, + { + "x": 181.707, + "y": 137.735 + }, + [ + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + }, + { + "#": 767 + }, + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + } + ], + { + "x": -0.9511, + "y": -0.30889 + }, + { + "x": -0.80903, + "y": -0.58777 + }, + { + "x": -0.58777, + "y": -0.80903 + }, + { + "x": -0.30889, + "y": -0.9511 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30889, + "y": -0.9511 + }, + { + "x": 0.58777, + "y": -0.80903 + }, + { + "x": 0.80903, + "y": -0.58777 + }, + { + "x": 0.9511, + "y": -0.30889 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 17, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 774 + }, + "angle": 0, + "vertices": { + "#": 775 + }, + "position": { + "#": 802 + }, + "force": { + "#": 803 + }, + "torque": 0, + "positionImpulse": { + "#": 804 + }, + "constraintImpulse": { + "#": 805 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 806 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 807 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 808 + }, + "circleRadius": 27.1621, + "bounds": { + "#": 810 + }, + "positionPrev": { + "#": 813 + }, + "anglePrev": 0, + "axes": { + "#": 814 + }, + "area": 2295.31976, + "mass": 2.29532, + "inverseMass": 0.43567, + "inertia": 3354.09068, + "inverseInertia": 0.0003, + "parent": { + "#": 773 + }, + "sleepCounter": 0 + }, + [ + { + "#": 773 + } + ], + [ + { + "#": 776 + }, + { + "#": 777 + }, + { + "#": 778 + }, + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + }, + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + }, + { + "#": 801 + } + ], + { + "x": 264.368, + "y": 149.438, + "index": 0, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 262.801, + "y": 155.796, + "index": 1, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 259.758, + "y": 161.594, + "index": 2, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 255.416, + "y": 166.495, + "index": 3, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 250.027, + "y": 170.215, + "index": 4, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 243.904, + "y": 172.537, + "index": 5, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 237.404, + "y": 173.326, + "index": 6, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 230.904, + "y": 172.537, + "index": 7, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 224.781, + "y": 170.215, + "index": 8, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 219.392, + "y": 166.495, + "index": 9, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 215.05, + "y": 161.594, + "index": 10, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 212.007, + "y": 155.796, + "index": 11, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 210.44, + "y": 149.438, + "index": 12, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 210.44, + "y": 142.89, + "index": 13, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 212.007, + "y": 136.532, + "index": 14, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 215.05, + "y": 130.734, + "index": 15, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 219.392, + "y": 125.833, + "index": 16, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 224.781, + "y": 122.113, + "index": 17, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 230.904, + "y": 119.791, + "index": 18, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 237.404, + "y": 119.002, + "index": 19, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 243.904, + "y": 119.791, + "index": 20, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 250.027, + "y": 122.113, + "index": 21, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 255.416, + "y": 125.833, + "index": 22, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 259.758, + "y": 130.734, + "index": 23, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 262.801, + "y": 136.532, + "index": 24, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 264.368, + "y": 142.89, + "index": 25, + "body": { + "#": 773 + }, + "isInternal": false + }, + { + "x": 237.404, + "y": 146.164 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 809 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 811 + }, + "max": { + "#": 812 + } + }, + { + "x": 210.44, + "y": 119.002 + }, + { + "x": 264.368, + "y": 173.326 + }, + { + "x": 237.404, + "y": 146.164 + }, + [ + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + }, + { + "#": 827 + } + ], + { + "x": -0.97095, + "y": -0.2393 + }, + { + "x": -0.88546, + "y": -0.46472 + }, + { + "x": -0.7485, + "y": -0.66313 + }, + { + "x": -0.56809, + "y": -0.82297 + }, + { + "x": -0.35459, + "y": -0.93502 + }, + { + "x": -0.1205, + "y": -0.99271 + }, + { + "x": 0.1205, + "y": -0.99271 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.56809, + "y": -0.82297 + }, + { + "x": 0.7485, + "y": -0.66313 + }, + { + "x": 0.88546, + "y": -0.46472 + }, + { + "x": 0.97095, + "y": -0.2393 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 18, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 829 + }, + "angle": 0, + "vertices": { + "#": 830 + }, + "position": { + "#": 857 + }, + "force": { + "#": 858 + }, + "torque": 0, + "positionImpulse": { + "#": 859 + }, + "constraintImpulse": { + "#": 860 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 861 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 862 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 863 + }, + "circleRadius": 27.56424, + "bounds": { + "#": 865 + }, + "positionPrev": { + "#": 868 + }, + "anglePrev": 0, + "axes": { + "#": 869 + }, + "area": 2363.75191, + "mass": 2.36375, + "inverseMass": 0.42306, + "inertia": 3557.06824, + "inverseInertia": 0.00028, + "parent": { + "#": 828 + }, + "sleepCounter": 0 + }, + [ + { + "#": 828 + } + ], + [ + { + "#": 831 + }, + { + "#": 832 + }, + { + "#": 833 + }, + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + }, + { + "#": 852 + }, + { + "#": 853 + }, + { + "#": 854 + }, + { + "#": 855 + }, + { + "#": 856 + } + ], + { + "x": 329.094, + "y": 149.889, + "index": 0, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 327.504, + "y": 156.34, + "index": 1, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 324.416, + "y": 162.224, + "index": 2, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 320.009, + "y": 167.198, + "index": 3, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 314.541, + "y": 170.973, + "index": 4, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 308.328, + "y": 173.329, + "index": 5, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 301.731, + "y": 174.13, + "index": 6, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 295.134, + "y": 173.329, + "index": 7, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 288.921, + "y": 170.973, + "index": 8, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 283.453, + "y": 167.198, + "index": 9, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 279.046, + "y": 162.224, + "index": 10, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 275.958, + "y": 156.34, + "index": 11, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 274.368, + "y": 149.889, + "index": 12, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 274.368, + "y": 143.243, + "index": 13, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 275.958, + "y": 136.792, + "index": 14, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 279.046, + "y": 130.908, + "index": 15, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 283.453, + "y": 125.934, + "index": 16, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 288.921, + "y": 122.159, + "index": 17, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 295.134, + "y": 119.803, + "index": 18, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 301.731, + "y": 119.002, + "index": 19, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 308.328, + "y": 119.803, + "index": 20, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 314.541, + "y": 122.159, + "index": 21, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 320.009, + "y": 125.934, + "index": 22, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 324.416, + "y": 130.908, + "index": 23, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 327.504, + "y": 136.792, + "index": 24, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 329.094, + "y": 143.243, + "index": 25, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 301.731, + "y": 146.566 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 864 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 866 + }, + "max": { + "#": 867 + } + }, + { + "x": 274.368, + "y": 119.002 + }, + { + "x": 329.094, + "y": 174.13 + }, + { + "x": 301.731, + "y": 146.566 + }, + [ + { + "#": 870 + }, + { + "#": 871 + }, + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + }, + { + "#": 877 + }, + { + "#": 878 + }, + { + "#": 879 + }, + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + } + ], + { + "x": -0.97094, + "y": -0.23931 + }, + { + "x": -0.88547, + "y": -0.4647 + }, + { + "x": -0.74848, + "y": -0.66316 + }, + { + "x": -0.56814, + "y": -0.82293 + }, + { + "x": -0.35457, + "y": -0.93503 + }, + { + "x": -0.12053, + "y": -0.99271 + }, + { + "x": 0.12053, + "y": -0.99271 + }, + { + "x": 0.35457, + "y": -0.93503 + }, + { + "x": 0.56814, + "y": -0.82293 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88547, + "y": -0.4647 + }, + { + "x": 0.97094, + "y": -0.23931 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 19, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 884 + }, + "angle": 0, + "vertices": { + "#": 885 + }, + "position": { + "#": 912 + }, + "force": { + "#": 913 + }, + "torque": 0, + "positionImpulse": { + "#": 914 + }, + "constraintImpulse": { + "#": 915 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 916 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 917 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 918 + }, + "circleRadius": 24.24724, + "bounds": { + "#": 920 + }, + "positionPrev": { + "#": 923 + }, + "anglePrev": 0, + "axes": { + "#": 924 + }, + "area": 1829.10611, + "mass": 1.82911, + "inverseMass": 0.54672, + "inertia": 2129.93431, + "inverseInertia": 0.00047, + "parent": { + "#": 883 + }, + "sleepCounter": 0 + }, + [ + { + "#": 883 + } + ], + [ + { + "#": 886 + }, + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + }, + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + }, + { + "#": 894 + }, + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + }, + { + "#": 901 + }, + { + "#": 902 + }, + { + "#": 903 + }, + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + } + ], + { + "x": 387.234, + "y": 146.172, + "index": 0, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 385.836, + "y": 151.847, + "index": 1, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 383.119, + "y": 157.023, + "index": 2, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 379.243, + "y": 161.398, + "index": 3, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 374.432, + "y": 164.719, + "index": 4, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 368.967, + "y": 166.792, + "index": 5, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 363.164, + "y": 167.496, + "index": 6, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 357.361, + "y": 166.792, + "index": 7, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 351.896, + "y": 164.719, + "index": 8, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 347.085, + "y": 161.398, + "index": 9, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 343.209, + "y": 157.023, + "index": 10, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 340.492, + "y": 151.847, + "index": 11, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 339.094, + "y": 146.172, + "index": 12, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 339.094, + "y": 140.326, + "index": 13, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 340.492, + "y": 134.651, + "index": 14, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 343.209, + "y": 129.475, + "index": 15, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 347.085, + "y": 125.1, + "index": 16, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 351.896, + "y": 121.779, + "index": 17, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 357.361, + "y": 119.706, + "index": 18, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 363.164, + "y": 119.002, + "index": 19, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 368.967, + "y": 119.706, + "index": 20, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 374.432, + "y": 121.779, + "index": 21, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 379.243, + "y": 125.1, + "index": 22, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 383.119, + "y": 129.475, + "index": 23, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 385.836, + "y": 134.651, + "index": 24, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 387.234, + "y": 140.326, + "index": 25, + "body": { + "#": 883 + }, + "isInternal": false + }, + { + "x": 363.164, + "y": 143.249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 919 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 921 + }, + "max": { + "#": 922 + } + }, + { + "x": 339.094, + "y": 119.002 + }, + { + "x": 387.234, + "y": 167.496 + }, + { + "x": 363.164, + "y": 143.249 + }, + [ + { + "#": 925 + }, + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + }, + { + "#": 932 + }, + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + }, + { + "#": 937 + } + ], + { + "x": -0.97097, + "y": -0.23919 + }, + { + "x": -0.88543, + "y": -0.46478 + }, + { + "x": -0.7485, + "y": -0.66313 + }, + { + "x": -0.56809, + "y": -0.82297 + }, + { + "x": -0.35466, + "y": -0.93499 + }, + { + "x": -0.12043, + "y": -0.99272 + }, + { + "x": 0.12043, + "y": -0.99272 + }, + { + "x": 0.35466, + "y": -0.93499 + }, + { + "x": 0.56809, + "y": -0.82297 + }, + { + "x": 0.7485, + "y": -0.66313 + }, + { + "x": 0.88543, + "y": -0.46478 + }, + { + "x": 0.97097, + "y": -0.23919 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 20, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 939 + }, + "angle": 0, + "vertices": { + "#": 940 + }, + "position": { + "#": 963 + }, + "force": { + "#": 964 + }, + "torque": 0, + "positionImpulse": { + "#": 965 + }, + "constraintImpulse": { + "#": 966 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 967 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 968 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 969 + }, + "circleRadius": 20.72962, + "bounds": { + "#": 971 + }, + "positionPrev": { + "#": 974 + }, + "anglePrev": 0, + "axes": { + "#": 975 + }, + "area": 1331.7125, + "mass": 1.33171, + "inverseMass": 0.75091, + "inertia": 1129.06069, + "inverseInertia": 0.00089, + "parent": { + "#": 938 + }, + "sleepCounter": 0 + }, + [ + { + "#": 938 + } + ], + [ + { + "#": 941 + }, + { + "#": 942 + }, + { + "#": 943 + }, + { + "#": 944 + }, + { + "#": 945 + }, + { + "#": 946 + }, + { + "#": 947 + }, + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + }, + { + "#": 959 + }, + { + "#": 960 + }, + { + "#": 961 + }, + { + "#": 962 + } + ], + { + "x": 438.272, + "y": 142.682, + "index": 0, + "body": { + "#": 938 + }, + "isInternal": false + }, + { + "x": 436.609, + "y": 148.343, + "index": 1, + "body": { + "#": 938 + }, + "isInternal": false + }, + { + "x": 433.419, + "y": 153.307, + "index": 2, + "body": { + "#": 938 + }, + "isInternal": false + }, + { + "x": 428.96, + "y": 157.171, + "index": 3, + "body": { + "#": 938 + }, + "isInternal": false + }, + { + "x": 423.593, + "y": 159.622, + "index": 4, + "body": { + "#": 938 + }, + "isInternal": false + }, + { + "x": 417.753, + "y": 160.462, + "index": 5, + "body": { + "#": 938 + }, + "isInternal": false + }, + { + "x": 411.913, + "y": 159.622, + "index": 6, + "body": { + "#": 938 + }, + "isInternal": false + }, + { + "x": 406.546, + "y": 157.171, + "index": 7, + "body": { + "#": 938 + }, + "isInternal": false + }, + { + "x": 402.087, + "y": 153.307, + "index": 8, + "body": { + "#": 938 + }, + "isInternal": false + }, + { + "x": 398.897, + "y": 148.343, + "index": 9, + "body": { + "#": 938 + }, + "isInternal": false + }, + { + "x": 397.234, + "y": 142.682, + "index": 10, + "body": { + "#": 938 + }, + "isInternal": false + }, + { + "x": 397.234, + "y": 136.782, + "index": 11, + "body": { + "#": 938 + }, + "isInternal": false + }, + { + "x": 398.897, + "y": 131.121, + "index": 12, + "body": { + "#": 938 + }, + "isInternal": false + }, + { + "x": 402.087, + "y": 126.157, + "index": 13, + "body": { + "#": 938 + }, + "isInternal": false + }, + { + "x": 406.546, + "y": 122.293, + "index": 14, + "body": { + "#": 938 + }, + "isInternal": false + }, + { + "x": 411.913, + "y": 119.842, + "index": 15, + "body": { + "#": 938 + }, + "isInternal": false + }, + { + "x": 417.753, + "y": 119.002, + "index": 16, + "body": { + "#": 938 + }, + "isInternal": false + }, + { + "x": 423.593, + "y": 119.842, + "index": 17, + "body": { + "#": 938 + }, + "isInternal": false + }, + { + "x": 428.96, + "y": 122.293, + "index": 18, + "body": { + "#": 938 + }, + "isInternal": false + }, + { + "x": 433.419, + "y": 126.157, + "index": 19, + "body": { + "#": 938 + }, + "isInternal": false + }, + { + "x": 436.609, + "y": 131.121, + "index": 20, + "body": { + "#": 938 + }, + "isInternal": false + }, + { + "x": 438.272, + "y": 136.782, + "index": 21, + "body": { + "#": 938 + }, + "isInternal": false + }, + { + "x": 417.753, + "y": 139.732 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 970 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 972 + }, + "max": { + "#": 973 + } + }, + { + "x": 397.234, + "y": 119.002 + }, + { + "x": 438.272, + "y": 160.462 + }, + { + "x": 417.753, + "y": 139.732 + }, + [ + { + "#": 976 + }, + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + }, + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + }, + { + "#": 985 + }, + { + "#": 986 + } + ], + { + "x": -0.95946, + "y": -0.28185 + }, + { + "x": -0.84127, + "y": -0.54062 + }, + { + "x": -0.65489, + "y": -0.75573 + }, + { + "x": -0.41541, + "y": -0.90963 + }, + { + "x": -0.14237, + "y": -0.98981 + }, + { + "x": 0.14237, + "y": -0.98981 + }, + { + "x": 0.41541, + "y": -0.90963 + }, + { + "x": 0.65489, + "y": -0.75573 + }, + { + "x": 0.84127, + "y": -0.54062 + }, + { + "x": 0.95946, + "y": -0.28185 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 21, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 988 + }, + "angle": 0, + "vertices": { + "#": 989 + }, + "position": { + "#": 1008 + }, + "force": { + "#": 1009 + }, + "torque": 0, + "positionImpulse": { + "#": 1010 + }, + "constraintImpulse": { + "#": 1011 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1012 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1013 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1014 + }, + "circleRadius": 16.64101, + "bounds": { + "#": 1016 + }, + "positionPrev": { + "#": 1019 + }, + "anglePrev": 0, + "axes": { + "#": 1020 + }, + "area": 852.43514, + "mass": 0.85244, + "inverseMass": 1.17311, + "inertia": 462.63572, + "inverseInertia": 0.00216, + "parent": { + "#": 987 + }, + "sleepCounter": 0 + }, + [ + { + "#": 987 + } + ], + [ + { + "#": 990 + }, + { + "#": 991 + }, + { + "#": 992 + }, + { + "#": 993 + }, + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + }, + { + "#": 997 + }, + { + "#": 998 + }, + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + }, + { + "#": 1002 + }, + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + }, + { + "#": 1007 + } + ], + { + "x": 481.048, + "y": 138.533, + "index": 0, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 479.072, + "y": 143.964, + "index": 1, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 475.357, + "y": 148.391, + "index": 2, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 470.352, + "y": 151.28, + "index": 3, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 464.66, + "y": 152.284, + "index": 4, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 458.968, + "y": 151.28, + "index": 5, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 453.963, + "y": 148.391, + "index": 6, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 450.248, + "y": 143.964, + "index": 7, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 448.272, + "y": 138.533, + "index": 8, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 448.272, + "y": 132.753, + "index": 9, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 450.248, + "y": 127.322, + "index": 10, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 453.963, + "y": 122.895, + "index": 11, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 458.968, + "y": 120.006, + "index": 12, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 464.66, + "y": 119.002, + "index": 13, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 470.352, + "y": 120.006, + "index": 14, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 475.357, + "y": 122.895, + "index": 15, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 479.072, + "y": 127.322, + "index": 16, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 481.048, + "y": 132.753, + "index": 17, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 464.66, + "y": 135.643 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1015 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1017 + }, + "max": { + "#": 1018 + } + }, + { + "x": 448.272, + "y": 119.002 + }, + { + "x": 481.048, + "y": 152.284 + }, + { + "x": 464.66, + "y": 135.643 + }, + [ + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + }, + { + "#": 1026 + }, + { + "#": 1027 + }, + { + "#": 1028 + }, + { + "#": 1029 + } + ], + { + "x": -0.93973, + "y": -0.34191 + }, + { + "x": -0.76602, + "y": -0.64282 + }, + { + "x": -0.49992, + "y": -0.86607 + }, + { + "x": -0.17371, + "y": -0.9848 + }, + { + "x": 0.17371, + "y": -0.9848 + }, + { + "x": 0.49992, + "y": -0.86607 + }, + { + "x": 0.76602, + "y": -0.64282 + }, + { + "x": 0.93973, + "y": -0.34191 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 22, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1031 + }, + "angle": 0, + "vertices": { + "#": 1032 + }, + "position": { + "#": 1059 + }, + "force": { + "#": 1060 + }, + "torque": 0, + "positionImpulse": { + "#": 1061 + }, + "constraintImpulse": { + "#": 1062 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1063 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1064 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1065 + }, + "circleRadius": 29.38882, + "bounds": { + "#": 1067 + }, + "positionPrev": { + "#": 1070 + }, + "anglePrev": 0, + "axes": { + "#": 1071 + }, + "area": 2687.1084, + "mass": 2.68711, + "inverseMass": 0.37215, + "inertia": 4596.83359, + "inverseInertia": 0.00022, + "parent": { + "#": 1030 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1030 + } + ], + [ + { + "#": 1033 + }, + { + "#": 1034 + }, + { + "#": 1035 + }, + { + "#": 1036 + }, + { + "#": 1037 + }, + { + "#": 1038 + }, + { + "#": 1039 + }, + { + "#": 1040 + }, + { + "#": 1041 + }, + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + }, + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + }, + { + "#": 1057 + }, + { + "#": 1058 + } + ], + { + "x": 549.398, + "y": 151.933, + "index": 0, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 547.702, + "y": 158.812, + "index": 1, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 544.41, + "y": 165.086, + "index": 2, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 539.711, + "y": 170.389, + "index": 3, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 533.881, + "y": 174.414, + "index": 4, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 527.256, + "y": 176.926, + "index": 5, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 520.223, + "y": 177.78, + "index": 6, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 513.19, + "y": 176.926, + "index": 7, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 506.565, + "y": 174.414, + "index": 8, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 500.735, + "y": 170.389, + "index": 9, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 496.036, + "y": 165.086, + "index": 10, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 492.744, + "y": 158.812, + "index": 11, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 491.048, + "y": 151.933, + "index": 12, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 491.048, + "y": 144.849, + "index": 13, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 492.744, + "y": 137.97, + "index": 14, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 496.036, + "y": 131.696, + "index": 15, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 500.735, + "y": 126.393, + "index": 16, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 506.565, + "y": 122.368, + "index": 17, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 513.19, + "y": 119.856, + "index": 18, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 520.223, + "y": 119.002, + "index": 19, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 527.256, + "y": 119.856, + "index": 20, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 533.881, + "y": 122.368, + "index": 21, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 539.711, + "y": 126.393, + "index": 22, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 544.41, + "y": 131.696, + "index": 23, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 547.702, + "y": 137.97, + "index": 24, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 549.398, + "y": 144.849, + "index": 25, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 520.223, + "y": 148.391 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1066 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1068 + }, + "max": { + "#": 1069 + } + }, + { + "x": 491.048, + "y": 119.002 + }, + { + "x": 549.398, + "y": 177.78 + }, + { + "x": 520.223, + "y": 148.391 + }, + [ + { + "#": 1072 + }, + { + "#": 1073 + }, + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + } + ], + { + "x": -0.97093, + "y": -0.23938 + }, + { + "x": -0.88551, + "y": -0.46463 + }, + { + "x": -0.74844, + "y": -0.6632 + }, + { + "x": -0.56815, + "y": -0.82293 + }, + { + "x": -0.35454, + "y": -0.93504 + }, + { + "x": -0.12054, + "y": -0.99271 + }, + { + "x": 0.12054, + "y": -0.99271 + }, + { + "x": 0.35454, + "y": -0.93504 + }, + { + "x": 0.56815, + "y": -0.82293 + }, + { + "x": 0.74844, + "y": -0.6632 + }, + { + "x": 0.88551, + "y": -0.46463 + }, + { + "x": 0.97093, + "y": -0.23938 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 23, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1086 + }, + "angle": 0, + "vertices": { + "#": 1087 + }, + "position": { + "#": 1110 + }, + "force": { + "#": 1111 + }, + "torque": 0, + "positionImpulse": { + "#": 1112 + }, + "constraintImpulse": { + "#": 1113 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1114 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1115 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1116 + }, + "circleRadius": 20.82491, + "bounds": { + "#": 1118 + }, + "positionPrev": { + "#": 1121 + }, + "anglePrev": 0, + "axes": { + "#": 1122 + }, + "area": 1343.97323, + "mass": 1.34397, + "inverseMass": 0.74406, + "inertia": 1149.94633, + "inverseInertia": 0.00087, + "parent": { + "#": 1085 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1085 + } + ], + [ + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + }, + { + "#": 1108 + }, + { + "#": 1109 + } + ], + { + "x": 600.624, + "y": 142.791, + "index": 0, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 598.954, + "y": 148.478, + "index": 1, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 595.749, + "y": 153.464, + "index": 2, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 591.27, + "y": 157.346, + "index": 3, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 585.878, + "y": 159.808, + "index": 4, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 580.011, + "y": 160.652, + "index": 5, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 574.144, + "y": 159.808, + "index": 6, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 568.752, + "y": 157.346, + "index": 7, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 564.273, + "y": 153.464, + "index": 8, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 561.068, + "y": 148.478, + "index": 9, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 559.398, + "y": 142.791, + "index": 10, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 559.398, + "y": 136.863, + "index": 11, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 561.068, + "y": 131.176, + "index": 12, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 564.273, + "y": 126.19, + "index": 13, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 568.752, + "y": 122.308, + "index": 14, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 574.144, + "y": 119.846, + "index": 15, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 580.011, + "y": 119.002, + "index": 16, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 585.878, + "y": 119.846, + "index": 17, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 591.27, + "y": 122.308, + "index": 18, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 595.749, + "y": 126.19, + "index": 19, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 598.954, + "y": 131.176, + "index": 20, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 600.624, + "y": 136.863, + "index": 21, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 580.011, + "y": 139.827 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1117 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1119 + }, + "max": { + "#": 1120 + } + }, + { + "x": 559.398, + "y": 119.002 + }, + { + "x": 600.624, + "y": 160.652 + }, + { + "x": 580.011, + "y": 139.827 + }, + [ + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + } + ], + { + "x": -0.95949, + "y": -0.28176 + }, + { + "x": -0.8412, + "y": -0.54072 + }, + { + "x": -0.65495, + "y": -0.75567 + }, + { + "x": -0.41535, + "y": -0.90966 + }, + { + "x": -0.14239, + "y": -0.98981 + }, + { + "x": 0.14239, + "y": -0.98981 + }, + { + "x": 0.41535, + "y": -0.90966 + }, + { + "x": 0.65495, + "y": -0.75567 + }, + { + "x": 0.8412, + "y": -0.54072 + }, + { + "x": 0.95949, + "y": -0.28176 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 24, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1135 + }, + "angle": 0, + "vertices": { + "#": 1136 + }, + "position": { + "#": 1163 + }, + "force": { + "#": 1164 + }, + "torque": 0, + "positionImpulse": { + "#": 1165 + }, + "constraintImpulse": { + "#": 1166 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1167 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1168 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1169 + }, + "circleRadius": 28.91223, + "bounds": { + "#": 1171 + }, + "positionPrev": { + "#": 1174 + }, + "anglePrev": 0, + "axes": { + "#": 1175 + }, + "area": 2600.58532, + "mass": 2.60059, + "inverseMass": 0.38453, + "inertia": 4305.56968, + "inverseInertia": 0.00023, + "parent": { + "#": 1134 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1134 + } + ], + [ + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + }, + { + "#": 1152 + }, + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + }, + { + "#": 1156 + }, + { + "#": 1157 + }, + { + "#": 1158 + }, + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + } + ], + { + "x": 668.026, + "y": 151.399, + "index": 0, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 666.358, + "y": 158.166, + "index": 1, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 663.119, + "y": 164.338, + "index": 2, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 658.497, + "y": 169.555, + "index": 3, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 652.761, + "y": 173.515, + "index": 4, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 646.244, + "y": 175.986, + "index": 5, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 639.325, + "y": 176.826, + "index": 6, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 632.406, + "y": 175.986, + "index": 7, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 625.889, + "y": 173.515, + "index": 8, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 620.153, + "y": 169.555, + "index": 9, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 615.531, + "y": 164.338, + "index": 10, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 612.292, + "y": 158.166, + "index": 11, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 610.624, + "y": 151.399, + "index": 12, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 610.624, + "y": 144.429, + "index": 13, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 612.292, + "y": 137.662, + "index": 14, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 615.531, + "y": 131.49, + "index": 15, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 620.153, + "y": 126.273, + "index": 16, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 625.889, + "y": 122.313, + "index": 17, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 632.406, + "y": 119.842, + "index": 18, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 639.325, + "y": 119.002, + "index": 19, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 646.244, + "y": 119.842, + "index": 20, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 652.761, + "y": 122.313, + "index": 21, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 658.497, + "y": 126.273, + "index": 22, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 663.119, + "y": 131.49, + "index": 23, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 666.358, + "y": 137.662, + "index": 24, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 668.026, + "y": 144.429, + "index": 25, + "body": { + "#": 1134 + }, + "isInternal": false + }, + { + "x": 639.325, + "y": 147.914 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1170 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1172 + }, + "max": { + "#": 1173 + } + }, + { + "x": 610.624, + "y": 119.002 + }, + { + "x": 668.026, + "y": 176.826 + }, + { + "x": 639.325, + "y": 147.914 + }, + [ + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + }, + { + "#": 1179 + }, + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + }, + { + "#": 1186 + }, + { + "#": 1187 + }, + { + "#": 1188 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88547, + "y": -0.46469 + }, + { + "x": -0.7485, + "y": -0.66313 + }, + { + "x": -0.56814, + "y": -0.82294 + }, + { + "x": -0.35453, + "y": -0.93504 + }, + { + "x": -0.12052, + "y": -0.99271 + }, + { + "x": 0.12052, + "y": -0.99271 + }, + { + "x": 0.35453, + "y": -0.93504 + }, + { + "x": 0.56814, + "y": -0.82294 + }, + { + "x": 0.7485, + "y": -0.66313 + }, + { + "x": 0.88547, + "y": -0.46469 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 25, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1190 + }, + "angle": 0, + "vertices": { + "#": 1191 + }, + "position": { + "#": 1218 + }, + "force": { + "#": 1219 + }, + "torque": 0, + "positionImpulse": { + "#": 1220 + }, + "constraintImpulse": { + "#": 1221 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1222 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1223 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1224 + }, + "circleRadius": 24.39153, + "bounds": { + "#": 1226 + }, + "positionPrev": { + "#": 1229 + }, + "anglePrev": 0, + "axes": { + "#": 1230 + }, + "area": 1850.95294, + "mass": 1.85095, + "inverseMass": 0.54026, + "inertia": 2181.11802, + "inverseInertia": 0.00046, + "parent": { + "#": 1189 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1189 + } + ], + [ + { + "#": 1192 + }, + { + "#": 1193 + }, + { + "#": 1194 + }, + { + "#": 1195 + }, + { + "#": 1196 + }, + { + "#": 1197 + }, + { + "#": 1198 + }, + { + "#": 1199 + }, + { + "#": 1200 + }, + { + "#": 1201 + }, + { + "#": 1202 + }, + { + "#": 1203 + }, + { + "#": 1204 + }, + { + "#": 1205 + }, + { + "#": 1206 + }, + { + "#": 1207 + }, + { + "#": 1208 + }, + { + "#": 1209 + }, + { + "#": 1210 + }, + { + "#": 1211 + }, + { + "#": 1212 + }, + { + "#": 1213 + }, + { + "#": 1214 + }, + { + "#": 1215 + }, + { + "#": 1216 + }, + { + "#": 1217 + } + ], + { + "x": 148.428, + "y": 215.112, + "index": 0, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 147.02, + "y": 220.821, + "index": 1, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 144.288, + "y": 226.028, + "index": 2, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 140.389, + "y": 230.429, + "index": 3, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 135.549, + "y": 233.77, + "index": 4, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 130.051, + "y": 235.855, + "index": 5, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 124.214, + "y": 236.564, + "index": 6, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 118.377, + "y": 235.855, + "index": 7, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 112.879, + "y": 233.77, + "index": 8, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 108.039, + "y": 230.429, + "index": 9, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 104.14, + "y": 226.028, + "index": 10, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 101.408, + "y": 220.821, + "index": 11, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 100, + "y": 215.112, + "index": 12, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 100, + "y": 209.232, + "index": 13, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 101.408, + "y": 203.523, + "index": 14, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 104.14, + "y": 198.316, + "index": 15, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 108.039, + "y": 193.915, + "index": 16, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 112.879, + "y": 190.574, + "index": 17, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 118.377, + "y": 188.489, + "index": 18, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 124.214, + "y": 187.78, + "index": 19, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 130.051, + "y": 188.489, + "index": 20, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 135.549, + "y": 190.574, + "index": 21, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 140.389, + "y": 193.915, + "index": 22, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 144.288, + "y": 198.316, + "index": 23, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 147.02, + "y": 203.523, + "index": 24, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 148.428, + "y": 209.232, + "index": 25, + "body": { + "#": 1189 + }, + "isInternal": false + }, + { + "x": 124.214, + "y": 212.172 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1225 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1227 + }, + "max": { + "#": 1228 + } + }, + { + "x": 100, + "y": 187.78 + }, + { + "x": 148.428, + "y": 236.564 + }, + { + "x": 124.214, + "y": 212.172 + }, + [ + { + "#": 1231 + }, + { + "#": 1232 + }, + { + "#": 1233 + }, + { + "#": 1234 + }, + { + "#": 1235 + }, + { + "#": 1236 + }, + { + "#": 1237 + }, + { + "#": 1238 + }, + { + "#": 1239 + }, + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + } + ], + { + "x": -0.97091, + "y": -0.23945 + }, + { + "x": -0.88552, + "y": -0.46461 + }, + { + "x": -0.74851, + "y": -0.66313 + }, + { + "x": -0.56809, + "y": -0.82297 + }, + { + "x": -0.35459, + "y": -0.93502 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.56809, + "y": -0.82297 + }, + { + "x": 0.74851, + "y": -0.66313 + }, + { + "x": 0.88552, + "y": -0.46461 + }, + { + "x": 0.97091, + "y": -0.23945 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 26, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1245 + }, + "angle": 0, + "vertices": { + "#": 1246 + }, + "position": { + "#": 1265 + }, + "force": { + "#": 1266 + }, + "torque": 0, + "positionImpulse": { + "#": 1267 + }, + "constraintImpulse": { + "#": 1268 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1269 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1270 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1271 + }, + "circleRadius": 17.44798, + "bounds": { + "#": 1273 + }, + "positionPrev": { + "#": 1276 + }, + "anglePrev": 0, + "axes": { + "#": 1277 + }, + "area": 937.0976, + "mass": 0.9371, + "inverseMass": 1.06712, + "inertia": 559.09565, + "inverseInertia": 0.00179, + "parent": { + "#": 1244 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1244 + } + ], + [ + { + "#": 1247 + }, + { + "#": 1248 + }, + { + "#": 1249 + }, + { + "#": 1250 + }, + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + }, + { + "#": 1254 + }, + { + "#": 1255 + }, + { + "#": 1256 + }, + { + "#": 1257 + }, + { + "#": 1258 + }, + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + }, + { + "#": 1263 + }, + { + "#": 1264 + } + ], + { + "x": 192.794, + "y": 208.258, + "index": 0, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 190.721, + "y": 213.952, + "index": 1, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 186.826, + "y": 218.594, + "index": 2, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 181.579, + "y": 221.624, + "index": 3, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 175.611, + "y": 222.676, + "index": 4, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 169.643, + "y": 221.624, + "index": 5, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 164.396, + "y": 218.594, + "index": 6, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 160.501, + "y": 213.952, + "index": 7, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 158.428, + "y": 208.258, + "index": 8, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 158.428, + "y": 202.198, + "index": 9, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 160.501, + "y": 196.504, + "index": 10, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 164.396, + "y": 191.862, + "index": 11, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 169.643, + "y": 188.832, + "index": 12, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 175.611, + "y": 187.78, + "index": 13, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 181.579, + "y": 188.832, + "index": 14, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 186.826, + "y": 191.862, + "index": 15, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 190.721, + "y": 196.504, + "index": 16, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 192.794, + "y": 202.198, + "index": 17, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 175.611, + "y": 205.228 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1272 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1274 + }, + "max": { + "#": 1275 + } + }, + { + "x": 158.428, + "y": 187.78 + }, + { + "x": 192.794, + "y": 222.676 + }, + { + "x": 175.611, + "y": 205.228 + }, + [ + { + "#": 1278 + }, + { + "#": 1279 + }, + { + "#": 1280 + }, + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + }, + { + "#": 1285 + }, + { + "#": 1286 + } + ], + { + "x": -0.93966, + "y": -0.3421 + }, + { + "x": -0.76605, + "y": -0.64278 + }, + { + "x": -0.50008, + "y": -0.86598 + }, + { + "x": -0.1736, + "y": -0.98482 + }, + { + "x": 0.1736, + "y": -0.98482 + }, + { + "x": 0.50008, + "y": -0.86598 + }, + { + "x": 0.76605, + "y": -0.64278 + }, + { + "x": 0.93966, + "y": -0.3421 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 27, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1288 + }, + "angle": 0, + "vertices": { + "#": 1289 + }, + "position": { + "#": 1316 + }, + "force": { + "#": 1317 + }, + "torque": 0, + "positionImpulse": { + "#": 1318 + }, + "constraintImpulse": { + "#": 1319 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1320 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1321 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1322 + }, + "circleRadius": 24.37789, + "bounds": { + "#": 1324 + }, + "positionPrev": { + "#": 1327 + }, + "anglePrev": 0, + "axes": { + "#": 1328 + }, + "area": 1848.90854, + "mass": 1.84891, + "inverseMass": 0.54086, + "inertia": 2176.30252, + "inverseInertia": 0.00046, + "parent": { + "#": 1287 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1287 + } + ], + [ + { + "#": 1290 + }, + { + "#": 1291 + }, + { + "#": 1292 + }, + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + }, + { + "#": 1296 + }, + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + }, + { + "#": 1301 + }, + { + "#": 1302 + }, + { + "#": 1303 + }, + { + "#": 1304 + }, + { + "#": 1305 + }, + { + "#": 1306 + }, + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + }, + { + "#": 1310 + }, + { + "#": 1311 + }, + { + "#": 1312 + }, + { + "#": 1313 + }, + { + "#": 1314 + }, + { + "#": 1315 + } + ], + { + "x": 251.194, + "y": 215.096, + "index": 0, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 249.788, + "y": 220.803, + "index": 1, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 247.057, + "y": 226.006, + "index": 2, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 243.16, + "y": 230.405, + "index": 3, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 238.323, + "y": 233.744, + "index": 4, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 232.828, + "y": 235.828, + "index": 5, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 226.994, + "y": 236.536, + "index": 6, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 221.16, + "y": 235.828, + "index": 7, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 215.665, + "y": 233.744, + "index": 8, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 210.828, + "y": 230.405, + "index": 9, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 206.931, + "y": 226.006, + "index": 10, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 204.2, + "y": 220.803, + "index": 11, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 202.794, + "y": 215.096, + "index": 12, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 202.794, + "y": 209.22, + "index": 13, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 204.2, + "y": 203.513, + "index": 14, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 206.931, + "y": 198.31, + "index": 15, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 210.828, + "y": 193.911, + "index": 16, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 215.665, + "y": 190.572, + "index": 17, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 221.16, + "y": 188.488, + "index": 18, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 226.994, + "y": 187.78, + "index": 19, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 232.828, + "y": 188.488, + "index": 20, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 238.323, + "y": 190.572, + "index": 21, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 243.16, + "y": 193.911, + "index": 22, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 247.057, + "y": 198.31, + "index": 23, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 249.788, + "y": 203.513, + "index": 24, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 251.194, + "y": 209.22, + "index": 25, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 226.994, + "y": 212.158 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1323 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1325 + }, + "max": { + "#": 1326 + } + }, + { + "x": 202.794, + "y": 187.78 + }, + { + "x": 251.194, + "y": 236.536 + }, + { + "x": 226.994, + "y": 212.158 + }, + [ + { + "#": 1329 + }, + { + "#": 1330 + }, + { + "#": 1331 + }, + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + }, + { + "#": 1335 + }, + { + "#": 1336 + }, + { + "#": 1337 + }, + { + "#": 1338 + }, + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + } + ], + { + "x": -0.97097, + "y": -0.23921 + }, + { + "x": -0.88544, + "y": -0.46476 + }, + { + "x": -0.74853, + "y": -0.66311 + }, + { + "x": -0.56809, + "y": -0.82296 + }, + { + "x": -0.35461, + "y": -0.93502 + }, + { + "x": -0.12047, + "y": -0.99272 + }, + { + "x": 0.12047, + "y": -0.99272 + }, + { + "x": 0.35461, + "y": -0.93502 + }, + { + "x": 0.56809, + "y": -0.82296 + }, + { + "x": 0.74853, + "y": -0.66311 + }, + { + "x": 0.88544, + "y": -0.46476 + }, + { + "x": 0.97097, + "y": -0.23921 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 28, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1343 + }, + "angle": 0, + "vertices": { + "#": 1344 + }, + "position": { + "#": 1371 + }, + "force": { + "#": 1372 + }, + "torque": 0, + "positionImpulse": { + "#": 1373 + }, + "constraintImpulse": { + "#": 1374 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1375 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1376 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1377 + }, + "circleRadius": 29.25534, + "bounds": { + "#": 1379 + }, + "positionPrev": { + "#": 1382 + }, + "anglePrev": 0, + "axes": { + "#": 1383 + }, + "area": 2662.70319, + "mass": 2.6627, + "inverseMass": 0.37556, + "inertia": 4513.71283, + "inverseInertia": 0.00022, + "parent": { + "#": 1342 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1342 + } + ], + [ + { + "#": 1345 + }, + { + "#": 1346 + }, + { + "#": 1347 + }, + { + "#": 1348 + }, + { + "#": 1349 + }, + { + "#": 1350 + }, + { + "#": 1351 + }, + { + "#": 1352 + }, + { + "#": 1353 + }, + { + "#": 1354 + }, + { + "#": 1355 + }, + { + "#": 1356 + }, + { + "#": 1357 + }, + { + "#": 1358 + }, + { + "#": 1359 + }, + { + "#": 1360 + }, + { + "#": 1361 + }, + { + "#": 1362 + }, + { + "#": 1363 + }, + { + "#": 1364 + }, + { + "#": 1365 + }, + { + "#": 1366 + }, + { + "#": 1367 + }, + { + "#": 1368 + }, + { + "#": 1369 + }, + { + "#": 1370 + } + ], + { + "x": 319.278, + "y": 220.561, + "index": 0, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 317.59, + "y": 227.409, + "index": 1, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 314.313, + "y": 233.654, + "index": 2, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 309.636, + "y": 238.933, + "index": 3, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 303.832, + "y": 242.939, + "index": 4, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 297.237, + "y": 245.44, + "index": 5, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 290.236, + "y": 246.29, + "index": 6, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 283.235, + "y": 245.44, + "index": 7, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 276.64, + "y": 242.939, + "index": 8, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 270.836, + "y": 238.933, + "index": 9, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 266.159, + "y": 233.654, + "index": 10, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 262.882, + "y": 227.409, + "index": 11, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 261.194, + "y": 220.561, + "index": 12, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 261.194, + "y": 213.509, + "index": 13, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 262.882, + "y": 206.661, + "index": 14, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 266.159, + "y": 200.416, + "index": 15, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 270.836, + "y": 195.137, + "index": 16, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 276.64, + "y": 191.131, + "index": 17, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 283.235, + "y": 188.63, + "index": 18, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 290.236, + "y": 187.78, + "index": 19, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 297.237, + "y": 188.63, + "index": 20, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 303.832, + "y": 191.131, + "index": 21, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 309.636, + "y": 195.137, + "index": 22, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 314.313, + "y": 200.416, + "index": 23, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 317.59, + "y": 206.661, + "index": 24, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 319.278, + "y": 213.509, + "index": 25, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 290.236, + "y": 217.035 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1378 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1380 + }, + "max": { + "#": 1381 + } + }, + { + "x": 261.194, + "y": 187.78 + }, + { + "x": 319.278, + "y": 246.29 + }, + { + "x": 290.236, + "y": 217.035 + }, + [ + { + "#": 1384 + }, + { + "#": 1385 + }, + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + }, + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + }, + { + "#": 1394 + }, + { + "#": 1395 + }, + { + "#": 1396 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88549, + "y": -0.46465 + }, + { + "x": -0.7485, + "y": -0.66314 + }, + { + "x": -0.56804, + "y": -0.823 + }, + { + "x": -0.35459, + "y": -0.93502 + }, + { + "x": -0.12053, + "y": -0.99271 + }, + { + "x": 0.12053, + "y": -0.99271 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.56804, + "y": -0.823 + }, + { + "x": 0.7485, + "y": -0.66314 + }, + { + "x": 0.88549, + "y": -0.46465 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 29, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1398 + }, + "angle": 0, + "vertices": { + "#": 1399 + }, + "position": { + "#": 1416 + }, + "force": { + "#": 1417 + }, + "torque": 0, + "positionImpulse": { + "#": 1418 + }, + "constraintImpulse": { + "#": 1419 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1420 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1421 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1422 + }, + "circleRadius": 15.59883, + "bounds": { + "#": 1424 + }, + "positionPrev": { + "#": 1427 + }, + "anglePrev": 0, + "axes": { + "#": 1428 + }, + "area": 744.91581, + "mass": 0.74492, + "inverseMass": 1.34243, + "inertia": 353.30758, + "inverseInertia": 0.00283, + "parent": { + "#": 1397 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1397 + } + ], + [ + { + "#": 1400 + }, + { + "#": 1401 + }, + { + "#": 1402 + }, + { + "#": 1403 + }, + { + "#": 1404 + }, + { + "#": 1405 + }, + { + "#": 1406 + }, + { + "#": 1407 + }, + { + "#": 1408 + }, + { + "#": 1409 + }, + { + "#": 1410 + }, + { + "#": 1411 + }, + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + }, + { + "#": 1415 + } + ], + { + "x": 359.876, + "y": 206.122, + "index": 0, + "body": { + "#": 1397 + }, + "isInternal": false + }, + { + "x": 357.547, + "y": 211.745, + "index": 1, + "body": { + "#": 1397 + }, + "isInternal": false + }, + { + "x": 353.243, + "y": 216.049, + "index": 2, + "body": { + "#": 1397 + }, + "isInternal": false + }, + { + "x": 347.62, + "y": 218.378, + "index": 3, + "body": { + "#": 1397 + }, + "isInternal": false + }, + { + "x": 341.534, + "y": 218.378, + "index": 4, + "body": { + "#": 1397 + }, + "isInternal": false + }, + { + "x": 335.911, + "y": 216.049, + "index": 5, + "body": { + "#": 1397 + }, + "isInternal": false + }, + { + "x": 331.607, + "y": 211.745, + "index": 6, + "body": { + "#": 1397 + }, + "isInternal": false + }, + { + "x": 329.278, + "y": 206.122, + "index": 7, + "body": { + "#": 1397 + }, + "isInternal": false + }, + { + "x": 329.278, + "y": 200.036, + "index": 8, + "body": { + "#": 1397 + }, + "isInternal": false + }, + { + "x": 331.607, + "y": 194.413, + "index": 9, + "body": { + "#": 1397 + }, + "isInternal": false + }, + { + "x": 335.911, + "y": 190.109, + "index": 10, + "body": { + "#": 1397 + }, + "isInternal": false + }, + { + "x": 341.534, + "y": 187.78, + "index": 11, + "body": { + "#": 1397 + }, + "isInternal": false + }, + { + "x": 347.62, + "y": 187.78, + "index": 12, + "body": { + "#": 1397 + }, + "isInternal": false + }, + { + "x": 353.243, + "y": 190.109, + "index": 13, + "body": { + "#": 1397 + }, + "isInternal": false + }, + { + "x": 357.547, + "y": 194.413, + "index": 14, + "body": { + "#": 1397 + }, + "isInternal": false + }, + { + "x": 359.876, + "y": 200.036, + "index": 15, + "body": { + "#": 1397 + }, + "isInternal": false + }, + { + "x": 344.577, + "y": 203.079 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1423 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1425 + }, + "max": { + "#": 1426 + } + }, + { + "x": 329.278, + "y": 187.78 + }, + { + "x": 359.876, + "y": 218.378 + }, + { + "x": 344.577, + "y": 203.079 + }, + [ + { + "#": 1429 + }, + { + "#": 1430 + }, + { + "#": 1431 + }, + { + "#": 1432 + }, + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + } + ], + { + "x": -0.92389, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92389 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92389 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92389, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 30, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1438 + }, + "angle": 0, + "vertices": { + "#": 1439 + }, + "position": { + "#": 1464 + }, + "force": { + "#": 1465 + }, + "torque": 0, + "positionImpulse": { + "#": 1466 + }, + "constraintImpulse": { + "#": 1467 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1468 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1469 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1470 + }, + "circleRadius": 23.038, + "bounds": { + "#": 1472 + }, + "positionPrev": { + "#": 1475 + }, + "anglePrev": 0, + "axes": { + "#": 1476 + }, + "area": 1648.4011, + "mass": 1.6484, + "inverseMass": 0.60665, + "inertia": 1729.88543, + "inverseInertia": 0.00058, + "parent": { + "#": 1437 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1437 + } + ], + [ + { + "#": 1440 + }, + { + "#": 1441 + }, + { + "#": 1442 + }, + { + "#": 1443 + }, + { + "#": 1444 + }, + { + "#": 1445 + }, + { + "#": 1446 + }, + { + "#": 1447 + }, + { + "#": 1448 + }, + { + "#": 1449 + }, + { + "#": 1450 + }, + { + "#": 1451 + }, + { + "#": 1452 + }, + { + "#": 1453 + }, + { + "#": 1454 + }, + { + "#": 1455 + }, + { + "#": 1456 + }, + { + "#": 1457 + }, + { + "#": 1458 + }, + { + "#": 1459 + }, + { + "#": 1460 + }, + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + } + ], + { + "x": 415.558, + "y": 213.628, + "index": 0, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 414.001, + "y": 219.437, + "index": 1, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 410.994, + "y": 224.646, + "index": 2, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 406.742, + "y": 228.898, + "index": 3, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 401.533, + "y": 231.905, + "index": 4, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 395.724, + "y": 233.462, + "index": 5, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 389.71, + "y": 233.462, + "index": 6, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 383.901, + "y": 231.905, + "index": 7, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 378.692, + "y": 228.898, + "index": 8, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 374.44, + "y": 224.646, + "index": 9, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 371.433, + "y": 219.437, + "index": 10, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 369.876, + "y": 213.628, + "index": 11, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 369.876, + "y": 207.614, + "index": 12, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 371.433, + "y": 201.805, + "index": 13, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 374.44, + "y": 196.596, + "index": 14, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 378.692, + "y": 192.344, + "index": 15, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 383.901, + "y": 189.337, + "index": 16, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 389.71, + "y": 187.78, + "index": 17, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 395.724, + "y": 187.78, + "index": 18, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 401.533, + "y": 189.337, + "index": 19, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 406.742, + "y": 192.344, + "index": 20, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 410.994, + "y": 196.596, + "index": 21, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 414.001, + "y": 201.805, + "index": 22, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 415.558, + "y": 207.614, + "index": 23, + "body": { + "#": 1437 + }, + "isInternal": false + }, + { + "x": 392.717, + "y": 210.621 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1471 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1473 + }, + "max": { + "#": 1474 + } + }, + { + "x": 369.876, + "y": 187.78 + }, + { + "x": 415.558, + "y": 233.462 + }, + { + "x": 392.717, + "y": 210.621 + }, + [ + { + "#": 1477 + }, + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + }, + { + "#": 1481 + }, + { + "#": 1482 + }, + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + }, + { + "#": 1487 + }, + { + "#": 1488 + } + ], + { + "x": -0.96591, + "y": -0.25889 + }, + { + "x": -0.86606, + "y": -0.49995 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.49995, + "y": -0.86606 + }, + { + "x": -0.25889, + "y": -0.96591 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25889, + "y": -0.96591 + }, + { + "x": 0.49995, + "y": -0.86606 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86606, + "y": -0.49995 + }, + { + "x": 0.96591, + "y": -0.25889 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 31, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1490 + }, + "angle": 0, + "vertices": { + "#": 1491 + }, + "position": { + "#": 1512 + }, + "force": { + "#": 1513 + }, + "torque": 0, + "positionImpulse": { + "#": 1514 + }, + "constraintImpulse": { + "#": 1515 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1516 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1517 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1518 + }, + "circleRadius": 18.98026, + "bounds": { + "#": 1520 + }, + "positionPrev": { + "#": 1523 + }, + "anglePrev": 0, + "axes": { + "#": 1524 + }, + "area": 1113.27284, + "mass": 1.11327, + "inverseMass": 0.89825, + "inertia": 789.05473, + "inverseInertia": 0.00127, + "parent": { + "#": 1489 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1489 + } + ], + [ + { + "#": 1492 + }, + { + "#": 1493 + }, + { + "#": 1494 + }, + { + "#": 1495 + }, + { + "#": 1496 + }, + { + "#": 1497 + }, + { + "#": 1498 + }, + { + "#": 1499 + }, + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + }, + { + "#": 1510 + }, + { + "#": 1511 + } + ], + { + "x": 463.052, + "y": 209.496, + "index": 0, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 461.217, + "y": 215.144, + "index": 1, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 457.726, + "y": 219.948, + "index": 2, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 452.922, + "y": 223.439, + "index": 3, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 447.274, + "y": 225.274, + "index": 4, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 441.336, + "y": 225.274, + "index": 5, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 435.688, + "y": 223.439, + "index": 6, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 430.884, + "y": 219.948, + "index": 7, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 427.393, + "y": 215.144, + "index": 8, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 425.558, + "y": 209.496, + "index": 9, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 425.558, + "y": 203.558, + "index": 10, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 427.393, + "y": 197.91, + "index": 11, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 430.884, + "y": 193.106, + "index": 12, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 435.688, + "y": 189.615, + "index": 13, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 441.336, + "y": 187.78, + "index": 14, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 447.274, + "y": 187.78, + "index": 15, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 452.922, + "y": 189.615, + "index": 16, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 457.726, + "y": 193.106, + "index": 17, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 461.217, + "y": 197.91, + "index": 18, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 463.052, + "y": 203.558, + "index": 19, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 444.305, + "y": 206.527 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1519 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1521 + }, + "max": { + "#": 1522 + } + }, + { + "x": 425.558, + "y": 187.78 + }, + { + "x": 463.052, + "y": 225.274 + }, + { + "x": 444.305, + "y": 206.527 + }, + [ + { + "#": 1525 + }, + { + "#": 1526 + }, + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + }, + { + "#": 1533 + }, + { + "#": 1534 + } + ], + { + "x": -0.95106, + "y": -0.30899 + }, + { + "x": -0.80896, + "y": -0.58786 + }, + { + "x": -0.58786, + "y": -0.80896 + }, + { + "x": -0.30899, + "y": -0.95106 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30899, + "y": -0.95106 + }, + { + "x": 0.58786, + "y": -0.80896 + }, + { + "x": 0.80896, + "y": -0.58786 + }, + { + "x": 0.95106, + "y": -0.30899 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 32, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1536 + }, + "angle": 0, + "vertices": { + "#": 1537 + }, + "position": { + "#": 1560 + }, + "force": { + "#": 1561 + }, + "torque": 0, + "positionImpulse": { + "#": 1562 + }, + "constraintImpulse": { + "#": 1563 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1564 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1565 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1566 + }, + "circleRadius": 20.27746, + "bounds": { + "#": 1568 + }, + "positionPrev": { + "#": 1571 + }, + "anglePrev": 0, + "axes": { + "#": 1572 + }, + "area": 1274.25309, + "mass": 1.27425, + "inverseMass": 0.78477, + "inertia": 1033.73143, + "inverseInertia": 0.00097, + "parent": { + "#": 1535 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1535 + } + ], + [ + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + }, + { + "#": 1543 + }, + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + }, + { + "#": 1548 + }, + { + "#": 1549 + }, + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + }, + { + "#": 1553 + }, + { + "#": 1554 + }, + { + "#": 1555 + }, + { + "#": 1556 + }, + { + "#": 1557 + }, + { + "#": 1558 + }, + { + "#": 1559 + } + ], + { + "x": 513.194, + "y": 210.943, + "index": 0, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 511.568, + "y": 216.481, + "index": 1, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 508.448, + "y": 221.336, + "index": 2, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 504.086, + "y": 225.115, + "index": 3, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 498.836, + "y": 227.513, + "index": 4, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 493.123, + "y": 228.334, + "index": 5, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 487.41, + "y": 227.513, + "index": 6, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 482.16, + "y": 225.115, + "index": 7, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 477.798, + "y": 221.336, + "index": 8, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 474.678, + "y": 216.481, + "index": 9, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 473.052, + "y": 210.943, + "index": 10, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 473.052, + "y": 205.171, + "index": 11, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 474.678, + "y": 199.633, + "index": 12, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 477.798, + "y": 194.778, + "index": 13, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 482.16, + "y": 190.999, + "index": 14, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 487.41, + "y": 188.601, + "index": 15, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 493.123, + "y": 187.78, + "index": 16, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 498.836, + "y": 188.601, + "index": 17, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 504.086, + "y": 190.999, + "index": 18, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 508.448, + "y": 194.778, + "index": 19, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 511.568, + "y": 199.633, + "index": 20, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 513.194, + "y": 205.171, + "index": 21, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 493.123, + "y": 208.057 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1567 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1569 + }, + "max": { + "#": 1570 + } + }, + { + "x": 473.052, + "y": 187.78 + }, + { + "x": 513.194, + "y": 228.334 + }, + { + "x": 493.123, + "y": 208.057 + }, + [ + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + }, + { + "#": 1577 + }, + { + "#": 1578 + }, + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + }, + { + "#": 1583 + } + ], + { + "x": -0.9595, + "y": -0.28172 + }, + { + "x": -0.84126, + "y": -0.54063 + }, + { + "x": -0.65479, + "y": -0.75581 + }, + { + "x": -0.41547, + "y": -0.90961 + }, + { + "x": -0.14225, + "y": -0.98983 + }, + { + "x": 0.14225, + "y": -0.98983 + }, + { + "x": 0.41547, + "y": -0.90961 + }, + { + "x": 0.65479, + "y": -0.75581 + }, + { + "x": 0.84126, + "y": -0.54063 + }, + { + "x": 0.9595, + "y": -0.28172 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 33, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1585 + }, + "angle": 0, + "vertices": { + "#": 1586 + }, + "position": { + "#": 1613 + }, + "force": { + "#": 1614 + }, + "torque": 0, + "positionImpulse": { + "#": 1615 + }, + "constraintImpulse": { + "#": 1616 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1617 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1618 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1619 + }, + "circleRadius": 29.89255, + "bounds": { + "#": 1621 + }, + "positionPrev": { + "#": 1624 + }, + "anglePrev": 0, + "axes": { + "#": 1625 + }, + "area": 2780.00048, + "mass": 2.78, + "inverseMass": 0.35971, + "inertia": 4920.14782, + "inverseInertia": 0.0002, + "parent": { + "#": 1584 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1584 + } + ], + [ + { + "#": 1587 + }, + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + }, + { + "#": 1592 + }, + { + "#": 1593 + }, + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + }, + { + "#": 1597 + }, + { + "#": 1598 + }, + { + "#": 1599 + }, + { + "#": 1600 + }, + { + "#": 1601 + }, + { + "#": 1602 + }, + { + "#": 1603 + }, + { + "#": 1604 + }, + { + "#": 1605 + }, + { + "#": 1606 + }, + { + "#": 1607 + }, + { + "#": 1608 + }, + { + "#": 1609 + }, + { + "#": 1610 + }, + { + "#": 1611 + }, + { + "#": 1612 + } + ], + { + "x": 582.544, + "y": 221.276, + "index": 0, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 580.819, + "y": 228.273, + "index": 1, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 577.47, + "y": 234.654, + "index": 2, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 572.691, + "y": 240.048, + "index": 3, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 566.761, + "y": 244.142, + "index": 4, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 560.023, + "y": 246.697, + "index": 5, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 552.869, + "y": 247.566, + "index": 6, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 545.715, + "y": 246.697, + "index": 7, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 538.977, + "y": 244.142, + "index": 8, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 533.047, + "y": 240.048, + "index": 9, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 528.268, + "y": 234.654, + "index": 10, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 524.919, + "y": 228.273, + "index": 11, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 523.194, + "y": 221.276, + "index": 12, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 523.194, + "y": 214.07, + "index": 13, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 524.919, + "y": 207.073, + "index": 14, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 528.268, + "y": 200.692, + "index": 15, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 533.047, + "y": 195.298, + "index": 16, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 538.977, + "y": 191.204, + "index": 17, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 545.715, + "y": 188.649, + "index": 18, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 552.869, + "y": 187.78, + "index": 19, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 560.023, + "y": 188.649, + "index": 20, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 566.761, + "y": 191.204, + "index": 21, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 572.691, + "y": 195.298, + "index": 22, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 577.47, + "y": 200.692, + "index": 23, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 580.819, + "y": 207.073, + "index": 24, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 582.544, + "y": 214.07, + "index": 25, + "body": { + "#": 1584 + }, + "isInternal": false + }, + { + "x": 552.869, + "y": 217.673 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1620 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1622 + }, + "max": { + "#": 1623 + } + }, + { + "x": 523.194, + "y": 187.78 + }, + { + "x": 582.544, + "y": 247.566 + }, + { + "x": 552.869, + "y": 217.673 + }, + [ + { + "#": 1626 + }, + { + "#": 1627 + }, + { + "#": 1628 + }, + { + "#": 1629 + }, + { + "#": 1630 + }, + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + }, + { + "#": 1637 + }, + { + "#": 1638 + } + ], + { + "x": -0.97093, + "y": -0.23937 + }, + { + "x": -0.88546, + "y": -0.46472 + }, + { + "x": -0.74849, + "y": -0.66315 + }, + { + "x": -0.56814, + "y": -0.82293 + }, + { + "x": -0.35456, + "y": -0.93503 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.35456, + "y": -0.93503 + }, + { + "x": 0.56814, + "y": -0.82293 + }, + { + "x": 0.74849, + "y": -0.66315 + }, + { + "x": 0.88546, + "y": -0.46472 + }, + { + "x": 0.97093, + "y": -0.23937 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 34, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1640 + }, + "angle": 0, + "vertices": { + "#": 1641 + }, + "position": { + "#": 1668 + }, + "force": { + "#": 1669 + }, + "torque": 0, + "positionImpulse": { + "#": 1670 + }, + "constraintImpulse": { + "#": 1671 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1672 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1673 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1674 + }, + "circleRadius": 28.56629, + "bounds": { + "#": 1676 + }, + "positionPrev": { + "#": 1679 + }, + "anglePrev": 0, + "axes": { + "#": 1680 + }, + "area": 2538.75797, + "mass": 2.53876, + "inverseMass": 0.39389, + "inertia": 4103.27863, + "inverseInertia": 0.00024, + "parent": { + "#": 1639 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1639 + } + ], + [ + { + "#": 1642 + }, + { + "#": 1643 + }, + { + "#": 1644 + }, + { + "#": 1645 + }, + { + "#": 1646 + }, + { + "#": 1647 + }, + { + "#": 1648 + }, + { + "#": 1649 + }, + { + "#": 1650 + }, + { + "#": 1651 + }, + { + "#": 1652 + }, + { + "#": 1653 + }, + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + }, + { + "#": 1661 + }, + { + "#": 1662 + }, + { + "#": 1663 + }, + { + "#": 1664 + }, + { + "#": 1665 + }, + { + "#": 1666 + }, + { + "#": 1667 + } + ], + { + "x": 649.26, + "y": 219.789, + "index": 0, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 647.612, + "y": 226.476, + "index": 1, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 644.412, + "y": 232.574, + "index": 2, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 639.845, + "y": 237.728, + "index": 3, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 634.177, + "y": 241.64, + "index": 4, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 627.738, + "y": 244.082, + "index": 5, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 620.902, + "y": 244.912, + "index": 6, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 614.066, + "y": 244.082, + "index": 7, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 607.627, + "y": 241.64, + "index": 8, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 601.959, + "y": 237.728, + "index": 9, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 597.392, + "y": 232.574, + "index": 10, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 594.192, + "y": 226.476, + "index": 11, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 592.544, + "y": 219.789, + "index": 12, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 592.544, + "y": 212.903, + "index": 13, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 594.192, + "y": 206.216, + "index": 14, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 597.392, + "y": 200.118, + "index": 15, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 601.959, + "y": 194.964, + "index": 16, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 607.627, + "y": 191.052, + "index": 17, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 614.066, + "y": 188.61, + "index": 18, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 620.902, + "y": 187.78, + "index": 19, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 627.738, + "y": 188.61, + "index": 20, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 634.177, + "y": 191.052, + "index": 21, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 639.845, + "y": 194.964, + "index": 22, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 644.412, + "y": 200.118, + "index": 23, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 647.612, + "y": 206.216, + "index": 24, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 649.26, + "y": 212.903, + "index": 25, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 620.902, + "y": 216.346 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1675 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1677 + }, + "max": { + "#": 1678 + } + }, + { + "x": 592.544, + "y": 187.78 + }, + { + "x": 649.26, + "y": 244.912 + }, + { + "x": 620.902, + "y": 216.346 + }, + [ + { + "#": 1681 + }, + { + "#": 1682 + }, + { + "#": 1683 + }, + { + "#": 1684 + }, + { + "#": 1685 + }, + { + "#": 1686 + }, + { + "#": 1687 + }, + { + "#": 1688 + }, + { + "#": 1689 + }, + { + "#": 1690 + }, + { + "#": 1691 + }, + { + "#": 1692 + }, + { + "#": 1693 + } + ], + { + "x": -0.97095, + "y": -0.23929 + }, + { + "x": -0.88548, + "y": -0.46467 + }, + { + "x": -0.74844, + "y": -0.6632 + }, + { + "x": -0.56803, + "y": -0.82301 + }, + { + "x": -0.35461, + "y": -0.93502 + }, + { + "x": -0.12053, + "y": -0.99271 + }, + { + "x": 0.12053, + "y": -0.99271 + }, + { + "x": 0.35461, + "y": -0.93502 + }, + { + "x": 0.56803, + "y": -0.82301 + }, + { + "x": 0.74844, + "y": -0.6632 + }, + { + "x": 0.88548, + "y": -0.46467 + }, + { + "x": 0.97095, + "y": -0.23929 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 35, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1695 + }, + "angle": 0, + "vertices": { + "#": 1696 + }, + "position": { + "#": 1719 + }, + "force": { + "#": 1720 + }, + "torque": 0, + "positionImpulse": { + "#": 1721 + }, + "constraintImpulse": { + "#": 1722 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1723 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1724 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1725 + }, + "circleRadius": 21.48386, + "bounds": { + "#": 1727 + }, + "positionPrev": { + "#": 1730 + }, + "anglePrev": 0, + "axes": { + "#": 1731 + }, + "area": 1430.37524, + "mass": 1.43038, + "inverseMass": 0.69912, + "inertia": 1302.55569, + "inverseInertia": 0.00077, + "parent": { + "#": 1694 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1694 + } + ], + [ + { + "#": 1697 + }, + { + "#": 1698 + }, + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + }, + { + "#": 1703 + }, + { + "#": 1704 + }, + { + "#": 1705 + }, + { + "#": 1706 + }, + { + "#": 1707 + }, + { + "#": 1708 + }, + { + "#": 1709 + }, + { + "#": 1710 + }, + { + "#": 1711 + }, + { + "#": 1712 + }, + { + "#": 1713 + }, + { + "#": 1714 + }, + { + "#": 1715 + }, + { + "#": 1716 + }, + { + "#": 1717 + }, + { + "#": 1718 + } + ], + { + "x": 142.53, + "y": 282.107, + "index": 0, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 140.807, + "y": 287.975, + "index": 1, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 137.501, + "y": 293.119, + "index": 2, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 132.88, + "y": 297.123, + "index": 3, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 127.318, + "y": 299.664, + "index": 4, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 121.265, + "y": 300.534, + "index": 5, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 115.212, + "y": 299.664, + "index": 6, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 109.65, + "y": 297.123, + "index": 7, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 105.029, + "y": 293.119, + "index": 8, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 101.723, + "y": 287.975, + "index": 9, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 100, + "y": 282.107, + "index": 10, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 100, + "y": 275.993, + "index": 11, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 101.723, + "y": 270.125, + "index": 12, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 105.029, + "y": 264.981, + "index": 13, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 109.65, + "y": 260.977, + "index": 14, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 115.212, + "y": 258.436, + "index": 15, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 121.265, + "y": 257.566, + "index": 16, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 127.318, + "y": 258.436, + "index": 17, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 132.88, + "y": 260.977, + "index": 18, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 137.501, + "y": 264.981, + "index": 19, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 140.807, + "y": 270.125, + "index": 20, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 142.53, + "y": 275.993, + "index": 21, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 121.265, + "y": 279.05 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1726 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1728 + }, + "max": { + "#": 1729 + } + }, + { + "x": 100, + "y": 257.566 + }, + { + "x": 142.53, + "y": 300.534 + }, + { + "x": 121.265, + "y": 279.05 + }, + [ + { + "#": 1732 + }, + { + "#": 1733 + }, + { + "#": 1734 + }, + { + "#": 1735 + }, + { + "#": 1736 + }, + { + "#": 1737 + }, + { + "#": 1738 + }, + { + "#": 1739 + }, + { + "#": 1740 + }, + { + "#": 1741 + }, + { + "#": 1742 + } + ], + { + "x": -0.95949, + "y": -0.28173 + }, + { + "x": -0.84124, + "y": -0.54066 + }, + { + "x": -0.65485, + "y": -0.75576 + }, + { + "x": -0.41554, + "y": -0.90958 + }, + { + "x": -0.14227, + "y": -0.98983 + }, + { + "x": 0.14227, + "y": -0.98983 + }, + { + "x": 0.41554, + "y": -0.90958 + }, + { + "x": 0.65485, + "y": -0.75576 + }, + { + "x": 0.84124, + "y": -0.54066 + }, + { + "x": 0.95949, + "y": -0.28173 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 36, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1744 + }, + "angle": 0, + "vertices": { + "#": 1745 + }, + "position": { + "#": 1766 + }, + "force": { + "#": 1767 + }, + "torque": 0, + "positionImpulse": { + "#": 1768 + }, + "constraintImpulse": { + "#": 1769 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1770 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1771 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1772 + }, + "circleRadius": 19.94155, + "bounds": { + "#": 1774 + }, + "positionPrev": { + "#": 1777 + }, + "anglePrev": 0, + "axes": { + "#": 1778 + }, + "area": 1228.85385, + "mass": 1.22885, + "inverseMass": 0.81377, + "inertia": 961.40057, + "inverseInertia": 0.00104, + "parent": { + "#": 1743 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1743 + } + ], + [ + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + }, + { + "#": 1751 + }, + { + "#": 1752 + }, + { + "#": 1753 + }, + { + "#": 1754 + }, + { + "#": 1755 + }, + { + "#": 1756 + }, + { + "#": 1757 + }, + { + "#": 1758 + }, + { + "#": 1759 + }, + { + "#": 1760 + }, + { + "#": 1761 + }, + { + "#": 1762 + }, + { + "#": 1763 + }, + { + "#": 1764 + }, + { + "#": 1765 + } + ], + { + "x": 191.922, + "y": 280.382, + "index": 0, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 189.994, + "y": 286.315, + "index": 1, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 186.327, + "y": 291.363, + "index": 2, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 181.279, + "y": 295.03, + "index": 3, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 175.346, + "y": 296.958, + "index": 4, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 169.106, + "y": 296.958, + "index": 5, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 163.173, + "y": 295.03, + "index": 6, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 158.125, + "y": 291.363, + "index": 7, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 154.458, + "y": 286.315, + "index": 8, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 152.53, + "y": 280.382, + "index": 9, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 152.53, + "y": 274.142, + "index": 10, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 154.458, + "y": 268.209, + "index": 11, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 158.125, + "y": 263.161, + "index": 12, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 163.173, + "y": 259.494, + "index": 13, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 169.106, + "y": 257.566, + "index": 14, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 175.346, + "y": 257.566, + "index": 15, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 181.279, + "y": 259.494, + "index": 16, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 186.327, + "y": 263.161, + "index": 17, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 189.994, + "y": 268.209, + "index": 18, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 191.922, + "y": 274.142, + "index": 19, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 172.226, + "y": 277.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1773 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1775 + }, + "max": { + "#": 1776 + } + }, + { + "x": 152.53, + "y": 257.566 + }, + { + "x": 191.922, + "y": 296.958 + }, + { + "x": 172.226, + "y": 277.262 + }, + [ + { + "#": 1779 + }, + { + "#": 1780 + }, + { + "#": 1781 + }, + { + "#": 1782 + }, + { + "#": 1783 + }, + { + "#": 1784 + }, + { + "#": 1785 + }, + { + "#": 1786 + }, + { + "#": 1787 + }, + { + "#": 1788 + } + ], + { + "x": -0.95104, + "y": -0.30905 + }, + { + "x": -0.80906, + "y": -0.58772 + }, + { + "x": -0.58772, + "y": -0.80906 + }, + { + "x": -0.30905, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30905, + "y": -0.95104 + }, + { + "x": 0.58772, + "y": -0.80906 + }, + { + "x": 0.80906, + "y": -0.58772 + }, + { + "x": 0.95104, + "y": -0.30905 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 37, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1790 + }, + "angle": 0, + "vertices": { + "#": 1791 + }, + "position": { + "#": 1812 + }, + "force": { + "#": 1813 + }, + "torque": 0, + "positionImpulse": { + "#": 1814 + }, + "constraintImpulse": { + "#": 1815 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1816 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1817 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1818 + }, + "circleRadius": 18.01344, + "bounds": { + "#": 1820 + }, + "positionPrev": { + "#": 1823 + }, + "anglePrev": 0, + "axes": { + "#": 1824 + }, + "area": 1002.71038, + "mass": 1.00271, + "inverseMass": 0.9973, + "inertia": 640.11047, + "inverseInertia": 0.00156, + "parent": { + "#": 1789 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1789 + } + ], + [ + { + "#": 1792 + }, + { + "#": 1793 + }, + { + "#": 1794 + }, + { + "#": 1795 + }, + { + "#": 1796 + }, + { + "#": 1797 + }, + { + "#": 1798 + }, + { + "#": 1799 + }, + { + "#": 1800 + }, + { + "#": 1801 + }, + { + "#": 1802 + }, + { + "#": 1803 + }, + { + "#": 1804 + }, + { + "#": 1805 + }, + { + "#": 1806 + }, + { + "#": 1807 + }, + { + "#": 1808 + }, + { + "#": 1809 + }, + { + "#": 1810 + }, + { + "#": 1811 + } + ], + { + "x": 237.506, + "y": 278.176, + "index": 0, + "body": { + "#": 1789 + }, + "isInternal": false + }, + { + "x": 235.764, + "y": 283.536, + "index": 1, + "body": { + "#": 1789 + }, + "isInternal": false + }, + { + "x": 232.451, + "y": 288.095, + "index": 2, + "body": { + "#": 1789 + }, + "isInternal": false + }, + { + "x": 227.892, + "y": 291.408, + "index": 3, + "body": { + "#": 1789 + }, + "isInternal": false + }, + { + "x": 222.532, + "y": 293.15, + "index": 4, + "body": { + "#": 1789 + }, + "isInternal": false + }, + { + "x": 216.896, + "y": 293.15, + "index": 5, + "body": { + "#": 1789 + }, + "isInternal": false + }, + { + "x": 211.536, + "y": 291.408, + "index": 6, + "body": { + "#": 1789 + }, + "isInternal": false + }, + { + "x": 206.977, + "y": 288.095, + "index": 7, + "body": { + "#": 1789 + }, + "isInternal": false + }, + { + "x": 203.664, + "y": 283.536, + "index": 8, + "body": { + "#": 1789 + }, + "isInternal": false + }, + { + "x": 201.922, + "y": 278.176, + "index": 9, + "body": { + "#": 1789 + }, + "isInternal": false + }, + { + "x": 201.922, + "y": 272.54, + "index": 10, + "body": { + "#": 1789 + }, + "isInternal": false + }, + { + "x": 203.664, + "y": 267.18, + "index": 11, + "body": { + "#": 1789 + }, + "isInternal": false + }, + { + "x": 206.977, + "y": 262.621, + "index": 12, + "body": { + "#": 1789 + }, + "isInternal": false + }, + { + "x": 211.536, + "y": 259.308, + "index": 13, + "body": { + "#": 1789 + }, + "isInternal": false + }, + { + "x": 216.896, + "y": 257.566, + "index": 14, + "body": { + "#": 1789 + }, + "isInternal": false + }, + { + "x": 222.532, + "y": 257.566, + "index": 15, + "body": { + "#": 1789 + }, + "isInternal": false + }, + { + "x": 227.892, + "y": 259.308, + "index": 16, + "body": { + "#": 1789 + }, + "isInternal": false + }, + { + "x": 232.451, + "y": 262.621, + "index": 17, + "body": { + "#": 1789 + }, + "isInternal": false + }, + { + "x": 235.764, + "y": 267.18, + "index": 18, + "body": { + "#": 1789 + }, + "isInternal": false + }, + { + "x": 237.506, + "y": 272.54, + "index": 19, + "body": { + "#": 1789 + }, + "isInternal": false + }, + { + "x": 219.714, + "y": 275.358 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1819 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1821 + }, + "max": { + "#": 1822 + } + }, + { + "x": 201.922, + "y": 257.566 + }, + { + "x": 237.506, + "y": 293.15 + }, + { + "x": 219.714, + "y": 275.358 + }, + [ + { + "#": 1825 + }, + { + "#": 1826 + }, + { + "#": 1827 + }, + { + "#": 1828 + }, + { + "#": 1829 + }, + { + "#": 1830 + }, + { + "#": 1831 + }, + { + "#": 1832 + }, + { + "#": 1833 + }, + { + "#": 1834 + } + ], + { + "x": -0.95103, + "y": -0.30909 + }, + { + "x": -0.80896, + "y": -0.58787 + }, + { + "x": -0.58787, + "y": -0.80896 + }, + { + "x": -0.30909, + "y": -0.95103 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30909, + "y": -0.95103 + }, + { + "x": 0.58787, + "y": -0.80896 + }, + { + "x": 0.80896, + "y": -0.58787 + }, + { + "x": 0.95103, + "y": -0.30909 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 38, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1836 + }, + "angle": 0, + "vertices": { + "#": 1837 + }, + "position": { + "#": 1864 + }, + "force": { + "#": 1865 + }, + "torque": 0, + "positionImpulse": { + "#": 1866 + }, + "constraintImpulse": { + "#": 1867 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1868 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1869 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1870 + }, + "circleRadius": 24.21804, + "bounds": { + "#": 1872 + }, + "positionPrev": { + "#": 1875 + }, + "anglePrev": 0, + "axes": { + "#": 1876 + }, + "area": 1824.67855, + "mass": 1.82468, + "inverseMass": 0.54804, + "inertia": 2119.63531, + "inverseInertia": 0.00047, + "parent": { + "#": 1835 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1835 + } + ], + [ + { + "#": 1838 + }, + { + "#": 1839 + }, + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + }, + { + "#": 1844 + }, + { + "#": 1845 + }, + { + "#": 1846 + }, + { + "#": 1847 + }, + { + "#": 1848 + }, + { + "#": 1849 + }, + { + "#": 1850 + }, + { + "#": 1851 + }, + { + "#": 1852 + }, + { + "#": 1853 + }, + { + "#": 1854 + }, + { + "#": 1855 + }, + { + "#": 1856 + }, + { + "#": 1857 + }, + { + "#": 1858 + }, + { + "#": 1859 + }, + { + "#": 1860 + }, + { + "#": 1861 + }, + { + "#": 1862 + }, + { + "#": 1863 + } + ], + { + "x": 295.588, + "y": 284.703, + "index": 0, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 294.191, + "y": 290.372, + "index": 1, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 291.478, + "y": 295.541, + "index": 2, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 287.607, + "y": 299.911, + "index": 3, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 282.802, + "y": 303.228, + "index": 4, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 277.343, + "y": 305.298, + "index": 5, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 271.547, + "y": 306.002, + "index": 6, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 265.751, + "y": 305.298, + "index": 7, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 260.292, + "y": 303.228, + "index": 8, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 255.487, + "y": 299.911, + "index": 9, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 251.616, + "y": 295.541, + "index": 10, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 248.903, + "y": 290.372, + "index": 11, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 247.506, + "y": 284.703, + "index": 12, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 247.506, + "y": 278.865, + "index": 13, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 248.903, + "y": 273.196, + "index": 14, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 251.616, + "y": 268.027, + "index": 15, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 255.487, + "y": 263.657, + "index": 16, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 260.292, + "y": 260.34, + "index": 17, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 265.751, + "y": 258.27, + "index": 18, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 271.547, + "y": 257.566, + "index": 19, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 277.343, + "y": 258.27, + "index": 20, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 282.802, + "y": 260.34, + "index": 21, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 287.607, + "y": 263.657, + "index": 22, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 291.478, + "y": 268.027, + "index": 23, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 294.191, + "y": 273.196, + "index": 24, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 295.588, + "y": 278.865, + "index": 25, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 271.547, + "y": 281.784 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1871 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1873 + }, + "max": { + "#": 1874 + } + }, + { + "x": 247.506, + "y": 257.566 + }, + { + "x": 295.588, + "y": 306.002 + }, + { + "x": 271.547, + "y": 281.784 + }, + [ + { + "#": 1877 + }, + { + "#": 1878 + }, + { + "#": 1879 + }, + { + "#": 1880 + }, + { + "#": 1881 + }, + { + "#": 1882 + }, + { + "#": 1883 + }, + { + "#": 1884 + }, + { + "#": 1885 + }, + { + "#": 1886 + }, + { + "#": 1887 + }, + { + "#": 1888 + }, + { + "#": 1889 + } + ], + { + "x": -0.97095, + "y": -0.23927 + }, + { + "x": -0.88545, + "y": -0.46474 + }, + { + "x": -0.74855, + "y": -0.66308 + }, + { + "x": -0.56811, + "y": -0.82296 + }, + { + "x": -0.35456, + "y": -0.93503 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.35456, + "y": -0.93503 + }, + { + "x": 0.56811, + "y": -0.82296 + }, + { + "x": 0.74855, + "y": -0.66308 + }, + { + "x": 0.88545, + "y": -0.46474 + }, + { + "x": 0.97095, + "y": -0.23927 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 39, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1891 + }, + "angle": 0, + "vertices": { + "#": 1892 + }, + "position": { + "#": 1919 + }, + "force": { + "#": 1920 + }, + "torque": 0, + "positionImpulse": { + "#": 1921 + }, + "constraintImpulse": { + "#": 1922 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1923 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1924 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1925 + }, + "circleRadius": 28.18499, + "bounds": { + "#": 1927 + }, + "positionPrev": { + "#": 1930 + }, + "anglePrev": 0, + "axes": { + "#": 1931 + }, + "area": 2471.43693, + "mass": 2.47144, + "inverseMass": 0.40462, + "inertia": 3888.54807, + "inverseInertia": 0.00026, + "parent": { + "#": 1890 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1890 + } + ], + [ + { + "#": 1893 + }, + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + }, + { + "#": 1902 + }, + { + "#": 1903 + }, + { + "#": 1904 + }, + { + "#": 1905 + }, + { + "#": 1906 + }, + { + "#": 1907 + }, + { + "#": 1908 + }, + { + "#": 1909 + }, + { + "#": 1910 + }, + { + "#": 1911 + }, + { + "#": 1912 + }, + { + "#": 1913 + }, + { + "#": 1914 + }, + { + "#": 1915 + }, + { + "#": 1916 + }, + { + "#": 1917 + }, + { + "#": 1918 + } + ], + { + "x": 361.546, + "y": 289.148, + "index": 0, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 359.92, + "y": 295.746, + "index": 1, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 356.763, + "y": 301.762, + "index": 2, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 352.257, + "y": 306.848, + "index": 3, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 346.665, + "y": 310.708, + "index": 4, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 340.312, + "y": 313.117, + "index": 5, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 333.567, + "y": 313.936, + "index": 6, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 326.822, + "y": 313.117, + "index": 7, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 320.469, + "y": 310.708, + "index": 8, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 314.877, + "y": 306.848, + "index": 9, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 310.371, + "y": 301.762, + "index": 10, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 307.214, + "y": 295.746, + "index": 11, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 305.588, + "y": 289.148, + "index": 12, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 305.588, + "y": 282.354, + "index": 13, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 307.214, + "y": 275.756, + "index": 14, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 310.371, + "y": 269.74, + "index": 15, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 314.877, + "y": 264.654, + "index": 16, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 320.469, + "y": 260.794, + "index": 17, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 326.822, + "y": 258.385, + "index": 18, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 333.567, + "y": 257.566, + "index": 19, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 340.312, + "y": 258.385, + "index": 20, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 346.665, + "y": 260.794, + "index": 21, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 352.257, + "y": 264.654, + "index": 22, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 356.763, + "y": 269.74, + "index": 23, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 359.92, + "y": 275.756, + "index": 24, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 361.546, + "y": 282.354, + "index": 25, + "body": { + "#": 1890 + }, + "isInternal": false + }, + { + "x": 333.567, + "y": 285.751 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1926 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1928 + }, + "max": { + "#": 1929 + } + }, + { + "x": 305.588, + "y": 257.566 + }, + { + "x": 361.546, + "y": 313.936 + }, + { + "x": 333.567, + "y": 285.751 + }, + [ + { + "#": 1932 + }, + { + "#": 1933 + }, + { + "#": 1934 + }, + { + "#": 1935 + }, + { + "#": 1936 + }, + { + "#": 1937 + }, + { + "#": 1938 + }, + { + "#": 1939 + }, + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + }, + { + "#": 1944 + } + ], + { + "x": -0.97095, + "y": -0.23928 + }, + { + "x": -0.88548, + "y": -0.46467 + }, + { + "x": -0.7485, + "y": -0.66314 + }, + { + "x": -0.56808, + "y": -0.82298 + }, + { + "x": -0.35456, + "y": -0.93503 + }, + { + "x": -0.12054, + "y": -0.99271 + }, + { + "x": 0.12054, + "y": -0.99271 + }, + { + "x": 0.35456, + "y": -0.93503 + }, + { + "x": 0.56808, + "y": -0.82298 + }, + { + "x": 0.7485, + "y": -0.66314 + }, + { + "x": 0.88548, + "y": -0.46467 + }, + { + "x": 0.97095, + "y": -0.23928 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 40, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1946 + }, + "angle": 0, + "vertices": { + "#": 1947 + }, + "position": { + "#": 1972 + }, + "force": { + "#": 1973 + }, + "torque": 0, + "positionImpulse": { + "#": 1974 + }, + "constraintImpulse": { + "#": 1975 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1976 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1977 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1978 + }, + "circleRadius": 22.32169, + "bounds": { + "#": 1980 + }, + "positionPrev": { + "#": 1983 + }, + "anglePrev": 0, + "axes": { + "#": 1984 + }, + "area": 1547.54745, + "mass": 1.54755, + "inverseMass": 0.64618, + "inertia": 1524.68279, + "inverseInertia": 0.00066, + "parent": { + "#": 1945 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1945 + } + ], + [ + { + "#": 1948 + }, + { + "#": 1949 + }, + { + "#": 1950 + }, + { + "#": 1951 + }, + { + "#": 1952 + }, + { + "#": 1953 + }, + { + "#": 1954 + }, + { + "#": 1955 + }, + { + "#": 1956 + }, + { + "#": 1957 + }, + { + "#": 1958 + }, + { + "#": 1959 + }, + { + "#": 1960 + }, + { + "#": 1961 + }, + { + "#": 1962 + }, + { + "#": 1963 + }, + { + "#": 1964 + }, + { + "#": 1965 + }, + { + "#": 1966 + }, + { + "#": 1967 + }, + { + "#": 1968 + }, + { + "#": 1969 + }, + { + "#": 1970 + }, + { + "#": 1971 + } + ], + { + "x": 415.808, + "y": 282.611, + "index": 0, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 414.3, + "y": 288.239, + "index": 1, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 411.386, + "y": 293.286, + "index": 2, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 407.266, + "y": 297.406, + "index": 3, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 402.219, + "y": 300.32, + "index": 4, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 396.591, + "y": 301.828, + "index": 5, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 390.763, + "y": 301.828, + "index": 6, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 385.135, + "y": 300.32, + "index": 7, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 380.088, + "y": 297.406, + "index": 8, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 375.968, + "y": 293.286, + "index": 9, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 373.054, + "y": 288.239, + "index": 10, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 371.546, + "y": 282.611, + "index": 11, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 371.546, + "y": 276.783, + "index": 12, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 373.054, + "y": 271.155, + "index": 13, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 375.968, + "y": 266.108, + "index": 14, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 380.088, + "y": 261.988, + "index": 15, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 385.135, + "y": 259.074, + "index": 16, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 390.763, + "y": 257.566, + "index": 17, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 396.591, + "y": 257.566, + "index": 18, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 402.219, + "y": 259.074, + "index": 19, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 407.266, + "y": 261.988, + "index": 20, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 411.386, + "y": 266.108, + "index": 21, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 414.3, + "y": 271.155, + "index": 22, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 415.808, + "y": 276.783, + "index": 23, + "body": { + "#": 1945 + }, + "isInternal": false + }, + { + "x": 393.677, + "y": 279.697 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1979 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1981 + }, + "max": { + "#": 1982 + } + }, + { + "x": 371.546, + "y": 257.566 + }, + { + "x": 415.808, + "y": 301.828 + }, + { + "x": 393.677, + "y": 279.697 + }, + [ + { + "#": 1985 + }, + { + "#": 1986 + }, + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + }, + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + }, + { + "#": 1996 + } + ], + { + "x": -0.96593, + "y": -0.25882 + }, + { + "x": -0.86602, + "y": -0.50001 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.50001, + "y": -0.86602 + }, + { + "x": -0.25882, + "y": -0.96593 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25882, + "y": -0.96593 + }, + { + "x": 0.50001, + "y": -0.86602 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86602, + "y": -0.50001 + }, + { + "x": 0.96593, + "y": -0.25882 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 41, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1998 + }, + "angle": 0, + "vertices": { + "#": 1999 + }, + "position": { + "#": 2020 + }, + "force": { + "#": 2021 + }, + "torque": 0, + "positionImpulse": { + "#": 2022 + }, + "constraintImpulse": { + "#": 2023 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2024 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2025 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2026 + }, + "circleRadius": 18.48, + "bounds": { + "#": 2028 + }, + "positionPrev": { + "#": 2031 + }, + "anglePrev": 0, + "axes": { + "#": 2032 + }, + "area": 1055.30679, + "mass": 1.05531, + "inverseMass": 0.94759, + "inertia": 709.02471, + "inverseInertia": 0.00141, + "parent": { + "#": 1997 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1997 + } + ], + [ + { + "#": 2000 + }, + { + "#": 2001 + }, + { + "#": 2002 + }, + { + "#": 2003 + }, + { + "#": 2004 + }, + { + "#": 2005 + }, + { + "#": 2006 + }, + { + "#": 2007 + }, + { + "#": 2008 + }, + { + "#": 2009 + }, + { + "#": 2010 + }, + { + "#": 2011 + }, + { + "#": 2012 + }, + { + "#": 2013 + }, + { + "#": 2014 + }, + { + "#": 2015 + }, + { + "#": 2016 + }, + { + "#": 2017 + }, + { + "#": 2018 + }, + { + "#": 2019 + } + ], + { + "x": 462.312, + "y": 278.709, + "index": 0, + "body": { + "#": 1997 + }, + "isInternal": false + }, + { + "x": 460.526, + "y": 284.208, + "index": 1, + "body": { + "#": 1997 + }, + "isInternal": false + }, + { + "x": 457.127, + "y": 288.885, + "index": 2, + "body": { + "#": 1997 + }, + "isInternal": false + }, + { + "x": 452.45, + "y": 292.284, + "index": 3, + "body": { + "#": 1997 + }, + "isInternal": false + }, + { + "x": 446.951, + "y": 294.07, + "index": 4, + "body": { + "#": 1997 + }, + "isInternal": false + }, + { + "x": 441.169, + "y": 294.07, + "index": 5, + "body": { + "#": 1997 + }, + "isInternal": false + }, + { + "x": 435.67, + "y": 292.284, + "index": 6, + "body": { + "#": 1997 + }, + "isInternal": false + }, + { + "x": 430.993, + "y": 288.885, + "index": 7, + "body": { + "#": 1997 + }, + "isInternal": false + }, + { + "x": 427.594, + "y": 284.208, + "index": 8, + "body": { + "#": 1997 + }, + "isInternal": false + }, + { + "x": 425.808, + "y": 278.709, + "index": 9, + "body": { + "#": 1997 + }, + "isInternal": false + }, + { + "x": 425.808, + "y": 272.927, + "index": 10, + "body": { + "#": 1997 + }, + "isInternal": false + }, + { + "x": 427.594, + "y": 267.428, + "index": 11, + "body": { + "#": 1997 + }, + "isInternal": false + }, + { + "x": 430.993, + "y": 262.751, + "index": 12, + "body": { + "#": 1997 + }, + "isInternal": false + }, + { + "x": 435.67, + "y": 259.352, + "index": 13, + "body": { + "#": 1997 + }, + "isInternal": false + }, + { + "x": 441.169, + "y": 257.566, + "index": 14, + "body": { + "#": 1997 + }, + "isInternal": false + }, + { + "x": 446.951, + "y": 257.566, + "index": 15, + "body": { + "#": 1997 + }, + "isInternal": false + }, + { + "x": 452.45, + "y": 259.352, + "index": 16, + "body": { + "#": 1997 + }, + "isInternal": false + }, + { + "x": 457.127, + "y": 262.751, + "index": 17, + "body": { + "#": 1997 + }, + "isInternal": false + }, + { + "x": 460.526, + "y": 267.428, + "index": 18, + "body": { + "#": 1997 + }, + "isInternal": false + }, + { + "x": 462.312, + "y": 272.927, + "index": 19, + "body": { + "#": 1997 + }, + "isInternal": false + }, + { + "x": 444.06, + "y": 275.818 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2027 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2029 + }, + "max": { + "#": 2030 + } + }, + { + "x": 425.808, + "y": 257.566 + }, + { + "x": 462.312, + "y": 294.07 + }, + { + "x": 444.06, + "y": 275.818 + }, + [ + { + "#": 2033 + }, + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + }, + { + "#": 2038 + }, + { + "#": 2039 + }, + { + "#": 2040 + }, + { + "#": 2041 + }, + { + "#": 2042 + } + ], + { + "x": -0.95109, + "y": -0.3089 + }, + { + "x": -0.80894, + "y": -0.58789 + }, + { + "x": -0.58789, + "y": -0.80894 + }, + { + "x": -0.3089, + "y": -0.95109 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089, + "y": -0.95109 + }, + { + "x": 0.58789, + "y": -0.80894 + }, + { + "x": 0.80894, + "y": -0.58789 + }, + { + "x": 0.95109, + "y": -0.3089 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 42, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2044 + }, + "angle": 0, + "vertices": { + "#": 2045 + }, + "position": { + "#": 2072 + }, + "force": { + "#": 2073 + }, + "torque": 0, + "positionImpulse": { + "#": 2074 + }, + "constraintImpulse": { + "#": 2075 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2076 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2077 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2078 + }, + "circleRadius": 29.62288, + "bounds": { + "#": 2080 + }, + "positionPrev": { + "#": 2083 + }, + "anglePrev": 0, + "axes": { + "#": 2084 + }, + "area": 2730.049, + "mass": 2.73005, + "inverseMass": 0.36629, + "inertia": 4744.92436, + "inverseInertia": 0.00021, + "parent": { + "#": 2043 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2043 + } + ], + [ + { + "#": 2046 + }, + { + "#": 2047 + }, + { + "#": 2048 + }, + { + "#": 2049 + }, + { + "#": 2050 + }, + { + "#": 2051 + }, + { + "#": 2052 + }, + { + "#": 2053 + }, + { + "#": 2054 + }, + { + "#": 2055 + }, + { + "#": 2056 + }, + { + "#": 2057 + }, + { + "#": 2058 + }, + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + }, + { + "#": 2062 + }, + { + "#": 2063 + }, + { + "#": 2064 + }, + { + "#": 2065 + }, + { + "#": 2066 + }, + { + "#": 2067 + }, + { + "#": 2068 + }, + { + "#": 2069 + }, + { + "#": 2070 + }, + { + "#": 2071 + } + ], + { + "x": 531.126, + "y": 290.76, + "index": 0, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 529.417, + "y": 297.693, + "index": 1, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 526.098, + "y": 304.017, + "index": 2, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 521.363, + "y": 309.362, + "index": 3, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 515.485, + "y": 313.419, + "index": 4, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 508.808, + "y": 315.951, + "index": 5, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 501.719, + "y": 316.812, + "index": 6, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 494.63, + "y": 315.951, + "index": 7, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 487.953, + "y": 313.419, + "index": 8, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 482.075, + "y": 309.362, + "index": 9, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 477.34, + "y": 304.017, + "index": 10, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 474.021, + "y": 297.693, + "index": 11, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 472.312, + "y": 290.76, + "index": 12, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 472.312, + "y": 283.618, + "index": 13, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 474.021, + "y": 276.685, + "index": 14, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 477.34, + "y": 270.361, + "index": 15, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 482.075, + "y": 265.016, + "index": 16, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 487.953, + "y": 260.959, + "index": 17, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 494.63, + "y": 258.427, + "index": 18, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 501.719, + "y": 257.566, + "index": 19, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 508.808, + "y": 258.427, + "index": 20, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 515.485, + "y": 260.959, + "index": 21, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 521.363, + "y": 265.016, + "index": 22, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 526.098, + "y": 270.361, + "index": 23, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 529.417, + "y": 276.685, + "index": 24, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 531.126, + "y": 283.618, + "index": 25, + "body": { + "#": 2043 + }, + "isInternal": false + }, + { + "x": 501.719, + "y": 287.189 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2079 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2081 + }, + "max": { + "#": 2082 + } + }, + { + "x": 472.312, + "y": 257.566 + }, + { + "x": 531.126, + "y": 316.812 + }, + { + "x": 501.719, + "y": 287.189 + }, + [ + { + "#": 2085 + }, + { + "#": 2086 + }, + { + "#": 2087 + }, + { + "#": 2088 + }, + { + "#": 2089 + }, + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + }, + { + "#": 2094 + }, + { + "#": 2095 + }, + { + "#": 2096 + }, + { + "#": 2097 + } + ], + { + "x": -0.97094, + "y": -0.23934 + }, + { + "x": -0.88546, + "y": -0.46471 + }, + { + "x": -0.74853, + "y": -0.6631 + }, + { + "x": -0.56804, + "y": -0.823 + }, + { + "x": -0.35457, + "y": -0.93503 + }, + { + "x": -0.12057, + "y": -0.9927 + }, + { + "x": 0.12057, + "y": -0.9927 + }, + { + "x": 0.35457, + "y": -0.93503 + }, + { + "x": 0.56804, + "y": -0.823 + }, + { + "x": 0.74853, + "y": -0.6631 + }, + { + "x": 0.88546, + "y": -0.46471 + }, + { + "x": 0.97094, + "y": -0.23934 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 43, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2099 + }, + "angle": 0, + "vertices": { + "#": 2100 + }, + "position": { + "#": 2119 + }, + "force": { + "#": 2120 + }, + "torque": 0, + "positionImpulse": { + "#": 2121 + }, + "constraintImpulse": { + "#": 2122 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2123 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2124 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2125 + }, + "circleRadius": 16.49106, + "bounds": { + "#": 2127 + }, + "positionPrev": { + "#": 2130 + }, + "anglePrev": 0, + "axes": { + "#": 2131 + }, + "area": 837.15618, + "mass": 0.83716, + "inverseMass": 1.19452, + "inertia": 446.19987, + "inverseInertia": 0.00224, + "parent": { + "#": 2098 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2098 + } + ], + [ + { + "#": 2101 + }, + { + "#": 2102 + }, + { + "#": 2103 + }, + { + "#": 2104 + }, + { + "#": 2105 + }, + { + "#": 2106 + }, + { + "#": 2107 + }, + { + "#": 2108 + }, + { + "#": 2109 + }, + { + "#": 2110 + }, + { + "#": 2111 + }, + { + "#": 2112 + }, + { + "#": 2113 + }, + { + "#": 2114 + }, + { + "#": 2115 + }, + { + "#": 2116 + }, + { + "#": 2117 + }, + { + "#": 2118 + } + ], + { + "x": 573.608, + "y": 276.921, + "index": 0, + "body": { + "#": 2098 + }, + "isInternal": false + }, + { + "x": 571.649, + "y": 282.303, + "index": 1, + "body": { + "#": 2098 + }, + "isInternal": false + }, + { + "x": 567.967, + "y": 286.69, + "index": 2, + "body": { + "#": 2098 + }, + "isInternal": false + }, + { + "x": 563.007, + "y": 289.554, + "index": 3, + "body": { + "#": 2098 + }, + "isInternal": false + }, + { + "x": 557.367, + "y": 290.548, + "index": 4, + "body": { + "#": 2098 + }, + "isInternal": false + }, + { + "x": 551.727, + "y": 289.554, + "index": 5, + "body": { + "#": 2098 + }, + "isInternal": false + }, + { + "x": 546.767, + "y": 286.69, + "index": 6, + "body": { + "#": 2098 + }, + "isInternal": false + }, + { + "x": 543.085, + "y": 282.303, + "index": 7, + "body": { + "#": 2098 + }, + "isInternal": false + }, + { + "x": 541.126, + "y": 276.921, + "index": 8, + "body": { + "#": 2098 + }, + "isInternal": false + }, + { + "x": 541.126, + "y": 271.193, + "index": 9, + "body": { + "#": 2098 + }, + "isInternal": false + }, + { + "x": 543.085, + "y": 265.811, + "index": 10, + "body": { + "#": 2098 + }, + "isInternal": false + }, + { + "x": 546.767, + "y": 261.424, + "index": 11, + "body": { + "#": 2098 + }, + "isInternal": false + }, + { + "x": 551.727, + "y": 258.56, + "index": 12, + "body": { + "#": 2098 + }, + "isInternal": false + }, + { + "x": 557.367, + "y": 257.566, + "index": 13, + "body": { + "#": 2098 + }, + "isInternal": false + }, + { + "x": 563.007, + "y": 258.56, + "index": 14, + "body": { + "#": 2098 + }, + "isInternal": false + }, + { + "x": 567.967, + "y": 261.424, + "index": 15, + "body": { + "#": 2098 + }, + "isInternal": false + }, + { + "x": 571.649, + "y": 265.811, + "index": 16, + "body": { + "#": 2098 + }, + "isInternal": false + }, + { + "x": 573.608, + "y": 271.193, + "index": 17, + "body": { + "#": 2098 + }, + "isInternal": false + }, + { + "x": 557.367, + "y": 274.057 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2126 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2128 + }, + "max": { + "#": 2129 + } + }, + { + "x": 541.126, + "y": 257.566 + }, + { + "x": 573.608, + "y": 290.548 + }, + { + "x": 557.367, + "y": 274.057 + }, + [ + { + "#": 2132 + }, + { + "#": 2133 + }, + { + "#": 2134 + }, + { + "#": 2135 + }, + { + "#": 2136 + }, + { + "#": 2137 + }, + { + "#": 2138 + }, + { + "#": 2139 + }, + { + "#": 2140 + } + ], + { + "x": -0.93969, + "y": -0.34204 + }, + { + "x": -0.76597, + "y": -0.64288 + }, + { + "x": -0.50004, + "y": -0.866 + }, + { + "x": -0.17357, + "y": -0.98482 + }, + { + "x": 0.17357, + "y": -0.98482 + }, + { + "x": 0.50004, + "y": -0.866 + }, + { + "x": 0.76597, + "y": -0.64288 + }, + { + "x": 0.93969, + "y": -0.34204 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 44, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2142 + }, + "angle": 0, + "vertices": { + "#": 2143 + }, + "position": { + "#": 2170 + }, + "force": { + "#": 2171 + }, + "torque": 0, + "positionImpulse": { + "#": 2172 + }, + "constraintImpulse": { + "#": 2173 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2174 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2175 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2176 + }, + "circleRadius": 24.26974, + "bounds": { + "#": 2178 + }, + "positionPrev": { + "#": 2181 + }, + "anglePrev": 0, + "axes": { + "#": 2182 + }, + "area": 1832.54566, + "mass": 1.83255, + "inverseMass": 0.54569, + "inertia": 2137.95234, + "inverseInertia": 0.00047, + "parent": { + "#": 2141 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2141 + } + ], + [ + { + "#": 2144 + }, + { + "#": 2145 + }, + { + "#": 2146 + }, + { + "#": 2147 + }, + { + "#": 2148 + }, + { + "#": 2149 + }, + { + "#": 2150 + }, + { + "#": 2151 + }, + { + "#": 2152 + }, + { + "#": 2153 + }, + { + "#": 2154 + }, + { + "#": 2155 + }, + { + "#": 2156 + }, + { + "#": 2157 + }, + { + "#": 2158 + }, + { + "#": 2159 + }, + { + "#": 2160 + }, + { + "#": 2161 + }, + { + "#": 2162 + }, + { + "#": 2163 + }, + { + "#": 2164 + }, + { + "#": 2165 + }, + { + "#": 2166 + }, + { + "#": 2167 + }, + { + "#": 2168 + }, + { + "#": 2169 + } + ], + { + "x": 631.794, + "y": 284.761, + "index": 0, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 630.394, + "y": 290.442, + "index": 1, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 627.675, + "y": 295.623, + "index": 2, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 623.795, + "y": 300.002, + "index": 3, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 618.98, + "y": 303.326, + "index": 4, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 613.509, + "y": 305.401, + "index": 5, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 607.701, + "y": 306.106, + "index": 6, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 601.893, + "y": 305.401, + "index": 7, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 596.422, + "y": 303.326, + "index": 8, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 591.607, + "y": 300.002, + "index": 9, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 587.727, + "y": 295.623, + "index": 10, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 585.008, + "y": 290.442, + "index": 11, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 583.608, + "y": 284.761, + "index": 12, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 583.608, + "y": 278.911, + "index": 13, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 585.008, + "y": 273.23, + "index": 14, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 587.727, + "y": 268.049, + "index": 15, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 591.607, + "y": 263.67, + "index": 16, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 596.422, + "y": 260.346, + "index": 17, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 601.893, + "y": 258.271, + "index": 18, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 607.701, + "y": 257.566, + "index": 19, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 613.509, + "y": 258.271, + "index": 20, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 618.98, + "y": 260.346, + "index": 21, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 623.795, + "y": 263.67, + "index": 22, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 627.675, + "y": 268.049, + "index": 23, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 630.394, + "y": 273.23, + "index": 24, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 631.794, + "y": 278.911, + "index": 25, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 607.701, + "y": 281.836 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2177 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2179 + }, + "max": { + "#": 2180 + } + }, + { + "x": 583.608, + "y": 257.566 + }, + { + "x": 631.794, + "y": 306.106 + }, + { + "x": 607.701, + "y": 281.836 + }, + [ + { + "#": 2183 + }, + { + "#": 2184 + }, + { + "#": 2185 + }, + { + "#": 2186 + }, + { + "#": 2187 + }, + { + "#": 2188 + }, + { + "#": 2189 + }, + { + "#": 2190 + }, + { + "#": 2191 + }, + { + "#": 2192 + }, + { + "#": 2193 + }, + { + "#": 2194 + }, + { + "#": 2195 + } + ], + { + "x": -0.97095, + "y": -0.23928 + }, + { + "x": -0.88547, + "y": -0.4647 + }, + { + "x": -0.74846, + "y": -0.66317 + }, + { + "x": -0.56812, + "y": -0.82295 + }, + { + "x": -0.35462, + "y": -0.93501 + }, + { + "x": -0.1205, + "y": -0.99271 + }, + { + "x": 0.1205, + "y": -0.99271 + }, + { + "x": 0.35462, + "y": -0.93501 + }, + { + "x": 0.56812, + "y": -0.82295 + }, + { + "x": 0.74846, + "y": -0.66317 + }, + { + "x": 0.88547, + "y": -0.4647 + }, + { + "x": 0.97095, + "y": -0.23928 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 45, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2197 + }, + "angle": 0, + "vertices": { + "#": 2198 + }, + "position": { + "#": 2225 + }, + "force": { + "#": 2226 + }, + "torque": 0, + "positionImpulse": { + "#": 2227 + }, + "constraintImpulse": { + "#": 2228 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2229 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2230 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2231 + }, + "circleRadius": 29.25521, + "bounds": { + "#": 2233 + }, + "positionPrev": { + "#": 2236 + }, + "anglePrev": 0, + "axes": { + "#": 2237 + }, + "area": 2662.70319, + "mass": 2.6627, + "inverseMass": 0.37556, + "inertia": 4513.71283, + "inverseInertia": 0.00022, + "parent": { + "#": 2196 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2196 + } + ], + [ + { + "#": 2199 + }, + { + "#": 2200 + }, + { + "#": 2201 + }, + { + "#": 2202 + }, + { + "#": 2203 + }, + { + "#": 2204 + }, + { + "#": 2205 + }, + { + "#": 2206 + }, + { + "#": 2207 + }, + { + "#": 2208 + }, + { + "#": 2209 + }, + { + "#": 2210 + }, + { + "#": 2211 + }, + { + "#": 2212 + }, + { + "#": 2213 + }, + { + "#": 2214 + }, + { + "#": 2215 + }, + { + "#": 2216 + }, + { + "#": 2217 + }, + { + "#": 2218 + }, + { + "#": 2219 + }, + { + "#": 2220 + }, + { + "#": 2221 + }, + { + "#": 2222 + }, + { + "#": 2223 + }, + { + "#": 2224 + } + ], + { + "x": 158.084, + "y": 359.593, + "index": 0, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 156.396, + "y": 366.441, + "index": 1, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 153.119, + "y": 372.686, + "index": 2, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 148.442, + "y": 377.965, + "index": 3, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 142.638, + "y": 381.971, + "index": 4, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 136.043, + "y": 384.472, + "index": 5, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 129.042, + "y": 385.322, + "index": 6, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 122.041, + "y": 384.472, + "index": 7, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 115.446, + "y": 381.971, + "index": 8, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 109.642, + "y": 377.965, + "index": 9, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 104.965, + "y": 372.686, + "index": 10, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 101.688, + "y": 366.441, + "index": 11, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 100, + "y": 359.593, + "index": 12, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 100, + "y": 352.541, + "index": 13, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 101.688, + "y": 345.693, + "index": 14, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 104.965, + "y": 339.448, + "index": 15, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 109.642, + "y": 334.169, + "index": 16, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 115.446, + "y": 330.163, + "index": 17, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 122.041, + "y": 327.662, + "index": 18, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 129.042, + "y": 326.812, + "index": 19, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 136.043, + "y": 327.662, + "index": 20, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 142.638, + "y": 330.163, + "index": 21, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 148.442, + "y": 334.169, + "index": 22, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 153.119, + "y": 339.448, + "index": 23, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 156.396, + "y": 345.693, + "index": 24, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 158.084, + "y": 352.541, + "index": 25, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 129.042, + "y": 356.067 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2232 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2234 + }, + "max": { + "#": 2235 + } + }, + { + "x": 100, + "y": 326.812 + }, + { + "x": 158.084, + "y": 385.322 + }, + { + "x": 129.042, + "y": 356.067 + }, + [ + { + "#": 2238 + }, + { + "#": 2239 + }, + { + "#": 2240 + }, + { + "#": 2241 + }, + { + "#": 2242 + }, + { + "#": 2243 + }, + { + "#": 2244 + }, + { + "#": 2245 + }, + { + "#": 2246 + }, + { + "#": 2247 + }, + { + "#": 2248 + }, + { + "#": 2249 + }, + { + "#": 2250 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88549, + "y": -0.46465 + }, + { + "x": -0.7485, + "y": -0.66314 + }, + { + "x": -0.56804, + "y": -0.823 + }, + { + "x": -0.35459, + "y": -0.93502 + }, + { + "x": -0.12053, + "y": -0.99271 + }, + { + "x": 0.12053, + "y": -0.99271 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.56804, + "y": -0.823 + }, + { + "x": 0.7485, + "y": -0.66314 + }, + { + "x": 0.88549, + "y": -0.46465 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 46, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2252 + }, + "angle": 0, + "vertices": { + "#": 2253 + }, + "position": { + "#": 2276 + }, + "force": { + "#": 2277 + }, + "torque": 0, + "positionImpulse": { + "#": 2278 + }, + "constraintImpulse": { + "#": 2279 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2280 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2281 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2282 + }, + "circleRadius": 20.52154, + "bounds": { + "#": 2284 + }, + "positionPrev": { + "#": 2287 + }, + "anglePrev": 0, + "axes": { + "#": 2288 + }, + "area": 1305.13571, + "mass": 1.30514, + "inverseMass": 0.7662, + "inertia": 1084.44537, + "inverseInertia": 0.00092, + "parent": { + "#": 2251 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2251 + } + ], + [ + { + "#": 2254 + }, + { + "#": 2255 + }, + { + "#": 2256 + }, + { + "#": 2257 + }, + { + "#": 2258 + }, + { + "#": 2259 + }, + { + "#": 2260 + }, + { + "#": 2261 + }, + { + "#": 2262 + }, + { + "#": 2263 + }, + { + "#": 2264 + }, + { + "#": 2265 + }, + { + "#": 2266 + }, + { + "#": 2267 + }, + { + "#": 2268 + }, + { + "#": 2269 + }, + { + "#": 2270 + }, + { + "#": 2271 + }, + { + "#": 2272 + }, + { + "#": 2273 + }, + { + "#": 2274 + }, + { + "#": 2275 + } + ], + { + "x": 208.71, + "y": 350.255, + "index": 0, + "body": { + "#": 2251 + }, + "isInternal": false + }, + { + "x": 207.064, + "y": 355.859, + "index": 1, + "body": { + "#": 2251 + }, + "isInternal": false + }, + { + "x": 203.906, + "y": 360.773, + "index": 2, + "body": { + "#": 2251 + }, + "isInternal": false + }, + { + "x": 199.492, + "y": 364.598, + "index": 3, + "body": { + "#": 2251 + }, + "isInternal": false + }, + { + "x": 194.179, + "y": 367.024, + "index": 4, + "body": { + "#": 2251 + }, + "isInternal": false + }, + { + "x": 188.397, + "y": 367.856, + "index": 5, + "body": { + "#": 2251 + }, + "isInternal": false + }, + { + "x": 182.615, + "y": 367.024, + "index": 6, + "body": { + "#": 2251 + }, + "isInternal": false + }, + { + "x": 177.302, + "y": 364.598, + "index": 7, + "body": { + "#": 2251 + }, + "isInternal": false + }, + { + "x": 172.888, + "y": 360.773, + "index": 8, + "body": { + "#": 2251 + }, + "isInternal": false + }, + { + "x": 169.73, + "y": 355.859, + "index": 9, + "body": { + "#": 2251 + }, + "isInternal": false + }, + { + "x": 168.084, + "y": 350.255, + "index": 10, + "body": { + "#": 2251 + }, + "isInternal": false + }, + { + "x": 168.084, + "y": 344.413, + "index": 11, + "body": { + "#": 2251 + }, + "isInternal": false + }, + { + "x": 169.73, + "y": 338.809, + "index": 12, + "body": { + "#": 2251 + }, + "isInternal": false + }, + { + "x": 172.888, + "y": 333.895, + "index": 13, + "body": { + "#": 2251 + }, + "isInternal": false + }, + { + "x": 177.302, + "y": 330.07, + "index": 14, + "body": { + "#": 2251 + }, + "isInternal": false + }, + { + "x": 182.615, + "y": 327.644, + "index": 15, + "body": { + "#": 2251 + }, + "isInternal": false + }, + { + "x": 188.397, + "y": 326.812, + "index": 16, + "body": { + "#": 2251 + }, + "isInternal": false + }, + { + "x": 194.179, + "y": 327.644, + "index": 17, + "body": { + "#": 2251 + }, + "isInternal": false + }, + { + "x": 199.492, + "y": 330.07, + "index": 18, + "body": { + "#": 2251 + }, + "isInternal": false + }, + { + "x": 203.906, + "y": 333.895, + "index": 19, + "body": { + "#": 2251 + }, + "isInternal": false + }, + { + "x": 207.064, + "y": 338.809, + "index": 20, + "body": { + "#": 2251 + }, + "isInternal": false + }, + { + "x": 208.71, + "y": 344.413, + "index": 21, + "body": { + "#": 2251 + }, + "isInternal": false + }, + { + "x": 188.397, + "y": 347.334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2283 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2285 + }, + "max": { + "#": 2286 + } + }, + { + "x": 168.084, + "y": 326.812 + }, + { + "x": 208.71, + "y": 367.856 + }, + { + "x": 188.397, + "y": 347.334 + }, + [ + { + "#": 2289 + }, + { + "#": 2290 + }, + { + "#": 2291 + }, + { + "#": 2292 + }, + { + "#": 2293 + }, + { + "#": 2294 + }, + { + "#": 2295 + }, + { + "#": 2296 + }, + { + "#": 2297 + }, + { + "#": 2298 + }, + { + "#": 2299 + } + ], + { + "x": -0.95947, + "y": -0.28181 + }, + { + "x": -0.84126, + "y": -0.54064 + }, + { + "x": -0.65488, + "y": -0.75573 + }, + { + "x": -0.41536, + "y": -0.90966 + }, + { + "x": -0.14243, + "y": -0.98981 + }, + { + "x": 0.14243, + "y": -0.98981 + }, + { + "x": 0.41536, + "y": -0.90966 + }, + { + "x": 0.65488, + "y": -0.75573 + }, + { + "x": 0.84126, + "y": -0.54064 + }, + { + "x": 0.95947, + "y": -0.28181 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 47, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2301 + }, + "angle": 0, + "vertices": { + "#": 2302 + }, + "position": { + "#": 2321 + }, + "force": { + "#": 2322 + }, + "torque": 0, + "positionImpulse": { + "#": 2323 + }, + "constraintImpulse": { + "#": 2324 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2325 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2326 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2327 + }, + "circleRadius": 16.58726, + "bounds": { + "#": 2329 + }, + "positionPrev": { + "#": 2332 + }, + "anglePrev": 0, + "axes": { + "#": 2333 + }, + "area": 846.9227, + "mass": 0.84692, + "inverseMass": 1.18075, + "inertia": 456.67161, + "inverseInertia": 0.00219, + "parent": { + "#": 2300 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2300 + } + ], + [ + { + "#": 2303 + }, + { + "#": 2304 + }, + { + "#": 2305 + }, + { + "#": 2306 + }, + { + "#": 2307 + }, + { + "#": 2308 + }, + { + "#": 2309 + }, + { + "#": 2310 + }, + { + "#": 2311 + }, + { + "#": 2312 + }, + { + "#": 2313 + }, + { + "#": 2314 + }, + { + "#": 2315 + }, + { + "#": 2316 + }, + { + "#": 2317 + }, + { + "#": 2318 + }, + { + "#": 2319 + }, + { + "#": 2320 + } + ], + { + "x": 251.38, + "y": 346.279, + "index": 0, + "body": { + "#": 2300 + }, + "isInternal": false + }, + { + "x": 249.41, + "y": 351.693, + "index": 1, + "body": { + "#": 2300 + }, + "isInternal": false + }, + { + "x": 245.707, + "y": 356.106, + "index": 2, + "body": { + "#": 2300 + }, + "isInternal": false + }, + { + "x": 240.718, + "y": 358.986, + "index": 3, + "body": { + "#": 2300 + }, + "isInternal": false + }, + { + "x": 235.045, + "y": 359.986, + "index": 4, + "body": { + "#": 2300 + }, + "isInternal": false + }, + { + "x": 229.372, + "y": 358.986, + "index": 5, + "body": { + "#": 2300 + }, + "isInternal": false + }, + { + "x": 224.383, + "y": 356.106, + "index": 6, + "body": { + "#": 2300 + }, + "isInternal": false + }, + { + "x": 220.68, + "y": 351.693, + "index": 7, + "body": { + "#": 2300 + }, + "isInternal": false + }, + { + "x": 218.71, + "y": 346.279, + "index": 8, + "body": { + "#": 2300 + }, + "isInternal": false + }, + { + "x": 218.71, + "y": 340.519, + "index": 9, + "body": { + "#": 2300 + }, + "isInternal": false + }, + { + "x": 220.68, + "y": 335.105, + "index": 10, + "body": { + "#": 2300 + }, + "isInternal": false + }, + { + "x": 224.383, + "y": 330.692, + "index": 11, + "body": { + "#": 2300 + }, + "isInternal": false + }, + { + "x": 229.372, + "y": 327.812, + "index": 12, + "body": { + "#": 2300 + }, + "isInternal": false + }, + { + "x": 235.045, + "y": 326.812, + "index": 13, + "body": { + "#": 2300 + }, + "isInternal": false + }, + { + "x": 240.718, + "y": 327.812, + "index": 14, + "body": { + "#": 2300 + }, + "isInternal": false + }, + { + "x": 245.707, + "y": 330.692, + "index": 15, + "body": { + "#": 2300 + }, + "isInternal": false + }, + { + "x": 249.41, + "y": 335.105, + "index": 16, + "body": { + "#": 2300 + }, + "isInternal": false + }, + { + "x": 251.38, + "y": 340.519, + "index": 17, + "body": { + "#": 2300 + }, + "isInternal": false + }, + { + "x": 235.045, + "y": 343.399 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2328 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2330 + }, + "max": { + "#": 2331 + } + }, + { + "x": 218.71, + "y": 326.812 + }, + { + "x": 251.38, + "y": 359.986 + }, + { + "x": 235.045, + "y": 343.399 + }, + [ + { + "#": 2334 + }, + { + "#": 2335 + }, + { + "#": 2336 + }, + { + "#": 2337 + }, + { + "#": 2338 + }, + { + "#": 2339 + }, + { + "#": 2340 + }, + { + "#": 2341 + }, + { + "#": 2342 + } + ], + { + "x": -0.93972, + "y": -0.34194 + }, + { + "x": -0.76604, + "y": -0.64279 + }, + { + "x": -0.49995, + "y": -0.86606 + }, + { + "x": -0.1736, + "y": -0.98482 + }, + { + "x": 0.1736, + "y": -0.98482 + }, + { + "x": 0.49995, + "y": -0.86606 + }, + { + "x": 0.76604, + "y": -0.64279 + }, + { + "x": 0.93972, + "y": -0.34194 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 48, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2344 + }, + "angle": 0, + "vertices": { + "#": 2345 + }, + "position": { + "#": 2364 + }, + "force": { + "#": 2365 + }, + "torque": 0, + "positionImpulse": { + "#": 2366 + }, + "constraintImpulse": { + "#": 2367 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2368 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2369 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2370 + }, + "circleRadius": 17.08198, + "bounds": { + "#": 2372 + }, + "positionPrev": { + "#": 2375 + }, + "anglePrev": 0, + "axes": { + "#": 2376 + }, + "area": 898.18265, + "mass": 0.89818, + "inverseMass": 1.11336, + "inertia": 513.62457, + "inverseInertia": 0.00195, + "parent": { + "#": 2343 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2343 + } + ], + [ + { + "#": 2346 + }, + { + "#": 2347 + }, + { + "#": 2348 + }, + { + "#": 2349 + }, + { + "#": 2350 + }, + { + "#": 2351 + }, + { + "#": 2352 + }, + { + "#": 2353 + }, + { + "#": 2354 + }, + { + "#": 2355 + }, + { + "#": 2356 + }, + { + "#": 2357 + }, + { + "#": 2358 + }, + { + "#": 2359 + }, + { + "#": 2360 + }, + { + "#": 2361 + }, + { + "#": 2362 + }, + { + "#": 2363 + } + ], + { + "x": 295.024, + "y": 346.86, + "index": 0, + "body": { + "#": 2343 + }, + "isInternal": false + }, + { + "x": 292.995, + "y": 352.435, + "index": 1, + "body": { + "#": 2343 + }, + "isInternal": false + }, + { + "x": 289.182, + "y": 356.98, + "index": 2, + "body": { + "#": 2343 + }, + "isInternal": false + }, + { + "x": 284.044, + "y": 359.946, + "index": 3, + "body": { + "#": 2343 + }, + "isInternal": false + }, + { + "x": 278.202, + "y": 360.976, + "index": 4, + "body": { + "#": 2343 + }, + "isInternal": false + }, + { + "x": 272.36, + "y": 359.946, + "index": 5, + "body": { + "#": 2343 + }, + "isInternal": false + }, + { + "x": 267.222, + "y": 356.98, + "index": 6, + "body": { + "#": 2343 + }, + "isInternal": false + }, + { + "x": 263.409, + "y": 352.435, + "index": 7, + "body": { + "#": 2343 + }, + "isInternal": false + }, + { + "x": 261.38, + "y": 346.86, + "index": 8, + "body": { + "#": 2343 + }, + "isInternal": false + }, + { + "x": 261.38, + "y": 340.928, + "index": 9, + "body": { + "#": 2343 + }, + "isInternal": false + }, + { + "x": 263.409, + "y": 335.353, + "index": 10, + "body": { + "#": 2343 + }, + "isInternal": false + }, + { + "x": 267.222, + "y": 330.808, + "index": 11, + "body": { + "#": 2343 + }, + "isInternal": false + }, + { + "x": 272.36, + "y": 327.842, + "index": 12, + "body": { + "#": 2343 + }, + "isInternal": false + }, + { + "x": 278.202, + "y": 326.812, + "index": 13, + "body": { + "#": 2343 + }, + "isInternal": false + }, + { + "x": 284.044, + "y": 327.842, + "index": 14, + "body": { + "#": 2343 + }, + "isInternal": false + }, + { + "x": 289.182, + "y": 330.808, + "index": 15, + "body": { + "#": 2343 + }, + "isInternal": false + }, + { + "x": 292.995, + "y": 335.353, + "index": 16, + "body": { + "#": 2343 + }, + "isInternal": false + }, + { + "x": 295.024, + "y": 340.928, + "index": 17, + "body": { + "#": 2343 + }, + "isInternal": false + }, + { + "x": 278.202, + "y": 343.894 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2371 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2373 + }, + "max": { + "#": 2374 + } + }, + { + "x": 261.38, + "y": 326.812 + }, + { + "x": 295.024, + "y": 360.976 + }, + { + "x": 278.202, + "y": 343.894 + }, + [ + { + "#": 2377 + }, + { + "#": 2378 + }, + { + "#": 2379 + }, + { + "#": 2380 + }, + { + "#": 2381 + }, + { + "#": 2382 + }, + { + "#": 2383 + }, + { + "#": 2384 + }, + { + "#": 2385 + } + ], + { + "x": -0.9397, + "y": -0.342 + }, + { + "x": -0.7661, + "y": -0.64272 + }, + { + "x": -0.49995, + "y": -0.86606 + }, + { + "x": -0.17363, + "y": -0.98481 + }, + { + "x": 0.17363, + "y": -0.98481 + }, + { + "x": 0.49995, + "y": -0.86606 + }, + { + "x": 0.7661, + "y": -0.64272 + }, + { + "x": 0.9397, + "y": -0.342 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 49, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2387 + }, + "angle": 0, + "vertices": { + "#": 2388 + }, + "position": { + "#": 2415 + }, + "force": { + "#": 2416 + }, + "torque": 0, + "positionImpulse": { + "#": 2417 + }, + "constraintImpulse": { + "#": 2418 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2419 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2420 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2421 + }, + "circleRadius": 24.41313, + "bounds": { + "#": 2423 + }, + "positionPrev": { + "#": 2426 + }, + "anglePrev": 0, + "axes": { + "#": 2427 + }, + "area": 1854.22627, + "mass": 1.85423, + "inverseMass": 0.53931, + "inertia": 2188.83925, + "inverseInertia": 0.00046, + "parent": { + "#": 2386 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2386 + } + ], + [ + { + "#": 2389 + }, + { + "#": 2390 + }, + { + "#": 2391 + }, + { + "#": 2392 + }, + { + "#": 2393 + }, + { + "#": 2394 + }, + { + "#": 2395 + }, + { + "#": 2396 + }, + { + "#": 2397 + }, + { + "#": 2398 + }, + { + "#": 2399 + }, + { + "#": 2400 + }, + { + "#": 2401 + }, + { + "#": 2402 + }, + { + "#": 2403 + }, + { + "#": 2404 + }, + { + "#": 2405 + }, + { + "#": 2406 + }, + { + "#": 2407 + }, + { + "#": 2408 + }, + { + "#": 2409 + }, + { + "#": 2410 + }, + { + "#": 2411 + }, + { + "#": 2412 + }, + { + "#": 2413 + }, + { + "#": 2414 + } + ], + { + "x": 353.494, + "y": 354.168, + "index": 0, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 352.086, + "y": 359.882, + "index": 1, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 349.351, + "y": 365.093, + "index": 2, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 345.448, + "y": 369.498, + "index": 3, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 340.604, + "y": 372.842, + "index": 4, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 335.101, + "y": 374.929, + "index": 5, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 329.259, + "y": 375.638, + "index": 6, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 323.417, + "y": 374.929, + "index": 7, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 317.914, + "y": 372.842, + "index": 8, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 313.07, + "y": 369.498, + "index": 9, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 309.167, + "y": 365.093, + "index": 10, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 306.432, + "y": 359.882, + "index": 11, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 305.024, + "y": 354.168, + "index": 12, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 305.024, + "y": 348.282, + "index": 13, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 306.432, + "y": 342.568, + "index": 14, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 309.167, + "y": 337.357, + "index": 15, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 313.07, + "y": 332.952, + "index": 16, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 317.914, + "y": 329.608, + "index": 17, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 323.417, + "y": 327.521, + "index": 18, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 329.259, + "y": 326.812, + "index": 19, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 335.101, + "y": 327.521, + "index": 20, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 340.604, + "y": 329.608, + "index": 21, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 345.448, + "y": 332.952, + "index": 22, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 349.351, + "y": 337.357, + "index": 23, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 352.086, + "y": 342.568, + "index": 24, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 353.494, + "y": 348.282, + "index": 25, + "body": { + "#": 2386 + }, + "isInternal": false + }, + { + "x": 329.259, + "y": 351.225 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2422 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2424 + }, + "max": { + "#": 2425 + } + }, + { + "x": 305.024, + "y": 326.812 + }, + { + "x": 353.494, + "y": 375.638 + }, + { + "x": 329.259, + "y": 351.225 + }, + [ + { + "#": 2428 + }, + { + "#": 2429 + }, + { + "#": 2430 + }, + { + "#": 2431 + }, + { + "#": 2432 + }, + { + "#": 2433 + }, + { + "#": 2434 + }, + { + "#": 2435 + }, + { + "#": 2436 + }, + { + "#": 2437 + }, + { + "#": 2438 + }, + { + "#": 2439 + }, + { + "#": 2440 + } + ], + { + "x": -0.97096, + "y": -0.23926 + }, + { + "x": -0.88545, + "y": -0.46473 + }, + { + "x": -0.74847, + "y": -0.66317 + }, + { + "x": -0.56811, + "y": -0.82295 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12048, + "y": -0.99272 + }, + { + "x": 0.12048, + "y": -0.99272 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56811, + "y": -0.82295 + }, + { + "x": 0.74847, + "y": -0.66317 + }, + { + "x": 0.88545, + "y": -0.46473 + }, + { + "x": 0.97096, + "y": -0.23926 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 50, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2442 + }, + "angle": 0, + "vertices": { + "#": 2443 + }, + "position": { + "#": 2460 + }, + "force": { + "#": 2461 + }, + "torque": 0, + "positionImpulse": { + "#": 2462 + }, + "constraintImpulse": { + "#": 2463 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2464 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2465 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2466 + }, + "circleRadius": 15.43255, + "bounds": { + "#": 2468 + }, + "positionPrev": { + "#": 2471 + }, + "anglePrev": 0, + "axes": { + "#": 2472 + }, + "area": 729.14713, + "mass": 0.72915, + "inverseMass": 1.37147, + "inertia": 338.50798, + "inverseInertia": 0.00295, + "parent": { + "#": 2441 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2441 + } + ], + [ + { + "#": 2444 + }, + { + "#": 2445 + }, + { + "#": 2446 + }, + { + "#": 2447 + }, + { + "#": 2448 + }, + { + "#": 2449 + }, + { + "#": 2450 + }, + { + "#": 2451 + }, + { + "#": 2452 + }, + { + "#": 2453 + }, + { + "#": 2454 + }, + { + "#": 2455 + }, + { + "#": 2456 + }, + { + "#": 2457 + }, + { + "#": 2458 + }, + { + "#": 2459 + } + ], + { + "x": 393.766, + "y": 344.959, + "index": 0, + "body": { + "#": 2441 + }, + "isInternal": false + }, + { + "x": 391.462, + "y": 350.522, + "index": 1, + "body": { + "#": 2441 + }, + "isInternal": false + }, + { + "x": 387.204, + "y": 354.78, + "index": 2, + "body": { + "#": 2441 + }, + "isInternal": false + }, + { + "x": 381.641, + "y": 357.084, + "index": 3, + "body": { + "#": 2441 + }, + "isInternal": false + }, + { + "x": 375.619, + "y": 357.084, + "index": 4, + "body": { + "#": 2441 + }, + "isInternal": false + }, + { + "x": 370.056, + "y": 354.78, + "index": 5, + "body": { + "#": 2441 + }, + "isInternal": false + }, + { + "x": 365.798, + "y": 350.522, + "index": 6, + "body": { + "#": 2441 + }, + "isInternal": false + }, + { + "x": 363.494, + "y": 344.959, + "index": 7, + "body": { + "#": 2441 + }, + "isInternal": false + }, + { + "x": 363.494, + "y": 338.937, + "index": 8, + "body": { + "#": 2441 + }, + "isInternal": false + }, + { + "x": 365.798, + "y": 333.374, + "index": 9, + "body": { + "#": 2441 + }, + "isInternal": false + }, + { + "x": 370.056, + "y": 329.116, + "index": 10, + "body": { + "#": 2441 + }, + "isInternal": false + }, + { + "x": 375.619, + "y": 326.812, + "index": 11, + "body": { + "#": 2441 + }, + "isInternal": false + }, + { + "x": 381.641, + "y": 326.812, + "index": 12, + "body": { + "#": 2441 + }, + "isInternal": false + }, + { + "x": 387.204, + "y": 329.116, + "index": 13, + "body": { + "#": 2441 + }, + "isInternal": false + }, + { + "x": 391.462, + "y": 333.374, + "index": 14, + "body": { + "#": 2441 + }, + "isInternal": false + }, + { + "x": 393.766, + "y": 338.937, + "index": 15, + "body": { + "#": 2441 + }, + "isInternal": false + }, + { + "x": 378.63, + "y": 341.948 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2467 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2469 + }, + "max": { + "#": 2470 + } + }, + { + "x": 363.494, + "y": 326.812 + }, + { + "x": 393.766, + "y": 357.084 + }, + { + "x": 378.63, + "y": 341.948 + }, + [ + { + "#": 2473 + }, + { + "#": 2474 + }, + { + "#": 2475 + }, + { + "#": 2476 + }, + { + "#": 2477 + }, + { + "#": 2478 + }, + { + "#": 2479 + }, + { + "#": 2480 + } + ], + { + "x": -0.9239, + "y": -0.38265 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38265, + "y": -0.9239 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38265, + "y": -0.9239 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.9239, + "y": -0.38265 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 51, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2482 + }, + "angle": 0, + "vertices": { + "#": 2483 + }, + "position": { + "#": 2510 + }, + "force": { + "#": 2511 + }, + "torque": 0, + "positionImpulse": { + "#": 2512 + }, + "constraintImpulse": { + "#": 2513 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2514 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2515 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2516 + }, + "circleRadius": 28.1032, + "bounds": { + "#": 2518 + }, + "positionPrev": { + "#": 2521 + }, + "anglePrev": 0, + "axes": { + "#": 2522 + }, + "area": 2457.11391, + "mass": 2.45711, + "inverseMass": 0.40698, + "inertia": 3843.60714, + "inverseInertia": 0.00026, + "parent": { + "#": 2481 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2481 + } + ], + [ + { + "#": 2484 + }, + { + "#": 2485 + }, + { + "#": 2486 + }, + { + "#": 2487 + }, + { + "#": 2488 + }, + { + "#": 2489 + }, + { + "#": 2490 + }, + { + "#": 2491 + }, + { + "#": 2492 + }, + { + "#": 2493 + }, + { + "#": 2494 + }, + { + "#": 2495 + }, + { + "#": 2496 + }, + { + "#": 2497 + }, + { + "#": 2498 + }, + { + "#": 2499 + }, + { + "#": 2500 + }, + { + "#": 2501 + }, + { + "#": 2502 + }, + { + "#": 2503 + }, + { + "#": 2504 + }, + { + "#": 2505 + }, + { + "#": 2506 + }, + { + "#": 2507 + }, + { + "#": 2508 + }, + { + "#": 2509 + } + ], + { + "x": 459.562, + "y": 358.302, + "index": 0, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 457.941, + "y": 364.881, + "index": 1, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 454.792, + "y": 370.879, + "index": 2, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 450.3, + "y": 375.951, + "index": 3, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 444.724, + "y": 379.799, + "index": 4, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 438.39, + "y": 382.202, + "index": 5, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 431.664, + "y": 383.018, + "index": 6, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 424.938, + "y": 382.202, + "index": 7, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 418.604, + "y": 379.799, + "index": 8, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 413.028, + "y": 375.951, + "index": 9, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 408.536, + "y": 370.879, + "index": 10, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 405.387, + "y": 364.881, + "index": 11, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 403.766, + "y": 358.302, + "index": 12, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 403.766, + "y": 351.528, + "index": 13, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 405.387, + "y": 344.949, + "index": 14, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 408.536, + "y": 338.951, + "index": 15, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 413.028, + "y": 333.879, + "index": 16, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 418.604, + "y": 330.031, + "index": 17, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 424.938, + "y": 327.628, + "index": 18, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 431.664, + "y": 326.812, + "index": 19, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 438.39, + "y": 327.628, + "index": 20, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 444.724, + "y": 330.031, + "index": 21, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 450.3, + "y": 333.879, + "index": 22, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 454.792, + "y": 338.951, + "index": 23, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 457.941, + "y": 344.949, + "index": 24, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 459.562, + "y": 351.528, + "index": 25, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 431.664, + "y": 354.915 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2517 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2519 + }, + "max": { + "#": 2520 + } + }, + { + "x": 403.766, + "y": 326.812 + }, + { + "x": 459.562, + "y": 383.018 + }, + { + "x": 431.664, + "y": 354.915 + }, + [ + { + "#": 2523 + }, + { + "#": 2524 + }, + { + "#": 2525 + }, + { + "#": 2526 + }, + { + "#": 2527 + }, + { + "#": 2528 + }, + { + "#": 2529 + }, + { + "#": 2530 + }, + { + "#": 2531 + }, + { + "#": 2532 + }, + { + "#": 2533 + }, + { + "#": 2534 + }, + { + "#": 2535 + } + ], + { + "x": -0.97096, + "y": -0.23924 + }, + { + "x": -0.88539, + "y": -0.46484 + }, + { + "x": -0.74861, + "y": -0.66301 + }, + { + "x": -0.56798, + "y": -0.82304 + }, + { + "x": -0.35471, + "y": -0.93498 + }, + { + "x": -0.12044, + "y": -0.99272 + }, + { + "x": 0.12044, + "y": -0.99272 + }, + { + "x": 0.35471, + "y": -0.93498 + }, + { + "x": 0.56798, + "y": -0.82304 + }, + { + "x": 0.74861, + "y": -0.66301 + }, + { + "x": 0.88539, + "y": -0.46484 + }, + { + "x": 0.97096, + "y": -0.23924 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 52, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2537 + }, + "angle": 0, + "vertices": { + "#": 2538 + }, + "position": { + "#": 2559 + }, + "force": { + "#": 2560 + }, + "torque": 0, + "positionImpulse": { + "#": 2561 + }, + "constraintImpulse": { + "#": 2562 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2563 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2564 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2565 + }, + "circleRadius": 18.16583, + "bounds": { + "#": 2567 + }, + "positionPrev": { + "#": 2570 + }, + "anglePrev": 0, + "axes": { + "#": 2571 + }, + "area": 1019.73872, + "mass": 1.01974, + "inverseMass": 0.98064, + "inertia": 662.03618, + "inverseInertia": 0.00151, + "parent": { + "#": 2536 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2536 + } + ], + [ + { + "#": 2539 + }, + { + "#": 2540 + }, + { + "#": 2541 + }, + { + "#": 2542 + }, + { + "#": 2543 + }, + { + "#": 2544 + }, + { + "#": 2545 + }, + { + "#": 2546 + }, + { + "#": 2547 + }, + { + "#": 2548 + }, + { + "#": 2549 + }, + { + "#": 2550 + }, + { + "#": 2551 + }, + { + "#": 2552 + }, + { + "#": 2553 + }, + { + "#": 2554 + }, + { + "#": 2555 + }, + { + "#": 2556 + }, + { + "#": 2557 + }, + { + "#": 2558 + } + ], + { + "x": 505.446, + "y": 347.596, + "index": 0, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 503.69, + "y": 353.001, + "index": 1, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 500.349, + "y": 357.599, + "index": 2, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 495.751, + "y": 360.94, + "index": 3, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 490.346, + "y": 362.696, + "index": 4, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 484.662, + "y": 362.696, + "index": 5, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 479.257, + "y": 360.94, + "index": 6, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 474.659, + "y": 357.599, + "index": 7, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 471.318, + "y": 353.001, + "index": 8, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 469.562, + "y": 347.596, + "index": 9, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 469.562, + "y": 341.912, + "index": 10, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 471.318, + "y": 336.507, + "index": 11, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 474.659, + "y": 331.909, + "index": 12, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 479.257, + "y": 328.568, + "index": 13, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 484.662, + "y": 326.812, + "index": 14, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 490.346, + "y": 326.812, + "index": 15, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 495.751, + "y": 328.568, + "index": 16, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 500.349, + "y": 331.909, + "index": 17, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 503.69, + "y": 336.507, + "index": 18, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 505.446, + "y": 341.912, + "index": 19, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 487.504, + "y": 344.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2566 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2568 + }, + "max": { + "#": 2569 + } + }, + { + "x": 469.562, + "y": 326.812 + }, + { + "x": 505.446, + "y": 362.696 + }, + { + "x": 487.504, + "y": 344.754 + }, + [ + { + "#": 2572 + }, + { + "#": 2573 + }, + { + "#": 2574 + }, + { + "#": 2575 + }, + { + "#": 2576 + }, + { + "#": 2577 + }, + { + "#": 2578 + }, + { + "#": 2579 + }, + { + "#": 2580 + }, + { + "#": 2581 + } + ], + { + "x": -0.95107, + "y": -0.30899 + }, + { + "x": -0.80899, + "y": -0.58783 + }, + { + "x": -0.58783, + "y": -0.80899 + }, + { + "x": -0.30899, + "y": -0.95107 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30899, + "y": -0.95107 + }, + { + "x": 0.58783, + "y": -0.80899 + }, + { + "x": 0.80899, + "y": -0.58783 + }, + { + "x": 0.95107, + "y": -0.30899 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 53, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2583 + }, + "angle": 0, + "vertices": { + "#": 2584 + }, + "position": { + "#": 2611 + }, + "force": { + "#": 2612 + }, + "torque": 0, + "positionImpulse": { + "#": 2613 + }, + "constraintImpulse": { + "#": 2614 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2615 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2616 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2617 + }, + "circleRadius": 25.80562, + "bounds": { + "#": 2619 + }, + "positionPrev": { + "#": 2622 + }, + "anglePrev": 0, + "axes": { + "#": 2623 + }, + "area": 2071.79269, + "mass": 2.07179, + "inverseMass": 0.48267, + "inertia": 2732.63107, + "inverseInertia": 0.00037, + "parent": { + "#": 2582 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2582 + } + ], + [ + { + "#": 2585 + }, + { + "#": 2586 + }, + { + "#": 2587 + }, + { + "#": 2588 + }, + { + "#": 2589 + }, + { + "#": 2590 + }, + { + "#": 2591 + }, + { + "#": 2592 + }, + { + "#": 2593 + }, + { + "#": 2594 + }, + { + "#": 2595 + }, + { + "#": 2596 + }, + { + "#": 2597 + }, + { + "#": 2598 + }, + { + "#": 2599 + }, + { + "#": 2600 + }, + { + "#": 2601 + }, + { + "#": 2602 + }, + { + "#": 2603 + }, + { + "#": 2604 + }, + { + "#": 2605 + }, + { + "#": 2606 + }, + { + "#": 2607 + }, + { + "#": 2608 + }, + { + "#": 2609 + }, + { + "#": 2610 + } + ], + { + "x": 566.68, + "y": 355.729, + "index": 0, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 565.192, + "y": 361.769, + "index": 1, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 562.301, + "y": 367.277, + "index": 2, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 558.175, + "y": 371.934, + "index": 3, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 553.055, + "y": 375.468, + "index": 4, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 547.239, + "y": 377.674, + "index": 5, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 541.063, + "y": 378.424, + "index": 6, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 534.887, + "y": 377.674, + "index": 7, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 529.071, + "y": 375.468, + "index": 8, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 523.951, + "y": 371.934, + "index": 9, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 519.825, + "y": 367.277, + "index": 10, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 516.934, + "y": 361.769, + "index": 11, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 515.446, + "y": 355.729, + "index": 12, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 515.446, + "y": 349.507, + "index": 13, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 516.934, + "y": 343.467, + "index": 14, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 519.825, + "y": 337.959, + "index": 15, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 523.951, + "y": 333.302, + "index": 16, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 529.071, + "y": 329.768, + "index": 17, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 534.887, + "y": 327.562, + "index": 18, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 541.063, + "y": 326.812, + "index": 19, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 547.239, + "y": 327.562, + "index": 20, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 553.055, + "y": 329.768, + "index": 21, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 558.175, + "y": 333.302, + "index": 22, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 562.301, + "y": 337.959, + "index": 23, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 565.192, + "y": 343.467, + "index": 24, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 566.68, + "y": 349.507, + "index": 25, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 541.063, + "y": 352.618 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2618 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2620 + }, + "max": { + "#": 2621 + } + }, + { + "x": 515.446, + "y": 326.812 + }, + { + "x": 566.68, + "y": 378.424 + }, + { + "x": 541.063, + "y": 352.618 + }, + [ + { + "#": 2624 + }, + { + "#": 2625 + }, + { + "#": 2626 + }, + { + "#": 2627 + }, + { + "#": 2628 + }, + { + "#": 2629 + }, + { + "#": 2630 + }, + { + "#": 2631 + }, + { + "#": 2632 + }, + { + "#": 2633 + }, + { + "#": 2634 + }, + { + "#": 2635 + }, + { + "#": 2636 + } + ], + { + "x": -0.97097, + "y": -0.23921 + }, + { + "x": -0.88544, + "y": -0.46475 + }, + { + "x": -0.74849, + "y": -0.66315 + }, + { + "x": -0.56806, + "y": -0.82299 + }, + { + "x": -0.35464, + "y": -0.935 + }, + { + "x": -0.12055, + "y": -0.99271 + }, + { + "x": 0.12055, + "y": -0.99271 + }, + { + "x": 0.35464, + "y": -0.935 + }, + { + "x": 0.56806, + "y": -0.82299 + }, + { + "x": 0.74849, + "y": -0.66315 + }, + { + "x": 0.88544, + "y": -0.46475 + }, + { + "x": 0.97097, + "y": -0.23921 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 54, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2638 + }, + "angle": 0, + "vertices": { + "#": 2639 + }, + "position": { + "#": 2664 + }, + "force": { + "#": 2665 + }, + "torque": 0, + "positionImpulse": { + "#": 2666 + }, + "constraintImpulse": { + "#": 2667 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2668 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2669 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2670 + }, + "circleRadius": 22.31887, + "bounds": { + "#": 2672 + }, + "positionPrev": { + "#": 2675 + }, + "anglePrev": 0, + "axes": { + "#": 2676 + }, + "area": 1547.12858, + "mass": 1.54713, + "inverseMass": 0.64636, + "inertia": 1523.85754, + "inverseInertia": 0.00066, + "parent": { + "#": 2637 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2637 + } + ], + [ + { + "#": 2640 + }, + { + "#": 2641 + }, + { + "#": 2642 + }, + { + "#": 2643 + }, + { + "#": 2644 + }, + { + "#": 2645 + }, + { + "#": 2646 + }, + { + "#": 2647 + }, + { + "#": 2648 + }, + { + "#": 2649 + }, + { + "#": 2650 + }, + { + "#": 2651 + }, + { + "#": 2652 + }, + { + "#": 2653 + }, + { + "#": 2654 + }, + { + "#": 2655 + }, + { + "#": 2656 + }, + { + "#": 2657 + }, + { + "#": 2658 + }, + { + "#": 2659 + }, + { + "#": 2660 + }, + { + "#": 2661 + }, + { + "#": 2662 + }, + { + "#": 2663 + } + ], + { + "x": 620.936, + "y": 351.853, + "index": 0, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 619.428, + "y": 357.481, + "index": 1, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 616.515, + "y": 362.527, + "index": 2, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 612.395, + "y": 366.647, + "index": 3, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 607.349, + "y": 369.56, + "index": 4, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 601.721, + "y": 371.068, + "index": 5, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 595.895, + "y": 371.068, + "index": 6, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 590.267, + "y": 369.56, + "index": 7, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 585.221, + "y": 366.647, + "index": 8, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 581.101, + "y": 362.527, + "index": 9, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 578.188, + "y": 357.481, + "index": 10, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 576.68, + "y": 351.853, + "index": 11, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 576.68, + "y": 346.027, + "index": 12, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 578.188, + "y": 340.399, + "index": 13, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 581.101, + "y": 335.353, + "index": 14, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 585.221, + "y": 331.233, + "index": 15, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 590.267, + "y": 328.32, + "index": 16, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 595.895, + "y": 326.812, + "index": 17, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 601.721, + "y": 326.812, + "index": 18, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 607.349, + "y": 328.32, + "index": 19, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 612.395, + "y": 331.233, + "index": 20, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 616.515, + "y": 335.353, + "index": 21, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 619.428, + "y": 340.399, + "index": 22, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 620.936, + "y": 346.027, + "index": 23, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 598.808, + "y": 348.94 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2671 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2673 + }, + "max": { + "#": 2674 + } + }, + { + "x": 576.68, + "y": 326.812 + }, + { + "x": 620.936, + "y": 371.068 + }, + { + "x": 598.808, + "y": 348.94 + }, + [ + { + "#": 2677 + }, + { + "#": 2678 + }, + { + "#": 2679 + }, + { + "#": 2680 + }, + { + "#": 2681 + }, + { + "#": 2682 + }, + { + "#": 2683 + }, + { + "#": 2684 + }, + { + "#": 2685 + }, + { + "#": 2686 + }, + { + "#": 2687 + }, + { + "#": 2688 + } + ], + { + "x": -0.96593, + "y": -0.25882 + }, + { + "x": -0.86605, + "y": -0.49996 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.49996, + "y": -0.86605 + }, + { + "x": -0.25882, + "y": -0.96593 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25882, + "y": -0.96593 + }, + { + "x": 0.49996, + "y": -0.86605 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86605, + "y": -0.49996 + }, + { + "x": 0.96593, + "y": -0.25882 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 55, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2690 + }, + "angle": 0, + "vertices": { + "#": 2691 + }, + "position": { + "#": 2714 + }, + "force": { + "#": 2715 + }, + "torque": 0, + "positionImpulse": { + "#": 2716 + }, + "constraintImpulse": { + "#": 2717 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2718 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2719 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2720 + }, + "circleRadius": 21.77964, + "bounds": { + "#": 2722 + }, + "positionPrev": { + "#": 2725 + }, + "anglePrev": 0, + "axes": { + "#": 2726 + }, + "area": 1470.04091, + "mass": 1.47004, + "inverseMass": 0.68025, + "inertia": 1375.79959, + "inverseInertia": 0.00073, + "parent": { + "#": 2689 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2689 + } + ], + [ + { + "#": 2692 + }, + { + "#": 2693 + }, + { + "#": 2694 + }, + { + "#": 2695 + }, + { + "#": 2696 + }, + { + "#": 2697 + }, + { + "#": 2698 + }, + { + "#": 2699 + }, + { + "#": 2700 + }, + { + "#": 2701 + }, + { + "#": 2702 + }, + { + "#": 2703 + }, + { + "#": 2704 + }, + { + "#": 2705 + }, + { + "#": 2706 + }, + { + "#": 2707 + }, + { + "#": 2708 + }, + { + "#": 2709 + }, + { + "#": 2710 + }, + { + "#": 2711 + }, + { + "#": 2712 + }, + { + "#": 2713 + } + ], + { + "x": 143.116, + "y": 420.202, + "index": 0, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 141.369, + "y": 426.15, + "index": 1, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 138.018, + "y": 431.365, + "index": 2, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 133.333, + "y": 435.424, + "index": 3, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 127.694, + "y": 437.999, + "index": 4, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 121.558, + "y": 438.882, + "index": 5, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 115.422, + "y": 437.999, + "index": 6, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 109.783, + "y": 435.424, + "index": 7, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 105.098, + "y": 431.365, + "index": 8, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 101.747, + "y": 426.15, + "index": 9, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 100, + "y": 420.202, + "index": 10, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 100, + "y": 414.002, + "index": 11, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 101.747, + "y": 408.054, + "index": 12, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 105.098, + "y": 402.839, + "index": 13, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 109.783, + "y": 398.78, + "index": 14, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 115.422, + "y": 396.205, + "index": 15, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 121.558, + "y": 395.322, + "index": 16, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 127.694, + "y": 396.205, + "index": 17, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 133.333, + "y": 398.78, + "index": 18, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 138.018, + "y": 402.839, + "index": 19, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 141.369, + "y": 408.054, + "index": 20, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 143.116, + "y": 414.002, + "index": 21, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 121.558, + "y": 417.102 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2721 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2723 + }, + "max": { + "#": 2724 + } + }, + { + "x": 100, + "y": 395.322 + }, + { + "x": 143.116, + "y": 438.882 + }, + { + "x": 121.558, + "y": 417.102 + }, + [ + { + "#": 2727 + }, + { + "#": 2728 + }, + { + "#": 2729 + }, + { + "#": 2730 + }, + { + "#": 2731 + }, + { + "#": 2732 + }, + { + "#": 2733 + }, + { + "#": 2734 + }, + { + "#": 2735 + }, + { + "#": 2736 + }, + { + "#": 2737 + } + ], + { + "x": -0.95947, + "y": -0.28181 + }, + { + "x": -0.84129, + "y": -0.54059 + }, + { + "x": -0.65481, + "y": -0.7558 + }, + { + "x": -0.41538, + "y": -0.90965 + }, + { + "x": -0.14244, + "y": -0.9898 + }, + { + "x": 0.14244, + "y": -0.9898 + }, + { + "x": 0.41538, + "y": -0.90965 + }, + { + "x": 0.65481, + "y": -0.7558 + }, + { + "x": 0.84129, + "y": -0.54059 + }, + { + "x": 0.95947, + "y": -0.28181 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 56, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2739 + }, + "angle": 0, + "vertices": { + "#": 2740 + }, + "position": { + "#": 2765 + }, + "force": { + "#": 2766 + }, + "torque": 0, + "positionImpulse": { + "#": 2767 + }, + "constraintImpulse": { + "#": 2768 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2769 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2770 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2771 + }, + "circleRadius": 22.70647, + "bounds": { + "#": 2773 + }, + "positionPrev": { + "#": 2776 + }, + "anglePrev": 0, + "axes": { + "#": 2777 + }, + "area": 1601.2929, + "mass": 1.60129, + "inverseMass": 0.6245, + "inertia": 1632.42451, + "inverseInertia": 0.00061, + "parent": { + "#": 2738 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2738 + } + ], + [ + { + "#": 2741 + }, + { + "#": 2742 + }, + { + "#": 2743 + }, + { + "#": 2744 + }, + { + "#": 2745 + }, + { + "#": 2746 + }, + { + "#": 2747 + }, + { + "#": 2748 + }, + { + "#": 2749 + }, + { + "#": 2750 + }, + { + "#": 2751 + }, + { + "#": 2752 + }, + { + "#": 2753 + }, + { + "#": 2754 + }, + { + "#": 2755 + }, + { + "#": 2756 + }, + { + "#": 2757 + }, + { + "#": 2758 + }, + { + "#": 2759 + }, + { + "#": 2760 + }, + { + "#": 2761 + }, + { + "#": 2762 + }, + { + "#": 2763 + }, + { + "#": 2764 + } + ], + { + "x": 198.14, + "y": 420.798, + "index": 0, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 196.606, + "y": 426.523, + "index": 1, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 193.642, + "y": 431.657, + "index": 2, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 189.451, + "y": 435.848, + "index": 3, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 184.317, + "y": 438.812, + "index": 4, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 178.592, + "y": 440.346, + "index": 5, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 172.664, + "y": 440.346, + "index": 6, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 166.939, + "y": 438.812, + "index": 7, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 161.805, + "y": 435.848, + "index": 8, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 157.614, + "y": 431.657, + "index": 9, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 154.65, + "y": 426.523, + "index": 10, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 153.116, + "y": 420.798, + "index": 11, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 153.116, + "y": 414.87, + "index": 12, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 154.65, + "y": 409.145, + "index": 13, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 157.614, + "y": 404.011, + "index": 14, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 161.805, + "y": 399.82, + "index": 15, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 166.939, + "y": 396.856, + "index": 16, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 172.664, + "y": 395.322, + "index": 17, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 178.592, + "y": 395.322, + "index": 18, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 184.317, + "y": 396.856, + "index": 19, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 189.451, + "y": 399.82, + "index": 20, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 193.642, + "y": 404.011, + "index": 21, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 196.606, + "y": 409.145, + "index": 22, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 198.14, + "y": 414.87, + "index": 23, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 175.628, + "y": 417.834 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2772 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2774 + }, + "max": { + "#": 2775 + } + }, + { + "x": 153.116, + "y": 395.322 + }, + { + "x": 198.14, + "y": 440.346 + }, + { + "x": 175.628, + "y": 417.834 + }, + [ + { + "#": 2778 + }, + { + "#": 2779 + }, + { + "#": 2780 + }, + { + "#": 2781 + }, + { + "#": 2782 + }, + { + "#": 2783 + }, + { + "#": 2784 + }, + { + "#": 2785 + }, + { + "#": 2786 + }, + { + "#": 2787 + }, + { + "#": 2788 + }, + { + "#": 2789 + } + ], + { + "x": -0.96593, + "y": -0.25882 + }, + { + "x": -0.86603, + "y": -0.49999 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": -0.25882, + "y": -0.96593 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25882, + "y": -0.96593 + }, + { + "x": 0.49999, + "y": -0.86603 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86603, + "y": -0.49999 + }, + { + "x": 0.96593, + "y": -0.25882 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 57, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2791 + }, + "angle": 0, + "vertices": { + "#": 2792 + }, + "position": { + "#": 2813 + }, + "force": { + "#": 2814 + }, + "torque": 0, + "positionImpulse": { + "#": 2815 + }, + "constraintImpulse": { + "#": 2816 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2817 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2818 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2819 + }, + "circleRadius": 19.72897, + "bounds": { + "#": 2821 + }, + "positionPrev": { + "#": 2824 + }, + "anglePrev": 0, + "axes": { + "#": 2825 + }, + "area": 1202.79202, + "mass": 1.20279, + "inverseMass": 0.8314, + "inertia": 921.05375, + "inverseInertia": 0.00109, + "parent": { + "#": 2790 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2790 + } + ], + [ + { + "#": 2793 + }, + { + "#": 2794 + }, + { + "#": 2795 + }, + { + "#": 2796 + }, + { + "#": 2797 + }, + { + "#": 2798 + }, + { + "#": 2799 + }, + { + "#": 2800 + }, + { + "#": 2801 + }, + { + "#": 2802 + }, + { + "#": 2803 + }, + { + "#": 2804 + }, + { + "#": 2805 + }, + { + "#": 2806 + }, + { + "#": 2807 + }, + { + "#": 2808 + }, + { + "#": 2809 + }, + { + "#": 2810 + }, + { + "#": 2811 + }, + { + "#": 2812 + } + ], + { + "x": 247.112, + "y": 417.894, + "index": 0, + "body": { + "#": 2790 + }, + "isInternal": false + }, + { + "x": 245.205, + "y": 423.765, + "index": 1, + "body": { + "#": 2790 + }, + "isInternal": false + }, + { + "x": 241.576, + "y": 428.758, + "index": 2, + "body": { + "#": 2790 + }, + "isInternal": false + }, + { + "x": 236.583, + "y": 432.387, + "index": 3, + "body": { + "#": 2790 + }, + "isInternal": false + }, + { + "x": 230.712, + "y": 434.294, + "index": 4, + "body": { + "#": 2790 + }, + "isInternal": false + }, + { + "x": 224.54, + "y": 434.294, + "index": 5, + "body": { + "#": 2790 + }, + "isInternal": false + }, + { + "x": 218.669, + "y": 432.387, + "index": 6, + "body": { + "#": 2790 + }, + "isInternal": false + }, + { + "x": 213.676, + "y": 428.758, + "index": 7, + "body": { + "#": 2790 + }, + "isInternal": false + }, + { + "x": 210.047, + "y": 423.765, + "index": 8, + "body": { + "#": 2790 + }, + "isInternal": false + }, + { + "x": 208.14, + "y": 417.894, + "index": 9, + "body": { + "#": 2790 + }, + "isInternal": false + }, + { + "x": 208.14, + "y": 411.722, + "index": 10, + "body": { + "#": 2790 + }, + "isInternal": false + }, + { + "x": 210.047, + "y": 405.851, + "index": 11, + "body": { + "#": 2790 + }, + "isInternal": false + }, + { + "x": 213.676, + "y": 400.858, + "index": 12, + "body": { + "#": 2790 + }, + "isInternal": false + }, + { + "x": 218.669, + "y": 397.229, + "index": 13, + "body": { + "#": 2790 + }, + "isInternal": false + }, + { + "x": 224.54, + "y": 395.322, + "index": 14, + "body": { + "#": 2790 + }, + "isInternal": false + }, + { + "x": 230.712, + "y": 395.322, + "index": 15, + "body": { + "#": 2790 + }, + "isInternal": false + }, + { + "x": 236.583, + "y": 397.229, + "index": 16, + "body": { + "#": 2790 + }, + "isInternal": false + }, + { + "x": 241.576, + "y": 400.858, + "index": 17, + "body": { + "#": 2790 + }, + "isInternal": false + }, + { + "x": 245.205, + "y": 405.851, + "index": 18, + "body": { + "#": 2790 + }, + "isInternal": false + }, + { + "x": 247.112, + "y": 411.722, + "index": 19, + "body": { + "#": 2790 + }, + "isInternal": false + }, + { + "x": 227.626, + "y": 414.808 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2820 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2822 + }, + "max": { + "#": 2823 + } + }, + { + "x": 208.14, + "y": 395.322 + }, + { + "x": 247.112, + "y": 434.294 + }, + { + "x": 227.626, + "y": 414.808 + }, + [ + { + "#": 2826 + }, + { + "#": 2827 + }, + { + "#": 2828 + }, + { + "#": 2829 + }, + { + "#": 2830 + }, + { + "#": 2831 + }, + { + "#": 2832 + }, + { + "#": 2833 + }, + { + "#": 2834 + }, + { + "#": 2835 + } + ], + { + "x": -0.95109, + "y": -0.30893 + }, + { + "x": -0.80891, + "y": -0.58793 + }, + { + "x": -0.58793, + "y": -0.80891 + }, + { + "x": -0.30893, + "y": -0.95109 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30893, + "y": -0.95109 + }, + { + "x": 0.58793, + "y": -0.80891 + }, + { + "x": 0.80891, + "y": -0.58793 + }, + { + "x": 0.95109, + "y": -0.30893 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 58, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2837 + }, + "angle": 0, + "vertices": { + "#": 2838 + }, + "position": { + "#": 2865 + }, + "force": { + "#": 2866 + }, + "torque": 0, + "positionImpulse": { + "#": 2867 + }, + "constraintImpulse": { + "#": 2868 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2869 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2870 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2871 + }, + "circleRadius": 25.25457, + "bounds": { + "#": 2873 + }, + "positionPrev": { + "#": 2876 + }, + "anglePrev": 0, + "axes": { + "#": 2877 + }, + "area": 1984.22076, + "mass": 1.98422, + "inverseMass": 0.50398, + "inertia": 2506.50392, + "inverseInertia": 0.0004, + "parent": { + "#": 2836 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2836 + } + ], + [ + { + "#": 2839 + }, + { + "#": 2840 + }, + { + "#": 2841 + }, + { + "#": 2842 + }, + { + "#": 2843 + }, + { + "#": 2844 + }, + { + "#": 2845 + }, + { + "#": 2846 + }, + { + "#": 2847 + }, + { + "#": 2848 + }, + { + "#": 2849 + }, + { + "#": 2850 + }, + { + "#": 2851 + }, + { + "#": 2852 + }, + { + "#": 2853 + }, + { + "#": 2854 + }, + { + "#": 2855 + }, + { + "#": 2856 + }, + { + "#": 2857 + }, + { + "#": 2858 + }, + { + "#": 2859 + }, + { + "#": 2860 + }, + { + "#": 2861 + }, + { + "#": 2862 + }, + { + "#": 2863 + }, + { + "#": 2864 + } + ], + { + "x": 307.252, + "y": 423.621, + "index": 0, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 305.795, + "y": 429.532, + "index": 1, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 302.966, + "y": 434.923, + "index": 2, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 298.929, + "y": 439.48, + "index": 3, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 293.918, + "y": 442.939, + "index": 4, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 288.226, + "y": 445.098, + "index": 5, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 282.182, + "y": 445.832, + "index": 6, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 276.138, + "y": 445.098, + "index": 7, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 270.446, + "y": 442.939, + "index": 8, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 265.435, + "y": 439.48, + "index": 9, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 261.398, + "y": 434.923, + "index": 10, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 258.569, + "y": 429.532, + "index": 11, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 257.112, + "y": 423.621, + "index": 12, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 257.112, + "y": 417.533, + "index": 13, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 258.569, + "y": 411.622, + "index": 14, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 261.398, + "y": 406.231, + "index": 15, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 265.435, + "y": 401.674, + "index": 16, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 270.446, + "y": 398.215, + "index": 17, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 276.138, + "y": 396.056, + "index": 18, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 282.182, + "y": 395.322, + "index": 19, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 288.226, + "y": 396.056, + "index": 20, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 293.918, + "y": 398.215, + "index": 21, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 298.929, + "y": 401.674, + "index": 22, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 302.966, + "y": 406.231, + "index": 23, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 305.795, + "y": 411.622, + "index": 24, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 307.252, + "y": 417.533, + "index": 25, + "body": { + "#": 2836 + }, + "isInternal": false + }, + { + "x": 282.182, + "y": 420.577 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2872 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2874 + }, + "max": { + "#": 2875 + } + }, + { + "x": 257.112, + "y": 395.322 + }, + { + "x": 307.252, + "y": 445.832 + }, + { + "x": 282.182, + "y": 420.577 + }, + [ + { + "#": 2878 + }, + { + "#": 2879 + }, + { + "#": 2880 + }, + { + "#": 2881 + }, + { + "#": 2882 + }, + { + "#": 2883 + }, + { + "#": 2884 + }, + { + "#": 2885 + }, + { + "#": 2886 + }, + { + "#": 2887 + }, + { + "#": 2888 + }, + { + "#": 2889 + }, + { + "#": 2890 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88548, + "y": -0.46467 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56808, + "y": -0.82297 + }, + { + "x": -0.35465, + "y": -0.935 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.35465, + "y": -0.935 + }, + { + "x": 0.56808, + "y": -0.82297 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88548, + "y": -0.46467 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 59, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2892 + }, + "angle": 0, + "vertices": { + "#": 2893 + }, + "position": { + "#": 2920 + }, + "force": { + "#": 2921 + }, + "torque": 0, + "positionImpulse": { + "#": 2922 + }, + "constraintImpulse": { + "#": 2923 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2924 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2925 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2926 + }, + "circleRadius": 26.1351, + "bounds": { + "#": 2928 + }, + "positionPrev": { + "#": 2931 + }, + "anglePrev": 0, + "axes": { + "#": 2932 + }, + "area": 2125.03753, + "mass": 2.12504, + "inverseMass": 0.47058, + "inertia": 2874.89257, + "inverseInertia": 0.00035, + "parent": { + "#": 2891 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2891 + } + ], + [ + { + "#": 2894 + }, + { + "#": 2895 + }, + { + "#": 2896 + }, + { + "#": 2897 + }, + { + "#": 2898 + }, + { + "#": 2899 + }, + { + "#": 2900 + }, + { + "#": 2901 + }, + { + "#": 2902 + }, + { + "#": 2903 + }, + { + "#": 2904 + }, + { + "#": 2905 + }, + { + "#": 2906 + }, + { + "#": 2907 + }, + { + "#": 2908 + }, + { + "#": 2909 + }, + { + "#": 2910 + }, + { + "#": 2911 + }, + { + "#": 2912 + }, + { + "#": 2913 + }, + { + "#": 2914 + }, + { + "#": 2915 + }, + { + "#": 2916 + }, + { + "#": 2917 + }, + { + "#": 2918 + }, + { + "#": 2919 + } + ], + { + "x": 369.142, + "y": 424.607, + "index": 0, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 367.634, + "y": 430.725, + "index": 1, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 364.706, + "y": 436.303, + "index": 2, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 360.528, + "y": 441.019, + "index": 3, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 355.343, + "y": 444.598, + "index": 4, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 349.452, + "y": 446.833, + "index": 5, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 343.197, + "y": 447.592, + "index": 6, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 336.942, + "y": 446.833, + "index": 7, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 331.051, + "y": 444.598, + "index": 8, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 325.866, + "y": 441.019, + "index": 9, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 321.688, + "y": 436.303, + "index": 10, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 318.76, + "y": 430.725, + "index": 11, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 317.252, + "y": 424.607, + "index": 12, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 317.252, + "y": 418.307, + "index": 13, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 318.76, + "y": 412.189, + "index": 14, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 321.688, + "y": 406.611, + "index": 15, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 325.866, + "y": 401.895, + "index": 16, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 331.051, + "y": 398.316, + "index": 17, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 336.942, + "y": 396.081, + "index": 18, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 343.197, + "y": 395.322, + "index": 19, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 349.452, + "y": 396.081, + "index": 20, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 355.343, + "y": 398.316, + "index": 21, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 360.528, + "y": 401.895, + "index": 22, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 364.706, + "y": 406.611, + "index": 23, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 367.634, + "y": 412.189, + "index": 24, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 369.142, + "y": 418.307, + "index": 25, + "body": { + "#": 2891 + }, + "isInternal": false + }, + { + "x": 343.197, + "y": 421.457 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2927 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2929 + }, + "max": { + "#": 2930 + } + }, + { + "x": 317.252, + "y": 395.322 + }, + { + "x": 369.142, + "y": 447.592 + }, + { + "x": 343.197, + "y": 421.457 + }, + [ + { + "#": 2933 + }, + { + "#": 2934 + }, + { + "#": 2935 + }, + { + "#": 2936 + }, + { + "#": 2937 + }, + { + "#": 2938 + }, + { + "#": 2939 + }, + { + "#": 2940 + }, + { + "#": 2941 + }, + { + "#": 2942 + }, + { + "#": 2943 + }, + { + "#": 2944 + }, + { + "#": 2945 + } + ], + { + "x": -0.97094, + "y": -0.23932 + }, + { + "x": -0.88543, + "y": -0.46478 + }, + { + "x": -0.74851, + "y": -0.66312 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.35472, + "y": -0.93497 + }, + { + "x": -0.12046, + "y": -0.99272 + }, + { + "x": 0.12046, + "y": -0.99272 + }, + { + "x": 0.35472, + "y": -0.93497 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74851, + "y": -0.66312 + }, + { + "x": 0.88543, + "y": -0.46478 + }, + { + "x": 0.97094, + "y": -0.23932 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 60, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2947 + }, + "angle": 0, + "vertices": { + "#": 2948 + }, + "position": { + "#": 2975 + }, + "force": { + "#": 2976 + }, + "torque": 0, + "positionImpulse": { + "#": 2977 + }, + "constraintImpulse": { + "#": 2978 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2979 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2980 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2981 + }, + "circleRadius": 25.33353, + "bounds": { + "#": 2983 + }, + "positionPrev": { + "#": 2986 + }, + "anglePrev": 0, + "axes": { + "#": 2987 + }, + "area": 1996.65329, + "mass": 1.99665, + "inverseMass": 0.50084, + "inertia": 2538.01231, + "inverseInertia": 0.00039, + "parent": { + "#": 2946 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2946 + } + ], + [ + { + "#": 2949 + }, + { + "#": 2950 + }, + { + "#": 2951 + }, + { + "#": 2952 + }, + { + "#": 2953 + }, + { + "#": 2954 + }, + { + "#": 2955 + }, + { + "#": 2956 + }, + { + "#": 2957 + }, + { + "#": 2958 + }, + { + "#": 2959 + }, + { + "#": 2960 + }, + { + "#": 2961 + }, + { + "#": 2962 + }, + { + "#": 2963 + }, + { + "#": 2964 + }, + { + "#": 2965 + }, + { + "#": 2966 + }, + { + "#": 2967 + }, + { + "#": 2968 + }, + { + "#": 2969 + }, + { + "#": 2970 + }, + { + "#": 2971 + }, + { + "#": 2972 + }, + { + "#": 2973 + }, + { + "#": 2974 + } + ], + { + "x": 429.44, + "y": 423.71, + "index": 0, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 427.978, + "y": 429.639, + "index": 1, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 425.14, + "y": 435.047, + "index": 2, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 421.09, + "y": 439.618, + "index": 3, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 416.064, + "y": 443.088, + "index": 4, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 410.354, + "y": 445.253, + "index": 5, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 404.291, + "y": 445.99, + "index": 6, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 398.228, + "y": 445.253, + "index": 7, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 392.518, + "y": 443.088, + "index": 8, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 387.492, + "y": 439.618, + "index": 9, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 383.442, + "y": 435.047, + "index": 10, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 380.604, + "y": 429.639, + "index": 11, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 379.142, + "y": 423.71, + "index": 12, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 379.142, + "y": 417.602, + "index": 13, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 380.604, + "y": 411.673, + "index": 14, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 383.442, + "y": 406.265, + "index": 15, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 387.492, + "y": 401.694, + "index": 16, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 392.518, + "y": 398.224, + "index": 17, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 398.228, + "y": 396.059, + "index": 18, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 404.291, + "y": 395.322, + "index": 19, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 410.354, + "y": 396.059, + "index": 20, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 416.064, + "y": 398.224, + "index": 21, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 421.09, + "y": 401.694, + "index": 22, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 425.14, + "y": 406.265, + "index": 23, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 427.978, + "y": 411.673, + "index": 24, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 429.44, + "y": 417.602, + "index": 25, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 404.291, + "y": 420.656 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2982 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2984 + }, + "max": { + "#": 2985 + } + }, + { + "x": 379.142, + "y": 395.322 + }, + { + "x": 429.44, + "y": 445.99 + }, + { + "x": 404.291, + "y": 420.656 + }, + [ + { + "#": 2988 + }, + { + "#": 2989 + }, + { + "#": 2990 + }, + { + "#": 2991 + }, + { + "#": 2992 + }, + { + "#": 2993 + }, + { + "#": 2994 + }, + { + "#": 2995 + }, + { + "#": 2996 + }, + { + "#": 2997 + }, + { + "#": 2998 + }, + { + "#": 2999 + }, + { + "#": 3000 + } + ], + { + "x": -0.97092, + "y": -0.23941 + }, + { + "x": -0.88548, + "y": -0.46468 + }, + { + "x": -0.74847, + "y": -0.66316 + }, + { + "x": -0.56815, + "y": -0.82292 + }, + { + "x": -0.35453, + "y": -0.93504 + }, + { + "x": -0.12067, + "y": -0.99269 + }, + { + "x": 0.12067, + "y": -0.99269 + }, + { + "x": 0.35453, + "y": -0.93504 + }, + { + "x": 0.56815, + "y": -0.82292 + }, + { + "x": 0.74847, + "y": -0.66316 + }, + { + "x": 0.88548, + "y": -0.46468 + }, + { + "x": 0.97092, + "y": -0.23941 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 61, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3002 + }, + "angle": 0, + "vertices": { + "#": 3003 + }, + "position": { + "#": 3024 + }, + "force": { + "#": 3025 + }, + "torque": 0, + "positionImpulse": { + "#": 3026 + }, + "constraintImpulse": { + "#": 3027 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3028 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3029 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3030 + }, + "circleRadius": 18.5906, + "bounds": { + "#": 3032 + }, + "positionPrev": { + "#": 3035 + }, + "anglePrev": 0, + "axes": { + "#": 3036 + }, + "area": 1068.00787, + "mass": 1.06801, + "inverseMass": 0.93632, + "inertia": 726.19426, + "inverseInertia": 0.00138, + "parent": { + "#": 3001 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3001 + } + ], + [ + { + "#": 3004 + }, + { + "#": 3005 + }, + { + "#": 3006 + }, + { + "#": 3007 + }, + { + "#": 3008 + }, + { + "#": 3009 + }, + { + "#": 3010 + }, + { + "#": 3011 + }, + { + "#": 3012 + }, + { + "#": 3013 + }, + { + "#": 3014 + }, + { + "#": 3015 + }, + { + "#": 3016 + }, + { + "#": 3017 + }, + { + "#": 3018 + }, + { + "#": 3019 + }, + { + "#": 3020 + }, + { + "#": 3021 + }, + { + "#": 3022 + }, + { + "#": 3023 + } + ], + { + "x": 476.164, + "y": 416.592, + "index": 0, + "body": { + "#": 3001 + }, + "isInternal": false + }, + { + "x": 474.366, + "y": 422.124, + "index": 1, + "body": { + "#": 3001 + }, + "isInternal": false + }, + { + "x": 470.948, + "y": 426.83, + "index": 2, + "body": { + "#": 3001 + }, + "isInternal": false + }, + { + "x": 466.242, + "y": 430.248, + "index": 3, + "body": { + "#": 3001 + }, + "isInternal": false + }, + { + "x": 460.71, + "y": 432.046, + "index": 4, + "body": { + "#": 3001 + }, + "isInternal": false + }, + { + "x": 454.894, + "y": 432.046, + "index": 5, + "body": { + "#": 3001 + }, + "isInternal": false + }, + { + "x": 449.362, + "y": 430.248, + "index": 6, + "body": { + "#": 3001 + }, + "isInternal": false + }, + { + "x": 444.656, + "y": 426.83, + "index": 7, + "body": { + "#": 3001 + }, + "isInternal": false + }, + { + "x": 441.238, + "y": 422.124, + "index": 8, + "body": { + "#": 3001 + }, + "isInternal": false + }, + { + "x": 439.44, + "y": 416.592, + "index": 9, + "body": { + "#": 3001 + }, + "isInternal": false + }, + { + "x": 439.44, + "y": 410.776, + "index": 10, + "body": { + "#": 3001 + }, + "isInternal": false + }, + { + "x": 441.238, + "y": 405.244, + "index": 11, + "body": { + "#": 3001 + }, + "isInternal": false + }, + { + "x": 444.656, + "y": 400.538, + "index": 12, + "body": { + "#": 3001 + }, + "isInternal": false + }, + { + "x": 449.362, + "y": 397.12, + "index": 13, + "body": { + "#": 3001 + }, + "isInternal": false + }, + { + "x": 454.894, + "y": 395.322, + "index": 14, + "body": { + "#": 3001 + }, + "isInternal": false + }, + { + "x": 460.71, + "y": 395.322, + "index": 15, + "body": { + "#": 3001 + }, + "isInternal": false + }, + { + "x": 466.242, + "y": 397.12, + "index": 16, + "body": { + "#": 3001 + }, + "isInternal": false + }, + { + "x": 470.948, + "y": 400.538, + "index": 17, + "body": { + "#": 3001 + }, + "isInternal": false + }, + { + "x": 474.366, + "y": 405.244, + "index": 18, + "body": { + "#": 3001 + }, + "isInternal": false + }, + { + "x": 476.164, + "y": 410.776, + "index": 19, + "body": { + "#": 3001 + }, + "isInternal": false + }, + { + "x": 457.802, + "y": 413.684 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3031 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3033 + }, + "max": { + "#": 3034 + } + }, + { + "x": 439.44, + "y": 395.322 + }, + { + "x": 476.164, + "y": 432.046 + }, + { + "x": 457.802, + "y": 413.684 + }, + [ + { + "#": 3037 + }, + { + "#": 3038 + }, + { + "#": 3039 + }, + { + "#": 3040 + }, + { + "#": 3041 + }, + { + "#": 3042 + }, + { + "#": 3043 + }, + { + "#": 3044 + }, + { + "#": 3045 + }, + { + "#": 3046 + } + ], + { + "x": -0.95103, + "y": -0.3091 + }, + { + "x": -0.80911, + "y": -0.58766 + }, + { + "x": -0.58766, + "y": -0.80911 + }, + { + "x": -0.3091, + "y": -0.95103 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3091, + "y": -0.95103 + }, + { + "x": 0.58766, + "y": -0.80911 + }, + { + "x": 0.80911, + "y": -0.58766 + }, + { + "x": 0.95103, + "y": -0.3091 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 62, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3048 + }, + "angle": 0, + "vertices": { + "#": 3049 + }, + "position": { + "#": 3076 + }, + "force": { + "#": 3077 + }, + "torque": 0, + "positionImpulse": { + "#": 3078 + }, + "constraintImpulse": { + "#": 3079 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3080 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3081 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3082 + }, + "circleRadius": 26.0915, + "bounds": { + "#": 3084 + }, + "positionPrev": { + "#": 3087 + }, + "anglePrev": 0, + "axes": { + "#": 3088 + }, + "area": 2117.92518, + "mass": 2.11793, + "inverseMass": 0.47216, + "inertia": 2855.68065, + "inverseInertia": 0.00035, + "parent": { + "#": 3047 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3047 + } + ], + [ + { + "#": 3050 + }, + { + "#": 3051 + }, + { + "#": 3052 + }, + { + "#": 3053 + }, + { + "#": 3054 + }, + { + "#": 3055 + }, + { + "#": 3056 + }, + { + "#": 3057 + }, + { + "#": 3058 + }, + { + "#": 3059 + }, + { + "#": 3060 + }, + { + "#": 3061 + }, + { + "#": 3062 + }, + { + "#": 3063 + }, + { + "#": 3064 + }, + { + "#": 3065 + }, + { + "#": 3066 + }, + { + "#": 3067 + }, + { + "#": 3068 + }, + { + "#": 3069 + }, + { + "#": 3070 + }, + { + "#": 3071 + }, + { + "#": 3072 + }, + { + "#": 3073 + }, + { + "#": 3074 + }, + { + "#": 3075 + } + ], + { + "x": 537.966, + "y": 424.558, + "index": 0, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 536.461, + "y": 430.665, + "index": 1, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 533.538, + "y": 436.235, + "index": 2, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 529.367, + "y": 440.943, + "index": 3, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 524.19, + "y": 444.516, + "index": 4, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 518.309, + "y": 446.746, + "index": 5, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 512.065, + "y": 447.504, + "index": 6, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 505.821, + "y": 446.746, + "index": 7, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 499.94, + "y": 444.516, + "index": 8, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 494.763, + "y": 440.943, + "index": 9, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 490.592, + "y": 436.235, + "index": 10, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 487.669, + "y": 430.665, + "index": 11, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 486.164, + "y": 424.558, + "index": 12, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 486.164, + "y": 418.268, + "index": 13, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 487.669, + "y": 412.161, + "index": 14, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 490.592, + "y": 406.591, + "index": 15, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 494.763, + "y": 401.883, + "index": 16, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 499.94, + "y": 398.31, + "index": 17, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 505.821, + "y": 396.08, + "index": 18, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 512.065, + "y": 395.322, + "index": 19, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 518.309, + "y": 396.08, + "index": 20, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 524.19, + "y": 398.31, + "index": 21, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 529.367, + "y": 401.883, + "index": 22, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 533.538, + "y": 406.591, + "index": 23, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 536.461, + "y": 412.161, + "index": 24, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 537.966, + "y": 418.268, + "index": 25, + "body": { + "#": 3047 + }, + "isInternal": false + }, + { + "x": 512.065, + "y": 421.413 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3083 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3085 + }, + "max": { + "#": 3086 + } + }, + { + "x": 486.164, + "y": 395.322 + }, + { + "x": 537.966, + "y": 447.504 + }, + { + "x": 512.065, + "y": 421.413 + }, + [ + { + "#": 3089 + }, + { + "#": 3090 + }, + { + "#": 3091 + }, + { + "#": 3092 + }, + { + "#": 3093 + }, + { + "#": 3094 + }, + { + "#": 3095 + }, + { + "#": 3096 + }, + { + "#": 3097 + }, + { + "#": 3098 + }, + { + "#": 3099 + }, + { + "#": 3100 + }, + { + "#": 3101 + } + ], + { + "x": -0.97095, + "y": -0.23928 + }, + { + "x": -0.88548, + "y": -0.46468 + }, + { + "x": -0.7485, + "y": -0.66313 + }, + { + "x": -0.56802, + "y": -0.82302 + }, + { + "x": -0.35455, + "y": -0.93504 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35455, + "y": -0.93504 + }, + { + "x": 0.56802, + "y": -0.82302 + }, + { + "x": 0.7485, + "y": -0.66313 + }, + { + "x": 0.88548, + "y": -0.46468 + }, + { + "x": 0.97095, + "y": -0.23928 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 63, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3103 + }, + "angle": 0, + "vertices": { + "#": 3104 + }, + "position": { + "#": 3131 + }, + "force": { + "#": 3132 + }, + "torque": 0, + "positionImpulse": { + "#": 3133 + }, + "constraintImpulse": { + "#": 3134 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3135 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3136 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3137 + }, + "circleRadius": 29.13252, + "bounds": { + "#": 3139 + }, + "positionPrev": { + "#": 3142 + }, + "anglePrev": 0, + "axes": { + "#": 3143 + }, + "area": 2640.42167, + "mass": 2.64042, + "inverseMass": 0.37873, + "inertia": 4438.48733, + "inverseInertia": 0.00023, + "parent": { + "#": 3102 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3102 + } + ], + [ + { + "#": 3105 + }, + { + "#": 3106 + }, + { + "#": 3107 + }, + { + "#": 3108 + }, + { + "#": 3109 + }, + { + "#": 3110 + }, + { + "#": 3111 + }, + { + "#": 3112 + }, + { + "#": 3113 + }, + { + "#": 3114 + }, + { + "#": 3115 + }, + { + "#": 3116 + }, + { + "#": 3117 + }, + { + "#": 3118 + }, + { + "#": 3119 + }, + { + "#": 3120 + }, + { + "#": 3121 + }, + { + "#": 3122 + }, + { + "#": 3123 + }, + { + "#": 3124 + }, + { + "#": 3125 + }, + { + "#": 3126 + }, + { + "#": 3127 + }, + { + "#": 3128 + }, + { + "#": 3129 + }, + { + "#": 3130 + } + ], + { + "x": 605.806, + "y": 427.967, + "index": 0, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 604.125, + "y": 434.786, + "index": 1, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 600.862, + "y": 441.004, + "index": 2, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 596.204, + "y": 446.261, + "index": 3, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 590.425, + "y": 450.251, + "index": 4, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 583.858, + "y": 452.741, + "index": 5, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 576.886, + "y": 453.588, + "index": 6, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 569.914, + "y": 452.741, + "index": 7, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 563.347, + "y": 450.251, + "index": 8, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 557.568, + "y": 446.261, + "index": 9, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 552.91, + "y": 441.004, + "index": 10, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 549.647, + "y": 434.786, + "index": 11, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 547.966, + "y": 427.967, + "index": 12, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 547.966, + "y": 420.943, + "index": 13, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 549.647, + "y": 414.124, + "index": 14, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 552.91, + "y": 407.906, + "index": 15, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 557.568, + "y": 402.649, + "index": 16, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 563.347, + "y": 398.659, + "index": 17, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 569.914, + "y": 396.169, + "index": 18, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 576.886, + "y": 395.322, + "index": 19, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 583.858, + "y": 396.169, + "index": 20, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 590.425, + "y": 398.659, + "index": 21, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 596.204, + "y": 402.649, + "index": 22, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 600.862, + "y": 407.906, + "index": 23, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 604.125, + "y": 414.124, + "index": 24, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 605.806, + "y": 420.943, + "index": 25, + "body": { + "#": 3102 + }, + "isInternal": false + }, + { + "x": 576.886, + "y": 424.455 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3138 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3140 + }, + "max": { + "#": 3141 + } + }, + { + "x": 547.966, + "y": 395.322 + }, + { + "x": 605.806, + "y": 453.588 + }, + { + "x": 576.886, + "y": 424.455 + }, + [ + { + "#": 3144 + }, + { + "#": 3145 + }, + { + "#": 3146 + }, + { + "#": 3147 + }, + { + "#": 3148 + }, + { + "#": 3149 + }, + { + "#": 3150 + }, + { + "#": 3151 + }, + { + "#": 3152 + }, + { + "#": 3153 + }, + { + "#": 3154 + }, + { + "#": 3155 + }, + { + "#": 3156 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88548, + "y": -0.46467 + }, + { + "x": -0.74846, + "y": -0.66318 + }, + { + "x": -0.56817, + "y": -0.82291 + }, + { + "x": -0.35454, + "y": -0.93504 + }, + { + "x": -0.1206, + "y": -0.9927 + }, + { + "x": 0.1206, + "y": -0.9927 + }, + { + "x": 0.35454, + "y": -0.93504 + }, + { + "x": 0.56817, + "y": -0.82291 + }, + { + "x": 0.74846, + "y": -0.66318 + }, + { + "x": 0.88548, + "y": -0.46467 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 64, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3158 + }, + "angle": 0, + "vertices": { + "#": 3159 + }, + "position": { + "#": 3182 + }, + "force": { + "#": 3183 + }, + "torque": 0, + "positionImpulse": { + "#": 3184 + }, + "constraintImpulse": { + "#": 3185 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3186 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3187 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3188 + }, + "circleRadius": 21.78774, + "bounds": { + "#": 3190 + }, + "positionPrev": { + "#": 3193 + }, + "anglePrev": 0, + "axes": { + "#": 3194 + }, + "area": 1471.13784, + "mass": 1.47114, + "inverseMass": 0.67975, + "inertia": 1377.85356, + "inverseInertia": 0.00073, + "parent": { + "#": 3157 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3157 + } + ], + [ + { + "#": 3160 + }, + { + "#": 3161 + }, + { + "#": 3162 + }, + { + "#": 3163 + }, + { + "#": 3164 + }, + { + "#": 3165 + }, + { + "#": 3166 + }, + { + "#": 3167 + }, + { + "#": 3168 + }, + { + "#": 3169 + }, + { + "#": 3170 + }, + { + "#": 3171 + }, + { + "#": 3172 + }, + { + "#": 3173 + }, + { + "#": 3174 + }, + { + "#": 3175 + }, + { + "#": 3176 + }, + { + "#": 3177 + }, + { + "#": 3178 + }, + { + "#": 3179 + }, + { + "#": 3180 + }, + { + "#": 3181 + } + ], + { + "x": 658.938, + "y": 420.211, + "index": 0, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 657.191, + "y": 426.161, + "index": 1, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 653.838, + "y": 431.378, + "index": 2, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 649.151, + "y": 435.439, + "index": 3, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 643.51, + "y": 438.015, + "index": 4, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 637.372, + "y": 438.898, + "index": 5, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 631.234, + "y": 438.015, + "index": 6, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 625.593, + "y": 435.439, + "index": 7, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 620.906, + "y": 431.378, + "index": 8, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 617.553, + "y": 426.161, + "index": 9, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 615.806, + "y": 420.211, + "index": 10, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 615.806, + "y": 414.009, + "index": 11, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 617.553, + "y": 408.059, + "index": 12, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 620.906, + "y": 402.842, + "index": 13, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 625.593, + "y": 398.781, + "index": 14, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 631.234, + "y": 396.205, + "index": 15, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 637.372, + "y": 395.322, + "index": 16, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 643.51, + "y": 396.205, + "index": 17, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 649.151, + "y": 398.781, + "index": 18, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 653.838, + "y": 402.842, + "index": 19, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 657.191, + "y": 408.059, + "index": 20, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 658.938, + "y": 414.009, + "index": 21, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 637.372, + "y": 417.11 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3189 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3191 + }, + "max": { + "#": 3192 + } + }, + { + "x": 615.806, + "y": 395.322 + }, + { + "x": 658.938, + "y": 438.898 + }, + { + "x": 637.372, + "y": 417.11 + }, + [ + { + "#": 3195 + }, + { + "#": 3196 + }, + { + "#": 3197 + }, + { + "#": 3198 + }, + { + "#": 3199 + }, + { + "#": 3200 + }, + { + "#": 3201 + }, + { + "#": 3202 + }, + { + "#": 3203 + }, + { + "#": 3204 + }, + { + "#": 3205 + } + ], + { + "x": -0.9595, + "y": -0.28172 + }, + { + "x": -0.84124, + "y": -0.54067 + }, + { + "x": -0.65483, + "y": -0.75577 + }, + { + "x": -0.41539, + "y": -0.90964 + }, + { + "x": -0.14239, + "y": -0.98981 + }, + { + "x": 0.14239, + "y": -0.98981 + }, + { + "x": 0.41539, + "y": -0.90964 + }, + { + "x": 0.65483, + "y": -0.75577 + }, + { + "x": 0.84124, + "y": -0.54067 + }, + { + "x": 0.9595, + "y": -0.28172 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 65, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3207 + }, + "angle": 0, + "vertices": { + "#": 3208 + }, + "position": { + "#": 3235 + }, + "force": { + "#": 3236 + }, + "torque": 0, + "positionImpulse": { + "#": 3237 + }, + "constraintImpulse": { + "#": 3238 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3239 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3240 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3241 + }, + "circleRadius": 27.57568, + "bounds": { + "#": 3243 + }, + "positionPrev": { + "#": 3246 + }, + "anglePrev": 0, + "axes": { + "#": 3247 + }, + "area": 2365.74445, + "mass": 2.36574, + "inverseMass": 0.4227, + "inertia": 3563.06765, + "inverseInertia": 0.00028, + "parent": { + "#": 3206 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3206 + } + ], + [ + { + "#": 3209 + }, + { + "#": 3210 + }, + { + "#": 3211 + }, + { + "#": 3212 + }, + { + "#": 3213 + }, + { + "#": 3214 + }, + { + "#": 3215 + }, + { + "#": 3216 + }, + { + "#": 3217 + }, + { + "#": 3218 + }, + { + "#": 3219 + }, + { + "#": 3220 + }, + { + "#": 3221 + }, + { + "#": 3222 + }, + { + "#": 3223 + }, + { + "#": 3224 + }, + { + "#": 3225 + }, + { + "#": 3226 + }, + { + "#": 3227 + }, + { + "#": 3228 + }, + { + "#": 3229 + }, + { + "#": 3230 + }, + { + "#": 3231 + }, + { + "#": 3232 + }, + { + "#": 3233 + }, + { + "#": 3234 + } + ], + { + "x": 154.75, + "y": 494.488, + "index": 0, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 153.159, + "y": 500.942, + "index": 1, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 150.069, + "y": 506.829, + "index": 2, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 145.661, + "y": 511.805, + "index": 3, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 140.19, + "y": 515.581, + "index": 4, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 133.974, + "y": 517.938, + "index": 5, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 127.375, + "y": 518.74, + "index": 6, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 120.776, + "y": 517.938, + "index": 7, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 114.56, + "y": 515.581, + "index": 8, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 109.089, + "y": 511.805, + "index": 9, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 104.681, + "y": 506.829, + "index": 10, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 101.591, + "y": 500.942, + "index": 11, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 100, + "y": 494.488, + "index": 12, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 100, + "y": 487.84, + "index": 13, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 101.591, + "y": 481.386, + "index": 14, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 104.681, + "y": 475.499, + "index": 15, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 109.089, + "y": 470.523, + "index": 16, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 114.56, + "y": 466.747, + "index": 17, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 120.776, + "y": 464.39, + "index": 18, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 127.375, + "y": 463.588, + "index": 19, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 133.974, + "y": 464.39, + "index": 20, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 140.19, + "y": 466.747, + "index": 21, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 145.661, + "y": 470.523, + "index": 22, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 150.069, + "y": 475.499, + "index": 23, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 153.159, + "y": 481.386, + "index": 24, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 154.75, + "y": 487.84, + "index": 25, + "body": { + "#": 3206 + }, + "isInternal": false + }, + { + "x": 127.375, + "y": 491.164 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3242 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3244 + }, + "max": { + "#": 3245 + } + }, + { + "x": 100, + "y": 463.588 + }, + { + "x": 154.75, + "y": 518.74 + }, + { + "x": 127.375, + "y": 491.164 + }, + [ + { + "#": 3248 + }, + { + "#": 3249 + }, + { + "#": 3250 + }, + { + "#": 3251 + }, + { + "#": 3252 + }, + { + "#": 3253 + }, + { + "#": 3254 + }, + { + "#": 3255 + }, + { + "#": 3256 + }, + { + "#": 3257 + }, + { + "#": 3258 + }, + { + "#": 3259 + }, + { + "#": 3260 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88544, + "y": -0.46475 + }, + { + "x": -0.74854, + "y": -0.66309 + }, + { + "x": -0.56803, + "y": -0.82301 + }, + { + "x": -0.35455, + "y": -0.93504 + }, + { + "x": -0.12065, + "y": -0.9927 + }, + { + "x": 0.12065, + "y": -0.9927 + }, + { + "x": 0.35455, + "y": -0.93504 + }, + { + "x": 0.56803, + "y": -0.82301 + }, + { + "x": 0.74854, + "y": -0.66309 + }, + { + "x": 0.88544, + "y": -0.46475 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 66, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3262 + }, + "angle": 0, + "vertices": { + "#": 3263 + }, + "position": { + "#": 3286 + }, + "force": { + "#": 3287 + }, + "torque": 0, + "positionImpulse": { + "#": 3288 + }, + "constraintImpulse": { + "#": 3289 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3290 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3291 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3292 + }, + "circleRadius": 21.12596, + "bounds": { + "#": 3294 + }, + "positionPrev": { + "#": 3297 + }, + "anglePrev": 0, + "axes": { + "#": 3298 + }, + "area": 1383.13941, + "mass": 1.38314, + "inverseMass": 0.72299, + "inertia": 1217.94658, + "inverseInertia": 0.00082, + "parent": { + "#": 3261 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3261 + } + ], + [ + { + "#": 3264 + }, + { + "#": 3265 + }, + { + "#": 3266 + }, + { + "#": 3267 + }, + { + "#": 3268 + }, + { + "#": 3269 + }, + { + "#": 3270 + }, + { + "#": 3271 + }, + { + "#": 3272 + }, + { + "#": 3273 + }, + { + "#": 3274 + }, + { + "#": 3275 + }, + { + "#": 3276 + }, + { + "#": 3277 + }, + { + "#": 3278 + }, + { + "#": 3279 + }, + { + "#": 3280 + }, + { + "#": 3281 + }, + { + "#": 3282 + }, + { + "#": 3283 + }, + { + "#": 3284 + }, + { + "#": 3285 + } + ], + { + "x": 206.572, + "y": 487.721, + "index": 0, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 204.878, + "y": 493.49, + "index": 1, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 201.627, + "y": 498.549, + "index": 2, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 197.083, + "y": 502.486, + "index": 3, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 191.613, + "y": 504.984, + "index": 4, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 185.661, + "y": 505.84, + "index": 5, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 179.709, + "y": 504.984, + "index": 6, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 174.239, + "y": 502.486, + "index": 7, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 169.695, + "y": 498.549, + "index": 8, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 166.444, + "y": 493.49, + "index": 9, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 164.75, + "y": 487.721, + "index": 10, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 164.75, + "y": 481.707, + "index": 11, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 166.444, + "y": 475.938, + "index": 12, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 169.695, + "y": 470.879, + "index": 13, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 174.239, + "y": 466.942, + "index": 14, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 179.709, + "y": 464.444, + "index": 15, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 185.661, + "y": 463.588, + "index": 16, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 191.613, + "y": 464.444, + "index": 17, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 197.083, + "y": 466.942, + "index": 18, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 201.627, + "y": 470.879, + "index": 19, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 204.878, + "y": 475.938, + "index": 20, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 206.572, + "y": 481.707, + "index": 21, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 185.661, + "y": 484.714 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3293 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3295 + }, + "max": { + "#": 3296 + } + }, + { + "x": 164.75, + "y": 463.588 + }, + { + "x": 206.572, + "y": 505.84 + }, + { + "x": 185.661, + "y": 484.714 + }, + [ + { + "#": 3299 + }, + { + "#": 3300 + }, + { + "#": 3301 + }, + { + "#": 3302 + }, + { + "#": 3303 + }, + { + "#": 3304 + }, + { + "#": 3305 + }, + { + "#": 3306 + }, + { + "#": 3307 + }, + { + "#": 3308 + }, + { + "#": 3309 + } + ], + { + "x": -0.95949, + "y": -0.28174 + }, + { + "x": -0.84127, + "y": -0.54061 + }, + { + "x": -0.65482, + "y": -0.75578 + }, + { + "x": -0.41541, + "y": -0.90964 + }, + { + "x": -0.14235, + "y": -0.98982 + }, + { + "x": 0.14235, + "y": -0.98982 + }, + { + "x": 0.41541, + "y": -0.90964 + }, + { + "x": 0.65482, + "y": -0.75578 + }, + { + "x": 0.84127, + "y": -0.54061 + }, + { + "x": 0.95949, + "y": -0.28174 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 67, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3311 + }, + "angle": 0, + "vertices": { + "#": 3312 + }, + "position": { + "#": 3339 + }, + "force": { + "#": 3340 + }, + "torque": 0, + "positionImpulse": { + "#": 3341 + }, + "constraintImpulse": { + "#": 3342 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3343 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3344 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3345 + }, + "circleRadius": 24.846, + "bounds": { + "#": 3347 + }, + "positionPrev": { + "#": 3350 + }, + "anglePrev": 0, + "axes": { + "#": 3351 + }, + "area": 1920.55386, + "mass": 1.92055, + "inverseMass": 0.52068, + "inertia": 2348.2341, + "inverseInertia": 0.00043, + "parent": { + "#": 3310 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3310 + } + ], + [ + { + "#": 3313 + }, + { + "#": 3314 + }, + { + "#": 3315 + }, + { + "#": 3316 + }, + { + "#": 3317 + }, + { + "#": 3318 + }, + { + "#": 3319 + }, + { + "#": 3320 + }, + { + "#": 3321 + }, + { + "#": 3322 + }, + { + "#": 3323 + }, + { + "#": 3324 + }, + { + "#": 3325 + }, + { + "#": 3326 + }, + { + "#": 3327 + }, + { + "#": 3328 + }, + { + "#": 3329 + }, + { + "#": 3330 + }, + { + "#": 3331 + }, + { + "#": 3332 + }, + { + "#": 3333 + }, + { + "#": 3334 + }, + { + "#": 3335 + }, + { + "#": 3336 + }, + { + "#": 3337 + }, + { + "#": 3338 + } + ], + { + "x": 265.902, + "y": 491.429, + "index": 0, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 264.468, + "y": 497.245, + "index": 1, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 261.685, + "y": 502.548, + "index": 2, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 257.713, + "y": 507.031, + "index": 3, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 252.784, + "y": 510.434, + "index": 4, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 247.183, + "y": 512.558, + "index": 5, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 241.237, + "y": 513.28, + "index": 6, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 235.291, + "y": 512.558, + "index": 7, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 510.434, + "index": 8, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 224.761, + "y": 507.031, + "index": 9, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 220.789, + "y": 502.548, + "index": 10, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 218.006, + "y": 497.245, + "index": 11, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 216.572, + "y": 491.429, + "index": 12, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 216.572, + "y": 485.439, + "index": 13, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 218.006, + "y": 479.623, + "index": 14, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 220.789, + "y": 474.32, + "index": 15, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 224.761, + "y": 469.837, + "index": 16, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 466.434, + "index": 17, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 235.291, + "y": 464.31, + "index": 18, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 241.237, + "y": 463.588, + "index": 19, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 247.183, + "y": 464.31, + "index": 20, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 252.784, + "y": 466.434, + "index": 21, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 257.713, + "y": 469.837, + "index": 22, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 261.685, + "y": 474.32, + "index": 23, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 264.468, + "y": 479.623, + "index": 24, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 265.902, + "y": 485.439, + "index": 25, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 241.237, + "y": 488.434 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3346 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3348 + }, + "max": { + "#": 3349 + } + }, + { + "x": 216.572, + "y": 463.588 + }, + { + "x": 265.902, + "y": 513.28 + }, + { + "x": 241.237, + "y": 488.434 + }, + [ + { + "#": 3352 + }, + { + "#": 3353 + }, + { + "#": 3354 + }, + { + "#": 3355 + }, + { + "#": 3356 + }, + { + "#": 3357 + }, + { + "#": 3358 + }, + { + "#": 3359 + }, + { + "#": 3360 + }, + { + "#": 3361 + }, + { + "#": 3362 + }, + { + "#": 3363 + }, + { + "#": 3364 + } + ], + { + "x": -0.97092, + "y": -0.23939 + }, + { + "x": -0.88547, + "y": -0.46469 + }, + { + "x": -0.74848, + "y": -0.66316 + }, + { + "x": -0.56815, + "y": -0.82292 + }, + { + "x": -0.35458, + "y": -0.93503 + }, + { + "x": -0.12054, + "y": -0.99271 + }, + { + "x": 0.12054, + "y": -0.99271 + }, + { + "x": 0.35458, + "y": -0.93503 + }, + { + "x": 0.56815, + "y": -0.82292 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88547, + "y": -0.46469 + }, + { + "x": 0.97092, + "y": -0.23939 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 68, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3366 + }, + "angle": 0, + "vertices": { + "#": 3367 + }, + "position": { + "#": 3390 + }, + "force": { + "#": 3391 + }, + "torque": 0, + "positionImpulse": { + "#": 3392 + }, + "constraintImpulse": { + "#": 3393 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3394 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3395 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3396 + }, + "circleRadius": 20.58764, + "bounds": { + "#": 3398 + }, + "positionPrev": { + "#": 3401 + }, + "anglePrev": 0, + "axes": { + "#": 3402 + }, + "area": 1313.53417, + "mass": 1.31353, + "inverseMass": 0.7613, + "inertia": 1098.44694, + "inverseInertia": 0.00091, + "parent": { + "#": 3365 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3365 + } + ], + [ + { + "#": 3368 + }, + { + "#": 3369 + }, + { + "#": 3370 + }, + { + "#": 3371 + }, + { + "#": 3372 + }, + { + "#": 3373 + }, + { + "#": 3374 + }, + { + "#": 3375 + }, + { + "#": 3376 + }, + { + "#": 3377 + }, + { + "#": 3378 + }, + { + "#": 3379 + }, + { + "#": 3380 + }, + { + "#": 3381 + }, + { + "#": 3382 + }, + { + "#": 3383 + }, + { + "#": 3384 + }, + { + "#": 3385 + }, + { + "#": 3386 + }, + { + "#": 3387 + }, + { + "#": 3388 + }, + { + "#": 3389 + } + ], + { + "x": 316.658, + "y": 487.106, + "index": 0, + "body": { + "#": 3365 + }, + "isInternal": false + }, + { + "x": 315.007, + "y": 492.728, + "index": 1, + "body": { + "#": 3365 + }, + "isInternal": false + }, + { + "x": 311.839, + "y": 497.658, + "index": 2, + "body": { + "#": 3365 + }, + "isInternal": false + }, + { + "x": 307.411, + "y": 501.495, + "index": 3, + "body": { + "#": 3365 + }, + "isInternal": false + }, + { + "x": 302.08, + "y": 503.93, + "index": 4, + "body": { + "#": 3365 + }, + "isInternal": false + }, + { + "x": 296.28, + "y": 504.764, + "index": 5, + "body": { + "#": 3365 + }, + "isInternal": false + }, + { + "x": 290.48, + "y": 503.93, + "index": 6, + "body": { + "#": 3365 + }, + "isInternal": false + }, + { + "x": 285.149, + "y": 501.495, + "index": 7, + "body": { + "#": 3365 + }, + "isInternal": false + }, + { + "x": 280.721, + "y": 497.658, + "index": 8, + "body": { + "#": 3365 + }, + "isInternal": false + }, + { + "x": 277.553, + "y": 492.728, + "index": 9, + "body": { + "#": 3365 + }, + "isInternal": false + }, + { + "x": 275.902, + "y": 487.106, + "index": 10, + "body": { + "#": 3365 + }, + "isInternal": false + }, + { + "x": 275.902, + "y": 481.246, + "index": 11, + "body": { + "#": 3365 + }, + "isInternal": false + }, + { + "x": 277.553, + "y": 475.624, + "index": 12, + "body": { + "#": 3365 + }, + "isInternal": false + }, + { + "x": 280.721, + "y": 470.694, + "index": 13, + "body": { + "#": 3365 + }, + "isInternal": false + }, + { + "x": 285.149, + "y": 466.857, + "index": 14, + "body": { + "#": 3365 + }, + "isInternal": false + }, + { + "x": 290.48, + "y": 464.422, + "index": 15, + "body": { + "#": 3365 + }, + "isInternal": false + }, + { + "x": 296.28, + "y": 463.588, + "index": 16, + "body": { + "#": 3365 + }, + "isInternal": false + }, + { + "x": 302.08, + "y": 464.422, + "index": 17, + "body": { + "#": 3365 + }, + "isInternal": false + }, + { + "x": 307.411, + "y": 466.857, + "index": 18, + "body": { + "#": 3365 + }, + "isInternal": false + }, + { + "x": 311.839, + "y": 470.694, + "index": 19, + "body": { + "#": 3365 + }, + "isInternal": false + }, + { + "x": 315.007, + "y": 475.624, + "index": 20, + "body": { + "#": 3365 + }, + "isInternal": false + }, + { + "x": 316.658, + "y": 481.246, + "index": 21, + "body": { + "#": 3365 + }, + "isInternal": false + }, + { + "x": 296.28, + "y": 484.176 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3397 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3399 + }, + "max": { + "#": 3400 + } + }, + { + "x": 275.902, + "y": 463.588 + }, + { + "x": 316.658, + "y": 504.764 + }, + { + "x": 296.28, + "y": 484.176 + }, + [ + { + "#": 3403 + }, + { + "#": 3404 + }, + { + "#": 3405 + }, + { + "#": 3406 + }, + { + "#": 3407 + }, + { + "#": 3408 + }, + { + "#": 3409 + }, + { + "#": 3410 + }, + { + "#": 3411 + }, + { + "#": 3412 + }, + { + "#": 3413 + } + ], + { + "x": -0.95948, + "y": -0.28177 + }, + { + "x": -0.84128, + "y": -0.5406 + }, + { + "x": -0.65487, + "y": -0.75574 + }, + { + "x": -0.41547, + "y": -0.90961 + }, + { + "x": -0.14233, + "y": -0.98982 + }, + { + "x": 0.14233, + "y": -0.98982 + }, + { + "x": 0.41547, + "y": -0.90961 + }, + { + "x": 0.65487, + "y": -0.75574 + }, + { + "x": 0.84128, + "y": -0.5406 + }, + { + "x": 0.95948, + "y": -0.28177 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 69, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3415 + }, + "angle": 0, + "vertices": { + "#": 3416 + }, + "position": { + "#": 3439 + }, + "force": { + "#": 3440 + }, + "torque": 0, + "positionImpulse": { + "#": 3441 + }, + "constraintImpulse": { + "#": 3442 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3443 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3444 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3445 + }, + "circleRadius": 21.31385, + "bounds": { + "#": 3447 + }, + "positionPrev": { + "#": 3450 + }, + "anglePrev": 0, + "axes": { + "#": 3451 + }, + "area": 1407.83677, + "mass": 1.40784, + "inverseMass": 0.71031, + "inertia": 1261.83026, + "inverseInertia": 0.00079, + "parent": { + "#": 3414 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3414 + } + ], + [ + { + "#": 3417 + }, + { + "#": 3418 + }, + { + "#": 3419 + }, + { + "#": 3420 + }, + { + "#": 3421 + }, + { + "#": 3422 + }, + { + "#": 3423 + }, + { + "#": 3424 + }, + { + "#": 3425 + }, + { + "#": 3426 + }, + { + "#": 3427 + }, + { + "#": 3428 + }, + { + "#": 3429 + }, + { + "#": 3430 + }, + { + "#": 3431 + }, + { + "#": 3432 + }, + { + "#": 3433 + }, + { + "#": 3434 + }, + { + "#": 3435 + }, + { + "#": 3436 + }, + { + "#": 3437 + }, + { + "#": 3438 + } + ], + { + "x": 368.852, + "y": 487.935, + "index": 0, + "body": { + "#": 3414 + }, + "isInternal": false + }, + { + "x": 367.143, + "y": 493.756, + "index": 1, + "body": { + "#": 3414 + }, + "isInternal": false + }, + { + "x": 363.863, + "y": 498.86, + "index": 2, + "body": { + "#": 3414 + }, + "isInternal": false + }, + { + "x": 359.278, + "y": 502.832, + "index": 3, + "body": { + "#": 3414 + }, + "isInternal": false + }, + { + "x": 353.76, + "y": 505.352, + "index": 4, + "body": { + "#": 3414 + }, + "isInternal": false + }, + { + "x": 347.755, + "y": 506.216, + "index": 5, + "body": { + "#": 3414 + }, + "isInternal": false + }, + { + "x": 341.75, + "y": 505.352, + "index": 6, + "body": { + "#": 3414 + }, + "isInternal": false + }, + { + "x": 336.232, + "y": 502.832, + "index": 7, + "body": { + "#": 3414 + }, + "isInternal": false + }, + { + "x": 331.647, + "y": 498.86, + "index": 8, + "body": { + "#": 3414 + }, + "isInternal": false + }, + { + "x": 328.367, + "y": 493.756, + "index": 9, + "body": { + "#": 3414 + }, + "isInternal": false + }, + { + "x": 326.658, + "y": 487.935, + "index": 10, + "body": { + "#": 3414 + }, + "isInternal": false + }, + { + "x": 326.658, + "y": 481.869, + "index": 11, + "body": { + "#": 3414 + }, + "isInternal": false + }, + { + "x": 328.367, + "y": 476.048, + "index": 12, + "body": { + "#": 3414 + }, + "isInternal": false + }, + { + "x": 331.647, + "y": 470.944, + "index": 13, + "body": { + "#": 3414 + }, + "isInternal": false + }, + { + "x": 336.232, + "y": 466.972, + "index": 14, + "body": { + "#": 3414 + }, + "isInternal": false + }, + { + "x": 341.75, + "y": 464.452, + "index": 15, + "body": { + "#": 3414 + }, + "isInternal": false + }, + { + "x": 347.755, + "y": 463.588, + "index": 16, + "body": { + "#": 3414 + }, + "isInternal": false + }, + { + "x": 353.76, + "y": 464.452, + "index": 17, + "body": { + "#": 3414 + }, + "isInternal": false + }, + { + "x": 359.278, + "y": 466.972, + "index": 18, + "body": { + "#": 3414 + }, + "isInternal": false + }, + { + "x": 363.863, + "y": 470.944, + "index": 19, + "body": { + "#": 3414 + }, + "isInternal": false + }, + { + "x": 367.143, + "y": 476.048, + "index": 20, + "body": { + "#": 3414 + }, + "isInternal": false + }, + { + "x": 368.852, + "y": 481.869, + "index": 21, + "body": { + "#": 3414 + }, + "isInternal": false + }, + { + "x": 347.755, + "y": 484.902 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3446 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3448 + }, + "max": { + "#": 3449 + } + }, + { + "x": 326.658, + "y": 463.588 + }, + { + "x": 368.852, + "y": 506.216 + }, + { + "x": 347.755, + "y": 484.902 + }, + [ + { + "#": 3452 + }, + { + "#": 3453 + }, + { + "#": 3454 + }, + { + "#": 3455 + }, + { + "#": 3456 + }, + { + "#": 3457 + }, + { + "#": 3458 + }, + { + "#": 3459 + }, + { + "#": 3460 + }, + { + "#": 3461 + }, + { + "#": 3462 + } + ], + { + "x": -0.9595, + "y": -0.2817 + }, + { + "x": -0.84126, + "y": -0.54062 + }, + { + "x": -0.65477, + "y": -0.75583 + }, + { + "x": -0.41542, + "y": -0.90963 + }, + { + "x": -0.14241, + "y": -0.98981 + }, + { + "x": 0.14241, + "y": -0.98981 + }, + { + "x": 0.41542, + "y": -0.90963 + }, + { + "x": 0.65477, + "y": -0.75583 + }, + { + "x": 0.84126, + "y": -0.54062 + }, + { + "x": 0.9595, + "y": -0.2817 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 70, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3464 + }, + "angle": 0, + "vertices": { + "#": 3465 + }, + "position": { + "#": 3484 + }, + "force": { + "#": 3485 + }, + "torque": 0, + "positionImpulse": { + "#": 3486 + }, + "constraintImpulse": { + "#": 3487 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3488 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3489 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3490 + }, + "circleRadius": 17.76537, + "bounds": { + "#": 3492 + }, + "positionPrev": { + "#": 3495 + }, + "anglePrev": 0, + "axes": { + "#": 3496 + }, + "area": 971.47513, + "mass": 0.97148, + "inverseMass": 1.02936, + "inertia": 600.86906, + "inverseInertia": 0.00166, + "parent": { + "#": 3463 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3463 + } + ], + [ + { + "#": 3466 + }, + { + "#": 3467 + }, + { + "#": 3468 + }, + { + "#": 3469 + }, + { + "#": 3470 + }, + { + "#": 3471 + }, + { + "#": 3472 + }, + { + "#": 3473 + }, + { + "#": 3474 + }, + { + "#": 3475 + }, + { + "#": 3476 + }, + { + "#": 3477 + }, + { + "#": 3478 + }, + { + "#": 3479 + }, + { + "#": 3480 + }, + { + "#": 3481 + }, + { + "#": 3482 + }, + { + "#": 3483 + } + ], + { + "x": 413.842, + "y": 484.438, + "index": 0, + "body": { + "#": 3463 + }, + "isInternal": false + }, + { + "x": 411.732, + "y": 490.236, + "index": 1, + "body": { + "#": 3463 + }, + "isInternal": false + }, + { + "x": 407.766, + "y": 494.962, + "index": 2, + "body": { + "#": 3463 + }, + "isInternal": false + }, + { + "x": 402.423, + "y": 498.047, + "index": 3, + "body": { + "#": 3463 + }, + "isInternal": false + }, + { + "x": 396.347, + "y": 499.118, + "index": 4, + "body": { + "#": 3463 + }, + "isInternal": false + }, + { + "x": 390.271, + "y": 498.047, + "index": 5, + "body": { + "#": 3463 + }, + "isInternal": false + }, + { + "x": 384.928, + "y": 494.962, + "index": 6, + "body": { + "#": 3463 + }, + "isInternal": false + }, + { + "x": 380.962, + "y": 490.236, + "index": 7, + "body": { + "#": 3463 + }, + "isInternal": false + }, + { + "x": 378.852, + "y": 484.438, + "index": 8, + "body": { + "#": 3463 + }, + "isInternal": false + }, + { + "x": 378.852, + "y": 478.268, + "index": 9, + "body": { + "#": 3463 + }, + "isInternal": false + }, + { + "x": 380.962, + "y": 472.47, + "index": 10, + "body": { + "#": 3463 + }, + "isInternal": false + }, + { + "x": 384.928, + "y": 467.744, + "index": 11, + "body": { + "#": 3463 + }, + "isInternal": false + }, + { + "x": 390.271, + "y": 464.659, + "index": 12, + "body": { + "#": 3463 + }, + "isInternal": false + }, + { + "x": 396.347, + "y": 463.588, + "index": 13, + "body": { + "#": 3463 + }, + "isInternal": false + }, + { + "x": 402.423, + "y": 464.659, + "index": 14, + "body": { + "#": 3463 + }, + "isInternal": false + }, + { + "x": 407.766, + "y": 467.744, + "index": 15, + "body": { + "#": 3463 + }, + "isInternal": false + }, + { + "x": 411.732, + "y": 472.47, + "index": 16, + "body": { + "#": 3463 + }, + "isInternal": false + }, + { + "x": 413.842, + "y": 478.268, + "index": 17, + "body": { + "#": 3463 + }, + "isInternal": false + }, + { + "x": 396.347, + "y": 481.353 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3491 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3493 + }, + "max": { + "#": 3494 + } + }, + { + "x": 378.852, + "y": 463.588 + }, + { + "x": 413.842, + "y": 499.118 + }, + { + "x": 396.347, + "y": 481.353 + }, + [ + { + "#": 3497 + }, + { + "#": 3498 + }, + { + "#": 3499 + }, + { + "#": 3500 + }, + { + "#": 3501 + }, + { + "#": 3502 + }, + { + "#": 3503 + }, + { + "#": 3504 + }, + { + "#": 3505 + } + ], + { + "x": -0.93971, + "y": -0.34198 + }, + { + "x": -0.76601, + "y": -0.64283 + }, + { + "x": -0.50003, + "y": -0.86601 + }, + { + "x": -0.17359, + "y": -0.98482 + }, + { + "x": 0.17359, + "y": -0.98482 + }, + { + "x": 0.50003, + "y": -0.86601 + }, + { + "x": 0.76601, + "y": -0.64283 + }, + { + "x": 0.93971, + "y": -0.34198 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 71, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3507 + }, + "angle": 0, + "vertices": { + "#": 3508 + }, + "position": { + "#": 3535 + }, + "force": { + "#": 3536 + }, + "torque": 0, + "positionImpulse": { + "#": 3537 + }, + "constraintImpulse": { + "#": 3538 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3539 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3540 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3541 + }, + "circleRadius": 25.12738, + "bounds": { + "#": 3543 + }, + "positionPrev": { + "#": 3546 + }, + "anglePrev": 0, + "axes": { + "#": 3547 + }, + "area": 1964.28805, + "mass": 1.96429, + "inverseMass": 0.50909, + "inertia": 2456.39813, + "inverseInertia": 0.00041, + "parent": { + "#": 3506 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3506 + } + ], + [ + { + "#": 3509 + }, + { + "#": 3510 + }, + { + "#": 3511 + }, + { + "#": 3512 + }, + { + "#": 3513 + }, + { + "#": 3514 + }, + { + "#": 3515 + }, + { + "#": 3516 + }, + { + "#": 3517 + }, + { + "#": 3518 + }, + { + "#": 3519 + }, + { + "#": 3520 + }, + { + "#": 3521 + }, + { + "#": 3522 + }, + { + "#": 3523 + }, + { + "#": 3524 + }, + { + "#": 3525 + }, + { + "#": 3526 + }, + { + "#": 3527 + }, + { + "#": 3528 + }, + { + "#": 3529 + }, + { + "#": 3530 + }, + { + "#": 3531 + }, + { + "#": 3532 + }, + { + "#": 3533 + }, + { + "#": 3534 + } + ], + { + "x": 473.73, + "y": 491.744, + "index": 0, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 472.281, + "y": 497.625, + "index": 1, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 469.465, + "y": 502.989, + "index": 2, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 465.449, + "y": 507.523, + "index": 3, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 460.463, + "y": 510.964, + "index": 4, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 454.799, + "y": 513.112, + "index": 5, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 448.786, + "y": 513.842, + "index": 6, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 442.773, + "y": 513.112, + "index": 7, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 437.109, + "y": 510.964, + "index": 8, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 432.123, + "y": 507.523, + "index": 9, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 428.107, + "y": 502.989, + "index": 10, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 425.291, + "y": 497.625, + "index": 11, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 423.842, + "y": 491.744, + "index": 12, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 423.842, + "y": 485.686, + "index": 13, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 425.291, + "y": 479.805, + "index": 14, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 428.107, + "y": 474.441, + "index": 15, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 432.123, + "y": 469.907, + "index": 16, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 437.109, + "y": 466.466, + "index": 17, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 442.773, + "y": 464.318, + "index": 18, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 448.786, + "y": 463.588, + "index": 19, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 454.799, + "y": 464.318, + "index": 20, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 460.463, + "y": 466.466, + "index": 21, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 465.449, + "y": 469.907, + "index": 22, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 469.465, + "y": 474.441, + "index": 23, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 472.281, + "y": 479.805, + "index": 24, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 473.73, + "y": 485.686, + "index": 25, + "body": { + "#": 3506 + }, + "isInternal": false + }, + { + "x": 448.786, + "y": 488.715 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3542 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3544 + }, + "max": { + "#": 3545 + } + }, + { + "x": 423.842, + "y": 463.588 + }, + { + "x": 473.73, + "y": 513.842 + }, + { + "x": 448.786, + "y": 488.715 + }, + [ + { + "#": 3548 + }, + { + "#": 3549 + }, + { + "#": 3550 + }, + { + "#": 3551 + }, + { + "#": 3552 + }, + { + "#": 3553 + }, + { + "#": 3554 + }, + { + "#": 3555 + }, + { + "#": 3556 + }, + { + "#": 3557 + }, + { + "#": 3558 + }, + { + "#": 3559 + }, + { + "#": 3560 + } + ], + { + "x": -0.97096, + "y": -0.23923 + }, + { + "x": -0.8854, + "y": -0.46482 + }, + { + "x": -0.74857, + "y": -0.66305 + }, + { + "x": -0.568, + "y": -0.82303 + }, + { + "x": -0.35459, + "y": -0.93502 + }, + { + "x": -0.12052, + "y": -0.99271 + }, + { + "x": 0.12052, + "y": -0.99271 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.568, + "y": -0.82303 + }, + { + "x": 0.74857, + "y": -0.66305 + }, + { + "x": 0.8854, + "y": -0.46482 + }, + { + "x": 0.97096, + "y": -0.23923 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 72, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3562 + }, + "angle": 0, + "vertices": { + "#": 3563 + }, + "position": { + "#": 3584 + }, + "force": { + "#": 3585 + }, + "torque": 0, + "positionImpulse": { + "#": 3586 + }, + "constraintImpulse": { + "#": 3587 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3588 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3589 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3590 + }, + "circleRadius": 19.69618, + "bounds": { + "#": 3592 + }, + "positionPrev": { + "#": 3595 + }, + "anglePrev": 0, + "axes": { + "#": 3596 + }, + "area": 1198.78665, + "mass": 1.19879, + "inverseMass": 0.83418, + "inertia": 914.92964, + "inverseInertia": 0.00109, + "parent": { + "#": 3561 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3561 + } + ], + [ + { + "#": 3564 + }, + { + "#": 3565 + }, + { + "#": 3566 + }, + { + "#": 3567 + }, + { + "#": 3568 + }, + { + "#": 3569 + }, + { + "#": 3570 + }, + { + "#": 3571 + }, + { + "#": 3572 + }, + { + "#": 3573 + }, + { + "#": 3574 + }, + { + "#": 3575 + }, + { + "#": 3576 + }, + { + "#": 3577 + }, + { + "#": 3578 + }, + { + "#": 3579 + }, + { + "#": 3580 + }, + { + "#": 3581 + }, + { + "#": 3582 + }, + { + "#": 3583 + } + ], + { + "x": 522.638, + "y": 486.123, + "index": 0, + "body": { + "#": 3561 + }, + "isInternal": false + }, + { + "x": 520.733, + "y": 491.984, + "index": 1, + "body": { + "#": 3561 + }, + "isInternal": false + }, + { + "x": 517.111, + "y": 496.969, + "index": 2, + "body": { + "#": 3561 + }, + "isInternal": false + }, + { + "x": 512.126, + "y": 500.591, + "index": 3, + "body": { + "#": 3561 + }, + "isInternal": false + }, + { + "x": 506.265, + "y": 502.496, + "index": 4, + "body": { + "#": 3561 + }, + "isInternal": false + }, + { + "x": 500.103, + "y": 502.496, + "index": 5, + "body": { + "#": 3561 + }, + "isInternal": false + }, + { + "x": 494.242, + "y": 500.591, + "index": 6, + "body": { + "#": 3561 + }, + "isInternal": false + }, + { + "x": 489.257, + "y": 496.969, + "index": 7, + "body": { + "#": 3561 + }, + "isInternal": false + }, + { + "x": 485.635, + "y": 491.984, + "index": 8, + "body": { + "#": 3561 + }, + "isInternal": false + }, + { + "x": 483.73, + "y": 486.123, + "index": 9, + "body": { + "#": 3561 + }, + "isInternal": false + }, + { + "x": 483.73, + "y": 479.961, + "index": 10, + "body": { + "#": 3561 + }, + "isInternal": false + }, + { + "x": 485.635, + "y": 474.1, + "index": 11, + "body": { + "#": 3561 + }, + "isInternal": false + }, + { + "x": 489.257, + "y": 469.115, + "index": 12, + "body": { + "#": 3561 + }, + "isInternal": false + }, + { + "x": 494.242, + "y": 465.493, + "index": 13, + "body": { + "#": 3561 + }, + "isInternal": false + }, + { + "x": 500.103, + "y": 463.588, + "index": 14, + "body": { + "#": 3561 + }, + "isInternal": false + }, + { + "x": 506.265, + "y": 463.588, + "index": 15, + "body": { + "#": 3561 + }, + "isInternal": false + }, + { + "x": 512.126, + "y": 465.493, + "index": 16, + "body": { + "#": 3561 + }, + "isInternal": false + }, + { + "x": 517.111, + "y": 469.115, + "index": 17, + "body": { + "#": 3561 + }, + "isInternal": false + }, + { + "x": 520.733, + "y": 474.1, + "index": 18, + "body": { + "#": 3561 + }, + "isInternal": false + }, + { + "x": 522.638, + "y": 479.961, + "index": 19, + "body": { + "#": 3561 + }, + "isInternal": false + }, + { + "x": 503.184, + "y": 483.042 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3591 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3593 + }, + "max": { + "#": 3594 + } + }, + { + "x": 483.73, + "y": 463.588 + }, + { + "x": 522.638, + "y": 502.496 + }, + { + "x": 503.184, + "y": 483.042 + }, + [ + { + "#": 3597 + }, + { + "#": 3598 + }, + { + "#": 3599 + }, + { + "#": 3600 + }, + { + "#": 3601 + }, + { + "#": 3602 + }, + { + "#": 3603 + }, + { + "#": 3604 + }, + { + "#": 3605 + }, + { + "#": 3606 + } + ], + { + "x": -0.95103, + "y": -0.30911 + }, + { + "x": -0.809, + "y": -0.5878 + }, + { + "x": -0.5878, + "y": -0.809 + }, + { + "x": -0.30911, + "y": -0.95103 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30911, + "y": -0.95103 + }, + { + "x": 0.5878, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.5878 + }, + { + "x": 0.95103, + "y": -0.30911 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 73, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3608 + }, + "angle": 0, + "vertices": { + "#": 3609 + }, + "position": { + "#": 3632 + }, + "force": { + "#": 3633 + }, + "torque": 0, + "positionImpulse": { + "#": 3634 + }, + "constraintImpulse": { + "#": 3635 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3636 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3637 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3638 + }, + "circleRadius": 20.54585, + "bounds": { + "#": 3640 + }, + "positionPrev": { + "#": 3643 + }, + "anglePrev": 0, + "axes": { + "#": 3644 + }, + "area": 1308.23088, + "mass": 1.30823, + "inverseMass": 0.76439, + "inertia": 1089.59506, + "inverseInertia": 0.00092, + "parent": { + "#": 3607 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3607 + } + ], + [ + { + "#": 3610 + }, + { + "#": 3611 + }, + { + "#": 3612 + }, + { + "#": 3613 + }, + { + "#": 3614 + }, + { + "#": 3615 + }, + { + "#": 3616 + }, + { + "#": 3617 + }, + { + "#": 3618 + }, + { + "#": 3619 + }, + { + "#": 3620 + }, + { + "#": 3621 + }, + { + "#": 3622 + }, + { + "#": 3623 + }, + { + "#": 3624 + }, + { + "#": 3625 + }, + { + "#": 3626 + }, + { + "#": 3627 + }, + { + "#": 3628 + }, + { + "#": 3629 + }, + { + "#": 3630 + }, + { + "#": 3631 + } + ], + { + "x": 573.312, + "y": 487.058, + "index": 0, + "body": { + "#": 3607 + }, + "isInternal": false + }, + { + "x": 571.664, + "y": 492.669, + "index": 1, + "body": { + "#": 3607 + }, + "isInternal": false + }, + { + "x": 568.503, + "y": 497.589, + "index": 2, + "body": { + "#": 3607 + }, + "isInternal": false + }, + { + "x": 564.083, + "y": 501.418, + "index": 3, + "body": { + "#": 3607 + }, + "isInternal": false + }, + { + "x": 558.763, + "y": 503.848, + "index": 4, + "body": { + "#": 3607 + }, + "isInternal": false + }, + { + "x": 552.975, + "y": 504.68, + "index": 5, + "body": { + "#": 3607 + }, + "isInternal": false + }, + { + "x": 547.187, + "y": 503.848, + "index": 6, + "body": { + "#": 3607 + }, + "isInternal": false + }, + { + "x": 541.867, + "y": 501.418, + "index": 7, + "body": { + "#": 3607 + }, + "isInternal": false + }, + { + "x": 537.447, + "y": 497.589, + "index": 8, + "body": { + "#": 3607 + }, + "isInternal": false + }, + { + "x": 534.286, + "y": 492.669, + "index": 9, + "body": { + "#": 3607 + }, + "isInternal": false + }, + { + "x": 532.638, + "y": 487.058, + "index": 10, + "body": { + "#": 3607 + }, + "isInternal": false + }, + { + "x": 532.638, + "y": 481.21, + "index": 11, + "body": { + "#": 3607 + }, + "isInternal": false + }, + { + "x": 534.286, + "y": 475.599, + "index": 12, + "body": { + "#": 3607 + }, + "isInternal": false + }, + { + "x": 537.447, + "y": 470.679, + "index": 13, + "body": { + "#": 3607 + }, + "isInternal": false + }, + { + "x": 541.867, + "y": 466.85, + "index": 14, + "body": { + "#": 3607 + }, + "isInternal": false + }, + { + "x": 547.187, + "y": 464.42, + "index": 15, + "body": { + "#": 3607 + }, + "isInternal": false + }, + { + "x": 552.975, + "y": 463.588, + "index": 16, + "body": { + "#": 3607 + }, + "isInternal": false + }, + { + "x": 558.763, + "y": 464.42, + "index": 17, + "body": { + "#": 3607 + }, + "isInternal": false + }, + { + "x": 564.083, + "y": 466.85, + "index": 18, + "body": { + "#": 3607 + }, + "isInternal": false + }, + { + "x": 568.503, + "y": 470.679, + "index": 19, + "body": { + "#": 3607 + }, + "isInternal": false + }, + { + "x": 571.664, + "y": 475.599, + "index": 20, + "body": { + "#": 3607 + }, + "isInternal": false + }, + { + "x": 573.312, + "y": 481.21, + "index": 21, + "body": { + "#": 3607 + }, + "isInternal": false + }, + { + "x": 552.975, + "y": 484.134 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3639 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3641 + }, + "max": { + "#": 3642 + } + }, + { + "x": 532.638, + "y": 463.588 + }, + { + "x": 573.312, + "y": 504.68 + }, + { + "x": 552.975, + "y": 484.134 + }, + [ + { + "#": 3645 + }, + { + "#": 3646 + }, + { + "#": 3647 + }, + { + "#": 3648 + }, + { + "#": 3649 + }, + { + "#": 3650 + }, + { + "#": 3651 + }, + { + "#": 3652 + }, + { + "#": 3653 + }, + { + "#": 3654 + }, + { + "#": 3655 + } + ], + { + "x": -0.95947, + "y": -0.28181 + }, + { + "x": -0.84132, + "y": -0.54053 + }, + { + "x": -0.65477, + "y": -0.75583 + }, + { + "x": -0.41548, + "y": -0.9096 + }, + { + "x": -0.14228, + "y": -0.98983 + }, + { + "x": 0.14228, + "y": -0.98983 + }, + { + "x": 0.41548, + "y": -0.9096 + }, + { + "x": 0.65477, + "y": -0.75583 + }, + { + "x": 0.84132, + "y": -0.54053 + }, + { + "x": 0.95947, + "y": -0.28181 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 74, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3657 + }, + "angle": 0, + "vertices": { + "#": 3658 + }, + "position": { + "#": 3677 + }, + "force": { + "#": 3678 + }, + "torque": 0, + "positionImpulse": { + "#": 3679 + }, + "constraintImpulse": { + "#": 3680 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3681 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3682 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3683 + }, + "circleRadius": 16.19489, + "bounds": { + "#": 3685 + }, + "positionPrev": { + "#": 3688 + }, + "anglePrev": 0, + "axes": { + "#": 3689 + }, + "area": 807.32074, + "mass": 0.80732, + "inverseMass": 1.23867, + "inertia": 414.96235, + "inverseInertia": 0.00241, + "parent": { + "#": 3656 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3656 + } + ], + [ + { + "#": 3659 + }, + { + "#": 3660 + }, + { + "#": 3661 + }, + { + "#": 3662 + }, + { + "#": 3663 + }, + { + "#": 3664 + }, + { + "#": 3665 + }, + { + "#": 3666 + }, + { + "#": 3667 + }, + { + "#": 3668 + }, + { + "#": 3669 + }, + { + "#": 3670 + }, + { + "#": 3671 + }, + { + "#": 3672 + }, + { + "#": 3673 + }, + { + "#": 3674 + }, + { + "#": 3675 + }, + { + "#": 3676 + } + ], + { + "x": 615.21, + "y": 482.595, + "index": 0, + "body": { + "#": 3656 + }, + "isInternal": false + }, + { + "x": 613.286, + "y": 487.88, + "index": 1, + "body": { + "#": 3656 + }, + "isInternal": false + }, + { + "x": 609.671, + "y": 492.189, + "index": 2, + "body": { + "#": 3656 + }, + "isInternal": false + }, + { + "x": 604.8, + "y": 495.001, + "index": 3, + "body": { + "#": 3656 + }, + "isInternal": false + }, + { + "x": 599.261, + "y": 495.978, + "index": 4, + "body": { + "#": 3656 + }, + "isInternal": false + }, + { + "x": 593.722, + "y": 495.001, + "index": 5, + "body": { + "#": 3656 + }, + "isInternal": false + }, + { + "x": 588.851, + "y": 492.189, + "index": 6, + "body": { + "#": 3656 + }, + "isInternal": false + }, + { + "x": 585.236, + "y": 487.88, + "index": 7, + "body": { + "#": 3656 + }, + "isInternal": false + }, + { + "x": 583.312, + "y": 482.595, + "index": 8, + "body": { + "#": 3656 + }, + "isInternal": false + }, + { + "x": 583.312, + "y": 476.971, + "index": 9, + "body": { + "#": 3656 + }, + "isInternal": false + }, + { + "x": 585.236, + "y": 471.686, + "index": 10, + "body": { + "#": 3656 + }, + "isInternal": false + }, + { + "x": 588.851, + "y": 467.377, + "index": 11, + "body": { + "#": 3656 + }, + "isInternal": false + }, + { + "x": 593.722, + "y": 464.565, + "index": 12, + "body": { + "#": 3656 + }, + "isInternal": false + }, + { + "x": 599.261, + "y": 463.588, + "index": 13, + "body": { + "#": 3656 + }, + "isInternal": false + }, + { + "x": 604.8, + "y": 464.565, + "index": 14, + "body": { + "#": 3656 + }, + "isInternal": false + }, + { + "x": 609.671, + "y": 467.377, + "index": 15, + "body": { + "#": 3656 + }, + "isInternal": false + }, + { + "x": 613.286, + "y": 471.686, + "index": 16, + "body": { + "#": 3656 + }, + "isInternal": false + }, + { + "x": 615.21, + "y": 476.971, + "index": 17, + "body": { + "#": 3656 + }, + "isInternal": false + }, + { + "x": 599.261, + "y": 479.783 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3684 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3686 + }, + "max": { + "#": 3687 + } + }, + { + "x": 583.312, + "y": 463.588 + }, + { + "x": 615.21, + "y": 495.978 + }, + { + "x": 599.261, + "y": 479.783 + }, + [ + { + "#": 3690 + }, + { + "#": 3691 + }, + { + "#": 3692 + }, + { + "#": 3693 + }, + { + "#": 3694 + }, + { + "#": 3695 + }, + { + "#": 3696 + }, + { + "#": 3697 + }, + { + "#": 3698 + } + ], + { + "x": -0.93967, + "y": -0.34209 + }, + { + "x": -0.7661, + "y": -0.64272 + }, + { + "x": -0.49996, + "y": -0.86605 + }, + { + "x": -0.1737, + "y": -0.9848 + }, + { + "x": 0.1737, + "y": -0.9848 + }, + { + "x": 0.49996, + "y": -0.86605 + }, + { + "x": 0.7661, + "y": -0.64272 + }, + { + "x": 0.93967, + "y": -0.34209 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 75, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3700 + }, + "angle": 0, + "vertices": { + "#": 3701 + }, + "position": { + "#": 3724 + }, + "force": { + "#": 3725 + }, + "torque": 0, + "positionImpulse": { + "#": 3726 + }, + "constraintImpulse": { + "#": 3727 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3728 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3729 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3730 + }, + "circleRadius": 21.27296, + "bounds": { + "#": 3732 + }, + "positionPrev": { + "#": 3735 + }, + "anglePrev": 0, + "axes": { + "#": 3736 + }, + "area": 1402.43614, + "mass": 1.40244, + "inverseMass": 0.71304, + "inertia": 1252.16778, + "inverseInertia": 0.0008, + "parent": { + "#": 3699 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3699 + } + ], + [ + { + "#": 3702 + }, + { + "#": 3703 + }, + { + "#": 3704 + }, + { + "#": 3705 + }, + { + "#": 3706 + }, + { + "#": 3707 + }, + { + "#": 3708 + }, + { + "#": 3709 + }, + { + "#": 3710 + }, + { + "#": 3711 + }, + { + "#": 3712 + }, + { + "#": 3713 + }, + { + "#": 3714 + }, + { + "#": 3715 + }, + { + "#": 3716 + }, + { + "#": 3717 + }, + { + "#": 3718 + }, + { + "#": 3719 + }, + { + "#": 3720 + }, + { + "#": 3721 + }, + { + "#": 3722 + }, + { + "#": 3723 + } + ], + { + "x": 142.112, + "y": 553.04, + "index": 0, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 140.407, + "y": 558.85, + "index": 1, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 137.133, + "y": 563.944, + "index": 2, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 132.557, + "y": 567.909, + "index": 3, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 127.049, + "y": 570.424, + "index": 4, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 121.056, + "y": 571.286, + "index": 5, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 115.063, + "y": 570.424, + "index": 6, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 109.555, + "y": 567.909, + "index": 7, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 104.979, + "y": 563.944, + "index": 8, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 101.705, + "y": 558.85, + "index": 9, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 100, + "y": 553.04, + "index": 10, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 100, + "y": 546.986, + "index": 11, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 101.705, + "y": 541.176, + "index": 12, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 104.979, + "y": 536.082, + "index": 13, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 109.555, + "y": 532.117, + "index": 14, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 115.063, + "y": 529.602, + "index": 15, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 121.056, + "y": 528.74, + "index": 16, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 127.049, + "y": 529.602, + "index": 17, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 132.557, + "y": 532.117, + "index": 18, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 137.133, + "y": 536.082, + "index": 19, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 140.407, + "y": 541.176, + "index": 20, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 142.112, + "y": 546.986, + "index": 21, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 121.056, + "y": 550.013 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3731 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3733 + }, + "max": { + "#": 3734 + } + }, + { + "x": 100, + "y": 528.74 + }, + { + "x": 142.112, + "y": 571.286 + }, + { + "x": 121.056, + "y": 550.013 + }, + [ + { + "#": 3737 + }, + { + "#": 3738 + }, + { + "#": 3739 + }, + { + "#": 3740 + }, + { + "#": 3741 + }, + { + "#": 3742 + }, + { + "#": 3743 + }, + { + "#": 3744 + }, + { + "#": 3745 + }, + { + "#": 3746 + }, + { + "#": 3747 + } + ], + { + "x": -0.95954, + "y": -0.28159 + }, + { + "x": -0.84123, + "y": -0.54067 + }, + { + "x": -0.65485, + "y": -0.75576 + }, + { + "x": -0.41536, + "y": -0.90966 + }, + { + "x": -0.14237, + "y": -0.98981 + }, + { + "x": 0.14237, + "y": -0.98981 + }, + { + "x": 0.41536, + "y": -0.90966 + }, + { + "x": 0.65485, + "y": -0.75576 + }, + { + "x": 0.84123, + "y": -0.54067 + }, + { + "x": 0.95954, + "y": -0.28159 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 76, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3749 + }, + "angle": 0, + "vertices": { + "#": 3750 + }, + "position": { + "#": 3775 + }, + "force": { + "#": 3776 + }, + "torque": 0, + "positionImpulse": { + "#": 3777 + }, + "constraintImpulse": { + "#": 3778 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3779 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3780 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3781 + }, + "circleRadius": 23.18744, + "bounds": { + "#": 3783 + }, + "positionPrev": { + "#": 3786 + }, + "anglePrev": 0, + "axes": { + "#": 3787 + }, + "area": 1669.86252, + "mass": 1.66986, + "inverseMass": 0.59885, + "inertia": 1775.22328, + "inverseInertia": 0.00056, + "parent": { + "#": 3748 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3748 + } + ], + [ + { + "#": 3751 + }, + { + "#": 3752 + }, + { + "#": 3753 + }, + { + "#": 3754 + }, + { + "#": 3755 + }, + { + "#": 3756 + }, + { + "#": 3757 + }, + { + "#": 3758 + }, + { + "#": 3759 + }, + { + "#": 3760 + }, + { + "#": 3761 + }, + { + "#": 3762 + }, + { + "#": 3763 + }, + { + "#": 3764 + }, + { + "#": 3765 + }, + { + "#": 3766 + }, + { + "#": 3767 + }, + { + "#": 3768 + }, + { + "#": 3769 + }, + { + "#": 3770 + }, + { + "#": 3771 + }, + { + "#": 3772 + }, + { + "#": 3773 + }, + { + "#": 3774 + } + ], + { + "x": 198.09, + "y": 554.756, + "index": 0, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 196.523, + "y": 560.602, + "index": 1, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 193.497, + "y": 565.845, + "index": 2, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 189.217, + "y": 570.125, + "index": 3, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 183.974, + "y": 573.151, + "index": 4, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 178.128, + "y": 574.718, + "index": 5, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 172.074, + "y": 574.718, + "index": 6, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 166.228, + "y": 573.151, + "index": 7, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 160.985, + "y": 570.125, + "index": 8, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 156.705, + "y": 565.845, + "index": 9, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 153.679, + "y": 560.602, + "index": 10, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 152.112, + "y": 554.756, + "index": 11, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 152.112, + "y": 548.702, + "index": 12, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 153.679, + "y": 542.856, + "index": 13, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 156.705, + "y": 537.613, + "index": 14, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 160.985, + "y": 533.333, + "index": 15, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 166.228, + "y": 530.307, + "index": 16, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 172.074, + "y": 528.74, + "index": 17, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 178.128, + "y": 528.74, + "index": 18, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 183.974, + "y": 530.307, + "index": 19, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 189.217, + "y": 533.333, + "index": 20, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 193.497, + "y": 537.613, + "index": 21, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 196.523, + "y": 542.856, + "index": 22, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 198.09, + "y": 548.702, + "index": 23, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 175.101, + "y": 551.729 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3782 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3784 + }, + "max": { + "#": 3785 + } + }, + { + "x": 152.112, + "y": 528.74 + }, + { + "x": 198.09, + "y": 574.718 + }, + { + "x": 175.101, + "y": 551.729 + }, + [ + { + "#": 3788 + }, + { + "#": 3789 + }, + { + "#": 3790 + }, + { + "#": 3791 + }, + { + "#": 3792 + }, + { + "#": 3793 + }, + { + "#": 3794 + }, + { + "#": 3795 + }, + { + "#": 3796 + }, + { + "#": 3797 + }, + { + "#": 3798 + }, + { + "#": 3799 + } + ], + { + "x": -0.9659, + "y": -0.25891 + }, + { + "x": -0.8661, + "y": -0.49987 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.49987, + "y": -0.8661 + }, + { + "x": -0.25891, + "y": -0.9659 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25891, + "y": -0.9659 + }, + { + "x": 0.49987, + "y": -0.8661 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.8661, + "y": -0.49987 + }, + { + "x": 0.9659, + "y": -0.25891 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 77, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3801 + }, + "angle": 0, + "vertices": { + "#": 3802 + }, + "position": { + "#": 3829 + }, + "force": { + "#": 3830 + }, + "torque": 0, + "positionImpulse": { + "#": 3831 + }, + "constraintImpulse": { + "#": 3832 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3833 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3834 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3835 + }, + "circleRadius": 28.79019, + "bounds": { + "#": 3837 + }, + "positionPrev": { + "#": 3840 + }, + "anglePrev": 0, + "axes": { + "#": 3841 + }, + "area": 2578.69518, + "mass": 2.5787, + "inverseMass": 0.38779, + "inertia": 4233.39144, + "inverseInertia": 0.00024, + "parent": { + "#": 3800 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3800 + } + ], + [ + { + "#": 3803 + }, + { + "#": 3804 + }, + { + "#": 3805 + }, + { + "#": 3806 + }, + { + "#": 3807 + }, + { + "#": 3808 + }, + { + "#": 3809 + }, + { + "#": 3810 + }, + { + "#": 3811 + }, + { + "#": 3812 + }, + { + "#": 3813 + }, + { + "#": 3814 + }, + { + "#": 3815 + }, + { + "#": 3816 + }, + { + "#": 3817 + }, + { + "#": 3818 + }, + { + "#": 3819 + }, + { + "#": 3820 + }, + { + "#": 3821 + }, + { + "#": 3822 + }, + { + "#": 3823 + }, + { + "#": 3824 + }, + { + "#": 3825 + }, + { + "#": 3826 + }, + { + "#": 3827 + }, + { + "#": 3828 + } + ], + { + "x": 265.25, + "y": 561, + "index": 0, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 263.589, + "y": 567.739, + "index": 1, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 260.364, + "y": 573.885, + "index": 2, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 255.761, + "y": 579.08, + "index": 3, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 250.049, + "y": 583.022, + "index": 4, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 243.56, + "y": 585.484, + "index": 5, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 236.67, + "y": 586.32, + "index": 6, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 229.78, + "y": 585.484, + "index": 7, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 223.291, + "y": 583.022, + "index": 8, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 217.579, + "y": 579.08, + "index": 9, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 212.976, + "y": 573.885, + "index": 10, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 209.751, + "y": 567.739, + "index": 11, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 208.09, + "y": 561, + "index": 12, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 208.09, + "y": 554.06, + "index": 13, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 209.751, + "y": 547.321, + "index": 14, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 212.976, + "y": 541.175, + "index": 15, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 217.579, + "y": 535.98, + "index": 16, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 223.291, + "y": 532.038, + "index": 17, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 229.78, + "y": 529.576, + "index": 18, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 236.67, + "y": 528.74, + "index": 19, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 243.56, + "y": 529.576, + "index": 20, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 250.049, + "y": 532.038, + "index": 21, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 255.761, + "y": 535.98, + "index": 22, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 260.364, + "y": 541.175, + "index": 23, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 263.589, + "y": 547.321, + "index": 24, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 265.25, + "y": 554.06, + "index": 25, + "body": { + "#": 3800 + }, + "isInternal": false + }, + { + "x": 236.67, + "y": 557.53 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3836 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3838 + }, + "max": { + "#": 3839 + } + }, + { + "x": 208.09, + "y": 528.74 + }, + { + "x": 265.25, + "y": 586.32 + }, + { + "x": 236.67, + "y": 557.53 + }, + [ + { + "#": 3842 + }, + { + "#": 3843 + }, + { + "#": 3844 + }, + { + "#": 3845 + }, + { + "#": 3846 + }, + { + "#": 3847 + }, + { + "#": 3848 + }, + { + "#": 3849 + }, + { + "#": 3850 + }, + { + "#": 3851 + }, + { + "#": 3852 + }, + { + "#": 3853 + }, + { + "#": 3854 + } + ], + { + "x": -0.97094, + "y": -0.23931 + }, + { + "x": -0.8855, + "y": -0.46465 + }, + { + "x": -0.74847, + "y": -0.66317 + }, + { + "x": -0.568, + "y": -0.82303 + }, + { + "x": -0.35474, + "y": -0.93497 + }, + { + "x": -0.12045, + "y": -0.99272 + }, + { + "x": 0.12045, + "y": -0.99272 + }, + { + "x": 0.35474, + "y": -0.93497 + }, + { + "x": 0.568, + "y": -0.82303 + }, + { + "x": 0.74847, + "y": -0.66317 + }, + { + "x": 0.8855, + "y": -0.46465 + }, + { + "x": 0.97094, + "y": -0.23931 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 78, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3856 + }, + "angle": 0, + "vertices": { + "#": 3857 + }, + "position": { + "#": 3876 + }, + "force": { + "#": 3877 + }, + "torque": 0, + "positionImpulse": { + "#": 3878 + }, + "constraintImpulse": { + "#": 3879 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3880 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3881 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3882 + }, + "circleRadius": 16.04417, + "bounds": { + "#": 3884 + }, + "positionPrev": { + "#": 3887 + }, + "anglePrev": 0, + "axes": { + "#": 3888 + }, + "area": 792.3786, + "mass": 0.79238, + "inverseMass": 1.26202, + "inertia": 399.74399, + "inverseInertia": 0.0025, + "parent": { + "#": 3855 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3855 + } + ], + [ + { + "#": 3858 + }, + { + "#": 3859 + }, + { + "#": 3860 + }, + { + "#": 3861 + }, + { + "#": 3862 + }, + { + "#": 3863 + }, + { + "#": 3864 + }, + { + "#": 3865 + }, + { + "#": 3866 + }, + { + "#": 3867 + }, + { + "#": 3868 + }, + { + "#": 3869 + }, + { + "#": 3870 + }, + { + "#": 3871 + }, + { + "#": 3872 + }, + { + "#": 3873 + }, + { + "#": 3874 + }, + { + "#": 3875 + } + ], + { + "x": 306.85, + "y": 547.57, + "index": 0, + "body": { + "#": 3855 + }, + "isInternal": false + }, + { + "x": 304.945, + "y": 552.806, + "index": 1, + "body": { + "#": 3855 + }, + "isInternal": false + }, + { + "x": 301.363, + "y": 557.075, + "index": 2, + "body": { + "#": 3855 + }, + "isInternal": false + }, + { + "x": 296.537, + "y": 559.861, + "index": 3, + "body": { + "#": 3855 + }, + "isInternal": false + }, + { + "x": 291.05, + "y": 560.828, + "index": 4, + "body": { + "#": 3855 + }, + "isInternal": false + }, + { + "x": 285.563, + "y": 559.861, + "index": 5, + "body": { + "#": 3855 + }, + "isInternal": false + }, + { + "x": 280.737, + "y": 557.075, + "index": 6, + "body": { + "#": 3855 + }, + "isInternal": false + }, + { + "x": 277.155, + "y": 552.806, + "index": 7, + "body": { + "#": 3855 + }, + "isInternal": false + }, + { + "x": 275.25, + "y": 547.57, + "index": 8, + "body": { + "#": 3855 + }, + "isInternal": false + }, + { + "x": 275.25, + "y": 541.998, + "index": 9, + "body": { + "#": 3855 + }, + "isInternal": false + }, + { + "x": 277.155, + "y": 536.762, + "index": 10, + "body": { + "#": 3855 + }, + "isInternal": false + }, + { + "x": 280.737, + "y": 532.493, + "index": 11, + "body": { + "#": 3855 + }, + "isInternal": false + }, + { + "x": 285.563, + "y": 529.707, + "index": 12, + "body": { + "#": 3855 + }, + "isInternal": false + }, + { + "x": 291.05, + "y": 528.74, + "index": 13, + "body": { + "#": 3855 + }, + "isInternal": false + }, + { + "x": 296.537, + "y": 529.707, + "index": 14, + "body": { + "#": 3855 + }, + "isInternal": false + }, + { + "x": 301.363, + "y": 532.493, + "index": 15, + "body": { + "#": 3855 + }, + "isInternal": false + }, + { + "x": 304.945, + "y": 536.762, + "index": 16, + "body": { + "#": 3855 + }, + "isInternal": false + }, + { + "x": 306.85, + "y": 541.998, + "index": 17, + "body": { + "#": 3855 + }, + "isInternal": false + }, + { + "x": 291.05, + "y": 544.784 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3883 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3885 + }, + "max": { + "#": 3886 + } + }, + { + "x": 275.25, + "y": 528.74 + }, + { + "x": 306.85, + "y": 560.828 + }, + { + "x": 291.05, + "y": 544.784 + }, + [ + { + "#": 3889 + }, + { + "#": 3890 + }, + { + "#": 3891 + }, + { + "#": 3892 + }, + { + "#": 3893 + }, + { + "#": 3894 + }, + { + "#": 3895 + }, + { + "#": 3896 + }, + { + "#": 3897 + } + ], + { + "x": -0.93974, + "y": -0.3419 + }, + { + "x": -0.76605, + "y": -0.64278 + }, + { + "x": -0.49996, + "y": -0.86605 + }, + { + "x": -0.17356, + "y": -0.98482 + }, + { + "x": 0.17356, + "y": -0.98482 + }, + { + "x": 0.49996, + "y": -0.86605 + }, + { + "x": 0.76605, + "y": -0.64278 + }, + { + "x": 0.93974, + "y": -0.3419 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 79, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3899 + }, + "angle": 0, + "vertices": { + "#": 3900 + }, + "position": { + "#": 3917 + }, + "force": { + "#": 3918 + }, + "torque": 0, + "positionImpulse": { + "#": 3919 + }, + "constraintImpulse": { + "#": 3920 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3921 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3922 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3923 + }, + "circleRadius": 15.69014, + "bounds": { + "#": 3925 + }, + "positionPrev": { + "#": 3928 + }, + "anglePrev": 0, + "axes": { + "#": 3929 + }, + "area": 753.6954, + "mass": 0.7537, + "inverseMass": 1.3268, + "inertia": 361.68483, + "inverseInertia": 0.00276, + "parent": { + "#": 3898 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3898 + } + ], + [ + { + "#": 3901 + }, + { + "#": 3902 + }, + { + "#": 3903 + }, + { + "#": 3904 + }, + { + "#": 3905 + }, + { + "#": 3906 + }, + { + "#": 3907 + }, + { + "#": 3908 + }, + { + "#": 3909 + }, + { + "#": 3910 + }, + { + "#": 3911 + }, + { + "#": 3912 + }, + { + "#": 3913 + }, + { + "#": 3914 + }, + { + "#": 3915 + }, + { + "#": 3916 + } + ], + { + "x": 347.628, + "y": 547.19, + "index": 0, + "body": { + "#": 3898 + }, + "isInternal": false + }, + { + "x": 345.285, + "y": 552.846, + "index": 1, + "body": { + "#": 3898 + }, + "isInternal": false + }, + { + "x": 340.956, + "y": 557.175, + "index": 2, + "body": { + "#": 3898 + }, + "isInternal": false + }, + { + "x": 335.3, + "y": 559.518, + "index": 3, + "body": { + "#": 3898 + }, + "isInternal": false + }, + { + "x": 329.178, + "y": 559.518, + "index": 4, + "body": { + "#": 3898 + }, + "isInternal": false + }, + { + "x": 323.522, + "y": 557.175, + "index": 5, + "body": { + "#": 3898 + }, + "isInternal": false + }, + { + "x": 319.193, + "y": 552.846, + "index": 6, + "body": { + "#": 3898 + }, + "isInternal": false + }, + { + "x": 316.85, + "y": 547.19, + "index": 7, + "body": { + "#": 3898 + }, + "isInternal": false + }, + { + "x": 316.85, + "y": 541.068, + "index": 8, + "body": { + "#": 3898 + }, + "isInternal": false + }, + { + "x": 319.193, + "y": 535.412, + "index": 9, + "body": { + "#": 3898 + }, + "isInternal": false + }, + { + "x": 323.522, + "y": 531.083, + "index": 10, + "body": { + "#": 3898 + }, + "isInternal": false + }, + { + "x": 329.178, + "y": 528.74, + "index": 11, + "body": { + "#": 3898 + }, + "isInternal": false + }, + { + "x": 335.3, + "y": 528.74, + "index": 12, + "body": { + "#": 3898 + }, + "isInternal": false + }, + { + "x": 340.956, + "y": 531.083, + "index": 13, + "body": { + "#": 3898 + }, + "isInternal": false + }, + { + "x": 345.285, + "y": 535.412, + "index": 14, + "body": { + "#": 3898 + }, + "isInternal": false + }, + { + "x": 347.628, + "y": 541.068, + "index": 15, + "body": { + "#": 3898 + }, + "isInternal": false + }, + { + "x": 332.239, + "y": 544.129 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3924 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3926 + }, + "max": { + "#": 3927 + } + }, + { + "x": 316.85, + "y": 528.74 + }, + { + "x": 347.628, + "y": 559.518 + }, + { + "x": 332.239, + "y": 544.129 + }, + [ + { + "#": 3930 + }, + { + "#": 3931 + }, + { + "#": 3932 + }, + { + "#": 3933 + }, + { + "#": 3934 + }, + { + "#": 3935 + }, + { + "#": 3936 + }, + { + "#": 3937 + } + ], + { + "x": -0.92387, + "y": -0.38271 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38271, + "y": -0.92387 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38271, + "y": -0.92387 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92387, + "y": -0.38271 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 80, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3939 + }, + "angle": 0, + "vertices": { + "#": 3940 + }, + "position": { + "#": 3965 + }, + "force": { + "#": 3966 + }, + "torque": 0, + "positionImpulse": { + "#": 3967 + }, + "constraintImpulse": { + "#": 3968 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3969 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3970 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3971 + }, + "circleRadius": 22.91326, + "bounds": { + "#": 3973 + }, + "positionPrev": { + "#": 3976 + }, + "anglePrev": 0, + "axes": { + "#": 3977 + }, + "area": 1630.60593, + "mass": 1.63061, + "inverseMass": 0.61327, + "inertia": 1692.73737, + "inverseInertia": 0.00059, + "parent": { + "#": 3938 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3938 + } + ], + [ + { + "#": 3941 + }, + { + "#": 3942 + }, + { + "#": 3943 + }, + { + "#": 3944 + }, + { + "#": 3945 + }, + { + "#": 3946 + }, + { + "#": 3947 + }, + { + "#": 3948 + }, + { + "#": 3949 + }, + { + "#": 3950 + }, + { + "#": 3951 + }, + { + "#": 3952 + }, + { + "#": 3953 + }, + { + "#": 3954 + }, + { + "#": 3955 + }, + { + "#": 3956 + }, + { + "#": 3957 + }, + { + "#": 3958 + }, + { + "#": 3959 + }, + { + "#": 3960 + }, + { + "#": 3961 + }, + { + "#": 3962 + }, + { + "#": 3963 + }, + { + "#": 3964 + } + ], + { + "x": 403.062, + "y": 554.448, + "index": 0, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 401.514, + "y": 560.226, + "index": 1, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 398.523, + "y": 565.406, + "index": 2, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 394.294, + "y": 569.635, + "index": 3, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 389.114, + "y": 572.626, + "index": 4, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 383.336, + "y": 574.174, + "index": 5, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 377.354, + "y": 574.174, + "index": 6, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 371.576, + "y": 572.626, + "index": 7, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 366.396, + "y": 569.635, + "index": 8, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 362.167, + "y": 565.406, + "index": 9, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 359.176, + "y": 560.226, + "index": 10, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 357.628, + "y": 554.448, + "index": 11, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 357.628, + "y": 548.466, + "index": 12, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 359.176, + "y": 542.688, + "index": 13, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 362.167, + "y": 537.508, + "index": 14, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 366.396, + "y": 533.279, + "index": 15, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 371.576, + "y": 530.288, + "index": 16, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 377.354, + "y": 528.74, + "index": 17, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 383.336, + "y": 528.74, + "index": 18, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 389.114, + "y": 530.288, + "index": 19, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 394.294, + "y": 533.279, + "index": 20, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 398.523, + "y": 537.508, + "index": 21, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 401.514, + "y": 542.688, + "index": 22, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 403.062, + "y": 548.466, + "index": 23, + "body": { + "#": 3938 + }, + "isInternal": false + }, + { + "x": 380.345, + "y": 551.457 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3972 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3974 + }, + "max": { + "#": 3975 + } + }, + { + "x": 357.628, + "y": 528.74 + }, + { + "x": 403.062, + "y": 574.174 + }, + { + "x": 380.345, + "y": 551.457 + }, + [ + { + "#": 3978 + }, + { + "#": 3979 + }, + { + "#": 3980 + }, + { + "#": 3981 + }, + { + "#": 3982 + }, + { + "#": 3983 + }, + { + "#": 3984 + }, + { + "#": 3985 + }, + { + "#": 3986 + }, + { + "#": 3987 + }, + { + "#": 3988 + }, + { + "#": 3989 + } + ], + { + "x": -0.96593, + "y": -0.25879 + }, + { + "x": -0.866, + "y": -0.50004 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.50004, + "y": -0.866 + }, + { + "x": -0.25879, + "y": -0.96593 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25879, + "y": -0.96593 + }, + { + "x": 0.50004, + "y": -0.866 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.866, + "y": -0.50004 + }, + { + "x": 0.96593, + "y": -0.25879 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 81, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3991 + }, + "angle": 0, + "vertices": { + "#": 3992 + }, + "position": { + "#": 4019 + }, + "force": { + "#": 4020 + }, + "torque": 0, + "positionImpulse": { + "#": 4021 + }, + "constraintImpulse": { + "#": 4022 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4023 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4024 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4025 + }, + "circleRadius": 24.00984, + "bounds": { + "#": 4027 + }, + "positionPrev": { + "#": 4030 + }, + "anglePrev": 0, + "axes": { + "#": 4031 + }, + "area": 1793.48834, + "mass": 1.79349, + "inverseMass": 0.55757, + "inertia": 2047.79051, + "inverseInertia": 0.00049, + "parent": { + "#": 3990 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3990 + } + ], + [ + { + "#": 3993 + }, + { + "#": 3994 + }, + { + "#": 3995 + }, + { + "#": 3996 + }, + { + "#": 3997 + }, + { + "#": 3998 + }, + { + "#": 3999 + }, + { + "#": 4000 + }, + { + "#": 4001 + }, + { + "#": 4002 + }, + { + "#": 4003 + }, + { + "#": 4004 + }, + { + "#": 4005 + }, + { + "#": 4006 + }, + { + "#": 4007 + }, + { + "#": 4008 + }, + { + "#": 4009 + }, + { + "#": 4010 + }, + { + "#": 4011 + }, + { + "#": 4012 + }, + { + "#": 4013 + }, + { + "#": 4014 + }, + { + "#": 4015 + }, + { + "#": 4016 + }, + { + "#": 4017 + }, + { + "#": 4018 + } + ], + { + "x": 460.732, + "y": 555.644, + "index": 0, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 459.347, + "y": 561.264, + "index": 1, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 456.657, + "y": 566.389, + "index": 2, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 452.818, + "y": 570.722, + "index": 3, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 448.055, + "y": 574.01, + "index": 4, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 442.643, + "y": 576.062, + "index": 5, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 436.897, + "y": 576.76, + "index": 6, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 431.151, + "y": 576.062, + "index": 7, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 425.739, + "y": 574.01, + "index": 8, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 420.976, + "y": 570.722, + "index": 9, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 417.137, + "y": 566.389, + "index": 10, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 414.447, + "y": 561.264, + "index": 11, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 413.062, + "y": 555.644, + "index": 12, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 413.062, + "y": 549.856, + "index": 13, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 414.447, + "y": 544.236, + "index": 14, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 417.137, + "y": 539.111, + "index": 15, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 420.976, + "y": 534.778, + "index": 16, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 425.739, + "y": 531.49, + "index": 17, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 431.151, + "y": 529.438, + "index": 18, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 436.897, + "y": 528.74, + "index": 19, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 442.643, + "y": 529.438, + "index": 20, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 448.055, + "y": 531.49, + "index": 21, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 452.818, + "y": 534.778, + "index": 22, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 456.657, + "y": 539.111, + "index": 23, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 459.347, + "y": 544.236, + "index": 24, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 460.732, + "y": 549.856, + "index": 25, + "body": { + "#": 3990 + }, + "isInternal": false + }, + { + "x": 436.897, + "y": 552.75 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4026 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4028 + }, + "max": { + "#": 4029 + } + }, + { + "x": 413.062, + "y": 528.74 + }, + { + "x": 460.732, + "y": 576.76 + }, + { + "x": 436.897, + "y": 552.75 + }, + [ + { + "#": 4032 + }, + { + "#": 4033 + }, + { + "#": 4034 + }, + { + "#": 4035 + }, + { + "#": 4036 + }, + { + "#": 4037 + }, + { + "#": 4038 + }, + { + "#": 4039 + }, + { + "#": 4040 + }, + { + "#": 4041 + }, + { + "#": 4042 + }, + { + "#": 4043 + }, + { + "#": 4044 + } + ], + { + "x": -0.97095, + "y": -0.23928 + }, + { + "x": -0.88544, + "y": -0.46475 + }, + { + "x": -0.74849, + "y": -0.66315 + }, + { + "x": -0.5681, + "y": -0.82296 + }, + { + "x": -0.35453, + "y": -0.93504 + }, + { + "x": -0.12059, + "y": -0.9927 + }, + { + "x": 0.12059, + "y": -0.9927 + }, + { + "x": 0.35453, + "y": -0.93504 + }, + { + "x": 0.5681, + "y": -0.82296 + }, + { + "x": 0.74849, + "y": -0.66315 + }, + { + "x": 0.88544, + "y": -0.46475 + }, + { + "x": 0.97095, + "y": -0.23928 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 82, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4046 + }, + "angle": 0, + "vertices": { + "#": 4047 + }, + "position": { + "#": 4068 + }, + "force": { + "#": 4069 + }, + "torque": 0, + "positionImpulse": { + "#": 4070 + }, + "constraintImpulse": { + "#": 4071 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4072 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4073 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4074 + }, + "circleRadius": 18.05395, + "bounds": { + "#": 4076 + }, + "positionPrev": { + "#": 4079 + }, + "anglePrev": 0, + "axes": { + "#": 4080 + }, + "area": 1007.22206, + "mass": 1.00722, + "inverseMass": 0.99283, + "inertia": 645.88376, + "inverseInertia": 0.00155, + "parent": { + "#": 4045 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4045 + } + ], + [ + { + "#": 4048 + }, + { + "#": 4049 + }, + { + "#": 4050 + }, + { + "#": 4051 + }, + { + "#": 4052 + }, + { + "#": 4053 + }, + { + "#": 4054 + }, + { + "#": 4055 + }, + { + "#": 4056 + }, + { + "#": 4057 + }, + { + "#": 4058 + }, + { + "#": 4059 + }, + { + "#": 4060 + }, + { + "#": 4061 + }, + { + "#": 4062 + }, + { + "#": 4063 + }, + { + "#": 4064 + }, + { + "#": 4065 + }, + { + "#": 4066 + }, + { + "#": 4067 + } + ], + { + "x": 506.396, + "y": 549.396, + "index": 0, + "body": { + "#": 4045 + }, + "isInternal": false + }, + { + "x": 504.65, + "y": 554.768, + "index": 1, + "body": { + "#": 4045 + }, + "isInternal": false + }, + { + "x": 501.33, + "y": 559.338, + "index": 2, + "body": { + "#": 4045 + }, + "isInternal": false + }, + { + "x": 496.76, + "y": 562.658, + "index": 3, + "body": { + "#": 4045 + }, + "isInternal": false + }, + { + "x": 491.388, + "y": 564.404, + "index": 4, + "body": { + "#": 4045 + }, + "isInternal": false + }, + { + "x": 485.74, + "y": 564.404, + "index": 5, + "body": { + "#": 4045 + }, + "isInternal": false + }, + { + "x": 480.368, + "y": 562.658, + "index": 6, + "body": { + "#": 4045 + }, + "isInternal": false + }, + { + "x": 475.798, + "y": 559.338, + "index": 7, + "body": { + "#": 4045 + }, + "isInternal": false + }, + { + "x": 472.478, + "y": 554.768, + "index": 8, + "body": { + "#": 4045 + }, + "isInternal": false + }, + { + "x": 470.732, + "y": 549.396, + "index": 9, + "body": { + "#": 4045 + }, + "isInternal": false + }, + { + "x": 470.732, + "y": 543.748, + "index": 10, + "body": { + "#": 4045 + }, + "isInternal": false + }, + { + "x": 472.478, + "y": 538.376, + "index": 11, + "body": { + "#": 4045 + }, + "isInternal": false + }, + { + "x": 475.798, + "y": 533.806, + "index": 12, + "body": { + "#": 4045 + }, + "isInternal": false + }, + { + "x": 480.368, + "y": 530.486, + "index": 13, + "body": { + "#": 4045 + }, + "isInternal": false + }, + { + "x": 485.74, + "y": 528.74, + "index": 14, + "body": { + "#": 4045 + }, + "isInternal": false + }, + { + "x": 491.388, + "y": 528.74, + "index": 15, + "body": { + "#": 4045 + }, + "isInternal": false + }, + { + "x": 496.76, + "y": 530.486, + "index": 16, + "body": { + "#": 4045 + }, + "isInternal": false + }, + { + "x": 501.33, + "y": 533.806, + "index": 17, + "body": { + "#": 4045 + }, + "isInternal": false + }, + { + "x": 504.65, + "y": 538.376, + "index": 18, + "body": { + "#": 4045 + }, + "isInternal": false + }, + { + "x": 506.396, + "y": 543.748, + "index": 19, + "body": { + "#": 4045 + }, + "isInternal": false + }, + { + "x": 488.564, + "y": 546.572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4075 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4077 + }, + "max": { + "#": 4078 + } + }, + { + "x": 470.732, + "y": 528.74 + }, + { + "x": 506.396, + "y": 564.404 + }, + { + "x": 488.564, + "y": 546.572 + }, + [ + { + "#": 4081 + }, + { + "#": 4082 + }, + { + "#": 4083 + }, + { + "#": 4084 + }, + { + "#": 4085 + }, + { + "#": 4086 + }, + { + "#": 4087 + }, + { + "#": 4088 + }, + { + "#": 4089 + }, + { + "#": 4090 + } + ], + { + "x": -0.95103, + "y": -0.3091 + }, + { + "x": -0.80904, + "y": -0.58775 + }, + { + "x": -0.58775, + "y": -0.80904 + }, + { + "x": -0.3091, + "y": -0.95103 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3091, + "y": -0.95103 + }, + { + "x": 0.58775, + "y": -0.80904 + }, + { + "x": 0.80904, + "y": -0.58775 + }, + { + "x": 0.95103, + "y": -0.3091 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 83, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4092 + }, + "angle": 0, + "vertices": { + "#": 4093 + }, + "position": { + "#": 4114 + }, + "force": { + "#": 4115 + }, + "torque": 0, + "positionImpulse": { + "#": 4116 + }, + "constraintImpulse": { + "#": 4117 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4118 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4119 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4120 + }, + "circleRadius": 18.56411, + "bounds": { + "#": 4122 + }, + "positionPrev": { + "#": 4125 + }, + "anglePrev": 0, + "axes": { + "#": 4126 + }, + "area": 1064.99136, + "mass": 1.06499, + "inverseMass": 0.93897, + "inertia": 722.09788, + "inverseInertia": 0.00138, + "parent": { + "#": 4091 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4091 + } + ], + [ + { + "#": 4094 + }, + { + "#": 4095 + }, + { + "#": 4096 + }, + { + "#": 4097 + }, + { + "#": 4098 + }, + { + "#": 4099 + }, + { + "#": 4100 + }, + { + "#": 4101 + }, + { + "#": 4102 + }, + { + "#": 4103 + }, + { + "#": 4104 + }, + { + "#": 4105 + }, + { + "#": 4106 + }, + { + "#": 4107 + }, + { + "#": 4108 + }, + { + "#": 4109 + }, + { + "#": 4110 + }, + { + "#": 4111 + }, + { + "#": 4112 + }, + { + "#": 4113 + } + ], + { + "x": 553.068, + "y": 549.98, + "index": 0, + "body": { + "#": 4091 + }, + "isInternal": false + }, + { + "x": 551.273, + "y": 555.504, + "index": 1, + "body": { + "#": 4091 + }, + "isInternal": false + }, + { + "x": 547.859, + "y": 560.203, + "index": 2, + "body": { + "#": 4091 + }, + "isInternal": false + }, + { + "x": 543.16, + "y": 563.617, + "index": 3, + "body": { + "#": 4091 + }, + "isInternal": false + }, + { + "x": 537.636, + "y": 565.412, + "index": 4, + "body": { + "#": 4091 + }, + "isInternal": false + }, + { + "x": 531.828, + "y": 565.412, + "index": 5, + "body": { + "#": 4091 + }, + "isInternal": false + }, + { + "x": 526.304, + "y": 563.617, + "index": 6, + "body": { + "#": 4091 + }, + "isInternal": false + }, + { + "x": 521.605, + "y": 560.203, + "index": 7, + "body": { + "#": 4091 + }, + "isInternal": false + }, + { + "x": 518.191, + "y": 555.504, + "index": 8, + "body": { + "#": 4091 + }, + "isInternal": false + }, + { + "x": 516.396, + "y": 549.98, + "index": 9, + "body": { + "#": 4091 + }, + "isInternal": false + }, + { + "x": 516.396, + "y": 544.172, + "index": 10, + "body": { + "#": 4091 + }, + "isInternal": false + }, + { + "x": 518.191, + "y": 538.648, + "index": 11, + "body": { + "#": 4091 + }, + "isInternal": false + }, + { + "x": 521.605, + "y": 533.949, + "index": 12, + "body": { + "#": 4091 + }, + "isInternal": false + }, + { + "x": 526.304, + "y": 530.535, + "index": 13, + "body": { + "#": 4091 + }, + "isInternal": false + }, + { + "x": 531.828, + "y": 528.74, + "index": 14, + "body": { + "#": 4091 + }, + "isInternal": false + }, + { + "x": 537.636, + "y": 528.74, + "index": 15, + "body": { + "#": 4091 + }, + "isInternal": false + }, + { + "x": 543.16, + "y": 530.535, + "index": 16, + "body": { + "#": 4091 + }, + "isInternal": false + }, + { + "x": 547.859, + "y": 533.949, + "index": 17, + "body": { + "#": 4091 + }, + "isInternal": false + }, + { + "x": 551.273, + "y": 538.648, + "index": 18, + "body": { + "#": 4091 + }, + "isInternal": false + }, + { + "x": 553.068, + "y": 544.172, + "index": 19, + "body": { + "#": 4091 + }, + "isInternal": false + }, + { + "x": 534.732, + "y": 547.076 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4121 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4123 + }, + "max": { + "#": 4124 + } + }, + { + "x": 516.396, + "y": 528.74 + }, + { + "x": 553.068, + "y": 565.412 + }, + { + "x": 534.732, + "y": 547.076 + }, + [ + { + "#": 4127 + }, + { + "#": 4128 + }, + { + "#": 4129 + }, + { + "#": 4130 + }, + { + "#": 4131 + }, + { + "#": 4132 + }, + { + "#": 4133 + }, + { + "#": 4134 + }, + { + "#": 4135 + }, + { + "#": 4136 + } + ], + { + "x": -0.95105, + "y": -0.30904 + }, + { + "x": -0.80902, + "y": -0.58778 + }, + { + "x": -0.58778, + "y": -0.80902 + }, + { + "x": -0.30904, + "y": -0.95105 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30904, + "y": -0.95105 + }, + { + "x": 0.58778, + "y": -0.80902 + }, + { + "x": 0.80902, + "y": -0.58778 + }, + { + "x": 0.95105, + "y": -0.30904 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 84, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4138 + }, + "angle": 0, + "vertices": { + "#": 4139 + }, + "position": { + "#": 4162 + }, + "force": { + "#": 4163 + }, + "torque": 0, + "positionImpulse": { + "#": 4164 + }, + "constraintImpulse": { + "#": 4165 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4166 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4167 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4168 + }, + "circleRadius": 20.16995, + "bounds": { + "#": 4170 + }, + "positionPrev": { + "#": 4173 + }, + "anglePrev": 0, + "axes": { + "#": 4174 + }, + "area": 1260.79066, + "mass": 1.26079, + "inverseMass": 0.79315, + "inertia": 1012.00416, + "inverseInertia": 0.00099, + "parent": { + "#": 4137 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4137 + } + ], + [ + { + "#": 4140 + }, + { + "#": 4141 + }, + { + "#": 4142 + }, + { + "#": 4143 + }, + { + "#": 4144 + }, + { + "#": 4145 + }, + { + "#": 4146 + }, + { + "#": 4147 + }, + { + "#": 4148 + }, + { + "#": 4149 + }, + { + "#": 4150 + }, + { + "#": 4151 + }, + { + "#": 4152 + }, + { + "#": 4153 + }, + { + "#": 4154 + }, + { + "#": 4155 + }, + { + "#": 4156 + }, + { + "#": 4157 + }, + { + "#": 4158 + }, + { + "#": 4159 + }, + { + "#": 4160 + }, + { + "#": 4161 + } + ], + { + "x": 602.998, + "y": 551.78, + "index": 0, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 601.38, + "y": 557.289, + "index": 1, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 598.276, + "y": 562.119, + "index": 2, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 593.938, + "y": 565.878, + "index": 3, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 588.716, + "y": 568.263, + "index": 4, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 583.033, + "y": 569.08, + "index": 5, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 577.35, + "y": 568.263, + "index": 6, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 572.128, + "y": 565.878, + "index": 7, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 567.79, + "y": 562.119, + "index": 8, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 564.686, + "y": 557.289, + "index": 9, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 563.068, + "y": 551.78, + "index": 10, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 563.068, + "y": 546.04, + "index": 11, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 564.686, + "y": 540.531, + "index": 12, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 567.79, + "y": 535.701, + "index": 13, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 572.128, + "y": 531.942, + "index": 14, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 577.35, + "y": 529.557, + "index": 15, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 583.033, + "y": 528.74, + "index": 16, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 588.716, + "y": 529.557, + "index": 17, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 593.938, + "y": 531.942, + "index": 18, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 598.276, + "y": 535.701, + "index": 19, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 601.38, + "y": 540.531, + "index": 20, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 602.998, + "y": 546.04, + "index": 21, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 583.033, + "y": 548.91 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4169 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4171 + }, + "max": { + "#": 4172 + } + }, + { + "x": 563.068, + "y": 528.74 + }, + { + "x": 602.998, + "y": 569.08 + }, + { + "x": 583.033, + "y": 548.91 + }, + [ + { + "#": 4175 + }, + { + "#": 4176 + }, + { + "#": 4177 + }, + { + "#": 4178 + }, + { + "#": 4179 + }, + { + "#": 4180 + }, + { + "#": 4181 + }, + { + "#": 4182 + }, + { + "#": 4183 + }, + { + "#": 4184 + }, + { + "#": 4185 + } + ], + { + "x": -0.95947, + "y": -0.2818 + }, + { + "x": -0.84126, + "y": -0.54063 + }, + { + "x": -0.65487, + "y": -0.75574 + }, + { + "x": -0.41544, + "y": -0.90962 + }, + { + "x": -0.1423, + "y": -0.98982 + }, + { + "x": 0.1423, + "y": -0.98982 + }, + { + "x": 0.41544, + "y": -0.90962 + }, + { + "x": 0.65487, + "y": -0.75574 + }, + { + "x": 0.84126, + "y": -0.54063 + }, + { + "x": 0.95947, + "y": -0.2818 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 85, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4187 + }, + "angle": 0, + "vertices": { + "#": 4188 + }, + "position": { + "#": 4211 + }, + "force": { + "#": 4212 + }, + "torque": 0, + "positionImpulse": { + "#": 4213 + }, + "constraintImpulse": { + "#": 4214 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4215 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4216 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4217 + }, + "circleRadius": 20.27887, + "bounds": { + "#": 4219 + }, + "positionPrev": { + "#": 4222 + }, + "anglePrev": 0, + "axes": { + "#": 4223 + }, + "area": 1274.42431, + "mass": 1.27442, + "inverseMass": 0.78467, + "inertia": 1034.00926, + "inverseInertia": 0.00097, + "parent": { + "#": 4186 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4186 + } + ], + [ + { + "#": 4189 + }, + { + "#": 4190 + }, + { + "#": 4191 + }, + { + "#": 4192 + }, + { + "#": 4193 + }, + { + "#": 4194 + }, + { + "#": 4195 + }, + { + "#": 4196 + }, + { + "#": 4197 + }, + { + "#": 4198 + }, + { + "#": 4199 + }, + { + "#": 4200 + }, + { + "#": 4201 + }, + { + "#": 4202 + }, + { + "#": 4203 + }, + { + "#": 4204 + }, + { + "#": 4205 + }, + { + "#": 4206 + }, + { + "#": 4207 + }, + { + "#": 4208 + }, + { + "#": 4209 + }, + { + "#": 4210 + } + ], + { + "x": 140.144, + "y": 619.485, + "index": 0, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 138.518, + "y": 625.023, + "index": 1, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 135.398, + "y": 629.879, + "index": 2, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 131.036, + "y": 633.659, + "index": 3, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 125.785, + "y": 636.056, + "index": 4, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 120.072, + "y": 636.878, + "index": 5, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 114.359, + "y": 636.056, + "index": 6, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 109.108, + "y": 633.659, + "index": 7, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 104.746, + "y": 629.879, + "index": 8, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 101.626, + "y": 625.023, + "index": 9, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 100, + "y": 619.485, + "index": 10, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 100, + "y": 613.713, + "index": 11, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 101.626, + "y": 608.175, + "index": 12, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 104.746, + "y": 603.319, + "index": 13, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 109.108, + "y": 599.539, + "index": 14, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 114.359, + "y": 597.142, + "index": 15, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 120.072, + "y": 596.32, + "index": 16, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 125.785, + "y": 597.142, + "index": 17, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 131.036, + "y": 599.539, + "index": 18, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 135.398, + "y": 603.319, + "index": 19, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 138.518, + "y": 608.175, + "index": 20, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 140.144, + "y": 613.713, + "index": 21, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 120.072, + "y": 616.599 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4218 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4220 + }, + "max": { + "#": 4221 + } + }, + { + "x": 100, + "y": 596.32 + }, + { + "x": 140.144, + "y": 636.878 + }, + { + "x": 120.072, + "y": 616.599 + }, + [ + { + "#": 4224 + }, + { + "#": 4225 + }, + { + "#": 4226 + }, + { + "#": 4227 + }, + { + "#": 4228 + }, + { + "#": 4229 + }, + { + "#": 4230 + }, + { + "#": 4231 + }, + { + "#": 4232 + }, + { + "#": 4233 + }, + { + "#": 4234 + } + ], + { + "x": -0.9595, + "y": -0.28172 + }, + { + "x": -0.84131, + "y": -0.54055 + }, + { + "x": -0.65489, + "y": -0.75572 + }, + { + "x": -0.41526, + "y": -0.9097 + }, + { + "x": -0.14242, + "y": -0.98981 + }, + { + "x": 0.14242, + "y": -0.98981 + }, + { + "x": 0.41526, + "y": -0.9097 + }, + { + "x": 0.65489, + "y": -0.75572 + }, + { + "x": 0.84131, + "y": -0.54055 + }, + { + "x": 0.9595, + "y": -0.28172 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 86, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4236 + }, + "angle": 0, + "vertices": { + "#": 4237 + }, + "position": { + "#": 4260 + }, + "force": { + "#": 4261 + }, + "torque": 0, + "positionImpulse": { + "#": 4262 + }, + "constraintImpulse": { + "#": 4263 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4264 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4265 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4266 + }, + "circleRadius": 20.74273, + "bounds": { + "#": 4268 + }, + "positionPrev": { + "#": 4271 + }, + "anglePrev": 0, + "axes": { + "#": 4272 + }, + "area": 1333.4219, + "mass": 1.33342, + "inverseMass": 0.74995, + "inertia": 1131.96109, + "inverseInertia": 0.00088, + "parent": { + "#": 4235 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4235 + } + ], + [ + { + "#": 4238 + }, + { + "#": 4239 + }, + { + "#": 4240 + }, + { + "#": 4241 + }, + { + "#": 4242 + }, + { + "#": 4243 + }, + { + "#": 4244 + }, + { + "#": 4245 + }, + { + "#": 4246 + }, + { + "#": 4247 + }, + { + "#": 4248 + }, + { + "#": 4249 + }, + { + "#": 4250 + }, + { + "#": 4251 + }, + { + "#": 4252 + }, + { + "#": 4253 + }, + { + "#": 4254 + }, + { + "#": 4255 + }, + { + "#": 4256 + }, + { + "#": 4257 + }, + { + "#": 4258 + }, + { + "#": 4259 + } + ], + { + "x": 191.208, + "y": 620.015, + "index": 0, + "body": { + "#": 4235 + }, + "isInternal": false + }, + { + "x": 189.544, + "y": 625.68, + "index": 1, + "body": { + "#": 4235 + }, + "isInternal": false + }, + { + "x": 186.352, + "y": 630.647, + "index": 2, + "body": { + "#": 4235 + }, + "isInternal": false + }, + { + "x": 181.89, + "y": 634.513, + "index": 3, + "body": { + "#": 4235 + }, + "isInternal": false + }, + { + "x": 176.52, + "y": 636.966, + "index": 4, + "body": { + "#": 4235 + }, + "isInternal": false + }, + { + "x": 170.676, + "y": 637.806, + "index": 5, + "body": { + "#": 4235 + }, + "isInternal": false + }, + { + "x": 164.832, + "y": 636.966, + "index": 6, + "body": { + "#": 4235 + }, + "isInternal": false + }, + { + "x": 159.462, + "y": 634.513, + "index": 7, + "body": { + "#": 4235 + }, + "isInternal": false + }, + { + "x": 155, + "y": 630.647, + "index": 8, + "body": { + "#": 4235 + }, + "isInternal": false + }, + { + "x": 151.808, + "y": 625.68, + "index": 9, + "body": { + "#": 4235 + }, + "isInternal": false + }, + { + "x": 150.144, + "y": 620.015, + "index": 10, + "body": { + "#": 4235 + }, + "isInternal": false + }, + { + "x": 150.144, + "y": 614.111, + "index": 11, + "body": { + "#": 4235 + }, + "isInternal": false + }, + { + "x": 151.808, + "y": 608.446, + "index": 12, + "body": { + "#": 4235 + }, + "isInternal": false + }, + { + "x": 155, + "y": 603.479, + "index": 13, + "body": { + "#": 4235 + }, + "isInternal": false + }, + { + "x": 159.462, + "y": 599.613, + "index": 14, + "body": { + "#": 4235 + }, + "isInternal": false + }, + { + "x": 164.832, + "y": 597.16, + "index": 15, + "body": { + "#": 4235 + }, + "isInternal": false + }, + { + "x": 170.676, + "y": 596.32, + "index": 16, + "body": { + "#": 4235 + }, + "isInternal": false + }, + { + "x": 176.52, + "y": 597.16, + "index": 17, + "body": { + "#": 4235 + }, + "isInternal": false + }, + { + "x": 181.89, + "y": 599.613, + "index": 18, + "body": { + "#": 4235 + }, + "isInternal": false + }, + { + "x": 186.352, + "y": 603.479, + "index": 19, + "body": { + "#": 4235 + }, + "isInternal": false + }, + { + "x": 189.544, + "y": 608.446, + "index": 20, + "body": { + "#": 4235 + }, + "isInternal": false + }, + { + "x": 191.208, + "y": 614.111, + "index": 21, + "body": { + "#": 4235 + }, + "isInternal": false + }, + { + "x": 170.676, + "y": 617.063 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4267 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4269 + }, + "max": { + "#": 4270 + } + }, + { + "x": 150.144, + "y": 596.32 + }, + { + "x": 191.208, + "y": 637.806 + }, + { + "x": 170.676, + "y": 617.063 + }, + [ + { + "#": 4273 + }, + { + "#": 4274 + }, + { + "#": 4275 + }, + { + "#": 4276 + }, + { + "#": 4277 + }, + { + "#": 4278 + }, + { + "#": 4279 + }, + { + "#": 4280 + }, + { + "#": 4281 + }, + { + "#": 4282 + }, + { + "#": 4283 + } + ], + { + "x": -0.95947, + "y": -0.28183 + }, + { + "x": -0.84126, + "y": -0.54063 + }, + { + "x": -0.65483, + "y": -0.75578 + }, + { + "x": -0.4155, + "y": -0.90959 + }, + { + "x": -0.14227, + "y": -0.98983 + }, + { + "x": 0.14227, + "y": -0.98983 + }, + { + "x": 0.4155, + "y": -0.90959 + }, + { + "x": 0.65483, + "y": -0.75578 + }, + { + "x": 0.84126, + "y": -0.54063 + }, + { + "x": 0.95947, + "y": -0.28183 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 87, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4285 + }, + "angle": 0, + "vertices": { + "#": 4286 + }, + "position": { + "#": 4313 + }, + "force": { + "#": 4314 + }, + "torque": 0, + "positionImpulse": { + "#": 4315 + }, + "constraintImpulse": { + "#": 4316 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4317 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4318 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4319 + }, + "circleRadius": 24.5245, + "bounds": { + "#": 4321 + }, + "positionPrev": { + "#": 4324 + }, + "anglePrev": 0, + "axes": { + "#": 4325 + }, + "area": 1871.18792, + "mass": 1.87119, + "inverseMass": 0.53442, + "inertia": 2229.06749, + "inverseInertia": 0.00045, + "parent": { + "#": 4284 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4284 + } + ], + [ + { + "#": 4287 + }, + { + "#": 4288 + }, + { + "#": 4289 + }, + { + "#": 4290 + }, + { + "#": 4291 + }, + { + "#": 4292 + }, + { + "#": 4293 + }, + { + "#": 4294 + }, + { + "#": 4295 + }, + { + "#": 4296 + }, + { + "#": 4297 + }, + { + "#": 4298 + }, + { + "#": 4299 + }, + { + "#": 4300 + }, + { + "#": 4301 + }, + { + "#": 4302 + }, + { + "#": 4303 + }, + { + "#": 4304 + }, + { + "#": 4305 + }, + { + "#": 4306 + }, + { + "#": 4307 + }, + { + "#": 4308 + }, + { + "#": 4309 + }, + { + "#": 4310 + }, + { + "#": 4311 + }, + { + "#": 4312 + } + ], + { + "x": 249.9, + "y": 623.8, + "index": 0, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 248.485, + "y": 629.541, + "index": 1, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 245.737, + "y": 634.776, + "index": 2, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 241.817, + "y": 639.201, + "index": 3, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 236.951, + "y": 642.559, + "index": 4, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 231.423, + "y": 644.656, + "index": 5, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 225.554, + "y": 645.368, + "index": 6, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 219.685, + "y": 644.656, + "index": 7, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 214.157, + "y": 642.559, + "index": 8, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 209.291, + "y": 639.201, + "index": 9, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 205.371, + "y": 634.776, + "index": 10, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 202.623, + "y": 629.541, + "index": 11, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 201.208, + "y": 623.8, + "index": 12, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 201.208, + "y": 617.888, + "index": 13, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 202.623, + "y": 612.147, + "index": 14, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 205.371, + "y": 606.912, + "index": 15, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 209.291, + "y": 602.487, + "index": 16, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 214.157, + "y": 599.129, + "index": 17, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 219.685, + "y": 597.032, + "index": 18, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 225.554, + "y": 596.32, + "index": 19, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 231.423, + "y": 597.032, + "index": 20, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 236.951, + "y": 599.129, + "index": 21, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 241.817, + "y": 602.487, + "index": 22, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 245.737, + "y": 606.912, + "index": 23, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 248.485, + "y": 612.147, + "index": 24, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 249.9, + "y": 617.888, + "index": 25, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 225.554, + "y": 620.844 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4320 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4322 + }, + "max": { + "#": 4323 + } + }, + { + "x": 201.208, + "y": 596.32 + }, + { + "x": 249.9, + "y": 645.368 + }, + { + "x": 225.554, + "y": 620.844 + }, + [ + { + "#": 4326 + }, + { + "#": 4327 + }, + { + "#": 4328 + }, + { + "#": 4329 + }, + { + "#": 4330 + }, + { + "#": 4331 + }, + { + "#": 4332 + }, + { + "#": 4333 + }, + { + "#": 4334 + }, + { + "#": 4335 + }, + { + "#": 4336 + }, + { + "#": 4337 + }, + { + "#": 4338 + } + ], + { + "x": -0.97094, + "y": -0.23931 + }, + { + "x": -0.88542, + "y": -0.46478 + }, + { + "x": -0.74853, + "y": -0.6631 + }, + { + "x": -0.56798, + "y": -0.82304 + }, + { + "x": -0.35468, + "y": -0.93499 + }, + { + "x": -0.12043, + "y": -0.99272 + }, + { + "x": 0.12043, + "y": -0.99272 + }, + { + "x": 0.35468, + "y": -0.93499 + }, + { + "x": 0.56798, + "y": -0.82304 + }, + { + "x": 0.74853, + "y": -0.6631 + }, + { + "x": 0.88542, + "y": -0.46478 + }, + { + "x": 0.97094, + "y": -0.23931 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 88, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4340 + }, + "angle": 0, + "vertices": { + "#": 4341 + }, + "position": { + "#": 4368 + }, + "force": { + "#": 4369 + }, + "torque": 0, + "positionImpulse": { + "#": 4370 + }, + "constraintImpulse": { + "#": 4371 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4372 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4373 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4374 + }, + "circleRadius": 27.3649, + "bounds": { + "#": 4376 + }, + "positionPrev": { + "#": 4379 + }, + "anglePrev": 0, + "axes": { + "#": 4380 + }, + "area": 2329.70936, + "mass": 2.32971, + "inverseMass": 0.42924, + "inertia": 3455.34885, + "inverseInertia": 0.00029, + "parent": { + "#": 4339 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4339 + } + ], + [ + { + "#": 4342 + }, + { + "#": 4343 + }, + { + "#": 4344 + }, + { + "#": 4345 + }, + { + "#": 4346 + }, + { + "#": 4347 + }, + { + "#": 4348 + }, + { + "#": 4349 + }, + { + "#": 4350 + }, + { + "#": 4351 + }, + { + "#": 4352 + }, + { + "#": 4353 + }, + { + "#": 4354 + }, + { + "#": 4355 + }, + { + "#": 4356 + }, + { + "#": 4357 + }, + { + "#": 4358 + }, + { + "#": 4359 + }, + { + "#": 4360 + }, + { + "#": 4361 + }, + { + "#": 4362 + }, + { + "#": 4363 + }, + { + "#": 4364 + }, + { + "#": 4365 + }, + { + "#": 4366 + }, + { + "#": 4367 + } + ], + { + "x": 314.23, + "y": 626.983, + "index": 0, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 312.652, + "y": 633.389, + "index": 1, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 309.586, + "y": 639.23, + "index": 2, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 305.211, + "y": 644.168, + "index": 3, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 299.782, + "y": 647.915, + "index": 4, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 293.614, + "y": 650.255, + "index": 5, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 287.065, + "y": 651.05, + "index": 6, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 280.516, + "y": 650.255, + "index": 7, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 274.348, + "y": 647.915, + "index": 8, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 268.919, + "y": 644.168, + "index": 9, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 264.544, + "y": 639.23, + "index": 10, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 261.478, + "y": 633.389, + "index": 11, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 259.9, + "y": 626.983, + "index": 12, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 259.9, + "y": 620.387, + "index": 13, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 261.478, + "y": 613.981, + "index": 14, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 264.544, + "y": 608.14, + "index": 15, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 268.919, + "y": 603.202, + "index": 16, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 274.348, + "y": 599.455, + "index": 17, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 280.516, + "y": 597.115, + "index": 18, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 287.065, + "y": 596.32, + "index": 19, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 293.614, + "y": 597.115, + "index": 20, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 299.782, + "y": 599.455, + "index": 21, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 305.211, + "y": 603.202, + "index": 22, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 309.586, + "y": 608.14, + "index": 23, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 312.652, + "y": 613.981, + "index": 24, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 314.23, + "y": 620.387, + "index": 25, + "body": { + "#": 4339 + }, + "isInternal": false + }, + { + "x": 287.065, + "y": 623.685 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4375 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4377 + }, + "max": { + "#": 4378 + } + }, + { + "x": 259.9, + "y": 596.32 + }, + { + "x": 314.23, + "y": 651.05 + }, + { + "x": 287.065, + "y": 623.685 + }, + [ + { + "#": 4381 + }, + { + "#": 4382 + }, + { + "#": 4383 + }, + { + "#": 4384 + }, + { + "#": 4385 + }, + { + "#": 4386 + }, + { + "#": 4387 + }, + { + "#": 4388 + }, + { + "#": 4389 + }, + { + "#": 4390 + }, + { + "#": 4391 + }, + { + "#": 4392 + }, + { + "#": 4393 + } + ], + { + "x": -0.97097, + "y": -0.23918 + }, + { + "x": -0.88543, + "y": -0.46477 + }, + { + "x": -0.74849, + "y": -0.66315 + }, + { + "x": -0.56803, + "y": -0.82301 + }, + { + "x": -0.35471, + "y": -0.93498 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35471, + "y": -0.93498 + }, + { + "x": 0.56803, + "y": -0.82301 + }, + { + "x": 0.74849, + "y": -0.66315 + }, + { + "x": 0.88543, + "y": -0.46477 + }, + { + "x": 0.97097, + "y": -0.23918 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 89, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4395 + }, + "angle": 0, + "vertices": { + "#": 4396 + }, + "position": { + "#": 4417 + }, + "force": { + "#": 4418 + }, + "torque": 0, + "positionImpulse": { + "#": 4419 + }, + "constraintImpulse": { + "#": 4420 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4421 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4422 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4423 + }, + "circleRadius": 19.44914, + "bounds": { + "#": 4425 + }, + "positionPrev": { + "#": 4428 + }, + "anglePrev": 0, + "axes": { + "#": 4429 + }, + "area": 1168.93972, + "mass": 1.16894, + "inverseMass": 0.85548, + "inertia": 869.93767, + "inverseInertia": 0.00115, + "parent": { + "#": 4394 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4394 + } + ], + [ + { + "#": 4397 + }, + { + "#": 4398 + }, + { + "#": 4399 + }, + { + "#": 4400 + }, + { + "#": 4401 + }, + { + "#": 4402 + }, + { + "#": 4403 + }, + { + "#": 4404 + }, + { + "#": 4405 + }, + { + "#": 4406 + }, + { + "#": 4407 + }, + { + "#": 4408 + }, + { + "#": 4409 + }, + { + "#": 4410 + }, + { + "#": 4411 + }, + { + "#": 4412 + }, + { + "#": 4413 + }, + { + "#": 4414 + }, + { + "#": 4415 + }, + { + "#": 4416 + } + ], + { + "x": 362.65, + "y": 618.573, + "index": 0, + "body": { + "#": 4394 + }, + "isInternal": false + }, + { + "x": 360.769, + "y": 624.36, + "index": 1, + "body": { + "#": 4394 + }, + "isInternal": false + }, + { + "x": 357.193, + "y": 629.283, + "index": 2, + "body": { + "#": 4394 + }, + "isInternal": false + }, + { + "x": 352.27, + "y": 632.859, + "index": 3, + "body": { + "#": 4394 + }, + "isInternal": false + }, + { + "x": 346.483, + "y": 634.74, + "index": 4, + "body": { + "#": 4394 + }, + "isInternal": false + }, + { + "x": 340.397, + "y": 634.74, + "index": 5, + "body": { + "#": 4394 + }, + "isInternal": false + }, + { + "x": 334.61, + "y": 632.859, + "index": 6, + "body": { + "#": 4394 + }, + "isInternal": false + }, + { + "x": 329.687, + "y": 629.283, + "index": 7, + "body": { + "#": 4394 + }, + "isInternal": false + }, + { + "x": 326.111, + "y": 624.36, + "index": 8, + "body": { + "#": 4394 + }, + "isInternal": false + }, + { + "x": 324.23, + "y": 618.573, + "index": 9, + "body": { + "#": 4394 + }, + "isInternal": false + }, + { + "x": 324.23, + "y": 612.487, + "index": 10, + "body": { + "#": 4394 + }, + "isInternal": false + }, + { + "x": 326.111, + "y": 606.7, + "index": 11, + "body": { + "#": 4394 + }, + "isInternal": false + }, + { + "x": 329.687, + "y": 601.777, + "index": 12, + "body": { + "#": 4394 + }, + "isInternal": false + }, + { + "x": 334.61, + "y": 598.201, + "index": 13, + "body": { + "#": 4394 + }, + "isInternal": false + }, + { + "x": 340.397, + "y": 596.32, + "index": 14, + "body": { + "#": 4394 + }, + "isInternal": false + }, + { + "x": 346.483, + "y": 596.32, + "index": 15, + "body": { + "#": 4394 + }, + "isInternal": false + }, + { + "x": 352.27, + "y": 598.201, + "index": 16, + "body": { + "#": 4394 + }, + "isInternal": false + }, + { + "x": 357.193, + "y": 601.777, + "index": 17, + "body": { + "#": 4394 + }, + "isInternal": false + }, + { + "x": 360.769, + "y": 606.7, + "index": 18, + "body": { + "#": 4394 + }, + "isInternal": false + }, + { + "x": 362.65, + "y": 612.487, + "index": 19, + "body": { + "#": 4394 + }, + "isInternal": false + }, + { + "x": 343.44, + "y": 615.53 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4424 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4426 + }, + "max": { + "#": 4427 + } + }, + { + "x": 324.23, + "y": 596.32 + }, + { + "x": 362.65, + "y": 634.74 + }, + { + "x": 343.44, + "y": 615.53 + }, + [ + { + "#": 4430 + }, + { + "#": 4431 + }, + { + "#": 4432 + }, + { + "#": 4433 + }, + { + "#": 4434 + }, + { + "#": 4435 + }, + { + "#": 4436 + }, + { + "#": 4437 + }, + { + "#": 4438 + }, + { + "#": 4439 + } + ], + { + "x": -0.95102, + "y": -0.30912 + }, + { + "x": -0.80908, + "y": -0.5877 + }, + { + "x": -0.5877, + "y": -0.80908 + }, + { + "x": -0.30912, + "y": -0.95102 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30912, + "y": -0.95102 + }, + { + "x": 0.5877, + "y": -0.80908 + }, + { + "x": 0.80908, + "y": -0.5877 + }, + { + "x": 0.95102, + "y": -0.30912 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 90, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4441 + }, + "angle": 0, + "vertices": { + "#": 4442 + }, + "position": { + "#": 4469 + }, + "force": { + "#": 4470 + }, + "torque": 0, + "positionImpulse": { + "#": 4471 + }, + "constraintImpulse": { + "#": 4472 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4473 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4474 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4475 + }, + "circleRadius": 27.0735, + "bounds": { + "#": 4477 + }, + "positionPrev": { + "#": 4480 + }, + "anglePrev": 0, + "axes": { + "#": 4481 + }, + "area": 2280.33518, + "mass": 2.28034, + "inverseMass": 0.43853, + "inertia": 3310.44048, + "inverseInertia": 0.0003, + "parent": { + "#": 4440 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4440 + } + ], + [ + { + "#": 4443 + }, + { + "#": 4444 + }, + { + "#": 4445 + }, + { + "#": 4446 + }, + { + "#": 4447 + }, + { + "#": 4448 + }, + { + "#": 4449 + }, + { + "#": 4450 + }, + { + "#": 4451 + }, + { + "#": 4452 + }, + { + "#": 4453 + }, + { + "#": 4454 + }, + { + "#": 4455 + }, + { + "#": 4456 + }, + { + "#": 4457 + }, + { + "#": 4458 + }, + { + "#": 4459 + }, + { + "#": 4460 + }, + { + "#": 4461 + }, + { + "#": 4462 + }, + { + "#": 4463 + }, + { + "#": 4464 + }, + { + "#": 4465 + }, + { + "#": 4466 + }, + { + "#": 4467 + }, + { + "#": 4468 + } + ], + { + "x": 426.402, + "y": 626.656, + "index": 0, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 424.84, + "y": 632.993, + "index": 1, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 421.807, + "y": 638.772, + "index": 2, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 417.479, + "y": 643.658, + "index": 3, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 412.108, + "y": 647.365, + "index": 4, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 406.005, + "y": 649.68, + "index": 5, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 399.526, + "y": 650.466, + "index": 6, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 393.047, + "y": 649.68, + "index": 7, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 386.944, + "y": 647.365, + "index": 8, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 381.573, + "y": 643.658, + "index": 9, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 377.245, + "y": 638.772, + "index": 10, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 374.212, + "y": 632.993, + "index": 11, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 372.65, + "y": 626.656, + "index": 12, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 372.65, + "y": 620.13, + "index": 13, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 374.212, + "y": 613.793, + "index": 14, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 377.245, + "y": 608.014, + "index": 15, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 381.573, + "y": 603.128, + "index": 16, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 386.944, + "y": 599.421, + "index": 17, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 393.047, + "y": 597.106, + "index": 18, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 399.526, + "y": 596.32, + "index": 19, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 406.005, + "y": 597.106, + "index": 20, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 412.108, + "y": 599.421, + "index": 21, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 417.479, + "y": 603.128, + "index": 22, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 421.807, + "y": 608.014, + "index": 23, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 424.84, + "y": 613.793, + "index": 24, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 426.402, + "y": 620.13, + "index": 25, + "body": { + "#": 4440 + }, + "isInternal": false + }, + { + "x": 399.526, + "y": 623.393 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4476 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4478 + }, + "max": { + "#": 4479 + } + }, + { + "x": 372.65, + "y": 596.32 + }, + { + "x": 426.402, + "y": 650.466 + }, + { + "x": 399.526, + "y": 623.393 + }, + [ + { + "#": 4482 + }, + { + "#": 4483 + }, + { + "#": 4484 + }, + { + "#": 4485 + }, + { + "#": 4486 + }, + { + "#": 4487 + }, + { + "#": 4488 + }, + { + "#": 4489 + }, + { + "#": 4490 + }, + { + "#": 4491 + }, + { + "#": 4492 + }, + { + "#": 4493 + }, + { + "#": 4494 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88546, + "y": -0.46472 + }, + { + "x": -0.74856, + "y": -0.66307 + }, + { + "x": -0.56803, + "y": -0.82301 + }, + { + "x": -0.35466, + "y": -0.93499 + }, + { + "x": -0.12043, + "y": -0.99272 + }, + { + "x": 0.12043, + "y": -0.99272 + }, + { + "x": 0.35466, + "y": -0.93499 + }, + { + "x": 0.56803, + "y": -0.82301 + }, + { + "x": 0.74856, + "y": -0.66307 + }, + { + "x": 0.88546, + "y": -0.46472 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 91, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4496 + }, + "angle": 0, + "vertices": { + "#": 4497 + }, + "position": { + "#": 4524 + }, + "force": { + "#": 4525 + }, + "torque": 0, + "positionImpulse": { + "#": 4526 + }, + "constraintImpulse": { + "#": 4527 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4528 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4529 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4530 + }, + "circleRadius": 29.31205, + "bounds": { + "#": 4532 + }, + "positionPrev": { + "#": 4535 + }, + "anglePrev": 0, + "axes": { + "#": 4536 + }, + "area": 2673.00735, + "mass": 2.67301, + "inverseMass": 0.37411, + "inertia": 4548.71486, + "inverseInertia": 0.00022, + "parent": { + "#": 4495 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4495 + } + ], + [ + { + "#": 4498 + }, + { + "#": 4499 + }, + { + "#": 4500 + }, + { + "#": 4501 + }, + { + "#": 4502 + }, + { + "#": 4503 + }, + { + "#": 4504 + }, + { + "#": 4505 + }, + { + "#": 4506 + }, + { + "#": 4507 + }, + { + "#": 4508 + }, + { + "#": 4509 + }, + { + "#": 4510 + }, + { + "#": 4511 + }, + { + "#": 4512 + }, + { + "#": 4513 + }, + { + "#": 4514 + }, + { + "#": 4515 + }, + { + "#": 4516 + }, + { + "#": 4517 + }, + { + "#": 4518 + }, + { + "#": 4519 + }, + { + "#": 4520 + }, + { + "#": 4521 + }, + { + "#": 4522 + }, + { + "#": 4523 + } + ], + { + "x": 494.598, + "y": 629.165, + "index": 0, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 492.907, + "y": 636.026, + "index": 1, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 489.623, + "y": 642.283, + "index": 2, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 484.937, + "y": 647.572, + "index": 3, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 479.122, + "y": 651.587, + "index": 4, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 472.515, + "y": 654.092, + "index": 5, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 465.5, + "y": 654.944, + "index": 6, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 458.485, + "y": 654.092, + "index": 7, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 451.878, + "y": 651.587, + "index": 8, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 446.063, + "y": 647.572, + "index": 9, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 441.377, + "y": 642.283, + "index": 10, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 438.093, + "y": 636.026, + "index": 11, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 436.402, + "y": 629.165, + "index": 12, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 436.402, + "y": 622.099, + "index": 13, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 438.093, + "y": 615.238, + "index": 14, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 441.377, + "y": 608.981, + "index": 15, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 446.063, + "y": 603.692, + "index": 16, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 451.878, + "y": 599.677, + "index": 17, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 458.485, + "y": 597.172, + "index": 18, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 465.5, + "y": 596.32, + "index": 19, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 472.515, + "y": 597.172, + "index": 20, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 479.122, + "y": 599.677, + "index": 21, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 484.937, + "y": 603.692, + "index": 22, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 489.623, + "y": 608.981, + "index": 23, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 492.907, + "y": 615.238, + "index": 24, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 494.598, + "y": 622.099, + "index": 25, + "body": { + "#": 4495 + }, + "isInternal": false + }, + { + "x": 465.5, + "y": 625.632 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4531 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4533 + }, + "max": { + "#": 4534 + } + }, + { + "x": 436.402, + "y": 596.32 + }, + { + "x": 494.598, + "y": 654.944 + }, + { + "x": 465.5, + "y": 625.632 + }, + [ + { + "#": 4537 + }, + { + "#": 4538 + }, + { + "#": 4539 + }, + { + "#": 4540 + }, + { + "#": 4541 + }, + { + "#": 4542 + }, + { + "#": 4543 + }, + { + "#": 4544 + }, + { + "#": 4545 + }, + { + "#": 4546 + }, + { + "#": 4547 + }, + { + "#": 4548 + }, + { + "#": 4549 + } + ], + { + "x": -0.97094, + "y": -0.2393 + }, + { + "x": -0.88545, + "y": -0.46473 + }, + { + "x": -0.74849, + "y": -0.66315 + }, + { + "x": -0.56818, + "y": -0.8229 + }, + { + "x": -0.35452, + "y": -0.93505 + }, + { + "x": -0.12057, + "y": -0.99271 + }, + { + "x": 0.12057, + "y": -0.99271 + }, + { + "x": 0.35452, + "y": -0.93505 + }, + { + "x": 0.56818, + "y": -0.8229 + }, + { + "x": 0.74849, + "y": -0.66315 + }, + { + "x": 0.88545, + "y": -0.46473 + }, + { + "x": 0.97094, + "y": -0.2393 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 92, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4551 + }, + "angle": 0, + "vertices": { + "#": 4552 + }, + "position": { + "#": 4573 + }, + "force": { + "#": 4574 + }, + "torque": 0, + "positionImpulse": { + "#": 4575 + }, + "constraintImpulse": { + "#": 4576 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4577 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4578 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4579 + }, + "circleRadius": 19.68332, + "bounds": { + "#": 4581 + }, + "positionPrev": { + "#": 4584 + }, + "anglePrev": 0, + "axes": { + "#": 4585 + }, + "area": 1197.227, + "mass": 1.19723, + "inverseMass": 0.83526, + "inertia": 912.5505, + "inverseInertia": 0.0011, + "parent": { + "#": 4550 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4550 + } + ], + [ + { + "#": 4553 + }, + { + "#": 4554 + }, + { + "#": 4555 + }, + { + "#": 4556 + }, + { + "#": 4557 + }, + { + "#": 4558 + }, + { + "#": 4559 + }, + { + "#": 4560 + }, + { + "#": 4561 + }, + { + "#": 4562 + }, + { + "#": 4563 + }, + { + "#": 4564 + }, + { + "#": 4565 + }, + { + "#": 4566 + }, + { + "#": 4567 + }, + { + "#": 4568 + }, + { + "#": 4569 + }, + { + "#": 4570 + }, + { + "#": 4571 + }, + { + "#": 4572 + } + ], + { + "x": 543.48, + "y": 618.84, + "index": 0, + "body": { + "#": 4550 + }, + "isInternal": false + }, + { + "x": 541.577, + "y": 624.697, + "index": 1, + "body": { + "#": 4550 + }, + "isInternal": false + }, + { + "x": 537.957, + "y": 629.679, + "index": 2, + "body": { + "#": 4550 + }, + "isInternal": false + }, + { + "x": 532.975, + "y": 633.299, + "index": 3, + "body": { + "#": 4550 + }, + "isInternal": false + }, + { + "x": 527.118, + "y": 635.202, + "index": 4, + "body": { + "#": 4550 + }, + "isInternal": false + }, + { + "x": 520.96, + "y": 635.202, + "index": 5, + "body": { + "#": 4550 + }, + "isInternal": false + }, + { + "x": 515.103, + "y": 633.299, + "index": 6, + "body": { + "#": 4550 + }, + "isInternal": false + }, + { + "x": 510.121, + "y": 629.679, + "index": 7, + "body": { + "#": 4550 + }, + "isInternal": false + }, + { + "x": 506.501, + "y": 624.697, + "index": 8, + "body": { + "#": 4550 + }, + "isInternal": false + }, + { + "x": 504.598, + "y": 618.84, + "index": 9, + "body": { + "#": 4550 + }, + "isInternal": false + }, + { + "x": 504.598, + "y": 612.682, + "index": 10, + "body": { + "#": 4550 + }, + "isInternal": false + }, + { + "x": 506.501, + "y": 606.825, + "index": 11, + "body": { + "#": 4550 + }, + "isInternal": false + }, + { + "x": 510.121, + "y": 601.843, + "index": 12, + "body": { + "#": 4550 + }, + "isInternal": false + }, + { + "x": 515.103, + "y": 598.223, + "index": 13, + "body": { + "#": 4550 + }, + "isInternal": false + }, + { + "x": 520.96, + "y": 596.32, + "index": 14, + "body": { + "#": 4550 + }, + "isInternal": false + }, + { + "x": 527.118, + "y": 596.32, + "index": 15, + "body": { + "#": 4550 + }, + "isInternal": false + }, + { + "x": 532.975, + "y": 598.223, + "index": 16, + "body": { + "#": 4550 + }, + "isInternal": false + }, + { + "x": 537.957, + "y": 601.843, + "index": 17, + "body": { + "#": 4550 + }, + "isInternal": false + }, + { + "x": 541.577, + "y": 606.825, + "index": 18, + "body": { + "#": 4550 + }, + "isInternal": false + }, + { + "x": 543.48, + "y": 612.682, + "index": 19, + "body": { + "#": 4550 + }, + "isInternal": false + }, + { + "x": 524.039, + "y": 615.761 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4580 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4582 + }, + "max": { + "#": 4583 + } + }, + { + "x": 504.598, + "y": 596.32 + }, + { + "x": 543.48, + "y": 635.202 + }, + { + "x": 524.039, + "y": 615.761 + }, + [ + { + "#": 4586 + }, + { + "#": 4587 + }, + { + "#": 4588 + }, + { + "#": 4589 + }, + { + "#": 4590 + }, + { + "#": 4591 + }, + { + "#": 4592 + }, + { + "#": 4593 + }, + { + "#": 4594 + }, + { + "#": 4595 + } + ], + { + "x": -0.95106, + "y": -0.30901 + }, + { + "x": -0.80899, + "y": -0.58782 + }, + { + "x": -0.58782, + "y": -0.80899 + }, + { + "x": -0.30901, + "y": -0.95106 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30901, + "y": -0.95106 + }, + { + "x": 0.58782, + "y": -0.80899 + }, + { + "x": 0.80899, + "y": -0.58782 + }, + { + "x": 0.95106, + "y": -0.30901 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 93, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4597 + }, + "angle": 0, + "vertices": { + "#": 4598 + }, + "position": { + "#": 4617 + }, + "force": { + "#": 4618 + }, + "torque": 0, + "positionImpulse": { + "#": 4619 + }, + "constraintImpulse": { + "#": 4620 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4621 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4622 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4623 + }, + "circleRadius": 17.81694, + "bounds": { + "#": 4625 + }, + "positionPrev": { + "#": 4628 + }, + "anglePrev": 0, + "axes": { + "#": 4629 + }, + "area": 977.14667, + "mass": 0.97715, + "inverseMass": 1.02339, + "inertia": 607.90538, + "inverseInertia": 0.00164, + "parent": { + "#": 4596 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4596 + } + ], + [ + { + "#": 4599 + }, + { + "#": 4600 + }, + { + "#": 4601 + }, + { + "#": 4602 + }, + { + "#": 4603 + }, + { + "#": 4604 + }, + { + "#": 4605 + }, + { + "#": 4606 + }, + { + "#": 4607 + }, + { + "#": 4608 + }, + { + "#": 4609 + }, + { + "#": 4610 + }, + { + "#": 4611 + }, + { + "#": 4612 + }, + { + "#": 4613 + }, + { + "#": 4614 + }, + { + "#": 4615 + }, + { + "#": 4616 + } + ], + { + "x": 588.572, + "y": 617.231, + "index": 0, + "body": { + "#": 4596 + }, + "isInternal": false + }, + { + "x": 586.456, + "y": 623.045, + "index": 1, + "body": { + "#": 4596 + }, + "isInternal": false + }, + { + "x": 582.479, + "y": 627.786, + "index": 2, + "body": { + "#": 4596 + }, + "isInternal": false + }, + { + "x": 577.12, + "y": 630.879, + "index": 3, + "body": { + "#": 4596 + }, + "isInternal": false + }, + { + "x": 571.026, + "y": 631.954, + "index": 4, + "body": { + "#": 4596 + }, + "isInternal": false + }, + { + "x": 564.932, + "y": 630.879, + "index": 5, + "body": { + "#": 4596 + }, + "isInternal": false + }, + { + "x": 559.573, + "y": 627.786, + "index": 6, + "body": { + "#": 4596 + }, + "isInternal": false + }, + { + "x": 555.596, + "y": 623.045, + "index": 7, + "body": { + "#": 4596 + }, + "isInternal": false + }, + { + "x": 553.48, + "y": 617.231, + "index": 8, + "body": { + "#": 4596 + }, + "isInternal": false + }, + { + "x": 553.48, + "y": 611.043, + "index": 9, + "body": { + "#": 4596 + }, + "isInternal": false + }, + { + "x": 555.596, + "y": 605.229, + "index": 10, + "body": { + "#": 4596 + }, + "isInternal": false + }, + { + "x": 559.573, + "y": 600.488, + "index": 11, + "body": { + "#": 4596 + }, + "isInternal": false + }, + { + "x": 564.932, + "y": 597.395, + "index": 12, + "body": { + "#": 4596 + }, + "isInternal": false + }, + { + "x": 571.026, + "y": 596.32, + "index": 13, + "body": { + "#": 4596 + }, + "isInternal": false + }, + { + "x": 577.12, + "y": 597.395, + "index": 14, + "body": { + "#": 4596 + }, + "isInternal": false + }, + { + "x": 582.479, + "y": 600.488, + "index": 15, + "body": { + "#": 4596 + }, + "isInternal": false + }, + { + "x": 586.456, + "y": 605.229, + "index": 16, + "body": { + "#": 4596 + }, + "isInternal": false + }, + { + "x": 588.572, + "y": 611.043, + "index": 17, + "body": { + "#": 4596 + }, + "isInternal": false + }, + { + "x": 571.026, + "y": 614.137 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4624 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4626 + }, + "max": { + "#": 4627 + } + }, + { + "x": 553.48, + "y": 596.32 + }, + { + "x": 588.572, + "y": 631.954 + }, + { + "x": 571.026, + "y": 614.137 + }, + [ + { + "#": 4630 + }, + { + "#": 4631 + }, + { + "#": 4632 + }, + { + "#": 4633 + }, + { + "#": 4634 + }, + { + "#": 4635 + }, + { + "#": 4636 + }, + { + "#": 4637 + }, + { + "#": 4638 + } + ], + { + "x": -0.9397, + "y": -0.342 + }, + { + "x": -0.76614, + "y": -0.64268 + }, + { + "x": -0.49988, + "y": -0.8661 + }, + { + "x": -0.17372, + "y": -0.98479 + }, + { + "x": 0.17372, + "y": -0.98479 + }, + { + "x": 0.49988, + "y": -0.8661 + }, + { + "x": 0.76614, + "y": -0.64268 + }, + { + "x": 0.9397, + "y": -0.342 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 94, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4640 + }, + "angle": 0, + "vertices": { + "#": 4641 + }, + "position": { + "#": 4660 + }, + "force": { + "#": 4661 + }, + "torque": 0, + "positionImpulse": { + "#": 4662 + }, + "constraintImpulse": { + "#": 4663 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4664 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4665 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4666 + }, + "circleRadius": 16.12031, + "bounds": { + "#": 4668 + }, + "positionPrev": { + "#": 4671 + }, + "anglePrev": 0, + "axes": { + "#": 4672 + }, + "area": 799.89911, + "mass": 0.7999, + "inverseMass": 1.25016, + "inertia": 407.36798, + "inverseInertia": 0.00245, + "parent": { + "#": 4639 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4639 + } + ], + [ + { + "#": 4642 + }, + { + "#": 4643 + }, + { + "#": 4644 + }, + { + "#": 4645 + }, + { + "#": 4646 + }, + { + "#": 4647 + }, + { + "#": 4648 + }, + { + "#": 4649 + }, + { + "#": 4650 + }, + { + "#": 4651 + }, + { + "#": 4652 + }, + { + "#": 4653 + }, + { + "#": 4654 + }, + { + "#": 4655 + }, + { + "#": 4656 + }, + { + "#": 4657 + }, + { + "#": 4658 + }, + { + "#": 4659 + } + ], + { + "x": 630.322, + "y": 615.239, + "index": 0, + "body": { + "#": 4639 + }, + "isInternal": false + }, + { + "x": 628.408, + "y": 620.5, + "index": 1, + "body": { + "#": 4639 + }, + "isInternal": false + }, + { + "x": 624.809, + "y": 624.789, + "index": 2, + "body": { + "#": 4639 + }, + "isInternal": false + }, + { + "x": 619.96, + "y": 627.588, + "index": 3, + "body": { + "#": 4639 + }, + "isInternal": false + }, + { + "x": 614.447, + "y": 628.56, + "index": 4, + "body": { + "#": 4639 + }, + "isInternal": false + }, + { + "x": 608.934, + "y": 627.588, + "index": 5, + "body": { + "#": 4639 + }, + "isInternal": false + }, + { + "x": 604.085, + "y": 624.789, + "index": 6, + "body": { + "#": 4639 + }, + "isInternal": false + }, + { + "x": 600.486, + "y": 620.5, + "index": 7, + "body": { + "#": 4639 + }, + "isInternal": false + }, + { + "x": 598.572, + "y": 615.239, + "index": 8, + "body": { + "#": 4639 + }, + "isInternal": false + }, + { + "x": 598.572, + "y": 609.641, + "index": 9, + "body": { + "#": 4639 + }, + "isInternal": false + }, + { + "x": 600.486, + "y": 604.38, + "index": 10, + "body": { + "#": 4639 + }, + "isInternal": false + }, + { + "x": 604.085, + "y": 600.091, + "index": 11, + "body": { + "#": 4639 + }, + "isInternal": false + }, + { + "x": 608.934, + "y": 597.292, + "index": 12, + "body": { + "#": 4639 + }, + "isInternal": false + }, + { + "x": 614.447, + "y": 596.32, + "index": 13, + "body": { + "#": 4639 + }, + "isInternal": false + }, + { + "x": 619.96, + "y": 597.292, + "index": 14, + "body": { + "#": 4639 + }, + "isInternal": false + }, + { + "x": 624.809, + "y": 600.091, + "index": 15, + "body": { + "#": 4639 + }, + "isInternal": false + }, + { + "x": 628.408, + "y": 604.38, + "index": 16, + "body": { + "#": 4639 + }, + "isInternal": false + }, + { + "x": 630.322, + "y": 609.641, + "index": 17, + "body": { + "#": 4639 + }, + "isInternal": false + }, + { + "x": 614.447, + "y": 612.44 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4667 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4669 + }, + "max": { + "#": 4670 + } + }, + { + "x": 598.572, + "y": 596.32 + }, + { + "x": 630.322, + "y": 628.56 + }, + { + "x": 614.447, + "y": 612.44 + }, + [ + { + "#": 4673 + }, + { + "#": 4674 + }, + { + "#": 4675 + }, + { + "#": 4676 + }, + { + "#": 4677 + }, + { + "#": 4678 + }, + { + "#": 4679 + }, + { + "#": 4680 + }, + { + "#": 4681 + } + ], + { + "x": -0.93974, + "y": -0.34189 + }, + { + "x": -0.76604, + "y": -0.6428 + }, + { + "x": -0.49992, + "y": -0.86607 + }, + { + "x": -0.17363, + "y": -0.98481 + }, + { + "x": 0.17363, + "y": -0.98481 + }, + { + "x": 0.49992, + "y": -0.86607 + }, + { + "x": 0.76604, + "y": -0.6428 + }, + { + "x": 0.93974, + "y": -0.34189 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 95, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4683 + }, + "angle": 0, + "vertices": { + "#": 4684 + }, + "position": { + "#": 4711 + }, + "force": { + "#": 4712 + }, + "torque": 0, + "positionImpulse": { + "#": 4713 + }, + "constraintImpulse": { + "#": 4714 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4715 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4716 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4717 + }, + "circleRadius": 26.44528, + "bounds": { + "#": 4719 + }, + "positionPrev": { + "#": 4722 + }, + "anglePrev": 0, + "axes": { + "#": 4723 + }, + "area": 2175.76447, + "mass": 2.17576, + "inverseMass": 0.45961, + "inertia": 3013.78432, + "inverseInertia": 0.00033, + "parent": { + "#": 4682 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4682 + } + ], + [ + { + "#": 4685 + }, + { + "#": 4686 + }, + { + "#": 4687 + }, + { + "#": 4688 + }, + { + "#": 4689 + }, + { + "#": 4690 + }, + { + "#": 4691 + }, + { + "#": 4692 + }, + { + "#": 4693 + }, + { + "#": 4694 + }, + { + "#": 4695 + }, + { + "#": 4696 + }, + { + "#": 4697 + }, + { + "#": 4698 + }, + { + "#": 4699 + }, + { + "#": 4700 + }, + { + "#": 4701 + }, + { + "#": 4702 + }, + { + "#": 4703 + }, + { + "#": 4704 + }, + { + "#": 4705 + }, + { + "#": 4706 + }, + { + "#": 4707 + }, + { + "#": 4708 + }, + { + "#": 4709 + }, + { + "#": 4710 + } + ], + { + "x": 152.504, + "y": 694.577, + "index": 0, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 150.979, + "y": 700.767, + "index": 1, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 148.016, + "y": 706.412, + "index": 2, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 143.788, + "y": 711.184, + "index": 3, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 138.542, + "y": 714.805, + "index": 4, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 132.581, + "y": 717.066, + "index": 5, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 126.252, + "y": 717.834, + "index": 6, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 119.923, + "y": 717.066, + "index": 7, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 113.962, + "y": 714.805, + "index": 8, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 108.716, + "y": 711.184, + "index": 9, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 104.488, + "y": 706.412, + "index": 10, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 101.525, + "y": 700.767, + "index": 11, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 100, + "y": 694.577, + "index": 12, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 100, + "y": 688.201, + "index": 13, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 101.525, + "y": 682.011, + "index": 14, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 104.488, + "y": 676.366, + "index": 15, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 108.716, + "y": 671.594, + "index": 16, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 113.962, + "y": 667.973, + "index": 17, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 119.923, + "y": 665.712, + "index": 18, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 126.252, + "y": 664.944, + "index": 19, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 132.581, + "y": 665.712, + "index": 20, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 138.542, + "y": 667.973, + "index": 21, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 143.788, + "y": 671.594, + "index": 22, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 148.016, + "y": 676.366, + "index": 23, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 150.979, + "y": 682.011, + "index": 24, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 152.504, + "y": 688.201, + "index": 25, + "body": { + "#": 4682 + }, + "isInternal": false + }, + { + "x": 126.252, + "y": 691.389 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4718 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4720 + }, + "max": { + "#": 4721 + } + }, + { + "x": 100, + "y": 664.944 + }, + { + "x": 152.504, + "y": 717.834 + }, + { + "x": 126.252, + "y": 691.389 + }, + [ + { + "#": 4724 + }, + { + "#": 4725 + }, + { + "#": 4726 + }, + { + "#": 4727 + }, + { + "#": 4728 + }, + { + "#": 4729 + }, + { + "#": 4730 + }, + { + "#": 4731 + }, + { + "#": 4732 + }, + { + "#": 4733 + }, + { + "#": 4734 + }, + { + "#": 4735 + }, + { + "#": 4736 + } + ], + { + "x": -0.97097, + "y": -0.23921 + }, + { + "x": -0.88544, + "y": -0.46476 + }, + { + "x": -0.74848, + "y": -0.66316 + }, + { + "x": -0.56806, + "y": -0.82299 + }, + { + "x": -0.35464, + "y": -0.935 + }, + { + "x": -0.12046, + "y": -0.99272 + }, + { + "x": 0.12046, + "y": -0.99272 + }, + { + "x": 0.35464, + "y": -0.935 + }, + { + "x": 0.56806, + "y": -0.82299 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88544, + "y": -0.46476 + }, + { + "x": 0.97097, + "y": -0.23921 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 96, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4738 + }, + "angle": 0, + "vertices": { + "#": 4739 + }, + "position": { + "#": 4758 + }, + "force": { + "#": 4759 + }, + "torque": 0, + "positionImpulse": { + "#": 4760 + }, + "constraintImpulse": { + "#": 4761 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4762 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4763 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4764 + }, + "circleRadius": 16.75482, + "bounds": { + "#": 4766 + }, + "positionPrev": { + "#": 4769 + }, + "anglePrev": 0, + "axes": { + "#": 4770 + }, + "area": 864.0989, + "mass": 0.8641, + "inverseMass": 1.15727, + "inertia": 475.3827, + "inverseInertia": 0.0021, + "parent": { + "#": 4737 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4737 + } + ], + [ + { + "#": 4740 + }, + { + "#": 4741 + }, + { + "#": 4742 + }, + { + "#": 4743 + }, + { + "#": 4744 + }, + { + "#": 4745 + }, + { + "#": 4746 + }, + { + "#": 4747 + }, + { + "#": 4748 + }, + { + "#": 4749 + }, + { + "#": 4750 + }, + { + "#": 4751 + }, + { + "#": 4752 + }, + { + "#": 4753 + }, + { + "#": 4754 + }, + { + "#": 4755 + }, + { + "#": 4756 + }, + { + "#": 4757 + } + ], + { + "x": 195.504, + "y": 684.608, + "index": 0, + "body": { + "#": 4737 + }, + "isInternal": false + }, + { + "x": 193.514, + "y": 690.076, + "index": 1, + "body": { + "#": 4737 + }, + "isInternal": false + }, + { + "x": 189.774, + "y": 694.534, + "index": 2, + "body": { + "#": 4737 + }, + "isInternal": false + }, + { + "x": 184.734, + "y": 697.443, + "index": 3, + "body": { + "#": 4737 + }, + "isInternal": false + }, + { + "x": 179.004, + "y": 698.454, + "index": 4, + "body": { + "#": 4737 + }, + "isInternal": false + }, + { + "x": 173.274, + "y": 697.443, + "index": 5, + "body": { + "#": 4737 + }, + "isInternal": false + }, + { + "x": 168.234, + "y": 694.534, + "index": 6, + "body": { + "#": 4737 + }, + "isInternal": false + }, + { + "x": 164.494, + "y": 690.076, + "index": 7, + "body": { + "#": 4737 + }, + "isInternal": false + }, + { + "x": 162.504, + "y": 684.608, + "index": 8, + "body": { + "#": 4737 + }, + "isInternal": false + }, + { + "x": 162.504, + "y": 678.79, + "index": 9, + "body": { + "#": 4737 + }, + "isInternal": false + }, + { + "x": 164.494, + "y": 673.322, + "index": 10, + "body": { + "#": 4737 + }, + "isInternal": false + }, + { + "x": 168.234, + "y": 668.864, + "index": 11, + "body": { + "#": 4737 + }, + "isInternal": false + }, + { + "x": 173.274, + "y": 665.955, + "index": 12, + "body": { + "#": 4737 + }, + "isInternal": false + }, + { + "x": 179.004, + "y": 664.944, + "index": 13, + "body": { + "#": 4737 + }, + "isInternal": false + }, + { + "x": 184.734, + "y": 665.955, + "index": 14, + "body": { + "#": 4737 + }, + "isInternal": false + }, + { + "x": 189.774, + "y": 668.864, + "index": 15, + "body": { + "#": 4737 + }, + "isInternal": false + }, + { + "x": 193.514, + "y": 673.322, + "index": 16, + "body": { + "#": 4737 + }, + "isInternal": false + }, + { + "x": 195.504, + "y": 678.79, + "index": 17, + "body": { + "#": 4737 + }, + "isInternal": false + }, + { + "x": 179.004, + "y": 681.699 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4765 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4767 + }, + "max": { + "#": 4768 + } + }, + { + "x": 162.504, + "y": 664.944 + }, + { + "x": 195.504, + "y": 698.454 + }, + { + "x": 179.004, + "y": 681.699 + }, + [ + { + "#": 4771 + }, + { + "#": 4772 + }, + { + "#": 4773 + }, + { + "#": 4774 + }, + { + "#": 4775 + }, + { + "#": 4776 + }, + { + "#": 4777 + }, + { + "#": 4778 + }, + { + "#": 4779 + } + ], + { + "x": -0.9397, + "y": -0.34199 + }, + { + "x": -0.7661, + "y": -0.64272 + }, + { + "x": -0.49989, + "y": -0.86609 + }, + { + "x": -0.17376, + "y": -0.98479 + }, + { + "x": 0.17376, + "y": -0.98479 + }, + { + "x": 0.49989, + "y": -0.86609 + }, + { + "x": 0.7661, + "y": -0.64272 + }, + { + "x": 0.9397, + "y": -0.34199 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 97, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4781 + }, + "angle": 0, + "vertices": { + "#": 4782 + }, + "position": { + "#": 4807 + }, + "force": { + "#": 4808 + }, + "torque": 0, + "positionImpulse": { + "#": 4809 + }, + "constraintImpulse": { + "#": 4810 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4811 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4812 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4813 + }, + "circleRadius": 22.78967, + "bounds": { + "#": 4815 + }, + "positionPrev": { + "#": 4818 + }, + "anglePrev": 0, + "axes": { + "#": 4819 + }, + "area": 1613.06386, + "mass": 1.61306, + "inverseMass": 0.61994, + "inertia": 1656.51233, + "inverseInertia": 0.0006, + "parent": { + "#": 4780 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4780 + } + ], + [ + { + "#": 4783 + }, + { + "#": 4784 + }, + { + "#": 4785 + }, + { + "#": 4786 + }, + { + "#": 4787 + }, + { + "#": 4788 + }, + { + "#": 4789 + }, + { + "#": 4790 + }, + { + "#": 4791 + }, + { + "#": 4792 + }, + { + "#": 4793 + }, + { + "#": 4794 + }, + { + "#": 4795 + }, + { + "#": 4796 + }, + { + "#": 4797 + }, + { + "#": 4798 + }, + { + "#": 4799 + }, + { + "#": 4800 + }, + { + "#": 4801 + }, + { + "#": 4802 + }, + { + "#": 4803 + }, + { + "#": 4804 + }, + { + "#": 4805 + }, + { + "#": 4806 + } + ], + { + "x": 250.694, + "y": 690.514, + "index": 0, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 249.154, + "y": 696.26, + "index": 1, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 246.179, + "y": 701.412, + "index": 2, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 241.972, + "y": 705.619, + "index": 3, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 236.82, + "y": 708.594, + "index": 4, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 231.074, + "y": 710.134, + "index": 5, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 225.124, + "y": 710.134, + "index": 6, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 219.378, + "y": 708.594, + "index": 7, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 214.226, + "y": 705.619, + "index": 8, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 210.019, + "y": 701.412, + "index": 9, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 207.044, + "y": 696.26, + "index": 10, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 205.504, + "y": 690.514, + "index": 11, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 205.504, + "y": 684.564, + "index": 12, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 207.044, + "y": 678.818, + "index": 13, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 210.019, + "y": 673.666, + "index": 14, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 214.226, + "y": 669.459, + "index": 15, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 219.378, + "y": 666.484, + "index": 16, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 225.124, + "y": 664.944, + "index": 17, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 231.074, + "y": 664.944, + "index": 18, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 236.82, + "y": 666.484, + "index": 19, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 241.972, + "y": 669.459, + "index": 20, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 246.179, + "y": 673.666, + "index": 21, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 249.154, + "y": 678.818, + "index": 22, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 250.694, + "y": 684.564, + "index": 23, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 228.099, + "y": 687.539 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4814 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4816 + }, + "max": { + "#": 4817 + } + }, + { + "x": 205.504, + "y": 664.944 + }, + { + "x": 250.694, + "y": 710.134 + }, + { + "x": 228.099, + "y": 687.539 + }, + [ + { + "#": 4820 + }, + { + "#": 4821 + }, + { + "#": 4822 + }, + { + "#": 4823 + }, + { + "#": 4824 + }, + { + "#": 4825 + }, + { + "#": 4826 + }, + { + "#": 4827 + }, + { + "#": 4828 + }, + { + "#": 4829 + }, + { + "#": 4830 + }, + { + "#": 4831 + } + ], + { + "x": -0.96591, + "y": -0.25888 + }, + { + "x": -0.86599, + "y": -0.50006 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.50006, + "y": -0.86599 + }, + { + "x": -0.25888, + "y": -0.96591 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25888, + "y": -0.96591 + }, + { + "x": 0.50006, + "y": -0.86599 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86599, + "y": -0.50006 + }, + { + "x": 0.96591, + "y": -0.25888 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 98, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4833 + }, + "angle": 0, + "vertices": { + "#": 4834 + }, + "position": { + "#": 4861 + }, + "force": { + "#": 4862 + }, + "torque": 0, + "positionImpulse": { + "#": 4863 + }, + "constraintImpulse": { + "#": 4864 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4865 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4866 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4867 + }, + "circleRadius": 29.73502, + "bounds": { + "#": 4869 + }, + "positionPrev": { + "#": 4872 + }, + "anglePrev": 0, + "axes": { + "#": 4873 + }, + "area": 2750.73619, + "mass": 2.75074, + "inverseMass": 0.36354, + "inertia": 4817.10698, + "inverseInertia": 0.00021, + "parent": { + "#": 4832 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4832 + } + ], + [ + { + "#": 4835 + }, + { + "#": 4836 + }, + { + "#": 4837 + }, + { + "#": 4838 + }, + { + "#": 4839 + }, + { + "#": 4840 + }, + { + "#": 4841 + }, + { + "#": 4842 + }, + { + "#": 4843 + }, + { + "#": 4844 + }, + { + "#": 4845 + }, + { + "#": 4846 + }, + { + "#": 4847 + }, + { + "#": 4848 + }, + { + "#": 4849 + }, + { + "#": 4850 + }, + { + "#": 4851 + }, + { + "#": 4852 + }, + { + "#": 4853 + }, + { + "#": 4854 + }, + { + "#": 4855 + }, + { + "#": 4856 + }, + { + "#": 4857 + }, + { + "#": 4858 + }, + { + "#": 4859 + }, + { + "#": 4860 + } + ], + { + "x": 319.73, + "y": 698.263, + "index": 0, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 318.015, + "y": 705.223, + "index": 1, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 314.683, + "y": 711.57, + "index": 2, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 309.93, + "y": 716.936, + "index": 3, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 304.031, + "y": 721.008, + "index": 4, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 297.328, + "y": 723.55, + "index": 5, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 290.212, + "y": 724.414, + "index": 6, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 283.096, + "y": 723.55, + "index": 7, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 276.393, + "y": 721.008, + "index": 8, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 270.494, + "y": 716.936, + "index": 9, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 265.741, + "y": 711.57, + "index": 10, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 262.409, + "y": 705.223, + "index": 11, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 260.694, + "y": 698.263, + "index": 12, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 260.694, + "y": 691.095, + "index": 13, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 262.409, + "y": 684.135, + "index": 14, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 265.741, + "y": 677.788, + "index": 15, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 270.494, + "y": 672.422, + "index": 16, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 276.393, + "y": 668.35, + "index": 17, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 283.096, + "y": 665.808, + "index": 18, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 290.212, + "y": 664.944, + "index": 19, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 297.328, + "y": 665.808, + "index": 20, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 304.031, + "y": 668.35, + "index": 21, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 309.93, + "y": 672.422, + "index": 22, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 314.683, + "y": 677.788, + "index": 23, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 318.015, + "y": 684.135, + "index": 24, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 319.73, + "y": 691.095, + "index": 25, + "body": { + "#": 4832 + }, + "isInternal": false + }, + { + "x": 290.212, + "y": 694.679 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4868 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4870 + }, + "max": { + "#": 4871 + } + }, + { + "x": 260.694, + "y": 664.944 + }, + { + "x": 319.73, + "y": 724.414 + }, + { + "x": 290.212, + "y": 694.679 + }, + [ + { + "#": 4874 + }, + { + "#": 4875 + }, + { + "#": 4876 + }, + { + "#": 4877 + }, + { + "#": 4878 + }, + { + "#": 4879 + }, + { + "#": 4880 + }, + { + "#": 4881 + }, + { + "#": 4882 + }, + { + "#": 4883 + }, + { + "#": 4884 + }, + { + "#": 4885 + }, + { + "#": 4886 + } + ], + { + "x": -0.97096, + "y": -0.23925 + }, + { + "x": -0.88541, + "y": -0.46481 + }, + { + "x": -0.74857, + "y": -0.66306 + }, + { + "x": -0.56808, + "y": -0.82297 + }, + { + "x": -0.35459, + "y": -0.93502 + }, + { + "x": -0.12053, + "y": -0.99271 + }, + { + "x": 0.12053, + "y": -0.99271 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.56808, + "y": -0.82297 + }, + { + "x": 0.74857, + "y": -0.66306 + }, + { + "x": 0.88541, + "y": -0.46481 + }, + { + "x": 0.97096, + "y": -0.23925 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 99, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4888 + }, + "angle": 0, + "vertices": { + "#": 4889 + }, + "position": { + "#": 4916 + }, + "force": { + "#": 4917 + }, + "torque": 0, + "positionImpulse": { + "#": 4918 + }, + "constraintImpulse": { + "#": 4919 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4920 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4921 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4922 + }, + "circleRadius": 28.88715, + "bounds": { + "#": 4924 + }, + "positionPrev": { + "#": 4927 + }, + "anglePrev": 0, + "axes": { + "#": 4928 + }, + "area": 2596.14546, + "mass": 2.59615, + "inverseMass": 0.38519, + "inertia": 4290.88083, + "inverseInertia": 0.00023, + "parent": { + "#": 4887 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4887 + } + ], + [ + { + "#": 4890 + }, + { + "#": 4891 + }, + { + "#": 4892 + }, + { + "#": 4893 + }, + { + "#": 4894 + }, + { + "#": 4895 + }, + { + "#": 4896 + }, + { + "#": 4897 + }, + { + "#": 4898 + }, + { + "#": 4899 + }, + { + "#": 4900 + }, + { + "#": 4901 + }, + { + "#": 4902 + }, + { + "#": 4903 + }, + { + "#": 4904 + }, + { + "#": 4905 + }, + { + "#": 4906 + }, + { + "#": 4907 + }, + { + "#": 4908 + }, + { + "#": 4909 + }, + { + "#": 4910 + }, + { + "#": 4911 + }, + { + "#": 4912 + }, + { + "#": 4913 + }, + { + "#": 4914 + }, + { + "#": 4915 + } + ], + { + "x": 387.084, + "y": 697.313, + "index": 0, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 385.417, + "y": 704.075, + "index": 1, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 382.181, + "y": 710.241, + "index": 2, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 377.563, + "y": 715.453, + "index": 3, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 371.832, + "y": 719.409, + "index": 4, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 365.32, + "y": 721.879, + "index": 5, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 358.407, + "y": 722.718, + "index": 6, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 351.494, + "y": 721.879, + "index": 7, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 344.982, + "y": 719.409, + "index": 8, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 339.251, + "y": 715.453, + "index": 9, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 334.633, + "y": 710.241, + "index": 10, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 331.397, + "y": 704.075, + "index": 11, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 329.73, + "y": 697.313, + "index": 12, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 329.73, + "y": 690.349, + "index": 13, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 331.397, + "y": 683.587, + "index": 14, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 334.633, + "y": 677.421, + "index": 15, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 339.251, + "y": 672.209, + "index": 16, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 344.982, + "y": 668.253, + "index": 17, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 351.494, + "y": 665.783, + "index": 18, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 358.407, + "y": 664.944, + "index": 19, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 365.32, + "y": 665.783, + "index": 20, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 371.832, + "y": 668.253, + "index": 21, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 377.563, + "y": 672.209, + "index": 22, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 382.181, + "y": 677.421, + "index": 23, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 385.417, + "y": 683.587, + "index": 24, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 387.084, + "y": 690.349, + "index": 25, + "body": { + "#": 4887 + }, + "isInternal": false + }, + { + "x": 358.407, + "y": 693.831 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4923 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4925 + }, + "max": { + "#": 4926 + } + }, + { + "x": 329.73, + "y": 664.944 + }, + { + "x": 387.084, + "y": 722.718 + }, + { + "x": 358.407, + "y": 693.831 + }, + [ + { + "#": 4929 + }, + { + "#": 4930 + }, + { + "#": 4931 + }, + { + "#": 4932 + }, + { + "#": 4933 + }, + { + "#": 4934 + }, + { + "#": 4935 + }, + { + "#": 4936 + }, + { + "#": 4937 + }, + { + "#": 4938 + }, + { + "#": 4939 + }, + { + "#": 4940 + }, + { + "#": 4941 + } + ], + { + "x": -0.97093, + "y": -0.23936 + }, + { + "x": -0.88547, + "y": -0.4647 + }, + { + "x": -0.74847, + "y": -0.66317 + }, + { + "x": -0.56808, + "y": -0.82297 + }, + { + "x": -0.35465, + "y": -0.935 + }, + { + "x": -0.12048, + "y": -0.99272 + }, + { + "x": 0.12048, + "y": -0.99272 + }, + { + "x": 0.35465, + "y": -0.935 + }, + { + "x": 0.56808, + "y": -0.82297 + }, + { + "x": 0.74847, + "y": -0.66317 + }, + { + "x": 0.88547, + "y": -0.4647 + }, + { + "x": 0.97093, + "y": -0.23936 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 100, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4943 + }, + "angle": 0, + "vertices": { + "#": 4944 + }, + "position": { + "#": 4971 + }, + "force": { + "#": 4972 + }, + "torque": 0, + "positionImpulse": { + "#": 4973 + }, + "constraintImpulse": { + "#": 4974 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4975 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4976 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4977 + }, + "circleRadius": 24.32015, + "bounds": { + "#": 4979 + }, + "positionPrev": { + "#": 4982 + }, + "anglePrev": 0, + "axes": { + "#": 4983 + }, + "area": 1840.09915, + "mass": 1.8401, + "inverseMass": 0.54345, + "inertia": 2155.61333, + "inverseInertia": 0.00046, + "parent": { + "#": 4942 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4942 + } + ], + [ + { + "#": 4945 + }, + { + "#": 4946 + }, + { + "#": 4947 + }, + { + "#": 4948 + }, + { + "#": 4949 + }, + { + "#": 4950 + }, + { + "#": 4951 + }, + { + "#": 4952 + }, + { + "#": 4953 + }, + { + "#": 4954 + }, + { + "#": 4955 + }, + { + "#": 4956 + }, + { + "#": 4957 + }, + { + "#": 4958 + }, + { + "#": 4959 + }, + { + "#": 4960 + }, + { + "#": 4961 + }, + { + "#": 4962 + }, + { + "#": 4963 + }, + { + "#": 4964 + }, + { + "#": 4965 + }, + { + "#": 4966 + }, + { + "#": 4967 + }, + { + "#": 4968 + }, + { + "#": 4969 + }, + { + "#": 4970 + } + ], + { + "x": 445.37, + "y": 692.195, + "index": 0, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 443.967, + "y": 697.888, + "index": 1, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 441.242, + "y": 703.079, + "index": 2, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 437.354, + "y": 707.468, + "index": 3, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 432.529, + "y": 710.798, + "index": 4, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 427.047, + "y": 712.877, + "index": 5, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 421.227, + "y": 713.584, + "index": 6, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 415.407, + "y": 712.877, + "index": 7, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 409.925, + "y": 710.798, + "index": 8, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 405.1, + "y": 707.468, + "index": 9, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 401.212, + "y": 703.079, + "index": 10, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 398.487, + "y": 697.888, + "index": 11, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 397.084, + "y": 692.195, + "index": 12, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 397.084, + "y": 686.333, + "index": 13, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 398.487, + "y": 680.64, + "index": 14, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 401.212, + "y": 675.449, + "index": 15, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 405.1, + "y": 671.06, + "index": 16, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 409.925, + "y": 667.73, + "index": 17, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 415.407, + "y": 665.651, + "index": 18, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 421.227, + "y": 664.944, + "index": 19, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 427.047, + "y": 665.651, + "index": 20, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 432.529, + "y": 667.73, + "index": 21, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 437.354, + "y": 671.06, + "index": 22, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 441.242, + "y": 675.449, + "index": 23, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 443.967, + "y": 680.64, + "index": 24, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 445.37, + "y": 686.333, + "index": 25, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 421.227, + "y": 689.264 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4978 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4980 + }, + "max": { + "#": 4981 + } + }, + { + "x": 397.084, + "y": 664.944 + }, + { + "x": 445.37, + "y": 713.584 + }, + { + "x": 421.227, + "y": 689.264 + }, + [ + { + "#": 4984 + }, + { + "#": 4985 + }, + { + "#": 4986 + }, + { + "#": 4987 + }, + { + "#": 4988 + }, + { + "#": 4989 + }, + { + "#": 4990 + }, + { + "#": 4991 + }, + { + "#": 4992 + }, + { + "#": 4993 + }, + { + "#": 4994 + }, + { + "#": 4995 + }, + { + "#": 4996 + } + ], + { + "x": -0.97095, + "y": -0.23928 + }, + { + "x": -0.88542, + "y": -0.4648 + }, + { + "x": -0.74854, + "y": -0.66309 + }, + { + "x": -0.56801, + "y": -0.82302 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12059, + "y": -0.9927 + }, + { + "x": 0.12059, + "y": -0.9927 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56801, + "y": -0.82302 + }, + { + "x": 0.74854, + "y": -0.66309 + }, + { + "x": 0.88542, + "y": -0.4648 + }, + { + "x": 0.97095, + "y": -0.23928 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 101, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4998 + }, + "angle": 0, + "vertices": { + "#": 4999 + }, + "position": { + "#": 5020 + }, + "force": { + "#": 5021 + }, + "torque": 0, + "positionImpulse": { + "#": 5022 + }, + "constraintImpulse": { + "#": 5023 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5024 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5025 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5026 + }, + "circleRadius": 19.55253, + "bounds": { + "#": 5028 + }, + "positionPrev": { + "#": 5031 + }, + "anglePrev": 0, + "axes": { + "#": 5032 + }, + "area": 1181.38615, + "mass": 1.18139, + "inverseMass": 0.84646, + "inertia": 888.56183, + "inverseInertia": 0.00113, + "parent": { + "#": 4997 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4997 + } + ], + [ + { + "#": 5000 + }, + { + "#": 5001 + }, + { + "#": 5002 + }, + { + "#": 5003 + }, + { + "#": 5004 + }, + { + "#": 5005 + }, + { + "#": 5006 + }, + { + "#": 5007 + }, + { + "#": 5008 + }, + { + "#": 5009 + }, + { + "#": 5010 + }, + { + "#": 5011 + }, + { + "#": 5012 + }, + { + "#": 5013 + }, + { + "#": 5014 + }, + { + "#": 5015 + }, + { + "#": 5016 + }, + { + "#": 5017 + }, + { + "#": 5018 + }, + { + "#": 5019 + } + ], + { + "x": 493.994, + "y": 687.315, + "index": 0, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 492.103, + "y": 693.133, + "index": 1, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 488.508, + "y": 698.082, + "index": 2, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 483.559, + "y": 701.677, + "index": 3, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 477.741, + "y": 703.568, + "index": 4, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 471.623, + "y": 703.568, + "index": 5, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 465.805, + "y": 701.677, + "index": 6, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 460.856, + "y": 698.082, + "index": 7, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 457.261, + "y": 693.133, + "index": 8, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 455.37, + "y": 687.315, + "index": 9, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 455.37, + "y": 681.197, + "index": 10, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 457.261, + "y": 675.379, + "index": 11, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 460.856, + "y": 670.43, + "index": 12, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 465.805, + "y": 666.835, + "index": 13, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 471.623, + "y": 664.944, + "index": 14, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 477.741, + "y": 664.944, + "index": 15, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 483.559, + "y": 666.835, + "index": 16, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 488.508, + "y": 670.43, + "index": 17, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 492.103, + "y": 675.379, + "index": 18, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 493.994, + "y": 681.197, + "index": 19, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 474.682, + "y": 684.256 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5027 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5029 + }, + "max": { + "#": 5030 + } + }, + { + "x": 455.37, + "y": 664.944 + }, + { + "x": 493.994, + "y": 703.568 + }, + { + "x": 474.682, + "y": 684.256 + }, + [ + { + "#": 5033 + }, + { + "#": 5034 + }, + { + "#": 5035 + }, + { + "#": 5036 + }, + { + "#": 5037 + }, + { + "#": 5038 + }, + { + "#": 5039 + }, + { + "#": 5040 + }, + { + "#": 5041 + }, + { + "#": 5042 + } + ], + { + "x": -0.95103, + "y": -0.30911 + }, + { + "x": -0.80907, + "y": -0.58771 + }, + { + "x": -0.58771, + "y": -0.80907 + }, + { + "x": -0.30911, + "y": -0.95103 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30911, + "y": -0.95103 + }, + { + "x": 0.58771, + "y": -0.80907 + }, + { + "x": 0.80907, + "y": -0.58771 + }, + { + "x": 0.95103, + "y": -0.30911 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 102, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5044 + }, + "angle": 0, + "vertices": { + "#": 5045 + }, + "position": { + "#": 5072 + }, + "force": { + "#": 5073 + }, + "torque": 0, + "positionImpulse": { + "#": 5074 + }, + "constraintImpulse": { + "#": 5075 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5076 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5077 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5078 + }, + "circleRadius": 29.21393, + "bounds": { + "#": 5080 + }, + "positionPrev": { + "#": 5083 + }, + "anglePrev": 0, + "axes": { + "#": 5084 + }, + "area": 2655.16465, + "mass": 2.65516, + "inverseMass": 0.37662, + "inertia": 4488.19093, + "inverseInertia": 0.00022, + "parent": { + "#": 5043 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5043 + } + ], + [ + { + "#": 5046 + }, + { + "#": 5047 + }, + { + "#": 5048 + }, + { + "#": 5049 + }, + { + "#": 5050 + }, + { + "#": 5051 + }, + { + "#": 5052 + }, + { + "#": 5053 + }, + { + "#": 5054 + }, + { + "#": 5055 + }, + { + "#": 5056 + }, + { + "#": 5057 + }, + { + "#": 5058 + }, + { + "#": 5059 + }, + { + "#": 5060 + }, + { + "#": 5061 + }, + { + "#": 5062 + }, + { + "#": 5063 + }, + { + "#": 5064 + }, + { + "#": 5065 + }, + { + "#": 5066 + }, + { + "#": 5067 + }, + { + "#": 5068 + }, + { + "#": 5069 + }, + { + "#": 5070 + }, + { + "#": 5071 + } + ], + { + "x": 561.996, + "y": 697.679, + "index": 0, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 560.31, + "y": 704.517, + "index": 1, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 557.038, + "y": 710.753, + "index": 2, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 552.367, + "y": 716.025, + "index": 3, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 546.571, + "y": 720.026, + "index": 4, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 539.986, + "y": 722.523, + "index": 5, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 532.995, + "y": 723.372, + "index": 6, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 526.004, + "y": 722.523, + "index": 7, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 519.419, + "y": 720.026, + "index": 8, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 513.623, + "y": 716.025, + "index": 9, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 508.952, + "y": 710.753, + "index": 10, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 505.68, + "y": 704.517, + "index": 11, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 503.994, + "y": 697.679, + "index": 12, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 503.994, + "y": 690.637, + "index": 13, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 505.68, + "y": 683.799, + "index": 14, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 508.952, + "y": 677.563, + "index": 15, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 513.623, + "y": 672.291, + "index": 16, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 519.419, + "y": 668.29, + "index": 17, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 526.004, + "y": 665.793, + "index": 18, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 532.995, + "y": 664.944, + "index": 19, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 539.986, + "y": 665.793, + "index": 20, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 546.571, + "y": 668.29, + "index": 21, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 552.367, + "y": 672.291, + "index": 22, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 557.038, + "y": 677.563, + "index": 23, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 560.31, + "y": 683.799, + "index": 24, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 561.996, + "y": 690.637, + "index": 25, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 532.995, + "y": 694.158 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5079 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5081 + }, + "max": { + "#": 5082 + } + }, + { + "x": 503.994, + "y": 664.944 + }, + { + "x": 561.996, + "y": 723.372 + }, + { + "x": 532.995, + "y": 694.158 + }, + [ + { + "#": 5085 + }, + { + "#": 5086 + }, + { + "#": 5087 + }, + { + "#": 5088 + }, + { + "#": 5089 + }, + { + "#": 5090 + }, + { + "#": 5091 + }, + { + "#": 5092 + }, + { + "#": 5093 + }, + { + "#": 5094 + }, + { + "#": 5095 + }, + { + "#": 5096 + }, + { + "#": 5097 + } + ], + { + "x": -0.97092, + "y": -0.23939 + }, + { + "x": -0.88551, + "y": -0.46462 + }, + { + "x": -0.74848, + "y": -0.66316 + }, + { + "x": -0.56809, + "y": -0.82296 + }, + { + "x": -0.35456, + "y": -0.93503 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.35456, + "y": -0.93503 + }, + { + "x": 0.56809, + "y": -0.82296 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88551, + "y": -0.46462 + }, + { + "x": 0.97092, + "y": -0.23939 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 103, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5099 + }, + "angle": 0, + "vertices": { + "#": 5100 + }, + "position": { + "#": 5127 + }, + "force": { + "#": 5128 + }, + "torque": 0, + "positionImpulse": { + "#": 5129 + }, + "constraintImpulse": { + "#": 5130 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5131 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5132 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5133 + }, + "circleRadius": 25.71174, + "bounds": { + "#": 5135 + }, + "positionPrev": { + "#": 5138 + }, + "anglePrev": 0, + "axes": { + "#": 5139 + }, + "area": 2056.75388, + "mass": 2.05675, + "inverseMass": 0.4862, + "inertia": 2693.1036, + "inverseInertia": 0.00037, + "parent": { + "#": 5098 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5098 + } + ], + [ + { + "#": 5101 + }, + { + "#": 5102 + }, + { + "#": 5103 + }, + { + "#": 5104 + }, + { + "#": 5105 + }, + { + "#": 5106 + }, + { + "#": 5107 + }, + { + "#": 5108 + }, + { + "#": 5109 + }, + { + "#": 5110 + }, + { + "#": 5111 + }, + { + "#": 5112 + }, + { + "#": 5113 + }, + { + "#": 5114 + }, + { + "#": 5115 + }, + { + "#": 5116 + }, + { + "#": 5117 + }, + { + "#": 5118 + }, + { + "#": 5119 + }, + { + "#": 5120 + }, + { + "#": 5121 + }, + { + "#": 5122 + }, + { + "#": 5123 + }, + { + "#": 5124 + }, + { + "#": 5125 + }, + { + "#": 5126 + } + ], + { + "x": 623.044, + "y": 693.755, + "index": 0, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 621.561, + "y": 699.774, + "index": 1, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 618.68, + "y": 705.262, + "index": 2, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 614.57, + "y": 709.902, + "index": 3, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 609.469, + "y": 713.423, + "index": 4, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 603.673, + "y": 715.621, + "index": 5, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 597.52, + "y": 716.368, + "index": 6, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 591.367, + "y": 715.621, + "index": 7, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 585.571, + "y": 713.423, + "index": 8, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 580.47, + "y": 709.902, + "index": 9, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 576.36, + "y": 705.262, + "index": 10, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 573.479, + "y": 699.774, + "index": 11, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 571.996, + "y": 693.755, + "index": 12, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 571.996, + "y": 687.557, + "index": 13, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 573.479, + "y": 681.538, + "index": 14, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 576.36, + "y": 676.05, + "index": 15, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 580.47, + "y": 671.41, + "index": 16, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 585.571, + "y": 667.889, + "index": 17, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 591.367, + "y": 665.691, + "index": 18, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 597.52, + "y": 664.944, + "index": 19, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 603.673, + "y": 665.691, + "index": 20, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 609.469, + "y": 667.889, + "index": 21, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 614.57, + "y": 671.41, + "index": 22, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 618.68, + "y": 676.05, + "index": 23, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 621.561, + "y": 681.538, + "index": 24, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 623.044, + "y": 687.557, + "index": 25, + "body": { + "#": 5098 + }, + "isInternal": false + }, + { + "x": 597.52, + "y": 690.656 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5134 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5136 + }, + "max": { + "#": 5137 + } + }, + { + "x": 571.996, + "y": 664.944 + }, + { + "x": 623.044, + "y": 716.368 + }, + { + "x": 597.52, + "y": 690.656 + }, + [ + { + "#": 5140 + }, + { + "#": 5141 + }, + { + "#": 5142 + }, + { + "#": 5143 + }, + { + "#": 5144 + }, + { + "#": 5145 + }, + { + "#": 5146 + }, + { + "#": 5147 + }, + { + "#": 5148 + }, + { + "#": 5149 + }, + { + "#": 5150 + }, + { + "#": 5151 + }, + { + "#": 5152 + } + ], + { + "x": -0.97096, + "y": -0.23923 + }, + { + "x": -0.88541, + "y": -0.46481 + }, + { + "x": -0.74857, + "y": -0.66306 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.35459, + "y": -0.93502 + }, + { + "x": -0.12052, + "y": -0.99271 + }, + { + "x": 0.12052, + "y": -0.99271 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74857, + "y": -0.66306 + }, + { + "x": 0.88541, + "y": -0.46481 + }, + { + "x": 0.97096, + "y": -0.23923 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 104, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5154 + }, + "angle": 0, + "vertices": { + "#": 5155 + }, + "position": { + "#": 5172 + }, + "force": { + "#": 5173 + }, + "torque": 0, + "positionImpulse": { + "#": 5174 + }, + "constraintImpulse": { + "#": 5175 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5176 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5177 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5178 + }, + "circleRadius": 15.89783, + "bounds": { + "#": 5180 + }, + "positionPrev": { + "#": 5183 + }, + "anglePrev": 0, + "axes": { + "#": 5184 + }, + "area": 773.75383, + "mass": 0.77375, + "inverseMass": 1.2924, + "inertia": 381.19237, + "inverseInertia": 0.00262, + "parent": { + "#": 5153 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5153 + } + ], + [ + { + "#": 5156 + }, + { + "#": 5157 + }, + { + "#": 5158 + }, + { + "#": 5159 + }, + { + "#": 5160 + }, + { + "#": 5161 + }, + { + "#": 5162 + }, + { + "#": 5163 + }, + { + "#": 5164 + }, + { + "#": 5165 + }, + { + "#": 5166 + }, + { + "#": 5167 + }, + { + "#": 5168 + }, + { + "#": 5169 + }, + { + "#": 5170 + }, + { + "#": 5171 + } + ], + { + "x": 664.228, + "y": 683.638, + "index": 0, + "body": { + "#": 5153 + }, + "isInternal": false + }, + { + "x": 661.855, + "y": 689.368, + "index": 1, + "body": { + "#": 5153 + }, + "isInternal": false + }, + { + "x": 657.468, + "y": 693.755, + "index": 2, + "body": { + "#": 5153 + }, + "isInternal": false + }, + { + "x": 651.738, + "y": 696.128, + "index": 3, + "body": { + "#": 5153 + }, + "isInternal": false + }, + { + "x": 645.534, + "y": 696.128, + "index": 4, + "body": { + "#": 5153 + }, + "isInternal": false + }, + { + "x": 639.804, + "y": 693.755, + "index": 5, + "body": { + "#": 5153 + }, + "isInternal": false + }, + { + "x": 635.417, + "y": 689.368, + "index": 6, + "body": { + "#": 5153 + }, + "isInternal": false + }, + { + "x": 633.044, + "y": 683.638, + "index": 7, + "body": { + "#": 5153 + }, + "isInternal": false + }, + { + "x": 633.044, + "y": 677.434, + "index": 8, + "body": { + "#": 5153 + }, + "isInternal": false + }, + { + "x": 635.417, + "y": 671.704, + "index": 9, + "body": { + "#": 5153 + }, + "isInternal": false + }, + { + "x": 639.804, + "y": 667.317, + "index": 10, + "body": { + "#": 5153 + }, + "isInternal": false + }, + { + "x": 645.534, + "y": 664.944, + "index": 11, + "body": { + "#": 5153 + }, + "isInternal": false + }, + { + "x": 651.738, + "y": 664.944, + "index": 12, + "body": { + "#": 5153 + }, + "isInternal": false + }, + { + "x": 657.468, + "y": 667.317, + "index": 13, + "body": { + "#": 5153 + }, + "isInternal": false + }, + { + "x": 661.855, + "y": 671.704, + "index": 14, + "body": { + "#": 5153 + }, + "isInternal": false + }, + { + "x": 664.228, + "y": 677.434, + "index": 15, + "body": { + "#": 5153 + }, + "isInternal": false + }, + { + "x": 648.636, + "y": 680.536 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5179 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5181 + }, + "max": { + "#": 5182 + } + }, + { + "x": 633.044, + "y": 664.944 + }, + { + "x": 664.228, + "y": 696.128 + }, + { + "x": 648.636, + "y": 680.536 + }, + [ + { + "#": 5185 + }, + { + "#": 5186 + }, + { + "#": 5187 + }, + { + "#": 5188 + }, + { + "#": 5189 + }, + { + "#": 5190 + }, + { + "#": 5191 + }, + { + "#": 5192 + } + ], + { + "x": -0.9239, + "y": -0.38262 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38262, + "y": -0.9239 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38262, + "y": -0.9239 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.9239, + "y": -0.38262 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 105, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5194 + }, + "angle": 0, + "vertices": { + "#": 5195 + }, + "position": { + "#": 5220 + }, + "force": { + "#": 5221 + }, + "torque": 0, + "positionImpulse": { + "#": 5222 + }, + "constraintImpulse": { + "#": 5223 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5224 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5225 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5226 + }, + "circleRadius": 22.73515, + "bounds": { + "#": 5228 + }, + "positionPrev": { + "#": 5231 + }, + "anglePrev": 0, + "axes": { + "#": 5232 + }, + "area": 1605.38693, + "mass": 1.60539, + "inverseMass": 0.6229, + "inertia": 1640.78243, + "inverseInertia": 0.00061, + "parent": { + "#": 5193 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5193 + } + ], + [ + { + "#": 5196 + }, + { + "#": 5197 + }, + { + "#": 5198 + }, + { + "#": 5199 + }, + { + "#": 5200 + }, + { + "#": 5201 + }, + { + "#": 5202 + }, + { + "#": 5203 + }, + { + "#": 5204 + }, + { + "#": 5205 + }, + { + "#": 5206 + }, + { + "#": 5207 + }, + { + "#": 5208 + }, + { + "#": 5209 + }, + { + "#": 5210 + }, + { + "#": 5211 + }, + { + "#": 5212 + }, + { + "#": 5213 + }, + { + "#": 5214 + }, + { + "#": 5215 + }, + { + "#": 5216 + }, + { + "#": 5217 + }, + { + "#": 5218 + }, + { + "#": 5219 + } + ], + { + "x": 145.082, + "y": 759.923, + "index": 0, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 143.546, + "y": 765.655, + "index": 1, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 140.578, + "y": 770.795, + "index": 2, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 136.381, + "y": 774.992, + "index": 3, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 131.241, + "y": 777.96, + "index": 4, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 125.509, + "y": 779.496, + "index": 5, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 119.573, + "y": 779.496, + "index": 6, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 113.841, + "y": 777.96, + "index": 7, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 108.701, + "y": 774.992, + "index": 8, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 104.504, + "y": 770.795, + "index": 9, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 101.536, + "y": 765.655, + "index": 10, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 100, + "y": 759.923, + "index": 11, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 100, + "y": 753.987, + "index": 12, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 101.536, + "y": 748.255, + "index": 13, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 104.504, + "y": 743.115, + "index": 14, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 108.701, + "y": 738.918, + "index": 15, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 113.841, + "y": 735.95, + "index": 16, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 119.573, + "y": 734.414, + "index": 17, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 125.509, + "y": 734.414, + "index": 18, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 131.241, + "y": 735.95, + "index": 19, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 136.381, + "y": 738.918, + "index": 20, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 140.578, + "y": 743.115, + "index": 21, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 143.546, + "y": 748.255, + "index": 22, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 145.082, + "y": 753.987, + "index": 23, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 122.541, + "y": 756.955 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5227 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5229 + }, + "max": { + "#": 5230 + } + }, + { + "x": 100, + "y": 734.414 + }, + { + "x": 145.082, + "y": 779.496 + }, + { + "x": 122.541, + "y": 756.955 + }, + [ + { + "#": 5233 + }, + { + "#": 5234 + }, + { + "#": 5235 + }, + { + "#": 5236 + }, + { + "#": 5237 + }, + { + "#": 5238 + }, + { + "#": 5239 + }, + { + "#": 5240 + }, + { + "#": 5241 + }, + { + "#": 5242 + }, + { + "#": 5243 + }, + { + "#": 5244 + } + ], + { + "x": -0.96592, + "y": -0.25884 + }, + { + "x": -0.86599, + "y": -0.50005 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.50005, + "y": -0.86599 + }, + { + "x": -0.25884, + "y": -0.96592 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25884, + "y": -0.96592 + }, + { + "x": 0.50005, + "y": -0.86599 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86599, + "y": -0.50005 + }, + { + "x": 0.96592, + "y": -0.25884 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 106, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5246 + }, + "angle": 0, + "vertices": { + "#": 5247 + }, + "position": { + "#": 5266 + }, + "force": { + "#": 5267 + }, + "torque": 0, + "positionImpulse": { + "#": 5268 + }, + "constraintImpulse": { + "#": 5269 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5270 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5271 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5272 + }, + "circleRadius": 16.96444, + "bounds": { + "#": 5274 + }, + "positionPrev": { + "#": 5277 + }, + "anglePrev": 0, + "axes": { + "#": 5278 + }, + "area": 885.88985, + "mass": 0.88589, + "inverseMass": 1.12881, + "inertia": 499.66154, + "inverseInertia": 0.002, + "parent": { + "#": 5245 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5245 + } + ], + [ + { + "#": 5248 + }, + { + "#": 5249 + }, + { + "#": 5250 + }, + { + "#": 5251 + }, + { + "#": 5252 + }, + { + "#": 5253 + }, + { + "#": 5254 + }, + { + "#": 5255 + }, + { + "#": 5256 + }, + { + "#": 5257 + }, + { + "#": 5258 + }, + { + "#": 5259 + }, + { + "#": 5260 + }, + { + "#": 5261 + }, + { + "#": 5262 + }, + { + "#": 5263 + }, + { + "#": 5264 + }, + { + "#": 5265 + } + ], + { + "x": 188.496, + "y": 754.324, + "index": 0, + "body": { + "#": 5245 + }, + "isInternal": false + }, + { + "x": 186.481, + "y": 759.86, + "index": 1, + "body": { + "#": 5245 + }, + "isInternal": false + }, + { + "x": 182.694, + "y": 764.374, + "index": 2, + "body": { + "#": 5245 + }, + "isInternal": false + }, + { + "x": 177.591, + "y": 767.319, + "index": 3, + "body": { + "#": 5245 + }, + "isInternal": false + }, + { + "x": 171.789, + "y": 768.342, + "index": 4, + "body": { + "#": 5245 + }, + "isInternal": false + }, + { + "x": 165.987, + "y": 767.319, + "index": 5, + "body": { + "#": 5245 + }, + "isInternal": false + }, + { + "x": 160.884, + "y": 764.374, + "index": 6, + "body": { + "#": 5245 + }, + "isInternal": false + }, + { + "x": 157.097, + "y": 759.86, + "index": 7, + "body": { + "#": 5245 + }, + "isInternal": false + }, + { + "x": 155.082, + "y": 754.324, + "index": 8, + "body": { + "#": 5245 + }, + "isInternal": false + }, + { + "x": 155.082, + "y": 748.432, + "index": 9, + "body": { + "#": 5245 + }, + "isInternal": false + }, + { + "x": 157.097, + "y": 742.896, + "index": 10, + "body": { + "#": 5245 + }, + "isInternal": false + }, + { + "x": 160.884, + "y": 738.382, + "index": 11, + "body": { + "#": 5245 + }, + "isInternal": false + }, + { + "x": 165.987, + "y": 735.437, + "index": 12, + "body": { + "#": 5245 + }, + "isInternal": false + }, + { + "x": 171.789, + "y": 734.414, + "index": 13, + "body": { + "#": 5245 + }, + "isInternal": false + }, + { + "x": 177.591, + "y": 735.437, + "index": 14, + "body": { + "#": 5245 + }, + "isInternal": false + }, + { + "x": 182.694, + "y": 738.382, + "index": 15, + "body": { + "#": 5245 + }, + "isInternal": false + }, + { + "x": 186.481, + "y": 742.896, + "index": 16, + "body": { + "#": 5245 + }, + "isInternal": false + }, + { + "x": 188.496, + "y": 748.432, + "index": 17, + "body": { + "#": 5245 + }, + "isInternal": false + }, + { + "x": 171.789, + "y": 751.378 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5273 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5275 + }, + "max": { + "#": 5276 + } + }, + { + "x": 155.082, + "y": 734.414 + }, + { + "x": 188.496, + "y": 768.342 + }, + { + "x": 171.789, + "y": 751.378 + }, + [ + { + "#": 5279 + }, + { + "#": 5280 + }, + { + "#": 5281 + }, + { + "#": 5282 + }, + { + "#": 5283 + }, + { + "#": 5284 + }, + { + "#": 5285 + }, + { + "#": 5286 + }, + { + "#": 5287 + } + ], + { + "x": -0.93969, + "y": -0.34203 + }, + { + "x": -0.7661, + "y": -0.64272 + }, + { + "x": -0.49984, + "y": -0.86611 + }, + { + "x": -0.17364, + "y": -0.98481 + }, + { + "x": 0.17364, + "y": -0.98481 + }, + { + "x": 0.49984, + "y": -0.86611 + }, + { + "x": 0.7661, + "y": -0.64272 + }, + { + "x": 0.93969, + "y": -0.34203 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 107, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5289 + }, + "angle": 0, + "vertices": { + "#": 5290 + }, + "position": { + "#": 5315 + }, + "force": { + "#": 5316 + }, + "torque": 0, + "positionImpulse": { + "#": 5317 + }, + "constraintImpulse": { + "#": 5318 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5319 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5320 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5321 + }, + "circleRadius": 23.7709, + "bounds": { + "#": 5323 + }, + "positionPrev": { + "#": 5326 + }, + "anglePrev": 0, + "axes": { + "#": 5327 + }, + "area": 1754.99178, + "mass": 1.75499, + "inverseMass": 0.5698, + "inertia": 1960.83804, + "inverseInertia": 0.00051, + "parent": { + "#": 5288 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5288 + } + ], + [ + { + "#": 5291 + }, + { + "#": 5292 + }, + { + "#": 5293 + }, + { + "#": 5294 + }, + { + "#": 5295 + }, + { + "#": 5296 + }, + { + "#": 5297 + }, + { + "#": 5298 + }, + { + "#": 5299 + }, + { + "#": 5300 + }, + { + "#": 5301 + }, + { + "#": 5302 + }, + { + "#": 5303 + }, + { + "#": 5304 + }, + { + "#": 5305 + }, + { + "#": 5306 + }, + { + "#": 5307 + }, + { + "#": 5308 + }, + { + "#": 5309 + }, + { + "#": 5310 + }, + { + "#": 5311 + }, + { + "#": 5312 + }, + { + "#": 5313 + }, + { + "#": 5314 + } + ], + { + "x": 245.632, + "y": 761.085, + "index": 0, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 244.025, + "y": 767.079, + "index": 1, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 240.923, + "y": 772.453, + "index": 2, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 236.535, + "y": 776.841, + "index": 3, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 231.161, + "y": 779.943, + "index": 4, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 225.167, + "y": 781.55, + "index": 5, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 218.961, + "y": 781.55, + "index": 6, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 212.967, + "y": 779.943, + "index": 7, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 207.593, + "y": 776.841, + "index": 8, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 203.205, + "y": 772.453, + "index": 9, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 200.103, + "y": 767.079, + "index": 10, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 198.496, + "y": 761.085, + "index": 11, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 198.496, + "y": 754.879, + "index": 12, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 200.103, + "y": 748.885, + "index": 13, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 203.205, + "y": 743.511, + "index": 14, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 207.593, + "y": 739.123, + "index": 15, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 212.967, + "y": 736.021, + "index": 16, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 218.961, + "y": 734.414, + "index": 17, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 225.167, + "y": 734.414, + "index": 18, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 231.161, + "y": 736.021, + "index": 19, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 236.535, + "y": 739.123, + "index": 20, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 240.923, + "y": 743.511, + "index": 21, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 244.025, + "y": 748.885, + "index": 22, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 245.632, + "y": 754.879, + "index": 23, + "body": { + "#": 5288 + }, + "isInternal": false + }, + { + "x": 222.064, + "y": 757.982 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5322 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5324 + }, + "max": { + "#": 5325 + } + }, + { + "x": 198.496, + "y": 734.414 + }, + { + "x": 245.632, + "y": 781.55 + }, + { + "x": 222.064, + "y": 757.982 + }, + [ + { + "#": 5328 + }, + { + "#": 5329 + }, + { + "#": 5330 + }, + { + "#": 5331 + }, + { + "#": 5332 + }, + { + "#": 5333 + }, + { + "#": 5334 + }, + { + "#": 5335 + }, + { + "#": 5336 + }, + { + "#": 5337 + }, + { + "#": 5338 + }, + { + "#": 5339 + } + ], + { + "x": -0.96589, + "y": -0.25896 + }, + { + "x": -0.86607, + "y": -0.49992 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.49992, + "y": -0.86607 + }, + { + "x": -0.25896, + "y": -0.96589 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25896, + "y": -0.96589 + }, + { + "x": 0.49992, + "y": -0.86607 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86607, + "y": -0.49992 + }, + { + "x": 0.96589, + "y": -0.25896 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 108, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5341 + }, + "angle": 0, + "vertices": { + "#": 5342 + }, + "position": { + "#": 5369 + }, + "force": { + "#": 5370 + }, + "torque": 0, + "positionImpulse": { + "#": 5371 + }, + "constraintImpulse": { + "#": 5372 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5373 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5374 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5375 + }, + "circleRadius": 29.45081, + "bounds": { + "#": 5377 + }, + "positionPrev": { + "#": 5380 + }, + "anglePrev": 0, + "axes": { + "#": 5381 + }, + "area": 2698.39309, + "mass": 2.69839, + "inverseMass": 0.37059, + "inertia": 4635.52409, + "inverseInertia": 0.00022, + "parent": { + "#": 5340 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5340 + } + ], + [ + { + "#": 5343 + }, + { + "#": 5344 + }, + { + "#": 5345 + }, + { + "#": 5346 + }, + { + "#": 5347 + }, + { + "#": 5348 + }, + { + "#": 5349 + }, + { + "#": 5350 + }, + { + "#": 5351 + }, + { + "#": 5352 + }, + { + "#": 5353 + }, + { + "#": 5354 + }, + { + "#": 5355 + }, + { + "#": 5356 + }, + { + "#": 5357 + }, + { + "#": 5358 + }, + { + "#": 5359 + }, + { + "#": 5360 + }, + { + "#": 5361 + }, + { + "#": 5362 + }, + { + "#": 5363 + }, + { + "#": 5364 + }, + { + "#": 5365 + }, + { + "#": 5366 + }, + { + "#": 5367 + }, + { + "#": 5368 + } + ], + { + "x": 314.104, + "y": 767.415, + "index": 0, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 312.405, + "y": 774.308, + "index": 1, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 309.106, + "y": 780.595, + "index": 2, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 304.397, + "y": 785.909, + "index": 3, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 298.554, + "y": 789.942, + "index": 4, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 291.916, + "y": 792.46, + "index": 5, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 284.868, + "y": 793.316, + "index": 6, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 277.82, + "y": 792.46, + "index": 7, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 271.182, + "y": 789.942, + "index": 8, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 265.339, + "y": 785.909, + "index": 9, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 260.63, + "y": 780.595, + "index": 10, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 257.331, + "y": 774.308, + "index": 11, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 255.632, + "y": 767.415, + "index": 12, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 255.632, + "y": 760.315, + "index": 13, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 257.331, + "y": 753.422, + "index": 14, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 260.63, + "y": 747.135, + "index": 15, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 265.339, + "y": 741.821, + "index": 16, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 271.182, + "y": 737.788, + "index": 17, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 277.82, + "y": 735.27, + "index": 18, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 284.868, + "y": 734.414, + "index": 19, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 291.916, + "y": 735.27, + "index": 20, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 298.554, + "y": 737.788, + "index": 21, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 304.397, + "y": 741.821, + "index": 22, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 309.106, + "y": 747.135, + "index": 23, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 312.405, + "y": 753.422, + "index": 24, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 314.104, + "y": 760.315, + "index": 25, + "body": { + "#": 5340 + }, + "isInternal": false + }, + { + "x": 284.868, + "y": 763.865 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5376 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5378 + }, + "max": { + "#": 5379 + } + }, + { + "x": 255.632, + "y": 734.414 + }, + { + "x": 314.104, + "y": 793.316 + }, + { + "x": 284.868, + "y": 763.865 + }, + [ + { + "#": 5382 + }, + { + "#": 5383 + }, + { + "#": 5384 + }, + { + "#": 5385 + }, + { + "#": 5386 + }, + { + "#": 5387 + }, + { + "#": 5388 + }, + { + "#": 5389 + }, + { + "#": 5390 + }, + { + "#": 5391 + }, + { + "#": 5392 + }, + { + "#": 5393 + }, + { + "#": 5394 + } + ], + { + "x": -0.97094, + "y": -0.23932 + }, + { + "x": -0.88549, + "y": -0.46465 + }, + { + "x": -0.74843, + "y": -0.66322 + }, + { + "x": -0.56805, + "y": -0.82299 + }, + { + "x": -0.35467, + "y": -0.93499 + }, + { + "x": -0.12057, + "y": -0.99271 + }, + { + "x": 0.12057, + "y": -0.99271 + }, + { + "x": 0.35467, + "y": -0.93499 + }, + { + "x": 0.56805, + "y": -0.82299 + }, + { + "x": 0.74843, + "y": -0.66322 + }, + { + "x": 0.88549, + "y": -0.46465 + }, + { + "x": 0.97094, + "y": -0.23932 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 109, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5396 + }, + "angle": 0, + "vertices": { + "#": 5397 + }, + "position": { + "#": 5418 + }, + "force": { + "#": 5419 + }, + "torque": 0, + "positionImpulse": { + "#": 5420 + }, + "constraintImpulse": { + "#": 5421 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5422 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5423 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5424 + }, + "circleRadius": 18.07825, + "bounds": { + "#": 5426 + }, + "positionPrev": { + "#": 5429 + }, + "anglePrev": 0, + "axes": { + "#": 5430 + }, + "area": 1009.94408, + "mass": 1.00994, + "inverseMass": 0.99015, + "inertia": 649.37947, + "inverseInertia": 0.00154, + "parent": { + "#": 5395 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5395 + } + ], + [ + { + "#": 5398 + }, + { + "#": 5399 + }, + { + "#": 5400 + }, + { + "#": 5401 + }, + { + "#": 5402 + }, + { + "#": 5403 + }, + { + "#": 5404 + }, + { + "#": 5405 + }, + { + "#": 5406 + }, + { + "#": 5407 + }, + { + "#": 5408 + }, + { + "#": 5409 + }, + { + "#": 5410 + }, + { + "#": 5411 + }, + { + "#": 5412 + }, + { + "#": 5413 + }, + { + "#": 5414 + }, + { + "#": 5415 + }, + { + "#": 5416 + }, + { + "#": 5417 + } + ], + { + "x": 359.816, + "y": 755.098, + "index": 0, + "body": { + "#": 5395 + }, + "isInternal": false + }, + { + "x": 358.068, + "y": 760.477, + "index": 1, + "body": { + "#": 5395 + }, + "isInternal": false + }, + { + "x": 354.743, + "y": 765.053, + "index": 2, + "body": { + "#": 5395 + }, + "isInternal": false + }, + { + "x": 350.167, + "y": 768.378, + "index": 3, + "body": { + "#": 5395 + }, + "isInternal": false + }, + { + "x": 344.788, + "y": 770.126, + "index": 4, + "body": { + "#": 5395 + }, + "isInternal": false + }, + { + "x": 339.132, + "y": 770.126, + "index": 5, + "body": { + "#": 5395 + }, + "isInternal": false + }, + { + "x": 333.753, + "y": 768.378, + "index": 6, + "body": { + "#": 5395 + }, + "isInternal": false + }, + { + "x": 329.177, + "y": 765.053, + "index": 7, + "body": { + "#": 5395 + }, + "isInternal": false + }, + { + "x": 325.852, + "y": 760.477, + "index": 8, + "body": { + "#": 5395 + }, + "isInternal": false + }, + { + "x": 324.104, + "y": 755.098, + "index": 9, + "body": { + "#": 5395 + }, + "isInternal": false + }, + { + "x": 324.104, + "y": 749.442, + "index": 10, + "body": { + "#": 5395 + }, + "isInternal": false + }, + { + "x": 325.852, + "y": 744.063, + "index": 11, + "body": { + "#": 5395 + }, + "isInternal": false + }, + { + "x": 329.177, + "y": 739.487, + "index": 12, + "body": { + "#": 5395 + }, + "isInternal": false + }, + { + "x": 333.753, + "y": 736.162, + "index": 13, + "body": { + "#": 5395 + }, + "isInternal": false + }, + { + "x": 339.132, + "y": 734.414, + "index": 14, + "body": { + "#": 5395 + }, + "isInternal": false + }, + { + "x": 344.788, + "y": 734.414, + "index": 15, + "body": { + "#": 5395 + }, + "isInternal": false + }, + { + "x": 350.167, + "y": 736.162, + "index": 16, + "body": { + "#": 5395 + }, + "isInternal": false + }, + { + "x": 354.743, + "y": 739.487, + "index": 17, + "body": { + "#": 5395 + }, + "isInternal": false + }, + { + "x": 358.068, + "y": 744.063, + "index": 18, + "body": { + "#": 5395 + }, + "isInternal": false + }, + { + "x": 359.816, + "y": 749.442, + "index": 19, + "body": { + "#": 5395 + }, + "isInternal": false + }, + { + "x": 341.96, + "y": 752.27 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5425 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5427 + }, + "max": { + "#": 5428 + } + }, + { + "x": 324.104, + "y": 734.414 + }, + { + "x": 359.816, + "y": 770.126 + }, + { + "x": 341.96, + "y": 752.27 + }, + [ + { + "#": 5431 + }, + { + "#": 5432 + }, + { + "#": 5433 + }, + { + "#": 5434 + }, + { + "#": 5435 + }, + { + "#": 5436 + }, + { + "#": 5437 + }, + { + "#": 5438 + }, + { + "#": 5439 + }, + { + "#": 5440 + } + ], + { + "x": -0.95104, + "y": -0.30906 + }, + { + "x": -0.80899, + "y": -0.58782 + }, + { + "x": -0.58782, + "y": -0.80899 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.58782, + "y": -0.80899 + }, + { + "x": 0.80899, + "y": -0.58782 + }, + { + "x": 0.95104, + "y": -0.30906 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 110, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5442 + }, + "angle": 0, + "vertices": { + "#": 5443 + }, + "position": { + "#": 5464 + }, + "force": { + "#": 5465 + }, + "torque": 0, + "positionImpulse": { + "#": 5466 + }, + "constraintImpulse": { + "#": 5467 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5468 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5469 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5470 + }, + "circleRadius": 18.17175, + "bounds": { + "#": 5472 + }, + "positionPrev": { + "#": 5475 + }, + "anglePrev": 0, + "axes": { + "#": 5476 + }, + "area": 1020.40024, + "mass": 1.0204, + "inverseMass": 0.98001, + "inertia": 662.8954, + "inverseInertia": 0.00151, + "parent": { + "#": 5441 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5441 + } + ], + [ + { + "#": 5444 + }, + { + "#": 5445 + }, + { + "#": 5446 + }, + { + "#": 5447 + }, + { + "#": 5448 + }, + { + "#": 5449 + }, + { + "#": 5450 + }, + { + "#": 5451 + }, + { + "#": 5452 + }, + { + "#": 5453 + }, + { + "#": 5454 + }, + { + "#": 5455 + }, + { + "#": 5456 + }, + { + "#": 5457 + }, + { + "#": 5458 + }, + { + "#": 5459 + }, + { + "#": 5460 + }, + { + "#": 5461 + }, + { + "#": 5462 + }, + { + "#": 5463 + } + ], + { + "x": 405.712, + "y": 755.205, + "index": 0, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 403.955, + "y": 760.612, + "index": 1, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 400.613, + "y": 765.211, + "index": 2, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 396.014, + "y": 768.553, + "index": 3, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 390.607, + "y": 770.31, + "index": 4, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 384.921, + "y": 770.31, + "index": 5, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 379.514, + "y": 768.553, + "index": 6, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 374.915, + "y": 765.211, + "index": 7, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 371.573, + "y": 760.612, + "index": 8, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 369.816, + "y": 755.205, + "index": 9, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 369.816, + "y": 749.519, + "index": 10, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 371.573, + "y": 744.112, + "index": 11, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 374.915, + "y": 739.513, + "index": 12, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 379.514, + "y": 736.171, + "index": 13, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 384.921, + "y": 734.414, + "index": 14, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 390.607, + "y": 734.414, + "index": 15, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 396.014, + "y": 736.171, + "index": 16, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 400.613, + "y": 739.513, + "index": 17, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 403.955, + "y": 744.112, + "index": 18, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 405.712, + "y": 749.519, + "index": 19, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 387.764, + "y": 752.362 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5471 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5473 + }, + "max": { + "#": 5474 + } + }, + { + "x": 369.816, + "y": 734.414 + }, + { + "x": 405.712, + "y": 770.31 + }, + { + "x": 387.764, + "y": 752.362 + }, + [ + { + "#": 5477 + }, + { + "#": 5478 + }, + { + "#": 5479 + }, + { + "#": 5480 + }, + { + "#": 5481 + }, + { + "#": 5482 + }, + { + "#": 5483 + }, + { + "#": 5484 + }, + { + "#": 5485 + }, + { + "#": 5486 + } + ], + { + "x": -0.95105, + "y": -0.30904 + }, + { + "x": -0.80896, + "y": -0.58786 + }, + { + "x": -0.58786, + "y": -0.80896 + }, + { + "x": -0.30904, + "y": -0.95105 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30904, + "y": -0.95105 + }, + { + "x": 0.58786, + "y": -0.80896 + }, + { + "x": 0.80896, + "y": -0.58786 + }, + { + "x": 0.95105, + "y": -0.30904 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 111, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5488 + }, + "angle": 0, + "vertices": { + "#": 5489 + }, + "position": { + "#": 5516 + }, + "force": { + "#": 5517 + }, + "torque": 0, + "positionImpulse": { + "#": 5518 + }, + "constraintImpulse": { + "#": 5519 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5520 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5521 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5522 + }, + "circleRadius": 24.36092, + "bounds": { + "#": 5524 + }, + "positionPrev": { + "#": 5527 + }, + "anglePrev": 0, + "axes": { + "#": 5528 + }, + "area": 1846.30768, + "mass": 1.84631, + "inverseMass": 0.54162, + "inertia": 2170.18403, + "inverseInertia": 0.00046, + "parent": { + "#": 5487 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5487 + } + ], + [ + { + "#": 5490 + }, + { + "#": 5491 + }, + { + "#": 5492 + }, + { + "#": 5493 + }, + { + "#": 5494 + }, + { + "#": 5495 + }, + { + "#": 5496 + }, + { + "#": 5497 + }, + { + "#": 5498 + }, + { + "#": 5499 + }, + { + "#": 5500 + }, + { + "#": 5501 + }, + { + "#": 5502 + }, + { + "#": 5503 + }, + { + "#": 5504 + }, + { + "#": 5505 + }, + { + "#": 5506 + }, + { + "#": 5507 + }, + { + "#": 5508 + }, + { + "#": 5509 + }, + { + "#": 5510 + }, + { + "#": 5511 + }, + { + "#": 5512 + }, + { + "#": 5513 + }, + { + "#": 5514 + }, + { + "#": 5515 + } + ], + { + "x": 464.078, + "y": 761.711, + "index": 0, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 462.673, + "y": 767.414, + "index": 1, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 459.944, + "y": 772.614, + "index": 2, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 456.049, + "y": 777.009, + "index": 3, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 451.216, + "y": 780.346, + "index": 4, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 445.725, + "y": 782.428, + "index": 5, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 439.895, + "y": 783.136, + "index": 6, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 434.065, + "y": 782.428, + "index": 7, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 428.574, + "y": 780.346, + "index": 8, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 423.741, + "y": 777.009, + "index": 9, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 419.846, + "y": 772.614, + "index": 10, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 417.117, + "y": 767.414, + "index": 11, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 415.712, + "y": 761.711, + "index": 12, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 415.712, + "y": 755.839, + "index": 13, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 417.117, + "y": 750.136, + "index": 14, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 419.846, + "y": 744.936, + "index": 15, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 423.741, + "y": 740.541, + "index": 16, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 428.574, + "y": 737.204, + "index": 17, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 434.065, + "y": 735.122, + "index": 18, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 439.895, + "y": 734.414, + "index": 19, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 445.725, + "y": 735.122, + "index": 20, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 451.216, + "y": 737.204, + "index": 21, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 456.049, + "y": 740.541, + "index": 22, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 459.944, + "y": 744.936, + "index": 23, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 462.673, + "y": 750.136, + "index": 24, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 464.078, + "y": 755.839, + "index": 25, + "body": { + "#": 5487 + }, + "isInternal": false + }, + { + "x": 439.895, + "y": 758.775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5523 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5525 + }, + "max": { + "#": 5526 + } + }, + { + "x": 415.712, + "y": 734.414 + }, + { + "x": 464.078, + "y": 783.136 + }, + { + "x": 439.895, + "y": 758.775 + }, + [ + { + "#": 5529 + }, + { + "#": 5530 + }, + { + "#": 5531 + }, + { + "#": 5532 + }, + { + "#": 5533 + }, + { + "#": 5534 + }, + { + "#": 5535 + }, + { + "#": 5536 + }, + { + "#": 5537 + }, + { + "#": 5538 + }, + { + "#": 5539 + }, + { + "#": 5540 + }, + { + "#": 5541 + } + ], + { + "x": -0.97097, + "y": -0.23921 + }, + { + "x": -0.88547, + "y": -0.4647 + }, + { + "x": -0.74839, + "y": -0.66325 + }, + { + "x": -0.56818, + "y": -0.8229 + }, + { + "x": -0.35454, + "y": -0.93504 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.35454, + "y": -0.93504 + }, + { + "x": 0.56818, + "y": -0.8229 + }, + { + "x": 0.74839, + "y": -0.66325 + }, + { + "x": 0.88547, + "y": -0.4647 + }, + { + "x": 0.97097, + "y": -0.23921 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 112, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5543 + }, + "angle": 0, + "vertices": { + "#": 5544 + }, + "position": { + "#": 5565 + }, + "force": { + "#": 5566 + }, + "torque": 0, + "positionImpulse": { + "#": 5567 + }, + "constraintImpulse": { + "#": 5568 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5569 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5570 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5571 + }, + "circleRadius": 19.05318, + "bounds": { + "#": 5573 + }, + "positionPrev": { + "#": 5576 + }, + "anglePrev": 0, + "axes": { + "#": 5577 + }, + "area": 1121.86009, + "mass": 1.12186, + "inverseMass": 0.89138, + "inertia": 801.27446, + "inverseInertia": 0.00125, + "parent": { + "#": 5542 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5542 + } + ], + [ + { + "#": 5545 + }, + { + "#": 5546 + }, + { + "#": 5547 + }, + { + "#": 5548 + }, + { + "#": 5549 + }, + { + "#": 5550 + }, + { + "#": 5551 + }, + { + "#": 5552 + }, + { + "#": 5553 + }, + { + "#": 5554 + }, + { + "#": 5555 + }, + { + "#": 5556 + }, + { + "#": 5557 + }, + { + "#": 5558 + }, + { + "#": 5559 + }, + { + "#": 5560 + }, + { + "#": 5561 + }, + { + "#": 5562 + }, + { + "#": 5563 + }, + { + "#": 5564 + } + ], + { + "x": 511.716, + "y": 756.214, + "index": 0, + "body": { + "#": 5542 + }, + "isInternal": false + }, + { + "x": 509.874, + "y": 761.883, + "index": 1, + "body": { + "#": 5542 + }, + "isInternal": false + }, + { + "x": 506.37, + "y": 766.706, + "index": 2, + "body": { + "#": 5542 + }, + "isInternal": false + }, + { + "x": 501.547, + "y": 770.21, + "index": 3, + "body": { + "#": 5542 + }, + "isInternal": false + }, + { + "x": 495.878, + "y": 772.052, + "index": 4, + "body": { + "#": 5542 + }, + "isInternal": false + }, + { + "x": 489.916, + "y": 772.052, + "index": 5, + "body": { + "#": 5542 + }, + "isInternal": false + }, + { + "x": 484.247, + "y": 770.21, + "index": 6, + "body": { + "#": 5542 + }, + "isInternal": false + }, + { + "x": 479.424, + "y": 766.706, + "index": 7, + "body": { + "#": 5542 + }, + "isInternal": false + }, + { + "x": 475.92, + "y": 761.883, + "index": 8, + "body": { + "#": 5542 + }, + "isInternal": false + }, + { + "x": 474.078, + "y": 756.214, + "index": 9, + "body": { + "#": 5542 + }, + "isInternal": false + }, + { + "x": 474.078, + "y": 750.252, + "index": 10, + "body": { + "#": 5542 + }, + "isInternal": false + }, + { + "x": 475.92, + "y": 744.583, + "index": 11, + "body": { + "#": 5542 + }, + "isInternal": false + }, + { + "x": 479.424, + "y": 739.76, + "index": 12, + "body": { + "#": 5542 + }, + "isInternal": false + }, + { + "x": 484.247, + "y": 736.256, + "index": 13, + "body": { + "#": 5542 + }, + "isInternal": false + }, + { + "x": 489.916, + "y": 734.414, + "index": 14, + "body": { + "#": 5542 + }, + "isInternal": false + }, + { + "x": 495.878, + "y": 734.414, + "index": 15, + "body": { + "#": 5542 + }, + "isInternal": false + }, + { + "x": 501.547, + "y": 736.256, + "index": 16, + "body": { + "#": 5542 + }, + "isInternal": false + }, + { + "x": 506.37, + "y": 739.76, + "index": 17, + "body": { + "#": 5542 + }, + "isInternal": false + }, + { + "x": 509.874, + "y": 744.583, + "index": 18, + "body": { + "#": 5542 + }, + "isInternal": false + }, + { + "x": 511.716, + "y": 750.252, + "index": 19, + "body": { + "#": 5542 + }, + "isInternal": false + }, + { + "x": 492.897, + "y": 753.233 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5572 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5574 + }, + "max": { + "#": 5575 + } + }, + { + "x": 474.078, + "y": 734.414 + }, + { + "x": 511.716, + "y": 772.052 + }, + { + "x": 492.897, + "y": 753.233 + }, + [ + { + "#": 5578 + }, + { + "#": 5579 + }, + { + "#": 5580 + }, + { + "#": 5581 + }, + { + "#": 5582 + }, + { + "#": 5583 + }, + { + "#": 5584 + }, + { + "#": 5585 + }, + { + "#": 5586 + }, + { + "#": 5587 + } + ], + { + "x": -0.95106, + "y": -0.30902 + }, + { + "x": -0.80903, + "y": -0.58777 + }, + { + "x": -0.58777, + "y": -0.80903 + }, + { + "x": -0.30902, + "y": -0.95106 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30902, + "y": -0.95106 + }, + { + "x": 0.58777, + "y": -0.80903 + }, + { + "x": 0.80903, + "y": -0.58777 + }, + { + "x": 0.95106, + "y": -0.30902 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 113, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5589 + }, + "angle": 0, + "vertices": { + "#": 5590 + }, + "position": { + "#": 5611 + }, + "force": { + "#": 5612 + }, + "torque": 0, + "positionImpulse": { + "#": 5613 + }, + "constraintImpulse": { + "#": 5614 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5615 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5616 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5617 + }, + "circleRadius": 19.10037, + "bounds": { + "#": 5619 + }, + "positionPrev": { + "#": 5622 + }, + "anglePrev": 0, + "axes": { + "#": 5623 + }, + "area": 1127.3694, + "mass": 1.12737, + "inverseMass": 0.88702, + "inertia": 809.1637, + "inverseInertia": 0.00124, + "parent": { + "#": 5588 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5588 + } + ], + [ + { + "#": 5591 + }, + { + "#": 5592 + }, + { + "#": 5593 + }, + { + "#": 5594 + }, + { + "#": 5595 + }, + { + "#": 5596 + }, + { + "#": 5597 + }, + { + "#": 5598 + }, + { + "#": 5599 + }, + { + "#": 5600 + }, + { + "#": 5601 + }, + { + "#": 5602 + }, + { + "#": 5603 + }, + { + "#": 5604 + }, + { + "#": 5605 + }, + { + "#": 5606 + }, + { + "#": 5607 + }, + { + "#": 5608 + }, + { + "#": 5609 + }, + { + "#": 5610 + } + ], + { + "x": 559.446, + "y": 756.267, + "index": 0, + "body": { + "#": 5588 + }, + "isInternal": false + }, + { + "x": 557.6, + "y": 761.95, + "index": 1, + "body": { + "#": 5588 + }, + "isInternal": false + }, + { + "x": 554.087, + "y": 766.785, + "index": 2, + "body": { + "#": 5588 + }, + "isInternal": false + }, + { + "x": 549.252, + "y": 770.298, + "index": 3, + "body": { + "#": 5588 + }, + "isInternal": false + }, + { + "x": 543.569, + "y": 772.144, + "index": 4, + "body": { + "#": 5588 + }, + "isInternal": false + }, + { + "x": 537.593, + "y": 772.144, + "index": 5, + "body": { + "#": 5588 + }, + "isInternal": false + }, + { + "x": 531.91, + "y": 770.298, + "index": 6, + "body": { + "#": 5588 + }, + "isInternal": false + }, + { + "x": 527.075, + "y": 766.785, + "index": 7, + "body": { + "#": 5588 + }, + "isInternal": false + }, + { + "x": 523.562, + "y": 761.95, + "index": 8, + "body": { + "#": 5588 + }, + "isInternal": false + }, + { + "x": 521.716, + "y": 756.267, + "index": 9, + "body": { + "#": 5588 + }, + "isInternal": false + }, + { + "x": 521.716, + "y": 750.291, + "index": 10, + "body": { + "#": 5588 + }, + "isInternal": false + }, + { + "x": 523.562, + "y": 744.608, + "index": 11, + "body": { + "#": 5588 + }, + "isInternal": false + }, + { + "x": 527.075, + "y": 739.773, + "index": 12, + "body": { + "#": 5588 + }, + "isInternal": false + }, + { + "x": 531.91, + "y": 736.26, + "index": 13, + "body": { + "#": 5588 + }, + "isInternal": false + }, + { + "x": 537.593, + "y": 734.414, + "index": 14, + "body": { + "#": 5588 + }, + "isInternal": false + }, + { + "x": 543.569, + "y": 734.414, + "index": 15, + "body": { + "#": 5588 + }, + "isInternal": false + }, + { + "x": 549.252, + "y": 736.26, + "index": 16, + "body": { + "#": 5588 + }, + "isInternal": false + }, + { + "x": 554.087, + "y": 739.773, + "index": 17, + "body": { + "#": 5588 + }, + "isInternal": false + }, + { + "x": 557.6, + "y": 744.608, + "index": 18, + "body": { + "#": 5588 + }, + "isInternal": false + }, + { + "x": 559.446, + "y": 750.291, + "index": 19, + "body": { + "#": 5588 + }, + "isInternal": false + }, + { + "x": 540.581, + "y": 753.279 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5618 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5620 + }, + "max": { + "#": 5621 + } + }, + { + "x": 521.716, + "y": 734.414 + }, + { + "x": 559.446, + "y": 772.144 + }, + { + "x": 540.581, + "y": 753.279 + }, + [ + { + "#": 5624 + }, + { + "#": 5625 + }, + { + "#": 5626 + }, + { + "#": 5627 + }, + { + "#": 5628 + }, + { + "#": 5629 + }, + { + "#": 5630 + }, + { + "#": 5631 + }, + { + "#": 5632 + }, + { + "#": 5633 + } + ], + { + "x": -0.95108, + "y": -0.30894 + }, + { + "x": -0.809, + "y": -0.5878 + }, + { + "x": -0.5878, + "y": -0.809 + }, + { + "x": -0.30894, + "y": -0.95108 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30894, + "y": -0.95108 + }, + { + "x": 0.5878, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.5878 + }, + { + "x": 0.95108, + "y": -0.30894 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 114, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5635 + }, + "angle": 0, + "vertices": { + "#": 5636 + }, + "position": { + "#": 5663 + }, + "force": { + "#": 5664 + }, + "torque": 0, + "positionImpulse": { + "#": 5665 + }, + "constraintImpulse": { + "#": 5666 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5667 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5668 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5669 + }, + "circleRadius": 27.46547, + "bounds": { + "#": 5671 + }, + "positionPrev": { + "#": 5674 + }, + "anglePrev": 0, + "axes": { + "#": 5675 + }, + "area": 2346.8455, + "mass": 2.34685, + "inverseMass": 0.4261, + "inertia": 3506.36732, + "inverseInertia": 0.00029, + "parent": { + "#": 5634 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5634 + } + ], + [ + { + "#": 5637 + }, + { + "#": 5638 + }, + { + "#": 5639 + }, + { + "#": 5640 + }, + { + "#": 5641 + }, + { + "#": 5642 + }, + { + "#": 5643 + }, + { + "#": 5644 + }, + { + "#": 5645 + }, + { + "#": 5646 + }, + { + "#": 5647 + }, + { + "#": 5648 + }, + { + "#": 5649 + }, + { + "#": 5650 + }, + { + "#": 5651 + }, + { + "#": 5652 + }, + { + "#": 5653 + }, + { + "#": 5654 + }, + { + "#": 5655 + }, + { + "#": 5656 + }, + { + "#": 5657 + }, + { + "#": 5658 + }, + { + "#": 5659 + }, + { + "#": 5660 + }, + { + "#": 5661 + }, + { + "#": 5662 + } + ], + { + "x": 623.976, + "y": 765.19, + "index": 0, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 622.392, + "y": 771.618, + "index": 1, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 619.315, + "y": 777.481, + "index": 2, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 614.924, + "y": 782.437, + "index": 3, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 609.475, + "y": 786.198, + "index": 4, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 603.284, + "y": 788.546, + "index": 5, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 596.711, + "y": 789.344, + "index": 6, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 590.138, + "y": 788.546, + "index": 7, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 583.947, + "y": 786.198, + "index": 8, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 578.498, + "y": 782.437, + "index": 9, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 574.107, + "y": 777.481, + "index": 10, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 571.03, + "y": 771.618, + "index": 11, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 569.446, + "y": 765.19, + "index": 12, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 569.446, + "y": 758.568, + "index": 13, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 571.03, + "y": 752.14, + "index": 14, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 574.107, + "y": 746.277, + "index": 15, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 578.498, + "y": 741.321, + "index": 16, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 583.947, + "y": 737.56, + "index": 17, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 590.138, + "y": 735.212, + "index": 18, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 596.711, + "y": 734.414, + "index": 19, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 603.284, + "y": 735.212, + "index": 20, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 609.475, + "y": 737.56, + "index": 21, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 614.924, + "y": 741.321, + "index": 22, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 619.315, + "y": 746.277, + "index": 23, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 622.392, + "y": 752.14, + "index": 24, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 623.976, + "y": 758.568, + "index": 25, + "body": { + "#": 5634 + }, + "isInternal": false + }, + { + "x": 596.711, + "y": 761.879 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5670 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5672 + }, + "max": { + "#": 5673 + } + }, + { + "x": 569.446, + "y": 734.414 + }, + { + "x": 623.976, + "y": 789.344 + }, + { + "x": 596.711, + "y": 761.879 + }, + [ + { + "#": 5676 + }, + { + "#": 5677 + }, + { + "#": 5678 + }, + { + "#": 5679 + }, + { + "#": 5680 + }, + { + "#": 5681 + }, + { + "#": 5682 + }, + { + "#": 5683 + }, + { + "#": 5684 + }, + { + "#": 5685 + }, + { + "#": 5686 + }, + { + "#": 5687 + }, + { + "#": 5688 + } + ], + { + "x": -0.97095, + "y": -0.23926 + }, + { + "x": -0.88546, + "y": -0.46471 + }, + { + "x": -0.74848, + "y": -0.66315 + }, + { + "x": -0.56805, + "y": -0.823 + }, + { + "x": -0.35461, + "y": -0.93501 + }, + { + "x": -0.12052, + "y": -0.99271 + }, + { + "x": 0.12052, + "y": -0.99271 + }, + { + "x": 0.35461, + "y": -0.93501 + }, + { + "x": 0.56805, + "y": -0.823 + }, + { + "x": 0.74848, + "y": -0.66315 + }, + { + "x": 0.88546, + "y": -0.46471 + }, + { + "x": 0.97095, + "y": -0.23926 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 115, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5690 + }, + "angle": 0, + "vertices": { + "#": 5691 + }, + "position": { + "#": 5718 + }, + "force": { + "#": 5719 + }, + "torque": 0, + "positionImpulse": { + "#": 5720 + }, + "constraintImpulse": { + "#": 5721 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5722 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5723 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5724 + }, + "circleRadius": 24.88921, + "bounds": { + "#": 5726 + }, + "positionPrev": { + "#": 5729 + }, + "anglePrev": 0, + "axes": { + "#": 5730 + }, + "area": 1927.25482, + "mass": 1.92725, + "inverseMass": 0.51887, + "inertia": 2364.64904, + "inverseInertia": 0.00042, + "parent": { + "#": 5689 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5689 + } + ], + [ + { + "#": 5692 + }, + { + "#": 5693 + }, + { + "#": 5694 + }, + { + "#": 5695 + }, + { + "#": 5696 + }, + { + "#": 5697 + }, + { + "#": 5698 + }, + { + "#": 5699 + }, + { + "#": 5700 + }, + { + "#": 5701 + }, + { + "#": 5702 + }, + { + "#": 5703 + }, + { + "#": 5704 + }, + { + "#": 5705 + }, + { + "#": 5706 + }, + { + "#": 5707 + }, + { + "#": 5708 + }, + { + "#": 5709 + }, + { + "#": 5710 + }, + { + "#": 5711 + }, + { + "#": 5712 + }, + { + "#": 5713 + }, + { + "#": 5714 + }, + { + "#": 5715 + }, + { + "#": 5716 + }, + { + "#": 5717 + } + ], + { + "x": 149.416, + "y": 831.205, + "index": 0, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 147.98, + "y": 837.031, + "index": 1, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 145.191, + "y": 842.344, + "index": 2, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 141.213, + "y": 846.835, + "index": 3, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 136.275, + "y": 850.243, + "index": 4, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 130.664, + "y": 852.371, + "index": 5, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 124.708, + "y": 853.094, + "index": 6, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 118.752, + "y": 852.371, + "index": 7, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 113.141, + "y": 850.243, + "index": 8, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 108.203, + "y": 846.835, + "index": 9, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 104.225, + "y": 842.344, + "index": 10, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 101.436, + "y": 837.031, + "index": 11, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 100, + "y": 831.205, + "index": 12, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 100, + "y": 825.205, + "index": 13, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 101.436, + "y": 819.379, + "index": 14, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 104.225, + "y": 814.066, + "index": 15, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 108.203, + "y": 809.575, + "index": 16, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 113.141, + "y": 806.167, + "index": 17, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 118.752, + "y": 804.039, + "index": 18, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 124.708, + "y": 803.316, + "index": 19, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 130.664, + "y": 804.039, + "index": 20, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 136.275, + "y": 806.167, + "index": 21, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 141.213, + "y": 809.575, + "index": 22, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 145.191, + "y": 814.066, + "index": 23, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 147.98, + "y": 819.379, + "index": 24, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 149.416, + "y": 825.205, + "index": 25, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 124.708, + "y": 828.205 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5725 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5727 + }, + "max": { + "#": 5728 + } + }, + { + "x": 100, + "y": 803.316 + }, + { + "x": 149.416, + "y": 853.094 + }, + { + "x": 124.708, + "y": 828.205 + }, + [ + { + "#": 5731 + }, + { + "#": 5732 + }, + { + "#": 5733 + }, + { + "#": 5734 + }, + { + "#": 5735 + }, + { + "#": 5736 + }, + { + "#": 5737 + }, + { + "#": 5738 + }, + { + "#": 5739 + }, + { + "#": 5740 + }, + { + "#": 5741 + }, + { + "#": 5742 + }, + { + "#": 5743 + } + ], + { + "x": -0.97094, + "y": -0.23932 + }, + { + "x": -0.88542, + "y": -0.46479 + }, + { + "x": -0.74857, + "y": -0.66306 + }, + { + "x": -0.56801, + "y": -0.82302 + }, + { + "x": -0.35461, + "y": -0.93501 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35461, + "y": -0.93501 + }, + { + "x": 0.56801, + "y": -0.82302 + }, + { + "x": 0.74857, + "y": -0.66306 + }, + { + "x": 0.88542, + "y": -0.46479 + }, + { + "x": 0.97094, + "y": -0.23932 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 116, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5745 + }, + "angle": 0, + "vertices": { + "#": 5746 + }, + "position": { + "#": 5765 + }, + "force": { + "#": 5766 + }, + "torque": 0, + "positionImpulse": { + "#": 5767 + }, + "constraintImpulse": { + "#": 5768 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5769 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5770 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5771 + }, + "circleRadius": 16.55678, + "bounds": { + "#": 5773 + }, + "positionPrev": { + "#": 5776 + }, + "anglePrev": 0, + "axes": { + "#": 5777 + }, + "area": 843.7976, + "mass": 0.8438, + "inverseMass": 1.18512, + "inertia": 453.30764, + "inverseInertia": 0.00221, + "parent": { + "#": 5744 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5744 + } + ], + [ + { + "#": 5747 + }, + { + "#": 5748 + }, + { + "#": 5749 + }, + { + "#": 5750 + }, + { + "#": 5751 + }, + { + "#": 5752 + }, + { + "#": 5753 + }, + { + "#": 5754 + }, + { + "#": 5755 + }, + { + "#": 5756 + }, + { + "#": 5757 + }, + { + "#": 5758 + }, + { + "#": 5759 + }, + { + "#": 5760 + }, + { + "#": 5761 + }, + { + "#": 5762 + }, + { + "#": 5763 + }, + { + "#": 5764 + } + ], + { + "x": 192.026, + "y": 822.748, + "index": 0, + "body": { + "#": 5744 + }, + "isInternal": false + }, + { + "x": 190.06, + "y": 828.151, + "index": 1, + "body": { + "#": 5744 + }, + "isInternal": false + }, + { + "x": 186.363, + "y": 832.556, + "index": 2, + "body": { + "#": 5744 + }, + "isInternal": false + }, + { + "x": 181.384, + "y": 835.431, + "index": 3, + "body": { + "#": 5744 + }, + "isInternal": false + }, + { + "x": 175.721, + "y": 836.43, + "index": 4, + "body": { + "#": 5744 + }, + "isInternal": false + }, + { + "x": 170.058, + "y": 835.431, + "index": 5, + "body": { + "#": 5744 + }, + "isInternal": false + }, + { + "x": 165.079, + "y": 832.556, + "index": 6, + "body": { + "#": 5744 + }, + "isInternal": false + }, + { + "x": 161.382, + "y": 828.151, + "index": 7, + "body": { + "#": 5744 + }, + "isInternal": false + }, + { + "x": 159.416, + "y": 822.748, + "index": 8, + "body": { + "#": 5744 + }, + "isInternal": false + }, + { + "x": 159.416, + "y": 816.998, + "index": 9, + "body": { + "#": 5744 + }, + "isInternal": false + }, + { + "x": 161.382, + "y": 811.595, + "index": 10, + "body": { + "#": 5744 + }, + "isInternal": false + }, + { + "x": 165.079, + "y": 807.19, + "index": 11, + "body": { + "#": 5744 + }, + "isInternal": false + }, + { + "x": 170.058, + "y": 804.315, + "index": 12, + "body": { + "#": 5744 + }, + "isInternal": false + }, + { + "x": 175.721, + "y": 803.316, + "index": 13, + "body": { + "#": 5744 + }, + "isInternal": false + }, + { + "x": 181.384, + "y": 804.315, + "index": 14, + "body": { + "#": 5744 + }, + "isInternal": false + }, + { + "x": 186.363, + "y": 807.19, + "index": 15, + "body": { + "#": 5744 + }, + "isInternal": false + }, + { + "x": 190.06, + "y": 811.595, + "index": 16, + "body": { + "#": 5744 + }, + "isInternal": false + }, + { + "x": 192.026, + "y": 816.998, + "index": 17, + "body": { + "#": 5744 + }, + "isInternal": false + }, + { + "x": 175.721, + "y": 819.873 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5772 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5774 + }, + "max": { + "#": 5775 + } + }, + { + "x": 159.416, + "y": 803.316 + }, + { + "x": 192.026, + "y": 836.43 + }, + { + "x": 175.721, + "y": 819.873 + }, + [ + { + "#": 5778 + }, + { + "#": 5779 + }, + { + "#": 5780 + }, + { + "#": 5781 + }, + { + "#": 5782 + }, + { + "#": 5783 + }, + { + "#": 5784 + }, + { + "#": 5785 + }, + { + "#": 5786 + } + ], + { + "x": -0.93972, + "y": -0.34194 + }, + { + "x": -0.76598, + "y": -0.64287 + }, + { + "x": -0.50005, + "y": -0.866 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.50005, + "y": -0.866 + }, + { + "x": 0.76598, + "y": -0.64287 + }, + { + "x": 0.93972, + "y": -0.34194 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 117, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5788 + }, + "angle": 0, + "vertices": { + "#": 5789 + }, + "position": { + "#": 5816 + }, + "force": { + "#": 5817 + }, + "torque": 0, + "positionImpulse": { + "#": 5818 + }, + "constraintImpulse": { + "#": 5819 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5820 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5821 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5822 + }, + "circleRadius": 28.76447, + "bounds": { + "#": 5824 + }, + "positionPrev": { + "#": 5827 + }, + "anglePrev": 0, + "axes": { + "#": 5828 + }, + "area": 2574.13853, + "mass": 2.57414, + "inverseMass": 0.38848, + "inertia": 4218.44352, + "inverseInertia": 0.00024, + "parent": { + "#": 5787 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5787 + } + ], + [ + { + "#": 5790 + }, + { + "#": 5791 + }, + { + "#": 5792 + }, + { + "#": 5793 + }, + { + "#": 5794 + }, + { + "#": 5795 + }, + { + "#": 5796 + }, + { + "#": 5797 + }, + { + "#": 5798 + }, + { + "#": 5799 + }, + { + "#": 5800 + }, + { + "#": 5801 + }, + { + "#": 5802 + }, + { + "#": 5803 + }, + { + "#": 5804 + }, + { + "#": 5805 + }, + { + "#": 5806 + }, + { + "#": 5807 + }, + { + "#": 5808 + }, + { + "#": 5809 + }, + { + "#": 5810 + }, + { + "#": 5811 + }, + { + "#": 5812 + }, + { + "#": 5813 + }, + { + "#": 5814 + }, + { + "#": 5815 + } + ], + { + "x": 259.136, + "y": 835.547, + "index": 0, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 257.476, + "y": 842.28, + "index": 1, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 254.254, + "y": 848.42, + "index": 2, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 249.655, + "y": 853.611, + "index": 3, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 243.949, + "y": 857.55, + "index": 4, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 237.465, + "y": 860.009, + "index": 5, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 230.581, + "y": 860.844, + "index": 6, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 223.697, + "y": 860.009, + "index": 7, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 217.213, + "y": 857.55, + "index": 8, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 211.507, + "y": 853.611, + "index": 9, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 206.908, + "y": 848.42, + "index": 10, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 203.686, + "y": 842.28, + "index": 11, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 202.026, + "y": 835.547, + "index": 12, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 202.026, + "y": 828.613, + "index": 13, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 203.686, + "y": 821.88, + "index": 14, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 206.908, + "y": 815.74, + "index": 15, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 211.507, + "y": 810.549, + "index": 16, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 217.213, + "y": 806.61, + "index": 17, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 223.697, + "y": 804.151, + "index": 18, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 230.581, + "y": 803.316, + "index": 19, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 237.465, + "y": 804.151, + "index": 20, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 243.949, + "y": 806.61, + "index": 21, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 249.655, + "y": 810.549, + "index": 22, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 254.254, + "y": 815.74, + "index": 23, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 257.476, + "y": 821.88, + "index": 24, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 259.136, + "y": 828.613, + "index": 25, + "body": { + "#": 5787 + }, + "isInternal": false + }, + { + "x": 230.581, + "y": 832.08 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5823 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5825 + }, + "max": { + "#": 5826 + } + }, + { + "x": 202.026, + "y": 803.316 + }, + { + "x": 259.136, + "y": 860.844 + }, + { + "x": 230.581, + "y": 832.08 + }, + [ + { + "#": 5829 + }, + { + "#": 5830 + }, + { + "#": 5831 + }, + { + "#": 5832 + }, + { + "#": 5833 + }, + { + "#": 5834 + }, + { + "#": 5835 + }, + { + "#": 5836 + }, + { + "#": 5837 + }, + { + "#": 5838 + }, + { + "#": 5839 + }, + { + "#": 5840 + }, + { + "#": 5841 + } + ], + { + "x": -0.97093, + "y": -0.23938 + }, + { + "x": -0.88549, + "y": -0.46466 + }, + { + "x": -0.7485, + "y": -0.66314 + }, + { + "x": -0.56811, + "y": -0.82295 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12041, + "y": -0.99272 + }, + { + "x": 0.12041, + "y": -0.99272 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56811, + "y": -0.82295 + }, + { + "x": 0.7485, + "y": -0.66314 + }, + { + "x": 0.88549, + "y": -0.46466 + }, + { + "x": 0.97093, + "y": -0.23938 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 118, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5843 + }, + "angle": 0, + "vertices": { + "#": 5844 + }, + "position": { + "#": 5871 + }, + "force": { + "#": 5872 + }, + "torque": 0, + "positionImpulse": { + "#": 5873 + }, + "constraintImpulse": { + "#": 5874 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5875 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5876 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5877 + }, + "circleRadius": 25.58636, + "bounds": { + "#": 5879 + }, + "positionPrev": { + "#": 5882 + }, + "anglePrev": 0, + "axes": { + "#": 5883 + }, + "area": 2036.75221, + "mass": 2.03675, + "inverseMass": 0.49098, + "inertia": 2640.97811, + "inverseInertia": 0.00038, + "parent": { + "#": 5842 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5842 + } + ], + [ + { + "#": 5845 + }, + { + "#": 5846 + }, + { + "#": 5847 + }, + { + "#": 5848 + }, + { + "#": 5849 + }, + { + "#": 5850 + }, + { + "#": 5851 + }, + { + "#": 5852 + }, + { + "#": 5853 + }, + { + "#": 5854 + }, + { + "#": 5855 + }, + { + "#": 5856 + }, + { + "#": 5857 + }, + { + "#": 5858 + }, + { + "#": 5859 + }, + { + "#": 5860 + }, + { + "#": 5861 + }, + { + "#": 5862 + }, + { + "#": 5863 + }, + { + "#": 5864 + }, + { + "#": 5865 + }, + { + "#": 5866 + }, + { + "#": 5867 + }, + { + "#": 5868 + }, + { + "#": 5869 + }, + { + "#": 5870 + } + ], + { + "x": 319.936, + "y": 831.986, + "index": 0, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 318.46, + "y": 837.975, + "index": 1, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 315.593, + "y": 843.437, + "index": 2, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 311.503, + "y": 848.054, + "index": 3, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 306.427, + "y": 851.558, + "index": 4, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 300.659, + "y": 853.745, + "index": 5, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 294.536, + "y": 854.488, + "index": 6, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 288.413, + "y": 853.745, + "index": 7, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 282.645, + "y": 851.558, + "index": 8, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 277.569, + "y": 848.054, + "index": 9, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 273.479, + "y": 843.437, + "index": 10, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 270.612, + "y": 837.975, + "index": 11, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 269.136, + "y": 831.986, + "index": 12, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 269.136, + "y": 825.818, + "index": 13, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 270.612, + "y": 819.829, + "index": 14, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 273.479, + "y": 814.367, + "index": 15, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 277.569, + "y": 809.75, + "index": 16, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 282.645, + "y": 806.246, + "index": 17, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 288.413, + "y": 804.059, + "index": 18, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 294.536, + "y": 803.316, + "index": 19, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 300.659, + "y": 804.059, + "index": 20, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 306.427, + "y": 806.246, + "index": 21, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 311.503, + "y": 809.75, + "index": 22, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 315.593, + "y": 814.367, + "index": 23, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 318.46, + "y": 819.829, + "index": 24, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 319.936, + "y": 825.818, + "index": 25, + "body": { + "#": 5842 + }, + "isInternal": false + }, + { + "x": 294.536, + "y": 828.902 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5878 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5880 + }, + "max": { + "#": 5881 + } + }, + { + "x": 269.136, + "y": 803.316 + }, + { + "x": 319.936, + "y": 854.488 + }, + { + "x": 294.536, + "y": 828.902 + }, + [ + { + "#": 5884 + }, + { + "#": 5885 + }, + { + "#": 5886 + }, + { + "#": 5887 + }, + { + "#": 5888 + }, + { + "#": 5889 + }, + { + "#": 5890 + }, + { + "#": 5891 + }, + { + "#": 5892 + }, + { + "#": 5893 + }, + { + "#": 5894 + }, + { + "#": 5895 + }, + { + "#": 5896 + } + ], + { + "x": -0.97095, + "y": -0.23929 + }, + { + "x": -0.88543, + "y": -0.46476 + }, + { + "x": -0.74854, + "y": -0.66309 + }, + { + "x": -0.5681, + "y": -0.82296 + }, + { + "x": -0.35453, + "y": -0.93504 + }, + { + "x": -0.12046, + "y": -0.99272 + }, + { + "x": 0.12046, + "y": -0.99272 + }, + { + "x": 0.35453, + "y": -0.93504 + }, + { + "x": 0.5681, + "y": -0.82296 + }, + { + "x": 0.74854, + "y": -0.66309 + }, + { + "x": 0.88543, + "y": -0.46476 + }, + { + "x": 0.97095, + "y": -0.23929 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 119, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5898 + }, + "angle": 0, + "vertices": { + "#": 5899 + }, + "position": { + "#": 5916 + }, + "force": { + "#": 5917 + }, + "torque": 0, + "positionImpulse": { + "#": 5918 + }, + "constraintImpulse": { + "#": 5919 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5920 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5921 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5922 + }, + "circleRadius": 15.54096, + "bounds": { + "#": 5924 + }, + "positionPrev": { + "#": 5927 + }, + "anglePrev": 0, + "axes": { + "#": 5928 + }, + "area": 739.39893, + "mass": 0.7394, + "inverseMass": 1.35245, + "inertia": 348.09373, + "inverseInertia": 0.00287, + "parent": { + "#": 5897 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5897 + } + ], + [ + { + "#": 5900 + }, + { + "#": 5901 + }, + { + "#": 5902 + }, + { + "#": 5903 + }, + { + "#": 5904 + }, + { + "#": 5905 + }, + { + "#": 5906 + }, + { + "#": 5907 + }, + { + "#": 5908 + }, + { + "#": 5909 + }, + { + "#": 5910 + }, + { + "#": 5911 + }, + { + "#": 5912 + }, + { + "#": 5913 + }, + { + "#": 5914 + }, + { + "#": 5915 + } + ], + { + "x": 360.42, + "y": 821.59, + "index": 0, + "body": { + "#": 5897 + }, + "isInternal": false + }, + { + "x": 358.1, + "y": 827.192, + "index": 1, + "body": { + "#": 5897 + }, + "isInternal": false + }, + { + "x": 353.812, + "y": 831.48, + "index": 2, + "body": { + "#": 5897 + }, + "isInternal": false + }, + { + "x": 348.21, + "y": 833.8, + "index": 3, + "body": { + "#": 5897 + }, + "isInternal": false + }, + { + "x": 342.146, + "y": 833.8, + "index": 4, + "body": { + "#": 5897 + }, + "isInternal": false + }, + { + "x": 336.544, + "y": 831.48, + "index": 5, + "body": { + "#": 5897 + }, + "isInternal": false + }, + { + "x": 332.256, + "y": 827.192, + "index": 6, + "body": { + "#": 5897 + }, + "isInternal": false + }, + { + "x": 329.936, + "y": 821.59, + "index": 7, + "body": { + "#": 5897 + }, + "isInternal": false + }, + { + "x": 329.936, + "y": 815.526, + "index": 8, + "body": { + "#": 5897 + }, + "isInternal": false + }, + { + "x": 332.256, + "y": 809.924, + "index": 9, + "body": { + "#": 5897 + }, + "isInternal": false + }, + { + "x": 336.544, + "y": 805.636, + "index": 10, + "body": { + "#": 5897 + }, + "isInternal": false + }, + { + "x": 342.146, + "y": 803.316, + "index": 11, + "body": { + "#": 5897 + }, + "isInternal": false + }, + { + "x": 348.21, + "y": 803.316, + "index": 12, + "body": { + "#": 5897 + }, + "isInternal": false + }, + { + "x": 353.812, + "y": 805.636, + "index": 13, + "body": { + "#": 5897 + }, + "isInternal": false + }, + { + "x": 358.1, + "y": 809.924, + "index": 14, + "body": { + "#": 5897 + }, + "isInternal": false + }, + { + "x": 360.42, + "y": 815.526, + "index": 15, + "body": { + "#": 5897 + }, + "isInternal": false + }, + { + "x": 345.178, + "y": 818.558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5923 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5925 + }, + "max": { + "#": 5926 + } + }, + { + "x": 329.936, + "y": 803.316 + }, + { + "x": 360.42, + "y": 833.8 + }, + { + "x": 345.178, + "y": 818.558 + }, + [ + { + "#": 5929 + }, + { + "#": 5930 + }, + { + "#": 5931 + }, + { + "#": 5932 + }, + { + "#": 5933 + }, + { + "#": 5934 + }, + { + "#": 5935 + }, + { + "#": 5936 + } + ], + { + "x": -0.9239, + "y": -0.38262 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38262, + "y": -0.9239 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38262, + "y": -0.9239 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.9239, + "y": -0.38262 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 120, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5938 + }, + "angle": 0, + "vertices": { + "#": 5939 + }, + "position": { + "#": 5960 + }, + "force": { + "#": 5961 + }, + "torque": 0, + "positionImpulse": { + "#": 5962 + }, + "constraintImpulse": { + "#": 5963 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5964 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5965 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5966 + }, + "circleRadius": 18.25791, + "bounds": { + "#": 5968 + }, + "positionPrev": { + "#": 5971 + }, + "anglePrev": 0, + "axes": { + "#": 5972 + }, + "area": 1030.10107, + "mass": 1.0301, + "inverseMass": 0.97078, + "inertia": 675.55946, + "inverseInertia": 0.00148, + "parent": { + "#": 5937 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5937 + } + ], + [ + { + "#": 5940 + }, + { + "#": 5941 + }, + { + "#": 5942 + }, + { + "#": 5943 + }, + { + "#": 5944 + }, + { + "#": 5945 + }, + { + "#": 5946 + }, + { + "#": 5947 + }, + { + "#": 5948 + }, + { + "#": 5949 + }, + { + "#": 5950 + }, + { + "#": 5951 + }, + { + "#": 5952 + }, + { + "#": 5953 + }, + { + "#": 5954 + }, + { + "#": 5955 + }, + { + "#": 5956 + }, + { + "#": 5957 + }, + { + "#": 5958 + }, + { + "#": 5959 + } + ], + { + "x": 406.486, + "y": 824.205, + "index": 0, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 404.721, + "y": 829.638, + "index": 1, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 401.363, + "y": 834.259, + "index": 2, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 396.742, + "y": 837.617, + "index": 3, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 391.309, + "y": 839.382, + "index": 4, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 385.597, + "y": 839.382, + "index": 5, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 380.164, + "y": 837.617, + "index": 6, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 375.543, + "y": 834.259, + "index": 7, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 372.185, + "y": 829.638, + "index": 8, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 370.42, + "y": 824.205, + "index": 9, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 370.42, + "y": 818.493, + "index": 10, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 372.185, + "y": 813.06, + "index": 11, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 375.543, + "y": 808.439, + "index": 12, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 380.164, + "y": 805.081, + "index": 13, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 385.597, + "y": 803.316, + "index": 14, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 391.309, + "y": 803.316, + "index": 15, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 396.742, + "y": 805.081, + "index": 16, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 401.363, + "y": 808.439, + "index": 17, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 404.721, + "y": 813.06, + "index": 18, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 406.486, + "y": 818.493, + "index": 19, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 388.453, + "y": 821.349 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5967 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5969 + }, + "max": { + "#": 5970 + } + }, + { + "x": 370.42, + "y": 803.316 + }, + { + "x": 406.486, + "y": 839.382 + }, + { + "x": 388.453, + "y": 821.349 + }, + [ + { + "#": 5973 + }, + { + "#": 5974 + }, + { + "#": 5975 + }, + { + "#": 5976 + }, + { + "#": 5977 + }, + { + "#": 5978 + }, + { + "#": 5979 + }, + { + "#": 5980 + }, + { + "#": 5981 + }, + { + "#": 5982 + } + ], + { + "x": -0.95107, + "y": -0.30897 + }, + { + "x": -0.80896, + "y": -0.58786 + }, + { + "x": -0.58786, + "y": -0.80896 + }, + { + "x": -0.30897, + "y": -0.95107 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30897, + "y": -0.95107 + }, + { + "x": 0.58786, + "y": -0.80896 + }, + { + "x": 0.80896, + "y": -0.58786 + }, + { + "x": 0.95107, + "y": -0.30897 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 121, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5984 + }, + "angle": 0, + "vertices": { + "#": 5985 + }, + "position": { + "#": 6012 + }, + "force": { + "#": 6013 + }, + "torque": 0, + "positionImpulse": { + "#": 6014 + }, + "constraintImpulse": { + "#": 6015 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6016 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6017 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6018 + }, + "circleRadius": 26.14461, + "bounds": { + "#": 6020 + }, + "positionPrev": { + "#": 6023 + }, + "anglePrev": 0, + "axes": { + "#": 6024 + }, + "area": 2126.60242, + "mass": 2.1266, + "inverseMass": 0.47023, + "inertia": 2879.12828, + "inverseInertia": 0.00035, + "parent": { + "#": 5983 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5983 + } + ], + [ + { + "#": 5986 + }, + { + "#": 5987 + }, + { + "#": 5988 + }, + { + "#": 5989 + }, + { + "#": 5990 + }, + { + "#": 5991 + }, + { + "#": 5992 + }, + { + "#": 5993 + }, + { + "#": 5994 + }, + { + "#": 5995 + }, + { + "#": 5996 + }, + { + "#": 5997 + }, + { + "#": 5998 + }, + { + "#": 5999 + }, + { + "#": 6000 + }, + { + "#": 6001 + }, + { + "#": 6002 + }, + { + "#": 6003 + }, + { + "#": 6004 + }, + { + "#": 6005 + }, + { + "#": 6006 + }, + { + "#": 6007 + }, + { + "#": 6008 + }, + { + "#": 6009 + }, + { + "#": 6010 + }, + { + "#": 6011 + } + ], + { + "x": 468.394, + "y": 832.612, + "index": 0, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 466.886, + "y": 838.732, + "index": 1, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 463.957, + "y": 844.313, + "index": 2, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 459.777, + "y": 849.031, + "index": 3, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 454.59, + "y": 852.611, + "index": 4, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 448.697, + "y": 854.846, + "index": 5, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 442.44, + "y": 855.606, + "index": 6, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 436.183, + "y": 854.846, + "index": 7, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 430.29, + "y": 852.611, + "index": 8, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 425.103, + "y": 849.031, + "index": 9, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 420.923, + "y": 844.313, + "index": 10, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 417.994, + "y": 838.732, + "index": 11, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 416.486, + "y": 832.612, + "index": 12, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 416.486, + "y": 826.31, + "index": 13, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 417.994, + "y": 820.19, + "index": 14, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 420.923, + "y": 814.609, + "index": 15, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 425.103, + "y": 809.891, + "index": 16, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 430.29, + "y": 806.311, + "index": 17, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 436.183, + "y": 804.076, + "index": 18, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 442.44, + "y": 803.316, + "index": 19, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 448.697, + "y": 804.076, + "index": 20, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 454.59, + "y": 806.311, + "index": 21, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 459.777, + "y": 809.891, + "index": 22, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 463.957, + "y": 814.609, + "index": 23, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 466.886, + "y": 820.19, + "index": 24, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 468.394, + "y": 826.31, + "index": 25, + "body": { + "#": 5983 + }, + "isInternal": false + }, + { + "x": 442.44, + "y": 829.461 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6019 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6021 + }, + "max": { + "#": 6022 + } + }, + { + "x": 416.486, + "y": 803.316 + }, + { + "x": 468.394, + "y": 855.606 + }, + { + "x": 442.44, + "y": 829.461 + }, + [ + { + "#": 6025 + }, + { + "#": 6026 + }, + { + "#": 6027 + }, + { + "#": 6028 + }, + { + "#": 6029 + }, + { + "#": 6030 + }, + { + "#": 6031 + }, + { + "#": 6032 + }, + { + "#": 6033 + }, + { + "#": 6034 + }, + { + "#": 6035 + }, + { + "#": 6036 + }, + { + "#": 6037 + } + ], + { + "x": -0.97096, + "y": -0.23925 + }, + { + "x": -0.88546, + "y": -0.46471 + }, + { + "x": -0.74849, + "y": -0.66314 + }, + { + "x": -0.56803, + "y": -0.82301 + }, + { + "x": -0.35462, + "y": -0.93501 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.35462, + "y": -0.93501 + }, + { + "x": 0.56803, + "y": -0.82301 + }, + { + "x": 0.74849, + "y": -0.66314 + }, + { + "x": 0.88546, + "y": -0.46471 + }, + { + "x": 0.97096, + "y": -0.23925 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 122, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6039 + }, + "angle": 0, + "vertices": { + "#": 6040 + }, + "position": { + "#": 6063 + }, + "force": { + "#": 6064 + }, + "torque": 0, + "positionImpulse": { + "#": 6065 + }, + "constraintImpulse": { + "#": 6066 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6067 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6068 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6069 + }, + "circleRadius": 21.05292, + "bounds": { + "#": 6071 + }, + "positionPrev": { + "#": 6074 + }, + "anglePrev": 0, + "axes": { + "#": 6075 + }, + "area": 1373.59094, + "mass": 1.37359, + "inverseMass": 0.72802, + "inertia": 1201.18851, + "inverseInertia": 0.00083, + "parent": { + "#": 6038 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6038 + } + ], + [ + { + "#": 6041 + }, + { + "#": 6042 + }, + { + "#": 6043 + }, + { + "#": 6044 + }, + { + "#": 6045 + }, + { + "#": 6046 + }, + { + "#": 6047 + }, + { + "#": 6048 + }, + { + "#": 6049 + }, + { + "#": 6050 + }, + { + "#": 6051 + }, + { + "#": 6052 + }, + { + "#": 6053 + }, + { + "#": 6054 + }, + { + "#": 6055 + }, + { + "#": 6056 + }, + { + "#": 6057 + }, + { + "#": 6058 + }, + { + "#": 6059 + }, + { + "#": 6060 + }, + { + "#": 6061 + }, + { + "#": 6062 + } + ], + { + "x": 520.072, + "y": 827.365, + "index": 0, + "body": { + "#": 6038 + }, + "isInternal": false + }, + { + "x": 518.383, + "y": 833.115, + "index": 1, + "body": { + "#": 6038 + }, + "isInternal": false + }, + { + "x": 515.144, + "y": 838.156, + "index": 2, + "body": { + "#": 6038 + }, + "isInternal": false + }, + { + "x": 510.615, + "y": 842.08, + "index": 3, + "body": { + "#": 6038 + }, + "isInternal": false + }, + { + "x": 505.164, + "y": 844.569, + "index": 4, + "body": { + "#": 6038 + }, + "isInternal": false + }, + { + "x": 499.233, + "y": 845.422, + "index": 5, + "body": { + "#": 6038 + }, + "isInternal": false + }, + { + "x": 493.302, + "y": 844.569, + "index": 6, + "body": { + "#": 6038 + }, + "isInternal": false + }, + { + "x": 487.851, + "y": 842.08, + "index": 7, + "body": { + "#": 6038 + }, + "isInternal": false + }, + { + "x": 483.322, + "y": 838.156, + "index": 8, + "body": { + "#": 6038 + }, + "isInternal": false + }, + { + "x": 480.083, + "y": 833.115, + "index": 9, + "body": { + "#": 6038 + }, + "isInternal": false + }, + { + "x": 478.394, + "y": 827.365, + "index": 10, + "body": { + "#": 6038 + }, + "isInternal": false + }, + { + "x": 478.394, + "y": 821.373, + "index": 11, + "body": { + "#": 6038 + }, + "isInternal": false + }, + { + "x": 480.083, + "y": 815.623, + "index": 12, + "body": { + "#": 6038 + }, + "isInternal": false + }, + { + "x": 483.322, + "y": 810.582, + "index": 13, + "body": { + "#": 6038 + }, + "isInternal": false + }, + { + "x": 487.851, + "y": 806.658, + "index": 14, + "body": { + "#": 6038 + }, + "isInternal": false + }, + { + "x": 493.302, + "y": 804.169, + "index": 15, + "body": { + "#": 6038 + }, + "isInternal": false + }, + { + "x": 499.233, + "y": 803.316, + "index": 16, + "body": { + "#": 6038 + }, + "isInternal": false + }, + { + "x": 505.164, + "y": 804.169, + "index": 17, + "body": { + "#": 6038 + }, + "isInternal": false + }, + { + "x": 510.615, + "y": 806.658, + "index": 18, + "body": { + "#": 6038 + }, + "isInternal": false + }, + { + "x": 515.144, + "y": 810.582, + "index": 19, + "body": { + "#": 6038 + }, + "isInternal": false + }, + { + "x": 518.383, + "y": 815.623, + "index": 20, + "body": { + "#": 6038 + }, + "isInternal": false + }, + { + "x": 520.072, + "y": 821.373, + "index": 21, + "body": { + "#": 6038 + }, + "isInternal": false + }, + { + "x": 499.233, + "y": 824.369 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6070 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6072 + }, + "max": { + "#": 6073 + } + }, + { + "x": 478.394, + "y": 803.316 + }, + { + "x": 520.072, + "y": 845.422 + }, + { + "x": 499.233, + "y": 824.369 + }, + [ + { + "#": 6076 + }, + { + "#": 6077 + }, + { + "#": 6078 + }, + { + "#": 6079 + }, + { + "#": 6080 + }, + { + "#": 6081 + }, + { + "#": 6082 + }, + { + "#": 6083 + }, + { + "#": 6084 + }, + { + "#": 6085 + }, + { + "#": 6086 + } + ], + { + "x": -0.95946, + "y": -0.28183 + }, + { + "x": -0.8413, + "y": -0.54056 + }, + { + "x": -0.65482, + "y": -0.75578 + }, + { + "x": -0.41536, + "y": -0.90966 + }, + { + "x": -0.14236, + "y": -0.98982 + }, + { + "x": 0.14236, + "y": -0.98982 + }, + { + "x": 0.41536, + "y": -0.90966 + }, + { + "x": 0.65482, + "y": -0.75578 + }, + { + "x": 0.8413, + "y": -0.54056 + }, + { + "x": 0.95946, + "y": -0.28183 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 123, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6088 + }, + "angle": 0, + "vertices": { + "#": 6089 + }, + "position": { + "#": 6106 + }, + "force": { + "#": 6107 + }, + "torque": 0, + "positionImpulse": { + "#": 6108 + }, + "constraintImpulse": { + "#": 6109 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6110 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6111 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6112 + }, + "circleRadius": 15.94579, + "bounds": { + "#": 6114 + }, + "positionPrev": { + "#": 6117 + }, + "anglePrev": 0, + "axes": { + "#": 6118 + }, + "area": 778.39813, + "mass": 0.7784, + "inverseMass": 1.28469, + "inertia": 385.78216, + "inverseInertia": 0.00259, + "parent": { + "#": 6087 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6087 + } + ], + [ + { + "#": 6090 + }, + { + "#": 6091 + }, + { + "#": 6092 + }, + { + "#": 6093 + }, + { + "#": 6094 + }, + { + "#": 6095 + }, + { + "#": 6096 + }, + { + "#": 6097 + }, + { + "#": 6098 + }, + { + "#": 6099 + }, + { + "#": 6100 + }, + { + "#": 6101 + }, + { + "#": 6102 + }, + { + "#": 6103 + }, + { + "#": 6104 + }, + { + "#": 6105 + } + ], + { + "x": 561.35, + "y": 822.066, + "index": 0, + "body": { + "#": 6087 + }, + "isInternal": false + }, + { + "x": 558.969, + "y": 827.814, + "index": 1, + "body": { + "#": 6087 + }, + "isInternal": false + }, + { + "x": 554.57, + "y": 832.213, + "index": 2, + "body": { + "#": 6087 + }, + "isInternal": false + }, + { + "x": 548.822, + "y": 834.594, + "index": 3, + "body": { + "#": 6087 + }, + "isInternal": false + }, + { + "x": 542.6, + "y": 834.594, + "index": 4, + "body": { + "#": 6087 + }, + "isInternal": false + }, + { + "x": 536.852, + "y": 832.213, + "index": 5, + "body": { + "#": 6087 + }, + "isInternal": false + }, + { + "x": 532.453, + "y": 827.814, + "index": 6, + "body": { + "#": 6087 + }, + "isInternal": false + }, + { + "x": 530.072, + "y": 822.066, + "index": 7, + "body": { + "#": 6087 + }, + "isInternal": false + }, + { + "x": 530.072, + "y": 815.844, + "index": 8, + "body": { + "#": 6087 + }, + "isInternal": false + }, + { + "x": 532.453, + "y": 810.096, + "index": 9, + "body": { + "#": 6087 + }, + "isInternal": false + }, + { + "x": 536.852, + "y": 805.697, + "index": 10, + "body": { + "#": 6087 + }, + "isInternal": false + }, + { + "x": 542.6, + "y": 803.316, + "index": 11, + "body": { + "#": 6087 + }, + "isInternal": false + }, + { + "x": 548.822, + "y": 803.316, + "index": 12, + "body": { + "#": 6087 + }, + "isInternal": false + }, + { + "x": 554.57, + "y": 805.697, + "index": 13, + "body": { + "#": 6087 + }, + "isInternal": false + }, + { + "x": 558.969, + "y": 810.096, + "index": 14, + "body": { + "#": 6087 + }, + "isInternal": false + }, + { + "x": 561.35, + "y": 815.844, + "index": 15, + "body": { + "#": 6087 + }, + "isInternal": false + }, + { + "x": 545.711, + "y": 818.955 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6113 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6115 + }, + "max": { + "#": 6116 + } + }, + { + "x": 530.072, + "y": 803.316 + }, + { + "x": 561.35, + "y": 834.594 + }, + { + "x": 545.711, + "y": 818.955 + }, + [ + { + "#": 6119 + }, + { + "#": 6120 + }, + { + "#": 6121 + }, + { + "#": 6122 + }, + { + "#": 6123 + }, + { + "#": 6124 + }, + { + "#": 6125 + }, + { + "#": 6126 + } + ], + { + "x": -0.92387, + "y": -0.3827 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.3827, + "y": -0.92387 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3827, + "y": -0.92387 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92387, + "y": -0.3827 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 124, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6128 + }, + "angle": 0, + "vertices": { + "#": 6129 + }, + "position": { + "#": 6148 + }, + "force": { + "#": 6149 + }, + "torque": 0, + "positionImpulse": { + "#": 6150 + }, + "constraintImpulse": { + "#": 6151 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6152 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6153 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6154 + }, + "circleRadius": 16.56398, + "bounds": { + "#": 6156 + }, + "positionPrev": { + "#": 6159 + }, + "anglePrev": 0, + "axes": { + "#": 6160 + }, + "area": 844.54151, + "mass": 0.84454, + "inverseMass": 1.18407, + "inertia": 454.10729, + "inverseInertia": 0.0022, + "parent": { + "#": 6127 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6127 + } + ], + [ + { + "#": 6130 + }, + { + "#": 6131 + }, + { + "#": 6132 + }, + { + "#": 6133 + }, + { + "#": 6134 + }, + { + "#": 6135 + }, + { + "#": 6136 + }, + { + "#": 6137 + }, + { + "#": 6138 + }, + { + "#": 6139 + }, + { + "#": 6140 + }, + { + "#": 6141 + }, + { + "#": 6142 + }, + { + "#": 6143 + }, + { + "#": 6144 + }, + { + "#": 6145 + }, + { + "#": 6146 + }, + { + "#": 6147 + } + ], + { + "x": 603.974, + "y": 822.756, + "index": 0, + "body": { + "#": 6127 + }, + "isInternal": false + }, + { + "x": 602.007, + "y": 828.162, + "index": 1, + "body": { + "#": 6127 + }, + "isInternal": false + }, + { + "x": 598.309, + "y": 832.569, + "index": 2, + "body": { + "#": 6127 + }, + "isInternal": false + }, + { + "x": 593.327, + "y": 835.445, + "index": 3, + "body": { + "#": 6127 + }, + "isInternal": false + }, + { + "x": 587.662, + "y": 836.444, + "index": 4, + "body": { + "#": 6127 + }, + "isInternal": false + }, + { + "x": 581.997, + "y": 835.445, + "index": 5, + "body": { + "#": 6127 + }, + "isInternal": false + }, + { + "x": 577.015, + "y": 832.569, + "index": 6, + "body": { + "#": 6127 + }, + "isInternal": false + }, + { + "x": 573.317, + "y": 828.162, + "index": 7, + "body": { + "#": 6127 + }, + "isInternal": false + }, + { + "x": 571.35, + "y": 822.756, + "index": 8, + "body": { + "#": 6127 + }, + "isInternal": false + }, + { + "x": 571.35, + "y": 817.004, + "index": 9, + "body": { + "#": 6127 + }, + "isInternal": false + }, + { + "x": 573.317, + "y": 811.598, + "index": 10, + "body": { + "#": 6127 + }, + "isInternal": false + }, + { + "x": 577.015, + "y": 807.191, + "index": 11, + "body": { + "#": 6127 + }, + "isInternal": false + }, + { + "x": 581.997, + "y": 804.315, + "index": 12, + "body": { + "#": 6127 + }, + "isInternal": false + }, + { + "x": 587.662, + "y": 803.316, + "index": 13, + "body": { + "#": 6127 + }, + "isInternal": false + }, + { + "x": 593.327, + "y": 804.315, + "index": 14, + "body": { + "#": 6127 + }, + "isInternal": false + }, + { + "x": 598.309, + "y": 807.191, + "index": 15, + "body": { + "#": 6127 + }, + "isInternal": false + }, + { + "x": 602.007, + "y": 811.598, + "index": 16, + "body": { + "#": 6127 + }, + "isInternal": false + }, + { + "x": 603.974, + "y": 817.004, + "index": 17, + "body": { + "#": 6127 + }, + "isInternal": false + }, + { + "x": 587.662, + "y": 819.88 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6155 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6157 + }, + "max": { + "#": 6158 + } + }, + { + "x": 571.35, + "y": 803.316 + }, + { + "x": 603.974, + "y": 836.444 + }, + { + "x": 587.662, + "y": 819.88 + }, + [ + { + "#": 6161 + }, + { + "#": 6162 + }, + { + "#": 6163 + }, + { + "#": 6164 + }, + { + "#": 6165 + }, + { + "#": 6166 + }, + { + "#": 6167 + }, + { + "#": 6168 + }, + { + "#": 6169 + } + ], + { + "x": -0.93973, + "y": -0.34192 + }, + { + "x": -0.76604, + "y": -0.6428 + }, + { + "x": -0.49995, + "y": -0.86605 + }, + { + "x": -0.17367, + "y": -0.9848 + }, + { + "x": 0.17367, + "y": -0.9848 + }, + { + "x": 0.49995, + "y": -0.86605 + }, + { + "x": 0.76604, + "y": -0.6428 + }, + { + "x": 0.93973, + "y": -0.34192 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 125, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6171 + }, + "angle": 0, + "vertices": { + "#": 6172 + }, + "position": { + "#": 6197 + }, + "force": { + "#": 6198 + }, + "torque": 0, + "positionImpulse": { + "#": 6199 + }, + "constraintImpulse": { + "#": 6200 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6201 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6202 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6203 + }, + "circleRadius": 23.09266, + "bounds": { + "#": 6205 + }, + "positionPrev": { + "#": 6208 + }, + "anglePrev": 0, + "axes": { + "#": 6209 + }, + "area": 1656.26219, + "mass": 1.65626, + "inverseMass": 0.60377, + "inertia": 1746.42413, + "inverseInertia": 0.00057, + "parent": { + "#": 6170 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6170 + } + ], + [ + { + "#": 6173 + }, + { + "#": 6174 + }, + { + "#": 6175 + }, + { + "#": 6176 + }, + { + "#": 6177 + }, + { + "#": 6178 + }, + { + "#": 6179 + }, + { + "#": 6180 + }, + { + "#": 6181 + }, + { + "#": 6182 + }, + { + "#": 6183 + }, + { + "#": 6184 + }, + { + "#": 6185 + }, + { + "#": 6186 + }, + { + "#": 6187 + }, + { + "#": 6188 + }, + { + "#": 6189 + }, + { + "#": 6190 + }, + { + "#": 6191 + }, + { + "#": 6192 + }, + { + "#": 6193 + }, + { + "#": 6194 + }, + { + "#": 6195 + }, + { + "#": 6196 + } + ], + { + "x": 145.79, + "y": 896.753, + "index": 0, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 144.23, + "y": 902.576, + "index": 1, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 141.216, + "y": 907.797, + "index": 2, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 136.953, + "y": 912.06, + "index": 3, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 131.732, + "y": 915.074, + "index": 4, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 125.909, + "y": 916.634, + "index": 5, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 119.881, + "y": 916.634, + "index": 6, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 114.058, + "y": 915.074, + "index": 7, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 108.837, + "y": 912.06, + "index": 8, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 104.574, + "y": 907.797, + "index": 9, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 101.56, + "y": 902.576, + "index": 10, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 100, + "y": 896.753, + "index": 11, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 100, + "y": 890.725, + "index": 12, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 101.56, + "y": 884.902, + "index": 13, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 104.574, + "y": 879.681, + "index": 14, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 108.837, + "y": 875.418, + "index": 15, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 114.058, + "y": 872.404, + "index": 16, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 119.881, + "y": 870.844, + "index": 17, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 125.909, + "y": 870.844, + "index": 18, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 131.732, + "y": 872.404, + "index": 19, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 136.953, + "y": 875.418, + "index": 20, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 141.216, + "y": 879.681, + "index": 21, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 144.23, + "y": 884.902, + "index": 22, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 145.79, + "y": 890.725, + "index": 23, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 122.895, + "y": 893.739 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6204 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6206 + }, + "max": { + "#": 6207 + } + }, + { + "x": 100, + "y": 870.844 + }, + { + "x": 145.79, + "y": 916.634 + }, + { + "x": 122.895, + "y": 893.739 + }, + [ + { + "#": 6210 + }, + { + "#": 6211 + }, + { + "#": 6212 + }, + { + "#": 6213 + }, + { + "#": 6214 + }, + { + "#": 6215 + }, + { + "#": 6216 + }, + { + "#": 6217 + }, + { + "#": 6218 + }, + { + "#": 6219 + }, + { + "#": 6220 + }, + { + "#": 6221 + } + ], + { + "x": -0.96594, + "y": -0.25878 + }, + { + "x": -0.86605, + "y": -0.49996 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.49996, + "y": -0.86605 + }, + { + "x": -0.25878, + "y": -0.96594 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25878, + "y": -0.96594 + }, + { + "x": 0.49996, + "y": -0.86605 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86605, + "y": -0.49996 + }, + { + "x": 0.96594, + "y": -0.25878 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 126, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6223 + }, + "angle": 0, + "vertices": { + "#": 6224 + }, + "position": { + "#": 6251 + }, + "force": { + "#": 6252 + }, + "torque": 0, + "positionImpulse": { + "#": 6253 + }, + "constraintImpulse": { + "#": 6254 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6255 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6256 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6257 + }, + "circleRadius": 26.82813, + "bounds": { + "#": 6259 + }, + "positionPrev": { + "#": 6262 + }, + "anglePrev": 0, + "axes": { + "#": 6263 + }, + "area": 2239.22353, + "mass": 2.23922, + "inverseMass": 0.44658, + "inertia": 3192.15014, + "inverseInertia": 0.00031, + "parent": { + "#": 6222 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6222 + } + ], + [ + { + "#": 6225 + }, + { + "#": 6226 + }, + { + "#": 6227 + }, + { + "#": 6228 + }, + { + "#": 6229 + }, + { + "#": 6230 + }, + { + "#": 6231 + }, + { + "#": 6232 + }, + { + "#": 6233 + }, + { + "#": 6234 + }, + { + "#": 6235 + }, + { + "#": 6236 + }, + { + "#": 6237 + }, + { + "#": 6238 + }, + { + "#": 6239 + }, + { + "#": 6240 + }, + { + "#": 6241 + }, + { + "#": 6242 + }, + { + "#": 6243 + }, + { + "#": 6244 + }, + { + "#": 6245 + }, + { + "#": 6246 + }, + { + "#": 6247 + }, + { + "#": 6248 + }, + { + "#": 6249 + }, + { + "#": 6250 + } + ], + { + "x": 209.056, + "y": 900.906, + "index": 0, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 207.508, + "y": 907.185, + "index": 1, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 204.502, + "y": 912.912, + "index": 2, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 200.213, + "y": 917.753, + "index": 3, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 194.891, + "y": 921.427, + "index": 4, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 188.843, + "y": 923.721, + "index": 5, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 182.423, + "y": 924.5, + "index": 6, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 176.003, + "y": 923.721, + "index": 7, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 169.955, + "y": 921.427, + "index": 8, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 164.633, + "y": 917.753, + "index": 9, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 160.344, + "y": 912.912, + "index": 10, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 157.338, + "y": 907.185, + "index": 11, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 155.79, + "y": 900.906, + "index": 12, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 155.79, + "y": 894.438, + "index": 13, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 157.338, + "y": 888.159, + "index": 14, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 160.344, + "y": 882.432, + "index": 15, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 164.633, + "y": 877.591, + "index": 16, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 169.955, + "y": 873.917, + "index": 17, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 176.003, + "y": 871.623, + "index": 18, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 182.423, + "y": 870.844, + "index": 19, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 188.843, + "y": 871.623, + "index": 20, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 194.891, + "y": 873.917, + "index": 21, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 200.213, + "y": 877.591, + "index": 22, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 204.502, + "y": 882.432, + "index": 23, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 207.508, + "y": 888.159, + "index": 24, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 209.056, + "y": 894.438, + "index": 25, + "body": { + "#": 6222 + }, + "isInternal": false + }, + { + "x": 182.423, + "y": 897.672 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6258 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6260 + }, + "max": { + "#": 6261 + } + }, + { + "x": 155.79, + "y": 870.844 + }, + { + "x": 209.056, + "y": 924.5 + }, + { + "x": 182.423, + "y": 897.672 + }, + [ + { + "#": 6264 + }, + { + "#": 6265 + }, + { + "#": 6266 + }, + { + "#": 6267 + }, + { + "#": 6268 + }, + { + "#": 6269 + }, + { + "#": 6270 + }, + { + "#": 6271 + }, + { + "#": 6272 + }, + { + "#": 6273 + }, + { + "#": 6274 + }, + { + "#": 6275 + }, + { + "#": 6276 + } + ], + { + "x": -0.97093, + "y": -0.23937 + }, + { + "x": -0.88544, + "y": -0.46475 + }, + { + "x": -0.74849, + "y": -0.66314 + }, + { + "x": -0.56812, + "y": -0.82295 + }, + { + "x": -0.35464, + "y": -0.935 + }, + { + "x": -0.12046, + "y": -0.99272 + }, + { + "x": 0.12046, + "y": -0.99272 + }, + { + "x": 0.35464, + "y": -0.935 + }, + { + "x": 0.56812, + "y": -0.82295 + }, + { + "x": 0.74849, + "y": -0.66314 + }, + { + "x": 0.88544, + "y": -0.46475 + }, + { + "x": 0.97093, + "y": -0.23937 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 127, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6278 + }, + "angle": 0, + "vertices": { + "#": 6279 + }, + "position": { + "#": 6298 + }, + "force": { + "#": 6299 + }, + "torque": 0, + "positionImpulse": { + "#": 6300 + }, + "constraintImpulse": { + "#": 6301 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6302 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6303 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6304 + }, + "circleRadius": 16.84446, + "bounds": { + "#": 6306 + }, + "positionPrev": { + "#": 6309 + }, + "anglePrev": 0, + "axes": { + "#": 6310 + }, + "area": 873.40593, + "mass": 0.87341, + "inverseMass": 1.14494, + "inertia": 485.67834, + "inverseInertia": 0.00206, + "parent": { + "#": 6277 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6277 + } + ], + [ + { + "#": 6280 + }, + { + "#": 6281 + }, + { + "#": 6282 + }, + { + "#": 6283 + }, + { + "#": 6284 + }, + { + "#": 6285 + }, + { + "#": 6286 + }, + { + "#": 6287 + }, + { + "#": 6288 + }, + { + "#": 6289 + }, + { + "#": 6290 + }, + { + "#": 6291 + }, + { + "#": 6292 + }, + { + "#": 6293 + }, + { + "#": 6294 + }, + { + "#": 6295 + }, + { + "#": 6296 + }, + { + "#": 6297 + } + ], + { + "x": 252.234, + "y": 890.613, + "index": 0, + "body": { + "#": 6277 + }, + "isInternal": false + }, + { + "x": 250.233, + "y": 896.11, + "index": 1, + "body": { + "#": 6277 + }, + "isInternal": false + }, + { + "x": 246.472, + "y": 900.592, + "index": 2, + "body": { + "#": 6277 + }, + "isInternal": false + }, + { + "x": 241.406, + "y": 903.517, + "index": 3, + "body": { + "#": 6277 + }, + "isInternal": false + }, + { + "x": 235.645, + "y": 904.532, + "index": 4, + "body": { + "#": 6277 + }, + "isInternal": false + }, + { + "x": 229.884, + "y": 903.517, + "index": 5, + "body": { + "#": 6277 + }, + "isInternal": false + }, + { + "x": 224.818, + "y": 900.592, + "index": 6, + "body": { + "#": 6277 + }, + "isInternal": false + }, + { + "x": 221.057, + "y": 896.11, + "index": 7, + "body": { + "#": 6277 + }, + "isInternal": false + }, + { + "x": 219.056, + "y": 890.613, + "index": 8, + "body": { + "#": 6277 + }, + "isInternal": false + }, + { + "x": 219.056, + "y": 884.763, + "index": 9, + "body": { + "#": 6277 + }, + "isInternal": false + }, + { + "x": 221.057, + "y": 879.266, + "index": 10, + "body": { + "#": 6277 + }, + "isInternal": false + }, + { + "x": 224.818, + "y": 874.784, + "index": 11, + "body": { + "#": 6277 + }, + "isInternal": false + }, + { + "x": 229.884, + "y": 871.859, + "index": 12, + "body": { + "#": 6277 + }, + "isInternal": false + }, + { + "x": 235.645, + "y": 870.844, + "index": 13, + "body": { + "#": 6277 + }, + "isInternal": false + }, + { + "x": 241.406, + "y": 871.859, + "index": 14, + "body": { + "#": 6277 + }, + "isInternal": false + }, + { + "x": 246.472, + "y": 874.784, + "index": 15, + "body": { + "#": 6277 + }, + "isInternal": false + }, + { + "x": 250.233, + "y": 879.266, + "index": 16, + "body": { + "#": 6277 + }, + "isInternal": false + }, + { + "x": 252.234, + "y": 884.763, + "index": 17, + "body": { + "#": 6277 + }, + "isInternal": false + }, + { + "x": 235.645, + "y": 887.688 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6305 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6307 + }, + "max": { + "#": 6308 + } + }, + { + "x": 219.056, + "y": 870.844 + }, + { + "x": 252.234, + "y": 904.532 + }, + { + "x": 235.645, + "y": 887.688 + }, + [ + { + "#": 6311 + }, + { + "#": 6312 + }, + { + "#": 6313 + }, + { + "#": 6314 + }, + { + "#": 6315 + }, + { + "#": 6316 + }, + { + "#": 6317 + }, + { + "#": 6318 + }, + { + "#": 6319 + } + ], + { + "x": -0.93968, + "y": -0.34206 + }, + { + "x": -0.76603, + "y": -0.6428 + }, + { + "x": -0.50002, + "y": -0.86601 + }, + { + "x": -0.17351, + "y": -0.98483 + }, + { + "x": 0.17351, + "y": -0.98483 + }, + { + "x": 0.50002, + "y": -0.86601 + }, + { + "x": 0.76603, + "y": -0.6428 + }, + { + "x": 0.93968, + "y": -0.34206 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 128, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6321 + }, + "angle": 0, + "vertices": { + "#": 6322 + }, + "position": { + "#": 6349 + }, + "force": { + "#": 6350 + }, + "torque": 0, + "positionImpulse": { + "#": 6351 + }, + "constraintImpulse": { + "#": 6352 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6353 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6354 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6355 + }, + "circleRadius": 26.66017, + "bounds": { + "#": 6357 + }, + "positionPrev": { + "#": 6360 + }, + "anglePrev": 0, + "axes": { + "#": 6361 + }, + "area": 2211.25787, + "mass": 2.21126, + "inverseMass": 0.45223, + "inertia": 3112.91451, + "inverseInertia": 0.00032, + "parent": { + "#": 6320 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6320 + } + ], + [ + { + "#": 6323 + }, + { + "#": 6324 + }, + { + "#": 6325 + }, + { + "#": 6326 + }, + { + "#": 6327 + }, + { + "#": 6328 + }, + { + "#": 6329 + }, + { + "#": 6330 + }, + { + "#": 6331 + }, + { + "#": 6332 + }, + { + "#": 6333 + }, + { + "#": 6334 + }, + { + "#": 6335 + }, + { + "#": 6336 + }, + { + "#": 6337 + }, + { + "#": 6338 + }, + { + "#": 6339 + }, + { + "#": 6340 + }, + { + "#": 6341 + }, + { + "#": 6342 + }, + { + "#": 6343 + }, + { + "#": 6344 + }, + { + "#": 6345 + }, + { + "#": 6346 + }, + { + "#": 6347 + }, + { + "#": 6348 + } + ], + { + "x": 315.166, + "y": 900.718, + "index": 0, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 313.628, + "y": 906.958, + "index": 1, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 310.641, + "y": 912.649, + "index": 2, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 306.379, + "y": 917.459, + "index": 3, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 301.09, + "y": 921.11, + "index": 4, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 295.08, + "y": 923.389, + "index": 5, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 288.7, + "y": 924.164, + "index": 6, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 282.32, + "y": 923.389, + "index": 7, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 276.31, + "y": 921.11, + "index": 8, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 271.021, + "y": 917.459, + "index": 9, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 266.759, + "y": 912.649, + "index": 10, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 263.772, + "y": 906.958, + "index": 11, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 262.234, + "y": 900.718, + "index": 12, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 262.234, + "y": 894.29, + "index": 13, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 263.772, + "y": 888.05, + "index": 14, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 266.759, + "y": 882.359, + "index": 15, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 271.021, + "y": 877.549, + "index": 16, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 276.31, + "y": 873.898, + "index": 17, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 282.32, + "y": 871.619, + "index": 18, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 288.7, + "y": 870.844, + "index": 19, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 295.08, + "y": 871.619, + "index": 20, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 301.09, + "y": 873.898, + "index": 21, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 306.379, + "y": 877.549, + "index": 22, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 310.641, + "y": 882.359, + "index": 23, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 313.628, + "y": 888.05, + "index": 24, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 315.166, + "y": 894.29, + "index": 25, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 288.7, + "y": 897.504 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6356 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6358 + }, + "max": { + "#": 6359 + } + }, + { + "x": 262.234, + "y": 870.844 + }, + { + "x": 315.166, + "y": 924.164 + }, + { + "x": 288.7, + "y": 897.504 + }, + [ + { + "#": 6362 + }, + { + "#": 6363 + }, + { + "#": 6364 + }, + { + "#": 6365 + }, + { + "#": 6366 + }, + { + "#": 6367 + }, + { + "#": 6368 + }, + { + "#": 6369 + }, + { + "#": 6370 + }, + { + "#": 6371 + }, + { + "#": 6372 + }, + { + "#": 6373 + }, + { + "#": 6374 + } + ], + { + "x": -0.97094, + "y": -0.23931 + }, + { + "x": -0.88545, + "y": -0.46474 + }, + { + "x": -0.74846, + "y": -0.66318 + }, + { + "x": -0.56809, + "y": -0.82296 + }, + { + "x": -0.35457, + "y": -0.93503 + }, + { + "x": -0.12059, + "y": -0.9927 + }, + { + "x": 0.12059, + "y": -0.9927 + }, + { + "x": 0.35457, + "y": -0.93503 + }, + { + "x": 0.56809, + "y": -0.82296 + }, + { + "x": 0.74846, + "y": -0.66318 + }, + { + "x": 0.88545, + "y": -0.46474 + }, + { + "x": 0.97094, + "y": -0.23931 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 129, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6376 + }, + "angle": 0, + "vertices": { + "#": 6377 + }, + "position": { + "#": 6404 + }, + "force": { + "#": 6405 + }, + "torque": 0, + "positionImpulse": { + "#": 6406 + }, + "constraintImpulse": { + "#": 6407 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6408 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6409 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6410 + }, + "circleRadius": 25.9049, + "bounds": { + "#": 6412 + }, + "positionPrev": { + "#": 6415 + }, + "anglePrev": 0, + "axes": { + "#": 6416 + }, + "area": 2087.76028, + "mass": 2.08776, + "inverseMass": 0.47898, + "inertia": 2774.91491, + "inverseInertia": 0.00036, + "parent": { + "#": 6375 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6375 + } + ], + [ + { + "#": 6378 + }, + { + "#": 6379 + }, + { + "#": 6380 + }, + { + "#": 6381 + }, + { + "#": 6382 + }, + { + "#": 6383 + }, + { + "#": 6384 + }, + { + "#": 6385 + }, + { + "#": 6386 + }, + { + "#": 6387 + }, + { + "#": 6388 + }, + { + "#": 6389 + }, + { + "#": 6390 + }, + { + "#": 6391 + }, + { + "#": 6392 + }, + { + "#": 6393 + }, + { + "#": 6394 + }, + { + "#": 6395 + }, + { + "#": 6396 + }, + { + "#": 6397 + }, + { + "#": 6398 + }, + { + "#": 6399 + }, + { + "#": 6400 + }, + { + "#": 6401 + }, + { + "#": 6402 + }, + { + "#": 6403 + } + ], + { + "x": 376.598, + "y": 899.871, + "index": 0, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 375.104, + "y": 905.935, + "index": 1, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 372.201, + "y": 911.465, + "index": 2, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 368.06, + "y": 916.139, + "index": 3, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 362.921, + "y": 919.687, + "index": 4, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 357.081, + "y": 921.901, + "index": 5, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 350.882, + "y": 922.654, + "index": 6, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 344.683, + "y": 921.901, + "index": 7, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 338.843, + "y": 919.687, + "index": 8, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 333.704, + "y": 916.139, + "index": 9, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 329.563, + "y": 911.465, + "index": 10, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 326.66, + "y": 905.935, + "index": 11, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 325.166, + "y": 899.871, + "index": 12, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 325.166, + "y": 893.627, + "index": 13, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 326.66, + "y": 887.563, + "index": 14, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 329.563, + "y": 882.033, + "index": 15, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 333.704, + "y": 877.359, + "index": 16, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 338.843, + "y": 873.811, + "index": 17, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 344.683, + "y": 871.597, + "index": 18, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 350.882, + "y": 870.844, + "index": 19, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 357.081, + "y": 871.597, + "index": 20, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 362.921, + "y": 873.811, + "index": 21, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 368.06, + "y": 877.359, + "index": 22, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 372.201, + "y": 882.033, + "index": 23, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 375.104, + "y": 887.563, + "index": 24, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 376.598, + "y": 893.627, + "index": 25, + "body": { + "#": 6375 + }, + "isInternal": false + }, + { + "x": 350.882, + "y": 896.749 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6411 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6413 + }, + "max": { + "#": 6414 + } + }, + { + "x": 325.166, + "y": 870.844 + }, + { + "x": 376.598, + "y": 922.654 + }, + { + "x": 350.882, + "y": 896.749 + }, + [ + { + "#": 6417 + }, + { + "#": 6418 + }, + { + "#": 6419 + }, + { + "#": 6420 + }, + { + "#": 6421 + }, + { + "#": 6422 + }, + { + "#": 6423 + }, + { + "#": 6424 + }, + { + "#": 6425 + }, + { + "#": 6426 + }, + { + "#": 6427 + }, + { + "#": 6428 + }, + { + "#": 6429 + } + ], + { + "x": -0.97097, + "y": -0.23922 + }, + { + "x": -0.88541, + "y": -0.4648 + }, + { + "x": -0.7485, + "y": -0.66314 + }, + { + "x": -0.56815, + "y": -0.82292 + }, + { + "x": -0.35449, + "y": -0.93506 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.35449, + "y": -0.93506 + }, + { + "x": 0.56815, + "y": -0.82292 + }, + { + "x": 0.7485, + "y": -0.66314 + }, + { + "x": 0.88541, + "y": -0.4648 + }, + { + "x": 0.97097, + "y": -0.23922 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 130, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6431 + }, + "angle": 0, + "vertices": { + "#": 6432 + }, + "position": { + "#": 6451 + }, + "force": { + "#": 6452 + }, + "torque": 0, + "positionImpulse": { + "#": 6453 + }, + "constraintImpulse": { + "#": 6454 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6455 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6456 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6457 + }, + "circleRadius": 16.98605, + "bounds": { + "#": 6459 + }, + "positionPrev": { + "#": 6462 + }, + "anglePrev": 0, + "axes": { + "#": 6463 + }, + "area": 888.13201, + "mass": 0.88813, + "inverseMass": 1.12596, + "inertia": 502.194, + "inverseInertia": 0.00199, + "parent": { + "#": 6430 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6430 + } + ], + [ + { + "#": 6433 + }, + { + "#": 6434 + }, + { + "#": 6435 + }, + { + "#": 6436 + }, + { + "#": 6437 + }, + { + "#": 6438 + }, + { + "#": 6439 + }, + { + "#": 6440 + }, + { + "#": 6441 + }, + { + "#": 6442 + }, + { + "#": 6443 + }, + { + "#": 6444 + }, + { + "#": 6445 + }, + { + "#": 6446 + }, + { + "#": 6447 + }, + { + "#": 6448 + }, + { + "#": 6449 + }, + { + "#": 6450 + } + ], + { + "x": 420.054, + "y": 890.78, + "index": 0, + "body": { + "#": 6430 + }, + "isInternal": false + }, + { + "x": 418.036, + "y": 896.323, + "index": 1, + "body": { + "#": 6430 + }, + "isInternal": false + }, + { + "x": 414.244, + "y": 900.842, + "index": 2, + "body": { + "#": 6430 + }, + "isInternal": false + }, + { + "x": 409.136, + "y": 903.792, + "index": 3, + "body": { + "#": 6430 + }, + "isInternal": false + }, + { + "x": 403.326, + "y": 904.816, + "index": 4, + "body": { + "#": 6430 + }, + "isInternal": false + }, + { + "x": 397.516, + "y": 903.792, + "index": 5, + "body": { + "#": 6430 + }, + "isInternal": false + }, + { + "x": 392.408, + "y": 900.842, + "index": 6, + "body": { + "#": 6430 + }, + "isInternal": false + }, + { + "x": 388.616, + "y": 896.323, + "index": 7, + "body": { + "#": 6430 + }, + "isInternal": false + }, + { + "x": 386.598, + "y": 890.78, + "index": 8, + "body": { + "#": 6430 + }, + "isInternal": false + }, + { + "x": 386.598, + "y": 884.88, + "index": 9, + "body": { + "#": 6430 + }, + "isInternal": false + }, + { + "x": 388.616, + "y": 879.337, + "index": 10, + "body": { + "#": 6430 + }, + "isInternal": false + }, + { + "x": 392.408, + "y": 874.818, + "index": 11, + "body": { + "#": 6430 + }, + "isInternal": false + }, + { + "x": 397.516, + "y": 871.868, + "index": 12, + "body": { + "#": 6430 + }, + "isInternal": false + }, + { + "x": 403.326, + "y": 870.844, + "index": 13, + "body": { + "#": 6430 + }, + "isInternal": false + }, + { + "x": 409.136, + "y": 871.868, + "index": 14, + "body": { + "#": 6430 + }, + "isInternal": false + }, + { + "x": 414.244, + "y": 874.818, + "index": 15, + "body": { + "#": 6430 + }, + "isInternal": false + }, + { + "x": 418.036, + "y": 879.337, + "index": 16, + "body": { + "#": 6430 + }, + "isInternal": false + }, + { + "x": 420.054, + "y": 884.88, + "index": 17, + "body": { + "#": 6430 + }, + "isInternal": false + }, + { + "x": 403.326, + "y": 887.83 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6458 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6460 + }, + "max": { + "#": 6461 + } + }, + { + "x": 386.598, + "y": 870.844 + }, + { + "x": 420.054, + "y": 904.816 + }, + { + "x": 403.326, + "y": 887.83 + }, + [ + { + "#": 6464 + }, + { + "#": 6465 + }, + { + "#": 6466 + }, + { + "#": 6467 + }, + { + "#": 6468 + }, + { + "#": 6469 + }, + { + "#": 6470 + }, + { + "#": 6471 + }, + { + "#": 6472 + } + ], + { + "x": -0.93966, + "y": -0.3421 + }, + { + "x": -0.76604, + "y": -0.6428 + }, + { + "x": -0.50011, + "y": -0.86596 + }, + { + "x": -0.17357, + "y": -0.98482 + }, + { + "x": 0.17357, + "y": -0.98482 + }, + { + "x": 0.50011, + "y": -0.86596 + }, + { + "x": 0.76604, + "y": -0.6428 + }, + { + "x": 0.93966, + "y": -0.3421 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 131, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6474 + }, + "angle": 0, + "vertices": { + "#": 6475 + }, + "position": { + "#": 6498 + }, + "force": { + "#": 6499 + }, + "torque": 0, + "positionImpulse": { + "#": 6500 + }, + "constraintImpulse": { + "#": 6501 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6502 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6503 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6504 + }, + "circleRadius": 21.75547, + "bounds": { + "#": 6506 + }, + "positionPrev": { + "#": 6509 + }, + "anglePrev": 0, + "axes": { + "#": 6510 + }, + "area": 1466.77919, + "mass": 1.46678, + "inverseMass": 0.68177, + "inertia": 1369.70112, + "inverseInertia": 0.00073, + "parent": { + "#": 6473 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6473 + } + ], + [ + { + "#": 6476 + }, + { + "#": 6477 + }, + { + "#": 6478 + }, + { + "#": 6479 + }, + { + "#": 6480 + }, + { + "#": 6481 + }, + { + "#": 6482 + }, + { + "#": 6483 + }, + { + "#": 6484 + }, + { + "#": 6485 + }, + { + "#": 6486 + }, + { + "#": 6487 + }, + { + "#": 6488 + }, + { + "#": 6489 + }, + { + "#": 6490 + }, + { + "#": 6491 + }, + { + "#": 6492 + }, + { + "#": 6493 + }, + { + "#": 6494 + }, + { + "#": 6495 + }, + { + "#": 6496 + }, + { + "#": 6497 + } + ], + { + "x": 473.122, + "y": 895.695, + "index": 0, + "body": { + "#": 6473 + }, + "isInternal": false + }, + { + "x": 471.377, + "y": 901.637, + "index": 1, + "body": { + "#": 6473 + }, + "isInternal": false + }, + { + "x": 468.03, + "y": 906.846, + "index": 2, + "body": { + "#": 6473 + }, + "isInternal": false + }, + { + "x": 463.35, + "y": 910.901, + "index": 3, + "body": { + "#": 6473 + }, + "isInternal": false + }, + { + "x": 457.717, + "y": 913.473, + "index": 4, + "body": { + "#": 6473 + }, + "isInternal": false + }, + { + "x": 451.588, + "y": 914.354, + "index": 5, + "body": { + "#": 6473 + }, + "isInternal": false + }, + { + "x": 445.459, + "y": 913.473, + "index": 6, + "body": { + "#": 6473 + }, + "isInternal": false + }, + { + "x": 439.826, + "y": 910.901, + "index": 7, + "body": { + "#": 6473 + }, + "isInternal": false + }, + { + "x": 435.146, + "y": 906.846, + "index": 8, + "body": { + "#": 6473 + }, + "isInternal": false + }, + { + "x": 431.799, + "y": 901.637, + "index": 9, + "body": { + "#": 6473 + }, + "isInternal": false + }, + { + "x": 430.054, + "y": 895.695, + "index": 10, + "body": { + "#": 6473 + }, + "isInternal": false + }, + { + "x": 430.054, + "y": 889.503, + "index": 11, + "body": { + "#": 6473 + }, + "isInternal": false + }, + { + "x": 431.799, + "y": 883.561, + "index": 12, + "body": { + "#": 6473 + }, + "isInternal": false + }, + { + "x": 435.146, + "y": 878.352, + "index": 13, + "body": { + "#": 6473 + }, + "isInternal": false + }, + { + "x": 439.826, + "y": 874.297, + "index": 14, + "body": { + "#": 6473 + }, + "isInternal": false + }, + { + "x": 445.459, + "y": 871.725, + "index": 15, + "body": { + "#": 6473 + }, + "isInternal": false + }, + { + "x": 451.588, + "y": 870.844, + "index": 16, + "body": { + "#": 6473 + }, + "isInternal": false + }, + { + "x": 457.717, + "y": 871.725, + "index": 17, + "body": { + "#": 6473 + }, + "isInternal": false + }, + { + "x": 463.35, + "y": 874.297, + "index": 18, + "body": { + "#": 6473 + }, + "isInternal": false + }, + { + "x": 468.03, + "y": 878.352, + "index": 19, + "body": { + "#": 6473 + }, + "isInternal": false + }, + { + "x": 471.377, + "y": 883.561, + "index": 20, + "body": { + "#": 6473 + }, + "isInternal": false + }, + { + "x": 473.122, + "y": 889.503, + "index": 21, + "body": { + "#": 6473 + }, + "isInternal": false + }, + { + "x": 451.588, + "y": 892.599 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6505 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6507 + }, + "max": { + "#": 6508 + } + }, + { + "x": 430.054, + "y": 870.844 + }, + { + "x": 473.122, + "y": 914.354 + }, + { + "x": 451.588, + "y": 892.599 + }, + [ + { + "#": 6511 + }, + { + "#": 6512 + }, + { + "#": 6513 + }, + { + "#": 6514 + }, + { + "#": 6515 + }, + { + "#": 6516 + }, + { + "#": 6517 + }, + { + "#": 6518 + }, + { + "#": 6519 + }, + { + "#": 6520 + }, + { + "#": 6521 + } + ], + { + "x": -0.95948, + "y": -0.28177 + }, + { + "x": -0.8413, + "y": -0.54057 + }, + { + "x": -0.65484, + "y": -0.75577 + }, + { + "x": -0.41535, + "y": -0.90966 + }, + { + "x": -0.14228, + "y": -0.98983 + }, + { + "x": 0.14228, + "y": -0.98983 + }, + { + "x": 0.41535, + "y": -0.90966 + }, + { + "x": 0.65484, + "y": -0.75577 + }, + { + "x": 0.8413, + "y": -0.54057 + }, + { + "x": 0.95948, + "y": -0.28177 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 132, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6523 + }, + "angle": 0, + "vertices": { + "#": 6524 + }, + "position": { + "#": 6545 + }, + "force": { + "#": 6546 + }, + "torque": 0, + "positionImpulse": { + "#": 6547 + }, + "constraintImpulse": { + "#": 6548 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6549 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6550 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6551 + }, + "circleRadius": 18.17612, + "bounds": { + "#": 6553 + }, + "positionPrev": { + "#": 6556 + }, + "anglePrev": 0, + "axes": { + "#": 6557 + }, + "area": 1020.87396, + "mass": 1.02087, + "inverseMass": 0.97955, + "inertia": 663.51105, + "inverseInertia": 0.00151, + "parent": { + "#": 6522 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6522 + } + ], + [ + { + "#": 6525 + }, + { + "#": 6526 + }, + { + "#": 6527 + }, + { + "#": 6528 + }, + { + "#": 6529 + }, + { + "#": 6530 + }, + { + "#": 6531 + }, + { + "#": 6532 + }, + { + "#": 6533 + }, + { + "#": 6534 + }, + { + "#": 6535 + }, + { + "#": 6536 + }, + { + "#": 6537 + }, + { + "#": 6538 + }, + { + "#": 6539 + }, + { + "#": 6540 + }, + { + "#": 6541 + }, + { + "#": 6542 + }, + { + "#": 6543 + }, + { + "#": 6544 + } + ], + { + "x": 519.026, + "y": 891.639, + "index": 0, + "body": { + "#": 6522 + }, + "isInternal": false + }, + { + "x": 517.269, + "y": 897.048, + "index": 1, + "body": { + "#": 6522 + }, + "isInternal": false + }, + { + "x": 513.926, + "y": 901.648, + "index": 2, + "body": { + "#": 6522 + }, + "isInternal": false + }, + { + "x": 509.326, + "y": 904.991, + "index": 3, + "body": { + "#": 6522 + }, + "isInternal": false + }, + { + "x": 503.917, + "y": 906.748, + "index": 4, + "body": { + "#": 6522 + }, + "isInternal": false + }, + { + "x": 498.231, + "y": 906.748, + "index": 5, + "body": { + "#": 6522 + }, + "isInternal": false + }, + { + "x": 492.822, + "y": 904.991, + "index": 6, + "body": { + "#": 6522 + }, + "isInternal": false + }, + { + "x": 488.222, + "y": 901.648, + "index": 7, + "body": { + "#": 6522 + }, + "isInternal": false + }, + { + "x": 484.879, + "y": 897.048, + "index": 8, + "body": { + "#": 6522 + }, + "isInternal": false + }, + { + "x": 483.122, + "y": 891.639, + "index": 9, + "body": { + "#": 6522 + }, + "isInternal": false + }, + { + "x": 483.122, + "y": 885.953, + "index": 10, + "body": { + "#": 6522 + }, + "isInternal": false + }, + { + "x": 484.879, + "y": 880.544, + "index": 11, + "body": { + "#": 6522 + }, + "isInternal": false + }, + { + "x": 488.222, + "y": 875.944, + "index": 12, + "body": { + "#": 6522 + }, + "isInternal": false + }, + { + "x": 492.822, + "y": 872.601, + "index": 13, + "body": { + "#": 6522 + }, + "isInternal": false + }, + { + "x": 498.231, + "y": 870.844, + "index": 14, + "body": { + "#": 6522 + }, + "isInternal": false + }, + { + "x": 503.917, + "y": 870.844, + "index": 15, + "body": { + "#": 6522 + }, + "isInternal": false + }, + { + "x": 509.326, + "y": 872.601, + "index": 16, + "body": { + "#": 6522 + }, + "isInternal": false + }, + { + "x": 513.926, + "y": 875.944, + "index": 17, + "body": { + "#": 6522 + }, + "isInternal": false + }, + { + "x": 517.269, + "y": 880.544, + "index": 18, + "body": { + "#": 6522 + }, + "isInternal": false + }, + { + "x": 519.026, + "y": 885.953, + "index": 19, + "body": { + "#": 6522 + }, + "isInternal": false + }, + { + "x": 501.074, + "y": 888.796 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6552 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6554 + }, + "max": { + "#": 6555 + } + }, + { + "x": 483.122, + "y": 870.844 + }, + { + "x": 519.026, + "y": 906.748 + }, + { + "x": 501.074, + "y": 888.796 + }, + [ + { + "#": 6558 + }, + { + "#": 6559 + }, + { + "#": 6560 + }, + { + "#": 6561 + }, + { + "#": 6562 + }, + { + "#": 6563 + }, + { + "#": 6564 + }, + { + "#": 6565 + }, + { + "#": 6566 + }, + { + "#": 6567 + } + ], + { + "x": -0.95108, + "y": -0.30894 + }, + { + "x": -0.80894, + "y": -0.58789 + }, + { + "x": -0.58789, + "y": -0.80894 + }, + { + "x": -0.30894, + "y": -0.95108 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30894, + "y": -0.95108 + }, + { + "x": 0.58789, + "y": -0.80894 + }, + { + "x": 0.80894, + "y": -0.58789 + }, + { + "x": 0.95108, + "y": -0.30894 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 133, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6569 + }, + "angle": 0, + "vertices": { + "#": 6570 + }, + "position": { + "#": 6593 + }, + "force": { + "#": 6594 + }, + "torque": 0, + "positionImpulse": { + "#": 6595 + }, + "constraintImpulse": { + "#": 6596 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6597 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6598 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6599 + }, + "circleRadius": 21.98875, + "bounds": { + "#": 6601 + }, + "positionPrev": { + "#": 6604 + }, + "anglePrev": 0, + "axes": { + "#": 6605 + }, + "area": 1498.42052, + "mass": 1.49842, + "inverseMass": 0.66737, + "inertia": 1429.43283, + "inverseInertia": 0.0007, + "parent": { + "#": 6568 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6568 + } + ], + [ + { + "#": 6571 + }, + { + "#": 6572 + }, + { + "#": 6573 + }, + { + "#": 6574 + }, + { + "#": 6575 + }, + { + "#": 6576 + }, + { + "#": 6577 + }, + { + "#": 6578 + }, + { + "#": 6579 + }, + { + "#": 6580 + }, + { + "#": 6581 + }, + { + "#": 6582 + }, + { + "#": 6583 + }, + { + "#": 6584 + }, + { + "#": 6585 + }, + { + "#": 6586 + }, + { + "#": 6587 + }, + { + "#": 6588 + }, + { + "#": 6589 + }, + { + "#": 6590 + }, + { + "#": 6591 + }, + { + "#": 6592 + } + ], + { + "x": 572.556, + "y": 895.962, + "index": 0, + "body": { + "#": 6568 + }, + "isInternal": false + }, + { + "x": 570.793, + "y": 901.967, + "index": 1, + "body": { + "#": 6568 + }, + "isInternal": false + }, + { + "x": 567.409, + "y": 907.233, + "index": 2, + "body": { + "#": 6568 + }, + "isInternal": false + }, + { + "x": 562.679, + "y": 911.331, + "index": 3, + "body": { + "#": 6568 + }, + "isInternal": false + }, + { + "x": 556.986, + "y": 913.931, + "index": 4, + "body": { + "#": 6568 + }, + "isInternal": false + }, + { + "x": 550.791, + "y": 914.822, + "index": 5, + "body": { + "#": 6568 + }, + "isInternal": false + }, + { + "x": 544.596, + "y": 913.931, + "index": 6, + "body": { + "#": 6568 + }, + "isInternal": false + }, + { + "x": 538.903, + "y": 911.331, + "index": 7, + "body": { + "#": 6568 + }, + "isInternal": false + }, + { + "x": 534.173, + "y": 907.233, + "index": 8, + "body": { + "#": 6568 + }, + "isInternal": false + }, + { + "x": 530.789, + "y": 901.967, + "index": 9, + "body": { + "#": 6568 + }, + "isInternal": false + }, + { + "x": 529.026, + "y": 895.962, + "index": 10, + "body": { + "#": 6568 + }, + "isInternal": false + }, + { + "x": 529.026, + "y": 889.704, + "index": 11, + "body": { + "#": 6568 + }, + "isInternal": false + }, + { + "x": 530.789, + "y": 883.699, + "index": 12, + "body": { + "#": 6568 + }, + "isInternal": false + }, + { + "x": 534.173, + "y": 878.433, + "index": 13, + "body": { + "#": 6568 + }, + "isInternal": false + }, + { + "x": 538.903, + "y": 874.335, + "index": 14, + "body": { + "#": 6568 + }, + "isInternal": false + }, + { + "x": 544.596, + "y": 871.735, + "index": 15, + "body": { + "#": 6568 + }, + "isInternal": false + }, + { + "x": 550.791, + "y": 870.844, + "index": 16, + "body": { + "#": 6568 + }, + "isInternal": false + }, + { + "x": 556.986, + "y": 871.735, + "index": 17, + "body": { + "#": 6568 + }, + "isInternal": false + }, + { + "x": 562.679, + "y": 874.335, + "index": 18, + "body": { + "#": 6568 + }, + "isInternal": false + }, + { + "x": 567.409, + "y": 878.433, + "index": 19, + "body": { + "#": 6568 + }, + "isInternal": false + }, + { + "x": 570.793, + "y": 883.699, + "index": 20, + "body": { + "#": 6568 + }, + "isInternal": false + }, + { + "x": 572.556, + "y": 889.704, + "index": 21, + "body": { + "#": 6568 + }, + "isInternal": false + }, + { + "x": 550.791, + "y": 892.833 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6600 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6602 + }, + "max": { + "#": 6603 + } + }, + { + "x": 529.026, + "y": 870.844 + }, + { + "x": 572.556, + "y": 914.822 + }, + { + "x": 550.791, + "y": 892.833 + }, + [ + { + "#": 6606 + }, + { + "#": 6607 + }, + { + "#": 6608 + }, + { + "#": 6609 + }, + { + "#": 6610 + }, + { + "#": 6611 + }, + { + "#": 6612 + }, + { + "#": 6613 + }, + { + "#": 6614 + }, + { + "#": 6615 + }, + { + "#": 6616 + } + ], + { + "x": -0.9595, + "y": -0.2817 + }, + { + "x": -0.84127, + "y": -0.54061 + }, + { + "x": -0.65481, + "y": -0.75579 + }, + { + "x": -0.41543, + "y": -0.90963 + }, + { + "x": -0.14236, + "y": -0.98981 + }, + { + "x": 0.14236, + "y": -0.98981 + }, + { + "x": 0.41543, + "y": -0.90963 + }, + { + "x": 0.65481, + "y": -0.75579 + }, + { + "x": 0.84127, + "y": -0.54061 + }, + { + "x": 0.9595, + "y": -0.2817 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 134, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6618 + }, + "angle": 0, + "vertices": { + "#": 6619 + }, + "position": { + "#": 6646 + }, + "force": { + "#": 6647 + }, + "torque": 0, + "positionImpulse": { + "#": 6648 + }, + "constraintImpulse": { + "#": 6649 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6650 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6651 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6652 + }, + "circleRadius": 28.37854, + "bounds": { + "#": 6654 + }, + "positionPrev": { + "#": 6657 + }, + "anglePrev": 0, + "axes": { + "#": 6658 + }, + "area": 2505.50503, + "mass": 2.50551, + "inverseMass": 0.39912, + "inertia": 3996.49218, + "inverseInertia": 0.00025, + "parent": { + "#": 6617 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6617 + } + ], + [ + { + "#": 6620 + }, + { + "#": 6621 + }, + { + "#": 6622 + }, + { + "#": 6623 + }, + { + "#": 6624 + }, + { + "#": 6625 + }, + { + "#": 6626 + }, + { + "#": 6627 + }, + { + "#": 6628 + }, + { + "#": 6629 + }, + { + "#": 6630 + }, + { + "#": 6631 + }, + { + "#": 6632 + }, + { + "#": 6633 + }, + { + "#": 6634 + }, + { + "#": 6635 + }, + { + "#": 6636 + }, + { + "#": 6637 + }, + { + "#": 6638 + }, + { + "#": 6639 + }, + { + "#": 6640 + }, + { + "#": 6641 + }, + { + "#": 6642 + }, + { + "#": 6643 + }, + { + "#": 6644 + }, + { + "#": 6645 + } + ], + { + "x": 638.9, + "y": 902.644, + "index": 0, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 637.262, + "y": 909.286, + "index": 1, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 634.083, + "y": 915.344, + "index": 2, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 629.546, + "y": 920.465, + "index": 3, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 623.916, + "y": 924.351, + "index": 4, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 617.519, + "y": 926.777, + "index": 5, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 610.728, + "y": 927.602, + "index": 6, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 603.937, + "y": 926.777, + "index": 7, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 597.54, + "y": 924.351, + "index": 8, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 591.91, + "y": 920.465, + "index": 9, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 587.373, + "y": 915.344, + "index": 10, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 584.194, + "y": 909.286, + "index": 11, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 582.556, + "y": 902.644, + "index": 12, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 582.556, + "y": 895.802, + "index": 13, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 584.194, + "y": 889.16, + "index": 14, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 587.373, + "y": 883.102, + "index": 15, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 591.91, + "y": 877.981, + "index": 16, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 597.54, + "y": 874.095, + "index": 17, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 603.937, + "y": 871.669, + "index": 18, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 610.728, + "y": 870.844, + "index": 19, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 617.519, + "y": 871.669, + "index": 20, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 623.916, + "y": 874.095, + "index": 21, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 629.546, + "y": 877.981, + "index": 22, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 634.083, + "y": 883.102, + "index": 23, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 637.262, + "y": 889.16, + "index": 24, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 638.9, + "y": 895.802, + "index": 25, + "body": { + "#": 6617 + }, + "isInternal": false + }, + { + "x": 610.728, + "y": 899.223 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6653 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6655 + }, + "max": { + "#": 6656 + } + }, + { + "x": 582.556, + "y": 870.844 + }, + { + "x": 638.9, + "y": 927.602 + }, + { + "x": 610.728, + "y": 899.223 + }, + [ + { + "#": 6659 + }, + { + "#": 6660 + }, + { + "#": 6661 + }, + { + "#": 6662 + }, + { + "#": 6663 + }, + { + "#": 6664 + }, + { + "#": 6665 + }, + { + "#": 6666 + }, + { + "#": 6667 + }, + { + "#": 6668 + }, + { + "#": 6669 + }, + { + "#": 6670 + }, + { + "#": 6671 + } + ], + { + "x": -0.97091, + "y": -0.23944 + }, + { + "x": -0.88549, + "y": -0.46467 + }, + { + "x": -0.7485, + "y": -0.66314 + }, + { + "x": -0.56805, + "y": -0.82299 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.1206, + "y": -0.9927 + }, + { + "x": 0.1206, + "y": -0.9927 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56805, + "y": -0.82299 + }, + { + "x": 0.7485, + "y": -0.66314 + }, + { + "x": 0.88549, + "y": -0.46467 + }, + { + "x": 0.97091, + "y": -0.23944 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 135, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6673 + }, + "angle": 0, + "vertices": { + "#": 6674 + }, + "position": { + "#": 6699 + }, + "force": { + "#": 6700 + }, + "torque": 0, + "positionImpulse": { + "#": 6701 + }, + "constraintImpulse": { + "#": 6702 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6703 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6704 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6705 + }, + "circleRadius": 23.64178, + "bounds": { + "#": 6707 + }, + "positionPrev": { + "#": 6710 + }, + "anglePrev": 0, + "axes": { + "#": 6711 + }, + "area": 1735.9463, + "mass": 1.73595, + "inverseMass": 0.57605, + "inertia": 1918.51026, + "inverseInertia": 0.00052, + "parent": { + "#": 6672 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6672 + } + ], + [ + { + "#": 6675 + }, + { + "#": 6676 + }, + { + "#": 6677 + }, + { + "#": 6678 + }, + { + "#": 6679 + }, + { + "#": 6680 + }, + { + "#": 6681 + }, + { + "#": 6682 + }, + { + "#": 6683 + }, + { + "#": 6684 + }, + { + "#": 6685 + }, + { + "#": 6686 + }, + { + "#": 6687 + }, + { + "#": 6688 + }, + { + "#": 6689 + }, + { + "#": 6690 + }, + { + "#": 6691 + }, + { + "#": 6692 + }, + { + "#": 6693 + }, + { + "#": 6694 + }, + { + "#": 6695 + }, + { + "#": 6696 + }, + { + "#": 6697 + }, + { + "#": 6698 + } + ], + { + "x": 146.88, + "y": 964.128, + "index": 0, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 145.282, + "y": 970.089, + "index": 1, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 142.196, + "y": 975.434, + "index": 2, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 137.832, + "y": 979.798, + "index": 3, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 132.487, + "y": 982.884, + "index": 4, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 126.526, + "y": 984.482, + "index": 5, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 120.354, + "y": 984.482, + "index": 6, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 114.393, + "y": 982.884, + "index": 7, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 109.048, + "y": 979.798, + "index": 8, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 104.684, + "y": 975.434, + "index": 9, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 101.598, + "y": 970.089, + "index": 10, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 100, + "y": 964.128, + "index": 11, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 100, + "y": 957.956, + "index": 12, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 101.598, + "y": 951.995, + "index": 13, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 104.684, + "y": 946.65, + "index": 14, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 109.048, + "y": 942.286, + "index": 15, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 114.393, + "y": 939.2, + "index": 16, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 120.354, + "y": 937.602, + "index": 17, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 126.526, + "y": 937.602, + "index": 18, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 132.487, + "y": 939.2, + "index": 19, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 137.832, + "y": 942.286, + "index": 20, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 142.196, + "y": 946.65, + "index": 21, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 145.282, + "y": 951.995, + "index": 22, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 146.88, + "y": 957.956, + "index": 23, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 123.44, + "y": 961.042 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6706 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6708 + }, + "max": { + "#": 6709 + } + }, + { + "x": 100, + "y": 937.602 + }, + { + "x": 146.88, + "y": 984.482 + }, + { + "x": 123.44, + "y": 961.042 + }, + [ + { + "#": 6712 + }, + { + "#": 6713 + }, + { + "#": 6714 + }, + { + "#": 6715 + }, + { + "#": 6716 + }, + { + "#": 6717 + }, + { + "#": 6718 + }, + { + "#": 6719 + }, + { + "#": 6720 + }, + { + "#": 6721 + }, + { + "#": 6722 + }, + { + "#": 6723 + } + ], + { + "x": -0.9659, + "y": -0.25893 + }, + { + "x": -0.86602, + "y": -0.50001 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.50001, + "y": -0.86602 + }, + { + "x": -0.25893, + "y": -0.9659 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25893, + "y": -0.9659 + }, + { + "x": 0.50001, + "y": -0.86602 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86602, + "y": -0.50001 + }, + { + "x": 0.9659, + "y": -0.25893 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 136, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6725 + }, + "angle": 0, + "vertices": { + "#": 6726 + }, + "position": { + "#": 6749 + }, + "force": { + "#": 6750 + }, + "torque": 0, + "positionImpulse": { + "#": 6751 + }, + "constraintImpulse": { + "#": 6752 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6753 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6754 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6755 + }, + "circleRadius": 21.85256, + "bounds": { + "#": 6757 + }, + "positionPrev": { + "#": 6760 + }, + "anglePrev": 0, + "axes": { + "#": 6761 + }, + "area": 1479.90612, + "mass": 1.47991, + "inverseMass": 0.67572, + "inertia": 1394.32709, + "inverseInertia": 0.00072, + "parent": { + "#": 6724 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6724 + } + ], + [ + { + "#": 6727 + }, + { + "#": 6728 + }, + { + "#": 6729 + }, + { + "#": 6730 + }, + { + "#": 6731 + }, + { + "#": 6732 + }, + { + "#": 6733 + }, + { + "#": 6734 + }, + { + "#": 6735 + }, + { + "#": 6736 + }, + { + "#": 6737 + }, + { + "#": 6738 + }, + { + "#": 6739 + }, + { + "#": 6740 + }, + { + "#": 6741 + }, + { + "#": 6742 + }, + { + "#": 6743 + }, + { + "#": 6744 + }, + { + "#": 6745 + }, + { + "#": 6746 + }, + { + "#": 6747 + }, + { + "#": 6748 + } + ], + { + "x": 200.14, + "y": 962.565, + "index": 0, + "body": { + "#": 6724 + }, + "isInternal": false + }, + { + "x": 198.388, + "y": 968.533, + "index": 1, + "body": { + "#": 6724 + }, + "isInternal": false + }, + { + "x": 195.025, + "y": 973.765, + "index": 2, + "body": { + "#": 6724 + }, + "isInternal": false + }, + { + "x": 190.324, + "y": 977.839, + "index": 3, + "body": { + "#": 6724 + }, + "isInternal": false + }, + { + "x": 184.667, + "y": 980.422, + "index": 4, + "body": { + "#": 6724 + }, + "isInternal": false + }, + { + "x": 178.51, + "y": 981.308, + "index": 5, + "body": { + "#": 6724 + }, + "isInternal": false + }, + { + "x": 172.353, + "y": 980.422, + "index": 6, + "body": { + "#": 6724 + }, + "isInternal": false + }, + { + "x": 166.696, + "y": 977.839, + "index": 7, + "body": { + "#": 6724 + }, + "isInternal": false + }, + { + "x": 161.995, + "y": 973.765, + "index": 8, + "body": { + "#": 6724 + }, + "isInternal": false + }, + { + "x": 158.632, + "y": 968.533, + "index": 9, + "body": { + "#": 6724 + }, + "isInternal": false + }, + { + "x": 156.88, + "y": 962.565, + "index": 10, + "body": { + "#": 6724 + }, + "isInternal": false + }, + { + "x": 156.88, + "y": 956.345, + "index": 11, + "body": { + "#": 6724 + }, + "isInternal": false + }, + { + "x": 158.632, + "y": 950.377, + "index": 12, + "body": { + "#": 6724 + }, + "isInternal": false + }, + { + "x": 161.995, + "y": 945.145, + "index": 13, + "body": { + "#": 6724 + }, + "isInternal": false + }, + { + "x": 166.696, + "y": 941.071, + "index": 14, + "body": { + "#": 6724 + }, + "isInternal": false + }, + { + "x": 172.353, + "y": 938.488, + "index": 15, + "body": { + "#": 6724 + }, + "isInternal": false + }, + { + "x": 178.51, + "y": 937.602, + "index": 16, + "body": { + "#": 6724 + }, + "isInternal": false + }, + { + "x": 184.667, + "y": 938.488, + "index": 17, + "body": { + "#": 6724 + }, + "isInternal": false + }, + { + "x": 190.324, + "y": 941.071, + "index": 18, + "body": { + "#": 6724 + }, + "isInternal": false + }, + { + "x": 195.025, + "y": 945.145, + "index": 19, + "body": { + "#": 6724 + }, + "isInternal": false + }, + { + "x": 198.388, + "y": 950.377, + "index": 20, + "body": { + "#": 6724 + }, + "isInternal": false + }, + { + "x": 200.14, + "y": 956.345, + "index": 21, + "body": { + "#": 6724 + }, + "isInternal": false + }, + { + "x": 178.51, + "y": 959.455 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6756 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6758 + }, + "max": { + "#": 6759 + } + }, + { + "x": 156.88, + "y": 937.602 + }, + { + "x": 200.14, + "y": 981.308 + }, + { + "x": 178.51, + "y": 959.455 + }, + [ + { + "#": 6762 + }, + { + "#": 6763 + }, + { + "#": 6764 + }, + { + "#": 6765 + }, + { + "#": 6766 + }, + { + "#": 6767 + }, + { + "#": 6768 + }, + { + "#": 6769 + }, + { + "#": 6770 + }, + { + "#": 6771 + }, + { + "#": 6772 + } + ], + { + "x": -0.95951, + "y": -0.28168 + }, + { + "x": -0.84121, + "y": -0.54071 + }, + { + "x": -0.65491, + "y": -0.7557 + }, + { + "x": -0.41535, + "y": -0.90966 + }, + { + "x": -0.14243, + "y": -0.9898 + }, + { + "x": 0.14243, + "y": -0.9898 + }, + { + "x": 0.41535, + "y": -0.90966 + }, + { + "x": 0.65491, + "y": -0.7557 + }, + { + "x": 0.84121, + "y": -0.54071 + }, + { + "x": 0.95951, + "y": -0.28168 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 137, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6774 + }, + "angle": 0, + "vertices": { + "#": 6775 + }, + "position": { + "#": 6798 + }, + "force": { + "#": 6799 + }, + "torque": 0, + "positionImpulse": { + "#": 6800 + }, + "constraintImpulse": { + "#": 6801 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6802 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6803 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6804 + }, + "circleRadius": 21.52939, + "bounds": { + "#": 6806 + }, + "positionPrev": { + "#": 6809 + }, + "anglePrev": 0, + "axes": { + "#": 6810 + }, + "area": 1436.47018, + "mass": 1.43647, + "inverseMass": 0.69615, + "inertia": 1313.67992, + "inverseInertia": 0.00076, + "parent": { + "#": 6773 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6773 + } + ], + [ + { + "#": 6776 + }, + { + "#": 6777 + }, + { + "#": 6778 + }, + { + "#": 6779 + }, + { + "#": 6780 + }, + { + "#": 6781 + }, + { + "#": 6782 + }, + { + "#": 6783 + }, + { + "#": 6784 + }, + { + "#": 6785 + }, + { + "#": 6786 + }, + { + "#": 6787 + }, + { + "#": 6788 + }, + { + "#": 6789 + }, + { + "#": 6790 + }, + { + "#": 6791 + }, + { + "#": 6792 + }, + { + "#": 6793 + }, + { + "#": 6794 + }, + { + "#": 6795 + }, + { + "#": 6796 + }, + { + "#": 6797 + } + ], + { + "x": 252.76, + "y": 962.195, + "index": 0, + "body": { + "#": 6773 + }, + "isInternal": false + }, + { + "x": 251.034, + "y": 968.075, + "index": 1, + "body": { + "#": 6773 + }, + "isInternal": false + }, + { + "x": 247.721, + "y": 973.23, + "index": 2, + "body": { + "#": 6773 + }, + "isInternal": false + }, + { + "x": 243.09, + "y": 977.243, + "index": 3, + "body": { + "#": 6773 + }, + "isInternal": false + }, + { + "x": 237.516, + "y": 979.788, + "index": 4, + "body": { + "#": 6773 + }, + "isInternal": false + }, + { + "x": 231.45, + "y": 980.66, + "index": 5, + "body": { + "#": 6773 + }, + "isInternal": false + }, + { + "x": 225.384, + "y": 979.788, + "index": 6, + "body": { + "#": 6773 + }, + "isInternal": false + }, + { + "x": 219.81, + "y": 977.243, + "index": 7, + "body": { + "#": 6773 + }, + "isInternal": false + }, + { + "x": 215.179, + "y": 973.23, + "index": 8, + "body": { + "#": 6773 + }, + "isInternal": false + }, + { + "x": 211.866, + "y": 968.075, + "index": 9, + "body": { + "#": 6773 + }, + "isInternal": false + }, + { + "x": 210.14, + "y": 962.195, + "index": 10, + "body": { + "#": 6773 + }, + "isInternal": false + }, + { + "x": 210.14, + "y": 956.067, + "index": 11, + "body": { + "#": 6773 + }, + "isInternal": false + }, + { + "x": 211.866, + "y": 950.187, + "index": 12, + "body": { + "#": 6773 + }, + "isInternal": false + }, + { + "x": 215.179, + "y": 945.032, + "index": 13, + "body": { + "#": 6773 + }, + "isInternal": false + }, + { + "x": 219.81, + "y": 941.019, + "index": 14, + "body": { + "#": 6773 + }, + "isInternal": false + }, + { + "x": 225.384, + "y": 938.474, + "index": 15, + "body": { + "#": 6773 + }, + "isInternal": false + }, + { + "x": 231.45, + "y": 937.602, + "index": 16, + "body": { + "#": 6773 + }, + "isInternal": false + }, + { + "x": 237.516, + "y": 938.474, + "index": 17, + "body": { + "#": 6773 + }, + "isInternal": false + }, + { + "x": 243.09, + "y": 941.019, + "index": 18, + "body": { + "#": 6773 + }, + "isInternal": false + }, + { + "x": 247.721, + "y": 945.032, + "index": 19, + "body": { + "#": 6773 + }, + "isInternal": false + }, + { + "x": 251.034, + "y": 950.187, + "index": 20, + "body": { + "#": 6773 + }, + "isInternal": false + }, + { + "x": 252.76, + "y": 956.067, + "index": 21, + "body": { + "#": 6773 + }, + "isInternal": false + }, + { + "x": 231.45, + "y": 959.131 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6805 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6807 + }, + "max": { + "#": 6808 + } + }, + { + "x": 210.14, + "y": 937.602 + }, + { + "x": 252.76, + "y": 980.66 + }, + { + "x": 231.45, + "y": 959.131 + }, + [ + { + "#": 6811 + }, + { + "#": 6812 + }, + { + "#": 6813 + }, + { + "#": 6814 + }, + { + "#": 6815 + }, + { + "#": 6816 + }, + { + "#": 6817 + }, + { + "#": 6818 + }, + { + "#": 6819 + }, + { + "#": 6820 + }, + { + "#": 6821 + } + ], + { + "x": -0.95952, + "y": -0.28165 + }, + { + "x": -0.84125, + "y": -0.54065 + }, + { + "x": -0.65488, + "y": -0.75573 + }, + { + "x": -0.41534, + "y": -0.90967 + }, + { + "x": -0.14229, + "y": -0.98983 + }, + { + "x": 0.14229, + "y": -0.98983 + }, + { + "x": 0.41534, + "y": -0.90967 + }, + { + "x": 0.65488, + "y": -0.75573 + }, + { + "x": 0.84125, + "y": -0.54065 + }, + { + "x": 0.95952, + "y": -0.28165 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 138, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6823 + }, + "angle": 0, + "vertices": { + "#": 6824 + }, + "position": { + "#": 6843 + }, + "force": { + "#": 6844 + }, + "torque": 0, + "positionImpulse": { + "#": 6845 + }, + "constraintImpulse": { + "#": 6846 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6847 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6848 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6849 + }, + "circleRadius": 17.30189, + "bounds": { + "#": 6851 + }, + "positionPrev": { + "#": 6854 + }, + "anglePrev": 0, + "axes": { + "#": 6855 + }, + "area": 921.45811, + "mass": 0.92146, + "inverseMass": 1.08524, + "inertia": 540.58957, + "inverseInertia": 0.00185, + "parent": { + "#": 6822 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6822 + } + ], + [ + { + "#": 6825 + }, + { + "#": 6826 + }, + { + "#": 6827 + }, + { + "#": 6828 + }, + { + "#": 6829 + }, + { + "#": 6830 + }, + { + "#": 6831 + }, + { + "#": 6832 + }, + { + "#": 6833 + }, + { + "#": 6834 + }, + { + "#": 6835 + }, + { + "#": 6836 + }, + { + "#": 6837 + }, + { + "#": 6838 + }, + { + "#": 6839 + }, + { + "#": 6840 + }, + { + "#": 6841 + }, + { + "#": 6842 + } + ], + { + "x": 296.838, + "y": 957.908, + "index": 0, + "body": { + "#": 6822 + }, + "isInternal": false + }, + { + "x": 294.783, + "y": 963.555, + "index": 1, + "body": { + "#": 6822 + }, + "isInternal": false + }, + { + "x": 290.92, + "y": 968.158, + "index": 2, + "body": { + "#": 6822 + }, + "isInternal": false + }, + { + "x": 285.717, + "y": 971.162, + "index": 3, + "body": { + "#": 6822 + }, + "isInternal": false + }, + { + "x": 279.799, + "y": 972.206, + "index": 4, + "body": { + "#": 6822 + }, + "isInternal": false + }, + { + "x": 273.881, + "y": 971.162, + "index": 5, + "body": { + "#": 6822 + }, + "isInternal": false + }, + { + "x": 268.678, + "y": 968.158, + "index": 6, + "body": { + "#": 6822 + }, + "isInternal": false + }, + { + "x": 264.815, + "y": 963.555, + "index": 7, + "body": { + "#": 6822 + }, + "isInternal": false + }, + { + "x": 262.76, + "y": 957.908, + "index": 8, + "body": { + "#": 6822 + }, + "isInternal": false + }, + { + "x": 262.76, + "y": 951.9, + "index": 9, + "body": { + "#": 6822 + }, + "isInternal": false + }, + { + "x": 264.815, + "y": 946.253, + "index": 10, + "body": { + "#": 6822 + }, + "isInternal": false + }, + { + "x": 268.678, + "y": 941.65, + "index": 11, + "body": { + "#": 6822 + }, + "isInternal": false + }, + { + "x": 273.881, + "y": 938.646, + "index": 12, + "body": { + "#": 6822 + }, + "isInternal": false + }, + { + "x": 279.799, + "y": 937.602, + "index": 13, + "body": { + "#": 6822 + }, + "isInternal": false + }, + { + "x": 285.717, + "y": 938.646, + "index": 14, + "body": { + "#": 6822 + }, + "isInternal": false + }, + { + "x": 290.92, + "y": 941.65, + "index": 15, + "body": { + "#": 6822 + }, + "isInternal": false + }, + { + "x": 294.783, + "y": 946.253, + "index": 16, + "body": { + "#": 6822 + }, + "isInternal": false + }, + { + "x": 296.838, + "y": 951.9, + "index": 17, + "body": { + "#": 6822 + }, + "isInternal": false + }, + { + "x": 279.799, + "y": 954.904 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6850 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6852 + }, + "max": { + "#": 6853 + } + }, + { + "x": 262.76, + "y": 937.602 + }, + { + "x": 296.838, + "y": 972.206 + }, + { + "x": 279.799, + "y": 954.904 + }, + [ + { + "#": 6856 + }, + { + "#": 6857 + }, + { + "#": 6858 + }, + { + "#": 6859 + }, + { + "#": 6860 + }, + { + "#": 6861 + }, + { + "#": 6862 + }, + { + "#": 6863 + }, + { + "#": 6864 + } + ], + { + "x": -0.93971, + "y": -0.34197 + }, + { + "x": -0.76599, + "y": -0.64285 + }, + { + "x": -0.50001, + "y": -0.86602 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.50001, + "y": -0.86602 + }, + { + "x": 0.76599, + "y": -0.64285 + }, + { + "x": 0.93971, + "y": -0.34197 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 139, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6866 + }, + "angle": 0, + "vertices": { + "#": 6867 + }, + "position": { + "#": 6890 + }, + "force": { + "#": 6891 + }, + "torque": 0, + "positionImpulse": { + "#": 6892 + }, + "constraintImpulse": { + "#": 6893 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6894 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6895 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6896 + }, + "circleRadius": 21.57748, + "bounds": { + "#": 6898 + }, + "positionPrev": { + "#": 6901 + }, + "anglePrev": 0, + "axes": { + "#": 6902 + }, + "area": 1442.87898, + "mass": 1.44288, + "inverseMass": 0.69306, + "inertia": 1325.42802, + "inverseInertia": 0.00075, + "parent": { + "#": 6865 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6865 + } + ], + [ + { + "#": 6868 + }, + { + "#": 6869 + }, + { + "#": 6870 + }, + { + "#": 6871 + }, + { + "#": 6872 + }, + { + "#": 6873 + }, + { + "#": 6874 + }, + { + "#": 6875 + }, + { + "#": 6876 + }, + { + "#": 6877 + }, + { + "#": 6878 + }, + { + "#": 6879 + }, + { + "#": 6880 + }, + { + "#": 6881 + }, + { + "#": 6882 + }, + { + "#": 6883 + }, + { + "#": 6884 + }, + { + "#": 6885 + }, + { + "#": 6886 + }, + { + "#": 6887 + }, + { + "#": 6888 + }, + { + "#": 6889 + } + ], + { + "x": 349.554, + "y": 962.25, + "index": 0, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 347.824, + "y": 968.143, + "index": 1, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 344.503, + "y": 973.309, + "index": 2, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 339.862, + "y": 977.331, + "index": 3, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 334.275, + "y": 979.882, + "index": 4, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 328.196, + "y": 980.756, + "index": 5, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 322.117, + "y": 979.882, + "index": 6, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 316.53, + "y": 977.331, + "index": 7, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 311.889, + "y": 973.309, + "index": 8, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 308.568, + "y": 968.143, + "index": 9, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 306.838, + "y": 962.25, + "index": 10, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 306.838, + "y": 956.108, + "index": 11, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 308.568, + "y": 950.215, + "index": 12, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 311.889, + "y": 945.049, + "index": 13, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 316.53, + "y": 941.027, + "index": 14, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 322.117, + "y": 938.476, + "index": 15, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 328.196, + "y": 937.602, + "index": 16, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 334.275, + "y": 938.476, + "index": 17, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 339.862, + "y": 941.027, + "index": 18, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 344.503, + "y": 945.049, + "index": 19, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 347.824, + "y": 950.215, + "index": 20, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 349.554, + "y": 956.108, + "index": 21, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 328.196, + "y": 959.179 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6897 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6899 + }, + "max": { + "#": 6900 + } + }, + { + "x": 306.838, + "y": 937.602 + }, + { + "x": 349.554, + "y": 980.756 + }, + { + "x": 328.196, + "y": 959.179 + }, + [ + { + "#": 6903 + }, + { + "#": 6904 + }, + { + "#": 6905 + }, + { + "#": 6906 + }, + { + "#": 6907 + }, + { + "#": 6908 + }, + { + "#": 6909 + }, + { + "#": 6910 + }, + { + "#": 6911 + }, + { + "#": 6912 + }, + { + "#": 6913 + } + ], + { + "x": -0.95951, + "y": -0.28168 + }, + { + "x": -0.84118, + "y": -0.54076 + }, + { + "x": -0.65491, + "y": -0.75571 + }, + { + "x": -0.41535, + "y": -0.90966 + }, + { + "x": -0.14231, + "y": -0.98982 + }, + { + "x": 0.14231, + "y": -0.98982 + }, + { + "x": 0.41535, + "y": -0.90966 + }, + { + "x": 0.65491, + "y": -0.75571 + }, + { + "x": 0.84118, + "y": -0.54076 + }, + { + "x": 0.95951, + "y": -0.28168 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 140, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6915 + }, + "angle": 0, + "vertices": { + "#": 6916 + }, + "position": { + "#": 6939 + }, + "force": { + "#": 6940 + }, + "torque": 0, + "positionImpulse": { + "#": 6941 + }, + "constraintImpulse": { + "#": 6942 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6943 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6944 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6945 + }, + "circleRadius": 21.20801, + "bounds": { + "#": 6947 + }, + "positionPrev": { + "#": 6950 + }, + "anglePrev": 0, + "axes": { + "#": 6951 + }, + "area": 1393.87013, + "mass": 1.39387, + "inverseMass": 0.71743, + "inertia": 1236.91813, + "inverseInertia": 0.00081, + "parent": { + "#": 6914 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6914 + } + ], + [ + { + "#": 6917 + }, + { + "#": 6918 + }, + { + "#": 6919 + }, + { + "#": 6920 + }, + { + "#": 6921 + }, + { + "#": 6922 + }, + { + "#": 6923 + }, + { + "#": 6924 + }, + { + "#": 6925 + }, + { + "#": 6926 + }, + { + "#": 6927 + }, + { + "#": 6928 + }, + { + "#": 6929 + }, + { + "#": 6930 + }, + { + "#": 6931 + }, + { + "#": 6932 + }, + { + "#": 6933 + }, + { + "#": 6934 + }, + { + "#": 6935 + }, + { + "#": 6936 + }, + { + "#": 6937 + }, + { + "#": 6938 + } + ], + { + "x": 401.538, + "y": 961.828, + "index": 0, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 399.837, + "y": 967.62, + "index": 1, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 396.574, + "y": 972.698, + "index": 2, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 392.012, + "y": 976.651, + "index": 3, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 386.521, + "y": 979.159, + "index": 4, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 380.546, + "y": 980.018, + "index": 5, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 374.571, + "y": 979.159, + "index": 6, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 369.08, + "y": 976.651, + "index": 7, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 364.518, + "y": 972.698, + "index": 8, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 361.255, + "y": 967.62, + "index": 9, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 359.554, + "y": 961.828, + "index": 10, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 359.554, + "y": 955.792, + "index": 11, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 361.255, + "y": 950, + "index": 12, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 364.518, + "y": 944.922, + "index": 13, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 369.08, + "y": 940.969, + "index": 14, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 374.571, + "y": 938.461, + "index": 15, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 380.546, + "y": 937.602, + "index": 16, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 386.521, + "y": 938.461, + "index": 17, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 392.012, + "y": 940.969, + "index": 18, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 396.574, + "y": 944.922, + "index": 19, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 399.837, + "y": 950, + "index": 20, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 401.538, + "y": 955.792, + "index": 21, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 380.546, + "y": 958.81 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6946 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6948 + }, + "max": { + "#": 6949 + } + }, + { + "x": 359.554, + "y": 937.602 + }, + { + "x": 401.538, + "y": 980.018 + }, + { + "x": 380.546, + "y": 958.81 + }, + [ + { + "#": 6952 + }, + { + "#": 6953 + }, + { + "#": 6954 + }, + { + "#": 6955 + }, + { + "#": 6956 + }, + { + "#": 6957 + }, + { + "#": 6958 + }, + { + "#": 6959 + }, + { + "#": 6960 + }, + { + "#": 6961 + }, + { + "#": 6962 + } + ], + { + "x": -0.95948, + "y": -0.28178 + }, + { + "x": -0.84129, + "y": -0.54059 + }, + { + "x": -0.65486, + "y": -0.75575 + }, + { + "x": -0.41546, + "y": -0.90961 + }, + { + "x": -0.1423, + "y": -0.98982 + }, + { + "x": 0.1423, + "y": -0.98982 + }, + { + "x": 0.41546, + "y": -0.90961 + }, + { + "x": 0.65486, + "y": -0.75575 + }, + { + "x": 0.84129, + "y": -0.54059 + }, + { + "x": 0.95948, + "y": -0.28178 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 141, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6964 + }, + "angle": 0, + "vertices": { + "#": 6965 + }, + "position": { + "#": 6986 + }, + "force": { + "#": 6987 + }, + "torque": 0, + "positionImpulse": { + "#": 6988 + }, + "constraintImpulse": { + "#": 6989 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6990 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6991 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6992 + }, + "circleRadius": 19.15644, + "bounds": { + "#": 6994 + }, + "positionPrev": { + "#": 6997 + }, + "anglePrev": 0, + "axes": { + "#": 6998 + }, + "area": 1134.05397, + "mass": 1.13405, + "inverseMass": 0.88179, + "inertia": 818.78778, + "inverseInertia": 0.00122, + "parent": { + "#": 6963 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6963 + } + ], + [ + { + "#": 6966 + }, + { + "#": 6967 + }, + { + "#": 6968 + }, + { + "#": 6969 + }, + { + "#": 6970 + }, + { + "#": 6971 + }, + { + "#": 6972 + }, + { + "#": 6973 + }, + { + "#": 6974 + }, + { + "#": 6975 + }, + { + "#": 6976 + }, + { + "#": 6977 + }, + { + "#": 6978 + }, + { + "#": 6979 + }, + { + "#": 6980 + }, + { + "#": 6981 + }, + { + "#": 6982 + }, + { + "#": 6983 + }, + { + "#": 6984 + }, + { + "#": 6985 + } + ], + { + "x": 449.38, + "y": 959.52, + "index": 0, + "body": { + "#": 6963 + }, + "isInternal": false + }, + { + "x": 447.528, + "y": 965.22, + "index": 1, + "body": { + "#": 6963 + }, + "isInternal": false + }, + { + "x": 444.005, + "y": 970.069, + "index": 2, + "body": { + "#": 6963 + }, + "isInternal": false + }, + { + "x": 439.156, + "y": 973.592, + "index": 3, + "body": { + "#": 6963 + }, + "isInternal": false + }, + { + "x": 433.456, + "y": 975.444, + "index": 4, + "body": { + "#": 6963 + }, + "isInternal": false + }, + { + "x": 427.462, + "y": 975.444, + "index": 5, + "body": { + "#": 6963 + }, + "isInternal": false + }, + { + "x": 421.762, + "y": 973.592, + "index": 6, + "body": { + "#": 6963 + }, + "isInternal": false + }, + { + "x": 416.913, + "y": 970.069, + "index": 7, + "body": { + "#": 6963 + }, + "isInternal": false + }, + { + "x": 413.39, + "y": 965.22, + "index": 8, + "body": { + "#": 6963 + }, + "isInternal": false + }, + { + "x": 411.538, + "y": 959.52, + "index": 9, + "body": { + "#": 6963 + }, + "isInternal": false + }, + { + "x": 411.538, + "y": 953.526, + "index": 10, + "body": { + "#": 6963 + }, + "isInternal": false + }, + { + "x": 413.39, + "y": 947.826, + "index": 11, + "body": { + "#": 6963 + }, + "isInternal": false + }, + { + "x": 416.913, + "y": 942.977, + "index": 12, + "body": { + "#": 6963 + }, + "isInternal": false + }, + { + "x": 421.762, + "y": 939.454, + "index": 13, + "body": { + "#": 6963 + }, + "isInternal": false + }, + { + "x": 427.462, + "y": 937.602, + "index": 14, + "body": { + "#": 6963 + }, + "isInternal": false + }, + { + "x": 433.456, + "y": 937.602, + "index": 15, + "body": { + "#": 6963 + }, + "isInternal": false + }, + { + "x": 439.156, + "y": 939.454, + "index": 16, + "body": { + "#": 6963 + }, + "isInternal": false + }, + { + "x": 444.005, + "y": 942.977, + "index": 17, + "body": { + "#": 6963 + }, + "isInternal": false + }, + { + "x": 447.528, + "y": 947.826, + "index": 18, + "body": { + "#": 6963 + }, + "isInternal": false + }, + { + "x": 449.38, + "y": 953.526, + "index": 19, + "body": { + "#": 6963 + }, + "isInternal": false + }, + { + "x": 430.459, + "y": 956.523 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6993 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6995 + }, + "max": { + "#": 6996 + } + }, + { + "x": 411.538, + "y": 937.602 + }, + { + "x": 449.38, + "y": 975.444 + }, + { + "x": 430.459, + "y": 956.523 + }, + [ + { + "#": 6999 + }, + { + "#": 7000 + }, + { + "#": 7001 + }, + { + "#": 7002 + }, + { + "#": 7003 + }, + { + "#": 7004 + }, + { + "#": 7005 + }, + { + "#": 7006 + }, + { + "#": 7007 + }, + { + "#": 7008 + } + ], + { + "x": -0.95106, + "y": -0.30901 + }, + { + "x": -0.80902, + "y": -0.58778 + }, + { + "x": -0.58778, + "y": -0.80902 + }, + { + "x": -0.30901, + "y": -0.95106 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30901, + "y": -0.95106 + }, + { + "x": 0.58778, + "y": -0.80902 + }, + { + "x": 0.80902, + "y": -0.58778 + }, + { + "x": 0.95106, + "y": -0.30901 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 142, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7010 + }, + "angle": 0, + "vertices": { + "#": 7011 + }, + "position": { + "#": 7038 + }, + "force": { + "#": 7039 + }, + "torque": 0, + "positionImpulse": { + "#": 7040 + }, + "constraintImpulse": { + "#": 7041 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7042 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7043 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7044 + }, + "circleRadius": 26.16352, + "bounds": { + "#": 7046 + }, + "positionPrev": { + "#": 7049 + }, + "anglePrev": 0, + "axes": { + "#": 7050 + }, + "area": 2129.66847, + "mass": 2.12967, + "inverseMass": 0.46956, + "inertia": 2887.43629, + "inverseInertia": 0.00035, + "parent": { + "#": 7009 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7009 + } + ], + [ + { + "#": 7012 + }, + { + "#": 7013 + }, + { + "#": 7014 + }, + { + "#": 7015 + }, + { + "#": 7016 + }, + { + "#": 7017 + }, + { + "#": 7018 + }, + { + "#": 7019 + }, + { + "#": 7020 + }, + { + "#": 7021 + }, + { + "#": 7022 + }, + { + "#": 7023 + }, + { + "#": 7024 + }, + { + "#": 7025 + }, + { + "#": 7026 + }, + { + "#": 7027 + }, + { + "#": 7028 + }, + { + "#": 7029 + }, + { + "#": 7030 + }, + { + "#": 7031 + }, + { + "#": 7032 + }, + { + "#": 7033 + }, + { + "#": 7034 + }, + { + "#": 7035 + }, + { + "#": 7036 + }, + { + "#": 7037 + } + ], + { + "x": 511.326, + "y": 966.92, + "index": 0, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 509.816, + "y": 973.044, + "index": 1, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 506.885, + "y": 978.629, + "index": 2, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 502.703, + "y": 983.35, + "index": 3, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 497.512, + "y": 986.933, + "index": 4, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 491.614, + "y": 989.169, + "index": 5, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 485.353, + "y": 989.93, + "index": 6, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 479.092, + "y": 989.169, + "index": 7, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 473.194, + "y": 986.933, + "index": 8, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 468.003, + "y": 983.35, + "index": 9, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 463.821, + "y": 978.629, + "index": 10, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 460.89, + "y": 973.044, + "index": 11, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 459.38, + "y": 966.92, + "index": 12, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 459.38, + "y": 960.612, + "index": 13, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 460.89, + "y": 954.488, + "index": 14, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 463.821, + "y": 948.903, + "index": 15, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 468.003, + "y": 944.182, + "index": 16, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 473.194, + "y": 940.599, + "index": 17, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 479.092, + "y": 938.363, + "index": 18, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 485.353, + "y": 937.602, + "index": 19, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 491.614, + "y": 938.363, + "index": 20, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 497.512, + "y": 940.599, + "index": 21, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 502.703, + "y": 944.182, + "index": 22, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 506.885, + "y": 948.903, + "index": 23, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 509.816, + "y": 954.488, + "index": 24, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 511.326, + "y": 960.612, + "index": 25, + "body": { + "#": 7009 + }, + "isInternal": false + }, + { + "x": 485.353, + "y": 963.766 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7045 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7047 + }, + "max": { + "#": 7048 + } + }, + { + "x": 459.38, + "y": 937.602 + }, + { + "x": 511.326, + "y": 989.93 + }, + { + "x": 485.353, + "y": 963.766 + }, + [ + { + "#": 7051 + }, + { + "#": 7052 + }, + { + "#": 7053 + }, + { + "#": 7054 + }, + { + "#": 7055 + }, + { + "#": 7056 + }, + { + "#": 7057 + }, + { + "#": 7058 + }, + { + "#": 7059 + }, + { + "#": 7060 + }, + { + "#": 7061 + }, + { + "#": 7062 + }, + { + "#": 7063 + } + ], + { + "x": -0.97092, + "y": -0.2394 + }, + { + "x": -0.88547, + "y": -0.46469 + }, + { + "x": -0.74855, + "y": -0.66308 + }, + { + "x": -0.56806, + "y": -0.82299 + }, + { + "x": -0.35449, + "y": -0.93506 + }, + { + "x": -0.12066, + "y": -0.99269 + }, + { + "x": 0.12066, + "y": -0.99269 + }, + { + "x": 0.35449, + "y": -0.93506 + }, + { + "x": 0.56806, + "y": -0.82299 + }, + { + "x": 0.74855, + "y": -0.66308 + }, + { + "x": 0.88547, + "y": -0.46469 + }, + { + "x": 0.97092, + "y": -0.2394 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 143, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7065 + }, + "angle": 0, + "vertices": { + "#": 7066 + }, + "position": { + "#": 7085 + }, + "force": { + "#": 7086 + }, + "torque": 0, + "positionImpulse": { + "#": 7087 + }, + "constraintImpulse": { + "#": 7088 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7089 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7090 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7091 + }, + "circleRadius": 17.41442, + "bounds": { + "#": 7093 + }, + "positionPrev": { + "#": 7096 + }, + "anglePrev": 0, + "axes": { + "#": 7097 + }, + "area": 933.4789, + "mass": 0.93348, + "inverseMass": 1.07126, + "inertia": 554.78598, + "inverseInertia": 0.0018, + "parent": { + "#": 7064 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7064 + } + ], + [ + { + "#": 7067 + }, + { + "#": 7068 + }, + { + "#": 7069 + }, + { + "#": 7070 + }, + { + "#": 7071 + }, + { + "#": 7072 + }, + { + "#": 7073 + }, + { + "#": 7074 + }, + { + "#": 7075 + }, + { + "#": 7076 + }, + { + "#": 7077 + }, + { + "#": 7078 + }, + { + "#": 7079 + }, + { + "#": 7080 + }, + { + "#": 7081 + }, + { + "#": 7082 + }, + { + "#": 7083 + }, + { + "#": 7084 + } + ], + { + "x": 555.626, + "y": 958.04, + "index": 0, + "body": { + "#": 7064 + }, + "isInternal": false + }, + { + "x": 553.557, + "y": 963.723, + "index": 1, + "body": { + "#": 7064 + }, + "isInternal": false + }, + { + "x": 549.67, + "y": 968.356, + "index": 2, + "body": { + "#": 7064 + }, + "isInternal": false + }, + { + "x": 544.432, + "y": 971.38, + "index": 3, + "body": { + "#": 7064 + }, + "isInternal": false + }, + { + "x": 538.476, + "y": 972.43, + "index": 4, + "body": { + "#": 7064 + }, + "isInternal": false + }, + { + "x": 532.52, + "y": 971.38, + "index": 5, + "body": { + "#": 7064 + }, + "isInternal": false + }, + { + "x": 527.282, + "y": 968.356, + "index": 6, + "body": { + "#": 7064 + }, + "isInternal": false + }, + { + "x": 523.395, + "y": 963.723, + "index": 7, + "body": { + "#": 7064 + }, + "isInternal": false + }, + { + "x": 521.326, + "y": 958.04, + "index": 8, + "body": { + "#": 7064 + }, + "isInternal": false + }, + { + "x": 521.326, + "y": 951.992, + "index": 9, + "body": { + "#": 7064 + }, + "isInternal": false + }, + { + "x": 523.395, + "y": 946.309, + "index": 10, + "body": { + "#": 7064 + }, + "isInternal": false + }, + { + "x": 527.282, + "y": 941.676, + "index": 11, + "body": { + "#": 7064 + }, + "isInternal": false + }, + { + "x": 532.52, + "y": 938.652, + "index": 12, + "body": { + "#": 7064 + }, + "isInternal": false + }, + { + "x": 538.476, + "y": 937.602, + "index": 13, + "body": { + "#": 7064 + }, + "isInternal": false + }, + { + "x": 544.432, + "y": 938.652, + "index": 14, + "body": { + "#": 7064 + }, + "isInternal": false + }, + { + "x": 549.67, + "y": 941.676, + "index": 15, + "body": { + "#": 7064 + }, + "isInternal": false + }, + { + "x": 553.557, + "y": 946.309, + "index": 16, + "body": { + "#": 7064 + }, + "isInternal": false + }, + { + "x": 555.626, + "y": 951.992, + "index": 17, + "body": { + "#": 7064 + }, + "isInternal": false + }, + { + "x": 538.476, + "y": 955.016 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7092 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7094 + }, + "max": { + "#": 7095 + } + }, + { + "x": 521.326, + "y": 937.602 + }, + { + "x": 555.626, + "y": 972.43 + }, + { + "x": 538.476, + "y": 955.016 + }, + [ + { + "#": 7098 + }, + { + "#": 7099 + }, + { + "#": 7100 + }, + { + "#": 7101 + }, + { + "#": 7102 + }, + { + "#": 7103 + }, + { + "#": 7104 + }, + { + "#": 7105 + }, + { + "#": 7106 + } + ], + { + "x": -0.93966, + "y": -0.3421 + }, + { + "x": -0.76609, + "y": -0.64273 + }, + { + "x": -0.49998, + "y": -0.86604 + }, + { + "x": -0.17362, + "y": -0.98481 + }, + { + "x": 0.17362, + "y": -0.98481 + }, + { + "x": 0.49998, + "y": -0.86604 + }, + { + "x": 0.76609, + "y": -0.64273 + }, + { + "x": 0.93966, + "y": -0.3421 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 144, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7108 + }, + "angle": 0, + "vertices": { + "#": 7109 + }, + "position": { + "#": 7130 + }, + "force": { + "#": 7131 + }, + "torque": 0, + "positionImpulse": { + "#": 7132 + }, + "constraintImpulse": { + "#": 7133 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7134 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7135 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7136 + }, + "circleRadius": 19.20544, + "bounds": { + "#": 7138 + }, + "positionPrev": { + "#": 7141 + }, + "anglePrev": 0, + "axes": { + "#": 7142 + }, + "area": 1139.78432, + "mass": 1.13978, + "inverseMass": 0.87736, + "inertia": 827.08331, + "inverseInertia": 0.00121, + "parent": { + "#": 7107 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7107 + } + ], + [ + { + "#": 7110 + }, + { + "#": 7111 + }, + { + "#": 7112 + }, + { + "#": 7113 + }, + { + "#": 7114 + }, + { + "#": 7115 + }, + { + "#": 7116 + }, + { + "#": 7117 + }, + { + "#": 7118 + }, + { + "#": 7119 + }, + { + "#": 7120 + }, + { + "#": 7121 + }, + { + "#": 7122 + }, + { + "#": 7123 + }, + { + "#": 7124 + }, + { + "#": 7125 + }, + { + "#": 7126 + }, + { + "#": 7127 + }, + { + "#": 7128 + }, + { + "#": 7129 + } + ], + { + "x": 603.564, + "y": 959.575, + "index": 0, + "body": { + "#": 7107 + }, + "isInternal": false + }, + { + "x": 601.707, + "y": 965.29, + "index": 1, + "body": { + "#": 7107 + }, + "isInternal": false + }, + { + "x": 598.175, + "y": 970.151, + "index": 2, + "body": { + "#": 7107 + }, + "isInternal": false + }, + { + "x": 593.314, + "y": 973.683, + "index": 3, + "body": { + "#": 7107 + }, + "isInternal": false + }, + { + "x": 587.599, + "y": 975.54, + "index": 4, + "body": { + "#": 7107 + }, + "isInternal": false + }, + { + "x": 581.591, + "y": 975.54, + "index": 5, + "body": { + "#": 7107 + }, + "isInternal": false + }, + { + "x": 575.876, + "y": 973.683, + "index": 6, + "body": { + "#": 7107 + }, + "isInternal": false + }, + { + "x": 571.015, + "y": 970.151, + "index": 7, + "body": { + "#": 7107 + }, + "isInternal": false + }, + { + "x": 567.483, + "y": 965.29, + "index": 8, + "body": { + "#": 7107 + }, + "isInternal": false + }, + { + "x": 565.626, + "y": 959.575, + "index": 9, + "body": { + "#": 7107 + }, + "isInternal": false + }, + { + "x": 565.626, + "y": 953.567, + "index": 10, + "body": { + "#": 7107 + }, + "isInternal": false + }, + { + "x": 567.483, + "y": 947.852, + "index": 11, + "body": { + "#": 7107 + }, + "isInternal": false + }, + { + "x": 571.015, + "y": 942.991, + "index": 12, + "body": { + "#": 7107 + }, + "isInternal": false + }, + { + "x": 575.876, + "y": 939.459, + "index": 13, + "body": { + "#": 7107 + }, + "isInternal": false + }, + { + "x": 581.591, + "y": 937.602, + "index": 14, + "body": { + "#": 7107 + }, + "isInternal": false + }, + { + "x": 587.599, + "y": 937.602, + "index": 15, + "body": { + "#": 7107 + }, + "isInternal": false + }, + { + "x": 593.314, + "y": 939.459, + "index": 16, + "body": { + "#": 7107 + }, + "isInternal": false + }, + { + "x": 598.175, + "y": 942.991, + "index": 17, + "body": { + "#": 7107 + }, + "isInternal": false + }, + { + "x": 601.707, + "y": 947.852, + "index": 18, + "body": { + "#": 7107 + }, + "isInternal": false + }, + { + "x": 603.564, + "y": 953.567, + "index": 19, + "body": { + "#": 7107 + }, + "isInternal": false + }, + { + "x": 584.595, + "y": 956.571 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7137 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7139 + }, + "max": { + "#": 7140 + } + }, + { + "x": 565.626, + "y": 937.602 + }, + { + "x": 603.564, + "y": 975.54 + }, + { + "x": 584.595, + "y": 956.571 + }, + [ + { + "#": 7143 + }, + { + "#": 7144 + }, + { + "#": 7145 + }, + { + "#": 7146 + }, + { + "#": 7147 + }, + { + "#": 7148 + }, + { + "#": 7149 + }, + { + "#": 7150 + }, + { + "#": 7151 + }, + { + "#": 7152 + } + ], + { + "x": -0.95105, + "y": -0.30903 + }, + { + "x": -0.809, + "y": -0.58782 + }, + { + "x": -0.58782, + "y": -0.809 + }, + { + "x": -0.30903, + "y": -0.95105 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30903, + "y": -0.95105 + }, + { + "x": 0.58782, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58782 + }, + { + "x": 0.95105, + "y": -0.30903 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 145, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7154 + }, + "angle": 0, + "vertices": { + "#": 7155 + }, + "position": { + "#": 7182 + }, + "force": { + "#": 7183 + }, + "torque": 0, + "positionImpulse": { + "#": 7184 + }, + "constraintImpulse": { + "#": 7185 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7186 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7187 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7188 + }, + "circleRadius": 25.61066, + "bounds": { + "#": 7190 + }, + "positionPrev": { + "#": 7193 + }, + "anglePrev": 0, + "axes": { + "#": 7194 + }, + "area": 2040.58517, + "mass": 2.04059, + "inverseMass": 0.49006, + "inertia": 2650.92757, + "inverseInertia": 0.00038, + "parent": { + "#": 7153 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7153 + } + ], + [ + { + "#": 7156 + }, + { + "#": 7157 + }, + { + "#": 7158 + }, + { + "#": 7159 + }, + { + "#": 7160 + }, + { + "#": 7161 + }, + { + "#": 7162 + }, + { + "#": 7163 + }, + { + "#": 7164 + }, + { + "#": 7165 + }, + { + "#": 7166 + }, + { + "#": 7167 + }, + { + "#": 7168 + }, + { + "#": 7169 + }, + { + "#": 7170 + }, + { + "#": 7171 + }, + { + "#": 7172 + }, + { + "#": 7173 + }, + { + "#": 7174 + }, + { + "#": 7175 + }, + { + "#": 7176 + }, + { + "#": 7177 + }, + { + "#": 7178 + }, + { + "#": 7179 + }, + { + "#": 7180 + }, + { + "#": 7181 + } + ], + { + "x": 150.848, + "y": 1028.628, + "index": 0, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 149.37, + "y": 1034.623, + "index": 1, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 146.501, + "y": 1040.09, + "index": 2, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 142.407, + "y": 1044.711, + "index": 3, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 137.326, + "y": 1048.218, + "index": 4, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 131.553, + "y": 1050.407, + "index": 5, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 125.424, + "y": 1051.152, + "index": 6, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 119.295, + "y": 1050.407, + "index": 7, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 113.522, + "y": 1048.218, + "index": 8, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 108.441, + "y": 1044.711, + "index": 9, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 104.347, + "y": 1040.09, + "index": 10, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 101.478, + "y": 1034.623, + "index": 11, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 100, + "y": 1028.628, + "index": 12, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 100, + "y": 1022.454, + "index": 13, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 101.478, + "y": 1016.459, + "index": 14, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 104.347, + "y": 1010.992, + "index": 15, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 108.441, + "y": 1006.371, + "index": 16, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 113.522, + "y": 1002.864, + "index": 17, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 119.295, + "y": 1000.675, + "index": 18, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 125.424, + "y": 999.93, + "index": 19, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 131.553, + "y": 1000.675, + "index": 20, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 137.326, + "y": 1002.864, + "index": 21, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 142.407, + "y": 1006.371, + "index": 22, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 146.501, + "y": 1010.992, + "index": 23, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 149.37, + "y": 1016.459, + "index": 24, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 150.848, + "y": 1022.454, + "index": 25, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 125.424, + "y": 1025.541 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7189 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7191 + }, + "max": { + "#": 7192 + } + }, + { + "x": 100, + "y": 999.93 + }, + { + "x": 150.848, + "y": 1051.152 + }, + { + "x": 125.424, + "y": 1025.541 + }, + [ + { + "#": 7195 + }, + { + "#": 7196 + }, + { + "#": 7197 + }, + { + "#": 7198 + }, + { + "#": 7199 + }, + { + "#": 7200 + }, + { + "#": 7201 + }, + { + "#": 7202 + }, + { + "#": 7203 + }, + { + "#": 7204 + }, + { + "#": 7205 + }, + { + "#": 7206 + }, + { + "#": 7207 + } + ], + { + "x": -0.97093, + "y": -0.23937 + }, + { + "x": -0.88548, + "y": -0.46468 + }, + { + "x": -0.7485, + "y": -0.66314 + }, + { + "x": -0.56805, + "y": -0.823 + }, + { + "x": -0.35455, + "y": -0.93504 + }, + { + "x": -0.12067, + "y": -0.99269 + }, + { + "x": 0.12067, + "y": -0.99269 + }, + { + "x": 0.35455, + "y": -0.93504 + }, + { + "x": 0.56805, + "y": -0.823 + }, + { + "x": 0.7485, + "y": -0.66314 + }, + { + "x": 0.88548, + "y": -0.46468 + }, + { + "x": 0.97093, + "y": -0.23937 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 146, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7209 + }, + "angle": 0, + "vertices": { + "#": 7210 + }, + "position": { + "#": 7227 + }, + "force": { + "#": 7228 + }, + "torque": 0, + "positionImpulse": { + "#": 7229 + }, + "constraintImpulse": { + "#": 7230 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7231 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7232 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7233 + }, + "circleRadius": 15.1486, + "bounds": { + "#": 7235 + }, + "positionPrev": { + "#": 7238 + }, + "anglePrev": 0, + "axes": { + "#": 7239 + }, + "area": 702.57687, + "mass": 0.70258, + "inverseMass": 1.42333, + "inertia": 314.28689, + "inverseInertia": 0.00318, + "parent": { + "#": 7208 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7208 + } + ], + [ + { + "#": 7211 + }, + { + "#": 7212 + }, + { + "#": 7213 + }, + { + "#": 7214 + }, + { + "#": 7215 + }, + { + "#": 7216 + }, + { + "#": 7217 + }, + { + "#": 7218 + }, + { + "#": 7219 + }, + { + "#": 7220 + }, + { + "#": 7221 + }, + { + "#": 7222 + }, + { + "#": 7223 + }, + { + "#": 7224 + }, + { + "#": 7225 + }, + { + "#": 7226 + } + ], + { + "x": 190.564, + "y": 1017.743, + "index": 0, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 188.302, + "y": 1023.204, + "index": 1, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 184.122, + "y": 1027.384, + "index": 2, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 178.661, + "y": 1029.646, + "index": 3, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 172.751, + "y": 1029.646, + "index": 4, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 167.29, + "y": 1027.384, + "index": 5, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 163.11, + "y": 1023.204, + "index": 6, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 160.848, + "y": 1017.743, + "index": 7, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 160.848, + "y": 1011.833, + "index": 8, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 163.11, + "y": 1006.372, + "index": 9, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 167.29, + "y": 1002.192, + "index": 10, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 172.751, + "y": 999.93, + "index": 11, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 178.661, + "y": 999.93, + "index": 12, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 184.122, + "y": 1002.192, + "index": 13, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 188.302, + "y": 1006.372, + "index": 14, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 190.564, + "y": 1011.833, + "index": 15, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 175.706, + "y": 1014.788 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7234 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7236 + }, + "max": { + "#": 7237 + } + }, + { + "x": 160.848, + "y": 999.93 + }, + { + "x": 190.564, + "y": 1029.646 + }, + { + "x": 175.706, + "y": 1014.788 + }, + [ + { + "#": 7240 + }, + { + "#": 7241 + }, + { + "#": 7242 + }, + { + "#": 7243 + }, + { + "#": 7244 + }, + { + "#": 7245 + }, + { + "#": 7246 + }, + { + "#": 7247 + } + ], + { + "x": -0.92388, + "y": -0.38268 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38268, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38268, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38268 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 147, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7249 + }, + "angle": 0, + "vertices": { + "#": 7250 + }, + "position": { + "#": 7275 + }, + "force": { + "#": 7276 + }, + "torque": 0, + "positionImpulse": { + "#": 7277 + }, + "constraintImpulse": { + "#": 7278 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7279 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7280 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7281 + }, + "circleRadius": 22.44888, + "bounds": { + "#": 7283 + }, + "positionPrev": { + "#": 7286 + }, + "anglePrev": 0, + "axes": { + "#": 7287 + }, + "area": 1565.2004, + "mass": 1.5652, + "inverseMass": 0.6389, + "inertia": 1559.66544, + "inverseInertia": 0.00064, + "parent": { + "#": 7248 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7248 + } + ], + [ + { + "#": 7251 + }, + { + "#": 7252 + }, + { + "#": 7253 + }, + { + "#": 7254 + }, + { + "#": 7255 + }, + { + "#": 7256 + }, + { + "#": 7257 + }, + { + "#": 7258 + }, + { + "#": 7259 + }, + { + "#": 7260 + }, + { + "#": 7261 + }, + { + "#": 7262 + }, + { + "#": 7263 + }, + { + "#": 7264 + }, + { + "#": 7265 + }, + { + "#": 7266 + }, + { + "#": 7267 + }, + { + "#": 7268 + }, + { + "#": 7269 + }, + { + "#": 7270 + }, + { + "#": 7271 + }, + { + "#": 7272 + }, + { + "#": 7273 + }, + { + "#": 7274 + } + ], + { + "x": 245.078, + "y": 1025.117, + "index": 0, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 243.561, + "y": 1030.778, + "index": 1, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 240.631, + "y": 1035.853, + "index": 2, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 236.487, + "y": 1039.997, + "index": 3, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 231.412, + "y": 1042.927, + "index": 4, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 225.751, + "y": 1044.444, + "index": 5, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 219.891, + "y": 1044.444, + "index": 6, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 214.23, + "y": 1042.927, + "index": 7, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 209.155, + "y": 1039.997, + "index": 8, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 205.011, + "y": 1035.853, + "index": 9, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 202.081, + "y": 1030.778, + "index": 10, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 200.564, + "y": 1025.117, + "index": 11, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 200.564, + "y": 1019.257, + "index": 12, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 202.081, + "y": 1013.596, + "index": 13, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 205.011, + "y": 1008.521, + "index": 14, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 209.155, + "y": 1004.377, + "index": 15, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 214.23, + "y": 1001.447, + "index": 16, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 219.891, + "y": 999.93, + "index": 17, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 225.751, + "y": 999.93, + "index": 18, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 231.412, + "y": 1001.447, + "index": 19, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 236.487, + "y": 1004.377, + "index": 20, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 240.631, + "y": 1008.521, + "index": 21, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 243.561, + "y": 1013.596, + "index": 22, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 245.078, + "y": 1019.257, + "index": 23, + "body": { + "#": 7248 + }, + "isInternal": false + }, + { + "x": 222.821, + "y": 1022.187 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7282 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7284 + }, + "max": { + "#": 7285 + } + }, + { + "x": 200.564, + "y": 999.93 + }, + { + "x": 245.078, + "y": 1044.444 + }, + { + "x": 222.821, + "y": 1022.187 + }, + [ + { + "#": 7288 + }, + { + "#": 7289 + }, + { + "#": 7290 + }, + { + "#": 7291 + }, + { + "#": 7292 + }, + { + "#": 7293 + }, + { + "#": 7294 + }, + { + "#": 7295 + }, + { + "#": 7296 + }, + { + "#": 7297 + }, + { + "#": 7298 + }, + { + "#": 7299 + } + ], + { + "x": -0.96592, + "y": -0.25884 + }, + { + "x": -0.86603, + "y": -0.49999 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": -0.25884, + "y": -0.96592 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25884, + "y": -0.96592 + }, + { + "x": 0.49999, + "y": -0.86603 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86603, + "y": -0.49999 + }, + { + "x": 0.96592, + "y": -0.25884 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 148, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7301 + }, + "angle": 0, + "vertices": { + "#": 7302 + }, + "position": { + "#": 7329 + }, + "force": { + "#": 7330 + }, + "torque": 0, + "positionImpulse": { + "#": 7331 + }, + "constraintImpulse": { + "#": 7332 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7333 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7334 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7335 + }, + "circleRadius": 24.91892, + "bounds": { + "#": 7337 + }, + "positionPrev": { + "#": 7340 + }, + "anglePrev": 0, + "axes": { + "#": 7341 + }, + "area": 1931.85773, + "mass": 1.93186, + "inverseMass": 0.51764, + "inertia": 2375.95762, + "inverseInertia": 0.00042, + "parent": { + "#": 7300 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7300 + } + ], + [ + { + "#": 7303 + }, + { + "#": 7304 + }, + { + "#": 7305 + }, + { + "#": 7306 + }, + { + "#": 7307 + }, + { + "#": 7308 + }, + { + "#": 7309 + }, + { + "#": 7310 + }, + { + "#": 7311 + }, + { + "#": 7312 + }, + { + "#": 7313 + }, + { + "#": 7314 + }, + { + "#": 7315 + }, + { + "#": 7316 + }, + { + "#": 7317 + }, + { + "#": 7318 + }, + { + "#": 7319 + }, + { + "#": 7320 + }, + { + "#": 7321 + }, + { + "#": 7322 + }, + { + "#": 7323 + }, + { + "#": 7324 + }, + { + "#": 7325 + }, + { + "#": 7326 + }, + { + "#": 7327 + }, + { + "#": 7328 + } + ], + { + "x": 304.552, + "y": 1027.853, + "index": 0, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 303.115, + "y": 1033.685, + "index": 1, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 300.323, + "y": 1039.005, + "index": 2, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 296.339, + "y": 1043.501, + "index": 3, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 291.395, + "y": 1046.914, + "index": 4, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 285.778, + "y": 1049.044, + "index": 5, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 279.815, + "y": 1049.768, + "index": 6, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 273.852, + "y": 1049.044, + "index": 7, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 268.235, + "y": 1046.914, + "index": 8, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 263.291, + "y": 1043.501, + "index": 9, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 259.307, + "y": 1039.005, + "index": 10, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 256.515, + "y": 1033.685, + "index": 11, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 255.078, + "y": 1027.853, + "index": 12, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 255.078, + "y": 1021.845, + "index": 13, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 256.515, + "y": 1016.013, + "index": 14, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 259.307, + "y": 1010.693, + "index": 15, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 263.291, + "y": 1006.197, + "index": 16, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 268.235, + "y": 1002.784, + "index": 17, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 273.852, + "y": 1000.654, + "index": 18, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 279.815, + "y": 999.93, + "index": 19, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 285.778, + "y": 1000.654, + "index": 20, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 291.395, + "y": 1002.784, + "index": 21, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 296.339, + "y": 1006.197, + "index": 22, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 300.323, + "y": 1010.693, + "index": 23, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 303.115, + "y": 1016.013, + "index": 24, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 304.552, + "y": 1021.845, + "index": 25, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 279.815, + "y": 1024.849 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7336 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7338 + }, + "max": { + "#": 7339 + } + }, + { + "x": 255.078, + "y": 999.93 + }, + { + "x": 304.552, + "y": 1049.768 + }, + { + "x": 279.815, + "y": 1024.849 + }, + [ + { + "#": 7342 + }, + { + "#": 7343 + }, + { + "#": 7344 + }, + { + "#": 7345 + }, + { + "#": 7346 + }, + { + "#": 7347 + }, + { + "#": 7348 + }, + { + "#": 7349 + }, + { + "#": 7350 + }, + { + "#": 7351 + }, + { + "#": 7352 + }, + { + "#": 7353 + }, + { + "#": 7354 + } + ], + { + "x": -0.97096, + "y": -0.23924 + }, + { + "x": -0.88547, + "y": -0.4647 + }, + { + "x": -0.74844, + "y": -0.66321 + }, + { + "x": -0.56811, + "y": -0.82295 + }, + { + "x": -0.35457, + "y": -0.93503 + }, + { + "x": -0.12053, + "y": -0.99271 + }, + { + "x": 0.12053, + "y": -0.99271 + }, + { + "x": 0.35457, + "y": -0.93503 + }, + { + "x": 0.56811, + "y": -0.82295 + }, + { + "x": 0.74844, + "y": -0.66321 + }, + { + "x": 0.88547, + "y": -0.4647 + }, + { + "x": 0.97096, + "y": -0.23924 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 149, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7356 + }, + "angle": 0, + "vertices": { + "#": 7357 + }, + "position": { + "#": 7378 + }, + "force": { + "#": 7379 + }, + "torque": 0, + "positionImpulse": { + "#": 7380 + }, + "constraintImpulse": { + "#": 7381 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7382 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7383 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7384 + }, + "circleRadius": 19.41056, + "bounds": { + "#": 7386 + }, + "positionPrev": { + "#": 7389 + }, + "anglePrev": 0, + "axes": { + "#": 7390 + }, + "area": 1164.28564, + "mass": 1.16429, + "inverseMass": 0.8589, + "inertia": 863.02423, + "inverseInertia": 0.00116, + "parent": { + "#": 7355 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7355 + } + ], + [ + { + "#": 7358 + }, + { + "#": 7359 + }, + { + "#": 7360 + }, + { + "#": 7361 + }, + { + "#": 7362 + }, + { + "#": 7363 + }, + { + "#": 7364 + }, + { + "#": 7365 + }, + { + "#": 7366 + }, + { + "#": 7367 + }, + { + "#": 7368 + }, + { + "#": 7369 + }, + { + "#": 7370 + }, + { + "#": 7371 + }, + { + "#": 7372 + }, + { + "#": 7373 + }, + { + "#": 7374 + }, + { + "#": 7375 + }, + { + "#": 7376 + }, + { + "#": 7377 + } + ], + { + "x": 352.896, + "y": 1022.138, + "index": 0, + "body": { + "#": 7355 + }, + "isInternal": false + }, + { + "x": 351.019, + "y": 1027.914, + "index": 1, + "body": { + "#": 7355 + }, + "isInternal": false + }, + { + "x": 347.449, + "y": 1032.827, + "index": 2, + "body": { + "#": 7355 + }, + "isInternal": false + }, + { + "x": 342.536, + "y": 1036.397, + "index": 3, + "body": { + "#": 7355 + }, + "isInternal": false + }, + { + "x": 336.76, + "y": 1038.274, + "index": 4, + "body": { + "#": 7355 + }, + "isInternal": false + }, + { + "x": 330.688, + "y": 1038.274, + "index": 5, + "body": { + "#": 7355 + }, + "isInternal": false + }, + { + "x": 324.912, + "y": 1036.397, + "index": 6, + "body": { + "#": 7355 + }, + "isInternal": false + }, + { + "x": 319.999, + "y": 1032.827, + "index": 7, + "body": { + "#": 7355 + }, + "isInternal": false + }, + { + "x": 316.429, + "y": 1027.914, + "index": 8, + "body": { + "#": 7355 + }, + "isInternal": false + }, + { + "x": 314.552, + "y": 1022.138, + "index": 9, + "body": { + "#": 7355 + }, + "isInternal": false + }, + { + "x": 314.552, + "y": 1016.066, + "index": 10, + "body": { + "#": 7355 + }, + "isInternal": false + }, + { + "x": 316.429, + "y": 1010.29, + "index": 11, + "body": { + "#": 7355 + }, + "isInternal": false + }, + { + "x": 319.999, + "y": 1005.377, + "index": 12, + "body": { + "#": 7355 + }, + "isInternal": false + }, + { + "x": 324.912, + "y": 1001.807, + "index": 13, + "body": { + "#": 7355 + }, + "isInternal": false + }, + { + "x": 330.688, + "y": 999.93, + "index": 14, + "body": { + "#": 7355 + }, + "isInternal": false + }, + { + "x": 336.76, + "y": 999.93, + "index": 15, + "body": { + "#": 7355 + }, + "isInternal": false + }, + { + "x": 342.536, + "y": 1001.807, + "index": 16, + "body": { + "#": 7355 + }, + "isInternal": false + }, + { + "x": 347.449, + "y": 1005.377, + "index": 17, + "body": { + "#": 7355 + }, + "isInternal": false + }, + { + "x": 351.019, + "y": 1010.29, + "index": 18, + "body": { + "#": 7355 + }, + "isInternal": false + }, + { + "x": 352.896, + "y": 1016.066, + "index": 19, + "body": { + "#": 7355 + }, + "isInternal": false + }, + { + "x": 333.724, + "y": 1019.102 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7385 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7387 + }, + "max": { + "#": 7388 + } + }, + { + "x": 314.552, + "y": 999.93 + }, + { + "x": 352.896, + "y": 1038.274 + }, + { + "x": 333.724, + "y": 1019.102 + }, + [ + { + "#": 7391 + }, + { + "#": 7392 + }, + { + "#": 7393 + }, + { + "#": 7394 + }, + { + "#": 7395 + }, + { + "#": 7396 + }, + { + "#": 7397 + }, + { + "#": 7398 + }, + { + "#": 7399 + }, + { + "#": 7400 + } + ], + { + "x": -0.95104, + "y": -0.30906 + }, + { + "x": -0.80898, + "y": -0.58784 + }, + { + "x": -0.58784, + "y": -0.80898 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.58784, + "y": -0.80898 + }, + { + "x": 0.80898, + "y": -0.58784 + }, + { + "x": 0.95104, + "y": -0.30906 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 150, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7402 + }, + "angle": 0, + "vertices": { + "#": 7403 + }, + "position": { + "#": 7424 + }, + "force": { + "#": 7425 + }, + "torque": 0, + "positionImpulse": { + "#": 7426 + }, + "constraintImpulse": { + "#": 7427 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7428 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7429 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7430 + }, + "circleRadius": 18.88677, + "bounds": { + "#": 7432 + }, + "positionPrev": { + "#": 7435 + }, + "anglePrev": 0, + "axes": { + "#": 7436 + }, + "area": 1102.26958, + "mass": 1.10227, + "inverseMass": 0.90722, + "inertia": 773.53426, + "inverseInertia": 0.00129, + "parent": { + "#": 7401 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7401 + } + ], + [ + { + "#": 7404 + }, + { + "#": 7405 + }, + { + "#": 7406 + }, + { + "#": 7407 + }, + { + "#": 7408 + }, + { + "#": 7409 + }, + { + "#": 7410 + }, + { + "#": 7411 + }, + { + "#": 7412 + }, + { + "#": 7413 + }, + { + "#": 7414 + }, + { + "#": 7415 + }, + { + "#": 7416 + }, + { + "#": 7417 + }, + { + "#": 7418 + }, + { + "#": 7419 + }, + { + "#": 7420 + }, + { + "#": 7421 + }, + { + "#": 7422 + }, + { + "#": 7423 + } + ], + { + "x": 400.204, + "y": 1021.539, + "index": 0, + "body": { + "#": 7401 + }, + "isInternal": false + }, + { + "x": 398.378, + "y": 1027.158, + "index": 1, + "body": { + "#": 7401 + }, + "isInternal": false + }, + { + "x": 394.905, + "y": 1031.939, + "index": 2, + "body": { + "#": 7401 + }, + "isInternal": false + }, + { + "x": 390.124, + "y": 1035.412, + "index": 3, + "body": { + "#": 7401 + }, + "isInternal": false + }, + { + "x": 384.505, + "y": 1037.238, + "index": 4, + "body": { + "#": 7401 + }, + "isInternal": false + }, + { + "x": 378.595, + "y": 1037.238, + "index": 5, + "body": { + "#": 7401 + }, + "isInternal": false + }, + { + "x": 372.976, + "y": 1035.412, + "index": 6, + "body": { + "#": 7401 + }, + "isInternal": false + }, + { + "x": 368.195, + "y": 1031.939, + "index": 7, + "body": { + "#": 7401 + }, + "isInternal": false + }, + { + "x": 364.722, + "y": 1027.158, + "index": 8, + "body": { + "#": 7401 + }, + "isInternal": false + }, + { + "x": 362.896, + "y": 1021.539, + "index": 9, + "body": { + "#": 7401 + }, + "isInternal": false + }, + { + "x": 362.896, + "y": 1015.629, + "index": 10, + "body": { + "#": 7401 + }, + "isInternal": false + }, + { + "x": 364.722, + "y": 1010.01, + "index": 11, + "body": { + "#": 7401 + }, + "isInternal": false + }, + { + "x": 368.195, + "y": 1005.229, + "index": 12, + "body": { + "#": 7401 + }, + "isInternal": false + }, + { + "x": 372.976, + "y": 1001.756, + "index": 13, + "body": { + "#": 7401 + }, + "isInternal": false + }, + { + "x": 378.595, + "y": 999.93, + "index": 14, + "body": { + "#": 7401 + }, + "isInternal": false + }, + { + "x": 384.505, + "y": 999.93, + "index": 15, + "body": { + "#": 7401 + }, + "isInternal": false + }, + { + "x": 390.124, + "y": 1001.756, + "index": 16, + "body": { + "#": 7401 + }, + "isInternal": false + }, + { + "x": 394.905, + "y": 1005.229, + "index": 17, + "body": { + "#": 7401 + }, + "isInternal": false + }, + { + "x": 398.378, + "y": 1010.01, + "index": 18, + "body": { + "#": 7401 + }, + "isInternal": false + }, + { + "x": 400.204, + "y": 1015.629, + "index": 19, + "body": { + "#": 7401 + }, + "isInternal": false + }, + { + "x": 381.55, + "y": 1018.584 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7431 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7433 + }, + "max": { + "#": 7434 + } + }, + { + "x": 362.896, + "y": 999.93 + }, + { + "x": 400.204, + "y": 1037.238 + }, + { + "x": 381.55, + "y": 1018.584 + }, + [ + { + "#": 7437 + }, + { + "#": 7438 + }, + { + "#": 7439 + }, + { + "#": 7440 + }, + { + "#": 7441 + }, + { + "#": 7442 + }, + { + "#": 7443 + }, + { + "#": 7444 + }, + { + "#": 7445 + }, + { + "#": 7446 + } + ], + { + "x": -0.95104, + "y": -0.30906 + }, + { + "x": -0.80907, + "y": -0.58772 + }, + { + "x": -0.58772, + "y": -0.80907 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.58772, + "y": -0.80907 + }, + { + "x": 0.80907, + "y": -0.58772 + }, + { + "x": 0.95104, + "y": -0.30906 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 151, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7448 + }, + "angle": 0, + "vertices": { + "#": 7449 + }, + "position": { + "#": 7476 + }, + "force": { + "#": 7477 + }, + "torque": 0, + "positionImpulse": { + "#": 7478 + }, + "constraintImpulse": { + "#": 7479 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7480 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7481 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7482 + }, + "circleRadius": 29.08828, + "bounds": { + "#": 7484 + }, + "positionPrev": { + "#": 7487 + }, + "anglePrev": 0, + "axes": { + "#": 7488 + }, + "area": 2632.36676, + "mass": 2.63237, + "inverseMass": 0.37989, + "inertia": 4411.44843, + "inverseInertia": 0.00023, + "parent": { + "#": 7447 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7447 + } + ], + [ + { + "#": 7450 + }, + { + "#": 7451 + }, + { + "#": 7452 + }, + { + "#": 7453 + }, + { + "#": 7454 + }, + { + "#": 7455 + }, + { + "#": 7456 + }, + { + "#": 7457 + }, + { + "#": 7458 + }, + { + "#": 7459 + }, + { + "#": 7460 + }, + { + "#": 7461 + }, + { + "#": 7462 + }, + { + "#": 7463 + }, + { + "#": 7464 + }, + { + "#": 7465 + }, + { + "#": 7466 + }, + { + "#": 7467 + }, + { + "#": 7468 + }, + { + "#": 7469 + }, + { + "#": 7470 + }, + { + "#": 7471 + }, + { + "#": 7472 + }, + { + "#": 7473 + }, + { + "#": 7474 + }, + { + "#": 7475 + } + ], + { + "x": 467.956, + "y": 1032.524, + "index": 0, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 466.278, + "y": 1039.333, + "index": 1, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 463.019, + "y": 1045.542, + "index": 2, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 458.369, + "y": 1050.791, + "index": 3, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 452.598, + "y": 1054.774, + "index": 4, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 446.041, + "y": 1057.261, + "index": 5, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 439.08, + "y": 1058.106, + "index": 6, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 432.119, + "y": 1057.261, + "index": 7, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 425.562, + "y": 1054.774, + "index": 8, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 419.791, + "y": 1050.791, + "index": 9, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 415.141, + "y": 1045.542, + "index": 10, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 411.882, + "y": 1039.333, + "index": 11, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 410.204, + "y": 1032.524, + "index": 12, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 410.204, + "y": 1025.512, + "index": 13, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 411.882, + "y": 1018.703, + "index": 14, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 415.141, + "y": 1012.494, + "index": 15, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 419.791, + "y": 1007.245, + "index": 16, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 425.562, + "y": 1003.262, + "index": 17, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 432.119, + "y": 1000.775, + "index": 18, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 439.08, + "y": 999.93, + "index": 19, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 446.041, + "y": 1000.775, + "index": 20, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 452.598, + "y": 1003.262, + "index": 21, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 458.369, + "y": 1007.245, + "index": 22, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 463.019, + "y": 1012.494, + "index": 23, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 466.278, + "y": 1018.703, + "index": 24, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 467.956, + "y": 1025.512, + "index": 25, + "body": { + "#": 7447 + }, + "isInternal": false + }, + { + "x": 439.08, + "y": 1029.018 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7483 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7485 + }, + "max": { + "#": 7486 + } + }, + { + "x": 410.204, + "y": 999.93 + }, + { + "x": 467.956, + "y": 1058.106 + }, + { + "x": 439.08, + "y": 1029.018 + }, + [ + { + "#": 7489 + }, + { + "#": 7490 + }, + { + "#": 7491 + }, + { + "#": 7492 + }, + { + "#": 7493 + }, + { + "#": 7494 + }, + { + "#": 7495 + }, + { + "#": 7496 + }, + { + "#": 7497 + }, + { + "#": 7498 + }, + { + "#": 7499 + }, + { + "#": 7500 + }, + { + "#": 7501 + } + ], + { + "x": -0.97095, + "y": -0.23928 + }, + { + "x": -0.88544, + "y": -0.46475 + }, + { + "x": -0.74853, + "y": -0.66311 + }, + { + "x": -0.56802, + "y": -0.82301 + }, + { + "x": -0.35464, + "y": -0.935 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35464, + "y": -0.935 + }, + { + "x": 0.56802, + "y": -0.82301 + }, + { + "x": 0.74853, + "y": -0.66311 + }, + { + "x": 0.88544, + "y": -0.46475 + }, + { + "x": 0.97095, + "y": -0.23928 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 152, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7503 + }, + "angle": 0, + "vertices": { + "#": 7504 + }, + "position": { + "#": 7527 + }, + "force": { + "#": 7528 + }, + "torque": 0, + "positionImpulse": { + "#": 7529 + }, + "constraintImpulse": { + "#": 7530 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7531 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7532 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7533 + }, + "circleRadius": 20.2003, + "bounds": { + "#": 7535 + }, + "positionPrev": { + "#": 7538 + }, + "anglePrev": 0, + "axes": { + "#": 7539 + }, + "area": 1264.5827, + "mass": 1.26458, + "inverseMass": 0.79077, + "inertia": 1018.10087, + "inverseInertia": 0.00098, + "parent": { + "#": 7502 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7502 + } + ], + [ + { + "#": 7505 + }, + { + "#": 7506 + }, + { + "#": 7507 + }, + { + "#": 7508 + }, + { + "#": 7509 + }, + { + "#": 7510 + }, + { + "#": 7511 + }, + { + "#": 7512 + }, + { + "#": 7513 + }, + { + "#": 7514 + }, + { + "#": 7515 + }, + { + "#": 7516 + }, + { + "#": 7517 + }, + { + "#": 7518 + }, + { + "#": 7519 + }, + { + "#": 7520 + }, + { + "#": 7521 + }, + { + "#": 7522 + }, + { + "#": 7523 + }, + { + "#": 7524 + }, + { + "#": 7525 + }, + { + "#": 7526 + } + ], + { + "x": 517.946, + "y": 1023.005, + "index": 0, + "body": { + "#": 7502 + }, + "isInternal": false + }, + { + "x": 516.326, + "y": 1028.522, + "index": 1, + "body": { + "#": 7502 + }, + "isInternal": false + }, + { + "x": 513.217, + "y": 1033.358, + "index": 2, + "body": { + "#": 7502 + }, + "isInternal": false + }, + { + "x": 508.872, + "y": 1037.124, + "index": 3, + "body": { + "#": 7502 + }, + "isInternal": false + }, + { + "x": 503.642, + "y": 1039.512, + "index": 4, + "body": { + "#": 7502 + }, + "isInternal": false + }, + { + "x": 497.951, + "y": 1040.33, + "index": 5, + "body": { + "#": 7502 + }, + "isInternal": false + }, + { + "x": 492.26, + "y": 1039.512, + "index": 6, + "body": { + "#": 7502 + }, + "isInternal": false + }, + { + "x": 487.03, + "y": 1037.124, + "index": 7, + "body": { + "#": 7502 + }, + "isInternal": false + }, + { + "x": 482.685, + "y": 1033.358, + "index": 8, + "body": { + "#": 7502 + }, + "isInternal": false + }, + { + "x": 479.576, + "y": 1028.522, + "index": 9, + "body": { + "#": 7502 + }, + "isInternal": false + }, + { + "x": 477.956, + "y": 1023.005, + "index": 10, + "body": { + "#": 7502 + }, + "isInternal": false + }, + { + "x": 477.956, + "y": 1017.255, + "index": 11, + "body": { + "#": 7502 + }, + "isInternal": false + }, + { + "x": 479.576, + "y": 1011.738, + "index": 12, + "body": { + "#": 7502 + }, + "isInternal": false + }, + { + "x": 482.685, + "y": 1006.902, + "index": 13, + "body": { + "#": 7502 + }, + "isInternal": false + }, + { + "x": 487.03, + "y": 1003.136, + "index": 14, + "body": { + "#": 7502 + }, + "isInternal": false + }, + { + "x": 492.26, + "y": 1000.748, + "index": 15, + "body": { + "#": 7502 + }, + "isInternal": false + }, + { + "x": 497.951, + "y": 999.93, + "index": 16, + "body": { + "#": 7502 + }, + "isInternal": false + }, + { + "x": 503.642, + "y": 1000.748, + "index": 17, + "body": { + "#": 7502 + }, + "isInternal": false + }, + { + "x": 508.872, + "y": 1003.136, + "index": 18, + "body": { + "#": 7502 + }, + "isInternal": false + }, + { + "x": 513.217, + "y": 1006.902, + "index": 19, + "body": { + "#": 7502 + }, + "isInternal": false + }, + { + "x": 516.326, + "y": 1011.738, + "index": 20, + "body": { + "#": 7502 + }, + "isInternal": false + }, + { + "x": 517.946, + "y": 1017.255, + "index": 21, + "body": { + "#": 7502 + }, + "isInternal": false + }, + { + "x": 497.951, + "y": 1020.13 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7534 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7536 + }, + "max": { + "#": 7537 + } + }, + { + "x": 477.956, + "y": 999.93 + }, + { + "x": 517.946, + "y": 1040.33 + }, + { + "x": 497.951, + "y": 1020.13 + }, + [ + { + "#": 7540 + }, + { + "#": 7541 + }, + { + "#": 7542 + }, + { + "#": 7543 + }, + { + "#": 7544 + }, + { + "#": 7545 + }, + { + "#": 7546 + }, + { + "#": 7547 + }, + { + "#": 7548 + }, + { + "#": 7549 + }, + { + "#": 7550 + } + ], + { + "x": -0.95949, + "y": -0.28174 + }, + { + "x": -0.84117, + "y": -0.54078 + }, + { + "x": -0.65496, + "y": -0.75566 + }, + { + "x": -0.41535, + "y": -0.90966 + }, + { + "x": -0.14227, + "y": -0.98983 + }, + { + "x": 0.14227, + "y": -0.98983 + }, + { + "x": 0.41535, + "y": -0.90966 + }, + { + "x": 0.65496, + "y": -0.75566 + }, + { + "x": 0.84117, + "y": -0.54078 + }, + { + "x": 0.95949, + "y": -0.28174 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 153, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7552 + }, + "angle": 0, + "vertices": { + "#": 7553 + }, + "position": { + "#": 7580 + }, + "force": { + "#": 7581 + }, + "torque": 0, + "positionImpulse": { + "#": 7582 + }, + "constraintImpulse": { + "#": 7583 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7584 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7585 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7586 + }, + "circleRadius": 28.5191, + "bounds": { + "#": 7588 + }, + "positionPrev": { + "#": 7591 + }, + "anglePrev": 0, + "axes": { + "#": 7592 + }, + "area": 2530.3746, + "mass": 2.53037, + "inverseMass": 0.3952, + "inertia": 4076.22406, + "inverseInertia": 0.00025, + "parent": { + "#": 7551 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7551 + } + ], + [ + { + "#": 7554 + }, + { + "#": 7555 + }, + { + "#": 7556 + }, + { + "#": 7557 + }, + { + "#": 7558 + }, + { + "#": 7559 + }, + { + "#": 7560 + }, + { + "#": 7561 + }, + { + "#": 7562 + }, + { + "#": 7563 + }, + { + "#": 7564 + }, + { + "#": 7565 + }, + { + "#": 7566 + }, + { + "#": 7567 + }, + { + "#": 7568 + }, + { + "#": 7569 + }, + { + "#": 7570 + }, + { + "#": 7571 + }, + { + "#": 7572 + }, + { + "#": 7573 + }, + { + "#": 7574 + }, + { + "#": 7575 + }, + { + "#": 7576 + }, + { + "#": 7577 + }, + { + "#": 7578 + }, + { + "#": 7579 + } + ], + { + "x": 584.568, + "y": 1031.887, + "index": 0, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 582.923, + "y": 1038.562, + "index": 1, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 579.728, + "y": 1044.65, + "index": 2, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 575.169, + "y": 1049.796, + "index": 3, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 569.51, + "y": 1053.701, + "index": 4, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 563.082, + "y": 1056.139, + "index": 5, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 556.257, + "y": 1056.968, + "index": 6, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 549.432, + "y": 1056.139, + "index": 7, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 543.004, + "y": 1053.701, + "index": 8, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 537.345, + "y": 1049.796, + "index": 9, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 532.786, + "y": 1044.65, + "index": 10, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 529.591, + "y": 1038.562, + "index": 11, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 527.946, + "y": 1031.887, + "index": 12, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 527.946, + "y": 1025.011, + "index": 13, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 529.591, + "y": 1018.336, + "index": 14, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 532.786, + "y": 1012.248, + "index": 15, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 537.345, + "y": 1007.102, + "index": 16, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 543.004, + "y": 1003.197, + "index": 17, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 549.432, + "y": 1000.759, + "index": 18, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 556.257, + "y": 999.93, + "index": 19, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 563.082, + "y": 1000.759, + "index": 20, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 569.51, + "y": 1003.197, + "index": 21, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 575.169, + "y": 1007.102, + "index": 22, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 579.728, + "y": 1012.248, + "index": 23, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 582.923, + "y": 1018.336, + "index": 24, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 584.568, + "y": 1025.011, + "index": 25, + "body": { + "#": 7551 + }, + "isInternal": false + }, + { + "x": 556.257, + "y": 1028.449 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7587 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7589 + }, + "max": { + "#": 7590 + } + }, + { + "x": 527.946, + "y": 999.93 + }, + { + "x": 584.568, + "y": 1056.968 + }, + { + "x": 556.257, + "y": 1028.449 + }, + [ + { + "#": 7593 + }, + { + "#": 7594 + }, + { + "#": 7595 + }, + { + "#": 7596 + }, + { + "#": 7597 + }, + { + "#": 7598 + }, + { + "#": 7599 + }, + { + "#": 7600 + }, + { + "#": 7601 + }, + { + "#": 7602 + }, + { + "#": 7603 + }, + { + "#": 7604 + }, + { + "#": 7605 + } + ], + { + "x": -0.97095, + "y": -0.23928 + }, + { + "x": -0.88547, + "y": -0.4647 + }, + { + "x": -0.74851, + "y": -0.66313 + }, + { + "x": -0.56795, + "y": -0.82306 + }, + { + "x": -0.35463, + "y": -0.93501 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.35463, + "y": -0.93501 + }, + { + "x": 0.56795, + "y": -0.82306 + }, + { + "x": 0.74851, + "y": -0.66313 + }, + { + "x": 0.88547, + "y": -0.4647 + }, + { + "x": 0.97095, + "y": -0.23928 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 154, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7607 + }, + "angle": 0, + "vertices": { + "#": 7608 + }, + "position": { + "#": 7635 + }, + "force": { + "#": 7636 + }, + "torque": 0, + "positionImpulse": { + "#": 7637 + }, + "constraintImpulse": { + "#": 7638 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7639 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7640 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7641 + }, + "circleRadius": 28.11876, + "bounds": { + "#": 7643 + }, + "positionPrev": { + "#": 7646 + }, + "anglePrev": 0, + "axes": { + "#": 7647 + }, + "area": 2459.82089, + "mass": 2.45982, + "inverseMass": 0.40653, + "inertia": 3852.08072, + "inverseInertia": 0.00026, + "parent": { + "#": 7606 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7606 + } + ], + [ + { + "#": 7609 + }, + { + "#": 7610 + }, + { + "#": 7611 + }, + { + "#": 7612 + }, + { + "#": 7613 + }, + { + "#": 7614 + }, + { + "#": 7615 + }, + { + "#": 7616 + }, + { + "#": 7617 + }, + { + "#": 7618 + }, + { + "#": 7619 + }, + { + "#": 7620 + }, + { + "#": 7621 + }, + { + "#": 7622 + }, + { + "#": 7623 + }, + { + "#": 7624 + }, + { + "#": 7625 + }, + { + "#": 7626 + }, + { + "#": 7627 + }, + { + "#": 7628 + }, + { + "#": 7629 + }, + { + "#": 7630 + }, + { + "#": 7631 + }, + { + "#": 7632 + }, + { + "#": 7633 + }, + { + "#": 7634 + } + ], + { + "x": 650.396, + "y": 1031.438, + "index": 0, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 648.773, + "y": 1038.02, + "index": 1, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 645.623, + "y": 1044.022, + "index": 2, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 641.128, + "y": 1049.096, + "index": 3, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 635.549, + "y": 1052.947, + "index": 4, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 629.211, + "y": 1055.351, + "index": 5, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 622.482, + "y": 1056.168, + "index": 6, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 615.753, + "y": 1055.351, + "index": 7, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 609.415, + "y": 1052.947, + "index": 8, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 603.836, + "y": 1049.096, + "index": 9, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 599.341, + "y": 1044.022, + "index": 10, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 596.191, + "y": 1038.02, + "index": 11, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 594.568, + "y": 1031.438, + "index": 12, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 594.568, + "y": 1024.66, + "index": 13, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 596.191, + "y": 1018.078, + "index": 14, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 599.341, + "y": 1012.076, + "index": 15, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 603.836, + "y": 1007.002, + "index": 16, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 609.415, + "y": 1003.151, + "index": 17, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 615.753, + "y": 1000.747, + "index": 18, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 622.482, + "y": 999.93, + "index": 19, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 629.211, + "y": 1000.747, + "index": 20, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 635.549, + "y": 1003.151, + "index": 21, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 641.128, + "y": 1007.002, + "index": 22, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 645.623, + "y": 1012.076, + "index": 23, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 648.773, + "y": 1018.078, + "index": 24, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 650.396, + "y": 1024.66, + "index": 25, + "body": { + "#": 7606 + }, + "isInternal": false + }, + { + "x": 622.482, + "y": 1028.049 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7642 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7644 + }, + "max": { + "#": 7645 + } + }, + { + "x": 594.568, + "y": 999.93 + }, + { + "x": 650.396, + "y": 1056.168 + }, + { + "x": 622.482, + "y": 1028.049 + }, + [ + { + "#": 7648 + }, + { + "#": 7649 + }, + { + "#": 7650 + }, + { + "#": 7651 + }, + { + "#": 7652 + }, + { + "#": 7653 + }, + { + "#": 7654 + }, + { + "#": 7655 + }, + { + "#": 7656 + }, + { + "#": 7657 + }, + { + "#": 7658 + }, + { + "#": 7659 + }, + { + "#": 7660 + } + ], + { + "x": -0.97092, + "y": -0.23941 + }, + { + "x": -0.88546, + "y": -0.46471 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.35465, + "y": -0.935 + }, + { + "x": -0.12053, + "y": -0.99271 + }, + { + "x": 0.12053, + "y": -0.99271 + }, + { + "x": 0.35465, + "y": -0.935 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88546, + "y": -0.46471 + }, + { + "x": 0.97092, + "y": -0.23941 + }, + { + "x": 1, + "y": 0 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 7665 + }, + "max": { + "#": 7666 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/ballPool/ballPool-10.json b/test/node/refs/ballPool/ballPool-10.json new file mode 100644 index 00000000..7373529f --- /dev/null +++ b/test/node/refs/ballPool/ballPool-10.json @@ -0,0 +1,76828 @@ +[ + { + "id": 46, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 167 + }, + "composites": { + "#": 168 + }, + "label": "World", + "gravity": { + "#": 7820 + }, + "bounds": { + "#": 7821 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + }, + { + "#": 94 + }, + { + "#": 117 + }, + { + "#": 144 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + { + "id": 155, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 95 + }, + "angle": -0.07329, + "vertices": { + "#": 96 + }, + "position": { + "#": 100 + }, + "force": { + "#": 101 + }, + "torque": 0, + "positionImpulse": { + "#": 102 + }, + "constraintImpulse": { + "#": 103 + }, + "totalContacts": 0, + "speed": 0.93044, + "angularSpeed": 0.01237, + "velocity": { + "#": 104 + }, + "angularVelocity": -0.01398, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 105 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 106 + }, + "bounds": { + "#": 108 + }, + "positionPrev": { + "#": 111 + }, + "anglePrev": -0.05946, + "axes": { + "#": 112 + }, + "area": 4676.58, + "mass": 4.67658, + "inverseMass": 0.21383, + "inertia": 16835.84215, + "inverseInertia": 0.00006, + "parent": { + "#": 94 + }, + "sleepCounter": 0, + "region": { + "#": 116 + } + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + } + ], + { + "x": 226.91983, + "y": 580.03054, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 133.35674, + "y": 534.79784, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 219.31049, + "y": 476.38549, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 193.19569, + "y": 530.40462 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.73615, + "y": 0.45827 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 107 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 109 + }, + "max": { + "#": 110 + } + }, + { + "x": 132.74706, + "y": 476.38549 + }, + { + "x": 226.91983, + "y": 580.73339 + }, + { + "x": 193.91358, + "y": 529.93901 + }, + [ + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": -0.43525, + "y": 0.90031 + }, + { + "x": -0.56207, + "y": -0.82709 + }, + { + "x": 0.99732, + "y": -0.07322 + }, + { + "id": "2,4,9,12", + "startCol": 2, + "endCol": 4, + "startRow": 9, + "endRow": 12 + }, + { + "id": 156, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 118 + }, + "angle": 0.01953, + "vertices": { + "#": 119 + }, + "position": { + "#": 125 + }, + "force": { + "#": 126 + }, + "torque": 0, + "positionImpulse": { + "#": 127 + }, + "constraintImpulse": { + "#": 128 + }, + "totalContacts": 0, + "speed": 0.46407, + "angularSpeed": 0.00341, + "velocity": { + "#": 129 + }, + "angularVelocity": 0.00198, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 130 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 131 + }, + "bounds": { + "#": 133 + }, + "positionPrev": { + "#": 136 + }, + "anglePrev": 0.01761, + "axes": { + "#": 137 + }, + "area": 8559.45598, + "mass": 8.55946, + "inverseMass": 0.11683, + "inertia": 47433.13848, + "inverseInertia": 0.00002, + "parent": { + "#": 117 + }, + "sleepCounter": 0, + "region": { + "#": 143 + } + }, + [ + { + "#": 117 + } + ], + [ + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + } + ], + { + "x": 444.3547, + "y": 559.98358, + "index": 0, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 376.85975, + "y": 580.46509, + "index": 1, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 336.52329, + "y": 522.60315, + "index": 2, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 379.089, + "y": 466.36087, + "index": 3, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 445.73246, + "y": 489.46304, + "index": 4, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 396.51186, + "y": 523.77515 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.24579, + "y": 0.0734 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 132 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 134 + }, + "max": { + "#": 135 + } + }, + { + "x": 336.52329, + "y": 466.36087 + }, + { + "x": 445.75369, + "y": 580.92867 + }, + { + "x": 396.26993, + "y": 523.69665 + }, + [ + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + } + ], + { + "x": 0.29038, + "y": 0.95691 + }, + { + "x": -0.82034, + "y": 0.57187 + }, + { + "x": -0.79738, + "y": -0.60348 + }, + { + "x": 0.32753, + "y": -0.94484 + }, + { + "x": 0.99981, + "y": 0.01953 + }, + { + "id": "7,9,9,12", + "startCol": 7, + "endCol": 9, + "startRow": 9, + "endRow": 12 + }, + { + "id": 157, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 145 + }, + "angle": -0.00042, + "vertices": { + "#": 146 + }, + "position": { + "#": 151 + }, + "force": { + "#": 152 + }, + "torque": 0, + "positionImpulse": { + "#": 153 + }, + "constraintImpulse": { + "#": 154 + }, + "totalContacts": 0, + "speed": 0.27756, + "angularSpeed": 0.00009, + "velocity": { + "#": 155 + }, + "angularVelocity": 0.00003, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 156 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 157 + }, + "bounds": { + "#": 159 + }, + "positionPrev": { + "#": 162 + }, + "anglePrev": -0.0004, + "axes": { + "#": 163 + }, + "area": 6400, + "mass": 6.4, + "inverseMass": 0.15625, + "inertia": 27306.66667, + "inverseInertia": 0.00004, + "parent": { + "#": 144 + }, + "sleepCounter": 0, + "region": { + "#": 166 + } + }, + [ + { + "#": 144 + } + ], + [ + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + } + ], + { + "x": 568.78923, + "y": 499.81327, + "index": 0, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 648.78923, + "y": 499.7793, + "index": 1, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 648.8232, + "y": 579.77929, + "index": 2, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 568.8232, + "y": 579.81326, + "index": 3, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 608.80621, + "y": 539.79628 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00563, + "y": 0.00014 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 158 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 160 + }, + "max": { + "#": 161 + } + }, + { + "x": 568.78923, + "y": 499.7793 + }, + { + "x": 648.82553, + "y": 580.09081 + }, + { + "x": 608.8071, + "y": 539.79617 + }, + [ + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": 0.00042, + "y": 1 + }, + { + "x": -1, + "y": 0.00042 + }, + { + "id": "11,13,10,12", + "startCol": 11, + "endCol": 13, + "startRow": 10, + "endRow": 12 + }, + [], + [ + { + "#": 169 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 170 + }, + "constraints": { + "#": 7818 + }, + "composites": { + "#": 7819 + }, + "label": "Stack" + }, + [ + { + "#": 171 + }, + { + "#": 218 + }, + { + "#": 271 + }, + { + "#": 327 + }, + { + "#": 377 + }, + { + "#": 433 + }, + { + "#": 477 + }, + { + "#": 533 + }, + { + "#": 586 + }, + { + "#": 639 + }, + { + "#": 689 + }, + { + "#": 745 + }, + { + "#": 792 + }, + { + "#": 848 + }, + { + "#": 904 + }, + { + "#": 960 + }, + { + "#": 1010 + }, + { + "#": 1054 + }, + { + "#": 1110 + }, + { + "#": 1160 + }, + { + "#": 1216 + }, + { + "#": 1272 + }, + { + "#": 1316 + }, + { + "#": 1372 + }, + { + "#": 1428 + }, + { + "#": 1469 + }, + { + "#": 1522 + }, + { + "#": 1569 + }, + { + "#": 1619 + }, + { + "#": 1675 + }, + { + "#": 1731 + }, + { + "#": 1781 + }, + { + "#": 1828 + }, + { + "#": 1875 + }, + { + "#": 1931 + }, + { + "#": 1987 + }, + { + "#": 2040 + }, + { + "#": 2087 + }, + { + "#": 2143 + }, + { + "#": 2187 + }, + { + "#": 2243 + }, + { + "#": 2299 + }, + { + "#": 2349 + }, + { + "#": 2393 + }, + { + "#": 2437 + }, + { + "#": 2493 + }, + { + "#": 2534 + }, + { + "#": 2590 + }, + { + "#": 2637 + }, + { + "#": 2693 + }, + { + "#": 2746 + }, + { + "#": 2796 + }, + { + "#": 2849 + }, + { + "#": 2896 + }, + { + "#": 2952 + }, + { + "#": 3008 + }, + { + "#": 3064 + }, + { + "#": 3111 + }, + { + "#": 3167 + }, + { + "#": 3223 + }, + { + "#": 3273 + }, + { + "#": 3329 + }, + { + "#": 3379 + }, + { + "#": 3435 + }, + { + "#": 3485 + }, + { + "#": 3535 + }, + { + "#": 3579 + }, + { + "#": 3635 + }, + { + "#": 3682 + }, + { + "#": 3732 + }, + { + "#": 3776 + }, + { + "#": 3826 + }, + { + "#": 3879 + }, + { + "#": 3935 + }, + { + "#": 3979 + }, + { + "#": 4020 + }, + { + "#": 4073 + }, + { + "#": 4129 + }, + { + "#": 4176 + }, + { + "#": 4223 + }, + { + "#": 4273 + }, + { + "#": 4323 + }, + { + "#": 4373 + }, + { + "#": 4429 + }, + { + "#": 4485 + }, + { + "#": 4532 + }, + { + "#": 4588 + }, + { + "#": 4644 + }, + { + "#": 4691 + }, + { + "#": 4735 + }, + { + "#": 4779 + }, + { + "#": 4835 + }, + { + "#": 4879 + }, + { + "#": 4932 + }, + { + "#": 4988 + }, + { + "#": 5044 + }, + { + "#": 5100 + }, + { + "#": 5147 + }, + { + "#": 5203 + }, + { + "#": 5259 + }, + { + "#": 5300 + }, + { + "#": 5353 + }, + { + "#": 5397 + }, + { + "#": 5450 + }, + { + "#": 5506 + }, + { + "#": 5553 + }, + { + "#": 5600 + }, + { + "#": 5656 + }, + { + "#": 5703 + }, + { + "#": 5750 + }, + { + "#": 5806 + }, + { + "#": 5862 + }, + { + "#": 5906 + }, + { + "#": 5962 + }, + { + "#": 6018 + }, + { + "#": 6059 + }, + { + "#": 6106 + }, + { + "#": 6162 + }, + { + "#": 6212 + }, + { + "#": 6253 + }, + { + "#": 6297 + }, + { + "#": 6350 + }, + { + "#": 6406 + }, + { + "#": 6450 + }, + { + "#": 6506 + }, + { + "#": 6562 + }, + { + "#": 6606 + }, + { + "#": 6656 + }, + { + "#": 6703 + }, + { + "#": 6753 + }, + { + "#": 6809 + }, + { + "#": 6862 + }, + { + "#": 6912 + }, + { + "#": 6962 + }, + { + "#": 7006 + }, + { + "#": 7056 + }, + { + "#": 7106 + }, + { + "#": 7153 + }, + { + "#": 7209 + }, + { + "#": 7253 + }, + { + "#": 7300 + }, + { + "#": 7356 + }, + { + "#": 7397 + }, + { + "#": 7450 + }, + { + "#": 7506 + }, + { + "#": 7553 + }, + { + "#": 7600 + }, + { + "#": 7656 + }, + { + "#": 7706 + }, + { + "#": 7762 + } + ], + { + "id": 5, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 172 + }, + "angle": 0, + "vertices": { + "#": 173 + }, + "position": { + "#": 194 + }, + "force": { + "#": 195 + }, + "torque": 0, + "positionImpulse": { + "#": 196 + }, + "constraintImpulse": { + "#": 197 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 198 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 199 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 200 + }, + "circleRadius": 18.16982, + "bounds": { + "#": 202 + }, + "positionPrev": { + "#": 205 + }, + "anglePrev": 0, + "axes": { + "#": 206 + }, + "area": 1020.17227, + "mass": 1.02017, + "inverseMass": 0.98023, + "inertia": 662.59924, + "inverseInertia": 0.00151, + "parent": { + "#": 171 + }, + "sleepCounter": 0, + "region": { + "#": 217 + } + }, + [ + { + "#": 171 + } + ], + [ + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + } + ], + { + "x": 135.892, + "y": 88.52375, + "index": 0, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 134.135, + "y": 93.93075, + "index": 1, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 130.794, + "y": 98.52975, + "index": 2, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 126.195, + "y": 101.87075, + "index": 3, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 120.788, + "y": 103.62775, + "index": 4, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 115.104, + "y": 103.62775, + "index": 5, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 109.697, + "y": 101.87075, + "index": 6, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 105.098, + "y": 98.52975, + "index": 7, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 101.757, + "y": 93.93075, + "index": 8, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 100, + "y": 88.52375, + "index": 9, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 100, + "y": 82.83975, + "index": 10, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 101.757, + "y": 77.43275, + "index": 11, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 105.098, + "y": 72.83375, + "index": 12, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 109.697, + "y": 69.49275, + "index": 13, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 115.104, + "y": 67.73575, + "index": 14, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 120.788, + "y": 67.73575, + "index": 15, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 126.195, + "y": 69.49275, + "index": 16, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 130.794, + "y": 72.83375, + "index": 17, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 134.135, + "y": 77.43275, + "index": 18, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 135.892, + "y": 82.83975, + "index": 19, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 117.946, + "y": 85.68175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 201 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 203 + }, + "max": { + "#": 204 + } + }, + { + "x": 100, + "y": 67.73575 + }, + { + "x": 135.892, + "y": 103.62775 + }, + { + "x": 117.946, + "y": 82.77448 + }, + [ + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + } + ], + { + "x": -0.95105, + "y": -0.30904 + }, + { + "x": -0.80905, + "y": -0.58774 + }, + { + "x": -0.58774, + "y": -0.80905 + }, + { + "x": -0.30904, + "y": -0.95105 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30904, + "y": -0.95105 + }, + { + "x": 0.58774, + "y": -0.80905 + }, + { + "x": 0.80905, + "y": -0.58774 + }, + { + "x": 0.95105, + "y": -0.30904 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,2,1,2", + "startCol": 2, + "endCol": 2, + "startRow": 1, + "endRow": 2 + }, + { + "id": 6, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 219 + }, + "angle": 0, + "vertices": { + "#": 220 + }, + "position": { + "#": 245 + }, + "force": { + "#": 246 + }, + "torque": 0, + "positionImpulse": { + "#": 247 + }, + "constraintImpulse": { + "#": 248 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 249 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 250 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 251 + }, + "circleRadius": 23.20158, + "bounds": { + "#": 253 + }, + "positionPrev": { + "#": 256 + }, + "anglePrev": 0, + "axes": { + "#": 257 + }, + "area": 1671.87546, + "mass": 1.67188, + "inverseMass": 0.59813, + "inertia": 1779.50575, + "inverseInertia": 0.00056, + "parent": { + "#": 218 + }, + "sleepCounter": 0, + "region": { + "#": 270 + } + }, + [ + { + "#": 218 + } + ], + [ + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + } + ], + { + "x": 191.898, + "y": 93.76675, + "index": 0, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 190.33, + "y": 99.61775, + "index": 1, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 187.302, + "y": 104.86275, + "index": 2, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 183.019, + "y": 109.14575, + "index": 3, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 177.774, + "y": 112.17375, + "index": 4, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 171.923, + "y": 113.74175, + "index": 5, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 165.867, + "y": 113.74175, + "index": 6, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 160.016, + "y": 112.17375, + "index": 7, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 154.771, + "y": 109.14575, + "index": 8, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 150.488, + "y": 104.86275, + "index": 9, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 147.46, + "y": 99.61775, + "index": 10, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 145.892, + "y": 93.76675, + "index": 11, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 145.892, + "y": 87.71075, + "index": 12, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 147.46, + "y": 81.85975, + "index": 13, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 150.488, + "y": 76.61475, + "index": 14, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 154.771, + "y": 72.33175, + "index": 15, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 160.016, + "y": 69.30375, + "index": 16, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 165.867, + "y": 67.73575, + "index": 17, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 171.923, + "y": 67.73575, + "index": 18, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 177.774, + "y": 69.30375, + "index": 19, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 183.019, + "y": 72.33175, + "index": 20, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 187.302, + "y": 76.61475, + "index": 21, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 190.33, + "y": 81.85975, + "index": 22, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 191.898, + "y": 87.71075, + "index": 23, + "body": { + "#": 218 + }, + "isInternal": false + }, + { + "x": 168.895, + "y": 90.73875 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 252 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 254 + }, + "max": { + "#": 255 + } + }, + { + "x": 145.892, + "y": 67.73575 + }, + { + "x": 191.898, + "y": 113.74175 + }, + { + "x": 168.895, + "y": 87.83148 + }, + [ + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + } + ], + { + "x": -0.96592, + "y": -0.25885 + }, + { + "x": -0.86604, + "y": -0.49997 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.49997, + "y": -0.86604 + }, + { + "x": -0.25885, + "y": -0.96592 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25885, + "y": -0.96592 + }, + { + "x": 0.49997, + "y": -0.86604 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86604, + "y": -0.49997 + }, + { + "x": 0.96592, + "y": -0.25885 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,3,1,2", + "startCol": 3, + "endCol": 3, + "startRow": 1, + "endRow": 2 + }, + { + "id": 7, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 272 + }, + "angle": 0, + "vertices": { + "#": 273 + }, + "position": { + "#": 300 + }, + "force": { + "#": 301 + }, + "torque": 0, + "positionImpulse": { + "#": 302 + }, + "constraintImpulse": { + "#": 303 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 304 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 305 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 306 + }, + "circleRadius": 27.29199, + "bounds": { + "#": 308 + }, + "positionPrev": { + "#": 311 + }, + "anglePrev": 0, + "axes": { + "#": 312 + }, + "area": 2317.3078, + "mass": 2.31731, + "inverseMass": 0.43154, + "inertia": 3418.65958, + "inverseInertia": 0.00029, + "parent": { + "#": 271 + }, + "sleepCounter": 0, + "region": { + "#": 326 + } + }, + [ + { + "#": 271 + } + ], + [ + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + } + ], + { + "x": 256.084, + "y": 98.31775, + "index": 0, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 254.509, + "y": 104.70575, + "index": 1, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 251.452, + "y": 110.53175, + "index": 2, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 247.089, + "y": 115.45575, + "index": 3, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 241.674, + "y": 119.19375, + "index": 4, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 235.522, + "y": 121.52675, + "index": 5, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 228.991, + "y": 122.31975, + "index": 6, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 222.46, + "y": 121.52675, + "index": 7, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 216.308, + "y": 119.19375, + "index": 8, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 210.893, + "y": 115.45575, + "index": 9, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 206.53, + "y": 110.53175, + "index": 10, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 203.473, + "y": 104.70575, + "index": 11, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 201.898, + "y": 98.31775, + "index": 12, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 201.898, + "y": 91.73775, + "index": 13, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 203.473, + "y": 85.34975, + "index": 14, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 206.53, + "y": 79.52375, + "index": 15, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 210.893, + "y": 74.59975, + "index": 16, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 216.308, + "y": 70.86175, + "index": 17, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 222.46, + "y": 68.52875, + "index": 18, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 228.991, + "y": 67.73575, + "index": 19, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 235.522, + "y": 68.52875, + "index": 20, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 241.674, + "y": 70.86175, + "index": 21, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 247.089, + "y": 74.59975, + "index": 22, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 251.452, + "y": 79.52375, + "index": 23, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 254.509, + "y": 85.34975, + "index": 24, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 256.084, + "y": 91.73775, + "index": 25, + "body": { + "#": 271 + }, + "isInternal": false + }, + { + "x": 228.991, + "y": 95.02775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 307 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 309 + }, + "max": { + "#": 310 + } + }, + { + "x": 201.898, + "y": 67.73575 + }, + { + "x": 256.084, + "y": 122.31975 + }, + { + "x": 228.991, + "y": 92.12048 + }, + [ + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + } + ], + { + "x": -0.97092, + "y": -0.23939 + }, + { + "x": -0.8855, + "y": -0.46464 + }, + { + "x": -0.74846, + "y": -0.66318 + }, + { + "x": -0.5681, + "y": -0.82296 + }, + { + "x": -0.35459, + "y": -0.93502 + }, + { + "x": -0.12054, + "y": -0.99271 + }, + { + "x": 0.12054, + "y": -0.99271 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.5681, + "y": -0.82296 + }, + { + "x": 0.74846, + "y": -0.66318 + }, + { + "x": 0.8855, + "y": -0.46464 + }, + { + "x": 0.97092, + "y": -0.23939 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,1,2", + "startCol": 4, + "endCol": 5, + "startRow": 1, + "endRow": 2 + }, + { + "id": 8, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 328 + }, + "angle": 0, + "vertices": { + "#": 329 + }, + "position": { + "#": 352 + }, + "force": { + "#": 353 + }, + "torque": 0, + "positionImpulse": { + "#": 354 + }, + "constraintImpulse": { + "#": 355 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 356 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 357 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 358 + }, + "circleRadius": 20.62622, + "bounds": { + "#": 360 + }, + "positionPrev": { + "#": 363 + }, + "anglePrev": 0, + "axes": { + "#": 364 + }, + "area": 1318.4404, + "mass": 1.31844, + "inverseMass": 0.75847, + "inertia": 1106.66797, + "inverseInertia": 0.0009, + "parent": { + "#": 327 + }, + "sleepCounter": 0, + "region": { + "#": 376 + } + }, + [ + { + "#": 327 + } + ], + [ + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + } + ], + { + "x": 306.916, + "y": 91.29675, + "index": 0, + "body": { + "#": 327 + }, + "isInternal": false + }, + { + "x": 305.262, + "y": 96.92975, + "index": 1, + "body": { + "#": 327 + }, + "isInternal": false + }, + { + "x": 302.088, + "y": 101.86875, + "index": 2, + "body": { + "#": 327 + }, + "isInternal": false + }, + { + "x": 297.651, + "y": 105.71375, + "index": 3, + "body": { + "#": 327 + }, + "isInternal": false + }, + { + "x": 292.311, + "y": 108.15275, + "index": 4, + "body": { + "#": 327 + }, + "isInternal": false + }, + { + "x": 286.5, + "y": 108.98775, + "index": 5, + "body": { + "#": 327 + }, + "isInternal": false + }, + { + "x": 280.689, + "y": 108.15275, + "index": 6, + "body": { + "#": 327 + }, + "isInternal": false + }, + { + "x": 275.349, + "y": 105.71375, + "index": 7, + "body": { + "#": 327 + }, + "isInternal": false + }, + { + "x": 270.912, + "y": 101.86875, + "index": 8, + "body": { + "#": 327 + }, + "isInternal": false + }, + { + "x": 267.738, + "y": 96.92975, + "index": 9, + "body": { + "#": 327 + }, + "isInternal": false + }, + { + "x": 266.084, + "y": 91.29675, + "index": 10, + "body": { + "#": 327 + }, + "isInternal": false + }, + { + "x": 266.084, + "y": 85.42675, + "index": 11, + "body": { + "#": 327 + }, + "isInternal": false + }, + { + "x": 267.738, + "y": 79.79375, + "index": 12, + "body": { + "#": 327 + }, + "isInternal": false + }, + { + "x": 270.912, + "y": 74.85475, + "index": 13, + "body": { + "#": 327 + }, + "isInternal": false + }, + { + "x": 275.349, + "y": 71.00975, + "index": 14, + "body": { + "#": 327 + }, + "isInternal": false + }, + { + "x": 280.689, + "y": 68.57075, + "index": 15, + "body": { + "#": 327 + }, + "isInternal": false + }, + { + "x": 286.5, + "y": 67.73575, + "index": 16, + "body": { + "#": 327 + }, + "isInternal": false + }, + { + "x": 292.311, + "y": 68.57075, + "index": 17, + "body": { + "#": 327 + }, + "isInternal": false + }, + { + "x": 297.651, + "y": 71.00975, + "index": 18, + "body": { + "#": 327 + }, + "isInternal": false + }, + { + "x": 302.088, + "y": 74.85475, + "index": 19, + "body": { + "#": 327 + }, + "isInternal": false + }, + { + "x": 305.262, + "y": 79.79375, + "index": 20, + "body": { + "#": 327 + }, + "isInternal": false + }, + { + "x": 306.916, + "y": 85.42675, + "index": 21, + "body": { + "#": 327 + }, + "isInternal": false + }, + { + "x": 286.5, + "y": 88.36175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 359 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 361 + }, + "max": { + "#": 362 + } + }, + { + "x": 266.084, + "y": 67.73575 + }, + { + "x": 306.916, + "y": 108.98775 + }, + { + "x": 286.5, + "y": 85.45448 + }, + [ + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + } + ], + { + "x": -0.95949, + "y": -0.28173 + }, + { + "x": -0.84126, + "y": -0.54063 + }, + { + "x": -0.65489, + "y": -0.75572 + }, + { + "x": -0.41546, + "y": -0.90961 + }, + { + "x": -0.14223, + "y": -0.98983 + }, + { + "x": 0.14223, + "y": -0.98983 + }, + { + "x": 0.41546, + "y": -0.90961 + }, + { + "x": 0.65489, + "y": -0.75572 + }, + { + "x": 0.84126, + "y": -0.54063 + }, + { + "x": 0.95949, + "y": -0.28173 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,1,2", + "startCol": 5, + "endCol": 6, + "startRow": 1, + "endRow": 2 + }, + { + "id": 9, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 378 + }, + "angle": 0, + "vertices": { + "#": 379 + }, + "position": { + "#": 406 + }, + "force": { + "#": 407 + }, + "torque": 0, + "positionImpulse": { + "#": 408 + }, + "constraintImpulse": { + "#": 409 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 410 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 411 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 412 + }, + "circleRadius": 29.50058, + "bounds": { + "#": 414 + }, + "positionPrev": { + "#": 417 + }, + "anglePrev": 0, + "axes": { + "#": 418 + }, + "area": 2707.5611, + "mass": 2.70756, + "inverseMass": 0.36934, + "inertia": 4667.07674, + "inverseInertia": 0.00021, + "parent": { + "#": 377 + }, + "sleepCounter": 0, + "region": { + "#": 432 + } + }, + [ + { + "#": 377 + } + ], + [ + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + } + ], + { + "x": 375.486, + "y": 100.79275, + "index": 0, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 373.785, + "y": 107.69775, + "index": 1, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 370.48, + "y": 113.99475, + "index": 2, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 365.764, + "y": 119.31875, + "index": 3, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 359.911, + "y": 123.35775, + "index": 4, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 353.261, + "y": 125.87975, + "index": 5, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 346.201, + "y": 126.73775, + "index": 6, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 339.141, + "y": 125.87975, + "index": 7, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 332.491, + "y": 123.35775, + "index": 8, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 326.638, + "y": 119.31875, + "index": 9, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 321.922, + "y": 113.99475, + "index": 10, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 318.617, + "y": 107.69775, + "index": 11, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 316.916, + "y": 100.79275, + "index": 12, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 316.916, + "y": 93.68075, + "index": 13, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 318.617, + "y": 86.77575, + "index": 14, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 321.922, + "y": 80.47875, + "index": 15, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 326.638, + "y": 75.15475, + "index": 16, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 332.491, + "y": 71.11575, + "index": 17, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 339.141, + "y": 68.59375, + "index": 18, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 346.201, + "y": 67.73575, + "index": 19, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 353.261, + "y": 68.59375, + "index": 20, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 359.911, + "y": 71.11575, + "index": 21, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 365.764, + "y": 75.15475, + "index": 22, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 370.48, + "y": 80.47875, + "index": 23, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 373.785, + "y": 86.77575, + "index": 24, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 375.486, + "y": 93.68075, + "index": 25, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 346.201, + "y": 97.23675 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 413 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 415 + }, + "max": { + "#": 416 + } + }, + { + "x": 316.916, + "y": 67.73575 + }, + { + "x": 375.486, + "y": 126.73775 + }, + { + "x": 346.201, + "y": 94.32948 + }, + [ + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + } + ], + { + "x": -0.97097, + "y": -0.23919 + }, + { + "x": -0.88545, + "y": -0.46473 + }, + { + "x": -0.74856, + "y": -0.66307 + }, + { + "x": -0.56797, + "y": -0.82305 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12064, + "y": -0.9927 + }, + { + "x": 0.12064, + "y": -0.9927 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56797, + "y": -0.82305 + }, + { + "x": 0.74856, + "y": -0.66307 + }, + { + "x": 0.88545, + "y": -0.46473 + }, + { + "x": 0.97097, + "y": -0.23919 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,1,2", + "startCol": 6, + "endCol": 7, + "startRow": 1, + "endRow": 2 + }, + { + "id": 10, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 434 + }, + "angle": 0, + "vertices": { + "#": 435 + }, + "position": { + "#": 454 + }, + "force": { + "#": 455 + }, + "torque": 0, + "positionImpulse": { + "#": 456 + }, + "constraintImpulse": { + "#": 457 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 458 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 459 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 460 + }, + "circleRadius": 17.98913, + "bounds": { + "#": 462 + }, + "positionPrev": { + "#": 465 + }, + "anglePrev": 0, + "axes": { + "#": 466 + }, + "area": 996.11954, + "mass": 0.99612, + "inverseMass": 1.0039, + "inertia": 631.74148, + "inverseInertia": 0.00158, + "parent": { + "#": 433 + }, + "sleepCounter": 0, + "region": { + "#": 476 + } + }, + [ + { + "#": 433 + } + ], + [ + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + } + ], + { + "x": 420.918, + "y": 88.84875, + "index": 0, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 418.781, + "y": 94.71975, + "index": 1, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 414.765, + "y": 99.50475, + "index": 2, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 409.355, + "y": 102.62875, + "index": 3, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 403.202, + "y": 103.71375, + "index": 4, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 397.049, + "y": 102.62875, + "index": 5, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 391.639, + "y": 99.50475, + "index": 6, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 387.623, + "y": 94.71975, + "index": 7, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 385.486, + "y": 88.84875, + "index": 8, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 385.486, + "y": 82.60075, + "index": 9, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 387.623, + "y": 76.72975, + "index": 10, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 391.639, + "y": 71.94475, + "index": 11, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 397.049, + "y": 68.82075, + "index": 12, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 403.202, + "y": 67.73575, + "index": 13, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 409.355, + "y": 68.82075, + "index": 14, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 414.765, + "y": 71.94475, + "index": 15, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 418.781, + "y": 76.72975, + "index": 16, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 420.918, + "y": 82.60075, + "index": 17, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 403.202, + "y": 85.72475 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 461 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 463 + }, + "max": { + "#": 464 + } + }, + { + "x": 385.486, + "y": 67.73575 + }, + { + "x": 420.918, + "y": 103.71375 + }, + { + "x": 403.202, + "y": 82.81748 + }, + [ + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + } + ], + { + "x": -0.93969, + "y": -0.34204 + }, + { + "x": -0.76597, + "y": -0.64287 + }, + { + "x": -0.50006, + "y": -0.86599 + }, + { + "x": -0.17366, + "y": -0.98481 + }, + { + "x": 0.17366, + "y": -0.98481 + }, + { + "x": 0.50006, + "y": -0.86599 + }, + { + "x": 0.76597, + "y": -0.64287 + }, + { + "x": 0.93969, + "y": -0.34204 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,1,2", + "startCol": 8, + "endCol": 8, + "startRow": 1, + "endRow": 2 + }, + { + "id": 11, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 478 + }, + "angle": 0, + "vertices": { + "#": 479 + }, + "position": { + "#": 506 + }, + "force": { + "#": 507 + }, + "torque": 0, + "positionImpulse": { + "#": 508 + }, + "constraintImpulse": { + "#": 509 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 510 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 511 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 512 + }, + "circleRadius": 24.6104, + "bounds": { + "#": 514 + }, + "positionPrev": { + "#": 517 + }, + "anglePrev": 0, + "axes": { + "#": 518 + }, + "area": 1884.28536, + "mass": 1.88429, + "inverseMass": 0.53071, + "inertia": 2260.38157, + "inverseInertia": 0.00044, + "parent": { + "#": 477 + }, + "sleepCounter": 0, + "region": { + "#": 532 + } + }, + [ + { + "#": 477 + } + ], + [ + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + }, + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + } + ], + { + "x": 479.78, + "y": 95.31175, + "index": 0, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 478.36, + "y": 101.07275, + "index": 1, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 475.603, + "y": 106.32575, + "index": 2, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 471.669, + "y": 110.76675, + "index": 3, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 466.786, + "y": 114.13675, + "index": 4, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 461.239, + "y": 116.24075, + "index": 5, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 455.349, + "y": 116.95575, + "index": 6, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 449.459, + "y": 116.24075, + "index": 7, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 443.912, + "y": 114.13675, + "index": 8, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 439.029, + "y": 110.76675, + "index": 9, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 435.095, + "y": 106.32575, + "index": 10, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 432.338, + "y": 101.07275, + "index": 11, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 430.918, + "y": 95.31175, + "index": 12, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 430.918, + "y": 89.37975, + "index": 13, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 432.338, + "y": 83.61875, + "index": 14, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 435.095, + "y": 78.36575, + "index": 15, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 439.029, + "y": 73.92475, + "index": 16, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 443.912, + "y": 70.55475, + "index": 17, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 449.459, + "y": 68.45075, + "index": 18, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 455.349, + "y": 67.73575, + "index": 19, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 461.239, + "y": 68.45075, + "index": 20, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 466.786, + "y": 70.55475, + "index": 21, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 471.669, + "y": 73.92475, + "index": 22, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 475.603, + "y": 78.36575, + "index": 23, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 478.36, + "y": 83.61875, + "index": 24, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 479.78, + "y": 89.37975, + "index": 25, + "body": { + "#": 477 + }, + "isInternal": false + }, + { + "x": 455.349, + "y": 92.34575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 513 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 515 + }, + "max": { + "#": 516 + } + }, + { + "x": 430.918, + "y": 67.73575 + }, + { + "x": 479.78, + "y": 116.95575 + }, + { + "x": 455.349, + "y": 89.43848 + }, + [ + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + } + ], + { + "x": -0.97094, + "y": -0.23932 + }, + { + "x": -0.88546, + "y": -0.46472 + }, + { + "x": -0.74854, + "y": -0.66309 + }, + { + "x": -0.56801, + "y": -0.82302 + }, + { + "x": -0.35465, + "y": -0.935 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35465, + "y": -0.935 + }, + { + "x": 0.56801, + "y": -0.82302 + }, + { + "x": 0.74854, + "y": -0.66309 + }, + { + "x": 0.88546, + "y": -0.46472 + }, + { + "x": 0.97094, + "y": -0.23932 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,1,2", + "startCol": 8, + "endCol": 9, + "startRow": 1, + "endRow": 2 + }, + { + "id": 12, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 534 + }, + "angle": 0, + "vertices": { + "#": 535 + }, + "position": { + "#": 560 + }, + "force": { + "#": 561 + }, + "torque": 0, + "positionImpulse": { + "#": 562 + }, + "constraintImpulse": { + "#": 563 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 564 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 565 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 566 + }, + "circleRadius": 23.99402, + "bounds": { + "#": 568 + }, + "positionPrev": { + "#": 571 + }, + "anglePrev": 0, + "axes": { + "#": 572 + }, + "area": 1788.11767, + "mass": 1.78812, + "inverseMass": 0.55925, + "inertia": 2035.55921, + "inverseInertia": 0.00049, + "parent": { + "#": 533 + }, + "sleepCounter": 0, + "region": { + "#": 585 + } + }, + [ + { + "#": 533 + } + ], + [ + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + } + ], + { + "x": 537.358, + "y": 94.65675, + "index": 0, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 535.737, + "y": 100.70675, + "index": 1, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 532.605, + "y": 106.13175, + "index": 2, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 528.176, + "y": 110.56075, + "index": 3, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 522.751, + "y": 113.69275, + "index": 4, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 516.701, + "y": 115.31375, + "index": 5, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 510.437, + "y": 115.31375, + "index": 6, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 504.387, + "y": 113.69275, + "index": 7, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 498.962, + "y": 110.56075, + "index": 8, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 494.533, + "y": 106.13175, + "index": 9, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 491.401, + "y": 100.70675, + "index": 10, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 489.78, + "y": 94.65675, + "index": 11, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 489.78, + "y": 88.39275, + "index": 12, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 491.401, + "y": 82.34275, + "index": 13, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 494.533, + "y": 76.91775, + "index": 14, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 498.962, + "y": 72.48875, + "index": 15, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 504.387, + "y": 69.35675, + "index": 16, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 510.437, + "y": 67.73575, + "index": 17, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 516.701, + "y": 67.73575, + "index": 18, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 522.751, + "y": 69.35675, + "index": 19, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 528.176, + "y": 72.48875, + "index": 20, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 532.605, + "y": 76.91775, + "index": 21, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 535.737, + "y": 82.34275, + "index": 22, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 537.358, + "y": 88.39275, + "index": 23, + "body": { + "#": 533 + }, + "isInternal": false + }, + { + "x": 513.569, + "y": 91.52475 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 567 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 569 + }, + "max": { + "#": 570 + } + }, + { + "x": 489.78, + "y": 67.73575 + }, + { + "x": 537.358, + "y": 115.31375 + }, + { + "x": 513.569, + "y": 88.61748 + }, + [ + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + } + ], + { + "x": -0.96593, + "y": -0.25881 + }, + { + "x": -0.86603, + "y": -0.49999 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": -0.25881, + "y": -0.96593 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25881, + "y": -0.96593 + }, + { + "x": 0.49999, + "y": -0.86603 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86603, + "y": -0.49999 + }, + { + "x": 0.96593, + "y": -0.25881 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,1,2", + "startCol": 10, + "endCol": 11, + "startRow": 1, + "endRow": 2 + }, + { + "id": 13, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 587 + }, + "angle": 0, + "vertices": { + "#": 588 + }, + "position": { + "#": 613 + }, + "force": { + "#": 614 + }, + "torque": 0, + "positionImpulse": { + "#": 615 + }, + "constraintImpulse": { + "#": 616 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 617 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 618 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 619 + }, + "circleRadius": 23.54739, + "bounds": { + "#": 621 + }, + "positionPrev": { + "#": 624 + }, + "anglePrev": 0, + "axes": { + "#": 625 + }, + "area": 1722.11497, + "mass": 1.72211, + "inverseMass": 0.58068, + "inertia": 1888.06018, + "inverseInertia": 0.00053, + "parent": { + "#": 586 + }, + "sleepCounter": 0, + "region": { + "#": 638 + } + }, + [ + { + "#": 586 + } + ], + [ + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + } + ], + { + "x": 594.05, + "y": 94.15575, + "index": 0, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 592.459, + "y": 100.09275, + "index": 1, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 589.385, + "y": 105.41675, + "index": 2, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 585.039, + "y": 109.76275, + "index": 3, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 579.715, + "y": 112.83675, + "index": 4, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 573.778, + "y": 114.42775, + "index": 5, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 567.63, + "y": 114.42775, + "index": 6, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 561.693, + "y": 112.83675, + "index": 7, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 556.369, + "y": 109.76275, + "index": 8, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 552.023, + "y": 105.41675, + "index": 9, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 548.949, + "y": 100.09275, + "index": 10, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 547.358, + "y": 94.15575, + "index": 11, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 547.358, + "y": 88.00775, + "index": 12, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 548.949, + "y": 82.07075, + "index": 13, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 552.023, + "y": 76.74675, + "index": 14, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 556.369, + "y": 72.40075, + "index": 15, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 561.693, + "y": 69.32675, + "index": 16, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 567.63, + "y": 67.73575, + "index": 17, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 573.778, + "y": 67.73575, + "index": 18, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 579.715, + "y": 69.32675, + "index": 19, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 585.039, + "y": 72.40075, + "index": 20, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 589.385, + "y": 76.74675, + "index": 21, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 592.459, + "y": 82.07075, + "index": 22, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 594.05, + "y": 88.00775, + "index": 23, + "body": { + "#": 586 + }, + "isInternal": false + }, + { + "x": 570.704, + "y": 91.08175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 620 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 622 + }, + "max": { + "#": 623 + } + }, + { + "x": 547.358, + "y": 67.73575 + }, + { + "x": 594.05, + "y": 114.42775 + }, + { + "x": 570.704, + "y": 88.17448 + }, + [ + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + } + ], + { + "x": -0.96592, + "y": -0.25885 + }, + { + "x": -0.86601, + "y": -0.50002 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.50002, + "y": -0.86601 + }, + { + "x": -0.25885, + "y": -0.96592 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25885, + "y": -0.96592 + }, + { + "x": 0.50002, + "y": -0.86601 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86601, + "y": -0.50002 + }, + { + "x": 0.96592, + "y": -0.25885 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,1,2", + "startCol": 11, + "endCol": 12, + "startRow": 1, + "endRow": 2 + }, + { + "id": 14, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 640 + }, + "angle": 0, + "vertices": { + "#": 641 + }, + "position": { + "#": 664 + }, + "force": { + "#": 665 + }, + "torque": 0, + "positionImpulse": { + "#": 666 + }, + "constraintImpulse": { + "#": 667 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 668 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 669 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 670 + }, + "circleRadius": 20.12236, + "bounds": { + "#": 672 + }, + "positionPrev": { + "#": 675 + }, + "anglePrev": 0, + "axes": { + "#": 676 + }, + "area": 1254.82541, + "mass": 1.25483, + "inverseMass": 0.79692, + "inertia": 1002.45051, + "inverseInertia": 0.001, + "parent": { + "#": 639 + }, + "sleepCounter": 0, + "region": { + "#": 688 + } + }, + [ + { + "#": 639 + } + ], + [ + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + } + ], + { + "x": 643.886, + "y": 90.72175, + "index": 0, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 642.272, + "y": 96.21675, + "index": 1, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 639.175, + "y": 101.03475, + "index": 2, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 634.847, + "y": 104.78575, + "index": 3, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 629.637, + "y": 107.16475, + "index": 4, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 623.968, + "y": 107.97975, + "index": 5, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 618.299, + "y": 107.16475, + "index": 6, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 613.089, + "y": 104.78575, + "index": 7, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 608.761, + "y": 101.03475, + "index": 8, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 605.664, + "y": 96.21675, + "index": 9, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 604.05, + "y": 90.72175, + "index": 10, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 604.05, + "y": 84.99375, + "index": 11, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 605.664, + "y": 79.49875, + "index": 12, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 608.761, + "y": 74.68075, + "index": 13, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 613.089, + "y": 70.92975, + "index": 14, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 618.299, + "y": 68.55075, + "index": 15, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 623.968, + "y": 67.73575, + "index": 16, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 629.637, + "y": 68.55075, + "index": 17, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 634.847, + "y": 70.92975, + "index": 18, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 639.175, + "y": 74.68075, + "index": 19, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 642.272, + "y": 79.49875, + "index": 20, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 643.886, + "y": 84.99375, + "index": 21, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 623.968, + "y": 87.85775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 671 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 673 + }, + "max": { + "#": 674 + } + }, + { + "x": 604.05, + "y": 67.73575 + }, + { + "x": 643.886, + "y": 107.97975 + }, + { + "x": 623.968, + "y": 84.95048 + }, + [ + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + } + ], + { + "x": -0.95947, + "y": -0.28182 + }, + { + "x": -0.8412, + "y": -0.54072 + }, + { + "x": -0.65494, + "y": -0.75568 + }, + { + "x": -0.41537, + "y": -0.90965 + }, + { + "x": -0.1423, + "y": -0.98982 + }, + { + "x": 0.1423, + "y": -0.98982 + }, + { + "x": 0.41537, + "y": -0.90965 + }, + { + "x": 0.65494, + "y": -0.75568 + }, + { + "x": 0.8412, + "y": -0.54072 + }, + { + "x": 0.95947, + "y": -0.28182 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,13,1,2", + "startCol": 12, + "endCol": 13, + "startRow": 1, + "endRow": 2 + }, + { + "id": 15, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 690 + }, + "angle": 0, + "vertices": { + "#": 691 + }, + "position": { + "#": 718 + }, + "force": { + "#": 719 + }, + "torque": 0, + "positionImpulse": { + "#": 720 + }, + "constraintImpulse": { + "#": 721 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 722 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 723 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 724 + }, + "circleRadius": 26.68191, + "bounds": { + "#": 726 + }, + "positionPrev": { + "#": 729 + }, + "anglePrev": 0, + "axes": { + "#": 730 + }, + "area": 2214.88784, + "mass": 2.21489, + "inverseMass": 0.45149, + "inertia": 3123.14313, + "inverseInertia": 0.00032, + "parent": { + "#": 689 + }, + "sleepCounter": 0, + "region": { + "#": 744 + } + }, + [ + { + "#": 689 + } + ], + [ + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + }, + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + }, + { + "#": 717 + } + ], + { + "x": 152.974, + "y": 166.63575, + "index": 0, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 151.435, + "y": 172.88175, + "index": 1, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 148.446, + "y": 178.57675, + "index": 2, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 144.18, + "y": 183.39175, + "index": 3, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 138.887, + "y": 187.04575, + "index": 4, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 132.872, + "y": 189.32675, + "index": 5, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 126.487, + "y": 190.10175, + "index": 6, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 120.102, + "y": 189.32675, + "index": 7, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 114.087, + "y": 187.04575, + "index": 8, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 108.794, + "y": 183.39175, + "index": 9, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 104.528, + "y": 178.57675, + "index": 10, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 101.539, + "y": 172.88175, + "index": 11, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 100, + "y": 166.63575, + "index": 12, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 100, + "y": 160.20375, + "index": 13, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 101.539, + "y": 153.95775, + "index": 14, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 104.528, + "y": 148.26275, + "index": 15, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 108.794, + "y": 143.44775, + "index": 16, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 114.087, + "y": 139.79375, + "index": 17, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 120.102, + "y": 137.51275, + "index": 18, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 126.487, + "y": 136.73775, + "index": 19, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 132.872, + "y": 137.51275, + "index": 20, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 138.887, + "y": 139.79375, + "index": 21, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 144.18, + "y": 143.44775, + "index": 22, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 148.446, + "y": 148.26275, + "index": 23, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 151.435, + "y": 153.95775, + "index": 24, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 152.974, + "y": 160.20375, + "index": 25, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 126.487, + "y": 163.41975 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 725 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 727 + }, + "max": { + "#": 728 + } + }, + { + "x": 100, + "y": 136.73775 + }, + { + "x": 152.974, + "y": 190.10175 + }, + { + "x": 126.487, + "y": 160.51248 + }, + [ + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + }, + { + "#": 743 + } + ], + { + "x": -0.97096, + "y": -0.23924 + }, + { + "x": -0.88545, + "y": -0.46473 + }, + { + "x": -0.74849, + "y": -0.66315 + }, + { + "x": -0.56812, + "y": -0.82295 + }, + { + "x": -0.35458, + "y": -0.93503 + }, + { + "x": -0.12049, + "y": -0.99271 + }, + { + "x": 0.12049, + "y": -0.99271 + }, + { + "x": 0.35458, + "y": -0.93503 + }, + { + "x": 0.56812, + "y": -0.82295 + }, + { + "x": 0.74849, + "y": -0.66315 + }, + { + "x": 0.88545, + "y": -0.46473 + }, + { + "x": 0.97096, + "y": -0.23924 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,3,2,3", + "startCol": 2, + "endCol": 3, + "startRow": 2, + "endRow": 3 + }, + { + "id": 16, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 746 + }, + "angle": 0, + "vertices": { + "#": 747 + }, + "position": { + "#": 768 + }, + "force": { + "#": 769 + }, + "torque": 0, + "positionImpulse": { + "#": 770 + }, + "constraintImpulse": { + "#": 771 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 772 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 773 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 774 + }, + "circleRadius": 18.96676, + "bounds": { + "#": 776 + }, + "positionPrev": { + "#": 779 + }, + "anglePrev": 0, + "axes": { + "#": 780 + }, + "area": 1111.68177, + "mass": 1.11168, + "inverseMass": 0.89954, + "inertia": 786.80094, + "inverseInertia": 0.00127, + "parent": { + "#": 745 + }, + "sleepCounter": 0, + "region": { + "#": 791 + } + }, + [ + { + "#": 745 + } + ], + [ + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + }, + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + }, + { + "#": 767 + } + ], + { + "x": 200.44, + "y": 158.43775, + "index": 0, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 198.607, + "y": 164.08175, + "index": 1, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 195.119, + "y": 168.88275, + "index": 2, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 190.318, + "y": 172.37075, + "index": 3, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 184.674, + "y": 174.20375, + "index": 4, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 178.74, + "y": 174.20375, + "index": 5, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 173.096, + "y": 172.37075, + "index": 6, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 168.295, + "y": 168.88275, + "index": 7, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 164.807, + "y": 164.08175, + "index": 8, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 162.974, + "y": 158.43775, + "index": 9, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 162.974, + "y": 152.50375, + "index": 10, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 164.807, + "y": 146.85975, + "index": 11, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 168.295, + "y": 142.05875, + "index": 12, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 173.096, + "y": 138.57075, + "index": 13, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 178.74, + "y": 136.73775, + "index": 14, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 184.674, + "y": 136.73775, + "index": 15, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 190.318, + "y": 138.57075, + "index": 16, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 195.119, + "y": 142.05875, + "index": 17, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 198.607, + "y": 146.85975, + "index": 18, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 200.44, + "y": 152.50375, + "index": 19, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 181.707, + "y": 155.47075 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 775 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 777 + }, + "max": { + "#": 778 + } + }, + { + "x": 162.974, + "y": 136.73775 + }, + { + "x": 200.44, + "y": 174.20375 + }, + { + "x": 181.707, + "y": 152.56348 + }, + [ + { + "#": 781 + }, + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + }, + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + } + ], + { + "x": -0.9511, + "y": -0.30889 + }, + { + "x": -0.80903, + "y": -0.58777 + }, + { + "x": -0.58777, + "y": -0.80903 + }, + { + "x": -0.30889, + "y": -0.9511 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30889, + "y": -0.9511 + }, + { + "x": 0.58777, + "y": -0.80903 + }, + { + "x": 0.80903, + "y": -0.58777 + }, + { + "x": 0.9511, + "y": -0.30889 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,2,3", + "startCol": 3, + "endCol": 4, + "startRow": 2, + "endRow": 3 + }, + { + "id": 17, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 793 + }, + "angle": 0, + "vertices": { + "#": 794 + }, + "position": { + "#": 821 + }, + "force": { + "#": 822 + }, + "torque": 0, + "positionImpulse": { + "#": 823 + }, + "constraintImpulse": { + "#": 824 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 825 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 826 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 827 + }, + "circleRadius": 27.1621, + "bounds": { + "#": 829 + }, + "positionPrev": { + "#": 832 + }, + "anglePrev": 0, + "axes": { + "#": 833 + }, + "area": 2295.31976, + "mass": 2.29532, + "inverseMass": 0.43567, + "inertia": 3354.09068, + "inverseInertia": 0.0003, + "parent": { + "#": 792 + }, + "sleepCounter": 0, + "region": { + "#": 847 + } + }, + [ + { + "#": 792 + } + ], + [ + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + }, + { + "#": 806 + }, + { + "#": 807 + }, + { + "#": 808 + }, + { + "#": 809 + }, + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + }, + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + } + ], + { + "x": 264.368, + "y": 167.17375, + "index": 0, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 262.801, + "y": 173.53175, + "index": 1, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 259.758, + "y": 179.32975, + "index": 2, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 255.416, + "y": 184.23075, + "index": 3, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 250.027, + "y": 187.95075, + "index": 4, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 243.904, + "y": 190.27275, + "index": 5, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 237.404, + "y": 191.06175, + "index": 6, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 230.904, + "y": 190.27275, + "index": 7, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 224.781, + "y": 187.95075, + "index": 8, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 219.392, + "y": 184.23075, + "index": 9, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 215.05, + "y": 179.32975, + "index": 10, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 212.007, + "y": 173.53175, + "index": 11, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 210.44, + "y": 167.17375, + "index": 12, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 210.44, + "y": 160.62575, + "index": 13, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 212.007, + "y": 154.26775, + "index": 14, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 215.05, + "y": 148.46975, + "index": 15, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 219.392, + "y": 143.56875, + "index": 16, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 224.781, + "y": 139.84875, + "index": 17, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 230.904, + "y": 137.52675, + "index": 18, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 237.404, + "y": 136.73775, + "index": 19, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 243.904, + "y": 137.52675, + "index": 20, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 250.027, + "y": 139.84875, + "index": 21, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 255.416, + "y": 143.56875, + "index": 22, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 259.758, + "y": 148.46975, + "index": 23, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 262.801, + "y": 154.26775, + "index": 24, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 264.368, + "y": 160.62575, + "index": 25, + "body": { + "#": 792 + }, + "isInternal": false + }, + { + "x": 237.404, + "y": 163.89975 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 828 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 830 + }, + "max": { + "#": 831 + } + }, + { + "x": 210.44, + "y": 136.73775 + }, + { + "x": 264.368, + "y": 191.06175 + }, + { + "x": 237.404, + "y": 160.99248 + }, + [ + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + } + ], + { + "x": -0.97095, + "y": -0.2393 + }, + { + "x": -0.88546, + "y": -0.46472 + }, + { + "x": -0.7485, + "y": -0.66313 + }, + { + "x": -0.56809, + "y": -0.82297 + }, + { + "x": -0.35459, + "y": -0.93502 + }, + { + "x": -0.1205, + "y": -0.99271 + }, + { + "x": 0.1205, + "y": -0.99271 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.56809, + "y": -0.82297 + }, + { + "x": 0.7485, + "y": -0.66313 + }, + { + "x": 0.88546, + "y": -0.46472 + }, + { + "x": 0.97095, + "y": -0.2393 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,2,3", + "startCol": 4, + "endCol": 5, + "startRow": 2, + "endRow": 3 + }, + { + "id": 18, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 849 + }, + "angle": 0, + "vertices": { + "#": 850 + }, + "position": { + "#": 877 + }, + "force": { + "#": 878 + }, + "torque": 0, + "positionImpulse": { + "#": 879 + }, + "constraintImpulse": { + "#": 880 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 881 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 882 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 883 + }, + "circleRadius": 27.56424, + "bounds": { + "#": 885 + }, + "positionPrev": { + "#": 888 + }, + "anglePrev": 0, + "axes": { + "#": 889 + }, + "area": 2363.75191, + "mass": 2.36375, + "inverseMass": 0.42306, + "inertia": 3557.06824, + "inverseInertia": 0.00028, + "parent": { + "#": 848 + }, + "sleepCounter": 0, + "region": { + "#": 903 + } + }, + [ + { + "#": 848 + } + ], + [ + { + "#": 851 + }, + { + "#": 852 + }, + { + "#": 853 + }, + { + "#": 854 + }, + { + "#": 855 + }, + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + }, + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + }, + { + "#": 869 + }, + { + "#": 870 + }, + { + "#": 871 + }, + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + } + ], + { + "x": 329.094, + "y": 167.62475, + "index": 0, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 327.504, + "y": 174.07575, + "index": 1, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 324.416, + "y": 179.95975, + "index": 2, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 320.009, + "y": 184.93375, + "index": 3, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 314.541, + "y": 188.70875, + "index": 4, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 308.328, + "y": 191.06475, + "index": 5, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 301.731, + "y": 191.86575, + "index": 6, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 295.134, + "y": 191.06475, + "index": 7, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 288.921, + "y": 188.70875, + "index": 8, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 283.453, + "y": 184.93375, + "index": 9, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 279.046, + "y": 179.95975, + "index": 10, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 275.958, + "y": 174.07575, + "index": 11, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 274.368, + "y": 167.62475, + "index": 12, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 274.368, + "y": 160.97875, + "index": 13, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 275.958, + "y": 154.52775, + "index": 14, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 279.046, + "y": 148.64375, + "index": 15, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 283.453, + "y": 143.66975, + "index": 16, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 288.921, + "y": 139.89475, + "index": 17, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 295.134, + "y": 137.53875, + "index": 18, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 301.731, + "y": 136.73775, + "index": 19, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 308.328, + "y": 137.53875, + "index": 20, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 314.541, + "y": 139.89475, + "index": 21, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 320.009, + "y": 143.66975, + "index": 22, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 324.416, + "y": 148.64375, + "index": 23, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 327.504, + "y": 154.52775, + "index": 24, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 329.094, + "y": 160.97875, + "index": 25, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 301.731, + "y": 164.30175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 884 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 886 + }, + "max": { + "#": 887 + } + }, + { + "x": 274.368, + "y": 136.73775 + }, + { + "x": 329.094, + "y": 191.86575 + }, + { + "x": 301.731, + "y": 161.39448 + }, + [ + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + }, + { + "#": 894 + }, + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + }, + { + "#": 901 + }, + { + "#": 902 + } + ], + { + "x": -0.97094, + "y": -0.23931 + }, + { + "x": -0.88547, + "y": -0.4647 + }, + { + "x": -0.74848, + "y": -0.66316 + }, + { + "x": -0.56814, + "y": -0.82293 + }, + { + "x": -0.35457, + "y": -0.93503 + }, + { + "x": -0.12053, + "y": -0.99271 + }, + { + "x": 0.12053, + "y": -0.99271 + }, + { + "x": 0.35457, + "y": -0.93503 + }, + { + "x": 0.56814, + "y": -0.82293 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88547, + "y": -0.4647 + }, + { + "x": 0.97094, + "y": -0.23931 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,2,3", + "startCol": 5, + "endCol": 6, + "startRow": 2, + "endRow": 3 + }, + { + "id": 19, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 905 + }, + "angle": 0, + "vertices": { + "#": 906 + }, + "position": { + "#": 933 + }, + "force": { + "#": 934 + }, + "torque": 0, + "positionImpulse": { + "#": 935 + }, + "constraintImpulse": { + "#": 936 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 937 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 938 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 939 + }, + "circleRadius": 24.24724, + "bounds": { + "#": 941 + }, + "positionPrev": { + "#": 944 + }, + "anglePrev": 0, + "axes": { + "#": 945 + }, + "area": 1829.10611, + "mass": 1.82911, + "inverseMass": 0.54672, + "inertia": 2129.93431, + "inverseInertia": 0.00047, + "parent": { + "#": 904 + }, + "sleepCounter": 0, + "region": { + "#": 959 + } + }, + [ + { + "#": 904 + } + ], + [ + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + }, + { + "#": 915 + }, + { + "#": 916 + }, + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + }, + { + "#": 920 + }, + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + }, + { + "#": 924 + }, + { + "#": 925 + }, + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + }, + { + "#": 932 + } + ], + { + "x": 387.234, + "y": 163.90775, + "index": 0, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 385.836, + "y": 169.58275, + "index": 1, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 383.119, + "y": 174.75875, + "index": 2, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 379.243, + "y": 179.13375, + "index": 3, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 374.432, + "y": 182.45475, + "index": 4, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 368.967, + "y": 184.52775, + "index": 5, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 363.164, + "y": 185.23175, + "index": 6, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 357.361, + "y": 184.52775, + "index": 7, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 351.896, + "y": 182.45475, + "index": 8, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 347.085, + "y": 179.13375, + "index": 9, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 343.209, + "y": 174.75875, + "index": 10, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 340.492, + "y": 169.58275, + "index": 11, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 339.094, + "y": 163.90775, + "index": 12, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 339.094, + "y": 158.06175, + "index": 13, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 340.492, + "y": 152.38675, + "index": 14, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 343.209, + "y": 147.21075, + "index": 15, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 347.085, + "y": 142.83575, + "index": 16, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 351.896, + "y": 139.51475, + "index": 17, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 357.361, + "y": 137.44175, + "index": 18, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 363.164, + "y": 136.73775, + "index": 19, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 368.967, + "y": 137.44175, + "index": 20, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 374.432, + "y": 139.51475, + "index": 21, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 379.243, + "y": 142.83575, + "index": 22, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 383.119, + "y": 147.21075, + "index": 23, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 385.836, + "y": 152.38675, + "index": 24, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 387.234, + "y": 158.06175, + "index": 25, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 363.164, + "y": 160.98475 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 940 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 942 + }, + "max": { + "#": 943 + } + }, + { + "x": 339.094, + "y": 136.73775 + }, + { + "x": 387.234, + "y": 185.23175 + }, + { + "x": 363.164, + "y": 158.07748 + }, + [ + { + "#": 946 + }, + { + "#": 947 + }, + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + } + ], + { + "x": -0.97097, + "y": -0.23919 + }, + { + "x": -0.88543, + "y": -0.46478 + }, + { + "x": -0.7485, + "y": -0.66313 + }, + { + "x": -0.56809, + "y": -0.82297 + }, + { + "x": -0.35466, + "y": -0.93499 + }, + { + "x": -0.12043, + "y": -0.99272 + }, + { + "x": 0.12043, + "y": -0.99272 + }, + { + "x": 0.35466, + "y": -0.93499 + }, + { + "x": 0.56809, + "y": -0.82297 + }, + { + "x": 0.7485, + "y": -0.66313 + }, + { + "x": 0.88543, + "y": -0.46478 + }, + { + "x": 0.97097, + "y": -0.23919 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,2,3", + "startCol": 7, + "endCol": 8, + "startRow": 2, + "endRow": 3 + }, + { + "id": 20, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 961 + }, + "angle": 0, + "vertices": { + "#": 962 + }, + "position": { + "#": 985 + }, + "force": { + "#": 986 + }, + "torque": 0, + "positionImpulse": { + "#": 987 + }, + "constraintImpulse": { + "#": 988 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 989 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 990 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 991 + }, + "circleRadius": 20.72962, + "bounds": { + "#": 993 + }, + "positionPrev": { + "#": 996 + }, + "anglePrev": 0, + "axes": { + "#": 997 + }, + "area": 1331.7125, + "mass": 1.33171, + "inverseMass": 0.75091, + "inertia": 1129.06069, + "inverseInertia": 0.00089, + "parent": { + "#": 960 + }, + "sleepCounter": 0, + "region": { + "#": 1009 + } + }, + [ + { + "#": 960 + } + ], + [ + { + "#": 963 + }, + { + "#": 964 + }, + { + "#": 965 + }, + { + "#": 966 + }, + { + "#": 967 + }, + { + "#": 968 + }, + { + "#": 969 + }, + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + }, + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + } + ], + { + "x": 438.272, + "y": 160.41775, + "index": 0, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 436.609, + "y": 166.07875, + "index": 1, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 433.419, + "y": 171.04275, + "index": 2, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 428.96, + "y": 174.90675, + "index": 3, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 423.593, + "y": 177.35775, + "index": 4, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 417.753, + "y": 178.19775, + "index": 5, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 411.913, + "y": 177.35775, + "index": 6, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 406.546, + "y": 174.90675, + "index": 7, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 402.087, + "y": 171.04275, + "index": 8, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 398.897, + "y": 166.07875, + "index": 9, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 397.234, + "y": 160.41775, + "index": 10, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 397.234, + "y": 154.51775, + "index": 11, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 398.897, + "y": 148.85675, + "index": 12, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 402.087, + "y": 143.89275, + "index": 13, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 406.546, + "y": 140.02875, + "index": 14, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 411.913, + "y": 137.57775, + "index": 15, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 417.753, + "y": 136.73775, + "index": 16, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 423.593, + "y": 137.57775, + "index": 17, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 428.96, + "y": 140.02875, + "index": 18, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 433.419, + "y": 143.89275, + "index": 19, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 436.609, + "y": 148.85675, + "index": 20, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 438.272, + "y": 154.51775, + "index": 21, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 417.753, + "y": 157.46775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 992 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 994 + }, + "max": { + "#": 995 + } + }, + { + "x": 397.234, + "y": 136.73775 + }, + { + "x": 438.272, + "y": 178.19775 + }, + { + "x": 417.753, + "y": 154.56048 + }, + [ + { + "#": 998 + }, + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + }, + { + "#": 1002 + }, + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + }, + { + "#": 1007 + }, + { + "#": 1008 + } + ], + { + "x": -0.95946, + "y": -0.28185 + }, + { + "x": -0.84127, + "y": -0.54062 + }, + { + "x": -0.65489, + "y": -0.75573 + }, + { + "x": -0.41541, + "y": -0.90963 + }, + { + "x": -0.14237, + "y": -0.98981 + }, + { + "x": 0.14237, + "y": -0.98981 + }, + { + "x": 0.41541, + "y": -0.90963 + }, + { + "x": 0.65489, + "y": -0.75573 + }, + { + "x": 0.84127, + "y": -0.54062 + }, + { + "x": 0.95946, + "y": -0.28185 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,2,3", + "startCol": 8, + "endCol": 9, + "startRow": 2, + "endRow": 3 + }, + { + "id": 21, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1011 + }, + "angle": 0, + "vertices": { + "#": 1012 + }, + "position": { + "#": 1031 + }, + "force": { + "#": 1032 + }, + "torque": 0, + "positionImpulse": { + "#": 1033 + }, + "constraintImpulse": { + "#": 1034 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1035 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1036 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1037 + }, + "circleRadius": 16.64101, + "bounds": { + "#": 1039 + }, + "positionPrev": { + "#": 1042 + }, + "anglePrev": 0, + "axes": { + "#": 1043 + }, + "area": 852.43514, + "mass": 0.85244, + "inverseMass": 1.17311, + "inertia": 462.63572, + "inverseInertia": 0.00216, + "parent": { + "#": 1010 + }, + "sleepCounter": 0, + "region": { + "#": 1053 + } + }, + [ + { + "#": 1010 + } + ], + [ + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + }, + { + "#": 1016 + }, + { + "#": 1017 + }, + { + "#": 1018 + }, + { + "#": 1019 + }, + { + "#": 1020 + }, + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + }, + { + "#": 1026 + }, + { + "#": 1027 + }, + { + "#": 1028 + }, + { + "#": 1029 + }, + { + "#": 1030 + } + ], + { + "x": 481.048, + "y": 156.26875, + "index": 0, + "body": { + "#": 1010 + }, + "isInternal": false + }, + { + "x": 479.072, + "y": 161.69975, + "index": 1, + "body": { + "#": 1010 + }, + "isInternal": false + }, + { + "x": 475.357, + "y": 166.12675, + "index": 2, + "body": { + "#": 1010 + }, + "isInternal": false + }, + { + "x": 470.352, + "y": 169.01575, + "index": 3, + "body": { + "#": 1010 + }, + "isInternal": false + }, + { + "x": 464.66, + "y": 170.01975, + "index": 4, + "body": { + "#": 1010 + }, + "isInternal": false + }, + { + "x": 458.968, + "y": 169.01575, + "index": 5, + "body": { + "#": 1010 + }, + "isInternal": false + }, + { + "x": 453.963, + "y": 166.12675, + "index": 6, + "body": { + "#": 1010 + }, + "isInternal": false + }, + { + "x": 450.248, + "y": 161.69975, + "index": 7, + "body": { + "#": 1010 + }, + "isInternal": false + }, + { + "x": 448.272, + "y": 156.26875, + "index": 8, + "body": { + "#": 1010 + }, + "isInternal": false + }, + { + "x": 448.272, + "y": 150.48875, + "index": 9, + "body": { + "#": 1010 + }, + "isInternal": false + }, + { + "x": 450.248, + "y": 145.05775, + "index": 10, + "body": { + "#": 1010 + }, + "isInternal": false + }, + { + "x": 453.963, + "y": 140.63075, + "index": 11, + "body": { + "#": 1010 + }, + "isInternal": false + }, + { + "x": 458.968, + "y": 137.74175, + "index": 12, + "body": { + "#": 1010 + }, + "isInternal": false + }, + { + "x": 464.66, + "y": 136.73775, + "index": 13, + "body": { + "#": 1010 + }, + "isInternal": false + }, + { + "x": 470.352, + "y": 137.74175, + "index": 14, + "body": { + "#": 1010 + }, + "isInternal": false + }, + { + "x": 475.357, + "y": 140.63075, + "index": 15, + "body": { + "#": 1010 + }, + "isInternal": false + }, + { + "x": 479.072, + "y": 145.05775, + "index": 16, + "body": { + "#": 1010 + }, + "isInternal": false + }, + { + "x": 481.048, + "y": 150.48875, + "index": 17, + "body": { + "#": 1010 + }, + "isInternal": false + }, + { + "x": 464.66, + "y": 153.37875 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1038 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1040 + }, + "max": { + "#": 1041 + } + }, + { + "x": 448.272, + "y": 136.73775 + }, + { + "x": 481.048, + "y": 170.01975 + }, + { + "x": 464.66, + "y": 150.47148 + }, + [ + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + } + ], + { + "x": -0.93973, + "y": -0.34191 + }, + { + "x": -0.76602, + "y": -0.64282 + }, + { + "x": -0.49992, + "y": -0.86607 + }, + { + "x": -0.17371, + "y": -0.9848 + }, + { + "x": 0.17371, + "y": -0.9848 + }, + { + "x": 0.49992, + "y": -0.86607 + }, + { + "x": 0.76602, + "y": -0.64282 + }, + { + "x": 0.93973, + "y": -0.34191 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,2,3", + "startCol": 9, + "endCol": 10, + "startRow": 2, + "endRow": 3 + }, + { + "id": 22, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1055 + }, + "angle": 0, + "vertices": { + "#": 1056 + }, + "position": { + "#": 1083 + }, + "force": { + "#": 1084 + }, + "torque": 0, + "positionImpulse": { + "#": 1085 + }, + "constraintImpulse": { + "#": 1086 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1087 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1088 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1089 + }, + "circleRadius": 29.38882, + "bounds": { + "#": 1091 + }, + "positionPrev": { + "#": 1094 + }, + "anglePrev": 0, + "axes": { + "#": 1095 + }, + "area": 2687.1084, + "mass": 2.68711, + "inverseMass": 0.37215, + "inertia": 4596.83359, + "inverseInertia": 0.00022, + "parent": { + "#": 1054 + }, + "sleepCounter": 0, + "region": { + "#": 1109 + } + }, + [ + { + "#": 1054 + } + ], + [ + { + "#": 1057 + }, + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + }, + { + "#": 1061 + }, + { + "#": 1062 + }, + { + "#": 1063 + }, + { + "#": 1064 + }, + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + }, + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + } + ], + { + "x": 549.398, + "y": 169.66875, + "index": 0, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 547.702, + "y": 176.54775, + "index": 1, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 544.41, + "y": 182.82175, + "index": 2, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 539.711, + "y": 188.12475, + "index": 3, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 533.881, + "y": 192.14975, + "index": 4, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 527.256, + "y": 194.66175, + "index": 5, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 520.223, + "y": 195.51575, + "index": 6, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 513.19, + "y": 194.66175, + "index": 7, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 506.565, + "y": 192.14975, + "index": 8, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 500.735, + "y": 188.12475, + "index": 9, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 496.036, + "y": 182.82175, + "index": 10, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 492.744, + "y": 176.54775, + "index": 11, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 491.048, + "y": 169.66875, + "index": 12, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 491.048, + "y": 162.58475, + "index": 13, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 492.744, + "y": 155.70575, + "index": 14, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 496.036, + "y": 149.43175, + "index": 15, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 500.735, + "y": 144.12875, + "index": 16, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 506.565, + "y": 140.10375, + "index": 17, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 513.19, + "y": 137.59175, + "index": 18, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 520.223, + "y": 136.73775, + "index": 19, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 527.256, + "y": 137.59175, + "index": 20, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 533.881, + "y": 140.10375, + "index": 21, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 539.711, + "y": 144.12875, + "index": 22, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 544.41, + "y": 149.43175, + "index": 23, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 547.702, + "y": 155.70575, + "index": 24, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 549.398, + "y": 162.58475, + "index": 25, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 520.223, + "y": 166.12675 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1090 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1092 + }, + "max": { + "#": 1093 + } + }, + { + "x": 491.048, + "y": 136.73775 + }, + { + "x": 549.398, + "y": 195.51575 + }, + { + "x": 520.223, + "y": 163.21948 + }, + [ + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + }, + { + "#": 1108 + } + ], + { + "x": -0.97093, + "y": -0.23938 + }, + { + "x": -0.88551, + "y": -0.46463 + }, + { + "x": -0.74844, + "y": -0.6632 + }, + { + "x": -0.56815, + "y": -0.82293 + }, + { + "x": -0.35454, + "y": -0.93504 + }, + { + "x": -0.12054, + "y": -0.99271 + }, + { + "x": 0.12054, + "y": -0.99271 + }, + { + "x": 0.35454, + "y": -0.93504 + }, + { + "x": 0.56815, + "y": -0.82293 + }, + { + "x": 0.74844, + "y": -0.6632 + }, + { + "x": 0.88551, + "y": -0.46463 + }, + { + "x": 0.97093, + "y": -0.23938 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,2,4", + "startCol": 10, + "endCol": 11, + "startRow": 2, + "endRow": 4 + }, + { + "id": 23, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1111 + }, + "angle": 0, + "vertices": { + "#": 1112 + }, + "position": { + "#": 1135 + }, + "force": { + "#": 1136 + }, + "torque": 0, + "positionImpulse": { + "#": 1137 + }, + "constraintImpulse": { + "#": 1138 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1139 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1140 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1141 + }, + "circleRadius": 20.82491, + "bounds": { + "#": 1143 + }, + "positionPrev": { + "#": 1146 + }, + "anglePrev": 0, + "axes": { + "#": 1147 + }, + "area": 1343.97323, + "mass": 1.34397, + "inverseMass": 0.74406, + "inertia": 1149.94633, + "inverseInertia": 0.00087, + "parent": { + "#": 1110 + }, + "sleepCounter": 0, + "region": { + "#": 1159 + } + }, + [ + { + "#": 1110 + } + ], + [ + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + } + ], + { + "x": 600.624, + "y": 160.52675, + "index": 0, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 598.954, + "y": 166.21375, + "index": 1, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 595.749, + "y": 171.19975, + "index": 2, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 591.27, + "y": 175.08175, + "index": 3, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 585.878, + "y": 177.54375, + "index": 4, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 580.011, + "y": 178.38775, + "index": 5, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 574.144, + "y": 177.54375, + "index": 6, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 568.752, + "y": 175.08175, + "index": 7, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 564.273, + "y": 171.19975, + "index": 8, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 561.068, + "y": 166.21375, + "index": 9, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 559.398, + "y": 160.52675, + "index": 10, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 559.398, + "y": 154.59875, + "index": 11, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 561.068, + "y": 148.91175, + "index": 12, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 564.273, + "y": 143.92575, + "index": 13, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 568.752, + "y": 140.04375, + "index": 14, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 574.144, + "y": 137.58175, + "index": 15, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 580.011, + "y": 136.73775, + "index": 16, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 585.878, + "y": 137.58175, + "index": 17, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 591.27, + "y": 140.04375, + "index": 18, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 595.749, + "y": 143.92575, + "index": 19, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 598.954, + "y": 148.91175, + "index": 20, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 600.624, + "y": 154.59875, + "index": 21, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 580.011, + "y": 157.56275 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1142 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1144 + }, + "max": { + "#": 1145 + } + }, + { + "x": 559.398, + "y": 136.73775 + }, + { + "x": 600.624, + "y": 178.38775 + }, + { + "x": 580.011, + "y": 154.65548 + }, + [ + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + }, + { + "#": 1152 + }, + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + }, + { + "#": 1156 + }, + { + "#": 1157 + }, + { + "#": 1158 + } + ], + { + "x": -0.95949, + "y": -0.28176 + }, + { + "x": -0.8412, + "y": -0.54072 + }, + { + "x": -0.65495, + "y": -0.75567 + }, + { + "x": -0.41535, + "y": -0.90966 + }, + { + "x": -0.14239, + "y": -0.98981 + }, + { + "x": 0.14239, + "y": -0.98981 + }, + { + "x": 0.41535, + "y": -0.90966 + }, + { + "x": 0.65495, + "y": -0.75567 + }, + { + "x": 0.8412, + "y": -0.54072 + }, + { + "x": 0.95949, + "y": -0.28176 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,2,3", + "startCol": 11, + "endCol": 12, + "startRow": 2, + "endRow": 3 + }, + { + "id": 24, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1161 + }, + "angle": 0, + "vertices": { + "#": 1162 + }, + "position": { + "#": 1189 + }, + "force": { + "#": 1190 + }, + "torque": 0, + "positionImpulse": { + "#": 1191 + }, + "constraintImpulse": { + "#": 1192 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1193 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1194 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1195 + }, + "circleRadius": 28.91223, + "bounds": { + "#": 1197 + }, + "positionPrev": { + "#": 1200 + }, + "anglePrev": 0, + "axes": { + "#": 1201 + }, + "area": 2600.58532, + "mass": 2.60059, + "inverseMass": 0.38453, + "inertia": 4305.56968, + "inverseInertia": 0.00023, + "parent": { + "#": 1160 + }, + "sleepCounter": 0, + "region": { + "#": 1215 + } + }, + [ + { + "#": 1160 + } + ], + [ + { + "#": 1163 + }, + { + "#": 1164 + }, + { + "#": 1165 + }, + { + "#": 1166 + }, + { + "#": 1167 + }, + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + }, + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + }, + { + "#": 1179 + }, + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + }, + { + "#": 1186 + }, + { + "#": 1187 + }, + { + "#": 1188 + } + ], + { + "x": 668.026, + "y": 169.13475, + "index": 0, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 666.358, + "y": 175.90175, + "index": 1, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 663.119, + "y": 182.07375, + "index": 2, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 658.497, + "y": 187.29075, + "index": 3, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 652.761, + "y": 191.25075, + "index": 4, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 646.244, + "y": 193.72175, + "index": 5, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 639.325, + "y": 194.56175, + "index": 6, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 632.406, + "y": 193.72175, + "index": 7, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 625.889, + "y": 191.25075, + "index": 8, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 620.153, + "y": 187.29075, + "index": 9, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 615.531, + "y": 182.07375, + "index": 10, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 612.292, + "y": 175.90175, + "index": 11, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 610.624, + "y": 169.13475, + "index": 12, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 610.624, + "y": 162.16475, + "index": 13, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 612.292, + "y": 155.39775, + "index": 14, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 615.531, + "y": 149.22575, + "index": 15, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 620.153, + "y": 144.00875, + "index": 16, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 625.889, + "y": 140.04875, + "index": 17, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 632.406, + "y": 137.57775, + "index": 18, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 639.325, + "y": 136.73775, + "index": 19, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 646.244, + "y": 137.57775, + "index": 20, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 652.761, + "y": 140.04875, + "index": 21, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 658.497, + "y": 144.00875, + "index": 22, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 663.119, + "y": 149.22575, + "index": 23, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 666.358, + "y": 155.39775, + "index": 24, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 668.026, + "y": 162.16475, + "index": 25, + "body": { + "#": 1160 + }, + "isInternal": false + }, + { + "x": 639.325, + "y": 165.64975 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1196 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1198 + }, + "max": { + "#": 1199 + } + }, + { + "x": 610.624, + "y": 136.73775 + }, + { + "x": 668.026, + "y": 194.56175 + }, + { + "x": 639.325, + "y": 162.74248 + }, + [ + { + "#": 1202 + }, + { + "#": 1203 + }, + { + "#": 1204 + }, + { + "#": 1205 + }, + { + "#": 1206 + }, + { + "#": 1207 + }, + { + "#": 1208 + }, + { + "#": 1209 + }, + { + "#": 1210 + }, + { + "#": 1211 + }, + { + "#": 1212 + }, + { + "#": 1213 + }, + { + "#": 1214 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88547, + "y": -0.46469 + }, + { + "x": -0.7485, + "y": -0.66313 + }, + { + "x": -0.56814, + "y": -0.82294 + }, + { + "x": -0.35453, + "y": -0.93504 + }, + { + "x": -0.12052, + "y": -0.99271 + }, + { + "x": 0.12052, + "y": -0.99271 + }, + { + "x": 0.35453, + "y": -0.93504 + }, + { + "x": 0.56814, + "y": -0.82294 + }, + { + "x": 0.7485, + "y": -0.66313 + }, + { + "x": 0.88547, + "y": -0.46469 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,13,2,4", + "startCol": 12, + "endCol": 13, + "startRow": 2, + "endRow": 4 + }, + { + "id": 25, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1217 + }, + "angle": 0, + "vertices": { + "#": 1218 + }, + "position": { + "#": 1245 + }, + "force": { + "#": 1246 + }, + "torque": 0, + "positionImpulse": { + "#": 1247 + }, + "constraintImpulse": { + "#": 1248 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1249 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1250 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1251 + }, + "circleRadius": 24.39153, + "bounds": { + "#": 1253 + }, + "positionPrev": { + "#": 1256 + }, + "anglePrev": 0, + "axes": { + "#": 1257 + }, + "area": 1850.95294, + "mass": 1.85095, + "inverseMass": 0.54026, + "inertia": 2181.11802, + "inverseInertia": 0.00046, + "parent": { + "#": 1216 + }, + "sleepCounter": 0, + "region": { + "#": 1271 + } + }, + [ + { + "#": 1216 + } + ], + [ + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + }, + { + "#": 1226 + }, + { + "#": 1227 + }, + { + "#": 1228 + }, + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + }, + { + "#": 1232 + }, + { + "#": 1233 + }, + { + "#": 1234 + }, + { + "#": 1235 + }, + { + "#": 1236 + }, + { + "#": 1237 + }, + { + "#": 1238 + }, + { + "#": 1239 + }, + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + } + ], + { + "x": 148.428, + "y": 232.84775, + "index": 0, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 147.02, + "y": 238.55675, + "index": 1, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 144.288, + "y": 243.76375, + "index": 2, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 140.389, + "y": 248.16475, + "index": 3, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 135.549, + "y": 251.50575, + "index": 4, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 130.051, + "y": 253.59075, + "index": 5, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 124.214, + "y": 254.29975, + "index": 6, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 118.377, + "y": 253.59075, + "index": 7, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 112.879, + "y": 251.50575, + "index": 8, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 108.039, + "y": 248.16475, + "index": 9, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 104.14, + "y": 243.76375, + "index": 10, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 101.408, + "y": 238.55675, + "index": 11, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 100, + "y": 232.84775, + "index": 12, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 100, + "y": 226.96775, + "index": 13, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 101.408, + "y": 221.25875, + "index": 14, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 104.14, + "y": 216.05175, + "index": 15, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 108.039, + "y": 211.65075, + "index": 16, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 112.879, + "y": 208.30975, + "index": 17, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 118.377, + "y": 206.22475, + "index": 18, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 124.214, + "y": 205.51575, + "index": 19, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 130.051, + "y": 206.22475, + "index": 20, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 135.549, + "y": 208.30975, + "index": 21, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 140.389, + "y": 211.65075, + "index": 22, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 144.288, + "y": 216.05175, + "index": 23, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 147.02, + "y": 221.25875, + "index": 24, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 148.428, + "y": 226.96775, + "index": 25, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 124.214, + "y": 229.90775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1252 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1254 + }, + "max": { + "#": 1255 + } + }, + { + "x": 100, + "y": 205.51575 + }, + { + "x": 148.428, + "y": 254.29975 + }, + { + "x": 124.214, + "y": 227.00048 + }, + [ + { + "#": 1258 + }, + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + }, + { + "#": 1263 + }, + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + }, + { + "#": 1267 + }, + { + "#": 1268 + }, + { + "#": 1269 + }, + { + "#": 1270 + } + ], + { + "x": -0.97091, + "y": -0.23945 + }, + { + "x": -0.88552, + "y": -0.46461 + }, + { + "x": -0.74851, + "y": -0.66313 + }, + { + "x": -0.56809, + "y": -0.82297 + }, + { + "x": -0.35459, + "y": -0.93502 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.56809, + "y": -0.82297 + }, + { + "x": 0.74851, + "y": -0.66313 + }, + { + "x": 0.88552, + "y": -0.46461 + }, + { + "x": 0.97091, + "y": -0.23945 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,3,4,5", + "startCol": 2, + "endCol": 3, + "startRow": 4, + "endRow": 5 + }, + { + "id": 26, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1273 + }, + "angle": 0, + "vertices": { + "#": 1274 + }, + "position": { + "#": 1293 + }, + "force": { + "#": 1294 + }, + "torque": 0, + "positionImpulse": { + "#": 1295 + }, + "constraintImpulse": { + "#": 1296 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1297 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1298 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1299 + }, + "circleRadius": 17.44798, + "bounds": { + "#": 1301 + }, + "positionPrev": { + "#": 1304 + }, + "anglePrev": 0, + "axes": { + "#": 1305 + }, + "area": 937.0976, + "mass": 0.9371, + "inverseMass": 1.06712, + "inertia": 559.09565, + "inverseInertia": 0.00179, + "parent": { + "#": 1272 + }, + "sleepCounter": 0, + "region": { + "#": 1315 + } + }, + [ + { + "#": 1272 + } + ], + [ + { + "#": 1275 + }, + { + "#": 1276 + }, + { + "#": 1277 + }, + { + "#": 1278 + }, + { + "#": 1279 + }, + { + "#": 1280 + }, + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + }, + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + }, + { + "#": 1289 + }, + { + "#": 1290 + }, + { + "#": 1291 + }, + { + "#": 1292 + } + ], + { + "x": 192.794, + "y": 225.99375, + "index": 0, + "body": { + "#": 1272 + }, + "isInternal": false + }, + { + "x": 190.721, + "y": 231.68775, + "index": 1, + "body": { + "#": 1272 + }, + "isInternal": false + }, + { + "x": 186.826, + "y": 236.32975, + "index": 2, + "body": { + "#": 1272 + }, + "isInternal": false + }, + { + "x": 181.579, + "y": 239.35975, + "index": 3, + "body": { + "#": 1272 + }, + "isInternal": false + }, + { + "x": 175.611, + "y": 240.41175, + "index": 4, + "body": { + "#": 1272 + }, + "isInternal": false + }, + { + "x": 169.643, + "y": 239.35975, + "index": 5, + "body": { + "#": 1272 + }, + "isInternal": false + }, + { + "x": 164.396, + "y": 236.32975, + "index": 6, + "body": { + "#": 1272 + }, + "isInternal": false + }, + { + "x": 160.501, + "y": 231.68775, + "index": 7, + "body": { + "#": 1272 + }, + "isInternal": false + }, + { + "x": 158.428, + "y": 225.99375, + "index": 8, + "body": { + "#": 1272 + }, + "isInternal": false + }, + { + "x": 158.428, + "y": 219.93375, + "index": 9, + "body": { + "#": 1272 + }, + "isInternal": false + }, + { + "x": 160.501, + "y": 214.23975, + "index": 10, + "body": { + "#": 1272 + }, + "isInternal": false + }, + { + "x": 164.396, + "y": 209.59775, + "index": 11, + "body": { + "#": 1272 + }, + "isInternal": false + }, + { + "x": 169.643, + "y": 206.56775, + "index": 12, + "body": { + "#": 1272 + }, + "isInternal": false + }, + { + "x": 175.611, + "y": 205.51575, + "index": 13, + "body": { + "#": 1272 + }, + "isInternal": false + }, + { + "x": 181.579, + "y": 206.56775, + "index": 14, + "body": { + "#": 1272 + }, + "isInternal": false + }, + { + "x": 186.826, + "y": 209.59775, + "index": 15, + "body": { + "#": 1272 + }, + "isInternal": false + }, + { + "x": 190.721, + "y": 214.23975, + "index": 16, + "body": { + "#": 1272 + }, + "isInternal": false + }, + { + "x": 192.794, + "y": 219.93375, + "index": 17, + "body": { + "#": 1272 + }, + "isInternal": false + }, + { + "x": 175.611, + "y": 222.96375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1300 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1302 + }, + "max": { + "#": 1303 + } + }, + { + "x": 158.428, + "y": 205.51575 + }, + { + "x": 192.794, + "y": 240.41175 + }, + { + "x": 175.611, + "y": 220.05648 + }, + [ + { + "#": 1306 + }, + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + }, + { + "#": 1310 + }, + { + "#": 1311 + }, + { + "#": 1312 + }, + { + "#": 1313 + }, + { + "#": 1314 + } + ], + { + "x": -0.93966, + "y": -0.3421 + }, + { + "x": -0.76605, + "y": -0.64278 + }, + { + "x": -0.50008, + "y": -0.86598 + }, + { + "x": -0.1736, + "y": -0.98482 + }, + { + "x": 0.1736, + "y": -0.98482 + }, + { + "x": 0.50008, + "y": -0.86598 + }, + { + "x": 0.76605, + "y": -0.64278 + }, + { + "x": 0.93966, + "y": -0.3421 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,4,5", + "startCol": 3, + "endCol": 4, + "startRow": 4, + "endRow": 5 + }, + { + "id": 27, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1317 + }, + "angle": 0, + "vertices": { + "#": 1318 + }, + "position": { + "#": 1345 + }, + "force": { + "#": 1346 + }, + "torque": 0, + "positionImpulse": { + "#": 1347 + }, + "constraintImpulse": { + "#": 1348 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1349 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1350 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1351 + }, + "circleRadius": 24.37789, + "bounds": { + "#": 1353 + }, + "positionPrev": { + "#": 1356 + }, + "anglePrev": 0, + "axes": { + "#": 1357 + }, + "area": 1848.90854, + "mass": 1.84891, + "inverseMass": 0.54086, + "inertia": 2176.30252, + "inverseInertia": 0.00046, + "parent": { + "#": 1316 + }, + "sleepCounter": 0, + "region": { + "#": 1371 + } + }, + [ + { + "#": 1316 + } + ], + [ + { + "#": 1319 + }, + { + "#": 1320 + }, + { + "#": 1321 + }, + { + "#": 1322 + }, + { + "#": 1323 + }, + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + }, + { + "#": 1327 + }, + { + "#": 1328 + }, + { + "#": 1329 + }, + { + "#": 1330 + }, + { + "#": 1331 + }, + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + }, + { + "#": 1335 + }, + { + "#": 1336 + }, + { + "#": 1337 + }, + { + "#": 1338 + }, + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + }, + { + "#": 1342 + }, + { + "#": 1343 + }, + { + "#": 1344 + } + ], + { + "x": 251.194, + "y": 232.83175, + "index": 0, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 249.788, + "y": 238.53875, + "index": 1, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 247.057, + "y": 243.74175, + "index": 2, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 243.16, + "y": 248.14075, + "index": 3, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 238.323, + "y": 251.47975, + "index": 4, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 232.828, + "y": 253.56375, + "index": 5, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 226.994, + "y": 254.27175, + "index": 6, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 221.16, + "y": 253.56375, + "index": 7, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 215.665, + "y": 251.47975, + "index": 8, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 210.828, + "y": 248.14075, + "index": 9, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 206.931, + "y": 243.74175, + "index": 10, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 204.2, + "y": 238.53875, + "index": 11, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 202.794, + "y": 232.83175, + "index": 12, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 202.794, + "y": 226.95575, + "index": 13, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 204.2, + "y": 221.24875, + "index": 14, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 206.931, + "y": 216.04575, + "index": 15, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 210.828, + "y": 211.64675, + "index": 16, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 215.665, + "y": 208.30775, + "index": 17, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 221.16, + "y": 206.22375, + "index": 18, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 226.994, + "y": 205.51575, + "index": 19, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 232.828, + "y": 206.22375, + "index": 20, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 238.323, + "y": 208.30775, + "index": 21, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 243.16, + "y": 211.64675, + "index": 22, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 247.057, + "y": 216.04575, + "index": 23, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 249.788, + "y": 221.24875, + "index": 24, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 251.194, + "y": 226.95575, + "index": 25, + "body": { + "#": 1316 + }, + "isInternal": false + }, + { + "x": 226.994, + "y": 229.89375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1352 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1354 + }, + "max": { + "#": 1355 + } + }, + { + "x": 202.794, + "y": 205.51575 + }, + { + "x": 251.194, + "y": 254.27175 + }, + { + "x": 226.994, + "y": 226.98648 + }, + [ + { + "#": 1358 + }, + { + "#": 1359 + }, + { + "#": 1360 + }, + { + "#": 1361 + }, + { + "#": 1362 + }, + { + "#": 1363 + }, + { + "#": 1364 + }, + { + "#": 1365 + }, + { + "#": 1366 + }, + { + "#": 1367 + }, + { + "#": 1368 + }, + { + "#": 1369 + }, + { + "#": 1370 + } + ], + { + "x": -0.97097, + "y": -0.23921 + }, + { + "x": -0.88544, + "y": -0.46476 + }, + { + "x": -0.74853, + "y": -0.66311 + }, + { + "x": -0.56809, + "y": -0.82296 + }, + { + "x": -0.35461, + "y": -0.93502 + }, + { + "x": -0.12047, + "y": -0.99272 + }, + { + "x": 0.12047, + "y": -0.99272 + }, + { + "x": 0.35461, + "y": -0.93502 + }, + { + "x": 0.56809, + "y": -0.82296 + }, + { + "x": 0.74853, + "y": -0.66311 + }, + { + "x": 0.88544, + "y": -0.46476 + }, + { + "x": 0.97097, + "y": -0.23921 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,4,5", + "startCol": 4, + "endCol": 5, + "startRow": 4, + "endRow": 5 + }, + { + "id": 28, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1373 + }, + "angle": 0, + "vertices": { + "#": 1374 + }, + "position": { + "#": 1401 + }, + "force": { + "#": 1402 + }, + "torque": 0, + "positionImpulse": { + "#": 1403 + }, + "constraintImpulse": { + "#": 1404 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1405 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1406 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1407 + }, + "circleRadius": 29.25534, + "bounds": { + "#": 1409 + }, + "positionPrev": { + "#": 1412 + }, + "anglePrev": 0, + "axes": { + "#": 1413 + }, + "area": 2662.70319, + "mass": 2.6627, + "inverseMass": 0.37556, + "inertia": 4513.71283, + "inverseInertia": 0.00022, + "parent": { + "#": 1372 + }, + "sleepCounter": 0, + "region": { + "#": 1427 + } + }, + [ + { + "#": 1372 + } + ], + [ + { + "#": 1375 + }, + { + "#": 1376 + }, + { + "#": 1377 + }, + { + "#": 1378 + }, + { + "#": 1379 + }, + { + "#": 1380 + }, + { + "#": 1381 + }, + { + "#": 1382 + }, + { + "#": 1383 + }, + { + "#": 1384 + }, + { + "#": 1385 + }, + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + }, + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + }, + { + "#": 1394 + }, + { + "#": 1395 + }, + { + "#": 1396 + }, + { + "#": 1397 + }, + { + "#": 1398 + }, + { + "#": 1399 + }, + { + "#": 1400 + } + ], + { + "x": 319.278, + "y": 238.29675, + "index": 0, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 317.59, + "y": 245.14475, + "index": 1, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 314.313, + "y": 251.38975, + "index": 2, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 309.636, + "y": 256.66875, + "index": 3, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 303.832, + "y": 260.67475, + "index": 4, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 297.237, + "y": 263.17575, + "index": 5, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 290.236, + "y": 264.02575, + "index": 6, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 283.235, + "y": 263.17575, + "index": 7, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 276.64, + "y": 260.67475, + "index": 8, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 270.836, + "y": 256.66875, + "index": 9, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 266.159, + "y": 251.38975, + "index": 10, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 262.882, + "y": 245.14475, + "index": 11, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 261.194, + "y": 238.29675, + "index": 12, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 261.194, + "y": 231.24475, + "index": 13, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 262.882, + "y": 224.39675, + "index": 14, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 266.159, + "y": 218.15175, + "index": 15, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 270.836, + "y": 212.87275, + "index": 16, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 276.64, + "y": 208.86675, + "index": 17, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 283.235, + "y": 206.36575, + "index": 18, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 290.236, + "y": 205.51575, + "index": 19, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 297.237, + "y": 206.36575, + "index": 20, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 303.832, + "y": 208.86675, + "index": 21, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 309.636, + "y": 212.87275, + "index": 22, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 314.313, + "y": 218.15175, + "index": 23, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 317.59, + "y": 224.39675, + "index": 24, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 319.278, + "y": 231.24475, + "index": 25, + "body": { + "#": 1372 + }, + "isInternal": false + }, + { + "x": 290.236, + "y": 234.77075 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1408 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1410 + }, + "max": { + "#": 1411 + } + }, + { + "x": 261.194, + "y": 205.51575 + }, + { + "x": 319.278, + "y": 264.02575 + }, + { + "x": 290.236, + "y": 231.86348 + }, + [ + { + "#": 1414 + }, + { + "#": 1415 + }, + { + "#": 1416 + }, + { + "#": 1417 + }, + { + "#": 1418 + }, + { + "#": 1419 + }, + { + "#": 1420 + }, + { + "#": 1421 + }, + { + "#": 1422 + }, + { + "#": 1423 + }, + { + "#": 1424 + }, + { + "#": 1425 + }, + { + "#": 1426 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88549, + "y": -0.46465 + }, + { + "x": -0.7485, + "y": -0.66314 + }, + { + "x": -0.56804, + "y": -0.823 + }, + { + "x": -0.35459, + "y": -0.93502 + }, + { + "x": -0.12053, + "y": -0.99271 + }, + { + "x": 0.12053, + "y": -0.99271 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.56804, + "y": -0.823 + }, + { + "x": 0.7485, + "y": -0.66314 + }, + { + "x": 0.88549, + "y": -0.46465 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,4,5", + "startCol": 5, + "endCol": 6, + "startRow": 4, + "endRow": 5 + }, + { + "id": 29, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1429 + }, + "angle": 0, + "vertices": { + "#": 1430 + }, + "position": { + "#": 1447 + }, + "force": { + "#": 1448 + }, + "torque": 0, + "positionImpulse": { + "#": 1449 + }, + "constraintImpulse": { + "#": 1450 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1451 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1452 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1453 + }, + "circleRadius": 15.59883, + "bounds": { + "#": 1455 + }, + "positionPrev": { + "#": 1458 + }, + "anglePrev": 0, + "axes": { + "#": 1459 + }, + "area": 744.91581, + "mass": 0.74492, + "inverseMass": 1.34243, + "inertia": 353.30758, + "inverseInertia": 0.00283, + "parent": { + "#": 1428 + }, + "sleepCounter": 0, + "region": { + "#": 1468 + } + }, + [ + { + "#": 1428 + } + ], + [ + { + "#": 1431 + }, + { + "#": 1432 + }, + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + }, + { + "#": 1438 + }, + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + }, + { + "#": 1442 + }, + { + "#": 1443 + }, + { + "#": 1444 + }, + { + "#": 1445 + }, + { + "#": 1446 + } + ], + { + "x": 359.876, + "y": 223.85775, + "index": 0, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 357.547, + "y": 229.48075, + "index": 1, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 353.243, + "y": 233.78475, + "index": 2, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 347.62, + "y": 236.11375, + "index": 3, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 341.534, + "y": 236.11375, + "index": 4, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 335.911, + "y": 233.78475, + "index": 5, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 331.607, + "y": 229.48075, + "index": 6, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 329.278, + "y": 223.85775, + "index": 7, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 329.278, + "y": 217.77175, + "index": 8, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 331.607, + "y": 212.14875, + "index": 9, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 335.911, + "y": 207.84475, + "index": 10, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 341.534, + "y": 205.51575, + "index": 11, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 347.62, + "y": 205.51575, + "index": 12, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 353.243, + "y": 207.84475, + "index": 13, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 357.547, + "y": 212.14875, + "index": 14, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 359.876, + "y": 217.77175, + "index": 15, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 344.577, + "y": 220.81475 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1454 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1456 + }, + "max": { + "#": 1457 + } + }, + { + "x": 329.278, + "y": 205.51575 + }, + { + "x": 359.876, + "y": 236.11375 + }, + { + "x": 344.577, + "y": 217.90748 + }, + [ + { + "#": 1460 + }, + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + } + ], + { + "x": -0.92389, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92389 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92389 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92389, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,4,4", + "startCol": 6, + "endCol": 7, + "startRow": 4, + "endRow": 4 + }, + { + "id": 30, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1470 + }, + "angle": 0, + "vertices": { + "#": 1471 + }, + "position": { + "#": 1496 + }, + "force": { + "#": 1497 + }, + "torque": 0, + "positionImpulse": { + "#": 1498 + }, + "constraintImpulse": { + "#": 1499 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1500 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1501 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1502 + }, + "circleRadius": 23.038, + "bounds": { + "#": 1504 + }, + "positionPrev": { + "#": 1507 + }, + "anglePrev": 0, + "axes": { + "#": 1508 + }, + "area": 1648.4011, + "mass": 1.6484, + "inverseMass": 0.60665, + "inertia": 1729.88543, + "inverseInertia": 0.00058, + "parent": { + "#": 1469 + }, + "sleepCounter": 0, + "region": { + "#": 1521 + } + }, + [ + { + "#": 1469 + } + ], + [ + { + "#": 1472 + }, + { + "#": 1473 + }, + { + "#": 1474 + }, + { + "#": 1475 + }, + { + "#": 1476 + }, + { + "#": 1477 + }, + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + }, + { + "#": 1481 + }, + { + "#": 1482 + }, + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + }, + { + "#": 1487 + }, + { + "#": 1488 + }, + { + "#": 1489 + }, + { + "#": 1490 + }, + { + "#": 1491 + }, + { + "#": 1492 + }, + { + "#": 1493 + }, + { + "#": 1494 + }, + { + "#": 1495 + } + ], + { + "x": 415.558, + "y": 231.36375, + "index": 0, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 414.001, + "y": 237.17275, + "index": 1, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 410.994, + "y": 242.38175, + "index": 2, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 406.742, + "y": 246.63375, + "index": 3, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 401.533, + "y": 249.64075, + "index": 4, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 395.724, + "y": 251.19775, + "index": 5, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 389.71, + "y": 251.19775, + "index": 6, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 383.901, + "y": 249.64075, + "index": 7, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 378.692, + "y": 246.63375, + "index": 8, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 374.44, + "y": 242.38175, + "index": 9, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 371.433, + "y": 237.17275, + "index": 10, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 369.876, + "y": 231.36375, + "index": 11, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 369.876, + "y": 225.34975, + "index": 12, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 371.433, + "y": 219.54075, + "index": 13, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 374.44, + "y": 214.33175, + "index": 14, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 378.692, + "y": 210.07975, + "index": 15, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 383.901, + "y": 207.07275, + "index": 16, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 389.71, + "y": 205.51575, + "index": 17, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 395.724, + "y": 205.51575, + "index": 18, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 401.533, + "y": 207.07275, + "index": 19, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 406.742, + "y": 210.07975, + "index": 20, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 410.994, + "y": 214.33175, + "index": 21, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 414.001, + "y": 219.54075, + "index": 22, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 415.558, + "y": 225.34975, + "index": 23, + "body": { + "#": 1469 + }, + "isInternal": false + }, + { + "x": 392.717, + "y": 228.35675 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1503 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1505 + }, + "max": { + "#": 1506 + } + }, + { + "x": 369.876, + "y": 205.51575 + }, + { + "x": 415.558, + "y": 251.19775 + }, + { + "x": 392.717, + "y": 225.44948 + }, + [ + { + "#": 1509 + }, + { + "#": 1510 + }, + { + "#": 1511 + }, + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + }, + { + "#": 1515 + }, + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + }, + { + "#": 1520 + } + ], + { + "x": -0.96591, + "y": -0.25889 + }, + { + "x": -0.86606, + "y": -0.49995 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.49995, + "y": -0.86606 + }, + { + "x": -0.25889, + "y": -0.96591 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25889, + "y": -0.96591 + }, + { + "x": 0.49995, + "y": -0.86606 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86606, + "y": -0.49995 + }, + { + "x": 0.96591, + "y": -0.25889 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,4,5", + "startCol": 7, + "endCol": 8, + "startRow": 4, + "endRow": 5 + }, + { + "id": 31, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1523 + }, + "angle": 0, + "vertices": { + "#": 1524 + }, + "position": { + "#": 1545 + }, + "force": { + "#": 1546 + }, + "torque": 0, + "positionImpulse": { + "#": 1547 + }, + "constraintImpulse": { + "#": 1548 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1549 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1550 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1551 + }, + "circleRadius": 18.98026, + "bounds": { + "#": 1553 + }, + "positionPrev": { + "#": 1556 + }, + "anglePrev": 0, + "axes": { + "#": 1557 + }, + "area": 1113.27284, + "mass": 1.11327, + "inverseMass": 0.89825, + "inertia": 789.05473, + "inverseInertia": 0.00127, + "parent": { + "#": 1522 + }, + "sleepCounter": 0, + "region": { + "#": 1568 + } + }, + [ + { + "#": 1522 + } + ], + [ + { + "#": 1525 + }, + { + "#": 1526 + }, + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + }, + { + "#": 1533 + }, + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + }, + { + "#": 1537 + }, + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + }, + { + "#": 1543 + }, + { + "#": 1544 + } + ], + { + "x": 463.052, + "y": 227.23175, + "index": 0, + "body": { + "#": 1522 + }, + "isInternal": false + }, + { + "x": 461.217, + "y": 232.87975, + "index": 1, + "body": { + "#": 1522 + }, + "isInternal": false + }, + { + "x": 457.726, + "y": 237.68375, + "index": 2, + "body": { + "#": 1522 + }, + "isInternal": false + }, + { + "x": 452.922, + "y": 241.17475, + "index": 3, + "body": { + "#": 1522 + }, + "isInternal": false + }, + { + "x": 447.274, + "y": 243.00975, + "index": 4, + "body": { + "#": 1522 + }, + "isInternal": false + }, + { + "x": 441.336, + "y": 243.00975, + "index": 5, + "body": { + "#": 1522 + }, + "isInternal": false + }, + { + "x": 435.688, + "y": 241.17475, + "index": 6, + "body": { + "#": 1522 + }, + "isInternal": false + }, + { + "x": 430.884, + "y": 237.68375, + "index": 7, + "body": { + "#": 1522 + }, + "isInternal": false + }, + { + "x": 427.393, + "y": 232.87975, + "index": 8, + "body": { + "#": 1522 + }, + "isInternal": false + }, + { + "x": 425.558, + "y": 227.23175, + "index": 9, + "body": { + "#": 1522 + }, + "isInternal": false + }, + { + "x": 425.558, + "y": 221.29375, + "index": 10, + "body": { + "#": 1522 + }, + "isInternal": false + }, + { + "x": 427.393, + "y": 215.64575, + "index": 11, + "body": { + "#": 1522 + }, + "isInternal": false + }, + { + "x": 430.884, + "y": 210.84175, + "index": 12, + "body": { + "#": 1522 + }, + "isInternal": false + }, + { + "x": 435.688, + "y": 207.35075, + "index": 13, + "body": { + "#": 1522 + }, + "isInternal": false + }, + { + "x": 441.336, + "y": 205.51575, + "index": 14, + "body": { + "#": 1522 + }, + "isInternal": false + }, + { + "x": 447.274, + "y": 205.51575, + "index": 15, + "body": { + "#": 1522 + }, + "isInternal": false + }, + { + "x": 452.922, + "y": 207.35075, + "index": 16, + "body": { + "#": 1522 + }, + "isInternal": false + }, + { + "x": 457.726, + "y": 210.84175, + "index": 17, + "body": { + "#": 1522 + }, + "isInternal": false + }, + { + "x": 461.217, + "y": 215.64575, + "index": 18, + "body": { + "#": 1522 + }, + "isInternal": false + }, + { + "x": 463.052, + "y": 221.29375, + "index": 19, + "body": { + "#": 1522 + }, + "isInternal": false + }, + { + "x": 444.305, + "y": 224.26275 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1552 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1554 + }, + "max": { + "#": 1555 + } + }, + { + "x": 425.558, + "y": 205.51575 + }, + { + "x": 463.052, + "y": 243.00975 + }, + { + "x": 444.305, + "y": 221.35548 + }, + [ + { + "#": 1558 + }, + { + "#": 1559 + }, + { + "#": 1560 + }, + { + "#": 1561 + }, + { + "#": 1562 + }, + { + "#": 1563 + }, + { + "#": 1564 + }, + { + "#": 1565 + }, + { + "#": 1566 + }, + { + "#": 1567 + } + ], + { + "x": -0.95106, + "y": -0.30899 + }, + { + "x": -0.80896, + "y": -0.58786 + }, + { + "x": -0.58786, + "y": -0.80896 + }, + { + "x": -0.30899, + "y": -0.95106 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30899, + "y": -0.95106 + }, + { + "x": 0.58786, + "y": -0.80896 + }, + { + "x": 0.80896, + "y": -0.58786 + }, + { + "x": 0.95106, + "y": -0.30899 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,4,5", + "startCol": 8, + "endCol": 9, + "startRow": 4, + "endRow": 5 + }, + { + "id": 32, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1570 + }, + "angle": 0, + "vertices": { + "#": 1571 + }, + "position": { + "#": 1594 + }, + "force": { + "#": 1595 + }, + "torque": 0, + "positionImpulse": { + "#": 1596 + }, + "constraintImpulse": { + "#": 1597 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1598 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1599 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1600 + }, + "circleRadius": 20.27746, + "bounds": { + "#": 1602 + }, + "positionPrev": { + "#": 1605 + }, + "anglePrev": 0, + "axes": { + "#": 1606 + }, + "area": 1274.25309, + "mass": 1.27425, + "inverseMass": 0.78477, + "inertia": 1033.73143, + "inverseInertia": 0.00097, + "parent": { + "#": 1569 + }, + "sleepCounter": 0, + "region": { + "#": 1618 + } + }, + [ + { + "#": 1569 + } + ], + [ + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + }, + { + "#": 1577 + }, + { + "#": 1578 + }, + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + }, + { + "#": 1583 + }, + { + "#": 1584 + }, + { + "#": 1585 + }, + { + "#": 1586 + }, + { + "#": 1587 + }, + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + }, + { + "#": 1592 + }, + { + "#": 1593 + } + ], + { + "x": 513.194, + "y": 228.67875, + "index": 0, + "body": { + "#": 1569 + }, + "isInternal": false + }, + { + "x": 511.568, + "y": 234.21675, + "index": 1, + "body": { + "#": 1569 + }, + "isInternal": false + }, + { + "x": 508.448, + "y": 239.07175, + "index": 2, + "body": { + "#": 1569 + }, + "isInternal": false + }, + { + "x": 504.086, + "y": 242.85075, + "index": 3, + "body": { + "#": 1569 + }, + "isInternal": false + }, + { + "x": 498.836, + "y": 245.24875, + "index": 4, + "body": { + "#": 1569 + }, + "isInternal": false + }, + { + "x": 493.123, + "y": 246.06975, + "index": 5, + "body": { + "#": 1569 + }, + "isInternal": false + }, + { + "x": 487.41, + "y": 245.24875, + "index": 6, + "body": { + "#": 1569 + }, + "isInternal": false + }, + { + "x": 482.16, + "y": 242.85075, + "index": 7, + "body": { + "#": 1569 + }, + "isInternal": false + }, + { + "x": 477.798, + "y": 239.07175, + "index": 8, + "body": { + "#": 1569 + }, + "isInternal": false + }, + { + "x": 474.678, + "y": 234.21675, + "index": 9, + "body": { + "#": 1569 + }, + "isInternal": false + }, + { + "x": 473.052, + "y": 228.67875, + "index": 10, + "body": { + "#": 1569 + }, + "isInternal": false + }, + { + "x": 473.052, + "y": 222.90675, + "index": 11, + "body": { + "#": 1569 + }, + "isInternal": false + }, + { + "x": 474.678, + "y": 217.36875, + "index": 12, + "body": { + "#": 1569 + }, + "isInternal": false + }, + { + "x": 477.798, + "y": 212.51375, + "index": 13, + "body": { + "#": 1569 + }, + "isInternal": false + }, + { + "x": 482.16, + "y": 208.73475, + "index": 14, + "body": { + "#": 1569 + }, + "isInternal": false + }, + { + "x": 487.41, + "y": 206.33675, + "index": 15, + "body": { + "#": 1569 + }, + "isInternal": false + }, + { + "x": 493.123, + "y": 205.51575, + "index": 16, + "body": { + "#": 1569 + }, + "isInternal": false + }, + { + "x": 498.836, + "y": 206.33675, + "index": 17, + "body": { + "#": 1569 + }, + "isInternal": false + }, + { + "x": 504.086, + "y": 208.73475, + "index": 18, + "body": { + "#": 1569 + }, + "isInternal": false + }, + { + "x": 508.448, + "y": 212.51375, + "index": 19, + "body": { + "#": 1569 + }, + "isInternal": false + }, + { + "x": 511.568, + "y": 217.36875, + "index": 20, + "body": { + "#": 1569 + }, + "isInternal": false + }, + { + "x": 513.194, + "y": 222.90675, + "index": 21, + "body": { + "#": 1569 + }, + "isInternal": false + }, + { + "x": 493.123, + "y": 225.79275 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1601 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1603 + }, + "max": { + "#": 1604 + } + }, + { + "x": 473.052, + "y": 205.51575 + }, + { + "x": 513.194, + "y": 246.06975 + }, + { + "x": 493.123, + "y": 222.88548 + }, + [ + { + "#": 1607 + }, + { + "#": 1608 + }, + { + "#": 1609 + }, + { + "#": 1610 + }, + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + }, + { + "#": 1614 + }, + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + } + ], + { + "x": -0.9595, + "y": -0.28172 + }, + { + "x": -0.84126, + "y": -0.54063 + }, + { + "x": -0.65479, + "y": -0.75581 + }, + { + "x": -0.41547, + "y": -0.90961 + }, + { + "x": -0.14225, + "y": -0.98983 + }, + { + "x": 0.14225, + "y": -0.98983 + }, + { + "x": 0.41547, + "y": -0.90961 + }, + { + "x": 0.65479, + "y": -0.75581 + }, + { + "x": 0.84126, + "y": -0.54063 + }, + { + "x": 0.9595, + "y": -0.28172 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,4,5", + "startCol": 9, + "endCol": 10, + "startRow": 4, + "endRow": 5 + }, + { + "id": 33, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1620 + }, + "angle": 0, + "vertices": { + "#": 1621 + }, + "position": { + "#": 1648 + }, + "force": { + "#": 1649 + }, + "torque": 0, + "positionImpulse": { + "#": 1650 + }, + "constraintImpulse": { + "#": 1651 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1652 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1653 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1654 + }, + "circleRadius": 29.89255, + "bounds": { + "#": 1656 + }, + "positionPrev": { + "#": 1659 + }, + "anglePrev": 0, + "axes": { + "#": 1660 + }, + "area": 2780.00048, + "mass": 2.78, + "inverseMass": 0.35971, + "inertia": 4920.14782, + "inverseInertia": 0.0002, + "parent": { + "#": 1619 + }, + "sleepCounter": 0, + "region": { + "#": 1674 + } + }, + [ + { + "#": 1619 + } + ], + [ + { + "#": 1622 + }, + { + "#": 1623 + }, + { + "#": 1624 + }, + { + "#": 1625 + }, + { + "#": 1626 + }, + { + "#": 1627 + }, + { + "#": 1628 + }, + { + "#": 1629 + }, + { + "#": 1630 + }, + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + }, + { + "#": 1637 + }, + { + "#": 1638 + }, + { + "#": 1639 + }, + { + "#": 1640 + }, + { + "#": 1641 + }, + { + "#": 1642 + }, + { + "#": 1643 + }, + { + "#": 1644 + }, + { + "#": 1645 + }, + { + "#": 1646 + }, + { + "#": 1647 + } + ], + { + "x": 582.544, + "y": 239.01175, + "index": 0, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 580.819, + "y": 246.00875, + "index": 1, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 577.47, + "y": 252.38975, + "index": 2, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 572.691, + "y": 257.78375, + "index": 3, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 566.761, + "y": 261.87775, + "index": 4, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 560.023, + "y": 264.43275, + "index": 5, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 552.869, + "y": 265.30175, + "index": 6, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 545.715, + "y": 264.43275, + "index": 7, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 538.977, + "y": 261.87775, + "index": 8, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 533.047, + "y": 257.78375, + "index": 9, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 528.268, + "y": 252.38975, + "index": 10, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 524.919, + "y": 246.00875, + "index": 11, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 523.194, + "y": 239.01175, + "index": 12, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 523.194, + "y": 231.80575, + "index": 13, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 524.919, + "y": 224.80875, + "index": 14, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 528.268, + "y": 218.42775, + "index": 15, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 533.047, + "y": 213.03375, + "index": 16, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 538.977, + "y": 208.93975, + "index": 17, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 545.715, + "y": 206.38475, + "index": 18, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 552.869, + "y": 205.51575, + "index": 19, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 560.023, + "y": 206.38475, + "index": 20, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 566.761, + "y": 208.93975, + "index": 21, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 572.691, + "y": 213.03375, + "index": 22, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 577.47, + "y": 218.42775, + "index": 23, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 580.819, + "y": 224.80875, + "index": 24, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 582.544, + "y": 231.80575, + "index": 25, + "body": { + "#": 1619 + }, + "isInternal": false + }, + { + "x": 552.869, + "y": 235.40875 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1655 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1657 + }, + "max": { + "#": 1658 + } + }, + { + "x": 523.194, + "y": 205.51575 + }, + { + "x": 582.544, + "y": 265.30175 + }, + { + "x": 552.869, + "y": 232.50148 + }, + [ + { + "#": 1661 + }, + { + "#": 1662 + }, + { + "#": 1663 + }, + { + "#": 1664 + }, + { + "#": 1665 + }, + { + "#": 1666 + }, + { + "#": 1667 + }, + { + "#": 1668 + }, + { + "#": 1669 + }, + { + "#": 1670 + }, + { + "#": 1671 + }, + { + "#": 1672 + }, + { + "#": 1673 + } + ], + { + "x": -0.97093, + "y": -0.23937 + }, + { + "x": -0.88546, + "y": -0.46472 + }, + { + "x": -0.74849, + "y": -0.66315 + }, + { + "x": -0.56814, + "y": -0.82293 + }, + { + "x": -0.35456, + "y": -0.93503 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.35456, + "y": -0.93503 + }, + { + "x": 0.56814, + "y": -0.82293 + }, + { + "x": 0.74849, + "y": -0.66315 + }, + { + "x": 0.88546, + "y": -0.46472 + }, + { + "x": 0.97093, + "y": -0.23937 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,12,4,5", + "startCol": 10, + "endCol": 12, + "startRow": 4, + "endRow": 5 + }, + { + "id": 34, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1676 + }, + "angle": 0, + "vertices": { + "#": 1677 + }, + "position": { + "#": 1704 + }, + "force": { + "#": 1705 + }, + "torque": 0, + "positionImpulse": { + "#": 1706 + }, + "constraintImpulse": { + "#": 1707 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1708 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1709 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1710 + }, + "circleRadius": 28.56629, + "bounds": { + "#": 1712 + }, + "positionPrev": { + "#": 1715 + }, + "anglePrev": 0, + "axes": { + "#": 1716 + }, + "area": 2538.75797, + "mass": 2.53876, + "inverseMass": 0.39389, + "inertia": 4103.27863, + "inverseInertia": 0.00024, + "parent": { + "#": 1675 + }, + "sleepCounter": 0, + "region": { + "#": 1730 + } + }, + [ + { + "#": 1675 + } + ], + [ + { + "#": 1678 + }, + { + "#": 1679 + }, + { + "#": 1680 + }, + { + "#": 1681 + }, + { + "#": 1682 + }, + { + "#": 1683 + }, + { + "#": 1684 + }, + { + "#": 1685 + }, + { + "#": 1686 + }, + { + "#": 1687 + }, + { + "#": 1688 + }, + { + "#": 1689 + }, + { + "#": 1690 + }, + { + "#": 1691 + }, + { + "#": 1692 + }, + { + "#": 1693 + }, + { + "#": 1694 + }, + { + "#": 1695 + }, + { + "#": 1696 + }, + { + "#": 1697 + }, + { + "#": 1698 + }, + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + }, + { + "#": 1703 + } + ], + { + "x": 649.26, + "y": 237.52475, + "index": 0, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 647.612, + "y": 244.21175, + "index": 1, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 644.412, + "y": 250.30975, + "index": 2, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 639.845, + "y": 255.46375, + "index": 3, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 634.177, + "y": 259.37575, + "index": 4, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 627.738, + "y": 261.81775, + "index": 5, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 620.902, + "y": 262.64775, + "index": 6, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 614.066, + "y": 261.81775, + "index": 7, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 607.627, + "y": 259.37575, + "index": 8, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 601.959, + "y": 255.46375, + "index": 9, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 597.392, + "y": 250.30975, + "index": 10, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 594.192, + "y": 244.21175, + "index": 11, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 592.544, + "y": 237.52475, + "index": 12, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 592.544, + "y": 230.63875, + "index": 13, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 594.192, + "y": 223.95175, + "index": 14, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 597.392, + "y": 217.85375, + "index": 15, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 601.959, + "y": 212.69975, + "index": 16, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 607.627, + "y": 208.78775, + "index": 17, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 614.066, + "y": 206.34575, + "index": 18, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 620.902, + "y": 205.51575, + "index": 19, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 627.738, + "y": 206.34575, + "index": 20, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 634.177, + "y": 208.78775, + "index": 21, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 639.845, + "y": 212.69975, + "index": 22, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 644.412, + "y": 217.85375, + "index": 23, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 647.612, + "y": 223.95175, + "index": 24, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 649.26, + "y": 230.63875, + "index": 25, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 620.902, + "y": 234.08175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1711 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1713 + }, + "max": { + "#": 1714 + } + }, + { + "x": 592.544, + "y": 205.51575 + }, + { + "x": 649.26, + "y": 262.64775 + }, + { + "x": 620.902, + "y": 231.17448 + }, + [ + { + "#": 1717 + }, + { + "#": 1718 + }, + { + "#": 1719 + }, + { + "#": 1720 + }, + { + "#": 1721 + }, + { + "#": 1722 + }, + { + "#": 1723 + }, + { + "#": 1724 + }, + { + "#": 1725 + }, + { + "#": 1726 + }, + { + "#": 1727 + }, + { + "#": 1728 + }, + { + "#": 1729 + } + ], + { + "x": -0.97095, + "y": -0.23929 + }, + { + "x": -0.88548, + "y": -0.46467 + }, + { + "x": -0.74844, + "y": -0.6632 + }, + { + "x": -0.56803, + "y": -0.82301 + }, + { + "x": -0.35461, + "y": -0.93502 + }, + { + "x": -0.12053, + "y": -0.99271 + }, + { + "x": 0.12053, + "y": -0.99271 + }, + { + "x": 0.35461, + "y": -0.93502 + }, + { + "x": 0.56803, + "y": -0.82301 + }, + { + "x": 0.74844, + "y": -0.6632 + }, + { + "x": 0.88548, + "y": -0.46467 + }, + { + "x": 0.97095, + "y": -0.23929 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,13,4,5", + "startCol": 12, + "endCol": 13, + "startRow": 4, + "endRow": 5 + }, + { + "id": 35, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1732 + }, + "angle": 0, + "vertices": { + "#": 1733 + }, + "position": { + "#": 1756 + }, + "force": { + "#": 1757 + }, + "torque": 0, + "positionImpulse": { + "#": 1758 + }, + "constraintImpulse": { + "#": 1759 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1760 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1761 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1762 + }, + "circleRadius": 21.48386, + "bounds": { + "#": 1764 + }, + "positionPrev": { + "#": 1767 + }, + "anglePrev": 0, + "axes": { + "#": 1768 + }, + "area": 1430.37524, + "mass": 1.43038, + "inverseMass": 0.69912, + "inertia": 1302.55569, + "inverseInertia": 0.00077, + "parent": { + "#": 1731 + }, + "sleepCounter": 0, + "region": { + "#": 1780 + } + }, + [ + { + "#": 1731 + } + ], + [ + { + "#": 1734 + }, + { + "#": 1735 + }, + { + "#": 1736 + }, + { + "#": 1737 + }, + { + "#": 1738 + }, + { + "#": 1739 + }, + { + "#": 1740 + }, + { + "#": 1741 + }, + { + "#": 1742 + }, + { + "#": 1743 + }, + { + "#": 1744 + }, + { + "#": 1745 + }, + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + }, + { + "#": 1751 + }, + { + "#": 1752 + }, + { + "#": 1753 + }, + { + "#": 1754 + }, + { + "#": 1755 + } + ], + { + "x": 142.53, + "y": 299.84275, + "index": 0, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 140.807, + "y": 305.71075, + "index": 1, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 137.501, + "y": 310.85475, + "index": 2, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 132.88, + "y": 314.85875, + "index": 3, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 127.318, + "y": 317.39975, + "index": 4, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 121.265, + "y": 318.26975, + "index": 5, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 115.212, + "y": 317.39975, + "index": 6, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 109.65, + "y": 314.85875, + "index": 7, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 105.029, + "y": 310.85475, + "index": 8, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 101.723, + "y": 305.71075, + "index": 9, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 100, + "y": 299.84275, + "index": 10, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 100, + "y": 293.72875, + "index": 11, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 101.723, + "y": 287.86075, + "index": 12, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 105.029, + "y": 282.71675, + "index": 13, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 109.65, + "y": 278.71275, + "index": 14, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 115.212, + "y": 276.17175, + "index": 15, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 121.265, + "y": 275.30175, + "index": 16, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 127.318, + "y": 276.17175, + "index": 17, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 132.88, + "y": 278.71275, + "index": 18, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 137.501, + "y": 282.71675, + "index": 19, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 140.807, + "y": 287.86075, + "index": 20, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 142.53, + "y": 293.72875, + "index": 21, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 121.265, + "y": 296.78575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1763 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1765 + }, + "max": { + "#": 1766 + } + }, + { + "x": 100, + "y": 275.30175 + }, + { + "x": 142.53, + "y": 318.26975 + }, + { + "x": 121.265, + "y": 293.87848 + }, + [ + { + "#": 1769 + }, + { + "#": 1770 + }, + { + "#": 1771 + }, + { + "#": 1772 + }, + { + "#": 1773 + }, + { + "#": 1774 + }, + { + "#": 1775 + }, + { + "#": 1776 + }, + { + "#": 1777 + }, + { + "#": 1778 + }, + { + "#": 1779 + } + ], + { + "x": -0.95949, + "y": -0.28173 + }, + { + "x": -0.84124, + "y": -0.54066 + }, + { + "x": -0.65485, + "y": -0.75576 + }, + { + "x": -0.41554, + "y": -0.90958 + }, + { + "x": -0.14227, + "y": -0.98983 + }, + { + "x": 0.14227, + "y": -0.98983 + }, + { + "x": 0.41554, + "y": -0.90958 + }, + { + "x": 0.65485, + "y": -0.75576 + }, + { + "x": 0.84124, + "y": -0.54066 + }, + { + "x": 0.95949, + "y": -0.28173 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,2,5,6", + "startCol": 2, + "endCol": 2, + "startRow": 5, + "endRow": 6 + }, + { + "id": 36, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1782 + }, + "angle": 0, + "vertices": { + "#": 1783 + }, + "position": { + "#": 1804 + }, + "force": { + "#": 1805 + }, + "torque": 0, + "positionImpulse": { + "#": 1806 + }, + "constraintImpulse": { + "#": 1807 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1808 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1809 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1810 + }, + "circleRadius": 19.94155, + "bounds": { + "#": 1812 + }, + "positionPrev": { + "#": 1815 + }, + "anglePrev": 0, + "axes": { + "#": 1816 + }, + "area": 1228.85385, + "mass": 1.22885, + "inverseMass": 0.81377, + "inertia": 961.40057, + "inverseInertia": 0.00104, + "parent": { + "#": 1781 + }, + "sleepCounter": 0, + "region": { + "#": 1827 + } + }, + [ + { + "#": 1781 + } + ], + [ + { + "#": 1784 + }, + { + "#": 1785 + }, + { + "#": 1786 + }, + { + "#": 1787 + }, + { + "#": 1788 + }, + { + "#": 1789 + }, + { + "#": 1790 + }, + { + "#": 1791 + }, + { + "#": 1792 + }, + { + "#": 1793 + }, + { + "#": 1794 + }, + { + "#": 1795 + }, + { + "#": 1796 + }, + { + "#": 1797 + }, + { + "#": 1798 + }, + { + "#": 1799 + }, + { + "#": 1800 + }, + { + "#": 1801 + }, + { + "#": 1802 + }, + { + "#": 1803 + } + ], + { + "x": 191.922, + "y": 298.11775, + "index": 0, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 189.994, + "y": 304.05075, + "index": 1, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 186.327, + "y": 309.09875, + "index": 2, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 181.279, + "y": 312.76575, + "index": 3, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 175.346, + "y": 314.69375, + "index": 4, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 169.106, + "y": 314.69375, + "index": 5, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 163.173, + "y": 312.76575, + "index": 6, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 158.125, + "y": 309.09875, + "index": 7, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 154.458, + "y": 304.05075, + "index": 8, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 152.53, + "y": 298.11775, + "index": 9, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 152.53, + "y": 291.87775, + "index": 10, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 154.458, + "y": 285.94475, + "index": 11, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 158.125, + "y": 280.89675, + "index": 12, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 163.173, + "y": 277.22975, + "index": 13, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 169.106, + "y": 275.30175, + "index": 14, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 175.346, + "y": 275.30175, + "index": 15, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 181.279, + "y": 277.22975, + "index": 16, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 186.327, + "y": 280.89675, + "index": 17, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 189.994, + "y": 285.94475, + "index": 18, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 191.922, + "y": 291.87775, + "index": 19, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 172.226, + "y": 294.99775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1811 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1813 + }, + "max": { + "#": 1814 + } + }, + { + "x": 152.53, + "y": 275.30175 + }, + { + "x": 191.922, + "y": 314.69375 + }, + { + "x": 172.226, + "y": 292.09048 + }, + [ + { + "#": 1817 + }, + { + "#": 1818 + }, + { + "#": 1819 + }, + { + "#": 1820 + }, + { + "#": 1821 + }, + { + "#": 1822 + }, + { + "#": 1823 + }, + { + "#": 1824 + }, + { + "#": 1825 + }, + { + "#": 1826 + } + ], + { + "x": -0.95104, + "y": -0.30905 + }, + { + "x": -0.80906, + "y": -0.58772 + }, + { + "x": -0.58772, + "y": -0.80906 + }, + { + "x": -0.30905, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30905, + "y": -0.95104 + }, + { + "x": 0.58772, + "y": -0.80906 + }, + { + "x": 0.80906, + "y": -0.58772 + }, + { + "x": 0.95104, + "y": -0.30905 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,3,5,6", + "startCol": 3, + "endCol": 3, + "startRow": 5, + "endRow": 6 + }, + { + "id": 37, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1829 + }, + "angle": 0, + "vertices": { + "#": 1830 + }, + "position": { + "#": 1851 + }, + "force": { + "#": 1852 + }, + "torque": 0, + "positionImpulse": { + "#": 1853 + }, + "constraintImpulse": { + "#": 1854 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1855 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1856 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1857 + }, + "circleRadius": 18.01344, + "bounds": { + "#": 1859 + }, + "positionPrev": { + "#": 1862 + }, + "anglePrev": 0, + "axes": { + "#": 1863 + }, + "area": 1002.71038, + "mass": 1.00271, + "inverseMass": 0.9973, + "inertia": 640.11047, + "inverseInertia": 0.00156, + "parent": { + "#": 1828 + }, + "sleepCounter": 0, + "region": { + "#": 1874 + } + }, + [ + { + "#": 1828 + } + ], + [ + { + "#": 1831 + }, + { + "#": 1832 + }, + { + "#": 1833 + }, + { + "#": 1834 + }, + { + "#": 1835 + }, + { + "#": 1836 + }, + { + "#": 1837 + }, + { + "#": 1838 + }, + { + "#": 1839 + }, + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + }, + { + "#": 1844 + }, + { + "#": 1845 + }, + { + "#": 1846 + }, + { + "#": 1847 + }, + { + "#": 1848 + }, + { + "#": 1849 + }, + { + "#": 1850 + } + ], + { + "x": 237.506, + "y": 295.91175, + "index": 0, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 235.764, + "y": 301.27175, + "index": 1, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 232.451, + "y": 305.83075, + "index": 2, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 227.892, + "y": 309.14375, + "index": 3, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 222.532, + "y": 310.88575, + "index": 4, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 216.896, + "y": 310.88575, + "index": 5, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 211.536, + "y": 309.14375, + "index": 6, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 206.977, + "y": 305.83075, + "index": 7, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 203.664, + "y": 301.27175, + "index": 8, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 201.922, + "y": 295.91175, + "index": 9, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 201.922, + "y": 290.27575, + "index": 10, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 203.664, + "y": 284.91575, + "index": 11, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 206.977, + "y": 280.35675, + "index": 12, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 211.536, + "y": 277.04375, + "index": 13, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 216.896, + "y": 275.30175, + "index": 14, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 222.532, + "y": 275.30175, + "index": 15, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 227.892, + "y": 277.04375, + "index": 16, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 232.451, + "y": 280.35675, + "index": 17, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 235.764, + "y": 284.91575, + "index": 18, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 237.506, + "y": 290.27575, + "index": 19, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 219.714, + "y": 293.09375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1858 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1860 + }, + "max": { + "#": 1861 + } + }, + { + "x": 201.922, + "y": 275.30175 + }, + { + "x": 237.506, + "y": 310.88575 + }, + { + "x": 219.714, + "y": 290.18648 + }, + [ + { + "#": 1864 + }, + { + "#": 1865 + }, + { + "#": 1866 + }, + { + "#": 1867 + }, + { + "#": 1868 + }, + { + "#": 1869 + }, + { + "#": 1870 + }, + { + "#": 1871 + }, + { + "#": 1872 + }, + { + "#": 1873 + } + ], + { + "x": -0.95103, + "y": -0.30909 + }, + { + "x": -0.80896, + "y": -0.58787 + }, + { + "x": -0.58787, + "y": -0.80896 + }, + { + "x": -0.30909, + "y": -0.95103 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30909, + "y": -0.95103 + }, + { + "x": 0.58787, + "y": -0.80896 + }, + { + "x": 0.80896, + "y": -0.58787 + }, + { + "x": 0.95103, + "y": -0.30909 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,5,6", + "startCol": 4, + "endCol": 4, + "startRow": 5, + "endRow": 6 + }, + { + "id": 38, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1876 + }, + "angle": 0, + "vertices": { + "#": 1877 + }, + "position": { + "#": 1904 + }, + "force": { + "#": 1905 + }, + "torque": 0, + "positionImpulse": { + "#": 1906 + }, + "constraintImpulse": { + "#": 1907 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1908 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1909 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1910 + }, + "circleRadius": 24.21804, + "bounds": { + "#": 1912 + }, + "positionPrev": { + "#": 1915 + }, + "anglePrev": 0, + "axes": { + "#": 1916 + }, + "area": 1824.67855, + "mass": 1.82468, + "inverseMass": 0.54804, + "inertia": 2119.63531, + "inverseInertia": 0.00047, + "parent": { + "#": 1875 + }, + "sleepCounter": 0, + "region": { + "#": 1930 + } + }, + [ + { + "#": 1875 + } + ], + [ + { + "#": 1878 + }, + { + "#": 1879 + }, + { + "#": 1880 + }, + { + "#": 1881 + }, + { + "#": 1882 + }, + { + "#": 1883 + }, + { + "#": 1884 + }, + { + "#": 1885 + }, + { + "#": 1886 + }, + { + "#": 1887 + }, + { + "#": 1888 + }, + { + "#": 1889 + }, + { + "#": 1890 + }, + { + "#": 1891 + }, + { + "#": 1892 + }, + { + "#": 1893 + }, + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + }, + { + "#": 1902 + }, + { + "#": 1903 + } + ], + { + "x": 295.588, + "y": 302.43875, + "index": 0, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 294.191, + "y": 308.10775, + "index": 1, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 291.478, + "y": 313.27675, + "index": 2, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 287.607, + "y": 317.64675, + "index": 3, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 282.802, + "y": 320.96375, + "index": 4, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 277.343, + "y": 323.03375, + "index": 5, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 271.547, + "y": 323.73775, + "index": 6, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 265.751, + "y": 323.03375, + "index": 7, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 260.292, + "y": 320.96375, + "index": 8, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 255.487, + "y": 317.64675, + "index": 9, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 251.616, + "y": 313.27675, + "index": 10, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 248.903, + "y": 308.10775, + "index": 11, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 247.506, + "y": 302.43875, + "index": 12, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 247.506, + "y": 296.60075, + "index": 13, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 248.903, + "y": 290.93175, + "index": 14, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 251.616, + "y": 285.76275, + "index": 15, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 255.487, + "y": 281.39275, + "index": 16, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 260.292, + "y": 278.07575, + "index": 17, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 265.751, + "y": 276.00575, + "index": 18, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 271.547, + "y": 275.30175, + "index": 19, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 277.343, + "y": 276.00575, + "index": 20, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 282.802, + "y": 278.07575, + "index": 21, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 287.607, + "y": 281.39275, + "index": 22, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 291.478, + "y": 285.76275, + "index": 23, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 294.191, + "y": 290.93175, + "index": 24, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 295.588, + "y": 296.60075, + "index": 25, + "body": { + "#": 1875 + }, + "isInternal": false + }, + { + "x": 271.547, + "y": 299.51975 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1911 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1913 + }, + "max": { + "#": 1914 + } + }, + { + "x": 247.506, + "y": 275.30175 + }, + { + "x": 295.588, + "y": 323.73775 + }, + { + "x": 271.547, + "y": 296.61248 + }, + [ + { + "#": 1917 + }, + { + "#": 1918 + }, + { + "#": 1919 + }, + { + "#": 1920 + }, + { + "#": 1921 + }, + { + "#": 1922 + }, + { + "#": 1923 + }, + { + "#": 1924 + }, + { + "#": 1925 + }, + { + "#": 1926 + }, + { + "#": 1927 + }, + { + "#": 1928 + }, + { + "#": 1929 + } + ], + { + "x": -0.97095, + "y": -0.23927 + }, + { + "x": -0.88545, + "y": -0.46474 + }, + { + "x": -0.74855, + "y": -0.66308 + }, + { + "x": -0.56811, + "y": -0.82296 + }, + { + "x": -0.35456, + "y": -0.93503 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.35456, + "y": -0.93503 + }, + { + "x": 0.56811, + "y": -0.82296 + }, + { + "x": 0.74855, + "y": -0.66308 + }, + { + "x": 0.88545, + "y": -0.46474 + }, + { + "x": 0.97095, + "y": -0.23927 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,5,6", + "startCol": 5, + "endCol": 6, + "startRow": 5, + "endRow": 6 + }, + { + "id": 39, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1932 + }, + "angle": 0, + "vertices": { + "#": 1933 + }, + "position": { + "#": 1960 + }, + "force": { + "#": 1961 + }, + "torque": 0, + "positionImpulse": { + "#": 1962 + }, + "constraintImpulse": { + "#": 1963 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1964 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1965 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1966 + }, + "circleRadius": 28.18499, + "bounds": { + "#": 1968 + }, + "positionPrev": { + "#": 1971 + }, + "anglePrev": 0, + "axes": { + "#": 1972 + }, + "area": 2471.43693, + "mass": 2.47144, + "inverseMass": 0.40462, + "inertia": 3888.54807, + "inverseInertia": 0.00026, + "parent": { + "#": 1931 + }, + "sleepCounter": 0, + "region": { + "#": 1986 + } + }, + [ + { + "#": 1931 + } + ], + [ + { + "#": 1934 + }, + { + "#": 1935 + }, + { + "#": 1936 + }, + { + "#": 1937 + }, + { + "#": 1938 + }, + { + "#": 1939 + }, + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + }, + { + "#": 1944 + }, + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + }, + { + "#": 1948 + }, + { + "#": 1949 + }, + { + "#": 1950 + }, + { + "#": 1951 + }, + { + "#": 1952 + }, + { + "#": 1953 + }, + { + "#": 1954 + }, + { + "#": 1955 + }, + { + "#": 1956 + }, + { + "#": 1957 + }, + { + "#": 1958 + }, + { + "#": 1959 + } + ], + { + "x": 361.546, + "y": 306.88375, + "index": 0, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 359.92, + "y": 313.48175, + "index": 1, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 356.763, + "y": 319.49775, + "index": 2, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 352.257, + "y": 324.58375, + "index": 3, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 346.665, + "y": 328.44375, + "index": 4, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 340.312, + "y": 330.85275, + "index": 5, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 333.567, + "y": 331.67175, + "index": 6, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 326.822, + "y": 330.85275, + "index": 7, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 320.469, + "y": 328.44375, + "index": 8, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 314.877, + "y": 324.58375, + "index": 9, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 310.371, + "y": 319.49775, + "index": 10, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 307.214, + "y": 313.48175, + "index": 11, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 305.588, + "y": 306.88375, + "index": 12, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 305.588, + "y": 300.08975, + "index": 13, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 307.214, + "y": 293.49175, + "index": 14, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 310.371, + "y": 287.47575, + "index": 15, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 314.877, + "y": 282.38975, + "index": 16, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 320.469, + "y": 278.52975, + "index": 17, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 326.822, + "y": 276.12075, + "index": 18, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 333.567, + "y": 275.30175, + "index": 19, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 340.312, + "y": 276.12075, + "index": 20, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 346.665, + "y": 278.52975, + "index": 21, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 352.257, + "y": 282.38975, + "index": 22, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 356.763, + "y": 287.47575, + "index": 23, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 359.92, + "y": 293.49175, + "index": 24, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 361.546, + "y": 300.08975, + "index": 25, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 333.567, + "y": 303.48675 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1967 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1969 + }, + "max": { + "#": 1970 + } + }, + { + "x": 305.588, + "y": 275.30175 + }, + { + "x": 361.546, + "y": 331.67175 + }, + { + "x": 333.567, + "y": 300.57948 + }, + [ + { + "#": 1973 + }, + { + "#": 1974 + }, + { + "#": 1975 + }, + { + "#": 1976 + }, + { + "#": 1977 + }, + { + "#": 1978 + }, + { + "#": 1979 + }, + { + "#": 1980 + }, + { + "#": 1981 + }, + { + "#": 1982 + }, + { + "#": 1983 + }, + { + "#": 1984 + }, + { + "#": 1985 + } + ], + { + "x": -0.97095, + "y": -0.23928 + }, + { + "x": -0.88548, + "y": -0.46467 + }, + { + "x": -0.7485, + "y": -0.66314 + }, + { + "x": -0.56808, + "y": -0.82298 + }, + { + "x": -0.35456, + "y": -0.93503 + }, + { + "x": -0.12054, + "y": -0.99271 + }, + { + "x": 0.12054, + "y": -0.99271 + }, + { + "x": 0.35456, + "y": -0.93503 + }, + { + "x": 0.56808, + "y": -0.82298 + }, + { + "x": 0.7485, + "y": -0.66314 + }, + { + "x": 0.88548, + "y": -0.46467 + }, + { + "x": 0.97095, + "y": -0.23928 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,5,6", + "startCol": 6, + "endCol": 7, + "startRow": 5, + "endRow": 6 + }, + { + "id": 40, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1988 + }, + "angle": 0, + "vertices": { + "#": 1989 + }, + "position": { + "#": 2014 + }, + "force": { + "#": 2015 + }, + "torque": 0, + "positionImpulse": { + "#": 2016 + }, + "constraintImpulse": { + "#": 2017 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2018 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2019 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2020 + }, + "circleRadius": 22.32169, + "bounds": { + "#": 2022 + }, + "positionPrev": { + "#": 2025 + }, + "anglePrev": 0, + "axes": { + "#": 2026 + }, + "area": 1547.54745, + "mass": 1.54755, + "inverseMass": 0.64618, + "inertia": 1524.68279, + "inverseInertia": 0.00066, + "parent": { + "#": 1987 + }, + "sleepCounter": 0, + "region": { + "#": 2039 + } + }, + [ + { + "#": 1987 + } + ], + [ + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + }, + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + }, + { + "#": 1996 + }, + { + "#": 1997 + }, + { + "#": 1998 + }, + { + "#": 1999 + }, + { + "#": 2000 + }, + { + "#": 2001 + }, + { + "#": 2002 + }, + { + "#": 2003 + }, + { + "#": 2004 + }, + { + "#": 2005 + }, + { + "#": 2006 + }, + { + "#": 2007 + }, + { + "#": 2008 + }, + { + "#": 2009 + }, + { + "#": 2010 + }, + { + "#": 2011 + }, + { + "#": 2012 + }, + { + "#": 2013 + } + ], + { + "x": 415.808, + "y": 300.34675, + "index": 0, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 414.3, + "y": 305.97475, + "index": 1, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 411.386, + "y": 311.02175, + "index": 2, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 407.266, + "y": 315.14175, + "index": 3, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 402.219, + "y": 318.05575, + "index": 4, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 396.591, + "y": 319.56375, + "index": 5, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 390.763, + "y": 319.56375, + "index": 6, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 385.135, + "y": 318.05575, + "index": 7, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 380.088, + "y": 315.14175, + "index": 8, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 375.968, + "y": 311.02175, + "index": 9, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 373.054, + "y": 305.97475, + "index": 10, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 371.546, + "y": 300.34675, + "index": 11, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 371.546, + "y": 294.51875, + "index": 12, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 373.054, + "y": 288.89075, + "index": 13, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 375.968, + "y": 283.84375, + "index": 14, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 380.088, + "y": 279.72375, + "index": 15, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 385.135, + "y": 276.80975, + "index": 16, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 390.763, + "y": 275.30175, + "index": 17, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 396.591, + "y": 275.30175, + "index": 18, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 402.219, + "y": 276.80975, + "index": 19, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 407.266, + "y": 279.72375, + "index": 20, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 411.386, + "y": 283.84375, + "index": 21, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 414.3, + "y": 288.89075, + "index": 22, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 415.808, + "y": 294.51875, + "index": 23, + "body": { + "#": 1987 + }, + "isInternal": false + }, + { + "x": 393.677, + "y": 297.43275 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2021 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2023 + }, + "max": { + "#": 2024 + } + }, + { + "x": 371.546, + "y": 275.30175 + }, + { + "x": 415.808, + "y": 319.56375 + }, + { + "x": 393.677, + "y": 294.52548 + }, + [ + { + "#": 2027 + }, + { + "#": 2028 + }, + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + }, + { + "#": 2032 + }, + { + "#": 2033 + }, + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + }, + { + "#": 2038 + } + ], + { + "x": -0.96593, + "y": -0.25882 + }, + { + "x": -0.86602, + "y": -0.50001 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.50001, + "y": -0.86602 + }, + { + "x": -0.25882, + "y": -0.96593 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25882, + "y": -0.96593 + }, + { + "x": 0.50001, + "y": -0.86602 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86602, + "y": -0.50001 + }, + { + "x": 0.96593, + "y": -0.25882 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,5,6", + "startCol": 7, + "endCol": 8, + "startRow": 5, + "endRow": 6 + }, + { + "id": 41, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2041 + }, + "angle": 0, + "vertices": { + "#": 2042 + }, + "position": { + "#": 2063 + }, + "force": { + "#": 2064 + }, + "torque": 0, + "positionImpulse": { + "#": 2065 + }, + "constraintImpulse": { + "#": 2066 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2067 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2068 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2069 + }, + "circleRadius": 18.48, + "bounds": { + "#": 2071 + }, + "positionPrev": { + "#": 2074 + }, + "anglePrev": 0, + "axes": { + "#": 2075 + }, + "area": 1055.30679, + "mass": 1.05531, + "inverseMass": 0.94759, + "inertia": 709.02471, + "inverseInertia": 0.00141, + "parent": { + "#": 2040 + }, + "sleepCounter": 0, + "region": { + "#": 2086 + } + }, + [ + { + "#": 2040 + } + ], + [ + { + "#": 2043 + }, + { + "#": 2044 + }, + { + "#": 2045 + }, + { + "#": 2046 + }, + { + "#": 2047 + }, + { + "#": 2048 + }, + { + "#": 2049 + }, + { + "#": 2050 + }, + { + "#": 2051 + }, + { + "#": 2052 + }, + { + "#": 2053 + }, + { + "#": 2054 + }, + { + "#": 2055 + }, + { + "#": 2056 + }, + { + "#": 2057 + }, + { + "#": 2058 + }, + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + }, + { + "#": 2062 + } + ], + { + "x": 462.312, + "y": 296.44475, + "index": 0, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 460.526, + "y": 301.94375, + "index": 1, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 457.127, + "y": 306.62075, + "index": 2, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 452.45, + "y": 310.01975, + "index": 3, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 446.951, + "y": 311.80575, + "index": 4, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 441.169, + "y": 311.80575, + "index": 5, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 435.67, + "y": 310.01975, + "index": 6, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 430.993, + "y": 306.62075, + "index": 7, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 427.594, + "y": 301.94375, + "index": 8, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 425.808, + "y": 296.44475, + "index": 9, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 425.808, + "y": 290.66275, + "index": 10, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 427.594, + "y": 285.16375, + "index": 11, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 430.993, + "y": 280.48675, + "index": 12, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 435.67, + "y": 277.08775, + "index": 13, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 441.169, + "y": 275.30175, + "index": 14, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 446.951, + "y": 275.30175, + "index": 15, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 452.45, + "y": 277.08775, + "index": 16, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 457.127, + "y": 280.48675, + "index": 17, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 460.526, + "y": 285.16375, + "index": 18, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 462.312, + "y": 290.66275, + "index": 19, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 444.06, + "y": 293.55375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2070 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2072 + }, + "max": { + "#": 2073 + } + }, + { + "x": 425.808, + "y": 275.30175 + }, + { + "x": 462.312, + "y": 311.80575 + }, + { + "x": 444.06, + "y": 290.64648 + }, + [ + { + "#": 2076 + }, + { + "#": 2077 + }, + { + "#": 2078 + }, + { + "#": 2079 + }, + { + "#": 2080 + }, + { + "#": 2081 + }, + { + "#": 2082 + }, + { + "#": 2083 + }, + { + "#": 2084 + }, + { + "#": 2085 + } + ], + { + "x": -0.95109, + "y": -0.3089 + }, + { + "x": -0.80894, + "y": -0.58789 + }, + { + "x": -0.58789, + "y": -0.80894 + }, + { + "x": -0.3089, + "y": -0.95109 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3089, + "y": -0.95109 + }, + { + "x": 0.58789, + "y": -0.80894 + }, + { + "x": 0.80894, + "y": -0.58789 + }, + { + "x": 0.95109, + "y": -0.3089 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,5,6", + "startCol": 8, + "endCol": 9, + "startRow": 5, + "endRow": 6 + }, + { + "id": 42, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2088 + }, + "angle": 0, + "vertices": { + "#": 2089 + }, + "position": { + "#": 2116 + }, + "force": { + "#": 2117 + }, + "torque": 0, + "positionImpulse": { + "#": 2118 + }, + "constraintImpulse": { + "#": 2119 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2120 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2121 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2122 + }, + "circleRadius": 29.62288, + "bounds": { + "#": 2124 + }, + "positionPrev": { + "#": 2127 + }, + "anglePrev": 0, + "axes": { + "#": 2128 + }, + "area": 2730.049, + "mass": 2.73005, + "inverseMass": 0.36629, + "inertia": 4744.92436, + "inverseInertia": 0.00021, + "parent": { + "#": 2087 + }, + "sleepCounter": 0, + "region": { + "#": 2142 + } + }, + [ + { + "#": 2087 + } + ], + [ + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + }, + { + "#": 2094 + }, + { + "#": 2095 + }, + { + "#": 2096 + }, + { + "#": 2097 + }, + { + "#": 2098 + }, + { + "#": 2099 + }, + { + "#": 2100 + }, + { + "#": 2101 + }, + { + "#": 2102 + }, + { + "#": 2103 + }, + { + "#": 2104 + }, + { + "#": 2105 + }, + { + "#": 2106 + }, + { + "#": 2107 + }, + { + "#": 2108 + }, + { + "#": 2109 + }, + { + "#": 2110 + }, + { + "#": 2111 + }, + { + "#": 2112 + }, + { + "#": 2113 + }, + { + "#": 2114 + }, + { + "#": 2115 + } + ], + { + "x": 531.126, + "y": 308.49575, + "index": 0, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 529.417, + "y": 315.42875, + "index": 1, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 526.098, + "y": 321.75275, + "index": 2, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 521.363, + "y": 327.09775, + "index": 3, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 515.485, + "y": 331.15475, + "index": 4, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 508.808, + "y": 333.68675, + "index": 5, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 501.719, + "y": 334.54775, + "index": 6, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 494.63, + "y": 333.68675, + "index": 7, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 487.953, + "y": 331.15475, + "index": 8, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 482.075, + "y": 327.09775, + "index": 9, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 477.34, + "y": 321.75275, + "index": 10, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 474.021, + "y": 315.42875, + "index": 11, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 472.312, + "y": 308.49575, + "index": 12, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 472.312, + "y": 301.35375, + "index": 13, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 474.021, + "y": 294.42075, + "index": 14, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 477.34, + "y": 288.09675, + "index": 15, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 482.075, + "y": 282.75175, + "index": 16, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 487.953, + "y": 278.69475, + "index": 17, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 494.63, + "y": 276.16275, + "index": 18, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 501.719, + "y": 275.30175, + "index": 19, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 508.808, + "y": 276.16275, + "index": 20, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 515.485, + "y": 278.69475, + "index": 21, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 521.363, + "y": 282.75175, + "index": 22, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 526.098, + "y": 288.09675, + "index": 23, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 529.417, + "y": 294.42075, + "index": 24, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 531.126, + "y": 301.35375, + "index": 25, + "body": { + "#": 2087 + }, + "isInternal": false + }, + { + "x": 501.719, + "y": 304.92475 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2123 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2125 + }, + "max": { + "#": 2126 + } + }, + { + "x": 472.312, + "y": 275.30175 + }, + { + "x": 531.126, + "y": 334.54775 + }, + { + "x": 501.719, + "y": 302.01748 + }, + [ + { + "#": 2129 + }, + { + "#": 2130 + }, + { + "#": 2131 + }, + { + "#": 2132 + }, + { + "#": 2133 + }, + { + "#": 2134 + }, + { + "#": 2135 + }, + { + "#": 2136 + }, + { + "#": 2137 + }, + { + "#": 2138 + }, + { + "#": 2139 + }, + { + "#": 2140 + }, + { + "#": 2141 + } + ], + { + "x": -0.97094, + "y": -0.23934 + }, + { + "x": -0.88546, + "y": -0.46471 + }, + { + "x": -0.74853, + "y": -0.6631 + }, + { + "x": -0.56804, + "y": -0.823 + }, + { + "x": -0.35457, + "y": -0.93503 + }, + { + "x": -0.12057, + "y": -0.9927 + }, + { + "x": 0.12057, + "y": -0.9927 + }, + { + "x": 0.35457, + "y": -0.93503 + }, + { + "x": 0.56804, + "y": -0.823 + }, + { + "x": 0.74853, + "y": -0.6631 + }, + { + "x": 0.88546, + "y": -0.46471 + }, + { + "x": 0.97094, + "y": -0.23934 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,11,5,6", + "startCol": 9, + "endCol": 11, + "startRow": 5, + "endRow": 6 + }, + { + "id": 43, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2144 + }, + "angle": 0, + "vertices": { + "#": 2145 + }, + "position": { + "#": 2164 + }, + "force": { + "#": 2165 + }, + "torque": 0, + "positionImpulse": { + "#": 2166 + }, + "constraintImpulse": { + "#": 2167 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2168 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2169 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2170 + }, + "circleRadius": 16.49106, + "bounds": { + "#": 2172 + }, + "positionPrev": { + "#": 2175 + }, + "anglePrev": 0, + "axes": { + "#": 2176 + }, + "area": 837.15618, + "mass": 0.83716, + "inverseMass": 1.19452, + "inertia": 446.19987, + "inverseInertia": 0.00224, + "parent": { + "#": 2143 + }, + "sleepCounter": 0, + "region": { + "#": 2186 + } + }, + [ + { + "#": 2143 + } + ], + [ + { + "#": 2146 + }, + { + "#": 2147 + }, + { + "#": 2148 + }, + { + "#": 2149 + }, + { + "#": 2150 + }, + { + "#": 2151 + }, + { + "#": 2152 + }, + { + "#": 2153 + }, + { + "#": 2154 + }, + { + "#": 2155 + }, + { + "#": 2156 + }, + { + "#": 2157 + }, + { + "#": 2158 + }, + { + "#": 2159 + }, + { + "#": 2160 + }, + { + "#": 2161 + }, + { + "#": 2162 + }, + { + "#": 2163 + } + ], + { + "x": 573.608, + "y": 294.65675, + "index": 0, + "body": { + "#": 2143 + }, + "isInternal": false + }, + { + "x": 571.649, + "y": 300.03875, + "index": 1, + "body": { + "#": 2143 + }, + "isInternal": false + }, + { + "x": 567.967, + "y": 304.42575, + "index": 2, + "body": { + "#": 2143 + }, + "isInternal": false + }, + { + "x": 563.007, + "y": 307.28975, + "index": 3, + "body": { + "#": 2143 + }, + "isInternal": false + }, + { + "x": 557.367, + "y": 308.28375, + "index": 4, + "body": { + "#": 2143 + }, + "isInternal": false + }, + { + "x": 551.727, + "y": 307.28975, + "index": 5, + "body": { + "#": 2143 + }, + "isInternal": false + }, + { + "x": 546.767, + "y": 304.42575, + "index": 6, + "body": { + "#": 2143 + }, + "isInternal": false + }, + { + "x": 543.085, + "y": 300.03875, + "index": 7, + "body": { + "#": 2143 + }, + "isInternal": false + }, + { + "x": 541.126, + "y": 294.65675, + "index": 8, + "body": { + "#": 2143 + }, + "isInternal": false + }, + { + "x": 541.126, + "y": 288.92875, + "index": 9, + "body": { + "#": 2143 + }, + "isInternal": false + }, + { + "x": 543.085, + "y": 283.54675, + "index": 10, + "body": { + "#": 2143 + }, + "isInternal": false + }, + { + "x": 546.767, + "y": 279.15975, + "index": 11, + "body": { + "#": 2143 + }, + "isInternal": false + }, + { + "x": 551.727, + "y": 276.29575, + "index": 12, + "body": { + "#": 2143 + }, + "isInternal": false + }, + { + "x": 557.367, + "y": 275.30175, + "index": 13, + "body": { + "#": 2143 + }, + "isInternal": false + }, + { + "x": 563.007, + "y": 276.29575, + "index": 14, + "body": { + "#": 2143 + }, + "isInternal": false + }, + { + "x": 567.967, + "y": 279.15975, + "index": 15, + "body": { + "#": 2143 + }, + "isInternal": false + }, + { + "x": 571.649, + "y": 283.54675, + "index": 16, + "body": { + "#": 2143 + }, + "isInternal": false + }, + { + "x": 573.608, + "y": 288.92875, + "index": 17, + "body": { + "#": 2143 + }, + "isInternal": false + }, + { + "x": 557.367, + "y": 291.79275 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2171 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2173 + }, + "max": { + "#": 2174 + } + }, + { + "x": 541.126, + "y": 275.30175 + }, + { + "x": 573.608, + "y": 308.28375 + }, + { + "x": 557.367, + "y": 288.88548 + }, + [ + { + "#": 2177 + }, + { + "#": 2178 + }, + { + "#": 2179 + }, + { + "#": 2180 + }, + { + "#": 2181 + }, + { + "#": 2182 + }, + { + "#": 2183 + }, + { + "#": 2184 + }, + { + "#": 2185 + } + ], + { + "x": -0.93969, + "y": -0.34204 + }, + { + "x": -0.76597, + "y": -0.64288 + }, + { + "x": -0.50004, + "y": -0.866 + }, + { + "x": -0.17357, + "y": -0.98482 + }, + { + "x": 0.17357, + "y": -0.98482 + }, + { + "x": 0.50004, + "y": -0.866 + }, + { + "x": 0.76597, + "y": -0.64288 + }, + { + "x": 0.93969, + "y": -0.34204 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,11,5,6", + "startCol": 11, + "endCol": 11, + "startRow": 5, + "endRow": 6 + }, + { + "id": 44, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2188 + }, + "angle": 0, + "vertices": { + "#": 2189 + }, + "position": { + "#": 2216 + }, + "force": { + "#": 2217 + }, + "torque": 0, + "positionImpulse": { + "#": 2218 + }, + "constraintImpulse": { + "#": 2219 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2220 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2221 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2222 + }, + "circleRadius": 24.26974, + "bounds": { + "#": 2224 + }, + "positionPrev": { + "#": 2227 + }, + "anglePrev": 0, + "axes": { + "#": 2228 + }, + "area": 1832.54566, + "mass": 1.83255, + "inverseMass": 0.54569, + "inertia": 2137.95234, + "inverseInertia": 0.00047, + "parent": { + "#": 2187 + }, + "sleepCounter": 0, + "region": { + "#": 2242 + } + }, + [ + { + "#": 2187 + } + ], + [ + { + "#": 2190 + }, + { + "#": 2191 + }, + { + "#": 2192 + }, + { + "#": 2193 + }, + { + "#": 2194 + }, + { + "#": 2195 + }, + { + "#": 2196 + }, + { + "#": 2197 + }, + { + "#": 2198 + }, + { + "#": 2199 + }, + { + "#": 2200 + }, + { + "#": 2201 + }, + { + "#": 2202 + }, + { + "#": 2203 + }, + { + "#": 2204 + }, + { + "#": 2205 + }, + { + "#": 2206 + }, + { + "#": 2207 + }, + { + "#": 2208 + }, + { + "#": 2209 + }, + { + "#": 2210 + }, + { + "#": 2211 + }, + { + "#": 2212 + }, + { + "#": 2213 + }, + { + "#": 2214 + }, + { + "#": 2215 + } + ], + { + "x": 631.794, + "y": 302.49675, + "index": 0, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 630.394, + "y": 308.17775, + "index": 1, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 627.675, + "y": 313.35875, + "index": 2, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 623.795, + "y": 317.73775, + "index": 3, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 618.98, + "y": 321.06175, + "index": 4, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 613.509, + "y": 323.13675, + "index": 5, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 607.701, + "y": 323.84175, + "index": 6, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 601.893, + "y": 323.13675, + "index": 7, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 596.422, + "y": 321.06175, + "index": 8, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 591.607, + "y": 317.73775, + "index": 9, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 587.727, + "y": 313.35875, + "index": 10, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 585.008, + "y": 308.17775, + "index": 11, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 583.608, + "y": 302.49675, + "index": 12, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 583.608, + "y": 296.64675, + "index": 13, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 585.008, + "y": 290.96575, + "index": 14, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 587.727, + "y": 285.78475, + "index": 15, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 591.607, + "y": 281.40575, + "index": 16, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 596.422, + "y": 278.08175, + "index": 17, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 601.893, + "y": 276.00675, + "index": 18, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 607.701, + "y": 275.30175, + "index": 19, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 613.509, + "y": 276.00675, + "index": 20, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 618.98, + "y": 278.08175, + "index": 21, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 623.795, + "y": 281.40575, + "index": 22, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 627.675, + "y": 285.78475, + "index": 23, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 630.394, + "y": 290.96575, + "index": 24, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 631.794, + "y": 296.64675, + "index": 25, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 607.701, + "y": 299.57175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2223 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2225 + }, + "max": { + "#": 2226 + } + }, + { + "x": 583.608, + "y": 275.30175 + }, + { + "x": 631.794, + "y": 323.84175 + }, + { + "x": 607.701, + "y": 296.66448 + }, + [ + { + "#": 2229 + }, + { + "#": 2230 + }, + { + "#": 2231 + }, + { + "#": 2232 + }, + { + "#": 2233 + }, + { + "#": 2234 + }, + { + "#": 2235 + }, + { + "#": 2236 + }, + { + "#": 2237 + }, + { + "#": 2238 + }, + { + "#": 2239 + }, + { + "#": 2240 + }, + { + "#": 2241 + } + ], + { + "x": -0.97095, + "y": -0.23928 + }, + { + "x": -0.88547, + "y": -0.4647 + }, + { + "x": -0.74846, + "y": -0.66317 + }, + { + "x": -0.56812, + "y": -0.82295 + }, + { + "x": -0.35462, + "y": -0.93501 + }, + { + "x": -0.1205, + "y": -0.99271 + }, + { + "x": 0.1205, + "y": -0.99271 + }, + { + "x": 0.35462, + "y": -0.93501 + }, + { + "x": 0.56812, + "y": -0.82295 + }, + { + "x": 0.74846, + "y": -0.66317 + }, + { + "x": 0.88547, + "y": -0.4647 + }, + { + "x": 0.97095, + "y": -0.23928 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,13,5,6", + "startCol": 12, + "endCol": 13, + "startRow": 5, + "endRow": 6 + }, + { + "id": 45, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2244 + }, + "angle": 0, + "vertices": { + "#": 2245 + }, + "position": { + "#": 2272 + }, + "force": { + "#": 2273 + }, + "torque": 0, + "positionImpulse": { + "#": 2274 + }, + "constraintImpulse": { + "#": 2275 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2276 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2277 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2278 + }, + "circleRadius": 29.25521, + "bounds": { + "#": 2280 + }, + "positionPrev": { + "#": 2283 + }, + "anglePrev": 0, + "axes": { + "#": 2284 + }, + "area": 2662.70319, + "mass": 2.6627, + "inverseMass": 0.37556, + "inertia": 4513.71283, + "inverseInertia": 0.00022, + "parent": { + "#": 2243 + }, + "sleepCounter": 0, + "region": { + "#": 2298 + } + }, + [ + { + "#": 2243 + } + ], + [ + { + "#": 2246 + }, + { + "#": 2247 + }, + { + "#": 2248 + }, + { + "#": 2249 + }, + { + "#": 2250 + }, + { + "#": 2251 + }, + { + "#": 2252 + }, + { + "#": 2253 + }, + { + "#": 2254 + }, + { + "#": 2255 + }, + { + "#": 2256 + }, + { + "#": 2257 + }, + { + "#": 2258 + }, + { + "#": 2259 + }, + { + "#": 2260 + }, + { + "#": 2261 + }, + { + "#": 2262 + }, + { + "#": 2263 + }, + { + "#": 2264 + }, + { + "#": 2265 + }, + { + "#": 2266 + }, + { + "#": 2267 + }, + { + "#": 2268 + }, + { + "#": 2269 + }, + { + "#": 2270 + }, + { + "#": 2271 + } + ], + { + "x": 158.084, + "y": 377.32875, + "index": 0, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 156.396, + "y": 384.17675, + "index": 1, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 153.119, + "y": 390.42175, + "index": 2, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 148.442, + "y": 395.70075, + "index": 3, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 142.638, + "y": 399.70675, + "index": 4, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 136.043, + "y": 402.20775, + "index": 5, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 129.042, + "y": 403.05775, + "index": 6, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 122.041, + "y": 402.20775, + "index": 7, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 115.446, + "y": 399.70675, + "index": 8, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 109.642, + "y": 395.70075, + "index": 9, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 104.965, + "y": 390.42175, + "index": 10, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 101.688, + "y": 384.17675, + "index": 11, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 100, + "y": 377.32875, + "index": 12, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 100, + "y": 370.27675, + "index": 13, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 101.688, + "y": 363.42875, + "index": 14, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 104.965, + "y": 357.18375, + "index": 15, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 109.642, + "y": 351.90475, + "index": 16, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 115.446, + "y": 347.89875, + "index": 17, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 122.041, + "y": 345.39775, + "index": 18, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 129.042, + "y": 344.54775, + "index": 19, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 136.043, + "y": 345.39775, + "index": 20, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 142.638, + "y": 347.89875, + "index": 21, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 148.442, + "y": 351.90475, + "index": 22, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 153.119, + "y": 357.18375, + "index": 23, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 156.396, + "y": 363.42875, + "index": 24, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 158.084, + "y": 370.27675, + "index": 25, + "body": { + "#": 2243 + }, + "isInternal": false + }, + { + "x": 129.042, + "y": 373.80275 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2279 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2281 + }, + "max": { + "#": 2282 + } + }, + { + "x": 100, + "y": 344.54775 + }, + { + "x": 158.084, + "y": 403.05775 + }, + { + "x": 129.042, + "y": 370.89548 + }, + [ + { + "#": 2285 + }, + { + "#": 2286 + }, + { + "#": 2287 + }, + { + "#": 2288 + }, + { + "#": 2289 + }, + { + "#": 2290 + }, + { + "#": 2291 + }, + { + "#": 2292 + }, + { + "#": 2293 + }, + { + "#": 2294 + }, + { + "#": 2295 + }, + { + "#": 2296 + }, + { + "#": 2297 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88549, + "y": -0.46465 + }, + { + "x": -0.7485, + "y": -0.66314 + }, + { + "x": -0.56804, + "y": -0.823 + }, + { + "x": -0.35459, + "y": -0.93502 + }, + { + "x": -0.12053, + "y": -0.99271 + }, + { + "x": 0.12053, + "y": -0.99271 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.56804, + "y": -0.823 + }, + { + "x": 0.7485, + "y": -0.66314 + }, + { + "x": 0.88549, + "y": -0.46465 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,3,7,8", + "startCol": 2, + "endCol": 3, + "startRow": 7, + "endRow": 8 + }, + { + "id": 46, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2300 + }, + "angle": 0, + "vertices": { + "#": 2301 + }, + "position": { + "#": 2324 + }, + "force": { + "#": 2325 + }, + "torque": 0, + "positionImpulse": { + "#": 2326 + }, + "constraintImpulse": { + "#": 2327 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2328 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2329 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2330 + }, + "circleRadius": 20.52154, + "bounds": { + "#": 2332 + }, + "positionPrev": { + "#": 2335 + }, + "anglePrev": 0, + "axes": { + "#": 2336 + }, + "area": 1305.13571, + "mass": 1.30514, + "inverseMass": 0.7662, + "inertia": 1084.44537, + "inverseInertia": 0.00092, + "parent": { + "#": 2299 + }, + "sleepCounter": 0, + "region": { + "#": 2348 + } + }, + [ + { + "#": 2299 + } + ], + [ + { + "#": 2302 + }, + { + "#": 2303 + }, + { + "#": 2304 + }, + { + "#": 2305 + }, + { + "#": 2306 + }, + { + "#": 2307 + }, + { + "#": 2308 + }, + { + "#": 2309 + }, + { + "#": 2310 + }, + { + "#": 2311 + }, + { + "#": 2312 + }, + { + "#": 2313 + }, + { + "#": 2314 + }, + { + "#": 2315 + }, + { + "#": 2316 + }, + { + "#": 2317 + }, + { + "#": 2318 + }, + { + "#": 2319 + }, + { + "#": 2320 + }, + { + "#": 2321 + }, + { + "#": 2322 + }, + { + "#": 2323 + } + ], + { + "x": 208.71, + "y": 367.99075, + "index": 0, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 207.064, + "y": 373.59475, + "index": 1, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 203.906, + "y": 378.50875, + "index": 2, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 199.492, + "y": 382.33375, + "index": 3, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 194.179, + "y": 384.75975, + "index": 4, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 188.397, + "y": 385.59175, + "index": 5, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 182.615, + "y": 384.75975, + "index": 6, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 177.302, + "y": 382.33375, + "index": 7, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 172.888, + "y": 378.50875, + "index": 8, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 169.73, + "y": 373.59475, + "index": 9, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 168.084, + "y": 367.99075, + "index": 10, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 168.084, + "y": 362.14875, + "index": 11, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 169.73, + "y": 356.54475, + "index": 12, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 172.888, + "y": 351.63075, + "index": 13, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 177.302, + "y": 347.80575, + "index": 14, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 182.615, + "y": 345.37975, + "index": 15, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 188.397, + "y": 344.54775, + "index": 16, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 194.179, + "y": 345.37975, + "index": 17, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 199.492, + "y": 347.80575, + "index": 18, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 203.906, + "y": 351.63075, + "index": 19, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 207.064, + "y": 356.54475, + "index": 20, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 208.71, + "y": 362.14875, + "index": 21, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 188.397, + "y": 365.06975 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2331 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2333 + }, + "max": { + "#": 2334 + } + }, + { + "x": 168.084, + "y": 344.54775 + }, + { + "x": 208.71, + "y": 385.59175 + }, + { + "x": 188.397, + "y": 362.16248 + }, + [ + { + "#": 2337 + }, + { + "#": 2338 + }, + { + "#": 2339 + }, + { + "#": 2340 + }, + { + "#": 2341 + }, + { + "#": 2342 + }, + { + "#": 2343 + }, + { + "#": 2344 + }, + { + "#": 2345 + }, + { + "#": 2346 + }, + { + "#": 2347 + } + ], + { + "x": -0.95947, + "y": -0.28181 + }, + { + "x": -0.84126, + "y": -0.54064 + }, + { + "x": -0.65488, + "y": -0.75573 + }, + { + "x": -0.41536, + "y": -0.90966 + }, + { + "x": -0.14243, + "y": -0.98981 + }, + { + "x": 0.14243, + "y": -0.98981 + }, + { + "x": 0.41536, + "y": -0.90966 + }, + { + "x": 0.65488, + "y": -0.75573 + }, + { + "x": 0.84126, + "y": -0.54064 + }, + { + "x": 0.95947, + "y": -0.28181 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,7,8", + "startCol": 3, + "endCol": 4, + "startRow": 7, + "endRow": 8 + }, + { + "id": 47, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2350 + }, + "angle": 0, + "vertices": { + "#": 2351 + }, + "position": { + "#": 2370 + }, + "force": { + "#": 2371 + }, + "torque": 0, + "positionImpulse": { + "#": 2372 + }, + "constraintImpulse": { + "#": 2373 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2374 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2375 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2376 + }, + "circleRadius": 16.58726, + "bounds": { + "#": 2378 + }, + "positionPrev": { + "#": 2381 + }, + "anglePrev": 0, + "axes": { + "#": 2382 + }, + "area": 846.9227, + "mass": 0.84692, + "inverseMass": 1.18075, + "inertia": 456.67161, + "inverseInertia": 0.00219, + "parent": { + "#": 2349 + }, + "sleepCounter": 0, + "region": { + "#": 2392 + } + }, + [ + { + "#": 2349 + } + ], + [ + { + "#": 2352 + }, + { + "#": 2353 + }, + { + "#": 2354 + }, + { + "#": 2355 + }, + { + "#": 2356 + }, + { + "#": 2357 + }, + { + "#": 2358 + }, + { + "#": 2359 + }, + { + "#": 2360 + }, + { + "#": 2361 + }, + { + "#": 2362 + }, + { + "#": 2363 + }, + { + "#": 2364 + }, + { + "#": 2365 + }, + { + "#": 2366 + }, + { + "#": 2367 + }, + { + "#": 2368 + }, + { + "#": 2369 + } + ], + { + "x": 251.38, + "y": 364.01475, + "index": 0, + "body": { + "#": 2349 + }, + "isInternal": false + }, + { + "x": 249.41, + "y": 369.42875, + "index": 1, + "body": { + "#": 2349 + }, + "isInternal": false + }, + { + "x": 245.707, + "y": 373.84175, + "index": 2, + "body": { + "#": 2349 + }, + "isInternal": false + }, + { + "x": 240.718, + "y": 376.72175, + "index": 3, + "body": { + "#": 2349 + }, + "isInternal": false + }, + { + "x": 235.045, + "y": 377.72175, + "index": 4, + "body": { + "#": 2349 + }, + "isInternal": false + }, + { + "x": 229.372, + "y": 376.72175, + "index": 5, + "body": { + "#": 2349 + }, + "isInternal": false + }, + { + "x": 224.383, + "y": 373.84175, + "index": 6, + "body": { + "#": 2349 + }, + "isInternal": false + }, + { + "x": 220.68, + "y": 369.42875, + "index": 7, + "body": { + "#": 2349 + }, + "isInternal": false + }, + { + "x": 218.71, + "y": 364.01475, + "index": 8, + "body": { + "#": 2349 + }, + "isInternal": false + }, + { + "x": 218.71, + "y": 358.25475, + "index": 9, + "body": { + "#": 2349 + }, + "isInternal": false + }, + { + "x": 220.68, + "y": 352.84075, + "index": 10, + "body": { + "#": 2349 + }, + "isInternal": false + }, + { + "x": 224.383, + "y": 348.42775, + "index": 11, + "body": { + "#": 2349 + }, + "isInternal": false + }, + { + "x": 229.372, + "y": 345.54775, + "index": 12, + "body": { + "#": 2349 + }, + "isInternal": false + }, + { + "x": 235.045, + "y": 344.54775, + "index": 13, + "body": { + "#": 2349 + }, + "isInternal": false + }, + { + "x": 240.718, + "y": 345.54775, + "index": 14, + "body": { + "#": 2349 + }, + "isInternal": false + }, + { + "x": 245.707, + "y": 348.42775, + "index": 15, + "body": { + "#": 2349 + }, + "isInternal": false + }, + { + "x": 249.41, + "y": 352.84075, + "index": 16, + "body": { + "#": 2349 + }, + "isInternal": false + }, + { + "x": 251.38, + "y": 358.25475, + "index": 17, + "body": { + "#": 2349 + }, + "isInternal": false + }, + { + "x": 235.045, + "y": 361.13475 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2377 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2379 + }, + "max": { + "#": 2380 + } + }, + { + "x": 218.71, + "y": 344.54775 + }, + { + "x": 251.38, + "y": 377.72175 + }, + { + "x": 235.045, + "y": 358.22748 + }, + [ + { + "#": 2383 + }, + { + "#": 2384 + }, + { + "#": 2385 + }, + { + "#": 2386 + }, + { + "#": 2387 + }, + { + "#": 2388 + }, + { + "#": 2389 + }, + { + "#": 2390 + }, + { + "#": 2391 + } + ], + { + "x": -0.93972, + "y": -0.34194 + }, + { + "x": -0.76604, + "y": -0.64279 + }, + { + "x": -0.49995, + "y": -0.86606 + }, + { + "x": -0.1736, + "y": -0.98482 + }, + { + "x": 0.1736, + "y": -0.98482 + }, + { + "x": 0.49995, + "y": -0.86606 + }, + { + "x": 0.76604, + "y": -0.64279 + }, + { + "x": 0.93972, + "y": -0.34194 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,7,7", + "startCol": 4, + "endCol": 5, + "startRow": 7, + "endRow": 7 + }, + { + "id": 48, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2394 + }, + "angle": 0, + "vertices": { + "#": 2395 + }, + "position": { + "#": 2414 + }, + "force": { + "#": 2415 + }, + "torque": 0, + "positionImpulse": { + "#": 2416 + }, + "constraintImpulse": { + "#": 2417 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2418 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2419 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2420 + }, + "circleRadius": 17.08198, + "bounds": { + "#": 2422 + }, + "positionPrev": { + "#": 2425 + }, + "anglePrev": 0, + "axes": { + "#": 2426 + }, + "area": 898.18265, + "mass": 0.89818, + "inverseMass": 1.11336, + "inertia": 513.62457, + "inverseInertia": 0.00195, + "parent": { + "#": 2393 + }, + "sleepCounter": 0, + "region": { + "#": 2436 + } + }, + [ + { + "#": 2393 + } + ], + [ + { + "#": 2396 + }, + { + "#": 2397 + }, + { + "#": 2398 + }, + { + "#": 2399 + }, + { + "#": 2400 + }, + { + "#": 2401 + }, + { + "#": 2402 + }, + { + "#": 2403 + }, + { + "#": 2404 + }, + { + "#": 2405 + }, + { + "#": 2406 + }, + { + "#": 2407 + }, + { + "#": 2408 + }, + { + "#": 2409 + }, + { + "#": 2410 + }, + { + "#": 2411 + }, + { + "#": 2412 + }, + { + "#": 2413 + } + ], + { + "x": 295.024, + "y": 364.59575, + "index": 0, + "body": { + "#": 2393 + }, + "isInternal": false + }, + { + "x": 292.995, + "y": 370.17075, + "index": 1, + "body": { + "#": 2393 + }, + "isInternal": false + }, + { + "x": 289.182, + "y": 374.71575, + "index": 2, + "body": { + "#": 2393 + }, + "isInternal": false + }, + { + "x": 284.044, + "y": 377.68175, + "index": 3, + "body": { + "#": 2393 + }, + "isInternal": false + }, + { + "x": 278.202, + "y": 378.71175, + "index": 4, + "body": { + "#": 2393 + }, + "isInternal": false + }, + { + "x": 272.36, + "y": 377.68175, + "index": 5, + "body": { + "#": 2393 + }, + "isInternal": false + }, + { + "x": 267.222, + "y": 374.71575, + "index": 6, + "body": { + "#": 2393 + }, + "isInternal": false + }, + { + "x": 263.409, + "y": 370.17075, + "index": 7, + "body": { + "#": 2393 + }, + "isInternal": false + }, + { + "x": 261.38, + "y": 364.59575, + "index": 8, + "body": { + "#": 2393 + }, + "isInternal": false + }, + { + "x": 261.38, + "y": 358.66375, + "index": 9, + "body": { + "#": 2393 + }, + "isInternal": false + }, + { + "x": 263.409, + "y": 353.08875, + "index": 10, + "body": { + "#": 2393 + }, + "isInternal": false + }, + { + "x": 267.222, + "y": 348.54375, + "index": 11, + "body": { + "#": 2393 + }, + "isInternal": false + }, + { + "x": 272.36, + "y": 345.57775, + "index": 12, + "body": { + "#": 2393 + }, + "isInternal": false + }, + { + "x": 278.202, + "y": 344.54775, + "index": 13, + "body": { + "#": 2393 + }, + "isInternal": false + }, + { + "x": 284.044, + "y": 345.57775, + "index": 14, + "body": { + "#": 2393 + }, + "isInternal": false + }, + { + "x": 289.182, + "y": 348.54375, + "index": 15, + "body": { + "#": 2393 + }, + "isInternal": false + }, + { + "x": 292.995, + "y": 353.08875, + "index": 16, + "body": { + "#": 2393 + }, + "isInternal": false + }, + { + "x": 295.024, + "y": 358.66375, + "index": 17, + "body": { + "#": 2393 + }, + "isInternal": false + }, + { + "x": 278.202, + "y": 361.62975 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2421 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2423 + }, + "max": { + "#": 2424 + } + }, + { + "x": 261.38, + "y": 344.54775 + }, + { + "x": 295.024, + "y": 378.71175 + }, + { + "x": 278.202, + "y": 358.72248 + }, + [ + { + "#": 2427 + }, + { + "#": 2428 + }, + { + "#": 2429 + }, + { + "#": 2430 + }, + { + "#": 2431 + }, + { + "#": 2432 + }, + { + "#": 2433 + }, + { + "#": 2434 + }, + { + "#": 2435 + } + ], + { + "x": -0.9397, + "y": -0.342 + }, + { + "x": -0.7661, + "y": -0.64272 + }, + { + "x": -0.49995, + "y": -0.86606 + }, + { + "x": -0.17363, + "y": -0.98481 + }, + { + "x": 0.17363, + "y": -0.98481 + }, + { + "x": 0.49995, + "y": -0.86606 + }, + { + "x": 0.7661, + "y": -0.64272 + }, + { + "x": 0.9397, + "y": -0.342 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,7,7", + "startCol": 5, + "endCol": 6, + "startRow": 7, + "endRow": 7 + }, + { + "id": 49, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2438 + }, + "angle": 0, + "vertices": { + "#": 2439 + }, + "position": { + "#": 2466 + }, + "force": { + "#": 2467 + }, + "torque": 0, + "positionImpulse": { + "#": 2468 + }, + "constraintImpulse": { + "#": 2469 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2470 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2471 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2472 + }, + "circleRadius": 24.41313, + "bounds": { + "#": 2474 + }, + "positionPrev": { + "#": 2477 + }, + "anglePrev": 0, + "axes": { + "#": 2478 + }, + "area": 1854.22627, + "mass": 1.85423, + "inverseMass": 0.53931, + "inertia": 2188.83925, + "inverseInertia": 0.00046, + "parent": { + "#": 2437 + }, + "sleepCounter": 0, + "region": { + "#": 2492 + } + }, + [ + { + "#": 2437 + } + ], + [ + { + "#": 2440 + }, + { + "#": 2441 + }, + { + "#": 2442 + }, + { + "#": 2443 + }, + { + "#": 2444 + }, + { + "#": 2445 + }, + { + "#": 2446 + }, + { + "#": 2447 + }, + { + "#": 2448 + }, + { + "#": 2449 + }, + { + "#": 2450 + }, + { + "#": 2451 + }, + { + "#": 2452 + }, + { + "#": 2453 + }, + { + "#": 2454 + }, + { + "#": 2455 + }, + { + "#": 2456 + }, + { + "#": 2457 + }, + { + "#": 2458 + }, + { + "#": 2459 + }, + { + "#": 2460 + }, + { + "#": 2461 + }, + { + "#": 2462 + }, + { + "#": 2463 + }, + { + "#": 2464 + }, + { + "#": 2465 + } + ], + { + "x": 353.494, + "y": 371.90375, + "index": 0, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 352.086, + "y": 377.61775, + "index": 1, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 349.351, + "y": 382.82875, + "index": 2, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 345.448, + "y": 387.23375, + "index": 3, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 340.604, + "y": 390.57775, + "index": 4, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 335.101, + "y": 392.66475, + "index": 5, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 329.259, + "y": 393.37375, + "index": 6, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 323.417, + "y": 392.66475, + "index": 7, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 317.914, + "y": 390.57775, + "index": 8, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 313.07, + "y": 387.23375, + "index": 9, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 309.167, + "y": 382.82875, + "index": 10, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 306.432, + "y": 377.61775, + "index": 11, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 305.024, + "y": 371.90375, + "index": 12, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 305.024, + "y": 366.01775, + "index": 13, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 306.432, + "y": 360.30375, + "index": 14, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 309.167, + "y": 355.09275, + "index": 15, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 313.07, + "y": 350.68775, + "index": 16, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 317.914, + "y": 347.34375, + "index": 17, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 323.417, + "y": 345.25675, + "index": 18, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 329.259, + "y": 344.54775, + "index": 19, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 335.101, + "y": 345.25675, + "index": 20, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 340.604, + "y": 347.34375, + "index": 21, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 345.448, + "y": 350.68775, + "index": 22, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 349.351, + "y": 355.09275, + "index": 23, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 352.086, + "y": 360.30375, + "index": 24, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 353.494, + "y": 366.01775, + "index": 25, + "body": { + "#": 2437 + }, + "isInternal": false + }, + { + "x": 329.259, + "y": 368.96075 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2473 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2475 + }, + "max": { + "#": 2476 + } + }, + { + "x": 305.024, + "y": 344.54775 + }, + { + "x": 353.494, + "y": 393.37375 + }, + { + "x": 329.259, + "y": 366.05348 + }, + [ + { + "#": 2479 + }, + { + "#": 2480 + }, + { + "#": 2481 + }, + { + "#": 2482 + }, + { + "#": 2483 + }, + { + "#": 2484 + }, + { + "#": 2485 + }, + { + "#": 2486 + }, + { + "#": 2487 + }, + { + "#": 2488 + }, + { + "#": 2489 + }, + { + "#": 2490 + }, + { + "#": 2491 + } + ], + { + "x": -0.97096, + "y": -0.23926 + }, + { + "x": -0.88545, + "y": -0.46473 + }, + { + "x": -0.74847, + "y": -0.66317 + }, + { + "x": -0.56811, + "y": -0.82295 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12048, + "y": -0.99272 + }, + { + "x": 0.12048, + "y": -0.99272 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56811, + "y": -0.82295 + }, + { + "x": 0.74847, + "y": -0.66317 + }, + { + "x": 0.88545, + "y": -0.46473 + }, + { + "x": 0.97096, + "y": -0.23926 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,7,8", + "startCol": 6, + "endCol": 7, + "startRow": 7, + "endRow": 8 + }, + { + "id": 50, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2494 + }, + "angle": 0, + "vertices": { + "#": 2495 + }, + "position": { + "#": 2512 + }, + "force": { + "#": 2513 + }, + "torque": 0, + "positionImpulse": { + "#": 2514 + }, + "constraintImpulse": { + "#": 2515 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2516 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2517 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2518 + }, + "circleRadius": 15.43255, + "bounds": { + "#": 2520 + }, + "positionPrev": { + "#": 2523 + }, + "anglePrev": 0, + "axes": { + "#": 2524 + }, + "area": 729.14713, + "mass": 0.72915, + "inverseMass": 1.37147, + "inertia": 338.50798, + "inverseInertia": 0.00295, + "parent": { + "#": 2493 + }, + "sleepCounter": 0, + "region": { + "#": 2533 + } + }, + [ + { + "#": 2493 + } + ], + [ + { + "#": 2496 + }, + { + "#": 2497 + }, + { + "#": 2498 + }, + { + "#": 2499 + }, + { + "#": 2500 + }, + { + "#": 2501 + }, + { + "#": 2502 + }, + { + "#": 2503 + }, + { + "#": 2504 + }, + { + "#": 2505 + }, + { + "#": 2506 + }, + { + "#": 2507 + }, + { + "#": 2508 + }, + { + "#": 2509 + }, + { + "#": 2510 + }, + { + "#": 2511 + } + ], + { + "x": 393.766, + "y": 362.69475, + "index": 0, + "body": { + "#": 2493 + }, + "isInternal": false + }, + { + "x": 391.462, + "y": 368.25775, + "index": 1, + "body": { + "#": 2493 + }, + "isInternal": false + }, + { + "x": 387.204, + "y": 372.51575, + "index": 2, + "body": { + "#": 2493 + }, + "isInternal": false + }, + { + "x": 381.641, + "y": 374.81975, + "index": 3, + "body": { + "#": 2493 + }, + "isInternal": false + }, + { + "x": 375.619, + "y": 374.81975, + "index": 4, + "body": { + "#": 2493 + }, + "isInternal": false + }, + { + "x": 370.056, + "y": 372.51575, + "index": 5, + "body": { + "#": 2493 + }, + "isInternal": false + }, + { + "x": 365.798, + "y": 368.25775, + "index": 6, + "body": { + "#": 2493 + }, + "isInternal": false + }, + { + "x": 363.494, + "y": 362.69475, + "index": 7, + "body": { + "#": 2493 + }, + "isInternal": false + }, + { + "x": 363.494, + "y": 356.67275, + "index": 8, + "body": { + "#": 2493 + }, + "isInternal": false + }, + { + "x": 365.798, + "y": 351.10975, + "index": 9, + "body": { + "#": 2493 + }, + "isInternal": false + }, + { + "x": 370.056, + "y": 346.85175, + "index": 10, + "body": { + "#": 2493 + }, + "isInternal": false + }, + { + "x": 375.619, + "y": 344.54775, + "index": 11, + "body": { + "#": 2493 + }, + "isInternal": false + }, + { + "x": 381.641, + "y": 344.54775, + "index": 12, + "body": { + "#": 2493 + }, + "isInternal": false + }, + { + "x": 387.204, + "y": 346.85175, + "index": 13, + "body": { + "#": 2493 + }, + "isInternal": false + }, + { + "x": 391.462, + "y": 351.10975, + "index": 14, + "body": { + "#": 2493 + }, + "isInternal": false + }, + { + "x": 393.766, + "y": 356.67275, + "index": 15, + "body": { + "#": 2493 + }, + "isInternal": false + }, + { + "x": 378.63, + "y": 359.68375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2519 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2521 + }, + "max": { + "#": 2522 + } + }, + { + "x": 363.494, + "y": 344.54775 + }, + { + "x": 393.766, + "y": 374.81975 + }, + { + "x": 378.63, + "y": 356.77648 + }, + [ + { + "#": 2525 + }, + { + "#": 2526 + }, + { + "#": 2527 + }, + { + "#": 2528 + }, + { + "#": 2529 + }, + { + "#": 2530 + }, + { + "#": 2531 + }, + { + "#": 2532 + } + ], + { + "x": -0.9239, + "y": -0.38265 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38265, + "y": -0.9239 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38265, + "y": -0.9239 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.9239, + "y": -0.38265 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,7,7", + "startCol": 7, + "endCol": 8, + "startRow": 7, + "endRow": 7 + }, + { + "id": 51, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2535 + }, + "angle": -0.00019, + "vertices": { + "#": 2536 + }, + "position": { + "#": 2563 + }, + "force": { + "#": 2564 + }, + "torque": 0, + "positionImpulse": { + "#": 2565 + }, + "constraintImpulse": { + "#": 2566 + }, + "totalContacts": 0, + "speed": 1.70674, + "angularSpeed": 0.00019, + "velocity": { + "#": 2567 + }, + "angularVelocity": -0.00019, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2568 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2569 + }, + "circleRadius": 28.1032, + "bounds": { + "#": 2571 + }, + "positionPrev": { + "#": 2574 + }, + "anglePrev": 0, + "axes": { + "#": 2575 + }, + "area": 2457.11391, + "mass": 2.45711, + "inverseMass": 0.40698, + "inertia": 3843.60714, + "inverseInertia": 0.00026, + "parent": { + "#": 2534 + }, + "sleepCounter": 0, + "region": { + "#": 2589 + } + }, + [ + { + "#": 2534 + } + ], + [ + { + "#": 2537 + }, + { + "#": 2538 + }, + { + "#": 2539 + }, + { + "#": 2540 + }, + { + "#": 2541 + }, + { + "#": 2542 + }, + { + "#": 2543 + }, + { + "#": 2544 + }, + { + "#": 2545 + }, + { + "#": 2546 + }, + { + "#": 2547 + }, + { + "#": 2548 + }, + { + "#": 2549 + }, + { + "#": 2550 + }, + { + "#": 2551 + }, + { + "#": 2552 + }, + { + "#": 2553 + }, + { + "#": 2554 + }, + { + "#": 2555 + }, + { + "#": 2556 + }, + { + "#": 2557 + }, + { + "#": 2558 + }, + { + "#": 2559 + }, + { + "#": 2560 + }, + { + "#": 2561 + }, + { + "#": 2562 + } + ], + { + "x": 460.58141, + "y": 374.2959, + "index": 0, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 458.96164, + "y": 380.8752, + "index": 1, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 455.81375, + "y": 386.87378, + "index": 2, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 451.32269, + "y": 391.94662, + "index": 3, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 445.74741, + "y": 395.79565, + "index": 4, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 439.41385, + "y": 398.19983, + "index": 5, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 432.688, + "y": 399.01708, + "index": 6, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 425.96185, + "y": 398.20233, + "index": 7, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 419.62741, + "y": 395.8005, + "index": 8, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 414.05069, + "y": 391.95354, + "index": 9, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 409.55775, + "y": 386.88237, + "index": 10, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 406.40764, + "y": 380.88496, + "index": 11, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 404.78542, + "y": 374.30626, + "index": 12, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 404.78416, + "y": 367.53226, + "index": 13, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 406.40394, + "y": 360.95296, + "index": 14, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 409.55182, + "y": 354.95437, + "index": 15, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 414.04288, + "y": 349.88154, + "index": 16, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 419.61817, + "y": 346.0325, + "index": 17, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 425.95172, + "y": 343.62833, + "index": 18, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 432.67757, + "y": 342.81108, + "index": 19, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 439.40372, + "y": 343.62583, + "index": 20, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 445.73817, + "y": 346.02765, + "index": 21, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 451.31488, + "y": 349.87462, + "index": 22, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 455.80782, + "y": 354.94578, + "index": 23, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 458.95794, + "y": 360.9432, + "index": 24, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 460.58016, + "y": 367.5219, + "index": 25, + "body": { + "#": 2534 + }, + "isInternal": false + }, + { + "x": 432.68279, + "y": 370.91408 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.80243, + "y": 1.50634 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2570 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2572 + }, + "max": { + "#": 2573 + } + }, + { + "x": 404.78416, + "y": 342.81108 + }, + { + "x": 460.58141, + "y": 399.01708 + }, + { + "x": 431.88036, + "y": 369.40774 + }, + [ + { + "#": 2576 + }, + { + "#": 2577 + }, + { + "#": 2578 + }, + { + "#": 2579 + }, + { + "#": 2580 + }, + { + "#": 2581 + }, + { + "#": 2582 + }, + { + "#": 2583 + }, + { + "#": 2584 + }, + { + "#": 2585 + }, + { + "#": 2586 + }, + { + "#": 2587 + }, + { + "#": 2588 + } + ], + { + "x": -0.97101, + "y": -0.23905 + }, + { + "x": -0.88548, + "y": -0.46468 + }, + { + "x": -0.74874, + "y": -0.66287 + }, + { + "x": -0.56813, + "y": -0.82294 + }, + { + "x": -0.35489, + "y": -0.93491 + }, + { + "x": -0.12062, + "y": -0.9927 + }, + { + "x": 0.12025, + "y": -0.99274 + }, + { + "x": 0.35454, + "y": -0.93504 + }, + { + "x": 0.56783, + "y": -0.82315 + }, + { + "x": 0.74849, + "y": -0.66315 + }, + { + "x": 0.88531, + "y": -0.465 + }, + { + "x": 0.97092, + "y": -0.23942 + }, + { + "x": 1, + "y": -0.00019 + }, + { + "id": "8,9,7,8", + "startCol": 8, + "endCol": 9, + "startRow": 7, + "endRow": 8 + }, + { + "id": 52, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2591 + }, + "angle": 0, + "vertices": { + "#": 2592 + }, + "position": { + "#": 2613 + }, + "force": { + "#": 2614 + }, + "torque": 0, + "positionImpulse": { + "#": 2615 + }, + "constraintImpulse": { + "#": 2616 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2617 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2618 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2619 + }, + "circleRadius": 18.16583, + "bounds": { + "#": 2621 + }, + "positionPrev": { + "#": 2624 + }, + "anglePrev": 0, + "axes": { + "#": 2625 + }, + "area": 1019.73872, + "mass": 1.01974, + "inverseMass": 0.98064, + "inertia": 662.03618, + "inverseInertia": 0.00151, + "parent": { + "#": 2590 + }, + "sleepCounter": 0, + "region": { + "#": 2636 + } + }, + [ + { + "#": 2590 + } + ], + [ + { + "#": 2593 + }, + { + "#": 2594 + }, + { + "#": 2595 + }, + { + "#": 2596 + }, + { + "#": 2597 + }, + { + "#": 2598 + }, + { + "#": 2599 + }, + { + "#": 2600 + }, + { + "#": 2601 + }, + { + "#": 2602 + }, + { + "#": 2603 + }, + { + "#": 2604 + }, + { + "#": 2605 + }, + { + "#": 2606 + }, + { + "#": 2607 + }, + { + "#": 2608 + }, + { + "#": 2609 + }, + { + "#": 2610 + }, + { + "#": 2611 + }, + { + "#": 2612 + } + ], + { + "x": 505.446, + "y": 365.33175, + "index": 0, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 503.69, + "y": 370.73675, + "index": 1, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 500.349, + "y": 375.33475, + "index": 2, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 495.751, + "y": 378.67575, + "index": 3, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 490.346, + "y": 380.43175, + "index": 4, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 484.662, + "y": 380.43175, + "index": 5, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 479.257, + "y": 378.67575, + "index": 6, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 474.659, + "y": 375.33475, + "index": 7, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 471.318, + "y": 370.73675, + "index": 8, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 469.562, + "y": 365.33175, + "index": 9, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 469.562, + "y": 359.64775, + "index": 10, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 471.318, + "y": 354.24275, + "index": 11, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 474.659, + "y": 349.64475, + "index": 12, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 479.257, + "y": 346.30375, + "index": 13, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 484.662, + "y": 344.54775, + "index": 14, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 490.346, + "y": 344.54775, + "index": 15, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 495.751, + "y": 346.30375, + "index": 16, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 500.349, + "y": 349.64475, + "index": 17, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 503.69, + "y": 354.24275, + "index": 18, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 505.446, + "y": 359.64775, + "index": 19, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 487.504, + "y": 362.48975 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2620 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2622 + }, + "max": { + "#": 2623 + } + }, + { + "x": 469.562, + "y": 344.54775 + }, + { + "x": 505.446, + "y": 380.43175 + }, + { + "x": 487.504, + "y": 359.58248 + }, + [ + { + "#": 2626 + }, + { + "#": 2627 + }, + { + "#": 2628 + }, + { + "#": 2629 + }, + { + "#": 2630 + }, + { + "#": 2631 + }, + { + "#": 2632 + }, + { + "#": 2633 + }, + { + "#": 2634 + }, + { + "#": 2635 + } + ], + { + "x": -0.95107, + "y": -0.30899 + }, + { + "x": -0.80899, + "y": -0.58783 + }, + { + "x": -0.58783, + "y": -0.80899 + }, + { + "x": -0.30899, + "y": -0.95107 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30899, + "y": -0.95107 + }, + { + "x": 0.58783, + "y": -0.80899 + }, + { + "x": 0.80899, + "y": -0.58783 + }, + { + "x": 0.95107, + "y": -0.30899 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,7,7", + "startCol": 9, + "endCol": 10, + "startRow": 7, + "endRow": 7 + }, + { + "id": 53, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2638 + }, + "angle": 0, + "vertices": { + "#": 2639 + }, + "position": { + "#": 2666 + }, + "force": { + "#": 2667 + }, + "torque": 0, + "positionImpulse": { + "#": 2668 + }, + "constraintImpulse": { + "#": 2669 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2670 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2671 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2672 + }, + "circleRadius": 25.80562, + "bounds": { + "#": 2674 + }, + "positionPrev": { + "#": 2677 + }, + "anglePrev": 0, + "axes": { + "#": 2678 + }, + "area": 2071.79269, + "mass": 2.07179, + "inverseMass": 0.48267, + "inertia": 2732.63107, + "inverseInertia": 0.00037, + "parent": { + "#": 2637 + }, + "sleepCounter": 0, + "region": { + "#": 2692 + } + }, + [ + { + "#": 2637 + } + ], + [ + { + "#": 2640 + }, + { + "#": 2641 + }, + { + "#": 2642 + }, + { + "#": 2643 + }, + { + "#": 2644 + }, + { + "#": 2645 + }, + { + "#": 2646 + }, + { + "#": 2647 + }, + { + "#": 2648 + }, + { + "#": 2649 + }, + { + "#": 2650 + }, + { + "#": 2651 + }, + { + "#": 2652 + }, + { + "#": 2653 + }, + { + "#": 2654 + }, + { + "#": 2655 + }, + { + "#": 2656 + }, + { + "#": 2657 + }, + { + "#": 2658 + }, + { + "#": 2659 + }, + { + "#": 2660 + }, + { + "#": 2661 + }, + { + "#": 2662 + }, + { + "#": 2663 + }, + { + "#": 2664 + }, + { + "#": 2665 + } + ], + { + "x": 566.68, + "y": 373.46475, + "index": 0, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 565.192, + "y": 379.50475, + "index": 1, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 562.301, + "y": 385.01275, + "index": 2, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 558.175, + "y": 389.66975, + "index": 3, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 553.055, + "y": 393.20375, + "index": 4, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 547.239, + "y": 395.40975, + "index": 5, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 541.063, + "y": 396.15975, + "index": 6, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 534.887, + "y": 395.40975, + "index": 7, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 529.071, + "y": 393.20375, + "index": 8, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 523.951, + "y": 389.66975, + "index": 9, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 519.825, + "y": 385.01275, + "index": 10, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 516.934, + "y": 379.50475, + "index": 11, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 515.446, + "y": 373.46475, + "index": 12, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 515.446, + "y": 367.24275, + "index": 13, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 516.934, + "y": 361.20275, + "index": 14, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 519.825, + "y": 355.69475, + "index": 15, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 523.951, + "y": 351.03775, + "index": 16, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 529.071, + "y": 347.50375, + "index": 17, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 534.887, + "y": 345.29775, + "index": 18, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 541.063, + "y": 344.54775, + "index": 19, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 547.239, + "y": 345.29775, + "index": 20, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 553.055, + "y": 347.50375, + "index": 21, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 558.175, + "y": 351.03775, + "index": 22, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 562.301, + "y": 355.69475, + "index": 23, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 565.192, + "y": 361.20275, + "index": 24, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 566.68, + "y": 367.24275, + "index": 25, + "body": { + "#": 2637 + }, + "isInternal": false + }, + { + "x": 541.063, + "y": 370.35375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2673 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2675 + }, + "max": { + "#": 2676 + } + }, + { + "x": 515.446, + "y": 344.54775 + }, + { + "x": 566.68, + "y": 396.15975 + }, + { + "x": 541.063, + "y": 367.44648 + }, + [ + { + "#": 2679 + }, + { + "#": 2680 + }, + { + "#": 2681 + }, + { + "#": 2682 + }, + { + "#": 2683 + }, + { + "#": 2684 + }, + { + "#": 2685 + }, + { + "#": 2686 + }, + { + "#": 2687 + }, + { + "#": 2688 + }, + { + "#": 2689 + }, + { + "#": 2690 + }, + { + "#": 2691 + } + ], + { + "x": -0.97097, + "y": -0.23921 + }, + { + "x": -0.88544, + "y": -0.46475 + }, + { + "x": -0.74849, + "y": -0.66315 + }, + { + "x": -0.56806, + "y": -0.82299 + }, + { + "x": -0.35464, + "y": -0.935 + }, + { + "x": -0.12055, + "y": -0.99271 + }, + { + "x": 0.12055, + "y": -0.99271 + }, + { + "x": 0.35464, + "y": -0.935 + }, + { + "x": 0.56806, + "y": -0.82299 + }, + { + "x": 0.74849, + "y": -0.66315 + }, + { + "x": 0.88544, + "y": -0.46475 + }, + { + "x": 0.97097, + "y": -0.23921 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,7,8", + "startCol": 10, + "endCol": 11, + "startRow": 7, + "endRow": 8 + }, + { + "id": 54, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2694 + }, + "angle": 0, + "vertices": { + "#": 2695 + }, + "position": { + "#": 2720 + }, + "force": { + "#": 2721 + }, + "torque": 0, + "positionImpulse": { + "#": 2722 + }, + "constraintImpulse": { + "#": 2723 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2724 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2725 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2726 + }, + "circleRadius": 22.31887, + "bounds": { + "#": 2728 + }, + "positionPrev": { + "#": 2731 + }, + "anglePrev": 0, + "axes": { + "#": 2732 + }, + "area": 1547.12858, + "mass": 1.54713, + "inverseMass": 0.64636, + "inertia": 1523.85754, + "inverseInertia": 0.00066, + "parent": { + "#": 2693 + }, + "sleepCounter": 0, + "region": { + "#": 2745 + } + }, + [ + { + "#": 2693 + } + ], + [ + { + "#": 2696 + }, + { + "#": 2697 + }, + { + "#": 2698 + }, + { + "#": 2699 + }, + { + "#": 2700 + }, + { + "#": 2701 + }, + { + "#": 2702 + }, + { + "#": 2703 + }, + { + "#": 2704 + }, + { + "#": 2705 + }, + { + "#": 2706 + }, + { + "#": 2707 + }, + { + "#": 2708 + }, + { + "#": 2709 + }, + { + "#": 2710 + }, + { + "#": 2711 + }, + { + "#": 2712 + }, + { + "#": 2713 + }, + { + "#": 2714 + }, + { + "#": 2715 + }, + { + "#": 2716 + }, + { + "#": 2717 + }, + { + "#": 2718 + }, + { + "#": 2719 + } + ], + { + "x": 620.936, + "y": 369.58875, + "index": 0, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 619.428, + "y": 375.21675, + "index": 1, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 616.515, + "y": 380.26275, + "index": 2, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 612.395, + "y": 384.38275, + "index": 3, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 607.349, + "y": 387.29575, + "index": 4, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 601.721, + "y": 388.80375, + "index": 5, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 595.895, + "y": 388.80375, + "index": 6, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 590.267, + "y": 387.29575, + "index": 7, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 585.221, + "y": 384.38275, + "index": 8, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 581.101, + "y": 380.26275, + "index": 9, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 578.188, + "y": 375.21675, + "index": 10, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 576.68, + "y": 369.58875, + "index": 11, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 576.68, + "y": 363.76275, + "index": 12, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 578.188, + "y": 358.13475, + "index": 13, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 581.101, + "y": 353.08875, + "index": 14, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 585.221, + "y": 348.96875, + "index": 15, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 590.267, + "y": 346.05575, + "index": 16, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 595.895, + "y": 344.54775, + "index": 17, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 601.721, + "y": 344.54775, + "index": 18, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 607.349, + "y": 346.05575, + "index": 19, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 612.395, + "y": 348.96875, + "index": 20, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 616.515, + "y": 353.08875, + "index": 21, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 619.428, + "y": 358.13475, + "index": 22, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 620.936, + "y": 363.76275, + "index": 23, + "body": { + "#": 2693 + }, + "isInternal": false + }, + { + "x": 598.808, + "y": 366.67575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2727 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2729 + }, + "max": { + "#": 2730 + } + }, + { + "x": 576.68, + "y": 344.54775 + }, + { + "x": 620.936, + "y": 388.80375 + }, + { + "x": 598.808, + "y": 363.76848 + }, + [ + { + "#": 2733 + }, + { + "#": 2734 + }, + { + "#": 2735 + }, + { + "#": 2736 + }, + { + "#": 2737 + }, + { + "#": 2738 + }, + { + "#": 2739 + }, + { + "#": 2740 + }, + { + "#": 2741 + }, + { + "#": 2742 + }, + { + "#": 2743 + }, + { + "#": 2744 + } + ], + { + "x": -0.96593, + "y": -0.25882 + }, + { + "x": -0.86605, + "y": -0.49996 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.49996, + "y": -0.86605 + }, + { + "x": -0.25882, + "y": -0.96593 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25882, + "y": -0.96593 + }, + { + "x": 0.49996, + "y": -0.86605 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86605, + "y": -0.49996 + }, + { + "x": 0.96593, + "y": -0.25882 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,7,8", + "startCol": 12, + "endCol": 12, + "startRow": 7, + "endRow": 8 + }, + { + "id": 55, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2747 + }, + "angle": 0, + "vertices": { + "#": 2748 + }, + "position": { + "#": 2771 + }, + "force": { + "#": 2772 + }, + "torque": 0, + "positionImpulse": { + "#": 2773 + }, + "constraintImpulse": { + "#": 2774 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2775 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2776 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2777 + }, + "circleRadius": 21.77964, + "bounds": { + "#": 2779 + }, + "positionPrev": { + "#": 2782 + }, + "anglePrev": 0, + "axes": { + "#": 2783 + }, + "area": 1470.04091, + "mass": 1.47004, + "inverseMass": 0.68025, + "inertia": 1375.79959, + "inverseInertia": 0.00073, + "parent": { + "#": 2746 + }, + "sleepCounter": 0, + "region": { + "#": 2795 + } + }, + [ + { + "#": 2746 + } + ], + [ + { + "#": 2749 + }, + { + "#": 2750 + }, + { + "#": 2751 + }, + { + "#": 2752 + }, + { + "#": 2753 + }, + { + "#": 2754 + }, + { + "#": 2755 + }, + { + "#": 2756 + }, + { + "#": 2757 + }, + { + "#": 2758 + }, + { + "#": 2759 + }, + { + "#": 2760 + }, + { + "#": 2761 + }, + { + "#": 2762 + }, + { + "#": 2763 + }, + { + "#": 2764 + }, + { + "#": 2765 + }, + { + "#": 2766 + }, + { + "#": 2767 + }, + { + "#": 2768 + }, + { + "#": 2769 + }, + { + "#": 2770 + } + ], + { + "x": 143.116, + "y": 437.93775, + "index": 0, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 141.369, + "y": 443.88575, + "index": 1, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 138.018, + "y": 449.10075, + "index": 2, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 133.333, + "y": 453.15975, + "index": 3, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 127.694, + "y": 455.73475, + "index": 4, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 121.558, + "y": 456.61775, + "index": 5, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 115.422, + "y": 455.73475, + "index": 6, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 109.783, + "y": 453.15975, + "index": 7, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 105.098, + "y": 449.10075, + "index": 8, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 101.747, + "y": 443.88575, + "index": 9, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 100, + "y": 437.93775, + "index": 10, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 100, + "y": 431.73775, + "index": 11, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 101.747, + "y": 425.78975, + "index": 12, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 105.098, + "y": 420.57475, + "index": 13, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 109.783, + "y": 416.51575, + "index": 14, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 115.422, + "y": 413.94075, + "index": 15, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 121.558, + "y": 413.05775, + "index": 16, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 127.694, + "y": 413.94075, + "index": 17, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 133.333, + "y": 416.51575, + "index": 18, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 138.018, + "y": 420.57475, + "index": 19, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 141.369, + "y": 425.78975, + "index": 20, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 143.116, + "y": 431.73775, + "index": 21, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 121.558, + "y": 434.83775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2778 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2780 + }, + "max": { + "#": 2781 + } + }, + { + "x": 100, + "y": 413.05775 + }, + { + "x": 143.116, + "y": 456.61775 + }, + { + "x": 121.558, + "y": 431.93048 + }, + [ + { + "#": 2784 + }, + { + "#": 2785 + }, + { + "#": 2786 + }, + { + "#": 2787 + }, + { + "#": 2788 + }, + { + "#": 2789 + }, + { + "#": 2790 + }, + { + "#": 2791 + }, + { + "#": 2792 + }, + { + "#": 2793 + }, + { + "#": 2794 + } + ], + { + "x": -0.95947, + "y": -0.28181 + }, + { + "x": -0.84129, + "y": -0.54059 + }, + { + "x": -0.65481, + "y": -0.7558 + }, + { + "x": -0.41538, + "y": -0.90965 + }, + { + "x": -0.14244, + "y": -0.9898 + }, + { + "x": 0.14244, + "y": -0.9898 + }, + { + "x": 0.41538, + "y": -0.90965 + }, + { + "x": 0.65481, + "y": -0.7558 + }, + { + "x": 0.84129, + "y": -0.54059 + }, + { + "x": 0.95947, + "y": -0.28181 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,2,8,9", + "startCol": 2, + "endCol": 2, + "startRow": 8, + "endRow": 9 + }, + { + "id": 56, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2797 + }, + "angle": 0, + "vertices": { + "#": 2798 + }, + "position": { + "#": 2823 + }, + "force": { + "#": 2824 + }, + "torque": 0, + "positionImpulse": { + "#": 2825 + }, + "constraintImpulse": { + "#": 2826 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2827 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2828 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2829 + }, + "circleRadius": 22.70647, + "bounds": { + "#": 2831 + }, + "positionPrev": { + "#": 2834 + }, + "anglePrev": 0, + "axes": { + "#": 2835 + }, + "area": 1601.2929, + "mass": 1.60129, + "inverseMass": 0.6245, + "inertia": 1632.42451, + "inverseInertia": 0.00061, + "parent": { + "#": 2796 + }, + "sleepCounter": 0, + "region": { + "#": 2848 + } + }, + [ + { + "#": 2796 + } + ], + [ + { + "#": 2799 + }, + { + "#": 2800 + }, + { + "#": 2801 + }, + { + "#": 2802 + }, + { + "#": 2803 + }, + { + "#": 2804 + }, + { + "#": 2805 + }, + { + "#": 2806 + }, + { + "#": 2807 + }, + { + "#": 2808 + }, + { + "#": 2809 + }, + { + "#": 2810 + }, + { + "#": 2811 + }, + { + "#": 2812 + }, + { + "#": 2813 + }, + { + "#": 2814 + }, + { + "#": 2815 + }, + { + "#": 2816 + }, + { + "#": 2817 + }, + { + "#": 2818 + }, + { + "#": 2819 + }, + { + "#": 2820 + }, + { + "#": 2821 + }, + { + "#": 2822 + } + ], + { + "x": 198.14, + "y": 438.53375, + "index": 0, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 196.606, + "y": 444.25875, + "index": 1, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 193.642, + "y": 449.39275, + "index": 2, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 189.451, + "y": 453.58375, + "index": 3, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 184.317, + "y": 456.54775, + "index": 4, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 178.592, + "y": 458.08175, + "index": 5, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 172.664, + "y": 458.08175, + "index": 6, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 166.939, + "y": 456.54775, + "index": 7, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 161.805, + "y": 453.58375, + "index": 8, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 157.614, + "y": 449.39275, + "index": 9, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 154.65, + "y": 444.25875, + "index": 10, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 153.116, + "y": 438.53375, + "index": 11, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 153.116, + "y": 432.60575, + "index": 12, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 154.65, + "y": 426.88075, + "index": 13, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 157.614, + "y": 421.74675, + "index": 14, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 161.805, + "y": 417.55575, + "index": 15, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 166.939, + "y": 414.59175, + "index": 16, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 172.664, + "y": 413.05775, + "index": 17, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 178.592, + "y": 413.05775, + "index": 18, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 184.317, + "y": 414.59175, + "index": 19, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 189.451, + "y": 417.55575, + "index": 20, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 193.642, + "y": 421.74675, + "index": 21, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 196.606, + "y": 426.88075, + "index": 22, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 198.14, + "y": 432.60575, + "index": 23, + "body": { + "#": 2796 + }, + "isInternal": false + }, + { + "x": 175.628, + "y": 435.56975 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2830 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2832 + }, + "max": { + "#": 2833 + } + }, + { + "x": 153.116, + "y": 413.05775 + }, + { + "x": 198.14, + "y": 458.08175 + }, + { + "x": 175.628, + "y": 432.66248 + }, + [ + { + "#": 2836 + }, + { + "#": 2837 + }, + { + "#": 2838 + }, + { + "#": 2839 + }, + { + "#": 2840 + }, + { + "#": 2841 + }, + { + "#": 2842 + }, + { + "#": 2843 + }, + { + "#": 2844 + }, + { + "#": 2845 + }, + { + "#": 2846 + }, + { + "#": 2847 + } + ], + { + "x": -0.96593, + "y": -0.25882 + }, + { + "x": -0.86603, + "y": -0.49999 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": -0.25882, + "y": -0.96593 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25882, + "y": -0.96593 + }, + { + "x": 0.49999, + "y": -0.86603 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86603, + "y": -0.49999 + }, + { + "x": 0.96593, + "y": -0.25882 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,8,9", + "startCol": 3, + "endCol": 4, + "startRow": 8, + "endRow": 9 + }, + { + "id": 57, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2850 + }, + "angle": 0, + "vertices": { + "#": 2851 + }, + "position": { + "#": 2872 + }, + "force": { + "#": 2873 + }, + "torque": 0, + "positionImpulse": { + "#": 2874 + }, + "constraintImpulse": { + "#": 2875 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2876 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2877 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2878 + }, + "circleRadius": 19.72897, + "bounds": { + "#": 2880 + }, + "positionPrev": { + "#": 2883 + }, + "anglePrev": 0, + "axes": { + "#": 2884 + }, + "area": 1202.79202, + "mass": 1.20279, + "inverseMass": 0.8314, + "inertia": 921.05375, + "inverseInertia": 0.00109, + "parent": { + "#": 2849 + }, + "sleepCounter": 0, + "region": { + "#": 2895 + } + }, + [ + { + "#": 2849 + } + ], + [ + { + "#": 2852 + }, + { + "#": 2853 + }, + { + "#": 2854 + }, + { + "#": 2855 + }, + { + "#": 2856 + }, + { + "#": 2857 + }, + { + "#": 2858 + }, + { + "#": 2859 + }, + { + "#": 2860 + }, + { + "#": 2861 + }, + { + "#": 2862 + }, + { + "#": 2863 + }, + { + "#": 2864 + }, + { + "#": 2865 + }, + { + "#": 2866 + }, + { + "#": 2867 + }, + { + "#": 2868 + }, + { + "#": 2869 + }, + { + "#": 2870 + }, + { + "#": 2871 + } + ], + { + "x": 247.112, + "y": 435.62975, + "index": 0, + "body": { + "#": 2849 + }, + "isInternal": false + }, + { + "x": 245.205, + "y": 441.50075, + "index": 1, + "body": { + "#": 2849 + }, + "isInternal": false + }, + { + "x": 241.576, + "y": 446.49375, + "index": 2, + "body": { + "#": 2849 + }, + "isInternal": false + }, + { + "x": 236.583, + "y": 450.12275, + "index": 3, + "body": { + "#": 2849 + }, + "isInternal": false + }, + { + "x": 230.712, + "y": 452.02975, + "index": 4, + "body": { + "#": 2849 + }, + "isInternal": false + }, + { + "x": 224.54, + "y": 452.02975, + "index": 5, + "body": { + "#": 2849 + }, + "isInternal": false + }, + { + "x": 218.669, + "y": 450.12275, + "index": 6, + "body": { + "#": 2849 + }, + "isInternal": false + }, + { + "x": 213.676, + "y": 446.49375, + "index": 7, + "body": { + "#": 2849 + }, + "isInternal": false + }, + { + "x": 210.047, + "y": 441.50075, + "index": 8, + "body": { + "#": 2849 + }, + "isInternal": false + }, + { + "x": 208.14, + "y": 435.62975, + "index": 9, + "body": { + "#": 2849 + }, + "isInternal": false + }, + { + "x": 208.14, + "y": 429.45775, + "index": 10, + "body": { + "#": 2849 + }, + "isInternal": false + }, + { + "x": 210.047, + "y": 423.58675, + "index": 11, + "body": { + "#": 2849 + }, + "isInternal": false + }, + { + "x": 213.676, + "y": 418.59375, + "index": 12, + "body": { + "#": 2849 + }, + "isInternal": false + }, + { + "x": 218.669, + "y": 414.96475, + "index": 13, + "body": { + "#": 2849 + }, + "isInternal": false + }, + { + "x": 224.54, + "y": 413.05775, + "index": 14, + "body": { + "#": 2849 + }, + "isInternal": false + }, + { + "x": 230.712, + "y": 413.05775, + "index": 15, + "body": { + "#": 2849 + }, + "isInternal": false + }, + { + "x": 236.583, + "y": 414.96475, + "index": 16, + "body": { + "#": 2849 + }, + "isInternal": false + }, + { + "x": 241.576, + "y": 418.59375, + "index": 17, + "body": { + "#": 2849 + }, + "isInternal": false + }, + { + "x": 245.205, + "y": 423.58675, + "index": 18, + "body": { + "#": 2849 + }, + "isInternal": false + }, + { + "x": 247.112, + "y": 429.45775, + "index": 19, + "body": { + "#": 2849 + }, + "isInternal": false + }, + { + "x": 227.626, + "y": 432.54375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2879 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2881 + }, + "max": { + "#": 2882 + } + }, + { + "x": 208.14, + "y": 413.05775 + }, + { + "x": 247.112, + "y": 452.02975 + }, + { + "x": 227.626, + "y": 429.63648 + }, + [ + { + "#": 2885 + }, + { + "#": 2886 + }, + { + "#": 2887 + }, + { + "#": 2888 + }, + { + "#": 2889 + }, + { + "#": 2890 + }, + { + "#": 2891 + }, + { + "#": 2892 + }, + { + "#": 2893 + }, + { + "#": 2894 + } + ], + { + "x": -0.95109, + "y": -0.30893 + }, + { + "x": -0.80891, + "y": -0.58793 + }, + { + "x": -0.58793, + "y": -0.80891 + }, + { + "x": -0.30893, + "y": -0.95109 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30893, + "y": -0.95109 + }, + { + "x": 0.58793, + "y": -0.80891 + }, + { + "x": 0.80891, + "y": -0.58793 + }, + { + "x": 0.95109, + "y": -0.30893 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,8,9", + "startCol": 4, + "endCol": 5, + "startRow": 8, + "endRow": 9 + }, + { + "id": 58, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2897 + }, + "angle": 0, + "vertices": { + "#": 2898 + }, + "position": { + "#": 2925 + }, + "force": { + "#": 2926 + }, + "torque": 0, + "positionImpulse": { + "#": 2927 + }, + "constraintImpulse": { + "#": 2928 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2929 + }, + "angularVelocity": 0.00138, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2930 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2931 + }, + "circleRadius": 25.25457, + "bounds": { + "#": 2933 + }, + "positionPrev": { + "#": 2936 + }, + "anglePrev": -0.00175, + "axes": { + "#": 2937 + }, + "area": 1984.22076, + "mass": 1.98422, + "inverseMass": 0.50398, + "inertia": 2506.50392, + "inverseInertia": 0.0004, + "parent": { + "#": 2896 + }, + "sleepCounter": 0, + "region": { + "#": 2951 + } + }, + [ + { + "#": 2896 + } + ], + [ + { + "#": 2899 + }, + { + "#": 2900 + }, + { + "#": 2901 + }, + { + "#": 2902 + }, + { + "#": 2903 + }, + { + "#": 2904 + }, + { + "#": 2905 + }, + { + "#": 2906 + }, + { + "#": 2907 + }, + { + "#": 2908 + }, + { + "#": 2909 + }, + { + "#": 2910 + }, + { + "#": 2911 + }, + { + "#": 2912 + }, + { + "#": 2913 + }, + { + "#": 2914 + }, + { + "#": 2915 + }, + { + "#": 2916 + }, + { + "#": 2917 + }, + { + "#": 2918 + }, + { + "#": 2919 + }, + { + "#": 2920 + }, + { + "#": 2921 + }, + { + "#": 2922 + }, + { + "#": 2923 + }, + { + "#": 2924 + } + ], + { + "x": 307.00555, + "y": 439.32738, + "index": 0, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 305.54855, + "y": 445.23838, + "index": 1, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 302.71955, + "y": 450.62938, + "index": 2, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 298.68255, + "y": 455.18638, + "index": 3, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 293.67155, + "y": 458.64538, + "index": 4, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 287.97955, + "y": 460.80438, + "index": 5, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 281.93555, + "y": 461.53838, + "index": 6, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 275.89155, + "y": 460.80438, + "index": 7, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 270.19955, + "y": 458.64538, + "index": 8, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 265.18855, + "y": 455.18638, + "index": 9, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 261.15155, + "y": 450.62938, + "index": 10, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 258.32255, + "y": 445.23838, + "index": 11, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 256.86555, + "y": 439.32738, + "index": 12, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 256.86555, + "y": 433.23938, + "index": 13, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 258.32255, + "y": 427.32838, + "index": 14, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 261.15155, + "y": 421.93738, + "index": 15, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 265.18855, + "y": 417.38038, + "index": 16, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 270.19955, + "y": 413.92138, + "index": 17, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 275.89155, + "y": 411.76238, + "index": 18, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 281.93555, + "y": 411.02838, + "index": 19, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 287.97955, + "y": 411.76238, + "index": 20, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 293.67155, + "y": 413.92138, + "index": 21, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 298.68255, + "y": 417.38038, + "index": 22, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 302.71955, + "y": 421.93738, + "index": 23, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 305.54855, + "y": 427.32838, + "index": 24, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 307.00555, + "y": 433.23938, + "index": 25, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 281.93555, + "y": 436.28338 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.25136, + "y": 1.38773 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2932 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2934 + }, + "max": { + "#": 2935 + } + }, + { + "x": 256.86555, + "y": 411.02838 + }, + { + "x": 307.00555, + "y": 464.44565 + }, + { + "x": 282.19888, + "y": 434.81077 + }, + [ + { + "#": 2938 + }, + { + "#": 2939 + }, + { + "#": 2940 + }, + { + "#": 2941 + }, + { + "#": 2942 + }, + { + "#": 2943 + }, + { + "#": 2944 + }, + { + "#": 2945 + }, + { + "#": 2946 + }, + { + "#": 2947 + }, + { + "#": 2948 + }, + { + "#": 2949 + }, + { + "#": 2950 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88548, + "y": -0.46467 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56808, + "y": -0.82297 + }, + { + "x": -0.35465, + "y": -0.935 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.35465, + "y": -0.935 + }, + { + "x": 0.56808, + "y": -0.82297 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88548, + "y": -0.46467 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,8,9", + "startCol": 5, + "endCol": 6, + "startRow": 8, + "endRow": 9 + }, + { + "id": 59, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2953 + }, + "angle": 0.01109, + "vertices": { + "#": 2954 + }, + "position": { + "#": 2981 + }, + "force": { + "#": 2982 + }, + "torque": 0, + "positionImpulse": { + "#": 2983 + }, + "constraintImpulse": { + "#": 2984 + }, + "totalContacts": 0, + "speed": 0.71633, + "angularSpeed": 0.00292, + "velocity": { + "#": 2985 + }, + "angularVelocity": 0.00206, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2986 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2987 + }, + "circleRadius": 26.1351, + "bounds": { + "#": 2989 + }, + "positionPrev": { + "#": 2992 + }, + "anglePrev": 0.00904, + "axes": { + "#": 2993 + }, + "area": 2125.03753, + "mass": 2.12504, + "inverseMass": 0.47058, + "inertia": 2874.89257, + "inverseInertia": 0.00035, + "parent": { + "#": 2952 + }, + "sleepCounter": 0, + "region": { + "#": 3007 + } + }, + [ + { + "#": 2952 + } + ], + [ + { + "#": 2955 + }, + { + "#": 2956 + }, + { + "#": 2957 + }, + { + "#": 2958 + }, + { + "#": 2959 + }, + { + "#": 2960 + }, + { + "#": 2961 + }, + { + "#": 2962 + }, + { + "#": 2963 + }, + { + "#": 2964 + }, + { + "#": 2965 + }, + { + "#": 2966 + }, + { + "#": 2967 + }, + { + "#": 2968 + }, + { + "#": 2969 + }, + { + "#": 2970 + }, + { + "#": 2971 + }, + { + "#": 2972 + }, + { + "#": 2973 + }, + { + "#": 2974 + }, + { + "#": 2975 + }, + { + "#": 2976 + }, + { + "#": 2977 + }, + { + "#": 2978 + }, + { + "#": 2979 + }, + { + "#": 2980 + } + ], + { + "x": 367.98127, + "y": 434.01775, + "index": 0, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 366.40553, + "y": 440.11866, + "index": 1, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 363.41586, + "y": 445.66385, + "index": 2, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 359.18582, + "y": 450.33323, + "index": 3, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 353.96146, + "y": 453.85452, + "index": 4, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 348.04604, + "y": 456.02406, + "index": 5, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 341.78301, + "y": 456.71366, + "index": 6, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 335.53681, + "y": 455.88535, + "index": 7, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 329.67095, + "y": 453.58517, + "index": 8, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 324.52596, + "y": 449.94889, + "index": 9, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 320.4005, + "y": 445.18686, + "index": 10, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 317.53453, + "y": 439.57673, + "index": 11, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 316.09446, + "y": 433.44239, + "index": 12, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 316.16432, + "y": 427.14278, + "index": 13, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 317.74006, + "y": 421.04187, + "index": 14, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 320.72973, + "y": 415.49668, + "index": 15, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 324.95977, + "y": 410.8273, + "index": 16, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 330.18413, + "y": 407.30601, + "index": 17, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 336.09955, + "y": 405.13647, + "index": 18, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 342.36259, + "y": 404.44687, + "index": 19, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 348.60878, + "y": 405.27518, + "index": 20, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 354.47464, + "y": 407.57536, + "index": 21, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 359.61964, + "y": 411.21164, + "index": 22, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 363.74509, + "y": 415.97367, + "index": 23, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 366.61106, + "y": 421.5838, + "index": 24, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 368.05113, + "y": 427.71814, + "index": 25, + "body": { + "#": 2952 + }, + "isInternal": false + }, + { + "x": 342.0728, + "y": 430.58027 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.22475, + "y": 0.4078 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2988 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2990 + }, + "max": { + "#": 2991 + } + }, + { + "x": 315.84508, + "y": 404.44687 + }, + { + "x": 368.05113, + "y": 457.38518 + }, + { + "x": 342.29747, + "y": 430.18014 + }, + [ + { + "#": 2994 + }, + { + "#": 2995 + }, + { + "#": 2996 + }, + { + "#": 2997 + }, + { + "#": 2998 + }, + { + "#": 2999 + }, + { + "#": 3000 + }, + { + "#": 3001 + }, + { + "#": 3002 + }, + { + "#": 3003 + }, + { + "#": 3004 + }, + { + "#": 3005 + }, + { + "#": 3006 + } + ], + { + "x": -0.96823, + "y": -0.25007 + }, + { + "x": -0.88022, + "y": -0.47457 + }, + { + "x": -0.74111, + "y": -0.67138 + }, + { + "x": -0.55891, + "y": -0.82923 + }, + { + "x": -0.34433, + "y": -0.93885 + }, + { + "x": -0.10944, + "y": -0.99399 + }, + { + "x": 0.13146, + "y": -0.99132 + }, + { + "x": 0.36507, + "y": -0.93098 + }, + { + "x": 0.57716, + "y": -0.81663 + }, + { + "x": 0.75582, + "y": -0.65478 + }, + { + "x": 0.89053, + "y": -0.45493 + }, + { + "x": 0.97353, + "y": -0.22854 + }, + { + "x": 0.99994, + "y": 0.01109 + }, + { + "id": "6,7,8,9", + "startCol": 6, + "endCol": 7, + "startRow": 8, + "endRow": 9 + }, + { + "id": 60, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3009 + }, + "angle": -0.04047, + "vertices": { + "#": 3010 + }, + "position": { + "#": 3037 + }, + "force": { + "#": 3038 + }, + "torque": 0, + "positionImpulse": { + "#": 3039 + }, + "constraintImpulse": { + "#": 3040 + }, + "totalContacts": 0, + "speed": 1.22141, + "angularSpeed": 0.00865, + "velocity": { + "#": 3041 + }, + "angularVelocity": -0.01133, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3042 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3043 + }, + "circleRadius": 25.33353, + "bounds": { + "#": 3045 + }, + "positionPrev": { + "#": 3048 + }, + "anglePrev": -0.02893, + "axes": { + "#": 3049 + }, + "area": 1996.65329, + "mass": 1.99665, + "inverseMass": 0.50084, + "inertia": 2538.01231, + "inverseInertia": 0.00039, + "parent": { + "#": 3008 + }, + "sleepCounter": 0, + "region": { + "#": 3063 + } + }, + [ + { + "#": 3008 + } + ], + [ + { + "#": 3011 + }, + { + "#": 3012 + }, + { + "#": 3013 + }, + { + "#": 3014 + }, + { + "#": 3015 + }, + { + "#": 3016 + }, + { + "#": 3017 + }, + { + "#": 3018 + }, + { + "#": 3019 + }, + { + "#": 3020 + }, + { + "#": 3021 + }, + { + "#": 3022 + }, + { + "#": 3023 + }, + { + "#": 3024 + }, + { + "#": 3025 + }, + { + "#": 3026 + }, + { + "#": 3027 + }, + { + "#": 3028 + }, + { + "#": 3029 + }, + { + "#": 3030 + }, + { + "#": 3031 + }, + { + "#": 3032 + }, + { + "#": 3033 + }, + { + "#": 3034 + }, + { + "#": 3035 + }, + { + "#": 3036 + } + ], + { + "x": 430.83765, + "y": 418.5442, + "index": 0, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 429.61676, + "y": 424.5275, + "index": 1, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 426.99991, + "y": 430.04591, + "index": 2, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 423.13819, + "y": 434.77704, + "index": 3, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 418.25671, + "y": 438.44757, + "index": 4, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 412.63899, + "y": 440.84184, + "index": 5, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 406.61078, + "y": 441.82357, + "index": 6, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 400.52292, + "y": 441.3325, + "index": 7, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 394.73, + "y": 439.40032, + "index": 8, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 389.5677, + "y": 436.13654, + "index": 9, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 385.33606, + "y": 431.73316, + "index": 10, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 382.28156, + "y": 426.44442, + "index": 11, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 380.58085, + "y": 420.57944, + "index": 12, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 380.3337, + "y": 414.47644, + "index": 13, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 381.55459, + "y": 408.49314, + "index": 14, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 384.17144, + "y": 402.97473, + "index": 15, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 388.03316, + "y": 398.2436, + "index": 16, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 392.91464, + "y": 394.57307, + "index": 17, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 398.53236, + "y": 392.17879, + "index": 18, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 404.56057, + "y": 391.19707, + "index": 19, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 410.64843, + "y": 391.68813, + "index": 20, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 416.44135, + "y": 393.62031, + "index": 21, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 421.60365, + "y": 396.8841, + "index": 22, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 425.83529, + "y": 401.28748, + "index": 23, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 428.88979, + "y": 406.57621, + "index": 24, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 430.5905, + "y": 412.4412, + "index": 25, + "body": { + "#": 3008 + }, + "isInternal": false + }, + { + "x": 405.58567, + "y": 416.51032 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.64092, + "y": 0.70817 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3044 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3046 + }, + "max": { + "#": 3047 + } + }, + { + "x": 379.60191, + "y": 391.19707 + }, + { + "x": 430.83765, + "y": 442.80148 + }, + { + "x": 406.21516, + "y": 415.87057 + }, + [ + { + "#": 3050 + }, + { + "#": 3051 + }, + { + "#": 3052 + }, + { + "#": 3053 + }, + { + "#": 3054 + }, + { + "#": 3055 + }, + { + "#": 3056 + }, + { + "#": 3057 + }, + { + "#": 3058 + }, + { + "#": 3059 + }, + { + "#": 3060 + }, + { + "#": 3061 + }, + { + "#": 3062 + } + ], + { + "x": -0.97981, + "y": -0.19993 + }, + { + "x": -0.90356, + "y": -0.42847 + }, + { + "x": -0.7747, + "y": -0.63233 + }, + { + "x": -0.60099, + "y": -0.79926 + }, + { + "x": -0.39208, + "y": -0.91993 + }, + { + "x": -0.16074, + "y": -0.987 + }, + { + "x": 0.0804, + "y": -0.99676 + }, + { + "x": 0.31641, + "y": -0.94862 + }, + { + "x": 0.53439, + "y": -0.84524 + }, + { + "x": 0.72103, + "y": -0.69291 + }, + { + "x": 0.86595, + "y": -0.50013 + }, + { + "x": 0.96044, + "y": -0.2785 + }, + { + "x": 0.99918, + "y": -0.04046 + }, + { + "id": "7,8,8,9", + "startCol": 7, + "endCol": 8, + "startRow": 8, + "endRow": 9 + }, + { + "id": 61, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3065 + }, + "angle": -0.01999, + "vertices": { + "#": 3066 + }, + "position": { + "#": 3087 + }, + "force": { + "#": 3088 + }, + "torque": 0, + "positionImpulse": { + "#": 3089 + }, + "constraintImpulse": { + "#": 3090 + }, + "totalContacts": 0, + "speed": 1.16944, + "angularSpeed": 0.00995, + "velocity": { + "#": 3091 + }, + "angularVelocity": -0.01524, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3092 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3093 + }, + "circleRadius": 18.5906, + "bounds": { + "#": 3095 + }, + "positionPrev": { + "#": 3098 + }, + "anglePrev": -0.00405, + "axes": { + "#": 3099 + }, + "area": 1068.00787, + "mass": 1.06801, + "inverseMass": 0.93632, + "inertia": 726.19426, + "inverseInertia": 0.00138, + "parent": { + "#": 3064 + }, + "sleepCounter": 0, + "region": { + "#": 3110 + } + }, + [ + { + "#": 3064 + } + ], + [ + { + "#": 3067 + }, + { + "#": 3068 + }, + { + "#": 3069 + }, + { + "#": 3070 + }, + { + "#": 3071 + }, + { + "#": 3072 + }, + { + "#": 3073 + }, + { + "#": 3074 + }, + { + "#": 3075 + }, + { + "#": 3076 + }, + { + "#": 3077 + }, + { + "#": 3078 + }, + { + "#": 3079 + }, + { + "#": 3080 + }, + { + "#": 3081 + }, + { + "#": 3082 + }, + { + "#": 3083 + }, + { + "#": 3084 + }, + { + "#": 3085 + }, + { + "#": 3086 + } + ], + { + "x": 476.4917, + "y": 429.85798, + "index": 0, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 474.80465, + "y": 435.42482, + "index": 1, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 471.4814, + "y": 440.19821, + "index": 2, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 466.84467, + "y": 443.7096, + "index": 3, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 461.34972, + "y": 445.61782, + "index": 4, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 455.53488, + "y": 445.73409, + "index": 5, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 449.96805, + "y": 444.04704, + "index": 6, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 445.19466, + "y": 440.72379, + "index": 7, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 441.68327, + "y": 436.08706, + "index": 8, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 439.77504, + "y": 430.59211, + "index": 9, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 439.65877, + "y": 424.77727, + "index": 10, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 441.34583, + "y": 419.21043, + "index": 11, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 444.66907, + "y": 414.43705, + "index": 12, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 449.3058, + "y": 410.92566, + "index": 13, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 454.80075, + "y": 409.01743, + "index": 14, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 460.61559, + "y": 408.90116, + "index": 15, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 466.18243, + "y": 410.58822, + "index": 16, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 470.95582, + "y": 413.91146, + "index": 17, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 474.46721, + "y": 418.54819, + "index": 18, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 476.37544, + "y": 424.04314, + "index": 19, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 458.07524, + "y": 427.31763 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.32487, + "y": 0.97488 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3094 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3096 + }, + "max": { + "#": 3097 + } + }, + { + "x": 439.65877, + "y": 408.90116 + }, + { + "x": 476.6413, + "y": 446.89393 + }, + { + "x": 457.71129, + "y": 426.33211 + }, + [ + { + "#": 3100 + }, + { + "#": 3101 + }, + { + "#": 3102 + }, + { + "#": 3103 + }, + { + "#": 3104 + }, + { + "#": 3105 + }, + { + "#": 3106 + }, + { + "#": 3107 + }, + { + "#": 3108 + }, + { + "#": 3109 + } + ], + { + "x": -0.95702, + "y": -0.29003 + }, + { + "x": -0.82069, + "y": -0.57137 + }, + { + "x": -0.60372, + "y": -0.7972 + }, + { + "x": -0.32805, + "y": -0.94466 + }, + { + "x": -0.01999, + "y": -0.9998 + }, + { + "x": 0.29003, + "y": -0.95702 + }, + { + "x": 0.57137, + "y": -0.82069 + }, + { + "x": 0.7972, + "y": -0.60372 + }, + { + "x": 0.94466, + "y": -0.32805 + }, + { + "x": 0.9998, + "y": -0.01999 + }, + { + "id": "9,9,8,9", + "startCol": 9, + "endCol": 9, + "startRow": 8, + "endRow": 9 + }, + { + "id": 62, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3112 + }, + "angle": 0, + "vertices": { + "#": 3113 + }, + "position": { + "#": 3140 + }, + "force": { + "#": 3141 + }, + "torque": 0, + "positionImpulse": { + "#": 3142 + }, + "constraintImpulse": { + "#": 3143 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3144 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3145 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3146 + }, + "circleRadius": 26.0915, + "bounds": { + "#": 3148 + }, + "positionPrev": { + "#": 3151 + }, + "anglePrev": 0, + "axes": { + "#": 3152 + }, + "area": 2117.92518, + "mass": 2.11793, + "inverseMass": 0.47216, + "inertia": 2855.68065, + "inverseInertia": 0.00035, + "parent": { + "#": 3111 + }, + "sleepCounter": 0, + "region": { + "#": 3166 + } + }, + [ + { + "#": 3111 + } + ], + [ + { + "#": 3114 + }, + { + "#": 3115 + }, + { + "#": 3116 + }, + { + "#": 3117 + }, + { + "#": 3118 + }, + { + "#": 3119 + }, + { + "#": 3120 + }, + { + "#": 3121 + }, + { + "#": 3122 + }, + { + "#": 3123 + }, + { + "#": 3124 + }, + { + "#": 3125 + }, + { + "#": 3126 + }, + { + "#": 3127 + }, + { + "#": 3128 + }, + { + "#": 3129 + }, + { + "#": 3130 + }, + { + "#": 3131 + }, + { + "#": 3132 + }, + { + "#": 3133 + }, + { + "#": 3134 + }, + { + "#": 3135 + }, + { + "#": 3136 + }, + { + "#": 3137 + }, + { + "#": 3138 + }, + { + "#": 3139 + } + ], + { + "x": 537.966, + "y": 442.29375, + "index": 0, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 536.461, + "y": 448.40075, + "index": 1, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 533.538, + "y": 453.97075, + "index": 2, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 529.367, + "y": 458.67875, + "index": 3, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 524.19, + "y": 462.25175, + "index": 4, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 518.309, + "y": 464.48175, + "index": 5, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 512.065, + "y": 465.23975, + "index": 6, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 505.821, + "y": 464.48175, + "index": 7, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 499.94, + "y": 462.25175, + "index": 8, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 494.763, + "y": 458.67875, + "index": 9, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 490.592, + "y": 453.97075, + "index": 10, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 487.669, + "y": 448.40075, + "index": 11, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 486.164, + "y": 442.29375, + "index": 12, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 486.164, + "y": 436.00375, + "index": 13, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 487.669, + "y": 429.89675, + "index": 14, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 490.592, + "y": 424.32675, + "index": 15, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 494.763, + "y": 419.61875, + "index": 16, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 499.94, + "y": 416.04575, + "index": 17, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 505.821, + "y": 413.81575, + "index": 18, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 512.065, + "y": 413.05775, + "index": 19, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 518.309, + "y": 413.81575, + "index": 20, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 524.19, + "y": 416.04575, + "index": 21, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 529.367, + "y": 419.61875, + "index": 22, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 533.538, + "y": 424.32675, + "index": 23, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 536.461, + "y": 429.89675, + "index": 24, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 537.966, + "y": 436.00375, + "index": 25, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 512.065, + "y": 439.14875 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3147 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3149 + }, + "max": { + "#": 3150 + } + }, + { + "x": 486.164, + "y": 413.05775 + }, + { + "x": 537.966, + "y": 465.23975 + }, + { + "x": 512.065, + "y": 436.24148 + }, + [ + { + "#": 3153 + }, + { + "#": 3154 + }, + { + "#": 3155 + }, + { + "#": 3156 + }, + { + "#": 3157 + }, + { + "#": 3158 + }, + { + "#": 3159 + }, + { + "#": 3160 + }, + { + "#": 3161 + }, + { + "#": 3162 + }, + { + "#": 3163 + }, + { + "#": 3164 + }, + { + "#": 3165 + } + ], + { + "x": -0.97095, + "y": -0.23928 + }, + { + "x": -0.88548, + "y": -0.46468 + }, + { + "x": -0.7485, + "y": -0.66313 + }, + { + "x": -0.56802, + "y": -0.82302 + }, + { + "x": -0.35455, + "y": -0.93504 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35455, + "y": -0.93504 + }, + { + "x": 0.56802, + "y": -0.82302 + }, + { + "x": 0.7485, + "y": -0.66313 + }, + { + "x": 0.88548, + "y": -0.46468 + }, + { + "x": 0.97095, + "y": -0.23928 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,8,9", + "startCol": 10, + "endCol": 11, + "startRow": 8, + "endRow": 9 + }, + { + "id": 63, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3168 + }, + "angle": 0, + "vertices": { + "#": 3169 + }, + "position": { + "#": 3196 + }, + "force": { + "#": 3197 + }, + "torque": 0, + "positionImpulse": { + "#": 3198 + }, + "constraintImpulse": { + "#": 3199 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3200 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3201 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3202 + }, + "circleRadius": 29.13252, + "bounds": { + "#": 3204 + }, + "positionPrev": { + "#": 3207 + }, + "anglePrev": 0, + "axes": { + "#": 3208 + }, + "area": 2640.42167, + "mass": 2.64042, + "inverseMass": 0.37873, + "inertia": 4438.48733, + "inverseInertia": 0.00023, + "parent": { + "#": 3167 + }, + "sleepCounter": 0, + "region": { + "#": 3222 + } + }, + [ + { + "#": 3167 + } + ], + [ + { + "#": 3170 + }, + { + "#": 3171 + }, + { + "#": 3172 + }, + { + "#": 3173 + }, + { + "#": 3174 + }, + { + "#": 3175 + }, + { + "#": 3176 + }, + { + "#": 3177 + }, + { + "#": 3178 + }, + { + "#": 3179 + }, + { + "#": 3180 + }, + { + "#": 3181 + }, + { + "#": 3182 + }, + { + "#": 3183 + }, + { + "#": 3184 + }, + { + "#": 3185 + }, + { + "#": 3186 + }, + { + "#": 3187 + }, + { + "#": 3188 + }, + { + "#": 3189 + }, + { + "#": 3190 + }, + { + "#": 3191 + }, + { + "#": 3192 + }, + { + "#": 3193 + }, + { + "#": 3194 + }, + { + "#": 3195 + } + ], + { + "x": 605.806, + "y": 445.70275, + "index": 0, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 604.125, + "y": 452.52175, + "index": 1, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 600.862, + "y": 458.73975, + "index": 2, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 596.204, + "y": 463.99675, + "index": 3, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 590.425, + "y": 467.98675, + "index": 4, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 583.858, + "y": 470.47675, + "index": 5, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 576.886, + "y": 471.32375, + "index": 6, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 569.914, + "y": 470.47675, + "index": 7, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 563.347, + "y": 467.98675, + "index": 8, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 557.568, + "y": 463.99675, + "index": 9, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 552.91, + "y": 458.73975, + "index": 10, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 549.647, + "y": 452.52175, + "index": 11, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 547.966, + "y": 445.70275, + "index": 12, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 547.966, + "y": 438.67875, + "index": 13, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 549.647, + "y": 431.85975, + "index": 14, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 552.91, + "y": 425.64175, + "index": 15, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 557.568, + "y": 420.38475, + "index": 16, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 563.347, + "y": 416.39475, + "index": 17, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 569.914, + "y": 413.90475, + "index": 18, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 576.886, + "y": 413.05775, + "index": 19, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 583.858, + "y": 413.90475, + "index": 20, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 590.425, + "y": 416.39475, + "index": 21, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 596.204, + "y": 420.38475, + "index": 22, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 600.862, + "y": 425.64175, + "index": 23, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 604.125, + "y": 431.85975, + "index": 24, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 605.806, + "y": 438.67875, + "index": 25, + "body": { + "#": 3167 + }, + "isInternal": false + }, + { + "x": 576.886, + "y": 442.19075 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3203 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3205 + }, + "max": { + "#": 3206 + } + }, + { + "x": 547.966, + "y": 413.05775 + }, + { + "x": 605.806, + "y": 471.32375 + }, + { + "x": 576.886, + "y": 439.28348 + }, + [ + { + "#": 3209 + }, + { + "#": 3210 + }, + { + "#": 3211 + }, + { + "#": 3212 + }, + { + "#": 3213 + }, + { + "#": 3214 + }, + { + "#": 3215 + }, + { + "#": 3216 + }, + { + "#": 3217 + }, + { + "#": 3218 + }, + { + "#": 3219 + }, + { + "#": 3220 + }, + { + "#": 3221 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88548, + "y": -0.46467 + }, + { + "x": -0.74846, + "y": -0.66318 + }, + { + "x": -0.56817, + "y": -0.82291 + }, + { + "x": -0.35454, + "y": -0.93504 + }, + { + "x": -0.1206, + "y": -0.9927 + }, + { + "x": 0.1206, + "y": -0.9927 + }, + { + "x": 0.35454, + "y": -0.93504 + }, + { + "x": 0.56817, + "y": -0.82291 + }, + { + "x": 0.74846, + "y": -0.66318 + }, + { + "x": 0.88548, + "y": -0.46467 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,8,9", + "startCol": 11, + "endCol": 12, + "startRow": 8, + "endRow": 9 + }, + { + "id": 64, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3224 + }, + "angle": 0, + "vertices": { + "#": 3225 + }, + "position": { + "#": 3248 + }, + "force": { + "#": 3249 + }, + "torque": 0, + "positionImpulse": { + "#": 3250 + }, + "constraintImpulse": { + "#": 3251 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3252 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3253 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3254 + }, + "circleRadius": 21.78774, + "bounds": { + "#": 3256 + }, + "positionPrev": { + "#": 3259 + }, + "anglePrev": 0, + "axes": { + "#": 3260 + }, + "area": 1471.13784, + "mass": 1.47114, + "inverseMass": 0.67975, + "inertia": 1377.85356, + "inverseInertia": 0.00073, + "parent": { + "#": 3223 + }, + "sleepCounter": 0, + "region": { + "#": 3272 + } + }, + [ + { + "#": 3223 + } + ], + [ + { + "#": 3226 + }, + { + "#": 3227 + }, + { + "#": 3228 + }, + { + "#": 3229 + }, + { + "#": 3230 + }, + { + "#": 3231 + }, + { + "#": 3232 + }, + { + "#": 3233 + }, + { + "#": 3234 + }, + { + "#": 3235 + }, + { + "#": 3236 + }, + { + "#": 3237 + }, + { + "#": 3238 + }, + { + "#": 3239 + }, + { + "#": 3240 + }, + { + "#": 3241 + }, + { + "#": 3242 + }, + { + "#": 3243 + }, + { + "#": 3244 + }, + { + "#": 3245 + }, + { + "#": 3246 + }, + { + "#": 3247 + } + ], + { + "x": 658.938, + "y": 437.94675, + "index": 0, + "body": { + "#": 3223 + }, + "isInternal": false + }, + { + "x": 657.191, + "y": 443.89675, + "index": 1, + "body": { + "#": 3223 + }, + "isInternal": false + }, + { + "x": 653.838, + "y": 449.11375, + "index": 2, + "body": { + "#": 3223 + }, + "isInternal": false + }, + { + "x": 649.151, + "y": 453.17475, + "index": 3, + "body": { + "#": 3223 + }, + "isInternal": false + }, + { + "x": 643.51, + "y": 455.75075, + "index": 4, + "body": { + "#": 3223 + }, + "isInternal": false + }, + { + "x": 637.372, + "y": 456.63375, + "index": 5, + "body": { + "#": 3223 + }, + "isInternal": false + }, + { + "x": 631.234, + "y": 455.75075, + "index": 6, + "body": { + "#": 3223 + }, + "isInternal": false + }, + { + "x": 625.593, + "y": 453.17475, + "index": 7, + "body": { + "#": 3223 + }, + "isInternal": false + }, + { + "x": 620.906, + "y": 449.11375, + "index": 8, + "body": { + "#": 3223 + }, + "isInternal": false + }, + { + "x": 617.553, + "y": 443.89675, + "index": 9, + "body": { + "#": 3223 + }, + "isInternal": false + }, + { + "x": 615.806, + "y": 437.94675, + "index": 10, + "body": { + "#": 3223 + }, + "isInternal": false + }, + { + "x": 615.806, + "y": 431.74475, + "index": 11, + "body": { + "#": 3223 + }, + "isInternal": false + }, + { + "x": 617.553, + "y": 425.79475, + "index": 12, + "body": { + "#": 3223 + }, + "isInternal": false + }, + { + "x": 620.906, + "y": 420.57775, + "index": 13, + "body": { + "#": 3223 + }, + "isInternal": false + }, + { + "x": 625.593, + "y": 416.51675, + "index": 14, + "body": { + "#": 3223 + }, + "isInternal": false + }, + { + "x": 631.234, + "y": 413.94075, + "index": 15, + "body": { + "#": 3223 + }, + "isInternal": false + }, + { + "x": 637.372, + "y": 413.05775, + "index": 16, + "body": { + "#": 3223 + }, + "isInternal": false + }, + { + "x": 643.51, + "y": 413.94075, + "index": 17, + "body": { + "#": 3223 + }, + "isInternal": false + }, + { + "x": 649.151, + "y": 416.51675, + "index": 18, + "body": { + "#": 3223 + }, + "isInternal": false + }, + { + "x": 653.838, + "y": 420.57775, + "index": 19, + "body": { + "#": 3223 + }, + "isInternal": false + }, + { + "x": 657.191, + "y": 425.79475, + "index": 20, + "body": { + "#": 3223 + }, + "isInternal": false + }, + { + "x": 658.938, + "y": 431.74475, + "index": 21, + "body": { + "#": 3223 + }, + "isInternal": false + }, + { + "x": 637.372, + "y": 434.84575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3255 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3257 + }, + "max": { + "#": 3258 + } + }, + { + "x": 615.806, + "y": 413.05775 + }, + { + "x": 658.938, + "y": 456.63375 + }, + { + "x": 637.372, + "y": 431.93848 + }, + [ + { + "#": 3261 + }, + { + "#": 3262 + }, + { + "#": 3263 + }, + { + "#": 3264 + }, + { + "#": 3265 + }, + { + "#": 3266 + }, + { + "#": 3267 + }, + { + "#": 3268 + }, + { + "#": 3269 + }, + { + "#": 3270 + }, + { + "#": 3271 + } + ], + { + "x": -0.9595, + "y": -0.28172 + }, + { + "x": -0.84124, + "y": -0.54067 + }, + { + "x": -0.65483, + "y": -0.75577 + }, + { + "x": -0.41539, + "y": -0.90964 + }, + { + "x": -0.14239, + "y": -0.98981 + }, + { + "x": 0.14239, + "y": -0.98981 + }, + { + "x": 0.41539, + "y": -0.90964 + }, + { + "x": 0.65483, + "y": -0.75577 + }, + { + "x": 0.84124, + "y": -0.54067 + }, + { + "x": 0.9595, + "y": -0.28172 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,13,8,9", + "startCol": 12, + "endCol": 13, + "startRow": 8, + "endRow": 9 + }, + { + "id": 65, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3274 + }, + "angle": -0.04552, + "vertices": { + "#": 3275 + }, + "position": { + "#": 3302 + }, + "force": { + "#": 3303 + }, + "torque": 0, + "positionImpulse": { + "#": 3304 + }, + "constraintImpulse": { + "#": 3305 + }, + "totalContacts": 0, + "speed": 2.11809, + "angularSpeed": 0.00696, + "velocity": { + "#": 3306 + }, + "angularVelocity": -0.00696, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3307 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3308 + }, + "circleRadius": 27.57568, + "bounds": { + "#": 3310 + }, + "positionPrev": { + "#": 3313 + }, + "anglePrev": -0.03856, + "axes": { + "#": 3314 + }, + "area": 2365.74445, + "mass": 2.36574, + "inverseMass": 0.4227, + "inertia": 3563.06765, + "inverseInertia": 0.00028, + "parent": { + "#": 3273 + }, + "sleepCounter": 0, + "region": { + "#": 3328 + } + }, + [ + { + "#": 3273 + } + ], + [ + { + "#": 3276 + }, + { + "#": 3277 + }, + { + "#": 3278 + }, + { + "#": 3279 + }, + { + "#": 3280 + }, + { + "#": 3281 + }, + { + "#": 3282 + }, + { + "#": 3283 + }, + { + "#": 3284 + }, + { + "#": 3285 + }, + { + "#": 3286 + }, + { + "#": 3287 + }, + { + "#": 3288 + }, + { + "#": 3289 + }, + { + "#": 3290 + }, + { + "#": 3291 + }, + { + "#": 3292 + }, + { + "#": 3293 + }, + { + "#": 3294 + }, + { + "#": 3295 + }, + { + "#": 3296 + }, + { + "#": 3297 + }, + { + "#": 3298 + }, + { + "#": 3299 + }, + { + "#": 3300 + }, + { + "#": 3301 + } + ], + { + "x": 121.25231, + "y": 482.38694, + "index": 0, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 119.95665, + "y": 488.90665, + "index": 1, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 117.13774, + "y": 494.92816, + "index": 2, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 112.96074, + "y": 500.0996, + "index": 3, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 107.66724, + "y": 504.12064, + "index": 4, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 101.56493, + "y": 506.75806, + "index": 5, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 95.00926, + "y": 507.85952, + "index": 6, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 88.3806, + "y": 507.35864, + "index": 7, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 82.06379, + "y": 505.28695, + "index": 8, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 76.42663, + "y": 501.76382, + "index": 9, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 71.79676, + "y": 496.99356, + "index": 10, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 68.44207, + "y": 491.25327, + "index": 11, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 66.55903, + "y": 484.87835, + "index": 12, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 66.25651, + "y": 478.23724, + "index": 13, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 67.55217, + "y": 471.71753, + "index": 14, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 70.37108, + "y": 465.69601, + "index": 15, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 74.54807, + "y": 460.52458, + "index": 16, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 79.84158, + "y": 456.50353, + "index": 17, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 85.94388, + "y": 453.86611, + "index": 18, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 92.49955, + "y": 452.76465, + "index": 19, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 99.12821, + "y": 453.26553, + "index": 20, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 105.44503, + "y": 455.33723, + "index": 21, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 111.08219, + "y": 458.86036, + "index": 22, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 115.71206, + "y": 463.63062, + "index": 23, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 119.06675, + "y": 469.37091, + "index": 24, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 120.94979, + "y": 475.74582, + "index": 25, + "body": { + "#": 3273 + }, + "isInternal": false + }, + { + "x": 93.75441, + "y": 480.31209 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.43134, + "y": -0.24443 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -1.15604, + "y": 1.77479 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3309 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3311 + }, + "max": { + "#": 3312 + } + }, + { + "x": 65.10047, + "y": 452.76465 + }, + { + "x": 121.25231, + "y": 509.63431 + }, + { + "x": 94.91045, + "y": 478.5373 + }, + [ + { + "#": 3315 + }, + { + "#": 3316 + }, + { + "#": 3317 + }, + { + "#": 3318 + }, + { + "#": 3319 + }, + { + "#": 3320 + }, + { + "#": 3321 + }, + { + "#": 3322 + }, + { + "#": 3323 + }, + { + "#": 3324 + }, + { + "#": 3325 + }, + { + "#": 3326 + }, + { + "#": 3327 + } + ], + { + "x": -0.98082, + "y": -0.19492 + }, + { + "x": -0.90567, + "y": -0.42398 + }, + { + "x": -0.77794, + "y": -0.62834 + }, + { + "x": -0.60489, + "y": -0.79631 + }, + { + "x": -0.39673, + "y": -0.91793 + }, + { + "x": -0.16569, + "y": -0.98618 + }, + { + "x": 0.07535, + "y": -0.99716 + }, + { + "x": 0.31163, + "y": -0.9502 + }, + { + "x": 0.52999, + "y": -0.848 + }, + { + "x": 0.71759, + "y": -0.69647 + }, + { + "x": 0.86337, + "y": -0.50457 + }, + { + "x": 0.95904, + "y": -0.28328 + }, + { + "x": 0.99896, + "y": -0.04551 + }, + { + "id": "1,2,9,10", + "startCol": 1, + "endCol": 2, + "startRow": 9, + "endRow": 10 + }, + { + "id": 66, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3330 + }, + "angle": -0.02676, + "vertices": { + "#": 3331 + }, + "position": { + "#": 3354 + }, + "force": { + "#": 3355 + }, + "torque": 0, + "positionImpulse": { + "#": 3356 + }, + "constraintImpulse": { + "#": 3357 + }, + "totalContacts": 0, + "speed": 1.47222, + "angularSpeed": 0.00981, + "velocity": { + "#": 3358 + }, + "angularVelocity": -0.01159, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3359 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3360 + }, + "circleRadius": 21.12596, + "bounds": { + "#": 3362 + }, + "positionPrev": { + "#": 3365 + }, + "anglePrev": -0.01606, + "axes": { + "#": 3366 + }, + "area": 1383.13941, + "mass": 1.38314, + "inverseMass": 0.72299, + "inertia": 1217.94658, + "inverseInertia": 0.00082, + "parent": { + "#": 3329 + }, + "sleepCounter": 0, + "region": { + "#": 3378 + } + }, + [ + { + "#": 3329 + } + ], + [ + { + "#": 3332 + }, + { + "#": 3333 + }, + { + "#": 3334 + }, + { + "#": 3335 + }, + { + "#": 3336 + }, + { + "#": 3337 + }, + { + "#": 3338 + }, + { + "#": 3339 + }, + { + "#": 3340 + }, + { + "#": 3341 + }, + { + "#": 3342 + }, + { + "#": 3343 + }, + { + "#": 3344 + }, + { + "#": 3345 + }, + { + "#": 3346 + }, + { + "#": 3347 + }, + { + "#": 3348 + }, + { + "#": 3349 + }, + { + "#": 3350 + }, + { + "#": 3351 + }, + { + "#": 3352 + }, + { + "#": 3353 + } + ], + { + "x": 197.40552, + "y": 482.63115, + "index": 0, + "body": { + "#": 3329 + }, + "isInternal": false + }, + { + "x": 195.8665, + "y": 488.44342, + "index": 1, + "body": { + "#": 3329 + }, + "isInternal": false + }, + { + "x": 192.75203, + "y": 493.5876, + "index": 2, + "body": { + "#": 3329 + }, + "isInternal": false + }, + { + "x": 188.315, + "y": 497.64477, + "index": 3, + "body": { + "#": 3329 + }, + "isInternal": false + }, + { + "x": 182.9138, + "y": 500.28825, + "index": 4, + "body": { + "#": 3329 + }, + "isInternal": false + }, + { + "x": 176.98684, + "y": 501.3032, + "index": 5, + "body": { + "#": 3329 + }, + "isInternal": false + }, + { + "x": 171.01407, + "y": 500.60677, + "index": 6, + "body": { + "#": 3329 + }, + "isInternal": false + }, + { + "x": 165.47918, + "y": 498.25604, + "index": 7, + "body": { + "#": 3329 + }, + "isInternal": false + }, + { + "x": 160.83146, + "y": 494.44203, + "index": 8, + "body": { + "#": 3329 + }, + "isInternal": false + }, + { + "x": 157.44626, + "y": 489.47184, + "index": 9, + "body": { + "#": 3329 + }, + "isInternal": false + }, + { + "x": 155.5985, + "y": 483.75023, + "index": 10, + "body": { + "#": 3329 + }, + "isInternal": false + }, + { + "x": 155.43758, + "y": 477.73838, + "index": 11, + "body": { + "#": 3329 + }, + "isInternal": false + }, + { + "x": 156.9766, + "y": 471.92612, + "index": 12, + "body": { + "#": 3329 + }, + "isInternal": false + }, + { + "x": 160.09107, + "y": 466.78194, + "index": 13, + "body": { + "#": 3329 + }, + "isInternal": false + }, + { + "x": 164.5281, + "y": 462.72476, + "index": 14, + "body": { + "#": 3329 + }, + "isInternal": false + }, + { + "x": 169.9293, + "y": 460.08129, + "index": 15, + "body": { + "#": 3329 + }, + "isInternal": false + }, + { + "x": 175.85626, + "y": 459.06633, + "index": 16, + "body": { + "#": 3329 + }, + "isInternal": false + }, + { + "x": 181.82903, + "y": 459.76276, + "index": 17, + "body": { + "#": 3329 + }, + "isInternal": false + }, + { + "x": 187.36392, + "y": 462.1135, + "index": 18, + "body": { + "#": 3329 + }, + "isInternal": false + }, + { + "x": 192.01164, + "y": 465.9275, + "index": 19, + "body": { + "#": 3329 + }, + "isInternal": false + }, + { + "x": 195.39684, + "y": 470.8977, + "index": 20, + "body": { + "#": 3329 + }, + "isInternal": false + }, + { + "x": 197.2446, + "y": 476.61931, + "index": 21, + "body": { + "#": 3329 + }, + "isInternal": false + }, + { + "x": 176.42155, + "y": 480.18477 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -1.32312, + "y": 0.66919 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3361 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3363 + }, + "max": { + "#": 3364 + } + }, + { + "x": 154.24743, + "y": 459.06633 + }, + { + "x": 197.40552, + "y": 502.16978 + }, + { + "x": 177.80639, + "y": 479.5404 + }, + [ + { + "#": 3367 + }, + { + "#": 3368 + }, + { + "#": 3369 + }, + { + "#": 3370 + }, + { + "#": 3371 + }, + { + "#": 3372 + }, + { + "#": 3373 + }, + { + "#": 3374 + }, + { + "#": 3375 + }, + { + "#": 3376 + }, + { + "#": 3377 + } + ], + { + "x": -0.96669, + "y": -0.25597 + }, + { + "x": -0.85543, + "y": -0.51791 + }, + { + "x": -0.67481, + "y": -0.73799 + }, + { + "x": -0.4396, + "y": -0.89819 + }, + { + "x": -0.16879, + "y": -0.98565 + }, + { + "x": 0.11582, + "y": -0.99327 + }, + { + "x": 0.39092, + "y": -0.92043 + }, + { + "x": 0.63437, + "y": -0.77303 + }, + { + "x": 0.8265, + "y": -0.56293 + }, + { + "x": 0.95161, + "y": -0.30732 + }, + { + "x": 0.99964, + "y": -0.02676 + }, + { + "id": "3,4,9,10", + "startCol": 3, + "endCol": 4, + "startRow": 9, + "endRow": 10 + }, + { + "id": 67, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3380 + }, + "angle": 0.12321, + "vertices": { + "#": 3381 + }, + "position": { + "#": 3408 + }, + "force": { + "#": 3409 + }, + "torque": 0, + "positionImpulse": { + "#": 3410 + }, + "constraintImpulse": { + "#": 3411 + }, + "totalContacts": 0, + "speed": 1.30865, + "angularSpeed": 0.02287, + "velocity": { + "#": 3412 + }, + "angularVelocity": 0.02612, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3413 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3414 + }, + "circleRadius": 24.846, + "bounds": { + "#": 3416 + }, + "positionPrev": { + "#": 3419 + }, + "anglePrev": 0.09667, + "axes": { + "#": 3420 + }, + "area": 1920.55386, + "mass": 1.92055, + "inverseMass": 0.52068, + "inertia": 2348.2341, + "inverseInertia": 0.00043, + "parent": { + "#": 3379 + }, + "sleepCounter": 0, + "region": { + "#": 3434 + } + }, + [ + { + "#": 3379 + } + ], + [ + { + "#": 3382 + }, + { + "#": 3383 + }, + { + "#": 3384 + }, + { + "#": 3385 + }, + { + "#": 3386 + }, + { + "#": 3387 + }, + { + "#": 3388 + }, + { + "#": 3389 + }, + { + "#": 3390 + }, + { + "#": 3391 + }, + { + "#": 3392 + }, + { + "#": 3393 + }, + { + "#": 3394 + }, + { + "#": 3395 + }, + { + "#": 3396 + }, + { + "#": 3397 + }, + { + "#": 3398 + }, + { + "#": 3399 + }, + { + "#": 3400 + }, + { + "#": 3401 + }, + { + "#": 3402 + }, + { + "#": 3403 + }, + { + "#": 3404 + }, + { + "#": 3405 + }, + { + "#": 3406 + }, + { + "#": 3407 + } + ], + { + "x": 268.26009, + "y": 488.416, + "index": 0, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 266.12221, + "y": 494.01168, + "index": 1, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 262.7086, + "y": 498.93247, + "index": 2, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 258.21577, + "y": 502.89336, + "index": 3, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 252.90593, + "y": 505.66482, + "index": 4, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 247.08636, + "y": 507.08439, + "index": 5, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 241.0967, + "y": 507.07019, + "index": 6, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 235.2845, + "y": 505.62293, + "index": 7, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 229.98698, + "y": 502.8267, + "index": 8, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 225.51356, + "y": 498.84375, + "index": 9, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 222.1226, + "y": 493.9066, + "index": 10, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 220.0124, + "y": 488.30179, + "index": 11, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 219.30402, + "y": 482.35364, + "index": 12, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 220.04016, + "y": 476.40905, + "index": 13, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 222.17804, + "y": 470.81336, + "index": 14, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 225.59165, + "y": 465.89258, + "index": 15, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 230.08447, + "y": 461.93169, + "index": 16, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 235.39432, + "y": 459.16023, + "index": 17, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 241.21389, + "y": 457.74066, + "index": 18, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 247.20354, + "y": 457.75486, + "index": 19, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 253.01574, + "y": 459.20212, + "index": 20, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 258.31326, + "y": 461.99834, + "index": 21, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 262.78669, + "y": 465.98129, + "index": 22, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 266.17765, + "y": 470.91845, + "index": 23, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 268.28785, + "y": 476.52326, + "index": 24, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 268.99622, + "y": 482.4714, + "index": 25, + "body": { + "#": 3379 + }, + "isInternal": false + }, + { + "x": 244.15012, + "y": 482.41252 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.19188, + "y": -0.01192 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -1.22135, + "y": 0.75966 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3415 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3417 + }, + "max": { + "#": 3418 + } + }, + { + "x": 218.37735, + "y": 457.74066 + }, + { + "x": 268.99622, + "y": 508.00843 + }, + { + "x": 245.4329, + "y": 481.62625 + }, + [ + { + "#": 3421 + }, + { + "#": 3422 + }, + { + "#": 3423 + }, + { + "#": 3424 + }, + { + "#": 3425 + }, + { + "#": 3426 + }, + { + "#": 3427 + }, + { + "#": 3428 + }, + { + "#": 3429 + }, + { + "#": 3430 + }, + { + "#": 3431 + }, + { + "#": 3432 + }, + { + "#": 3433 + } + ], + { + "x": -0.93414, + "y": -0.3569 + }, + { + "x": -0.82165, + "y": -0.56999 + }, + { + "x": -0.6613, + "y": -0.75012 + }, + { + "x": -0.46271, + "y": -0.88651 + }, + { + "x": -0.23698, + "y": -0.97151 + }, + { + "x": 0.00237, + "y": -1 + }, + { + "x": 0.24162, + "y": -0.97037 + }, + { + "x": 0.4668, + "y": -0.88436 + }, + { + "x": 0.66498, + "y": -0.74686 + }, + { + "x": 0.8243, + "y": -0.56615 + }, + { + "x": 0.93587, + "y": -0.35235 + }, + { + "x": 0.99298, + "y": -0.11826 + }, + { + "x": 0.99242, + "y": 0.12289 + }, + { + "id": "4,5,9,10", + "startCol": 4, + "endCol": 5, + "startRow": 9, + "endRow": 10 + }, + { + "id": 68, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3436 + }, + "angle": -0.06183, + "vertices": { + "#": 3437 + }, + "position": { + "#": 3460 + }, + "force": { + "#": 3461 + }, + "torque": 0, + "positionImpulse": { + "#": 3462 + }, + "constraintImpulse": { + "#": 3463 + }, + "totalContacts": 0, + "speed": 1.43589, + "angularSpeed": 0.01424, + "velocity": { + "#": 3464 + }, + "angularVelocity": -0.01117, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3465 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3466 + }, + "circleRadius": 20.58764, + "bounds": { + "#": 3468 + }, + "positionPrev": { + "#": 3471 + }, + "anglePrev": -0.05184, + "axes": { + "#": 3472 + }, + "area": 1313.53417, + "mass": 1.31353, + "inverseMass": 0.7613, + "inertia": 1098.44694, + "inverseInertia": 0.00091, + "parent": { + "#": 3435 + }, + "sleepCounter": 0, + "region": { + "#": 3484 + } + }, + [ + { + "#": 3435 + } + ], + [ + { + "#": 3438 + }, + { + "#": 3439 + }, + { + "#": 3440 + }, + { + "#": 3441 + }, + { + "#": 3442 + }, + { + "#": 3443 + }, + { + "#": 3444 + }, + { + "#": 3445 + }, + { + "#": 3446 + }, + { + "#": 3447 + }, + { + "#": 3448 + }, + { + "#": 3449 + }, + { + "#": 3450 + }, + { + "#": 3451 + }, + { + "#": 3452 + }, + { + "#": 3453 + }, + { + "#": 3454 + }, + { + "#": 3455 + }, + { + "#": 3456 + }, + { + "#": 3457 + }, + { + "#": 3458 + }, + { + "#": 3459 + } + ], + { + "x": 309.29509, + "y": 482.81337, + "index": 0, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 307.99462, + "y": 488.52665, + "index": 1, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 305.13729, + "y": 493.64297, + "index": 2, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 300.95483, + "y": 497.74624, + "index": 3, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 295.78448, + "y": 500.50598, + "index": 4, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 290.04709, + "y": 501.69677, + "index": 5, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 284.20664, + "y": 501.22273, + "index": 6, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 278.73537, + "y": 499.12178, + "index": 7, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 274.07875, + "y": 495.56572, + "index": 8, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 270.61218, + "y": 490.84088, + "index": 9, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 268.61696, + "y": 485.33164, + "index": 10, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 268.25488, + "y": 479.48284, + "index": 11, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 269.55535, + "y": 473.76956, + "index": 12, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 272.41267, + "y": 468.65324, + "index": 13, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 276.59513, + "y": 464.54997, + "index": 14, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 281.76549, + "y": 461.79022, + "index": 15, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 287.50287, + "y": 460.59944, + "index": 16, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 293.34332, + "y": 461.07347, + "index": 17, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 298.81459, + "y": 463.17443, + "index": 18, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 303.47122, + "y": 466.73049, + "index": 19, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 306.93778, + "y": 471.45533, + "index": 20, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 308.933, + "y": 476.96457, + "index": 21, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 288.77498, + "y": 481.1481 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.22554, + "y": -0.09972 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -1.25331, + "y": 1.62238 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3467 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3469 + }, + "max": { + "#": 3470 + } + }, + { + "x": 267.45652, + "y": 460.59944 + }, + { + "x": 309.29509, + "y": 502.89025 + }, + { + "x": 290.01021, + "y": 479.65394 + }, + [ + { + "#": 3473 + }, + { + "#": 3474 + }, + { + "#": 3475 + }, + { + "#": 3476 + }, + { + "#": 3477 + }, + { + "#": 3478 + }, + { + "#": 3479 + }, + { + "#": 3480 + }, + { + "#": 3481 + }, + { + "#": 3482 + }, + { + "#": 3483 + } + ], + { + "x": -0.97506, + "y": -0.22195 + }, + { + "x": -0.87307, + "y": -0.48759 + }, + { + "x": -0.70032, + "y": -0.71383 + }, + { + "x": -0.47088, + "y": -0.8822 + }, + { + "x": -0.20322, + "y": -0.97913 + }, + { + "x": 0.0809, + "y": -0.99672 + }, + { + "x": 0.35848, + "y": -0.93354 + }, + { + "x": 0.60692, + "y": -0.79476 + }, + { + "x": 0.80627, + "y": -0.59155 + }, + { + "x": 0.94024, + "y": -0.34052 + }, + { + "x": 0.99809, + "y": -0.06179 + }, + { + "id": "5,6,9,10", + "startCol": 5, + "endCol": 6, + "startRow": 9, + "endRow": 10 + }, + { + "id": 69, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3486 + }, + "angle": -0.0009, + "vertices": { + "#": 3487 + }, + "position": { + "#": 3510 + }, + "force": { + "#": 3511 + }, + "torque": 0, + "positionImpulse": { + "#": 3512 + }, + "constraintImpulse": { + "#": 3513 + }, + "totalContacts": 0, + "speed": 0.68901, + "angularSpeed": 0.00603, + "velocity": { + "#": 3514 + }, + "angularVelocity": -0.00683, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3515 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3516 + }, + "circleRadius": 21.31385, + "bounds": { + "#": 3518 + }, + "positionPrev": { + "#": 3521 + }, + "anglePrev": 0.00593, + "axes": { + "#": 3522 + }, + "area": 1407.83677, + "mass": 1.40784, + "inverseMass": 0.71031, + "inertia": 1261.83026, + "inverseInertia": 0.00079, + "parent": { + "#": 3485 + }, + "sleepCounter": 0, + "region": { + "#": 3534 + } + }, + [ + { + "#": 3485 + } + ], + [ + { + "#": 3488 + }, + { + "#": 3489 + }, + { + "#": 3490 + }, + { + "#": 3491 + }, + { + "#": 3492 + }, + { + "#": 3493 + }, + { + "#": 3494 + }, + { + "#": 3495 + }, + { + "#": 3496 + }, + { + "#": 3497 + }, + { + "#": 3498 + }, + { + "#": 3499 + }, + { + "#": 3500 + }, + { + "#": 3501 + }, + { + "#": 3502 + }, + { + "#": 3503 + }, + { + "#": 3504 + }, + { + "#": 3505 + }, + { + "#": 3506 + }, + { + "#": 3507 + }, + { + "#": 3508 + }, + { + "#": 3509 + } + ], + { + "x": 365.17108, + "y": 480.69896, + "index": 0, + "body": { + "#": 3485 + }, + "isInternal": false + }, + { + "x": 363.46734, + "y": 486.5215, + "index": 1, + "body": { + "#": 3485 + }, + "isInternal": false + }, + { + "x": 360.19196, + "y": 491.62847, + "index": 2, + "body": { + "#": 3485 + }, + "isInternal": false + }, + { + "x": 355.61055, + "y": 495.60461, + "index": 3, + "body": { + "#": 3485 + }, + "isInternal": false + }, + { + "x": 350.09484, + "y": 498.1296, + "index": 4, + "body": { + "#": 3485 + }, + "isInternal": false + }, + { + "x": 344.09062, + "y": 498.99903, + "index": 5, + "body": { + "#": 3485 + }, + "isInternal": false + }, + { + "x": 338.08484, + "y": 498.14046, + "index": 6, + "body": { + "#": 3485 + }, + "isInternal": false + }, + { + "x": 332.56456, + "y": 495.62545, + "index": 7, + "body": { + "#": 3485 + }, + "isInternal": false + }, + { + "x": 327.97597, + "y": 491.6576, + "index": 8, + "body": { + "#": 3485 + }, + "isInternal": false + }, + { + "x": 324.69136, + "y": 486.55657, + "index": 9, + "body": { + "#": 3485 + }, + "isInternal": false + }, + { + "x": 322.9771, + "y": 480.73712, + "index": 10, + "body": { + "#": 3485 + }, + "isInternal": false + }, + { + "x": 322.97161, + "y": 474.67112, + "index": 11, + "body": { + "#": 3485 + }, + "isInternal": false + }, + { + "x": 324.67535, + "y": 468.84858, + "index": 12, + "body": { + "#": 3485 + }, + "isInternal": false + }, + { + "x": 327.95073, + "y": 463.74161, + "index": 13, + "body": { + "#": 3485 + }, + "isInternal": false + }, + { + "x": 332.53213, + "y": 459.76547, + "index": 14, + "body": { + "#": 3485 + }, + "isInternal": false + }, + { + "x": 338.04785, + "y": 457.24048, + "index": 15, + "body": { + "#": 3485 + }, + "isInternal": false + }, + { + "x": 344.05207, + "y": 456.37105, + "index": 16, + "body": { + "#": 3485 + }, + "isInternal": false + }, + { + "x": 350.05785, + "y": 457.22962, + "index": 17, + "body": { + "#": 3485 + }, + "isInternal": false + }, + { + "x": 355.57813, + "y": 459.74463, + "index": 18, + "body": { + "#": 3485 + }, + "isInternal": false + }, + { + "x": 360.16672, + "y": 463.71248, + "index": 19, + "body": { + "#": 3485 + }, + "isInternal": false + }, + { + "x": 363.45133, + "y": 468.81351, + "index": 20, + "body": { + "#": 3485 + }, + "isInternal": false + }, + { + "x": 365.16559, + "y": 474.63296, + "index": 21, + "body": { + "#": 3485 + }, + "isInternal": false + }, + { + "x": 344.07134, + "y": 477.68504 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.13096, + "y": 0.38928 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3517 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3519 + }, + "max": { + "#": 3520 + } + }, + { + "x": 322.82426, + "y": 456.37105 + }, + { + "x": 365.17108, + "y": 499.67211 + }, + { + "x": 344.20241, + "y": 477.28418 + }, + [ + { + "#": 3523 + }, + { + "#": 3524 + }, + { + "#": 3525 + }, + { + "#": 3526 + }, + { + "#": 3527 + }, + { + "#": 3528 + }, + { + "#": 3529 + }, + { + "#": 3530 + }, + { + "#": 3531 + }, + { + "#": 3532 + }, + { + "#": 3533 + } + ], + { + "x": -0.95976, + "y": -0.28083 + }, + { + "x": -0.84175, + "y": -0.53986 + }, + { + "x": -0.65546, + "y": -0.75523 + }, + { + "x": -0.41624, + "y": -0.90926 + }, + { + "x": -0.14331, + "y": -0.98968 + }, + { + "x": 0.14152, + "y": -0.98994 + }, + { + "x": 0.41459, + "y": -0.91001 + }, + { + "x": 0.65409, + "y": -0.75642 + }, + { + "x": 0.84077, + "y": -0.54138 + }, + { + "x": 0.95925, + "y": -0.28257 + }, + { + "x": 1, + "y": -0.0009 + }, + { + "id": "6,7,9,10", + "startCol": 6, + "endCol": 7, + "startRow": 9, + "endRow": 10 + }, + { + "id": 70, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3536 + }, + "angle": 0.05295, + "vertices": { + "#": 3537 + }, + "position": { + "#": 3556 + }, + "force": { + "#": 3557 + }, + "torque": 0, + "positionImpulse": { + "#": 3558 + }, + "constraintImpulse": { + "#": 3559 + }, + "totalContacts": 0, + "speed": 1.52356, + "angularSpeed": 0.02162, + "velocity": { + "#": 3560 + }, + "angularVelocity": 0.02772, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3561 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3562 + }, + "circleRadius": 17.76537, + "bounds": { + "#": 3564 + }, + "positionPrev": { + "#": 3567 + }, + "anglePrev": 0.02702, + "axes": { + "#": 3568 + }, + "area": 971.47513, + "mass": 0.97148, + "inverseMass": 1.02936, + "inertia": 600.86906, + "inverseInertia": 0.00166, + "parent": { + "#": 3535 + }, + "sleepCounter": 0, + "region": { + "#": 3578 + } + }, + [ + { + "#": 3535 + } + ], + [ + { + "#": 3538 + }, + { + "#": 3539 + }, + { + "#": 3540 + }, + { + "#": 3541 + }, + { + "#": 3542 + }, + { + "#": 3543 + }, + { + "#": 3544 + }, + { + "#": 3545 + }, + { + "#": 3546 + }, + { + "#": 3547 + }, + { + "#": 3548 + }, + { + "#": 3549 + }, + { + "#": 3550 + }, + { + "#": 3551 + }, + { + "#": 3552 + }, + { + "#": 3553 + }, + { + "#": 3554 + }, + { + "#": 3555 + } + ], + { + "x": 427.57523, + "y": 462.82403, + "index": 0, + "body": { + "#": 3535 + }, + "isInternal": false + }, + { + "x": 425.1613, + "y": 468.50222, + "index": 1, + "body": { + "#": 3535 + }, + "isInternal": false + }, + { + "x": 420.95072, + "y": 473.01169, + "index": 2, + "body": { + "#": 3535 + }, + "isInternal": false + }, + { + "x": 415.45193, + "y": 475.80956, + "index": 3, + "body": { + "#": 3535 + }, + "isInternal": false + }, + { + "x": 409.32776, + "y": 476.55747, + "index": 4, + "body": { + "#": 3535 + }, + "isInternal": false + }, + { + "x": 403.31696, + "y": 475.16638, + "index": 5, + "body": { + "#": 3535 + }, + "isInternal": false + }, + { + "x": 398.14474, + "y": 471.80291, + "index": 6, + "body": { + "#": 3535 + }, + "isInternal": false + }, + { + "x": 394.43443, + "y": 466.87362, + "index": 7, + "body": { + "#": 3535 + }, + "isInternal": false + }, + { + "x": 392.63427, + "y": 460.97206, + "index": 8, + "body": { + "#": 3535 + }, + "isInternal": false + }, + { + "x": 392.96084, + "y": 454.81071, + "index": 9, + "body": { + "#": 3535 + }, + "isInternal": false + }, + { + "x": 395.37476, + "y": 449.13252, + "index": 10, + "body": { + "#": 3535 + }, + "isInternal": false + }, + { + "x": 399.58534, + "y": 444.62306, + "index": 11, + "body": { + "#": 3535 + }, + "isInternal": false + }, + { + "x": 405.08414, + "y": 441.82518, + "index": 12, + "body": { + "#": 3535 + }, + "isInternal": false + }, + { + "x": 411.20831, + "y": 441.07727, + "index": 13, + "body": { + "#": 3535 + }, + "isInternal": false + }, + { + "x": 417.2191, + "y": 442.46836, + "index": 14, + "body": { + "#": 3535 + }, + "isInternal": false + }, + { + "x": 422.39133, + "y": 445.83184, + "index": 15, + "body": { + "#": 3535 + }, + "isInternal": false + }, + { + "x": 426.10163, + "y": 450.76113, + "index": 16, + "body": { + "#": 3535 + }, + "isInternal": false + }, + { + "x": 427.90179, + "y": 456.66268, + "index": 17, + "body": { + "#": 3535 + }, + "isInternal": false + }, + { + "x": 410.26803, + "y": 458.81737 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.19813, + "y": -0.1969 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 1.10154, + "y": 0.37118 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3563 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3565 + }, + "max": { + "#": 3566 + } + }, + { + "x": 392.63427, + "y": 441.07727 + }, + { + "x": 429.32754, + "y": 477.09459 + }, + { + "x": 409.18999, + "y": 458.30557 + }, + [ + { + "#": 3569 + }, + { + "#": 3570 + }, + { + "#": 3571 + }, + { + "#": 3572 + }, + { + "#": 3573 + }, + { + "#": 3574 + }, + { + "#": 3575 + }, + { + "#": 3576 + }, + { + "#": 3577 + } + ], + { + "x": -0.92029, + "y": -0.39124 + }, + { + "x": -0.73091, + "y": -0.68247 + }, + { + "x": -0.45349, + "y": -0.89126 + }, + { + "x": -0.12122, + "y": -0.99263 + }, + { + "x": 0.22547, + "y": -0.97425 + }, + { + "x": 0.54516, + "y": -0.83833 + }, + { + "x": 0.79896, + "y": -0.60138 + }, + { + "x": 0.95649, + "y": -0.29176 + }, + { + "x": 0.9986, + "y": 0.05293 + }, + { + "id": "8,8,9,9", + "startCol": 8, + "endCol": 8, + "startRow": 9, + "endRow": 9 + }, + { + "id": 71, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3580 + }, + "angle": 0.03477, + "vertices": { + "#": 3581 + }, + "position": { + "#": 3608 + }, + "force": { + "#": 3609 + }, + "torque": 0, + "positionImpulse": { + "#": 3610 + }, + "constraintImpulse": { + "#": 3611 + }, + "totalContacts": 0, + "speed": 1.14056, + "angularSpeed": 0.01184, + "velocity": { + "#": 3612 + }, + "angularVelocity": 0.00987, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3613 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3614 + }, + "circleRadius": 25.12738, + "bounds": { + "#": 3616 + }, + "positionPrev": { + "#": 3619 + }, + "anglePrev": 0.02542, + "axes": { + "#": 3620 + }, + "area": 1964.28805, + "mass": 1.96429, + "inverseMass": 0.50909, + "inertia": 2456.39813, + "inverseInertia": 0.00041, + "parent": { + "#": 3579 + }, + "sleepCounter": 0, + "region": { + "#": 3634 + } + }, + [ + { + "#": 3579 + } + ], + [ + { + "#": 3582 + }, + { + "#": 3583 + }, + { + "#": 3584 + }, + { + "#": 3585 + }, + { + "#": 3586 + }, + { + "#": 3587 + }, + { + "#": 3588 + }, + { + "#": 3589 + }, + { + "#": 3590 + }, + { + "#": 3591 + }, + { + "#": 3592 + }, + { + "#": 3593 + }, + { + "#": 3594 + }, + { + "#": 3595 + }, + { + "#": 3596 + }, + { + "#": 3597 + }, + { + "#": 3598 + }, + { + "#": 3599 + }, + { + "#": 3600 + }, + { + "#": 3601 + }, + { + "#": 3602 + }, + { + "#": 3603 + }, + { + "#": 3604 + }, + { + "#": 3605 + }, + { + "#": 3606 + }, + { + "#": 3607 + } + ], + { + "x": 485.90771, + "y": 474.52142, + "index": 0, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 484.25512, + "y": 480.34848, + "index": 1, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 481.25433, + "y": 485.61133, + "index": 2, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 477.08313, + "y": 490.00297, + "index": 3, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 471.9805, + "y": 493.26854, + "index": 4, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 466.24525, + "y": 495.21832, + "index": 5, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 460.2105, + "y": 495.73882, + "index": 6, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 454.22652, + "y": 494.8002, + "index": 7, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 448.64062, + "y": 492.45658, + "index": 8, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 443.77727, + "y": 488.84431, + "index": 9, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 439.92134, + "y": 484.17342, + "index": 10, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 437.29353, + "y": 478.71476, + "index": 11, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 436.04988, + "y": 472.78694, + "index": 12, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 436.2605, + "y": 466.7326, + "index": 13, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 437.91309, + "y": 460.90553, + "index": 14, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 440.91388, + "y": 455.64268, + "index": 15, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 445.08509, + "y": 451.25105, + "index": 16, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 450.18771, + "y": 447.98548, + "index": 17, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 455.92296, + "y": 446.0357, + "index": 18, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 461.95771, + "y": 445.5152, + "index": 19, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 467.94169, + "y": 446.45381, + "index": 20, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 473.52759, + "y": 448.79744, + "index": 21, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 478.39094, + "y": 452.40971, + "index": 22, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 482.24687, + "y": 457.08059, + "index": 23, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 484.87468, + "y": 462.53926, + "index": 24, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 486.11834, + "y": 468.46708, + "index": 25, + "body": { + "#": 3579 + }, + "isInternal": false + }, + { + "x": 461.08411, + "y": 470.62701 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.02197, + "y": 0.25472 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.64043, + "y": 0.9721 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3615 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3617 + }, + "max": { + "#": 3618 + } + }, + { + "x": 436.04988, + "y": 445.5152 + }, + { + "x": 486.85407, + "y": 496.61035 + }, + { + "x": 460.46492, + "y": 469.66069 + }, + [ + { + "#": 3621 + }, + { + "#": 3622 + }, + { + "#": 3623 + }, + { + "#": 3624 + }, + { + "#": 3625 + }, + { + "#": 3626 + }, + { + "#": 3627 + }, + { + "#": 3628 + }, + { + "#": 3629 + }, + { + "#": 3630 + }, + { + "#": 3631 + }, + { + "#": 3632 + }, + { + "#": 3633 + } + ], + { + "x": -0.96206, + "y": -0.27285 + }, + { + "x": -0.86871, + "y": -0.49532 + }, + { + "x": -0.72507, + "y": -0.68868 + }, + { + "x": -0.53904, + "y": -0.84228 + }, + { + "x": -0.32187, + "y": -0.94678 + }, + { + "x": -0.08593, + "y": -0.9963 + }, + { + "x": 0.15496, + "y": -0.98792 + }, + { + "x": 0.38689, + "y": -0.92213 + }, + { + "x": 0.59627, + "y": -0.80278 + }, + { + "x": 0.77117, + "y": -0.63662 + }, + { + "x": 0.90103, + "y": -0.43376 + }, + { + "x": 0.97869, + "y": -0.20533 + }, + { + "x": 0.9994, + "y": 0.03477 + }, + { + "id": "9,10,9,10", + "startCol": 9, + "endCol": 10, + "startRow": 9, + "endRow": 10 + }, + { + "id": 72, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3636 + }, + "angle": -0.0117, + "vertices": { + "#": 3637 + }, + "position": { + "#": 3658 + }, + "force": { + "#": 3659 + }, + "torque": 0, + "positionImpulse": { + "#": 3660 + }, + "constraintImpulse": { + "#": 3661 + }, + "totalContacts": 0, + "speed": 0.72969, + "angularSpeed": 0.00207, + "velocity": { + "#": 3662 + }, + "angularVelocity": -0.00201, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3663 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3664 + }, + "circleRadius": 19.69618, + "bounds": { + "#": 3666 + }, + "positionPrev": { + "#": 3669 + }, + "anglePrev": -0.00893, + "axes": { + "#": 3670 + }, + "area": 1198.78665, + "mass": 1.19879, + "inverseMass": 0.83418, + "inertia": 914.92964, + "inverseInertia": 0.00109, + "parent": { + "#": 3635 + }, + "sleepCounter": 0, + "region": { + "#": 3681 + } + }, + [ + { + "#": 3635 + } + ], + [ + { + "#": 3638 + }, + { + "#": 3639 + }, + { + "#": 3640 + }, + { + "#": 3641 + }, + { + "#": 3642 + }, + { + "#": 3643 + }, + { + "#": 3644 + }, + { + "#": 3645 + }, + { + "#": 3646 + }, + { + "#": 3647 + }, + { + "#": 3648 + }, + { + "#": 3649 + }, + { + "#": 3650 + }, + { + "#": 3651 + }, + { + "#": 3652 + }, + { + "#": 3653 + }, + { + "#": 3654 + }, + { + "#": 3655 + }, + { + "#": 3656 + }, + { + "#": 3657 + } + ], + { + "x": 524.70083, + "y": 494.53981, + "index": 0, + "body": { + "#": 3635 + }, + "isInternal": false + }, + { + "x": 522.86454, + "y": 500.4227, + "index": 1, + "body": { + "#": 3635 + }, + "isInternal": false + }, + { + "x": 519.30111, + "y": 505.44974, + "index": 2, + "body": { + "#": 3635 + }, + "isInternal": false + }, + { + "x": 514.35883, + "y": 509.12981, + "index": 3, + "body": { + "#": 3635 + }, + "isInternal": false + }, + { + "x": 508.52052, + "y": 511.10326, + "index": 4, + "body": { + "#": 3635 + }, + "isInternal": false + }, + { + "x": 502.35894, + "y": 511.17536, + "index": 5, + "body": { + "#": 3635 + }, + "isInternal": false + }, + { + "x": 496.47605, + "y": 509.33906, + "index": 6, + "body": { + "#": 3635 + }, + "isInternal": false + }, + { + "x": 491.44902, + "y": 505.77564, + "index": 7, + "body": { + "#": 3635 + }, + "isInternal": false + }, + { + "x": 487.76894, + "y": 500.83336, + "index": 8, + "body": { + "#": 3635 + }, + "isInternal": false + }, + { + "x": 485.79549, + "y": 494.99505, + "index": 9, + "body": { + "#": 3635 + }, + "isInternal": false + }, + { + "x": 485.7234, + "y": 488.83347, + "index": 10, + "body": { + "#": 3635 + }, + "isInternal": false + }, + { + "x": 487.55969, + "y": 482.95058, + "index": 11, + "body": { + "#": 3635 + }, + "isInternal": false + }, + { + "x": 491.12312, + "y": 477.92354, + "index": 12, + "body": { + "#": 3635 + }, + "isInternal": false + }, + { + "x": 496.0654, + "y": 474.24347, + "index": 13, + "body": { + "#": 3635 + }, + "isInternal": false + }, + { + "x": 501.90371, + "y": 472.27002, + "index": 14, + "body": { + "#": 3635 + }, + "isInternal": false + }, + { + "x": 508.06528, + "y": 472.19792, + "index": 15, + "body": { + "#": 3635 + }, + "isInternal": false + }, + { + "x": 513.94817, + "y": 474.03422, + "index": 16, + "body": { + "#": 3635 + }, + "isInternal": false + }, + { + "x": 518.97521, + "y": 477.59764, + "index": 17, + "body": { + "#": 3635 + }, + "isInternal": false + }, + { + "x": 522.65529, + "y": 482.53992, + "index": 18, + "body": { + "#": 3635 + }, + "isInternal": false + }, + { + "x": 524.62873, + "y": 488.37823, + "index": 19, + "body": { + "#": 3635 + }, + "isInternal": false + }, + { + "x": 505.21211, + "y": 491.68664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.46203, + "y": 0.19195 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3665 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3667 + }, + "max": { + "#": 3668 + } + }, + { + "x": 485.7234, + "y": 472.19792 + }, + { + "x": 525.11895, + "y": 511.77337 + }, + { + "x": 504.71941, + "y": 491.5 + }, + [ + { + "#": 3671 + }, + { + "#": 3672 + }, + { + "#": 3673 + }, + { + "#": 3674 + }, + { + "#": 3675 + }, + { + "#": 3676 + }, + { + "#": 3677 + }, + { + "#": 3678 + }, + { + "#": 3679 + }, + { + "#": 3680 + } + ], + { + "x": -0.95458, + "y": -0.29796 + }, + { + "x": -0.81582, + "y": -0.5783 + }, + { + "x": -0.59723, + "y": -0.80207 + }, + { + "x": -0.32022, + "y": -0.94734 + }, + { + "x": -0.0117, + "y": -0.99993 + }, + { + "x": 0.29796, + "y": -0.95458 + }, + { + "x": 0.5783, + "y": -0.81582 + }, + { + "x": 0.80207, + "y": -0.59723 + }, + { + "x": 0.94734, + "y": -0.32022 + }, + { + "x": 0.99993, + "y": -0.0117 + }, + { + "id": "10,10,9,10", + "startCol": 10, + "endCol": 10, + "startRow": 9, + "endRow": 10 + }, + { + "id": 73, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3683 + }, + "angle": -0.1102, + "vertices": { + "#": 3684 + }, + "position": { + "#": 3707 + }, + "force": { + "#": 3708 + }, + "torque": 0, + "positionImpulse": { + "#": 3709 + }, + "constraintImpulse": { + "#": 3710 + }, + "totalContacts": 0, + "speed": 0.16732, + "angularSpeed": 0.01643, + "velocity": { + "#": 3711 + }, + "angularVelocity": -0.01062, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3712 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3713 + }, + "circleRadius": 20.54585, + "bounds": { + "#": 3715 + }, + "positionPrev": { + "#": 3718 + }, + "anglePrev": -0.09744, + "axes": { + "#": 3719 + }, + "area": 1308.23088, + "mass": 1.30823, + "inverseMass": 0.76439, + "inertia": 1089.59506, + "inverseInertia": 0.00092, + "parent": { + "#": 3682 + }, + "sleepCounter": 0, + "region": { + "#": 3731 + } + }, + [ + { + "#": 3682 + } + ], + [ + { + "#": 3685 + }, + { + "#": 3686 + }, + { + "#": 3687 + }, + { + "#": 3688 + }, + { + "#": 3689 + }, + { + "#": 3690 + }, + { + "#": 3691 + }, + { + "#": 3692 + }, + { + "#": 3693 + }, + { + "#": 3694 + }, + { + "#": 3695 + }, + { + "#": 3696 + }, + { + "#": 3697 + }, + { + "#": 3698 + }, + { + "#": 3699 + }, + { + "#": 3700 + }, + { + "#": 3701 + }, + { + "#": 3702 + }, + { + "#": 3703 + }, + { + "#": 3704 + }, + { + "#": 3705 + }, + { + "#": 3706 + } + ], + { + "x": 571.79794, + "y": 490.02242, + "index": 0, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 570.77703, + "y": 495.78063, + "index": 1, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 568.17631, + "y": 501.01842, + "index": 2, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 564.20423, + "y": 505.31031, + "index": 3, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 559.18375, + "y": 508.31066, + "index": 4, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 553.52237, + "y": 509.77417, + "index": 5, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 547.67797, + "y": 509.58378, + "index": 6, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 542.12299, + "y": 507.75361, + "index": 7, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 537.3087, + "y": 504.43394, + "index": 8, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 533.62577, + "y": 499.89143, + "index": 9, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 531.37068, + "y": 494.49572, + "index": 10, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 530.72752, + "y": 488.68319, + "index": 11, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 531.74842, + "y": 482.92498, + "index": 12, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 534.34915, + "y": 477.68718, + "index": 13, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 538.32123, + "y": 473.3953, + "index": 14, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 543.34171, + "y": 470.39495, + "index": 15, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 549.00309, + "y": 468.93144, + "index": 16, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 554.84748, + "y": 469.12183, + "index": 17, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 560.40246, + "y": 470.952, + "index": 18, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 565.21676, + "y": 474.27166, + "index": 19, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 568.89968, + "y": 478.81417, + "index": 20, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 571.15478, + "y": 484.20989, + "index": 21, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 551.26273, + "y": 489.3528 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.23343, + "y": -0.08945 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3714 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3716 + }, + "max": { + "#": 3717 + } + }, + { + "x": 530.64645, + "y": 468.93144 + }, + { + "x": 571.79794, + "y": 509.92054 + }, + { + "x": 551.38239, + "y": 489.4804 + }, + [ + { + "#": 3720 + }, + { + "#": 3721 + }, + { + "#": 3722 + }, + { + "#": 3723 + }, + { + "#": 3724 + }, + { + "#": 3725 + }, + { + "#": 3726 + }, + { + "#": 3727 + }, + { + "#": 3728 + }, + { + "#": 3729 + }, + { + "#": 3730 + } + ], + { + "x": -0.98464, + "y": -0.17457 + }, + { + "x": -0.89567, + "y": -0.44473 + }, + { + "x": -0.73392, + "y": -0.67923 + }, + { + "x": -0.51299, + "y": -0.85839 + }, + { + "x": -0.25028, + "y": -0.96817 + }, + { + "x": 0.03256, + "y": -0.99947 + }, + { + "x": 0.31292, + "y": -0.94978 + }, + { + "x": 0.56767, + "y": -0.82326 + }, + { + "x": 0.77677, + "y": -0.62978 + }, + { + "x": 0.92266, + "y": -0.38562 + }, + { + "x": 0.99393, + "y": -0.10998 + }, + { + "id": "11,11,9,10", + "startCol": 11, + "endCol": 11, + "startRow": 9, + "endRow": 10 + }, + { + "id": 74, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3733 + }, + "angle": 0.00073, + "vertices": { + "#": 3734 + }, + "position": { + "#": 3753 + }, + "force": { + "#": 3754 + }, + "torque": 0, + "positionImpulse": { + "#": 3755 + }, + "constraintImpulse": { + "#": 3756 + }, + "totalContacts": 0, + "speed": 0.27632, + "angularSpeed": 0.00013, + "velocity": { + "#": 3757 + }, + "angularVelocity": 0.00081, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3758 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3759 + }, + "circleRadius": 16.19489, + "bounds": { + "#": 3761 + }, + "positionPrev": { + "#": 3764 + }, + "anglePrev": 0.00155, + "axes": { + "#": 3765 + }, + "area": 807.32074, + "mass": 0.80732, + "inverseMass": 1.23867, + "inertia": 414.96235, + "inverseInertia": 0.00241, + "parent": { + "#": 3732 + }, + "sleepCounter": 0, + "region": { + "#": 3775 + } + }, + [ + { + "#": 3732 + } + ], + [ + { + "#": 3735 + }, + { + "#": 3736 + }, + { + "#": 3737 + }, + { + "#": 3738 + }, + { + "#": 3739 + }, + { + "#": 3740 + }, + { + "#": 3741 + }, + { + "#": 3742 + }, + { + "#": 3743 + }, + { + "#": 3744 + }, + { + "#": 3745 + }, + { + "#": 3746 + }, + { + "#": 3747 + }, + { + "#": 3748 + }, + { + "#": 3749 + }, + { + "#": 3750 + }, + { + "#": 3751 + }, + { + "#": 3752 + } + ], + { + "x": 615.18227, + "y": 486.48761, + "index": 0, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 613.25441, + "y": 491.7712, + "index": 1, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 609.63627, + "y": 496.07756, + "index": 2, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 604.76321, + "y": 498.886, + "index": 3, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 599.2235, + "y": 499.85895, + "index": 4, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 593.68522, + "y": 498.8779, + "index": 5, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 588.81627, + "y": 496.06235, + "index": 6, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 585.20442, + "y": 491.75071, + "index": 7, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 583.28428, + "y": 486.4643, + "index": 8, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 583.28839, + "y": 480.8403, + "index": 9, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 585.21625, + "y": 475.55671, + "index": 10, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 588.8344, + "y": 471.25035, + "index": 11, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 593.70745, + "y": 468.44191, + "index": 12, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 599.24716, + "y": 467.46896, + "index": 13, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 604.78545, + "y": 468.45, + "index": 14, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 609.65439, + "y": 471.26556, + "index": 15, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 613.26624, + "y": 475.5772, + "index": 16, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 615.18638, + "y": 480.86361, + "index": 17, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 599.23533, + "y": 483.66395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.02565, + "y": -0.00032 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3760 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3762 + }, + "max": { + "#": 3763 + } + }, + { + "x": 583.28428, + "y": 467.46896 + }, + { + "x": 615.19032, + "y": 500.13525 + }, + { + "x": 599.20933, + "y": 483.66404 + }, + [ + { + "#": 3766 + }, + { + "#": 3767 + }, + { + "#": 3768 + }, + { + "#": 3769 + }, + { + "#": 3770 + }, + { + "#": 3771 + }, + { + "#": 3772 + }, + { + "#": 3773 + }, + { + "#": 3774 + } + ], + { + "x": -0.93942, + "y": -0.34277 + }, + { + "x": -0.76563, + "y": -0.64328 + }, + { + "x": -0.49933, + "y": -0.86641 + }, + { + "x": -0.17298, + "y": -0.98492 + }, + { + "x": 0.17442, + "y": -0.98467 + }, + { + "x": 0.5006, + "y": -0.86568 + }, + { + "x": 0.76657, + "y": -0.64216 + }, + { + "x": 0.93992, + "y": -0.3414 + }, + { + "x": 1, + "y": 0.00073 + }, + { + "id": "12,12,9,10", + "startCol": 12, + "endCol": 12, + "startRow": 9, + "endRow": 10 + }, + { + "id": 75, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3777 + }, + "angle": 0.00352, + "vertices": { + "#": 3778 + }, + "position": { + "#": 3801 + }, + "force": { + "#": 3802 + }, + "torque": 0, + "positionImpulse": { + "#": 3803 + }, + "constraintImpulse": { + "#": 3804 + }, + "totalContacts": 0, + "speed": 0.27676, + "angularSpeed": 0.00215, + "velocity": { + "#": 3805 + }, + "angularVelocity": 0.0022, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3806 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3807 + }, + "circleRadius": 21.27296, + "bounds": { + "#": 3809 + }, + "positionPrev": { + "#": 3812 + }, + "anglePrev": 0.00133, + "axes": { + "#": 3813 + }, + "area": 1402.43614, + "mass": 1.40244, + "inverseMass": 0.71304, + "inertia": 1252.16778, + "inverseInertia": 0.0008, + "parent": { + "#": 3776 + }, + "sleepCounter": 0, + "region": { + "#": 3825 + } + }, + [ + { + "#": 3776 + } + ], + [ + { + "#": 3779 + }, + { + "#": 3780 + }, + { + "#": 3781 + }, + { + "#": 3782 + }, + { + "#": 3783 + }, + { + "#": 3784 + }, + { + "#": 3785 + }, + { + "#": 3786 + }, + { + "#": 3787 + }, + { + "#": 3788 + }, + { + "#": 3789 + }, + { + "#": 3790 + }, + { + "#": 3791 + }, + { + "#": 3792 + }, + { + "#": 3793 + }, + { + "#": 3794 + }, + { + "#": 3795 + }, + { + "#": 3796 + }, + { + "#": 3797 + }, + { + "#": 3798 + }, + { + "#": 3799 + }, + { + "#": 3800 + } + ], + { + "x": 138.661, + "y": 561.62905, + "index": 0, + "body": { + "#": 3776 + }, + "isInternal": false + }, + { + "x": 136.93557, + "y": 567.43301, + "index": 1, + "body": { + "#": 3776 + }, + "isInternal": false + }, + { + "x": 133.64366, + "y": 572.51546, + "index": 2, + "body": { + "#": 3776 + }, + "isInternal": false + }, + { + "x": 129.05374, + "y": 576.46433, + "index": 3, + "body": { + "#": 3776 + }, + "isInternal": false + }, + { + "x": 123.53692, + "y": 578.95993, + "index": 4, + "body": { + "#": 3776 + }, + "isInternal": false + }, + { + "x": 117.54092, + "y": 579.80084, + "index": 5, + "body": { + "#": 3776 + }, + "isInternal": false + }, + { + "x": 111.55099, + "y": 578.91775, + "index": 6, + "body": { + "#": 3776 + }, + "isInternal": false + }, + { + "x": 106.05188, + "y": 576.38339, + "index": 7, + "body": { + "#": 3776 + }, + "isInternal": false + }, + { + "x": 101.48986, + "y": 572.40231, + "index": 8, + "body": { + "#": 3776 + }, + "isInternal": false + }, + { + "x": 98.23381, + "y": 567.29682, + "index": 9, + "body": { + "#": 3776 + }, + "isInternal": false + }, + { + "x": 96.54926, + "y": 561.48085, + "index": 10, + "body": { + "#": 3776 + }, + "isInternal": false + }, + { + "x": 96.57057, + "y": 555.42689, + "index": 11, + "body": { + "#": 3776 + }, + "isInternal": false + }, + { + "x": 98.296, + "y": 549.62293, + "index": 12, + "body": { + "#": 3776 + }, + "isInternal": false + }, + { + "x": 101.58791, + "y": 544.54048, + "index": 13, + "body": { + "#": 3776 + }, + "isInternal": false + }, + { + "x": 106.17783, + "y": 540.59161, + "index": 14, + "body": { + "#": 3776 + }, + "isInternal": false + }, + { + "x": 111.69465, + "y": 538.09601, + "index": 15, + "body": { + "#": 3776 + }, + "isInternal": false + }, + { + "x": 117.69064, + "y": 537.2551, + "index": 16, + "body": { + "#": 3776 + }, + "isInternal": false + }, + { + "x": 123.68057, + "y": 538.13818, + "index": 17, + "body": { + "#": 3776 + }, + "isInternal": false + }, + { + "x": 129.17969, + "y": 540.67255, + "index": 18, + "body": { + "#": 3776 + }, + "isInternal": false + }, + { + "x": 133.74171, + "y": 544.65363, + "index": 19, + "body": { + "#": 3776 + }, + "isInternal": false + }, + { + "x": 136.99776, + "y": 549.75912, + "index": 20, + "body": { + "#": 3776 + }, + "isInternal": false + }, + { + "x": 138.68231, + "y": 555.57508, + "index": 21, + "body": { + "#": 3776 + }, + "isInternal": false + }, + { + "x": 117.61578, + "y": 558.52797 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.0477, + "y": 0.05218 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3808 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3810 + }, + "max": { + "#": 3811 + } + }, + { + "x": 96.54926, + "y": 537.2551 + }, + { + "x": 138.73144, + "y": 580.0732 + }, + { + "x": 117.56726, + "y": 558.55901 + }, + [ + { + "#": 3814 + }, + { + "#": 3815 + }, + { + "#": 3816 + }, + { + "#": 3817 + }, + { + "#": 3818 + }, + { + "#": 3819 + }, + { + "#": 3820 + }, + { + "#": 3821 + }, + { + "#": 3822 + }, + { + "#": 3823 + }, + { + "#": 3824 + } + ], + { + "x": -0.95854, + "y": -0.28496 + }, + { + "x": -0.83932, + "y": -0.54363 + }, + { + "x": -0.65219, + "y": -0.75806 + }, + { + "x": -0.41215, + "y": -0.91111 + }, + { + "x": -0.13889, + "y": -0.99031 + }, + { + "x": 0.14585, + "y": -0.98931 + }, + { + "x": 0.41856, + "y": -0.90819 + }, + { + "x": 0.6575, + "y": -0.75345 + }, + { + "x": 0.84313, + "y": -0.53771 + }, + { + "x": 0.96052, + "y": -0.27821 + }, + { + "x": 0.99999, + "y": 0.00352 + }, + { + "id": "2,2,11,12", + "startCol": 2, + "endCol": 2, + "startRow": 11, + "endRow": 12 + }, + { + "id": 76, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3827 + }, + "angle": -0.04422, + "vertices": { + "#": 3828 + }, + "position": { + "#": 3853 + }, + "force": { + "#": 3854 + }, + "torque": 0, + "positionImpulse": { + "#": 3855 + }, + "constraintImpulse": { + "#": 3856 + }, + "totalContacts": 0, + "speed": 1.60261, + "angularSpeed": 0.01019, + "velocity": { + "#": 3857 + }, + "angularVelocity": -0.01102, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3858 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3859 + }, + "circleRadius": 23.18744, + "bounds": { + "#": 3861 + }, + "positionPrev": { + "#": 3864 + }, + "anglePrev": -0.03286, + "axes": { + "#": 3865 + }, + "area": 1669.86252, + "mass": 1.66986, + "inverseMass": 0.59885, + "inertia": 1775.22328, + "inverseInertia": 0.00056, + "parent": { + "#": 3826 + }, + "sleepCounter": 0, + "region": { + "#": 3878 + } + }, + [ + { + "#": 3826 + } + ], + [ + { + "#": 3829 + }, + { + "#": 3830 + }, + { + "#": 3831 + }, + { + "#": 3832 + }, + { + "#": 3833 + }, + { + "#": 3834 + }, + { + "#": 3835 + }, + { + "#": 3836 + }, + { + "#": 3837 + }, + { + "#": 3838 + }, + { + "#": 3839 + }, + { + "#": 3840 + }, + { + "#": 3841 + }, + { + "#": 3842 + }, + { + "#": 3843 + }, + { + "#": 3844 + }, + { + "#": 3845 + }, + { + "#": 3846 + }, + { + "#": 3847 + }, + { + "#": 3848 + }, + { + "#": 3849 + }, + { + "#": 3850 + }, + { + "#": 3851 + }, + { + "#": 3852 + } + ], + { + "x": 162.17166, + "y": 505.32917, + "index": 0, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 160.8646, + "y": 511.23872, + "index": 1, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 158.07331, + "y": 516.61036, + "index": 2, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 153.98668, + "y": 521.07536, + "index": 3, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 148.88256, + "y": 524.33015, + "index": 4, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 143.11153, + "y": 526.15402, + "index": 5, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 137.06345, + "y": 526.42162, + "index": 6, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 131.1539, + "y": 525.11456, + "index": 7, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 125.78227, + "y": 522.32326, + "index": 8, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 121.31727, + "y": 518.23663, + "index": 9, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 118.06248, + "y": 513.13251, + "index": 10, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 116.2386, + "y": 507.36149, + "index": 11, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 115.971, + "y": 501.31341, + "index": 12, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 117.27807, + "y": 495.40386, + "index": 13, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 120.06936, + "y": 490.03223, + "index": 14, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 124.15599, + "y": 485.56722, + "index": 15, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 129.26011, + "y": 482.31243, + "index": 16, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 135.03114, + "y": 480.48856, + "index": 17, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 141.07922, + "y": 480.22096, + "index": 18, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 146.98877, + "y": 481.52802, + "index": 19, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 152.3604, + "y": 484.31932, + "index": 20, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 156.8254, + "y": 488.40595, + "index": 21, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 160.08019, + "y": 493.51007, + "index": 22, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 161.90407, + "y": 499.28109, + "index": 23, + "body": { + "#": 3826 + }, + "isInternal": false + }, + { + "x": 139.07133, + "y": 503.32129 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -1.04679, + "y": 1.16406 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3860 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3862 + }, + "max": { + "#": 3863 + } + }, + { + "x": 115.04263, + "y": 480.22096 + }, + { + "x": 162.17166, + "y": 527.72795 + }, + { + "x": 140.12666, + "y": 502.17062 + }, + [ + { + "#": 3866 + }, + { + "#": 3867 + }, + { + "#": 3868 + }, + { + "#": 3869 + }, + { + "#": 3870 + }, + { + "#": 3871 + }, + { + "#": 3872 + }, + { + "#": 3873 + }, + { + "#": 3874 + }, + { + "#": 3875 + }, + { + "#": 3876 + }, + { + "#": 3877 + } + ], + { + "x": -0.9764, + "y": -0.21596 + }, + { + "x": -0.88735, + "y": -0.4611 + }, + { + "x": -0.73767, + "y": -0.67516 + }, + { + "x": -0.53766, + "y": -0.84316 + }, + { + "x": -0.30135, + "y": -0.95351 + }, + { + "x": -0.0442, + "y": -0.99902 + }, + { + "x": 0.21596, + "y": -0.9764 + }, + { + "x": 0.4611, + "y": -0.88735 + }, + { + "x": 0.67516, + "y": -0.73767 + }, + { + "x": 0.84316, + "y": -0.53766 + }, + { + "x": 0.95351, + "y": -0.30135 + }, + { + "x": 0.99902, + "y": -0.0442 + }, + { + "id": "2,3,10,10", + "startCol": 2, + "endCol": 3, + "startRow": 10, + "endRow": 10 + }, + { + "id": 77, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3880 + }, + "angle": -0.01222, + "vertices": { + "#": 3881 + }, + "position": { + "#": 3908 + }, + "force": { + "#": 3909 + }, + "torque": 0, + "positionImpulse": { + "#": 3910 + }, + "constraintImpulse": { + "#": 3911 + }, + "totalContacts": 0, + "speed": 0.41129, + "angularSpeed": 0.00278, + "velocity": { + "#": 3912 + }, + "angularVelocity": -0.00293, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3913 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3914 + }, + "circleRadius": 28.79019, + "bounds": { + "#": 3916 + }, + "positionPrev": { + "#": 3919 + }, + "anglePrev": -0.00956, + "axes": { + "#": 3920 + }, + "area": 2578.69518, + "mass": 2.5787, + "inverseMass": 0.38779, + "inertia": 4233.39144, + "inverseInertia": 0.00024, + "parent": { + "#": 3879 + }, + "sleepCounter": 0, + "region": { + "#": 3934 + } + }, + [ + { + "#": 3879 + } + ], + [ + { + "#": 3882 + }, + { + "#": 3883 + }, + { + "#": 3884 + }, + { + "#": 3885 + }, + { + "#": 3886 + }, + { + "#": 3887 + }, + { + "#": 3888 + }, + { + "#": 3889 + }, + { + "#": 3890 + }, + { + "#": 3891 + }, + { + "#": 3892 + }, + { + "#": 3893 + }, + { + "#": 3894 + }, + { + "#": 3895 + }, + { + "#": 3896 + }, + { + "#": 3897 + }, + { + "#": 3898 + }, + { + "#": 3899 + }, + { + "#": 3900 + }, + { + "#": 3901 + }, + { + "#": 3902 + }, + { + "#": 3903 + }, + { + "#": 3904 + }, + { + "#": 3905 + }, + { + "#": 3906 + }, + { + "#": 3907 + } + ], + { + "x": 282.24514, + "y": 554.13994, + "index": 0, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 280.66661, + "y": 560.89874, + "index": 1, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 277.51695, + "y": 567.08368, + "index": 2, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 272.97777, + "y": 572.33454, + "index": 3, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 267.31436, + "y": 576.34604, + "index": 4, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 260.85593, + "y": 578.88715, + "index": 5, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 253.97666, + "y": 579.80728, + "index": 6, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 247.07696, + "y": 579.05553, + "index": 7, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 240.55836, + "y": 576.67301, + "index": 8, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 234.79862, + "y": 572.8011, + "index": 9, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 230.13248, + "y": 567.66273, + "index": 10, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 226.83262, + "y": 561.5566, + "index": 11, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 225.0894, + "y": 554.8384, + "index": 12, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 225.0046, + "y": 547.89892, + "index": 13, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 226.58313, + "y": 541.14012, + "index": 14, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 229.73279, + "y": 534.95518, + "index": 15, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 234.27197, + "y": 529.70432, + "index": 16, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 239.93537, + "y": 525.69282, + "index": 17, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 246.3938, + "y": 523.15171, + "index": 18, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 253.27307, + "y": 522.23158, + "index": 19, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 260.17278, + "y": 522.98333, + "index": 20, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 266.69137, + "y": 525.36585, + "index": 21, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 272.45112, + "y": 529.23776, + "index": 22, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 277.11725, + "y": 534.37613, + "index": 23, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 280.41711, + "y": 540.48226, + "index": 24, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 282.16033, + "y": 547.20046, + "index": 25, + "body": { + "#": 3879 + }, + "isInternal": false + }, + { + "x": 253.62487, + "y": 551.01943 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.37153, + "y": -0.18785 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.34294, + "y": -0.02494 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3915 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3917 + }, + "max": { + "#": 3918 + } + }, + { + "x": 224.66088, + "y": 522.23158 + }, + { + "x": 282.24514, + "y": 580.03315 + }, + { + "x": 253.98499, + "y": 551.02625 + }, + [ + { + "#": 3921 + }, + { + "#": 3922 + }, + { + "#": 3923 + }, + { + "#": 3924 + }, + { + "#": 3925 + }, + { + "#": 3926 + }, + { + "#": 3927 + }, + { + "#": 3928 + }, + { + "#": 3929 + }, + { + "#": 3930 + }, + { + "#": 3931 + }, + { + "#": 3932 + }, + { + "#": 3933 + } + ], + { + "x": -0.97379, + "y": -0.22743 + }, + { + "x": -0.89111, + "y": -0.45379 + }, + { + "x": -0.75651, + "y": -0.65398 + }, + { + "x": -0.57801, + "y": -0.81603 + }, + { + "x": -0.36613, + "y": -0.93056 + }, + { + "x": -0.13257, + "y": -0.99117 + }, + { + "x": 0.10831, + "y": -0.99412 + }, + { + "x": 0.34329, + "y": -0.93923 + }, + { + "x": 0.5579, + "y": -0.82991 + }, + { + "x": 0.74031, + "y": -0.67227 + }, + { + "x": 0.87975, + "y": -0.47543 + }, + { + "x": 0.96795, + "y": -0.25116 + }, + { + "x": 0.99993, + "y": -0.01222 + }, + { + "id": "4,5,10,12", + "startCol": 4, + "endCol": 5, + "startRow": 10, + "endRow": 12 + }, + { + "id": 78, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3936 + }, + "angle": 0.15953, + "vertices": { + "#": 3937 + }, + "position": { + "#": 3956 + }, + "force": { + "#": 3957 + }, + "torque": 0, + "positionImpulse": { + "#": 3958 + }, + "constraintImpulse": { + "#": 3959 + }, + "totalContacts": 0, + "speed": 0.67102, + "angularSpeed": 0.01795, + "velocity": { + "#": 3960 + }, + "angularVelocity": 0.01951, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3961 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3962 + }, + "circleRadius": 16.04417, + "bounds": { + "#": 3964 + }, + "positionPrev": { + "#": 3967 + }, + "anglePrev": 0.1392, + "axes": { + "#": 3968 + }, + "area": 792.3786, + "mass": 0.79238, + "inverseMass": 1.26202, + "inertia": 399.74399, + "inverseInertia": 0.0025, + "parent": { + "#": 3935 + }, + "sleepCounter": 0, + "region": { + "#": 3978 + } + }, + [ + { + "#": 3935 + } + ], + [ + { + "#": 3938 + }, + { + "#": 3939 + }, + { + "#": 3940 + }, + { + "#": 3941 + }, + { + "#": 3942 + }, + { + "#": 3943 + }, + { + "#": 3944 + }, + { + "#": 3945 + }, + { + "#": 3946 + }, + { + "#": 3947 + }, + { + "#": 3948 + }, + { + "#": 3949 + }, + { + "#": 3950 + }, + { + "#": 3951 + }, + { + "#": 3952 + }, + { + "#": 3953 + }, + { + "#": 3954 + }, + { + "#": 3955 + } + ], + { + "x": 313.04114, + "y": 551.20126, + "index": 0, + "body": { + "#": 3935 + }, + "isInternal": false + }, + { + "x": 310.3286, + "y": 556.06817, + "index": 1, + "body": { + "#": 3935 + }, + "isInternal": false + }, + { + "x": 306.11395, + "y": 559.71397, + "index": 2, + "body": { + "#": 3935 + }, + "isInternal": false + }, + { + "x": 300.90667, + "y": 561.69799, + "index": 3, + "body": { + "#": 3935 + }, + "isInternal": false + }, + { + "x": 295.33573, + "y": 561.7811, + "index": 4, + "body": { + "#": 3935 + }, + "isInternal": false + }, + { + "x": 290.07201, + "y": 559.95477, + "index": 5, + "body": { + "#": 3935 + }, + "isInternal": false + }, + { + "x": 285.74984, + "y": 556.43754, + "index": 6, + "body": { + "#": 3935 + }, + "isInternal": false + }, + { + "x": 282.89145, + "y": 551.65375, + "index": 7, + "body": { + "#": 3935 + }, + "isInternal": false + }, + { + "x": 281.84237, + "y": 546.18162, + "index": 8, + "body": { + "#": 3935 + }, + "isInternal": false + }, + { + "x": 282.72748, + "y": 540.68037, + "index": 9, + "body": { + "#": 3935 + }, + "isInternal": false + }, + { + "x": 285.44003, + "y": 535.81346, + "index": 10, + "body": { + "#": 3935 + }, + "isInternal": false + }, + { + "x": 289.65468, + "y": 532.16766, + "index": 11, + "body": { + "#": 3935 + }, + "isInternal": false + }, + { + "x": 294.86196, + "y": 530.18364, + "index": 12, + "body": { + "#": 3935 + }, + "isInternal": false + }, + { + "x": 300.43289, + "y": 530.10053, + "index": 13, + "body": { + "#": 3935 + }, + "isInternal": false + }, + { + "x": 305.69662, + "y": 531.92686, + "index": 14, + "body": { + "#": 3935 + }, + "isInternal": false + }, + { + "x": 310.01879, + "y": 535.44409, + "index": 15, + "body": { + "#": 3935 + }, + "isInternal": false + }, + { + "x": 312.87718, + "y": 540.22789, + "index": 16, + "body": { + "#": 3935 + }, + "isInternal": false + }, + { + "x": 313.92625, + "y": 545.70001, + "index": 17, + "body": { + "#": 3935 + }, + "isInternal": false + }, + { + "x": 297.88431, + "y": 545.94082 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.30288, + "y": 0.07235 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.34363, + "y": 0.21513 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3963 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3965 + }, + "max": { + "#": 3966 + } + }, + { + "x": 281.58508, + "y": 530.10053 + }, + { + "x": 313.92625, + "y": 562.40083 + }, + { + "x": 298.28126, + "y": 545.58165 + }, + [ + { + "#": 3969 + }, + { + "#": 3970 + }, + { + "#": 3971 + }, + { + "#": 3972 + }, + { + "#": 3973 + }, + { + "#": 3974 + }, + { + "#": 3975 + }, + { + "#": 3976 + }, + { + "#": 3977 + } + ], + { + "x": -0.87349, + "y": -0.48684 + }, + { + "x": -0.65422, + "y": -0.7563 + }, + { + "x": -0.35604, + "y": -0.93447 + }, + { + "x": -0.01492, + "y": -0.99989 + }, + { + "x": 0.32779, + "y": -0.94475 + }, + { + "x": 0.63118, + "y": -0.77563 + }, + { + "x": 0.85843, + "y": -0.51293 + }, + { + "x": 0.98211, + "y": -0.18828 + }, + { + "x": 0.9873, + "y": 0.15885 + }, + { + "id": "5,6,11,11", + "startCol": 5, + "endCol": 6, + "startRow": 11, + "endRow": 11 + }, + { + "id": 79, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3980 + }, + "angle": -0.01498, + "vertices": { + "#": 3981 + }, + "position": { + "#": 3998 + }, + "force": { + "#": 3999 + }, + "torque": 0, + "positionImpulse": { + "#": 4000 + }, + "constraintImpulse": { + "#": 4001 + }, + "totalContacts": 0, + "speed": 0.15804, + "angularSpeed": 0.00814, + "velocity": { + "#": 4002 + }, + "angularVelocity": -0.01963, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4003 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4004 + }, + "circleRadius": 15.69014, + "bounds": { + "#": 4006 + }, + "positionPrev": { + "#": 4009 + }, + "anglePrev": 0.00224, + "axes": { + "#": 4010 + }, + "area": 753.6954, + "mass": 0.7537, + "inverseMass": 1.3268, + "inertia": 361.68483, + "inverseInertia": 0.00276, + "parent": { + "#": 3979 + }, + "sleepCounter": 0, + "region": { + "#": 4019 + } + }, + [ + { + "#": 3979 + } + ], + [ + { + "#": 3982 + }, + { + "#": 3983 + }, + { + "#": 3984 + }, + { + "#": 3985 + }, + { + "#": 3986 + }, + { + "#": 3987 + }, + { + "#": 3988 + }, + { + "#": 3989 + }, + { + "#": 3990 + }, + { + "#": 3991 + }, + { + "#": 3992 + }, + { + "#": 3993 + }, + { + "#": 3994 + }, + { + "#": 3995 + }, + { + "#": 3996 + }, + { + "#": 3997 + } + ], + { + "x": 338.88819, + "y": 567.24963, + "index": 0, + "body": { + "#": 3979 + }, + "isInternal": false + }, + { + "x": 336.63017, + "y": 572.94008, + "index": 1, + "body": { + "#": 3979 + }, + "isInternal": false + }, + { + "x": 332.36649, + "y": 577.33344, + "index": 2, + "body": { + "#": 3979 + }, + "isInternal": false + }, + { + "x": 326.74622, + "y": 579.76089, + "index": 3, + "body": { + "#": 3979 + }, + "isInternal": false + }, + { + "x": 320.62491, + "y": 579.85259, + "index": 4, + "body": { + "#": 3979 + }, + "isInternal": false + }, + { + "x": 314.93445, + "y": 577.59456, + "index": 5, + "body": { + "#": 3979 + }, + "isInternal": false + }, + { + "x": 310.54109, + "y": 573.33089, + "index": 6, + "body": { + "#": 3979 + }, + "isInternal": false + }, + { + "x": 308.11364, + "y": 567.71062, + "index": 7, + "body": { + "#": 3979 + }, + "isInternal": false + }, + { + "x": 308.02195, + "y": 561.5893, + "index": 8, + "body": { + "#": 3979 + }, + "isInternal": false + }, + { + "x": 310.27997, + "y": 555.89884, + "index": 9, + "body": { + "#": 3979 + }, + "isInternal": false + }, + { + "x": 314.54364, + "y": 551.50549, + "index": 10, + "body": { + "#": 3979 + }, + "isInternal": false + }, + { + "x": 320.16392, + "y": 549.07804, + "index": 11, + "body": { + "#": 3979 + }, + "isInternal": false + }, + { + "x": 326.28523, + "y": 548.98634, + "index": 12, + "body": { + "#": 3979 + }, + "isInternal": false + }, + { + "x": 331.97569, + "y": 551.24437, + "index": 13, + "body": { + "#": 3979 + }, + "isInternal": false + }, + { + "x": 336.36904, + "y": 555.50804, + "index": 14, + "body": { + "#": 3979 + }, + "isInternal": false + }, + { + "x": 338.7965, + "y": 561.12831, + "index": 15, + "body": { + "#": 3979 + }, + "isInternal": false + }, + { + "x": 323.45507, + "y": 564.41946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.09511, + "y": 0.00968 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4005 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4007 + }, + "max": { + "#": 4008 + } + }, + { + "x": 308.02195, + "y": 548.98634 + }, + { + "x": 338.92876, + "y": 580.00533 + }, + { + "x": 323.60657, + "y": 564.41815 + }, + [ + { + "#": 4011 + }, + { + "#": 4012 + }, + { + "#": 4013 + }, + { + "#": 4014 + }, + { + "#": 4015 + }, + { + "#": 4016 + }, + { + "#": 4017 + }, + { + "#": 4018 + } + ], + { + "x": -0.9295, + "y": -0.36883 + }, + { + "x": -0.71762, + "y": -0.69644 + }, + { + "x": -0.39651, + "y": -0.91803 + }, + { + "x": -0.01498, + "y": -0.99989 + }, + { + "x": 0.36883, + "y": -0.9295 + }, + { + "x": 0.69644, + "y": -0.71762 + }, + { + "x": 0.91803, + "y": -0.39651 + }, + { + "x": 0.99989, + "y": -0.01498 + }, + { + "id": "6,7,11,12", + "startCol": 6, + "endCol": 7, + "startRow": 11, + "endRow": 12 + }, + { + "id": 80, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4021 + }, + "angle": -0.14245, + "vertices": { + "#": 4022 + }, + "position": { + "#": 4047 + }, + "force": { + "#": 4048 + }, + "torque": 0, + "positionImpulse": { + "#": 4049 + }, + "constraintImpulse": { + "#": 4050 + }, + "totalContacts": 0, + "speed": 0.7618, + "angularSpeed": 0.02078, + "velocity": { + "#": 4051 + }, + "angularVelocity": -0.0275, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4052 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4053 + }, + "circleRadius": 22.91326, + "bounds": { + "#": 4055 + }, + "positionPrev": { + "#": 4058 + }, + "anglePrev": -0.11523, + "axes": { + "#": 4059 + }, + "area": 1630.60593, + "mass": 1.63061, + "inverseMass": 0.61327, + "inertia": 1692.73737, + "inverseInertia": 0.00059, + "parent": { + "#": 4020 + }, + "sleepCounter": 0, + "region": { + "#": 4072 + } + }, + [ + { + "#": 4020 + } + ], + [ + { + "#": 4023 + }, + { + "#": 4024 + }, + { + "#": 4025 + }, + { + "#": 4026 + }, + { + "#": 4027 + }, + { + "#": 4028 + }, + { + "#": 4029 + }, + { + "#": 4030 + }, + { + "#": 4031 + }, + { + "#": 4032 + }, + { + "#": 4033 + }, + { + "#": 4034 + }, + { + "#": 4035 + }, + { + "#": 4036 + }, + { + "#": 4037 + }, + { + "#": 4038 + }, + { + "#": 4039 + }, + { + "#": 4040 + }, + { + "#": 4041 + }, + { + "#": 4042 + }, + { + "#": 4043 + }, + { + "#": 4044 + }, + { + "#": 4045 + }, + { + "#": 4046 + } + ], + { + "x": 340.15633, + "y": 512.17714, + "index": 0, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 339.44431, + "y": 518.11638, + "index": 1, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 337.21901, + "y": 523.66855, + "index": 2, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 333.63324, + "y": 528.4551, + "index": 3, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 328.93034, + "y": 532.15121, + "index": 4, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 323.43064, + "y": 534.50384, + "index": 5, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 317.50923, + "y": 535.3531, + "index": 6, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 311.56999, + "y": 534.64109, + "index": 7, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 306.01782, + "y": 532.41579, + "index": 8, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 301.23127, + "y": 528.83002, + "index": 9, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 297.53516, + "y": 524.12712, + "index": 10, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 295.18253, + "y": 518.62741, + "index": 11, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 294.33327, + "y": 512.70601, + "index": 12, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 295.04528, + "y": 506.76676, + "index": 13, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 297.27058, + "y": 501.2146, + "index": 14, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 300.85635, + "y": 496.42804, + "index": 15, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 305.55925, + "y": 492.73193, + "index": 16, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 311.05896, + "y": 490.37931, + "index": 17, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 316.98036, + "y": 489.53004, + "index": 18, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 322.91961, + "y": 490.24206, + "index": 19, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 328.47177, + "y": 492.46736, + "index": 20, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 333.25833, + "y": 496.05313, + "index": 21, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 336.95444, + "y": 500.75603, + "index": 22, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 339.30706, + "y": 506.25573, + "index": 23, + "body": { + "#": 4020 + }, + "isInternal": false + }, + { + "x": 317.2448, + "y": 512.44157 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.34548, + "y": -0.10947 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.07185, + "y": 0.6384 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4054 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4056 + }, + "max": { + "#": 4057 + } + }, + { + "x": 294.04147, + "y": 489.53004 + }, + { + "x": 340.15633, + "y": 536.0568 + }, + { + "x": 317.29074, + "y": 511.87317 + }, + [ + { + "#": 4060 + }, + { + "#": 4061 + }, + { + "#": 4062 + }, + { + "#": 4063 + }, + { + "#": 4064 + }, + { + "#": 4065 + }, + { + "#": 4066 + }, + { + "#": 4067 + }, + { + "#": 4068 + }, + { + "#": 4069 + }, + { + "#": 4070 + }, + { + "#": 4071 + } + ], + { + "x": -0.99289, + "y": -0.11903 + }, + { + "x": -0.92822, + "y": -0.37203 + }, + { + "x": -0.80033, + "y": -0.59956 + }, + { + "x": -0.61792, + "y": -0.78624 + }, + { + "x": -0.3933, + "y": -0.91941 + }, + { + "x": -0.14197, + "y": -0.98987 + }, + { + "x": 0.11903, + "y": -0.99289 + }, + { + "x": 0.37203, + "y": -0.92822 + }, + { + "x": 0.59956, + "y": -0.80033 + }, + { + "x": 0.78624, + "y": -0.61792 + }, + { + "x": 0.91941, + "y": -0.3933 + }, + { + "x": 0.98987, + "y": -0.14197 + }, + { + "id": "6,7,10,11", + "startCol": 6, + "endCol": 7, + "startRow": 10, + "endRow": 11 + }, + { + "id": 81, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4074 + }, + "angle": -0.00413, + "vertices": { + "#": 4075 + }, + "position": { + "#": 4102 + }, + "force": { + "#": 4103 + }, + "torque": 0, + "positionImpulse": { + "#": 4104 + }, + "constraintImpulse": { + "#": 4105 + }, + "totalContacts": 0, + "speed": 0.23162, + "angularSpeed": 0.00195, + "velocity": { + "#": 4106 + }, + "angularVelocity": 0.00082, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4107 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4108 + }, + "circleRadius": 24.00984, + "bounds": { + "#": 4110 + }, + "positionPrev": { + "#": 4113 + }, + "anglePrev": -0.00543, + "axes": { + "#": 4114 + }, + "area": 1793.48834, + "mass": 1.79349, + "inverseMass": 0.55757, + "inertia": 2047.79051, + "inverseInertia": 0.00049, + "parent": { + "#": 4073 + }, + "sleepCounter": 0, + "region": { + "#": 4128 + } + }, + [ + { + "#": 4073 + } + ], + [ + { + "#": 4076 + }, + { + "#": 4077 + }, + { + "#": 4078 + }, + { + "#": 4079 + }, + { + "#": 4080 + }, + { + "#": 4081 + }, + { + "#": 4082 + }, + { + "#": 4083 + }, + { + "#": 4084 + }, + { + "#": 4085 + }, + { + "#": 4086 + }, + { + "#": 4087 + }, + { + "#": 4088 + }, + { + "#": 4089 + }, + { + "#": 4090 + }, + { + "#": 4091 + }, + { + "#": 4092 + }, + { + "#": 4093 + }, + { + "#": 4094 + }, + { + "#": 4095 + }, + { + "#": 4096 + }, + { + "#": 4097 + }, + { + "#": 4098 + }, + { + "#": 4099 + }, + { + "#": 4100 + }, + { + "#": 4101 + } + ], + { + "x": 491.36262, + "y": 558.9168, + "index": 0, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 490.00084, + "y": 564.54247, + "index": 1, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 487.33202, + "y": 569.67853, + "index": 2, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 483.51094, + "y": 574.02734, + "index": 3, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 478.76156, + "y": 577.33498, + "index": 4, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 473.35807, + "y": 579.40931, + "index": 5, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 467.615, + "y": 580.13103, + "index": 6, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 461.86617, + "y": 579.45675, + "index": 7, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 456.44575, + "y": 577.42712, + "index": 8, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 451.66921, + "y": 574.15881, + "index": 9, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 447.81235, + "y": 569.8417, + "index": 10, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 445.10122, + "y": 564.72785, + "index": 11, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 443.69303, + "y": 559.11361, + "index": 12, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 443.66913, + "y": 553.32566, + "index": 13, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 445.03092, + "y": 547.69999, + "index": 14, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 447.69973, + "y": 542.56393, + "index": 15, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 451.52081, + "y": 538.21512, + "index": 16, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 456.2702, + "y": 534.90748, + "index": 17, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 461.67368, + "y": 532.83315, + "index": 18, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 467.41675, + "y": 532.11143, + "index": 19, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 473.16558, + "y": 532.78571, + "index": 20, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 478.586, + "y": 534.81534, + "index": 21, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 483.36254, + "y": 538.08365, + "index": 22, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 487.2194, + "y": 542.40076, + "index": 23, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 489.93053, + "y": 547.51461, + "index": 24, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 491.33872, + "y": 553.12885, + "index": 25, + "body": { + "#": 4073 + }, + "isInternal": false + }, + { + "x": 467.51588, + "y": 556.12123 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.18868, + "y": -0.08008 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4109 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4111 + }, + "max": { + "#": 4112 + } + }, + { + "x": 443.6587, + "y": 532.11143 + }, + { + "x": 491.36262, + "y": 580.36241 + }, + { + "x": 467.36413, + "y": 556.14331 + }, + [ + { + "#": 4115 + }, + { + "#": 4116 + }, + { + "#": 4117 + }, + { + "#": 4118 + }, + { + "#": 4119 + }, + { + "#": 4120 + }, + { + "#": 4121 + }, + { + "#": 4122 + }, + { + "#": 4123 + }, + { + "#": 4124 + }, + { + "#": 4125 + }, + { + "#": 4126 + }, + { + "#": 4127 + } + ], + { + "x": -0.97193, + "y": -0.23527 + }, + { + "x": -0.88735, + "y": -0.46109 + }, + { + "x": -0.75122, + "y": -0.66006 + }, + { + "x": -0.5715, + "y": -0.8206 + }, + { + "x": -0.35839, + "y": -0.93357 + }, + { + "x": -0.12469, + "y": -0.9922 + }, + { + "x": 0.11649, + "y": -0.99319 + }, + { + "x": 0.35067, + "y": -0.9365 + }, + { + "x": 0.5647, + "y": -0.8253 + }, + { + "x": 0.74574, + "y": -0.66624 + }, + { + "x": 0.88352, + "y": -0.4684 + }, + { + "x": 0.96995, + "y": -0.24329 + }, + { + "x": 0.99999, + "y": -0.00413 + }, + { + "id": "9,10,11,12", + "startCol": 9, + "endCol": 10, + "startRow": 11, + "endRow": 12 + }, + { + "id": 82, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4130 + }, + "angle": 0.02515, + "vertices": { + "#": 4131 + }, + "position": { + "#": 4152 + }, + "force": { + "#": 4153 + }, + "torque": 0, + "positionImpulse": { + "#": 4154 + }, + "constraintImpulse": { + "#": 4155 + }, + "totalContacts": 0, + "speed": 0.54138, + "angularSpeed": 0.01581, + "velocity": { + "#": 4156 + }, + "angularVelocity": -0.01738, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4157 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4158 + }, + "circleRadius": 18.05395, + "bounds": { + "#": 4160 + }, + "positionPrev": { + "#": 4163 + }, + "anglePrev": 0.04559, + "axes": { + "#": 4164 + }, + "area": 1007.22206, + "mass": 1.00722, + "inverseMass": 0.99283, + "inertia": 645.88376, + "inverseInertia": 0.00155, + "parent": { + "#": 4129 + }, + "sleepCounter": 0, + "region": { + "#": 4175 + } + }, + [ + { + "#": 4129 + } + ], + [ + { + "#": 4132 + }, + { + "#": 4133 + }, + { + "#": 4134 + }, + { + "#": 4135 + }, + { + "#": 4136 + }, + { + "#": 4137 + }, + { + "#": 4138 + }, + { + "#": 4139 + }, + { + "#": 4140 + }, + { + "#": 4141 + }, + { + "#": 4142 + }, + { + "#": 4143 + }, + { + "#": 4144 + }, + { + "#": 4145 + }, + { + "#": 4146 + }, + { + "#": 4147 + }, + { + "#": 4148 + }, + { + "#": 4149 + }, + { + "#": 4150 + }, + { + "#": 4151 + } + ], + { + "x": 552.5126, + "y": 527.16798, + "index": 0, + "body": { + "#": 4129 + }, + "isInternal": false + }, + { + "x": 550.63208, + "y": 532.49438, + "index": 1, + "body": { + "#": 4129 + }, + "isInternal": false + }, + { + "x": 547.19822, + "y": 536.97946, + "index": 2, + "body": { + "#": 4129 + }, + "isInternal": false + }, + { + "x": 542.54619, + "y": 540.1835, + "index": 3, + "body": { + "#": 4129 + }, + "isInternal": false + }, + { + "x": 537.13199, + "y": 541.79388, + "index": 4, + "body": { + "#": 4129 + }, + "isInternal": false + }, + { + "x": 531.48577, + "y": 541.65186, + "index": 5, + "body": { + "#": 4129 + }, + "isInternal": false + }, + { + "x": 526.15937, + "y": 539.77134, + "index": 6, + "body": { + "#": 4129 + }, + "isInternal": false + }, + { + "x": 521.6743, + "y": 536.33748, + "index": 7, + "body": { + "#": 4129 + }, + "isInternal": false + }, + { + "x": 518.47025, + "y": 531.68545, + "index": 8, + "body": { + "#": 4129 + }, + "isInternal": false + }, + { + "x": 516.85988, + "y": 526.27125, + "index": 9, + "body": { + "#": 4129 + }, + "isInternal": false + }, + { + "x": 517.00189, + "y": 520.62503, + "index": 10, + "body": { + "#": 4129 + }, + "isInternal": false + }, + { + "x": 518.88241, + "y": 515.29863, + "index": 11, + "body": { + "#": 4129 + }, + "isInternal": false + }, + { + "x": 522.31627, + "y": 510.81356, + "index": 12, + "body": { + "#": 4129 + }, + "isInternal": false + }, + { + "x": 526.96831, + "y": 507.60951, + "index": 13, + "body": { + "#": 4129 + }, + "isInternal": false + }, + { + "x": 532.38251, + "y": 505.99914, + "index": 14, + "body": { + "#": 4129 + }, + "isInternal": false + }, + { + "x": 538.02872, + "y": 506.14115, + "index": 15, + "body": { + "#": 4129 + }, + "isInternal": false + }, + { + "x": 543.35512, + "y": 508.02167, + "index": 16, + "body": { + "#": 4129 + }, + "isInternal": false + }, + { + "x": 547.8402, + "y": 511.45553, + "index": 17, + "body": { + "#": 4129 + }, + "isInternal": false + }, + { + "x": 551.04424, + "y": 516.10757, + "index": 18, + "body": { + "#": 4129 + }, + "isInternal": false + }, + { + "x": 552.65462, + "y": 521.52177, + "index": 19, + "body": { + "#": 4129 + }, + "isInternal": false + }, + { + "x": 534.75725, + "y": 523.89651 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.35589, + "y": 0.06687 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4159 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4161 + }, + "max": { + "#": 4162 + } + }, + { + "x": 516.85988, + "y": 505.99914 + }, + { + "x": 552.92309, + "y": 542.264 + }, + { + "x": 534.54913, + "y": 523.78011 + }, + [ + { + "#": 4165 + }, + { + "#": 4166 + }, + { + "#": 4167 + }, + { + "#": 4168 + }, + { + "#": 4169 + }, + { + "#": 4170 + }, + { + "#": 4171 + }, + { + "#": 4172 + }, + { + "#": 4173 + }, + { + "#": 4174 + } + ], + { + "x": -0.94296, + "y": -0.33292 + }, + { + "x": -0.79401, + "y": -0.60791 + }, + { + "x": -0.56722, + "y": -0.82356 + }, + { + "x": -0.28509, + "y": -0.9585 + }, + { + "x": 0.02514, + "y": -0.99968 + }, + { + "x": 0.33292, + "y": -0.94296 + }, + { + "x": 0.60791, + "y": -0.79401 + }, + { + "x": 0.82356, + "y": -0.56722 + }, + { + "x": 0.9585, + "y": -0.28509 + }, + { + "x": 0.99968, + "y": 0.02514 + }, + { + "id": "10,11,10,11", + "startCol": 10, + "endCol": 11, + "startRow": 10, + "endRow": 11 + }, + { + "id": 83, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4177 + }, + "angle": 0.09996, + "vertices": { + "#": 4178 + }, + "position": { + "#": 4199 + }, + "force": { + "#": 4200 + }, + "torque": 0, + "positionImpulse": { + "#": 4201 + }, + "constraintImpulse": { + "#": 4202 + }, + "totalContacts": 0, + "speed": 0.62965, + "angularSpeed": 0.00992, + "velocity": { + "#": 4203 + }, + "angularVelocity": 0.01371, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4204 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4205 + }, + "circleRadius": 18.56411, + "bounds": { + "#": 4207 + }, + "positionPrev": { + "#": 4210 + }, + "anglePrev": 0.08714, + "axes": { + "#": 4211 + }, + "area": 1064.99136, + "mass": 1.06499, + "inverseMass": 0.93897, + "inertia": 722.09788, + "inverseInertia": 0.00138, + "parent": { + "#": 4176 + }, + "sleepCounter": 0, + "region": { + "#": 4222 + } + }, + [ + { + "#": 4176 + } + ], + [ + { + "#": 4179 + }, + { + "#": 4180 + }, + { + "#": 4181 + }, + { + "#": 4182 + }, + { + "#": 4183 + }, + { + "#": 4184 + }, + { + "#": 4185 + }, + { + "#": 4186 + }, + { + "#": 4187 + }, + { + "#": 4188 + }, + { + "#": 4189 + }, + { + "#": 4190 + }, + { + "#": 4191 + }, + { + "#": 4192 + }, + { + "#": 4193 + }, + { + "#": 4194 + }, + { + "#": 4195 + }, + { + "#": 4196 + }, + { + "#": 4197 + }, + { + "#": 4198 + } + ], + { + "x": 517.06369, + "y": 533.81989, + "index": 0, + "body": { + "#": 4176 + }, + "isInternal": false + }, + { + "x": 514.72638, + "y": 539.13719, + "index": 1, + "body": { + "#": 4176 + }, + "isInternal": false + }, + { + "x": 510.86049, + "y": 543.47203, + "index": 2, + "body": { + "#": 4176 + }, + "isInternal": false + }, + { + "x": 505.84424, + "y": 546.40005, + "index": 3, + "body": { + "#": 4176 + }, + "isInternal": false + }, + { + "x": 500.16869, + "y": 547.63482, + "index": 4, + "body": { + "#": 4176 + }, + "isInternal": false + }, + { + "x": 494.38968, + "y": 547.0552, + "index": 5, + "body": { + "#": 4176 + }, + "isInternal": false + }, + { + "x": 489.07239, + "y": 544.7179, + "index": 6, + "body": { + "#": 4176 + }, + "isInternal": false + }, + { + "x": 484.73755, + "y": 540.852, + "index": 7, + "body": { + "#": 4176 + }, + "isInternal": false + }, + { + "x": 481.80953, + "y": 535.83576, + "index": 8, + "body": { + "#": 4176 + }, + "isInternal": false + }, + { + "x": 480.57476, + "y": 530.1602, + "index": 9, + "body": { + "#": 4176 + }, + "isInternal": false + }, + { + "x": 481.15437, + "y": 524.38119, + "index": 10, + "body": { + "#": 4176 + }, + "isInternal": false + }, + { + "x": 483.49168, + "y": 519.0639, + "index": 11, + "body": { + "#": 4176 + }, + "isInternal": false + }, + { + "x": 487.35757, + "y": 514.72906, + "index": 12, + "body": { + "#": 4176 + }, + "isInternal": false + }, + { + "x": 492.37382, + "y": 511.80104, + "index": 13, + "body": { + "#": 4176 + }, + "isInternal": false + }, + { + "x": 498.04937, + "y": 510.56627, + "index": 14, + "body": { + "#": 4176 + }, + "isInternal": false + }, + { + "x": 503.82838, + "y": 511.14588, + "index": 15, + "body": { + "#": 4176 + }, + "isInternal": false + }, + { + "x": 509.14567, + "y": 513.48319, + "index": 16, + "body": { + "#": 4176 + }, + "isInternal": false + }, + { + "x": 513.48051, + "y": 517.34909, + "index": 17, + "body": { + "#": 4176 + }, + "isInternal": false + }, + { + "x": 516.40853, + "y": 522.36533, + "index": 18, + "body": { + "#": 4176 + }, + "isInternal": false + }, + { + "x": 517.6433, + "y": 528.04089, + "index": 19, + "body": { + "#": 4176 + }, + "isInternal": false + }, + { + "x": 499.10903, + "y": 529.10054 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.39825, + "y": 0.14476 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4206 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4208 + }, + "max": { + "#": 4209 + } + }, + { + "x": 480.57476, + "y": 510.56627 + }, + { + "x": 517.88318, + "y": 548.21698 + }, + { + "x": 498.74532, + "y": 528.94981 + }, + [ + { + "#": 4212 + }, + { + "#": 4213 + }, + { + "#": 4214 + }, + { + "#": 4215 + }, + { + "#": 4216 + }, + { + "#": 4217 + }, + { + "#": 4218 + }, + { + "#": 4219 + }, + { + "#": 4220 + }, + { + "#": 4221 + } + ], + { + "x": -0.91546, + "y": -0.40241 + }, + { + "x": -0.74632, + "y": -0.66558 + }, + { + "x": -0.50411, + "y": -0.86364 + }, + { + "x": -0.21259, + "y": -0.97714 + }, + { + "x": 0.0998, + "y": -0.99501 + }, + { + "x": 0.40241, + "y": -0.91546 + }, + { + "x": 0.66558, + "y": -0.74632 + }, + { + "x": 0.86364, + "y": -0.50411 + }, + { + "x": 0.97714, + "y": -0.21259 + }, + { + "x": 0.99501, + "y": 0.0998 + }, + { + "id": "10,10,10,11", + "startCol": 10, + "endCol": 10, + "startRow": 10, + "endRow": 11 + }, + { + "id": 84, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4224 + }, + "angle": 0.01175, + "vertices": { + "#": 4225 + }, + "position": { + "#": 4248 + }, + "force": { + "#": 4249 + }, + "torque": 0, + "positionImpulse": { + "#": 4250 + }, + "constraintImpulse": { + "#": 4251 + }, + "totalContacts": 0, + "speed": 0.46724, + "angularSpeed": 0.01139, + "velocity": { + "#": 4252 + }, + "angularVelocity": 0.01295, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4253 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4254 + }, + "circleRadius": 20.16995, + "bounds": { + "#": 4256 + }, + "positionPrev": { + "#": 4259 + }, + "anglePrev": -0.00228, + "axes": { + "#": 4260 + }, + "area": 1260.79066, + "mass": 1.26079, + "inverseMass": 0.79315, + "inertia": 1012.00416, + "inverseInertia": 0.00099, + "parent": { + "#": 4223 + }, + "sleepCounter": 0, + "region": { + "#": 4272 + } + }, + [ + { + "#": 4223 + } + ], + [ + { + "#": 4226 + }, + { + "#": 4227 + }, + { + "#": 4228 + }, + { + "#": 4229 + }, + { + "#": 4230 + }, + { + "#": 4231 + }, + { + "#": 4232 + }, + { + "#": 4233 + }, + { + "#": 4234 + }, + { + "#": 4235 + }, + { + "#": 4236 + }, + { + "#": 4237 + }, + { + "#": 4238 + }, + { + "#": 4239 + }, + { + "#": 4240 + }, + { + "#": 4241 + }, + { + "#": 4242 + }, + { + "#": 4243 + }, + { + "#": 4244 + }, + { + "#": 4245 + }, + { + "#": 4246 + }, + { + "#": 4247 + } + ], + { + "x": 566.12175, + "y": 562.89366, + "index": 0, + "body": { + "#": 4223 + }, + "isInternal": false + }, + { + "x": 564.43913, + "y": 568.38327, + "index": 1, + "body": { + "#": 4223 + }, + "isInternal": false + }, + { + "x": 561.2786, + "y": 573.17646, + "index": 2, + "body": { + "#": 4223 + }, + "isInternal": false + }, + { + "x": 556.89673, + "y": 576.88423, + "index": 3, + "body": { + "#": 4223 + }, + "isInternal": false + }, + { + "x": 551.64706, + "y": 579.20771, + "index": 4, + "body": { + "#": 4223 + }, + "isInternal": false + }, + { + "x": 545.95486, + "y": 579.95788, + "index": 5, + "body": { + "#": 4223 + }, + "isInternal": false + }, + { + "x": 540.28185, + "y": 579.07416, + "index": 6, + "body": { + "#": 4223 + }, + "isInternal": false + }, + { + "x": 535.08823, + "y": 576.62797, + "index": 7, + "body": { + "#": 4223 + }, + "isInternal": false + }, + { + "x": 530.7947, + "y": 572.81826, + "index": 8, + "body": { + "#": 4223 + }, + "isInternal": false + }, + { + "x": 527.74767, + "y": 567.95212, + "index": 9, + "body": { + "#": 4223 + }, + "isInternal": false + }, + { + "x": 526.19451, + "y": 562.42449, + "index": 10, + "body": { + "#": 4223 + }, + "isInternal": false + }, + { + "x": 526.26195, + "y": 556.68488, + "index": 11, + "body": { + "#": 4223 + }, + "isInternal": false + }, + { + "x": 527.94457, + "y": 551.19527, + "index": 12, + "body": { + "#": 4223 + }, + "isInternal": false + }, + { + "x": 531.10511, + "y": 546.40208, + "index": 13, + "body": { + "#": 4223 + }, + "isInternal": false + }, + { + "x": 535.48697, + "y": 542.69431, + "index": 14, + "body": { + "#": 4223 + }, + "isInternal": false + }, + { + "x": 540.73664, + "y": 540.37083, + "index": 15, + "body": { + "#": 4223 + }, + "isInternal": false + }, + { + "x": 546.42884, + "y": 539.62066, + "index": 16, + "body": { + "#": 4223 + }, + "isInternal": false + }, + { + "x": 552.10185, + "y": 540.50438, + "index": 17, + "body": { + "#": 4223 + }, + "isInternal": false + }, + { + "x": 557.29547, + "y": 542.95057, + "index": 18, + "body": { + "#": 4223 + }, + "isInternal": false + }, + { + "x": 561.589, + "y": 546.76028, + "index": 19, + "body": { + "#": 4223 + }, + "isInternal": false + }, + { + "x": 564.63604, + "y": 551.62642, + "index": 20, + "body": { + "#": 4223 + }, + "isInternal": false + }, + { + "x": 566.18919, + "y": 557.15405, + "index": 21, + "body": { + "#": 4223 + }, + "isInternal": false + }, + { + "x": 546.19185, + "y": 559.78927 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.14881, + "y": -0.18311 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.4512, + "y": -0.06898 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4255 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4257 + }, + "max": { + "#": 4258 + } + }, + { + "x": 526.19451, + "y": 539.62066 + }, + { + "x": 566.57814, + "y": 580.21679 + }, + { + "x": 545.78488, + "y": 559.74298 + }, + [ + { + "#": 4261 + }, + { + "#": 4262 + }, + { + "#": 4263 + }, + { + "#": 4264 + }, + { + "#": 4265 + }, + { + "#": 4266 + }, + { + "#": 4267 + }, + { + "#": 4268 + }, + { + "#": 4269 + }, + { + "#": 4270 + }, + { + "#": 4271 + } + ], + { + "x": -0.9561, + "y": -0.29305 + }, + { + "x": -0.83485, + "y": -0.55048 + }, + { + "x": -0.64595, + "y": -0.76338 + }, + { + "x": -0.40473, + "y": -0.91444 + }, + { + "x": -0.13066, + "y": -0.99143 + }, + { + "x": 0.15392, + "y": -0.98808 + }, + { + "x": 0.4261, + "y": -0.90468 + }, + { + "x": 0.66371, + "y": -0.74799 + }, + { + "x": 0.84755, + "y": -0.53071 + }, + { + "x": 0.96272, + "y": -0.27051 + }, + { + "x": 0.99993, + "y": 0.01175 + }, + { + "id": "10,11,11,12", + "startCol": 10, + "endCol": 11, + "startRow": 11, + "endRow": 12 + }, + { + "id": 85, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4274 + }, + "angle": 0, + "vertices": { + "#": 4275 + }, + "position": { + "#": 4298 + }, + "force": { + "#": 4299 + }, + "torque": 0, + "positionImpulse": { + "#": 4300 + }, + "constraintImpulse": { + "#": 4301 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4302 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4303 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4304 + }, + "circleRadius": 20.27887, + "bounds": { + "#": 4306 + }, + "positionPrev": { + "#": 4309 + }, + "anglePrev": 0, + "axes": { + "#": 4310 + }, + "area": 1274.42431, + "mass": 1.27442, + "inverseMass": 0.78467, + "inertia": 1034.00926, + "inverseInertia": 0.00097, + "parent": { + "#": 4273 + }, + "sleepCounter": 0, + "region": { + "#": 4322 + } + }, + [ + { + "#": 4273 + } + ], + [ + { + "#": 4276 + }, + { + "#": 4277 + }, + { + "#": 4278 + }, + { + "#": 4279 + }, + { + "#": 4280 + }, + { + "#": 4281 + }, + { + "#": 4282 + }, + { + "#": 4283 + }, + { + "#": 4284 + }, + { + "#": 4285 + }, + { + "#": 4286 + }, + { + "#": 4287 + }, + { + "#": 4288 + }, + { + "#": 4289 + }, + { + "#": 4290 + }, + { + "#": 4291 + }, + { + "#": 4292 + }, + { + "#": 4293 + }, + { + "#": 4294 + }, + { + "#": 4295 + }, + { + "#": 4296 + }, + { + "#": 4297 + } + ], + { + "x": 126.62935, + "y": 713.8514, + "index": 0, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 125.00335, + "y": 719.3894, + "index": 1, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 121.88335, + "y": 724.2454, + "index": 2, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 117.52135, + "y": 728.0254, + "index": 3, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 112.27035, + "y": 730.4224, + "index": 4, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 106.55735, + "y": 731.2444, + "index": 5, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 100.84435, + "y": 730.4224, + "index": 6, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 95.59335, + "y": 728.0254, + "index": 7, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 91.23135, + "y": 724.2454, + "index": 8, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 88.11135, + "y": 719.3894, + "index": 9, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 86.48535, + "y": 713.8514, + "index": 10, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 86.48535, + "y": 708.0794, + "index": 11, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 88.11135, + "y": 702.5414, + "index": 12, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 91.23135, + "y": 697.6854, + "index": 13, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 95.59335, + "y": 693.9054, + "index": 14, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 100.84435, + "y": 691.5084, + "index": 15, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 106.55735, + "y": 690.6864, + "index": 16, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 112.27035, + "y": 691.5084, + "index": 17, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 117.52135, + "y": 693.9054, + "index": 18, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 121.88335, + "y": 697.6854, + "index": 19, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 125.00335, + "y": 702.5414, + "index": 20, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 126.62935, + "y": 708.0794, + "index": 21, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 106.55735, + "y": 710.9654 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.42865, + "y": 0.80841 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4305 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4307 + }, + "max": { + "#": 4308 + } + }, + { + "x": 86.48535, + "y": 690.6864 + }, + { + "x": 126.62935, + "y": 734.15167 + }, + { + "x": 106.55735, + "y": 708.05813 + }, + [ + { + "#": 4311 + }, + { + "#": 4312 + }, + { + "#": 4313 + }, + { + "#": 4314 + }, + { + "#": 4315 + }, + { + "#": 4316 + }, + { + "#": 4317 + }, + { + "#": 4318 + }, + { + "#": 4319 + }, + { + "#": 4320 + }, + { + "#": 4321 + } + ], + { + "x": -0.9595, + "y": -0.28172 + }, + { + "x": -0.84131, + "y": -0.54055 + }, + { + "x": -0.65489, + "y": -0.75572 + }, + { + "x": -0.41526, + "y": -0.9097 + }, + { + "x": -0.14242, + "y": -0.98981 + }, + { + "x": 0.14242, + "y": -0.98981 + }, + { + "x": 0.41526, + "y": -0.9097 + }, + { + "x": 0.65489, + "y": -0.75572 + }, + { + "x": 0.84131, + "y": -0.54055 + }, + { + "x": 0.9595, + "y": -0.28172 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "1,2,14,15", + "startCol": 1, + "endCol": 2, + "startRow": 14, + "endRow": 15 + }, + { + "id": 86, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4324 + }, + "angle": -0.00078, + "vertices": { + "#": 4325 + }, + "position": { + "#": 4348 + }, + "force": { + "#": 4349 + }, + "torque": 0, + "positionImpulse": { + "#": 4350 + }, + "constraintImpulse": { + "#": 4351 + }, + "totalContacts": 0, + "speed": 2.89144, + "angularSpeed": 0.00042, + "velocity": { + "#": 4352 + }, + "angularVelocity": -0.00042, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4353 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4354 + }, + "circleRadius": 20.74273, + "bounds": { + "#": 4356 + }, + "positionPrev": { + "#": 4359 + }, + "anglePrev": -0.00036, + "axes": { + "#": 4360 + }, + "area": 1333.4219, + "mass": 1.33342, + "inverseMass": 0.74995, + "inertia": 1131.96109, + "inverseInertia": 0.00088, + "parent": { + "#": 4323 + }, + "sleepCounter": 0, + "region": { + "#": 4372 + } + }, + [ + { + "#": 4323 + } + ], + [ + { + "#": 4326 + }, + { + "#": 4327 + }, + { + "#": 4328 + }, + { + "#": 4329 + }, + { + "#": 4330 + }, + { + "#": 4331 + }, + { + "#": 4332 + }, + { + "#": 4333 + }, + { + "#": 4334 + }, + { + "#": 4335 + }, + { + "#": 4336 + }, + { + "#": 4337 + }, + { + "#": 4338 + }, + { + "#": 4339 + }, + { + "#": 4340 + }, + { + "#": 4341 + }, + { + "#": 4342 + }, + { + "#": 4343 + }, + { + "#": 4344 + }, + { + "#": 4345 + }, + { + "#": 4346 + }, + { + "#": 4347 + } + ], + { + "x": 184.68843, + "y": 711.04939, + "index": 0, + "body": { + "#": 4323 + }, + "isInternal": false + }, + { + "x": 183.02888, + "y": 716.7157, + "index": 1, + "body": { + "#": 4323 + }, + "isInternal": false + }, + { + "x": 179.84078, + "y": 721.6852, + "index": 2, + "body": { + "#": 4323 + }, + "isInternal": false + }, + { + "x": 175.38181, + "y": 725.5547, + "index": 3, + "body": { + "#": 4323 + }, + "isInternal": false + }, + { + "x": 170.01374, + "y": 728.01191, + "index": 4, + "body": { + "#": 4323 + }, + "isInternal": false + }, + { + "x": 164.1704, + "y": 728.8565, + "index": 5, + "body": { + "#": 4323 + }, + "isInternal": false + }, + { + "x": 158.32574, + "y": 728.02109, + "index": 6, + "body": { + "#": 4323 + }, + "isInternal": false + }, + { + "x": 152.95382, + "y": 725.5723, + "index": 7, + "body": { + "#": 4323 + }, + "isInternal": false + }, + { + "x": 148.48879, + "y": 721.7098, + "index": 8, + "body": { + "#": 4323 + }, + "isInternal": false + }, + { + "x": 145.29289, + "y": 716.74531, + "index": 9, + "body": { + "#": 4323 + }, + "isInternal": false + }, + { + "x": 143.62445, + "y": 711.08162, + "index": 10, + "body": { + "#": 4323 + }, + "isInternal": false + }, + { + "x": 143.61981, + "y": 705.17762, + "index": 11, + "body": { + "#": 4323 + }, + "isInternal": false + }, + { + "x": 145.27937, + "y": 699.51132, + "index": 12, + "body": { + "#": 4323 + }, + "isInternal": false + }, + { + "x": 148.46747, + "y": 694.54181, + "index": 13, + "body": { + "#": 4323 + }, + "isInternal": false + }, + { + "x": 152.92643, + "y": 690.67231, + "index": 14, + "body": { + "#": 4323 + }, + "isInternal": false + }, + { + "x": 158.29451, + "y": 688.2151, + "index": 15, + "body": { + "#": 4323 + }, + "isInternal": false + }, + { + "x": 164.13784, + "y": 687.37051, + "index": 16, + "body": { + "#": 4323 + }, + "isInternal": false + }, + { + "x": 169.9825, + "y": 688.20593, + "index": 17, + "body": { + "#": 4323 + }, + "isInternal": false + }, + { + "x": 175.35443, + "y": 690.65471, + "index": 18, + "body": { + "#": 4323 + }, + "isInternal": false + }, + { + "x": 179.81946, + "y": 694.51721, + "index": 19, + "body": { + "#": 4323 + }, + "isInternal": false + }, + { + "x": 183.01536, + "y": 699.4817, + "index": 20, + "body": { + "#": 4323 + }, + "isInternal": false + }, + { + "x": 184.6838, + "y": 705.1454, + "index": 21, + "body": { + "#": 4323 + }, + "isInternal": false + }, + { + "x": 164.15412, + "y": 708.11351 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.19485, + "y": 0.52011 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01175, + "y": 2.89141 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4355 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4357 + }, + "max": { + "#": 4358 + } + }, + { + "x": 143.60807, + "y": 687.37051 + }, + { + "x": 184.68843, + "y": 731.74791 + }, + { + "x": 164.16587, + "y": 705.2221 + }, + [ + { + "#": 4361 + }, + { + "#": 4362 + }, + { + "#": 4363 + }, + { + "#": 4364 + }, + { + "#": 4365 + }, + { + "#": 4366 + }, + { + "#": 4367 + }, + { + "#": 4368 + }, + { + "#": 4369 + }, + { + "#": 4370 + }, + { + "#": 4371 + } + ], + { + "x": -0.95969, + "y": -0.28107 + }, + { + "x": -0.84169, + "y": -0.53997 + }, + { + "x": -0.65542, + "y": -0.75526 + }, + { + "x": -0.41621, + "y": -0.90927 + }, + { + "x": -0.14305, + "y": -0.98972 + }, + { + "x": 0.1415, + "y": -0.98994 + }, + { + "x": 0.41479, + "y": -0.90992 + }, + { + "x": 0.65423, + "y": -0.75629 + }, + { + "x": 0.84084, + "y": -0.54129 + }, + { + "x": 0.95924, + "y": -0.28258 + }, + { + "x": 1, + "y": -0.00078 + }, + { + "id": "2,3,14,15", + "startCol": 2, + "endCol": 3, + "startRow": 14, + "endRow": 15 + }, + { + "id": 87, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4374 + }, + "angle": -0.01005, + "vertices": { + "#": 4375 + }, + "position": { + "#": 4402 + }, + "force": { + "#": 4403 + }, + "torque": 0, + "positionImpulse": { + "#": 4404 + }, + "constraintImpulse": { + "#": 4405 + }, + "totalContacts": 0, + "speed": 2.91238, + "angularSpeed": 0.00117, + "velocity": { + "#": 4406 + }, + "angularVelocity": -0.00117, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4407 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4408 + }, + "circleRadius": 24.5245, + "bounds": { + "#": 4410 + }, + "positionPrev": { + "#": 4413 + }, + "anglePrev": -0.00889, + "axes": { + "#": 4414 + }, + "area": 1871.18792, + "mass": 1.87119, + "inverseMass": 0.53442, + "inertia": 2229.06749, + "inverseInertia": 0.00045, + "parent": { + "#": 4373 + }, + "sleepCounter": 0, + "region": { + "#": 4428 + } + }, + [ + { + "#": 4373 + } + ], + [ + { + "#": 4376 + }, + { + "#": 4377 + }, + { + "#": 4378 + }, + { + "#": 4379 + }, + { + "#": 4380 + }, + { + "#": 4381 + }, + { + "#": 4382 + }, + { + "#": 4383 + }, + { + "#": 4384 + }, + { + "#": 4385 + }, + { + "#": 4386 + }, + { + "#": 4387 + }, + { + "#": 4388 + }, + { + "#": 4389 + }, + { + "#": 4390 + }, + { + "#": 4391 + }, + { + "#": 4392 + }, + { + "#": 4393 + }, + { + "#": 4394 + }, + { + "#": 4395 + }, + { + "#": 4396 + }, + { + "#": 4397 + }, + { + "#": 4398 + }, + { + "#": 4399 + }, + { + "#": 4400 + }, + { + "#": 4401 + } + ], + { + "x": 234.06916, + "y": 705.0117, + "index": 0, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 232.71194, + "y": 710.76664, + "index": 1, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 230.01671, + "y": 716.029, + "index": 2, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 226.14138, + "y": 720.49318, + "index": 3, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 221.30938, + "y": 723.89992, + "index": 4, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 215.80274, + "y": 726.05238, + "index": 5, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 209.9412, + "y": 726.82334, + "index": 6, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 204.06534, + "y": 726.17037, + "index": 7, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 198.51654, + "y": 724.12905, + "index": 8, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 193.61703, + "y": 720.82013, + "index": 9, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 189.65274, + "y": 716.43476, + "index": 10, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 186.85226, + "y": 711.22765, + "index": 11, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 185.37962, + "y": 705.50116, + "index": 12, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 185.32019, + "y": 699.58946, + "index": 13, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 186.67741, + "y": 693.83453, + "index": 14, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 189.37265, + "y": 688.57217, + "index": 15, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 193.24797, + "y": 684.10799, + "index": 16, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 198.07997, + "y": 680.70124, + "index": 17, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 203.58661, + "y": 678.54878, + "index": 18, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 209.44816, + "y": 677.77782, + "index": 19, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 215.32402, + "y": 678.43079, + "index": 20, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 220.87282, + "y": 680.47212, + "index": 21, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 225.77233, + "y": 683.78103, + "index": 22, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 229.73661, + "y": 688.1664, + "index": 23, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 232.5371, + "y": 693.37352, + "index": 24, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 234.00973, + "y": 699.1, + "index": 25, + "body": { + "#": 4373 + }, + "isInternal": false + }, + { + "x": 209.69468, + "y": 702.30058 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.07201, + "y": 0.62308 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01243, + "y": 2.91235 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4409 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4411 + }, + "max": { + "#": 4412 + } + }, + { + "x": 185.30777, + "y": 677.77782 + }, + { + "x": 234.06916, + "y": 729.73569 + }, + { + "x": 209.70711, + "y": 699.38823 + }, + [ + { + "#": 4415 + }, + { + "#": 4416 + }, + { + "#": 4417 + }, + { + "#": 4418 + }, + { + "#": 4419 + }, + { + "#": 4420 + }, + { + "#": 4421 + }, + { + "#": 4422 + }, + { + "#": 4423 + }, + { + "#": 4424 + }, + { + "#": 4425 + }, + { + "#": 4426 + }, + { + "#": 4427 + } + ], + { + "x": -0.9733, + "y": -0.22954 + }, + { + "x": -0.89005, + "y": -0.45586 + }, + { + "x": -0.75516, + "y": -0.65555 + }, + { + "x": -0.57622, + "y": -0.81729 + }, + { + "x": -0.36406, + "y": -0.93138 + }, + { + "x": -0.13041, + "y": -0.99146 + }, + { + "x": 0.11045, + "y": -0.99388 + }, + { + "x": 0.34526, + "y": -0.93851 + }, + { + "x": 0.55968, + "y": -0.82871 + }, + { + "x": 0.74182, + "y": -0.67059 + }, + { + "x": 0.88071, + "y": -0.47366 + }, + { + "x": 0.96849, + "y": -0.24906 + }, + { + "x": 0.99995, + "y": -0.01005 + }, + { + "id": "3,4,14,15", + "startCol": 3, + "endCol": 4, + "startRow": 14, + "endRow": 15 + }, + { + "id": 88, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4430 + }, + "angle": 0, + "vertices": { + "#": 4431 + }, + "position": { + "#": 4458 + }, + "force": { + "#": 4459 + }, + "torque": 0, + "positionImpulse": { + "#": 4460 + }, + "constraintImpulse": { + "#": 4461 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4462 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4463 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4464 + }, + "circleRadius": 27.3649, + "bounds": { + "#": 4466 + }, + "positionPrev": { + "#": 4469 + }, + "anglePrev": 0, + "axes": { + "#": 4470 + }, + "area": 2329.70936, + "mass": 2.32971, + "inverseMass": 0.42924, + "inertia": 3455.34885, + "inverseInertia": 0.00029, + "parent": { + "#": 4429 + }, + "sleepCounter": 0, + "region": { + "#": 4484 + } + }, + [ + { + "#": 4429 + } + ], + [ + { + "#": 4432 + }, + { + "#": 4433 + }, + { + "#": 4434 + }, + { + "#": 4435 + }, + { + "#": 4436 + }, + { + "#": 4437 + }, + { + "#": 4438 + }, + { + "#": 4439 + }, + { + "#": 4440 + }, + { + "#": 4441 + }, + { + "#": 4442 + }, + { + "#": 4443 + }, + { + "#": 4444 + }, + { + "#": 4445 + }, + { + "#": 4446 + }, + { + "#": 4447 + }, + { + "#": 4448 + }, + { + "#": 4449 + }, + { + "#": 4450 + }, + { + "#": 4451 + }, + { + "#": 4452 + }, + { + "#": 4453 + }, + { + "#": 4454 + }, + { + "#": 4455 + }, + { + "#": 4456 + }, + { + "#": 4457 + } + ], + { + "x": 301.90773, + "y": 696.79005, + "index": 0, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 300.32973, + "y": 703.19605, + "index": 1, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 297.26373, + "y": 709.03705, + "index": 2, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 292.88873, + "y": 713.97505, + "index": 3, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 287.45973, + "y": 717.72205, + "index": 4, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 281.29173, + "y": 720.06205, + "index": 5, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 274.74273, + "y": 720.85705, + "index": 6, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 268.19373, + "y": 720.06205, + "index": 7, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 262.02573, + "y": 717.72205, + "index": 8, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 256.59673, + "y": 713.97505, + "index": 9, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 252.22173, + "y": 709.03705, + "index": 10, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 249.15573, + "y": 703.19605, + "index": 11, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 247.57773, + "y": 696.79005, + "index": 12, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 247.57773, + "y": 690.19405, + "index": 13, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 249.15573, + "y": 683.78805, + "index": 14, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 252.22173, + "y": 677.94705, + "index": 15, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 256.59673, + "y": 673.00905, + "index": 16, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 262.02573, + "y": 669.26205, + "index": 17, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 268.19373, + "y": 666.92205, + "index": 18, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 274.74273, + "y": 666.12705, + "index": 19, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 281.29173, + "y": 666.92205, + "index": 20, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 287.45973, + "y": 669.26205, + "index": 21, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 292.88873, + "y": 673.00905, + "index": 22, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 297.26373, + "y": 677.94705, + "index": 23, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 300.32973, + "y": 683.78805, + "index": 24, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 301.90773, + "y": 690.19405, + "index": 25, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 274.74273, + "y": 693.49205 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.29645, + "y": 0.44433 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4465 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4467 + }, + "max": { + "#": 4468 + } + }, + { + "x": 247.57773, + "y": 666.12705 + }, + { + "x": 301.90773, + "y": 723.76432 + }, + { + "x": 274.74273, + "y": 690.58478 + }, + [ + { + "#": 4471 + }, + { + "#": 4472 + }, + { + "#": 4473 + }, + { + "#": 4474 + }, + { + "#": 4475 + }, + { + "#": 4476 + }, + { + "#": 4477 + }, + { + "#": 4478 + }, + { + "#": 4479 + }, + { + "#": 4480 + }, + { + "#": 4481 + }, + { + "#": 4482 + }, + { + "#": 4483 + } + ], + { + "x": -0.97097, + "y": -0.23918 + }, + { + "x": -0.88543, + "y": -0.46477 + }, + { + "x": -0.74849, + "y": -0.66315 + }, + { + "x": -0.56803, + "y": -0.82301 + }, + { + "x": -0.35471, + "y": -0.93498 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35471, + "y": -0.93498 + }, + { + "x": 0.56803, + "y": -0.82301 + }, + { + "x": 0.74849, + "y": -0.66315 + }, + { + "x": 0.88543, + "y": -0.46477 + }, + { + "x": 0.97097, + "y": -0.23918 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,13,15", + "startCol": 5, + "endCol": 6, + "startRow": 13, + "endRow": 15 + }, + { + "id": 89, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4486 + }, + "angle": -0.00005, + "vertices": { + "#": 4487 + }, + "position": { + "#": 4508 + }, + "force": { + "#": 4509 + }, + "torque": 0, + "positionImpulse": { + "#": 4510 + }, + "constraintImpulse": { + "#": 4511 + }, + "totalContacts": 0, + "speed": 2.90517, + "angularSpeed": 0, + "velocity": { + "#": 4512 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4513 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4514 + }, + "circleRadius": 19.44914, + "bounds": { + "#": 4516 + }, + "positionPrev": { + "#": 4519 + }, + "anglePrev": -0.00005, + "axes": { + "#": 4520 + }, + "area": 1168.93972, + "mass": 1.16894, + "inverseMass": 0.85548, + "inertia": 869.93767, + "inverseInertia": 0.00115, + "parent": { + "#": 4485 + }, + "sleepCounter": 0, + "region": { + "#": 4531 + } + }, + [ + { + "#": 4485 + } + ], + [ + { + "#": 4488 + }, + { + "#": 4489 + }, + { + "#": 4490 + }, + { + "#": 4491 + }, + { + "#": 4492 + }, + { + "#": 4493 + }, + { + "#": 4494 + }, + { + "#": 4495 + }, + { + "#": 4496 + }, + { + "#": 4497 + }, + { + "#": 4498 + }, + { + "#": 4499 + }, + { + "#": 4500 + }, + { + "#": 4501 + }, + { + "#": 4502 + }, + { + "#": 4503 + }, + { + "#": 4504 + }, + { + "#": 4505 + }, + { + "#": 4506 + }, + { + "#": 4507 + } + ], + { + "x": 344.46854, + "y": 728.02659, + "index": 0, + "body": { + "#": 4485 + }, + "isInternal": false + }, + { + "x": 342.58783, + "y": 733.81368, + "index": 1, + "body": { + "#": 4485 + }, + "isInternal": false + }, + { + "x": 339.01207, + "y": 738.73686, + "index": 2, + "body": { + "#": 4485 + }, + "isInternal": false + }, + { + "x": 334.08925, + "y": 742.31311, + "index": 3, + "body": { + "#": 4485 + }, + "isInternal": false + }, + { + "x": 328.30235, + "y": 744.19439, + "index": 4, + "body": { + "#": 4485 + }, + "isInternal": false + }, + { + "x": 322.21635, + "y": 744.1947, + "index": 5, + "body": { + "#": 4485 + }, + "isInternal": false + }, + { + "x": 316.42925, + "y": 742.31399, + "index": 6, + "body": { + "#": 4485 + }, + "isInternal": false + }, + { + "x": 311.50607, + "y": 738.73823, + "index": 7, + "body": { + "#": 4485 + }, + "isInternal": false + }, + { + "x": 307.92983, + "y": 733.81541, + "index": 8, + "body": { + "#": 4485 + }, + "isInternal": false + }, + { + "x": 306.04854, + "y": 728.0285, + "index": 9, + "body": { + "#": 4485 + }, + "isInternal": false + }, + { + "x": 306.04824, + "y": 721.9425, + "index": 10, + "body": { + "#": 4485 + }, + "isInternal": false + }, + { + "x": 307.92895, + "y": 716.15541, + "index": 11, + "body": { + "#": 4485 + }, + "isInternal": false + }, + { + "x": 311.5047, + "y": 711.23223, + "index": 12, + "body": { + "#": 4485 + }, + "isInternal": false + }, + { + "x": 316.42752, + "y": 707.65599, + "index": 13, + "body": { + "#": 4485 + }, + "isInternal": false + }, + { + "x": 322.21443, + "y": 705.7747, + "index": 14, + "body": { + "#": 4485 + }, + "isInternal": false + }, + { + "x": 328.30043, + "y": 705.77439, + "index": 15, + "body": { + "#": 4485 + }, + "isInternal": false + }, + { + "x": 334.08752, + "y": 707.65511, + "index": 16, + "body": { + "#": 4485 + }, + "isInternal": false + }, + { + "x": 339.0107, + "y": 711.23086, + "index": 17, + "body": { + "#": 4485 + }, + "isInternal": false + }, + { + "x": 342.58695, + "y": 716.15368, + "index": 18, + "body": { + "#": 4485 + }, + "isInternal": false + }, + { + "x": 344.46824, + "y": 721.94059, + "index": 19, + "body": { + "#": 4485 + }, + "isInternal": false + }, + { + "x": 325.25839, + "y": 724.98455 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.20162, + "y": 0.63315 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00056, + "y": 2.90517 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4515 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4517 + }, + "max": { + "#": 4518 + } + }, + { + "x": 306.04768, + "y": 705.77439 + }, + { + "x": 344.46854, + "y": 747.09987 + }, + { + "x": 325.25894, + "y": 722.07938 + }, + [ + { + "#": 4521 + }, + { + "#": 4522 + }, + { + "#": 4523 + }, + { + "#": 4524 + }, + { + "#": 4525 + }, + { + "#": 4526 + }, + { + "#": 4527 + }, + { + "#": 4528 + }, + { + "#": 4529 + }, + { + "#": 4530 + } + ], + { + "x": -0.95104, + "y": -0.30907 + }, + { + "x": -0.80911, + "y": -0.58766 + }, + { + "x": -0.58774, + "y": -0.80905 + }, + { + "x": -0.30917, + "y": -0.95101 + }, + { + "x": -0.00005, + "y": -1 + }, + { + "x": 0.30907, + "y": -0.95104 + }, + { + "x": 0.58766, + "y": -0.80911 + }, + { + "x": 0.80905, + "y": -0.58774 + }, + { + "x": 0.95101, + "y": -0.30917 + }, + { + "x": 1, + "y": -0.00005 + }, + { + "id": "6,7,14,15", + "startCol": 6, + "endCol": 7, + "startRow": 14, + "endRow": 15 + }, + { + "id": 90, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4533 + }, + "angle": 0.00693, + "vertices": { + "#": 4534 + }, + "position": { + "#": 4561 + }, + "force": { + "#": 4562 + }, + "torque": 0, + "positionImpulse": { + "#": 4563 + }, + "constraintImpulse": { + "#": 4564 + }, + "totalContacts": 0, + "speed": 2.89312, + "angularSpeed": 0.00056, + "velocity": { + "#": 4565 + }, + "angularVelocity": 0.00056, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4566 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4567 + }, + "circleRadius": 27.0735, + "bounds": { + "#": 4569 + }, + "positionPrev": { + "#": 4572 + }, + "anglePrev": 0.00637, + "axes": { + "#": 4573 + }, + "area": 2280.33518, + "mass": 2.28034, + "inverseMass": 0.43853, + "inertia": 3310.44048, + "inverseInertia": 0.0003, + "parent": { + "#": 4532 + }, + "sleepCounter": 0, + "region": { + "#": 4587 + } + }, + [ + { + "#": 4532 + } + ], + [ + { + "#": 4535 + }, + { + "#": 4536 + }, + { + "#": 4537 + }, + { + "#": 4538 + }, + { + "#": 4539 + }, + { + "#": 4540 + }, + { + "#": 4541 + }, + { + "#": 4542 + }, + { + "#": 4543 + }, + { + "#": 4544 + }, + { + "#": 4545 + }, + { + "#": 4546 + }, + { + "#": 4547 + }, + { + "#": 4548 + }, + { + "#": 4549 + }, + { + "#": 4550 + }, + { + "#": 4551 + }, + { + "#": 4552 + }, + { + "#": 4553 + }, + { + "#": 4554 + }, + { + "#": 4555 + }, + { + "#": 4556 + }, + { + "#": 4557 + }, + { + "#": 4558 + }, + { + "#": 4559 + }, + { + "#": 4560 + } + ], + { + "x": 394.09074, + "y": 700.57497, + "index": 0, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 392.48489, + "y": 706.901, + "index": 1, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 389.41193, + "y": 712.65885, + "index": 2, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 385.05019, + "y": 717.51475, + "index": 3, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 379.65364, + "y": 721.18446, + "index": 4, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 373.53475, + "y": 723.45713, + "index": 5, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 367.05046, + "y": 724.19823, + "index": 6, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 360.57706, + "y": 723.36738, + "index": 7, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 354.49025, + "y": 721.01016, + "index": 8, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 349.14505, + "y": 717.26604, + "index": 9, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 344.851, + "y": 712.35018, + "index": 10, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 341.8581, + "y": 706.55031, + "index": 11, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 340.34003, + "y": 700.20264, + "index": 12, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 340.38524, + "y": 693.6768, + "index": 13, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 341.9911, + "y": 687.35077, + "index": 14, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 345.06405, + "y": 681.59292, + "index": 15, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 349.42579, + "y": 676.73701, + "index": 16, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 354.82234, + "y": 673.06731, + "index": 17, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 360.94123, + "y": 670.79464, + "index": 18, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 367.42552, + "y": 670.05353, + "index": 19, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 373.89892, + "y": 670.88439, + "index": 20, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 379.98574, + "y": 673.24161, + "index": 21, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 385.33093, + "y": 676.98573, + "index": 22, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 389.62498, + "y": 681.90159, + "index": 23, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 392.61788, + "y": 687.70146, + "index": 24, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 394.13595, + "y": 694.04913, + "index": 25, + "body": { + "#": 4532 + }, + "isInternal": false + }, + { + "x": 367.23799, + "y": 697.12588 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.65393, + "y": 0.23651 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01911, + "y": 2.89306 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4568 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4570 + }, + "max": { + "#": 4571 + } + }, + { + "x": 340.34003, + "y": 670.05353 + }, + { + "x": 394.15506, + "y": 727.09129 + }, + { + "x": 367.21888, + "y": 694.23283 + }, + [ + { + "#": 4574 + }, + { + "#": 4575 + }, + { + "#": 4576 + }, + { + "#": 4577 + }, + { + "#": 4578 + }, + { + "#": 4579 + }, + { + "#": 4580 + }, + { + "#": 4581 + }, + { + "#": 4582 + }, + { + "#": 4583 + }, + { + "#": 4584 + }, + { + "#": 4585 + }, + { + "#": 4586 + } + ], + { + "x": -0.96926, + "y": -0.24605 + }, + { + "x": -0.88222, + "y": -0.47084 + }, + { + "x": -0.74395, + "y": -0.66824 + }, + { + "x": -0.56232, + "y": -0.82692 + }, + { + "x": -0.34818, + "y": -0.93743 + }, + { + "x": -0.11355, + "y": -0.99353 + }, + { + "x": 0.12731, + "y": -0.99186 + }, + { + "x": 0.36113, + "y": -0.93251 + }, + { + "x": 0.57372, + "y": -0.81905 + }, + { + "x": 0.75313, + "y": -0.65787 + }, + { + "x": 0.88866, + "y": -0.45857 + }, + { + "x": 0.97257, + "y": -0.23259 + }, + { + "x": 0.99998, + "y": 0.00693 + }, + { + "id": "7,8,13,15", + "startCol": 7, + "endCol": 8, + "startRow": 13, + "endRow": 15 + }, + { + "id": 91, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4589 + }, + "angle": -0.00011, + "vertices": { + "#": 4590 + }, + "position": { + "#": 4617 + }, + "force": { + "#": 4618 + }, + "torque": 0, + "positionImpulse": { + "#": 4619 + }, + "constraintImpulse": { + "#": 4620 + }, + "totalContacts": 0, + "speed": 2.92523, + "angularSpeed": 0.00004, + "velocity": { + "#": 4621 + }, + "angularVelocity": 0.00004, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4622 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4623 + }, + "circleRadius": 29.31205, + "bounds": { + "#": 4625 + }, + "positionPrev": { + "#": 4628 + }, + "anglePrev": -0.00015, + "axes": { + "#": 4629 + }, + "area": 2673.00735, + "mass": 2.67301, + "inverseMass": 0.37411, + "inertia": 4548.71486, + "inverseInertia": 0.00022, + "parent": { + "#": 4588 + }, + "sleepCounter": 0, + "region": { + "#": 4643 + } + }, + [ + { + "#": 4588 + } + ], + [ + { + "#": 4591 + }, + { + "#": 4592 + }, + { + "#": 4593 + }, + { + "#": 4594 + }, + { + "#": 4595 + }, + { + "#": 4596 + }, + { + "#": 4597 + }, + { + "#": 4598 + }, + { + "#": 4599 + }, + { + "#": 4600 + }, + { + "#": 4601 + }, + { + "#": 4602 + }, + { + "#": 4603 + }, + { + "#": 4604 + }, + { + "#": 4605 + }, + { + "#": 4606 + }, + { + "#": 4607 + }, + { + "#": 4608 + }, + { + "#": 4609 + }, + { + "#": 4610 + }, + { + "#": 4611 + }, + { + "#": 4612 + }, + { + "#": 4613 + }, + { + "#": 4614 + }, + { + "#": 4615 + }, + { + "#": 4616 + } + ], + { + "x": 494.64577, + "y": 721.61443, + "index": 0, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 492.95551, + "y": 728.47562, + "index": 1, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 489.67218, + "y": 734.73297, + "index": 2, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 484.98675, + "y": 740.02248, + "index": 3, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 479.17219, + "y": 744.0381, + "index": 4, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 472.56546, + "y": 746.54382, + "index": 5, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 465.55055, + "y": 747.39657, + "index": 6, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 458.53546, + "y": 746.54533, + "index": 7, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 451.92819, + "y": 744.04104, + "index": 8, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 446.11275, + "y": 740.02667, + "index": 9, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 441.42618, + "y": 734.73818, + "index": 10, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 438.14151, + "y": 728.48153, + "index": 11, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 436.44977, + "y": 721.62071, + "index": 12, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 436.449, + "y": 714.55471, + "index": 13, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 438.13926, + "y": 707.69353, + "index": 14, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 441.42259, + "y": 701.43618, + "index": 15, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 446.10802, + "y": 696.14667, + "index": 16, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 451.92258, + "y": 692.13104, + "index": 17, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 458.52931, + "y": 689.62533, + "index": 18, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 465.54422, + "y": 688.77257, + "index": 19, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 472.55931, + "y": 689.62382, + "index": 20, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 479.16658, + "y": 692.1281, + "index": 21, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 484.98202, + "y": 696.14248, + "index": 22, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 489.66859, + "y": 701.43097, + "index": 23, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 492.95326, + "y": 707.68762, + "index": 24, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 494.645, + "y": 714.54843, + "index": 25, + "body": { + "#": 4588 + }, + "isInternal": false + }, + { + "x": 465.54738, + "y": 718.08457 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.13019, + "y": 0.92721 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00032, + "y": 2.92523 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4624 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4626 + }, + "max": { + "#": 4627 + } + }, + { + "x": 436.449, + "y": 688.77257 + }, + { + "x": 494.64608, + "y": 750.32181 + }, + { + "x": 465.54707, + "y": 715.15934 + }, + [ + { + "#": 4630 + }, + { + "#": 4631 + }, + { + "#": 4632 + }, + { + "#": 4633 + }, + { + "#": 4634 + }, + { + "#": 4635 + }, + { + "#": 4636 + }, + { + "#": 4637 + }, + { + "#": 4638 + }, + { + "#": 4639 + }, + { + "#": 4640 + }, + { + "#": 4641 + }, + { + "#": 4642 + } + ], + { + "x": -0.97097, + "y": -0.2392 + }, + { + "x": -0.8855, + "y": -0.46464 + }, + { + "x": -0.74856, + "y": -0.66307 + }, + { + "x": -0.56827, + "y": -0.82284 + }, + { + "x": -0.35462, + "y": -0.93501 + }, + { + "x": -0.12068, + "y": -0.99269 + }, + { + "x": 0.12046, + "y": -0.99272 + }, + { + "x": 0.35442, + "y": -0.93509 + }, + { + "x": 0.56809, + "y": -0.82297 + }, + { + "x": 0.74841, + "y": -0.66323 + }, + { + "x": 0.8854, + "y": -0.46483 + }, + { + "x": 0.97092, + "y": -0.23941 + }, + { + "x": 1, + "y": -0.00011 + }, + { + "id": "9,10,14,15", + "startCol": 9, + "endCol": 10, + "startRow": 14, + "endRow": 15 + }, + { + "id": 92, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4645 + }, + "angle": 0.00582, + "vertices": { + "#": 4646 + }, + "position": { + "#": 4667 + }, + "force": { + "#": 4668 + }, + "torque": 0, + "positionImpulse": { + "#": 4669 + }, + "constraintImpulse": { + "#": 4670 + }, + "totalContacts": 0, + "speed": 2.88612, + "angularSpeed": 0.00122, + "velocity": { + "#": 4671 + }, + "angularVelocity": 0.00122, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4672 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4673 + }, + "circleRadius": 19.68332, + "bounds": { + "#": 4675 + }, + "positionPrev": { + "#": 4678 + }, + "anglePrev": 0.00459, + "axes": { + "#": 4679 + }, + "area": 1197.227, + "mass": 1.19723, + "inverseMass": 0.83526, + "inertia": 912.5505, + "inverseInertia": 0.0011, + "parent": { + "#": 4644 + }, + "sleepCounter": 0, + "region": { + "#": 4690 + } + }, + [ + { + "#": 4644 + } + ], + [ + { + "#": 4647 + }, + { + "#": 4648 + }, + { + "#": 4649 + }, + { + "#": 4650 + }, + { + "#": 4651 + }, + { + "#": 4652 + }, + { + "#": 4653 + }, + { + "#": 4654 + }, + { + "#": 4655 + }, + { + "#": 4656 + }, + { + "#": 4657 + }, + { + "#": 4658 + }, + { + "#": 4659 + }, + { + "#": 4660 + }, + { + "#": 4661 + }, + { + "#": 4662 + }, + { + "#": 4663 + }, + { + "#": 4664 + }, + { + "#": 4665 + }, + { + "#": 4666 + } + ], + { + "x": 532.03333, + "y": 706.12424, + "index": 0, + "body": { + "#": 4644 + }, + "isInternal": false + }, + { + "x": 530.09629, + "y": 711.97007, + "index": 1, + "body": { + "#": 4644 + }, + "isInternal": false + }, + { + "x": 526.44738, + "y": 716.93094, + "index": 2, + "body": { + "#": 4644 + }, + "isInternal": false + }, + { + "x": 521.44441, + "y": 720.5219, + "index": 3, + "body": { + "#": 4644 + }, + "isInternal": false + }, + { + "x": 515.57644, + "y": 722.3908, + "index": 4, + "body": { + "#": 4644 + }, + "isInternal": false + }, + { + "x": 509.41855, + "y": 722.35499, + "index": 5, + "body": { + "#": 4644 + }, + "isInternal": false + }, + { + "x": 503.57271, + "y": 720.41796, + "index": 6, + "body": { + "#": 4644 + }, + "isInternal": false + }, + { + "x": 498.61185, + "y": 716.76904, + "index": 7, + "body": { + "#": 4644 + }, + "isInternal": false + }, + { + "x": 495.02089, + "y": 711.76607, + "index": 8, + "body": { + "#": 4644 + }, + "isInternal": false + }, + { + "x": 493.15198, + "y": 705.89811, + "index": 9, + "body": { + "#": 4644 + }, + "isInternal": false + }, + { + "x": 493.1878, + "y": 699.74021, + "index": 10, + "body": { + "#": 4644 + }, + "isInternal": false + }, + { + "x": 495.12483, + "y": 693.89438, + "index": 11, + "body": { + "#": 4644 + }, + "isInternal": false + }, + { + "x": 498.77374, + "y": 688.93352, + "index": 12, + "body": { + "#": 4644 + }, + "isInternal": false + }, + { + "x": 503.77671, + "y": 685.34255, + "index": 13, + "body": { + "#": 4644 + }, + "isInternal": false + }, + { + "x": 509.64468, + "y": 683.47365, + "index": 14, + "body": { + "#": 4644 + }, + "isInternal": false + }, + { + "x": 515.80258, + "y": 683.50946, + "index": 15, + "body": { + "#": 4644 + }, + "isInternal": false + }, + { + "x": 521.64841, + "y": 685.44649, + "index": 16, + "body": { + "#": 4644 + }, + "isInternal": false + }, + { + "x": 526.60927, + "y": 689.09541, + "index": 17, + "body": { + "#": 4644 + }, + "isInternal": false + }, + { + "x": 530.20024, + "y": 694.09838, + "index": 18, + "body": { + "#": 4644 + }, + "isInternal": false + }, + { + "x": 532.06914, + "y": 699.96635, + "index": 19, + "body": { + "#": 4644 + }, + "isInternal": false + }, + { + "x": 512.61056, + "y": 702.93223 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.08865, + "y": 0.50845 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00991, + "y": 2.88611 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4674 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4676 + }, + "max": { + "#": 4677 + } + }, + { + "x": 493.14207, + "y": 683.47365 + }, + { + "x": 532.06914, + "y": 725.27691 + }, + { + "x": 512.62047, + "y": 700.04612 + }, + [ + { + "#": 4680 + }, + { + "#": 4681 + }, + { + "#": 4682 + }, + { + "#": 4683 + }, + { + "#": 4684 + }, + { + "#": 4685 + }, + { + "#": 4686 + }, + { + "#": 4687 + }, + { + "#": 4688 + }, + { + "#": 4689 + } + ], + { + "x": -0.94925, + "y": -0.31454 + }, + { + "x": -0.80556, + "y": -0.59252 + }, + { + "x": -0.58311, + "y": -0.81239 + }, + { + "x": -0.30347, + "y": -0.95284 + }, + { + "x": 0.00582, + "y": -0.99998 + }, + { + "x": 0.31454, + "y": -0.94925 + }, + { + "x": 0.59252, + "y": -0.80556 + }, + { + "x": 0.81239, + "y": -0.58311 + }, + { + "x": 0.95284, + "y": -0.30347 + }, + { + "x": 0.99998, + "y": 0.00582 + }, + { + "id": "10,11,14,15", + "startCol": 10, + "endCol": 11, + "startRow": 14, + "endRow": 15 + }, + { + "id": 93, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4692 + }, + "angle": -0.01455, + "vertices": { + "#": 4693 + }, + "position": { + "#": 4712 + }, + "force": { + "#": 4713 + }, + "torque": 0, + "positionImpulse": { + "#": 4714 + }, + "constraintImpulse": { + "#": 4715 + }, + "totalContacts": 0, + "speed": 2.91305, + "angularSpeed": 0.00189, + "velocity": { + "#": 4716 + }, + "angularVelocity": -0.00189, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4717 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4718 + }, + "circleRadius": 17.81694, + "bounds": { + "#": 4720 + }, + "positionPrev": { + "#": 4723 + }, + "anglePrev": -0.01265, + "axes": { + "#": 4724 + }, + "area": 977.14667, + "mass": 0.97715, + "inverseMass": 1.02339, + "inertia": 607.90538, + "inverseInertia": 0.00164, + "parent": { + "#": 4691 + }, + "sleepCounter": 0, + "region": { + "#": 4734 + } + }, + [ + { + "#": 4691 + } + ], + [ + { + "#": 4694 + }, + { + "#": 4695 + }, + { + "#": 4696 + }, + { + "#": 4697 + }, + { + "#": 4698 + }, + { + "#": 4699 + }, + { + "#": 4700 + }, + { + "#": 4701 + }, + { + "#": 4702 + }, + { + "#": 4703 + }, + { + "#": 4704 + }, + { + "#": 4705 + }, + { + "#": 4706 + }, + { + "#": 4707 + }, + { + "#": 4708 + }, + { + "#": 4709 + }, + { + "#": 4710 + }, + { + "#": 4711 + } + ], + { + "x": 573.36876, + "y": 698.0137, + "index": 0, + "body": { + "#": 4691 + }, + "isInternal": false + }, + { + "x": 571.33755, + "y": 703.85786, + "index": 1, + "body": { + "#": 4691 + }, + "isInternal": false + }, + { + "x": 567.42993, + "y": 708.65621, + "index": 2, + "body": { + "#": 4691 + }, + "isInternal": false + }, + { + "x": 562.11648, + "y": 711.82682, + "index": 3, + "body": { + "#": 4691 + }, + "isInternal": false + }, + { + "x": 556.03876, + "y": 712.99035, + "index": 4, + "body": { + "#": 4691 + }, + "isInternal": false + }, + { + "x": 549.92977, + "y": 712.0041, + "index": 5, + "body": { + "#": 4691 + }, + "isInternal": false + }, + { + "x": 544.52635, + "y": 708.98937, + "index": 6, + "body": { + "#": 4691 + }, + "isInternal": false + }, + { + "x": 540.48082, + "y": 704.30672, + "index": 7, + "body": { + "#": 4691 + }, + "isInternal": false + }, + { + "x": 538.28048, + "y": 698.52411, + "index": 8, + "body": { + "#": 4691 + }, + "isInternal": false + }, + { + "x": 538.19047, + "y": 692.33676, + "index": 9, + "body": { + "#": 4691 + }, + "isInternal": false + }, + { + "x": 540.22169, + "y": 686.4926, + "index": 10, + "body": { + "#": 4691 + }, + "isInternal": false + }, + { + "x": 544.12931, + "y": 681.69426, + "index": 11, + "body": { + "#": 4691 + }, + "isInternal": false + }, + { + "x": 549.44275, + "y": 678.52364, + "index": 12, + "body": { + "#": 4691 + }, + "isInternal": false + }, + { + "x": 555.52047, + "y": 677.36012, + "index": 13, + "body": { + "#": 4691 + }, + "isInternal": false + }, + { + "x": 561.62946, + "y": 678.34637, + "index": 14, + "body": { + "#": 4691 + }, + "isInternal": false + }, + { + "x": 567.03288, + "y": 681.36109, + "index": 15, + "body": { + "#": 4691 + }, + "isInternal": false + }, + { + "x": 571.07842, + "y": 686.04375, + "index": 16, + "body": { + "#": 4691 + }, + "isInternal": false + }, + { + "x": 573.27876, + "y": 691.82635, + "index": 17, + "body": { + "#": 4691 + }, + "isInternal": false + }, + { + "x": 555.77962, + "y": 695.17523 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01593, + "y": 2.91301 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4719 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4721 + }, + "max": { + "#": 4722 + } + }, + { + "x": 538.19047, + "y": 677.36012 + }, + { + "x": 573.36876, + "y": 712.99035 + }, + { + "x": 555.76369, + "y": 692.26222 + }, + [ + { + "#": 4725 + }, + { + "#": 4726 + }, + { + "#": 4727 + }, + { + "#": 4728 + }, + { + "#": 4729 + }, + { + "#": 4730 + }, + { + "#": 4731 + }, + { + "#": 4732 + }, + { + "#": 4733 + } + ], + { + "x": -0.94457, + "y": -0.3283 + }, + { + "x": -0.7754, + "y": -0.63147 + }, + { + "x": -0.51242, + "y": -0.85873 + }, + { + "x": -0.18803, + "y": -0.98216 + }, + { + "x": 0.15938, + "y": -0.98722 + }, + { + "x": 0.48723, + "y": -0.87328 + }, + { + "x": 0.75671, + "y": -0.65375 + }, + { + "x": 0.93463, + "y": -0.35563 + }, + { + "x": 0.99989, + "y": -0.01454 + }, + { + "id": "11,11,14,14", + "startCol": 11, + "endCol": 11, + "startRow": 14, + "endRow": 14 + }, + { + "id": 94, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4736 + }, + "angle": 0.01343, + "vertices": { + "#": 4737 + }, + "position": { + "#": 4756 + }, + "force": { + "#": 4757 + }, + "torque": 0, + "positionImpulse": { + "#": 4758 + }, + "constraintImpulse": { + "#": 4759 + }, + "totalContacts": 0, + "speed": 2.90748, + "angularSpeed": 0.00116, + "velocity": { + "#": 4760 + }, + "angularVelocity": 0.002, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4761 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4762 + }, + "circleRadius": 16.12031, + "bounds": { + "#": 4764 + }, + "positionPrev": { + "#": 4767 + }, + "anglePrev": 0.01287, + "axes": { + "#": 4768 + }, + "area": 799.89911, + "mass": 0.7999, + "inverseMass": 1.25016, + "inertia": 407.36798, + "inverseInertia": 0.00245, + "parent": { + "#": 4735 + }, + "sleepCounter": 0, + "region": { + "#": 4778 + } + }, + [ + { + "#": 4735 + } + ], + [ + { + "#": 4738 + }, + { + "#": 4739 + }, + { + "#": 4740 + }, + { + "#": 4741 + }, + { + "#": 4742 + }, + { + "#": 4743 + }, + { + "#": 4744 + }, + { + "#": 4745 + }, + { + "#": 4746 + }, + { + "#": 4747 + }, + { + "#": 4748 + }, + { + "#": 4749 + }, + { + "#": 4750 + }, + { + "#": 4751 + }, + { + "#": 4752 + }, + { + "#": 4753 + }, + { + "#": 4754 + }, + { + "#": 4755 + } + ], + { + "x": 645.998, + "y": 722.64762, + "index": 0, + "body": { + "#": 4735 + }, + "isInternal": false + }, + { + "x": 644.01353, + "y": 727.88245, + "index": 1, + "body": { + "#": 4735 + }, + "isInternal": false + }, + { + "x": 640.35727, + "y": 732.12274, + "index": 2, + "body": { + "#": 4735 + }, + "isInternal": false + }, + { + "x": 635.47113, + "y": 734.85638, + "index": 3, + "body": { + "#": 4735 + }, + "isInternal": false + }, + { + "x": 629.94557, + "y": 735.75427, + "index": 4, + "body": { + "#": 4735 + }, + "isInternal": false + }, + { + "x": 624.44612, + "y": 734.70833, + "index": 5, + "body": { + "#": 4735 + }, + "isInternal": false + }, + { + "x": 619.63514, + "y": 731.84448, + "index": 6, + "body": { + "#": 4735 + }, + "isInternal": false + }, + { + "x": 616.09405, + "y": 727.50754, + "index": 7, + "body": { + "#": 4735 + }, + "isInternal": false + }, + { + "x": 614.25086, + "y": 722.22132, + "index": 8, + "body": { + "#": 4735 + }, + "isInternal": false + }, + { + "x": 614.32602, + "y": 716.62382, + "index": 9, + "body": { + "#": 4735 + }, + "isInternal": false + }, + { + "x": 616.31049, + "y": 711.38899, + "index": 10, + "body": { + "#": 4735 + }, + "isInternal": false + }, + { + "x": 619.96675, + "y": 707.1487, + "index": 11, + "body": { + "#": 4735 + }, + "isInternal": false + }, + { + "x": 624.8529, + "y": 704.41506, + "index": 12, + "body": { + "#": 4735 + }, + "isInternal": false + }, + { + "x": 630.37845, + "y": 703.51717, + "index": 13, + "body": { + "#": 4735 + }, + "isInternal": false + }, + { + "x": 635.8779, + "y": 704.56311, + "index": 14, + "body": { + "#": 4735 + }, + "isInternal": false + }, + { + "x": 640.68889, + "y": 707.42696, + "index": 15, + "body": { + "#": 4735 + }, + "isInternal": false + }, + { + "x": 644.22997, + "y": 711.7639, + "index": 16, + "body": { + "#": 4735 + }, + "isInternal": false + }, + { + "x": 646.07316, + "y": 717.05012, + "index": 17, + "body": { + "#": 4735 + }, + "isInternal": false + }, + { + "x": 630.16201, + "y": 719.63572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.29475, + "y": 0.78581 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01419, + "y": 2.88393 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4763 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4765 + }, + "max": { + "#": 4766 + } + }, + { + "x": 614.25086, + "y": 703.51717 + }, + { + "x": 646.09964, + "y": 738.66163 + }, + { + "x": 630.12661, + "y": 716.71134 + }, + [ + { + "#": 4769 + }, + { + "#": 4770 + }, + { + "#": 4771 + }, + { + "#": 4772 + }, + { + "#": 4773 + }, + { + "#": 4774 + }, + { + "#": 4775 + }, + { + "#": 4776 + }, + { + "#": 4777 + } + ], + { + "x": -0.93507, + "y": -0.35447 + }, + { + "x": -0.75734, + "y": -0.65303 + }, + { + "x": -0.48825, + "y": -0.8727 + }, + { + "x": -0.16039, + "y": -0.98705 + }, + { + "x": 0.18684, + "y": -0.98239 + }, + { + "x": 0.51151, + "y": -0.85928 + }, + { + "x": 0.7746, + "y": -0.63245 + }, + { + "x": 0.94425, + "y": -0.32924 + }, + { + "x": 0.99991, + "y": 0.01343 + }, + { + "id": "12,13,14,15", + "startCol": 12, + "endCol": 13, + "startRow": 14, + "endRow": 15 + }, + { + "id": 95, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4780 + }, + "angle": 0, + "vertices": { + "#": 4781 + }, + "position": { + "#": 4808 + }, + "force": { + "#": 4809 + }, + "torque": 0, + "positionImpulse": { + "#": 4810 + }, + "constraintImpulse": { + "#": 4811 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4812 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4813 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4814 + }, + "circleRadius": 26.44528, + "bounds": { + "#": 4816 + }, + "positionPrev": { + "#": 4819 + }, + "anglePrev": 0, + "axes": { + "#": 4820 + }, + "area": 2175.76447, + "mass": 2.17576, + "inverseMass": 0.45961, + "inertia": 3013.78432, + "inverseInertia": 0.00033, + "parent": { + "#": 4779 + }, + "sleepCounter": 0, + "region": { + "#": 4834 + } + }, + [ + { + "#": 4779 + } + ], + [ + { + "#": 4782 + }, + { + "#": 4783 + }, + { + "#": 4784 + }, + { + "#": 4785 + }, + { + "#": 4786 + }, + { + "#": 4787 + }, + { + "#": 4788 + }, + { + "#": 4789 + }, + { + "#": 4790 + }, + { + "#": 4791 + }, + { + "#": 4792 + }, + { + "#": 4793 + }, + { + "#": 4794 + }, + { + "#": 4795 + }, + { + "#": 4796 + }, + { + "#": 4797 + }, + { + "#": 4798 + }, + { + "#": 4799 + }, + { + "#": 4800 + }, + { + "#": 4801 + }, + { + "#": 4802 + }, + { + "#": 4803 + }, + { + "#": 4804 + }, + { + "#": 4805 + }, + { + "#": 4806 + }, + { + "#": 4807 + } + ], + { + "x": 164.04604, + "y": 755.42378, + "index": 0, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 162.52104, + "y": 761.61378, + "index": 1, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 159.55804, + "y": 767.25878, + "index": 2, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 155.33004, + "y": 772.03078, + "index": 3, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 150.08404, + "y": 775.65178, + "index": 4, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 144.12304, + "y": 777.91278, + "index": 5, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 137.79404, + "y": 778.68078, + "index": 6, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 131.46504, + "y": 777.91278, + "index": 7, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 125.50404, + "y": 775.65178, + "index": 8, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 120.25804, + "y": 772.03078, + "index": 9, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 116.03004, + "y": 767.25878, + "index": 10, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 113.06704, + "y": 761.61378, + "index": 11, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 111.54204, + "y": 755.42378, + "index": 12, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 111.54204, + "y": 749.04778, + "index": 13, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 113.06704, + "y": 742.85778, + "index": 14, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 116.03004, + "y": 737.21278, + "index": 15, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 120.25804, + "y": 732.44078, + "index": 16, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 125.50404, + "y": 728.81978, + "index": 17, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 131.46504, + "y": 726.55878, + "index": 18, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 137.79404, + "y": 725.79078, + "index": 19, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 144.12304, + "y": 726.55878, + "index": 20, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 150.08404, + "y": 728.81978, + "index": 21, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 155.33004, + "y": 732.44078, + "index": 22, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 159.55804, + "y": 737.21278, + "index": 23, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 162.52104, + "y": 742.85778, + "index": 24, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 164.04604, + "y": 749.04778, + "index": 25, + "body": { + "#": 4779 + }, + "isInternal": false + }, + { + "x": 137.79404, + "y": 752.23578 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.10851, + "y": 0.85857 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4815 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4817 + }, + "max": { + "#": 4818 + } + }, + { + "x": 111.54204, + "y": 725.79078 + }, + { + "x": 164.04604, + "y": 781.58805 + }, + { + "x": 137.79404, + "y": 749.32851 + }, + [ + { + "#": 4821 + }, + { + "#": 4822 + }, + { + "#": 4823 + }, + { + "#": 4824 + }, + { + "#": 4825 + }, + { + "#": 4826 + }, + { + "#": 4827 + }, + { + "#": 4828 + }, + { + "#": 4829 + }, + { + "#": 4830 + }, + { + "#": 4831 + }, + { + "#": 4832 + }, + { + "#": 4833 + } + ], + { + "x": -0.97097, + "y": -0.23921 + }, + { + "x": -0.88544, + "y": -0.46476 + }, + { + "x": -0.74848, + "y": -0.66316 + }, + { + "x": -0.56806, + "y": -0.82299 + }, + { + "x": -0.35464, + "y": -0.935 + }, + { + "x": -0.12046, + "y": -0.99272 + }, + { + "x": 0.12046, + "y": -0.99272 + }, + { + "x": 0.35464, + "y": -0.935 + }, + { + "x": 0.56806, + "y": -0.82299 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88544, + "y": -0.46476 + }, + { + "x": 0.97097, + "y": -0.23921 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,3,15,16", + "startCol": 2, + "endCol": 3, + "startRow": 15, + "endRow": 16 + }, + { + "id": 96, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4836 + }, + "angle": 0, + "vertices": { + "#": 4837 + }, + "position": { + "#": 4856 + }, + "force": { + "#": 4857 + }, + "torque": 0, + "positionImpulse": { + "#": 4858 + }, + "constraintImpulse": { + "#": 4859 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4860 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4861 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4862 + }, + "circleRadius": 16.75482, + "bounds": { + "#": 4864 + }, + "positionPrev": { + "#": 4867 + }, + "anglePrev": 0, + "axes": { + "#": 4868 + }, + "area": 864.0989, + "mass": 0.8641, + "inverseMass": 1.15727, + "inertia": 475.3827, + "inverseInertia": 0.0021, + "parent": { + "#": 4835 + }, + "sleepCounter": 0, + "region": { + "#": 4878 + } + }, + [ + { + "#": 4835 + } + ], + [ + { + "#": 4838 + }, + { + "#": 4839 + }, + { + "#": 4840 + }, + { + "#": 4841 + }, + { + "#": 4842 + }, + { + "#": 4843 + }, + { + "#": 4844 + }, + { + "#": 4845 + }, + { + "#": 4846 + }, + { + "#": 4847 + }, + { + "#": 4848 + }, + { + "#": 4849 + }, + { + "#": 4850 + }, + { + "#": 4851 + }, + { + "#": 4852 + }, + { + "#": 4853 + }, + { + "#": 4854 + }, + { + "#": 4855 + } + ], + { + "x": 216.76596, + "y": 755.97841, + "index": 0, + "body": { + "#": 4835 + }, + "isInternal": false + }, + { + "x": 214.77596, + "y": 761.44641, + "index": 1, + "body": { + "#": 4835 + }, + "isInternal": false + }, + { + "x": 211.03596, + "y": 765.90441, + "index": 2, + "body": { + "#": 4835 + }, + "isInternal": false + }, + { + "x": 205.99596, + "y": 768.81341, + "index": 3, + "body": { + "#": 4835 + }, + "isInternal": false + }, + { + "x": 200.26596, + "y": 769.82441, + "index": 4, + "body": { + "#": 4835 + }, + "isInternal": false + }, + { + "x": 194.53596, + "y": 768.81341, + "index": 5, + "body": { + "#": 4835 + }, + "isInternal": false + }, + { + "x": 189.49596, + "y": 765.90441, + "index": 6, + "body": { + "#": 4835 + }, + "isInternal": false + }, + { + "x": 185.75596, + "y": 761.44641, + "index": 7, + "body": { + "#": 4835 + }, + "isInternal": false + }, + { + "x": 183.76596, + "y": 755.97841, + "index": 8, + "body": { + "#": 4835 + }, + "isInternal": false + }, + { + "x": 183.76596, + "y": 750.16041, + "index": 9, + "body": { + "#": 4835 + }, + "isInternal": false + }, + { + "x": 185.75596, + "y": 744.69241, + "index": 10, + "body": { + "#": 4835 + }, + "isInternal": false + }, + { + "x": 189.49596, + "y": 740.23441, + "index": 11, + "body": { + "#": 4835 + }, + "isInternal": false + }, + { + "x": 194.53596, + "y": 737.32541, + "index": 12, + "body": { + "#": 4835 + }, + "isInternal": false + }, + { + "x": 200.26596, + "y": 736.31441, + "index": 13, + "body": { + "#": 4835 + }, + "isInternal": false + }, + { + "x": 205.99596, + "y": 737.32541, + "index": 14, + "body": { + "#": 4835 + }, + "isInternal": false + }, + { + "x": 211.03596, + "y": 740.23441, + "index": 15, + "body": { + "#": 4835 + }, + "isInternal": false + }, + { + "x": 214.77596, + "y": 744.69241, + "index": 16, + "body": { + "#": 4835 + }, + "isInternal": false + }, + { + "x": 216.76596, + "y": 750.16041, + "index": 17, + "body": { + "#": 4835 + }, + "isInternal": false + }, + { + "x": 200.26596, + "y": 753.06941 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.93621, + "y": 0.55455 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4863 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4865 + }, + "max": { + "#": 4866 + } + }, + { + "x": 183.76596, + "y": 736.31441 + }, + { + "x": 216.76596, + "y": 772.73168 + }, + { + "x": 200.26596, + "y": 750.16214 + }, + [ + { + "#": 4869 + }, + { + "#": 4870 + }, + { + "#": 4871 + }, + { + "#": 4872 + }, + { + "#": 4873 + }, + { + "#": 4874 + }, + { + "#": 4875 + }, + { + "#": 4876 + }, + { + "#": 4877 + } + ], + { + "x": -0.9397, + "y": -0.34199 + }, + { + "x": -0.7661, + "y": -0.64272 + }, + { + "x": -0.49989, + "y": -0.86609 + }, + { + "x": -0.17376, + "y": -0.98479 + }, + { + "x": 0.17376, + "y": -0.98479 + }, + { + "x": 0.49989, + "y": -0.86609 + }, + { + "x": 0.7661, + "y": -0.64272 + }, + { + "x": 0.9397, + "y": -0.34199 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,15,16", + "startCol": 3, + "endCol": 4, + "startRow": 15, + "endRow": 16 + }, + { + "id": 97, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4880 + }, + "angle": 0.00265, + "vertices": { + "#": 4881 + }, + "position": { + "#": 4906 + }, + "force": { + "#": 4907 + }, + "torque": 0, + "positionImpulse": { + "#": 4908 + }, + "constraintImpulse": { + "#": 4909 + }, + "totalContacts": 0, + "speed": 2.89783, + "angularSpeed": 0.00034, + "velocity": { + "#": 4910 + }, + "angularVelocity": 0.00048, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4911 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4912 + }, + "circleRadius": 22.78967, + "bounds": { + "#": 4914 + }, + "positionPrev": { + "#": 4917 + }, + "anglePrev": 0.00252, + "axes": { + "#": 4918 + }, + "area": 1613.06386, + "mass": 1.61306, + "inverseMass": 0.61994, + "inertia": 1656.51233, + "inverseInertia": 0.0006, + "parent": { + "#": 4879 + }, + "sleepCounter": 0, + "region": { + "#": 4931 + } + }, + [ + { + "#": 4879 + } + ], + [ + { + "#": 4882 + }, + { + "#": 4883 + }, + { + "#": 4884 + }, + { + "#": 4885 + }, + { + "#": 4886 + }, + { + "#": 4887 + }, + { + "#": 4888 + }, + { + "#": 4889 + }, + { + "#": 4890 + }, + { + "#": 4891 + }, + { + "#": 4892 + }, + { + "#": 4893 + }, + { + "#": 4894 + }, + { + "#": 4895 + }, + { + "#": 4896 + }, + { + "#": 4897 + }, + { + "#": 4898 + }, + { + "#": 4899 + }, + { + "#": 4900 + }, + { + "#": 4901 + }, + { + "#": 4902 + }, + { + "#": 4903 + }, + { + "#": 4904 + }, + { + "#": 4905 + } + ], + { + "x": 270.61778, + "y": 752.42295, + "index": 0, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 269.06255, + "y": 758.16485, + "index": 1, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 266.07391, + "y": 763.30895, + "index": 2, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 261.85577, + "y": 767.50478, + "index": 3, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 256.69591, + "y": 770.46612, + "index": 4, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 250.94584, + "y": 771.99088, + "index": 5, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 244.99586, + "y": 771.97511, + "index": 6, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 239.25397, + "y": 770.41989, + "index": 7, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 234.10987, + "y": 767.43124, + "index": 8, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 229.91404, + "y": 763.21311, + "index": 9, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 226.9527, + "y": 758.05324, + "index": 10, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 225.42794, + "y": 752.30318, + "index": 11, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 225.44371, + "y": 746.3532, + "index": 12, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 226.99893, + "y": 740.6113, + "index": 13, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 229.98758, + "y": 735.4672, + "index": 14, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 234.20571, + "y": 731.27137, + "index": 15, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 239.36558, + "y": 728.31003, + "index": 16, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 245.11564, + "y": 726.78527, + "index": 17, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 251.06562, + "y": 726.80104, + "index": 18, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 256.80752, + "y": 728.35627, + "index": 19, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 261.95162, + "y": 731.34491, + "index": 20, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 266.14745, + "y": 735.56305, + "index": 21, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 269.10879, + "y": 740.72291, + "index": 22, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 270.63355, + "y": 746.47298, + "index": 23, + "body": { + "#": 4879 + }, + "isInternal": false + }, + { + "x": 248.03074, + "y": 749.38808 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.20468, + "y": 0.11036 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01378, + "y": 2.90357 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4913 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4915 + }, + "max": { + "#": 4916 + } + }, + { + "x": 225.41572, + "y": 726.78527 + }, + { + "x": 270.63355, + "y": 774.88869 + }, + { + "x": 248.04057, + "y": 746.4991 + }, + [ + { + "#": 4919 + }, + { + "#": 4920 + }, + { + "#": 4921 + }, + { + "#": 4922 + }, + { + "#": 4923 + }, + { + "#": 4924 + }, + { + "#": 4925 + }, + { + "#": 4926 + }, + { + "#": 4927 + }, + { + "#": 4928 + }, + { + "#": 4929 + }, + { + "#": 4930 + } + ], + { + "x": -0.96522, + "y": -0.26144 + }, + { + "x": -0.86466, + "y": -0.50236 + }, + { + "x": -0.70523, + "y": -0.70898 + }, + { + "x": -0.49776, + "y": -0.86731 + }, + { + "x": -0.25632, + "y": -0.96659 + }, + { + "x": 0.00265, + "y": -1 + }, + { + "x": 0.26144, + "y": -0.96522 + }, + { + "x": 0.50236, + "y": -0.86466 + }, + { + "x": 0.70898, + "y": -0.70523 + }, + { + "x": 0.86731, + "y": -0.49776 + }, + { + "x": 0.96659, + "y": -0.25632 + }, + { + "x": 1, + "y": 0.00265 + }, + { + "id": "4,5,15,16", + "startCol": 4, + "endCol": 5, + "startRow": 15, + "endRow": 16 + }, + { + "id": 98, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4933 + }, + "angle": 0.00184, + "vertices": { + "#": 4934 + }, + "position": { + "#": 4961 + }, + "force": { + "#": 4962 + }, + "torque": 0, + "positionImpulse": { + "#": 4963 + }, + "constraintImpulse": { + "#": 4964 + }, + "totalContacts": 0, + "speed": 2.9129, + "angularSpeed": 0.00028, + "velocity": { + "#": 4965 + }, + "angularVelocity": 0.00034, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4966 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4967 + }, + "circleRadius": 29.73502, + "bounds": { + "#": 4969 + }, + "positionPrev": { + "#": 4972 + }, + "anglePrev": 0.00166, + "axes": { + "#": 4973 + }, + "area": 2750.73619, + "mass": 2.75074, + "inverseMass": 0.36354, + "inertia": 4817.10698, + "inverseInertia": 0.00021, + "parent": { + "#": 4932 + }, + "sleepCounter": 0, + "region": { + "#": 4987 + } + }, + [ + { + "#": 4932 + } + ], + [ + { + "#": 4935 + }, + { + "#": 4936 + }, + { + "#": 4937 + }, + { + "#": 4938 + }, + { + "#": 4939 + }, + { + "#": 4940 + }, + { + "#": 4941 + }, + { + "#": 4942 + }, + { + "#": 4943 + }, + { + "#": 4944 + }, + { + "#": 4945 + }, + { + "#": 4946 + }, + { + "#": 4947 + }, + { + "#": 4948 + }, + { + "#": 4949 + }, + { + "#": 4950 + }, + { + "#": 4951 + }, + { + "#": 4952 + }, + { + "#": 4953 + }, + { + "#": 4954 + }, + { + "#": 4955 + }, + { + "#": 4956 + }, + { + "#": 4957 + }, + { + "#": 4958 + }, + { + "#": 4959 + }, + { + "#": 4960 + } + ], + { + "x": 327.6405, + "y": 770.91482, + "index": 0, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 325.91268, + "y": 777.87165, + "index": 1, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 322.56899, + "y": 784.2125, + "index": 2, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 317.80611, + "y": 789.56973, + "index": 3, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 311.89962, + "y": 793.63086, + "index": 4, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 305.19195, + "y": 796.1605, + "index": 5, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 298.07437, + "y": 797.01139, + "index": 6, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 290.95998, + "y": 796.13428, + "index": 7, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 284.26167, + "y": 793.57994, + "index": 8, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 278.37018, + "y": 789.49708, + "index": 9, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 273.62708, + "y": 784.12233, + "index": 10, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 270.30677, + "y": 777.7692, + "index": 11, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 268.6046, + "y": 770.80606, + "index": 12, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 268.6178, + "y": 763.63807, + "index": 13, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 270.34562, + "y": 756.68124, + "index": 14, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 273.68931, + "y": 750.34039, + "index": 15, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 278.45219, + "y": 744.98316, + "index": 16, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 284.35868, + "y": 740.92203, + "index": 17, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 291.06635, + "y": 738.39238, + "index": 18, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 298.18393, + "y": 737.54149, + "index": 19, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 305.29833, + "y": 738.4186, + "index": 20, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 311.99663, + "y": 740.97295, + "index": 21, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 317.88812, + "y": 745.05581, + "index": 22, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 322.63123, + "y": 750.43055, + "index": 23, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 325.95153, + "y": 756.78368, + "index": 24, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 327.6537, + "y": 763.74683, + "index": 25, + "body": { + "#": 4932 + }, + "isInternal": false + }, + { + "x": 298.12915, + "y": 767.27644 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.1634, + "y": 1.50949 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01623, + "y": 2.90947 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4968 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4970 + }, + "max": { + "#": 4971 + } + }, + { + "x": 268.58746, + "y": 737.54149 + }, + { + "x": 327.6537, + "y": 799.92424 + }, + { + "x": 298.14769, + "y": 764.35842 + }, + [ + { + "#": 4974 + }, + { + "#": 4975 + }, + { + "#": 4976 + }, + { + "#": 4977 + }, + { + "#": 4978 + }, + { + "#": 4979 + }, + { + "#": 4980 + }, + { + "#": 4981 + }, + { + "#": 4982 + }, + { + "#": 4983 + }, + { + "#": 4984 + }, + { + "#": 4985 + }, + { + "#": 4986 + } + ], + { + "x": -0.97052, + "y": -0.24104 + }, + { + "x": -0.88455, + "y": -0.46645 + }, + { + "x": -0.74735, + "y": -0.66443 + }, + { + "x": -0.56657, + "y": -0.82402 + }, + { + "x": -0.35287, + "y": -0.93567 + }, + { + "x": -0.1187, + "y": -0.99293 + }, + { + "x": 0.12236, + "y": -0.99249 + }, + { + "x": 0.35631, + "y": -0.93437 + }, + { + "x": 0.5696, + "y": -0.82192 + }, + { + "x": 0.74979, + "y": -0.66168 + }, + { + "x": 0.88626, + "y": -0.46318 + }, + { + "x": 0.9714, + "y": -0.23746 + }, + { + "x": 1, + "y": 0.00184 + }, + { + "id": "5,6,15,16", + "startCol": 5, + "endCol": 6, + "startRow": 15, + "endRow": 16 + }, + { + "id": 99, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4989 + }, + "angle": -0.00301, + "vertices": { + "#": 4990 + }, + "position": { + "#": 5017 + }, + "force": { + "#": 5018 + }, + "torque": 0, + "positionImpulse": { + "#": 5019 + }, + "constraintImpulse": { + "#": 5020 + }, + "totalContacts": 0, + "speed": 2.91407, + "angularSpeed": 0.00046, + "velocity": { + "#": 5021 + }, + "angularVelocity": -0.00046, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5022 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5023 + }, + "circleRadius": 28.88715, + "bounds": { + "#": 5025 + }, + "positionPrev": { + "#": 5028 + }, + "anglePrev": -0.00256, + "axes": { + "#": 5029 + }, + "area": 2596.14546, + "mass": 2.59615, + "inverseMass": 0.38519, + "inertia": 4290.88083, + "inverseInertia": 0.00023, + "parent": { + "#": 4988 + }, + "sleepCounter": 0, + "region": { + "#": 5043 + } + }, + [ + { + "#": 4988 + } + ], + [ + { + "#": 4991 + }, + { + "#": 4992 + }, + { + "#": 4993 + }, + { + "#": 4994 + }, + { + "#": 4995 + }, + { + "#": 4996 + }, + { + "#": 4997 + }, + { + "#": 4998 + }, + { + "#": 4999 + }, + { + "#": 5000 + }, + { + "#": 5001 + }, + { + "#": 5002 + }, + { + "#": 5003 + }, + { + "#": 5004 + }, + { + "#": 5005 + }, + { + "#": 5006 + }, + { + "#": 5007 + }, + { + "#": 5008 + }, + { + "#": 5009 + }, + { + "#": 5010 + }, + { + "#": 5011 + }, + { + "#": 5012 + }, + { + "#": 5013 + }, + { + "#": 5014 + }, + { + "#": 5015 + }, + { + "#": 5016 + } + ], + { + "x": 391.10019, + "y": 764.63303, + "index": 0, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 389.45357, + "y": 771.40002, + "index": 1, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 386.23617, + "y": 777.57574, + "index": 2, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 381.63389, + "y": 782.80163, + "index": 3, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 375.91484, + "y": 786.77488, + "index": 4, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 369.41031, + "y": 789.26449, + "index": 5, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 362.49987, + "y": 790.12431, + "index": 6, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 355.58437, + "y": 789.30614, + "index": 7, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 349.06496, + "y": 786.85578, + "index": 8, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 343.32207, + "y": 782.91706, + "index": 9, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 338.68838, + "y": 777.719, + "index": 10, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 335.43382, + "y": 771.56278, + "index": 11, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 333.74645, + "y": 764.80583, + "index": 12, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 333.72547, + "y": 757.84186, + "index": 13, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 335.37209, + "y": 751.07487, + "index": 14, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 338.5895, + "y": 744.89915, + "index": 15, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 343.19177, + "y": 739.67326, + "index": 16, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 348.91083, + "y": 735.70001, + "index": 17, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 355.41536, + "y": 733.2104, + "index": 18, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 362.3258, + "y": 732.35057, + "index": 19, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 369.24129, + "y": 733.16874, + "index": 20, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 375.76071, + "y": 735.61911, + "index": 21, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 381.5036, + "y": 739.55783, + "index": 22, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 386.13728, + "y": 744.75589, + "index": 23, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 389.39185, + "y": 750.91211, + "index": 24, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 391.07921, + "y": 757.66906, + "index": 25, + "body": { + "#": 4988 + }, + "isInternal": false + }, + { + "x": 362.41283, + "y": 761.23744 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.14162, + "y": 1.04621 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00535, + "y": 2.91407 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5024 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5026 + }, + "max": { + "#": 5027 + } + }, + { + "x": 333.72012, + "y": 732.35057 + }, + { + "x": 391.10019, + "y": 793.03838 + }, + { + "x": 362.41818, + "y": 758.32338 + }, + [ + { + "#": 5030 + }, + { + "#": 5031 + }, + { + "#": 5032 + }, + { + "#": 5033 + }, + { + "#": 5034 + }, + { + "#": 5035 + }, + { + "#": 5036 + }, + { + "#": 5037 + }, + { + "#": 5038 + }, + { + "#": 5039 + }, + { + "#": 5040 + }, + { + "#": 5041 + }, + { + "#": 5042 + } + ], + { + "x": -0.97165, + "y": -0.23643 + }, + { + "x": -0.88686, + "y": -0.46203 + }, + { + "x": -0.75046, + "y": -0.66091 + }, + { + "x": -0.57056, + "y": -0.82126 + }, + { + "x": -0.35746, + "y": -0.93393 + }, + { + "x": -0.12347, + "y": -0.99235 + }, + { + "x": 0.11749, + "y": -0.99307 + }, + { + "x": 0.35183, + "y": -0.93607 + }, + { + "x": 0.5656, + "y": -0.82468 + }, + { + "x": 0.74647, + "y": -0.66542 + }, + { + "x": 0.88406, + "y": -0.46737 + }, + { + "x": 0.97021, + "y": -0.24228 + }, + { + "x": 1, + "y": -0.00301 + }, + { + "id": "6,8,15,16", + "startCol": 6, + "endCol": 8, + "startRow": 15, + "endRow": 16 + }, + { + "id": 100, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5045 + }, + "angle": 0.00215, + "vertices": { + "#": 5046 + }, + "position": { + "#": 5073 + }, + "force": { + "#": 5074 + }, + "torque": 0, + "positionImpulse": { + "#": 5075 + }, + "constraintImpulse": { + "#": 5076 + }, + "totalContacts": 0, + "speed": 2.89897, + "angularSpeed": 0.00022, + "velocity": { + "#": 5077 + }, + "angularVelocity": 0.00022, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5078 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5079 + }, + "circleRadius": 24.32015, + "bounds": { + "#": 5081 + }, + "positionPrev": { + "#": 5084 + }, + "anglePrev": 0.00193, + "axes": { + "#": 5085 + }, + "area": 1840.09915, + "mass": 1.8401, + "inverseMass": 0.54345, + "inertia": 2155.61333, + "inverseInertia": 0.00046, + "parent": { + "#": 5044 + }, + "sleepCounter": 0, + "region": { + "#": 5099 + } + }, + [ + { + "#": 5044 + } + ], + [ + { + "#": 5047 + }, + { + "#": 5048 + }, + { + "#": 5049 + }, + { + "#": 5050 + }, + { + "#": 5051 + }, + { + "#": 5052 + }, + { + "#": 5053 + }, + { + "#": 5054 + }, + { + "#": 5055 + }, + { + "#": 5056 + }, + { + "#": 5057 + }, + { + "#": 5058 + }, + { + "#": 5059 + }, + { + "#": 5060 + }, + { + "#": 5061 + }, + { + "#": 5062 + }, + { + "#": 5063 + }, + { + "#": 5064 + }, + { + "#": 5065 + }, + { + "#": 5066 + }, + { + "#": 5067 + }, + { + "#": 5068 + }, + { + "#": 5069 + }, + { + "#": 5070 + }, + { + "#": 5071 + }, + { + "#": 5072 + } + ], + { + "x": 445.93636, + "y": 753.32143, + "index": 0, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 444.52111, + "y": 759.0114, + "index": 1, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 441.78495, + "y": 764.19653, + "index": 2, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 437.88751, + "y": 768.57715, + "index": 3, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 433.05536, + "y": 771.89676, + "index": 4, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 427.5689, + "y": 773.96396, + "index": 5, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 421.74739, + "y": 774.65843, + "index": 6, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 415.92892, + "y": 773.93891, + "index": 7, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 410.45141, + "y": 771.84812, + "index": 8, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 405.63359, + "y": 768.50774, + "index": 9, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 401.75504, + "y": 764.11039, + "index": 10, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 399.04122, + "y": 758.91354, + "index": 11, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 397.65047, + "y": 753.21753, + "index": 12, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 397.66309, + "y": 747.35554, + "index": 13, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 399.07833, + "y": 741.66558, + "index": 14, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 401.8145, + "y": 736.48045, + "index": 15, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 405.71193, + "y": 732.09983, + "index": 16, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 410.54409, + "y": 728.78022, + "index": 17, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 416.03055, + "y": 726.71302, + "index": 18, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 421.85206, + "y": 726.01855, + "index": 19, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 427.67052, + "y": 726.73807, + "index": 20, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 433.14803, + "y": 728.82886, + "index": 21, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 437.96586, + "y": 732.16923, + "index": 22, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 441.8444, + "y": 736.56659, + "index": 23, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 444.55823, + "y": 741.76344, + "index": 24, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 445.94897, + "y": 747.45945, + "index": 25, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 421.79972, + "y": 750.33849 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.29065, + "y": 0.74868 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01383, + "y": 2.89894 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5080 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5082 + }, + "max": { + "#": 5083 + } + }, + { + "x": 397.63664, + "y": 726.01855 + }, + { + "x": 445.94897, + "y": 777.55737 + }, + { + "x": 421.81356, + "y": 747.43955 + }, + [ + { + "#": 5086 + }, + { + "#": 5087 + }, + { + "#": 5088 + }, + { + "#": 5089 + }, + { + "#": 5090 + }, + { + "#": 5091 + }, + { + "#": 5092 + }, + { + "#": 5093 + }, + { + "#": 5094 + }, + { + "#": 5095 + }, + { + "#": 5096 + }, + { + "#": 5097 + }, + { + "#": 5098 + } + ], + { + "x": -0.97043, + "y": -0.24137 + }, + { + "x": -0.88441, + "y": -0.4667 + }, + { + "x": -0.74711, + "y": -0.6647 + }, + { + "x": -0.56624, + "y": -0.82424 + }, + { + "x": -0.35258, + "y": -0.93578 + }, + { + "x": -0.11845, + "y": -0.99296 + }, + { + "x": 0.12273, + "y": -0.99244 + }, + { + "x": 0.35661, + "y": -0.93425 + }, + { + "x": 0.56978, + "y": -0.8218 + }, + { + "x": 0.74996, + "y": -0.66148 + }, + { + "x": 0.88642, + "y": -0.46289 + }, + { + "x": 0.97146, + "y": -0.23719 + }, + { + "x": 1, + "y": 0.00215 + }, + { + "id": "8,9,15,16", + "startCol": 8, + "endCol": 9, + "startRow": 15, + "endRow": 16 + }, + { + "id": 101, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5101 + }, + "angle": -0.0041, + "vertices": { + "#": 5102 + }, + "position": { + "#": 5123 + }, + "force": { + "#": 5124 + }, + "torque": 0, + "positionImpulse": { + "#": 5125 + }, + "constraintImpulse": { + "#": 5126 + }, + "totalContacts": 0, + "speed": 2.90094, + "angularSpeed": 0.0007, + "velocity": { + "#": 5127 + }, + "angularVelocity": -0.0007, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5128 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5129 + }, + "circleRadius": 19.55253, + "bounds": { + "#": 5131 + }, + "positionPrev": { + "#": 5134 + }, + "anglePrev": -0.00339, + "axes": { + "#": 5135 + }, + "area": 1181.38615, + "mass": 1.18139, + "inverseMass": 0.84646, + "inertia": 888.56183, + "inverseInertia": 0.00113, + "parent": { + "#": 5100 + }, + "sleepCounter": 0, + "region": { + "#": 5146 + } + }, + [ + { + "#": 5100 + } + ], + [ + { + "#": 5103 + }, + { + "#": 5104 + }, + { + "#": 5105 + }, + { + "#": 5106 + }, + { + "#": 5107 + }, + { + "#": 5108 + }, + { + "#": 5109 + }, + { + "#": 5110 + }, + { + "#": 5111 + }, + { + "#": 5112 + }, + { + "#": 5113 + }, + { + "#": 5114 + }, + { + "#": 5115 + }, + { + "#": 5116 + }, + { + "#": 5117 + }, + { + "#": 5118 + }, + { + "#": 5119 + }, + { + "#": 5120 + }, + { + "#": 5121 + }, + { + "#": 5122 + } + ], + { + "x": 517.22689, + "y": 789.34776, + "index": 0, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 515.35974, + "y": 795.17346, + "index": 1, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 511.78504, + "y": 800.13714, + "index": 2, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 506.85081, + "y": 803.75239, + "index": 3, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 501.0406, + "y": 805.6672, + "index": 4, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 494.92265, + "y": 805.69226, + "index": 5, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 489.09696, + "y": 803.82511, + "index": 6, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 484.13327, + "y": 800.25041, + "index": 7, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 480.51803, + "y": 795.31618, + "index": 8, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 478.60321, + "y": 789.50597, + "index": 9, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 478.57815, + "y": 783.38803, + "index": 10, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 480.4453, + "y": 777.56233, + "index": 11, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 484.02, + "y": 772.59864, + "index": 12, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 488.95423, + "y": 768.9834, + "index": 13, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 494.76444, + "y": 767.06859, + "index": 14, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 500.88239, + "y": 767.04353, + "index": 15, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 506.70809, + "y": 768.91068, + "index": 16, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 511.67177, + "y": 772.48537, + "index": 17, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 515.28701, + "y": 777.41961, + "index": 18, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 517.20183, + "y": 783.22981, + "index": 19, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 497.90252, + "y": 786.36789 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.08801, + "y": 1.34138 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00638, + "y": 2.90093 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5130 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5132 + }, + "max": { + "#": 5133 + } + }, + { + "x": 478.57177, + "y": 767.04353 + }, + { + "x": 517.22689, + "y": 808.5932 + }, + { + "x": 497.9089, + "y": 783.46696 + }, + [ + { + "#": 5136 + }, + { + "#": 5137 + }, + { + "#": 5138 + }, + { + "#": 5139 + }, + { + "#": 5140 + }, + { + "#": 5141 + }, + { + "#": 5142 + }, + { + "#": 5143 + }, + { + "#": 5144 + }, + { + "#": 5145 + } + ], + { + "x": -0.95229, + "y": -0.30521 + }, + { + "x": -0.81147, + "y": -0.5844 + }, + { + "x": -0.59102, + "y": -0.80665 + }, + { + "x": -0.313, + "y": -0.94975 + }, + { + "x": -0.0041, + "y": -0.99999 + }, + { + "x": 0.30521, + "y": -0.95229 + }, + { + "x": 0.5844, + "y": -0.81147 + }, + { + "x": 0.80665, + "y": -0.59102 + }, + { + "x": 0.94975, + "y": -0.313 + }, + { + "x": 0.99999, + "y": -0.0041 + }, + { + "id": "9,10,15,16", + "startCol": 9, + "endCol": 10, + "startRow": 15, + "endRow": 16 + }, + { + "id": 102, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5148 + }, + "angle": 0.00022, + "vertices": { + "#": 5149 + }, + "position": { + "#": 5176 + }, + "force": { + "#": 5177 + }, + "torque": 0, + "positionImpulse": { + "#": 5178 + }, + "constraintImpulse": { + "#": 5179 + }, + "totalContacts": 0, + "speed": 2.91345, + "angularSpeed": 0.00009, + "velocity": { + "#": 5180 + }, + "angularVelocity": -0.00012, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5181 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5182 + }, + "circleRadius": 29.21393, + "bounds": { + "#": 5184 + }, + "positionPrev": { + "#": 5187 + }, + "anglePrev": 0.00006, + "axes": { + "#": 5188 + }, + "area": 2655.16465, + "mass": 2.65516, + "inverseMass": 0.37662, + "inertia": 4488.19093, + "inverseInertia": 0.00022, + "parent": { + "#": 5147 + }, + "sleepCounter": 0, + "region": { + "#": 5202 + } + }, + [ + { + "#": 5147 + } + ], + [ + { + "#": 5150 + }, + { + "#": 5151 + }, + { + "#": 5152 + }, + { + "#": 5153 + }, + { + "#": 5154 + }, + { + "#": 5155 + }, + { + "#": 5156 + }, + { + "#": 5157 + }, + { + "#": 5158 + }, + { + "#": 5159 + }, + { + "#": 5160 + }, + { + "#": 5161 + }, + { + "#": 5162 + }, + { + "#": 5163 + }, + { + "#": 5164 + }, + { + "#": 5165 + }, + { + "#": 5166 + }, + { + "#": 5167 + }, + { + "#": 5168 + }, + { + "#": 5169 + }, + { + "#": 5170 + }, + { + "#": 5171 + }, + { + "#": 5172 + }, + { + "#": 5173 + }, + { + "#": 5174 + }, + { + "#": 5175 + } + ], + { + "x": 569.09815, + "y": 760.23635, + "index": 0, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 567.41063, + "y": 767.07398, + "index": 1, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 564.13724, + "y": 773.30925, + "index": 2, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 559.46507, + "y": 778.58021, + "index": 3, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 553.66818, + "y": 782.57992, + "index": 4, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 547.08263, + "y": 785.07546, + "index": 5, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 540.09144, + "y": 785.9229, + "index": 6, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 533.10063, + "y": 785.07235, + "index": 7, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 526.51618, + "y": 782.57389, + "index": 8, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 520.72107, + "y": 778.5716, + "index": 9, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 516.05124, + "y": 773.29856, + "index": 10, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 512.78063, + "y": 767.06183, + "index": 11, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 511.09615, + "y": 760.22346, + "index": 12, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 511.09772, + "y": 753.18146, + "index": 13, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 512.78524, + "y": 746.34383, + "index": 14, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 516.05862, + "y": 740.10856, + "index": 15, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 520.73079, + "y": 734.8376, + "index": 16, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 526.52768, + "y": 730.83789, + "index": 17, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 533.11324, + "y": 728.34235, + "index": 18, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 540.10443, + "y": 727.49491, + "index": 19, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 547.09524, + "y": 728.34546, + "index": 20, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 553.67968, + "y": 730.84392, + "index": 21, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 559.47479, + "y": 734.84621, + "index": 22, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 564.14462, + "y": 740.11925, + "index": 23, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 567.41523, + "y": 746.35598, + "index": 24, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 569.09971, + "y": 753.19435, + "index": 25, + "body": { + "#": 5147 + }, + "isInternal": false + }, + { + "x": 540.09793, + "y": 756.70891 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.1854, + "y": 0.24256 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00886, + "y": 2.90966 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5183 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5185 + }, + "max": { + "#": 5186 + } + }, + { + "x": 511.09291, + "y": 727.49491 + }, + { + "x": 569.09971, + "y": 788.83636 + }, + { + "x": 540.1054, + "y": 753.7961 + }, + [ + { + "#": 5189 + }, + { + "#": 5190 + }, + { + "#": 5191 + }, + { + "#": 5192 + }, + { + "#": 5193 + }, + { + "#": 5194 + }, + { + "#": 5195 + }, + { + "#": 5196 + }, + { + "#": 5197 + }, + { + "#": 5198 + }, + { + "#": 5199 + }, + { + "#": 5200 + }, + { + "#": 5201 + } + ], + { + "x": -0.97087, + "y": -0.23961 + }, + { + "x": -0.88541, + "y": -0.46482 + }, + { + "x": -0.74833, + "y": -0.66332 + }, + { + "x": -0.56791, + "y": -0.82309 + }, + { + "x": -0.35435, + "y": -0.93511 + }, + { + "x": -0.12034, + "y": -0.99273 + }, + { + "x": 0.12078, + "y": -0.99268 + }, + { + "x": 0.35477, + "y": -0.93495 + }, + { + "x": 0.56828, + "y": -0.82284 + }, + { + "x": 0.74863, + "y": -0.66299 + }, + { + "x": 0.88561, + "y": -0.46443 + }, + { + "x": 0.97098, + "y": -0.23918 + }, + { + "x": 1, + "y": 0.00022 + }, + { + "id": "10,11,15,16", + "startCol": 10, + "endCol": 11, + "startRow": 15, + "endRow": 16 + }, + { + "id": 103, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5204 + }, + "angle": 0.00042, + "vertices": { + "#": 5205 + }, + "position": { + "#": 5232 + }, + "force": { + "#": 5233 + }, + "torque": 0, + "positionImpulse": { + "#": 5234 + }, + "constraintImpulse": { + "#": 5235 + }, + "totalContacts": 0, + "speed": 2.8958, + "angularSpeed": 0.00018, + "velocity": { + "#": 5236 + }, + "angularVelocity": 0.00038, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5237 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5238 + }, + "circleRadius": 25.71174, + "bounds": { + "#": 5240 + }, + "positionPrev": { + "#": 5243 + }, + "anglePrev": 0.00039, + "axes": { + "#": 5244 + }, + "area": 2056.75388, + "mass": 2.05675, + "inverseMass": 0.4862, + "inertia": 2693.1036, + "inverseInertia": 0.00037, + "parent": { + "#": 5203 + }, + "sleepCounter": 0, + "region": { + "#": 5258 + } + }, + [ + { + "#": 5203 + } + ], + [ + { + "#": 5206 + }, + { + "#": 5207 + }, + { + "#": 5208 + }, + { + "#": 5209 + }, + { + "#": 5210 + }, + { + "#": 5211 + }, + { + "#": 5212 + }, + { + "#": 5213 + }, + { + "#": 5214 + }, + { + "#": 5215 + }, + { + "#": 5216 + }, + { + "#": 5217 + }, + { + "#": 5218 + }, + { + "#": 5219 + }, + { + "#": 5220 + }, + { + "#": 5221 + }, + { + "#": 5222 + }, + { + "#": 5223 + }, + { + "#": 5224 + }, + { + "#": 5225 + }, + { + "#": 5226 + }, + { + "#": 5227 + }, + { + "#": 5228 + }, + { + "#": 5229 + }, + { + "#": 5230 + }, + { + "#": 5231 + } + ], + { + "x": 618.16642, + "y": 741.51797, + "index": 0, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 616.68088, + "y": 747.53635, + "index": 1, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 613.79756, + "y": 753.02313, + "index": 2, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 609.6856, + "y": 757.66139, + "index": 3, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 604.58312, + "y": 761.18024, + "index": 4, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 598.78619, + "y": 763.37579, + "index": 5, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 592.63287, + "y": 764.12019, + "index": 6, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 586.48019, + "y": 763.37059, + "index": 7, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 580.68512, + "y": 761.17015, + "index": 8, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 575.58561, + "y": 757.64699, + "index": 9, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 571.47757, + "y": 753.00526, + "index": 10, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 568.59888, + "y": 747.51604, + "index": 11, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 567.11843, + "y": 741.49641, + "index": 12, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 567.12104, + "y": 735.29842, + "index": 13, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 568.60659, + "y": 729.28004, + "index": 14, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 571.4899, + "y": 723.79326, + "index": 15, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 575.60186, + "y": 719.155, + "index": 16, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 580.70435, + "y": 715.63615, + "index": 17, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 586.50128, + "y": 713.4406, + "index": 18, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 592.65459, + "y": 712.6962, + "index": 19, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 598.80728, + "y": 713.4458, + "index": 20, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 604.60235, + "y": 715.64624, + "index": 21, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 609.70186, + "y": 719.1694, + "index": 22, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 613.8099, + "y": 723.81113, + "index": 23, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 616.68858, + "y": 729.30035, + "index": 24, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 618.16904, + "y": 735.31997, + "index": 25, + "body": { + "#": 5203 + }, + "isInternal": false + }, + { + "x": 592.64373, + "y": 738.40819 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.16917, + "y": 0.48189 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00328, + "y": 2.90491 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5239 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5241 + }, + "max": { + "#": 5242 + } + }, + { + "x": 567.11693, + "y": 712.6962 + }, + { + "x": 618.16904, + "y": 767.01599 + }, + { + "x": 592.6487, + "y": 735.51901 + }, + [ + { + "#": 5245 + }, + { + "#": 5246 + }, + { + "#": 5247 + }, + { + "#": 5248 + }, + { + "#": 5249 + }, + { + "#": 5250 + }, + { + "#": 5251 + }, + { + "#": 5252 + }, + { + "#": 5253 + }, + { + "#": 5254 + }, + { + "#": 5255 + }, + { + "#": 5256 + }, + { + "#": 5257 + } + ], + { + "x": -0.97086, + "y": -0.23964 + }, + { + "x": -0.88521, + "y": -0.46518 + }, + { + "x": -0.74829, + "y": -0.66338 + }, + { + "x": -0.56772, + "y": -0.82322 + }, + { + "x": -0.35419, + "y": -0.93517 + }, + { + "x": -0.1201, + "y": -0.99276 + }, + { + "x": 0.12094, + "y": -0.99266 + }, + { + "x": 0.35498, + "y": -0.93487 + }, + { + "x": 0.56842, + "y": -0.82274 + }, + { + "x": 0.74885, + "y": -0.66274 + }, + { + "x": 0.88561, + "y": -0.46443 + }, + { + "x": 0.97106, + "y": -0.23882 + }, + { + "x": 1, + "y": 0.00042 + }, + { + "id": "11,12,14,15", + "startCol": 11, + "endCol": 12, + "startRow": 14, + "endRow": 15 + }, + { + "id": 104, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5260 + }, + "angle": 0.00054, + "vertices": { + "#": 5261 + }, + "position": { + "#": 5278 + }, + "force": { + "#": 5279 + }, + "torque": 0, + "positionImpulse": { + "#": 5280 + }, + "constraintImpulse": { + "#": 5281 + }, + "totalContacts": 0, + "speed": 2.90739, + "angularSpeed": 0.00008, + "velocity": { + "#": 5282 + }, + "angularVelocity": 0.00008, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5283 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5284 + }, + "circleRadius": 15.89783, + "bounds": { + "#": 5286 + }, + "positionPrev": { + "#": 5289 + }, + "anglePrev": 0.00047, + "axes": { + "#": 5290 + }, + "area": 773.75383, + "mass": 0.77375, + "inverseMass": 1.2924, + "inertia": 381.19237, + "inverseInertia": 0.00262, + "parent": { + "#": 5259 + }, + "sleepCounter": 0, + "region": { + "#": 5299 + } + }, + [ + { + "#": 5259 + } + ], + [ + { + "#": 5262 + }, + { + "#": 5263 + }, + { + "#": 5264 + }, + { + "#": 5265 + }, + { + "#": 5266 + }, + { + "#": 5267 + }, + { + "#": 5268 + }, + { + "#": 5269 + }, + { + "#": 5270 + }, + { + "#": 5271 + }, + { + "#": 5272 + }, + { + "#": 5273 + }, + { + "#": 5274 + }, + { + "#": 5275 + }, + { + "#": 5276 + }, + { + "#": 5277 + } + ], + { + "x": 716.85, + "y": 701.61266, + "index": 0, + "body": { + "#": 5259 + }, + "isInternal": false + }, + { + "x": 714.4739, + "y": 707.34138, + "index": 1, + "body": { + "#": 5259 + }, + "isInternal": false + }, + { + "x": 710.08452, + "y": 711.726, + "index": 2, + "body": { + "#": 5259 + }, + "isInternal": false + }, + { + "x": 704.35324, + "y": 714.0959, + "index": 3, + "body": { + "#": 5259 + }, + "isInternal": false + }, + { + "x": 698.14924, + "y": 714.09254, + "index": 4, + "body": { + "#": 5259 + }, + "isInternal": false + }, + { + "x": 692.42052, + "y": 711.71644, + "index": 5, + "body": { + "#": 5259 + }, + "isInternal": false + }, + { + "x": 688.0359, + "y": 707.32707, + "index": 6, + "body": { + "#": 5259 + }, + "isInternal": false + }, + { + "x": 685.666, + "y": 701.59578, + "index": 7, + "body": { + "#": 5259 + }, + "isInternal": false + }, + { + "x": 685.66936, + "y": 695.39178, + "index": 8, + "body": { + "#": 5259 + }, + "isInternal": false + }, + { + "x": 688.04546, + "y": 689.66307, + "index": 9, + "body": { + "#": 5259 + }, + "isInternal": false + }, + { + "x": 692.43483, + "y": 685.27845, + "index": 10, + "body": { + "#": 5259 + }, + "isInternal": false + }, + { + "x": 698.16612, + "y": 682.90855, + "index": 11, + "body": { + "#": 5259 + }, + "isInternal": false + }, + { + "x": 704.37012, + "y": 682.91191, + "index": 12, + "body": { + "#": 5259 + }, + "isInternal": false + }, + { + "x": 710.09883, + "y": 685.28801, + "index": 13, + "body": { + "#": 5259 + }, + "isInternal": false + }, + { + "x": 714.48346, + "y": 689.67738, + "index": 14, + "body": { + "#": 5259 + }, + "isInternal": false + }, + { + "x": 716.85336, + "y": 695.40866, + "index": 15, + "body": { + "#": 5259 + }, + "isInternal": false + }, + { + "x": 701.25968, + "y": 698.50222 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 2.11686, + "y": 0.00927 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01671, + "y": 2.90734 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5285 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5287 + }, + "max": { + "#": 5288 + } + }, + { + "x": 685.666, + "y": 682.90855 + }, + { + "x": 716.87006, + "y": 717.00324 + }, + { + "x": 701.24297, + "y": 695.59488 + }, + [ + { + "#": 5291 + }, + { + "#": 5292 + }, + { + "#": 5293 + }, + { + "#": 5294 + }, + { + "#": 5295 + }, + { + "#": 5296 + }, + { + "#": 5297 + }, + { + "#": 5298 + } + ], + { + "x": -0.9237, + "y": -0.38312 + }, + { + "x": -0.70672, + "y": -0.70749 + }, + { + "x": -0.38212, + "y": -0.92411 + }, + { + "x": 0.00054, + "y": -1 + }, + { + "x": 0.38312, + "y": -0.9237 + }, + { + "x": 0.70749, + "y": -0.70672 + }, + { + "x": 0.92411, + "y": -0.38212 + }, + { + "x": 1, + "y": 0.00054 + }, + { + "id": "14,14,14,14", + "startCol": 14, + "endCol": 14, + "startRow": 14, + "endRow": 14 + }, + { + "id": 105, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5301 + }, + "angle": 0, + "vertices": { + "#": 5302 + }, + "position": { + "#": 5327 + }, + "force": { + "#": 5328 + }, + "torque": 0, + "positionImpulse": { + "#": 5329 + }, + "constraintImpulse": { + "#": 5330 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5331 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5332 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5333 + }, + "circleRadius": 22.73515, + "bounds": { + "#": 5335 + }, + "positionPrev": { + "#": 5338 + }, + "anglePrev": 0, + "axes": { + "#": 5339 + }, + "area": 1605.38693, + "mass": 1.60539, + "inverseMass": 0.6229, + "inertia": 1640.78243, + "inverseInertia": 0.00061, + "parent": { + "#": 5300 + }, + "sleepCounter": 0, + "region": { + "#": 5352 + } + }, + [ + { + "#": 5300 + } + ], + [ + { + "#": 5303 + }, + { + "#": 5304 + }, + { + "#": 5305 + }, + { + "#": 5306 + }, + { + "#": 5307 + }, + { + "#": 5308 + }, + { + "#": 5309 + }, + { + "#": 5310 + }, + { + "#": 5311 + }, + { + "#": 5312 + }, + { + "#": 5313 + }, + { + "#": 5314 + }, + { + "#": 5315 + }, + { + "#": 5316 + }, + { + "#": 5317 + }, + { + "#": 5318 + }, + { + "#": 5319 + }, + { + "#": 5320 + }, + { + "#": 5321 + }, + { + "#": 5322 + }, + { + "#": 5323 + }, + { + "#": 5324 + }, + { + "#": 5325 + }, + { + "#": 5326 + } + ], + { + "x": 131.88368, + "y": 807.741, + "index": 0, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 130.34768, + "y": 813.473, + "index": 1, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 127.37968, + "y": 818.613, + "index": 2, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 123.18268, + "y": 822.81, + "index": 3, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 118.04268, + "y": 825.778, + "index": 4, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 112.31068, + "y": 827.314, + "index": 5, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 106.37468, + "y": 827.314, + "index": 6, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 100.64268, + "y": 825.778, + "index": 7, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 95.50268, + "y": 822.81, + "index": 8, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 91.30568, + "y": 818.613, + "index": 9, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 88.33768, + "y": 813.473, + "index": 10, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 86.80168, + "y": 807.741, + "index": 11, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 86.80168, + "y": 801.805, + "index": 12, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 88.33768, + "y": 796.073, + "index": 13, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 91.30568, + "y": 790.933, + "index": 14, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 95.50268, + "y": 786.736, + "index": 15, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 100.64268, + "y": 783.768, + "index": 16, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 106.37468, + "y": 782.232, + "index": 17, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 112.31068, + "y": 782.232, + "index": 18, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 118.04268, + "y": 783.768, + "index": 19, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 123.18268, + "y": 786.736, + "index": 20, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 127.37968, + "y": 790.933, + "index": 21, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 130.34768, + "y": 796.073, + "index": 22, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 131.88368, + "y": 801.805, + "index": 23, + "body": { + "#": 5300 + }, + "isInternal": false + }, + { + "x": 109.34268, + "y": 804.773 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.78498, + "y": 0.26934 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5334 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5336 + }, + "max": { + "#": 5337 + } + }, + { + "x": 86.80168, + "y": 782.232 + }, + { + "x": 131.88368, + "y": 830.22127 + }, + { + "x": 109.34268, + "y": 801.86573 + }, + [ + { + "#": 5340 + }, + { + "#": 5341 + }, + { + "#": 5342 + }, + { + "#": 5343 + }, + { + "#": 5344 + }, + { + "#": 5345 + }, + { + "#": 5346 + }, + { + "#": 5347 + }, + { + "#": 5348 + }, + { + "#": 5349 + }, + { + "#": 5350 + }, + { + "#": 5351 + } + ], + { + "x": -0.96592, + "y": -0.25884 + }, + { + "x": -0.86599, + "y": -0.50005 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.50005, + "y": -0.86599 + }, + { + "x": -0.25884, + "y": -0.96592 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25884, + "y": -0.96592 + }, + { + "x": 0.50005, + "y": -0.86599 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86599, + "y": -0.50005 + }, + { + "x": 0.96592, + "y": -0.25884 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "1,2,16,17", + "startCol": 1, + "endCol": 2, + "startRow": 16, + "endRow": 17 + }, + { + "id": 106, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5354 + }, + "angle": 0, + "vertices": { + "#": 5355 + }, + "position": { + "#": 5374 + }, + "force": { + "#": 5375 + }, + "torque": 0, + "positionImpulse": { + "#": 5376 + }, + "constraintImpulse": { + "#": 5377 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5378 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5379 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5380 + }, + "circleRadius": 16.96444, + "bounds": { + "#": 5382 + }, + "positionPrev": { + "#": 5385 + }, + "anglePrev": 0, + "axes": { + "#": 5386 + }, + "area": 885.88985, + "mass": 0.88589, + "inverseMass": 1.12881, + "inertia": 499.66154, + "inverseInertia": 0.002, + "parent": { + "#": 5353 + }, + "sleepCounter": 0, + "region": { + "#": 5396 + } + }, + [ + { + "#": 5353 + } + ], + [ + { + "#": 5356 + }, + { + "#": 5357 + }, + { + "#": 5358 + }, + { + "#": 5359 + }, + { + "#": 5360 + }, + { + "#": 5361 + }, + { + "#": 5362 + }, + { + "#": 5363 + }, + { + "#": 5364 + }, + { + "#": 5365 + }, + { + "#": 5366 + }, + { + "#": 5367 + }, + { + "#": 5368 + }, + { + "#": 5369 + }, + { + "#": 5370 + }, + { + "#": 5371 + }, + { + "#": 5372 + }, + { + "#": 5373 + } + ], + { + "x": 182.06143, + "y": 790.02086, + "index": 0, + "body": { + "#": 5353 + }, + "isInternal": false + }, + { + "x": 180.04643, + "y": 795.55686, + "index": 1, + "body": { + "#": 5353 + }, + "isInternal": false + }, + { + "x": 176.25943, + "y": 800.07086, + "index": 2, + "body": { + "#": 5353 + }, + "isInternal": false + }, + { + "x": 171.15643, + "y": 803.01586, + "index": 3, + "body": { + "#": 5353 + }, + "isInternal": false + }, + { + "x": 165.35443, + "y": 804.03886, + "index": 4, + "body": { + "#": 5353 + }, + "isInternal": false + }, + { + "x": 159.55243, + "y": 803.01586, + "index": 5, + "body": { + "#": 5353 + }, + "isInternal": false + }, + { + "x": 154.44943, + "y": 800.07086, + "index": 6, + "body": { + "#": 5353 + }, + "isInternal": false + }, + { + "x": 150.66243, + "y": 795.55686, + "index": 7, + "body": { + "#": 5353 + }, + "isInternal": false + }, + { + "x": 148.64743, + "y": 790.02086, + "index": 8, + "body": { + "#": 5353 + }, + "isInternal": false + }, + { + "x": 148.64743, + "y": 784.12886, + "index": 9, + "body": { + "#": 5353 + }, + "isInternal": false + }, + { + "x": 150.66243, + "y": 778.59286, + "index": 10, + "body": { + "#": 5353 + }, + "isInternal": false + }, + { + "x": 154.44943, + "y": 774.07886, + "index": 11, + "body": { + "#": 5353 + }, + "isInternal": false + }, + { + "x": 159.55243, + "y": 771.13386, + "index": 12, + "body": { + "#": 5353 + }, + "isInternal": false + }, + { + "x": 165.35443, + "y": 770.11086, + "index": 13, + "body": { + "#": 5353 + }, + "isInternal": false + }, + { + "x": 171.15643, + "y": 771.13386, + "index": 14, + "body": { + "#": 5353 + }, + "isInternal": false + }, + { + "x": 176.25943, + "y": 774.07886, + "index": 15, + "body": { + "#": 5353 + }, + "isInternal": false + }, + { + "x": 180.04643, + "y": 778.59286, + "index": 16, + "body": { + "#": 5353 + }, + "isInternal": false + }, + { + "x": 182.06143, + "y": 784.12886, + "index": 17, + "body": { + "#": 5353 + }, + "isInternal": false + }, + { + "x": 165.35443, + "y": 787.07486 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.38847, + "y": 1.33714 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5381 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5383 + }, + "max": { + "#": 5384 + } + }, + { + "x": 148.64743, + "y": 770.11086 + }, + { + "x": 182.06143, + "y": 806.94613 + }, + { + "x": 165.35443, + "y": 784.16759 + }, + [ + { + "#": 5387 + }, + { + "#": 5388 + }, + { + "#": 5389 + }, + { + "#": 5390 + }, + { + "#": 5391 + }, + { + "#": 5392 + }, + { + "#": 5393 + }, + { + "#": 5394 + }, + { + "#": 5395 + } + ], + { + "x": -0.93969, + "y": -0.34203 + }, + { + "x": -0.7661, + "y": -0.64272 + }, + { + "x": -0.49984, + "y": -0.86611 + }, + { + "x": -0.17364, + "y": -0.98481 + }, + { + "x": 0.17364, + "y": -0.98481 + }, + { + "x": 0.49984, + "y": -0.86611 + }, + { + "x": 0.7661, + "y": -0.64272 + }, + { + "x": 0.93969, + "y": -0.34203 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,3,16,16", + "startCol": 3, + "endCol": 3, + "startRow": 16, + "endRow": 16 + }, + { + "id": 107, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5398 + }, + "angle": 0.00237, + "vertices": { + "#": 5399 + }, + "position": { + "#": 5424 + }, + "force": { + "#": 5425 + }, + "torque": 0, + "positionImpulse": { + "#": 5426 + }, + "constraintImpulse": { + "#": 5427 + }, + "totalContacts": 0, + "speed": 2.90904, + "angularSpeed": 0.00046, + "velocity": { + "#": 5428 + }, + "angularVelocity": 0.00046, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5429 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5430 + }, + "circleRadius": 23.7709, + "bounds": { + "#": 5432 + }, + "positionPrev": { + "#": 5435 + }, + "anglePrev": 0.00191, + "axes": { + "#": 5436 + }, + "area": 1754.99178, + "mass": 1.75499, + "inverseMass": 0.5698, + "inertia": 1960.83804, + "inverseInertia": 0.00051, + "parent": { + "#": 5397 + }, + "sleepCounter": 0, + "region": { + "#": 5449 + } + }, + [ + { + "#": 5397 + } + ], + [ + { + "#": 5400 + }, + { + "#": 5401 + }, + { + "#": 5402 + }, + { + "#": 5403 + }, + { + "#": 5404 + }, + { + "#": 5405 + }, + { + "#": 5406 + }, + { + "#": 5407 + }, + { + "#": 5408 + }, + { + "#": 5409 + }, + { + "#": 5410 + }, + { + "#": 5411 + }, + { + "#": 5412 + }, + { + "#": 5413 + }, + { + "#": 5414 + }, + { + "#": 5415 + }, + { + "#": 5416 + }, + { + "#": 5417 + }, + { + "#": 5418 + }, + { + "#": 5419 + }, + { + "#": 5420 + }, + { + "#": 5421 + }, + { + "#": 5422 + }, + { + "#": 5423 + } + ], + { + "x": 231.82435, + "y": 815.03423, + "index": 0, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 230.20313, + "y": 821.0244, + "index": 1, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 227.08839, + "y": 826.39102, + "index": 2, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 222.68999, + "y": 830.7686, + "index": 3, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 217.30864, + "y": 833.85784, + "index": 4, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 211.31084, + "y": 835.45061, + "index": 5, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 205.10486, + "y": 835.43588, + "index": 6, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 199.11469, + "y": 833.81466, + "index": 7, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 193.74807, + "y": 830.69992, + "index": 8, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 189.37049, + "y": 826.30152, + "index": 9, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 186.28126, + "y": 820.92017, + "index": 10, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 184.68848, + "y": 814.92237, + "index": 11, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 184.70321, + "y": 808.71639, + "index": 12, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 186.32443, + "y": 802.72622, + "index": 13, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 189.43918, + "y": 797.3596, + "index": 14, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 193.83758, + "y": 792.98202, + "index": 15, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 199.21892, + "y": 789.89278, + "index": 16, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 205.21672, + "y": 788.30001, + "index": 17, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 211.4227, + "y": 788.31474, + "index": 18, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 217.41287, + "y": 789.93596, + "index": 19, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 222.7795, + "y": 793.05071, + "index": 20, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 227.15707, + "y": 797.44911, + "index": 21, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 230.24631, + "y": 802.83045, + "index": 22, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 231.83908, + "y": 808.82825, + "index": 23, + "body": { + "#": 5397 + }, + "isInternal": false + }, + { + "x": 208.26378, + "y": 811.87531 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.76405, + "y": 0.68885 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.0065, + "y": 2.90903 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5431 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5433 + }, + "max": { + "#": 5434 + } + }, + { + "x": 184.68848, + "y": 788.30001 + }, + { + "x": 231.84558, + "y": 838.35964 + }, + { + "x": 208.25728, + "y": 808.96628 + }, + [ + { + "#": 5437 + }, + { + "#": 5438 + }, + { + "#": 5439 + }, + { + "#": 5440 + }, + { + "#": 5441 + }, + { + "#": 5442 + }, + { + "#": 5443 + }, + { + "#": 5444 + }, + { + "#": 5445 + }, + { + "#": 5446 + }, + { + "#": 5447 + }, + { + "#": 5448 + } + ], + { + "x": -0.96527, + "y": -0.26125 + }, + { + "x": -0.86488, + "y": -0.50197 + }, + { + "x": -0.70543, + "y": -0.70878 + }, + { + "x": -0.49786, + "y": -0.86726 + }, + { + "x": -0.25666, + "y": -0.9665 + }, + { + "x": 0.00237, + "y": -1 + }, + { + "x": 0.26125, + "y": -0.96527 + }, + { + "x": 0.50197, + "y": -0.86488 + }, + { + "x": 0.70878, + "y": -0.70543 + }, + { + "x": 0.86726, + "y": -0.49786 + }, + { + "x": 0.9665, + "y": -0.25666 + }, + { + "x": 1, + "y": 0.00237 + }, + { + "id": "3,4,16,17", + "startCol": 3, + "endCol": 4, + "startRow": 16, + "endRow": 17 + }, + { + "id": 108, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5451 + }, + "angle": -0.00024, + "vertices": { + "#": 5452 + }, + "position": { + "#": 5479 + }, + "force": { + "#": 5480 + }, + "torque": 0, + "positionImpulse": { + "#": 5481 + }, + "constraintImpulse": { + "#": 5482 + }, + "totalContacts": 0, + "speed": 2.8973, + "angularSpeed": 0.00018, + "velocity": { + "#": 5483 + }, + "angularVelocity": -0.00018, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5484 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5485 + }, + "circleRadius": 29.45081, + "bounds": { + "#": 5487 + }, + "positionPrev": { + "#": 5490 + }, + "anglePrev": -0.00006, + "axes": { + "#": 5491 + }, + "area": 2698.39309, + "mass": 2.69839, + "inverseMass": 0.37059, + "inertia": 4635.52409, + "inverseInertia": 0.00022, + "parent": { + "#": 5450 + }, + "sleepCounter": 0, + "region": { + "#": 5505 + } + }, + [ + { + "#": 5450 + } + ], + [ + { + "#": 5453 + }, + { + "#": 5454 + }, + { + "#": 5455 + }, + { + "#": 5456 + }, + { + "#": 5457 + }, + { + "#": 5458 + }, + { + "#": 5459 + }, + { + "#": 5460 + }, + { + "#": 5461 + }, + { + "#": 5462 + }, + { + "#": 5463 + }, + { + "#": 5464 + }, + { + "#": 5465 + }, + { + "#": 5466 + }, + { + "#": 5467 + }, + { + "#": 5468 + }, + { + "#": 5469 + }, + { + "#": 5470 + }, + { + "#": 5471 + }, + { + "#": 5472 + }, + { + "#": 5473 + }, + { + "#": 5474 + }, + { + "#": 5475 + }, + { + "#": 5476 + }, + { + "#": 5477 + }, + { + "#": 5478 + } + ], + { + "x": 299.26231, + "y": 832.0019, + "index": 0, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 297.56496, + "y": 838.8953, + "index": 1, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 294.26746, + "y": 845.18309, + "index": 2, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 289.55973, + "y": 850.49822, + "index": 3, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 283.71769, + "y": 854.53261, + "index": 4, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 277.08029, + "y": 857.0522, + "index": 5, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 270.03249, + "y": 857.90988, + "index": 6, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 262.98429, + "y": 857.05556, + "index": 7, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 256.34569, + "y": 854.53915, + "index": 8, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 250.50173, + "y": 850.50754, + "index": 9, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 245.79146, + "y": 845.19467, + "index": 10, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 242.49096, + "y": 838.90845, + "index": 11, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 240.79031, + "y": 832.01586, + "index": 12, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 240.78862, + "y": 824.91586, + "index": 13, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 242.48597, + "y": 818.02246, + "index": 14, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 245.78347, + "y": 811.73467, + "index": 15, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 250.4912, + "y": 806.41954, + "index": 16, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 256.33324, + "y": 802.38515, + "index": 17, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 262.97063, + "y": 799.86556, + "index": 18, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 270.01843, + "y": 799.00788, + "index": 19, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 277.06663, + "y": 799.8622, + "index": 20, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 283.70524, + "y": 802.37861, + "index": 21, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 289.5492, + "y": 806.41022, + "index": 22, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 294.25947, + "y": 811.72309, + "index": 23, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 297.55997, + "y": 818.00931, + "index": 24, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 299.26061, + "y": 824.9019, + "index": 25, + "body": { + "#": 5450 + }, + "isInternal": false + }, + { + "x": 270.02546, + "y": 828.45888 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -1.20325, + "y": 1.03556 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00246, + "y": 2.89729 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5486 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5488 + }, + "max": { + "#": 5489 + } + }, + { + "x": 240.78616, + "y": 799.00788 + }, + { + "x": 299.26231, + "y": 860.80717 + }, + { + "x": 270.02792, + "y": 825.56159 + }, + [ + { + "#": 5492 + }, + { + "#": 5493 + }, + { + "#": 5494 + }, + { + "#": 5495 + }, + { + "#": 5496 + }, + { + "#": 5497 + }, + { + "#": 5498 + }, + { + "#": 5499 + }, + { + "#": 5500 + }, + { + "#": 5501 + }, + { + "#": 5502 + }, + { + "#": 5503 + }, + { + "#": 5504 + } + ], + { + "x": -0.971, + "y": -0.23909 + }, + { + "x": -0.88561, + "y": -0.46444 + }, + { + "x": -0.74858, + "y": -0.66304 + }, + { + "x": -0.56825, + "y": -0.82286 + }, + { + "x": -0.35489, + "y": -0.93491 + }, + { + "x": -0.1208, + "y": -0.99268 + }, + { + "x": 0.12033, + "y": -0.99273 + }, + { + "x": 0.35445, + "y": -0.93508 + }, + { + "x": 0.56786, + "y": -0.82313 + }, + { + "x": 0.74827, + "y": -0.6634 + }, + { + "x": 0.88538, + "y": -0.46486 + }, + { + "x": 0.97088, + "y": -0.23955 + }, + { + "x": 1, + "y": -0.00024 + }, + { + "id": "5,6,16,17", + "startCol": 5, + "endCol": 6, + "startRow": 16, + "endRow": 17 + }, + { + "id": 109, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5507 + }, + "angle": -0.00113, + "vertices": { + "#": 5508 + }, + "position": { + "#": 5529 + }, + "force": { + "#": 5530 + }, + "torque": 0, + "positionImpulse": { + "#": 5531 + }, + "constraintImpulse": { + "#": 5532 + }, + "totalContacts": 0, + "speed": 2.90961, + "angularSpeed": 0.00078, + "velocity": { + "#": 5533 + }, + "angularVelocity": 0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5534 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5535 + }, + "circleRadius": 18.07825, + "bounds": { + "#": 5537 + }, + "positionPrev": { + "#": 5540 + }, + "anglePrev": -0.00034, + "axes": { + "#": 5541 + }, + "area": 1009.94408, + "mass": 1.00994, + "inverseMass": 0.99015, + "inertia": 649.37947, + "inverseInertia": 0.00154, + "parent": { + "#": 5506 + }, + "sleepCounter": 0, + "region": { + "#": 5552 + } + }, + [ + { + "#": 5506 + } + ], + [ + { + "#": 5509 + }, + { + "#": 5510 + }, + { + "#": 5511 + }, + { + "#": 5512 + }, + { + "#": 5513 + }, + { + "#": 5514 + }, + { + "#": 5515 + }, + { + "#": 5516 + }, + { + "#": 5517 + }, + { + "#": 5518 + }, + { + "#": 5519 + }, + { + "#": 5520 + }, + { + "#": 5521 + }, + { + "#": 5522 + }, + { + "#": 5523 + }, + { + "#": 5524 + }, + { + "#": 5525 + }, + { + "#": 5526 + }, + { + "#": 5527 + }, + { + "#": 5528 + } + ], + { + "x": 336.60901, + "y": 821.75093, + "index": 0, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 334.86707, + "y": 827.13189, + "index": 1, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 331.54723, + "y": 831.71164, + "index": 2, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 326.97498, + "y": 835.04179, + "index": 3, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 321.59795, + "y": 836.79585, + "index": 4, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 315.94196, + "y": 836.80222, + "index": 5, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 310.56099, + "y": 835.06028, + "index": 6, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 305.98125, + "y": 831.74044, + "index": 7, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 302.65109, + "y": 827.16819, + "index": 8, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 300.89703, + "y": 821.79116, + "index": 9, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 300.89066, + "y": 816.13517, + "index": 10, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 302.6326, + "y": 810.7542, + "index": 11, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 305.95244, + "y": 806.17446, + "index": 12, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 310.52469, + "y": 802.8443, + "index": 13, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 315.90172, + "y": 801.09025, + "index": 14, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 321.55772, + "y": 801.08387, + "index": 15, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 326.93868, + "y": 802.82581, + "index": 16, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 331.51843, + "y": 806.14565, + "index": 17, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 334.84858, + "y": 810.7179, + "index": 18, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 336.60264, + "y": 816.09493, + "index": 19, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 318.74984, + "y": 818.94305 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.88338, + "y": 0.98086 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00465, + "y": 2.92606 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5536 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5538 + }, + "max": { + "#": 5539 + } + }, + { + "x": 300.89066, + "y": 801.08387 + }, + { + "x": 336.64008, + "y": 839.71167 + }, + { + "x": 318.72604, + "y": 816.03887 + }, + [ + { + "#": 5542 + }, + { + "#": 5543 + }, + { + "#": 5544 + }, + { + "#": 5545 + }, + { + "#": 5546 + }, + { + "#": 5547 + }, + { + "#": 5548 + }, + { + "#": 5549 + }, + { + "#": 5550 + }, + { + "#": 5551 + } + ], + { + "x": -0.95139, + "y": -0.30799 + }, + { + "x": -0.80965, + "y": -0.58691 + }, + { + "x": -0.58874, + "y": -0.80833 + }, + { + "x": -0.31013, + "y": -0.95069 + }, + { + "x": -0.00113, + "y": -1 + }, + { + "x": 0.30799, + "y": -0.95139 + }, + { + "x": 0.58691, + "y": -0.80965 + }, + { + "x": 0.80833, + "y": -0.58874 + }, + { + "x": 0.95069, + "y": -0.31013 + }, + { + "x": 1, + "y": -0.00113 + }, + { + "id": "6,7,16,17", + "startCol": 6, + "endCol": 7, + "startRow": 16, + "endRow": 17 + }, + { + "id": 110, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5554 + }, + "angle": -0.00048, + "vertices": { + "#": 5555 + }, + "position": { + "#": 5576 + }, + "force": { + "#": 5577 + }, + "torque": 0, + "positionImpulse": { + "#": 5578 + }, + "constraintImpulse": { + "#": 5579 + }, + "totalContacts": 0, + "speed": 2.89834, + "angularSpeed": 0.00021, + "velocity": { + "#": 5580 + }, + "angularVelocity": -0.00038, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5581 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5582 + }, + "circleRadius": 18.17175, + "bounds": { + "#": 5584 + }, + "positionPrev": { + "#": 5587 + }, + "anglePrev": -0.00117, + "axes": { + "#": 5588 + }, + "area": 1020.40024, + "mass": 1.0204, + "inverseMass": 0.98001, + "inertia": 662.8954, + "inverseInertia": 0.00151, + "parent": { + "#": 5553 + }, + "sleepCounter": 0, + "region": { + "#": 5599 + } + }, + [ + { + "#": 5553 + } + ], + [ + { + "#": 5556 + }, + { + "#": 5557 + }, + { + "#": 5558 + }, + { + "#": 5559 + }, + { + "#": 5560 + }, + { + "#": 5561 + }, + { + "#": 5562 + }, + { + "#": 5563 + }, + { + "#": 5564 + }, + { + "#": 5565 + }, + { + "#": 5566 + }, + { + "#": 5567 + }, + { + "#": 5568 + }, + { + "#": 5569 + }, + { + "#": 5570 + }, + { + "#": 5571 + }, + { + "#": 5572 + }, + { + "#": 5573 + }, + { + "#": 5574 + }, + { + "#": 5575 + } + ], + { + "x": 424.92947, + "y": 806.48324, + "index": 0, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 423.17507, + "y": 811.89108, + "index": 1, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 419.83529, + "y": 816.49169, + "index": 2, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 415.2379, + "y": 819.83591, + "index": 3, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 409.83175, + "y": 821.59551, + "index": 4, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 404.14575, + "y": 821.59825, + "index": 5, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 398.7379, + "y": 819.84386, + "index": 6, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 394.13729, + "y": 816.50407, + "index": 7, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 390.79308, + "y": 811.90668, + "index": 8, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 389.03347, + "y": 806.50053, + "index": 9, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 389.03073, + "y": 800.81453, + "index": 10, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 390.78513, + "y": 795.40669, + "index": 11, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 394.12491, + "y": 790.80608, + "index": 12, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 398.7223, + "y": 787.46186, + "index": 13, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 404.12846, + "y": 785.70226, + "index": 14, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 409.81445, + "y": 785.69952, + "index": 15, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 415.2223, + "y": 787.45391, + "index": 16, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 419.82291, + "y": 790.7937, + "index": 17, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 423.16713, + "y": 795.39109, + "index": 18, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 424.92673, + "y": 800.79724, + "index": 19, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 406.9801, + "y": 803.64888 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.02488, + "y": 1.35332 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01402, + "y": 2.89201 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5583 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5585 + }, + "max": { + "#": 5586 + } + }, + { + "x": 389.01672, + "y": 785.69952 + }, + { + "x": 424.92947, + "y": 824.49655 + }, + { + "x": 406.9941, + "y": 800.71823 + }, + [ + { + "#": 5589 + }, + { + "#": 5590 + }, + { + "#": 5591 + }, + { + "#": 5592 + }, + { + "#": 5593 + }, + { + "#": 5594 + }, + { + "#": 5595 + }, + { + "#": 5596 + }, + { + "#": 5597 + }, + { + "#": 5598 + } + ], + { + "x": -0.9512, + "y": -0.30858 + }, + { + "x": -0.80925, + "y": -0.58747 + }, + { + "x": -0.58825, + "y": -0.80868 + }, + { + "x": -0.3095, + "y": -0.9509 + }, + { + "x": -0.00048, + "y": -1 + }, + { + "x": 0.30858, + "y": -0.9512 + }, + { + "x": 0.58747, + "y": -0.80925 + }, + { + "x": 0.80868, + "y": -0.58825 + }, + { + "x": 0.9509, + "y": -0.3095 + }, + { + "x": 1, + "y": -0.00048 + }, + { + "id": "8,8,16,17", + "startCol": 8, + "endCol": 8, + "startRow": 16, + "endRow": 17 + }, + { + "id": 111, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5601 + }, + "angle": 0.00197, + "vertices": { + "#": 5602 + }, + "position": { + "#": 5629 + }, + "force": { + "#": 5630 + }, + "torque": 0, + "positionImpulse": { + "#": 5631 + }, + "constraintImpulse": { + "#": 5632 + }, + "totalContacts": 0, + "speed": 2.9146, + "angularSpeed": 0.00066, + "velocity": { + "#": 5633 + }, + "angularVelocity": 0.00059, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5634 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5635 + }, + "circleRadius": 24.36092, + "bounds": { + "#": 5637 + }, + "positionPrev": { + "#": 5640 + }, + "anglePrev": 0.00094, + "axes": { + "#": 5641 + }, + "area": 1846.30768, + "mass": 1.84631, + "inverseMass": 0.54162, + "inertia": 2170.18403, + "inverseInertia": 0.00046, + "parent": { + "#": 5600 + }, + "sleepCounter": 0, + "region": { + "#": 5655 + } + }, + [ + { + "#": 5600 + } + ], + [ + { + "#": 5603 + }, + { + "#": 5604 + }, + { + "#": 5605 + }, + { + "#": 5606 + }, + { + "#": 5607 + }, + { + "#": 5608 + }, + { + "#": 5609 + }, + { + "#": 5610 + }, + { + "#": 5611 + }, + { + "#": 5612 + }, + { + "#": 5613 + }, + { + "#": 5614 + }, + { + "#": 5615 + }, + { + "#": 5616 + }, + { + "#": 5617 + }, + { + "#": 5618 + }, + { + "#": 5619 + }, + { + "#": 5620 + }, + { + "#": 5621 + }, + { + "#": 5622 + }, + { + "#": 5623 + }, + { + "#": 5624 + }, + { + "#": 5625 + }, + { + "#": 5626 + }, + { + "#": 5627 + }, + { + "#": 5628 + } + ], + { + "x": 473.36512, + "y": 801.14467, + "index": 0, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 471.94892, + "y": 806.8449, + "index": 1, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 469.2097, + "y": 812.03952, + "index": 2, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 465.30608, + "y": 816.42686, + "index": 3, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 460.46653, + "y": 819.75436, + "index": 4, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 454.97145, + "y": 821.82556, + "index": 5, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 449.14007, + "y": 822.52211, + "index": 6, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 443.31147, + "y": 821.80265, + "index": 7, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 437.82457, + "y": 819.70987, + "index": 8, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 432.99814, + "y": 816.36338, + "index": 9, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 429.11178, + "y": 811.96073, + "index": 10, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 426.39301, + "y": 806.75538, + "index": 11, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 424.99921, + "y": 801.04963, + "index": 12, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 425.01075, + "y": 795.17764, + "index": 13, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 426.42696, + "y": 789.47741, + "index": 14, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 429.16617, + "y": 784.28278, + "index": 15, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 433.0698, + "y": 779.89545, + "index": 16, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 437.90935, + "y": 776.56795, + "index": 17, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 443.40443, + "y": 774.49674, + "index": 18, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 449.23581, + "y": 773.8002, + "index": 19, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 455.06441, + "y": 774.51966, + "index": 20, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 460.5513, + "y": 776.61244, + "index": 21, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 465.37774, + "y": 779.95893, + "index": 22, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 469.26409, + "y": 784.36158, + "index": 23, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 471.98287, + "y": 789.56693, + "index": 24, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 473.37666, + "y": 795.27268, + "index": 25, + "body": { + "#": 5600 + }, + "isInternal": false + }, + { + "x": 449.18794, + "y": 798.16115 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.11337, + "y": 0.12687 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00098, + "y": 2.91807 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5636 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5638 + }, + "max": { + "#": 5639 + } + }, + { + "x": 424.99823, + "y": 773.8002 + }, + { + "x": 473.37666, + "y": 825.4367 + }, + { + "x": 449.18893, + "y": 795.26444 + }, + [ + { + "#": 5642 + }, + { + "#": 5643 + }, + { + "#": 5644 + }, + { + "#": 5645 + }, + { + "#": 5646 + }, + { + "#": 5647 + }, + { + "#": 5648 + }, + { + "#": 5649 + }, + { + "#": 5650 + }, + { + "#": 5651 + }, + { + "#": 5652 + }, + { + "#": 5653 + }, + { + "#": 5654 + } + ], + { + "x": -0.9705, + "y": -0.24112 + }, + { + "x": -0.88455, + "y": -0.46644 + }, + { + "x": -0.74709, + "y": -0.66472 + }, + { + "x": -0.56656, + "y": -0.82402 + }, + { + "x": -0.3527, + "y": -0.93574 + }, + { + "x": -0.1186, + "y": -0.99294 + }, + { + "x": 0.12251, + "y": -0.99247 + }, + { + "x": 0.35637, + "y": -0.93434 + }, + { + "x": 0.5698, + "y": -0.82178 + }, + { + "x": 0.7497, + "y": -0.66178 + }, + { + "x": 0.88638, + "y": -0.46296 + }, + { + "x": 0.97144, + "y": -0.2373 + }, + { + "x": 1, + "y": 0.00197 + }, + { + "id": "8,9,16,17", + "startCol": 8, + "endCol": 9, + "startRow": 16, + "endRow": 17 + }, + { + "id": 112, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5657 + }, + "angle": -0.00154, + "vertices": { + "#": 5658 + }, + "position": { + "#": 5679 + }, + "force": { + "#": 5680 + }, + "torque": 0, + "positionImpulse": { + "#": 5681 + }, + "constraintImpulse": { + "#": 5682 + }, + "totalContacts": 0, + "speed": 2.88811, + "angularSpeed": 0.00053, + "velocity": { + "#": 5683 + }, + "angularVelocity": 0.00053, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5684 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5685 + }, + "circleRadius": 19.05318, + "bounds": { + "#": 5687 + }, + "positionPrev": { + "#": 5690 + }, + "anglePrev": -0.00207, + "axes": { + "#": 5691 + }, + "area": 1121.86009, + "mass": 1.12186, + "inverseMass": 0.89138, + "inertia": 801.27446, + "inverseInertia": 0.00125, + "parent": { + "#": 5656 + }, + "sleepCounter": 0, + "region": { + "#": 5702 + } + }, + [ + { + "#": 5656 + } + ], + [ + { + "#": 5659 + }, + { + "#": 5660 + }, + { + "#": 5661 + }, + { + "#": 5662 + }, + { + "#": 5663 + }, + { + "#": 5664 + }, + { + "#": 5665 + }, + { + "#": 5666 + }, + { + "#": 5667 + }, + { + "#": 5668 + }, + { + "#": 5669 + }, + { + "#": 5670 + }, + { + "#": 5671 + }, + { + "#": 5672 + }, + { + "#": 5673 + }, + { + "#": 5674 + }, + { + "#": 5675 + }, + { + "#": 5676 + }, + { + "#": 5677 + }, + { + "#": 5678 + } + ], + { + "x": 500.89233, + "y": 832.28543, + "index": 0, + "body": { + "#": 5656 + }, + "isInternal": false + }, + { + "x": 499.05906, + "y": 837.95726, + "index": 1, + "body": { + "#": 5656 + }, + "isInternal": false + }, + { + "x": 495.5625, + "y": 842.78565, + "index": 2, + "body": { + "#": 5656 + }, + "isInternal": false + }, + { + "x": 490.7449, + "y": 846.29708, + "index": 3, + "body": { + "#": 5656 + }, + "isInternal": false + }, + { + "x": 485.07874, + "y": 848.14781, + "index": 4, + "body": { + "#": 5656 + }, + "isInternal": false + }, + { + "x": 479.11675, + "y": 848.15699, + "index": 5, + "body": { + "#": 5656 + }, + "isInternal": false + }, + { + "x": 473.44492, + "y": 846.32373, + "index": 6, + "body": { + "#": 5656 + }, + "isInternal": false + }, + { + "x": 468.61653, + "y": 842.82716, + "index": 7, + "body": { + "#": 5656 + }, + "isInternal": false + }, + { + "x": 465.1051, + "y": 838.00957, + "index": 8, + "body": { + "#": 5656 + }, + "isInternal": false + }, + { + "x": 463.25437, + "y": 832.34341, + "index": 9, + "body": { + "#": 5656 + }, + "isInternal": false + }, + { + "x": 463.24519, + "y": 826.38142, + "index": 10, + "body": { + "#": 5656 + }, + "isInternal": false + }, + { + "x": 465.07845, + "y": 820.70959, + "index": 11, + "body": { + "#": 5656 + }, + "isInternal": false + }, + { + "x": 468.57502, + "y": 815.88119, + "index": 12, + "body": { + "#": 5656 + }, + "isInternal": false + }, + { + "x": 473.39261, + "y": 812.36977, + "index": 13, + "body": { + "#": 5656 + }, + "isInternal": false + }, + { + "x": 479.05877, + "y": 810.51904, + "index": 14, + "body": { + "#": 5656 + }, + "isInternal": false + }, + { + "x": 485.02076, + "y": 810.50985, + "index": 15, + "body": { + "#": 5656 + }, + "isInternal": false + }, + { + "x": 490.69259, + "y": 812.34312, + "index": 16, + "body": { + "#": 5656 + }, + "isInternal": false + }, + { + "x": 495.52099, + "y": 815.83968, + "index": 17, + "body": { + "#": 5656 + }, + "isInternal": false + }, + { + "x": 499.03241, + "y": 820.65728, + "index": 18, + "body": { + "#": 5656 + }, + "isInternal": false + }, + { + "x": 500.88314, + "y": 826.32344, + "index": 19, + "body": { + "#": 5656 + }, + "isInternal": false + }, + { + "x": 482.06876, + "y": 829.33342 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.45934, + "y": 1.10735 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02596, + "y": 2.888 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5686 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5688 + }, + "max": { + "#": 5689 + } + }, + { + "x": 463.24519, + "y": 810.50985 + }, + { + "x": 500.91828, + "y": 851.04499 + }, + { + "x": 482.0428, + "y": 826.44543 + }, + [ + { + "#": 5692 + }, + { + "#": 5693 + }, + { + "#": 5694 + }, + { + "#": 5695 + }, + { + "#": 5696 + }, + { + "#": 5697 + }, + { + "#": 5698 + }, + { + "#": 5699 + }, + { + "#": 5700 + }, + { + "#": 5701 + } + ], + { + "x": -0.95153, + "y": -0.30756 + }, + { + "x": -0.80993, + "y": -0.58653 + }, + { + "x": -0.58902, + "y": -0.80812 + }, + { + "x": -0.31049, + "y": -0.95058 + }, + { + "x": -0.00154, + "y": -1 + }, + { + "x": 0.30756, + "y": -0.95153 + }, + { + "x": 0.58653, + "y": -0.80993 + }, + { + "x": 0.80812, + "y": -0.58902 + }, + { + "x": 0.95058, + "y": -0.31049 + }, + { + "x": 1, + "y": -0.00154 + }, + { + "id": "9,10,16,17", + "startCol": 9, + "endCol": 10, + "startRow": 16, + "endRow": 17 + }, + { + "id": 113, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5704 + }, + "angle": 0.00329, + "vertices": { + "#": 5705 + }, + "position": { + "#": 5726 + }, + "force": { + "#": 5727 + }, + "torque": 0, + "positionImpulse": { + "#": 5728 + }, + "constraintImpulse": { + "#": 5729 + }, + "totalContacts": 0, + "speed": 2.90596, + "angularSpeed": 0.00055, + "velocity": { + "#": 5730 + }, + "angularVelocity": 0.0001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5731 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5732 + }, + "circleRadius": 19.10037, + "bounds": { + "#": 5734 + }, + "positionPrev": { + "#": 5737 + }, + "anglePrev": 0.00246, + "axes": { + "#": 5738 + }, + "area": 1127.3694, + "mass": 1.12737, + "inverseMass": 0.88702, + "inertia": 809.1637, + "inverseInertia": 0.00124, + "parent": { + "#": 5703 + }, + "sleepCounter": 0, + "region": { + "#": 5749 + } + }, + [ + { + "#": 5703 + } + ], + [ + { + "#": 5706 + }, + { + "#": 5707 + }, + { + "#": 5708 + }, + { + "#": 5709 + }, + { + "#": 5710 + }, + { + "#": 5711 + }, + { + "#": 5712 + }, + { + "#": 5713 + }, + { + "#": 5714 + }, + { + "#": 5715 + }, + { + "#": 5716 + }, + { + "#": 5717 + }, + { + "#": 5718 + }, + { + "#": 5719 + }, + { + "#": 5720 + }, + { + "#": 5721 + }, + { + "#": 5722 + }, + { + "#": 5723 + }, + { + "#": 5724 + }, + { + "#": 5725 + } + ], + { + "x": 563.94428, + "y": 807.54417, + "index": 0, + "body": { + "#": 5703 + }, + "isInternal": false + }, + { + "x": 562.07959, + "y": 813.22106, + "index": 1, + "body": { + "#": 5703 + }, + "isInternal": false + }, + { + "x": 558.5507, + "y": 818.04448, + "index": 2, + "body": { + "#": 5703 + }, + "isInternal": false + }, + { + "x": 553.70417, + "y": 821.54155, + "index": 3, + "body": { + "#": 5703 + }, + "isInternal": false + }, + { + "x": 548.01512, + "y": 823.36884, + "index": 4, + "body": { + "#": 5703 + }, + "isInternal": false + }, + { + "x": 542.03916, + "y": 823.34917, + "index": 5, + "body": { + "#": 5703 + }, + "isInternal": false + }, + { + "x": 536.36226, + "y": 821.48448, + "index": 6, + "body": { + "#": 5703 + }, + "isInternal": false + }, + { + "x": 531.53885, + "y": 817.95559, + "index": 7, + "body": { + "#": 5703 + }, + "isInternal": false + }, + { + "x": 528.04178, + "y": 813.10906, + "index": 8, + "body": { + "#": 5703 + }, + "isInternal": false + }, + { + "x": 526.21449, + "y": 807.42002, + "index": 9, + "body": { + "#": 5703 + }, + "isInternal": false + }, + { + "x": 526.23415, + "y": 801.44405, + "index": 10, + "body": { + "#": 5703 + }, + "isInternal": false + }, + { + "x": 528.09884, + "y": 795.76715, + "index": 11, + "body": { + "#": 5703 + }, + "isInternal": false + }, + { + "x": 531.62773, + "y": 790.94374, + "index": 12, + "body": { + "#": 5703 + }, + "isInternal": false + }, + { + "x": 536.47426, + "y": 787.44667, + "index": 13, + "body": { + "#": 5703 + }, + "isInternal": false + }, + { + "x": 542.16331, + "y": 785.61938, + "index": 14, + "body": { + "#": 5703 + }, + "isInternal": false + }, + { + "x": 548.13927, + "y": 785.63904, + "index": 15, + "body": { + "#": 5703 + }, + "isInternal": false + }, + { + "x": 553.81617, + "y": 787.50373, + "index": 16, + "body": { + "#": 5703 + }, + "isInternal": false + }, + { + "x": 558.63958, + "y": 791.03262, + "index": 17, + "body": { + "#": 5703 + }, + "isInternal": false + }, + { + "x": 562.13666, + "y": 795.87916, + "index": 18, + "body": { + "#": 5703 + }, + "isInternal": false + }, + { + "x": 563.96395, + "y": 801.5682, + "index": 19, + "body": { + "#": 5703 + }, + "isInternal": false + }, + { + "x": 545.08922, + "y": 804.49411 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.19147, + "y": 0.63327 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.05214, + "y": 2.90284 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5733 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5735 + }, + "max": { + "#": 5736 + } + }, + { + "x": 526.21449, + "y": 785.61938 + }, + { + "x": 563.97966, + "y": 826.27475 + }, + { + "x": 545.06479, + "y": 801.58667 + }, + [ + { + "#": 5739 + }, + { + "#": 5740 + }, + { + "#": 5741 + }, + { + "#": 5742 + }, + { + "#": 5743 + }, + { + "#": 5744 + }, + { + "#": 5745 + }, + { + "#": 5746 + }, + { + "#": 5747 + }, + { + "#": 5748 + } + ], + { + "x": -0.95006, + "y": -0.31207 + }, + { + "x": -0.80707, + "y": -0.59046 + }, + { + "x": -0.58514, + "y": -0.81093 + }, + { + "x": -0.30581, + "y": -0.95209 + }, + { + "x": 0.00329, + "y": -0.99999 + }, + { + "x": 0.31207, + "y": -0.95006 + }, + { + "x": 0.59046, + "y": -0.80707 + }, + { + "x": 0.81093, + "y": -0.58514 + }, + { + "x": 0.95209, + "y": -0.30581 + }, + { + "x": 0.99999, + "y": 0.00329 + }, + { + "id": "10,11,16,17", + "startCol": 10, + "endCol": 11, + "startRow": 16, + "endRow": 17 + }, + { + "id": 114, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5751 + }, + "angle": -0.00033, + "vertices": { + "#": 5752 + }, + "position": { + "#": 5779 + }, + "force": { + "#": 5780 + }, + "torque": 0, + "positionImpulse": { + "#": 5781 + }, + "constraintImpulse": { + "#": 5782 + }, + "totalContacts": 0, + "speed": 2.91173, + "angularSpeed": 0.00023, + "velocity": { + "#": 5783 + }, + "angularVelocity": -0.00023, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5784 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5785 + }, + "circleRadius": 27.46547, + "bounds": { + "#": 5787 + }, + "positionPrev": { + "#": 5790 + }, + "anglePrev": -0.0001, + "axes": { + "#": 5791 + }, + "area": 2346.8455, + "mass": 2.34685, + "inverseMass": 0.4261, + "inertia": 3506.36732, + "inverseInertia": 0.00029, + "parent": { + "#": 5750 + }, + "sleepCounter": 0, + "region": { + "#": 5805 + } + }, + [ + { + "#": 5750 + } + ], + [ + { + "#": 5753 + }, + { + "#": 5754 + }, + { + "#": 5755 + }, + { + "#": 5756 + }, + { + "#": 5757 + }, + { + "#": 5758 + }, + { + "#": 5759 + }, + { + "#": 5760 + }, + { + "#": 5761 + }, + { + "#": 5762 + }, + { + "#": 5763 + }, + { + "#": 5764 + }, + { + "#": 5765 + }, + { + "#": 5766 + }, + { + "#": 5767 + }, + { + "#": 5768 + }, + { + "#": 5769 + }, + { + "#": 5770 + }, + { + "#": 5771 + }, + { + "#": 5772 + }, + { + "#": 5773 + }, + { + "#": 5774 + }, + { + "#": 5775 + }, + { + "#": 5776 + }, + { + "#": 5777 + }, + { + "#": 5778 + } + ], + { + "x": 627.79608, + "y": 801.32742, + "index": 0, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 626.21423, + "y": 807.75595, + "index": 1, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 623.13919, + "y": 813.61998, + "index": 2, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 618.74985, + "y": 818.57745, + "index": 3, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 613.30211, + "y": 822.34027, + "index": 4, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 607.1119, + "y": 824.69035, + "index": 5, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 600.53916, + "y": 825.49055, + "index": 6, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 593.9659, + "y": 824.69474, + "index": 7, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 587.77411, + "y": 822.34882, + "index": 8, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 582.32385, + "y": 818.58964, + "index": 9, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 577.93119, + "y": 813.63511, + "index": 10, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 574.85223, + "y": 807.77314, + "index": 11, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 573.26608, + "y": 801.34567, + "index": 12, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 573.26387, + "y": 794.72367, + "index": 13, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 574.84571, + "y": 788.29514, + "index": 14, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 577.92075, + "y": 782.43111, + "index": 15, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 582.31009, + "y": 777.47364, + "index": 16, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 587.75783, + "y": 773.71082, + "index": 17, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 593.94805, + "y": 771.36075, + "index": 18, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 600.52078, + "y": 770.56055, + "index": 19, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 607.09405, + "y": 771.35635, + "index": 20, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 613.28583, + "y": 773.70228, + "index": 21, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 618.73609, + "y": 777.46145, + "index": 22, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 623.12875, + "y": 782.41598, + "index": 23, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 626.20771, + "y": 788.27795, + "index": 24, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 627.79386, + "y": 794.70542, + "index": 25, + "body": { + "#": 5750 + }, + "isInternal": false + }, + { + "x": 600.52997, + "y": 798.02555 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.34924, + "y": 0.14422 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00926, + "y": 2.91172 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5786 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5788 + }, + "max": { + "#": 5789 + } + }, + { + "x": 573.26387, + "y": 770.56055 + }, + { + "x": 627.80534, + "y": 828.40226 + }, + { + "x": 600.52071, + "y": 795.11383 + }, + [ + { + "#": 5792 + }, + { + "#": 5793 + }, + { + "#": 5794 + }, + { + "#": 5795 + }, + { + "#": 5796 + }, + { + "#": 5797 + }, + { + "#": 5798 + }, + { + "#": 5799 + }, + { + "#": 5800 + }, + { + "#": 5801 + }, + { + "#": 5802 + }, + { + "#": 5803 + }, + { + "#": 5804 + } + ], + { + "x": -0.97103, + "y": -0.23894 + }, + { + "x": -0.88562, + "y": -0.46441 + }, + { + "x": -0.74871, + "y": -0.6629 + }, + { + "x": -0.56832, + "y": -0.82281 + }, + { + "x": -0.35493, + "y": -0.93489 + }, + { + "x": -0.12085, + "y": -0.99267 + }, + { + "x": 0.12019, + "y": -0.99275 + }, + { + "x": 0.3543, + "y": -0.93513 + }, + { + "x": 0.56777, + "y": -0.82319 + }, + { + "x": 0.74826, + "y": -0.6634 + }, + { + "x": 0.88531, + "y": -0.465 + }, + { + "x": 0.97087, + "y": -0.23959 + }, + { + "x": 1, + "y": -0.00033 + }, + { + "id": "11,13,16,17", + "startCol": 11, + "endCol": 13, + "startRow": 16, + "endRow": 17 + }, + { + "id": 115, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5807 + }, + "angle": 0, + "vertices": { + "#": 5808 + }, + "position": { + "#": 5835 + }, + "force": { + "#": 5836 + }, + "torque": 0, + "positionImpulse": { + "#": 5837 + }, + "constraintImpulse": { + "#": 5838 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5839 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5840 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5841 + }, + "circleRadius": 24.88921, + "bounds": { + "#": 5843 + }, + "positionPrev": { + "#": 5846 + }, + "anglePrev": 0, + "axes": { + "#": 5847 + }, + "area": 1927.25482, + "mass": 1.92725, + "inverseMass": 0.51887, + "inertia": 2364.64904, + "inverseInertia": 0.00042, + "parent": { + "#": 5806 + }, + "sleepCounter": 0, + "region": { + "#": 5861 + } + }, + [ + { + "#": 5806 + } + ], + [ + { + "#": 5809 + }, + { + "#": 5810 + }, + { + "#": 5811 + }, + { + "#": 5812 + }, + { + "#": 5813 + }, + { + "#": 5814 + }, + { + "#": 5815 + }, + { + "#": 5816 + }, + { + "#": 5817 + }, + { + "#": 5818 + }, + { + "#": 5819 + }, + { + "#": 5820 + }, + { + "#": 5821 + }, + { + "#": 5822 + }, + { + "#": 5823 + }, + { + "#": 5824 + }, + { + "#": 5825 + }, + { + "#": 5826 + }, + { + "#": 5827 + }, + { + "#": 5828 + }, + { + "#": 5829 + }, + { + "#": 5830 + }, + { + "#": 5831 + }, + { + "#": 5832 + }, + { + "#": 5833 + }, + { + "#": 5834 + } + ], + { + "x": 151.9846, + "y": 858.52619, + "index": 0, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 150.5486, + "y": 864.35219, + "index": 1, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 147.7596, + "y": 869.66519, + "index": 2, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 143.7816, + "y": 874.15619, + "index": 3, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 138.8436, + "y": 877.56419, + "index": 4, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 133.2326, + "y": 879.69219, + "index": 5, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 127.2766, + "y": 880.41519, + "index": 6, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 121.3206, + "y": 879.69219, + "index": 7, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 115.7096, + "y": 877.56419, + "index": 8, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 110.7716, + "y": 874.15619, + "index": 9, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 106.7936, + "y": 869.66519, + "index": 10, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 104.0046, + "y": 864.35219, + "index": 11, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 102.5686, + "y": 858.52619, + "index": 12, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 102.5686, + "y": 852.52619, + "index": 13, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 104.0046, + "y": 846.70019, + "index": 14, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 106.7936, + "y": 841.38719, + "index": 15, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 110.7716, + "y": 836.89619, + "index": 16, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 115.7096, + "y": 833.48819, + "index": 17, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 121.3206, + "y": 831.36019, + "index": 18, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 127.2766, + "y": 830.63719, + "index": 19, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 133.2326, + "y": 831.36019, + "index": 20, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 138.8436, + "y": 833.48819, + "index": 21, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 143.7816, + "y": 836.89619, + "index": 22, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 147.7596, + "y": 841.38719, + "index": 23, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 150.5486, + "y": 846.70019, + "index": 24, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 151.9846, + "y": 852.52619, + "index": 25, + "body": { + "#": 5806 + }, + "isInternal": false + }, + { + "x": 127.2766, + "y": 855.52619 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.3564, + "y": 1.33001 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5842 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5844 + }, + "max": { + "#": 5845 + } + }, + { + "x": 102.5686, + "y": 830.63719 + }, + { + "x": 151.9846, + "y": 883.32246 + }, + { + "x": 127.2766, + "y": 852.61892 + }, + [ + { + "#": 5848 + }, + { + "#": 5849 + }, + { + "#": 5850 + }, + { + "#": 5851 + }, + { + "#": 5852 + }, + { + "#": 5853 + }, + { + "#": 5854 + }, + { + "#": 5855 + }, + { + "#": 5856 + }, + { + "#": 5857 + }, + { + "#": 5858 + }, + { + "#": 5859 + }, + { + "#": 5860 + } + ], + { + "x": -0.97094, + "y": -0.23932 + }, + { + "x": -0.88542, + "y": -0.46479 + }, + { + "x": -0.74857, + "y": -0.66306 + }, + { + "x": -0.56801, + "y": -0.82302 + }, + { + "x": -0.35461, + "y": -0.93501 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35461, + "y": -0.93501 + }, + { + "x": 0.56801, + "y": -0.82302 + }, + { + "x": 0.74857, + "y": -0.66306 + }, + { + "x": 0.88542, + "y": -0.46479 + }, + { + "x": 0.97094, + "y": -0.23932 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,3,17,18", + "startCol": 2, + "endCol": 3, + "startRow": 17, + "endRow": 18 + }, + { + "id": 116, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5863 + }, + "angle": 0, + "vertices": { + "#": 5864 + }, + "position": { + "#": 5883 + }, + "force": { + "#": 5884 + }, + "torque": 0, + "positionImpulse": { + "#": 5885 + }, + "constraintImpulse": { + "#": 5886 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5887 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5888 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5889 + }, + "circleRadius": 16.55678, + "bounds": { + "#": 5891 + }, + "positionPrev": { + "#": 5894 + }, + "anglePrev": 0, + "axes": { + "#": 5895 + }, + "area": 843.7976, + "mass": 0.8438, + "inverseMass": 1.18512, + "inertia": 453.30764, + "inverseInertia": 0.00221, + "parent": { + "#": 5862 + }, + "sleepCounter": 0, + "region": { + "#": 5905 + } + }, + [ + { + "#": 5862 + } + ], + [ + { + "#": 5865 + }, + { + "#": 5866 + }, + { + "#": 5867 + }, + { + "#": 5868 + }, + { + "#": 5869 + }, + { + "#": 5870 + }, + { + "#": 5871 + }, + { + "#": 5872 + }, + { + "#": 5873 + }, + { + "#": 5874 + }, + { + "#": 5875 + }, + { + "#": 5876 + }, + { + "#": 5877 + }, + { + "#": 5878 + }, + { + "#": 5879 + }, + { + "#": 5880 + }, + { + "#": 5881 + }, + { + "#": 5882 + } + ], + { + "x": 192.026, + "y": 840.48375, + "index": 0, + "body": { + "#": 5862 + }, + "isInternal": false + }, + { + "x": 190.06, + "y": 845.88675, + "index": 1, + "body": { + "#": 5862 + }, + "isInternal": false + }, + { + "x": 186.363, + "y": 850.29175, + "index": 2, + "body": { + "#": 5862 + }, + "isInternal": false + }, + { + "x": 181.384, + "y": 853.16675, + "index": 3, + "body": { + "#": 5862 + }, + "isInternal": false + }, + { + "x": 175.721, + "y": 854.16575, + "index": 4, + "body": { + "#": 5862 + }, + "isInternal": false + }, + { + "x": 170.058, + "y": 853.16675, + "index": 5, + "body": { + "#": 5862 + }, + "isInternal": false + }, + { + "x": 165.079, + "y": 850.29175, + "index": 6, + "body": { + "#": 5862 + }, + "isInternal": false + }, + { + "x": 161.382, + "y": 845.88675, + "index": 7, + "body": { + "#": 5862 + }, + "isInternal": false + }, + { + "x": 159.416, + "y": 840.48375, + "index": 8, + "body": { + "#": 5862 + }, + "isInternal": false + }, + { + "x": 159.416, + "y": 834.73375, + "index": 9, + "body": { + "#": 5862 + }, + "isInternal": false + }, + { + "x": 161.382, + "y": 829.33075, + "index": 10, + "body": { + "#": 5862 + }, + "isInternal": false + }, + { + "x": 165.079, + "y": 824.92575, + "index": 11, + "body": { + "#": 5862 + }, + "isInternal": false + }, + { + "x": 170.058, + "y": 822.05075, + "index": 12, + "body": { + "#": 5862 + }, + "isInternal": false + }, + { + "x": 175.721, + "y": 821.05175, + "index": 13, + "body": { + "#": 5862 + }, + "isInternal": false + }, + { + "x": 181.384, + "y": 822.05075, + "index": 14, + "body": { + "#": 5862 + }, + "isInternal": false + }, + { + "x": 186.363, + "y": 824.92575, + "index": 15, + "body": { + "#": 5862 + }, + "isInternal": false + }, + { + "x": 190.06, + "y": 829.33075, + "index": 16, + "body": { + "#": 5862 + }, + "isInternal": false + }, + { + "x": 192.026, + "y": 834.73375, + "index": 17, + "body": { + "#": 5862 + }, + "isInternal": false + }, + { + "x": 175.721, + "y": 837.60875 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5890 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5892 + }, + "max": { + "#": 5893 + } + }, + { + "x": 159.416, + "y": 821.05175 + }, + { + "x": 192.026, + "y": 854.16575 + }, + { + "x": 175.721, + "y": 834.70148 + }, + [ + { + "#": 5896 + }, + { + "#": 5897 + }, + { + "#": 5898 + }, + { + "#": 5899 + }, + { + "#": 5900 + }, + { + "#": 5901 + }, + { + "#": 5902 + }, + { + "#": 5903 + }, + { + "#": 5904 + } + ], + { + "x": -0.93972, + "y": -0.34194 + }, + { + "x": -0.76598, + "y": -0.64287 + }, + { + "x": -0.50005, + "y": -0.866 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.50005, + "y": -0.866 + }, + { + "x": 0.76598, + "y": -0.64287 + }, + { + "x": 0.93972, + "y": -0.34194 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,17,17", + "startCol": 3, + "endCol": 4, + "startRow": 17, + "endRow": 17 + }, + { + "id": 117, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5907 + }, + "angle": 0.00014, + "vertices": { + "#": 5908 + }, + "position": { + "#": 5935 + }, + "force": { + "#": 5936 + }, + "torque": 0, + "positionImpulse": { + "#": 5937 + }, + "constraintImpulse": { + "#": 5938 + }, + "totalContacts": 0, + "speed": 2.90874, + "angularSpeed": 0.00007, + "velocity": { + "#": 5939 + }, + "angularVelocity": 0.00004, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5940 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5941 + }, + "circleRadius": 28.76447, + "bounds": { + "#": 5943 + }, + "positionPrev": { + "#": 5946 + }, + "anglePrev": 0.00002, + "axes": { + "#": 5947 + }, + "area": 2574.13853, + "mass": 2.57414, + "inverseMass": 0.38848, + "inertia": 4218.44352, + "inverseInertia": 0.00024, + "parent": { + "#": 5906 + }, + "sleepCounter": 0, + "region": { + "#": 5961 + } + }, + [ + { + "#": 5906 + } + ], + [ + { + "#": 5909 + }, + { + "#": 5910 + }, + { + "#": 5911 + }, + { + "#": 5912 + }, + { + "#": 5913 + }, + { + "#": 5914 + }, + { + "#": 5915 + }, + { + "#": 5916 + }, + { + "#": 5917 + }, + { + "#": 5918 + }, + { + "#": 5919 + }, + { + "#": 5920 + }, + { + "#": 5921 + }, + { + "#": 5922 + }, + { + "#": 5923 + }, + { + "#": 5924 + }, + { + "#": 5925 + }, + { + "#": 5926 + }, + { + "#": 5927 + }, + { + "#": 5928 + }, + { + "#": 5929 + }, + { + "#": 5930 + }, + { + "#": 5931 + }, + { + "#": 5932 + }, + { + "#": 5933 + }, + { + "#": 5934 + } + ], + { + "x": 247.75012, + "y": 869.06066, + "index": 0, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 246.08916, + "y": 875.79342, + "index": 1, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 242.86629, + "y": 881.93297, + "index": 2, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 238.26655, + "y": 887.12331, + "index": 3, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 232.55999, + "y": 891.0615, + "index": 4, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 226.07564, + "y": 893.51957, + "index": 5, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 219.19152, + "y": 894.35359, + "index": 6, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 212.30764, + "y": 893.51761, + "index": 7, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 205.82399, + "y": 891.05769, + "index": 8, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 200.11855, + "y": 887.11788, + "index": 9, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 195.52029, + "y": 881.92622, + "index": 10, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 192.29916, + "y": 875.78576, + "index": 11, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 190.64012, + "y": 869.05253, + "index": 12, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 190.64111, + "y": 862.11853, + "index": 13, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 192.30207, + "y": 855.38576, + "index": 14, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 195.52494, + "y": 849.24622, + "index": 15, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 200.12468, + "y": 844.05588, + "index": 16, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 205.83124, + "y": 840.11769, + "index": 17, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 212.31559, + "y": 837.65961, + "index": 18, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 219.19971, + "y": 836.82559, + "index": 19, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 226.08359, + "y": 837.66157, + "index": 20, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 232.56724, + "y": 840.1215, + "index": 21, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 238.27268, + "y": 844.06131, + "index": 22, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 242.87094, + "y": 849.25297, + "index": 23, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 246.09207, + "y": 855.39342, + "index": 24, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 247.75111, + "y": 862.12666, + "index": 25, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 219.19562, + "y": 865.58959 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.98976, + "y": 0.80172 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00498, + "y": 2.90819 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5942 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5944 + }, + "max": { + "#": 5945 + } + }, + { + "x": 190.64012, + "y": 836.82559 + }, + { + "x": 247.75485, + "y": 897.26233 + }, + { + "x": 219.19486, + "y": 862.67987 + }, + [ + { + "#": 5948 + }, + { + "#": 5949 + }, + { + "#": 5950 + }, + { + "#": 5951 + }, + { + "#": 5952 + }, + { + "#": 5953 + }, + { + "#": 5954 + }, + { + "#": 5955 + }, + { + "#": 5956 + }, + { + "#": 5957 + }, + { + "#": 5958 + }, + { + "#": 5959 + }, + { + "#": 5960 + } + ], + { + "x": -0.97089, + "y": -0.23952 + }, + { + "x": -0.88542, + "y": -0.46479 + }, + { + "x": -0.7484, + "y": -0.66324 + }, + { + "x": -0.56799, + "y": -0.82304 + }, + { + "x": -0.35446, + "y": -0.93507 + }, + { + "x": -0.12027, + "y": -0.99274 + }, + { + "x": 0.12055, + "y": -0.99271 + }, + { + "x": 0.35473, + "y": -0.93497 + }, + { + "x": 0.56822, + "y": -0.82287 + }, + { + "x": 0.74859, + "y": -0.66303 + }, + { + "x": 0.88555, + "y": -0.46454 + }, + { + "x": 0.97096, + "y": -0.23924 + }, + { + "x": 1, + "y": 0.00014 + }, + { + "id": "3,5,17,18", + "startCol": 3, + "endCol": 5, + "startRow": 17, + "endRow": 18 + }, + { + "id": 118, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5963 + }, + "angle": 0, + "vertices": { + "#": 5964 + }, + "position": { + "#": 5991 + }, + "force": { + "#": 5992 + }, + "torque": 0, + "positionImpulse": { + "#": 5993 + }, + "constraintImpulse": { + "#": 5994 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5995 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5996 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5997 + }, + "circleRadius": 25.58636, + "bounds": { + "#": 5999 + }, + "positionPrev": { + "#": 6002 + }, + "anglePrev": 0, + "axes": { + "#": 6003 + }, + "area": 2036.75221, + "mass": 2.03675, + "inverseMass": 0.49098, + "inertia": 2640.97811, + "inverseInertia": 0.00038, + "parent": { + "#": 5962 + }, + "sleepCounter": 0, + "region": { + "#": 6017 + } + }, + [ + { + "#": 5962 + } + ], + [ + { + "#": 5965 + }, + { + "#": 5966 + }, + { + "#": 5967 + }, + { + "#": 5968 + }, + { + "#": 5969 + }, + { + "#": 5970 + }, + { + "#": 5971 + }, + { + "#": 5972 + }, + { + "#": 5973 + }, + { + "#": 5974 + }, + { + "#": 5975 + }, + { + "#": 5976 + }, + { + "#": 5977 + }, + { + "#": 5978 + }, + { + "#": 5979 + }, + { + "#": 5980 + }, + { + "#": 5981 + }, + { + "#": 5982 + }, + { + "#": 5983 + }, + { + "#": 5984 + }, + { + "#": 5985 + }, + { + "#": 5986 + }, + { + "#": 5987 + }, + { + "#": 5988 + }, + { + "#": 5989 + }, + { + "#": 5990 + } + ], + { + "x": 344.64646, + "y": 881.45199, + "index": 0, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 343.17046, + "y": 887.44099, + "index": 1, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 340.30346, + "y": 892.90299, + "index": 2, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 336.21346, + "y": 897.51999, + "index": 3, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 331.13746, + "y": 901.02399, + "index": 4, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 325.36946, + "y": 903.21099, + "index": 5, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 319.24646, + "y": 903.95399, + "index": 6, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 313.12346, + "y": 903.21099, + "index": 7, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 307.35546, + "y": 901.02399, + "index": 8, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 302.27946, + "y": 897.51999, + "index": 9, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 298.18946, + "y": 892.90299, + "index": 10, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 295.32246, + "y": 887.44099, + "index": 11, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 293.84646, + "y": 881.45199, + "index": 12, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 293.84646, + "y": 875.28399, + "index": 13, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 295.32246, + "y": 869.29499, + "index": 14, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 298.18946, + "y": 863.83299, + "index": 15, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 302.27946, + "y": 859.21599, + "index": 16, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 307.35546, + "y": 855.71199, + "index": 17, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 313.12346, + "y": 853.52499, + "index": 18, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 319.24646, + "y": 852.78199, + "index": 19, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 325.36946, + "y": 853.52499, + "index": 20, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 331.13746, + "y": 855.71199, + "index": 21, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 336.21346, + "y": 859.21599, + "index": 22, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 340.30346, + "y": 863.83299, + "index": 23, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 343.17046, + "y": 869.29499, + "index": 24, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 344.64646, + "y": 875.28399, + "index": 25, + "body": { + "#": 5962 + }, + "isInternal": false + }, + { + "x": 319.24646, + "y": 878.36799 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.51894, + "y": 0.01809 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5998 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6000 + }, + "max": { + "#": 6001 + } + }, + { + "x": 293.84646, + "y": 852.78199 + }, + { + "x": 344.64646, + "y": 906.86126 + }, + { + "x": 319.24646, + "y": 875.46072 + }, + [ + { + "#": 6004 + }, + { + "#": 6005 + }, + { + "#": 6006 + }, + { + "#": 6007 + }, + { + "#": 6008 + }, + { + "#": 6009 + }, + { + "#": 6010 + }, + { + "#": 6011 + }, + { + "#": 6012 + }, + { + "#": 6013 + }, + { + "#": 6014 + }, + { + "#": 6015 + }, + { + "#": 6016 + } + ], + { + "x": -0.97095, + "y": -0.23929 + }, + { + "x": -0.88543, + "y": -0.46476 + }, + { + "x": -0.74854, + "y": -0.66309 + }, + { + "x": -0.5681, + "y": -0.82296 + }, + { + "x": -0.35453, + "y": -0.93504 + }, + { + "x": -0.12046, + "y": -0.99272 + }, + { + "x": 0.12046, + "y": -0.99272 + }, + { + "x": 0.35453, + "y": -0.93504 + }, + { + "x": 0.5681, + "y": -0.82296 + }, + { + "x": 0.74854, + "y": -0.66309 + }, + { + "x": 0.88543, + "y": -0.46476 + }, + { + "x": 0.97095, + "y": -0.23929 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,17,18", + "startCol": 6, + "endCol": 7, + "startRow": 17, + "endRow": 18 + }, + { + "id": 119, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6019 + }, + "angle": 0, + "vertices": { + "#": 6020 + }, + "position": { + "#": 6037 + }, + "force": { + "#": 6038 + }, + "torque": 0, + "positionImpulse": { + "#": 6039 + }, + "constraintImpulse": { + "#": 6040 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6041 + }, + "angularVelocity": 0.00129, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6042 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6043 + }, + "circleRadius": 15.54096, + "bounds": { + "#": 6045 + }, + "positionPrev": { + "#": 6048 + }, + "anglePrev": 0.00001, + "axes": { + "#": 6049 + }, + "area": 739.39893, + "mass": 0.7394, + "inverseMass": 1.35245, + "inertia": 348.09373, + "inverseInertia": 0.00287, + "parent": { + "#": 6018 + }, + "sleepCounter": 0, + "region": { + "#": 6058 + } + }, + [ + { + "#": 6018 + } + ], + [ + { + "#": 6021 + }, + { + "#": 6022 + }, + { + "#": 6023 + }, + { + "#": 6024 + }, + { + "#": 6025 + }, + { + "#": 6026 + }, + { + "#": 6027 + }, + { + "#": 6028 + }, + { + "#": 6029 + }, + { + "#": 6030 + }, + { + "#": 6031 + }, + { + "#": 6032 + }, + { + "#": 6033 + }, + { + "#": 6034 + }, + { + "#": 6035 + }, + { + "#": 6036 + } + ], + { + "x": 361.84032, + "y": 840.35534, + "index": 0, + "body": { + "#": 6018 + }, + "isInternal": false + }, + { + "x": 359.52032, + "y": 845.95734, + "index": 1, + "body": { + "#": 6018 + }, + "isInternal": false + }, + { + "x": 355.23232, + "y": 850.24534, + "index": 2, + "body": { + "#": 6018 + }, + "isInternal": false + }, + { + "x": 349.63032, + "y": 852.56534, + "index": 3, + "body": { + "#": 6018 + }, + "isInternal": false + }, + { + "x": 343.56632, + "y": 852.56534, + "index": 4, + "body": { + "#": 6018 + }, + "isInternal": false + }, + { + "x": 337.96432, + "y": 850.24534, + "index": 5, + "body": { + "#": 6018 + }, + "isInternal": false + }, + { + "x": 333.67632, + "y": 845.95734, + "index": 6, + "body": { + "#": 6018 + }, + "isInternal": false + }, + { + "x": 331.35632, + "y": 840.35534, + "index": 7, + "body": { + "#": 6018 + }, + "isInternal": false + }, + { + "x": 331.35632, + "y": 834.29134, + "index": 8, + "body": { + "#": 6018 + }, + "isInternal": false + }, + { + "x": 333.67632, + "y": 828.68934, + "index": 9, + "body": { + "#": 6018 + }, + "isInternal": false + }, + { + "x": 337.96432, + "y": 824.40134, + "index": 10, + "body": { + "#": 6018 + }, + "isInternal": false + }, + { + "x": 343.56632, + "y": 822.08134, + "index": 11, + "body": { + "#": 6018 + }, + "isInternal": false + }, + { + "x": 349.63032, + "y": 822.08134, + "index": 12, + "body": { + "#": 6018 + }, + "isInternal": false + }, + { + "x": 355.23232, + "y": 824.40134, + "index": 13, + "body": { + "#": 6018 + }, + "isInternal": false + }, + { + "x": 359.52032, + "y": 828.68934, + "index": 14, + "body": { + "#": 6018 + }, + "isInternal": false + }, + { + "x": 361.84032, + "y": 834.29134, + "index": 15, + "body": { + "#": 6018 + }, + "isInternal": false + }, + { + "x": 346.59832, + "y": 837.32334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1.13626, + "y": 0.82367 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.03609, + "y": 2.88459 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6044 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6046 + }, + "max": { + "#": 6047 + } + }, + { + "x": 331.35632, + "y": 822.08134 + }, + { + "x": 361.84032, + "y": 855.47261 + }, + { + "x": 346.5884, + "y": 834.40888 + }, + [ + { + "#": 6050 + }, + { + "#": 6051 + }, + { + "#": 6052 + }, + { + "#": 6053 + }, + { + "#": 6054 + }, + { + "#": 6055 + }, + { + "#": 6056 + }, + { + "#": 6057 + } + ], + { + "x": -0.9239, + "y": -0.38262 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38262, + "y": -0.9239 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38262, + "y": -0.9239 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.9239, + "y": -0.38262 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,17,17", + "startCol": 6, + "endCol": 7, + "startRow": 17, + "endRow": 17 + }, + { + "id": 120, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6060 + }, + "angle": 0, + "vertices": { + "#": 6061 + }, + "position": { + "#": 6082 + }, + "force": { + "#": 6083 + }, + "torque": 0, + "positionImpulse": { + "#": 6084 + }, + "constraintImpulse": { + "#": 6085 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6086 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6087 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6088 + }, + "circleRadius": 18.25791, + "bounds": { + "#": 6090 + }, + "positionPrev": { + "#": 6093 + }, + "anglePrev": 0, + "axes": { + "#": 6094 + }, + "area": 1030.10107, + "mass": 1.0301, + "inverseMass": 0.97078, + "inertia": 675.55946, + "inverseInertia": 0.00148, + "parent": { + "#": 6059 + }, + "sleepCounter": 0, + "region": { + "#": 6105 + } + }, + [ + { + "#": 6059 + } + ], + [ + { + "#": 6062 + }, + { + "#": 6063 + }, + { + "#": 6064 + }, + { + "#": 6065 + }, + { + "#": 6066 + }, + { + "#": 6067 + }, + { + "#": 6068 + }, + { + "#": 6069 + }, + { + "#": 6070 + }, + { + "#": 6071 + }, + { + "#": 6072 + }, + { + "#": 6073 + }, + { + "#": 6074 + }, + { + "#": 6075 + }, + { + "#": 6076 + }, + { + "#": 6077 + }, + { + "#": 6078 + }, + { + "#": 6079 + }, + { + "#": 6080 + }, + { + "#": 6081 + } + ], + { + "x": 406.486, + "y": 841.94075, + "index": 0, + "body": { + "#": 6059 + }, + "isInternal": false + }, + { + "x": 404.721, + "y": 847.37375, + "index": 1, + "body": { + "#": 6059 + }, + "isInternal": false + }, + { + "x": 401.363, + "y": 851.99475, + "index": 2, + "body": { + "#": 6059 + }, + "isInternal": false + }, + { + "x": 396.742, + "y": 855.35275, + "index": 3, + "body": { + "#": 6059 + }, + "isInternal": false + }, + { + "x": 391.309, + "y": 857.11775, + "index": 4, + "body": { + "#": 6059 + }, + "isInternal": false + }, + { + "x": 385.597, + "y": 857.11775, + "index": 5, + "body": { + "#": 6059 + }, + "isInternal": false + }, + { + "x": 380.164, + "y": 855.35275, + "index": 6, + "body": { + "#": 6059 + }, + "isInternal": false + }, + { + "x": 375.543, + "y": 851.99475, + "index": 7, + "body": { + "#": 6059 + }, + "isInternal": false + }, + { + "x": 372.185, + "y": 847.37375, + "index": 8, + "body": { + "#": 6059 + }, + "isInternal": false + }, + { + "x": 370.42, + "y": 841.94075, + "index": 9, + "body": { + "#": 6059 + }, + "isInternal": false + }, + { + "x": 370.42, + "y": 836.22875, + "index": 10, + "body": { + "#": 6059 + }, + "isInternal": false + }, + { + "x": 372.185, + "y": 830.79575, + "index": 11, + "body": { + "#": 6059 + }, + "isInternal": false + }, + { + "x": 375.543, + "y": 826.17475, + "index": 12, + "body": { + "#": 6059 + }, + "isInternal": false + }, + { + "x": 380.164, + "y": 822.81675, + "index": 13, + "body": { + "#": 6059 + }, + "isInternal": false + }, + { + "x": 385.597, + "y": 821.05175, + "index": 14, + "body": { + "#": 6059 + }, + "isInternal": false + }, + { + "x": 391.309, + "y": 821.05175, + "index": 15, + "body": { + "#": 6059 + }, + "isInternal": false + }, + { + "x": 396.742, + "y": 822.81675, + "index": 16, + "body": { + "#": 6059 + }, + "isInternal": false + }, + { + "x": 401.363, + "y": 826.17475, + "index": 17, + "body": { + "#": 6059 + }, + "isInternal": false + }, + { + "x": 404.721, + "y": 830.79575, + "index": 18, + "body": { + "#": 6059 + }, + "isInternal": false + }, + { + "x": 406.486, + "y": 836.22875, + "index": 19, + "body": { + "#": 6059 + }, + "isInternal": false + }, + { + "x": 388.453, + "y": 839.08475 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6089 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6091 + }, + "max": { + "#": 6092 + } + }, + { + "x": 370.42, + "y": 821.05175 + }, + { + "x": 406.486, + "y": 857.11775 + }, + { + "x": 388.453, + "y": 836.17748 + }, + [ + { + "#": 6095 + }, + { + "#": 6096 + }, + { + "#": 6097 + }, + { + "#": 6098 + }, + { + "#": 6099 + }, + { + "#": 6100 + }, + { + "#": 6101 + }, + { + "#": 6102 + }, + { + "#": 6103 + }, + { + "#": 6104 + } + ], + { + "x": -0.95107, + "y": -0.30897 + }, + { + "x": -0.80896, + "y": -0.58786 + }, + { + "x": -0.58786, + "y": -0.80896 + }, + { + "x": -0.30897, + "y": -0.95107 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30897, + "y": -0.95107 + }, + { + "x": 0.58786, + "y": -0.80896 + }, + { + "x": 0.80896, + "y": -0.58786 + }, + { + "x": 0.95107, + "y": -0.30897 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,17,17", + "startCol": 7, + "endCol": 8, + "startRow": 17, + "endRow": 17 + }, + { + "id": 121, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6107 + }, + "angle": -0.00002, + "vertices": { + "#": 6108 + }, + "position": { + "#": 6135 + }, + "force": { + "#": 6136 + }, + "torque": 0, + "positionImpulse": { + "#": 6137 + }, + "constraintImpulse": { + "#": 6138 + }, + "totalContacts": 0, + "speed": 2.91124, + "angularSpeed": 0.00001, + "velocity": { + "#": 6139 + }, + "angularVelocity": -0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6140 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6141 + }, + "circleRadius": 26.14461, + "bounds": { + "#": 6143 + }, + "positionPrev": { + "#": 6146 + }, + "anglePrev": -0.00001, + "axes": { + "#": 6147 + }, + "area": 2126.60242, + "mass": 2.1266, + "inverseMass": 0.47023, + "inertia": 2879.12828, + "inverseInertia": 0.00035, + "parent": { + "#": 6106 + }, + "sleepCounter": 0, + "region": { + "#": 6161 + } + }, + [ + { + "#": 6106 + } + ], + [ + { + "#": 6109 + }, + { + "#": 6110 + }, + { + "#": 6111 + }, + { + "#": 6112 + }, + { + "#": 6113 + }, + { + "#": 6114 + }, + { + "#": 6115 + }, + { + "#": 6116 + }, + { + "#": 6117 + }, + { + "#": 6118 + }, + { + "#": 6119 + }, + { + "#": 6120 + }, + { + "#": 6121 + }, + { + "#": 6122 + }, + { + "#": 6123 + }, + { + "#": 6124 + }, + { + "#": 6125 + }, + { + "#": 6126 + }, + { + "#": 6127 + }, + { + "#": 6128 + }, + { + "#": 6129 + }, + { + "#": 6130 + }, + { + "#": 6131 + }, + { + "#": 6132 + }, + { + "#": 6133 + }, + { + "#": 6134 + } + ], + { + "x": 465.62611, + "y": 853.3639, + "index": 0, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 464.11826, + "y": 859.48393, + "index": 1, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 461.1894, + "y": 865.06501, + "index": 2, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 457.00952, + "y": 869.78311, + "index": 3, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 451.82261, + "y": 873.36324, + "index": 4, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 445.92966, + "y": 875.59839, + "index": 5, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 439.67268, + "y": 876.35854, + "index": 6, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 433.41566, + "y": 875.5987, + "index": 7, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 427.52261, + "y": 873.36384, + "index": 8, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 422.33552, + "y": 869.78397, + "index": 9, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 418.1554, + "y": 865.06607, + "index": 10, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 415.22626, + "y": 859.48515, + "index": 11, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 413.71811, + "y": 853.36519, + "index": 12, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 413.71795, + "y": 847.06319, + "index": 13, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 415.2258, + "y": 840.94315, + "index": 14, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 418.15466, + "y": 835.36207, + "index": 15, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 422.33455, + "y": 830.64397, + "index": 16, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 427.52146, + "y": 827.06384, + "index": 17, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 433.4144, + "y": 824.8287, + "index": 18, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 439.67138, + "y": 824.06854, + "index": 19, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 445.9284, + "y": 824.82839, + "index": 20, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 451.82146, + "y": 827.06324, + "index": 21, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 457.00855, + "y": 830.64311, + "index": 22, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 461.18866, + "y": 835.36101, + "index": 23, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 464.1178, + "y": 840.94193, + "index": 24, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 465.62595, + "y": 847.0619, + "index": 25, + "body": { + "#": 6106 + }, + "isInternal": false + }, + { + "x": 439.67203, + "y": 850.21354 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.58034, + "y": 0.63136 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00113, + "y": 2.91124 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6142 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6144 + }, + "max": { + "#": 6145 + } + }, + { + "x": 413.71683, + "y": 824.06854 + }, + { + "x": 465.62611, + "y": 879.26978 + }, + { + "x": 439.67316, + "y": 847.30231 + }, + [ + { + "#": 6148 + }, + { + "#": 6149 + }, + { + "#": 6150 + }, + { + "#": 6151 + }, + { + "#": 6152 + }, + { + "#": 6153 + }, + { + "#": 6154 + }, + { + "#": 6155 + }, + { + "#": 6156 + }, + { + "#": 6157 + }, + { + "#": 6158 + }, + { + "#": 6159 + }, + { + "#": 6160 + } + ], + { + "x": -0.97096, + "y": -0.23923 + }, + { + "x": -0.88548, + "y": -0.46468 + }, + { + "x": -0.74851, + "y": -0.66312 + }, + { + "x": -0.56805, + "y": -0.82299 + }, + { + "x": -0.35464, + "y": -0.935 + }, + { + "x": -0.1206, + "y": -0.9927 + }, + { + "x": 0.12055, + "y": -0.99271 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.56801, + "y": -0.82302 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88545, + "y": -0.46473 + }, + { + "x": 0.97095, + "y": -0.23927 + }, + { + "x": 1, + "y": -0.00002 + }, + { + "id": "8,9,17,18", + "startCol": 8, + "endCol": 9, + "startRow": 17, + "endRow": 18 + }, + { + "id": 122, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6163 + }, + "angle": -0.00009, + "vertices": { + "#": 6164 + }, + "position": { + "#": 6187 + }, + "force": { + "#": 6188 + }, + "torque": 0, + "positionImpulse": { + "#": 6189 + }, + "constraintImpulse": { + "#": 6190 + }, + "totalContacts": 0, + "speed": 2.90733, + "angularSpeed": 0.00002, + "velocity": { + "#": 6191 + }, + "angularVelocity": -0.00002, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6192 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6193 + }, + "circleRadius": 21.05292, + "bounds": { + "#": 6195 + }, + "positionPrev": { + "#": 6198 + }, + "anglePrev": -0.00007, + "axes": { + "#": 6199 + }, + "area": 1373.59094, + "mass": 1.37359, + "inverseMass": 0.72802, + "inertia": 1201.18851, + "inverseInertia": 0.00083, + "parent": { + "#": 6162 + }, + "sleepCounter": 0, + "region": { + "#": 6211 + } + }, + [ + { + "#": 6162 + } + ], + [ + { + "#": 6165 + }, + { + "#": 6166 + }, + { + "#": 6167 + }, + { + "#": 6168 + }, + { + "#": 6169 + }, + { + "#": 6170 + }, + { + "#": 6171 + }, + { + "#": 6172 + }, + { + "#": 6173 + }, + { + "#": 6174 + }, + { + "#": 6175 + }, + { + "#": 6176 + }, + { + "#": 6177 + }, + { + "#": 6178 + }, + { + "#": 6179 + }, + { + "#": 6180 + }, + { + "#": 6181 + }, + { + "#": 6182 + }, + { + "#": 6183 + }, + { + "#": 6184 + }, + { + "#": 6185 + }, + { + "#": 6186 + } + ], + { + "x": 542.48923, + "y": 886.29679, + "index": 0, + "body": { + "#": 6162 + }, + "isInternal": false + }, + { + "x": 540.80074, + "y": 892.04695, + "index": 1, + "body": { + "#": 6162 + }, + "isInternal": false + }, + { + "x": 537.56219, + "y": 897.08823, + "index": 2, + "body": { + "#": 6162 + }, + "isInternal": false + }, + { + "x": 533.03354, + "y": 901.01264, + "index": 3, + "body": { + "#": 6162 + }, + "isInternal": false + }, + { + "x": 527.58276, + "y": 903.50213, + "index": 4, + "body": { + "#": 6162 + }, + "isInternal": false + }, + { + "x": 521.65184, + "y": 904.35566, + "index": 5, + "body": { + "#": 6162 + }, + "isInternal": false + }, + { + "x": 515.72076, + "y": 903.50319, + "index": 6, + "body": { + "#": 6162 + }, + "isInternal": false + }, + { + "x": 510.26954, + "y": 901.01467, + "index": 7, + "body": { + "#": 6162 + }, + "isInternal": false + }, + { + "x": 505.74019, + "y": 897.09108, + "index": 8, + "body": { + "#": 6162 + }, + "isInternal": false + }, + { + "x": 502.50074, + "y": 892.05037, + "index": 9, + "body": { + "#": 6162 + }, + "isInternal": false + }, + { + "x": 500.81123, + "y": 886.30052, + "index": 10, + "body": { + "#": 6162 + }, + "isInternal": false + }, + { + "x": 500.81069, + "y": 880.30852, + "index": 11, + "body": { + "#": 6162 + }, + "isInternal": false + }, + { + "x": 502.49918, + "y": 874.55837, + "index": 12, + "body": { + "#": 6162 + }, + "isInternal": false + }, + { + "x": 505.73773, + "y": 869.51708, + "index": 13, + "body": { + "#": 6162 + }, + "isInternal": false + }, + { + "x": 510.26638, + "y": 865.59267, + "index": 14, + "body": { + "#": 6162 + }, + "isInternal": false + }, + { + "x": 515.71716, + "y": 863.10319, + "index": 15, + "body": { + "#": 6162 + }, + "isInternal": false + }, + { + "x": 521.64808, + "y": 862.24966, + "index": 16, + "body": { + "#": 6162 + }, + "isInternal": false + }, + { + "x": 527.57916, + "y": 863.10213, + "index": 17, + "body": { + "#": 6162 + }, + "isInternal": false + }, + { + "x": 533.03038, + "y": 865.59064, + "index": 18, + "body": { + "#": 6162 + }, + "isInternal": false + }, + { + "x": 537.55973, + "y": 869.51423, + "index": 19, + "body": { + "#": 6162 + }, + "isInternal": false + }, + { + "x": 540.79918, + "y": 874.55495, + "index": 20, + "body": { + "#": 6162 + }, + "isInternal": false + }, + { + "x": 542.48869, + "y": 880.30479, + "index": 21, + "body": { + "#": 6162 + }, + "isInternal": false + }, + { + "x": 521.64996, + "y": 883.30266 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1.7801, + "y": 1.6266 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00059, + "y": 2.90733 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6194 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6196 + }, + "max": { + "#": 6197 + } + }, + { + "x": 500.81011, + "y": 862.24966 + }, + { + "x": 542.48923, + "y": 907.26299 + }, + { + "x": 521.65055, + "y": 880.39532 + }, + [ + { + "#": 6200 + }, + { + "#": 6201 + }, + { + "#": 6202 + }, + { + "#": 6203 + }, + { + "#": 6204 + }, + { + "#": 6205 + }, + { + "#": 6206 + }, + { + "#": 6207 + }, + { + "#": 6208 + }, + { + "#": 6209 + }, + { + "#": 6210 + } + ], + { + "x": -0.95949, + "y": -0.28175 + }, + { + "x": -0.84135, + "y": -0.54049 + }, + { + "x": -0.65489, + "y": -0.75572 + }, + { + "x": -0.41544, + "y": -0.90962 + }, + { + "x": -0.14244, + "y": -0.9898 + }, + { + "x": 0.14227, + "y": -0.98983 + }, + { + "x": 0.41528, + "y": -0.90969 + }, + { + "x": 0.65476, + "y": -0.75584 + }, + { + "x": 0.84125, + "y": -0.54064 + }, + { + "x": 0.95944, + "y": -0.28192 + }, + { + "x": 1, + "y": -0.00009 + }, + { + "id": "10,11,17,18", + "startCol": 10, + "endCol": 11, + "startRow": 17, + "endRow": 18 + }, + { + "id": 123, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6213 + }, + "angle": 0.00012, + "vertices": { + "#": 6214 + }, + "position": { + "#": 6231 + }, + "force": { + "#": 6232 + }, + "torque": 0, + "positionImpulse": { + "#": 6233 + }, + "constraintImpulse": { + "#": 6234 + }, + "totalContacts": 0, + "speed": 2.90773, + "angularSpeed": 0.00012, + "velocity": { + "#": 6235 + }, + "angularVelocity": -0.00112, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6236 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6237 + }, + "circleRadius": 15.94579, + "bounds": { + "#": 6239 + }, + "positionPrev": { + "#": 6242 + }, + "anglePrev": -0.00006, + "axes": { + "#": 6243 + }, + "area": 778.39813, + "mass": 0.7784, + "inverseMass": 1.28469, + "inertia": 385.78216, + "inverseInertia": 0.00259, + "parent": { + "#": 6212 + }, + "sleepCounter": 0, + "region": { + "#": 6252 + } + }, + [ + { + "#": 6212 + } + ], + [ + { + "#": 6215 + }, + { + "#": 6216 + }, + { + "#": 6217 + }, + { + "#": 6218 + }, + { + "#": 6219 + }, + { + "#": 6220 + }, + { + "#": 6221 + }, + { + "#": 6222 + }, + { + "#": 6223 + }, + { + "#": 6224 + }, + { + "#": 6225 + }, + { + "#": 6226 + }, + { + "#": 6227 + }, + { + "#": 6228 + }, + { + "#": 6229 + }, + { + "#": 6230 + } + ], + { + "x": 561.35324, + "y": 842.45949, + "index": 0, + "body": { + "#": 6212 + }, + "isInternal": false + }, + { + "x": 558.97157, + "y": 848.20721, + "index": 1, + "body": { + "#": 6212 + }, + "isInternal": false + }, + { + "x": 554.57206, + "y": 852.6057, + "index": 2, + "body": { + "#": 6212 + }, + "isInternal": false + }, + { + "x": 548.82378, + "y": 854.98603, + "index": 3, + "body": { + "#": 6212 + }, + "isInternal": false + }, + { + "x": 542.60178, + "y": 854.9853, + "index": 4, + "body": { + "#": 6212 + }, + "isInternal": false + }, + { + "x": 536.85406, + "y": 852.60363, + "index": 5, + "body": { + "#": 6212 + }, + "isInternal": false + }, + { + "x": 532.45557, + "y": 848.20412, + "index": 6, + "body": { + "#": 6212 + }, + "isInternal": false + }, + { + "x": 530.07524, + "y": 842.45584, + "index": 7, + "body": { + "#": 6212 + }, + "isInternal": false + }, + { + "x": 530.07597, + "y": 836.23384, + "index": 8, + "body": { + "#": 6212 + }, + "isInternal": false + }, + { + "x": 532.45764, + "y": 830.48612, + "index": 9, + "body": { + "#": 6212 + }, + "isInternal": false + }, + { + "x": 536.85715, + "y": 826.08763, + "index": 10, + "body": { + "#": 6212 + }, + "isInternal": false + }, + { + "x": 542.60543, + "y": 823.7073, + "index": 11, + "body": { + "#": 6212 + }, + "isInternal": false + }, + { + "x": 548.82743, + "y": 823.70803, + "index": 12, + "body": { + "#": 6212 + }, + "isInternal": false + }, + { + "x": 554.57515, + "y": 826.0897, + "index": 13, + "body": { + "#": 6212 + }, + "isInternal": false + }, + { + "x": 558.97364, + "y": 830.48921, + "index": 14, + "body": { + "#": 6212 + }, + "isInternal": false + }, + { + "x": 561.35397, + "y": 836.23749, + "index": 15, + "body": { + "#": 6212 + }, + "isInternal": false + }, + { + "x": 545.71461, + "y": 839.34666 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.94416 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.03471, + "y": 2.91439 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6238 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6240 + }, + "max": { + "#": 6241 + } + }, + { + "x": 530.07524, + "y": 823.7073 + }, + { + "x": 561.35758, + "y": 857.89376 + }, + { + "x": 545.70917, + "y": 836.43894 + }, + [ + { + "#": 6244 + }, + { + "#": 6245 + }, + { + "#": 6246 + }, + { + "#": 6247 + }, + { + "#": 6248 + }, + { + "#": 6249 + }, + { + "#": 6250 + }, + { + "#": 6251 + } + ], + { + "x": -0.92383, + "y": -0.3828 + }, + { + "x": -0.70702, + "y": -0.70719 + }, + { + "x": -0.38259, + "y": -0.92392 + }, + { + "x": 0.00012, + "y": -1 + }, + { + "x": 0.3828, + "y": -0.92383 + }, + { + "x": 0.70719, + "y": -0.70702 + }, + { + "x": 0.92392, + "y": -0.38259 + }, + { + "x": 1, + "y": 0.00012 + }, + { + "id": "11,11,17,17", + "startCol": 11, + "endCol": 11, + "startRow": 17, + "endRow": 17 + }, + { + "id": 124, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6254 + }, + "angle": -0.001, + "vertices": { + "#": 6255 + }, + "position": { + "#": 6274 + }, + "force": { + "#": 6275 + }, + "torque": 0, + "positionImpulse": { + "#": 6276 + }, + "constraintImpulse": { + "#": 6277 + }, + "totalContacts": 0, + "speed": 2.89785, + "angularSpeed": 0.001, + "velocity": { + "#": 6278 + }, + "angularVelocity": -0.001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6279 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6280 + }, + "circleRadius": 16.56398, + "bounds": { + "#": 6282 + }, + "positionPrev": { + "#": 6285 + }, + "anglePrev": -0.00001, + "axes": { + "#": 6286 + }, + "area": 844.54151, + "mass": 0.84454, + "inverseMass": 1.18407, + "inertia": 454.10729, + "inverseInertia": 0.0022, + "parent": { + "#": 6253 + }, + "sleepCounter": 0, + "region": { + "#": 6296 + } + }, + [ + { + "#": 6253 + } + ], + [ + { + "#": 6256 + }, + { + "#": 6257 + }, + { + "#": 6258 + }, + { + "#": 6259 + }, + { + "#": 6260 + }, + { + "#": 6261 + }, + { + "#": 6262 + }, + { + "#": 6263 + }, + { + "#": 6264 + }, + { + "#": 6265 + }, + { + "#": 6266 + }, + { + "#": 6267 + }, + { + "#": 6268 + }, + { + "#": 6269 + }, + { + "#": 6270 + }, + { + "#": 6271 + }, + { + "#": 6272 + }, + { + "#": 6273 + } + ], + { + "x": 603.01106, + "y": 845.77671, + "index": 0, + "body": { + "#": 6253 + }, + "isInternal": false + }, + { + "x": 601.04948, + "y": 851.18468, + "index": 1, + "body": { + "#": 6253 + }, + "isInternal": false + }, + { + "x": 597.3559, + "y": 855.59538, + "index": 2, + "body": { + "#": 6253 + }, + "isInternal": false + }, + { + "x": 592.37679, + "y": 858.47638, + "index": 3, + "body": { + "#": 6253 + }, + "isInternal": false + }, + { + "x": 586.71279, + "y": 859.48106, + "index": 4, + "body": { + "#": 6253 + }, + "isInternal": false + }, + { + "x": 581.04679, + "y": 858.48774, + "index": 5, + "body": { + "#": 6253 + }, + "isInternal": false + }, + { + "x": 576.06191, + "y": 855.61674, + "index": 6, + "body": { + "#": 6253 + }, + "isInternal": false + }, + { + "x": 572.35949, + "y": 851.21346, + "index": 7, + "body": { + "#": 6253 + }, + "isInternal": false + }, + { + "x": 570.38707, + "y": 845.80943, + "index": 8, + "body": { + "#": 6253 + }, + "isInternal": false + }, + { + "x": 570.3813, + "y": 840.05743, + "index": 9, + "body": { + "#": 6253 + }, + "isInternal": false + }, + { + "x": 572.34288, + "y": 834.64946, + "index": 10, + "body": { + "#": 6253 + }, + "isInternal": false + }, + { + "x": 576.03646, + "y": 830.23876, + "index": 11, + "body": { + "#": 6253 + }, + "isInternal": false + }, + { + "x": 581.01557, + "y": 827.35776, + "index": 12, + "body": { + "#": 6253 + }, + "isInternal": false + }, + { + "x": 586.67956, + "y": 826.35308, + "index": 13, + "body": { + "#": 6253 + }, + "isInternal": false + }, + { + "x": 592.34556, + "y": 827.3464, + "index": 14, + "body": { + "#": 6253 + }, + "isInternal": false + }, + { + "x": 597.33045, + "y": 830.2174, + "index": 15, + "body": { + "#": 6253 + }, + "isInternal": false + }, + { + "x": 601.03286, + "y": 834.62069, + "index": 16, + "body": { + "#": 6253 + }, + "isInternal": false + }, + { + "x": 603.00529, + "y": 840.02471, + "index": 17, + "body": { + "#": 6253 + }, + "isInternal": false + }, + { + "x": 586.69618, + "y": 842.91707 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.19649, + "y": 1.11424 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.02909, + "y": 2.8977 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6281 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6283 + }, + "max": { + "#": 6284 + } + }, + { + "x": 570.35221, + "y": 826.35308 + }, + { + "x": 603.01106, + "y": 862.37876 + }, + { + "x": 586.72527, + "y": 840.01937 + }, + [ + { + "#": 6287 + }, + { + "#": 6288 + }, + { + "#": 6289 + }, + { + "#": 6290 + }, + { + "#": 6291 + }, + { + "#": 6292 + }, + { + "#": 6293 + }, + { + "#": 6294 + }, + { + "#": 6295 + } + ], + { + "x": -0.94007, + "y": -0.34098 + }, + { + "x": -0.76668, + "y": -0.64203 + }, + { + "x": -0.50082, + "y": -0.86555 + }, + { + "x": -0.17465, + "y": -0.98463 + }, + { + "x": 0.17268, + "y": -0.98498 + }, + { + "x": 0.49908, + "y": -0.86655 + }, + { + "x": 0.76539, + "y": -0.64356 + }, + { + "x": 0.93938, + "y": -0.34287 + }, + { + "x": 1, + "y": -0.001 + }, + { + "id": "11,12,17,17", + "startCol": 11, + "endCol": 12, + "startRow": 17, + "endRow": 17 + }, + { + "id": 125, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6298 + }, + "angle": 0, + "vertices": { + "#": 6299 + }, + "position": { + "#": 6324 + }, + "force": { + "#": 6325 + }, + "torque": 0, + "positionImpulse": { + "#": 6326 + }, + "constraintImpulse": { + "#": 6327 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6328 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6329 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6330 + }, + "circleRadius": 23.09266, + "bounds": { + "#": 6332 + }, + "positionPrev": { + "#": 6335 + }, + "anglePrev": 0, + "axes": { + "#": 6336 + }, + "area": 1656.26219, + "mass": 1.65626, + "inverseMass": 0.60377, + "inertia": 1746.42413, + "inverseInertia": 0.00057, + "parent": { + "#": 6297 + }, + "sleepCounter": 0, + "region": { + "#": 6349 + } + }, + [ + { + "#": 6297 + } + ], + [ + { + "#": 6300 + }, + { + "#": 6301 + }, + { + "#": 6302 + }, + { + "#": 6303 + }, + { + "#": 6304 + }, + { + "#": 6305 + }, + { + "#": 6306 + }, + { + "#": 6307 + }, + { + "#": 6308 + }, + { + "#": 6309 + }, + { + "#": 6310 + }, + { + "#": 6311 + }, + { + "#": 6312 + }, + { + "#": 6313 + }, + { + "#": 6314 + }, + { + "#": 6315 + }, + { + "#": 6316 + }, + { + "#": 6317 + }, + { + "#": 6318 + }, + { + "#": 6319 + }, + { + "#": 6320 + }, + { + "#": 6321 + }, + { + "#": 6322 + }, + { + "#": 6323 + } + ], + { + "x": 145.79, + "y": 914.48875, + "index": 0, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 144.23, + "y": 920.31175, + "index": 1, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 141.216, + "y": 925.53275, + "index": 2, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 136.953, + "y": 929.79575, + "index": 3, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 131.732, + "y": 932.80975, + "index": 4, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 125.909, + "y": 934.36975, + "index": 5, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 119.881, + "y": 934.36975, + "index": 6, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 114.058, + "y": 932.80975, + "index": 7, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 108.837, + "y": 929.79575, + "index": 8, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 104.574, + "y": 925.53275, + "index": 9, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 101.56, + "y": 920.31175, + "index": 10, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 100, + "y": 914.48875, + "index": 11, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 100, + "y": 908.46075, + "index": 12, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 101.56, + "y": 902.63775, + "index": 13, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 104.574, + "y": 897.41675, + "index": 14, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 108.837, + "y": 893.15375, + "index": 15, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 114.058, + "y": 890.13975, + "index": 16, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 119.881, + "y": 888.57975, + "index": 17, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 125.909, + "y": 888.57975, + "index": 18, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 131.732, + "y": 890.13975, + "index": 19, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 136.953, + "y": 893.15375, + "index": 20, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 141.216, + "y": 897.41675, + "index": 21, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 144.23, + "y": 902.63775, + "index": 22, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 145.79, + "y": 908.46075, + "index": 23, + "body": { + "#": 6297 + }, + "isInternal": false + }, + { + "x": 122.895, + "y": 911.47475 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6331 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6333 + }, + "max": { + "#": 6334 + } + }, + { + "x": 100, + "y": 888.57975 + }, + { + "x": 145.79, + "y": 934.36975 + }, + { + "x": 122.895, + "y": 908.56748 + }, + [ + { + "#": 6337 + }, + { + "#": 6338 + }, + { + "#": 6339 + }, + { + "#": 6340 + }, + { + "#": 6341 + }, + { + "#": 6342 + }, + { + "#": 6343 + }, + { + "#": 6344 + }, + { + "#": 6345 + }, + { + "#": 6346 + }, + { + "#": 6347 + }, + { + "#": 6348 + } + ], + { + "x": -0.96594, + "y": -0.25878 + }, + { + "x": -0.86605, + "y": -0.49996 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.49996, + "y": -0.86605 + }, + { + "x": -0.25878, + "y": -0.96594 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25878, + "y": -0.96594 + }, + { + "x": 0.49996, + "y": -0.86605 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86605, + "y": -0.49996 + }, + { + "x": 0.96594, + "y": -0.25878 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,3,18,19", + "startCol": 2, + "endCol": 3, + "startRow": 18, + "endRow": 19 + }, + { + "id": 126, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6351 + }, + "angle": 0, + "vertices": { + "#": 6352 + }, + "position": { + "#": 6379 + }, + "force": { + "#": 6380 + }, + "torque": 0, + "positionImpulse": { + "#": 6381 + }, + "constraintImpulse": { + "#": 6382 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6383 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6384 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6385 + }, + "circleRadius": 26.82813, + "bounds": { + "#": 6387 + }, + "positionPrev": { + "#": 6390 + }, + "anglePrev": 0, + "axes": { + "#": 6391 + }, + "area": 2239.22353, + "mass": 2.23922, + "inverseMass": 0.44658, + "inertia": 3192.15014, + "inverseInertia": 0.00031, + "parent": { + "#": 6350 + }, + "sleepCounter": 0, + "region": { + "#": 6405 + } + }, + [ + { + "#": 6350 + } + ], + [ + { + "#": 6353 + }, + { + "#": 6354 + }, + { + "#": 6355 + }, + { + "#": 6356 + }, + { + "#": 6357 + }, + { + "#": 6358 + }, + { + "#": 6359 + }, + { + "#": 6360 + }, + { + "#": 6361 + }, + { + "#": 6362 + }, + { + "#": 6363 + }, + { + "#": 6364 + }, + { + "#": 6365 + }, + { + "#": 6366 + }, + { + "#": 6367 + }, + { + "#": 6368 + }, + { + "#": 6369 + }, + { + "#": 6370 + }, + { + "#": 6371 + }, + { + "#": 6372 + }, + { + "#": 6373 + }, + { + "#": 6374 + }, + { + "#": 6375 + }, + { + "#": 6376 + }, + { + "#": 6377 + }, + { + "#": 6378 + } + ], + { + "x": 209.056, + "y": 918.64175, + "index": 0, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 207.508, + "y": 924.92075, + "index": 1, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 204.502, + "y": 930.64775, + "index": 2, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 200.213, + "y": 935.48875, + "index": 3, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 194.891, + "y": 939.16275, + "index": 4, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 188.843, + "y": 941.45675, + "index": 5, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 182.423, + "y": 942.23575, + "index": 6, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 176.003, + "y": 941.45675, + "index": 7, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 169.955, + "y": 939.16275, + "index": 8, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 164.633, + "y": 935.48875, + "index": 9, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 160.344, + "y": 930.64775, + "index": 10, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 157.338, + "y": 924.92075, + "index": 11, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 155.79, + "y": 918.64175, + "index": 12, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 155.79, + "y": 912.17375, + "index": 13, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 157.338, + "y": 905.89475, + "index": 14, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 160.344, + "y": 900.16775, + "index": 15, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 164.633, + "y": 895.32675, + "index": 16, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 169.955, + "y": 891.65275, + "index": 17, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 176.003, + "y": 889.35875, + "index": 18, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 182.423, + "y": 888.57975, + "index": 19, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 188.843, + "y": 889.35875, + "index": 20, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 194.891, + "y": 891.65275, + "index": 21, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 200.213, + "y": 895.32675, + "index": 22, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 204.502, + "y": 900.16775, + "index": 23, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 207.508, + "y": 905.89475, + "index": 24, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 209.056, + "y": 912.17375, + "index": 25, + "body": { + "#": 6350 + }, + "isInternal": false + }, + { + "x": 182.423, + "y": 915.40775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6386 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6388 + }, + "max": { + "#": 6389 + } + }, + { + "x": 155.79, + "y": 888.57975 + }, + { + "x": 209.056, + "y": 942.23575 + }, + { + "x": 182.423, + "y": 912.50048 + }, + [ + { + "#": 6392 + }, + { + "#": 6393 + }, + { + "#": 6394 + }, + { + "#": 6395 + }, + { + "#": 6396 + }, + { + "#": 6397 + }, + { + "#": 6398 + }, + { + "#": 6399 + }, + { + "#": 6400 + }, + { + "#": 6401 + }, + { + "#": 6402 + }, + { + "#": 6403 + }, + { + "#": 6404 + } + ], + { + "x": -0.97093, + "y": -0.23937 + }, + { + "x": -0.88544, + "y": -0.46475 + }, + { + "x": -0.74849, + "y": -0.66314 + }, + { + "x": -0.56812, + "y": -0.82295 + }, + { + "x": -0.35464, + "y": -0.935 + }, + { + "x": -0.12046, + "y": -0.99272 + }, + { + "x": 0.12046, + "y": -0.99272 + }, + { + "x": 0.35464, + "y": -0.935 + }, + { + "x": 0.56812, + "y": -0.82295 + }, + { + "x": 0.74849, + "y": -0.66314 + }, + { + "x": 0.88544, + "y": -0.46475 + }, + { + "x": 0.97093, + "y": -0.23937 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,18,19", + "startCol": 3, + "endCol": 4, + "startRow": 18, + "endRow": 19 + }, + { + "id": 127, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6407 + }, + "angle": 0.00003, + "vertices": { + "#": 6408 + }, + "position": { + "#": 6427 + }, + "force": { + "#": 6428 + }, + "torque": 0, + "positionImpulse": { + "#": 6429 + }, + "constraintImpulse": { + "#": 6430 + }, + "totalContacts": 0, + "speed": 2.90921, + "angularSpeed": 0.00003, + "velocity": { + "#": 6431 + }, + "angularVelocity": -0.00009, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6432 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6433 + }, + "circleRadius": 16.84446, + "bounds": { + "#": 6435 + }, + "positionPrev": { + "#": 6438 + }, + "anglePrev": -0.00028, + "axes": { + "#": 6439 + }, + "area": 873.40593, + "mass": 0.87341, + "inverseMass": 1.14494, + "inertia": 485.67834, + "inverseInertia": 0.00206, + "parent": { + "#": 6406 + }, + "sleepCounter": 0, + "region": { + "#": 6449 + } + }, + [ + { + "#": 6406 + } + ], + [ + { + "#": 6409 + }, + { + "#": 6410 + }, + { + "#": 6411 + }, + { + "#": 6412 + }, + { + "#": 6413 + }, + { + "#": 6414 + }, + { + "#": 6415 + }, + { + "#": 6416 + }, + { + "#": 6417 + }, + { + "#": 6418 + }, + { + "#": 6419 + }, + { + "#": 6420 + }, + { + "#": 6421 + }, + { + "#": 6422 + }, + { + "#": 6423 + }, + { + "#": 6424 + }, + { + "#": 6425 + }, + { + "#": 6426 + } + ], + { + "x": 253.36407, + "y": 911.32821, + "index": 0, + "body": { + "#": 6406 + }, + "isInternal": false + }, + { + "x": 251.36292, + "y": 916.82515, + "index": 1, + "body": { + "#": 6406 + }, + "isInternal": false + }, + { + "x": 247.60179, + "y": 921.30705, + "index": 2, + "body": { + "#": 6406 + }, + "isInternal": false + }, + { + "x": 242.53571, + "y": 924.23191, + "index": 3, + "body": { + "#": 6406 + }, + "isInternal": false + }, + { + "x": 236.77468, + "y": 925.24675, + "index": 4, + "body": { + "#": 6406 + }, + "isInternal": false + }, + { + "x": 231.01371, + "y": 924.23159, + "index": 5, + "body": { + "#": 6406 + }, + "isInternal": false + }, + { + "x": 225.94779, + "y": 921.30645, + "index": 6, + "body": { + "#": 6406 + }, + "isInternal": false + }, + { + "x": 222.18692, + "y": 916.82435, + "index": 7, + "body": { + "#": 6406 + }, + "isInternal": false + }, + { + "x": 220.18607, + "y": 911.32729, + "index": 8, + "body": { + "#": 6406 + }, + "isInternal": false + }, + { + "x": 220.18623, + "y": 905.47729, + "index": 9, + "body": { + "#": 6406 + }, + "isInternal": false + }, + { + "x": 222.18738, + "y": 899.98035, + "index": 10, + "body": { + "#": 6406 + }, + "isInternal": false + }, + { + "x": 225.94851, + "y": 895.49845, + "index": 11, + "body": { + "#": 6406 + }, + "isInternal": false + }, + { + "x": 231.01459, + "y": 892.57359, + "index": 12, + "body": { + "#": 6406 + }, + "isInternal": false + }, + { + "x": 236.77561, + "y": 891.55875, + "index": 13, + "body": { + "#": 6406 + }, + "isInternal": false + }, + { + "x": 242.53659, + "y": 892.57391, + "index": 14, + "body": { + "#": 6406 + }, + "isInternal": false + }, + { + "x": 247.60251, + "y": 895.49905, + "index": 15, + "body": { + "#": 6406 + }, + "isInternal": false + }, + { + "x": 251.36338, + "y": 899.98115, + "index": 16, + "body": { + "#": 6406 + }, + "isInternal": false + }, + { + "x": 253.36423, + "y": 905.47821, + "index": 17, + "body": { + "#": 6406 + }, + "isInternal": false + }, + { + "x": 236.77515, + "y": 908.40275 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.40134, + "y": 1.05851 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00227, + "y": 2.91085 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6434 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6436 + }, + "max": { + "#": 6437 + } + }, + { + "x": 220.18607, + "y": 891.55875 + }, + { + "x": 253.36562, + "y": 928.15596 + }, + { + "x": 236.76495, + "y": 905.49642 + }, + [ + { + "#": 6440 + }, + { + "#": 6441 + }, + { + "#": 6442 + }, + { + "#": 6443 + }, + { + "#": 6444 + }, + { + "#": 6445 + }, + { + "#": 6446 + }, + { + "#": 6447 + }, + { + "#": 6448 + } + ], + { + "x": -0.93967, + "y": -0.34208 + }, + { + "x": -0.76601, + "y": -0.64282 + }, + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": -0.17349, + "y": -0.98484 + }, + { + "x": 0.17354, + "y": -0.98483 + }, + { + "x": 0.50004, + "y": -0.866 + }, + { + "x": 0.76605, + "y": -0.64278 + }, + { + "x": 0.93969, + "y": -0.34203 + }, + { + "x": 1, + "y": 0.00003 + }, + { + "id": "4,5,18,19", + "startCol": 4, + "endCol": 5, + "startRow": 18, + "endRow": 19 + }, + { + "id": 128, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6451 + }, + "angle": 0, + "vertices": { + "#": 6452 + }, + "position": { + "#": 6479 + }, + "force": { + "#": 6480 + }, + "torque": 0, + "positionImpulse": { + "#": 6481 + }, + "constraintImpulse": { + "#": 6482 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6483 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6484 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6485 + }, + "circleRadius": 26.66017, + "bounds": { + "#": 6487 + }, + "positionPrev": { + "#": 6490 + }, + "anglePrev": 0, + "axes": { + "#": 6491 + }, + "area": 2211.25787, + "mass": 2.21126, + "inverseMass": 0.45223, + "inertia": 3112.91451, + "inverseInertia": 0.00032, + "parent": { + "#": 6450 + }, + "sleepCounter": 0, + "region": { + "#": 6505 + } + }, + [ + { + "#": 6450 + } + ], + [ + { + "#": 6453 + }, + { + "#": 6454 + }, + { + "#": 6455 + }, + { + "#": 6456 + }, + { + "#": 6457 + }, + { + "#": 6458 + }, + { + "#": 6459 + }, + { + "#": 6460 + }, + { + "#": 6461 + }, + { + "#": 6462 + }, + { + "#": 6463 + }, + { + "#": 6464 + }, + { + "#": 6465 + }, + { + "#": 6466 + }, + { + "#": 6467 + }, + { + "#": 6468 + }, + { + "#": 6469 + }, + { + "#": 6470 + }, + { + "#": 6471 + }, + { + "#": 6472 + }, + { + "#": 6473 + }, + { + "#": 6474 + }, + { + "#": 6475 + }, + { + "#": 6476 + }, + { + "#": 6477 + }, + { + "#": 6478 + } + ], + { + "x": 308.40535, + "y": 934.64693, + "index": 0, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 306.86735, + "y": 940.88693, + "index": 1, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 303.88035, + "y": 946.57793, + "index": 2, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 299.61835, + "y": 951.38793, + "index": 3, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 294.32935, + "y": 955.03893, + "index": 4, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 288.31935, + "y": 957.31793, + "index": 5, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 281.93935, + "y": 958.09293, + "index": 6, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 275.55935, + "y": 957.31793, + "index": 7, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 269.54935, + "y": 955.03893, + "index": 8, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 264.26035, + "y": 951.38793, + "index": 9, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 259.99835, + "y": 946.57793, + "index": 10, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 257.01135, + "y": 940.88693, + "index": 11, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 255.47335, + "y": 934.64693, + "index": 12, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 255.47335, + "y": 928.21893, + "index": 13, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 257.01135, + "y": 921.97893, + "index": 14, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 259.99835, + "y": 916.28793, + "index": 15, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 264.26035, + "y": 911.47793, + "index": 16, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 269.54935, + "y": 907.82693, + "index": 17, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 275.55935, + "y": 905.54793, + "index": 18, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 281.93935, + "y": 904.77293, + "index": 19, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 288.31935, + "y": 905.54793, + "index": 20, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 294.32935, + "y": 907.82693, + "index": 21, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 299.61835, + "y": 911.47793, + "index": 22, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 303.88035, + "y": 916.28793, + "index": 23, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 306.86735, + "y": 921.97893, + "index": 24, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 308.40535, + "y": 928.21893, + "index": 25, + "body": { + "#": 6450 + }, + "isInternal": false + }, + { + "x": 281.93935, + "y": 931.43293 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6486 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6488 + }, + "max": { + "#": 6489 + } + }, + { + "x": 255.47335, + "y": 904.77293 + }, + { + "x": 308.40535, + "y": 958.09293 + }, + { + "x": 281.93935, + "y": 928.52566 + }, + [ + { + "#": 6492 + }, + { + "#": 6493 + }, + { + "#": 6494 + }, + { + "#": 6495 + }, + { + "#": 6496 + }, + { + "#": 6497 + }, + { + "#": 6498 + }, + { + "#": 6499 + }, + { + "#": 6500 + }, + { + "#": 6501 + }, + { + "#": 6502 + }, + { + "#": 6503 + }, + { + "#": 6504 + } + ], + { + "x": -0.97094, + "y": -0.23931 + }, + { + "x": -0.88545, + "y": -0.46474 + }, + { + "x": -0.74846, + "y": -0.66318 + }, + { + "x": -0.56809, + "y": -0.82296 + }, + { + "x": -0.35457, + "y": -0.93503 + }, + { + "x": -0.12059, + "y": -0.9927 + }, + { + "x": 0.12059, + "y": -0.9927 + }, + { + "x": 0.35457, + "y": -0.93503 + }, + { + "x": 0.56809, + "y": -0.82296 + }, + { + "x": 0.74846, + "y": -0.66318 + }, + { + "x": 0.88545, + "y": -0.46474 + }, + { + "x": 0.97094, + "y": -0.23931 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,18,19", + "startCol": 5, + "endCol": 6, + "startRow": 18, + "endRow": 19 + }, + { + "id": 129, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6507 + }, + "angle": 0, + "vertices": { + "#": 6508 + }, + "position": { + "#": 6535 + }, + "force": { + "#": 6536 + }, + "torque": 0, + "positionImpulse": { + "#": 6537 + }, + "constraintImpulse": { + "#": 6538 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6539 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6540 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6541 + }, + "circleRadius": 25.9049, + "bounds": { + "#": 6543 + }, + "positionPrev": { + "#": 6546 + }, + "anglePrev": 0, + "axes": { + "#": 6547 + }, + "area": 2087.76028, + "mass": 2.08776, + "inverseMass": 0.47898, + "inertia": 2774.91491, + "inverseInertia": 0.00036, + "parent": { + "#": 6506 + }, + "sleepCounter": 0, + "region": { + "#": 6561 + } + }, + [ + { + "#": 6506 + } + ], + [ + { + "#": 6509 + }, + { + "#": 6510 + }, + { + "#": 6511 + }, + { + "#": 6512 + }, + { + "#": 6513 + }, + { + "#": 6514 + }, + { + "#": 6515 + }, + { + "#": 6516 + }, + { + "#": 6517 + }, + { + "#": 6518 + }, + { + "#": 6519 + }, + { + "#": 6520 + }, + { + "#": 6521 + }, + { + "#": 6522 + }, + { + "#": 6523 + }, + { + "#": 6524 + }, + { + "#": 6525 + }, + { + "#": 6526 + }, + { + "#": 6527 + }, + { + "#": 6528 + }, + { + "#": 6529 + }, + { + "#": 6530 + }, + { + "#": 6531 + }, + { + "#": 6532 + }, + { + "#": 6533 + }, + { + "#": 6534 + } + ], + { + "x": 380.81757, + "y": 921.34514, + "index": 0, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 379.32357, + "y": 927.40914, + "index": 1, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 376.42057, + "y": 932.93914, + "index": 2, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 372.27957, + "y": 937.61314, + "index": 3, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 367.14057, + "y": 941.16114, + "index": 4, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 361.30057, + "y": 943.37514, + "index": 5, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 355.10157, + "y": 944.12814, + "index": 6, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 348.90257, + "y": 943.37514, + "index": 7, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 343.06257, + "y": 941.16114, + "index": 8, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 337.92357, + "y": 937.61314, + "index": 9, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 333.78257, + "y": 932.93914, + "index": 10, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 330.87957, + "y": 927.40914, + "index": 11, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 329.38557, + "y": 921.34514, + "index": 12, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 329.38557, + "y": 915.10114, + "index": 13, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 330.87957, + "y": 909.03714, + "index": 14, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 333.78257, + "y": 903.50714, + "index": 15, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 337.92357, + "y": 898.83314, + "index": 16, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 343.06257, + "y": 895.28514, + "index": 17, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 348.90257, + "y": 893.07114, + "index": 18, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 355.10157, + "y": 892.31814, + "index": 19, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 361.30057, + "y": 893.07114, + "index": 20, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 367.14057, + "y": 895.28514, + "index": 21, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 372.27957, + "y": 898.83314, + "index": 22, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 376.42057, + "y": 903.50714, + "index": 23, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 379.32357, + "y": 909.03714, + "index": 24, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 380.81757, + "y": 915.10114, + "index": 25, + "body": { + "#": 6506 + }, + "isInternal": false + }, + { + "x": 355.10157, + "y": 918.22314 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.88542, + "y": 0.78445 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6542 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6544 + }, + "max": { + "#": 6545 + } + }, + { + "x": 329.38557, + "y": 892.31814 + }, + { + "x": 380.81757, + "y": 947.03541 + }, + { + "x": 355.10157, + "y": 915.31587 + }, + [ + { + "#": 6548 + }, + { + "#": 6549 + }, + { + "#": 6550 + }, + { + "#": 6551 + }, + { + "#": 6552 + }, + { + "#": 6553 + }, + { + "#": 6554 + }, + { + "#": 6555 + }, + { + "#": 6556 + }, + { + "#": 6557 + }, + { + "#": 6558 + }, + { + "#": 6559 + }, + { + "#": 6560 + } + ], + { + "x": -0.97097, + "y": -0.23922 + }, + { + "x": -0.88541, + "y": -0.4648 + }, + { + "x": -0.7485, + "y": -0.66314 + }, + { + "x": -0.56815, + "y": -0.82292 + }, + { + "x": -0.35449, + "y": -0.93506 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.35449, + "y": -0.93506 + }, + { + "x": 0.56815, + "y": -0.82292 + }, + { + "x": 0.7485, + "y": -0.66314 + }, + { + "x": 0.88541, + "y": -0.4648 + }, + { + "x": 0.97097, + "y": -0.23922 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,18,19", + "startCol": 6, + "endCol": 7, + "startRow": 18, + "endRow": 19 + }, + { + "id": 130, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6563 + }, + "angle": 0, + "vertices": { + "#": 6564 + }, + "position": { + "#": 6583 + }, + "force": { + "#": 6584 + }, + "torque": 0, + "positionImpulse": { + "#": 6585 + }, + "constraintImpulse": { + "#": 6586 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6587 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6588 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6589 + }, + "circleRadius": 16.98605, + "bounds": { + "#": 6591 + }, + "positionPrev": { + "#": 6594 + }, + "anglePrev": 0, + "axes": { + "#": 6595 + }, + "area": 888.13201, + "mass": 0.88813, + "inverseMass": 1.12596, + "inertia": 502.194, + "inverseInertia": 0.00199, + "parent": { + "#": 6562 + }, + "sleepCounter": 0, + "region": { + "#": 6605 + } + }, + [ + { + "#": 6562 + } + ], + [ + { + "#": 6565 + }, + { + "#": 6566 + }, + { + "#": 6567 + }, + { + "#": 6568 + }, + { + "#": 6569 + }, + { + "#": 6570 + }, + { + "#": 6571 + }, + { + "#": 6572 + }, + { + "#": 6573 + }, + { + "#": 6574 + }, + { + "#": 6575 + }, + { + "#": 6576 + }, + { + "#": 6577 + }, + { + "#": 6578 + }, + { + "#": 6579 + }, + { + "#": 6580 + }, + { + "#": 6581 + }, + { + "#": 6582 + } + ], + { + "x": 420.054, + "y": 908.51575, + "index": 0, + "body": { + "#": 6562 + }, + "isInternal": false + }, + { + "x": 418.036, + "y": 914.05875, + "index": 1, + "body": { + "#": 6562 + }, + "isInternal": false + }, + { + "x": 414.244, + "y": 918.57775, + "index": 2, + "body": { + "#": 6562 + }, + "isInternal": false + }, + { + "x": 409.136, + "y": 921.52775, + "index": 3, + "body": { + "#": 6562 + }, + "isInternal": false + }, + { + "x": 403.326, + "y": 922.55175, + "index": 4, + "body": { + "#": 6562 + }, + "isInternal": false + }, + { + "x": 397.516, + "y": 921.52775, + "index": 5, + "body": { + "#": 6562 + }, + "isInternal": false + }, + { + "x": 392.408, + "y": 918.57775, + "index": 6, + "body": { + "#": 6562 + }, + "isInternal": false + }, + { + "x": 388.616, + "y": 914.05875, + "index": 7, + "body": { + "#": 6562 + }, + "isInternal": false + }, + { + "x": 386.598, + "y": 908.51575, + "index": 8, + "body": { + "#": 6562 + }, + "isInternal": false + }, + { + "x": 386.598, + "y": 902.61575, + "index": 9, + "body": { + "#": 6562 + }, + "isInternal": false + }, + { + "x": 388.616, + "y": 897.07275, + "index": 10, + "body": { + "#": 6562 + }, + "isInternal": false + }, + { + "x": 392.408, + "y": 892.55375, + "index": 11, + "body": { + "#": 6562 + }, + "isInternal": false + }, + { + "x": 397.516, + "y": 889.60375, + "index": 12, + "body": { + "#": 6562 + }, + "isInternal": false + }, + { + "x": 403.326, + "y": 888.57975, + "index": 13, + "body": { + "#": 6562 + }, + "isInternal": false + }, + { + "x": 409.136, + "y": 889.60375, + "index": 14, + "body": { + "#": 6562 + }, + "isInternal": false + }, + { + "x": 414.244, + "y": 892.55375, + "index": 15, + "body": { + "#": 6562 + }, + "isInternal": false + }, + { + "x": 418.036, + "y": 897.07275, + "index": 16, + "body": { + "#": 6562 + }, + "isInternal": false + }, + { + "x": 420.054, + "y": 902.61575, + "index": 17, + "body": { + "#": 6562 + }, + "isInternal": false + }, + { + "x": 403.326, + "y": 905.56575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6590 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6592 + }, + "max": { + "#": 6593 + } + }, + { + "x": 386.598, + "y": 888.57975 + }, + { + "x": 420.054, + "y": 922.55175 + }, + { + "x": 403.326, + "y": 902.65848 + }, + [ + { + "#": 6596 + }, + { + "#": 6597 + }, + { + "#": 6598 + }, + { + "#": 6599 + }, + { + "#": 6600 + }, + { + "#": 6601 + }, + { + "#": 6602 + }, + { + "#": 6603 + }, + { + "#": 6604 + } + ], + { + "x": -0.93966, + "y": -0.3421 + }, + { + "x": -0.76604, + "y": -0.6428 + }, + { + "x": -0.50011, + "y": -0.86596 + }, + { + "x": -0.17357, + "y": -0.98482 + }, + { + "x": 0.17357, + "y": -0.98482 + }, + { + "x": 0.50011, + "y": -0.86596 + }, + { + "x": 0.76604, + "y": -0.6428 + }, + { + "x": 0.93966, + "y": -0.3421 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,18,19", + "startCol": 8, + "endCol": 8, + "startRow": 18, + "endRow": 19 + }, + { + "id": 131, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6607 + }, + "angle": 0, + "vertices": { + "#": 6608 + }, + "position": { + "#": 6631 + }, + "force": { + "#": 6632 + }, + "torque": 0, + "positionImpulse": { + "#": 6633 + }, + "constraintImpulse": { + "#": 6634 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6635 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6636 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6637 + }, + "circleRadius": 21.75547, + "bounds": { + "#": 6639 + }, + "positionPrev": { + "#": 6642 + }, + "anglePrev": 0, + "axes": { + "#": 6643 + }, + "area": 1466.77919, + "mass": 1.46678, + "inverseMass": 0.68177, + "inertia": 1369.70112, + "inverseInertia": 0.00073, + "parent": { + "#": 6606 + }, + "sleepCounter": 0, + "region": { + "#": 6655 + } + }, + [ + { + "#": 6606 + } + ], + [ + { + "#": 6609 + }, + { + "#": 6610 + }, + { + "#": 6611 + }, + { + "#": 6612 + }, + { + "#": 6613 + }, + { + "#": 6614 + }, + { + "#": 6615 + }, + { + "#": 6616 + }, + { + "#": 6617 + }, + { + "#": 6618 + }, + { + "#": 6619 + }, + { + "#": 6620 + }, + { + "#": 6621 + }, + { + "#": 6622 + }, + { + "#": 6623 + }, + { + "#": 6624 + }, + { + "#": 6625 + }, + { + "#": 6626 + }, + { + "#": 6627 + }, + { + "#": 6628 + }, + { + "#": 6629 + }, + { + "#": 6630 + } + ], + { + "x": 473.122, + "y": 913.43075, + "index": 0, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 471.377, + "y": 919.37275, + "index": 1, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 468.03, + "y": 924.58175, + "index": 2, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 463.35, + "y": 928.63675, + "index": 3, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 457.717, + "y": 931.20875, + "index": 4, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 451.588, + "y": 932.08975, + "index": 5, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 445.459, + "y": 931.20875, + "index": 6, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 439.826, + "y": 928.63675, + "index": 7, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 435.146, + "y": 924.58175, + "index": 8, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 431.799, + "y": 919.37275, + "index": 9, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 430.054, + "y": 913.43075, + "index": 10, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 430.054, + "y": 907.23875, + "index": 11, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 431.799, + "y": 901.29675, + "index": 12, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 435.146, + "y": 896.08775, + "index": 13, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 439.826, + "y": 892.03275, + "index": 14, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 445.459, + "y": 889.46075, + "index": 15, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 451.588, + "y": 888.57975, + "index": 16, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 457.717, + "y": 889.46075, + "index": 17, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 463.35, + "y": 892.03275, + "index": 18, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 468.03, + "y": 896.08775, + "index": 19, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 471.377, + "y": 901.29675, + "index": 20, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 473.122, + "y": 907.23875, + "index": 21, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 451.588, + "y": 910.33475 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6638 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6640 + }, + "max": { + "#": 6641 + } + }, + { + "x": 430.054, + "y": 888.57975 + }, + { + "x": 473.122, + "y": 932.08975 + }, + { + "x": 451.588, + "y": 907.42748 + }, + [ + { + "#": 6644 + }, + { + "#": 6645 + }, + { + "#": 6646 + }, + { + "#": 6647 + }, + { + "#": 6648 + }, + { + "#": 6649 + }, + { + "#": 6650 + }, + { + "#": 6651 + }, + { + "#": 6652 + }, + { + "#": 6653 + }, + { + "#": 6654 + } + ], + { + "x": -0.95948, + "y": -0.28177 + }, + { + "x": -0.8413, + "y": -0.54057 + }, + { + "x": -0.65484, + "y": -0.75577 + }, + { + "x": -0.41535, + "y": -0.90966 + }, + { + "x": -0.14228, + "y": -0.98983 + }, + { + "x": 0.14228, + "y": -0.98983 + }, + { + "x": 0.41535, + "y": -0.90966 + }, + { + "x": 0.65484, + "y": -0.75577 + }, + { + "x": 0.8413, + "y": -0.54057 + }, + { + "x": 0.95948, + "y": -0.28177 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,18,19", + "startCol": 8, + "endCol": 9, + "startRow": 18, + "endRow": 19 + }, + { + "id": 132, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6657 + }, + "angle": -0.00001, + "vertices": { + "#": 6658 + }, + "position": { + "#": 6679 + }, + "force": { + "#": 6680 + }, + "torque": 0, + "positionImpulse": { + "#": 6681 + }, + "constraintImpulse": { + "#": 6682 + }, + "totalContacts": 0, + "speed": 2.9075, + "angularSpeed": 0, + "velocity": { + "#": 6683 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6684 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6685 + }, + "circleRadius": 18.17612, + "bounds": { + "#": 6687 + }, + "positionPrev": { + "#": 6690 + }, + "anglePrev": -0.00001, + "axes": { + "#": 6691 + }, + "area": 1020.87396, + "mass": 1.02087, + "inverseMass": 0.97955, + "inertia": 663.51105, + "inverseInertia": 0.00151, + "parent": { + "#": 6656 + }, + "sleepCounter": 0, + "region": { + "#": 6702 + } + }, + [ + { + "#": 6656 + } + ], + [ + { + "#": 6659 + }, + { + "#": 6660 + }, + { + "#": 6661 + }, + { + "#": 6662 + }, + { + "#": 6663 + }, + { + "#": 6664 + }, + { + "#": 6665 + }, + { + "#": 6666 + }, + { + "#": 6667 + }, + { + "#": 6668 + }, + { + "#": 6669 + }, + { + "#": 6670 + }, + { + "#": 6671 + }, + { + "#": 6672 + }, + { + "#": 6673 + }, + { + "#": 6674 + }, + { + "#": 6675 + }, + { + "#": 6676 + }, + { + "#": 6677 + }, + { + "#": 6678 + } + ], + { + "x": 516.26302, + "y": 928.58837, + "index": 0, + "body": { + "#": 6656 + }, + "isInternal": false + }, + { + "x": 514.5061, + "y": 933.99739, + "index": 1, + "body": { + "#": 6656 + }, + "isInternal": false + }, + { + "x": 511.16317, + "y": 938.59744, + "index": 2, + "body": { + "#": 6656 + }, + "isInternal": false + }, + { + "x": 506.56322, + "y": 941.94051, + "index": 3, + "body": { + "#": 6656 + }, + "isInternal": false + }, + { + "x": 501.15425, + "y": 943.69759, + "index": 4, + "body": { + "#": 6656 + }, + "isInternal": false + }, + { + "x": 495.46825, + "y": 943.69768, + "index": 5, + "body": { + "#": 6656 + }, + "isInternal": false + }, + { + "x": 490.05922, + "y": 941.94076, + "index": 6, + "body": { + "#": 6656 + }, + "isInternal": false + }, + { + "x": 485.45917, + "y": 938.59783, + "index": 7, + "body": { + "#": 6656 + }, + "isInternal": false + }, + { + "x": 482.1161, + "y": 933.99788, + "index": 8, + "body": { + "#": 6656 + }, + "isInternal": false + }, + { + "x": 480.35902, + "y": 928.5889, + "index": 9, + "body": { + "#": 6656 + }, + "isInternal": false + }, + { + "x": 480.35894, + "y": 922.9029, + "index": 10, + "body": { + "#": 6656 + }, + "isInternal": false + }, + { + "x": 482.11586, + "y": 917.49388, + "index": 11, + "body": { + "#": 6656 + }, + "isInternal": false + }, + { + "x": 485.45879, + "y": 912.89383, + "index": 12, + "body": { + "#": 6656 + }, + "isInternal": false + }, + { + "x": 490.05874, + "y": 909.55076, + "index": 13, + "body": { + "#": 6656 + }, + "isInternal": false + }, + { + "x": 495.46771, + "y": 907.79368, + "index": 14, + "body": { + "#": 6656 + }, + "isInternal": false + }, + { + "x": 501.15371, + "y": 907.79359, + "index": 15, + "body": { + "#": 6656 + }, + "isInternal": false + }, + { + "x": 506.56274, + "y": 909.55051, + "index": 16, + "body": { + "#": 6656 + }, + "isInternal": false + }, + { + "x": 511.16279, + "y": 912.89344, + "index": 17, + "body": { + "#": 6656 + }, + "isInternal": false + }, + { + "x": 514.50586, + "y": 917.49339, + "index": 18, + "body": { + "#": 6656 + }, + "isInternal": false + }, + { + "x": 516.26294, + "y": 922.90237, + "index": 19, + "body": { + "#": 6656 + }, + "isInternal": false + }, + { + "x": 498.31098, + "y": 925.74564 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.38331, + "y": 2.6659 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00016, + "y": 2.9075 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6686 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6688 + }, + "max": { + "#": 6689 + } + }, + { + "x": 480.35878, + "y": 907.79359 + }, + { + "x": 516.26302, + "y": 946.60518 + }, + { + "x": 498.31114, + "y": 922.83814 + }, + [ + { + "#": 6692 + }, + { + "#": 6693 + }, + { + "#": 6694 + }, + { + "#": 6695 + }, + { + "#": 6696 + }, + { + "#": 6697 + }, + { + "#": 6698 + }, + { + "#": 6699 + }, + { + "#": 6700 + }, + { + "#": 6701 + } + ], + { + "x": -0.95109, + "y": -0.30892 + }, + { + "x": -0.80895, + "y": -0.58788 + }, + { + "x": -0.5879, + "y": -0.80893 + }, + { + "x": -0.30895, + "y": -0.95108 + }, + { + "x": -0.00001, + "y": -1 + }, + { + "x": 0.30892, + "y": -0.95109 + }, + { + "x": 0.58788, + "y": -0.80895 + }, + { + "x": 0.80893, + "y": -0.5879 + }, + { + "x": 0.95108, + "y": -0.30895 + }, + { + "x": 1, + "y": -0.00001 + }, + { + "id": "10,10,18,19", + "startCol": 10, + "endCol": 10, + "startRow": 18, + "endRow": 19 + }, + { + "id": 133, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6704 + }, + "angle": 0, + "vertices": { + "#": 6705 + }, + "position": { + "#": 6728 + }, + "force": { + "#": 6729 + }, + "torque": 0, + "positionImpulse": { + "#": 6730 + }, + "constraintImpulse": { + "#": 6731 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6732 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6733 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6734 + }, + "circleRadius": 21.98875, + "bounds": { + "#": 6736 + }, + "positionPrev": { + "#": 6739 + }, + "anglePrev": 0, + "axes": { + "#": 6740 + }, + "area": 1498.42052, + "mass": 1.49842, + "inverseMass": 0.66737, + "inertia": 1429.43283, + "inverseInertia": 0.0007, + "parent": { + "#": 6703 + }, + "sleepCounter": 0, + "region": { + "#": 6752 + } + }, + [ + { + "#": 6703 + } + ], + [ + { + "#": 6706 + }, + { + "#": 6707 + }, + { + "#": 6708 + }, + { + "#": 6709 + }, + { + "#": 6710 + }, + { + "#": 6711 + }, + { + "#": 6712 + }, + { + "#": 6713 + }, + { + "#": 6714 + }, + { + "#": 6715 + }, + { + "#": 6716 + }, + { + "#": 6717 + }, + { + "#": 6718 + }, + { + "#": 6719 + }, + { + "#": 6720 + }, + { + "#": 6721 + }, + { + "#": 6722 + }, + { + "#": 6723 + }, + { + "#": 6724 + }, + { + "#": 6725 + }, + { + "#": 6726 + }, + { + "#": 6727 + } + ], + { + "x": 572.556, + "y": 913.69775, + "index": 0, + "body": { + "#": 6703 + }, + "isInternal": false + }, + { + "x": 570.793, + "y": 919.70275, + "index": 1, + "body": { + "#": 6703 + }, + "isInternal": false + }, + { + "x": 567.409, + "y": 924.96875, + "index": 2, + "body": { + "#": 6703 + }, + "isInternal": false + }, + { + "x": 562.679, + "y": 929.06675, + "index": 3, + "body": { + "#": 6703 + }, + "isInternal": false + }, + { + "x": 556.986, + "y": 931.66675, + "index": 4, + "body": { + "#": 6703 + }, + "isInternal": false + }, + { + "x": 550.791, + "y": 932.55775, + "index": 5, + "body": { + "#": 6703 + }, + "isInternal": false + }, + { + "x": 544.596, + "y": 931.66675, + "index": 6, + "body": { + "#": 6703 + }, + "isInternal": false + }, + { + "x": 538.903, + "y": 929.06675, + "index": 7, + "body": { + "#": 6703 + }, + "isInternal": false + }, + { + "x": 534.173, + "y": 924.96875, + "index": 8, + "body": { + "#": 6703 + }, + "isInternal": false + }, + { + "x": 530.789, + "y": 919.70275, + "index": 9, + "body": { + "#": 6703 + }, + "isInternal": false + }, + { + "x": 529.026, + "y": 913.69775, + "index": 10, + "body": { + "#": 6703 + }, + "isInternal": false + }, + { + "x": 529.026, + "y": 907.43975, + "index": 11, + "body": { + "#": 6703 + }, + "isInternal": false + }, + { + "x": 530.789, + "y": 901.43475, + "index": 12, + "body": { + "#": 6703 + }, + "isInternal": false + }, + { + "x": 534.173, + "y": 896.16875, + "index": 13, + "body": { + "#": 6703 + }, + "isInternal": false + }, + { + "x": 538.903, + "y": 892.07075, + "index": 14, + "body": { + "#": 6703 + }, + "isInternal": false + }, + { + "x": 544.596, + "y": 889.47075, + "index": 15, + "body": { + "#": 6703 + }, + "isInternal": false + }, + { + "x": 550.791, + "y": 888.57975, + "index": 16, + "body": { + "#": 6703 + }, + "isInternal": false + }, + { + "x": 556.986, + "y": 889.47075, + "index": 17, + "body": { + "#": 6703 + }, + "isInternal": false + }, + { + "x": 562.679, + "y": 892.07075, + "index": 18, + "body": { + "#": 6703 + }, + "isInternal": false + }, + { + "x": 567.409, + "y": 896.16875, + "index": 19, + "body": { + "#": 6703 + }, + "isInternal": false + }, + { + "x": 570.793, + "y": 901.43475, + "index": 20, + "body": { + "#": 6703 + }, + "isInternal": false + }, + { + "x": 572.556, + "y": 907.43975, + "index": 21, + "body": { + "#": 6703 + }, + "isInternal": false + }, + { + "x": 550.791, + "y": 910.56875 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6735 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6737 + }, + "max": { + "#": 6738 + } + }, + { + "x": 529.026, + "y": 888.57975 + }, + { + "x": 572.556, + "y": 932.55775 + }, + { + "x": 550.791, + "y": 907.66148 + }, + [ + { + "#": 6741 + }, + { + "#": 6742 + }, + { + "#": 6743 + }, + { + "#": 6744 + }, + { + "#": 6745 + }, + { + "#": 6746 + }, + { + "#": 6747 + }, + { + "#": 6748 + }, + { + "#": 6749 + }, + { + "#": 6750 + }, + { + "#": 6751 + } + ], + { + "x": -0.9595, + "y": -0.2817 + }, + { + "x": -0.84127, + "y": -0.54061 + }, + { + "x": -0.65481, + "y": -0.75579 + }, + { + "x": -0.41543, + "y": -0.90963 + }, + { + "x": -0.14236, + "y": -0.98981 + }, + { + "x": 0.14236, + "y": -0.98981 + }, + { + "x": 0.41543, + "y": -0.90963 + }, + { + "x": 0.65481, + "y": -0.75579 + }, + { + "x": 0.84127, + "y": -0.54061 + }, + { + "x": 0.9595, + "y": -0.2817 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,11,18,19", + "startCol": 11, + "endCol": 11, + "startRow": 18, + "endRow": 19 + }, + { + "id": 134, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6754 + }, + "angle": 0, + "vertices": { + "#": 6755 + }, + "position": { + "#": 6782 + }, + "force": { + "#": 6783 + }, + "torque": 0, + "positionImpulse": { + "#": 6784 + }, + "constraintImpulse": { + "#": 6785 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6786 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6787 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6788 + }, + "circleRadius": 28.37854, + "bounds": { + "#": 6790 + }, + "positionPrev": { + "#": 6793 + }, + "anglePrev": 0, + "axes": { + "#": 6794 + }, + "area": 2505.50503, + "mass": 2.50551, + "inverseMass": 0.39912, + "inertia": 3996.49218, + "inverseInertia": 0.00025, + "parent": { + "#": 6753 + }, + "sleepCounter": 0, + "region": { + "#": 6808 + } + }, + [ + { + "#": 6753 + } + ], + [ + { + "#": 6756 + }, + { + "#": 6757 + }, + { + "#": 6758 + }, + { + "#": 6759 + }, + { + "#": 6760 + }, + { + "#": 6761 + }, + { + "#": 6762 + }, + { + "#": 6763 + }, + { + "#": 6764 + }, + { + "#": 6765 + }, + { + "#": 6766 + }, + { + "#": 6767 + }, + { + "#": 6768 + }, + { + "#": 6769 + }, + { + "#": 6770 + }, + { + "#": 6771 + }, + { + "#": 6772 + }, + { + "#": 6773 + }, + { + "#": 6774 + }, + { + "#": 6775 + }, + { + "#": 6776 + }, + { + "#": 6777 + }, + { + "#": 6778 + }, + { + "#": 6779 + }, + { + "#": 6780 + }, + { + "#": 6781 + } + ], + { + "x": 638.9, + "y": 920.37975, + "index": 0, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 637.262, + "y": 927.02175, + "index": 1, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 634.083, + "y": 933.07975, + "index": 2, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 629.546, + "y": 938.20075, + "index": 3, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 623.916, + "y": 942.08675, + "index": 4, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 617.519, + "y": 944.51275, + "index": 5, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 610.728, + "y": 945.33775, + "index": 6, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 603.937, + "y": 944.51275, + "index": 7, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 597.54, + "y": 942.08675, + "index": 8, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 591.91, + "y": 938.20075, + "index": 9, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 587.373, + "y": 933.07975, + "index": 10, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 584.194, + "y": 927.02175, + "index": 11, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 582.556, + "y": 920.37975, + "index": 12, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 582.556, + "y": 913.53775, + "index": 13, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 584.194, + "y": 906.89575, + "index": 14, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 587.373, + "y": 900.83775, + "index": 15, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 591.91, + "y": 895.71675, + "index": 16, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 597.54, + "y": 891.83075, + "index": 17, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 603.937, + "y": 889.40475, + "index": 18, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 610.728, + "y": 888.57975, + "index": 19, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 617.519, + "y": 889.40475, + "index": 20, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 623.916, + "y": 891.83075, + "index": 21, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 629.546, + "y": 895.71675, + "index": 22, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 634.083, + "y": 900.83775, + "index": 23, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 637.262, + "y": 906.89575, + "index": 24, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 638.9, + "y": 913.53775, + "index": 25, + "body": { + "#": 6753 + }, + "isInternal": false + }, + { + "x": 610.728, + "y": 916.95875 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6789 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6791 + }, + "max": { + "#": 6792 + } + }, + { + "x": 582.556, + "y": 888.57975 + }, + { + "x": 638.9, + "y": 945.33775 + }, + { + "x": 610.728, + "y": 914.05148 + }, + [ + { + "#": 6795 + }, + { + "#": 6796 + }, + { + "#": 6797 + }, + { + "#": 6798 + }, + { + "#": 6799 + }, + { + "#": 6800 + }, + { + "#": 6801 + }, + { + "#": 6802 + }, + { + "#": 6803 + }, + { + "#": 6804 + }, + { + "#": 6805 + }, + { + "#": 6806 + }, + { + "#": 6807 + } + ], + { + "x": -0.97091, + "y": -0.23944 + }, + { + "x": -0.88549, + "y": -0.46467 + }, + { + "x": -0.7485, + "y": -0.66314 + }, + { + "x": -0.56805, + "y": -0.82299 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.1206, + "y": -0.9927 + }, + { + "x": 0.1206, + "y": -0.9927 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56805, + "y": -0.82299 + }, + { + "x": 0.7485, + "y": -0.66314 + }, + { + "x": 0.88549, + "y": -0.46467 + }, + { + "x": 0.97091, + "y": -0.23944 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,13,18,19", + "startCol": 12, + "endCol": 13, + "startRow": 18, + "endRow": 19 + }, + { + "id": 135, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6810 + }, + "angle": 0, + "vertices": { + "#": 6811 + }, + "position": { + "#": 6836 + }, + "force": { + "#": 6837 + }, + "torque": 0, + "positionImpulse": { + "#": 6838 + }, + "constraintImpulse": { + "#": 6839 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6840 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6841 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6842 + }, + "circleRadius": 23.64178, + "bounds": { + "#": 6844 + }, + "positionPrev": { + "#": 6847 + }, + "anglePrev": 0, + "axes": { + "#": 6848 + }, + "area": 1735.9463, + "mass": 1.73595, + "inverseMass": 0.57605, + "inertia": 1918.51026, + "inverseInertia": 0.00052, + "parent": { + "#": 6809 + }, + "sleepCounter": 0, + "region": { + "#": 6861 + } + }, + [ + { + "#": 6809 + } + ], + [ + { + "#": 6812 + }, + { + "#": 6813 + }, + { + "#": 6814 + }, + { + "#": 6815 + }, + { + "#": 6816 + }, + { + "#": 6817 + }, + { + "#": 6818 + }, + { + "#": 6819 + }, + { + "#": 6820 + }, + { + "#": 6821 + }, + { + "#": 6822 + }, + { + "#": 6823 + }, + { + "#": 6824 + }, + { + "#": 6825 + }, + { + "#": 6826 + }, + { + "#": 6827 + }, + { + "#": 6828 + }, + { + "#": 6829 + }, + { + "#": 6830 + }, + { + "#": 6831 + }, + { + "#": 6832 + }, + { + "#": 6833 + }, + { + "#": 6834 + }, + { + "#": 6835 + } + ], + { + "x": 146.88, + "y": 981.86375, + "index": 0, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 145.282, + "y": 987.82475, + "index": 1, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 142.196, + "y": 993.16975, + "index": 2, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 137.832, + "y": 997.53375, + "index": 3, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 132.487, + "y": 1000.61975, + "index": 4, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 126.526, + "y": 1002.21775, + "index": 5, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 120.354, + "y": 1002.21775, + "index": 6, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 114.393, + "y": 1000.61975, + "index": 7, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 109.048, + "y": 997.53375, + "index": 8, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 104.684, + "y": 993.16975, + "index": 9, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 101.598, + "y": 987.82475, + "index": 10, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 100, + "y": 981.86375, + "index": 11, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 100, + "y": 975.69175, + "index": 12, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 101.598, + "y": 969.73075, + "index": 13, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 104.684, + "y": 964.38575, + "index": 14, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 109.048, + "y": 960.02175, + "index": 15, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 114.393, + "y": 956.93575, + "index": 16, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 120.354, + "y": 955.33775, + "index": 17, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 126.526, + "y": 955.33775, + "index": 18, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 132.487, + "y": 956.93575, + "index": 19, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 137.832, + "y": 960.02175, + "index": 20, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 142.196, + "y": 964.38575, + "index": 21, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 145.282, + "y": 969.73075, + "index": 22, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 146.88, + "y": 975.69175, + "index": 23, + "body": { + "#": 6809 + }, + "isInternal": false + }, + { + "x": 123.44, + "y": 978.77775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6843 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6845 + }, + "max": { + "#": 6846 + } + }, + { + "x": 100, + "y": 955.33775 + }, + { + "x": 146.88, + "y": 1002.21775 + }, + { + "x": 123.44, + "y": 975.87048 + }, + [ + { + "#": 6849 + }, + { + "#": 6850 + }, + { + "#": 6851 + }, + { + "#": 6852 + }, + { + "#": 6853 + }, + { + "#": 6854 + }, + { + "#": 6855 + }, + { + "#": 6856 + }, + { + "#": 6857 + }, + { + "#": 6858 + }, + { + "#": 6859 + }, + { + "#": 6860 + } + ], + { + "x": -0.9659, + "y": -0.25893 + }, + { + "x": -0.86602, + "y": -0.50001 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.50001, + "y": -0.86602 + }, + { + "x": -0.25893, + "y": -0.9659 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25893, + "y": -0.9659 + }, + { + "x": 0.50001, + "y": -0.86602 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86602, + "y": -0.50001 + }, + { + "x": 0.9659, + "y": -0.25893 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,3,19,20", + "startCol": 2, + "endCol": 3, + "startRow": 19, + "endRow": 20 + }, + { + "id": 136, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6863 + }, + "angle": 0, + "vertices": { + "#": 6864 + }, + "position": { + "#": 6887 + }, + "force": { + "#": 6888 + }, + "torque": 0, + "positionImpulse": { + "#": 6889 + }, + "constraintImpulse": { + "#": 6890 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6891 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6892 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6893 + }, + "circleRadius": 21.85256, + "bounds": { + "#": 6895 + }, + "positionPrev": { + "#": 6898 + }, + "anglePrev": 0, + "axes": { + "#": 6899 + }, + "area": 1479.90612, + "mass": 1.47991, + "inverseMass": 0.67572, + "inertia": 1394.32709, + "inverseInertia": 0.00072, + "parent": { + "#": 6862 + }, + "sleepCounter": 0, + "region": { + "#": 6911 + } + }, + [ + { + "#": 6862 + } + ], + [ + { + "#": 6865 + }, + { + "#": 6866 + }, + { + "#": 6867 + }, + { + "#": 6868 + }, + { + "#": 6869 + }, + { + "#": 6870 + }, + { + "#": 6871 + }, + { + "#": 6872 + }, + { + "#": 6873 + }, + { + "#": 6874 + }, + { + "#": 6875 + }, + { + "#": 6876 + }, + { + "#": 6877 + }, + { + "#": 6878 + }, + { + "#": 6879 + }, + { + "#": 6880 + }, + { + "#": 6881 + }, + { + "#": 6882 + }, + { + "#": 6883 + }, + { + "#": 6884 + }, + { + "#": 6885 + }, + { + "#": 6886 + } + ], + { + "x": 200.14, + "y": 980.30075, + "index": 0, + "body": { + "#": 6862 + }, + "isInternal": false + }, + { + "x": 198.388, + "y": 986.26875, + "index": 1, + "body": { + "#": 6862 + }, + "isInternal": false + }, + { + "x": 195.025, + "y": 991.50075, + "index": 2, + "body": { + "#": 6862 + }, + "isInternal": false + }, + { + "x": 190.324, + "y": 995.57475, + "index": 3, + "body": { + "#": 6862 + }, + "isInternal": false + }, + { + "x": 184.667, + "y": 998.15775, + "index": 4, + "body": { + "#": 6862 + }, + "isInternal": false + }, + { + "x": 178.51, + "y": 999.04375, + "index": 5, + "body": { + "#": 6862 + }, + "isInternal": false + }, + { + "x": 172.353, + "y": 998.15775, + "index": 6, + "body": { + "#": 6862 + }, + "isInternal": false + }, + { + "x": 166.696, + "y": 995.57475, + "index": 7, + "body": { + "#": 6862 + }, + "isInternal": false + }, + { + "x": 161.995, + "y": 991.50075, + "index": 8, + "body": { + "#": 6862 + }, + "isInternal": false + }, + { + "x": 158.632, + "y": 986.26875, + "index": 9, + "body": { + "#": 6862 + }, + "isInternal": false + }, + { + "x": 156.88, + "y": 980.30075, + "index": 10, + "body": { + "#": 6862 + }, + "isInternal": false + }, + { + "x": 156.88, + "y": 974.08075, + "index": 11, + "body": { + "#": 6862 + }, + "isInternal": false + }, + { + "x": 158.632, + "y": 968.11275, + "index": 12, + "body": { + "#": 6862 + }, + "isInternal": false + }, + { + "x": 161.995, + "y": 962.88075, + "index": 13, + "body": { + "#": 6862 + }, + "isInternal": false + }, + { + "x": 166.696, + "y": 958.80675, + "index": 14, + "body": { + "#": 6862 + }, + "isInternal": false + }, + { + "x": 172.353, + "y": 956.22375, + "index": 15, + "body": { + "#": 6862 + }, + "isInternal": false + }, + { + "x": 178.51, + "y": 955.33775, + "index": 16, + "body": { + "#": 6862 + }, + "isInternal": false + }, + { + "x": 184.667, + "y": 956.22375, + "index": 17, + "body": { + "#": 6862 + }, + "isInternal": false + }, + { + "x": 190.324, + "y": 958.80675, + "index": 18, + "body": { + "#": 6862 + }, + "isInternal": false + }, + { + "x": 195.025, + "y": 962.88075, + "index": 19, + "body": { + "#": 6862 + }, + "isInternal": false + }, + { + "x": 198.388, + "y": 968.11275, + "index": 20, + "body": { + "#": 6862 + }, + "isInternal": false + }, + { + "x": 200.14, + "y": 974.08075, + "index": 21, + "body": { + "#": 6862 + }, + "isInternal": false + }, + { + "x": 178.51, + "y": 977.19075 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6894 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6896 + }, + "max": { + "#": 6897 + } + }, + { + "x": 156.88, + "y": 955.33775 + }, + { + "x": 200.14, + "y": 999.04375 + }, + { + "x": 178.51, + "y": 974.28348 + }, + [ + { + "#": 6900 + }, + { + "#": 6901 + }, + { + "#": 6902 + }, + { + "#": 6903 + }, + { + "#": 6904 + }, + { + "#": 6905 + }, + { + "#": 6906 + }, + { + "#": 6907 + }, + { + "#": 6908 + }, + { + "#": 6909 + }, + { + "#": 6910 + } + ], + { + "x": -0.95951, + "y": -0.28168 + }, + { + "x": -0.84121, + "y": -0.54071 + }, + { + "x": -0.65491, + "y": -0.7557 + }, + { + "x": -0.41535, + "y": -0.90966 + }, + { + "x": -0.14243, + "y": -0.9898 + }, + { + "x": 0.14243, + "y": -0.9898 + }, + { + "x": 0.41535, + "y": -0.90966 + }, + { + "x": 0.65491, + "y": -0.7557 + }, + { + "x": 0.84121, + "y": -0.54071 + }, + { + "x": 0.95951, + "y": -0.28168 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,19,20", + "startCol": 3, + "endCol": 4, + "startRow": 19, + "endRow": 20 + }, + { + "id": 137, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6913 + }, + "angle": 0, + "vertices": { + "#": 6914 + }, + "position": { + "#": 6937 + }, + "force": { + "#": 6938 + }, + "torque": 0, + "positionImpulse": { + "#": 6939 + }, + "constraintImpulse": { + "#": 6940 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6941 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6942 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6943 + }, + "circleRadius": 21.52939, + "bounds": { + "#": 6945 + }, + "positionPrev": { + "#": 6948 + }, + "anglePrev": 0, + "axes": { + "#": 6949 + }, + "area": 1436.47018, + "mass": 1.43647, + "inverseMass": 0.69615, + "inertia": 1313.67992, + "inverseInertia": 0.00076, + "parent": { + "#": 6912 + }, + "sleepCounter": 0, + "region": { + "#": 6961 + } + }, + [ + { + "#": 6912 + } + ], + [ + { + "#": 6915 + }, + { + "#": 6916 + }, + { + "#": 6917 + }, + { + "#": 6918 + }, + { + "#": 6919 + }, + { + "#": 6920 + }, + { + "#": 6921 + }, + { + "#": 6922 + }, + { + "#": 6923 + }, + { + "#": 6924 + }, + { + "#": 6925 + }, + { + "#": 6926 + }, + { + "#": 6927 + }, + { + "#": 6928 + }, + { + "#": 6929 + }, + { + "#": 6930 + }, + { + "#": 6931 + }, + { + "#": 6932 + }, + { + "#": 6933 + }, + { + "#": 6934 + }, + { + "#": 6935 + }, + { + "#": 6936 + } + ], + { + "x": 252.76, + "y": 979.93075, + "index": 0, + "body": { + "#": 6912 + }, + "isInternal": false + }, + { + "x": 251.034, + "y": 985.81075, + "index": 1, + "body": { + "#": 6912 + }, + "isInternal": false + }, + { + "x": 247.721, + "y": 990.96575, + "index": 2, + "body": { + "#": 6912 + }, + "isInternal": false + }, + { + "x": 243.09, + "y": 994.97875, + "index": 3, + "body": { + "#": 6912 + }, + "isInternal": false + }, + { + "x": 237.516, + "y": 997.52375, + "index": 4, + "body": { + "#": 6912 + }, + "isInternal": false + }, + { + "x": 231.45, + "y": 998.39575, + "index": 5, + "body": { + "#": 6912 + }, + "isInternal": false + }, + { + "x": 225.384, + "y": 997.52375, + "index": 6, + "body": { + "#": 6912 + }, + "isInternal": false + }, + { + "x": 219.81, + "y": 994.97875, + "index": 7, + "body": { + "#": 6912 + }, + "isInternal": false + }, + { + "x": 215.179, + "y": 990.96575, + "index": 8, + "body": { + "#": 6912 + }, + "isInternal": false + }, + { + "x": 211.866, + "y": 985.81075, + "index": 9, + "body": { + "#": 6912 + }, + "isInternal": false + }, + { + "x": 210.14, + "y": 979.93075, + "index": 10, + "body": { + "#": 6912 + }, + "isInternal": false + }, + { + "x": 210.14, + "y": 973.80275, + "index": 11, + "body": { + "#": 6912 + }, + "isInternal": false + }, + { + "x": 211.866, + "y": 967.92275, + "index": 12, + "body": { + "#": 6912 + }, + "isInternal": false + }, + { + "x": 215.179, + "y": 962.76775, + "index": 13, + "body": { + "#": 6912 + }, + "isInternal": false + }, + { + "x": 219.81, + "y": 958.75475, + "index": 14, + "body": { + "#": 6912 + }, + "isInternal": false + }, + { + "x": 225.384, + "y": 956.20975, + "index": 15, + "body": { + "#": 6912 + }, + "isInternal": false + }, + { + "x": 231.45, + "y": 955.33775, + "index": 16, + "body": { + "#": 6912 + }, + "isInternal": false + }, + { + "x": 237.516, + "y": 956.20975, + "index": 17, + "body": { + "#": 6912 + }, + "isInternal": false + }, + { + "x": 243.09, + "y": 958.75475, + "index": 18, + "body": { + "#": 6912 + }, + "isInternal": false + }, + { + "x": 247.721, + "y": 962.76775, + "index": 19, + "body": { + "#": 6912 + }, + "isInternal": false + }, + { + "x": 251.034, + "y": 967.92275, + "index": 20, + "body": { + "#": 6912 + }, + "isInternal": false + }, + { + "x": 252.76, + "y": 973.80275, + "index": 21, + "body": { + "#": 6912 + }, + "isInternal": false + }, + { + "x": 231.45, + "y": 976.86675 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6944 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6946 + }, + "max": { + "#": 6947 + } + }, + { + "x": 210.14, + "y": 955.33775 + }, + { + "x": 252.76, + "y": 998.39575 + }, + { + "x": 231.45, + "y": 973.95948 + }, + [ + { + "#": 6950 + }, + { + "#": 6951 + }, + { + "#": 6952 + }, + { + "#": 6953 + }, + { + "#": 6954 + }, + { + "#": 6955 + }, + { + "#": 6956 + }, + { + "#": 6957 + }, + { + "#": 6958 + }, + { + "#": 6959 + }, + { + "#": 6960 + } + ], + { + "x": -0.95952, + "y": -0.28165 + }, + { + "x": -0.84125, + "y": -0.54065 + }, + { + "x": -0.65488, + "y": -0.75573 + }, + { + "x": -0.41534, + "y": -0.90967 + }, + { + "x": -0.14229, + "y": -0.98983 + }, + { + "x": 0.14229, + "y": -0.98983 + }, + { + "x": 0.41534, + "y": -0.90967 + }, + { + "x": 0.65488, + "y": -0.75573 + }, + { + "x": 0.84125, + "y": -0.54065 + }, + { + "x": 0.95952, + "y": -0.28165 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,19,20", + "startCol": 4, + "endCol": 5, + "startRow": 19, + "endRow": 20 + }, + { + "id": 138, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6963 + }, + "angle": 0, + "vertices": { + "#": 6964 + }, + "position": { + "#": 6983 + }, + "force": { + "#": 6984 + }, + "torque": 0, + "positionImpulse": { + "#": 6985 + }, + "constraintImpulse": { + "#": 6986 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6987 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6988 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6989 + }, + "circleRadius": 17.30189, + "bounds": { + "#": 6991 + }, + "positionPrev": { + "#": 6994 + }, + "anglePrev": 0, + "axes": { + "#": 6995 + }, + "area": 921.45811, + "mass": 0.92146, + "inverseMass": 1.08524, + "inertia": 540.58957, + "inverseInertia": 0.00185, + "parent": { + "#": 6962 + }, + "sleepCounter": 0, + "region": { + "#": 7005 + } + }, + [ + { + "#": 6962 + } + ], + [ + { + "#": 6965 + }, + { + "#": 6966 + }, + { + "#": 6967 + }, + { + "#": 6968 + }, + { + "#": 6969 + }, + { + "#": 6970 + }, + { + "#": 6971 + }, + { + "#": 6972 + }, + { + "#": 6973 + }, + { + "#": 6974 + }, + { + "#": 6975 + }, + { + "#": 6976 + }, + { + "#": 6977 + }, + { + "#": 6978 + }, + { + "#": 6979 + }, + { + "#": 6980 + }, + { + "#": 6981 + }, + { + "#": 6982 + } + ], + { + "x": 296.31121, + "y": 979.98042, + "index": 0, + "body": { + "#": 6962 + }, + "isInternal": false + }, + { + "x": 294.25621, + "y": 985.62742, + "index": 1, + "body": { + "#": 6962 + }, + "isInternal": false + }, + { + "x": 290.39321, + "y": 990.23042, + "index": 2, + "body": { + "#": 6962 + }, + "isInternal": false + }, + { + "x": 285.19021, + "y": 993.23442, + "index": 3, + "body": { + "#": 6962 + }, + "isInternal": false + }, + { + "x": 279.27221, + "y": 994.27842, + "index": 4, + "body": { + "#": 6962 + }, + "isInternal": false + }, + { + "x": 273.35421, + "y": 993.23442, + "index": 5, + "body": { + "#": 6962 + }, + "isInternal": false + }, + { + "x": 268.15121, + "y": 990.23042, + "index": 6, + "body": { + "#": 6962 + }, + "isInternal": false + }, + { + "x": 264.28821, + "y": 985.62742, + "index": 7, + "body": { + "#": 6962 + }, + "isInternal": false + }, + { + "x": 262.23321, + "y": 979.98042, + "index": 8, + "body": { + "#": 6962 + }, + "isInternal": false + }, + { + "x": 262.23321, + "y": 973.97242, + "index": 9, + "body": { + "#": 6962 + }, + "isInternal": false + }, + { + "x": 264.28821, + "y": 968.32542, + "index": 10, + "body": { + "#": 6962 + }, + "isInternal": false + }, + { + "x": 268.15121, + "y": 963.72242, + "index": 11, + "body": { + "#": 6962 + }, + "isInternal": false + }, + { + "x": 273.35421, + "y": 960.71842, + "index": 12, + "body": { + "#": 6962 + }, + "isInternal": false + }, + { + "x": 279.27221, + "y": 959.67442, + "index": 13, + "body": { + "#": 6962 + }, + "isInternal": false + }, + { + "x": 285.19021, + "y": 960.71842, + "index": 14, + "body": { + "#": 6962 + }, + "isInternal": false + }, + { + "x": 290.39321, + "y": 963.72242, + "index": 15, + "body": { + "#": 6962 + }, + "isInternal": false + }, + { + "x": 294.25621, + "y": 968.32542, + "index": 16, + "body": { + "#": 6962 + }, + "isInternal": false + }, + { + "x": 296.31121, + "y": 973.97242, + "index": 17, + "body": { + "#": 6962 + }, + "isInternal": false + }, + { + "x": 279.27221, + "y": 976.97642 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.1873, + "y": 1.54192 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6990 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6992 + }, + "max": { + "#": 6993 + } + }, + { + "x": 262.23321, + "y": 959.67442 + }, + { + "x": 296.31121, + "y": 997.18569 + }, + { + "x": 279.27221, + "y": 974.06915 + }, + [ + { + "#": 6996 + }, + { + "#": 6997 + }, + { + "#": 6998 + }, + { + "#": 6999 + }, + { + "#": 7000 + }, + { + "#": 7001 + }, + { + "#": 7002 + }, + { + "#": 7003 + }, + { + "#": 7004 + } + ], + { + "x": -0.93971, + "y": -0.34197 + }, + { + "x": -0.76599, + "y": -0.64285 + }, + { + "x": -0.50001, + "y": -0.86602 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.50001, + "y": -0.86602 + }, + { + "x": 0.76599, + "y": -0.64285 + }, + { + "x": 0.93971, + "y": -0.34197 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,19,20", + "startCol": 5, + "endCol": 6, + "startRow": 19, + "endRow": 20 + }, + { + "id": 139, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7007 + }, + "angle": 0, + "vertices": { + "#": 7008 + }, + "position": { + "#": 7031 + }, + "force": { + "#": 7032 + }, + "torque": 0, + "positionImpulse": { + "#": 7033 + }, + "constraintImpulse": { + "#": 7034 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7035 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7036 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7037 + }, + "circleRadius": 21.57748, + "bounds": { + "#": 7039 + }, + "positionPrev": { + "#": 7042 + }, + "anglePrev": 0, + "axes": { + "#": 7043 + }, + "area": 1442.87898, + "mass": 1.44288, + "inverseMass": 0.69306, + "inertia": 1325.42802, + "inverseInertia": 0.00075, + "parent": { + "#": 7006 + }, + "sleepCounter": 0, + "region": { + "#": 7055 + } + }, + [ + { + "#": 7006 + } + ], + [ + { + "#": 7009 + }, + { + "#": 7010 + }, + { + "#": 7011 + }, + { + "#": 7012 + }, + { + "#": 7013 + }, + { + "#": 7014 + }, + { + "#": 7015 + }, + { + "#": 7016 + }, + { + "#": 7017 + }, + { + "#": 7018 + }, + { + "#": 7019 + }, + { + "#": 7020 + }, + { + "#": 7021 + }, + { + "#": 7022 + }, + { + "#": 7023 + }, + { + "#": 7024 + }, + { + "#": 7025 + }, + { + "#": 7026 + }, + { + "#": 7027 + }, + { + "#": 7028 + }, + { + "#": 7029 + }, + { + "#": 7030 + } + ], + { + "x": 349.554, + "y": 979.98575, + "index": 0, + "body": { + "#": 7006 + }, + "isInternal": false + }, + { + "x": 347.824, + "y": 985.87875, + "index": 1, + "body": { + "#": 7006 + }, + "isInternal": false + }, + { + "x": 344.503, + "y": 991.04475, + "index": 2, + "body": { + "#": 7006 + }, + "isInternal": false + }, + { + "x": 339.862, + "y": 995.06675, + "index": 3, + "body": { + "#": 7006 + }, + "isInternal": false + }, + { + "x": 334.275, + "y": 997.61775, + "index": 4, + "body": { + "#": 7006 + }, + "isInternal": false + }, + { + "x": 328.196, + "y": 998.49175, + "index": 5, + "body": { + "#": 7006 + }, + "isInternal": false + }, + { + "x": 322.117, + "y": 997.61775, + "index": 6, + "body": { + "#": 7006 + }, + "isInternal": false + }, + { + "x": 316.53, + "y": 995.06675, + "index": 7, + "body": { + "#": 7006 + }, + "isInternal": false + }, + { + "x": 311.889, + "y": 991.04475, + "index": 8, + "body": { + "#": 7006 + }, + "isInternal": false + }, + { + "x": 308.568, + "y": 985.87875, + "index": 9, + "body": { + "#": 7006 + }, + "isInternal": false + }, + { + "x": 306.838, + "y": 979.98575, + "index": 10, + "body": { + "#": 7006 + }, + "isInternal": false + }, + { + "x": 306.838, + "y": 973.84375, + "index": 11, + "body": { + "#": 7006 + }, + "isInternal": false + }, + { + "x": 308.568, + "y": 967.95075, + "index": 12, + "body": { + "#": 7006 + }, + "isInternal": false + }, + { + "x": 311.889, + "y": 962.78475, + "index": 13, + "body": { + "#": 7006 + }, + "isInternal": false + }, + { + "x": 316.53, + "y": 958.76275, + "index": 14, + "body": { + "#": 7006 + }, + "isInternal": false + }, + { + "x": 322.117, + "y": 956.21175, + "index": 15, + "body": { + "#": 7006 + }, + "isInternal": false + }, + { + "x": 328.196, + "y": 955.33775, + "index": 16, + "body": { + "#": 7006 + }, + "isInternal": false + }, + { + "x": 334.275, + "y": 956.21175, + "index": 17, + "body": { + "#": 7006 + }, + "isInternal": false + }, + { + "x": 339.862, + "y": 958.76275, + "index": 18, + "body": { + "#": 7006 + }, + "isInternal": false + }, + { + "x": 344.503, + "y": 962.78475, + "index": 19, + "body": { + "#": 7006 + }, + "isInternal": false + }, + { + "x": 347.824, + "y": 967.95075, + "index": 20, + "body": { + "#": 7006 + }, + "isInternal": false + }, + { + "x": 349.554, + "y": 973.84375, + "index": 21, + "body": { + "#": 7006 + }, + "isInternal": false + }, + { + "x": 328.196, + "y": 976.91475 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7038 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7040 + }, + "max": { + "#": 7041 + } + }, + { + "x": 306.838, + "y": 955.33775 + }, + { + "x": 349.554, + "y": 998.49175 + }, + { + "x": 328.196, + "y": 974.00748 + }, + [ + { + "#": 7044 + }, + { + "#": 7045 + }, + { + "#": 7046 + }, + { + "#": 7047 + }, + { + "#": 7048 + }, + { + "#": 7049 + }, + { + "#": 7050 + }, + { + "#": 7051 + }, + { + "#": 7052 + }, + { + "#": 7053 + }, + { + "#": 7054 + } + ], + { + "x": -0.95951, + "y": -0.28168 + }, + { + "x": -0.84118, + "y": -0.54076 + }, + { + "x": -0.65491, + "y": -0.75571 + }, + { + "x": -0.41535, + "y": -0.90966 + }, + { + "x": -0.14231, + "y": -0.98982 + }, + { + "x": 0.14231, + "y": -0.98982 + }, + { + "x": 0.41535, + "y": -0.90966 + }, + { + "x": 0.65491, + "y": -0.75571 + }, + { + "x": 0.84118, + "y": -0.54076 + }, + { + "x": 0.95951, + "y": -0.28168 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,19,20", + "startCol": 6, + "endCol": 7, + "startRow": 19, + "endRow": 20 + }, + { + "id": 140, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7057 + }, + "angle": 0, + "vertices": { + "#": 7058 + }, + "position": { + "#": 7081 + }, + "force": { + "#": 7082 + }, + "torque": 0, + "positionImpulse": { + "#": 7083 + }, + "constraintImpulse": { + "#": 7084 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7085 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7086 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7087 + }, + "circleRadius": 21.20801, + "bounds": { + "#": 7089 + }, + "positionPrev": { + "#": 7092 + }, + "anglePrev": 0, + "axes": { + "#": 7093 + }, + "area": 1393.87013, + "mass": 1.39387, + "inverseMass": 0.71743, + "inertia": 1236.91813, + "inverseInertia": 0.00081, + "parent": { + "#": 7056 + }, + "sleepCounter": 0, + "region": { + "#": 7105 + } + }, + [ + { + "#": 7056 + } + ], + [ + { + "#": 7059 + }, + { + "#": 7060 + }, + { + "#": 7061 + }, + { + "#": 7062 + }, + { + "#": 7063 + }, + { + "#": 7064 + }, + { + "#": 7065 + }, + { + "#": 7066 + }, + { + "#": 7067 + }, + { + "#": 7068 + }, + { + "#": 7069 + }, + { + "#": 7070 + }, + { + "#": 7071 + }, + { + "#": 7072 + }, + { + "#": 7073 + }, + { + "#": 7074 + }, + { + "#": 7075 + }, + { + "#": 7076 + }, + { + "#": 7077 + }, + { + "#": 7078 + }, + { + "#": 7079 + }, + { + "#": 7080 + } + ], + { + "x": 401.538, + "y": 979.56375, + "index": 0, + "body": { + "#": 7056 + }, + "isInternal": false + }, + { + "x": 399.837, + "y": 985.35575, + "index": 1, + "body": { + "#": 7056 + }, + "isInternal": false + }, + { + "x": 396.574, + "y": 990.43375, + "index": 2, + "body": { + "#": 7056 + }, + "isInternal": false + }, + { + "x": 392.012, + "y": 994.38675, + "index": 3, + "body": { + "#": 7056 + }, + "isInternal": false + }, + { + "x": 386.521, + "y": 996.89475, + "index": 4, + "body": { + "#": 7056 + }, + "isInternal": false + }, + { + "x": 380.546, + "y": 997.75375, + "index": 5, + "body": { + "#": 7056 + }, + "isInternal": false + }, + { + "x": 374.571, + "y": 996.89475, + "index": 6, + "body": { + "#": 7056 + }, + "isInternal": false + }, + { + "x": 369.08, + "y": 994.38675, + "index": 7, + "body": { + "#": 7056 + }, + "isInternal": false + }, + { + "x": 364.518, + "y": 990.43375, + "index": 8, + "body": { + "#": 7056 + }, + "isInternal": false + }, + { + "x": 361.255, + "y": 985.35575, + "index": 9, + "body": { + "#": 7056 + }, + "isInternal": false + }, + { + "x": 359.554, + "y": 979.56375, + "index": 10, + "body": { + "#": 7056 + }, + "isInternal": false + }, + { + "x": 359.554, + "y": 973.52775, + "index": 11, + "body": { + "#": 7056 + }, + "isInternal": false + }, + { + "x": 361.255, + "y": 967.73575, + "index": 12, + "body": { + "#": 7056 + }, + "isInternal": false + }, + { + "x": 364.518, + "y": 962.65775, + "index": 13, + "body": { + "#": 7056 + }, + "isInternal": false + }, + { + "x": 369.08, + "y": 958.70475, + "index": 14, + "body": { + "#": 7056 + }, + "isInternal": false + }, + { + "x": 374.571, + "y": 956.19675, + "index": 15, + "body": { + "#": 7056 + }, + "isInternal": false + }, + { + "x": 380.546, + "y": 955.33775, + "index": 16, + "body": { + "#": 7056 + }, + "isInternal": false + }, + { + "x": 386.521, + "y": 956.19675, + "index": 17, + "body": { + "#": 7056 + }, + "isInternal": false + }, + { + "x": 392.012, + "y": 958.70475, + "index": 18, + "body": { + "#": 7056 + }, + "isInternal": false + }, + { + "x": 396.574, + "y": 962.65775, + "index": 19, + "body": { + "#": 7056 + }, + "isInternal": false + }, + { + "x": 399.837, + "y": 967.73575, + "index": 20, + "body": { + "#": 7056 + }, + "isInternal": false + }, + { + "x": 401.538, + "y": 973.52775, + "index": 21, + "body": { + "#": 7056 + }, + "isInternal": false + }, + { + "x": 380.546, + "y": 976.54575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7088 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7090 + }, + "max": { + "#": 7091 + } + }, + { + "x": 359.554, + "y": 955.33775 + }, + { + "x": 401.538, + "y": 997.75375 + }, + { + "x": 380.546, + "y": 973.63848 + }, + [ + { + "#": 7094 + }, + { + "#": 7095 + }, + { + "#": 7096 + }, + { + "#": 7097 + }, + { + "#": 7098 + }, + { + "#": 7099 + }, + { + "#": 7100 + }, + { + "#": 7101 + }, + { + "#": 7102 + }, + { + "#": 7103 + }, + { + "#": 7104 + } + ], + { + "x": -0.95948, + "y": -0.28178 + }, + { + "x": -0.84129, + "y": -0.54059 + }, + { + "x": -0.65486, + "y": -0.75575 + }, + { + "x": -0.41546, + "y": -0.90961 + }, + { + "x": -0.1423, + "y": -0.98982 + }, + { + "x": 0.1423, + "y": -0.98982 + }, + { + "x": 0.41546, + "y": -0.90961 + }, + { + "x": 0.65486, + "y": -0.75575 + }, + { + "x": 0.84129, + "y": -0.54059 + }, + { + "x": 0.95948, + "y": -0.28178 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,19,20", + "startCol": 7, + "endCol": 8, + "startRow": 19, + "endRow": 20 + }, + { + "id": 141, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7107 + }, + "angle": 0, + "vertices": { + "#": 7108 + }, + "position": { + "#": 7129 + }, + "force": { + "#": 7130 + }, + "torque": 0, + "positionImpulse": { + "#": 7131 + }, + "constraintImpulse": { + "#": 7132 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7133 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7134 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7135 + }, + "circleRadius": 19.15644, + "bounds": { + "#": 7137 + }, + "positionPrev": { + "#": 7140 + }, + "anglePrev": 0, + "axes": { + "#": 7141 + }, + "area": 1134.05397, + "mass": 1.13405, + "inverseMass": 0.88179, + "inertia": 818.78778, + "inverseInertia": 0.00122, + "parent": { + "#": 7106 + }, + "sleepCounter": 0, + "region": { + "#": 7152 + } + }, + [ + { + "#": 7106 + } + ], + [ + { + "#": 7109 + }, + { + "#": 7110 + }, + { + "#": 7111 + }, + { + "#": 7112 + }, + { + "#": 7113 + }, + { + "#": 7114 + }, + { + "#": 7115 + }, + { + "#": 7116 + }, + { + "#": 7117 + }, + { + "#": 7118 + }, + { + "#": 7119 + }, + { + "#": 7120 + }, + { + "#": 7121 + }, + { + "#": 7122 + }, + { + "#": 7123 + }, + { + "#": 7124 + }, + { + "#": 7125 + }, + { + "#": 7126 + }, + { + "#": 7127 + }, + { + "#": 7128 + } + ], + { + "x": 449.38, + "y": 977.25575, + "index": 0, + "body": { + "#": 7106 + }, + "isInternal": false + }, + { + "x": 447.528, + "y": 982.95575, + "index": 1, + "body": { + "#": 7106 + }, + "isInternal": false + }, + { + "x": 444.005, + "y": 987.80475, + "index": 2, + "body": { + "#": 7106 + }, + "isInternal": false + }, + { + "x": 439.156, + "y": 991.32775, + "index": 3, + "body": { + "#": 7106 + }, + "isInternal": false + }, + { + "x": 433.456, + "y": 993.17975, + "index": 4, + "body": { + "#": 7106 + }, + "isInternal": false + }, + { + "x": 427.462, + "y": 993.17975, + "index": 5, + "body": { + "#": 7106 + }, + "isInternal": false + }, + { + "x": 421.762, + "y": 991.32775, + "index": 6, + "body": { + "#": 7106 + }, + "isInternal": false + }, + { + "x": 416.913, + "y": 987.80475, + "index": 7, + "body": { + "#": 7106 + }, + "isInternal": false + }, + { + "x": 413.39, + "y": 982.95575, + "index": 8, + "body": { + "#": 7106 + }, + "isInternal": false + }, + { + "x": 411.538, + "y": 977.25575, + "index": 9, + "body": { + "#": 7106 + }, + "isInternal": false + }, + { + "x": 411.538, + "y": 971.26175, + "index": 10, + "body": { + "#": 7106 + }, + "isInternal": false + }, + { + "x": 413.39, + "y": 965.56175, + "index": 11, + "body": { + "#": 7106 + }, + "isInternal": false + }, + { + "x": 416.913, + "y": 960.71275, + "index": 12, + "body": { + "#": 7106 + }, + "isInternal": false + }, + { + "x": 421.762, + "y": 957.18975, + "index": 13, + "body": { + "#": 7106 + }, + "isInternal": false + }, + { + "x": 427.462, + "y": 955.33775, + "index": 14, + "body": { + "#": 7106 + }, + "isInternal": false + }, + { + "x": 433.456, + "y": 955.33775, + "index": 15, + "body": { + "#": 7106 + }, + "isInternal": false + }, + { + "x": 439.156, + "y": 957.18975, + "index": 16, + "body": { + "#": 7106 + }, + "isInternal": false + }, + { + "x": 444.005, + "y": 960.71275, + "index": 17, + "body": { + "#": 7106 + }, + "isInternal": false + }, + { + "x": 447.528, + "y": 965.56175, + "index": 18, + "body": { + "#": 7106 + }, + "isInternal": false + }, + { + "x": 449.38, + "y": 971.26175, + "index": 19, + "body": { + "#": 7106 + }, + "isInternal": false + }, + { + "x": 430.459, + "y": 974.25875 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7136 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7138 + }, + "max": { + "#": 7139 + } + }, + { + "x": 411.538, + "y": 955.33775 + }, + { + "x": 449.38, + "y": 993.17975 + }, + { + "x": 430.459, + "y": 971.35148 + }, + [ + { + "#": 7142 + }, + { + "#": 7143 + }, + { + "#": 7144 + }, + { + "#": 7145 + }, + { + "#": 7146 + }, + { + "#": 7147 + }, + { + "#": 7148 + }, + { + "#": 7149 + }, + { + "#": 7150 + }, + { + "#": 7151 + } + ], + { + "x": -0.95106, + "y": -0.30901 + }, + { + "x": -0.80902, + "y": -0.58778 + }, + { + "x": -0.58778, + "y": -0.80902 + }, + { + "x": -0.30901, + "y": -0.95106 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30901, + "y": -0.95106 + }, + { + "x": 0.58778, + "y": -0.80902 + }, + { + "x": 0.80902, + "y": -0.58778 + }, + { + "x": 0.95106, + "y": -0.30901 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,19,20", + "startCol": 8, + "endCol": 9, + "startRow": 19, + "endRow": 20 + }, + { + "id": 142, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7154 + }, + "angle": 0, + "vertices": { + "#": 7155 + }, + "position": { + "#": 7182 + }, + "force": { + "#": 7183 + }, + "torque": 0, + "positionImpulse": { + "#": 7184 + }, + "constraintImpulse": { + "#": 7185 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7186 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7187 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7188 + }, + "circleRadius": 26.16352, + "bounds": { + "#": 7190 + }, + "positionPrev": { + "#": 7193 + }, + "anglePrev": 0, + "axes": { + "#": 7194 + }, + "area": 2129.66847, + "mass": 2.12967, + "inverseMass": 0.46956, + "inertia": 2887.43629, + "inverseInertia": 0.00035, + "parent": { + "#": 7153 + }, + "sleepCounter": 0, + "region": { + "#": 7208 + } + }, + [ + { + "#": 7153 + } + ], + [ + { + "#": 7156 + }, + { + "#": 7157 + }, + { + "#": 7158 + }, + { + "#": 7159 + }, + { + "#": 7160 + }, + { + "#": 7161 + }, + { + "#": 7162 + }, + { + "#": 7163 + }, + { + "#": 7164 + }, + { + "#": 7165 + }, + { + "#": 7166 + }, + { + "#": 7167 + }, + { + "#": 7168 + }, + { + "#": 7169 + }, + { + "#": 7170 + }, + { + "#": 7171 + }, + { + "#": 7172 + }, + { + "#": 7173 + }, + { + "#": 7174 + }, + { + "#": 7175 + }, + { + "#": 7176 + }, + { + "#": 7177 + }, + { + "#": 7178 + }, + { + "#": 7179 + }, + { + "#": 7180 + }, + { + "#": 7181 + } + ], + { + "x": 511.326, + "y": 984.65575, + "index": 0, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 509.816, + "y": 990.77975, + "index": 1, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 506.885, + "y": 996.36475, + "index": 2, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 502.703, + "y": 1001.08575, + "index": 3, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 497.512, + "y": 1004.66875, + "index": 4, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 491.614, + "y": 1006.90475, + "index": 5, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 485.353, + "y": 1007.66575, + "index": 6, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 479.092, + "y": 1006.90475, + "index": 7, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 473.194, + "y": 1004.66875, + "index": 8, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 468.003, + "y": 1001.08575, + "index": 9, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 463.821, + "y": 996.36475, + "index": 10, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 460.89, + "y": 990.77975, + "index": 11, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 459.38, + "y": 984.65575, + "index": 12, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 459.38, + "y": 978.34775, + "index": 13, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 460.89, + "y": 972.22375, + "index": 14, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 463.821, + "y": 966.63875, + "index": 15, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 468.003, + "y": 961.91775, + "index": 16, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 473.194, + "y": 958.33475, + "index": 17, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 479.092, + "y": 956.09875, + "index": 18, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 485.353, + "y": 955.33775, + "index": 19, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 491.614, + "y": 956.09875, + "index": 20, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 497.512, + "y": 958.33475, + "index": 21, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 502.703, + "y": 961.91775, + "index": 22, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 506.885, + "y": 966.63875, + "index": 23, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 509.816, + "y": 972.22375, + "index": 24, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 511.326, + "y": 978.34775, + "index": 25, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 485.353, + "y": 981.50175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7189 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7191 + }, + "max": { + "#": 7192 + } + }, + { + "x": 459.38, + "y": 955.33775 + }, + { + "x": 511.326, + "y": 1007.66575 + }, + { + "x": 485.353, + "y": 978.59448 + }, + [ + { + "#": 7195 + }, + { + "#": 7196 + }, + { + "#": 7197 + }, + { + "#": 7198 + }, + { + "#": 7199 + }, + { + "#": 7200 + }, + { + "#": 7201 + }, + { + "#": 7202 + }, + { + "#": 7203 + }, + { + "#": 7204 + }, + { + "#": 7205 + }, + { + "#": 7206 + }, + { + "#": 7207 + } + ], + { + "x": -0.97092, + "y": -0.2394 + }, + { + "x": -0.88547, + "y": -0.46469 + }, + { + "x": -0.74855, + "y": -0.66308 + }, + { + "x": -0.56806, + "y": -0.82299 + }, + { + "x": -0.35449, + "y": -0.93506 + }, + { + "x": -0.12066, + "y": -0.99269 + }, + { + "x": 0.12066, + "y": -0.99269 + }, + { + "x": 0.35449, + "y": -0.93506 + }, + { + "x": 0.56806, + "y": -0.82299 + }, + { + "x": 0.74855, + "y": -0.66308 + }, + { + "x": 0.88547, + "y": -0.46469 + }, + { + "x": 0.97092, + "y": -0.2394 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,19,20", + "startCol": 9, + "endCol": 10, + "startRow": 19, + "endRow": 20 + }, + { + "id": 143, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7210 + }, + "angle": 0, + "vertices": { + "#": 7211 + }, + "position": { + "#": 7230 + }, + "force": { + "#": 7231 + }, + "torque": 0, + "positionImpulse": { + "#": 7232 + }, + "constraintImpulse": { + "#": 7233 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7234 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7235 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7236 + }, + "circleRadius": 17.41442, + "bounds": { + "#": 7238 + }, + "positionPrev": { + "#": 7241 + }, + "anglePrev": 0, + "axes": { + "#": 7242 + }, + "area": 933.4789, + "mass": 0.93348, + "inverseMass": 1.07126, + "inertia": 554.78598, + "inverseInertia": 0.0018, + "parent": { + "#": 7209 + }, + "sleepCounter": 0, + "region": { + "#": 7252 + } + }, + [ + { + "#": 7209 + } + ], + [ + { + "#": 7212 + }, + { + "#": 7213 + }, + { + "#": 7214 + }, + { + "#": 7215 + }, + { + "#": 7216 + }, + { + "#": 7217 + }, + { + "#": 7218 + }, + { + "#": 7219 + }, + { + "#": 7220 + }, + { + "#": 7221 + }, + { + "#": 7222 + }, + { + "#": 7223 + }, + { + "#": 7224 + }, + { + "#": 7225 + }, + { + "#": 7226 + }, + { + "#": 7227 + }, + { + "#": 7228 + }, + { + "#": 7229 + } + ], + { + "x": 555.626, + "y": 975.77575, + "index": 0, + "body": { + "#": 7209 + }, + "isInternal": false + }, + { + "x": 553.557, + "y": 981.45875, + "index": 1, + "body": { + "#": 7209 + }, + "isInternal": false + }, + { + "x": 549.67, + "y": 986.09175, + "index": 2, + "body": { + "#": 7209 + }, + "isInternal": false + }, + { + "x": 544.432, + "y": 989.11575, + "index": 3, + "body": { + "#": 7209 + }, + "isInternal": false + }, + { + "x": 538.476, + "y": 990.16575, + "index": 4, + "body": { + "#": 7209 + }, + "isInternal": false + }, + { + "x": 532.52, + "y": 989.11575, + "index": 5, + "body": { + "#": 7209 + }, + "isInternal": false + }, + { + "x": 527.282, + "y": 986.09175, + "index": 6, + "body": { + "#": 7209 + }, + "isInternal": false + }, + { + "x": 523.395, + "y": 981.45875, + "index": 7, + "body": { + "#": 7209 + }, + "isInternal": false + }, + { + "x": 521.326, + "y": 975.77575, + "index": 8, + "body": { + "#": 7209 + }, + "isInternal": false + }, + { + "x": 521.326, + "y": 969.72775, + "index": 9, + "body": { + "#": 7209 + }, + "isInternal": false + }, + { + "x": 523.395, + "y": 964.04475, + "index": 10, + "body": { + "#": 7209 + }, + "isInternal": false + }, + { + "x": 527.282, + "y": 959.41175, + "index": 11, + "body": { + "#": 7209 + }, + "isInternal": false + }, + { + "x": 532.52, + "y": 956.38775, + "index": 12, + "body": { + "#": 7209 + }, + "isInternal": false + }, + { + "x": 538.476, + "y": 955.33775, + "index": 13, + "body": { + "#": 7209 + }, + "isInternal": false + }, + { + "x": 544.432, + "y": 956.38775, + "index": 14, + "body": { + "#": 7209 + }, + "isInternal": false + }, + { + "x": 549.67, + "y": 959.41175, + "index": 15, + "body": { + "#": 7209 + }, + "isInternal": false + }, + { + "x": 553.557, + "y": 964.04475, + "index": 16, + "body": { + "#": 7209 + }, + "isInternal": false + }, + { + "x": 555.626, + "y": 969.72775, + "index": 17, + "body": { + "#": 7209 + }, + "isInternal": false + }, + { + "x": 538.476, + "y": 972.75175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7237 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7239 + }, + "max": { + "#": 7240 + } + }, + { + "x": 521.326, + "y": 955.33775 + }, + { + "x": 555.626, + "y": 990.16575 + }, + { + "x": 538.476, + "y": 969.84448 + }, + [ + { + "#": 7243 + }, + { + "#": 7244 + }, + { + "#": 7245 + }, + { + "#": 7246 + }, + { + "#": 7247 + }, + { + "#": 7248 + }, + { + "#": 7249 + }, + { + "#": 7250 + }, + { + "#": 7251 + } + ], + { + "x": -0.93966, + "y": -0.3421 + }, + { + "x": -0.76609, + "y": -0.64273 + }, + { + "x": -0.49998, + "y": -0.86604 + }, + { + "x": -0.17362, + "y": -0.98481 + }, + { + "x": 0.17362, + "y": -0.98481 + }, + { + "x": 0.49998, + "y": -0.86604 + }, + { + "x": 0.76609, + "y": -0.64273 + }, + { + "x": 0.93966, + "y": -0.3421 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,19,20", + "startCol": 10, + "endCol": 11, + "startRow": 19, + "endRow": 20 + }, + { + "id": 144, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7254 + }, + "angle": 0, + "vertices": { + "#": 7255 + }, + "position": { + "#": 7276 + }, + "force": { + "#": 7277 + }, + "torque": 0, + "positionImpulse": { + "#": 7278 + }, + "constraintImpulse": { + "#": 7279 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7280 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7281 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7282 + }, + "circleRadius": 19.20544, + "bounds": { + "#": 7284 + }, + "positionPrev": { + "#": 7287 + }, + "anglePrev": 0, + "axes": { + "#": 7288 + }, + "area": 1139.78432, + "mass": 1.13978, + "inverseMass": 0.87736, + "inertia": 827.08331, + "inverseInertia": 0.00121, + "parent": { + "#": 7253 + }, + "sleepCounter": 0, + "region": { + "#": 7299 + } + }, + [ + { + "#": 7253 + } + ], + [ + { + "#": 7256 + }, + { + "#": 7257 + }, + { + "#": 7258 + }, + { + "#": 7259 + }, + { + "#": 7260 + }, + { + "#": 7261 + }, + { + "#": 7262 + }, + { + "#": 7263 + }, + { + "#": 7264 + }, + { + "#": 7265 + }, + { + "#": 7266 + }, + { + "#": 7267 + }, + { + "#": 7268 + }, + { + "#": 7269 + }, + { + "#": 7270 + }, + { + "#": 7271 + }, + { + "#": 7272 + }, + { + "#": 7273 + }, + { + "#": 7274 + }, + { + "#": 7275 + } + ], + { + "x": 603.564, + "y": 977.31075, + "index": 0, + "body": { + "#": 7253 + }, + "isInternal": false + }, + { + "x": 601.707, + "y": 983.02575, + "index": 1, + "body": { + "#": 7253 + }, + "isInternal": false + }, + { + "x": 598.175, + "y": 987.88675, + "index": 2, + "body": { + "#": 7253 + }, + "isInternal": false + }, + { + "x": 593.314, + "y": 991.41875, + "index": 3, + "body": { + "#": 7253 + }, + "isInternal": false + }, + { + "x": 587.599, + "y": 993.27575, + "index": 4, + "body": { + "#": 7253 + }, + "isInternal": false + }, + { + "x": 581.591, + "y": 993.27575, + "index": 5, + "body": { + "#": 7253 + }, + "isInternal": false + }, + { + "x": 575.876, + "y": 991.41875, + "index": 6, + "body": { + "#": 7253 + }, + "isInternal": false + }, + { + "x": 571.015, + "y": 987.88675, + "index": 7, + "body": { + "#": 7253 + }, + "isInternal": false + }, + { + "x": 567.483, + "y": 983.02575, + "index": 8, + "body": { + "#": 7253 + }, + "isInternal": false + }, + { + "x": 565.626, + "y": 977.31075, + "index": 9, + "body": { + "#": 7253 + }, + "isInternal": false + }, + { + "x": 565.626, + "y": 971.30275, + "index": 10, + "body": { + "#": 7253 + }, + "isInternal": false + }, + { + "x": 567.483, + "y": 965.58775, + "index": 11, + "body": { + "#": 7253 + }, + "isInternal": false + }, + { + "x": 571.015, + "y": 960.72675, + "index": 12, + "body": { + "#": 7253 + }, + "isInternal": false + }, + { + "x": 575.876, + "y": 957.19475, + "index": 13, + "body": { + "#": 7253 + }, + "isInternal": false + }, + { + "x": 581.591, + "y": 955.33775, + "index": 14, + "body": { + "#": 7253 + }, + "isInternal": false + }, + { + "x": 587.599, + "y": 955.33775, + "index": 15, + "body": { + "#": 7253 + }, + "isInternal": false + }, + { + "x": 593.314, + "y": 957.19475, + "index": 16, + "body": { + "#": 7253 + }, + "isInternal": false + }, + { + "x": 598.175, + "y": 960.72675, + "index": 17, + "body": { + "#": 7253 + }, + "isInternal": false + }, + { + "x": 601.707, + "y": 965.58775, + "index": 18, + "body": { + "#": 7253 + }, + "isInternal": false + }, + { + "x": 603.564, + "y": 971.30275, + "index": 19, + "body": { + "#": 7253 + }, + "isInternal": false + }, + { + "x": 584.595, + "y": 974.30675 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7283 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7285 + }, + "max": { + "#": 7286 + } + }, + { + "x": 565.626, + "y": 955.33775 + }, + { + "x": 603.564, + "y": 993.27575 + }, + { + "x": 584.595, + "y": 971.39948 + }, + [ + { + "#": 7289 + }, + { + "#": 7290 + }, + { + "#": 7291 + }, + { + "#": 7292 + }, + { + "#": 7293 + }, + { + "#": 7294 + }, + { + "#": 7295 + }, + { + "#": 7296 + }, + { + "#": 7297 + }, + { + "#": 7298 + } + ], + { + "x": -0.95105, + "y": -0.30903 + }, + { + "x": -0.809, + "y": -0.58782 + }, + { + "x": -0.58782, + "y": -0.809 + }, + { + "x": -0.30903, + "y": -0.95105 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30903, + "y": -0.95105 + }, + { + "x": 0.58782, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58782 + }, + { + "x": 0.95105, + "y": -0.30903 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,19,20", + "startCol": 11, + "endCol": 12, + "startRow": 19, + "endRow": 20 + }, + { + "id": 145, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7301 + }, + "angle": 0, + "vertices": { + "#": 7302 + }, + "position": { + "#": 7329 + }, + "force": { + "#": 7330 + }, + "torque": 0, + "positionImpulse": { + "#": 7331 + }, + "constraintImpulse": { + "#": 7332 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7333 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7334 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7335 + }, + "circleRadius": 25.61066, + "bounds": { + "#": 7337 + }, + "positionPrev": { + "#": 7340 + }, + "anglePrev": 0, + "axes": { + "#": 7341 + }, + "area": 2040.58517, + "mass": 2.04059, + "inverseMass": 0.49006, + "inertia": 2650.92757, + "inverseInertia": 0.00038, + "parent": { + "#": 7300 + }, + "sleepCounter": 0, + "region": { + "#": 7355 + } + }, + [ + { + "#": 7300 + } + ], + [ + { + "#": 7303 + }, + { + "#": 7304 + }, + { + "#": 7305 + }, + { + "#": 7306 + }, + { + "#": 7307 + }, + { + "#": 7308 + }, + { + "#": 7309 + }, + { + "#": 7310 + }, + { + "#": 7311 + }, + { + "#": 7312 + }, + { + "#": 7313 + }, + { + "#": 7314 + }, + { + "#": 7315 + }, + { + "#": 7316 + }, + { + "#": 7317 + }, + { + "#": 7318 + }, + { + "#": 7319 + }, + { + "#": 7320 + }, + { + "#": 7321 + }, + { + "#": 7322 + }, + { + "#": 7323 + }, + { + "#": 7324 + }, + { + "#": 7325 + }, + { + "#": 7326 + }, + { + "#": 7327 + }, + { + "#": 7328 + } + ], + { + "x": 150.848, + "y": 1046.36375, + "index": 0, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 149.37, + "y": 1052.35875, + "index": 1, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 146.501, + "y": 1057.82575, + "index": 2, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 142.407, + "y": 1062.44675, + "index": 3, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 137.326, + "y": 1065.95375, + "index": 4, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 131.553, + "y": 1068.14275, + "index": 5, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 125.424, + "y": 1068.88775, + "index": 6, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 119.295, + "y": 1068.14275, + "index": 7, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 113.522, + "y": 1065.95375, + "index": 8, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 108.441, + "y": 1062.44675, + "index": 9, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 104.347, + "y": 1057.82575, + "index": 10, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 101.478, + "y": 1052.35875, + "index": 11, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 100, + "y": 1046.36375, + "index": 12, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 100, + "y": 1040.18975, + "index": 13, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 101.478, + "y": 1034.19475, + "index": 14, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 104.347, + "y": 1028.72775, + "index": 15, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 108.441, + "y": 1024.10675, + "index": 16, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 113.522, + "y": 1020.59975, + "index": 17, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 119.295, + "y": 1018.41075, + "index": 18, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 125.424, + "y": 1017.66575, + "index": 19, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 131.553, + "y": 1018.41075, + "index": 20, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 137.326, + "y": 1020.59975, + "index": 21, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 142.407, + "y": 1024.10675, + "index": 22, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 146.501, + "y": 1028.72775, + "index": 23, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 149.37, + "y": 1034.19475, + "index": 24, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 150.848, + "y": 1040.18975, + "index": 25, + "body": { + "#": 7300 + }, + "isInternal": false + }, + { + "x": 125.424, + "y": 1043.27675 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7336 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7338 + }, + "max": { + "#": 7339 + } + }, + { + "x": 100, + "y": 1017.66575 + }, + { + "x": 150.848, + "y": 1068.88775 + }, + { + "x": 125.424, + "y": 1040.36948 + }, + [ + { + "#": 7342 + }, + { + "#": 7343 + }, + { + "#": 7344 + }, + { + "#": 7345 + }, + { + "#": 7346 + }, + { + "#": 7347 + }, + { + "#": 7348 + }, + { + "#": 7349 + }, + { + "#": 7350 + }, + { + "#": 7351 + }, + { + "#": 7352 + }, + { + "#": 7353 + }, + { + "#": 7354 + } + ], + { + "x": -0.97093, + "y": -0.23937 + }, + { + "x": -0.88548, + "y": -0.46468 + }, + { + "x": -0.7485, + "y": -0.66314 + }, + { + "x": -0.56805, + "y": -0.823 + }, + { + "x": -0.35455, + "y": -0.93504 + }, + { + "x": -0.12067, + "y": -0.99269 + }, + { + "x": 0.12067, + "y": -0.99269 + }, + { + "x": 0.35455, + "y": -0.93504 + }, + { + "x": 0.56805, + "y": -0.823 + }, + { + "x": 0.7485, + "y": -0.66314 + }, + { + "x": 0.88548, + "y": -0.46468 + }, + { + "x": 0.97093, + "y": -0.23937 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,3,21,22", + "startCol": 2, + "endCol": 3, + "startRow": 21, + "endRow": 22 + }, + { + "id": 146, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7357 + }, + "angle": 0, + "vertices": { + "#": 7358 + }, + "position": { + "#": 7375 + }, + "force": { + "#": 7376 + }, + "torque": 0, + "positionImpulse": { + "#": 7377 + }, + "constraintImpulse": { + "#": 7378 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7379 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7380 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7381 + }, + "circleRadius": 15.1486, + "bounds": { + "#": 7383 + }, + "positionPrev": { + "#": 7386 + }, + "anglePrev": 0, + "axes": { + "#": 7387 + }, + "area": 702.57687, + "mass": 0.70258, + "inverseMass": 1.42333, + "inertia": 314.28689, + "inverseInertia": 0.00318, + "parent": { + "#": 7356 + }, + "sleepCounter": 0, + "region": { + "#": 7396 + } + }, + [ + { + "#": 7356 + } + ], + [ + { + "#": 7359 + }, + { + "#": 7360 + }, + { + "#": 7361 + }, + { + "#": 7362 + }, + { + "#": 7363 + }, + { + "#": 7364 + }, + { + "#": 7365 + }, + { + "#": 7366 + }, + { + "#": 7367 + }, + { + "#": 7368 + }, + { + "#": 7369 + }, + { + "#": 7370 + }, + { + "#": 7371 + }, + { + "#": 7372 + }, + { + "#": 7373 + }, + { + "#": 7374 + } + ], + { + "x": 190.564, + "y": 1035.47875, + "index": 0, + "body": { + "#": 7356 + }, + "isInternal": false + }, + { + "x": 188.302, + "y": 1040.93975, + "index": 1, + "body": { + "#": 7356 + }, + "isInternal": false + }, + { + "x": 184.122, + "y": 1045.11975, + "index": 2, + "body": { + "#": 7356 + }, + "isInternal": false + }, + { + "x": 178.661, + "y": 1047.38175, + "index": 3, + "body": { + "#": 7356 + }, + "isInternal": false + }, + { + "x": 172.751, + "y": 1047.38175, + "index": 4, + "body": { + "#": 7356 + }, + "isInternal": false + }, + { + "x": 167.29, + "y": 1045.11975, + "index": 5, + "body": { + "#": 7356 + }, + "isInternal": false + }, + { + "x": 163.11, + "y": 1040.93975, + "index": 6, + "body": { + "#": 7356 + }, + "isInternal": false + }, + { + "x": 160.848, + "y": 1035.47875, + "index": 7, + "body": { + "#": 7356 + }, + "isInternal": false + }, + { + "x": 160.848, + "y": 1029.56875, + "index": 8, + "body": { + "#": 7356 + }, + "isInternal": false + }, + { + "x": 163.11, + "y": 1024.10775, + "index": 9, + "body": { + "#": 7356 + }, + "isInternal": false + }, + { + "x": 167.29, + "y": 1019.92775, + "index": 10, + "body": { + "#": 7356 + }, + "isInternal": false + }, + { + "x": 172.751, + "y": 1017.66575, + "index": 11, + "body": { + "#": 7356 + }, + "isInternal": false + }, + { + "x": 178.661, + "y": 1017.66575, + "index": 12, + "body": { + "#": 7356 + }, + "isInternal": false + }, + { + "x": 184.122, + "y": 1019.92775, + "index": 13, + "body": { + "#": 7356 + }, + "isInternal": false + }, + { + "x": 188.302, + "y": 1024.10775, + "index": 14, + "body": { + "#": 7356 + }, + "isInternal": false + }, + { + "x": 190.564, + "y": 1029.56875, + "index": 15, + "body": { + "#": 7356 + }, + "isInternal": false + }, + { + "x": 175.706, + "y": 1032.52375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7382 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7384 + }, + "max": { + "#": 7385 + } + }, + { + "x": 160.848, + "y": 1017.66575 + }, + { + "x": 190.564, + "y": 1047.38175 + }, + { + "x": 175.706, + "y": 1029.61648 + }, + [ + { + "#": 7388 + }, + { + "#": 7389 + }, + { + "#": 7390 + }, + { + "#": 7391 + }, + { + "#": 7392 + }, + { + "#": 7393 + }, + { + "#": 7394 + }, + { + "#": 7395 + } + ], + { + "x": -0.92388, + "y": -0.38268 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38268, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38268, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38268 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,3,21,21", + "startCol": 3, + "endCol": 3, + "startRow": 21, + "endRow": 21 + }, + { + "id": 147, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7398 + }, + "angle": 0, + "vertices": { + "#": 7399 + }, + "position": { + "#": 7424 + }, + "force": { + "#": 7425 + }, + "torque": 0, + "positionImpulse": { + "#": 7426 + }, + "constraintImpulse": { + "#": 7427 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7428 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7429 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7430 + }, + "circleRadius": 22.44888, + "bounds": { + "#": 7432 + }, + "positionPrev": { + "#": 7435 + }, + "anglePrev": 0, + "axes": { + "#": 7436 + }, + "area": 1565.2004, + "mass": 1.5652, + "inverseMass": 0.6389, + "inertia": 1559.66544, + "inverseInertia": 0.00064, + "parent": { + "#": 7397 + }, + "sleepCounter": 0, + "region": { + "#": 7449 + } + }, + [ + { + "#": 7397 + } + ], + [ + { + "#": 7400 + }, + { + "#": 7401 + }, + { + "#": 7402 + }, + { + "#": 7403 + }, + { + "#": 7404 + }, + { + "#": 7405 + }, + { + "#": 7406 + }, + { + "#": 7407 + }, + { + "#": 7408 + }, + { + "#": 7409 + }, + { + "#": 7410 + }, + { + "#": 7411 + }, + { + "#": 7412 + }, + { + "#": 7413 + }, + { + "#": 7414 + }, + { + "#": 7415 + }, + { + "#": 7416 + }, + { + "#": 7417 + }, + { + "#": 7418 + }, + { + "#": 7419 + }, + { + "#": 7420 + }, + { + "#": 7421 + }, + { + "#": 7422 + }, + { + "#": 7423 + } + ], + { + "x": 245.078, + "y": 1042.85275, + "index": 0, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 243.561, + "y": 1048.51375, + "index": 1, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 240.631, + "y": 1053.58875, + "index": 2, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 236.487, + "y": 1057.73275, + "index": 3, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 231.412, + "y": 1060.66275, + "index": 4, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 225.751, + "y": 1062.17975, + "index": 5, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 219.891, + "y": 1062.17975, + "index": 6, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 214.23, + "y": 1060.66275, + "index": 7, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 209.155, + "y": 1057.73275, + "index": 8, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 205.011, + "y": 1053.58875, + "index": 9, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 202.081, + "y": 1048.51375, + "index": 10, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 200.564, + "y": 1042.85275, + "index": 11, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 200.564, + "y": 1036.99275, + "index": 12, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 202.081, + "y": 1031.33175, + "index": 13, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 205.011, + "y": 1026.25675, + "index": 14, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 209.155, + "y": 1022.11275, + "index": 15, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 214.23, + "y": 1019.18275, + "index": 16, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 219.891, + "y": 1017.66575, + "index": 17, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 225.751, + "y": 1017.66575, + "index": 18, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 231.412, + "y": 1019.18275, + "index": 19, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 236.487, + "y": 1022.11275, + "index": 20, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 240.631, + "y": 1026.25675, + "index": 21, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 243.561, + "y": 1031.33175, + "index": 22, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 245.078, + "y": 1036.99275, + "index": 23, + "body": { + "#": 7397 + }, + "isInternal": false + }, + { + "x": 222.821, + "y": 1039.92275 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7431 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7433 + }, + "max": { + "#": 7434 + } + }, + { + "x": 200.564, + "y": 1017.66575 + }, + { + "x": 245.078, + "y": 1062.17975 + }, + { + "x": 222.821, + "y": 1037.01548 + }, + [ + { + "#": 7437 + }, + { + "#": 7438 + }, + { + "#": 7439 + }, + { + "#": 7440 + }, + { + "#": 7441 + }, + { + "#": 7442 + }, + { + "#": 7443 + }, + { + "#": 7444 + }, + { + "#": 7445 + }, + { + "#": 7446 + }, + { + "#": 7447 + }, + { + "#": 7448 + } + ], + { + "x": -0.96592, + "y": -0.25884 + }, + { + "x": -0.86603, + "y": -0.49999 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": -0.25884, + "y": -0.96592 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25884, + "y": -0.96592 + }, + { + "x": 0.49999, + "y": -0.86603 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.86603, + "y": -0.49999 + }, + { + "x": 0.96592, + "y": -0.25884 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,21,22", + "startCol": 4, + "endCol": 5, + "startRow": 21, + "endRow": 22 + }, + { + "id": 148, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7451 + }, + "angle": 0, + "vertices": { + "#": 7452 + }, + "position": { + "#": 7479 + }, + "force": { + "#": 7480 + }, + "torque": 0, + "positionImpulse": { + "#": 7481 + }, + "constraintImpulse": { + "#": 7482 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7483 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7484 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7485 + }, + "circleRadius": 24.91892, + "bounds": { + "#": 7487 + }, + "positionPrev": { + "#": 7490 + }, + "anglePrev": 0, + "axes": { + "#": 7491 + }, + "area": 1931.85773, + "mass": 1.93186, + "inverseMass": 0.51764, + "inertia": 2375.95762, + "inverseInertia": 0.00042, + "parent": { + "#": 7450 + }, + "sleepCounter": 0, + "region": { + "#": 7505 + } + }, + [ + { + "#": 7450 + } + ], + [ + { + "#": 7453 + }, + { + "#": 7454 + }, + { + "#": 7455 + }, + { + "#": 7456 + }, + { + "#": 7457 + }, + { + "#": 7458 + }, + { + "#": 7459 + }, + { + "#": 7460 + }, + { + "#": 7461 + }, + { + "#": 7462 + }, + { + "#": 7463 + }, + { + "#": 7464 + }, + { + "#": 7465 + }, + { + "#": 7466 + }, + { + "#": 7467 + }, + { + "#": 7468 + }, + { + "#": 7469 + }, + { + "#": 7470 + }, + { + "#": 7471 + }, + { + "#": 7472 + }, + { + "#": 7473 + }, + { + "#": 7474 + }, + { + "#": 7475 + }, + { + "#": 7476 + }, + { + "#": 7477 + }, + { + "#": 7478 + } + ], + { + "x": 304.552, + "y": 1045.58875, + "index": 0, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 303.115, + "y": 1051.42075, + "index": 1, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 300.323, + "y": 1056.74075, + "index": 2, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 296.339, + "y": 1061.23675, + "index": 3, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 291.395, + "y": 1064.64975, + "index": 4, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 285.778, + "y": 1066.77975, + "index": 5, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 279.815, + "y": 1067.50375, + "index": 6, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 273.852, + "y": 1066.77975, + "index": 7, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 268.235, + "y": 1064.64975, + "index": 8, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 263.291, + "y": 1061.23675, + "index": 9, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 259.307, + "y": 1056.74075, + "index": 10, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 256.515, + "y": 1051.42075, + "index": 11, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 255.078, + "y": 1045.58875, + "index": 12, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 255.078, + "y": 1039.58075, + "index": 13, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 256.515, + "y": 1033.74875, + "index": 14, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 259.307, + "y": 1028.42875, + "index": 15, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 263.291, + "y": 1023.93275, + "index": 16, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 268.235, + "y": 1020.51975, + "index": 17, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 273.852, + "y": 1018.38975, + "index": 18, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 279.815, + "y": 1017.66575, + "index": 19, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 285.778, + "y": 1018.38975, + "index": 20, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 291.395, + "y": 1020.51975, + "index": 21, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 296.339, + "y": 1023.93275, + "index": 22, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 300.323, + "y": 1028.42875, + "index": 23, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 303.115, + "y": 1033.74875, + "index": 24, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 304.552, + "y": 1039.58075, + "index": 25, + "body": { + "#": 7450 + }, + "isInternal": false + }, + { + "x": 279.815, + "y": 1042.58475 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7486 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7488 + }, + "max": { + "#": 7489 + } + }, + { + "x": 255.078, + "y": 1017.66575 + }, + { + "x": 304.552, + "y": 1067.50375 + }, + { + "x": 279.815, + "y": 1039.67748 + }, + [ + { + "#": 7492 + }, + { + "#": 7493 + }, + { + "#": 7494 + }, + { + "#": 7495 + }, + { + "#": 7496 + }, + { + "#": 7497 + }, + { + "#": 7498 + }, + { + "#": 7499 + }, + { + "#": 7500 + }, + { + "#": 7501 + }, + { + "#": 7502 + }, + { + "#": 7503 + }, + { + "#": 7504 + } + ], + { + "x": -0.97096, + "y": -0.23924 + }, + { + "x": -0.88547, + "y": -0.4647 + }, + { + "x": -0.74844, + "y": -0.66321 + }, + { + "x": -0.56811, + "y": -0.82295 + }, + { + "x": -0.35457, + "y": -0.93503 + }, + { + "x": -0.12053, + "y": -0.99271 + }, + { + "x": 0.12053, + "y": -0.99271 + }, + { + "x": 0.35457, + "y": -0.93503 + }, + { + "x": 0.56811, + "y": -0.82295 + }, + { + "x": 0.74844, + "y": -0.66321 + }, + { + "x": 0.88547, + "y": -0.4647 + }, + { + "x": 0.97096, + "y": -0.23924 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,21,22", + "startCol": 5, + "endCol": 6, + "startRow": 21, + "endRow": 22 + }, + { + "id": 149, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7507 + }, + "angle": 0, + "vertices": { + "#": 7508 + }, + "position": { + "#": 7529 + }, + "force": { + "#": 7530 + }, + "torque": 0, + "positionImpulse": { + "#": 7531 + }, + "constraintImpulse": { + "#": 7532 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7533 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7534 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7535 + }, + "circleRadius": 19.41056, + "bounds": { + "#": 7537 + }, + "positionPrev": { + "#": 7540 + }, + "anglePrev": 0, + "axes": { + "#": 7541 + }, + "area": 1164.28564, + "mass": 1.16429, + "inverseMass": 0.8589, + "inertia": 863.02423, + "inverseInertia": 0.00116, + "parent": { + "#": 7506 + }, + "sleepCounter": 0, + "region": { + "#": 7552 + } + }, + [ + { + "#": 7506 + } + ], + [ + { + "#": 7509 + }, + { + "#": 7510 + }, + { + "#": 7511 + }, + { + "#": 7512 + }, + { + "#": 7513 + }, + { + "#": 7514 + }, + { + "#": 7515 + }, + { + "#": 7516 + }, + { + "#": 7517 + }, + { + "#": 7518 + }, + { + "#": 7519 + }, + { + "#": 7520 + }, + { + "#": 7521 + }, + { + "#": 7522 + }, + { + "#": 7523 + }, + { + "#": 7524 + }, + { + "#": 7525 + }, + { + "#": 7526 + }, + { + "#": 7527 + }, + { + "#": 7528 + } + ], + { + "x": 352.896, + "y": 1039.87375, + "index": 0, + "body": { + "#": 7506 + }, + "isInternal": false + }, + { + "x": 351.019, + "y": 1045.64975, + "index": 1, + "body": { + "#": 7506 + }, + "isInternal": false + }, + { + "x": 347.449, + "y": 1050.56275, + "index": 2, + "body": { + "#": 7506 + }, + "isInternal": false + }, + { + "x": 342.536, + "y": 1054.13275, + "index": 3, + "body": { + "#": 7506 + }, + "isInternal": false + }, + { + "x": 336.76, + "y": 1056.00975, + "index": 4, + "body": { + "#": 7506 + }, + "isInternal": false + }, + { + "x": 330.688, + "y": 1056.00975, + "index": 5, + "body": { + "#": 7506 + }, + "isInternal": false + }, + { + "x": 324.912, + "y": 1054.13275, + "index": 6, + "body": { + "#": 7506 + }, + "isInternal": false + }, + { + "x": 319.999, + "y": 1050.56275, + "index": 7, + "body": { + "#": 7506 + }, + "isInternal": false + }, + { + "x": 316.429, + "y": 1045.64975, + "index": 8, + "body": { + "#": 7506 + }, + "isInternal": false + }, + { + "x": 314.552, + "y": 1039.87375, + "index": 9, + "body": { + "#": 7506 + }, + "isInternal": false + }, + { + "x": 314.552, + "y": 1033.80175, + "index": 10, + "body": { + "#": 7506 + }, + "isInternal": false + }, + { + "x": 316.429, + "y": 1028.02575, + "index": 11, + "body": { + "#": 7506 + }, + "isInternal": false + }, + { + "x": 319.999, + "y": 1023.11275, + "index": 12, + "body": { + "#": 7506 + }, + "isInternal": false + }, + { + "x": 324.912, + "y": 1019.54275, + "index": 13, + "body": { + "#": 7506 + }, + "isInternal": false + }, + { + "x": 330.688, + "y": 1017.66575, + "index": 14, + "body": { + "#": 7506 + }, + "isInternal": false + }, + { + "x": 336.76, + "y": 1017.66575, + "index": 15, + "body": { + "#": 7506 + }, + "isInternal": false + }, + { + "x": 342.536, + "y": 1019.54275, + "index": 16, + "body": { + "#": 7506 + }, + "isInternal": false + }, + { + "x": 347.449, + "y": 1023.11275, + "index": 17, + "body": { + "#": 7506 + }, + "isInternal": false + }, + { + "x": 351.019, + "y": 1028.02575, + "index": 18, + "body": { + "#": 7506 + }, + "isInternal": false + }, + { + "x": 352.896, + "y": 1033.80175, + "index": 19, + "body": { + "#": 7506 + }, + "isInternal": false + }, + { + "x": 333.724, + "y": 1036.83775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7536 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7538 + }, + "max": { + "#": 7539 + } + }, + { + "x": 314.552, + "y": 1017.66575 + }, + { + "x": 352.896, + "y": 1056.00975 + }, + { + "x": 333.724, + "y": 1033.93048 + }, + [ + { + "#": 7542 + }, + { + "#": 7543 + }, + { + "#": 7544 + }, + { + "#": 7545 + }, + { + "#": 7546 + }, + { + "#": 7547 + }, + { + "#": 7548 + }, + { + "#": 7549 + }, + { + "#": 7550 + }, + { + "#": 7551 + } + ], + { + "x": -0.95104, + "y": -0.30906 + }, + { + "x": -0.80898, + "y": -0.58784 + }, + { + "x": -0.58784, + "y": -0.80898 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.58784, + "y": -0.80898 + }, + { + "x": 0.80898, + "y": -0.58784 + }, + { + "x": 0.95104, + "y": -0.30906 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,21,22", + "startCol": 6, + "endCol": 7, + "startRow": 21, + "endRow": 22 + }, + { + "id": 150, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7554 + }, + "angle": 0, + "vertices": { + "#": 7555 + }, + "position": { + "#": 7576 + }, + "force": { + "#": 7577 + }, + "torque": 0, + "positionImpulse": { + "#": 7578 + }, + "constraintImpulse": { + "#": 7579 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7580 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7581 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7582 + }, + "circleRadius": 18.88677, + "bounds": { + "#": 7584 + }, + "positionPrev": { + "#": 7587 + }, + "anglePrev": 0, + "axes": { + "#": 7588 + }, + "area": 1102.26958, + "mass": 1.10227, + "inverseMass": 0.90722, + "inertia": 773.53426, + "inverseInertia": 0.00129, + "parent": { + "#": 7553 + }, + "sleepCounter": 0, + "region": { + "#": 7599 + } + }, + [ + { + "#": 7553 + } + ], + [ + { + "#": 7556 + }, + { + "#": 7557 + }, + { + "#": 7558 + }, + { + "#": 7559 + }, + { + "#": 7560 + }, + { + "#": 7561 + }, + { + "#": 7562 + }, + { + "#": 7563 + }, + { + "#": 7564 + }, + { + "#": 7565 + }, + { + "#": 7566 + }, + { + "#": 7567 + }, + { + "#": 7568 + }, + { + "#": 7569 + }, + { + "#": 7570 + }, + { + "#": 7571 + }, + { + "#": 7572 + }, + { + "#": 7573 + }, + { + "#": 7574 + }, + { + "#": 7575 + } + ], + { + "x": 400.204, + "y": 1039.27475, + "index": 0, + "body": { + "#": 7553 + }, + "isInternal": false + }, + { + "x": 398.378, + "y": 1044.89375, + "index": 1, + "body": { + "#": 7553 + }, + "isInternal": false + }, + { + "x": 394.905, + "y": 1049.67475, + "index": 2, + "body": { + "#": 7553 + }, + "isInternal": false + }, + { + "x": 390.124, + "y": 1053.14775, + "index": 3, + "body": { + "#": 7553 + }, + "isInternal": false + }, + { + "x": 384.505, + "y": 1054.97375, + "index": 4, + "body": { + "#": 7553 + }, + "isInternal": false + }, + { + "x": 378.595, + "y": 1054.97375, + "index": 5, + "body": { + "#": 7553 + }, + "isInternal": false + }, + { + "x": 372.976, + "y": 1053.14775, + "index": 6, + "body": { + "#": 7553 + }, + "isInternal": false + }, + { + "x": 368.195, + "y": 1049.67475, + "index": 7, + "body": { + "#": 7553 + }, + "isInternal": false + }, + { + "x": 364.722, + "y": 1044.89375, + "index": 8, + "body": { + "#": 7553 + }, + "isInternal": false + }, + { + "x": 362.896, + "y": 1039.27475, + "index": 9, + "body": { + "#": 7553 + }, + "isInternal": false + }, + { + "x": 362.896, + "y": 1033.36475, + "index": 10, + "body": { + "#": 7553 + }, + "isInternal": false + }, + { + "x": 364.722, + "y": 1027.74575, + "index": 11, + "body": { + "#": 7553 + }, + "isInternal": false + }, + { + "x": 368.195, + "y": 1022.96475, + "index": 12, + "body": { + "#": 7553 + }, + "isInternal": false + }, + { + "x": 372.976, + "y": 1019.49175, + "index": 13, + "body": { + "#": 7553 + }, + "isInternal": false + }, + { + "x": 378.595, + "y": 1017.66575, + "index": 14, + "body": { + "#": 7553 + }, + "isInternal": false + }, + { + "x": 384.505, + "y": 1017.66575, + "index": 15, + "body": { + "#": 7553 + }, + "isInternal": false + }, + { + "x": 390.124, + "y": 1019.49175, + "index": 16, + "body": { + "#": 7553 + }, + "isInternal": false + }, + { + "x": 394.905, + "y": 1022.96475, + "index": 17, + "body": { + "#": 7553 + }, + "isInternal": false + }, + { + "x": 398.378, + "y": 1027.74575, + "index": 18, + "body": { + "#": 7553 + }, + "isInternal": false + }, + { + "x": 400.204, + "y": 1033.36475, + "index": 19, + "body": { + "#": 7553 + }, + "isInternal": false + }, + { + "x": 381.55, + "y": 1036.31975 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7583 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7585 + }, + "max": { + "#": 7586 + } + }, + { + "x": 362.896, + "y": 1017.66575 + }, + { + "x": 400.204, + "y": 1054.97375 + }, + { + "x": 381.55, + "y": 1033.41248 + }, + [ + { + "#": 7589 + }, + { + "#": 7590 + }, + { + "#": 7591 + }, + { + "#": 7592 + }, + { + "#": 7593 + }, + { + "#": 7594 + }, + { + "#": 7595 + }, + { + "#": 7596 + }, + { + "#": 7597 + }, + { + "#": 7598 + } + ], + { + "x": -0.95104, + "y": -0.30906 + }, + { + "x": -0.80907, + "y": -0.58772 + }, + { + "x": -0.58772, + "y": -0.80907 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.58772, + "y": -0.80907 + }, + { + "x": 0.80907, + "y": -0.58772 + }, + { + "x": 0.95104, + "y": -0.30906 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,21,21", + "startCol": 7, + "endCol": 8, + "startRow": 21, + "endRow": 21 + }, + { + "id": 151, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7601 + }, + "angle": 0, + "vertices": { + "#": 7602 + }, + "position": { + "#": 7629 + }, + "force": { + "#": 7630 + }, + "torque": 0, + "positionImpulse": { + "#": 7631 + }, + "constraintImpulse": { + "#": 7632 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7633 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7634 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7635 + }, + "circleRadius": 29.08828, + "bounds": { + "#": 7637 + }, + "positionPrev": { + "#": 7640 + }, + "anglePrev": 0, + "axes": { + "#": 7641 + }, + "area": 2632.36676, + "mass": 2.63237, + "inverseMass": 0.37989, + "inertia": 4411.44843, + "inverseInertia": 0.00023, + "parent": { + "#": 7600 + }, + "sleepCounter": 0, + "region": { + "#": 7655 + } + }, + [ + { + "#": 7600 + } + ], + [ + { + "#": 7603 + }, + { + "#": 7604 + }, + { + "#": 7605 + }, + { + "#": 7606 + }, + { + "#": 7607 + }, + { + "#": 7608 + }, + { + "#": 7609 + }, + { + "#": 7610 + }, + { + "#": 7611 + }, + { + "#": 7612 + }, + { + "#": 7613 + }, + { + "#": 7614 + }, + { + "#": 7615 + }, + { + "#": 7616 + }, + { + "#": 7617 + }, + { + "#": 7618 + }, + { + "#": 7619 + }, + { + "#": 7620 + }, + { + "#": 7621 + }, + { + "#": 7622 + }, + { + "#": 7623 + }, + { + "#": 7624 + }, + { + "#": 7625 + }, + { + "#": 7626 + }, + { + "#": 7627 + }, + { + "#": 7628 + } + ], + { + "x": 467.956, + "y": 1050.25975, + "index": 0, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 466.278, + "y": 1057.06875, + "index": 1, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 463.019, + "y": 1063.27775, + "index": 2, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 458.369, + "y": 1068.52675, + "index": 3, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 452.598, + "y": 1072.50975, + "index": 4, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 446.041, + "y": 1074.99675, + "index": 5, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 439.08, + "y": 1075.84175, + "index": 6, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 432.119, + "y": 1074.99675, + "index": 7, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 425.562, + "y": 1072.50975, + "index": 8, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 419.791, + "y": 1068.52675, + "index": 9, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 415.141, + "y": 1063.27775, + "index": 10, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 411.882, + "y": 1057.06875, + "index": 11, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 410.204, + "y": 1050.25975, + "index": 12, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 410.204, + "y": 1043.24775, + "index": 13, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 411.882, + "y": 1036.43875, + "index": 14, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 415.141, + "y": 1030.22975, + "index": 15, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 419.791, + "y": 1024.98075, + "index": 16, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 425.562, + "y": 1020.99775, + "index": 17, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 432.119, + "y": 1018.51075, + "index": 18, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 439.08, + "y": 1017.66575, + "index": 19, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 446.041, + "y": 1018.51075, + "index": 20, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 452.598, + "y": 1020.99775, + "index": 21, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 458.369, + "y": 1024.98075, + "index": 22, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 463.019, + "y": 1030.22975, + "index": 23, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 466.278, + "y": 1036.43875, + "index": 24, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 467.956, + "y": 1043.24775, + "index": 25, + "body": { + "#": 7600 + }, + "isInternal": false + }, + { + "x": 439.08, + "y": 1046.75375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7636 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7638 + }, + "max": { + "#": 7639 + } + }, + { + "x": 410.204, + "y": 1017.66575 + }, + { + "x": 467.956, + "y": 1075.84175 + }, + { + "x": 439.08, + "y": 1043.84648 + }, + [ + { + "#": 7642 + }, + { + "#": 7643 + }, + { + "#": 7644 + }, + { + "#": 7645 + }, + { + "#": 7646 + }, + { + "#": 7647 + }, + { + "#": 7648 + }, + { + "#": 7649 + }, + { + "#": 7650 + }, + { + "#": 7651 + }, + { + "#": 7652 + }, + { + "#": 7653 + }, + { + "#": 7654 + } + ], + { + "x": -0.97095, + "y": -0.23928 + }, + { + "x": -0.88544, + "y": -0.46475 + }, + { + "x": -0.74853, + "y": -0.66311 + }, + { + "x": -0.56802, + "y": -0.82301 + }, + { + "x": -0.35464, + "y": -0.935 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35464, + "y": -0.935 + }, + { + "x": 0.56802, + "y": -0.82301 + }, + { + "x": 0.74853, + "y": -0.66311 + }, + { + "x": 0.88544, + "y": -0.46475 + }, + { + "x": 0.97095, + "y": -0.23928 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,21,22", + "startCol": 8, + "endCol": 9, + "startRow": 21, + "endRow": 22 + }, + { + "id": 152, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7657 + }, + "angle": 0, + "vertices": { + "#": 7658 + }, + "position": { + "#": 7681 + }, + "force": { + "#": 7682 + }, + "torque": 0, + "positionImpulse": { + "#": 7683 + }, + "constraintImpulse": { + "#": 7684 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7685 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7686 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7687 + }, + "circleRadius": 20.2003, + "bounds": { + "#": 7689 + }, + "positionPrev": { + "#": 7692 + }, + "anglePrev": 0, + "axes": { + "#": 7693 + }, + "area": 1264.5827, + "mass": 1.26458, + "inverseMass": 0.79077, + "inertia": 1018.10087, + "inverseInertia": 0.00098, + "parent": { + "#": 7656 + }, + "sleepCounter": 0, + "region": { + "#": 7705 + } + }, + [ + { + "#": 7656 + } + ], + [ + { + "#": 7659 + }, + { + "#": 7660 + }, + { + "#": 7661 + }, + { + "#": 7662 + }, + { + "#": 7663 + }, + { + "#": 7664 + }, + { + "#": 7665 + }, + { + "#": 7666 + }, + { + "#": 7667 + }, + { + "#": 7668 + }, + { + "#": 7669 + }, + { + "#": 7670 + }, + { + "#": 7671 + }, + { + "#": 7672 + }, + { + "#": 7673 + }, + { + "#": 7674 + }, + { + "#": 7675 + }, + { + "#": 7676 + }, + { + "#": 7677 + }, + { + "#": 7678 + }, + { + "#": 7679 + }, + { + "#": 7680 + } + ], + { + "x": 517.946, + "y": 1040.74075, + "index": 0, + "body": { + "#": 7656 + }, + "isInternal": false + }, + { + "x": 516.326, + "y": 1046.25775, + "index": 1, + "body": { + "#": 7656 + }, + "isInternal": false + }, + { + "x": 513.217, + "y": 1051.09375, + "index": 2, + "body": { + "#": 7656 + }, + "isInternal": false + }, + { + "x": 508.872, + "y": 1054.85975, + "index": 3, + "body": { + "#": 7656 + }, + "isInternal": false + }, + { + "x": 503.642, + "y": 1057.24775, + "index": 4, + "body": { + "#": 7656 + }, + "isInternal": false + }, + { + "x": 497.951, + "y": 1058.06575, + "index": 5, + "body": { + "#": 7656 + }, + "isInternal": false + }, + { + "x": 492.26, + "y": 1057.24775, + "index": 6, + "body": { + "#": 7656 + }, + "isInternal": false + }, + { + "x": 487.03, + "y": 1054.85975, + "index": 7, + "body": { + "#": 7656 + }, + "isInternal": false + }, + { + "x": 482.685, + "y": 1051.09375, + "index": 8, + "body": { + "#": 7656 + }, + "isInternal": false + }, + { + "x": 479.576, + "y": 1046.25775, + "index": 9, + "body": { + "#": 7656 + }, + "isInternal": false + }, + { + "x": 477.956, + "y": 1040.74075, + "index": 10, + "body": { + "#": 7656 + }, + "isInternal": false + }, + { + "x": 477.956, + "y": 1034.99075, + "index": 11, + "body": { + "#": 7656 + }, + "isInternal": false + }, + { + "x": 479.576, + "y": 1029.47375, + "index": 12, + "body": { + "#": 7656 + }, + "isInternal": false + }, + { + "x": 482.685, + "y": 1024.63775, + "index": 13, + "body": { + "#": 7656 + }, + "isInternal": false + }, + { + "x": 487.03, + "y": 1020.87175, + "index": 14, + "body": { + "#": 7656 + }, + "isInternal": false + }, + { + "x": 492.26, + "y": 1018.48375, + "index": 15, + "body": { + "#": 7656 + }, + "isInternal": false + }, + { + "x": 497.951, + "y": 1017.66575, + "index": 16, + "body": { + "#": 7656 + }, + "isInternal": false + }, + { + "x": 503.642, + "y": 1018.48375, + "index": 17, + "body": { + "#": 7656 + }, + "isInternal": false + }, + { + "x": 508.872, + "y": 1020.87175, + "index": 18, + "body": { + "#": 7656 + }, + "isInternal": false + }, + { + "x": 513.217, + "y": 1024.63775, + "index": 19, + "body": { + "#": 7656 + }, + "isInternal": false + }, + { + "x": 516.326, + "y": 1029.47375, + "index": 20, + "body": { + "#": 7656 + }, + "isInternal": false + }, + { + "x": 517.946, + "y": 1034.99075, + "index": 21, + "body": { + "#": 7656 + }, + "isInternal": false + }, + { + "x": 497.951, + "y": 1037.86575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7688 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7690 + }, + "max": { + "#": 7691 + } + }, + { + "x": 477.956, + "y": 1017.66575 + }, + { + "x": 517.946, + "y": 1058.06575 + }, + { + "x": 497.951, + "y": 1034.95848 + }, + [ + { + "#": 7694 + }, + { + "#": 7695 + }, + { + "#": 7696 + }, + { + "#": 7697 + }, + { + "#": 7698 + }, + { + "#": 7699 + }, + { + "#": 7700 + }, + { + "#": 7701 + }, + { + "#": 7702 + }, + { + "#": 7703 + }, + { + "#": 7704 + } + ], + { + "x": -0.95949, + "y": -0.28174 + }, + { + "x": -0.84117, + "y": -0.54078 + }, + { + "x": -0.65496, + "y": -0.75566 + }, + { + "x": -0.41535, + "y": -0.90966 + }, + { + "x": -0.14227, + "y": -0.98983 + }, + { + "x": 0.14227, + "y": -0.98983 + }, + { + "x": 0.41535, + "y": -0.90966 + }, + { + "x": 0.65496, + "y": -0.75566 + }, + { + "x": 0.84117, + "y": -0.54078 + }, + { + "x": 0.95949, + "y": -0.28174 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,21,22", + "startCol": 9, + "endCol": 10, + "startRow": 21, + "endRow": 22 + }, + { + "id": 153, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7707 + }, + "angle": 0, + "vertices": { + "#": 7708 + }, + "position": { + "#": 7735 + }, + "force": { + "#": 7736 + }, + "torque": 0, + "positionImpulse": { + "#": 7737 + }, + "constraintImpulse": { + "#": 7738 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7739 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7740 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7741 + }, + "circleRadius": 28.5191, + "bounds": { + "#": 7743 + }, + "positionPrev": { + "#": 7746 + }, + "anglePrev": 0, + "axes": { + "#": 7747 + }, + "area": 2530.3746, + "mass": 2.53037, + "inverseMass": 0.3952, + "inertia": 4076.22406, + "inverseInertia": 0.00025, + "parent": { + "#": 7706 + }, + "sleepCounter": 0, + "region": { + "#": 7761 + } + }, + [ + { + "#": 7706 + } + ], + [ + { + "#": 7709 + }, + { + "#": 7710 + }, + { + "#": 7711 + }, + { + "#": 7712 + }, + { + "#": 7713 + }, + { + "#": 7714 + }, + { + "#": 7715 + }, + { + "#": 7716 + }, + { + "#": 7717 + }, + { + "#": 7718 + }, + { + "#": 7719 + }, + { + "#": 7720 + }, + { + "#": 7721 + }, + { + "#": 7722 + }, + { + "#": 7723 + }, + { + "#": 7724 + }, + { + "#": 7725 + }, + { + "#": 7726 + }, + { + "#": 7727 + }, + { + "#": 7728 + }, + { + "#": 7729 + }, + { + "#": 7730 + }, + { + "#": 7731 + }, + { + "#": 7732 + }, + { + "#": 7733 + }, + { + "#": 7734 + } + ], + { + "x": 584.568, + "y": 1049.62275, + "index": 0, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 582.923, + "y": 1056.29775, + "index": 1, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 579.728, + "y": 1062.38575, + "index": 2, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 575.169, + "y": 1067.53175, + "index": 3, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 569.51, + "y": 1071.43675, + "index": 4, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 563.082, + "y": 1073.87475, + "index": 5, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 556.257, + "y": 1074.70375, + "index": 6, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 549.432, + "y": 1073.87475, + "index": 7, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 543.004, + "y": 1071.43675, + "index": 8, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 537.345, + "y": 1067.53175, + "index": 9, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 532.786, + "y": 1062.38575, + "index": 10, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 529.591, + "y": 1056.29775, + "index": 11, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 527.946, + "y": 1049.62275, + "index": 12, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 527.946, + "y": 1042.74675, + "index": 13, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 529.591, + "y": 1036.07175, + "index": 14, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 532.786, + "y": 1029.98375, + "index": 15, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 537.345, + "y": 1024.83775, + "index": 16, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 543.004, + "y": 1020.93275, + "index": 17, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 549.432, + "y": 1018.49475, + "index": 18, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 556.257, + "y": 1017.66575, + "index": 19, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 563.082, + "y": 1018.49475, + "index": 20, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 569.51, + "y": 1020.93275, + "index": 21, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 575.169, + "y": 1024.83775, + "index": 22, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 579.728, + "y": 1029.98375, + "index": 23, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 582.923, + "y": 1036.07175, + "index": 24, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 584.568, + "y": 1042.74675, + "index": 25, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 556.257, + "y": 1046.18475 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7742 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7744 + }, + "max": { + "#": 7745 + } + }, + { + "x": 527.946, + "y": 1017.66575 + }, + { + "x": 584.568, + "y": 1074.70375 + }, + { + "x": 556.257, + "y": 1043.27748 + }, + [ + { + "#": 7748 + }, + { + "#": 7749 + }, + { + "#": 7750 + }, + { + "#": 7751 + }, + { + "#": 7752 + }, + { + "#": 7753 + }, + { + "#": 7754 + }, + { + "#": 7755 + }, + { + "#": 7756 + }, + { + "#": 7757 + }, + { + "#": 7758 + }, + { + "#": 7759 + }, + { + "#": 7760 + } + ], + { + "x": -0.97095, + "y": -0.23928 + }, + { + "x": -0.88547, + "y": -0.4647 + }, + { + "x": -0.74851, + "y": -0.66313 + }, + { + "x": -0.56795, + "y": -0.82306 + }, + { + "x": -0.35463, + "y": -0.93501 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.35463, + "y": -0.93501 + }, + { + "x": 0.56795, + "y": -0.82306 + }, + { + "x": 0.74851, + "y": -0.66313 + }, + { + "x": 0.88547, + "y": -0.4647 + }, + { + "x": 0.97095, + "y": -0.23928 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,12,21,22", + "startCol": 10, + "endCol": 12, + "startRow": 21, + "endRow": 22 + }, + { + "id": 154, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7763 + }, + "angle": 0, + "vertices": { + "#": 7764 + }, + "position": { + "#": 7791 + }, + "force": { + "#": 7792 + }, + "torque": 0, + "positionImpulse": { + "#": 7793 + }, + "constraintImpulse": { + "#": 7794 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7795 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.6, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7796 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7797 + }, + "circleRadius": 28.11876, + "bounds": { + "#": 7799 + }, + "positionPrev": { + "#": 7802 + }, + "anglePrev": 0, + "axes": { + "#": 7803 + }, + "area": 2459.82089, + "mass": 2.45982, + "inverseMass": 0.40653, + "inertia": 3852.08072, + "inverseInertia": 0.00026, + "parent": { + "#": 7762 + }, + "sleepCounter": 0, + "region": { + "#": 7817 + } + }, + [ + { + "#": 7762 + } + ], + [ + { + "#": 7765 + }, + { + "#": 7766 + }, + { + "#": 7767 + }, + { + "#": 7768 + }, + { + "#": 7769 + }, + { + "#": 7770 + }, + { + "#": 7771 + }, + { + "#": 7772 + }, + { + "#": 7773 + }, + { + "#": 7774 + }, + { + "#": 7775 + }, + { + "#": 7776 + }, + { + "#": 7777 + }, + { + "#": 7778 + }, + { + "#": 7779 + }, + { + "#": 7780 + }, + { + "#": 7781 + }, + { + "#": 7782 + }, + { + "#": 7783 + }, + { + "#": 7784 + }, + { + "#": 7785 + }, + { + "#": 7786 + }, + { + "#": 7787 + }, + { + "#": 7788 + }, + { + "#": 7789 + }, + { + "#": 7790 + } + ], + { + "x": 650.396, + "y": 1049.17375, + "index": 0, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 648.773, + "y": 1055.75575, + "index": 1, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 645.623, + "y": 1061.75775, + "index": 2, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 641.128, + "y": 1066.83175, + "index": 3, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 635.549, + "y": 1070.68275, + "index": 4, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 629.211, + "y": 1073.08675, + "index": 5, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 622.482, + "y": 1073.90375, + "index": 6, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 615.753, + "y": 1073.08675, + "index": 7, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 609.415, + "y": 1070.68275, + "index": 8, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 603.836, + "y": 1066.83175, + "index": 9, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 599.341, + "y": 1061.75775, + "index": 10, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 596.191, + "y": 1055.75575, + "index": 11, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 594.568, + "y": 1049.17375, + "index": 12, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 594.568, + "y": 1042.39575, + "index": 13, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 596.191, + "y": 1035.81375, + "index": 14, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 599.341, + "y": 1029.81175, + "index": 15, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 603.836, + "y": 1024.73775, + "index": 16, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 609.415, + "y": 1020.88675, + "index": 17, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 615.753, + "y": 1018.48275, + "index": 18, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 622.482, + "y": 1017.66575, + "index": 19, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 629.211, + "y": 1018.48275, + "index": 20, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 635.549, + "y": 1020.88675, + "index": 21, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 641.128, + "y": 1024.73775, + "index": 22, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 645.623, + "y": 1029.81175, + "index": 23, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 648.773, + "y": 1035.81375, + "index": 24, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 650.396, + "y": 1042.39575, + "index": 25, + "body": { + "#": 7762 + }, + "isInternal": false + }, + { + "x": 622.482, + "y": 1045.78475 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7798 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7800 + }, + "max": { + "#": 7801 + } + }, + { + "x": 594.568, + "y": 1017.66575 + }, + { + "x": 650.396, + "y": 1073.90375 + }, + { + "x": 622.482, + "y": 1042.87748 + }, + [ + { + "#": 7804 + }, + { + "#": 7805 + }, + { + "#": 7806 + }, + { + "#": 7807 + }, + { + "#": 7808 + }, + { + "#": 7809 + }, + { + "#": 7810 + }, + { + "#": 7811 + }, + { + "#": 7812 + }, + { + "#": 7813 + }, + { + "#": 7814 + }, + { + "#": 7815 + }, + { + "#": 7816 + } + ], + { + "x": -0.97092, + "y": -0.23941 + }, + { + "x": -0.88546, + "y": -0.46471 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.35465, + "y": -0.935 + }, + { + "x": -0.12053, + "y": -0.99271 + }, + { + "x": 0.12053, + "y": -0.99271 + }, + { + "x": 0.35465, + "y": -0.935 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88546, + "y": -0.46471 + }, + { + "x": 0.97092, + "y": -0.23941 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,13,21,22", + "startCol": 12, + "endCol": 13, + "startRow": 21, + "endRow": 22 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 7822 + }, + "max": { + "#": 7823 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/beachBalls/beachBalls-0.json b/test/node/refs/beachBalls/beachBalls-0.json new file mode 100644 index 00000000..5def9e9e --- /dev/null +++ b/test/node/refs/beachBalls/beachBalls-0.json @@ -0,0 +1,3673 @@ +[ + { + "id": 105, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 90 + }, + "composites": { + "#": 91 + }, + "label": "World", + "gravity": { + "#": 371 + }, + "bounds": { + "#": 372 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [ + { + "#": 92 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 93 + }, + "constraints": { + "#": 369 + }, + "composites": { + "#": 370 + }, + "label": "Stack" + }, + [ + { + "#": 94 + }, + { + "#": 149 + }, + { + "#": 204 + }, + { + "#": 259 + }, + { + "#": 314 + } + ], + { + "id": 5, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 96 + }, + "position": { + "#": 123 + }, + "force": { + "#": 124 + }, + "torque": 0, + "positionImpulse": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 127 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.9, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 128 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 129 + }, + "circleRadius": 75, + "bounds": { + "#": 131 + }, + "positionPrev": { + "#": 134 + }, + "anglePrev": 0, + "axes": { + "#": 135 + }, + "area": 17499.92251, + "mass": 17.49992, + "inverseMass": 0.05714, + "inertia": 194966.79856, + "inverseInertia": 0.00001, + "parent": { + "#": 94 + }, + "sleepCounter": 0 + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + } + ], + { + "x": 148.906, + "y": 184.04, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 144.579, + "y": 201.595, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 136.177, + "y": 217.605, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 124.187, + "y": 231.138, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 109.307, + "y": 241.409, + "index": 4, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 92.402, + "y": 247.821, + "index": 5, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 74.453, + "y": 250, + "index": 6, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 56.504, + "y": 247.821, + "index": 7, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 39.599, + "y": 241.409, + "index": 8, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 24.719, + "y": 231.138, + "index": 9, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 12.729, + "y": 217.605, + "index": 10, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 4.327, + "y": 201.595, + "index": 11, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 0, + "y": 184.04, + "index": 12, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 0, + "y": 165.96, + "index": 13, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 4.327, + "y": 148.405, + "index": 14, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 12.729, + "y": 132.395, + "index": 15, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 24.719, + "y": 118.862, + "index": 16, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 39.599, + "y": 108.591, + "index": 17, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 56.504, + "y": 102.179, + "index": 18, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 74.453, + "y": 100, + "index": 19, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 92.402, + "y": 102.179, + "index": 20, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 109.307, + "y": 108.591, + "index": 21, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 124.187, + "y": 118.862, + "index": 22, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 136.177, + "y": 132.395, + "index": 23, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 144.579, + "y": 148.405, + "index": 24, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 148.906, + "y": 165.96, + "index": 25, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 74.453, + "y": 175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 130 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 132 + }, + "max": { + "#": 133 + } + }, + { + "x": 0, + "y": 100 + }, + { + "x": 148.906, + "y": 250 + }, + { + "x": 74.453, + "y": 175 + }, + [ + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + } + ], + { + "x": -0.97094, + "y": -0.23932 + }, + { + "x": -0.88547, + "y": -0.46469 + }, + { + "x": -0.74849, + "y": -0.66315 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.35464, + "y": -0.935 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35464, + "y": -0.935 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74849, + "y": -0.66315 + }, + { + "x": 0.88547, + "y": -0.46469 + }, + { + "x": 0.97094, + "y": -0.23932 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 150 + }, + "angle": 0, + "vertices": { + "#": 151 + }, + "position": { + "#": 178 + }, + "force": { + "#": 179 + }, + "torque": 0, + "positionImpulse": { + "#": 180 + }, + "constraintImpulse": { + "#": 181 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 182 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.9, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 183 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 184 + }, + "circleRadius": 75, + "bounds": { + "#": 186 + }, + "positionPrev": { + "#": 189 + }, + "anglePrev": 0, + "axes": { + "#": 190 + }, + "area": 17499.92251, + "mass": 17.49992, + "inverseMass": 0.05714, + "inertia": 194966.79856, + "inverseInertia": 0.00001, + "parent": { + "#": 149 + }, + "sleepCounter": 0 + }, + [ + { + "#": 149 + } + ], + [ + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + }, + { + "#": 156 + }, + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + } + ], + { + "x": 317.812, + "y": 184.04, + "index": 0, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 313.485, + "y": 201.595, + "index": 1, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 305.083, + "y": 217.605, + "index": 2, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 293.093, + "y": 231.138, + "index": 3, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 278.213, + "y": 241.409, + "index": 4, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 261.308, + "y": 247.821, + "index": 5, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 243.359, + "y": 250, + "index": 6, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 225.41, + "y": 247.821, + "index": 7, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 208.505, + "y": 241.409, + "index": 8, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 193.625, + "y": 231.138, + "index": 9, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 181.635, + "y": 217.605, + "index": 10, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 173.233, + "y": 201.595, + "index": 11, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 168.906, + "y": 184.04, + "index": 12, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 168.906, + "y": 165.96, + "index": 13, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 173.233, + "y": 148.405, + "index": 14, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 181.635, + "y": 132.395, + "index": 15, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 193.625, + "y": 118.862, + "index": 16, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 208.505, + "y": 108.591, + "index": 17, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 225.41, + "y": 102.179, + "index": 18, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 243.359, + "y": 100, + "index": 19, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 261.308, + "y": 102.179, + "index": 20, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 278.213, + "y": 108.591, + "index": 21, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 293.093, + "y": 118.862, + "index": 22, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 305.083, + "y": 132.395, + "index": 23, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 313.485, + "y": 148.405, + "index": 24, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 317.812, + "y": 165.96, + "index": 25, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 243.359, + "y": 175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 185 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 187 + }, + "max": { + "#": 188 + } + }, + { + "x": 168.906, + "y": 100 + }, + { + "x": 317.812, + "y": 250 + }, + { + "x": 243.359, + "y": 175 + }, + [ + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + } + ], + { + "x": -0.97094, + "y": -0.23932 + }, + { + "x": -0.88547, + "y": -0.46469 + }, + { + "x": -0.74849, + "y": -0.66315 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.35464, + "y": -0.935 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35464, + "y": -0.935 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74849, + "y": -0.66315 + }, + { + "x": 0.88547, + "y": -0.46469 + }, + { + "x": 0.97094, + "y": -0.23932 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 205 + }, + "angle": 0, + "vertices": { + "#": 206 + }, + "position": { + "#": 233 + }, + "force": { + "#": 234 + }, + "torque": 0, + "positionImpulse": { + "#": 235 + }, + "constraintImpulse": { + "#": 236 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 237 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.9, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 238 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 239 + }, + "circleRadius": 75, + "bounds": { + "#": 241 + }, + "positionPrev": { + "#": 244 + }, + "anglePrev": 0, + "axes": { + "#": 245 + }, + "area": 17499.92251, + "mass": 17.49992, + "inverseMass": 0.05714, + "inertia": 194966.79856, + "inverseInertia": 0.00001, + "parent": { + "#": 204 + }, + "sleepCounter": 0 + }, + [ + { + "#": 204 + } + ], + [ + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + } + ], + { + "x": 486.718, + "y": 184.04, + "index": 0, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 482.391, + "y": 201.595, + "index": 1, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 473.989, + "y": 217.605, + "index": 2, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 461.999, + "y": 231.138, + "index": 3, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 447.119, + "y": 241.409, + "index": 4, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 430.214, + "y": 247.821, + "index": 5, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 412.265, + "y": 250, + "index": 6, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 394.316, + "y": 247.821, + "index": 7, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 377.411, + "y": 241.409, + "index": 8, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 362.531, + "y": 231.138, + "index": 9, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 350.541, + "y": 217.605, + "index": 10, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 342.139, + "y": 201.595, + "index": 11, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 337.812, + "y": 184.04, + "index": 12, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 337.812, + "y": 165.96, + "index": 13, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 342.139, + "y": 148.405, + "index": 14, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 350.541, + "y": 132.395, + "index": 15, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 362.531, + "y": 118.862, + "index": 16, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 377.411, + "y": 108.591, + "index": 17, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 394.316, + "y": 102.179, + "index": 18, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 412.265, + "y": 100, + "index": 19, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 430.214, + "y": 102.179, + "index": 20, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 447.119, + "y": 108.591, + "index": 21, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 461.999, + "y": 118.862, + "index": 22, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 473.989, + "y": 132.395, + "index": 23, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 482.391, + "y": 148.405, + "index": 24, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 486.718, + "y": 165.96, + "index": 25, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 412.265, + "y": 175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 240 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 242 + }, + "max": { + "#": 243 + } + }, + { + "x": 337.812, + "y": 100 + }, + { + "x": 486.718, + "y": 250 + }, + { + "x": 412.265, + "y": 175 + }, + [ + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + } + ], + { + "x": -0.97094, + "y": -0.23932 + }, + { + "x": -0.88547, + "y": -0.46469 + }, + { + "x": -0.74849, + "y": -0.66315 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.35464, + "y": -0.935 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35464, + "y": -0.935 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74849, + "y": -0.66315 + }, + { + "x": 0.88547, + "y": -0.46469 + }, + { + "x": 0.97094, + "y": -0.23932 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 260 + }, + "angle": 0, + "vertices": { + "#": 261 + }, + "position": { + "#": 288 + }, + "force": { + "#": 289 + }, + "torque": 0, + "positionImpulse": { + "#": 290 + }, + "constraintImpulse": { + "#": 291 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 292 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.9, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 293 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 294 + }, + "circleRadius": 75, + "bounds": { + "#": 296 + }, + "positionPrev": { + "#": 299 + }, + "anglePrev": 0, + "axes": { + "#": 300 + }, + "area": 17499.92251, + "mass": 17.49992, + "inverseMass": 0.05714, + "inertia": 194966.79856, + "inverseInertia": 0.00001, + "parent": { + "#": 259 + }, + "sleepCounter": 0 + }, + [ + { + "#": 259 + } + ], + [ + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + } + ], + { + "x": 655.624, + "y": 184.04, + "index": 0, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 651.297, + "y": 201.595, + "index": 1, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 642.895, + "y": 217.605, + "index": 2, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 630.905, + "y": 231.138, + "index": 3, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 616.025, + "y": 241.409, + "index": 4, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 599.12, + "y": 247.821, + "index": 5, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 581.171, + "y": 250, + "index": 6, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 563.222, + "y": 247.821, + "index": 7, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 546.317, + "y": 241.409, + "index": 8, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 531.437, + "y": 231.138, + "index": 9, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 519.447, + "y": 217.605, + "index": 10, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 511.045, + "y": 201.595, + "index": 11, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 506.718, + "y": 184.04, + "index": 12, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 506.718, + "y": 165.96, + "index": 13, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 511.045, + "y": 148.405, + "index": 14, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 519.447, + "y": 132.395, + "index": 15, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 531.437, + "y": 118.862, + "index": 16, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 546.317, + "y": 108.591, + "index": 17, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 563.222, + "y": 102.179, + "index": 18, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 581.171, + "y": 100, + "index": 19, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 599.12, + "y": 102.179, + "index": 20, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 616.025, + "y": 108.591, + "index": 21, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 630.905, + "y": 118.862, + "index": 22, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 642.895, + "y": 132.395, + "index": 23, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 651.297, + "y": 148.405, + "index": 24, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 655.624, + "y": 165.96, + "index": 25, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 581.171, + "y": 175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 295 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 297 + }, + "max": { + "#": 298 + } + }, + { + "x": 506.718, + "y": 100 + }, + { + "x": 655.624, + "y": 250 + }, + { + "x": 581.171, + "y": 175 + }, + [ + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + } + ], + { + "x": -0.97094, + "y": -0.23932 + }, + { + "x": -0.88547, + "y": -0.46469 + }, + { + "x": -0.74849, + "y": -0.66315 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.35464, + "y": -0.935 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35464, + "y": -0.935 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74849, + "y": -0.66315 + }, + { + "x": 0.88547, + "y": -0.46469 + }, + { + "x": 0.97094, + "y": -0.23932 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 315 + }, + "angle": 0, + "vertices": { + "#": 316 + }, + "position": { + "#": 343 + }, + "force": { + "#": 344 + }, + "torque": 0, + "positionImpulse": { + "#": 345 + }, + "constraintImpulse": { + "#": 346 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 347 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.9, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 348 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 349 + }, + "circleRadius": 75, + "bounds": { + "#": 351 + }, + "positionPrev": { + "#": 354 + }, + "anglePrev": 0, + "axes": { + "#": 355 + }, + "area": 17499.92251, + "mass": 17.49992, + "inverseMass": 0.05714, + "inertia": 194966.79856, + "inverseInertia": 0.00001, + "parent": { + "#": 314 + }, + "sleepCounter": 0 + }, + [ + { + "#": 314 + } + ], + [ + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + } + ], + { + "x": 824.53, + "y": 184.04, + "index": 0, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 820.203, + "y": 201.595, + "index": 1, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 811.801, + "y": 217.605, + "index": 2, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 799.811, + "y": 231.138, + "index": 3, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 784.931, + "y": 241.409, + "index": 4, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 768.026, + "y": 247.821, + "index": 5, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 750.077, + "y": 250, + "index": 6, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 732.128, + "y": 247.821, + "index": 7, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 715.223, + "y": 241.409, + "index": 8, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 700.343, + "y": 231.138, + "index": 9, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 688.353, + "y": 217.605, + "index": 10, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 679.951, + "y": 201.595, + "index": 11, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 675.624, + "y": 184.04, + "index": 12, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 675.624, + "y": 165.96, + "index": 13, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 679.951, + "y": 148.405, + "index": 14, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 688.353, + "y": 132.395, + "index": 15, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 700.343, + "y": 118.862, + "index": 16, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 715.223, + "y": 108.591, + "index": 17, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 732.128, + "y": 102.179, + "index": 18, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 750.077, + "y": 100, + "index": 19, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 768.026, + "y": 102.179, + "index": 20, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 784.931, + "y": 108.591, + "index": 21, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 799.811, + "y": 118.862, + "index": 22, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 811.801, + "y": 132.395, + "index": 23, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 820.203, + "y": 148.405, + "index": 24, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 824.53, + "y": 165.96, + "index": 25, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 750.077, + "y": 175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 350 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 352 + }, + "max": { + "#": 353 + } + }, + { + "x": 675.624, + "y": 100 + }, + { + "x": 824.53, + "y": 250 + }, + { + "x": 750.077, + "y": 175 + }, + [ + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + } + ], + { + "x": -0.97094, + "y": -0.23932 + }, + { + "x": -0.88547, + "y": -0.46469 + }, + { + "x": -0.74849, + "y": -0.66315 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.35464, + "y": -0.935 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35464, + "y": -0.935 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74849, + "y": -0.66315 + }, + { + "x": 0.88547, + "y": -0.46469 + }, + { + "x": 0.97094, + "y": -0.23932 + }, + { + "x": 1, + "y": 0 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 373 + }, + "max": { + "#": 374 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/beachBalls/beachBalls-10.json b/test/node/refs/beachBalls/beachBalls-10.json new file mode 100644 index 00000000..f143b65f --- /dev/null +++ b/test/node/refs/beachBalls/beachBalls-10.json @@ -0,0 +1,3763 @@ +[ + { + "id": 105, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 94 + }, + "composites": { + "#": 95 + }, + "label": "World", + "gravity": { + "#": 380 + }, + "bounds": { + "#": 381 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + [], + [ + { + "#": 96 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 97 + }, + "constraints": { + "#": 378 + }, + "composites": { + "#": 379 + }, + "label": "Stack" + }, + [ + { + "#": 98 + }, + { + "#": 154 + }, + { + "#": 210 + }, + { + "#": 266 + }, + { + "#": 322 + } + ], + { + "id": 5, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 99 + }, + "angle": 0.01373, + "vertices": { + "#": 100 + }, + "position": { + "#": 127 + }, + "force": { + "#": 128 + }, + "torque": 0, + "positionImpulse": { + "#": 129 + }, + "constraintImpulse": { + "#": 130 + }, + "totalContacts": 0, + "speed": 2.40561, + "angularSpeed": 0.00405, + "velocity": { + "#": 131 + }, + "angularVelocity": 0.00467, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.9, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 132 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 133 + }, + "circleRadius": 75, + "bounds": { + "#": 135 + }, + "positionPrev": { + "#": 138 + }, + "anglePrev": 0.00903, + "axes": { + "#": 139 + }, + "area": 17499.92251, + "mass": 17.49992, + "inverseMass": 0.05714, + "inertia": 194966.79856, + "inverseInertia": 0.00001, + "parent": { + "#": 98 + }, + "sleepCounter": 0, + "region": { + "#": 153 + } + }, + [ + { + "#": 98 + } + ], + [ + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + } + ], + { + "x": 169.61996, + "y": 201.00946, + "index": 0, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 165.05233, + "y": 218.50339, + "index": 1, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 156.43129, + "y": 234.39652, + "index": 2, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 144.25661, + "y": 247.76362, + "index": 3, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 129.23699, + "y": 257.82934, + "index": 4, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 112.24554, + "y": 264.00862, + "index": 5, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 94.26831, + "y": 265.94097, + "index": 6, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 76.35092, + "y": 263.51572, + "index": 7, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 59.53556, + "y": 256.87221, + "index": 8, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 44.79799, + "y": 246.39787, + "index": 9, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 32.99493, + "y": 232.70152, + "index": 10, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 24.81355, + "y": 216.57766, + "index": 11, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 20.72799, + "y": 198.96491, + "index": 12, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 20.97624, + "y": 180.88661, + "index": 13, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 25.54387, + "y": 163.39268, + "index": 14, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 34.16491, + "y": 147.49955, + "index": 15, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 46.33959, + "y": 134.13246, + "index": 16, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 61.35921, + "y": 124.06673, + "index": 17, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 78.35066, + "y": 117.88745, + "index": 18, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 96.32789, + "y": 115.95511, + "index": 19, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 114.24528, + "y": 118.38035, + "index": 20, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 131.06064, + "y": 125.02386, + "index": 21, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 145.79821, + "y": 135.4982, + "index": 22, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 157.60127, + "y": 149.19455, + "index": 23, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 165.78265, + "y": 165.31841, + "index": 24, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 169.8682, + "y": 182.93117, + "index": 25, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 95.2981, + "y": 190.94804 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.439, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.03338, + "y": 2.31354 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 134 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 136 + }, + "max": { + "#": 137 + } + }, + { + "x": 20.72799, + "y": 115.95511 + }, + { + "x": 169.9001, + "y": 268.34637 + }, + { + "x": 95.25707, + "y": 188.6399 + }, + [ + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + }, + { + "#": 152 + } + ], + { + "x": -0.96756, + "y": -0.25263 + }, + { + "x": -0.87901, + "y": -0.47681 + }, + { + "x": -0.73931, + "y": -0.67336 + }, + { + "x": -0.55671, + "y": -0.8307 + }, + { + "x": -0.34177, + "y": -0.93978 + }, + { + "x": -0.10687, + "y": -0.99427 + }, + { + "x": 0.13413, + "y": -0.99096 + }, + { + "x": 0.36745, + "y": -0.93004 + }, + { + "x": 0.57931, + "y": -0.8151 + }, + { + "x": 0.75752, + "y": -0.65281 + }, + { + "x": 0.89177, + "y": -0.45249 + }, + { + "x": 0.97414, + "y": -0.22597 + }, + { + "x": 0.99991, + "y": 0.01373 + }, + { + "id": "0,3,2,5", + "startCol": 0, + "endCol": 3, + "startRow": 2, + "endRow": 5 + }, + { + "id": 6, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 155 + }, + "angle": 0.00243, + "vertices": { + "#": 156 + }, + "position": { + "#": 183 + }, + "force": { + "#": 184 + }, + "torque": 0, + "positionImpulse": { + "#": 185 + }, + "constraintImpulse": { + "#": 186 + }, + "totalContacts": 0, + "speed": 2.83357, + "angularSpeed": 0.0007, + "velocity": { + "#": 187 + }, + "angularVelocity": 0.0007, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.9, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 188 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 189 + }, + "circleRadius": 75, + "bounds": { + "#": 191 + }, + "positionPrev": { + "#": 194 + }, + "anglePrev": 0.00173, + "axes": { + "#": 195 + }, + "area": 17499.92251, + "mass": 17.49992, + "inverseMass": 0.05714, + "inertia": 194966.79856, + "inverseInertia": 0.00001, + "parent": { + "#": 154 + }, + "sleepCounter": 0, + "region": { + "#": 209 + } + }, + [ + { + "#": 154 + } + ], + [ + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + } + ], + { + "x": 320.01582, + "y": 202.01133, + "index": 0, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 315.64616, + "y": 219.55576, + "index": 1, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 307.20527, + "y": 235.54529, + "index": 2, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 295.18241, + "y": 249.0491, + "index": 3, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 280.27749, + "y": 259.2839, + "index": 4, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 263.35696, + "y": 265.65479, + "index": 5, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 245.40271, + "y": 267.79016, + "index": 6, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 227.45906, + "y": 265.56754, + "index": 7, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 210.5697, + "y": 259.11447, + "index": 8, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 195.71471, + "y": 248.80733, + "index": 9, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 183.75764, + "y": 235.24522, + "index": 10, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 175.39458, + "y": 219.21485, + "index": 11, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 171.11026, + "y": 201.64938, + "index": 12, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 171.15421, + "y": 183.56944, + "index": 13, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 175.52387, + "y": 166.02501, + "index": 14, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 183.96476, + "y": 150.03548, + "index": 15, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 195.98762, + "y": 136.53166, + "index": 16, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 210.89254, + "y": 126.29686, + "index": 17, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 227.81307, + "y": 119.92597, + "index": 18, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 245.76732, + "y": 117.7906, + "index": 19, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 263.71097, + "y": 120.01322, + "index": 20, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 280.60033, + "y": 126.4663, + "index": 21, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 295.45532, + "y": 136.77343, + "index": 22, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 307.41239, + "y": 150.33554, + "index": 23, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 315.77545, + "y": 166.36591, + "index": 24, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 320.05977, + "y": 183.93138, + "index": 25, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 245.58501, + "y": 192.79038 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1.37208, + "y": 0.02938 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.05513, + "y": 2.83303 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 190 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 192 + }, + "max": { + "#": 193 + } + }, + { + "x": 171.11026, + "y": 117.7906 + }, + { + "x": 320.1149, + "y": 270.62319 + }, + { + "x": 245.52988, + "y": 189.95735 + }, + [ + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + } + ], + { + "x": -0.97036, + "y": -0.24168 + }, + { + "x": -0.88434, + "y": -0.46684 + }, + { + "x": -0.74687, + "y": -0.66497 + }, + { + "x": -0.56607, + "y": -0.82436 + }, + { + "x": -0.35237, + "y": -0.93586 + }, + { + "x": -0.1181, + "y": -0.993 + }, + { + "x": 0.12293, + "y": -0.99242 + }, + { + "x": 0.35691, + "y": -0.93414 + }, + { + "x": 0.57007, + "y": -0.8216 + }, + { + "x": 0.7501, + "y": -0.66133 + }, + { + "x": 0.8866, + "y": -0.46254 + }, + { + "x": 0.97152, + "y": -0.23696 + }, + { + "x": 1, + "y": 0.00243 + }, + { + "id": "3,6,2,5", + "startCol": 3, + "endCol": 6, + "startRow": 2, + "endRow": 5 + }, + { + "id": 7, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 211 + }, + "angle": 0.00025, + "vertices": { + "#": 212 + }, + "position": { + "#": 239 + }, + "force": { + "#": 240 + }, + "torque": 0, + "positionImpulse": { + "#": 241 + }, + "constraintImpulse": { + "#": 242 + }, + "totalContacts": 0, + "speed": 2.89699, + "angularSpeed": 0.00011, + "velocity": { + "#": 243 + }, + "angularVelocity": 0.00011, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.9, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 244 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 245 + }, + "circleRadius": 75, + "bounds": { + "#": 247 + }, + "positionPrev": { + "#": 250 + }, + "anglePrev": 0.00014, + "axes": { + "#": 251 + }, + "area": 17499.92251, + "mass": 17.49992, + "inverseMass": 0.05714, + "inertia": 194966.79856, + "inverseInertia": 0.00001, + "parent": { + "#": 210 + }, + "sleepCounter": 0, + "region": { + "#": 265 + } + }, + [ + { + "#": 210 + } + ], + [ + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + } + ], + { + "x": 470.15166, + "y": 201.76793, + "index": 0, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 465.82035, + "y": 219.32187, + "index": 1, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 457.41442, + "y": 235.32981, + "index": 2, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 445.4211, + "y": 248.85986, + "index": 3, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 430.53857, + "y": 259.12721, + "index": 4, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 413.632, + "y": 265.53505, + "index": 5, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 395.68246, + "y": 267.70964, + "index": 6, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 377.734, + "y": 265.52624, + "index": 7, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 360.83057, + "y": 259.11008, + "index": 8, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 345.9531, + "y": 248.83543, + "index": 9, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 333.96642, + "y": 235.29948, + "index": 10, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 325.56836, + "y": 219.28742, + "index": 11, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 321.24567, + "y": 201.73136, + "index": 12, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 321.25011, + "y": 183.65136, + "index": 13, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 325.58142, + "y": 166.09742, + "index": 14, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 333.98735, + "y": 150.08949, + "index": 15, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 345.98068, + "y": 136.55943, + "index": 16, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 360.8632, + "y": 126.29209, + "index": 17, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 377.76977, + "y": 119.88424, + "index": 18, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 395.71931, + "y": 117.70965, + "index": 19, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 413.66777, + "y": 119.89306, + "index": 20, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 430.5712, + "y": 126.30921, + "index": 21, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 445.44867, + "y": 136.58386, + "index": 22, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 457.43535, + "y": 150.11981, + "index": 23, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 465.83342, + "y": 166.13187, + "index": 24, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 470.1561, + "y": 183.68793, + "index": 25, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 395.70089, + "y": 192.70965 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 2.15308, + "y": 0.00073 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.06048, + "y": 2.89636 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 246 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 248 + }, + "max": { + "#": 249 + } + }, + { + "x": 321.24567, + "y": 117.70965 + }, + { + "x": 470.21658, + "y": 270.606 + }, + { + "x": 395.64041, + "y": 189.81329 + }, + [ + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + } + ], + { + "x": -0.97088, + "y": -0.23956 + }, + { + "x": -0.88536, + "y": -0.46491 + }, + { + "x": -0.74833, + "y": -0.66333 + }, + { + "x": -0.56787, + "y": -0.82312 + }, + { + "x": -0.35441, + "y": -0.93509 + }, + { + "x": -0.12027, + "y": -0.99274 + }, + { + "x": 0.12076, + "y": -0.99268 + }, + { + "x": 0.35487, + "y": -0.93491 + }, + { + "x": 0.56827, + "y": -0.82284 + }, + { + "x": 0.74865, + "y": -0.66296 + }, + { + "x": 0.88559, + "y": -0.46448 + }, + { + "x": 0.971, + "y": -0.23908 + }, + { + "x": 1, + "y": 0.00025 + }, + { + "id": "6,9,2,5", + "startCol": 6, + "endCol": 9, + "startRow": 2, + "endRow": 5 + }, + { + "id": 8, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 267 + }, + "angle": -0.00068, + "vertices": { + "#": 268 + }, + "position": { + "#": 295 + }, + "force": { + "#": 296 + }, + "torque": 0, + "positionImpulse": { + "#": 297 + }, + "constraintImpulse": { + "#": 298 + }, + "totalContacts": 0, + "speed": 2.89778, + "angularSpeed": 0.00008, + "velocity": { + "#": 299 + }, + "angularVelocity": -0.00008, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.9, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 300 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 301 + }, + "circleRadius": 75, + "bounds": { + "#": 303 + }, + "positionPrev": { + "#": 306 + }, + "anglePrev": -0.00059, + "axes": { + "#": 307 + }, + "area": 17499.92251, + "mass": 17.49992, + "inverseMass": 0.05714, + "inertia": 194966.79856, + "inverseInertia": 0.00001, + "parent": { + "#": 266 + }, + "sleepCounter": 0, + "region": { + "#": 321 + } + }, + [ + { + "#": 266 + } + ], + [ + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + } + ], + { + "x": 619.98005, + "y": 201.73796, + "index": 0, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 615.66491, + "y": 219.29588, + "index": 1, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 607.27373, + "y": 235.31155, + "index": 2, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 595.29288, + "y": 248.85265, + "index": 3, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 580.41982, + "y": 259.1337, + "index": 4, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 563.51915, + "y": 265.55711, + "index": 5, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 545.57163, + "y": 267.74824, + "index": 6, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 527.62116, + "y": 265.58136, + "index": 7, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 510.71183, + "y": 259.18079, + "index": 8, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 495.8249, + "y": 248.91984, + "index": 9, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 483.82576, + "y": 235.39494, + "index": 10, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 475.41295, + "y": 219.39062, + "index": 11, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 471.07409, + "y": 201.83855, + "index": 12, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 471.06187, + "y": 183.75855, + "index": 13, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 475.37701, + "y": 166.20064, + "index": 14, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 483.7682, + "y": 150.18496, + "index": 15, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 495.74905, + "y": 136.64387, + "index": 16, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 510.62211, + "y": 126.36282, + "index": 17, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 527.52278, + "y": 119.9394, + "index": 18, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 545.4703, + "y": 117.74827, + "index": 19, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 563.42077, + "y": 119.91515, + "index": 20, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 580.33009, + "y": 126.31573, + "index": 21, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 595.21703, + "y": 136.57667, + "index": 22, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 607.21617, + "y": 150.10157, + "index": 23, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 615.62898, + "y": 166.10589, + "index": 24, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 619.96784, + "y": 183.65796, + "index": 25, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 545.52096, + "y": 192.74826 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 2.69659, + "y": 0.00627 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.06002, + "y": 2.89716 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 302 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 304 + }, + "max": { + "#": 305 + } + }, + { + "x": 471.06187, + "y": 117.74827 + }, + { + "x": 620.04008, + "y": 270.6454 + }, + { + "x": 545.46094, + "y": 189.8511 + }, + [ + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + } + ], + { + "x": -0.9711, + "y": -0.23866 + }, + { + "x": -0.88579, + "y": -0.46409 + }, + { + "x": -0.74894, + "y": -0.66264 + }, + { + "x": -0.56862, + "y": -0.8226 + }, + { + "x": -0.35527, + "y": -0.93476 + }, + { + "x": -0.12119, + "y": -0.99263 + }, + { + "x": 0.11984, + "y": -0.99279 + }, + { + "x": 0.35401, + "y": -0.93524 + }, + { + "x": 0.56751, + "y": -0.82337 + }, + { + "x": 0.74804, + "y": -0.66365 + }, + { + "x": 0.88516, + "y": -0.46529 + }, + { + "x": 0.97078, + "y": -0.23998 + }, + { + "x": 1, + "y": -0.00068 + }, + { + "id": "9,12,2,5", + "startCol": 9, + "endCol": 12, + "startRow": 2, + "endRow": 5 + }, + { + "id": 9, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 323 + }, + "angle": -0.00417, + "vertices": { + "#": 324 + }, + "position": { + "#": 351 + }, + "force": { + "#": 352 + }, + "torque": 0, + "positionImpulse": { + "#": 353 + }, + "constraintImpulse": { + "#": 354 + }, + "totalContacts": 0, + "speed": 2.86057, + "angularSpeed": 0.00041, + "velocity": { + "#": 355 + }, + "angularVelocity": -0.00041, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.9, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 356 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 357 + }, + "circleRadius": 75, + "bounds": { + "#": 359 + }, + "positionPrev": { + "#": 362 + }, + "anglePrev": -0.00376, + "axes": { + "#": 363 + }, + "area": 17499.92251, + "mass": 17.49992, + "inverseMass": 0.05714, + "inertia": 194966.79856, + "inverseInertia": 0.00001, + "parent": { + "#": 322 + }, + "sleepCounter": 0, + "region": { + "#": 377 + } + }, + [ + { + "#": 322 + } + ], + [ + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + } + ], + { + "x": 769.26194, + "y": 200.8864, + "index": 0, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 765.00811, + "y": 218.45927, + "index": 1, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 756.67287, + "y": 234.50413, + "index": 2, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 744.73934, + "y": 248.08696, + "index": 3, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 729.90226, + "y": 258.41985, + "index": 4, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 713.02411, + "y": 264.90221, + "index": 5, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 695.08435, + "y": 267.15596, + "index": 6, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 677.12643, + "y": 265.05175, + "index": 7, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 660.19486, + "y": 258.71022, + "index": 8, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 645.27221, + "y": 248.50129, + "index": 9, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 633.22594, + "y": 235.01836, + "index": 10, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 624.75732, + "y": 219.04349, + "index": 11, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 620.35723, + "y": 201.50667, + "index": 12, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 620.28192, + "y": 183.42683, + "index": 13, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 624.53576, + "y": 165.85396, + "index": 14, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 632.871, + "y": 149.8091, + "index": 15, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 644.80452, + "y": 136.22627, + "index": 16, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 659.64161, + "y": 125.89337, + "index": 17, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 676.51975, + "y": 119.41101, + "index": 18, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 694.45952, + "y": 117.15726, + "index": 19, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 712.41744, + "y": 119.26148, + "index": 20, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 729.349, + "y": 125.603, + "index": 21, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 744.27166, + "y": 135.81193, + "index": 22, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 756.31792, + "y": 149.29487, + "index": 23, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 764.78654, + "y": 165.26973, + "index": 24, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 769.18663, + "y": 182.80656, + "index": 25, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 694.77193, + "y": 192.15661 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 2.89317, + "y": -0.00755 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.06215, + "y": 2.8599 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 358 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 360 + }, + "max": { + "#": 361 + } + }, + { + "x": 620.28192, + "y": 117.15726 + }, + { + "x": 769.32409, + "y": 270.01586 + }, + { + "x": 694.70979, + "y": 189.29672 + }, + [ + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + } + ], + { + "x": -0.97193, + "y": -0.23527 + }, + { + "x": -0.8874, + "y": -0.461 + }, + { + "x": -0.75124, + "y": -0.66002 + }, + { + "x": -0.57149, + "y": -0.82061 + }, + { + "x": -0.35853, + "y": -0.93352 + }, + { + "x": -0.12465, + "y": -0.9922 + }, + { + "x": 0.11638, + "y": -0.9932 + }, + { + "x": 0.35074, + "y": -0.93647 + }, + { + "x": 0.56463, + "y": -0.82534 + }, + { + "x": 0.74572, + "y": -0.66626 + }, + { + "x": 0.88353, + "y": -0.46838 + }, + { + "x": 0.96994, + "y": -0.24336 + }, + { + "x": 0.99999, + "y": -0.00417 + }, + { + "id": "12,15,2,5", + "startCol": 12, + "endCol": 15, + "startRow": 2, + "endRow": 5 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 382 + }, + "max": { + "#": 383 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/bridge/bridge-0.json b/test/node/refs/bridge/bridge-0.json new file mode 100644 index 00000000..22ccd3b8 --- /dev/null +++ b/test/node/refs/bridge/bridge-0.json @@ -0,0 +1,8908 @@ +[ + { + "id": 105, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 134 + }, + "composites": { + "#": 187 + }, + "label": "World", + "gravity": { + "#": 944 + }, + "bounds": { + "#": 945 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 112 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 41, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 91 + }, + "angle": 0, + "vertices": { + "#": 92 + }, + "position": { + "#": 97 + }, + "force": { + "#": 98 + }, + "torque": 0, + "positionImpulse": { + "#": 99 + }, + "constraintImpulse": { + "#": 100 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 101 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 102 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 103 + }, + "bounds": { + "#": 105 + }, + "positionPrev": { + "#": 108 + }, + "anglePrev": 0, + "axes": { + "#": 109 + }, + "area": 33600, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 90 + }, + "sleepCounter": 0 + }, + [ + { + "#": 90 + } + ], + [ + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + } + ], + { + "x": 20, + "y": 300, + "index": 0, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 140, + "y": 300, + "index": 1, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 140, + "y": 580, + "index": 2, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 20, + "y": 580, + "index": 3, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 80, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 104 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 106 + }, + "max": { + "#": 107 + } + }, + { + "x": 20, + "y": 300 + }, + { + "x": 140, + "y": 580 + }, + { + "x": 80, + "y": 440 + }, + [ + { + "#": 110 + }, + { + "#": 111 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 42, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 113 + }, + "angle": 0, + "vertices": { + "#": 114 + }, + "position": { + "#": 119 + }, + "force": { + "#": 120 + }, + "torque": 0, + "positionImpulse": { + "#": 121 + }, + "constraintImpulse": { + "#": 122 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 123 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 124 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 125 + }, + "bounds": { + "#": 127 + }, + "positionPrev": { + "#": 130 + }, + "anglePrev": 0, + "axes": { + "#": 131 + }, + "area": 33600, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 112 + }, + "sleepCounter": 0 + }, + [ + { + "#": 112 + } + ], + [ + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + } + ], + { + "x": 660, + "y": 300, + "index": 0, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 780, + "y": 300, + "index": 1, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 780, + "y": 580, + "index": 2, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 660, + "y": 580, + "index": 3, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 720, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 126 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 128 + }, + "max": { + "#": 129 + } + }, + { + "x": 660, + "y": 300 + }, + { + "x": 780, + "y": 580 + }, + { + "x": 720, + "y": 440 + }, + [ + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 135 + }, + { + "#": 161 + } + ], + { + "pointA": { + "#": 136 + }, + "bodyB": { + "#": 137 + }, + "pointB": { + "#": 159 + }, + "length": 14.14214, + "render": { + "#": 160 + }, + "id": 43, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 140, + "y": 300 + }, + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 138 + }, + "angle": 0, + "vertices": { + "#": 139 + }, + "position": { + "#": 144 + }, + "force": { + "#": 145 + }, + "torque": 0, + "positionImpulse": { + "#": 146 + }, + "constraintImpulse": { + "#": 147 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 148 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 149 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 150 + }, + "bounds": { + "#": 152 + }, + "positionPrev": { + "#": 155 + }, + "anglePrev": 0, + "axes": { + "#": 156 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 137 + }, + "sleepCounter": 0 + }, + [ + { + "#": 137 + } + ], + [ + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + } + ], + { + "x": 150, + "y": 300, + "index": 0, + "body": { + "#": 137 + }, + "isInternal": false + }, + { + "x": 200, + "y": 300, + "index": 1, + "body": { + "#": 137 + }, + "isInternal": false + }, + { + "x": 200, + "y": 320, + "index": 2, + "body": { + "#": 137 + }, + "isInternal": false + }, + { + "x": 150, + "y": 320, + "index": 3, + "body": { + "#": 137 + }, + "isInternal": false + }, + { + "x": 175, + "y": 310 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -3 + }, + { + "visible": true, + "sprite": { + "#": 151 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 153 + }, + "max": { + "#": 154 + } + }, + { + "x": 150, + "y": 300 + }, + { + "x": 200, + "y": 320 + }, + { + "x": 175, + "y": 310 + }, + [ + { + "#": 157 + }, + { + "#": 158 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "pointA": { + "#": 162 + }, + "bodyB": { + "#": 163 + }, + "pointB": { + "#": 185 + }, + "length": 22.36068, + "render": { + "#": 186 + }, + "id": 44, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 660, + "y": 300 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 164 + }, + "angle": 0, + "vertices": { + "#": 165 + }, + "position": { + "#": 170 + }, + "force": { + "#": 171 + }, + "torque": 0, + "positionImpulse": { + "#": 172 + }, + "constraintImpulse": { + "#": 173 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 174 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 175 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 176 + }, + "bounds": { + "#": 178 + }, + "positionPrev": { + "#": 181 + }, + "anglePrev": 0, + "axes": { + "#": 182 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 163 + }, + "sleepCounter": 0 + }, + [ + { + "#": 163 + } + ], + [ + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + } + ], + { + "x": 630, + "y": 300, + "index": 0, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 680, + "y": 300, + "index": 1, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 680, + "y": 320, + "index": 2, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 630, + "y": 320, + "index": 3, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 655, + "y": 310 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -3 + }, + { + "visible": true, + "sprite": { + "#": 177 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 179 + }, + "max": { + "#": 180 + } + }, + { + "x": 630, + "y": 300 + }, + { + "x": 680, + "y": 320 + }, + { + "x": 655, + "y": 310 + }, + [ + { + "#": 183 + }, + { + "#": 184 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "x": 25, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [ + { + "#": 188 + }, + { + "#": 378 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 189 + }, + "constraints": { + "#": 344 + }, + "composites": { + "#": 377 + }, + "label": "Stack Chain" + }, + [ + { + "#": 137 + }, + { + "#": 190 + }, + { + "#": 212 + }, + { + "#": 234 + }, + { + "#": 256 + }, + { + "#": 278 + }, + { + "#": 300 + }, + { + "#": 322 + }, + { + "#": 163 + } + ], + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 191 + }, + "angle": 0, + "vertices": { + "#": 192 + }, + "position": { + "#": 197 + }, + "force": { + "#": 198 + }, + "torque": 0, + "positionImpulse": { + "#": 199 + }, + "constraintImpulse": { + "#": 200 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 201 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 202 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 203 + }, + "bounds": { + "#": 205 + }, + "positionPrev": { + "#": 208 + }, + "anglePrev": 0, + "axes": { + "#": 209 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 190 + }, + "sleepCounter": 0 + }, + [ + { + "#": 190 + } + ], + [ + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + } + ], + { + "x": 210, + "y": 300, + "index": 0, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 260, + "y": 300, + "index": 1, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 260, + "y": 320, + "index": 2, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 210, + "y": 320, + "index": 3, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 235, + "y": 310 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -3 + }, + { + "visible": true, + "sprite": { + "#": 204 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 206 + }, + "max": { + "#": 207 + } + }, + { + "x": 210, + "y": 300 + }, + { + "x": 260, + "y": 320 + }, + { + "x": 235, + "y": 310 + }, + [ + { + "#": 210 + }, + { + "#": 211 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 213 + }, + "angle": 0, + "vertices": { + "#": 214 + }, + "position": { + "#": 219 + }, + "force": { + "#": 220 + }, + "torque": 0, + "positionImpulse": { + "#": 221 + }, + "constraintImpulse": { + "#": 222 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 223 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 224 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 225 + }, + "bounds": { + "#": 227 + }, + "positionPrev": { + "#": 230 + }, + "anglePrev": 0, + "axes": { + "#": 231 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 212 + }, + "sleepCounter": 0 + }, + [ + { + "#": 212 + } + ], + [ + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + } + ], + { + "x": 270, + "y": 300, + "index": 0, + "body": { + "#": 212 + }, + "isInternal": false + }, + { + "x": 320, + "y": 300, + "index": 1, + "body": { + "#": 212 + }, + "isInternal": false + }, + { + "x": 320, + "y": 320, + "index": 2, + "body": { + "#": 212 + }, + "isInternal": false + }, + { + "x": 270, + "y": 320, + "index": 3, + "body": { + "#": 212 + }, + "isInternal": false + }, + { + "x": 295, + "y": 310 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -3 + }, + { + "visible": true, + "sprite": { + "#": 226 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 228 + }, + "max": { + "#": 229 + } + }, + { + "x": 270, + "y": 300 + }, + { + "x": 320, + "y": 320 + }, + { + "x": 295, + "y": 310 + }, + [ + { + "#": 232 + }, + { + "#": 233 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 235 + }, + "angle": 0, + "vertices": { + "#": 236 + }, + "position": { + "#": 241 + }, + "force": { + "#": 242 + }, + "torque": 0, + "positionImpulse": { + "#": 243 + }, + "constraintImpulse": { + "#": 244 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 245 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 246 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 247 + }, + "bounds": { + "#": 249 + }, + "positionPrev": { + "#": 252 + }, + "anglePrev": 0, + "axes": { + "#": 253 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 234 + }, + "sleepCounter": 0 + }, + [ + { + "#": 234 + } + ], + [ + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + } + ], + { + "x": 330, + "y": 300, + "index": 0, + "body": { + "#": 234 + }, + "isInternal": false + }, + { + "x": 380, + "y": 300, + "index": 1, + "body": { + "#": 234 + }, + "isInternal": false + }, + { + "x": 380, + "y": 320, + "index": 2, + "body": { + "#": 234 + }, + "isInternal": false + }, + { + "x": 330, + "y": 320, + "index": 3, + "body": { + "#": 234 + }, + "isInternal": false + }, + { + "x": 355, + "y": 310 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -3 + }, + { + "visible": true, + "sprite": { + "#": 248 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 250 + }, + "max": { + "#": 251 + } + }, + { + "x": 330, + "y": 300 + }, + { + "x": 380, + "y": 320 + }, + { + "x": 355, + "y": 310 + }, + [ + { + "#": 254 + }, + { + "#": 255 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 257 + }, + "angle": 0, + "vertices": { + "#": 258 + }, + "position": { + "#": 263 + }, + "force": { + "#": 264 + }, + "torque": 0, + "positionImpulse": { + "#": 265 + }, + "constraintImpulse": { + "#": 266 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 267 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 268 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 269 + }, + "bounds": { + "#": 271 + }, + "positionPrev": { + "#": 274 + }, + "anglePrev": 0, + "axes": { + "#": 275 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 256 + }, + "sleepCounter": 0 + }, + [ + { + "#": 256 + } + ], + [ + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + } + ], + { + "x": 390, + "y": 300, + "index": 0, + "body": { + "#": 256 + }, + "isInternal": false + }, + { + "x": 440, + "y": 300, + "index": 1, + "body": { + "#": 256 + }, + "isInternal": false + }, + { + "x": 440, + "y": 320, + "index": 2, + "body": { + "#": 256 + }, + "isInternal": false + }, + { + "x": 390, + "y": 320, + "index": 3, + "body": { + "#": 256 + }, + "isInternal": false + }, + { + "x": 415, + "y": 310 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -3 + }, + { + "visible": true, + "sprite": { + "#": 270 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 272 + }, + "max": { + "#": 273 + } + }, + { + "x": 390, + "y": 300 + }, + { + "x": 440, + "y": 320 + }, + { + "x": 415, + "y": 310 + }, + [ + { + "#": 276 + }, + { + "#": 277 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 279 + }, + "angle": 0, + "vertices": { + "#": 280 + }, + "position": { + "#": 285 + }, + "force": { + "#": 286 + }, + "torque": 0, + "positionImpulse": { + "#": 287 + }, + "constraintImpulse": { + "#": 288 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 289 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 290 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 291 + }, + "bounds": { + "#": 293 + }, + "positionPrev": { + "#": 296 + }, + "anglePrev": 0, + "axes": { + "#": 297 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 278 + }, + "sleepCounter": 0 + }, + [ + { + "#": 278 + } + ], + [ + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + } + ], + { + "x": 450, + "y": 300, + "index": 0, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 500, + "y": 300, + "index": 1, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 500, + "y": 320, + "index": 2, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 450, + "y": 320, + "index": 3, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 475, + "y": 310 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -3 + }, + { + "visible": true, + "sprite": { + "#": 292 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 294 + }, + "max": { + "#": 295 + } + }, + { + "x": 450, + "y": 300 + }, + { + "x": 500, + "y": 320 + }, + { + "x": 475, + "y": 310 + }, + [ + { + "#": 298 + }, + { + "#": 299 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 301 + }, + "angle": 0, + "vertices": { + "#": 302 + }, + "position": { + "#": 307 + }, + "force": { + "#": 308 + }, + "torque": 0, + "positionImpulse": { + "#": 309 + }, + "constraintImpulse": { + "#": 310 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 311 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 312 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 313 + }, + "bounds": { + "#": 315 + }, + "positionPrev": { + "#": 318 + }, + "anglePrev": 0, + "axes": { + "#": 319 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 300 + }, + "sleepCounter": 0 + }, + [ + { + "#": 300 + } + ], + [ + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + } + ], + { + "x": 510, + "y": 300, + "index": 0, + "body": { + "#": 300 + }, + "isInternal": false + }, + { + "x": 560, + "y": 300, + "index": 1, + "body": { + "#": 300 + }, + "isInternal": false + }, + { + "x": 560, + "y": 320, + "index": 2, + "body": { + "#": 300 + }, + "isInternal": false + }, + { + "x": 510, + "y": 320, + "index": 3, + "body": { + "#": 300 + }, + "isInternal": false + }, + { + "x": 535, + "y": 310 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -3 + }, + { + "visible": true, + "sprite": { + "#": 314 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 316 + }, + "max": { + "#": 317 + } + }, + { + "x": 510, + "y": 300 + }, + { + "x": 560, + "y": 320 + }, + { + "x": 535, + "y": 310 + }, + [ + { + "#": 320 + }, + { + "#": 321 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 323 + }, + "angle": 0, + "vertices": { + "#": 324 + }, + "position": { + "#": 329 + }, + "force": { + "#": 330 + }, + "torque": 0, + "positionImpulse": { + "#": 331 + }, + "constraintImpulse": { + "#": 332 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 333 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 334 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 335 + }, + "bounds": { + "#": 337 + }, + "positionPrev": { + "#": 340 + }, + "anglePrev": 0, + "axes": { + "#": 341 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 322 + }, + "sleepCounter": 0 + }, + [ + { + "#": 322 + } + ], + [ + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + } + ], + { + "x": 570, + "y": 300, + "index": 0, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 620, + "y": 300, + "index": 1, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 620, + "y": 320, + "index": 2, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 570, + "y": 320, + "index": 3, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 595, + "y": 310 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -3 + }, + { + "visible": true, + "sprite": { + "#": 336 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 338 + }, + "max": { + "#": 339 + } + }, + { + "x": 570, + "y": 300 + }, + { + "x": 620, + "y": 320 + }, + { + "x": 595, + "y": 310 + }, + [ + { + "#": 342 + }, + { + "#": 343 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 345 + }, + { + "#": 349 + }, + { + "#": 353 + }, + { + "#": 357 + }, + { + "#": 361 + }, + { + "#": 365 + }, + { + "#": 369 + }, + { + "#": 373 + } + ], + { + "bodyA": { + "#": 137 + }, + "pointA": { + "#": 346 + }, + "bodyB": { + "#": 190 + }, + "pointB": { + "#": 347 + }, + "stiffness": 0.9, + "length": 10, + "render": { + "#": 348 + }, + "id": 14, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 190 + }, + "pointA": { + "#": 350 + }, + "bodyB": { + "#": 212 + }, + "pointB": { + "#": 351 + }, + "stiffness": 0.9, + "length": 10, + "render": { + "#": 352 + }, + "id": 15, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 212 + }, + "pointA": { + "#": 354 + }, + "bodyB": { + "#": 234 + }, + "pointB": { + "#": 355 + }, + "stiffness": 0.9, + "length": 10, + "render": { + "#": 356 + }, + "id": 16, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 234 + }, + "pointA": { + "#": 358 + }, + "bodyB": { + "#": 256 + }, + "pointB": { + "#": 359 + }, + "stiffness": 0.9, + "length": 10, + "render": { + "#": 360 + }, + "id": 17, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 256 + }, + "pointA": { + "#": 362 + }, + "bodyB": { + "#": 278 + }, + "pointB": { + "#": 363 + }, + "stiffness": 0.9, + "length": 10, + "render": { + "#": 364 + }, + "id": 18, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 278 + }, + "pointA": { + "#": 366 + }, + "bodyB": { + "#": 300 + }, + "pointB": { + "#": 367 + }, + "stiffness": 0.9, + "length": 10, + "render": { + "#": 368 + }, + "id": 19, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 300 + }, + "pointA": { + "#": 370 + }, + "bodyB": { + "#": 322 + }, + "pointB": { + "#": 371 + }, + "stiffness": 0.9, + "length": 10, + "render": { + "#": 372 + }, + "id": 20, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 322 + }, + "pointA": { + "#": 374 + }, + "bodyB": { + "#": 163 + }, + "pointB": { + "#": 375 + }, + "stiffness": 0.9, + "length": 10, + "render": { + "#": 376 + }, + "id": 21, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "id": 22, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 379 + }, + "constraints": { + "#": 942 + }, + "composites": { + "#": 943 + }, + "label": "Stack" + }, + [ + { + "#": 380 + }, + { + "#": 406 + }, + { + "#": 432 + }, + { + "#": 487 + }, + { + "#": 509 + }, + { + "#": 534 + }, + { + "#": 564 + }, + { + "#": 594 + }, + { + "#": 616 + }, + { + "#": 641 + }, + { + "#": 663 + }, + { + "#": 688 + }, + { + "#": 740 + }, + { + "#": 795 + }, + { + "#": 850 + }, + { + "#": 872 + }, + { + "#": 894 + }, + { + "#": 920 + } + ], + { + "id": 23, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 381 + }, + "angle": 0, + "vertices": { + "#": 382 + }, + "position": { + "#": 388 + }, + "force": { + "#": 389 + }, + "torque": 0, + "positionImpulse": { + "#": 390 + }, + "constraintImpulse": { + "#": 391 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 392 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 393 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 394 + }, + "bounds": { + "#": 396 + }, + "positionPrev": { + "#": 399 + }, + "anglePrev": 0, + "axes": { + "#": 400 + }, + "area": 1367.90156, + "mass": 1.3679, + "inverseMass": 0.73105, + "inertia": 1211.43251, + "inverseInertia": 0.00083, + "parent": { + "#": 380 + }, + "sleepCounter": 0 + }, + [ + { + "#": 380 + } + ], + [ + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + } + ], + { + "x": 241.10064, + "y": 76.91, + "index": 0, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 214.28364, + "y": 85.624, + "index": 1, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 197.70964, + "y": 62.812, + "index": 2, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 214.28364, + "y": 40, + "index": 3, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 241.10064, + "y": 48.714, + "index": 4, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 221.6955, + "y": 62.812 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 395 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 397 + }, + "max": { + "#": 398 + } + }, + { + "x": 197.70964, + "y": 40 + }, + { + "x": 241.10064, + "y": 85.624 + }, + { + "x": 221.6955, + "y": 62.812 + }, + [ + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + } + ], + { + "x": 0.30904, + "y": 0.95105 + }, + { + "x": -0.80902, + "y": 0.58779 + }, + { + "x": -0.80902, + "y": -0.58779 + }, + { + "x": 0.30904, + "y": -0.95105 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 24, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 407 + }, + "angle": 0, + "vertices": { + "#": 408 + }, + "position": { + "#": 414 + }, + "force": { + "#": 415 + }, + "torque": 0, + "positionImpulse": { + "#": 416 + }, + "constraintImpulse": { + "#": 417 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 418 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 419 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 420 + }, + "bounds": { + "#": 422 + }, + "positionPrev": { + "#": 425 + }, + "anglePrev": 0, + "axes": { + "#": 426 + }, + "area": 1613.16158, + "mass": 1.61316, + "inverseMass": 0.6199, + "inertia": 1684.78806, + "inverseInertia": 0.00059, + "parent": { + "#": 406 + }, + "sleepCounter": 0 + }, + [ + { + "#": 406 + } + ], + [ + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + } + ], + { + "x": 285.73351, + "y": 80.083, + "index": 0, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 256.61151, + "y": 89.546, + "index": 1, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 238.61351, + "y": 64.773, + "index": 2, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 256.61151, + "y": 40, + "index": 3, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 285.73351, + "y": 49.463, + "index": 4, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 264.66064, + "y": 64.773 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 421 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 423 + }, + "max": { + "#": 424 + } + }, + { + "x": 238.61351, + "y": 40 + }, + { + "x": 285.73351, + "y": 89.546 + }, + { + "x": 264.66064, + "y": 64.773 + }, + [ + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + } + ], + { + "x": 0.30904, + "y": 0.95105 + }, + { + "x": -0.80903, + "y": 0.58777 + }, + { + "x": -0.80903, + "y": -0.58777 + }, + { + "x": 0.30904, + "y": -0.95105 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 25, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 433 + }, + "angle": 0, + "vertices": { + "#": 434 + }, + "position": { + "#": 461 + }, + "force": { + "#": 462 + }, + "torque": 0, + "positionImpulse": { + "#": 463 + }, + "constraintImpulse": { + "#": 464 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 465 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 466 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 467 + }, + "circleRadius": 31.39652, + "bounds": { + "#": 469 + }, + "positionPrev": { + "#": 472 + }, + "anglePrev": 0, + "axes": { + "#": 473 + }, + "area": 3066.75815, + "mass": 3.06676, + "inverseMass": 0.32608, + "inertia": 5987.52673, + "inverseInertia": 0.00017, + "parent": { + "#": 432 + }, + "sleepCounter": 0 + }, + [ + { + "#": 432 + } + ], + [ + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + } + ], + { + "x": 348.06951, + "y": 75.181, + "index": 0, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 346.25751, + "y": 82.53, + "index": 1, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 342.74051, + "y": 89.232, + "index": 2, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 337.72151, + "y": 94.898, + "index": 3, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 331.49251, + "y": 99.197, + "index": 4, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 324.41551, + "y": 101.881, + "index": 5, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 316.90151, + "y": 102.794, + "index": 6, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 309.38751, + "y": 101.881, + "index": 7, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 302.31051, + "y": 99.197, + "index": 8, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 296.08151, + "y": 94.898, + "index": 9, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 291.06251, + "y": 89.232, + "index": 10, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 287.54551, + "y": 82.53, + "index": 11, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 285.73351, + "y": 75.181, + "index": 12, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 285.73351, + "y": 67.613, + "index": 13, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 287.54551, + "y": 60.264, + "index": 14, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 291.06251, + "y": 53.562, + "index": 15, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 296.08151, + "y": 47.896, + "index": 16, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 302.31051, + "y": 43.597, + "index": 17, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 309.38751, + "y": 40.913, + "index": 18, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 316.90151, + "y": 40, + "index": 19, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 324.41551, + "y": 40.913, + "index": 20, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 331.49251, + "y": 43.597, + "index": 21, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 337.72151, + "y": 47.896, + "index": 22, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 342.74051, + "y": 53.562, + "index": 23, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 346.25751, + "y": 60.264, + "index": 24, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 348.06951, + "y": 67.613, + "index": 25, + "body": { + "#": 432 + }, + "isInternal": false + }, + { + "x": 316.90151, + "y": 71.397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 468 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 470 + }, + "max": { + "#": 471 + } + }, + { + "x": 285.73351, + "y": 40 + }, + { + "x": 348.06951, + "y": 102.794 + }, + { + "x": 316.90151, + "y": 71.397 + }, + [ + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + } + ], + { + "x": -0.97092, + "y": -0.23939 + }, + { + "x": -0.88548, + "y": -0.46467 + }, + { + "x": -0.74855, + "y": -0.66308 + }, + { + "x": -0.56801, + "y": -0.82302 + }, + { + "x": -0.35461, + "y": -0.93501 + }, + { + "x": -0.12062, + "y": -0.9927 + }, + { + "x": 0.12062, + "y": -0.9927 + }, + { + "x": 0.35461, + "y": -0.93501 + }, + { + "x": 0.56801, + "y": -0.82302 + }, + { + "x": 0.74855, + "y": -0.66308 + }, + { + "x": 0.88548, + "y": -0.46467 + }, + { + "x": 0.97092, + "y": -0.23939 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 26, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 488 + }, + "angle": 0, + "vertices": { + "#": 489 + }, + "position": { + "#": 493 + }, + "force": { + "#": 494 + }, + "torque": 0, + "positionImpulse": { + "#": 495 + }, + "constraintImpulse": { + "#": 496 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 497 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 498 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 499 + }, + "bounds": { + "#": 501 + }, + "positionPrev": { + "#": 504 + }, + "anglePrev": 0, + "axes": { + "#": 505 + }, + "area": 1045.25873, + "mass": 1.04526, + "inverseMass": 0.9567, + "inertia": 841.05756, + "inverseInertia": 0.00119, + "parent": { + "#": 487 + }, + "sleepCounter": 0 + }, + [ + { + "#": 487 + } + ], + [ + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + } + ], + { + "x": 383.52701, + "y": 89.132, + "index": 0, + "body": { + "#": 487 + }, + "isInternal": false + }, + { + "x": 340.97801, + "y": 64.566, + "index": 1, + "body": { + "#": 487 + }, + "isInternal": false + }, + { + "x": 383.52701, + "y": 40, + "index": 2, + "body": { + "#": 487 + }, + "isInternal": false + }, + { + "x": 369.34401, + "y": 64.566 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 500 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 502 + }, + "max": { + "#": 503 + } + }, + { + "x": 340.97801, + "y": 40 + }, + { + "x": 383.52701, + "y": 89.132 + }, + { + "x": 369.34401, + "y": 64.566 + }, + [ + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + } + ], + { + "x": -0.5, + "y": 0.86602 + }, + { + "x": -0.5, + "y": -0.86602 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 27, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 510 + }, + "angle": 0, + "vertices": { + "#": 511 + }, + "position": { + "#": 518 + }, + "force": { + "#": 519 + }, + "torque": 0, + "positionImpulse": { + "#": 520 + }, + "constraintImpulse": { + "#": 521 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 522 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 523 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 524 + }, + "bounds": { + "#": 526 + }, + "positionPrev": { + "#": 529 + }, + "anglePrev": 0, + "axes": { + "#": 530 + }, + "area": 1661.58507, + "mass": 1.66159, + "inverseMass": 0.60183, + "inertia": 1771.09568, + "inverseInertia": 0.00056, + "parent": { + "#": 509 + }, + "sleepCounter": 0 + }, + [ + { + "#": 509 + } + ], + [ + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + } + ], + { + "x": 427.32901, + "y": 77.934, + "index": 0, + "body": { + "#": 509 + }, + "isInternal": false + }, + { + "x": 405.42801, + "y": 90.578, + "index": 1, + "body": { + "#": 509 + }, + "isInternal": false + }, + { + "x": 383.52701, + "y": 77.934, + "index": 2, + "body": { + "#": 509 + }, + "isInternal": false + }, + { + "x": 383.52701, + "y": 52.644, + "index": 3, + "body": { + "#": 509 + }, + "isInternal": false + }, + { + "x": 405.42801, + "y": 40, + "index": 4, + "body": { + "#": 509 + }, + "isInternal": false + }, + { + "x": 427.32901, + "y": 52.644, + "index": 5, + "body": { + "#": 509 + }, + "isInternal": false + }, + { + "x": 405.42801, + "y": 65.289 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 525 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 527 + }, + "max": { + "#": 528 + } + }, + { + "x": 383.52701, + "y": 40 + }, + { + "x": 427.32901, + "y": 90.578 + }, + { + "x": 405.42801, + "y": 65.289 + }, + [ + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + } + ], + { + "x": -0.49998, + "y": -0.86603 + }, + { + "x": 0.49998, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 28, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 535 + }, + "angle": 0, + "vertices": { + "#": 536 + }, + "position": { + "#": 544 + }, + "force": { + "#": 545 + }, + "torque": 0, + "positionImpulse": { + "#": 546 + }, + "constraintImpulse": { + "#": 547 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 548 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 549 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 550 + }, + "bounds": { + "#": 552 + }, + "positionPrev": { + "#": 555 + }, + "anglePrev": 0, + "axes": { + "#": 556 + }, + "area": 2545.38424, + "mass": 2.54538, + "inverseMass": 0.39287, + "inertia": 4141.08002, + "inverseInertia": 0.00024, + "parent": { + "#": 534 + }, + "sleepCounter": 0 + }, + [ + { + "#": 534 + } + ], + [ + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + } + ], + { + "x": 483.7969, + "y": 82.967, + "index": 0, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 463.1049, + "y": 99.468, + "index": 1, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 437.3019, + "y": 93.579, + "index": 2, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 425.8189, + "y": 69.734, + "index": 3, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 437.3019, + "y": 45.889, + "index": 4, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 463.1049, + "y": 40, + "index": 5, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 483.7969, + "y": 56.501, + "index": 6, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 456.31801, + "y": 69.734 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 551 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 553 + }, + "max": { + "#": 554 + } + }, + { + "x": 425.8189, + "y": 40 + }, + { + "x": 483.7969, + "y": 99.468 + }, + { + "x": 456.31801, + "y": 69.734 + }, + [ + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + } + ], + { + "x": 0.62348, + "y": 0.78184 + }, + { + "x": -0.22251, + "y": 0.97493 + }, + { + "x": -0.90097, + "y": 0.43388 + }, + { + "x": -0.90097, + "y": -0.43388 + }, + { + "x": -0.22251, + "y": -0.97493 + }, + { + "x": 0.62348, + "y": -0.78184 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 29, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 565 + }, + "angle": 0, + "vertices": { + "#": 566 + }, + "position": { + "#": 574 + }, + "force": { + "#": 575 + }, + "torque": 0, + "positionImpulse": { + "#": 576 + }, + "constraintImpulse": { + "#": 577 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 578 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 579 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 580 + }, + "bounds": { + "#": 582 + }, + "positionPrev": { + "#": 585 + }, + "anglePrev": 0, + "axes": { + "#": 586 + }, + "area": 2860.09076, + "mass": 2.86009, + "inverseMass": 0.34964, + "inertia": 5228.37286, + "inverseInertia": 0.00019, + "parent": { + "#": 564 + }, + "sleepCounter": 0 + }, + [ + { + "#": 564 + } + ], + [ + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + } + ], + { + "x": 259.85703, + "y": 148.34, + "index": 0, + "body": { + "#": 564 + }, + "isInternal": false + }, + { + "x": 237.92303, + "y": 165.832, + "index": 1, + "body": { + "#": 564 + }, + "isInternal": false + }, + { + "x": 210.57203, + "y": 159.589, + "index": 2, + "body": { + "#": 564 + }, + "isInternal": false + }, + { + "x": 198.39903, + "y": 134.313, + "index": 3, + "body": { + "#": 564 + }, + "isInternal": false + }, + { + "x": 210.57203, + "y": 109.037, + "index": 4, + "body": { + "#": 564 + }, + "isInternal": false + }, + { + "x": 237.92303, + "y": 102.794, + "index": 5, + "body": { + "#": 564 + }, + "isInternal": false + }, + { + "x": 259.85703, + "y": 120.286, + "index": 6, + "body": { + "#": 564 + }, + "isInternal": false + }, + { + "x": 230.729, + "y": 134.313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 581 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 583 + }, + "max": { + "#": 584 + } + }, + { + "x": 198.39903, + "y": 102.794 + }, + { + "x": 259.85703, + "y": 165.832 + }, + { + "x": 230.729, + "y": 134.313 + }, + [ + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + } + ], + { + "x": 0.62349, + "y": 0.78183 + }, + { + "x": -0.22253, + "y": 0.97493 + }, + { + "x": -0.90096, + "y": 0.4339 + }, + { + "x": -0.90096, + "y": -0.4339 + }, + { + "x": -0.22253, + "y": -0.97493 + }, + { + "x": 0.62349, + "y": -0.78183 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 30, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 595 + }, + "angle": 0, + "vertices": { + "#": 596 + }, + "position": { + "#": 601 + }, + "force": { + "#": 602 + }, + "torque": 0, + "positionImpulse": { + "#": 603 + }, + "constraintImpulse": { + "#": 604 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 605 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 606 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 607 + }, + "bounds": { + "#": 609 + }, + "positionPrev": { + "#": 612 + }, + "anglePrev": 0, + "axes": { + "#": 613 + }, + "area": 3059.85986, + "mass": 3.05986, + "inverseMass": 0.32681, + "inertia": 6241.82823, + "inverseInertia": 0.00016, + "parent": { + "#": 594 + }, + "sleepCounter": 0 + }, + [ + { + "#": 594 + } + ], + [ + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + } + ], + { + "x": 315.17303, + "y": 158.11, + "index": 0, + "body": { + "#": 594 + }, + "isInternal": false + }, + { + "x": 259.85703, + "y": 158.11, + "index": 1, + "body": { + "#": 594 + }, + "isInternal": false + }, + { + "x": 259.85703, + "y": 102.794, + "index": 2, + "body": { + "#": 594 + }, + "isInternal": false + }, + { + "x": 315.17303, + "y": 102.794, + "index": 3, + "body": { + "#": 594 + }, + "isInternal": false + }, + { + "x": 287.51503, + "y": 130.452 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 608 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 610 + }, + "max": { + "#": 611 + } + }, + { + "x": 259.85703, + "y": 102.794 + }, + { + "x": 315.17303, + "y": 158.11 + }, + { + "x": 287.51503, + "y": 130.452 + }, + [ + { + "#": 614 + }, + { + "#": 615 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 31, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 617 + }, + "angle": 0, + "vertices": { + "#": 618 + }, + "position": { + "#": 625 + }, + "force": { + "#": 626 + }, + "torque": 0, + "positionImpulse": { + "#": 627 + }, + "constraintImpulse": { + "#": 628 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 629 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 630 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 631 + }, + "bounds": { + "#": 633 + }, + "positionPrev": { + "#": 636 + }, + "anglePrev": 0, + "axes": { + "#": 637 + }, + "area": 3989.26286, + "mass": 3.98926, + "inverseMass": 0.25067, + "inertia": 10208.97571, + "inverseInertia": 0.0001, + "parent": { + "#": 616 + }, + "sleepCounter": 0 + }, + [ + { + "#": 616 + } + ], + [ + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + } + ], + { + "x": 383.04303, + "y": 161.572, + "index": 0, + "body": { + "#": 616 + }, + "isInternal": false + }, + { + "x": 349.10803, + "y": 181.164, + "index": 1, + "body": { + "#": 616 + }, + "isInternal": false + }, + { + "x": 315.17303, + "y": 161.572, + "index": 2, + "body": { + "#": 616 + }, + "isInternal": false + }, + { + "x": 315.17303, + "y": 122.386, + "index": 3, + "body": { + "#": 616 + }, + "isInternal": false + }, + { + "x": 349.10803, + "y": 102.794, + "index": 4, + "body": { + "#": 616 + }, + "isInternal": false + }, + { + "x": 383.04303, + "y": 122.386, + "index": 5, + "body": { + "#": 616 + }, + "isInternal": false + }, + { + "x": 349.10803, + "y": 141.979 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 632 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 634 + }, + "max": { + "#": 635 + } + }, + { + "x": 315.17303, + "y": 102.794 + }, + { + "x": 383.04303, + "y": 181.164 + }, + { + "x": 349.10803, + "y": 141.979 + }, + [ + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + } + ], + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": 0.49999, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 32, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 642 + }, + "angle": 0, + "vertices": { + "#": 643 + }, + "position": { + "#": 648 + }, + "force": { + "#": 649 + }, + "torque": 0, + "positionImpulse": { + "#": 650 + }, + "constraintImpulse": { + "#": 651 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 652 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 653 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 654 + }, + "bounds": { + "#": 656 + }, + "positionPrev": { + "#": 659 + }, + "anglePrev": 0, + "axes": { + "#": 660 + }, + "area": 871.66658, + "mass": 0.87167, + "inverseMass": 1.14723, + "inertia": 506.53508, + "inverseInertia": 0.00197, + "parent": { + "#": 641 + }, + "sleepCounter": 0 + }, + [ + { + "#": 641 + } + ], + [ + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + } + ], + { + "x": 412.56703, + "y": 132.318, + "index": 0, + "body": { + "#": 641 + }, + "isInternal": false + }, + { + "x": 383.04303, + "y": 132.318, + "index": 1, + "body": { + "#": 641 + }, + "isInternal": false + }, + { + "x": 383.04303, + "y": 102.794, + "index": 2, + "body": { + "#": 641 + }, + "isInternal": false + }, + { + "x": 412.56703, + "y": 102.794, + "index": 3, + "body": { + "#": 641 + }, + "isInternal": false + }, + { + "x": 397.80503, + "y": 117.556 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 655 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 657 + }, + "max": { + "#": 658 + } + }, + { + "x": 383.04303, + "y": 102.794 + }, + { + "x": 412.56703, + "y": 132.318 + }, + { + "x": 397.80503, + "y": 117.556 + }, + [ + { + "#": 661 + }, + { + "#": 662 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 33, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 664 + }, + "angle": 0, + "vertices": { + "#": 665 + }, + "position": { + "#": 672 + }, + "force": { + "#": 673 + }, + "torque": 0, + "positionImpulse": { + "#": 674 + }, + "constraintImpulse": { + "#": 675 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 676 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 677 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 678 + }, + "bounds": { + "#": 680 + }, + "positionPrev": { + "#": 683 + }, + "anglePrev": 0, + "axes": { + "#": 684 + }, + "area": 2747.94639, + "mass": 2.74795, + "inverseMass": 0.36391, + "inertia": 4844.10306, + "inverseInertia": 0.00021, + "parent": { + "#": 663 + }, + "sleepCounter": 0 + }, + [ + { + "#": 663 + } + ], + [ + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + } + ], + { + "x": 468.89703, + "y": 151.577, + "index": 0, + "body": { + "#": 663 + }, + "isInternal": false + }, + { + "x": 440.73203, + "y": 167.838, + "index": 1, + "body": { + "#": 663 + }, + "isInternal": false + }, + { + "x": 412.56703, + "y": 151.577, + "index": 2, + "body": { + "#": 663 + }, + "isInternal": false + }, + { + "x": 412.56703, + "y": 119.055, + "index": 3, + "body": { + "#": 663 + }, + "isInternal": false + }, + { + "x": 440.73203, + "y": 102.794, + "index": 4, + "body": { + "#": 663 + }, + "isInternal": false + }, + { + "x": 468.89703, + "y": 119.055, + "index": 5, + "body": { + "#": 663 + }, + "isInternal": false + }, + { + "x": 440.73203, + "y": 135.316 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 679 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 681 + }, + "max": { + "#": 682 + } + }, + { + "x": 412.56703, + "y": 102.794 + }, + { + "x": 468.89703, + "y": 167.838 + }, + { + "x": 440.73203, + "y": 135.316 + }, + [ + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + } + ], + { + "x": -0.5, + "y": -0.86603 + }, + { + "x": 0.5, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 34, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 689 + }, + "angle": 0, + "vertices": { + "#": 690 + }, + "position": { + "#": 715 + }, + "force": { + "#": 716 + }, + "torque": 0, + "positionImpulse": { + "#": 717 + }, + "constraintImpulse": { + "#": 718 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 719 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 720 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 721 + }, + "circleRadius": 22.45439, + "bounds": { + "#": 723 + }, + "positionPrev": { + "#": 726 + }, + "anglePrev": 0, + "axes": { + "#": 727 + }, + "area": 1565.91965, + "mass": 1.56592, + "inverseMass": 0.6386, + "inertia": 1561.0992, + "inverseInertia": 0.00064, + "parent": { + "#": 688 + }, + "sleepCounter": 0 + }, + [ + { + "#": 688 + } + ], + [ + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + }, + { + "#": 714 + } + ], + { + "x": 513.42103, + "y": 127.987, + "index": 0, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 511.90403, + "y": 133.649, + "index": 1, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 508.97303, + "y": 138.725, + "index": 2, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 504.82803, + "y": 142.87, + "index": 3, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 499.75203, + "y": 145.801, + "index": 4, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 494.09003, + "y": 147.318, + "index": 5, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 488.22803, + "y": 147.318, + "index": 6, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 482.56603, + "y": 145.801, + "index": 7, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 477.49003, + "y": 142.87, + "index": 8, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 473.34503, + "y": 138.725, + "index": 9, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 470.41403, + "y": 133.649, + "index": 10, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 468.89703, + "y": 127.987, + "index": 11, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 468.89703, + "y": 122.125, + "index": 12, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 470.41403, + "y": 116.463, + "index": 13, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 473.34503, + "y": 111.387, + "index": 14, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 477.49003, + "y": 107.242, + "index": 15, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 482.56603, + "y": 104.311, + "index": 16, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 488.22803, + "y": 102.794, + "index": 17, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 494.09003, + "y": 102.794, + "index": 18, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 499.75203, + "y": 104.311, + "index": 19, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 504.82803, + "y": 107.242, + "index": 20, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 508.97303, + "y": 111.387, + "index": 21, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 511.90403, + "y": 116.463, + "index": 22, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 513.42103, + "y": 122.125, + "index": 23, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 491.15903, + "y": 125.056 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 722 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 724 + }, + "max": { + "#": 725 + } + }, + { + "x": 468.89703, + "y": 102.794 + }, + { + "x": 513.42103, + "y": 147.318 + }, + { + "x": 491.15903, + "y": 125.056 + }, + [ + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + } + ], + { + "x": -0.96593, + "y": -0.2588 + }, + { + "x": -0.866, + "y": -0.50005 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.50005, + "y": -0.866 + }, + { + "x": -0.2588, + "y": -0.96593 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.2588, + "y": -0.96593 + }, + { + "x": 0.50005, + "y": -0.866 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.866, + "y": -0.50005 + }, + { + "x": 0.96593, + "y": -0.2588 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 35, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 741 + }, + "angle": 0, + "vertices": { + "#": 742 + }, + "position": { + "#": 769 + }, + "force": { + "#": 770 + }, + "torque": 0, + "positionImpulse": { + "#": 771 + }, + "constraintImpulse": { + "#": 772 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 773 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 774 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 775 + }, + "circleRadius": 39.00712, + "bounds": { + "#": 777 + }, + "positionPrev": { + "#": 780 + }, + "anglePrev": 0, + "axes": { + "#": 781 + }, + "area": 4733.73982, + "mass": 4.73374, + "inverseMass": 0.21125, + "inertia": 14265.8344, + "inverseInertia": 0.00007, + "parent": { + "#": 740 + }, + "sleepCounter": 0 + }, + [ + { + "#": 740 + } + ], + [ + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + }, + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + }, + { + "#": 767 + }, + { + "#": 768 + } + ], + { + "x": 277.446, + "y": 224.873, + "index": 0, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 275.195, + "y": 234.003, + "index": 1, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 270.825, + "y": 242.33, + "index": 2, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 264.59, + "y": 249.368, + "index": 3, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 256.851, + "y": 254.71, + "index": 4, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 248.058, + "y": 258.045, + "index": 5, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 238.723, + "y": 259.178, + "index": 6, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 229.388, + "y": 258.045, + "index": 7, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 220.595, + "y": 254.71, + "index": 8, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 212.856, + "y": 249.368, + "index": 9, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 206.621, + "y": 242.33, + "index": 10, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 202.251, + "y": 234.003, + "index": 11, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 200, + "y": 224.873, + "index": 12, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 200, + "y": 215.469, + "index": 13, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 202.251, + "y": 206.339, + "index": 14, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 206.621, + "y": 198.012, + "index": 15, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 212.856, + "y": 190.974, + "index": 16, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 220.595, + "y": 185.632, + "index": 17, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 229.388, + "y": 182.297, + "index": 18, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 238.723, + "y": 181.164, + "index": 19, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 248.058, + "y": 182.297, + "index": 20, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 256.851, + "y": 185.632, + "index": 21, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 264.59, + "y": 190.974, + "index": 22, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 270.825, + "y": 198.012, + "index": 23, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 275.195, + "y": 206.339, + "index": 24, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 277.446, + "y": 215.469, + "index": 25, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 238.723, + "y": 220.171 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 776 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 778 + }, + "max": { + "#": 779 + } + }, + { + "x": 200, + "y": 181.164 + }, + { + "x": 277.446, + "y": 259.178 + }, + { + "x": 238.723, + "y": 220.171 + }, + [ + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + }, + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + } + ], + { + "x": -0.97093, + "y": -0.23938 + }, + { + "x": -0.88547, + "y": -0.46469 + }, + { + "x": -0.74852, + "y": -0.66312 + }, + { + "x": -0.56808, + "y": -0.82298 + }, + { + "x": -0.35463, + "y": -0.93501 + }, + { + "x": -0.12049, + "y": -0.99271 + }, + { + "x": 0.12049, + "y": -0.99271 + }, + { + "x": 0.35463, + "y": -0.93501 + }, + { + "x": 0.56808, + "y": -0.82298 + }, + { + "x": 0.74852, + "y": -0.66312 + }, + { + "x": 0.88547, + "y": -0.46469 + }, + { + "x": 0.97093, + "y": -0.23938 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 36, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 796 + }, + "angle": 0, + "vertices": { + "#": 797 + }, + "position": { + "#": 824 + }, + "force": { + "#": 825 + }, + "torque": 0, + "positionImpulse": { + "#": 826 + }, + "constraintImpulse": { + "#": 827 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 828 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 829 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 830 + }, + "circleRadius": 30.51355, + "bounds": { + "#": 832 + }, + "positionPrev": { + "#": 835 + }, + "anglePrev": 0, + "axes": { + "#": 836 + }, + "area": 2896.676, + "mass": 2.89668, + "inverseMass": 0.34522, + "inertia": 5341.80774, + "inverseInertia": 0.00019, + "parent": { + "#": 795 + }, + "sleepCounter": 0 + }, + [ + { + "#": 795 + } + ], + [ + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + }, + { + "#": 806 + }, + { + "#": 807 + }, + { + "#": 808 + }, + { + "#": 809 + }, + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + }, + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + } + ], + { + "x": 338.028, + "y": 215.356, + "index": 0, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 336.268, + "y": 222.498, + "index": 1, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 332.849, + "y": 229.012, + "index": 2, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 327.971, + "y": 234.518, + "index": 3, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 321.917, + "y": 238.696, + "index": 4, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 315.039, + "y": 241.305, + "index": 5, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 307.737, + "y": 242.192, + "index": 6, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 300.435, + "y": 241.305, + "index": 7, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 293.557, + "y": 238.696, + "index": 8, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 287.503, + "y": 234.518, + "index": 9, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 282.625, + "y": 229.012, + "index": 10, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 279.206, + "y": 222.498, + "index": 11, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 277.446, + "y": 215.356, + "index": 12, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 277.446, + "y": 208, + "index": 13, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 279.206, + "y": 200.858, + "index": 14, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 282.625, + "y": 194.344, + "index": 15, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 287.503, + "y": 188.838, + "index": 16, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 293.557, + "y": 184.66, + "index": 17, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 300.435, + "y": 182.051, + "index": 18, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 307.737, + "y": 181.164, + "index": 19, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 315.039, + "y": 182.051, + "index": 20, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 321.917, + "y": 184.66, + "index": 21, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 327.971, + "y": 188.838, + "index": 22, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 332.849, + "y": 194.344, + "index": 23, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 336.268, + "y": 200.858, + "index": 24, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 338.028, + "y": 208, + "index": 25, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 307.737, + "y": 211.678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 831 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 833 + }, + "max": { + "#": 834 + } + }, + { + "x": 277.446, + "y": 181.164 + }, + { + "x": 338.028, + "y": 242.192 + }, + { + "x": 307.737, + "y": 211.678 + }, + [ + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + } + ], + { + "x": -0.97095, + "y": -0.23927 + }, + { + "x": -0.88545, + "y": -0.46474 + }, + { + "x": -0.7485, + "y": -0.66313 + }, + { + "x": -0.56799, + "y": -0.82303 + }, + { + "x": -0.35467, + "y": -0.93499 + }, + { + "x": -0.12059, + "y": -0.9927 + }, + { + "x": 0.12059, + "y": -0.9927 + }, + { + "x": 0.35467, + "y": -0.93499 + }, + { + "x": 0.56799, + "y": -0.82303 + }, + { + "x": 0.7485, + "y": -0.66313 + }, + { + "x": 0.88545, + "y": -0.46474 + }, + { + "x": 0.97095, + "y": -0.23927 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 37, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 851 + }, + "angle": 0, + "vertices": { + "#": 852 + }, + "position": { + "#": 856 + }, + "force": { + "#": 857 + }, + "torque": 0, + "positionImpulse": { + "#": 858 + }, + "constraintImpulse": { + "#": 859 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 860 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 861 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 862 + }, + "bounds": { + "#": 864 + }, + "positionPrev": { + "#": 867 + }, + "anglePrev": 0, + "axes": { + "#": 868 + }, + "area": 831.99124, + "mass": 0.83199, + "inverseMass": 1.20194, + "inertia": 532.86306, + "inverseInertia": 0.00188, + "parent": { + "#": 850 + }, + "sleepCounter": 0 + }, + [ + { + "#": 850 + } + ], + [ + { + "#": 853 + }, + { + "#": 854 + }, + { + "#": 855 + } + ], + { + "x": 369.66217, + "y": 224.998, + "index": 0, + "body": { + "#": 850 + }, + "isInternal": false + }, + { + "x": 331.70117, + "y": 203.081, + "index": 1, + "body": { + "#": 850 + }, + "isInternal": false + }, + { + "x": 369.66217, + "y": 181.164, + "index": 2, + "body": { + "#": 850 + }, + "isInternal": false + }, + { + "x": 357.0085, + "y": 203.081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 863 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 865 + }, + "max": { + "#": 866 + } + }, + { + "x": 331.70117, + "y": 181.164 + }, + { + "x": 369.66217, + "y": 224.998 + }, + { + "x": 357.0085, + "y": 203.081 + }, + [ + { + "#": 869 + }, + { + "#": 870 + }, + { + "#": 871 + } + ], + { + "x": -0.5, + "y": 0.86602 + }, + { + "x": -0.5, + "y": -0.86602 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 38, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 873 + }, + "angle": 0, + "vertices": { + "#": 874 + }, + "position": { + "#": 878 + }, + "force": { + "#": 879 + }, + "torque": 0, + "positionImpulse": { + "#": 880 + }, + "constraintImpulse": { + "#": 881 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 882 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 883 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 884 + }, + "bounds": { + "#": 886 + }, + "positionPrev": { + "#": 889 + }, + "anglePrev": 0, + "axes": { + "#": 890 + }, + "area": 1307.09765, + "mass": 1.3071, + "inverseMass": 0.76505, + "inertia": 1315.2072, + "inverseInertia": 0.00076, + "parent": { + "#": 872 + }, + "sleepCounter": 0 + }, + [ + { + "#": 872 + } + ], + [ + { + "#": 875 + }, + { + "#": 876 + }, + { + "#": 877 + } + ], + { + "x": 409.313, + "y": 236.106, + "index": 0, + "body": { + "#": 872 + }, + "isInternal": false + }, + { + "x": 361.732, + "y": 208.635, + "index": 1, + "body": { + "#": 872 + }, + "isInternal": false + }, + { + "x": 409.313, + "y": 181.164, + "index": 2, + "body": { + "#": 872 + }, + "isInternal": false + }, + { + "x": 393.45267, + "y": 208.635 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 885 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 887 + }, + "max": { + "#": 888 + } + }, + { + "x": 361.732, + "y": 181.164 + }, + { + "x": 409.313, + "y": 236.106 + }, + { + "x": 393.45267, + "y": 208.635 + }, + [ + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + } + ], + { + "x": -0.5, + "y": 0.86602 + }, + { + "x": -0.5, + "y": -0.86602 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 39, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 895 + }, + "angle": 0, + "vertices": { + "#": 896 + }, + "position": { + "#": 902 + }, + "force": { + "#": 903 + }, + "torque": 0, + "positionImpulse": { + "#": 904 + }, + "constraintImpulse": { + "#": 905 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 906 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 907 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 908 + }, + "bounds": { + "#": 910 + }, + "positionPrev": { + "#": 913 + }, + "anglePrev": 0, + "axes": { + "#": 914 + }, + "area": 3449.27664, + "mass": 3.44928, + "inverseMass": 0.28992, + "inertia": 7702.74624, + "inverseInertia": 0.00013, + "parent": { + "#": 894 + }, + "sleepCounter": 0 + }, + [ + { + "#": 894 + } + ], + [ + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + }, + { + "#": 901 + } + ], + { + "x": 474.57789, + "y": 239.776, + "index": 0, + "body": { + "#": 894 + }, + "isInternal": false + }, + { + "x": 431.99389, + "y": 253.612, + "index": 1, + "body": { + "#": 894 + }, + "isInternal": false + }, + { + "x": 405.67589, + "y": 217.388, + "index": 2, + "body": { + "#": 894 + }, + "isInternal": false + }, + { + "x": 431.99389, + "y": 181.164, + "index": 3, + "body": { + "#": 894 + }, + "isInternal": false + }, + { + "x": 474.57789, + "y": 195, + "index": 4, + "body": { + "#": 894 + }, + "isInternal": false + }, + { + "x": 443.764, + "y": 217.388 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 909 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 911 + }, + "max": { + "#": 912 + } + }, + { + "x": 405.67589, + "y": 181.164 + }, + { + "x": 474.57789, + "y": 253.612 + }, + { + "x": 443.764, + "y": 217.388 + }, + [ + { + "#": 915 + }, + { + "#": 916 + }, + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + } + ], + { + "x": 0.30901, + "y": 0.95106 + }, + { + "x": -0.80902, + "y": 0.58778 + }, + { + "x": -0.80902, + "y": -0.58778 + }, + { + "x": 0.30901, + "y": -0.95106 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 40, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 921 + }, + "angle": 0, + "vertices": { + "#": 922 + }, + "position": { + "#": 927 + }, + "force": { + "#": 928 + }, + "torque": 0, + "positionImpulse": { + "#": 929 + }, + "constraintImpulse": { + "#": 930 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 931 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 932 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 933 + }, + "bounds": { + "#": 935 + }, + "positionPrev": { + "#": 938 + }, + "anglePrev": 0, + "axes": { + "#": 939 + }, + "area": 2144.24564, + "mass": 2.14425, + "inverseMass": 0.46636, + "inertia": 3065.1929, + "inverseInertia": 0.00033, + "parent": { + "#": 920 + }, + "sleepCounter": 0 + }, + [ + { + "#": 920 + } + ], + [ + { + "#": 923 + }, + { + "#": 924 + }, + { + "#": 925 + }, + { + "#": 926 + } + ], + { + "x": 520.88389, + "y": 227.47, + "index": 0, + "body": { + "#": 920 + }, + "isInternal": false + }, + { + "x": 474.57789, + "y": 227.47, + "index": 1, + "body": { + "#": 920 + }, + "isInternal": false + }, + { + "x": 474.57789, + "y": 181.164, + "index": 2, + "body": { + "#": 920 + }, + "isInternal": false + }, + { + "x": 520.88389, + "y": 181.164, + "index": 3, + "body": { + "#": 920 + }, + "isInternal": false + }, + { + "x": 497.73089, + "y": 204.317 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 934 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 936 + }, + "max": { + "#": 937 + } + }, + { + "x": 474.57789, + "y": 181.164 + }, + { + "x": 520.88389, + "y": 227.47 + }, + { + "x": 497.73089, + "y": 204.317 + }, + [ + { + "#": 940 + }, + { + "#": 941 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 946 + }, + "max": { + "#": 947 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/bridge/bridge-10.json b/test/node/refs/bridge/bridge-10.json new file mode 100644 index 00000000..dc3a0148 --- /dev/null +++ b/test/node/refs/bridge/bridge-10.json @@ -0,0 +1,9238 @@ +[ + { + "id": 105, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 140 + }, + "composites": { + "#": 195 + }, + "label": "World", + "gravity": { + "#": 977 + }, + "bounds": { + "#": 978 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + }, + { + "#": 94 + }, + { + "#": 117 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + { + "id": 41, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 96 + }, + "position": { + "#": 101 + }, + "force": { + "#": 102 + }, + "torque": 0, + "positionImpulse": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 105 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 106 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 107 + }, + "bounds": { + "#": 109 + }, + "positionPrev": { + "#": 112 + }, + "anglePrev": 0, + "axes": { + "#": 113 + }, + "area": 33600, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 94 + }, + "sleepCounter": 0, + "region": { + "#": 116 + } + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + } + ], + { + "x": 20, + "y": 300, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 140, + "y": 300, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 140, + "y": 580, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 20, + "y": 580, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 80, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 108 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 110 + }, + "max": { + "#": 111 + } + }, + { + "x": 20, + "y": 300 + }, + { + "x": 140, + "y": 580 + }, + { + "x": 80, + "y": 440 + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "0,2,6,12", + "startCol": 0, + "endCol": 2, + "startRow": 6, + "endRow": 12 + }, + { + "id": 42, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 118 + }, + "angle": 0, + "vertices": { + "#": 119 + }, + "position": { + "#": 124 + }, + "force": { + "#": 125 + }, + "torque": 0, + "positionImpulse": { + "#": 126 + }, + "constraintImpulse": { + "#": 127 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 128 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 129 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 130 + }, + "bounds": { + "#": 132 + }, + "positionPrev": { + "#": 135 + }, + "anglePrev": 0, + "axes": { + "#": 136 + }, + "area": 33600, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 117 + }, + "sleepCounter": 0, + "region": { + "#": 139 + } + }, + [ + { + "#": 117 + } + ], + [ + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + } + ], + { + "x": 660, + "y": 300, + "index": 0, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 780, + "y": 300, + "index": 1, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 780, + "y": 580, + "index": 2, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 660, + "y": 580, + "index": 3, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 720, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 131 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 133 + }, + "max": { + "#": 134 + } + }, + { + "x": 660, + "y": 300 + }, + { + "x": 780, + "y": 580 + }, + { + "x": 720, + "y": 440 + }, + [ + { + "#": 137 + }, + { + "#": 138 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,16,6,12", + "startCol": 13, + "endCol": 16, + "startRow": 6, + "endRow": 12 + }, + [ + { + "#": 141 + }, + { + "#": 168 + } + ], + { + "pointA": { + "#": 142 + }, + "bodyB": { + "#": 143 + }, + "pointB": { + "#": 166 + }, + "length": 14.14214, + "render": { + "#": 167 + }, + "id": 43, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0.25141 + }, + { + "x": 140, + "y": 300 + }, + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 144 + }, + "angle": 0.25141, + "vertices": { + "#": 145 + }, + "position": { + "#": 150 + }, + "force": { + "#": 151 + }, + "torque": 0, + "positionImpulse": { + "#": 152 + }, + "constraintImpulse": { + "#": 153 + }, + "totalContacts": 0, + "speed": 1.76213, + "angularSpeed": 0.04416, + "velocity": { + "#": 154 + }, + "angularVelocity": 0.05266, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 155 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 156 + }, + "bounds": { + "#": 158 + }, + "positionPrev": { + "#": 161 + }, + "anglePrev": 0.19875, + "axes": { + "#": 162 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 143 + }, + "sleepCounter": 0, + "region": { + "#": 165 + } + }, + [ + { + "#": 143 + } + ], + [ + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + } + ], + { + "x": 149.10449, + "y": 302.64935, + "index": 0, + "body": { + "#": 143 + }, + "isInternal": false + }, + { + "x": 197.53261, + "y": 315.08789, + "index": 1, + "body": { + "#": 143 + }, + "isInternal": false + }, + { + "x": 192.55719, + "y": 334.45913, + "index": 2, + "body": { + "#": 143 + }, + "isInternal": false + }, + { + "x": 144.12907, + "y": 322.0206, + "index": 3, + "body": { + "#": 143 + }, + "isInternal": false + }, + { + "x": 170.83084, + "y": 318.55424 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.39518, + "y": 1.29919 + }, + { + "category": 1, + "mask": 4294967295, + "group": -3 + }, + { + "visible": true, + "sprite": { + "#": 157 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 159 + }, + "max": { + "#": 160 + } + }, + { + "x": 144.12907, + "y": 302.64935 + }, + { + "x": 197.53261, + "y": 334.45913 + }, + { + "x": 171.17323, + "y": 317.24199 + }, + [ + { + "#": 163 + }, + { + "#": 164 + } + ], + { + "x": -0.24877, + "y": 0.96856 + }, + { + "x": -0.96856, + "y": -0.24877 + }, + { + "id": "3,4,6,6", + "startCol": 3, + "endCol": 4, + "startRow": 6, + "endRow": 6 + }, + { + "x": -24.21406, + "y": -6.21927 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "pointA": { + "#": 169 + }, + "bodyB": { + "#": 170 + }, + "pointB": { + "#": 193 + }, + "length": 22.36068, + "render": { + "#": 194 + }, + "id": 44, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": -0.58302 + }, + { + "x": 660, + "y": 300 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 171 + }, + "angle": -0.58216, + "vertices": { + "#": 172 + }, + "position": { + "#": 177 + }, + "force": { + "#": 178 + }, + "torque": 0, + "positionImpulse": { + "#": 179 + }, + "constraintImpulse": { + "#": 180 + }, + "totalContacts": 0, + "speed": 2.10591, + "angularSpeed": 0.10088, + "velocity": { + "#": 181 + }, + "angularVelocity": -0.10773, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 182 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 183 + }, + "bounds": { + "#": 185 + }, + "positionPrev": { + "#": 188 + }, + "anglePrev": -0.47513, + "axes": { + "#": 189 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 170 + }, + "sleepCounter": 0, + "region": { + "#": 192 + } + }, + [ + { + "#": 170 + } + ], + [ + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + } + ], + { + "x": 593.03582, + "y": 331.52242, + "index": 0, + "body": { + "#": 170 + }, + "isInternal": false + }, + { + "x": 634.79971, + "y": 304.03101, + "index": 1, + "body": { + "#": 170 + }, + "isInternal": false + }, + { + "x": 645.79627, + "y": 320.73657, + "index": 2, + "body": { + "#": 170 + }, + "isInternal": false + }, + { + "x": 604.03238, + "y": 348.22797, + "index": 3, + "body": { + "#": 170 + }, + "isInternal": false + }, + { + "x": 619.41605, + "y": 326.12949 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -1.16516, + "y": -0.32338 + }, + { + "category": 1, + "mask": 4294967295, + "group": -3 + }, + { + "visible": true, + "sprite": { + "#": 184 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 186 + }, + "max": { + "#": 187 + } + }, + { + "x": 593.03582, + "y": 304.03101 + }, + { + "x": 645.79627, + "y": 348.22797 + }, + { + "x": 620.81165, + "y": 326.33636 + }, + [ + { + "#": 190 + }, + { + "#": 191 + } + ], + { + "x": 0.54983, + "y": 0.83528 + }, + { + "x": -0.83528, + "y": 0.54983 + }, + { + "id": "12,13,6,7", + "startCol": 12, + "endCol": 13, + "startRow": 6, + "endRow": 7 + }, + { + "x": 20.87008, + "y": -13.76372 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [ + { + "#": 196 + }, + { + "#": 393 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 197 + }, + "constraints": { + "#": 359 + }, + "composites": { + "#": 392 + }, + "label": "Stack Chain" + }, + [ + { + "#": 143 + }, + { + "#": 198 + }, + { + "#": 221 + }, + { + "#": 244 + }, + { + "#": 267 + }, + { + "#": 290 + }, + { + "#": 313 + }, + { + "#": 336 + }, + { + "#": 170 + } + ], + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 199 + }, + "angle": 0.01411, + "vertices": { + "#": 200 + }, + "position": { + "#": 205 + }, + "force": { + "#": 206 + }, + "torque": 0, + "positionImpulse": { + "#": 207 + }, + "constraintImpulse": { + "#": 208 + }, + "totalContacts": 0, + "speed": 2.85987, + "angularSpeed": 0.00378, + "velocity": { + "#": 209 + }, + "angularVelocity": 0.00515, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 210 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 211 + }, + "bounds": { + "#": 213 + }, + "positionPrev": { + "#": 216 + }, + "anglePrev": 0.00897, + "axes": { + "#": 217 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 198 + }, + "sleepCounter": 0, + "region": { + "#": 220 + } + }, + [ + { + "#": 198 + } + ], + [ + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + } + ], + { + "x": 205.02622, + "y": 317.12954, + "index": 0, + "body": { + "#": 198 + }, + "isInternal": false + }, + { + "x": 255.02124, + "y": 317.83481, + "index": 1, + "body": { + "#": 198 + }, + "isInternal": false + }, + { + "x": 254.73914, + "y": 337.83282, + "index": 2, + "body": { + "#": 198 + }, + "isInternal": false + }, + { + "x": 204.74411, + "y": 337.12755, + "index": 3, + "body": { + "#": 198 + }, + "isInternal": false + }, + { + "x": 229.88268, + "y": 327.48118 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.80565, + "y": 2.64004 + }, + { + "category": 1, + "mask": 4294967295, + "group": -3 + }, + { + "visible": true, + "sprite": { + "#": 212 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 214 + }, + "max": { + "#": 215 + } + }, + { + "x": 204.74411, + "y": 317.12954 + }, + { + "x": 255.02124, + "y": 337.83282 + }, + { + "x": 230.57147, + "y": 324.84159 + }, + [ + { + "#": 218 + }, + { + "#": 219 + } + ], + { + "x": -0.01411, + "y": 0.9999 + }, + { + "x": -0.9999, + "y": -0.01411 + }, + { + "id": "4,5,6,7", + "startCol": 4, + "endCol": 5, + "startRow": 6, + "endRow": 7 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 222 + }, + "angle": 0.0002, + "vertices": { + "#": 223 + }, + "position": { + "#": 228 + }, + "force": { + "#": 229 + }, + "torque": 0, + "positionImpulse": { + "#": 230 + }, + "constraintImpulse": { + "#": 231 + }, + "totalContacts": 0, + "speed": 3.00931, + "angularSpeed": 0.00002, + "velocity": { + "#": 232 + }, + "angularVelocity": 0.00007, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 233 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 234 + }, + "bounds": { + "#": 236 + }, + "positionPrev": { + "#": 239 + }, + "anglePrev": 0.00012, + "axes": { + "#": 240 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 221 + }, + "sleepCounter": 0, + "region": { + "#": 243 + } + }, + [ + { + "#": 221 + } + ], + [ + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + } + ], + { + "x": 265.01166, + "y": 317.79705, + "index": 0, + "body": { + "#": 221 + }, + "isInternal": false + }, + { + "x": 315.01166, + "y": 317.80719, + "index": 1, + "body": { + "#": 221 + }, + "isInternal": false + }, + { + "x": 315.0076, + "y": 337.80719, + "index": 2, + "body": { + "#": 221 + }, + "isInternal": false + }, + { + "x": 265.0076, + "y": 337.79705, + "index": 3, + "body": { + "#": 221 + }, + "isInternal": false + }, + { + "x": 290.00963, + "y": 327.80212 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.81827, + "y": 2.94136 + }, + { + "category": 1, + "mask": 4294967295, + "group": -3 + }, + { + "visible": true, + "sprite": { + "#": 235 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 237 + }, + "max": { + "#": 238 + } + }, + { + "x": 265.0076, + "y": 317.79705 + }, + { + "x": 315.01166, + "y": 337.80719 + }, + { + "x": 290.72435, + "y": 324.8577 + }, + [ + { + "#": 241 + }, + { + "#": 242 + } + ], + { + "x": -0.0002, + "y": 1 + }, + { + "x": -1, + "y": -0.0002 + }, + { + "id": "5,6,6,7", + "startCol": 5, + "endCol": 6, + "startRow": 6, + "endRow": 7 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 245 + }, + "angle": -0.01346, + "vertices": { + "#": 246 + }, + "position": { + "#": 251 + }, + "force": { + "#": 252 + }, + "torque": 0, + "positionImpulse": { + "#": 253 + }, + "constraintImpulse": { + "#": 254 + }, + "totalContacts": 0, + "speed": 2.90932, + "angularSpeed": 0.00399, + "velocity": { + "#": 255 + }, + "angularVelocity": -0.00448, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 256 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 257 + }, + "bounds": { + "#": 259 + }, + "positionPrev": { + "#": 262 + }, + "anglePrev": -0.00846, + "axes": { + "#": 263 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 244 + }, + "sleepCounter": 0, + "region": { + "#": 266 + } + }, + [ + { + "#": 244 + } + ], + [ + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + } + ], + { + "x": 324.99664, + "y": 318.0966, + "index": 0, + "body": { + "#": 244 + }, + "isInternal": false + }, + { + "x": 374.99211, + "y": 317.42381, + "index": 1, + "body": { + "#": 244 + }, + "isInternal": false + }, + { + "x": 375.26123, + "y": 337.422, + "index": 2, + "body": { + "#": 244 + }, + "isInternal": false + }, + { + "x": 325.26575, + "y": 338.09479, + "index": 3, + "body": { + "#": 244 + }, + "isInternal": false + }, + { + "x": 350.12893, + "y": 327.7593 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.84285, + "y": 2.8052 + }, + { + "category": 1, + "mask": 4294967295, + "group": -3 + }, + { + "visible": true, + "sprite": { + "#": 258 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 260 + }, + "max": { + "#": 261 + } + }, + { + "x": 324.99664, + "y": 317.42381 + }, + { + "x": 375.26123, + "y": 338.09479 + }, + { + "x": 350.86918, + "y": 324.98614 + }, + [ + { + "#": 264 + }, + { + "#": 265 + } + ], + { + "x": 0.01346, + "y": 0.99991 + }, + { + "x": -0.99991, + "y": 0.01346 + }, + { + "id": "6,7,6,7", + "startCol": 6, + "endCol": 7, + "startRow": 6, + "endRow": 7 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 268 + }, + "angle": 0.07026, + "vertices": { + "#": 269 + }, + "position": { + "#": 274 + }, + "force": { + "#": 275 + }, + "torque": 0, + "positionImpulse": { + "#": 276 + }, + "constraintImpulse": { + "#": 277 + }, + "totalContacts": 0, + "speed": 3.00819, + "angularSpeed": 0.01535, + "velocity": { + "#": 278 + }, + "angularVelocity": 0.01522, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 279 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 280 + }, + "bounds": { + "#": 282 + }, + "positionPrev": { + "#": 285 + }, + "anglePrev": 0.05504, + "axes": { + "#": 286 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 267 + }, + "sleepCounter": 0, + "region": { + "#": 289 + } + }, + [ + { + "#": 267 + } + ], + [ + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + } + ], + { + "x": 385.34705, + "y": 314.40749, + "index": 0, + "body": { + "#": 267 + }, + "isInternal": false + }, + { + "x": 435.22369, + "y": 317.91759, + "index": 1, + "body": { + "#": 267 + }, + "isInternal": false + }, + { + "x": 433.81965, + "y": 337.86824, + "index": 2, + "body": { + "#": 267 + }, + "isInternal": false + }, + { + "x": 383.94301, + "y": 334.35814, + "index": 3, + "body": { + "#": 267 + }, + "isInternal": false + }, + { + "x": 409.58335, + "y": 326.13786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.74529, + "y": 3.11603 + }, + { + "category": 1, + "mask": 4294967295, + "group": -3 + }, + { + "visible": true, + "sprite": { + "#": 281 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 283 + }, + "max": { + "#": 284 + } + }, + { + "x": 383.94301, + "y": 314.40749 + }, + { + "x": 435.22369, + "y": 337.86824 + }, + { + "x": 410.37864, + "y": 323.10399 + }, + [ + { + "#": 287 + }, + { + "#": 288 + } + ], + { + "x": -0.0702, + "y": 0.99753 + }, + { + "x": -0.99753, + "y": -0.0702 + }, + { + "id": "7,9,6,7", + "startCol": 7, + "endCol": 9, + "startRow": 6, + "endRow": 7 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 291 + }, + "angle": 0.02614, + "vertices": { + "#": 292 + }, + "position": { + "#": 297 + }, + "force": { + "#": 298 + }, + "torque": 0, + "positionImpulse": { + "#": 299 + }, + "constraintImpulse": { + "#": 300 + }, + "totalContacts": 0, + "speed": 4.36099, + "angularSpeed": 0.00465, + "velocity": { + "#": 301 + }, + "angularVelocity": 0.00512, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 302 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 303 + }, + "bounds": { + "#": 305 + }, + "positionPrev": { + "#": 308 + }, + "anglePrev": 0.02308, + "axes": { + "#": 309 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 290 + }, + "sleepCounter": 0, + "region": { + "#": 312 + } + }, + [ + { + "#": 290 + } + ], + [ + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + } + ], + { + "x": 439.98539, + "y": 326.43082, + "index": 0, + "body": { + "#": 290 + }, + "isInternal": false + }, + { + "x": 489.9683, + "y": 327.73791, + "index": 1, + "body": { + "#": 290 + }, + "isInternal": false + }, + { + "x": 489.44546, + "y": 347.73108, + "index": 2, + "body": { + "#": 290 + }, + "isInternal": false + }, + { + "x": 439.46255, + "y": 346.42399, + "index": 3, + "body": { + "#": 290 + }, + "isInternal": false + }, + { + "x": 464.71542, + "y": 337.08095 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -1.65929, + "y": 4.12607 + }, + { + "category": 1, + "mask": 4294967295, + "group": -3 + }, + { + "visible": true, + "sprite": { + "#": 304 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 306 + }, + "max": { + "#": 307 + } + }, + { + "x": 439.46255, + "y": 326.43082 + }, + { + "x": 489.9683, + "y": 347.73108 + }, + { + "x": 466.36085, + "y": 332.96997 + }, + [ + { + "#": 310 + }, + { + "#": 311 + } + ], + { + "x": -0.02614, + "y": 0.99966 + }, + { + "x": -0.99966, + "y": -0.02614 + }, + { + "id": "9,10,6,7", + "startCol": 9, + "endCol": 10, + "startRow": 6, + "endRow": 7 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 314 + }, + "angle": 0.22111, + "vertices": { + "#": 315 + }, + "position": { + "#": 320 + }, + "force": { + "#": 321 + }, + "torque": 0, + "positionImpulse": { + "#": 322 + }, + "constraintImpulse": { + "#": 323 + }, + "totalContacts": 0, + "speed": 4.43255, + "angularSpeed": 0.01182, + "velocity": { + "#": 324 + }, + "angularVelocity": 0.00651, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 325 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 326 + }, + "bounds": { + "#": 328 + }, + "positionPrev": { + "#": 331 + }, + "anglePrev": 0.21843, + "axes": { + "#": 332 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 313 + }, + "sleepCounter": 0, + "region": { + "#": 335 + } + }, + [ + { + "#": 313 + } + ], + [ + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + } + ], + { + "x": 498.58297, + "y": 320.83623, + "index": 0, + "body": { + "#": 313 + }, + "isInternal": false + }, + { + "x": 547.36571, + "y": 331.80181, + "index": 1, + "body": { + "#": 313 + }, + "isInternal": false + }, + { + "x": 542.97948, + "y": 351.31491, + "index": 2, + "body": { + "#": 313 + }, + "isInternal": false + }, + { + "x": 494.19673, + "y": 340.34932, + "index": 3, + "body": { + "#": 313 + }, + "isInternal": false + }, + { + "x": 520.78122, + "y": 336.07557 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -1.91743, + "y": 3.96301 + }, + { + "category": 1, + "mask": 4294967295, + "group": -3 + }, + { + "visible": true, + "sprite": { + "#": 327 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 329 + }, + "max": { + "#": 330 + } + }, + { + "x": 494.19673, + "y": 320.83623 + }, + { + "x": 547.36571, + "y": 351.31491 + }, + { + "x": 522.73265, + "y": 332.1815 + }, + [ + { + "#": 333 + }, + { + "#": 334 + } + ], + { + "x": -0.21931, + "y": 0.97565 + }, + { + "x": -0.97565, + "y": -0.21931 + }, + { + "id": "10,11,6,7", + "startCol": 10, + "endCol": 11, + "startRow": 6, + "endRow": 7 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 337 + }, + "angle": 0.21884, + "vertices": { + "#": 338 + }, + "position": { + "#": 343 + }, + "force": { + "#": 344 + }, + "torque": 0, + "positionImpulse": { + "#": 345 + }, + "constraintImpulse": { + "#": 346 + }, + "totalContacts": 0, + "speed": 3.16995, + "angularSpeed": 0.00169, + "velocity": { + "#": 347 + }, + "angularVelocity": -0.01302, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 348 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 349 + }, + "bounds": { + "#": 351 + }, + "positionPrev": { + "#": 354 + }, + "anglePrev": 0.23586, + "axes": { + "#": 355 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 336 + }, + "sleepCounter": 0, + "region": { + "#": 358 + } + }, + [ + { + "#": 336 + } + ], + [ + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + } + ], + { + "x": 542.99182, + "y": 323.35324, + "index": 0, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 591.79933, + "y": 334.20805, + "index": 1, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 587.45741, + "y": 353.73105, + "index": 2, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 538.6499, + "y": 342.87625, + "index": 3, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 565.22461, + "y": 338.54215 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.34862, + "y": 2.67733 + }, + { + "category": 1, + "mask": 4294967295, + "group": -3 + }, + { + "visible": true, + "sprite": { + "#": 350 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 352 + }, + "max": { + "#": 353 + } + }, + { + "x": 538.6499, + "y": 323.35324 + }, + { + "x": 591.79933, + "y": 353.73105 + }, + { + "x": 565.34279, + "y": 335.98133 + }, + [ + { + "#": 356 + }, + { + "#": 357 + } + ], + { + "x": -0.2171, + "y": 0.97615 + }, + { + "x": -0.97615, + "y": -0.2171 + }, + { + "id": "11,12,6,7", + "startCol": 11, + "endCol": 12, + "startRow": 6, + "endRow": 7 + }, + [ + { + "#": 360 + }, + { + "#": 364 + }, + { + "#": 368 + }, + { + "#": 372 + }, + { + "#": 376 + }, + { + "#": 380 + }, + { + "#": 384 + }, + { + "#": 388 + } + ], + { + "bodyA": { + "#": 143 + }, + "pointA": { + "#": 361 + }, + "bodyB": { + "#": 198 + }, + "pointB": { + "#": 362 + }, + "stiffness": 0.9, + "length": 10, + "render": { + "#": 363 + }, + "id": 14, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0.25141, + "angleB": 0.01412 + }, + { + "x": 24.21406, + "y": 6.21927 + }, + { + "x": -24.99751, + "y": -0.35301 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 198 + }, + "pointA": { + "#": 365 + }, + "bodyB": { + "#": 221 + }, + "pointB": { + "#": 366 + }, + "stiffness": 0.9, + "length": 10, + "render": { + "#": 367 + }, + "id": 15, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0.01412, + "angleB": 0.00019 + }, + { + "x": 24.99751, + "y": 0.35301 + }, + { + "x": -25, + "y": -0.00469 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 221 + }, + "pointA": { + "#": 369 + }, + "bodyB": { + "#": 244 + }, + "pointB": { + "#": 370 + }, + "stiffness": 0.9, + "length": 10, + "render": { + "#": 371 + }, + "id": 16, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0.00018, + "angleB": -0.01296 + }, + { + "x": 25, + "y": 0.00461 + }, + { + "x": -24.9979, + "y": 0.32407 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 244 + }, + "pointA": { + "#": 373 + }, + "bodyB": { + "#": 267 + }, + "pointB": { + "#": 374 + }, + "stiffness": 0.9, + "length": 10, + "render": { + "#": 375 + }, + "id": 17, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": -0.01294, + "angleB": 0.07092 + }, + { + "x": 24.99791, + "y": -0.32341 + }, + { + "x": -24.93715, + "y": -1.77155 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 267 + }, + "pointA": { + "#": 377 + }, + "bodyB": { + "#": 290 + }, + "pointB": { + "#": 378 + }, + "stiffness": 0.9, + "length": 10, + "render": { + "#": 379 + }, + "id": 18, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0.07026, + "angleB": 0.0282 + }, + { + "x": 24.93832, + "y": 1.75505 + }, + { + "x": -24.99006, + "y": -0.70491 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 290 + }, + "pointA": { + "#": 381 + }, + "bodyB": { + "#": 313 + }, + "pointB": { + "#": 382 + }, + "stiffness": 0.9, + "length": 10, + "render": { + "#": 383 + }, + "id": 19, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0.0282, + "angleB": 0.22731 + }, + { + "x": 24.99006, + "y": 0.70491 + }, + { + "x": -24.3569, + "y": -5.63394 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 313 + }, + "pointA": { + "#": 385 + }, + "bodyB": { + "#": 336 + }, + "pointB": { + "#": 386 + }, + "stiffness": 0.9, + "length": 10, + "render": { + "#": 387 + }, + "id": 20, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0.22494, + "angleB": 0.22665 + }, + { + "x": 24.37019, + "y": 5.57619 + }, + { + "x": -24.36061, + "y": -5.6179 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 336 + }, + "pointA": { + "#": 389 + }, + "bodyB": { + "#": 170 + }, + "pointB": { + "#": 390 + }, + "stiffness": 0.9, + "length": 10, + "render": { + "#": 391 + }, + "id": 21, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0.22285, + "angleB": -0.58285 + }, + { + "x": 24.38181, + "y": 5.52517 + }, + { + "x": -20.8724, + "y": 13.76019 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "id": 22, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 394 + }, + "constraints": { + "#": 975 + }, + "composites": { + "#": 976 + }, + "label": "Stack" + }, + [ + { + "#": 395 + }, + { + "#": 422 + }, + { + "#": 449 + }, + { + "#": 505 + }, + { + "#": 528 + }, + { + "#": 554 + }, + { + "#": 585 + }, + { + "#": 616 + }, + { + "#": 639 + }, + { + "#": 665 + }, + { + "#": 688 + }, + { + "#": 714 + }, + { + "#": 767 + }, + { + "#": 823 + }, + { + "#": 879 + }, + { + "#": 902 + }, + { + "#": 925 + }, + { + "#": 952 + } + ], + { + "id": 23, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 396 + }, + "angle": 0, + "vertices": { + "#": 397 + }, + "position": { + "#": 403 + }, + "force": { + "#": 404 + }, + "torque": 0, + "positionImpulse": { + "#": 405 + }, + "constraintImpulse": { + "#": 406 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 407 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 408 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 409 + }, + "bounds": { + "#": 411 + }, + "positionPrev": { + "#": 414 + }, + "anglePrev": 0, + "axes": { + "#": 415 + }, + "area": 1367.90156, + "mass": 1.3679, + "inverseMass": 0.73105, + "inertia": 1211.43251, + "inverseInertia": 0.00083, + "parent": { + "#": 395 + }, + "sleepCounter": 0, + "region": { + "#": 421 + } + }, + [ + { + "#": 395 + } + ], + [ + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + } + ], + { + "x": 235.19421, + "y": 94.64575, + "index": 0, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 208.37721, + "y": 103.35975, + "index": 1, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 191.80321, + "y": 80.54775, + "index": 2, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 208.37721, + "y": 57.73575, + "index": 3, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 235.19421, + "y": 66.44975, + "index": 4, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 215.78907, + "y": 80.54775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 410 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 412 + }, + "max": { + "#": 413 + } + }, + { + "x": 191.80321, + "y": 57.73575 + }, + { + "x": 235.19421, + "y": 106.26703 + }, + { + "x": 215.78907, + "y": 77.64048 + }, + [ + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + } + ], + { + "x": 0.30904, + "y": 0.95105 + }, + { + "x": -0.80902, + "y": 0.58779 + }, + { + "x": -0.80902, + "y": -0.58779 + }, + { + "x": 0.30904, + "y": -0.95105 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,1,2", + "startCol": 3, + "endCol": 4, + "startRow": 1, + "endRow": 2 + }, + { + "id": 24, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 423 + }, + "angle": 0, + "vertices": { + "#": 424 + }, + "position": { + "#": 430 + }, + "force": { + "#": 431 + }, + "torque": 0, + "positionImpulse": { + "#": 432 + }, + "constraintImpulse": { + "#": 433 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 434 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 435 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 436 + }, + "bounds": { + "#": 438 + }, + "positionPrev": { + "#": 441 + }, + "anglePrev": 0, + "axes": { + "#": 442 + }, + "area": 1613.16158, + "mass": 1.61316, + "inverseMass": 0.6199, + "inertia": 1684.78806, + "inverseInertia": 0.00059, + "parent": { + "#": 422 + }, + "sleepCounter": 0, + "region": { + "#": 448 + } + }, + [ + { + "#": 422 + } + ], + [ + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + } + ], + { + "x": 282.26422, + "y": 97.81875, + "index": 0, + "body": { + "#": 422 + }, + "isInternal": false + }, + { + "x": 253.14222, + "y": 107.28175, + "index": 1, + "body": { + "#": 422 + }, + "isInternal": false + }, + { + "x": 235.14422, + "y": 82.50875, + "index": 2, + "body": { + "#": 422 + }, + "isInternal": false + }, + { + "x": 253.14222, + "y": 57.73575, + "index": 3, + "body": { + "#": 422 + }, + "isInternal": false + }, + { + "x": 282.26422, + "y": 67.19875, + "index": 4, + "body": { + "#": 422 + }, + "isInternal": false + }, + { + "x": 261.19135, + "y": 82.50875 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 437 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 439 + }, + "max": { + "#": 440 + } + }, + { + "x": 235.14422, + "y": 57.73575 + }, + { + "x": 282.26422, + "y": 110.18903 + }, + { + "x": 261.19135, + "y": 79.60148 + }, + [ + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + } + ], + { + "x": 0.30904, + "y": 0.95105 + }, + { + "x": -0.80903, + "y": 0.58777 + }, + { + "x": -0.80903, + "y": -0.58777 + }, + { + "x": 0.30904, + "y": -0.95105 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,1,2", + "startCol": 4, + "endCol": 5, + "startRow": 1, + "endRow": 2 + }, + { + "id": 25, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 450 + }, + "angle": 0, + "vertices": { + "#": 451 + }, + "position": { + "#": 478 + }, + "force": { + "#": 479 + }, + "torque": 0, + "positionImpulse": { + "#": 480 + }, + "constraintImpulse": { + "#": 481 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 482 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 483 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 484 + }, + "circleRadius": 31.39652, + "bounds": { + "#": 486 + }, + "positionPrev": { + "#": 489 + }, + "anglePrev": 0, + "axes": { + "#": 490 + }, + "area": 3066.75815, + "mass": 3.06676, + "inverseMass": 0.32608, + "inertia": 5987.52673, + "inverseInertia": 0.00017, + "parent": { + "#": 449 + }, + "sleepCounter": 0, + "region": { + "#": 504 + } + }, + [ + { + "#": 449 + } + ], + [ + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + } + ], + { + "x": 344.55025, + "y": 95.55809, + "index": 0, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 342.73825, + "y": 102.90709, + "index": 1, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 339.22125, + "y": 109.60909, + "index": 2, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 334.20225, + "y": 115.27509, + "index": 3, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 327.97325, + "y": 119.57409, + "index": 4, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 320.89625, + "y": 122.25809, + "index": 5, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 313.38225, + "y": 123.17109, + "index": 6, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 305.86825, + "y": 122.25809, + "index": 7, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 298.79125, + "y": 119.57409, + "index": 8, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 292.56225, + "y": 115.27509, + "index": 9, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 287.54325, + "y": 109.60909, + "index": 10, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 284.02625, + "y": 102.90709, + "index": 11, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 282.21425, + "y": 95.55809, + "index": 12, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 282.21425, + "y": 87.99009, + "index": 13, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 284.02625, + "y": 80.64109, + "index": 14, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 287.54325, + "y": 73.93909, + "index": 15, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 292.56225, + "y": 68.27309, + "index": 16, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 298.79125, + "y": 63.97409, + "index": 17, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 305.86825, + "y": 61.29009, + "index": 18, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 313.38225, + "y": 60.37709, + "index": 19, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 320.89625, + "y": 61.29009, + "index": 20, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 327.97325, + "y": 63.97409, + "index": 21, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 334.20225, + "y": 68.27309, + "index": 22, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 339.22125, + "y": 73.93909, + "index": 23, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 342.73825, + "y": 80.64109, + "index": 24, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 344.55025, + "y": 87.99009, + "index": 25, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 313.38225, + "y": 91.77409 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00031, + "y": 0.04681 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 485 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 487 + }, + "max": { + "#": 488 + } + }, + { + "x": 282.21425, + "y": 60.37709 + }, + { + "x": 344.55025, + "y": 126.07836 + }, + { + "x": 313.38225, + "y": 88.86682 + }, + [ + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + }, + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + } + ], + { + "x": -0.97092, + "y": -0.23939 + }, + { + "x": -0.88548, + "y": -0.46467 + }, + { + "x": -0.74855, + "y": -0.66308 + }, + { + "x": -0.56801, + "y": -0.82302 + }, + { + "x": -0.35461, + "y": -0.93501 + }, + { + "x": -0.12062, + "y": -0.9927 + }, + { + "x": 0.12062, + "y": -0.9927 + }, + { + "x": 0.35461, + "y": -0.93501 + }, + { + "x": 0.56801, + "y": -0.82302 + }, + { + "x": 0.74855, + "y": -0.66308 + }, + { + "x": 0.88548, + "y": -0.46467 + }, + { + "x": 0.97092, + "y": -0.23939 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,7,1,2", + "startCol": 5, + "endCol": 7, + "startRow": 1, + "endRow": 2 + }, + { + "id": 26, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 506 + }, + "angle": 0, + "vertices": { + "#": 507 + }, + "position": { + "#": 511 + }, + "force": { + "#": 512 + }, + "torque": 0, + "positionImpulse": { + "#": 513 + }, + "constraintImpulse": { + "#": 514 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 515 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 516 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 517 + }, + "bounds": { + "#": 519 + }, + "positionPrev": { + "#": 522 + }, + "anglePrev": 0, + "axes": { + "#": 523 + }, + "area": 1045.25873, + "mass": 1.04526, + "inverseMass": 0.9567, + "inertia": 841.05756, + "inverseInertia": 0.00119, + "parent": { + "#": 505 + }, + "sleepCounter": 0, + "region": { + "#": 527 + } + }, + [ + { + "#": 505 + } + ], + [ + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + } + ], + { + "x": 385.37695, + "y": 105.7797, + "index": 0, + "body": { + "#": 505 + }, + "isInternal": false + }, + { + "x": 342.82795, + "y": 81.2137, + "index": 1, + "body": { + "#": 505 + }, + "isInternal": false + }, + { + "x": 385.37695, + "y": 56.6477, + "index": 2, + "body": { + "#": 505 + }, + "isInternal": false + }, + { + "x": 371.19395, + "y": 81.2137 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.01058, + "y": 0.00261 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 518 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 520 + }, + "max": { + "#": 521 + } + }, + { + "x": 342.82795, + "y": 56.6477 + }, + { + "x": 385.37695, + "y": 108.68697 + }, + { + "x": 371.19395, + "y": 78.30643 + }, + [ + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + } + ], + { + "x": -0.5, + "y": 0.86602 + }, + { + "x": -0.5, + "y": -0.86602 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,1,2", + "startCol": 7, + "endCol": 8, + "startRow": 1, + "endRow": 2 + }, + { + "id": 27, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 529 + }, + "angle": 0, + "vertices": { + "#": 530 + }, + "position": { + "#": 537 + }, + "force": { + "#": 538 + }, + "torque": 0, + "positionImpulse": { + "#": 539 + }, + "constraintImpulse": { + "#": 540 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 541 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 542 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 543 + }, + "bounds": { + "#": 545 + }, + "positionPrev": { + "#": 548 + }, + "anglePrev": 0, + "axes": { + "#": 549 + }, + "area": 1661.58507, + "mass": 1.66159, + "inverseMass": 0.60183, + "inertia": 1771.09568, + "inverseInertia": 0.00056, + "parent": { + "#": 528 + }, + "sleepCounter": 0, + "region": { + "#": 553 + } + }, + [ + { + "#": 528 + } + ], + [ + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + } + ], + { + "x": 430.45238, + "y": 95.66975, + "index": 0, + "body": { + "#": 528 + }, + "isInternal": false + }, + { + "x": 408.55138, + "y": 108.31375, + "index": 1, + "body": { + "#": 528 + }, + "isInternal": false + }, + { + "x": 386.65038, + "y": 95.66975, + "index": 2, + "body": { + "#": 528 + }, + "isInternal": false + }, + { + "x": 386.65038, + "y": 70.37975, + "index": 3, + "body": { + "#": 528 + }, + "isInternal": false + }, + { + "x": 408.55138, + "y": 57.73575, + "index": 4, + "body": { + "#": 528 + }, + "isInternal": false + }, + { + "x": 430.45238, + "y": 70.37975, + "index": 5, + "body": { + "#": 528 + }, + "isInternal": false + }, + { + "x": 408.55138, + "y": 83.02475 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 544 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 546 + }, + "max": { + "#": 547 + } + }, + { + "x": 386.65038, + "y": 57.73575 + }, + { + "x": 430.45238, + "y": 108.31375 + }, + { + "x": 408.55138, + "y": 80.11748 + }, + [ + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + } + ], + { + "x": -0.49998, + "y": -0.86603 + }, + { + "x": 0.49998, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,1,2", + "startCol": 8, + "endCol": 8, + "startRow": 1, + "endRow": 2 + }, + { + "id": 28, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 555 + }, + "angle": 0, + "vertices": { + "#": 556 + }, + "position": { + "#": 564 + }, + "force": { + "#": 565 + }, + "torque": 0, + "positionImpulse": { + "#": 566 + }, + "constraintImpulse": { + "#": 567 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 568 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 569 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 570 + }, + "bounds": { + "#": 572 + }, + "positionPrev": { + "#": 575 + }, + "anglePrev": 0, + "axes": { + "#": 576 + }, + "area": 2545.38424, + "mass": 2.54538, + "inverseMass": 0.39287, + "inertia": 4141.08002, + "inverseInertia": 0.00024, + "parent": { + "#": 554 + }, + "sleepCounter": 0, + "region": { + "#": 584 + } + }, + [ + { + "#": 554 + } + ], + [ + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + } + ], + { + "x": 497.46742, + "y": 100.70275, + "index": 0, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 476.77542, + "y": 117.20375, + "index": 1, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 450.97242, + "y": 111.31475, + "index": 2, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 439.48942, + "y": 87.46975, + "index": 3, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 450.97242, + "y": 63.62475, + "index": 4, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 476.77542, + "y": 57.73575, + "index": 5, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 497.46742, + "y": 74.23675, + "index": 6, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 469.98853, + "y": 87.46975 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.35052, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 571 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 573 + }, + "max": { + "#": 574 + } + }, + { + "x": 439.48942, + "y": 57.73575 + }, + { + "x": 497.46742, + "y": 120.11103 + }, + { + "x": 469.98853, + "y": 84.56248 + }, + [ + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + } + ], + { + "x": 0.62348, + "y": 0.78184 + }, + { + "x": -0.22251, + "y": 0.97493 + }, + { + "x": -0.90097, + "y": 0.43388 + }, + { + "x": -0.90097, + "y": -0.43388 + }, + { + "x": -0.22251, + "y": -0.97493 + }, + { + "x": 0.62348, + "y": -0.78184 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,1,2", + "startCol": 9, + "endCol": 10, + "startRow": 1, + "endRow": 2 + }, + { + "id": 29, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 586 + }, + "angle": 0, + "vertices": { + "#": 587 + }, + "position": { + "#": 595 + }, + "force": { + "#": 596 + }, + "torque": 0, + "positionImpulse": { + "#": 597 + }, + "constraintImpulse": { + "#": 598 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 599 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 600 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 601 + }, + "bounds": { + "#": 603 + }, + "positionPrev": { + "#": 606 + }, + "anglePrev": 0, + "axes": { + "#": 607 + }, + "area": 2860.09076, + "mass": 2.86009, + "inverseMass": 0.34964, + "inertia": 5228.37286, + "inverseInertia": 0.00019, + "parent": { + "#": 585 + }, + "sleepCounter": 0, + "region": { + "#": 615 + } + }, + [ + { + "#": 585 + } + ], + [ + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + } + ], + { + "x": 259.85703, + "y": 166.07575, + "index": 0, + "body": { + "#": 585 + }, + "isInternal": false + }, + { + "x": 237.92303, + "y": 183.56775, + "index": 1, + "body": { + "#": 585 + }, + "isInternal": false + }, + { + "x": 210.57203, + "y": 177.32475, + "index": 2, + "body": { + "#": 585 + }, + "isInternal": false + }, + { + "x": 198.39903, + "y": 152.04875, + "index": 3, + "body": { + "#": 585 + }, + "isInternal": false + }, + { + "x": 210.57203, + "y": 126.77275, + "index": 4, + "body": { + "#": 585 + }, + "isInternal": false + }, + { + "x": 237.92303, + "y": 120.52975, + "index": 5, + "body": { + "#": 585 + }, + "isInternal": false + }, + { + "x": 259.85703, + "y": 138.02175, + "index": 6, + "body": { + "#": 585 + }, + "isInternal": false + }, + { + "x": 230.729, + "y": 152.04875 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 602 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 604 + }, + "max": { + "#": 605 + } + }, + { + "x": 198.39903, + "y": 120.52975 + }, + { + "x": 259.85703, + "y": 183.56775 + }, + { + "x": 230.729, + "y": 149.14148 + }, + [ + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + }, + { + "#": 614 + } + ], + { + "x": 0.62349, + "y": 0.78183 + }, + { + "x": -0.22253, + "y": 0.97493 + }, + { + "x": -0.90096, + "y": 0.4339 + }, + { + "x": -0.90096, + "y": -0.4339 + }, + { + "x": -0.22253, + "y": -0.97493 + }, + { + "x": 0.62349, + "y": -0.78183 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,2,3", + "startCol": 4, + "endCol": 5, + "startRow": 2, + "endRow": 3 + }, + { + "id": 30, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 617 + }, + "angle": 0, + "vertices": { + "#": 618 + }, + "position": { + "#": 623 + }, + "force": { + "#": 624 + }, + "torque": 0, + "positionImpulse": { + "#": 625 + }, + "constraintImpulse": { + "#": 626 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 627 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 628 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 629 + }, + "bounds": { + "#": 631 + }, + "positionPrev": { + "#": 634 + }, + "anglePrev": 0, + "axes": { + "#": 635 + }, + "area": 3059.85986, + "mass": 3.05986, + "inverseMass": 0.32681, + "inertia": 6241.82823, + "inverseInertia": 0.00016, + "parent": { + "#": 616 + }, + "sleepCounter": 0, + "region": { + "#": 638 + } + }, + [ + { + "#": 616 + } + ], + [ + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + } + ], + { + "x": 315.17303, + "y": 180.36774, + "index": 0, + "body": { + "#": 616 + }, + "isInternal": false + }, + { + "x": 259.85703, + "y": 180.36774, + "index": 1, + "body": { + "#": 616 + }, + "isInternal": false + }, + { + "x": 259.85703, + "y": 125.05174, + "index": 2, + "body": { + "#": 616 + }, + "isInternal": false + }, + { + "x": 315.17303, + "y": 125.05174, + "index": 3, + "body": { + "#": 616 + }, + "isInternal": false + }, + { + "x": 287.51503, + "y": 152.70974 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.10879 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 630 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 632 + }, + "max": { + "#": 633 + } + }, + { + "x": 259.85703, + "y": 125.05174 + }, + { + "x": 315.17303, + "y": 183.27501 + }, + { + "x": 287.51503, + "y": 149.80247 + }, + [ + { + "#": 636 + }, + { + "#": 637 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,2,3", + "startCol": 5, + "endCol": 6, + "startRow": 2, + "endRow": 3 + }, + { + "id": 31, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 640 + }, + "angle": 0, + "vertices": { + "#": 641 + }, + "position": { + "#": 648 + }, + "force": { + "#": 649 + }, + "torque": 0, + "positionImpulse": { + "#": 650 + }, + "constraintImpulse": { + "#": 651 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 652 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 653 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 654 + }, + "bounds": { + "#": 656 + }, + "positionPrev": { + "#": 659 + }, + "anglePrev": 0, + "axes": { + "#": 660 + }, + "area": 3989.26286, + "mass": 3.98926, + "inverseMass": 0.25067, + "inertia": 10208.97571, + "inverseInertia": 0.0001, + "parent": { + "#": 639 + }, + "sleepCounter": 0, + "region": { + "#": 664 + } + }, + [ + { + "#": 639 + } + ], + [ + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + } + ], + { + "x": 383.04303, + "y": 179.30775, + "index": 0, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 349.10803, + "y": 198.89975, + "index": 1, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 315.17303, + "y": 179.30775, + "index": 2, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 315.17303, + "y": 140.12175, + "index": 3, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 349.10803, + "y": 120.52975, + "index": 4, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 383.04303, + "y": 140.12175, + "index": 5, + "body": { + "#": 639 + }, + "isInternal": false + }, + { + "x": 349.10803, + "y": 159.71475 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 655 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 657 + }, + "max": { + "#": 658 + } + }, + { + "x": 315.17303, + "y": 120.52975 + }, + { + "x": 383.04303, + "y": 198.89975 + }, + { + "x": 349.10803, + "y": 156.80748 + }, + [ + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + } + ], + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": 0.49999, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,2,4", + "startCol": 6, + "endCol": 7, + "startRow": 2, + "endRow": 4 + }, + { + "id": 32, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 666 + }, + "angle": 0, + "vertices": { + "#": 667 + }, + "position": { + "#": 672 + }, + "force": { + "#": 673 + }, + "torque": 0, + "positionImpulse": { + "#": 674 + }, + "constraintImpulse": { + "#": 675 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 676 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 677 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 678 + }, + "bounds": { + "#": 680 + }, + "positionPrev": { + "#": 683 + }, + "anglePrev": 0, + "axes": { + "#": 684 + }, + "area": 871.66658, + "mass": 0.87167, + "inverseMass": 1.14723, + "inertia": 506.53508, + "inverseInertia": 0.00197, + "parent": { + "#": 665 + }, + "sleepCounter": 0, + "region": { + "#": 687 + } + }, + [ + { + "#": 665 + } + ], + [ + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + } + ], + { + "x": 412.56703, + "y": 150.05375, + "index": 0, + "body": { + "#": 665 + }, + "isInternal": false + }, + { + "x": 383.04303, + "y": 150.05375, + "index": 1, + "body": { + "#": 665 + }, + "isInternal": false + }, + { + "x": 383.04303, + "y": 120.52975, + "index": 2, + "body": { + "#": 665 + }, + "isInternal": false + }, + { + "x": 412.56703, + "y": 120.52975, + "index": 3, + "body": { + "#": 665 + }, + "isInternal": false + }, + { + "x": 397.80503, + "y": 135.29175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 679 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 681 + }, + "max": { + "#": 682 + } + }, + { + "x": 383.04303, + "y": 120.52975 + }, + { + "x": 412.56703, + "y": 150.05375 + }, + { + "x": 397.80503, + "y": 132.38448 + }, + [ + { + "#": 685 + }, + { + "#": 686 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,2,3", + "startCol": 7, + "endCol": 8, + "startRow": 2, + "endRow": 3 + }, + { + "id": 33, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 689 + }, + "angle": 0, + "vertices": { + "#": 690 + }, + "position": { + "#": 697 + }, + "force": { + "#": 698 + }, + "torque": 0, + "positionImpulse": { + "#": 699 + }, + "constraintImpulse": { + "#": 700 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 701 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 702 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 703 + }, + "bounds": { + "#": 705 + }, + "positionPrev": { + "#": 708 + }, + "anglePrev": 0, + "axes": { + "#": 709 + }, + "area": 2747.94639, + "mass": 2.74795, + "inverseMass": 0.36391, + "inertia": 4844.10306, + "inverseInertia": 0.00021, + "parent": { + "#": 688 + }, + "sleepCounter": 0, + "region": { + "#": 713 + } + }, + [ + { + "#": 688 + } + ], + [ + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + } + ], + { + "x": 468.89703, + "y": 169.31275, + "index": 0, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 440.73203, + "y": 185.57375, + "index": 1, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 412.56703, + "y": 169.31275, + "index": 2, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 412.56703, + "y": 136.79075, + "index": 3, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 440.73203, + "y": 120.52975, + "index": 4, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 468.89703, + "y": 136.79075, + "index": 5, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 440.73203, + "y": 153.05175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 704 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 706 + }, + "max": { + "#": 707 + } + }, + { + "x": 412.56703, + "y": 120.52975 + }, + { + "x": 468.89703, + "y": 185.57375 + }, + { + "x": 440.73203, + "y": 150.14448 + }, + [ + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + } + ], + { + "x": -0.5, + "y": -0.86603 + }, + { + "x": 0.5, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,2,3", + "startCol": 8, + "endCol": 9, + "startRow": 2, + "endRow": 3 + }, + { + "id": 34, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 715 + }, + "angle": 0, + "vertices": { + "#": 716 + }, + "position": { + "#": 741 + }, + "force": { + "#": 742 + }, + "torque": 0, + "positionImpulse": { + "#": 743 + }, + "constraintImpulse": { + "#": 744 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 745 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 746 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 747 + }, + "circleRadius": 22.45439, + "bounds": { + "#": 749 + }, + "positionPrev": { + "#": 752 + }, + "anglePrev": 0, + "axes": { + "#": 753 + }, + "area": 1565.91965, + "mass": 1.56592, + "inverseMass": 0.6386, + "inertia": 1561.0992, + "inverseInertia": 0.00064, + "parent": { + "#": 714 + }, + "sleepCounter": 0, + "region": { + "#": 766 + } + }, + [ + { + "#": 714 + } + ], + [ + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + } + ], + { + "x": 513.42103, + "y": 145.72275, + "index": 0, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 511.90403, + "y": 151.38475, + "index": 1, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 508.97303, + "y": 156.46075, + "index": 2, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 504.82803, + "y": 160.60575, + "index": 3, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 499.75203, + "y": 163.53675, + "index": 4, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 494.09003, + "y": 165.05375, + "index": 5, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 488.22803, + "y": 165.05375, + "index": 6, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 482.56603, + "y": 163.53675, + "index": 7, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 477.49003, + "y": 160.60575, + "index": 8, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 473.34503, + "y": 156.46075, + "index": 9, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 470.41403, + "y": 151.38475, + "index": 10, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 468.89703, + "y": 145.72275, + "index": 11, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 468.89703, + "y": 139.86075, + "index": 12, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 470.41403, + "y": 134.19875, + "index": 13, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 473.34503, + "y": 129.12275, + "index": 14, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 477.49003, + "y": 124.97775, + "index": 15, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 482.56603, + "y": 122.04675, + "index": 16, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 488.22803, + "y": 120.52975, + "index": 17, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 494.09003, + "y": 120.52975, + "index": 18, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 499.75203, + "y": 122.04675, + "index": 19, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 504.82803, + "y": 124.97775, + "index": 20, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 508.97303, + "y": 129.12275, + "index": 21, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 511.90403, + "y": 134.19875, + "index": 22, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 513.42103, + "y": 139.86075, + "index": 23, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 491.15903, + "y": 142.79175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 748 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 750 + }, + "max": { + "#": 751 + } + }, + { + "x": 468.89703, + "y": 120.52975 + }, + { + "x": 513.42103, + "y": 165.05375 + }, + { + "x": 491.15903, + "y": 139.88448 + }, + [ + { + "#": 754 + }, + { + "#": 755 + }, + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + } + ], + { + "x": -0.96593, + "y": -0.2588 + }, + { + "x": -0.866, + "y": -0.50005 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.50005, + "y": -0.866 + }, + { + "x": -0.2588, + "y": -0.96593 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.2588, + "y": -0.96593 + }, + { + "x": 0.50005, + "y": -0.866 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.866, + "y": -0.50005 + }, + { + "x": 0.96593, + "y": -0.2588 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,2,3", + "startCol": 9, + "endCol": 10, + "startRow": 2, + "endRow": 3 + }, + { + "id": 35, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 768 + }, + "angle": 0, + "vertices": { + "#": 769 + }, + "position": { + "#": 796 + }, + "force": { + "#": 797 + }, + "torque": 0, + "positionImpulse": { + "#": 798 + }, + "constraintImpulse": { + "#": 799 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 800 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 801 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 802 + }, + "circleRadius": 39.00712, + "bounds": { + "#": 804 + }, + "positionPrev": { + "#": 807 + }, + "anglePrev": 0, + "axes": { + "#": 808 + }, + "area": 4733.73982, + "mass": 4.73374, + "inverseMass": 0.21125, + "inertia": 14265.8344, + "inverseInertia": 0.00007, + "parent": { + "#": 767 + }, + "sleepCounter": 0, + "region": { + "#": 822 + } + }, + [ + { + "#": 767 + } + ], + [ + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + }, + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + }, + { + "#": 777 + }, + { + "#": 778 + }, + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + }, + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + } + ], + { + "x": 244.81741, + "y": 242.60875, + "index": 0, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 242.56641, + "y": 251.73875, + "index": 1, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 238.19641, + "y": 260.06575, + "index": 2, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 231.96141, + "y": 267.10375, + "index": 3, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 224.22241, + "y": 272.44575, + "index": 4, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 215.42941, + "y": 275.78075, + "index": 5, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 206.09441, + "y": 276.91375, + "index": 6, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 196.75941, + "y": 275.78075, + "index": 7, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 187.96641, + "y": 272.44575, + "index": 8, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 180.22741, + "y": 267.10375, + "index": 9, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 173.99241, + "y": 260.06575, + "index": 10, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 169.62241, + "y": 251.73875, + "index": 11, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 167.37141, + "y": 242.60875, + "index": 12, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 167.37141, + "y": 233.20475, + "index": 13, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 169.62241, + "y": 224.07475, + "index": 14, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 173.99241, + "y": 215.74775, + "index": 15, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 180.22741, + "y": 208.70975, + "index": 16, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 187.96641, + "y": 203.36775, + "index": 17, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 196.75941, + "y": 200.03275, + "index": 18, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 206.09441, + "y": 198.89975, + "index": 19, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 215.42941, + "y": 200.03275, + "index": 20, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 224.22241, + "y": 203.36775, + "index": 21, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 231.96141, + "y": 208.70975, + "index": 22, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 238.19641, + "y": 215.74775, + "index": 23, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 242.56641, + "y": 224.07475, + "index": 24, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 244.81741, + "y": 233.20475, + "index": 25, + "body": { + "#": 767 + }, + "isInternal": false + }, + { + "x": 206.09441, + "y": 237.90675 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.78498, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 803 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 805 + }, + "max": { + "#": 806 + } + }, + { + "x": 167.37141, + "y": 198.89975 + }, + { + "x": 244.81741, + "y": 279.82103 + }, + { + "x": 206.09441, + "y": 234.99948 + }, + [ + { + "#": 809 + }, + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + }, + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + } + ], + { + "x": -0.97093, + "y": -0.23938 + }, + { + "x": -0.88547, + "y": -0.46469 + }, + { + "x": -0.74852, + "y": -0.66312 + }, + { + "x": -0.56808, + "y": -0.82298 + }, + { + "x": -0.35463, + "y": -0.93501 + }, + { + "x": -0.12049, + "y": -0.99271 + }, + { + "x": 0.12049, + "y": -0.99271 + }, + { + "x": 0.35463, + "y": -0.93501 + }, + { + "x": 0.56808, + "y": -0.82298 + }, + { + "x": 0.74852, + "y": -0.66312 + }, + { + "x": 0.88547, + "y": -0.46469 + }, + { + "x": 0.97093, + "y": -0.23938 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,5,4,5", + "startCol": 3, + "endCol": 5, + "startRow": 4, + "endRow": 5 + }, + { + "id": 36, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 824 + }, + "angle": 0, + "vertices": { + "#": 825 + }, + "position": { + "#": 852 + }, + "force": { + "#": 853 + }, + "torque": 0, + "positionImpulse": { + "#": 854 + }, + "constraintImpulse": { + "#": 855 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 856 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 857 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 858 + }, + "circleRadius": 30.51355, + "bounds": { + "#": 860 + }, + "positionPrev": { + "#": 863 + }, + "anglePrev": 0, + "axes": { + "#": 864 + }, + "area": 2896.676, + "mass": 2.89668, + "inverseMass": 0.34522, + "inertia": 5341.80774, + "inverseInertia": 0.00019, + "parent": { + "#": 823 + }, + "sleepCounter": 0, + "region": { + "#": 878 + } + }, + [ + { + "#": 823 + } + ], + [ + { + "#": 826 + }, + { + "#": 827 + }, + { + "#": 828 + }, + { + "#": 829 + }, + { + "#": 830 + }, + { + "#": 831 + }, + { + "#": 832 + }, + { + "#": 833 + }, + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + } + ], + { + "x": 326.33784, + "y": 239.99288, + "index": 0, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 324.57784, + "y": 247.13488, + "index": 1, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 321.15884, + "y": 253.64888, + "index": 2, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 316.28084, + "y": 259.15488, + "index": 3, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 310.22684, + "y": 263.33288, + "index": 4, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 303.34884, + "y": 265.94188, + "index": 5, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 296.04684, + "y": 266.82888, + "index": 6, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 288.74484, + "y": 265.94188, + "index": 7, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 281.86684, + "y": 263.33288, + "index": 8, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 275.81284, + "y": 259.15488, + "index": 9, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 270.93484, + "y": 253.64888, + "index": 10, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 267.51584, + "y": 247.13488, + "index": 11, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 265.75584, + "y": 239.99288, + "index": 12, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 265.75584, + "y": 232.63688, + "index": 13, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 267.51584, + "y": 225.49488, + "index": 14, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 270.93484, + "y": 218.98088, + "index": 15, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 275.81284, + "y": 213.47488, + "index": 16, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 281.86684, + "y": 209.29688, + "index": 17, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 288.74484, + "y": 206.68788, + "index": 18, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 296.04684, + "y": 205.80088, + "index": 19, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 303.34884, + "y": 206.68788, + "index": 20, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 310.22684, + "y": 209.29688, + "index": 21, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 316.28084, + "y": 213.47488, + "index": 22, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 321.15884, + "y": 218.98088, + "index": 23, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 324.57784, + "y": 225.49488, + "index": 24, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 326.33784, + "y": 232.63688, + "index": 25, + "body": { + "#": 823 + }, + "isInternal": false + }, + { + "x": 296.04684, + "y": 236.31488 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.13383, + "y": 0.1297 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 859 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 861 + }, + "max": { + "#": 862 + } + }, + { + "x": 265.75584, + "y": 205.80088 + }, + { + "x": 326.33784, + "y": 269.73615 + }, + { + "x": 296.04684, + "y": 233.40761 + }, + [ + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + }, + { + "#": 869 + }, + { + "#": 870 + }, + { + "#": 871 + }, + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + }, + { + "#": 877 + } + ], + { + "x": -0.97095, + "y": -0.23927 + }, + { + "x": -0.88545, + "y": -0.46474 + }, + { + "x": -0.7485, + "y": -0.66313 + }, + { + "x": -0.56799, + "y": -0.82303 + }, + { + "x": -0.35467, + "y": -0.93499 + }, + { + "x": -0.12059, + "y": -0.9927 + }, + { + "x": 0.12059, + "y": -0.9927 + }, + { + "x": 0.35467, + "y": -0.93499 + }, + { + "x": 0.56799, + "y": -0.82303 + }, + { + "x": 0.7485, + "y": -0.66313 + }, + { + "x": 0.88545, + "y": -0.46474 + }, + { + "x": 0.97095, + "y": -0.23927 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,4,5", + "startCol": 5, + "endCol": 6, + "startRow": 4, + "endRow": 5 + }, + { + "id": 37, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 880 + }, + "angle": 0, + "vertices": { + "#": 881 + }, + "position": { + "#": 885 + }, + "force": { + "#": 886 + }, + "torque": 0, + "positionImpulse": { + "#": 887 + }, + "constraintImpulse": { + "#": 888 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 889 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 890 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 891 + }, + "bounds": { + "#": 893 + }, + "positionPrev": { + "#": 896 + }, + "anglePrev": 0, + "axes": { + "#": 897 + }, + "area": 831.99124, + "mass": 0.83199, + "inverseMass": 1.20194, + "inertia": 532.86306, + "inverseInertia": 0.00188, + "parent": { + "#": 879 + }, + "sleepCounter": 0, + "region": { + "#": 901 + } + }, + [ + { + "#": 879 + } + ], + [ + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + } + ], + { + "x": 367.52312, + "y": 241.72714, + "index": 0, + "body": { + "#": 879 + }, + "isInternal": false + }, + { + "x": 329.56212, + "y": 219.81014, + "index": 1, + "body": { + "#": 879 + }, + "isInternal": false + }, + { + "x": 367.52312, + "y": 197.89314, + "index": 2, + "body": { + "#": 879 + }, + "isInternal": false + }, + { + "x": 354.86945, + "y": 219.81014 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 892 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 894 + }, + "max": { + "#": 895 + } + }, + { + "x": 329.56212, + "y": 197.89314 + }, + { + "x": 367.52312, + "y": 241.72714 + }, + { + "x": 354.86945, + "y": 216.90287 + }, + [ + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + } + ], + { + "x": -0.5, + "y": 0.86602 + }, + { + "x": -0.5, + "y": -0.86602 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,4,5", + "startCol": 6, + "endCol": 7, + "startRow": 4, + "endRow": 5 + }, + { + "id": 38, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 903 + }, + "angle": 0, + "vertices": { + "#": 904 + }, + "position": { + "#": 908 + }, + "force": { + "#": 909 + }, + "torque": 0, + "positionImpulse": { + "#": 910 + }, + "constraintImpulse": { + "#": 911 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 912 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 913 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 914 + }, + "bounds": { + "#": 916 + }, + "positionPrev": { + "#": 919 + }, + "anglePrev": 0, + "axes": { + "#": 920 + }, + "area": 1307.09765, + "mass": 1.3071, + "inverseMass": 0.76505, + "inertia": 1315.2072, + "inverseInertia": 0.00076, + "parent": { + "#": 902 + }, + "sleepCounter": 0, + "region": { + "#": 924 + } + }, + [ + { + "#": 902 + } + ], + [ + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + } + ], + { + "x": 421.5011, + "y": 253.84175, + "index": 0, + "body": { + "#": 902 + }, + "isInternal": false + }, + { + "x": 373.9201, + "y": 226.37075, + "index": 1, + "body": { + "#": 902 + }, + "isInternal": false + }, + { + "x": 421.5011, + "y": 198.89975, + "index": 2, + "body": { + "#": 902 + }, + "isInternal": false + }, + { + "x": 405.64076, + "y": 226.37075 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.16893, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 915 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 917 + }, + "max": { + "#": 918 + } + }, + { + "x": 373.9201, + "y": 198.89975 + }, + { + "x": 421.5011, + "y": 256.74903 + }, + { + "x": 405.64076, + "y": 223.46348 + }, + [ + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + } + ], + { + "x": -0.5, + "y": 0.86602 + }, + { + "x": -0.5, + "y": -0.86602 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,4,5", + "startCol": 7, + "endCol": 8, + "startRow": 4, + "endRow": 5 + }, + { + "id": 39, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 926 + }, + "angle": 0, + "vertices": { + "#": 927 + }, + "position": { + "#": 933 + }, + "force": { + "#": 934 + }, + "torque": 0, + "positionImpulse": { + "#": 935 + }, + "constraintImpulse": { + "#": 936 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 937 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 938 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 939 + }, + "bounds": { + "#": 941 + }, + "positionPrev": { + "#": 944 + }, + "anglePrev": 0, + "axes": { + "#": 945 + }, + "area": 3449.27664, + "mass": 3.44928, + "inverseMass": 0.28992, + "inertia": 7702.74624, + "inverseInertia": 0.00013, + "parent": { + "#": 925 + }, + "sleepCounter": 0, + "region": { + "#": 951 + } + }, + [ + { + "#": 925 + } + ], + [ + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + }, + { + "#": 932 + } + ], + { + "x": 490.85104, + "y": 257.51175, + "index": 0, + "body": { + "#": 925 + }, + "isInternal": false + }, + { + "x": 448.26704, + "y": 271.34775, + "index": 1, + "body": { + "#": 925 + }, + "isInternal": false + }, + { + "x": 421.94904, + "y": 235.12375, + "index": 2, + "body": { + "#": 925 + }, + "isInternal": false + }, + { + "x": 448.26704, + "y": 198.89975, + "index": 3, + "body": { + "#": 925 + }, + "isInternal": false + }, + { + "x": 490.85104, + "y": 212.73575, + "index": 4, + "body": { + "#": 925 + }, + "isInternal": false + }, + { + "x": 460.03714, + "y": 235.12375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.189, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 940 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 942 + }, + "max": { + "#": 943 + } + }, + { + "x": 421.94904, + "y": 198.89975 + }, + { + "x": 490.85104, + "y": 274.25503 + }, + { + "x": 460.03714, + "y": 232.21648 + }, + [ + { + "#": 946 + }, + { + "#": 947 + }, + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + } + ], + { + "x": 0.30901, + "y": 0.95106 + }, + { + "x": -0.80902, + "y": 0.58778 + }, + { + "x": -0.80902, + "y": -0.58778 + }, + { + "x": 0.30901, + "y": -0.95106 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,10,4,5", + "startCol": 8, + "endCol": 10, + "startRow": 4, + "endRow": 5 + }, + { + "id": 40, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 953 + }, + "angle": 0, + "vertices": { + "#": 954 + }, + "position": { + "#": 959 + }, + "force": { + "#": 960 + }, + "torque": 0, + "positionImpulse": { + "#": 961 + }, + "constraintImpulse": { + "#": 962 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 963 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 964 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 965 + }, + "bounds": { + "#": 967 + }, + "positionPrev": { + "#": 970 + }, + "anglePrev": 0, + "axes": { + "#": 971 + }, + "area": 2144.24564, + "mass": 2.14425, + "inverseMass": 0.46636, + "inertia": 3065.1929, + "inverseInertia": 0.00033, + "parent": { + "#": 952 + }, + "sleepCounter": 0, + "region": { + "#": 974 + } + }, + [ + { + "#": 952 + } + ], + [ + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + } + ], + { + "x": 565.41523, + "y": 245.20575, + "index": 0, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 519.10923, + "y": 245.20575, + "index": 1, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 519.10923, + "y": 198.89975, + "index": 2, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 565.41523, + "y": 198.89975, + "index": 3, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 542.26223, + "y": 222.05275 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1.07134, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 966 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 968 + }, + "max": { + "#": 969 + } + }, + { + "x": 519.10923, + "y": 198.89975 + }, + { + "x": 565.41523, + "y": 248.11303 + }, + { + "x": 542.26223, + "y": 219.14548 + }, + [ + { + "#": 972 + }, + { + "#": 973 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,4,5", + "startCol": 10, + "endCol": 11, + "startRow": 4, + "endRow": 5 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 979 + }, + "max": { + "#": 980 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/broadphase/broadphase-0.json b/test/node/refs/broadphase/broadphase-0.json new file mode 100644 index 00000000..55d7d1d2 --- /dev/null +++ b/test/node/refs/broadphase/broadphase-0.json @@ -0,0 +1,25272 @@ +[ + { + "id": 12, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 90 + }, + "composites": { + "#": 91 + }, + "label": "World", + "gravity": { + "#": 2721 + }, + "bounds": { + "#": 2722 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [ + { + "#": 92 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 93 + }, + "constraints": { + "#": 2719 + }, + "composites": { + "#": 2720 + }, + "label": "Stack" + }, + [ + { + "#": 94 + }, + { + "#": 116 + }, + { + "#": 138 + }, + { + "#": 160 + }, + { + "#": 182 + }, + { + "#": 207 + }, + { + "#": 233 + }, + { + "#": 288 + }, + { + "#": 310 + }, + { + "#": 332 + }, + { + "#": 354 + }, + { + "#": 376 + }, + { + "#": 398 + }, + { + "#": 428 + }, + { + "#": 450 + }, + { + "#": 476 + }, + { + "#": 498 + }, + { + "#": 520 + }, + { + "#": 575 + }, + { + "#": 597 + }, + { + "#": 619 + }, + { + "#": 674 + }, + { + "#": 696 + }, + { + "#": 718 + }, + { + "#": 740 + }, + { + "#": 765 + }, + { + "#": 790 + }, + { + "#": 812 + }, + { + "#": 837 + }, + { + "#": 859 + }, + { + "#": 884 + }, + { + "#": 906 + }, + { + "#": 928 + }, + { + "#": 950 + }, + { + "#": 978 + }, + { + "#": 1000 + }, + { + "#": 1022 + }, + { + "#": 1044 + }, + { + "#": 1066 + }, + { + "#": 1088 + }, + { + "#": 1143 + }, + { + "#": 1165 + }, + { + "#": 1195 + }, + { + "#": 1217 + }, + { + "#": 1247 + }, + { + "#": 1269 + }, + { + "#": 1291 + }, + { + "#": 1313 + }, + { + "#": 1335 + }, + { + "#": 1365 + }, + { + "#": 1387 + }, + { + "#": 1409 + }, + { + "#": 1431 + }, + { + "#": 1453 + }, + { + "#": 1508 + }, + { + "#": 1530 + }, + { + "#": 1585 + }, + { + "#": 1607 + }, + { + "#": 1637 + }, + { + "#": 1659 + }, + { + "#": 1681 + }, + { + "#": 1703 + }, + { + "#": 1725 + }, + { + "#": 1751 + }, + { + "#": 1773 + }, + { + "#": 1795 + }, + { + "#": 1817 + }, + { + "#": 1843 + }, + { + "#": 1865 + }, + { + "#": 1887 + }, + { + "#": 1909 + }, + { + "#": 1964 + }, + { + "#": 2019 + }, + { + "#": 2045 + }, + { + "#": 2067 + }, + { + "#": 2089 + }, + { + "#": 2119 + }, + { + "#": 2144 + }, + { + "#": 2166 + }, + { + "#": 2196 + }, + { + "#": 2218 + }, + { + "#": 2240 + }, + { + "#": 2262 + }, + { + "#": 2288 + }, + { + "#": 2310 + }, + { + "#": 2338 + }, + { + "#": 2360 + }, + { + "#": 2382 + }, + { + "#": 2404 + }, + { + "#": 2426 + }, + { + "#": 2451 + }, + { + "#": 2473 + }, + { + "#": 2498 + }, + { + "#": 2520 + }, + { + "#": 2542 + }, + { + "#": 2568 + }, + { + "#": 2590 + }, + { + "#": 2645 + }, + { + "#": 2667 + }, + { + "#": 2689 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 96 + }, + "position": { + "#": 101 + }, + "force": { + "#": 102 + }, + "torque": 0, + "positionImpulse": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 105 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 106 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 107 + }, + "bounds": { + "#": 109 + }, + "positionPrev": { + "#": 112 + }, + "anglePrev": 0, + "axes": { + "#": 113 + }, + "area": 1534.90643, + "mass": 1.53491, + "inverseMass": 0.65151, + "inertia": 1587.6055, + "inverseInertia": 0.00063, + "parent": { + "#": 94 + }, + "sleepCounter": 0 + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + } + ], + { + "x": 20, + "y": 20, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 56.40316, + "y": 20, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 56.40316, + "y": 62.16409, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 20, + "y": 62.16409, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 38.20158, + "y": 41.08205 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 108 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 110 + }, + "max": { + "#": 111 + } + }, + { + "x": 20, + "y": 20 + }, + { + "x": 56.40316, + "y": 62.16409 + }, + { + "x": 38.20158, + "y": 41.08205 + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 117 + }, + "angle": 0, + "vertices": { + "#": 118 + }, + "position": { + "#": 123 + }, + "force": { + "#": 124 + }, + "torque": 0, + "positionImpulse": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 127 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 128 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 129 + }, + "bounds": { + "#": 131 + }, + "positionPrev": { + "#": 134 + }, + "anglePrev": 0, + "axes": { + "#": 135 + }, + "area": 2220.52879, + "mass": 2.22053, + "inverseMass": 0.45034, + "inertia": 3297.21813, + "inverseInertia": 0.0003, + "parent": { + "#": 116 + }, + "sleepCounter": 0 + }, + [ + { + "#": 116 + } + ], + [ + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + } + ], + { + "x": 56.40316, + "y": 20, + "index": 0, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 101.71901, + "y": 20, + "index": 1, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 101.71901, + "y": 69.00116, + "index": 2, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 56.40316, + "y": 69.00116, + "index": 3, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 79.06109, + "y": 44.50058 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 130 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 132 + }, + "max": { + "#": 133 + } + }, + { + "x": 56.40316, + "y": 20 + }, + { + "x": 101.71901, + "y": 69.00116 + }, + { + "x": 79.06109, + "y": 44.50058 + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 139 + }, + "angle": 0, + "vertices": { + "#": 140 + }, + "position": { + "#": 145 + }, + "force": { + "#": 146 + }, + "torque": 0, + "positionImpulse": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 149 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 150 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 151 + }, + "bounds": { + "#": 153 + }, + "positionPrev": { + "#": 156 + }, + "anglePrev": 0, + "axes": { + "#": 157 + }, + "area": 1140.1977, + "mass": 1.1402, + "inverseMass": 0.87704, + "inertia": 905.8525, + "inverseInertia": 0.0011, + "parent": { + "#": 138 + }, + "sleepCounter": 0 + }, + [ + { + "#": 138 + } + ], + [ + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + } + ], + { + "x": 101.71901, + "y": 20, + "index": 0, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 140.93981, + "y": 20, + "index": 1, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 140.93981, + "y": 49.07124, + "index": 2, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 101.71901, + "y": 49.07124, + "index": 3, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 121.32941, + "y": 34.53562 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 152 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 154 + }, + "max": { + "#": 155 + } + }, + { + "x": 101.71901, + "y": 20 + }, + { + "x": 140.93981, + "y": 49.07124 + }, + { + "x": 121.32941, + "y": 34.53562 + }, + [ + { + "#": 158 + }, + { + "#": 159 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 161 + }, + "angle": 0, + "vertices": { + "#": 162 + }, + "position": { + "#": 167 + }, + "force": { + "#": 168 + }, + "torque": 0, + "positionImpulse": { + "#": 169 + }, + "constraintImpulse": { + "#": 170 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 171 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 172 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 173 + }, + "bounds": { + "#": 175 + }, + "positionPrev": { + "#": 178 + }, + "anglePrev": 0, + "axes": { + "#": 179 + }, + "area": 752.4076, + "mass": 0.75241, + "inverseMass": 1.32907, + "inertia": 384.63687, + "inverseInertia": 0.0026, + "parent": { + "#": 160 + }, + "sleepCounter": 0 + }, + [ + { + "#": 160 + } + ], + [ + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + } + ], + { + "x": 140.93981, + "y": 20, + "index": 0, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 165.81713, + "y": 20, + "index": 1, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 165.81713, + "y": 50.24473, + "index": 2, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 140.93981, + "y": 50.24473, + "index": 3, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 153.37847, + "y": 35.12236 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 174 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 176 + }, + "max": { + "#": 177 + } + }, + { + "x": 140.93981, + "y": 20 + }, + { + "x": 165.81713, + "y": 50.24473 + }, + { + "x": 153.37847, + "y": 35.12236 + }, + [ + { + "#": 180 + }, + { + "#": 181 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 183 + }, + "angle": 0, + "vertices": { + "#": 184 + }, + "position": { + "#": 191 + }, + "force": { + "#": 192 + }, + "torque": 0, + "positionImpulse": { + "#": 193 + }, + "constraintImpulse": { + "#": 194 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 195 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 196 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 197 + }, + "bounds": { + "#": 199 + }, + "positionPrev": { + "#": 202 + }, + "anglePrev": 0, + "axes": { + "#": 203 + }, + "area": 2027.25418, + "mass": 2.02725, + "inverseMass": 0.49328, + "inertia": 2636.41196, + "inverseInertia": 0.00038, + "parent": { + "#": 182 + }, + "sleepCounter": 0 + }, + [ + { + "#": 182 + } + ], + [ + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + } + ], + { + "x": 214.19913, + "y": 61.901, + "index": 0, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 190.00813, + "y": 75.868, + "index": 1, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 165.81713, + "y": 61.901, + "index": 2, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 165.81713, + "y": 33.967, + "index": 3, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 190.00813, + "y": 20, + "index": 4, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 214.19913, + "y": 33.967, + "index": 5, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 190.00813, + "y": 47.934 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 198 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 200 + }, + "max": { + "#": 201 + } + }, + { + "x": 165.81713, + "y": 20 + }, + { + "x": 214.19913, + "y": 75.868 + }, + { + "x": 190.00813, + "y": 47.934 + }, + [ + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + } + ], + { + "x": -0.50001, + "y": -0.86602 + }, + { + "x": 0.50001, + "y": -0.86602 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 10, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 208 + }, + "angle": 0, + "vertices": { + "#": 209 + }, + "position": { + "#": 215 + }, + "force": { + "#": 216 + }, + "torque": 0, + "positionImpulse": { + "#": 217 + }, + "constraintImpulse": { + "#": 218 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 219 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 220 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 221 + }, + "bounds": { + "#": 223 + }, + "positionPrev": { + "#": 226 + }, + "anglePrev": 0, + "axes": { + "#": 227 + }, + "area": 4842.27229, + "mass": 4.84227, + "inverseMass": 0.20651, + "inertia": 15180.5655, + "inverseInertia": 0.00007, + "parent": { + "#": 207 + }, + "sleepCounter": 0 + }, + [ + { + "#": 207 + } + ], + [ + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + } + ], + { + "x": 291.52774, + "y": 89.446, + "index": 0, + "body": { + "#": 207 + }, + "isInternal": false + }, + { + "x": 241.07274, + "y": 105.84, + "index": 1, + "body": { + "#": 207 + }, + "isInternal": false + }, + { + "x": 209.88974, + "y": 62.92, + "index": 2, + "body": { + "#": 207 + }, + "isInternal": false + }, + { + "x": 241.07274, + "y": 20, + "index": 3, + "body": { + "#": 207 + }, + "isInternal": false + }, + { + "x": 291.52774, + "y": 36.394, + "index": 4, + "body": { + "#": 207 + }, + "isInternal": false + }, + { + "x": 255.01813, + "y": 62.92 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 222 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 224 + }, + "max": { + "#": 225 + } + }, + { + "x": 209.88974, + "y": 20 + }, + { + "x": 291.52774, + "y": 105.84 + }, + { + "x": 255.01813, + "y": 62.92 + }, + [ + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + } + ], + { + "x": 0.30902, + "y": 0.95106 + }, + { + "x": -0.80902, + "y": 0.58778 + }, + { + "x": -0.80902, + "y": -0.58778 + }, + { + "x": 0.30902, + "y": -0.95106 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 11, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 234 + }, + "angle": 0, + "vertices": { + "#": 235 + }, + "position": { + "#": 262 + }, + "force": { + "#": 263 + }, + "torque": 0, + "positionImpulse": { + "#": 264 + }, + "constraintImpulse": { + "#": 265 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 266 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 267 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 268 + }, + "circleRadius": 31.45923, + "bounds": { + "#": 270 + }, + "positionPrev": { + "#": 273 + }, + "anglePrev": 0, + "axes": { + "#": 274 + }, + "area": 3079.01783, + "mass": 3.07902, + "inverseMass": 0.32478, + "inertia": 6035.49394, + "inverseInertia": 0.00017, + "parent": { + "#": 233 + }, + "sleepCounter": 0 + }, + [ + { + "#": 233 + } + ], + [ + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + } + ], + { + "x": 353.98774, + "y": 55.251, + "index": 0, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 352.17274, + "y": 62.615, + "index": 1, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 348.64774, + "y": 69.33, + "index": 2, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 343.61874, + "y": 75.007, + "index": 3, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 337.37774, + "y": 79.315, + "index": 4, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 330.28674, + "y": 82.004, + "index": 5, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 322.75774, + "y": 82.918, + "index": 6, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 315.22874, + "y": 82.004, + "index": 7, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 308.13774, + "y": 79.315, + "index": 8, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 301.89674, + "y": 75.007, + "index": 9, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 296.86774, + "y": 69.33, + "index": 10, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 293.34274, + "y": 62.615, + "index": 11, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 291.52774, + "y": 55.251, + "index": 12, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 291.52774, + "y": 47.667, + "index": 13, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 293.34274, + "y": 40.303, + "index": 14, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 296.86774, + "y": 33.588, + "index": 15, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 301.89674, + "y": 27.911, + "index": 16, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 308.13774, + "y": 23.603, + "index": 17, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 315.22874, + "y": 20.914, + "index": 18, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 322.75774, + "y": 20, + "index": 19, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 330.28674, + "y": 20.914, + "index": 20, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 337.37774, + "y": 23.603, + "index": 21, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 343.61874, + "y": 27.911, + "index": 22, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 348.64774, + "y": 33.588, + "index": 23, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 352.17274, + "y": 40.303, + "index": 24, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 353.98774, + "y": 47.667, + "index": 25, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 322.75774, + "y": 51.459 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 269 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 271 + }, + "max": { + "#": 272 + } + }, + { + "x": 291.52774, + "y": 20 + }, + { + "x": 353.98774, + "y": 82.918 + }, + { + "x": 322.75774, + "y": 51.459 + }, + [ + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + } + ], + { + "x": -0.97094, + "y": -0.23931 + }, + { + "x": -0.88542, + "y": -0.4648 + }, + { + "x": -0.74854, + "y": -0.66309 + }, + { + "x": -0.56808, + "y": -0.82297 + }, + { + "x": -0.35457, + "y": -0.93503 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35457, + "y": -0.93503 + }, + { + "x": 0.56808, + "y": -0.82297 + }, + { + "x": 0.74854, + "y": -0.66309 + }, + { + "x": 0.88542, + "y": -0.4648 + }, + { + "x": 0.97094, + "y": -0.23931 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 289 + }, + "angle": 0, + "vertices": { + "#": 290 + }, + "position": { + "#": 295 + }, + "force": { + "#": 296 + }, + "torque": 0, + "positionImpulse": { + "#": 297 + }, + "constraintImpulse": { + "#": 298 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 299 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 300 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 301 + }, + "bounds": { + "#": 303 + }, + "positionPrev": { + "#": 306 + }, + "anglePrev": 0, + "axes": { + "#": 307 + }, + "area": 1329.41676, + "mass": 1.32942, + "inverseMass": 0.75221, + "inertia": 1383.51246, + "inverseInertia": 0.00072, + "parent": { + "#": 288 + }, + "sleepCounter": 0 + }, + [ + { + "#": 288 + } + ], + [ + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + } + ], + { + "x": 353.98774, + "y": 20, + "index": 0, + "body": { + "#": 288 + }, + "isInternal": false + }, + { + "x": 402.76539, + "y": 20, + "index": 1, + "body": { + "#": 288 + }, + "isInternal": false + }, + { + "x": 402.76539, + "y": 47.25463, + "index": 2, + "body": { + "#": 288 + }, + "isInternal": false + }, + { + "x": 353.98774, + "y": 47.25463, + "index": 3, + "body": { + "#": 288 + }, + "isInternal": false + }, + { + "x": 378.37657, + "y": 33.62731 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 302 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 304 + }, + "max": { + "#": 305 + } + }, + { + "x": 353.98774, + "y": 20 + }, + { + "x": 402.76539, + "y": 47.25463 + }, + { + "x": 378.37657, + "y": 33.62731 + }, + [ + { + "#": 308 + }, + { + "#": 309 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 311 + }, + "angle": 0, + "vertices": { + "#": 312 + }, + "position": { + "#": 317 + }, + "force": { + "#": 318 + }, + "torque": 0, + "positionImpulse": { + "#": 319 + }, + "constraintImpulse": { + "#": 320 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 321 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 322 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 323 + }, + "bounds": { + "#": 325 + }, + "positionPrev": { + "#": 328 + }, + "anglePrev": 0, + "axes": { + "#": 329 + }, + "area": 2858.63236, + "mass": 2.85863, + "inverseMass": 0.34982, + "inertia": 11948.09601, + "inverseInertia": 0.00008, + "parent": { + "#": 310 + }, + "sleepCounter": 0 + }, + [ + { + "#": 310 + } + ], + [ + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + } + ], + { + "x": 402.76539, + "y": 20, + "index": 0, + "body": { + "#": 310 + }, + "isInternal": false + }, + { + "x": 511.61999, + "y": 20, + "index": 1, + "body": { + "#": 310 + }, + "isInternal": false + }, + { + "x": 511.61999, + "y": 46.26102, + "index": 2, + "body": { + "#": 310 + }, + "isInternal": false + }, + { + "x": 402.76539, + "y": 46.26102, + "index": 3, + "body": { + "#": 310 + }, + "isInternal": false + }, + { + "x": 457.19269, + "y": 33.13051 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 324 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 326 + }, + "max": { + "#": 327 + } + }, + { + "x": 402.76539, + "y": 20 + }, + { + "x": 511.61999, + "y": 46.26102 + }, + { + "x": 457.19269, + "y": 33.13051 + }, + [ + { + "#": 330 + }, + { + "#": 331 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 333 + }, + "angle": 0, + "vertices": { + "#": 334 + }, + "position": { + "#": 339 + }, + "force": { + "#": 340 + }, + "torque": 0, + "positionImpulse": { + "#": 341 + }, + "constraintImpulse": { + "#": 342 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 343 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 344 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 345 + }, + "bounds": { + "#": 347 + }, + "positionPrev": { + "#": 350 + }, + "anglePrev": 0, + "axes": { + "#": 351 + }, + "area": 926.83946, + "mass": 0.92684, + "inverseMass": 1.07894, + "inertia": 640.73396, + "inverseInertia": 0.00156, + "parent": { + "#": 332 + }, + "sleepCounter": 0 + }, + [ + { + "#": 332 + } + ], + [ + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + } + ], + { + "x": 511.61999, + "y": 20, + "index": 0, + "body": { + "#": 332 + }, + "isInternal": false + }, + { + "x": 550.37578, + "y": 20, + "index": 1, + "body": { + "#": 332 + }, + "isInternal": false + }, + { + "x": 550.37578, + "y": 43.91487, + "index": 2, + "body": { + "#": 332 + }, + "isInternal": false + }, + { + "x": 511.61999, + "y": 43.91487, + "index": 3, + "body": { + "#": 332 + }, + "isInternal": false + }, + { + "x": 530.99788, + "y": 31.95743 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 346 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 348 + }, + "max": { + "#": 349 + } + }, + { + "x": 511.61999, + "y": 20 + }, + { + "x": 550.37578, + "y": 43.91487 + }, + { + "x": 530.99788, + "y": 31.95743 + }, + [ + { + "#": 352 + }, + { + "#": 353 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 15, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 355 + }, + "angle": 0, + "vertices": { + "#": 356 + }, + "position": { + "#": 361 + }, + "force": { + "#": 362 + }, + "torque": 0, + "positionImpulse": { + "#": 363 + }, + "constraintImpulse": { + "#": 364 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 365 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 366 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 367 + }, + "bounds": { + "#": 369 + }, + "positionPrev": { + "#": 372 + }, + "anglePrev": 0, + "axes": { + "#": 373 + }, + "area": 1290.45014, + "mass": 1.29045, + "inverseMass": 0.77492, + "inertia": 1110.21456, + "inverseInertia": 0.0009, + "parent": { + "#": 354 + }, + "sleepCounter": 0 + }, + [ + { + "#": 354 + } + ], + [ + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + } + ], + { + "x": 550.37578, + "y": 20, + "index": 0, + "body": { + "#": 354 + }, + "isInternal": false + }, + { + "x": 586.14609, + "y": 20, + "index": 1, + "body": { + "#": 354 + }, + "isInternal": false + }, + { + "x": 586.14609, + "y": 56.076, + "index": 2, + "body": { + "#": 354 + }, + "isInternal": false + }, + { + "x": 550.37578, + "y": 56.076, + "index": 3, + "body": { + "#": 354 + }, + "isInternal": false + }, + { + "x": 568.26093, + "y": 38.038 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 368 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 370 + }, + "max": { + "#": 371 + } + }, + { + "x": 550.37578, + "y": 20 + }, + { + "x": 586.14609, + "y": 56.076 + }, + { + "x": 568.26093, + "y": 38.038 + }, + [ + { + "#": 374 + }, + { + "#": 375 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 16, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 377 + }, + "angle": 0, + "vertices": { + "#": 378 + }, + "position": { + "#": 383 + }, + "force": { + "#": 384 + }, + "torque": 0, + "positionImpulse": { + "#": 385 + }, + "constraintImpulse": { + "#": 386 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 387 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 388 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 389 + }, + "bounds": { + "#": 391 + }, + "positionPrev": { + "#": 394 + }, + "anglePrev": 0, + "axes": { + "#": 395 + }, + "area": 1148.29259, + "mass": 1.14829, + "inverseMass": 0.87086, + "inertia": 897.94757, + "inverseInertia": 0.00111, + "parent": { + "#": 376 + }, + "sleepCounter": 0 + }, + [ + { + "#": 376 + } + ], + [ + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + } + ], + { + "x": 586.14609, + "y": 20, + "index": 0, + "body": { + "#": 376 + }, + "isInternal": false + }, + { + "x": 616.70101, + "y": 20, + "index": 1, + "body": { + "#": 376 + }, + "isInternal": false + }, + { + "x": 616.70101, + "y": 57.58128, + "index": 2, + "body": { + "#": 376 + }, + "isInternal": false + }, + { + "x": 586.14609, + "y": 57.58128, + "index": 3, + "body": { + "#": 376 + }, + "isInternal": false + }, + { + "x": 601.42355, + "y": 38.79064 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 390 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 392 + }, + "max": { + "#": 393 + } + }, + { + "x": 586.14609, + "y": 20 + }, + { + "x": 616.70101, + "y": 57.58128 + }, + { + "x": 601.42355, + "y": 38.79064 + }, + [ + { + "#": 396 + }, + { + "#": 397 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 17, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 399 + }, + "angle": 0, + "vertices": { + "#": 400 + }, + "position": { + "#": 408 + }, + "force": { + "#": 409 + }, + "torque": 0, + "positionImpulse": { + "#": 410 + }, + "constraintImpulse": { + "#": 411 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 412 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 413 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 414 + }, + "bounds": { + "#": 416 + }, + "positionPrev": { + "#": 419 + }, + "anglePrev": 0, + "axes": { + "#": 420 + }, + "area": 1926.78789, + "mass": 1.92679, + "inverseMass": 0.519, + "inertia": 2372.87433, + "inverseInertia": 0.00042, + "parent": { + "#": 398 + }, + "sleepCounter": 0 + }, + [ + { + "#": 398 + } + ], + [ + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + } + ], + { + "x": 665.83032, + "y": 57.383, + "index": 0, + "body": { + "#": 398 + }, + "isInternal": false + }, + { + "x": 647.82732, + "y": 71.74, + "index": 1, + "body": { + "#": 398 + }, + "isInternal": false + }, + { + "x": 625.37732, + "y": 66.616, + "index": 2, + "body": { + "#": 398 + }, + "isInternal": false + }, + { + "x": 615.38732, + "y": 45.87, + "index": 3, + "body": { + "#": 398 + }, + "isInternal": false + }, + { + "x": 625.37732, + "y": 25.124, + "index": 4, + "body": { + "#": 398 + }, + "isInternal": false + }, + { + "x": 647.82732, + "y": 20, + "index": 5, + "body": { + "#": 398 + }, + "isInternal": false + }, + { + "x": 665.83032, + "y": 34.357, + "index": 6, + "body": { + "#": 398 + }, + "isInternal": false + }, + { + "x": 641.92251, + "y": 45.87 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 415 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 417 + }, + "max": { + "#": 418 + } + }, + { + "x": 615.38732, + "y": 20 + }, + { + "x": 665.83032, + "y": 71.74 + }, + { + "x": 641.92251, + "y": 45.87 + }, + [ + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + } + ], + { + "x": 0.62349, + "y": 0.78183 + }, + { + "x": -0.22252, + "y": 0.97493 + }, + { + "x": -0.90098, + "y": 0.43386 + }, + { + "x": -0.90098, + "y": -0.43386 + }, + { + "x": -0.22252, + "y": -0.97493 + }, + { + "x": 0.62349, + "y": -0.78183 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 18, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 429 + }, + "angle": 0, + "vertices": { + "#": 430 + }, + "position": { + "#": 434 + }, + "force": { + "#": 435 + }, + "torque": 0, + "positionImpulse": { + "#": 436 + }, + "constraintImpulse": { + "#": 437 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 438 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 439 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 440 + }, + "bounds": { + "#": 442 + }, + "positionPrev": { + "#": 445 + }, + "anglePrev": 0, + "axes": { + "#": 446 + }, + "area": 1097.75588, + "mass": 1.09776, + "inverseMass": 0.91095, + "inertia": 927.66175, + "inverseInertia": 0.00108, + "parent": { + "#": 428 + }, + "sleepCounter": 0 + }, + [ + { + "#": 428 + } + ], + [ + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + } + ], + { + "x": 702.16782, + "y": 70.35, + "index": 0, + "body": { + "#": 428 + }, + "isInternal": false + }, + { + "x": 658.56282, + "y": 45.175, + "index": 1, + "body": { + "#": 428 + }, + "isInternal": false + }, + { + "x": 702.16782, + "y": 20, + "index": 2, + "body": { + "#": 428 + }, + "isInternal": false + }, + { + "x": 687.63282, + "y": 45.175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 441 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 443 + }, + "max": { + "#": 444 + } + }, + { + "x": 658.56282, + "y": 20 + }, + { + "x": 702.16782, + "y": 70.35 + }, + { + "x": 687.63282, + "y": 45.175 + }, + [ + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + } + ], + { + "x": -0.49999, + "y": 0.86603 + }, + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 19, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 451 + }, + "angle": 0, + "vertices": { + "#": 452 + }, + "position": { + "#": 458 + }, + "force": { + "#": 459 + }, + "torque": 0, + "positionImpulse": { + "#": 460 + }, + "constraintImpulse": { + "#": 461 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 462 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 463 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 464 + }, + "bounds": { + "#": 466 + }, + "positionPrev": { + "#": 469 + }, + "anglePrev": 0, + "axes": { + "#": 470 + }, + "area": 986.58013, + "mass": 0.98658, + "inverseMass": 1.0136, + "inertia": 630.16497, + "inverseInertia": 0.00159, + "parent": { + "#": 450 + }, + "sleepCounter": 0 + }, + [ + { + "#": 450 + } + ], + [ + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + } + ], + { + "x": 737.07277, + "y": 51.346, + "index": 0, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 714.29777, + "y": 58.746, + "index": 1, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 700.22277, + "y": 39.373, + "index": 2, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 714.29777, + "y": 20, + "index": 3, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 737.07277, + "y": 27.4, + "index": 4, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 720.59282, + "y": 39.373 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 465 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 467 + }, + "max": { + "#": 468 + } + }, + { + "x": 700.22277, + "y": 20 + }, + { + "x": 737.07277, + "y": 58.746 + }, + { + "x": 720.59282, + "y": 39.373 + }, + [ + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + } + ], + { + "x": 0.30902, + "y": 0.95106 + }, + { + "x": -0.80902, + "y": 0.58778 + }, + { + "x": -0.80902, + "y": -0.58778 + }, + { + "x": 0.30902, + "y": -0.95106 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 20, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 477 + }, + "angle": 0, + "vertices": { + "#": 478 + }, + "position": { + "#": 483 + }, + "force": { + "#": 484 + }, + "torque": 0, + "positionImpulse": { + "#": 485 + }, + "constraintImpulse": { + "#": 486 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 487 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 488 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 489 + }, + "bounds": { + "#": 491 + }, + "positionPrev": { + "#": 494 + }, + "anglePrev": 0, + "axes": { + "#": 495 + }, + "area": 1201.45424, + "mass": 1.20145, + "inverseMass": 0.83232, + "inertia": 962.3282, + "inverseInertia": 0.00104, + "parent": { + "#": 476 + }, + "sleepCounter": 0 + }, + [ + { + "#": 476 + } + ], + [ + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + } + ], + { + "x": 771.73477, + "y": 54.662, + "index": 0, + "body": { + "#": 476 + }, + "isInternal": false + }, + { + "x": 737.07277, + "y": 54.662, + "index": 1, + "body": { + "#": 476 + }, + "isInternal": false + }, + { + "x": 737.07277, + "y": 20, + "index": 2, + "body": { + "#": 476 + }, + "isInternal": false + }, + { + "x": 771.73477, + "y": 20, + "index": 3, + "body": { + "#": 476 + }, + "isInternal": false + }, + { + "x": 754.40377, + "y": 37.331 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 490 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 492 + }, + "max": { + "#": 493 + } + }, + { + "x": 737.07277, + "y": 20 + }, + { + "x": 771.73477, + "y": 54.662 + }, + { + "x": 754.40377, + "y": 37.331 + }, + [ + { + "#": 496 + }, + { + "#": 497 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 21, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 499 + }, + "angle": 0, + "vertices": { + "#": 500 + }, + "position": { + "#": 505 + }, + "force": { + "#": 506 + }, + "torque": 0, + "positionImpulse": { + "#": 507 + }, + "constraintImpulse": { + "#": 508 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 509 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 510 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 511 + }, + "bounds": { + "#": 513 + }, + "positionPrev": { + "#": 516 + }, + "anglePrev": 0, + "axes": { + "#": 517 + }, + "area": 1990.73335, + "mass": 1.99073, + "inverseMass": 0.50233, + "inertia": 6259.05792, + "inverseInertia": 0.00016, + "parent": { + "#": 498 + }, + "sleepCounter": 0 + }, + [ + { + "#": 498 + } + ], + [ + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + } + ], + { + "x": 771.73477, + "y": 20, + "index": 0, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 866.5585, + "y": 20, + "index": 1, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 866.5585, + "y": 40.99404, + "index": 2, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 771.73477, + "y": 40.99404, + "index": 3, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 819.14664, + "y": 30.49702 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 512 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 514 + }, + "max": { + "#": 515 + } + }, + { + "x": 771.73477, + "y": 20 + }, + { + "x": 866.5585, + "y": 40.99404 + }, + { + "x": 819.14664, + "y": 30.49702 + }, + [ + { + "#": 518 + }, + { + "#": 519 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 22, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 521 + }, + "angle": 0, + "vertices": { + "#": 522 + }, + "position": { + "#": 549 + }, + "force": { + "#": 550 + }, + "torque": 0, + "positionImpulse": { + "#": 551 + }, + "constraintImpulse": { + "#": 552 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 553 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 554 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 555 + }, + "circleRadius": 48.51042, + "bounds": { + "#": 557 + }, + "positionPrev": { + "#": 560 + }, + "anglePrev": 0, + "axes": { + "#": 561 + }, + "area": 7321.24308, + "mass": 7.32124, + "inverseMass": 0.13659, + "inertia": 34123.853, + "inverseInertia": 0.00003, + "parent": { + "#": 520 + }, + "sleepCounter": 0 + }, + [ + { + "#": 520 + } + ], + [ + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + } + ], + { + "x": 962.8725, + "y": 74.357, + "index": 0, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 960.0735, + "y": 85.712, + "index": 1, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 954.6385, + "y": 96.067, + "index": 2, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 946.8835, + "y": 104.821, + "index": 3, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 937.2595, + "y": 111.464, + "index": 4, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 926.3245, + "y": 115.611, + "index": 5, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 914.7155, + "y": 117.02, + "index": 6, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 903.1065, + "y": 115.611, + "index": 7, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 892.1715, + "y": 111.464, + "index": 8, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 882.5475, + "y": 104.821, + "index": 9, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 874.7925, + "y": 96.067, + "index": 10, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 869.3575, + "y": 85.712, + "index": 11, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 866.5585, + "y": 74.357, + "index": 12, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 866.5585, + "y": 62.663, + "index": 13, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 869.3575, + "y": 51.308, + "index": 14, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 874.7925, + "y": 40.953, + "index": 15, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 882.5475, + "y": 32.199, + "index": 16, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 892.1715, + "y": 25.556, + "index": 17, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 903.1065, + "y": 21.409, + "index": 18, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 914.7155, + "y": 20, + "index": 19, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 926.3245, + "y": 21.409, + "index": 20, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 937.2595, + "y": 25.556, + "index": 21, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 946.8835, + "y": 32.199, + "index": 22, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 954.6385, + "y": 40.953, + "index": 23, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 960.0735, + "y": 51.308, + "index": 24, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 962.8725, + "y": 62.663, + "index": 25, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 914.7155, + "y": 68.51 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 556 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 558 + }, + "max": { + "#": 559 + } + }, + { + "x": 866.5585, + "y": 20 + }, + { + "x": 962.8725, + "y": 117.02 + }, + { + "x": 914.7155, + "y": 68.51 + }, + [ + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + } + ], + { + "x": -0.97094, + "y": -0.23934 + }, + { + "x": -0.88545, + "y": -0.46474 + }, + { + "x": -0.74853, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12049, + "y": -0.99271 + }, + { + "x": 0.12049, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74853, + "y": -0.66311 + }, + { + "x": 0.88545, + "y": -0.46474 + }, + { + "x": 0.97094, + "y": -0.23934 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 23, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 576 + }, + "angle": 0, + "vertices": { + "#": 577 + }, + "position": { + "#": 582 + }, + "force": { + "#": 583 + }, + "torque": 0, + "positionImpulse": { + "#": 584 + }, + "constraintImpulse": { + "#": 585 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 586 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 587 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 588 + }, + "bounds": { + "#": 590 + }, + "positionPrev": { + "#": 593 + }, + "anglePrev": 0, + "axes": { + "#": 594 + }, + "area": 2034.76377, + "mass": 2.03476, + "inverseMass": 0.49146, + "inertia": 5208.09959, + "inverseInertia": 0.00019, + "parent": { + "#": 575 + }, + "sleepCounter": 0 + }, + [ + { + "#": 575 + } + ], + [ + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + } + ], + { + "x": 962.8725, + "y": 20, + "index": 0, + "body": { + "#": 575 + }, + "isInternal": false + }, + { + "x": 1047.10519, + "y": 20, + "index": 1, + "body": { + "#": 575 + }, + "isInternal": false + }, + { + "x": 1047.10519, + "y": 44.15646, + "index": 2, + "body": { + "#": 575 + }, + "isInternal": false + }, + { + "x": 962.8725, + "y": 44.15646, + "index": 3, + "body": { + "#": 575 + }, + "isInternal": false + }, + { + "x": 1004.98884, + "y": 32.07823 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 589 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 591 + }, + "max": { + "#": 592 + } + }, + { + "x": 962.8725, + "y": 20 + }, + { + "x": 1047.10519, + "y": 44.15646 + }, + { + "x": 1004.98884, + "y": 32.07823 + }, + [ + { + "#": 595 + }, + { + "#": 596 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 24, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 598 + }, + "angle": 0, + "vertices": { + "#": 599 + }, + "position": { + "#": 604 + }, + "force": { + "#": 605 + }, + "torque": 0, + "positionImpulse": { + "#": 606 + }, + "constraintImpulse": { + "#": 607 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 608 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 609 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 610 + }, + "bounds": { + "#": 612 + }, + "positionPrev": { + "#": 615 + }, + "anglePrev": 0, + "axes": { + "#": 616 + }, + "area": 1030.45569, + "mass": 1.03046, + "inverseMass": 0.97044, + "inertia": 987.30914, + "inverseInertia": 0.00101, + "parent": { + "#": 597 + }, + "sleepCounter": 0 + }, + [ + { + "#": 597 + } + ], + [ + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + } + ], + { + "x": 1047.10519, + "y": 20, + "index": 0, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 1096.49176, + "y": 20, + "index": 1, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 1096.49176, + "y": 40.8651, + "index": 2, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 1047.10519, + "y": 40.8651, + "index": 3, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 1071.79847, + "y": 30.43255 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 611 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 613 + }, + "max": { + "#": 614 + } + }, + { + "x": 1047.10519, + "y": 20 + }, + { + "x": 1096.49176, + "y": 40.8651 + }, + { + "x": 1071.79847, + "y": 30.43255 + }, + [ + { + "#": 617 + }, + { + "#": 618 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 25, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 620 + }, + "angle": 0, + "vertices": { + "#": 621 + }, + "position": { + "#": 648 + }, + "force": { + "#": 649 + }, + "torque": 0, + "positionImpulse": { + "#": 650 + }, + "constraintImpulse": { + "#": 651 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 652 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 653 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 654 + }, + "circleRadius": 26.33166, + "bounds": { + "#": 656 + }, + "positionPrev": { + "#": 659 + }, + "anglePrev": 0, + "axes": { + "#": 660 + }, + "area": 2157.16533, + "mass": 2.15717, + "inverseMass": 0.46357, + "inertia": 2962.47895, + "inverseInertia": 0.00034, + "parent": { + "#": 619 + }, + "sleepCounter": 0 + }, + [ + { + "#": 619 + } + ], + [ + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + } + ], + { + "x": 72.28, + "y": 146.526, + "index": 0, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 70.761, + "y": 152.689, + "index": 1, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 67.811, + "y": 158.31, + "index": 2, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 63.601, + "y": 163.062, + "index": 3, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 58.377, + "y": 166.668, + "index": 4, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 52.442, + "y": 168.919, + "index": 5, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 46.14, + "y": 169.684, + "index": 6, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 39.838, + "y": 168.919, + "index": 7, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 33.903, + "y": 166.668, + "index": 8, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 28.679, + "y": 163.062, + "index": 9, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 24.469, + "y": 158.31, + "index": 10, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 21.519, + "y": 152.689, + "index": 11, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 20, + "y": 146.526, + "index": 12, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 20, + "y": 140.178, + "index": 13, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 21.519, + "y": 134.015, + "index": 14, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 24.469, + "y": 128.394, + "index": 15, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 28.679, + "y": 123.642, + "index": 16, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 33.903, + "y": 120.036, + "index": 17, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 39.838, + "y": 117.785, + "index": 18, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 46.14, + "y": 117.02, + "index": 19, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 52.442, + "y": 117.785, + "index": 20, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 58.377, + "y": 120.036, + "index": 21, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 63.601, + "y": 123.642, + "index": 22, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 67.811, + "y": 128.394, + "index": 23, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 70.761, + "y": 134.015, + "index": 24, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 72.28, + "y": 140.178, + "index": 25, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 46.14, + "y": 143.352 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 655 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 657 + }, + "max": { + "#": 658 + } + }, + { + "x": 20, + "y": 117.02 + }, + { + "x": 72.28, + "y": 169.684 + }, + { + "x": 46.14, + "y": 143.352 + }, + [ + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + } + ], + { + "x": -0.97094, + "y": -0.23931 + }, + { + "x": -0.88546, + "y": -0.46471 + }, + { + "x": -0.7485, + "y": -0.66313 + }, + { + "x": -0.56808, + "y": -0.82297 + }, + { + "x": -0.35463, + "y": -0.93501 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35463, + "y": -0.93501 + }, + { + "x": 0.56808, + "y": -0.82297 + }, + { + "x": 0.7485, + "y": -0.66313 + }, + { + "x": 0.88546, + "y": -0.46471 + }, + { + "x": 0.97094, + "y": -0.23931 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 26, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 675 + }, + "angle": 0, + "vertices": { + "#": 676 + }, + "position": { + "#": 681 + }, + "force": { + "#": 682 + }, + "torque": 0, + "positionImpulse": { + "#": 683 + }, + "constraintImpulse": { + "#": 684 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 685 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 686 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 687 + }, + "bounds": { + "#": 689 + }, + "positionPrev": { + "#": 692 + }, + "anglePrev": 0, + "axes": { + "#": 693 + }, + "area": 2399.6282, + "mass": 2.39963, + "inverseMass": 0.41673, + "inertia": 3838.81032, + "inverseInertia": 0.00026, + "parent": { + "#": 674 + }, + "sleepCounter": 0 + }, + [ + { + "#": 674 + } + ], + [ + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + } + ], + { + "x": 121.266, + "y": 166.006, + "index": 0, + "body": { + "#": 674 + }, + "isInternal": false + }, + { + "x": 72.28, + "y": 166.006, + "index": 1, + "body": { + "#": 674 + }, + "isInternal": false + }, + { + "x": 72.28, + "y": 117.02, + "index": 2, + "body": { + "#": 674 + }, + "isInternal": false + }, + { + "x": 121.266, + "y": 117.02, + "index": 3, + "body": { + "#": 674 + }, + "isInternal": false + }, + { + "x": 96.773, + "y": 141.513 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 688 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 690 + }, + "max": { + "#": 691 + } + }, + { + "x": 72.28, + "y": 117.02 + }, + { + "x": 121.266, + "y": 166.006 + }, + { + "x": 96.773, + "y": 141.513 + }, + [ + { + "#": 694 + }, + { + "#": 695 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 27, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 697 + }, + "angle": 0, + "vertices": { + "#": 698 + }, + "position": { + "#": 703 + }, + "force": { + "#": 704 + }, + "torque": 0, + "positionImpulse": { + "#": 705 + }, + "constraintImpulse": { + "#": 706 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 707 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 708 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 709 + }, + "bounds": { + "#": 711 + }, + "positionPrev": { + "#": 714 + }, + "anglePrev": 0, + "axes": { + "#": 715 + }, + "area": 1489.78438, + "mass": 1.48978, + "inverseMass": 0.67124, + "inertia": 1501.63859, + "inverseInertia": 0.00067, + "parent": { + "#": 696 + }, + "sleepCounter": 0 + }, + [ + { + "#": 696 + } + ], + [ + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + } + ], + { + "x": 121.266, + "y": 117.02, + "index": 0, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 156.67894, + "y": 117.02, + "index": 1, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 156.67894, + "y": 159.08893, + "index": 2, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 121.266, + "y": 159.08893, + "index": 3, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 138.97247, + "y": 138.05447 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 710 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 712 + }, + "max": { + "#": 713 + } + }, + { + "x": 121.266, + "y": 117.02 + }, + { + "x": 156.67894, + "y": 159.08893 + }, + { + "x": 138.97247, + "y": 138.05447 + }, + [ + { + "#": 716 + }, + { + "#": 717 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 28, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 719 + }, + "angle": 0, + "vertices": { + "#": 720 + }, + "position": { + "#": 725 + }, + "force": { + "#": 726 + }, + "torque": 0, + "positionImpulse": { + "#": 727 + }, + "constraintImpulse": { + "#": 728 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 729 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 730 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 731 + }, + "bounds": { + "#": 733 + }, + "positionPrev": { + "#": 736 + }, + "anglePrev": 0, + "axes": { + "#": 737 + }, + "area": 1765.36753, + "mass": 1.76537, + "inverseMass": 0.56645, + "inertia": 2077.83253, + "inverseInertia": 0.00048, + "parent": { + "#": 718 + }, + "sleepCounter": 0 + }, + [ + { + "#": 718 + } + ], + [ + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + } + ], + { + "x": 156.67894, + "y": 117.02, + "index": 0, + "body": { + "#": 718 + }, + "isInternal": false + }, + { + "x": 198.44283, + "y": 117.02, + "index": 1, + "body": { + "#": 718 + }, + "isInternal": false + }, + { + "x": 198.44283, + "y": 159.29019, + "index": 2, + "body": { + "#": 718 + }, + "isInternal": false + }, + { + "x": 156.67894, + "y": 159.29019, + "index": 3, + "body": { + "#": 718 + }, + "isInternal": false + }, + { + "x": 177.56088, + "y": 138.1551 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 732 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 734 + }, + "max": { + "#": 735 + } + }, + { + "x": 156.67894, + "y": 117.02 + }, + { + "x": 198.44283, + "y": 159.29019 + }, + { + "x": 177.56088, + "y": 138.1551 + }, + [ + { + "#": 738 + }, + { + "#": 739 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 29, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 741 + }, + "angle": 0, + "vertices": { + "#": 742 + }, + "position": { + "#": 749 + }, + "force": { + "#": 750 + }, + "torque": 0, + "positionImpulse": { + "#": 751 + }, + "constraintImpulse": { + "#": 752 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 753 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 754 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 755 + }, + "bounds": { + "#": 757 + }, + "positionPrev": { + "#": 760 + }, + "anglePrev": 0, + "axes": { + "#": 761 + }, + "area": 1919.54576, + "mass": 1.91955, + "inverseMass": 0.52096, + "inertia": 2363.70788, + "inverseInertia": 0.00042, + "parent": { + "#": 740 + }, + "sleepCounter": 0 + }, + [ + { + "#": 740 + } + ], + [ + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + } + ], + { + "x": 245.52283, + "y": 157.792, + "index": 0, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 221.98283, + "y": 171.382, + "index": 1, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 198.44283, + "y": 157.792, + "index": 2, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 198.44283, + "y": 130.61, + "index": 3, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 221.98283, + "y": 117.02, + "index": 4, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 245.52283, + "y": 130.61, + "index": 5, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 221.98283, + "y": 144.201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 756 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 758 + }, + "max": { + "#": 759 + } + }, + { + "x": 198.44283, + "y": 117.02 + }, + { + "x": 245.52283, + "y": 171.382 + }, + { + "x": 221.98283, + "y": 144.201 + }, + [ + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + } + ], + { + "x": -0.49998, + "y": -0.86604 + }, + { + "x": 0.49998, + "y": -0.86604 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 30, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 766 + }, + "angle": 0, + "vertices": { + "#": 767 + }, + "position": { + "#": 774 + }, + "force": { + "#": 775 + }, + "torque": 0, + "positionImpulse": { + "#": 776 + }, + "constraintImpulse": { + "#": 777 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 778 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 779 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 780 + }, + "bounds": { + "#": 782 + }, + "positionPrev": { + "#": 785 + }, + "anglePrev": 0, + "axes": { + "#": 786 + }, + "area": 6052.328, + "mass": 6.05233, + "inverseMass": 0.16523, + "inertia": 23498.5885, + "inverseInertia": 0.00004, + "parent": { + "#": 765 + }, + "sleepCounter": 0 + }, + [ + { + "#": 765 + } + ], + [ + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + } + ], + { + "x": 329.12083, + "y": 189.418, + "index": 0, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 287.32183, + "y": 213.55, + "index": 1, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 245.52283, + "y": 189.418, + "index": 2, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 245.52283, + "y": 141.152, + "index": 3, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 287.32183, + "y": 117.02, + "index": 4, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 329.12083, + "y": 141.152, + "index": 5, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 287.32183, + "y": 165.285 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 781 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 783 + }, + "max": { + "#": 784 + } + }, + { + "x": 245.52283, + "y": 117.02 + }, + { + "x": 329.12083, + "y": 213.55 + }, + { + "x": 287.32183, + "y": 165.285 + }, + [ + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + } + ], + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": 0.49999, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 31, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 791 + }, + "angle": 0, + "vertices": { + "#": 792 + }, + "position": { + "#": 797 + }, + "force": { + "#": 798 + }, + "torque": 0, + "positionImpulse": { + "#": 799 + }, + "constraintImpulse": { + "#": 800 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 801 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 802 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 803 + }, + "bounds": { + "#": 805 + }, + "positionPrev": { + "#": 808 + }, + "anglePrev": 0, + "axes": { + "#": 809 + }, + "area": 2220.02331, + "mass": 2.22002, + "inverseMass": 0.45045, + "inertia": 3297.61061, + "inverseInertia": 0.0003, + "parent": { + "#": 790 + }, + "sleepCounter": 0 + }, + [ + { + "#": 790 + } + ], + [ + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + } + ], + { + "x": 329.12083, + "y": 117.02, + "index": 0, + "body": { + "#": 790 + }, + "isInternal": false + }, + { + "x": 374.27219, + "y": 117.02, + "index": 1, + "body": { + "#": 790 + }, + "isInternal": false + }, + { + "x": 374.27219, + "y": 166.18847, + "index": 2, + "body": { + "#": 790 + }, + "isInternal": false + }, + { + "x": 329.12083, + "y": 166.18847, + "index": 3, + "body": { + "#": 790 + }, + "isInternal": false + }, + { + "x": 351.69651, + "y": 141.60423 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 804 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 806 + }, + "max": { + "#": 807 + } + }, + { + "x": 329.12083, + "y": 117.02 + }, + { + "x": 374.27219, + "y": 166.18847 + }, + { + "x": 351.69651, + "y": 141.60423 + }, + [ + { + "#": 810 + }, + { + "#": 811 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 32, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 813 + }, + "angle": 0, + "vertices": { + "#": 814 + }, + "position": { + "#": 821 + }, + "force": { + "#": 822 + }, + "torque": 0, + "positionImpulse": { + "#": 823 + }, + "constraintImpulse": { + "#": 824 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 825 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 826 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 827 + }, + "bounds": { + "#": 829 + }, + "positionPrev": { + "#": 832 + }, + "anglePrev": 0, + "axes": { + "#": 833 + }, + "area": 2601.10745, + "mass": 2.60111, + "inverseMass": 0.38445, + "inertia": 4340.23704, + "inverseInertia": 0.00023, + "parent": { + "#": 812 + }, + "sleepCounter": 0 + }, + [ + { + "#": 812 + } + ], + [ + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + } + ], + { + "x": 429.07619, + "y": 164.482, + "index": 0, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 401.67419, + "y": 180.302, + "index": 1, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 374.27219, + "y": 164.482, + "index": 2, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 374.27219, + "y": 132.84, + "index": 3, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 401.67419, + "y": 117.02, + "index": 4, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 429.07619, + "y": 132.84, + "index": 5, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 401.67419, + "y": 148.661 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 828 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 830 + }, + "max": { + "#": 831 + } + }, + { + "x": 374.27219, + "y": 117.02 + }, + { + "x": 429.07619, + "y": 180.302 + }, + { + "x": 401.67419, + "y": 148.661 + }, + [ + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + } + ], + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": 0.49999, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 33, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 838 + }, + "angle": 0, + "vertices": { + "#": 839 + }, + "position": { + "#": 844 + }, + "force": { + "#": 845 + }, + "torque": 0, + "positionImpulse": { + "#": 846 + }, + "constraintImpulse": { + "#": 847 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 848 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 849 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 850 + }, + "bounds": { + "#": 852 + }, + "positionPrev": { + "#": 855 + }, + "anglePrev": 0, + "axes": { + "#": 856 + }, + "area": 1413.30884, + "mass": 1.41331, + "inverseMass": 0.70756, + "inertia": 1331.62791, + "inverseInertia": 0.00075, + "parent": { + "#": 837 + }, + "sleepCounter": 0 + }, + [ + { + "#": 837 + } + ], + [ + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + } + ], + { + "x": 466.67019, + "y": 154.614, + "index": 0, + "body": { + "#": 837 + }, + "isInternal": false + }, + { + "x": 429.07619, + "y": 154.614, + "index": 1, + "body": { + "#": 837 + }, + "isInternal": false + }, + { + "x": 429.07619, + "y": 117.02, + "index": 2, + "body": { + "#": 837 + }, + "isInternal": false + }, + { + "x": 466.67019, + "y": 117.02, + "index": 3, + "body": { + "#": 837 + }, + "isInternal": false + }, + { + "x": 447.87319, + "y": 135.817 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 851 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 853 + }, + "max": { + "#": 854 + } + }, + { + "x": 429.07619, + "y": 117.02 + }, + { + "x": 466.67019, + "y": 154.614 + }, + { + "x": 447.87319, + "y": 135.817 + }, + [ + { + "#": 857 + }, + { + "#": 858 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 34, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 860 + }, + "angle": 0, + "vertices": { + "#": 861 + }, + "position": { + "#": 868 + }, + "force": { + "#": 869 + }, + "torque": 0, + "positionImpulse": { + "#": 870 + }, + "constraintImpulse": { + "#": 871 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 872 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 873 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 874 + }, + "bounds": { + "#": 876 + }, + "positionPrev": { + "#": 879 + }, + "anglePrev": 0, + "axes": { + "#": 880 + }, + "area": 5460.80875, + "mass": 5.46081, + "inverseMass": 0.18312, + "inertia": 19129.81619, + "inverseInertia": 0.00005, + "parent": { + "#": 859 + }, + "sleepCounter": 0 + }, + [ + { + "#": 859 + } + ], + [ + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + } + ], + { + "x": 546.07819, + "y": 185.789, + "index": 0, + "body": { + "#": 859 + }, + "isInternal": false + }, + { + "x": 506.37419, + "y": 208.712, + "index": 1, + "body": { + "#": 859 + }, + "isInternal": false + }, + { + "x": 466.67019, + "y": 185.789, + "index": 2, + "body": { + "#": 859 + }, + "isInternal": false + }, + { + "x": 466.67019, + "y": 139.943, + "index": 3, + "body": { + "#": 859 + }, + "isInternal": false + }, + { + "x": 506.37419, + "y": 117.02, + "index": 4, + "body": { + "#": 859 + }, + "isInternal": false + }, + { + "x": 546.07819, + "y": 139.943, + "index": 5, + "body": { + "#": 859 + }, + "isInternal": false + }, + { + "x": 506.37419, + "y": 162.866 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 875 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 877 + }, + "max": { + "#": 878 + } + }, + { + "x": 466.67019, + "y": 117.02 + }, + { + "x": 546.07819, + "y": 208.712 + }, + { + "x": 506.37419, + "y": 162.866 + }, + [ + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + } + ], + { + "x": -0.5, + "y": -0.86603 + }, + { + "x": 0.5, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 35, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 885 + }, + "angle": 0, + "vertices": { + "#": 886 + }, + "position": { + "#": 891 + }, + "force": { + "#": 892 + }, + "torque": 0, + "positionImpulse": { + "#": 893 + }, + "constraintImpulse": { + "#": 894 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 895 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 896 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 897 + }, + "bounds": { + "#": 899 + }, + "positionPrev": { + "#": 902 + }, + "anglePrev": 0, + "axes": { + "#": 903 + }, + "area": 451.61379, + "mass": 0.45161, + "inverseMass": 2.21428, + "inertia": 136.71143, + "inverseInertia": 0.00731, + "parent": { + "#": 884 + }, + "sleepCounter": 0 + }, + [ + { + "#": 884 + } + ], + [ + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + }, + { + "#": 890 + } + ], + { + "x": 546.07819, + "y": 117.02, + "index": 0, + "body": { + "#": 884 + }, + "isInternal": false + }, + { + "x": 566.24871, + "y": 117.02, + "index": 1, + "body": { + "#": 884 + }, + "isInternal": false + }, + { + "x": 566.24871, + "y": 139.40979, + "index": 2, + "body": { + "#": 884 + }, + "isInternal": false + }, + { + "x": 546.07819, + "y": 139.40979, + "index": 3, + "body": { + "#": 884 + }, + "isInternal": false + }, + { + "x": 556.16345, + "y": 128.21489 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 898 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 900 + }, + "max": { + "#": 901 + } + }, + { + "x": 546.07819, + "y": 117.02 + }, + { + "x": 566.24871, + "y": 139.40979 + }, + { + "x": 556.16345, + "y": 128.21489 + }, + [ + { + "#": 904 + }, + { + "#": 905 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 36, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 907 + }, + "angle": 0, + "vertices": { + "#": 908 + }, + "position": { + "#": 913 + }, + "force": { + "#": 914 + }, + "torque": 0, + "positionImpulse": { + "#": 915 + }, + "constraintImpulse": { + "#": 916 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 917 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 918 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 919 + }, + "bounds": { + "#": 921 + }, + "positionPrev": { + "#": 924 + }, + "anglePrev": 0, + "axes": { + "#": 925 + }, + "area": 3021.67907, + "mass": 3.02168, + "inverseMass": 0.33094, + "inertia": 11331.77016, + "inverseInertia": 0.00009, + "parent": { + "#": 906 + }, + "sleepCounter": 0 + }, + [ + { + "#": 906 + } + ], + [ + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + }, + { + "#": 912 + } + ], + { + "x": 566.24871, + "y": 117.02, + "index": 0, + "body": { + "#": 906 + }, + "isInternal": false + }, + { + "x": 668.08188, + "y": 117.02, + "index": 1, + "body": { + "#": 906 + }, + "isInternal": false + }, + { + "x": 668.08188, + "y": 146.69284, + "index": 2, + "body": { + "#": 906 + }, + "isInternal": false + }, + { + "x": 566.24871, + "y": 146.69284, + "index": 3, + "body": { + "#": 906 + }, + "isInternal": false + }, + { + "x": 617.16529, + "y": 131.85642 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 920 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 922 + }, + "max": { + "#": 923 + } + }, + { + "x": 566.24871, + "y": 117.02 + }, + { + "x": 668.08188, + "y": 146.69284 + }, + { + "x": 617.16529, + "y": 131.85642 + }, + [ + { + "#": 926 + }, + { + "#": 927 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 37, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 929 + }, + "angle": 0, + "vertices": { + "#": 930 + }, + "position": { + "#": 935 + }, + "force": { + "#": 936 + }, + "torque": 0, + "positionImpulse": { + "#": 937 + }, + "constraintImpulse": { + "#": 938 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 939 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 940 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 941 + }, + "bounds": { + "#": 943 + }, + "positionPrev": { + "#": 946 + }, + "anglePrev": 0, + "axes": { + "#": 947 + }, + "area": 856.73964, + "mass": 0.85674, + "inverseMass": 1.16722, + "inertia": 589.10598, + "inverseInertia": 0.0017, + "parent": { + "#": 928 + }, + "sleepCounter": 0 + }, + [ + { + "#": 928 + } + ], + [ + { + "#": 931 + }, + { + "#": 932 + }, + { + "#": 933 + }, + { + "#": 934 + } + ], + { + "x": 668.08188, + "y": 117.02, + "index": 0, + "body": { + "#": 928 + }, + "isInternal": false + }, + { + "x": 708.15338, + "y": 117.02, + "index": 1, + "body": { + "#": 928 + }, + "isInternal": false + }, + { + "x": 708.15338, + "y": 138.40027, + "index": 2, + "body": { + "#": 928 + }, + "isInternal": false + }, + { + "x": 668.08188, + "y": 138.40027, + "index": 3, + "body": { + "#": 928 + }, + "isInternal": false + }, + { + "x": 688.11763, + "y": 127.71014 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 942 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 944 + }, + "max": { + "#": 945 + } + }, + { + "x": 668.08188, + "y": 117.02 + }, + { + "x": 708.15338, + "y": 138.40027 + }, + { + "x": 688.11763, + "y": 127.71014 + }, + [ + { + "#": 948 + }, + { + "#": 949 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 38, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 951 + }, + "angle": 0, + "vertices": { + "#": 952 + }, + "position": { + "#": 961 + }, + "force": { + "#": 962 + }, + "torque": 0, + "positionImpulse": { + "#": 963 + }, + "constraintImpulse": { + "#": 964 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 965 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 966 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 967 + }, + "bounds": { + "#": 969 + }, + "positionPrev": { + "#": 972 + }, + "anglePrev": 0, + "axes": { + "#": 973 + }, + "area": 4088.59995, + "mass": 4.0886, + "inverseMass": 0.24458, + "inertia": 10666.41244, + "inverseInertia": 0.00009, + "parent": { + "#": 950 + }, + "sleepCounter": 0 + }, + [ + { + "#": 950 + } + ], + [ + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + }, + { + "#": 959 + }, + { + "#": 960 + } + ], + { + "x": 778.40538, + "y": 166.696, + "index": 0, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 757.82938, + "y": 187.272, + "index": 1, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 728.72938, + "y": 187.272, + "index": 2, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 708.15338, + "y": 166.696, + "index": 3, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 708.15338, + "y": 137.596, + "index": 4, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 728.72938, + "y": 117.02, + "index": 5, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 757.82938, + "y": 117.02, + "index": 6, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 778.40538, + "y": 137.596, + "index": 7, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 743.27938, + "y": 152.146 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 968 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 970 + }, + "max": { + "#": 971 + } + }, + { + "x": 708.15338, + "y": 117.02 + }, + { + "x": 778.40538, + "y": 187.272 + }, + { + "x": 743.27938, + "y": 152.146 + }, + [ + { + "#": 974 + }, + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 39, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 979 + }, + "angle": 0, + "vertices": { + "#": 980 + }, + "position": { + "#": 985 + }, + "force": { + "#": 986 + }, + "torque": 0, + "positionImpulse": { + "#": 987 + }, + "constraintImpulse": { + "#": 988 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 989 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 990 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 991 + }, + "bounds": { + "#": 993 + }, + "positionPrev": { + "#": 996 + }, + "anglePrev": 0, + "axes": { + "#": 997 + }, + "area": 1965.14243, + "mass": 1.96514, + "inverseMass": 0.50887, + "inertia": 5563.36836, + "inverseInertia": 0.00018, + "parent": { + "#": 978 + }, + "sleepCounter": 0 + }, + [ + { + "#": 978 + } + ], + [ + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + } + ], + { + "x": 778.40538, + "y": 117.02, + "index": 0, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 867.90966, + "y": 117.02, + "index": 1, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 867.90966, + "y": 138.97585, + "index": 2, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 778.40538, + "y": 138.97585, + "index": 3, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 823.15752, + "y": 127.99792 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 992 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 994 + }, + "max": { + "#": 995 + } + }, + { + "x": 778.40538, + "y": 117.02 + }, + { + "x": 867.90966, + "y": 138.97585 + }, + { + "x": 823.15752, + "y": 127.99792 + }, + [ + { + "#": 998 + }, + { + "#": 999 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 40, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1001 + }, + "angle": 0, + "vertices": { + "#": 1002 + }, + "position": { + "#": 1006 + }, + "force": { + "#": 1007 + }, + "torque": 0, + "positionImpulse": { + "#": 1008 + }, + "constraintImpulse": { + "#": 1009 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1010 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1011 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1012 + }, + "bounds": { + "#": 1014 + }, + "positionPrev": { + "#": 1017 + }, + "anglePrev": 0, + "axes": { + "#": 1018 + }, + "area": 1492.52562, + "mass": 1.49253, + "inverseMass": 0.67001, + "inertia": 1714.83247, + "inverseInertia": 0.00058, + "parent": { + "#": 1000 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1000 + } + ], + [ + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + } + ], + { + "x": 910.27966, + "y": 175.73, + "index": 0, + "body": { + "#": 1000 + }, + "isInternal": false + }, + { + "x": 859.43566, + "y": 146.375, + "index": 1, + "body": { + "#": 1000 + }, + "isInternal": false + }, + { + "x": 910.27966, + "y": 117.02, + "index": 2, + "body": { + "#": 1000 + }, + "isInternal": false + }, + { + "x": 893.33166, + "y": 146.375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1013 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1015 + }, + "max": { + "#": 1016 + } + }, + { + "x": 859.43566, + "y": 117.02 + }, + { + "x": 910.27966, + "y": 175.73 + }, + { + "x": 893.33166, + "y": 146.375 + }, + [ + { + "#": 1019 + }, + { + "#": 1020 + }, + { + "#": 1021 + } + ], + { + "x": -0.5, + "y": 0.86602 + }, + { + "x": -0.5, + "y": -0.86602 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 41, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1023 + }, + "angle": 0, + "vertices": { + "#": 1024 + }, + "position": { + "#": 1029 + }, + "force": { + "#": 1030 + }, + "torque": 0, + "positionImpulse": { + "#": 1031 + }, + "constraintImpulse": { + "#": 1032 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1033 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1034 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1035 + }, + "bounds": { + "#": 1037 + }, + "positionPrev": { + "#": 1040 + }, + "anglePrev": 0, + "axes": { + "#": 1041 + }, + "area": 942.00657, + "mass": 0.94201, + "inverseMass": 1.06156, + "inertia": 767.50816, + "inverseInertia": 0.0013, + "parent": { + "#": 1022 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1022 + } + ], + [ + { + "#": 1025 + }, + { + "#": 1026 + }, + { + "#": 1027 + }, + { + "#": 1028 + } + ], + { + "x": 910.27966, + "y": 117.02, + "index": 0, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 931.33959, + "y": 117.02, + "index": 1, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 931.33959, + "y": 161.74981, + "index": 2, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 910.27966, + "y": 161.74981, + "index": 3, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 920.80963, + "y": 139.3849 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1036 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1038 + }, + "max": { + "#": 1039 + } + }, + { + "x": 910.27966, + "y": 117.02 + }, + { + "x": 931.33959, + "y": 161.74981 + }, + { + "x": 920.80963, + "y": 139.3849 + }, + [ + { + "#": 1042 + }, + { + "#": 1043 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 42, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1045 + }, + "angle": 0, + "vertices": { + "#": 1046 + }, + "position": { + "#": 1051 + }, + "force": { + "#": 1052 + }, + "torque": 0, + "positionImpulse": { + "#": 1053 + }, + "constraintImpulse": { + "#": 1054 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1055 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1056 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1057 + }, + "bounds": { + "#": 1059 + }, + "positionPrev": { + "#": 1062 + }, + "anglePrev": 0, + "axes": { + "#": 1063 + }, + "area": 2898.41559, + "mass": 2.89842, + "inverseMass": 0.34502, + "inertia": 12806.46533, + "inverseInertia": 0.00008, + "parent": { + "#": 1044 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1044 + } + ], + [ + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + } + ], + { + "x": 931.33959, + "y": 117.02, + "index": 0, + "body": { + "#": 1044 + }, + "isInternal": false + }, + { + "x": 1043.53558, + "y": 117.02, + "index": 1, + "body": { + "#": 1044 + }, + "isInternal": false + }, + { + "x": 1043.53558, + "y": 142.8535, + "index": 2, + "body": { + "#": 1044 + }, + "isInternal": false + }, + { + "x": 931.33959, + "y": 142.8535, + "index": 3, + "body": { + "#": 1044 + }, + "isInternal": false + }, + { + "x": 987.43759, + "y": 129.93675 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1058 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1060 + }, + "max": { + "#": 1061 + } + }, + { + "x": 931.33959, + "y": 117.02 + }, + { + "x": 1043.53558, + "y": 142.8535 + }, + { + "x": 987.43759, + "y": 129.93675 + }, + [ + { + "#": 1064 + }, + { + "#": 1065 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 43, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1067 + }, + "angle": 0, + "vertices": { + "#": 1068 + }, + "position": { + "#": 1072 + }, + "force": { + "#": 1073 + }, + "torque": 0, + "positionImpulse": { + "#": 1074 + }, + "constraintImpulse": { + "#": 1075 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1076 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1077 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1078 + }, + "bounds": { + "#": 1080 + }, + "positionPrev": { + "#": 1083 + }, + "anglePrev": 0, + "axes": { + "#": 1084 + }, + "area": 842.52305, + "mass": 0.84252, + "inverseMass": 1.18691, + "inertia": 546.43901, + "inverseInertia": 0.00183, + "parent": { + "#": 1066 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1066 + } + ], + [ + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + } + ], + { + "x": 1075.36975, + "y": 161.13, + "index": 0, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 1037.16875, + "y": 139.075, + "index": 1, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 1075.36975, + "y": 117.02, + "index": 2, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 1062.63608, + "y": 139.075 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1079 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1081 + }, + "max": { + "#": 1082 + } + }, + { + "x": 1037.16875, + "y": 117.02 + }, + { + "x": 1075.36975, + "y": 161.13 + }, + { + "x": 1062.63608, + "y": 139.075 + }, + [ + { + "#": 1085 + }, + { + "#": 1086 + }, + { + "#": 1087 + } + ], + { + "x": -0.49999, + "y": 0.86603 + }, + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 44, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1089 + }, + "angle": 0, + "vertices": { + "#": 1090 + }, + "position": { + "#": 1117 + }, + "force": { + "#": 1118 + }, + "torque": 0, + "positionImpulse": { + "#": 1119 + }, + "constraintImpulse": { + "#": 1120 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1121 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1122 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1123 + }, + "circleRadius": 46.27315, + "bounds": { + "#": 1125 + }, + "positionPrev": { + "#": 1128 + }, + "anglePrev": 0, + "axes": { + "#": 1129 + }, + "area": 6661.54248, + "mass": 6.66154, + "inverseMass": 0.15012, + "inertia": 28251.27242, + "inverseInertia": 0.00004, + "parent": { + "#": 1088 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1088 + } + ], + [ + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + }, + { + "#": 1108 + }, + { + "#": 1109 + }, + { + "#": 1110 + }, + { + "#": 1111 + }, + { + "#": 1112 + }, + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + } + ], + { + "x": 1167.24175, + "y": 168.871, + "index": 0, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1164.57175, + "y": 179.702, + "index": 1, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1159.38775, + "y": 189.579, + "index": 2, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1151.99075, + "y": 197.929, + "index": 3, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1142.80975, + "y": 204.266, + "index": 4, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1132.37975, + "y": 208.222, + "index": 5, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1121.30575, + "y": 209.566, + "index": 6, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1110.23175, + "y": 208.222, + "index": 7, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1099.80175, + "y": 204.266, + "index": 8, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1090.62075, + "y": 197.929, + "index": 9, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1083.22375, + "y": 189.579, + "index": 10, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1078.03975, + "y": 179.702, + "index": 11, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1075.36975, + "y": 168.871, + "index": 12, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1075.36975, + "y": 157.715, + "index": 13, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1078.03975, + "y": 146.884, + "index": 14, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1083.22375, + "y": 137.007, + "index": 15, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1090.62075, + "y": 128.657, + "index": 16, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1099.80175, + "y": 122.32, + "index": 17, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1110.23175, + "y": 118.364, + "index": 18, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1121.30575, + "y": 117.02, + "index": 19, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1132.37975, + "y": 118.364, + "index": 20, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1142.80975, + "y": 122.32, + "index": 21, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1151.99075, + "y": 128.657, + "index": 22, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1159.38775, + "y": 137.007, + "index": 23, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1164.57175, + "y": 146.884, + "index": 24, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1167.24175, + "y": 157.715, + "index": 25, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1121.30575, + "y": 163.293 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1124 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1126 + }, + "max": { + "#": 1127 + } + }, + { + "x": 1075.36975, + "y": 117.02 + }, + { + "x": 1167.24175, + "y": 209.566 + }, + { + "x": 1121.30575, + "y": 163.293 + }, + [ + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88545, + "y": -0.46473 + }, + { + "x": -0.74853, + "y": -0.6631 + }, + { + "x": -0.56805, + "y": -0.82299 + }, + { + "x": -0.35464, + "y": -0.935 + }, + { + "x": -0.12048, + "y": -0.99272 + }, + { + "x": 0.12048, + "y": -0.99272 + }, + { + "x": 0.35464, + "y": -0.935 + }, + { + "x": 0.56805, + "y": -0.82299 + }, + { + "x": 0.74853, + "y": -0.6631 + }, + { + "x": 0.88545, + "y": -0.46473 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 45, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1144 + }, + "angle": 0, + "vertices": { + "#": 1145 + }, + "position": { + "#": 1150 + }, + "force": { + "#": 1151 + }, + "torque": 0, + "positionImpulse": { + "#": 1152 + }, + "constraintImpulse": { + "#": 1153 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1154 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1155 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1156 + }, + "bounds": { + "#": 1158 + }, + "positionPrev": { + "#": 1161 + }, + "anglePrev": 0, + "axes": { + "#": 1162 + }, + "area": 1051.31113, + "mass": 1.05131, + "inverseMass": 0.95119, + "inertia": 749.58313, + "inverseInertia": 0.00133, + "parent": { + "#": 1143 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1143 + } + ], + [ + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + } + ], + { + "x": 20, + "y": 213.55, + "index": 0, + "body": { + "#": 1143 + }, + "isInternal": false + }, + { + "x": 49.54835, + "y": 213.55, + "index": 1, + "body": { + "#": 1143 + }, + "isInternal": false + }, + { + "x": 49.54835, + "y": 249.12935, + "index": 2, + "body": { + "#": 1143 + }, + "isInternal": false + }, + { + "x": 20, + "y": 249.12935, + "index": 3, + "body": { + "#": 1143 + }, + "isInternal": false + }, + { + "x": 34.77418, + "y": 231.33967 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1157 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1159 + }, + "max": { + "#": 1160 + } + }, + { + "x": 20, + "y": 213.55 + }, + { + "x": 49.54835, + "y": 249.12935 + }, + { + "x": 34.77418, + "y": 231.33967 + }, + [ + { + "#": 1163 + }, + { + "#": 1164 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 46, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1166 + }, + "angle": 0, + "vertices": { + "#": 1167 + }, + "position": { + "#": 1175 + }, + "force": { + "#": 1176 + }, + "torque": 0, + "positionImpulse": { + "#": 1177 + }, + "constraintImpulse": { + "#": 1178 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1179 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1180 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1181 + }, + "bounds": { + "#": 1183 + }, + "positionPrev": { + "#": 1186 + }, + "anglePrev": 0, + "axes": { + "#": 1187 + }, + "area": 6245.524, + "mass": 6.24552, + "inverseMass": 0.16011, + "inertia": 24931.28629, + "inverseInertia": 0.00004, + "parent": { + "#": 1165 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1165 + } + ], + [ + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + } + ], + { + "x": 137.99982, + "y": 280.855, + "index": 0, + "body": { + "#": 1165 + }, + "isInternal": false + }, + { + "x": 105.58782, + "y": 306.704, + "index": 1, + "body": { + "#": 1165 + }, + "isInternal": false + }, + { + "x": 65.16982, + "y": 297.478, + "index": 2, + "body": { + "#": 1165 + }, + "isInternal": false + }, + { + "x": 47.18282, + "y": 260.127, + "index": 3, + "body": { + "#": 1165 + }, + "isInternal": false + }, + { + "x": 65.16982, + "y": 222.776, + "index": 4, + "body": { + "#": 1165 + }, + "isInternal": false + }, + { + "x": 105.58782, + "y": 213.55, + "index": 5, + "body": { + "#": 1165 + }, + "isInternal": false + }, + { + "x": 137.99982, + "y": 239.399, + "index": 6, + "body": { + "#": 1165 + }, + "isInternal": false + }, + { + "x": 94.95685, + "y": 260.127 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1182 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1184 + }, + "max": { + "#": 1185 + } + }, + { + "x": 47.18282, + "y": 213.55 + }, + { + "x": 137.99982, + "y": 306.704 + }, + { + "x": 94.95685, + "y": 260.127 + }, + [ + { + "#": 1188 + }, + { + "#": 1189 + }, + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + }, + { + "#": 1194 + } + ], + { + "x": 0.62351, + "y": 0.78182 + }, + { + "x": -0.22254, + "y": 0.97492 + }, + { + "x": -0.90097, + "y": 0.43388 + }, + { + "x": -0.90097, + "y": -0.43388 + }, + { + "x": -0.22254, + "y": -0.97492 + }, + { + "x": 0.62351, + "y": -0.78182 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 47, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1196 + }, + "angle": 0, + "vertices": { + "#": 1197 + }, + "position": { + "#": 1201 + }, + "force": { + "#": 1202 + }, + "torque": 0, + "positionImpulse": { + "#": 1203 + }, + "constraintImpulse": { + "#": 1204 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1205 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1206 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1207 + }, + "bounds": { + "#": 1209 + }, + "positionPrev": { + "#": 1212 + }, + "anglePrev": 0, + "axes": { + "#": 1213 + }, + "area": 1100.44355, + "mass": 1.10044, + "inverseMass": 0.90872, + "inertia": 932.20976, + "inverseInertia": 0.00107, + "parent": { + "#": 1195 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1195 + } + ], + [ + { + "#": 1198 + }, + { + "#": 1199 + }, + { + "#": 1200 + } + ], + { + "x": 174.38148, + "y": 263.962, + "index": 0, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 130.72348, + "y": 238.756, + "index": 1, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 174.38148, + "y": 213.55, + "index": 2, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 159.82882, + "y": 238.756 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1208 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1210 + }, + "max": { + "#": 1211 + } + }, + { + "x": 130.72348, + "y": 213.55 + }, + { + "x": 174.38148, + "y": 263.962 + }, + { + "x": 159.82882, + "y": 238.756 + }, + [ + { + "#": 1214 + }, + { + "#": 1215 + }, + { + "#": 1216 + } + ], + { + "x": -0.5, + "y": 0.86603 + }, + { + "x": -0.5, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 48, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1218 + }, + "angle": 0, + "vertices": { + "#": 1219 + }, + "position": { + "#": 1227 + }, + "force": { + "#": 1228 + }, + "torque": 0, + "positionImpulse": { + "#": 1229 + }, + "constraintImpulse": { + "#": 1230 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1231 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1232 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1233 + }, + "bounds": { + "#": 1235 + }, + "positionPrev": { + "#": 1238 + }, + "anglePrev": 0, + "axes": { + "#": 1239 + }, + "area": 4695.38663, + "mass": 4.69539, + "inverseMass": 0.21298, + "inertia": 14091.25388, + "inverseInertia": 0.00007, + "parent": { + "#": 1217 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1217 + } + ], + [ + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + }, + { + "#": 1226 + } + ], + { + "x": 251.07436, + "y": 271.908, + "index": 0, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 222.97136, + "y": 294.32, + "index": 1, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 187.92636, + "y": 286.321, + "index": 2, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 172.33036, + "y": 253.935, + "index": 3, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 187.92636, + "y": 221.549, + "index": 4, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 222.97136, + "y": 213.55, + "index": 5, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 251.07436, + "y": 235.962, + "index": 6, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 213.75348, + "y": 253.935 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1234 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1236 + }, + "max": { + "#": 1237 + } + }, + { + "x": 172.33036, + "y": 213.55 + }, + { + "x": 251.07436, + "y": 294.32 + }, + { + "x": 213.75348, + "y": 253.935 + }, + [ + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + } + ], + { + "x": 0.6235, + "y": 0.78182 + }, + { + "x": -0.22253, + "y": 0.97493 + }, + { + "x": -0.90097, + "y": 0.43388 + }, + { + "x": -0.90097, + "y": -0.43388 + }, + { + "x": -0.22253, + "y": -0.97493 + }, + { + "x": 0.6235, + "y": -0.78182 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 49, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1248 + }, + "angle": 0, + "vertices": { + "#": 1249 + }, + "position": { + "#": 1254 + }, + "force": { + "#": 1255 + }, + "torque": 0, + "positionImpulse": { + "#": 1256 + }, + "constraintImpulse": { + "#": 1257 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1258 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1259 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1260 + }, + "bounds": { + "#": 1262 + }, + "positionPrev": { + "#": 1265 + }, + "anglePrev": 0, + "axes": { + "#": 1266 + }, + "area": 2533.6813, + "mass": 2.53368, + "inverseMass": 0.39468, + "inertia": 9087.28705, + "inverseInertia": 0.00011, + "parent": { + "#": 1247 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1247 + } + ], + [ + { + "#": 1250 + }, + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + } + ], + { + "x": 251.07436, + "y": 213.55, + "index": 0, + "body": { + "#": 1247 + }, + "isInternal": false + }, + { + "x": 351.70142, + "y": 213.55, + "index": 1, + "body": { + "#": 1247 + }, + "isInternal": false + }, + { + "x": 351.70142, + "y": 238.72893, + "index": 2, + "body": { + "#": 1247 + }, + "isInternal": false + }, + { + "x": 251.07436, + "y": 238.72893, + "index": 3, + "body": { + "#": 1247 + }, + "isInternal": false + }, + { + "x": 301.38789, + "y": 226.13946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1261 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1263 + }, + "max": { + "#": 1264 + } + }, + { + "x": 251.07436, + "y": 213.55 + }, + { + "x": 351.70142, + "y": 238.72893 + }, + { + "x": 301.38789, + "y": 226.13946 + }, + [ + { + "#": 1267 + }, + { + "#": 1268 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 50, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1270 + }, + "angle": 0, + "vertices": { + "#": 1271 + }, + "position": { + "#": 1276 + }, + "force": { + "#": 1277 + }, + "torque": 0, + "positionImpulse": { + "#": 1278 + }, + "constraintImpulse": { + "#": 1279 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1280 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1281 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1282 + }, + "bounds": { + "#": 1284 + }, + "positionPrev": { + "#": 1287 + }, + "anglePrev": 0, + "axes": { + "#": 1288 + }, + "area": 2082.10472, + "mass": 2.0821, + "inverseMass": 0.48028, + "inertia": 2917.865, + "inverseInertia": 0.00034, + "parent": { + "#": 1269 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1269 + } + ], + [ + { + "#": 1272 + }, + { + "#": 1273 + }, + { + "#": 1274 + }, + { + "#": 1275 + } + ], + { + "x": 351.70142, + "y": 213.55, + "index": 0, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 394.27883, + "y": 213.55, + "index": 1, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 394.27883, + "y": 262.45162, + "index": 2, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 351.70142, + "y": 262.45162, + "index": 3, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 372.99012, + "y": 238.00081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1283 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1285 + }, + "max": { + "#": 1286 + } + }, + { + "x": 351.70142, + "y": 213.55 + }, + { + "x": 394.27883, + "y": 262.45162 + }, + { + "x": 372.99012, + "y": 238.00081 + }, + [ + { + "#": 1289 + }, + { + "#": 1290 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 51, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1292 + }, + "angle": 0, + "vertices": { + "#": 1293 + }, + "position": { + "#": 1298 + }, + "force": { + "#": 1299 + }, + "torque": 0, + "positionImpulse": { + "#": 1300 + }, + "constraintImpulse": { + "#": 1301 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1302 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1303 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1304 + }, + "bounds": { + "#": 1306 + }, + "positionPrev": { + "#": 1309 + }, + "anglePrev": 0, + "axes": { + "#": 1310 + }, + "area": 2570.18089, + "mass": 2.57018, + "inverseMass": 0.38908, + "inertia": 7426.99294, + "inverseInertia": 0.00013, + "parent": { + "#": 1291 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1291 + } + ], + [ + { + "#": 1294 + }, + { + "#": 1295 + }, + { + "#": 1296 + }, + { + "#": 1297 + } + ], + { + "x": 394.27883, + "y": 213.55, + "index": 0, + "body": { + "#": 1291 + }, + "isInternal": false + }, + { + "x": 482.73682, + "y": 213.55, + "index": 1, + "body": { + "#": 1291 + }, + "isInternal": false + }, + { + "x": 482.73682, + "y": 242.60538, + "index": 2, + "body": { + "#": 1291 + }, + "isInternal": false + }, + { + "x": 394.27883, + "y": 242.60538, + "index": 3, + "body": { + "#": 1291 + }, + "isInternal": false + }, + { + "x": 438.50783, + "y": 228.07769 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1305 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1307 + }, + "max": { + "#": 1308 + } + }, + { + "x": 394.27883, + "y": 213.55 + }, + { + "x": 482.73682, + "y": 242.60538 + }, + { + "x": 438.50783, + "y": 228.07769 + }, + [ + { + "#": 1311 + }, + { + "#": 1312 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 52, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1314 + }, + "angle": 0, + "vertices": { + "#": 1315 + }, + "position": { + "#": 1319 + }, + "force": { + "#": 1320 + }, + "torque": 0, + "positionImpulse": { + "#": 1321 + }, + "constraintImpulse": { + "#": 1322 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1323 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1324 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1325 + }, + "bounds": { + "#": 1327 + }, + "positionPrev": { + "#": 1330 + }, + "anglePrev": 0, + "axes": { + "#": 1331 + }, + "area": 1460.27851, + "mass": 1.46028, + "inverseMass": 0.6848, + "inertia": 1641.53255, + "inverseInertia": 0.00061, + "parent": { + "#": 1313 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1313 + } + ], + [ + { + "#": 1316 + }, + { + "#": 1317 + }, + { + "#": 1318 + } + ], + { + "x": 524.64682, + "y": 271.622, + "index": 0, + "body": { + "#": 1313 + }, + "isInternal": false + }, + { + "x": 474.35482, + "y": 242.586, + "index": 1, + "body": { + "#": 1313 + }, + "isInternal": false + }, + { + "x": 524.64682, + "y": 213.55, + "index": 2, + "body": { + "#": 1313 + }, + "isInternal": false + }, + { + "x": 507.88282, + "y": 242.586 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1326 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1328 + }, + "max": { + "#": 1329 + } + }, + { + "x": 474.35482, + "y": 213.55 + }, + { + "x": 524.64682, + "y": 271.622 + }, + { + "x": 507.88282, + "y": 242.586 + }, + [ + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + } + ], + { + "x": -0.5, + "y": 0.86603 + }, + { + "x": -0.5, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 53, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1336 + }, + "angle": 0, + "vertices": { + "#": 1337 + }, + "position": { + "#": 1345 + }, + "force": { + "#": 1346 + }, + "torque": 0, + "positionImpulse": { + "#": 1347 + }, + "constraintImpulse": { + "#": 1348 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1349 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1350 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1351 + }, + "bounds": { + "#": 1353 + }, + "positionPrev": { + "#": 1356 + }, + "anglePrev": 0, + "axes": { + "#": 1357 + }, + "area": 4167.43305, + "mass": 4.16743, + "inverseMass": 0.23996, + "inertia": 11100.54206, + "inverseInertia": 0.00009, + "parent": { + "#": 1335 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1335 + } + ], + [ + { + "#": 1338 + }, + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + }, + { + "#": 1342 + }, + { + "#": 1343 + }, + { + "#": 1344 + } + ], + { + "x": 596.89953, + "y": 268.529, + "index": 0, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 570.42353, + "y": 289.644, + "index": 1, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 537.40753, + "y": 282.108, + "index": 2, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 522.71453, + "y": 251.597, + "index": 3, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 537.40753, + "y": 221.086, + "index": 4, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 570.42353, + "y": 213.55, + "index": 5, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 596.89953, + "y": 234.665, + "index": 6, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 561.73932, + "y": 251.597 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1352 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1354 + }, + "max": { + "#": 1355 + } + }, + { + "x": 522.71453, + "y": 213.55 + }, + { + "x": 596.89953, + "y": 289.644 + }, + { + "x": 561.73932, + "y": 251.597 + }, + [ + { + "#": 1358 + }, + { + "#": 1359 + }, + { + "#": 1360 + }, + { + "#": 1361 + }, + { + "#": 1362 + }, + { + "#": 1363 + }, + { + "#": 1364 + } + ], + { + "x": 0.62351, + "y": 0.78182 + }, + { + "x": -0.22253, + "y": 0.97493 + }, + { + "x": -0.90097, + "y": 0.43388 + }, + { + "x": -0.90097, + "y": -0.43388 + }, + { + "x": -0.22253, + "y": -0.97493 + }, + { + "x": 0.62351, + "y": -0.78182 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 54, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1366 + }, + "angle": 0, + "vertices": { + "#": 1367 + }, + "position": { + "#": 1372 + }, + "force": { + "#": 1373 + }, + "torque": 0, + "positionImpulse": { + "#": 1374 + }, + "constraintImpulse": { + "#": 1375 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1376 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1377 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1378 + }, + "bounds": { + "#": 1380 + }, + "positionPrev": { + "#": 1383 + }, + "anglePrev": 0, + "axes": { + "#": 1384 + }, + "area": 1687.76618, + "mass": 1.68777, + "inverseMass": 0.5925, + "inertia": 1980.3012, + "inverseInertia": 0.0005, + "parent": { + "#": 1365 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1365 + } + ], + [ + { + "#": 1368 + }, + { + "#": 1369 + }, + { + "#": 1370 + }, + { + "#": 1371 + } + ], + { + "x": 596.89953, + "y": 213.55, + "index": 0, + "body": { + "#": 1365 + }, + "isInternal": false + }, + { + "x": 632.40982, + "y": 213.55, + "index": 1, + "body": { + "#": 1365 + }, + "isInternal": false + }, + { + "x": 632.40982, + "y": 261.07894, + "index": 2, + "body": { + "#": 1365 + }, + "isInternal": false + }, + { + "x": 596.89953, + "y": 261.07894, + "index": 3, + "body": { + "#": 1365 + }, + "isInternal": false + }, + { + "x": 614.65468, + "y": 237.31447 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1379 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1381 + }, + "max": { + "#": 1382 + } + }, + { + "x": 596.89953, + "y": 213.55 + }, + { + "x": 632.40982, + "y": 261.07894 + }, + { + "x": 614.65468, + "y": 237.31447 + }, + [ + { + "#": 1385 + }, + { + "#": 1386 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 55, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1388 + }, + "angle": 0, + "vertices": { + "#": 1389 + }, + "position": { + "#": 1394 + }, + "force": { + "#": 1395 + }, + "torque": 0, + "positionImpulse": { + "#": 1396 + }, + "constraintImpulse": { + "#": 1397 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1398 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1399 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1400 + }, + "bounds": { + "#": 1402 + }, + "positionPrev": { + "#": 1405 + }, + "anglePrev": 0, + "axes": { + "#": 1406 + }, + "area": 888.8746, + "mass": 0.88887, + "inverseMass": 1.12502, + "inertia": 526.73203, + "inverseInertia": 0.0019, + "parent": { + "#": 1387 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1387 + } + ], + [ + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + } + ], + { + "x": 662.22382, + "y": 243.364, + "index": 0, + "body": { + "#": 1387 + }, + "isInternal": false + }, + { + "x": 632.40982, + "y": 243.364, + "index": 1, + "body": { + "#": 1387 + }, + "isInternal": false + }, + { + "x": 632.40982, + "y": 213.55, + "index": 2, + "body": { + "#": 1387 + }, + "isInternal": false + }, + { + "x": 662.22382, + "y": 213.55, + "index": 3, + "body": { + "#": 1387 + }, + "isInternal": false + }, + { + "x": 647.31682, + "y": 228.457 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1401 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1403 + }, + "max": { + "#": 1404 + } + }, + { + "x": 632.40982, + "y": 213.55 + }, + { + "x": 662.22382, + "y": 243.364 + }, + { + "x": 647.31682, + "y": 228.457 + }, + [ + { + "#": 1407 + }, + { + "#": 1408 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 56, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1410 + }, + "angle": 0, + "vertices": { + "#": 1411 + }, + "position": { + "#": 1416 + }, + "force": { + "#": 1417 + }, + "torque": 0, + "positionImpulse": { + "#": 1418 + }, + "constraintImpulse": { + "#": 1419 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1420 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1421 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1422 + }, + "bounds": { + "#": 1424 + }, + "positionPrev": { + "#": 1427 + }, + "anglePrev": 0, + "axes": { + "#": 1428 + }, + "area": 1624.12153, + "mass": 1.62412, + "inverseMass": 0.61572, + "inertia": 1766.68126, + "inverseInertia": 0.00057, + "parent": { + "#": 1409 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1409 + } + ], + [ + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + }, + { + "#": 1415 + } + ], + { + "x": 662.22382, + "y": 213.55, + "index": 0, + "body": { + "#": 1409 + }, + "isInternal": false + }, + { + "x": 704.51304, + "y": 213.55, + "index": 1, + "body": { + "#": 1409 + }, + "isInternal": false + }, + { + "x": 704.51304, + "y": 251.95509, + "index": 2, + "body": { + "#": 1409 + }, + "isInternal": false + }, + { + "x": 662.22382, + "y": 251.95509, + "index": 3, + "body": { + "#": 1409 + }, + "isInternal": false + }, + { + "x": 683.36843, + "y": 232.75255 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1423 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1425 + }, + "max": { + "#": 1426 + } + }, + { + "x": 662.22382, + "y": 213.55 + }, + { + "x": 704.51304, + "y": 251.95509 + }, + { + "x": 683.36843, + "y": 232.75255 + }, + [ + { + "#": 1429 + }, + { + "#": 1430 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 57, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1432 + }, + "angle": 0, + "vertices": { + "#": 1433 + }, + "position": { + "#": 1438 + }, + "force": { + "#": 1439 + }, + "torque": 0, + "positionImpulse": { + "#": 1440 + }, + "constraintImpulse": { + "#": 1441 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1442 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1443 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1444 + }, + "bounds": { + "#": 1446 + }, + "positionPrev": { + "#": 1449 + }, + "anglePrev": 0, + "axes": { + "#": 1450 + }, + "area": 925.43359, + "mass": 0.92543, + "inverseMass": 1.08057, + "inertia": 658.9066, + "inverseInertia": 0.00152, + "parent": { + "#": 1431 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1431 + } + ], + [ + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + } + ], + { + "x": 704.51304, + "y": 213.55, + "index": 0, + "body": { + "#": 1431 + }, + "isInternal": false + }, + { + "x": 744.52668, + "y": 213.55, + "index": 1, + "body": { + "#": 1431 + }, + "isInternal": false + }, + { + "x": 744.52668, + "y": 236.67796, + "index": 2, + "body": { + "#": 1431 + }, + "isInternal": false + }, + { + "x": 704.51304, + "y": 236.67796, + "index": 3, + "body": { + "#": 1431 + }, + "isInternal": false + }, + { + "x": 724.51986, + "y": 225.11398 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1445 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1447 + }, + "max": { + "#": 1448 + } + }, + { + "x": 704.51304, + "y": 213.55 + }, + { + "x": 744.52668, + "y": 236.67796 + }, + { + "x": 724.51986, + "y": 225.11398 + }, + [ + { + "#": 1451 + }, + { + "#": 1452 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 58, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1454 + }, + "angle": 0, + "vertices": { + "#": 1455 + }, + "position": { + "#": 1482 + }, + "force": { + "#": 1483 + }, + "torque": 0, + "positionImpulse": { + "#": 1484 + }, + "constraintImpulse": { + "#": 1485 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1486 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1487 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1488 + }, + "circleRadius": 43.65625, + "bounds": { + "#": 1490 + }, + "positionPrev": { + "#": 1493 + }, + "anglePrev": 0, + "axes": { + "#": 1494 + }, + "area": 5929.34751, + "mass": 5.92935, + "inverseMass": 0.16865, + "inertia": 22382.17147, + "inverseInertia": 0.00004, + "parent": { + "#": 1453 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1453 + } + ], + [ + { + "#": 1456 + }, + { + "#": 1457 + }, + { + "#": 1458 + }, + { + "#": 1459 + }, + { + "#": 1460 + }, + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + }, + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + }, + { + "#": 1473 + }, + { + "#": 1474 + }, + { + "#": 1475 + }, + { + "#": 1476 + }, + { + "#": 1477 + }, + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + }, + { + "#": 1481 + } + ], + { + "x": 831.20268, + "y": 262.468, + "index": 0, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 828.68368, + "y": 272.687, + "index": 1, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 823.79268, + "y": 282.006, + "index": 2, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 816.81368, + "y": 289.883, + "index": 3, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 808.15268, + "y": 295.862, + "index": 4, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 798.31268, + "y": 299.594, + "index": 5, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 787.86468, + "y": 300.862, + "index": 6, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 777.41668, + "y": 299.594, + "index": 7, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 767.57668, + "y": 295.862, + "index": 8, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 758.91568, + "y": 289.883, + "index": 9, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 751.93668, + "y": 282.006, + "index": 10, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 747.04568, + "y": 272.687, + "index": 11, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 744.52668, + "y": 262.468, + "index": 12, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 744.52668, + "y": 251.944, + "index": 13, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 747.04568, + "y": 241.725, + "index": 14, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 751.93668, + "y": 232.406, + "index": 15, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 758.91568, + "y": 224.529, + "index": 16, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 767.57668, + "y": 218.55, + "index": 17, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 777.41668, + "y": 214.818, + "index": 18, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 787.86468, + "y": 213.55, + "index": 19, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 798.31268, + "y": 214.818, + "index": 20, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 808.15268, + "y": 218.55, + "index": 21, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 816.81368, + "y": 224.529, + "index": 22, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 823.79268, + "y": 232.406, + "index": 23, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 828.68368, + "y": 241.725, + "index": 24, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 831.20268, + "y": 251.944, + "index": 25, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 787.86468, + "y": 257.206 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1489 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1491 + }, + "max": { + "#": 1492 + } + }, + { + "x": 744.52668, + "y": 213.55 + }, + { + "x": 831.20268, + "y": 300.862 + }, + { + "x": 787.86468, + "y": 257.206 + }, + [ + { + "#": 1495 + }, + { + "#": 1496 + }, + { + "#": 1497 + }, + { + "#": 1498 + }, + { + "#": 1499 + }, + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + } + ], + { + "x": -0.97094, + "y": -0.23934 + }, + { + "x": -0.88546, + "y": -0.46472 + }, + { + "x": -0.74848, + "y": -0.66315 + }, + { + "x": -0.56811, + "y": -0.82295 + }, + { + "x": -0.35462, + "y": -0.93501 + }, + { + "x": -0.12048, + "y": -0.99272 + }, + { + "x": 0.12048, + "y": -0.99272 + }, + { + "x": 0.35462, + "y": -0.93501 + }, + { + "x": 0.56811, + "y": -0.82295 + }, + { + "x": 0.74848, + "y": -0.66315 + }, + { + "x": 0.88546, + "y": -0.46472 + }, + { + "x": 0.97094, + "y": -0.23934 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 59, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1509 + }, + "angle": 0, + "vertices": { + "#": 1510 + }, + "position": { + "#": 1515 + }, + "force": { + "#": 1516 + }, + "torque": 0, + "positionImpulse": { + "#": 1517 + }, + "constraintImpulse": { + "#": 1518 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1519 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1520 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1521 + }, + "bounds": { + "#": 1523 + }, + "positionPrev": { + "#": 1526 + }, + "anglePrev": 0, + "axes": { + "#": 1527 + }, + "area": 2550.1664, + "mass": 2.55017, + "inverseMass": 0.39213, + "inertia": 10939.16513, + "inverseInertia": 0.00009, + "parent": { + "#": 1508 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1508 + } + ], + [ + { + "#": 1511 + }, + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + } + ], + { + "x": 831.20268, + "y": 213.55, + "index": 0, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 942.29647, + "y": 213.55, + "index": 1, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 942.29647, + "y": 236.50508, + "index": 2, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 831.20268, + "y": 236.50508, + "index": 3, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 886.74957, + "y": 225.02754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1522 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1524 + }, + "max": { + "#": 1525 + } + }, + { + "x": 831.20268, + "y": 213.55 + }, + { + "x": 942.29647, + "y": 236.50508 + }, + { + "x": 886.74957, + "y": 225.02754 + }, + [ + { + "#": 1528 + }, + { + "#": 1529 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 60, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1531 + }, + "angle": 0, + "vertices": { + "#": 1532 + }, + "position": { + "#": 1559 + }, + "force": { + "#": 1560 + }, + "torque": 0, + "positionImpulse": { + "#": 1561 + }, + "constraintImpulse": { + "#": 1562 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1563 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1564 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1565 + }, + "circleRadius": 40.78241, + "bounds": { + "#": 1567 + }, + "positionPrev": { + "#": 1570 + }, + "anglePrev": 0, + "axes": { + "#": 1571 + }, + "area": 5174.38131, + "mass": 5.17438, + "inverseMass": 0.19326, + "inertia": 17045.32427, + "inverseInertia": 0.00006, + "parent": { + "#": 1530 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1530 + } + ], + [ + { + "#": 1533 + }, + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + }, + { + "#": 1537 + }, + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + }, + { + "#": 1543 + }, + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + }, + { + "#": 1548 + }, + { + "#": 1549 + }, + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + }, + { + "#": 1553 + }, + { + "#": 1554 + }, + { + "#": 1555 + }, + { + "#": 1556 + }, + { + "#": 1557 + }, + { + "#": 1558 + } + ], + { + "x": 1023.26647, + "y": 259.248, + "index": 0, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 1020.91347, + "y": 268.794, + "index": 1, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 1016.34447, + "y": 277.499, + "index": 2, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 1009.82547, + "y": 284.858, + "index": 3, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 1001.73447, + "y": 290.443, + "index": 4, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 992.54147, + "y": 293.929, + "index": 5, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 982.78147, + "y": 295.114, + "index": 6, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 973.02147, + "y": 293.929, + "index": 7, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 963.82847, + "y": 290.443, + "index": 8, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 955.73747, + "y": 284.858, + "index": 9, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 949.21847, + "y": 277.499, + "index": 10, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 944.64947, + "y": 268.794, + "index": 11, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 942.29647, + "y": 259.248, + "index": 12, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 942.29647, + "y": 249.416, + "index": 13, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 944.64947, + "y": 239.87, + "index": 14, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 949.21847, + "y": 231.165, + "index": 15, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 955.73747, + "y": 223.806, + "index": 16, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 963.82847, + "y": 218.221, + "index": 17, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 973.02147, + "y": 214.735, + "index": 18, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 982.78147, + "y": 213.55, + "index": 19, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 992.54147, + "y": 214.735, + "index": 20, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 1001.73447, + "y": 218.221, + "index": 21, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 1009.82547, + "y": 223.806, + "index": 22, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 1016.34447, + "y": 231.165, + "index": 23, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 1020.91347, + "y": 239.87, + "index": 24, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 1023.26647, + "y": 249.416, + "index": 25, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 982.78147, + "y": 254.332 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1566 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1568 + }, + "max": { + "#": 1569 + } + }, + { + "x": 942.29647, + "y": 213.55 + }, + { + "x": 1023.26647, + "y": 295.114 + }, + { + "x": 982.78147, + "y": 254.332 + }, + [ + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + }, + { + "#": 1577 + }, + { + "#": 1578 + }, + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + }, + { + "#": 1583 + }, + { + "#": 1584 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88544, + "y": -0.46474 + }, + { + "x": -0.74854, + "y": -0.66309 + }, + { + "x": -0.56808, + "y": -0.82298 + }, + { + "x": -0.35457, + "y": -0.93503 + }, + { + "x": -0.12053, + "y": -0.99271 + }, + { + "x": 0.12053, + "y": -0.99271 + }, + { + "x": 0.35457, + "y": -0.93503 + }, + { + "x": 0.56808, + "y": -0.82298 + }, + { + "x": 0.74854, + "y": -0.66309 + }, + { + "x": 0.88544, + "y": -0.46474 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 61, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1586 + }, + "angle": 0, + "vertices": { + "#": 1587 + }, + "position": { + "#": 1592 + }, + "force": { + "#": 1593 + }, + "torque": 0, + "positionImpulse": { + "#": 1594 + }, + "constraintImpulse": { + "#": 1595 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1596 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1597 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1598 + }, + "bounds": { + "#": 1600 + }, + "positionPrev": { + "#": 1603 + }, + "anglePrev": 0, + "axes": { + "#": 1604 + }, + "area": 1308.20346, + "mass": 1.3082, + "inverseMass": 0.76441, + "inertia": 1149.85791, + "inverseInertia": 0.00087, + "parent": { + "#": 1585 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1585 + } + ], + [ + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + } + ], + { + "x": 1023.26647, + "y": 213.55, + "index": 0, + "body": { + "#": 1585 + }, + "isInternal": false + }, + { + "x": 1061.76853, + "y": 213.55, + "index": 1, + "body": { + "#": 1585 + }, + "isInternal": false + }, + { + "x": 1061.76853, + "y": 247.52749, + "index": 2, + "body": { + "#": 1585 + }, + "isInternal": false + }, + { + "x": 1023.26647, + "y": 247.52749, + "index": 3, + "body": { + "#": 1585 + }, + "isInternal": false + }, + { + "x": 1042.5175, + "y": 230.53875 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1599 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1601 + }, + "max": { + "#": 1602 + } + }, + { + "x": 1023.26647, + "y": 213.55 + }, + { + "x": 1061.76853, + "y": 247.52749 + }, + { + "x": 1042.5175, + "y": 230.53875 + }, + [ + { + "#": 1605 + }, + { + "#": 1606 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 62, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1608 + }, + "angle": 0, + "vertices": { + "#": 1609 + }, + "position": { + "#": 1617 + }, + "force": { + "#": 1618 + }, + "torque": 0, + "positionImpulse": { + "#": 1619 + }, + "constraintImpulse": { + "#": 1620 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1621 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1622 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1623 + }, + "bounds": { + "#": 1625 + }, + "positionPrev": { + "#": 1628 + }, + "anglePrev": 0, + "axes": { + "#": 1629 + }, + "area": 3803.77675, + "mass": 3.80378, + "inverseMass": 0.2629, + "inertia": 9247.76875, + "inverseInertia": 0.00011, + "parent": { + "#": 1607 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1607 + } + ], + [ + { + "#": 1610 + }, + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + }, + { + "#": 1614 + }, + { + "#": 1615 + }, + { + "#": 1616 + } + ], + { + "x": 1130.79717, + "y": 266.076, + "index": 0, + "body": { + "#": 1607 + }, + "isInternal": false + }, + { + "x": 1105.50217, + "y": 286.248, + "index": 1, + "body": { + "#": 1607 + }, + "isInternal": false + }, + { + "x": 1073.96017, + "y": 279.048, + "index": 2, + "body": { + "#": 1607 + }, + "isInternal": false + }, + { + "x": 1059.92217, + "y": 249.899, + "index": 3, + "body": { + "#": 1607 + }, + "isInternal": false + }, + { + "x": 1073.96017, + "y": 220.75, + "index": 4, + "body": { + "#": 1607 + }, + "isInternal": false + }, + { + "x": 1105.50217, + "y": 213.55, + "index": 5, + "body": { + "#": 1607 + }, + "isInternal": false + }, + { + "x": 1130.79717, + "y": 233.722, + "index": 6, + "body": { + "#": 1607 + }, + "isInternal": false + }, + { + "x": 1097.20603, + "y": 249.899 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1624 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1626 + }, + "max": { + "#": 1627 + } + }, + { + "x": 1059.92217, + "y": 213.55 + }, + { + "x": 1130.79717, + "y": 286.248 + }, + { + "x": 1097.20603, + "y": 249.899 + }, + [ + { + "#": 1630 + }, + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + } + ], + { + "x": 0.62349, + "y": 0.78183 + }, + { + "x": -0.22254, + "y": 0.97492 + }, + { + "x": -0.90096, + "y": 0.4339 + }, + { + "x": -0.90096, + "y": -0.4339 + }, + { + "x": -0.22254, + "y": -0.97492 + }, + { + "x": 0.62349, + "y": -0.78183 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 63, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1638 + }, + "angle": 0, + "vertices": { + "#": 1639 + }, + "position": { + "#": 1644 + }, + "force": { + "#": 1645 + }, + "torque": 0, + "positionImpulse": { + "#": 1646 + }, + "constraintImpulse": { + "#": 1647 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1648 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1649 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1650 + }, + "bounds": { + "#": 1652 + }, + "positionPrev": { + "#": 1655 + }, + "anglePrev": 0, + "axes": { + "#": 1656 + }, + "area": 1519.53857, + "mass": 1.51954, + "inverseMass": 0.65809, + "inertia": 1623.69877, + "inverseInertia": 0.00062, + "parent": { + "#": 1637 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1637 + } + ], + [ + { + "#": 1640 + }, + { + "#": 1641 + }, + { + "#": 1642 + }, + { + "#": 1643 + } + ], + { + "x": 1130.79717, + "y": 213.55, + "index": 0, + "body": { + "#": 1637 + }, + "isInternal": false + }, + { + "x": 1163.85594, + "y": 213.55, + "index": 1, + "body": { + "#": 1637 + }, + "isInternal": false + }, + { + "x": 1163.85594, + "y": 259.51476, + "index": 2, + "body": { + "#": 1637 + }, + "isInternal": false + }, + { + "x": 1130.79717, + "y": 259.51476, + "index": 3, + "body": { + "#": 1637 + }, + "isInternal": false + }, + { + "x": 1147.32655, + "y": 236.53238 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1651 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1653 + }, + "max": { + "#": 1654 + } + }, + { + "x": 1130.79717, + "y": 213.55 + }, + { + "x": 1163.85594, + "y": 259.51476 + }, + { + "x": 1147.32655, + "y": 236.53238 + }, + [ + { + "#": 1657 + }, + { + "#": 1658 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 64, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1660 + }, + "angle": 0, + "vertices": { + "#": 1661 + }, + "position": { + "#": 1666 + }, + "force": { + "#": 1667 + }, + "torque": 0, + "positionImpulse": { + "#": 1668 + }, + "constraintImpulse": { + "#": 1669 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1670 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1671 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1672 + }, + "bounds": { + "#": 1674 + }, + "positionPrev": { + "#": 1677 + }, + "anglePrev": 0, + "axes": { + "#": 1678 + }, + "area": 3306.48, + "mass": 3.30648, + "inverseMass": 0.30244, + "inertia": 7288.54001, + "inverseInertia": 0.00014, + "parent": { + "#": 1659 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1659 + } + ], + [ + { + "#": 1662 + }, + { + "#": 1663 + }, + { + "#": 1664 + }, + { + "#": 1665 + } + ], + { + "x": 1221.35794, + "y": 271.052, + "index": 0, + "body": { + "#": 1659 + }, + "isInternal": false + }, + { + "x": 1163.85594, + "y": 271.052, + "index": 1, + "body": { + "#": 1659 + }, + "isInternal": false + }, + { + "x": 1163.85594, + "y": 213.55, + "index": 2, + "body": { + "#": 1659 + }, + "isInternal": false + }, + { + "x": 1221.35794, + "y": 213.55, + "index": 3, + "body": { + "#": 1659 + }, + "isInternal": false + }, + { + "x": 1192.60694, + "y": 242.301 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1673 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1675 + }, + "max": { + "#": 1676 + } + }, + { + "x": 1163.85594, + "y": 213.55 + }, + { + "x": 1221.35794, + "y": 271.052 + }, + { + "x": 1192.60694, + "y": 242.301 + }, + [ + { + "#": 1679 + }, + { + "#": 1680 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 65, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1682 + }, + "angle": 0, + "vertices": { + "#": 1683 + }, + "position": { + "#": 1687 + }, + "force": { + "#": 1688 + }, + "torque": 0, + "positionImpulse": { + "#": 1689 + }, + "constraintImpulse": { + "#": 1690 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1691 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1692 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1693 + }, + "bounds": { + "#": 1695 + }, + "positionPrev": { + "#": 1698 + }, + "anglePrev": 0, + "axes": { + "#": 1699 + }, + "area": 1545.32445, + "mass": 1.54532, + "inverseMass": 0.64711, + "inertia": 1838.30455, + "inverseInertia": 0.00054, + "parent": { + "#": 1681 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1681 + } + ], + [ + { + "#": 1684 + }, + { + "#": 1685 + }, + { + "#": 1686 + } + ], + { + "x": 63.1125, + "y": 366.444, + "index": 0, + "body": { + "#": 1681 + }, + "isInternal": false + }, + { + "x": 11.3775, + "y": 336.574, + "index": 1, + "body": { + "#": 1681 + }, + "isInternal": false + }, + { + "x": 63.1125, + "y": 306.704, + "index": 2, + "body": { + "#": 1681 + }, + "isInternal": false + }, + { + "x": 45.8675, + "y": 336.574 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1694 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1696 + }, + "max": { + "#": 1697 + } + }, + { + "x": 11.3775, + "y": 306.704 + }, + { + "x": 63.1125, + "y": 366.444 + }, + { + "x": 45.8675, + "y": 336.574 + }, + [ + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + } + ], + { + "x": -0.50001, + "y": 0.86602 + }, + { + "x": -0.50001, + "y": -0.86602 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 66, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1704 + }, + "angle": 0, + "vertices": { + "#": 1705 + }, + "position": { + "#": 1710 + }, + "force": { + "#": 1711 + }, + "torque": 0, + "positionImpulse": { + "#": 1712 + }, + "constraintImpulse": { + "#": 1713 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1714 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1715 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1716 + }, + "bounds": { + "#": 1718 + }, + "positionPrev": { + "#": 1721 + }, + "anglePrev": 0, + "axes": { + "#": 1722 + }, + "area": 832.69161, + "mass": 0.83269, + "inverseMass": 1.20092, + "inertia": 462.47405, + "inverseInertia": 0.00216, + "parent": { + "#": 1703 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1703 + } + ], + [ + { + "#": 1706 + }, + { + "#": 1707 + }, + { + "#": 1708 + }, + { + "#": 1709 + } + ], + { + "x": 63.1125, + "y": 306.704, + "index": 0, + "body": { + "#": 1703 + }, + "isInternal": false + }, + { + "x": 92.4214, + "y": 306.704, + "index": 1, + "body": { + "#": 1703 + }, + "isInternal": false + }, + { + "x": 92.4214, + "y": 335.11488, + "index": 2, + "body": { + "#": 1703 + }, + "isInternal": false + }, + { + "x": 63.1125, + "y": 335.11488, + "index": 3, + "body": { + "#": 1703 + }, + "isInternal": false + }, + { + "x": 77.76695, + "y": 320.90944 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1717 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1719 + }, + "max": { + "#": 1720 + } + }, + { + "x": 63.1125, + "y": 306.704 + }, + { + "x": 92.4214, + "y": 335.11488 + }, + { + "x": 77.76695, + "y": 320.90944 + }, + [ + { + "#": 1723 + }, + { + "#": 1724 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 67, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1726 + }, + "angle": 0, + "vertices": { + "#": 1727 + }, + "position": { + "#": 1733 + }, + "force": { + "#": 1734 + }, + "torque": 0, + "positionImpulse": { + "#": 1735 + }, + "constraintImpulse": { + "#": 1736 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1737 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1738 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1739 + }, + "bounds": { + "#": 1741 + }, + "positionPrev": { + "#": 1744 + }, + "anglePrev": 0, + "axes": { + "#": 1745 + }, + "area": 979.53176, + "mass": 0.97953, + "inverseMass": 1.0209, + "inertia": 621.19304, + "inverseInertia": 0.00161, + "parent": { + "#": 1725 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1725 + } + ], + [ + { + "#": 1728 + }, + { + "#": 1729 + }, + { + "#": 1730 + }, + { + "#": 1731 + }, + { + "#": 1732 + } + ], + { + "x": 127.2013, + "y": 337.938, + "index": 0, + "body": { + "#": 1725 + }, + "isInternal": false + }, + { + "x": 104.5083, + "y": 345.312, + "index": 1, + "body": { + "#": 1725 + }, + "isInternal": false + }, + { + "x": 90.4833, + "y": 326.008, + "index": 2, + "body": { + "#": 1725 + }, + "isInternal": false + }, + { + "x": 104.5083, + "y": 306.704, + "index": 3, + "body": { + "#": 1725 + }, + "isInternal": false + }, + { + "x": 127.2013, + "y": 314.078, + "index": 4, + "body": { + "#": 1725 + }, + "isInternal": false + }, + { + "x": 110.7804, + "y": 326.008 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1740 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1742 + }, + "max": { + "#": 1743 + } + }, + { + "x": 90.4833, + "y": 306.704 + }, + { + "x": 127.2013, + "y": 345.312 + }, + { + "x": 110.7804, + "y": 326.008 + }, + [ + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + } + ], + { + "x": 0.30904, + "y": 0.95105 + }, + { + "x": -0.80902, + "y": 0.58778 + }, + { + "x": -0.80902, + "y": -0.58778 + }, + { + "x": 0.30904, + "y": -0.95105 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 68, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1752 + }, + "angle": 0, + "vertices": { + "#": 1753 + }, + "position": { + "#": 1758 + }, + "force": { + "#": 1759 + }, + "torque": 0, + "positionImpulse": { + "#": 1760 + }, + "constraintImpulse": { + "#": 1761 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1762 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1763 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1764 + }, + "bounds": { + "#": 1766 + }, + "positionPrev": { + "#": 1769 + }, + "anglePrev": 0, + "axes": { + "#": 1770 + }, + "area": 1515.31318, + "mass": 1.51531, + "inverseMass": 0.65993, + "inertia": 1532.42068, + "inverseInertia": 0.00065, + "parent": { + "#": 1751 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1751 + } + ], + [ + { + "#": 1754 + }, + { + "#": 1755 + }, + { + "#": 1756 + }, + { + "#": 1757 + } + ], + { + "x": 127.2013, + "y": 306.704, + "index": 0, + "body": { + "#": 1751 + }, + "isInternal": false + }, + { + "x": 167.03914, + "y": 306.704, + "index": 1, + "body": { + "#": 1751 + }, + "isInternal": false + }, + { + "x": 167.03914, + "y": 344.74104, + "index": 2, + "body": { + "#": 1751 + }, + "isInternal": false + }, + { + "x": 127.2013, + "y": 344.74104, + "index": 3, + "body": { + "#": 1751 + }, + "isInternal": false + }, + { + "x": 147.12022, + "y": 325.72252 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1765 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1767 + }, + "max": { + "#": 1768 + } + }, + { + "x": 127.2013, + "y": 306.704 + }, + { + "x": 167.03914, + "y": 344.74104 + }, + { + "x": 147.12022, + "y": 325.72252 + }, + [ + { + "#": 1771 + }, + { + "#": 1772 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 69, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1774 + }, + "angle": 0, + "vertices": { + "#": 1775 + }, + "position": { + "#": 1780 + }, + "force": { + "#": 1781 + }, + "torque": 0, + "positionImpulse": { + "#": 1782 + }, + "constraintImpulse": { + "#": 1783 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1784 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1785 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1786 + }, + "bounds": { + "#": 1788 + }, + "positionPrev": { + "#": 1791 + }, + "anglePrev": 0, + "axes": { + "#": 1792 + }, + "area": 1347.92786, + "mass": 1.34793, + "inverseMass": 0.74188, + "inertia": 1394.56669, + "inverseInertia": 0.00072, + "parent": { + "#": 1773 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1773 + } + ], + [ + { + "#": 1776 + }, + { + "#": 1777 + }, + { + "#": 1778 + }, + { + "#": 1779 + } + ], + { + "x": 167.03914, + "y": 306.704, + "index": 0, + "body": { + "#": 1773 + }, + "isInternal": false + }, + { + "x": 195.01805, + "y": 306.704, + "index": 1, + "body": { + "#": 1773 + }, + "isInternal": false + }, + { + "x": 195.01805, + "y": 354.88057, + "index": 2, + "body": { + "#": 1773 + }, + "isInternal": false + }, + { + "x": 167.03914, + "y": 354.88057, + "index": 3, + "body": { + "#": 1773 + }, + "isInternal": false + }, + { + "x": 181.02859, + "y": 330.79228 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1787 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1789 + }, + "max": { + "#": 1790 + } + }, + { + "x": 167.03914, + "y": 306.704 + }, + { + "x": 195.01805, + "y": 354.88057 + }, + { + "x": 181.02859, + "y": 330.79228 + }, + [ + { + "#": 1793 + }, + { + "#": 1794 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 70, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1796 + }, + "angle": 0, + "vertices": { + "#": 1797 + }, + "position": { + "#": 1802 + }, + "force": { + "#": 1803 + }, + "torque": 0, + "positionImpulse": { + "#": 1804 + }, + "constraintImpulse": { + "#": 1805 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1806 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1807 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1808 + }, + "bounds": { + "#": 1810 + }, + "positionPrev": { + "#": 1813 + }, + "anglePrev": 0, + "axes": { + "#": 1814 + }, + "area": 2285.40536, + "mass": 2.28541, + "inverseMass": 0.43756, + "inertia": 3483.87721, + "inverseInertia": 0.00029, + "parent": { + "#": 1795 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1795 + } + ], + [ + { + "#": 1798 + }, + { + "#": 1799 + }, + { + "#": 1800 + }, + { + "#": 1801 + } + ], + { + "x": 195.01805, + "y": 306.704, + "index": 0, + "body": { + "#": 1795 + }, + "isInternal": false + }, + { + "x": 242.05624, + "y": 306.704, + "index": 1, + "body": { + "#": 1795 + }, + "isInternal": false + }, + { + "x": 242.05624, + "y": 355.29016, + "index": 2, + "body": { + "#": 1795 + }, + "isInternal": false + }, + { + "x": 195.01805, + "y": 355.29016, + "index": 3, + "body": { + "#": 1795 + }, + "isInternal": false + }, + { + "x": 218.53714, + "y": 330.99708 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1809 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1811 + }, + "max": { + "#": 1812 + } + }, + { + "x": 195.01805, + "y": 306.704 + }, + { + "x": 242.05624, + "y": 355.29016 + }, + { + "x": 218.53714, + "y": 330.99708 + }, + [ + { + "#": 1815 + }, + { + "#": 1816 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 71, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1818 + }, + "angle": 0, + "vertices": { + "#": 1819 + }, + "position": { + "#": 1825 + }, + "force": { + "#": 1826 + }, + "torque": 0, + "positionImpulse": { + "#": 1827 + }, + "constraintImpulse": { + "#": 1828 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1829 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1830 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1831 + }, + "bounds": { + "#": 1833 + }, + "positionPrev": { + "#": 1836 + }, + "anglePrev": 0, + "axes": { + "#": 1837 + }, + "area": 4327.82858, + "mass": 4.32783, + "inverseMass": 0.23106, + "inertia": 12126.33711, + "inverseInertia": 0.00008, + "parent": { + "#": 1817 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1817 + } + ], + [ + { + "#": 1820 + }, + { + "#": 1821 + }, + { + "#": 1822 + }, + { + "#": 1823 + }, + { + "#": 1824 + } + ], + { + "x": 315.16229, + "y": 372.357, + "index": 0, + "body": { + "#": 1817 + }, + "isInternal": false + }, + { + "x": 267.46229, + "y": 387.856, + "index": 1, + "body": { + "#": 1817 + }, + "isInternal": false + }, + { + "x": 237.98229, + "y": 347.28, + "index": 2, + "body": { + "#": 1817 + }, + "isInternal": false + }, + { + "x": 267.46229, + "y": 306.704, + "index": 3, + "body": { + "#": 1817 + }, + "isInternal": false + }, + { + "x": 315.16229, + "y": 322.203, + "index": 4, + "body": { + "#": 1817 + }, + "isInternal": false + }, + { + "x": 280.64624, + "y": 347.28 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1832 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1834 + }, + "max": { + "#": 1835 + } + }, + { + "x": 237.98229, + "y": 306.704 + }, + { + "x": 315.16229, + "y": 387.856 + }, + { + "x": 280.64624, + "y": 347.28 + }, + [ + { + "#": 1838 + }, + { + "#": 1839 + }, + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + } + ], + { + "x": 0.30902, + "y": 0.95105 + }, + { + "x": -0.80902, + "y": 0.58778 + }, + { + "x": -0.80902, + "y": -0.58778 + }, + { + "x": 0.30902, + "y": -0.95105 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 72, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1844 + }, + "angle": 0, + "vertices": { + "#": 1845 + }, + "position": { + "#": 1850 + }, + "force": { + "#": 1851 + }, + "torque": 0, + "positionImpulse": { + "#": 1852 + }, + "constraintImpulse": { + "#": 1853 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1854 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1855 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1856 + }, + "bounds": { + "#": 1858 + }, + "positionPrev": { + "#": 1861 + }, + "anglePrev": 0, + "axes": { + "#": 1862 + }, + "area": 2032.72927, + "mass": 2.03273, + "inverseMass": 0.49195, + "inertia": 6700.37412, + "inverseInertia": 0.00015, + "parent": { + "#": 1843 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1843 + } + ], + [ + { + "#": 1846 + }, + { + "#": 1847 + }, + { + "#": 1848 + }, + { + "#": 1849 + } + ], + { + "x": 315.16229, + "y": 306.704, + "index": 0, + "body": { + "#": 1843 + }, + "isInternal": false + }, + { + "x": 412.38142, + "y": 306.704, + "index": 1, + "body": { + "#": 1843 + }, + "isInternal": false + }, + { + "x": 412.38142, + "y": 327.61274, + "index": 2, + "body": { + "#": 1843 + }, + "isInternal": false + }, + { + "x": 315.16229, + "y": 327.61274, + "index": 3, + "body": { + "#": 1843 + }, + "isInternal": false + }, + { + "x": 363.77186, + "y": 317.15837 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1857 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1859 + }, + "max": { + "#": 1860 + } + }, + { + "x": 315.16229, + "y": 306.704 + }, + { + "x": 412.38142, + "y": 327.61274 + }, + { + "x": 363.77186, + "y": 317.15837 + }, + [ + { + "#": 1863 + }, + { + "#": 1864 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 73, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1866 + }, + "angle": 0, + "vertices": { + "#": 1867 + }, + "position": { + "#": 1872 + }, + "force": { + "#": 1873 + }, + "torque": 0, + "positionImpulse": { + "#": 1874 + }, + "constraintImpulse": { + "#": 1875 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1876 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1877 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1878 + }, + "bounds": { + "#": 1880 + }, + "positionPrev": { + "#": 1883 + }, + "anglePrev": 0, + "axes": { + "#": 1884 + }, + "area": 1931.95349, + "mass": 1.93195, + "inverseMass": 0.51761, + "inertia": 4690.99661, + "inverseInertia": 0.00021, + "parent": { + "#": 1865 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1865 + } + ], + [ + { + "#": 1868 + }, + { + "#": 1869 + }, + { + "#": 1870 + }, + { + "#": 1871 + } + ], + { + "x": 412.38142, + "y": 306.704, + "index": 0, + "body": { + "#": 1865 + }, + "isInternal": false + }, + { + "x": 494.41623, + "y": 306.704, + "index": 1, + "body": { + "#": 1865 + }, + "isInternal": false + }, + { + "x": 494.41623, + "y": 330.25441, + "index": 2, + "body": { + "#": 1865 + }, + "isInternal": false + }, + { + "x": 412.38142, + "y": 330.25441, + "index": 3, + "body": { + "#": 1865 + }, + "isInternal": false + }, + { + "x": 453.39883, + "y": 318.47921 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1879 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1881 + }, + "max": { + "#": 1882 + } + }, + { + "x": 412.38142, + "y": 306.704 + }, + { + "x": 494.41623, + "y": 330.25441 + }, + { + "x": 453.39883, + "y": 318.47921 + }, + [ + { + "#": 1885 + }, + { + "#": 1886 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 74, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1888 + }, + "angle": 0, + "vertices": { + "#": 1889 + }, + "position": { + "#": 1894 + }, + "force": { + "#": 1895 + }, + "torque": 0, + "positionImpulse": { + "#": 1896 + }, + "constraintImpulse": { + "#": 1897 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1898 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1899 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1900 + }, + "bounds": { + "#": 1902 + }, + "positionPrev": { + "#": 1905 + }, + "anglePrev": 0, + "axes": { + "#": 1906 + }, + "area": 2376.31797, + "mass": 2.37632, + "inverseMass": 0.42082, + "inertia": 3764.5915, + "inverseInertia": 0.00027, + "parent": { + "#": 1887 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1887 + } + ], + [ + { + "#": 1890 + }, + { + "#": 1891 + }, + { + "#": 1892 + }, + { + "#": 1893 + } + ], + { + "x": 494.41623, + "y": 306.704, + "index": 0, + "body": { + "#": 1887 + }, + "isInternal": false + }, + { + "x": 543.15749, + "y": 306.704, + "index": 1, + "body": { + "#": 1887 + }, + "isInternal": false + }, + { + "x": 543.15749, + "y": 355.45773, + "index": 2, + "body": { + "#": 1887 + }, + "isInternal": false + }, + { + "x": 494.41623, + "y": 355.45773, + "index": 3, + "body": { + "#": 1887 + }, + "isInternal": false + }, + { + "x": 518.78686, + "y": 331.08086 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1901 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1903 + }, + "max": { + "#": 1904 + } + }, + { + "x": 494.41623, + "y": 306.704 + }, + { + "x": 543.15749, + "y": 355.45773 + }, + { + "x": 518.78686, + "y": 331.08086 + }, + [ + { + "#": 1907 + }, + { + "#": 1908 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 75, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1910 + }, + "angle": 0, + "vertices": { + "#": 1911 + }, + "position": { + "#": 1938 + }, + "force": { + "#": 1939 + }, + "torque": 0, + "positionImpulse": { + "#": 1940 + }, + "constraintImpulse": { + "#": 1941 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1942 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1943 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1944 + }, + "circleRadius": 47.98573, + "bounds": { + "#": 1946 + }, + "positionPrev": { + "#": 1949 + }, + "anglePrev": 0, + "axes": { + "#": 1950 + }, + "area": 7163.66511, + "mass": 7.16367, + "inverseMass": 0.13959, + "inertia": 32670.7391, + "inverseInertia": 0.00003, + "parent": { + "#": 1909 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1909 + } + ], + [ + { + "#": 1912 + }, + { + "#": 1913 + }, + { + "#": 1914 + }, + { + "#": 1915 + }, + { + "#": 1916 + }, + { + "#": 1917 + }, + { + "#": 1918 + }, + { + "#": 1919 + }, + { + "#": 1920 + }, + { + "#": 1921 + }, + { + "#": 1922 + }, + { + "#": 1923 + }, + { + "#": 1924 + }, + { + "#": 1925 + }, + { + "#": 1926 + }, + { + "#": 1927 + }, + { + "#": 1928 + }, + { + "#": 1929 + }, + { + "#": 1930 + }, + { + "#": 1931 + }, + { + "#": 1932 + }, + { + "#": 1933 + }, + { + "#": 1934 + }, + { + "#": 1935 + }, + { + "#": 1936 + }, + { + "#": 1937 + } + ], + { + "x": 638.42949, + "y": 360.474, + "index": 0, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 635.66049, + "y": 371.706, + "index": 1, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 630.28449, + "y": 381.949, + "index": 2, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 622.61349, + "y": 390.608, + "index": 3, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 613.09349, + "y": 397.179, + "index": 4, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 602.27749, + "y": 401.281, + "index": 5, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 590.79349, + "y": 402.676, + "index": 6, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 579.30949, + "y": 401.281, + "index": 7, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 568.49349, + "y": 397.179, + "index": 8, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 558.97349, + "y": 390.608, + "index": 9, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 551.30249, + "y": 381.949, + "index": 10, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 545.92649, + "y": 371.706, + "index": 11, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 543.15749, + "y": 360.474, + "index": 12, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 543.15749, + "y": 348.906, + "index": 13, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 545.92649, + "y": 337.674, + "index": 14, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 551.30249, + "y": 327.431, + "index": 15, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 558.97349, + "y": 318.772, + "index": 16, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 568.49349, + "y": 312.201, + "index": 17, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 579.30949, + "y": 308.099, + "index": 18, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 590.79349, + "y": 306.704, + "index": 19, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 602.27749, + "y": 308.099, + "index": 20, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 613.09349, + "y": 312.201, + "index": 21, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 622.61349, + "y": 318.772, + "index": 22, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 630.28449, + "y": 327.431, + "index": 23, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 635.66049, + "y": 337.674, + "index": 24, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 638.42949, + "y": 348.906, + "index": 25, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 590.79349, + "y": 354.69 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1945 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1947 + }, + "max": { + "#": 1948 + } + }, + { + "x": 543.15749, + "y": 306.704 + }, + { + "x": 638.42949, + "y": 402.676 + }, + { + "x": 590.79349, + "y": 354.69 + }, + [ + { + "#": 1951 + }, + { + "#": 1952 + }, + { + "#": 1953 + }, + { + "#": 1954 + }, + { + "#": 1955 + }, + { + "#": 1956 + }, + { + "#": 1957 + }, + { + "#": 1958 + }, + { + "#": 1959 + }, + { + "#": 1960 + }, + { + "#": 1961 + }, + { + "#": 1962 + }, + { + "#": 1963 + } + ], + { + "x": -0.97093, + "y": -0.23936 + }, + { + "x": -0.88545, + "y": -0.46473 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56805, + "y": -0.82299 + }, + { + "x": -0.35461, + "y": -0.93502 + }, + { + "x": -0.12059, + "y": -0.9927 + }, + { + "x": 0.12059, + "y": -0.9927 + }, + { + "x": 0.35461, + "y": -0.93502 + }, + { + "x": 0.56805, + "y": -0.82299 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88545, + "y": -0.46473 + }, + { + "x": 0.97093, + "y": -0.23936 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 76, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1965 + }, + "angle": 0, + "vertices": { + "#": 1966 + }, + "position": { + "#": 1993 + }, + "force": { + "#": 1994 + }, + "torque": 0, + "positionImpulse": { + "#": 1995 + }, + "constraintImpulse": { + "#": 1996 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1997 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1998 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1999 + }, + "circleRadius": 44.1313, + "bounds": { + "#": 2001 + }, + "positionPrev": { + "#": 2004 + }, + "anglePrev": 0, + "axes": { + "#": 2005 + }, + "area": 6059.04975, + "mass": 6.05905, + "inverseMass": 0.16504, + "inertia": 23372.08438, + "inverseInertia": 0.00004, + "parent": { + "#": 1964 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1964 + } + ], + [ + { + "#": 1967 + }, + { + "#": 1968 + }, + { + "#": 1969 + }, + { + "#": 1970 + }, + { + "#": 1971 + }, + { + "#": 1972 + }, + { + "#": 1973 + }, + { + "#": 1974 + }, + { + "#": 1975 + }, + { + "#": 1976 + }, + { + "#": 1977 + }, + { + "#": 1978 + }, + { + "#": 1979 + }, + { + "#": 1980 + }, + { + "#": 1981 + }, + { + "#": 1982 + }, + { + "#": 1983 + }, + { + "#": 1984 + }, + { + "#": 1985 + }, + { + "#": 1986 + }, + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + } + ], + { + "x": 726.04949, + "y": 356.154, + "index": 0, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 723.50249, + "y": 366.484, + "index": 1, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 718.55849, + "y": 375.904, + "index": 2, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 711.50349, + "y": 383.868, + "index": 3, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 702.74849, + "y": 389.911, + "index": 4, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 692.80049, + "y": 393.684, + "index": 5, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 682.23949, + "y": 394.966, + "index": 6, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 671.67849, + "y": 393.684, + "index": 7, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 661.73049, + "y": 389.911, + "index": 8, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 652.97549, + "y": 383.868, + "index": 9, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 645.92049, + "y": 375.904, + "index": 10, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 640.97649, + "y": 366.484, + "index": 11, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 638.42949, + "y": 356.154, + "index": 12, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 638.42949, + "y": 345.516, + "index": 13, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 640.97649, + "y": 335.186, + "index": 14, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 645.92049, + "y": 325.766, + "index": 15, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 652.97549, + "y": 317.802, + "index": 16, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 661.73049, + "y": 311.759, + "index": 17, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 671.67849, + "y": 307.986, + "index": 18, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 682.23949, + "y": 306.704, + "index": 19, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 692.80049, + "y": 307.986, + "index": 20, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 702.74849, + "y": 311.759, + "index": 21, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 711.50349, + "y": 317.802, + "index": 22, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 718.55849, + "y": 325.766, + "index": 23, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 723.50249, + "y": 335.186, + "index": 24, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 726.04949, + "y": 345.516, + "index": 25, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 682.23949, + "y": 350.835 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2000 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2002 + }, + "max": { + "#": 2003 + } + }, + { + "x": 638.42949, + "y": 306.704 + }, + { + "x": 726.04949, + "y": 394.966 + }, + { + "x": 682.23949, + "y": 350.835 + }, + [ + { + "#": 2006 + }, + { + "#": 2007 + }, + { + "#": 2008 + }, + { + "#": 2009 + }, + { + "#": 2010 + }, + { + "#": 2011 + }, + { + "#": 2012 + }, + { + "#": 2013 + }, + { + "#": 2014 + }, + { + "#": 2015 + }, + { + "#": 2016 + }, + { + "#": 2017 + }, + { + "#": 2018 + } + ], + { + "x": -0.97092, + "y": -0.23939 + }, + { + "x": -0.88546, + "y": -0.46472 + }, + { + "x": -0.74853, + "y": -0.6631 + }, + { + "x": -0.56806, + "y": -0.82299 + }, + { + "x": -0.35462, + "y": -0.93501 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35462, + "y": -0.93501 + }, + { + "x": 0.56806, + "y": -0.82299 + }, + { + "x": 0.74853, + "y": -0.6631 + }, + { + "x": 0.88546, + "y": -0.46472 + }, + { + "x": 0.97092, + "y": -0.23939 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 77, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2020 + }, + "angle": 0, + "vertices": { + "#": 2021 + }, + "position": { + "#": 2027 + }, + "force": { + "#": 2028 + }, + "torque": 0, + "positionImpulse": { + "#": 2029 + }, + "constraintImpulse": { + "#": 2030 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2031 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2032 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2033 + }, + "bounds": { + "#": 2035 + }, + "positionPrev": { + "#": 2038 + }, + "anglePrev": 0, + "axes": { + "#": 2039 + }, + "area": 1190.42275, + "mass": 1.19042, + "inverseMass": 0.84004, + "inertia": 917.47021, + "inverseInertia": 0.00109, + "parent": { + "#": 2019 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2019 + } + ], + [ + { + "#": 2022 + }, + { + "#": 2023 + }, + { + "#": 2024 + }, + { + "#": 2025 + }, + { + "#": 2026 + } + ], + { + "x": 764.3907, + "y": 341.137, + "index": 0, + "body": { + "#": 2019 + }, + "isInternal": false + }, + { + "x": 739.3747, + "y": 349.266, + "index": 1, + "body": { + "#": 2019 + }, + "isInternal": false + }, + { + "x": 723.9127, + "y": 327.985, + "index": 2, + "body": { + "#": 2019 + }, + "isInternal": false + }, + { + "x": 739.3747, + "y": 306.704, + "index": 3, + "body": { + "#": 2019 + }, + "isInternal": false + }, + { + "x": 764.3907, + "y": 314.833, + "index": 4, + "body": { + "#": 2019 + }, + "isInternal": false + }, + { + "x": 746.28849, + "y": 327.985 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2034 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2036 + }, + "max": { + "#": 2037 + } + }, + { + "x": 723.9127, + "y": 306.704 + }, + { + "x": 764.3907, + "y": 349.266 + }, + { + "x": 746.28849, + "y": 327.985 + }, + [ + { + "#": 2040 + }, + { + "#": 2041 + }, + { + "#": 2042 + }, + { + "#": 2043 + }, + { + "#": 2044 + } + ], + { + "x": 0.30904, + "y": 0.95105 + }, + { + "x": -0.80901, + "y": 0.5878 + }, + { + "x": -0.80901, + "y": -0.5878 + }, + { + "x": 0.30904, + "y": -0.95105 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 78, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2046 + }, + "angle": 0, + "vertices": { + "#": 2047 + }, + "position": { + "#": 2052 + }, + "force": { + "#": 2053 + }, + "torque": 0, + "positionImpulse": { + "#": 2054 + }, + "constraintImpulse": { + "#": 2055 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2056 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2057 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2058 + }, + "bounds": { + "#": 2060 + }, + "positionPrev": { + "#": 2063 + }, + "anglePrev": 0, + "axes": { + "#": 2064 + }, + "area": 2171.01614, + "mass": 2.17102, + "inverseMass": 0.46061, + "inertia": 3142.32114, + "inverseInertia": 0.00032, + "parent": { + "#": 2045 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2045 + } + ], + [ + { + "#": 2048 + }, + { + "#": 2049 + }, + { + "#": 2050 + }, + { + "#": 2051 + } + ], + { + "x": 764.3907, + "y": 306.704, + "index": 0, + "body": { + "#": 2045 + }, + "isInternal": false + }, + { + "x": 811.18353, + "y": 306.704, + "index": 1, + "body": { + "#": 2045 + }, + "isInternal": false + }, + { + "x": 811.18353, + "y": 353.10035, + "index": 2, + "body": { + "#": 2045 + }, + "isInternal": false + }, + { + "x": 764.3907, + "y": 353.10035, + "index": 3, + "body": { + "#": 2045 + }, + "isInternal": false + }, + { + "x": 787.78711, + "y": 329.90217 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2059 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2061 + }, + "max": { + "#": 2062 + } + }, + { + "x": 764.3907, + "y": 306.704 + }, + { + "x": 811.18353, + "y": 353.10035 + }, + { + "x": 787.78711, + "y": 329.90217 + }, + [ + { + "#": 2065 + }, + { + "#": 2066 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 79, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2068 + }, + "angle": 0, + "vertices": { + "#": 2069 + }, + "position": { + "#": 2073 + }, + "force": { + "#": 2074 + }, + "torque": 0, + "positionImpulse": { + "#": 2075 + }, + "constraintImpulse": { + "#": 2076 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2077 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2078 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2079 + }, + "bounds": { + "#": 2081 + }, + "positionPrev": { + "#": 2084 + }, + "anglePrev": 0, + "axes": { + "#": 2085 + }, + "area": 1119.99488, + "mass": 1.11999, + "inverseMass": 0.89286, + "inertia": 965.62873, + "inverseInertia": 0.00104, + "parent": { + "#": 2067 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2067 + } + ], + [ + { + "#": 2070 + }, + { + "#": 2071 + }, + { + "#": 2072 + } + ], + { + "x": 847.88686, + "y": 357.562, + "index": 0, + "body": { + "#": 2067 + }, + "isInternal": false + }, + { + "x": 803.84286, + "y": 332.133, + "index": 1, + "body": { + "#": 2067 + }, + "isInternal": false + }, + { + "x": 847.88686, + "y": 306.704, + "index": 2, + "body": { + "#": 2067 + }, + "isInternal": false + }, + { + "x": 833.20553, + "y": 332.133 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2080 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2082 + }, + "max": { + "#": 2083 + } + }, + { + "x": 803.84286, + "y": 306.704 + }, + { + "x": 847.88686, + "y": 357.562 + }, + { + "x": 833.20553, + "y": 332.133 + }, + [ + { + "#": 2086 + }, + { + "#": 2087 + }, + { + "#": 2088 + } + ], + { + "x": -0.5, + "y": 0.86602 + }, + { + "x": -0.5, + "y": -0.86602 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 80, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2090 + }, + "angle": 0, + "vertices": { + "#": 2091 + }, + "position": { + "#": 2099 + }, + "force": { + "#": 2100 + }, + "torque": 0, + "positionImpulse": { + "#": 2101 + }, + "constraintImpulse": { + "#": 2102 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2103 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2104 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2105 + }, + "bounds": { + "#": 2107 + }, + "positionPrev": { + "#": 2110 + }, + "anglePrev": 0, + "axes": { + "#": 2111 + }, + "area": 5582.97476, + "mass": 5.58297, + "inverseMass": 0.17912, + "inertia": 19922.24381, + "inverseInertia": 0.00005, + "parent": { + "#": 2089 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2089 + } + ], + [ + { + "#": 2092 + }, + { + "#": 2093 + }, + { + "#": 2094 + }, + { + "#": 2095 + }, + { + "#": 2096 + }, + { + "#": 2097 + }, + { + "#": 2098 + } + ], + { + "x": 931.51527, + "y": 370.339, + "index": 0, + "body": { + "#": 2089 + }, + "isInternal": false + }, + { + "x": 900.87027, + "y": 394.778, + "index": 1, + "body": { + "#": 2089 + }, + "isInternal": false + }, + { + "x": 862.65727, + "y": 386.056, + "index": 2, + "body": { + "#": 2089 + }, + "isInternal": false + }, + { + "x": 845.65027, + "y": 350.741, + "index": 3, + "body": { + "#": 2089 + }, + "isInternal": false + }, + { + "x": 862.65727, + "y": 315.426, + "index": 4, + "body": { + "#": 2089 + }, + "isInternal": false + }, + { + "x": 900.87027, + "y": 306.704, + "index": 5, + "body": { + "#": 2089 + }, + "isInternal": false + }, + { + "x": 931.51527, + "y": 331.143, + "index": 6, + "body": { + "#": 2089 + }, + "isInternal": false + }, + { + "x": 890.81936, + "y": 350.741 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2106 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2108 + }, + "max": { + "#": 2109 + } + }, + { + "x": 845.65027, + "y": 306.704 + }, + { + "x": 931.51527, + "y": 394.778 + }, + { + "x": 890.81936, + "y": 350.741 + }, + [ + { + "#": 2112 + }, + { + "#": 2113 + }, + { + "#": 2114 + }, + { + "#": 2115 + }, + { + "#": 2116 + }, + { + "#": 2117 + }, + { + "#": 2118 + } + ], + { + "x": 0.6235, + "y": 0.78183 + }, + { + "x": -0.22252, + "y": 0.97493 + }, + { + "x": -0.90097, + "y": 0.43389 + }, + { + "x": -0.90097, + "y": -0.43389 + }, + { + "x": -0.22252, + "y": -0.97493 + }, + { + "x": 0.6235, + "y": -0.78183 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 81, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2120 + }, + "angle": 0, + "vertices": { + "#": 2121 + }, + "position": { + "#": 2128 + }, + "force": { + "#": 2129 + }, + "torque": 0, + "positionImpulse": { + "#": 2130 + }, + "constraintImpulse": { + "#": 2131 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2132 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2133 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2134 + }, + "bounds": { + "#": 2136 + }, + "positionPrev": { + "#": 2139 + }, + "anglePrev": 0, + "axes": { + "#": 2140 + }, + "area": 1427.9506, + "mass": 1.42795, + "inverseMass": 0.7003, + "inertia": 1308.04663, + "inverseInertia": 0.00076, + "parent": { + "#": 2119 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2119 + } + ], + [ + { + "#": 2122 + }, + { + "#": 2123 + }, + { + "#": 2124 + }, + { + "#": 2125 + }, + { + "#": 2126 + }, + { + "#": 2127 + } + ], + { + "x": 972.12127, + "y": 341.87, + "index": 0, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 951.81827, + "y": 353.592, + "index": 1, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 931.51527, + "y": 341.87, + "index": 2, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 931.51527, + "y": 318.426, + "index": 3, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 951.81827, + "y": 306.704, + "index": 4, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 972.12127, + "y": 318.426, + "index": 5, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 951.81827, + "y": 330.148 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2135 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2137 + }, + "max": { + "#": 2138 + } + }, + { + "x": 931.51527, + "y": 306.704 + }, + { + "x": 972.12127, + "y": 353.592 + }, + { + "x": 951.81827, + "y": 330.148 + }, + [ + { + "#": 2141 + }, + { + "#": 2142 + }, + { + "#": 2143 + } + ], + { + "x": -0.5, + "y": -0.86602 + }, + { + "x": 0.5, + "y": -0.86602 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 82, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2145 + }, + "angle": 0, + "vertices": { + "#": 2146 + }, + "position": { + "#": 2151 + }, + "force": { + "#": 2152 + }, + "torque": 0, + "positionImpulse": { + "#": 2153 + }, + "constraintImpulse": { + "#": 2154 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2155 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2156 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2157 + }, + "bounds": { + "#": 2159 + }, + "positionPrev": { + "#": 2162 + }, + "anglePrev": 0, + "axes": { + "#": 2163 + }, + "area": 1006.25243, + "mass": 1.00625, + "inverseMass": 0.99379, + "inertia": 697.14617, + "inverseInertia": 0.00143, + "parent": { + "#": 2144 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2144 + } + ], + [ + { + "#": 2147 + }, + { + "#": 2148 + }, + { + "#": 2149 + }, + { + "#": 2150 + } + ], + { + "x": 972.12127, + "y": 306.704, + "index": 0, + "body": { + "#": 2144 + }, + "isInternal": false + }, + { + "x": 1008.16165, + "y": 306.704, + "index": 1, + "body": { + "#": 2144 + }, + "isInternal": false + }, + { + "x": 1008.16165, + "y": 334.62414, + "index": 2, + "body": { + "#": 2144 + }, + "isInternal": false + }, + { + "x": 972.12127, + "y": 334.62414, + "index": 3, + "body": { + "#": 2144 + }, + "isInternal": false + }, + { + "x": 990.14146, + "y": 320.66407 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2158 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2160 + }, + "max": { + "#": 2161 + } + }, + { + "x": 972.12127, + "y": 306.704 + }, + { + "x": 1008.16165, + "y": 334.62414 + }, + { + "x": 990.14146, + "y": 320.66407 + }, + [ + { + "#": 2164 + }, + { + "#": 2165 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 83, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2167 + }, + "angle": 0, + "vertices": { + "#": 2168 + }, + "position": { + "#": 2176 + }, + "force": { + "#": 2177 + }, + "torque": 0, + "positionImpulse": { + "#": 2178 + }, + "constraintImpulse": { + "#": 2179 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2180 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2181 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2182 + }, + "bounds": { + "#": 2184 + }, + "positionPrev": { + "#": 2187 + }, + "anglePrev": 0, + "axes": { + "#": 2188 + }, + "area": 3210.13014, + "mass": 3.21013, + "inverseMass": 0.31151, + "inertia": 6586.46215, + "inverseInertia": 0.00015, + "parent": { + "#": 2166 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2166 + } + ], + [ + { + "#": 2169 + }, + { + "#": 2170 + }, + { + "#": 2171 + }, + { + "#": 2172 + }, + { + "#": 2173 + }, + { + "#": 2174 + }, + { + "#": 2175 + } + ], + { + "x": 1071.57552, + "y": 354.957, + "index": 0, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 1048.33852, + "y": 373.488, + "index": 1, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 1019.36152, + "y": 366.874, + "index": 2, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 1006.46552, + "y": 340.096, + "index": 3, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 1019.36152, + "y": 313.318, + "index": 4, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 1048.33852, + "y": 306.704, + "index": 5, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 1071.57552, + "y": 325.235, + "index": 6, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 1040.71665, + "y": 340.096 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2183 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2185 + }, + "max": { + "#": 2186 + } + }, + { + "x": 1006.46552, + "y": 306.704 + }, + { + "x": 1071.57552, + "y": 373.488 + }, + { + "x": 1040.71665, + "y": 340.096 + }, + [ + { + "#": 2189 + }, + { + "#": 2190 + }, + { + "#": 2191 + }, + { + "#": 2192 + }, + { + "#": 2193 + }, + { + "#": 2194 + }, + { + "#": 2195 + } + ], + { + "x": 0.62349, + "y": 0.78183 + }, + { + "x": -0.22253, + "y": 0.97493 + }, + { + "x": -0.90096, + "y": 0.43389 + }, + { + "x": -0.90096, + "y": -0.43389 + }, + { + "x": -0.22253, + "y": -0.97493 + }, + { + "x": 0.62349, + "y": -0.78183 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 84, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2197 + }, + "angle": 0, + "vertices": { + "#": 2198 + }, + "position": { + "#": 2203 + }, + "force": { + "#": 2204 + }, + "torque": 0, + "positionImpulse": { + "#": 2205 + }, + "constraintImpulse": { + "#": 2206 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2207 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2208 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2209 + }, + "bounds": { + "#": 2211 + }, + "positionPrev": { + "#": 2214 + }, + "anglePrev": 0, + "axes": { + "#": 2215 + }, + "area": 1352.92727, + "mass": 1.35293, + "inverseMass": 0.73914, + "inertia": 1256.99094, + "inverseInertia": 0.0008, + "parent": { + "#": 2196 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2196 + } + ], + [ + { + "#": 2199 + }, + { + "#": 2200 + }, + { + "#": 2201 + }, + { + "#": 2202 + } + ], + { + "x": 1071.57552, + "y": 306.704, + "index": 0, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 1113.14484, + "y": 306.704, + "index": 1, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 1113.14484, + "y": 339.2503, + "index": 2, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 1071.57552, + "y": 339.2503, + "index": 3, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 1092.36018, + "y": 322.97715 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2210 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2212 + }, + "max": { + "#": 2213 + } + }, + { + "x": 1071.57552, + "y": 306.704 + }, + { + "x": 1113.14484, + "y": 339.2503 + }, + { + "x": 1092.36018, + "y": 322.97715 + }, + [ + { + "#": 2216 + }, + { + "#": 2217 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 85, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2219 + }, + "angle": 0, + "vertices": { + "#": 2220 + }, + "position": { + "#": 2225 + }, + "force": { + "#": 2226 + }, + "torque": 0, + "positionImpulse": { + "#": 2227 + }, + "constraintImpulse": { + "#": 2228 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2229 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2230 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2231 + }, + "bounds": { + "#": 2233 + }, + "positionPrev": { + "#": 2236 + }, + "anglePrev": 0, + "axes": { + "#": 2237 + }, + "area": 1720.12601, + "mass": 1.72013, + "inverseMass": 0.58135, + "inertia": 2025.86246, + "inverseInertia": 0.00049, + "parent": { + "#": 2218 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2218 + } + ], + [ + { + "#": 2221 + }, + { + "#": 2222 + }, + { + "#": 2223 + }, + { + "#": 2224 + } + ], + { + "x": 20, + "y": 402.676, + "index": 0, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 56.93261, + "y": 402.676, + "index": 1, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 56.93261, + "y": 449.25072, + "index": 2, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 20, + "y": 449.25072, + "index": 3, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 38.46631, + "y": 425.96336 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2232 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2234 + }, + "max": { + "#": 2235 + } + }, + { + "x": 20, + "y": 402.676 + }, + { + "x": 56.93261, + "y": 449.25072 + }, + { + "x": 38.46631, + "y": 425.96336 + }, + [ + { + "#": 2238 + }, + { + "#": 2239 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 86, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2241 + }, + "angle": 0, + "vertices": { + "#": 2242 + }, + "position": { + "#": 2247 + }, + "force": { + "#": 2248 + }, + "torque": 0, + "positionImpulse": { + "#": 2249 + }, + "constraintImpulse": { + "#": 2250 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2251 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2252 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2253 + }, + "bounds": { + "#": 2255 + }, + "positionPrev": { + "#": 2258 + }, + "anglePrev": 0, + "axes": { + "#": 2259 + }, + "area": 1250.16168, + "mass": 1.25016, + "inverseMass": 0.7999, + "inertia": 1044.21974, + "inverseInertia": 0.00096, + "parent": { + "#": 2240 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2240 + } + ], + [ + { + "#": 2243 + }, + { + "#": 2244 + }, + { + "#": 2245 + }, + { + "#": 2246 + } + ], + { + "x": 56.93261, + "y": 402.676, + "index": 0, + "body": { + "#": 2240 + }, + "isInternal": false + }, + { + "x": 93.48007, + "y": 402.676, + "index": 1, + "body": { + "#": 2240 + }, + "isInternal": false + }, + { + "x": 93.48007, + "y": 436.88253, + "index": 2, + "body": { + "#": 2240 + }, + "isInternal": false + }, + { + "x": 56.93261, + "y": 436.88253, + "index": 3, + "body": { + "#": 2240 + }, + "isInternal": false + }, + { + "x": 75.20634, + "y": 419.77927 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2254 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2256 + }, + "max": { + "#": 2257 + } + }, + { + "x": 56.93261, + "y": 402.676 + }, + { + "x": 93.48007, + "y": 436.88253 + }, + { + "x": 75.20634, + "y": 419.77927 + }, + [ + { + "#": 2260 + }, + { + "#": 2261 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 87, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2263 + }, + "angle": 0, + "vertices": { + "#": 2264 + }, + "position": { + "#": 2270 + }, + "force": { + "#": 2271 + }, + "torque": 0, + "positionImpulse": { + "#": 2272 + }, + "constraintImpulse": { + "#": 2273 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2274 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2275 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2276 + }, + "bounds": { + "#": 2278 + }, + "positionPrev": { + "#": 2281 + }, + "anglePrev": 0, + "axes": { + "#": 2282 + }, + "area": 3092.07523, + "mass": 3.09208, + "inverseMass": 0.32341, + "inertia": 6189.98562, + "inverseInertia": 0.00016, + "parent": { + "#": 2262 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2262 + } + ], + [ + { + "#": 2265 + }, + { + "#": 2266 + }, + { + "#": 2267 + }, + { + "#": 2268 + }, + { + "#": 2269 + } + ], + { + "x": 155.27345, + "y": 458.17, + "index": 0, + "body": { + "#": 2262 + }, + "isInternal": false + }, + { + "x": 114.95445, + "y": 471.27, + "index": 1, + "body": { + "#": 2262 + }, + "isInternal": false + }, + { + "x": 90.03645, + "y": 436.973, + "index": 2, + "body": { + "#": 2262 + }, + "isInternal": false + }, + { + "x": 114.95445, + "y": 402.676, + "index": 3, + "body": { + "#": 2262 + }, + "isInternal": false + }, + { + "x": 155.27345, + "y": 415.776, + "index": 4, + "body": { + "#": 2262 + }, + "isInternal": false + }, + { + "x": 126.09857, + "y": 436.973 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2277 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2279 + }, + "max": { + "#": 2280 + } + }, + { + "x": 90.03645, + "y": 402.676 + }, + { + "x": 155.27345, + "y": 471.27 + }, + { + "x": 126.09857, + "y": 436.973 + }, + [ + { + "#": 2283 + }, + { + "#": 2284 + }, + { + "#": 2285 + }, + { + "#": 2286 + }, + { + "#": 2287 + } + ], + { + "x": 0.30901, + "y": 0.95106 + }, + { + "x": -0.80902, + "y": 0.58778 + }, + { + "x": -0.80902, + "y": -0.58778 + }, + { + "x": 0.30901, + "y": -0.95106 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 88, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2289 + }, + "angle": 0, + "vertices": { + "#": 2290 + }, + "position": { + "#": 2295 + }, + "force": { + "#": 2296 + }, + "torque": 0, + "positionImpulse": { + "#": 2297 + }, + "constraintImpulse": { + "#": 2298 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2299 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2300 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2301 + }, + "bounds": { + "#": 2303 + }, + "positionPrev": { + "#": 2306 + }, + "anglePrev": 0, + "axes": { + "#": 2307 + }, + "area": 1581.4152, + "mass": 1.58142, + "inverseMass": 0.63235, + "inertia": 1771.7086, + "inverseInertia": 0.00056, + "parent": { + "#": 2288 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2288 + } + ], + [ + { + "#": 2291 + }, + { + "#": 2292 + }, + { + "#": 2293 + }, + { + "#": 2294 + } + ], + { + "x": 155.27345, + "y": 402.676, + "index": 0, + "body": { + "#": 2288 + }, + "isInternal": false + }, + { + "x": 202.69706, + "y": 402.676, + "index": 1, + "body": { + "#": 2288 + }, + "isInternal": false + }, + { + "x": 202.69706, + "y": 436.02258, + "index": 2, + "body": { + "#": 2288 + }, + "isInternal": false + }, + { + "x": 155.27345, + "y": 436.02258, + "index": 3, + "body": { + "#": 2288 + }, + "isInternal": false + }, + { + "x": 178.98526, + "y": 419.34929 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2302 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2304 + }, + "max": { + "#": 2305 + } + }, + { + "x": 155.27345, + "y": 402.676 + }, + { + "x": 202.69706, + "y": 436.02258 + }, + { + "x": 178.98526, + "y": 419.34929 + }, + [ + { + "#": 2308 + }, + { + "#": 2309 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 89, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2311 + }, + "angle": 0, + "vertices": { + "#": 2312 + }, + "position": { + "#": 2321 + }, + "force": { + "#": 2322 + }, + "torque": 0, + "positionImpulse": { + "#": 2323 + }, + "constraintImpulse": { + "#": 2324 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2325 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2326 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2327 + }, + "bounds": { + "#": 2329 + }, + "positionPrev": { + "#": 2332 + }, + "anglePrev": 0, + "axes": { + "#": 2333 + }, + "area": 4508.288, + "mass": 4.50829, + "inverseMass": 0.22181, + "inertia": 12968.58039, + "inverseInertia": 0.00008, + "parent": { + "#": 2310 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2310 + } + ], + [ + { + "#": 2313 + }, + { + "#": 2314 + }, + { + "#": 2315 + }, + { + "#": 2316 + }, + { + "#": 2317 + }, + { + "#": 2318 + }, + { + "#": 2319 + }, + { + "#": 2320 + } + ], + { + "x": 276.46706, + "y": 454.839, + "index": 0, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 254.86006, + "y": 476.446, + "index": 1, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 224.30406, + "y": 476.446, + "index": 2, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 202.69706, + "y": 454.839, + "index": 3, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 202.69706, + "y": 424.283, + "index": 4, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 224.30406, + "y": 402.676, + "index": 5, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 254.86006, + "y": 402.676, + "index": 6, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 276.46706, + "y": 424.283, + "index": 7, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 239.58206, + "y": 439.561 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2328 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2330 + }, + "max": { + "#": 2331 + } + }, + { + "x": 202.69706, + "y": 402.676 + }, + { + "x": 276.46706, + "y": 476.446 + }, + { + "x": 239.58206, + "y": 439.561 + }, + [ + { + "#": 2334 + }, + { + "#": 2335 + }, + { + "#": 2336 + }, + { + "#": 2337 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 90, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2339 + }, + "angle": 0, + "vertices": { + "#": 2340 + }, + "position": { + "#": 2345 + }, + "force": { + "#": 2346 + }, + "torque": 0, + "positionImpulse": { + "#": 2347 + }, + "constraintImpulse": { + "#": 2348 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2349 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2350 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2351 + }, + "bounds": { + "#": 2353 + }, + "positionPrev": { + "#": 2356 + }, + "anglePrev": 0, + "axes": { + "#": 2357 + }, + "area": 1039.62673, + "mass": 1.03963, + "inverseMass": 0.96188, + "inertia": 836.76945, + "inverseInertia": 0.0012, + "parent": { + "#": 2338 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2338 + } + ], + [ + { + "#": 2341 + }, + { + "#": 2342 + }, + { + "#": 2343 + }, + { + "#": 2344 + } + ], + { + "x": 276.46706, + "y": 402.676, + "index": 0, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 319.14183, + "y": 402.676, + "index": 1, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 319.14183, + "y": 427.03763, + "index": 2, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 276.46706, + "y": 427.03763, + "index": 3, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 297.80445, + "y": 414.85681 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2352 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2354 + }, + "max": { + "#": 2355 + } + }, + { + "x": 276.46706, + "y": 402.676 + }, + { + "x": 319.14183, + "y": 427.03763 + }, + { + "x": 297.80445, + "y": 414.85681 + }, + [ + { + "#": 2358 + }, + { + "#": 2359 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 91, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2361 + }, + "angle": 0, + "vertices": { + "#": 2362 + }, + "position": { + "#": 2367 + }, + "force": { + "#": 2368 + }, + "torque": 0, + "positionImpulse": { + "#": 2369 + }, + "constraintImpulse": { + "#": 2370 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2371 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2372 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2373 + }, + "bounds": { + "#": 2375 + }, + "positionPrev": { + "#": 2378 + }, + "anglePrev": 0, + "axes": { + "#": 2379 + }, + "area": 1574.87173, + "mass": 1.57487, + "inverseMass": 0.63497, + "inertia": 1691.40994, + "inverseInertia": 0.00059, + "parent": { + "#": 2360 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2360 + } + ], + [ + { + "#": 2363 + }, + { + "#": 2364 + }, + { + "#": 2365 + }, + { + "#": 2366 + } + ], + { + "x": 319.14183, + "y": 402.676, + "index": 0, + "body": { + "#": 2360 + }, + "isInternal": false + }, + { + "x": 354.80335, + "y": 402.676, + "index": 1, + "body": { + "#": 2360 + }, + "isInternal": false + }, + { + "x": 354.80335, + "y": 446.83765, + "index": 2, + "body": { + "#": 2360 + }, + "isInternal": false + }, + { + "x": 319.14183, + "y": 446.83765, + "index": 3, + "body": { + "#": 2360 + }, + "isInternal": false + }, + { + "x": 336.97259, + "y": 424.75683 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2374 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2376 + }, + "max": { + "#": 2377 + } + }, + { + "x": 319.14183, + "y": 402.676 + }, + { + "x": 354.80335, + "y": 446.83765 + }, + { + "x": 336.97259, + "y": 424.75683 + }, + [ + { + "#": 2380 + }, + { + "#": 2381 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 92, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2383 + }, + "angle": 0, + "vertices": { + "#": 2384 + }, + "position": { + "#": 2389 + }, + "force": { + "#": 2390 + }, + "torque": 0, + "positionImpulse": { + "#": 2391 + }, + "constraintImpulse": { + "#": 2392 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2393 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2394 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2395 + }, + "bounds": { + "#": 2397 + }, + "positionPrev": { + "#": 2400 + }, + "anglePrev": 0, + "axes": { + "#": 2401 + }, + "area": 968.38796, + "mass": 0.96839, + "inverseMass": 1.03264, + "inertia": 797.61752, + "inverseInertia": 0.00125, + "parent": { + "#": 2382 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2382 + } + ], + [ + { + "#": 2385 + }, + { + "#": 2386 + }, + { + "#": 2387 + }, + { + "#": 2388 + } + ], + { + "x": 354.80335, + "y": 402.676, + "index": 0, + "body": { + "#": 2382 + }, + "isInternal": false + }, + { + "x": 399.55503, + "y": 402.676, + "index": 1, + "body": { + "#": 2382 + }, + "isInternal": false + }, + { + "x": 399.55503, + "y": 424.31515, + "index": 2, + "body": { + "#": 2382 + }, + "isInternal": false + }, + { + "x": 354.80335, + "y": 424.31515, + "index": 3, + "body": { + "#": 2382 + }, + "isInternal": false + }, + { + "x": 377.17919, + "y": 413.49557 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2396 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2398 + }, + "max": { + "#": 2399 + } + }, + { + "x": 354.80335, + "y": 402.676 + }, + { + "x": 399.55503, + "y": 424.31515 + }, + { + "x": 377.17919, + "y": 413.49557 + }, + [ + { + "#": 2402 + }, + { + "#": 2403 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 93, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2405 + }, + "angle": 0, + "vertices": { + "#": 2406 + }, + "position": { + "#": 2411 + }, + "force": { + "#": 2412 + }, + "torque": 0, + "positionImpulse": { + "#": 2413 + }, + "constraintImpulse": { + "#": 2414 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2415 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2416 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2417 + }, + "bounds": { + "#": 2419 + }, + "positionPrev": { + "#": 2422 + }, + "anglePrev": 0, + "axes": { + "#": 2423 + }, + "area": 1379.26758, + "mass": 1.37927, + "inverseMass": 0.72502, + "inertia": 1297.38361, + "inverseInertia": 0.00077, + "parent": { + "#": 2404 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2404 + } + ], + [ + { + "#": 2407 + }, + { + "#": 2408 + }, + { + "#": 2409 + }, + { + "#": 2410 + } + ], + { + "x": 399.55503, + "y": 402.676, + "index": 0, + "body": { + "#": 2404 + }, + "isInternal": false + }, + { + "x": 432.92617, + "y": 402.676, + "index": 1, + "body": { + "#": 2404 + }, + "isInternal": false + }, + { + "x": 432.92617, + "y": 444.00715, + "index": 2, + "body": { + "#": 2404 + }, + "isInternal": false + }, + { + "x": 399.55503, + "y": 444.00715, + "index": 3, + "body": { + "#": 2404 + }, + "isInternal": false + }, + { + "x": 416.2406, + "y": 423.34157 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2418 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2420 + }, + "max": { + "#": 2421 + } + }, + { + "x": 399.55503, + "y": 402.676 + }, + { + "x": 432.92617, + "y": 444.00715 + }, + { + "x": 416.2406, + "y": 423.34157 + }, + [ + { + "#": 2424 + }, + { + "#": 2425 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 94, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2427 + }, + "angle": 0, + "vertices": { + "#": 2428 + }, + "position": { + "#": 2435 + }, + "force": { + "#": 2436 + }, + "torque": 0, + "positionImpulse": { + "#": 2437 + }, + "constraintImpulse": { + "#": 2438 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2439 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2440 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2441 + }, + "bounds": { + "#": 2443 + }, + "positionPrev": { + "#": 2446 + }, + "anglePrev": 0, + "axes": { + "#": 2447 + }, + "area": 1475.91406, + "mass": 1.47591, + "inverseMass": 0.67755, + "inertia": 1397.39442, + "inverseInertia": 0.00072, + "parent": { + "#": 2426 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2426 + } + ], + [ + { + "#": 2429 + }, + { + "#": 2430 + }, + { + "#": 2431 + }, + { + "#": 2432 + }, + { + "#": 2433 + }, + { + "#": 2434 + } + ], + { + "x": 474.20817, + "y": 438.428, + "index": 0, + "body": { + "#": 2426 + }, + "isInternal": false + }, + { + "x": 453.56717, + "y": 450.346, + "index": 1, + "body": { + "#": 2426 + }, + "isInternal": false + }, + { + "x": 432.92617, + "y": 438.428, + "index": 2, + "body": { + "#": 2426 + }, + "isInternal": false + }, + { + "x": 432.92617, + "y": 414.594, + "index": 3, + "body": { + "#": 2426 + }, + "isInternal": false + }, + { + "x": 453.56717, + "y": 402.676, + "index": 4, + "body": { + "#": 2426 + }, + "isInternal": false + }, + { + "x": 474.20817, + "y": 414.594, + "index": 5, + "body": { + "#": 2426 + }, + "isInternal": false + }, + { + "x": 453.56717, + "y": 426.511 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2442 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2444 + }, + "max": { + "#": 2445 + } + }, + { + "x": 432.92617, + "y": 402.676 + }, + { + "x": 474.20817, + "y": 450.346 + }, + { + "x": 453.56717, + "y": 426.511 + }, + [ + { + "#": 2448 + }, + { + "#": 2449 + }, + { + "#": 2450 + } + ], + { + "x": -0.50003, + "y": -0.86601 + }, + { + "x": 0.50003, + "y": -0.86601 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 95, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2452 + }, + "angle": 0, + "vertices": { + "#": 2453 + }, + "position": { + "#": 2458 + }, + "force": { + "#": 2459 + }, + "torque": 0, + "positionImpulse": { + "#": 2460 + }, + "constraintImpulse": { + "#": 2461 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2462 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2463 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2464 + }, + "bounds": { + "#": 2466 + }, + "positionPrev": { + "#": 2469 + }, + "anglePrev": 0, + "axes": { + "#": 2470 + }, + "area": 2731.5257, + "mass": 2.73153, + "inverseMass": 0.3661, + "inertia": 4974.15509, + "inverseInertia": 0.0002, + "parent": { + "#": 2451 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2451 + } + ], + [ + { + "#": 2454 + }, + { + "#": 2455 + }, + { + "#": 2456 + }, + { + "#": 2457 + } + ], + { + "x": 526.47217, + "y": 454.94, + "index": 0, + "body": { + "#": 2451 + }, + "isInternal": false + }, + { + "x": 474.20817, + "y": 454.94, + "index": 1, + "body": { + "#": 2451 + }, + "isInternal": false + }, + { + "x": 474.20817, + "y": 402.676, + "index": 2, + "body": { + "#": 2451 + }, + "isInternal": false + }, + { + "x": 526.47217, + "y": 402.676, + "index": 3, + "body": { + "#": 2451 + }, + "isInternal": false + }, + { + "x": 500.34017, + "y": 428.808 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2465 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2467 + }, + "max": { + "#": 2468 + } + }, + { + "x": 474.20817, + "y": 402.676 + }, + { + "x": 526.47217, + "y": 454.94 + }, + { + "x": 500.34017, + "y": 428.808 + }, + [ + { + "#": 2471 + }, + { + "#": 2472 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 96, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2474 + }, + "angle": 0, + "vertices": { + "#": 2475 + }, + "position": { + "#": 2482 + }, + "force": { + "#": 2483 + }, + "torque": 0, + "positionImpulse": { + "#": 2484 + }, + "constraintImpulse": { + "#": 2485 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2486 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2487 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2488 + }, + "bounds": { + "#": 2490 + }, + "positionPrev": { + "#": 2493 + }, + "anglePrev": 0, + "axes": { + "#": 2494 + }, + "area": 1453.96239, + "mass": 1.45396, + "inverseMass": 0.68778, + "inertia": 1356.13589, + "inverseInertia": 0.00074, + "parent": { + "#": 2473 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2473 + } + ], + [ + { + "#": 2476 + }, + { + "#": 2477 + }, + { + "#": 2478 + }, + { + "#": 2479 + }, + { + "#": 2480 + }, + { + "#": 2481 + } + ], + { + "x": 567.44617, + "y": 438.161, + "index": 0, + "body": { + "#": 2473 + }, + "isInternal": false + }, + { + "x": 546.95917, + "y": 449.99, + "index": 1, + "body": { + "#": 2473 + }, + "isInternal": false + }, + { + "x": 526.47217, + "y": 438.161, + "index": 2, + "body": { + "#": 2473 + }, + "isInternal": false + }, + { + "x": 526.47217, + "y": 414.505, + "index": 3, + "body": { + "#": 2473 + }, + "isInternal": false + }, + { + "x": 546.95917, + "y": 402.676, + "index": 4, + "body": { + "#": 2473 + }, + "isInternal": false + }, + { + "x": 567.44617, + "y": 414.505, + "index": 5, + "body": { + "#": 2473 + }, + "isInternal": false + }, + { + "x": 546.95917, + "y": 426.333 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2489 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2491 + }, + "max": { + "#": 2492 + } + }, + { + "x": 526.47217, + "y": 402.676 + }, + { + "x": 567.44617, + "y": 449.99 + }, + { + "x": 546.95917, + "y": 426.333 + }, + [ + { + "#": 2495 + }, + { + "#": 2496 + }, + { + "#": 2497 + } + ], + { + "x": -0.50003, + "y": -0.86601 + }, + { + "x": 0.50003, + "y": -0.86601 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 97, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2499 + }, + "angle": 0, + "vertices": { + "#": 2500 + }, + "position": { + "#": 2505 + }, + "force": { + "#": 2506 + }, + "torque": 0, + "positionImpulse": { + "#": 2507 + }, + "constraintImpulse": { + "#": 2508 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2509 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2510 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2511 + }, + "bounds": { + "#": 2513 + }, + "positionPrev": { + "#": 2516 + }, + "anglePrev": 0, + "axes": { + "#": 2517 + }, + "area": 4826.0809, + "mass": 4.82608, + "inverseMass": 0.20721, + "inertia": 15527.37124, + "inverseInertia": 0.00006, + "parent": { + "#": 2498 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2498 + } + ], + [ + { + "#": 2501 + }, + { + "#": 2502 + }, + { + "#": 2503 + }, + { + "#": 2504 + } + ], + { + "x": 636.91617, + "y": 472.146, + "index": 0, + "body": { + "#": 2498 + }, + "isInternal": false + }, + { + "x": 567.44617, + "y": 472.146, + "index": 1, + "body": { + "#": 2498 + }, + "isInternal": false + }, + { + "x": 567.44617, + "y": 402.676, + "index": 2, + "body": { + "#": 2498 + }, + "isInternal": false + }, + { + "x": 636.91617, + "y": 402.676, + "index": 3, + "body": { + "#": 2498 + }, + "isInternal": false + }, + { + "x": 602.18117, + "y": 437.411 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2512 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2514 + }, + "max": { + "#": 2515 + } + }, + { + "x": 567.44617, + "y": 402.676 + }, + { + "x": 636.91617, + "y": 472.146 + }, + { + "x": 602.18117, + "y": 437.411 + }, + [ + { + "#": 2518 + }, + { + "#": 2519 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 98, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2521 + }, + "angle": 0, + "vertices": { + "#": 2522 + }, + "position": { + "#": 2527 + }, + "force": { + "#": 2528 + }, + "torque": 0, + "positionImpulse": { + "#": 2529 + }, + "constraintImpulse": { + "#": 2530 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2531 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2532 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2533 + }, + "bounds": { + "#": 2535 + }, + "positionPrev": { + "#": 2538 + }, + "anglePrev": 0, + "axes": { + "#": 2539 + }, + "area": 1288.74263, + "mass": 1.28874, + "inverseMass": 0.77595, + "inertia": 1283.52541, + "inverseInertia": 0.00078, + "parent": { + "#": 2520 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2520 + } + ], + [ + { + "#": 2523 + }, + { + "#": 2524 + }, + { + "#": 2525 + }, + { + "#": 2526 + } + ], + { + "x": 636.91617, + "y": 402.676, + "index": 0, + "body": { + "#": 2520 + }, + "isInternal": false + }, + { + "x": 684.34557, + "y": 402.676, + "index": 1, + "body": { + "#": 2520 + }, + "isInternal": false + }, + { + "x": 684.34557, + "y": 429.84781, + "index": 2, + "body": { + "#": 2520 + }, + "isInternal": false + }, + { + "x": 636.91617, + "y": 429.84781, + "index": 3, + "body": { + "#": 2520 + }, + "isInternal": false + }, + { + "x": 660.63087, + "y": 416.26191 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2534 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2536 + }, + "max": { + "#": 2537 + } + }, + { + "x": 636.91617, + "y": 402.676 + }, + { + "x": 684.34557, + "y": 429.84781 + }, + { + "x": 660.63087, + "y": 416.26191 + }, + [ + { + "#": 2540 + }, + { + "#": 2541 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 99, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2543 + }, + "angle": 0, + "vertices": { + "#": 2544 + }, + "position": { + "#": 2550 + }, + "force": { + "#": 2551 + }, + "torque": 0, + "positionImpulse": { + "#": 2552 + }, + "constraintImpulse": { + "#": 2553 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2554 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2555 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2556 + }, + "bounds": { + "#": 2558 + }, + "positionPrev": { + "#": 2561 + }, + "anglePrev": 0, + "axes": { + "#": 2562 + }, + "area": 1779.8838, + "mass": 1.77988, + "inverseMass": 0.56183, + "inertia": 2051.03388, + "inverseInertia": 0.00049, + "parent": { + "#": 2542 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2542 + } + ], + [ + { + "#": 2545 + }, + { + "#": 2546 + }, + { + "#": 2547 + }, + { + "#": 2548 + }, + { + "#": 2549 + } + ], + { + "x": 731.22878, + "y": 444.779, + "index": 0, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 700.63878, + "y": 454.718, + "index": 1, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 681.73278, + "y": 428.697, + "index": 2, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 700.63878, + "y": 402.676, + "index": 3, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 731.22878, + "y": 412.615, + "index": 4, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 709.09357, + "y": 428.697 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2557 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2559 + }, + "max": { + "#": 2560 + } + }, + { + "x": 681.73278, + "y": 402.676 + }, + { + "x": 731.22878, + "y": 454.718 + }, + { + "x": 709.09357, + "y": 428.697 + }, + [ + { + "#": 2563 + }, + { + "#": 2564 + }, + { + "#": 2565 + }, + { + "#": 2566 + }, + { + "#": 2567 + } + ], + { + "x": 0.30901, + "y": 0.95106 + }, + { + "x": -0.80901, + "y": 0.5878 + }, + { + "x": -0.80901, + "y": -0.5878 + }, + { + "x": 0.30901, + "y": -0.95106 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 100, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2569 + }, + "angle": 0, + "vertices": { + "#": 2570 + }, + "position": { + "#": 2575 + }, + "force": { + "#": 2576 + }, + "torque": 0, + "positionImpulse": { + "#": 2577 + }, + "constraintImpulse": { + "#": 2578 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2579 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2580 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2581 + }, + "bounds": { + "#": 2583 + }, + "positionPrev": { + "#": 2586 + }, + "anglePrev": 0, + "axes": { + "#": 2587 + }, + "area": 4428.37012, + "mass": 4.42837, + "inverseMass": 0.22582, + "inertia": 13073.64126, + "inverseInertia": 0.00008, + "parent": { + "#": 2568 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2568 + } + ], + [ + { + "#": 2571 + }, + { + "#": 2572 + }, + { + "#": 2573 + }, + { + "#": 2574 + } + ], + { + "x": 797.77478, + "y": 469.222, + "index": 0, + "body": { + "#": 2568 + }, + "isInternal": false + }, + { + "x": 731.22878, + "y": 469.222, + "index": 1, + "body": { + "#": 2568 + }, + "isInternal": false + }, + { + "x": 731.22878, + "y": 402.676, + "index": 2, + "body": { + "#": 2568 + }, + "isInternal": false + }, + { + "x": 797.77478, + "y": 402.676, + "index": 3, + "body": { + "#": 2568 + }, + "isInternal": false + }, + { + "x": 764.50178, + "y": 435.949 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2582 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2584 + }, + "max": { + "#": 2585 + } + }, + { + "x": 731.22878, + "y": 402.676 + }, + { + "x": 797.77478, + "y": 469.222 + }, + { + "x": 764.50178, + "y": 435.949 + }, + [ + { + "#": 2588 + }, + { + "#": 2589 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 101, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2591 + }, + "angle": 0, + "vertices": { + "#": 2592 + }, + "position": { + "#": 2619 + }, + "force": { + "#": 2620 + }, + "torque": 0, + "positionImpulse": { + "#": 2621 + }, + "constraintImpulse": { + "#": 2622 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2623 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2624 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2625 + }, + "circleRadius": 35.88632, + "bounds": { + "#": 2627 + }, + "positionPrev": { + "#": 2630 + }, + "anglePrev": 0, + "axes": { + "#": 2631 + }, + "area": 4006.57748, + "mass": 4.00658, + "inverseMass": 0.24959, + "inertia": 10219.63772, + "inverseInertia": 0.0001, + "parent": { + "#": 2590 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2590 + } + ], + [ + { + "#": 2593 + }, + { + "#": 2594 + }, + { + "#": 2595 + }, + { + "#": 2596 + }, + { + "#": 2597 + }, + { + "#": 2598 + }, + { + "#": 2599 + }, + { + "#": 2600 + }, + { + "#": 2601 + }, + { + "#": 2602 + }, + { + "#": 2603 + }, + { + "#": 2604 + }, + { + "#": 2605 + }, + { + "#": 2606 + }, + { + "#": 2607 + }, + { + "#": 2608 + }, + { + "#": 2609 + }, + { + "#": 2610 + }, + { + "#": 2611 + }, + { + "#": 2612 + }, + { + "#": 2613 + }, + { + "#": 2614 + }, + { + "#": 2615 + }, + { + "#": 2616 + }, + { + "#": 2617 + }, + { + "#": 2618 + } + ], + { + "x": 869.02478, + "y": 442.888, + "index": 0, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 866.95378, + "y": 451.287, + "index": 1, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 862.93378, + "y": 458.948, + "index": 2, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 857.19678, + "y": 465.423, + "index": 3, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 850.07678, + "y": 470.338, + "index": 4, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 841.98778, + "y": 473.406, + "index": 5, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 833.39978, + "y": 474.448, + "index": 6, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 824.81178, + "y": 473.406, + "index": 7, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 816.72278, + "y": 470.338, + "index": 8, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 809.60278, + "y": 465.423, + "index": 9, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 803.86578, + "y": 458.948, + "index": 10, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 799.84578, + "y": 451.287, + "index": 11, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 797.77478, + "y": 442.888, + "index": 12, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 797.77478, + "y": 434.236, + "index": 13, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 799.84578, + "y": 425.837, + "index": 14, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 803.86578, + "y": 418.176, + "index": 15, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 809.60278, + "y": 411.701, + "index": 16, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 816.72278, + "y": 406.786, + "index": 17, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 824.81178, + "y": 403.718, + "index": 18, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 833.39978, + "y": 402.676, + "index": 19, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 841.98778, + "y": 403.718, + "index": 20, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 850.07678, + "y": 406.786, + "index": 21, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 857.19678, + "y": 411.701, + "index": 22, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 862.93378, + "y": 418.176, + "index": 23, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 866.95378, + "y": 425.837, + "index": 24, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 869.02478, + "y": 434.236, + "index": 25, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 833.39978, + "y": 438.562 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2626 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2628 + }, + "max": { + "#": 2629 + } + }, + { + "x": 797.77478, + "y": 402.676 + }, + { + "x": 869.02478, + "y": 474.448 + }, + { + "x": 833.39978, + "y": 438.562 + }, + [ + { + "#": 2632 + }, + { + "#": 2633 + }, + { + "#": 2634 + }, + { + "#": 2635 + }, + { + "#": 2636 + }, + { + "#": 2637 + }, + { + "#": 2638 + }, + { + "#": 2639 + }, + { + "#": 2640 + }, + { + "#": 2641 + }, + { + "#": 2642 + }, + { + "#": 2643 + }, + { + "#": 2644 + } + ], + { + "x": -0.97092, + "y": -0.23941 + }, + { + "x": -0.88549, + "y": -0.46465 + }, + { + "x": -0.74847, + "y": -0.66316 + }, + { + "x": -0.5681, + "y": -0.82296 + }, + { + "x": -0.35463, + "y": -0.93501 + }, + { + "x": -0.12045, + "y": -0.99272 + }, + { + "x": 0.12045, + "y": -0.99272 + }, + { + "x": 0.35463, + "y": -0.93501 + }, + { + "x": 0.5681, + "y": -0.82296 + }, + { + "x": 0.74847, + "y": -0.66316 + }, + { + "x": 0.88549, + "y": -0.46465 + }, + { + "x": 0.97092, + "y": -0.23941 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 102, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2646 + }, + "angle": 0, + "vertices": { + "#": 2647 + }, + "position": { + "#": 2652 + }, + "force": { + "#": 2653 + }, + "torque": 0, + "positionImpulse": { + "#": 2654 + }, + "constraintImpulse": { + "#": 2655 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2656 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2657 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2658 + }, + "bounds": { + "#": 2660 + }, + "positionPrev": { + "#": 2663 + }, + "anglePrev": 0, + "axes": { + "#": 2664 + }, + "area": 2513.03702, + "mass": 2.51304, + "inverseMass": 0.39792, + "inertia": 7118.36798, + "inverseInertia": 0.00014, + "parent": { + "#": 2645 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2645 + } + ], + [ + { + "#": 2648 + }, + { + "#": 2649 + }, + { + "#": 2650 + }, + { + "#": 2651 + } + ], + { + "x": 869.02478, + "y": 402.676, + "index": 0, + "body": { + "#": 2645 + }, + "isInternal": false + }, + { + "x": 956.63109, + "y": 402.676, + "index": 1, + "body": { + "#": 2645 + }, + "isInternal": false + }, + { + "x": 956.63109, + "y": 431.36157, + "index": 2, + "body": { + "#": 2645 + }, + "isInternal": false + }, + { + "x": 869.02478, + "y": 431.36157, + "index": 3, + "body": { + "#": 2645 + }, + "isInternal": false + }, + { + "x": 912.82793, + "y": 417.01879 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2659 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2661 + }, + "max": { + "#": 2662 + } + }, + { + "x": 869.02478, + "y": 402.676 + }, + { + "x": 956.63109, + "y": 431.36157 + }, + { + "x": 912.82793, + "y": 417.01879 + }, + [ + { + "#": 2665 + }, + { + "#": 2666 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 103, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2668 + }, + "angle": 0, + "vertices": { + "#": 2669 + }, + "position": { + "#": 2674 + }, + "force": { + "#": 2675 + }, + "torque": 0, + "positionImpulse": { + "#": 2676 + }, + "constraintImpulse": { + "#": 2677 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2678 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2679 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2680 + }, + "bounds": { + "#": 2682 + }, + "positionPrev": { + "#": 2685 + }, + "anglePrev": 0, + "axes": { + "#": 2686 + }, + "area": 1629.36666, + "mass": 1.62937, + "inverseMass": 0.61374, + "inertia": 1918.06222, + "inverseInertia": 0.00052, + "parent": { + "#": 2667 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2667 + } + ], + [ + { + "#": 2670 + }, + { + "#": 2671 + }, + { + "#": 2672 + }, + { + "#": 2673 + } + ], + { + "x": 956.63109, + "y": 402.676, + "index": 0, + "body": { + "#": 2667 + }, + "isInternal": false + }, + { + "x": 989.57411, + "y": 402.676, + "index": 1, + "body": { + "#": 2667 + }, + "isInternal": false + }, + { + "x": 989.57411, + "y": 452.13613, + "index": 2, + "body": { + "#": 2667 + }, + "isInternal": false + }, + { + "x": 956.63109, + "y": 452.13613, + "index": 3, + "body": { + "#": 2667 + }, + "isInternal": false + }, + { + "x": 973.1026, + "y": 427.40607 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2681 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2683 + }, + "max": { + "#": 2684 + } + }, + { + "x": 956.63109, + "y": 402.676 + }, + { + "x": 989.57411, + "y": 452.13613 + }, + { + "x": 973.1026, + "y": 427.40607 + }, + [ + { + "#": 2687 + }, + { + "#": 2688 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 104, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2690 + }, + "angle": 0, + "vertices": { + "#": 2691 + }, + "position": { + "#": 2699 + }, + "force": { + "#": 2700 + }, + "torque": 0, + "positionImpulse": { + "#": 2701 + }, + "constraintImpulse": { + "#": 2702 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2703 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2704 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2705 + }, + "bounds": { + "#": 2707 + }, + "positionPrev": { + "#": 2710 + }, + "anglePrev": 0, + "axes": { + "#": 2711 + }, + "area": 1316.36654, + "mass": 1.31637, + "inverseMass": 0.75967, + "inertia": 1107.54299, + "inverseInertia": 0.0009, + "parent": { + "#": 2689 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2689 + } + ], + [ + { + "#": 2692 + }, + { + "#": 2693 + }, + { + "#": 2694 + }, + { + "#": 2695 + }, + { + "#": 2696 + }, + { + "#": 2697 + }, + { + "#": 2698 + } + ], + { + "x": 1030.18214, + "y": 433.575, + "index": 0, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 1015.30214, + "y": 445.442, + "index": 1, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 996.74614, + "y": 441.207, + "index": 2, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 988.48814, + "y": 424.059, + "index": 3, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 996.74614, + "y": 406.911, + "index": 4, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 1015.30214, + "y": 402.676, + "index": 5, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 1030.18214, + "y": 414.543, + "index": 6, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 1010.42111, + "y": 424.059 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2706 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2708 + }, + "max": { + "#": 2709 + } + }, + { + "x": 988.48814, + "y": 402.676 + }, + { + "x": 1030.18214, + "y": 445.442 + }, + { + "x": 1010.42111, + "y": 424.059 + }, + [ + { + "#": 2712 + }, + { + "#": 2713 + }, + { + "#": 2714 + }, + { + "#": 2715 + }, + { + "#": 2716 + }, + { + "#": 2717 + }, + { + "#": 2718 + } + ], + { + "x": 0.62351, + "y": 0.78182 + }, + { + "x": -0.22251, + "y": 0.97493 + }, + { + "x": -0.90097, + "y": 0.43388 + }, + { + "x": -0.90097, + "y": -0.43388 + }, + { + "x": -0.22251, + "y": -0.97493 + }, + { + "x": 0.62351, + "y": -0.78182 + }, + { + "x": 1, + "y": 0 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 2723 + }, + "max": { + "#": 2724 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/broadphase/broadphase-10.json b/test/node/refs/broadphase/broadphase-10.json new file mode 100644 index 00000000..c339db4a --- /dev/null +++ b/test/node/refs/broadphase/broadphase-10.json @@ -0,0 +1,26312 @@ +[ + { + "id": 12, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 94 + }, + "composites": { + "#": 95 + }, + "label": "World", + "gravity": { + "#": 2825 + }, + "bounds": { + "#": 2826 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + [], + [ + { + "#": 96 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 97 + }, + "constraints": { + "#": 2823 + }, + "composites": { + "#": 2824 + }, + "label": "Stack" + }, + [ + { + "#": 98 + }, + { + "#": 121 + }, + { + "#": 144 + }, + { + "#": 167 + }, + { + "#": 190 + }, + { + "#": 216 + }, + { + "#": 243 + }, + { + "#": 299 + }, + { + "#": 322 + }, + { + "#": 345 + }, + { + "#": 368 + }, + { + "#": 391 + }, + { + "#": 414 + }, + { + "#": 445 + }, + { + "#": 468 + }, + { + "#": 495 + }, + { + "#": 518 + }, + { + "#": 541 + }, + { + "#": 597 + }, + { + "#": 620 + }, + { + "#": 643 + }, + { + "#": 699 + }, + { + "#": 722 + }, + { + "#": 745 + }, + { + "#": 768 + }, + { + "#": 794 + }, + { + "#": 820 + }, + { + "#": 843 + }, + { + "#": 869 + }, + { + "#": 892 + }, + { + "#": 918 + }, + { + "#": 941 + }, + { + "#": 964 + }, + { + "#": 987 + }, + { + "#": 1016 + }, + { + "#": 1039 + }, + { + "#": 1062 + }, + { + "#": 1085 + }, + { + "#": 1108 + }, + { + "#": 1131 + }, + { + "#": 1187 + }, + { + "#": 1210 + }, + { + "#": 1241 + }, + { + "#": 1264 + }, + { + "#": 1295 + }, + { + "#": 1318 + }, + { + "#": 1341 + }, + { + "#": 1364 + }, + { + "#": 1387 + }, + { + "#": 1418 + }, + { + "#": 1441 + }, + { + "#": 1464 + }, + { + "#": 1487 + }, + { + "#": 1510 + }, + { + "#": 1566 + }, + { + "#": 1589 + }, + { + "#": 1645 + }, + { + "#": 1668 + }, + { + "#": 1699 + }, + { + "#": 1722 + }, + { + "#": 1745 + }, + { + "#": 1768 + }, + { + "#": 1791 + }, + { + "#": 1818 + }, + { + "#": 1841 + }, + { + "#": 1864 + }, + { + "#": 1887 + }, + { + "#": 1914 + }, + { + "#": 1937 + }, + { + "#": 1960 + }, + { + "#": 1983 + }, + { + "#": 2039 + }, + { + "#": 2095 + }, + { + "#": 2122 + }, + { + "#": 2145 + }, + { + "#": 2168 + }, + { + "#": 2199 + }, + { + "#": 2225 + }, + { + "#": 2248 + }, + { + "#": 2279 + }, + { + "#": 2302 + }, + { + "#": 2325 + }, + { + "#": 2348 + }, + { + "#": 2375 + }, + { + "#": 2398 + }, + { + "#": 2427 + }, + { + "#": 2450 + }, + { + "#": 2473 + }, + { + "#": 2496 + }, + { + "#": 2519 + }, + { + "#": 2545 + }, + { + "#": 2568 + }, + { + "#": 2594 + }, + { + "#": 2617 + }, + { + "#": 2640 + }, + { + "#": 2667 + }, + { + "#": 2690 + }, + { + "#": 2746 + }, + { + "#": 2769 + }, + { + "#": 2792 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 99 + }, + "angle": 0.07365, + "vertices": { + "#": 100 + }, + "position": { + "#": 105 + }, + "force": { + "#": 106 + }, + "torque": 0, + "positionImpulse": { + "#": 107 + }, + "constraintImpulse": { + "#": 108 + }, + "totalContacts": 0, + "speed": 1.24597, + "angularSpeed": 0.01335, + "velocity": { + "#": 109 + }, + "angularVelocity": 0.01596, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 110 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 111 + }, + "bounds": { + "#": 113 + }, + "positionPrev": { + "#": 116 + }, + "anglePrev": 0.0583, + "axes": { + "#": 117 + }, + "area": 1534.90643, + "mass": 1.53491, + "inverseMass": 0.65151, + "inertia": 1587.6055, + "inverseInertia": 0.00063, + "parent": { + "#": 98 + }, + "sleepCounter": 0, + "region": { + "#": 120 + } + }, + [ + { + "#": 98 + } + ], + [ + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + } + ], + { + "x": 23.23458, + "y": 27.91804, + "index": 0, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 59.53905, + "y": 30.59668, + "index": 1, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 56.43651, + "y": 72.64648, + "index": 2, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 20.13203, + "y": 69.96784, + "index": 3, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 39.83554, + "y": 50.28226 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.32048, + "y": 1.00097 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 112 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 114 + }, + "max": { + "#": 115 + } + }, + { + "x": 20.13203, + "y": 27.91804 + }, + { + "x": 59.8043, + "y": 73.86388 + }, + { + "x": 39.50782, + "y": 49.31428 + }, + [ + { + "#": 118 + }, + { + "#": 119 + } + ], + { + "x": -0.07358, + "y": 0.99729 + }, + { + "x": -0.99729, + "y": -0.07358 + }, + { + "id": "0,1,0,1", + "startCol": 0, + "endCol": 1, + "startRow": 0, + "endRow": 1 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 122 + }, + "angle": 0.06832, + "vertices": { + "#": 123 + }, + "position": { + "#": 128 + }, + "force": { + "#": 129 + }, + "torque": 0, + "positionImpulse": { + "#": 130 + }, + "constraintImpulse": { + "#": 131 + }, + "totalContacts": 0, + "speed": 1.94434, + "angularSpeed": 0.0134, + "velocity": { + "#": 132 + }, + "angularVelocity": 0.01549, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 133 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 134 + }, + "bounds": { + "#": 136 + }, + "positionPrev": { + "#": 139 + }, + "anglePrev": 0.05276, + "axes": { + "#": 140 + }, + "area": 2220.52879, + "mass": 2.22053, + "inverseMass": 0.45034, + "inertia": 3297.21813, + "inverseInertia": 0.0003, + "parent": { + "#": 121 + }, + "sleepCounter": 0, + "region": { + "#": 143 + } + }, + [ + { + "#": 121 + } + ], + [ + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + } + ], + { + "x": 59.25292, + "y": 32.14462, + "index": 0, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 104.46305, + "y": 35.23813, + "index": 1, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 101.11797, + "y": 84.12497, + "index": 2, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 55.90784, + "y": 81.03147, + "index": 3, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 80.18544, + "y": 58.1348 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.17744, + "y": 0.01609 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.19037, + "y": 1.8197 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 135 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 137 + }, + "max": { + "#": 138 + } + }, + { + "x": 55.90784, + "y": 32.14462 + }, + { + "x": 104.63469, + "y": 86.06173 + }, + { + "x": 79.98874, + "y": 56.31679 + }, + [ + { + "#": 141 + }, + { + "#": 142 + } + ], + { + "x": -0.06827, + "y": 0.99767 + }, + { + "x": -0.99767, + "y": -0.06827 + }, + { + "id": "1,2,0,1", + "startCol": 1, + "endCol": 2, + "startRow": 0, + "endRow": 1 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 145 + }, + "angle": 0.04398, + "vertices": { + "#": 146 + }, + "position": { + "#": 151 + }, + "force": { + "#": 152 + }, + "torque": 0, + "positionImpulse": { + "#": 153 + }, + "constraintImpulse": { + "#": 154 + }, + "totalContacts": 0, + "speed": 2.46948, + "angularSpeed": 0.00968, + "velocity": { + "#": 155 + }, + "angularVelocity": 0.01034, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 156 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 157 + }, + "bounds": { + "#": 159 + }, + "positionPrev": { + "#": 162 + }, + "anglePrev": 0.03342, + "axes": { + "#": 163 + }, + "area": 1140.1977, + "mass": 1.1402, + "inverseMass": 0.87704, + "inertia": 905.8525, + "inverseInertia": 0.0011, + "parent": { + "#": 144 + }, + "sleepCounter": 0, + "region": { + "#": 166 + } + }, + [ + { + "#": 144 + } + ], + [ + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + } + ], + { + "x": 104.31865, + "y": 35.34666, + "index": 0, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 143.50153, + "y": 37.07108, + "index": 1, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 142.22336, + "y": 66.11422, + "index": 2, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 103.04048, + "y": 64.3898, + "index": 3, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 123.27101, + "y": 50.73044 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.27564, + "y": 0.03805 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.39169, + "y": 2.38765 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 158 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 160 + }, + "max": { + "#": 161 + } + }, + { + "x": 103.04048, + "y": 35.34666 + }, + { + "x": 143.84839, + "y": 68.55922 + }, + { + "x": 122.87275, + "y": 48.33866 + }, + [ + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": -0.04397, + "y": 0.99903 + }, + { + "x": -0.99903, + "y": -0.04397 + }, + { + "id": "2,2,0,1", + "startCol": 2, + "endCol": 2, + "startRow": 0, + "endRow": 1 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 168 + }, + "angle": 0.03452, + "vertices": { + "#": 169 + }, + "position": { + "#": 174 + }, + "force": { + "#": 175 + }, + "torque": 0, + "positionImpulse": { + "#": 176 + }, + "constraintImpulse": { + "#": 177 + }, + "totalContacts": 0, + "speed": 2.78057, + "angularSpeed": 0.00992, + "velocity": { + "#": 178 + }, + "angularVelocity": 0.01476, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 179 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 180 + }, + "bounds": { + "#": 182 + }, + "positionPrev": { + "#": 185 + }, + "anglePrev": 0.01992, + "axes": { + "#": 186 + }, + "area": 752.4076, + "mass": 0.75241, + "inverseMass": 1.32907, + "inertia": 384.63687, + "inverseInertia": 0.0026, + "parent": { + "#": 167 + }, + "sleepCounter": 0, + "region": { + "#": 189 + } + }, + [ + { + "#": 167 + } + ], + [ + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + } + ], + { + "x": 143.40156, + "y": 36.89253, + "index": 0, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 168.26405, + "y": 37.75124, + "index": 1, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 167.22007, + "y": 67.97795, + "index": 2, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 142.35758, + "y": 67.11924, + "index": 3, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 155.31081, + "y": 52.43524 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.33249, + "y": 0.00755 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.33042, + "y": 2.73708 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 181 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 183 + }, + "max": { + "#": 184 + } + }, + { + "x": 142.35758, + "y": 36.89253 + }, + { + "x": 168.60707, + "y": 70.73727 + }, + { + "x": 154.99034, + "y": 49.70443 + }, + [ + { + "#": 187 + }, + { + "#": 188 + } + ], + { + "x": -0.03452, + "y": 0.9994 + }, + { + "x": -0.9994, + "y": -0.03452 + }, + { + "id": "2,3,0,1", + "startCol": 2, + "endCol": 3, + "startRow": 0, + "endRow": 1 + }, + { + "id": 9, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 191 + }, + "angle": 0.01217, + "vertices": { + "#": 192 + }, + "position": { + "#": 199 + }, + "force": { + "#": 200 + }, + "torque": 0, + "positionImpulse": { + "#": 201 + }, + "constraintImpulse": { + "#": 202 + }, + "totalContacts": 0, + "speed": 2.98467, + "angularSpeed": 0.00327, + "velocity": { + "#": 203 + }, + "angularVelocity": 0.00476, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 204 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 205 + }, + "bounds": { + "#": 207 + }, + "positionPrev": { + "#": 210 + }, + "anglePrev": 0.0078, + "axes": { + "#": 211 + }, + "area": 2027.25418, + "mass": 2.02725, + "inverseMass": 0.49328, + "inertia": 2636.41196, + "inverseInertia": 0.00038, + "parent": { + "#": 190 + }, + "sleepCounter": 0, + "region": { + "#": 215 + } + }, + [ + { + "#": 190 + } + ], + [ + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + } + ], + { + "x": 215.87207, + "y": 76.94435, + "index": 0, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 191.5129, + "y": 90.61594, + "index": 1, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 167.49365, + "y": 76.3556, + "index": 2, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 167.83357, + "y": 48.42367, + "index": 3, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 192.19274, + "y": 34.75208, + "index": 4, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 216.21199, + "y": 49.01241, + "index": 5, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 191.85282, + "y": 62.68401 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.33856, + "y": -0.01857 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.34067, + "y": 2.88226 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 206 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 208 + }, + "max": { + "#": 209 + } + }, + { + "x": 167.49365, + "y": 34.75208 + }, + { + "x": 216.56677, + "y": 93.57945 + }, + { + "x": 191.52045, + "y": 59.78526 + }, + [ + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + } + ], + { + "x": -0.48943, + "y": -0.87204 + }, + { + "x": 0.51051, + "y": -0.85987 + }, + { + "x": 0.99993, + "y": 0.01217 + }, + { + "id": "3,4,0,1", + "startCol": 3, + "endCol": 4, + "startRow": 0, + "endRow": 1 + }, + { + "id": 10, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 217 + }, + "angle": -0.00327, + "vertices": { + "#": 218 + }, + "position": { + "#": 224 + }, + "force": { + "#": 225 + }, + "torque": 0, + "positionImpulse": { + "#": 226 + }, + "constraintImpulse": { + "#": 227 + }, + "totalContacts": 0, + "speed": 3.00936, + "angularSpeed": 0.00076, + "velocity": { + "#": 228 + }, + "angularVelocity": -0.00063, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 229 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 230 + }, + "bounds": { + "#": 232 + }, + "positionPrev": { + "#": 235 + }, + "anglePrev": -0.00254, + "axes": { + "#": 236 + }, + "area": 4842.27229, + "mass": 4.84227, + "inverseMass": 0.20651, + "inertia": 15180.5655, + "inverseInertia": 0.00007, + "parent": { + "#": 216 + }, + "sleepCounter": 0, + "region": { + "#": 242 + } + }, + [ + { + "#": 216 + } + ], + [ + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + } + ], + { + "x": 283.43713, + "y": 122.69809, + "index": 0, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 233.03599, + "y": 139.25692, + "index": 1, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 201.71287, + "y": 96.43908, + "index": 2, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 232.75541, + "y": 53.41738, + "index": 3, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 283.26373, + "y": 69.64638, + "index": 4, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 246.84101, + "y": 96.29157 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.40276, + "y": 1.12211 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.24546, + "y": 3.04111 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 231 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 233 + }, + "max": { + "#": 234 + } + }, + { + "x": 201.71287, + "y": 53.41738 + }, + { + "x": 283.60252, + "y": 142.26173 + }, + { + "x": 246.60407, + "y": 93.246 + }, + [ + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + } + ], + { + "x": 0.31213, + "y": 0.95004 + }, + { + "x": -0.80709, + "y": 0.59042 + }, + { + "x": -0.81094, + "y": -0.58514 + }, + { + "x": 0.30591, + "y": -0.95206 + }, + { + "x": 0.99999, + "y": -0.00327 + }, + { + "id": "4,5,1,2", + "startCol": 4, + "endCol": 5, + "startRow": 1, + "endRow": 2 + }, + { + "id": 11, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 244 + }, + "angle": -0.00196, + "vertices": { + "#": 245 + }, + "position": { + "#": 272 + }, + "force": { + "#": 273 + }, + "torque": 0, + "positionImpulse": { + "#": 274 + }, + "constraintImpulse": { + "#": 275 + }, + "totalContacts": 0, + "speed": 2.94085, + "angularSpeed": 0.00043, + "velocity": { + "#": 276 + }, + "angularVelocity": -0.00043, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 277 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 278 + }, + "circleRadius": 31.45923, + "bounds": { + "#": 280 + }, + "positionPrev": { + "#": 283 + }, + "anglePrev": -0.00154, + "axes": { + "#": 284 + }, + "area": 3079.01783, + "mass": 3.07902, + "inverseMass": 0.32478, + "inertia": 6035.49394, + "inverseInertia": 0.00017, + "parent": { + "#": 243 + }, + "sleepCounter": 0, + "region": { + "#": 298 + } + }, + [ + { + "#": 243 + } + ], + [ + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + } + ], + { + "x": 349.80867, + "y": 81.93934, + "index": 0, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 348.00813, + "y": 89.30689, + "index": 1, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 344.49632, + "y": 96.0288, + "index": 2, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 339.47848, + "y": 101.71567, + "index": 3, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 333.24595, + "y": 106.03591, + "index": 4, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 326.16024, + "y": 108.73883, + "index": 5, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 318.63305, + "y": 109.66761, + "index": 6, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 311.10227, + "y": 108.7684, + "index": 7, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 304.006, + "y": 106.09332, + "index": 8, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 297.75656, + "y": 101.79759, + "index": 9, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 292.71642, + "y": 96.13047, + "index": 10, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 289.17824, + "y": 89.42241, + "index": 11, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 287.34879, + "y": 82.06198, + "index": 12, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 287.33389, + "y": 74.478, + "index": 13, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 289.13443, + "y": 67.11045, + "index": 14, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 292.64624, + "y": 60.38854, + "index": 15, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 297.66408, + "y": 54.70168, + "index": 16, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 303.89661, + "y": 50.38143, + "index": 17, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 310.98232, + "y": 47.67851, + "index": 18, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 318.50951, + "y": 46.74973, + "index": 19, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 326.04029, + "y": 47.64895, + "index": 20, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 333.13656, + "y": 50.32402, + "index": 21, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 339.386, + "y": 54.61976, + "index": 22, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 344.42614, + "y": 60.28687, + "index": 23, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 347.96432, + "y": 66.99494, + "index": 24, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 349.79377, + "y": 74.35536, + "index": 25, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 318.57128, + "y": 78.20867 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.02134, + "y": 0.49625 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.04708, + "y": 2.94048 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 279 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 281 + }, + "max": { + "#": 282 + } + }, + { + "x": 287.33389, + "y": 46.74973 + }, + { + "x": 349.85575, + "y": 112.60809 + }, + { + "x": 318.5242, + "y": 75.2682 + }, + [ + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + } + ], + { + "x": -0.97141, + "y": -0.2374 + }, + { + "x": -0.88633, + "y": -0.46306 + }, + { + "x": -0.74984, + "y": -0.66162 + }, + { + "x": -0.56969, + "y": -0.82186 + }, + { + "x": -0.35641, + "y": -0.93433 + }, + { + "x": -0.12246, + "y": -0.99247 + }, + { + "x": 0.11856, + "y": -0.99295 + }, + { + "x": 0.35274, + "y": -0.93572 + }, + { + "x": 0.56646, + "y": -0.82409 + }, + { + "x": 0.74723, + "y": -0.66456 + }, + { + "x": 0.8845, + "y": -0.46653 + }, + { + "x": 0.97047, + "y": -0.24121 + }, + { + "x": 1, + "y": -0.00196 + }, + { + "id": "5,7,0,2", + "startCol": 5, + "endCol": 7, + "startRow": 0, + "endRow": 2 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 300 + }, + "angle": 0.00071, + "vertices": { + "#": 301 + }, + "position": { + "#": 306 + }, + "force": { + "#": 307 + }, + "torque": 0, + "positionImpulse": { + "#": 308 + }, + "constraintImpulse": { + "#": 309 + }, + "totalContacts": 0, + "speed": 2.91693, + "angularSpeed": 0.00066, + "velocity": { + "#": 310 + }, + "angularVelocity": 0.00066, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 311 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 312 + }, + "bounds": { + "#": 314 + }, + "positionPrev": { + "#": 317 + }, + "anglePrev": 0.00006, + "axes": { + "#": 318 + }, + "area": 1329.41676, + "mass": 1.32942, + "inverseMass": 0.75221, + "inertia": 1383.51246, + "inverseInertia": 0.00072, + "parent": { + "#": 299 + }, + "sleepCounter": 0, + "region": { + "#": 321 + } + }, + [ + { + "#": 299 + } + ], + [ + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + } + ], + { + "x": 347.59436, + "y": 36.06282, + "index": 0, + "body": { + "#": 299 + }, + "isInternal": false + }, + { + "x": 396.372, + "y": 36.09767, + "index": 1, + "body": { + "#": 299 + }, + "isInternal": false + }, + { + "x": 396.35253, + "y": 63.35229, + "index": 2, + "body": { + "#": 299 + }, + "isInternal": false + }, + { + "x": 347.57489, + "y": 63.31744, + "index": 3, + "body": { + "#": 299 + }, + "isInternal": false + }, + { + "x": 371.97344, + "y": 49.70755 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02903, + "y": 2.91678 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 313 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 315 + }, + "max": { + "#": 316 + } + }, + { + "x": 347.57489, + "y": 36.06282 + }, + { + "x": 396.372, + "y": 63.35229 + }, + { + "x": 371.94441, + "y": 46.79077 + }, + [ + { + "#": 319 + }, + { + "#": 320 + } + ], + { + "x": -0.00071, + "y": 1 + }, + { + "x": -1, + "y": -0.00071 + }, + { + "id": "7,8,0,1", + "startCol": 7, + "endCol": 8, + "startRow": 0, + "endRow": 1 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 323 + }, + "angle": 0.00068, + "vertices": { + "#": 324 + }, + "position": { + "#": 329 + }, + "force": { + "#": 330 + }, + "torque": 0, + "positionImpulse": { + "#": 331 + }, + "constraintImpulse": { + "#": 332 + }, + "totalContacts": 0, + "speed": 2.89134, + "angularSpeed": 0.00025, + "velocity": { + "#": 333 + }, + "angularVelocity": 0.00021, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 334 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 335 + }, + "bounds": { + "#": 337 + }, + "positionPrev": { + "#": 340 + }, + "anglePrev": 0.00047, + "axes": { + "#": 341 + }, + "area": 2858.63236, + "mass": 2.85863, + "inverseMass": 0.34982, + "inertia": 11948.09601, + "inverseInertia": 0.00008, + "parent": { + "#": 322 + }, + "sleepCounter": 0, + "region": { + "#": 344 + } + }, + [ + { + "#": 322 + } + ], + [ + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + } + ], + { + "x": 393.65983, + "y": 37.64488, + "index": 0, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 502.5144, + "y": 37.71855, + "index": 1, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 502.49663, + "y": 63.97956, + "index": 2, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 393.64206, + "y": 63.90589, + "index": 3, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 448.07823, + "y": 50.81222 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02618, + "y": 2.88781 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 336 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 338 + }, + "max": { + "#": 339 + } + }, + { + "x": 393.64206, + "y": 37.64488 + }, + { + "x": 502.55516, + "y": 66.87062 + }, + { + "x": 448.05242, + "y": 47.92473 + }, + [ + { + "#": 342 + }, + { + "#": 343 + } + ], + { + "x": -0.00068, + "y": 1 + }, + { + "x": -1, + "y": -0.00068 + }, + { + "id": "8,10,0,1", + "startCol": 8, + "endCol": 10, + "startRow": 0, + "endRow": 1 + }, + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 346 + }, + "angle": 0.00106, + "vertices": { + "#": 347 + }, + "position": { + "#": 352 + }, + "force": { + "#": 353 + }, + "torque": 0, + "positionImpulse": { + "#": 354 + }, + "constraintImpulse": { + "#": 355 + }, + "totalContacts": 0, + "speed": 2.89356, + "angularSpeed": 0.00044, + "velocity": { + "#": 356 + }, + "angularVelocity": 0.00012, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 357 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 358 + }, + "bounds": { + "#": 360 + }, + "positionPrev": { + "#": 363 + }, + "anglePrev": 0.00076, + "axes": { + "#": 364 + }, + "area": 926.83946, + "mass": 0.92684, + "inverseMass": 1.07894, + "inertia": 640.73396, + "inverseInertia": 0.00156, + "parent": { + "#": 345 + }, + "sleepCounter": 0, + "region": { + "#": 367 + } + }, + [ + { + "#": 345 + } + ], + [ + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + } + ], + { + "x": 502.35646, + "y": 37.68284, + "index": 0, + "body": { + "#": 345 + }, + "isInternal": false + }, + { + "x": 541.11223, + "y": 37.72372, + "index": 1, + "body": { + "#": 345 + }, + "isInternal": false + }, + { + "x": 541.087, + "y": 61.63858, + "index": 2, + "body": { + "#": 345 + }, + "isInternal": false + }, + { + "x": 502.33123, + "y": 61.59769, + "index": 3, + "body": { + "#": 345 + }, + "isInternal": false + }, + { + "x": 521.72173, + "y": 49.66071 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.63038, + "y": 0.00062 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02581, + "y": 2.9003 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 359 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 361 + }, + "max": { + "#": 362 + } + }, + { + "x": 502.33123, + "y": 37.68284 + }, + { + "x": 541.1245, + "y": 64.53211 + }, + { + "x": 521.69596, + "y": 46.75646 + }, + [ + { + "#": 365 + }, + { + "#": 366 + } + ], + { + "x": -0.00106, + "y": 1 + }, + { + "x": -1, + "y": -0.00106 + }, + { + "id": "10,11,0,1", + "startCol": 10, + "endCol": 11, + "startRow": 0, + "endRow": 1 + }, + { + "id": 15, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 369 + }, + "angle": 0.00033, + "vertices": { + "#": 370 + }, + "position": { + "#": 375 + }, + "force": { + "#": 376 + }, + "torque": 0, + "positionImpulse": { + "#": 377 + }, + "constraintImpulse": { + "#": 378 + }, + "totalContacts": 0, + "speed": 2.91001, + "angularSpeed": 0.00046, + "velocity": { + "#": 379 + }, + "angularVelocity": 0.00082, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 380 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 381 + }, + "bounds": { + "#": 383 + }, + "positionPrev": { + "#": 386 + }, + "anglePrev": -0.00051, + "axes": { + "#": 387 + }, + "area": 1290.45014, + "mass": 1.29045, + "inverseMass": 0.77492, + "inertia": 1110.21456, + "inverseInertia": 0.0009, + "parent": { + "#": 368 + }, + "sleepCounter": 0, + "region": { + "#": 390 + } + }, + [ + { + "#": 368 + } + ], + [ + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + } + ], + { + "x": 540.87316, + "y": 37.71591, + "index": 0, + "body": { + "#": 368 + }, + "isInternal": false + }, + { + "x": 576.64348, + "y": 37.72762, + "index": 1, + "body": { + "#": 368 + }, + "isInternal": false + }, + { + "x": 576.63167, + "y": 73.80363, + "index": 2, + "body": { + "#": 368 + }, + "isInternal": false + }, + { + "x": 540.86135, + "y": 73.79192, + "index": 3, + "body": { + "#": 368 + }, + "isInternal": false + }, + { + "x": 558.75241, + "y": 55.75977 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.53939, + "y": 0.00018 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02124, + "y": 2.9288 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 382 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 384 + }, + "max": { + "#": 385 + } + }, + { + "x": 540.86135, + "y": 37.71591 + }, + { + "x": 576.65278, + "y": 76.71362 + }, + { + "x": 558.73114, + "y": 52.8338 + }, + [ + { + "#": 388 + }, + { + "#": 389 + } + ], + { + "x": -0.00033, + "y": 1 + }, + { + "x": -1, + "y": -0.00033 + }, + { + "id": "11,11,0,1", + "startCol": 11, + "endCol": 11, + "startRow": 0, + "endRow": 1 + }, + { + "id": 16, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 392 + }, + "angle": 0.00137, + "vertices": { + "#": 393 + }, + "position": { + "#": 398 + }, + "force": { + "#": 399 + }, + "torque": 0, + "positionImpulse": { + "#": 400 + }, + "constraintImpulse": { + "#": 401 + }, + "totalContacts": 0, + "speed": 2.92568, + "angularSpeed": 0.00047, + "velocity": { + "#": 402 + }, + "angularVelocity": 0.00029, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 403 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 404 + }, + "bounds": { + "#": 406 + }, + "positionPrev": { + "#": 409 + }, + "anglePrev": 0.00055, + "axes": { + "#": 410 + }, + "area": 1148.29259, + "mass": 1.14829, + "inverseMass": 0.87086, + "inertia": 897.94757, + "inverseInertia": 0.00111, + "parent": { + "#": 391 + }, + "sleepCounter": 0, + "region": { + "#": 413 + } + }, + [ + { + "#": 391 + } + ], + [ + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + } + ], + { + "x": 576.83368, + "y": 37.80191, + "index": 0, + "body": { + "#": 391 + }, + "isInternal": false + }, + { + "x": 607.38856, + "y": 37.84373, + "index": 1, + "body": { + "#": 391 + }, + "isInternal": false + }, + { + "x": 607.33712, + "y": 75.42498, + "index": 2, + "body": { + "#": 391 + }, + "isInternal": false + }, + { + "x": 576.78223, + "y": 75.38315, + "index": 3, + "body": { + "#": 391 + }, + "isInternal": false + }, + { + "x": 592.0854, + "y": 56.61344 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.76296, + "y": 0.00247 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01997, + "y": 2.93436 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 405 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 407 + }, + "max": { + "#": 408 + } + }, + { + "x": 576.78223, + "y": 37.80191 + }, + { + "x": 607.39629, + "y": 78.35065 + }, + { + "x": 592.06481, + "y": 53.70548 + }, + [ + { + "#": 411 + }, + { + "#": 412 + } + ], + { + "x": -0.00137, + "y": 1 + }, + { + "x": -1, + "y": -0.00137 + }, + { + "id": "11,12,0,1", + "startCol": 11, + "endCol": 12, + "startRow": 0, + "endRow": 1 + }, + { + "id": 17, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 415 + }, + "angle": 0, + "vertices": { + "#": 416 + }, + "position": { + "#": 424 + }, + "force": { + "#": 425 + }, + "torque": 0, + "positionImpulse": { + "#": 426 + }, + "constraintImpulse": { + "#": 427 + }, + "totalContacts": 0, + "speed": 2.89363, + "angularSpeed": 0.00023, + "velocity": { + "#": 428 + }, + "angularVelocity": 0.00023, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 429 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 430 + }, + "bounds": { + "#": 432 + }, + "positionPrev": { + "#": 435 + }, + "anglePrev": -0.00023, + "axes": { + "#": 436 + }, + "area": 1926.78789, + "mass": 1.92679, + "inverseMass": 0.519, + "inertia": 2372.87433, + "inverseInertia": 0.00042, + "parent": { + "#": 414 + }, + "sleepCounter": 0, + "region": { + "#": 444 + } + }, + [ + { + "#": 414 + } + ], + [ + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + } + ], + { + "x": 659.1904, + "y": 75.04463, + "index": 0, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 641.18747, + "y": 89.40171, + "index": 1, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 618.73744, + "y": 84.27781, + "index": 2, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 608.74735, + "y": 63.53185, + "index": 3, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 618.73726, + "y": 42.78581, + "index": 4, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 641.18724, + "y": 37.66171, + "index": 5, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 659.1903, + "y": 52.01863, + "index": 6, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 635.28255, + "y": 63.53174 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.85765, + "y": 0.0002 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01756, + "y": 2.89358 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 431 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 433 + }, + "max": { + "#": 434 + } + }, + { + "x": 608.72979, + "y": 37.66171 + }, + { + "x": 659.1904, + "y": 92.29529 + }, + { + "x": 635.30011, + "y": 60.63816 + }, + [ + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + } + ], + { + "x": 0.6235, + "y": 0.78183 + }, + { + "x": -0.22251, + "y": 0.97493 + }, + { + "x": -0.90098, + "y": 0.43386 + }, + { + "x": -0.90098, + "y": -0.43385 + }, + { + "x": -0.22252, + "y": -0.97493 + }, + { + "x": 0.62349, + "y": -0.78183 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,13,0,1", + "startCol": 12, + "endCol": 13, + "startRow": 0, + "endRow": 1 + }, + { + "id": 18, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 446 + }, + "angle": -0.00287, + "vertices": { + "#": 447 + }, + "position": { + "#": 451 + }, + "force": { + "#": 452 + }, + "torque": 0, + "positionImpulse": { + "#": 453 + }, + "constraintImpulse": { + "#": 454 + }, + "totalContacts": 0, + "speed": 2.89363, + "angularSpeed": 0.00066, + "velocity": { + "#": 455 + }, + "angularVelocity": -0.00066, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 456 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 457 + }, + "bounds": { + "#": 459 + }, + "positionPrev": { + "#": 462 + }, + "anglePrev": -0.00222, + "axes": { + "#": 463 + }, + "area": 1097.75588, + "mass": 1.09776, + "inverseMass": 0.91095, + "inertia": 927.66175, + "inverseInertia": 0.00108, + "parent": { + "#": 445 + }, + "sleepCounter": 0, + "region": { + "#": 467 + } + }, + [ + { + "#": 445 + } + ], + [ + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + } + ], + { + "x": 705.08071, + "y": 88.13229, + "index": 0, + "body": { + "#": 445 + }, + "isInternal": false + }, + { + "x": 661.40359, + "y": 63.08262, + "index": 1, + "body": { + "#": 445 + }, + "isInternal": false + }, + { + "x": 704.93611, + "y": 37.78249, + "index": 2, + "body": { + "#": 445 + }, + "isInternal": false + }, + { + "x": 690.47347, + "y": 62.99913 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01751, + "y": 2.89358 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 458 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 460 + }, + "max": { + "#": 461 + } + }, + { + "x": 661.40359, + "y": 37.78249 + }, + { + "x": 705.08071, + "y": 88.13229 + }, + { + "x": 690.49099, + "y": 60.10555 + }, + [ + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + } + ], + { + "x": -0.49751, + "y": 0.86746 + }, + { + "x": -0.50248, + "y": -0.86459 + }, + { + "x": 1, + "y": -0.00287 + }, + { + "id": "13,14,0,1", + "startCol": 13, + "endCol": 14, + "startRow": 0, + "endRow": 1 + }, + { + "id": 19, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 469 + }, + "angle": -0.02352, + "vertices": { + "#": 470 + }, + "position": { + "#": 476 + }, + "force": { + "#": 477 + }, + "torque": 0, + "positionImpulse": { + "#": 478 + }, + "constraintImpulse": { + "#": 479 + }, + "totalContacts": 0, + "speed": 2.84732, + "angularSpeed": 0.00453, + "velocity": { + "#": 480 + }, + "angularVelocity": -0.00453, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 481 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 482 + }, + "bounds": { + "#": 484 + }, + "positionPrev": { + "#": 487 + }, + "anglePrev": -0.01899, + "axes": { + "#": 488 + }, + "area": 986.58013, + "mass": 0.98658, + "inverseMass": 1.0136, + "inertia": 630.16497, + "inverseInertia": 0.00159, + "parent": { + "#": 468 + }, + "sleepCounter": 0, + "region": { + "#": 494 + } + }, + [ + { + "#": 468 + } + ], + [ + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + } + ], + { + "x": 742.47293, + "y": 68.24115, + "index": 0, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 719.87825, + "y": 76.17469, + "index": 1, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 705.35155, + "y": 57.13805, + "index": 2, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 718.96707, + "y": 37.43941, + "index": 3, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 741.9098, + "y": 44.30177, + "index": 4, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 725.71596, + "y": 56.65901 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00798, + "y": 0.00756 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.04136, + "y": 2.84702 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 483 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 485 + }, + "max": { + "#": 486 + } + }, + { + "x": 705.31019, + "y": 37.43941 + }, + { + "x": 742.47293, + "y": 79.02172 + }, + { + "x": 725.75732, + "y": 53.81199 + }, + [ + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + } + ], + { + "x": 0.3313, + "y": 0.94353 + }, + { + "x": -0.79498, + "y": 0.60664 + }, + { + "x": -0.82262, + "y": -0.56859 + }, + { + "x": 0.28656, + "y": -0.95806 + }, + { + "x": 0.99972, + "y": -0.02352 + }, + { + "id": "14,15,0,1", + "startCol": 14, + "endCol": 15, + "startRow": 0, + "endRow": 1 + }, + { + "id": 20, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 496 + }, + "angle": -0.03599, + "vertices": { + "#": 497 + }, + "position": { + "#": 502 + }, + "force": { + "#": 503 + }, + "torque": 0, + "positionImpulse": { + "#": 504 + }, + "constraintImpulse": { + "#": 505 + }, + "totalContacts": 0, + "speed": 2.60705, + "angularSpeed": 0.00514, + "velocity": { + "#": 506 + }, + "angularVelocity": -0.00514, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 507 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 508 + }, + "bounds": { + "#": 510 + }, + "positionPrev": { + "#": 513 + }, + "anglePrev": -0.03085, + "axes": { + "#": 514 + }, + "area": 1201.45424, + "mass": 1.20145, + "inverseMass": 0.83232, + "inertia": 962.3282, + "inverseInertia": 0.00104, + "parent": { + "#": 495 + }, + "sleepCounter": 0, + "region": { + "#": 517 + } + }, + [ + { + "#": 495 + } + ], + [ + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + } + ], + { + "x": 778.84196, + "y": 69.75894, + "index": 0, + "body": { + "#": 495 + }, + "isInternal": false + }, + { + "x": 744.2024, + "y": 71.00609, + "index": 1, + "body": { + "#": 495 + }, + "isInternal": false + }, + { + "x": 742.95526, + "y": 36.36653, + "index": 2, + "body": { + "#": 495 + }, + "isInternal": false + }, + { + "x": 777.59482, + "y": 35.11939, + "index": 3, + "body": { + "#": 495 + }, + "isInternal": false + }, + { + "x": 760.89861, + "y": 53.06274 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.05852, + "y": 2.60639 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 509 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 511 + }, + "max": { + "#": 512 + } + }, + { + "x": 742.95526, + "y": 35.11939 + }, + { + "x": 778.84196, + "y": 71.00609 + }, + { + "x": 760.95713, + "y": 50.45635 + }, + [ + { + "#": 515 + }, + { + "#": 516 + } + ], + { + "x": -0.03598, + "y": -0.99935 + }, + { + "x": 0.99935, + "y": -0.03598 + }, + { + "id": "15,16,0,1", + "startCol": 15, + "endCol": 16, + "startRow": 0, + "endRow": 1 + }, + { + "id": 21, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 519 + }, + "angle": -0.0053, + "vertices": { + "#": 520 + }, + "position": { + "#": 525 + }, + "force": { + "#": 526 + }, + "torque": 0, + "positionImpulse": { + "#": 527 + }, + "constraintImpulse": { + "#": 528 + }, + "totalContacts": 0, + "speed": 0.53815, + "angularSpeed": 0.0154, + "velocity": { + "#": 529 + }, + "angularVelocity": 0.0154, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 530 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 531 + }, + "bounds": { + "#": 533 + }, + "positionPrev": { + "#": 536 + }, + "anglePrev": -0.02071, + "axes": { + "#": 537 + }, + "area": 1990.73335, + "mass": 1.99073, + "inverseMass": 0.50233, + "inertia": 6259.05792, + "inverseInertia": 0.00016, + "parent": { + "#": 518 + }, + "sleepCounter": 0, + "region": { + "#": 540 + } + }, + [ + { + "#": 518 + } + ], + [ + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + } + ], + { + "x": 771.6466, + "y": -51.3861, + "index": 0, + "body": { + "#": 518 + }, + "isInternal": false + }, + { + "x": 866.469, + "y": -51.88898, + "index": 1, + "body": { + "#": 518 + }, + "isInternal": false + }, + { + "x": 866.58034, + "y": -30.89524, + "index": 2, + "body": { + "#": 518 + }, + "isInternal": false + }, + { + "x": 771.75794, + "y": -30.39235, + "index": 3, + "body": { + "#": 518 + }, + "isInternal": false + }, + { + "x": 819.11347, + "y": -41.14067 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.05038, + "y": 0.53579 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 532 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 534 + }, + "max": { + "#": 535 + } + }, + { + "x": 771.6466, + "y": -51.88898 + }, + { + "x": 866.58034, + "y": 0 + }, + { + "x": 819.06308, + "y": -41.67645 + }, + [ + { + "#": 538 + }, + { + "#": 539 + } + ], + { + "x": 0.0053, + "y": 0.99999 + }, + { + "x": -0.99999, + "y": 0.0053 + }, + { + "id": "16,18,-2,0", + "startCol": 16, + "endCol": 18, + "startRow": -2, + "endRow": 0 + }, + { + "id": 22, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 542 + }, + "angle": 0, + "vertices": { + "#": 543 + }, + "position": { + "#": 570 + }, + "force": { + "#": 571 + }, + "torque": 0, + "positionImpulse": { + "#": 572 + }, + "constraintImpulse": { + "#": 573 + }, + "totalContacts": 0, + "speed": 2.89617, + "angularSpeed": 0, + "velocity": { + "#": 574 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 575 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 576 + }, + "circleRadius": 48.51042, + "bounds": { + "#": 578 + }, + "positionPrev": { + "#": 581 + }, + "anglePrev": 0, + "axes": { + "#": 582 + }, + "area": 7321.24308, + "mass": 7.32124, + "inverseMass": 0.13659, + "inertia": 34123.853, + "inverseInertia": 0.00003, + "parent": { + "#": 541 + }, + "sleepCounter": 0, + "region": { + "#": 596 + } + }, + [ + { + "#": 541 + } + ], + [ + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + } + ], + { + "x": 962.88621, + "y": 79.37689, + "index": 0, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 960.08723, + "y": 90.73189, + "index": 1, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 954.65224, + "y": 101.0869, + "index": 2, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 946.89725, + "y": 109.84091, + "index": 3, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 937.27326, + "y": 116.48392, + "index": 4, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 926.33827, + "y": 120.63094, + "index": 5, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 914.72927, + "y": 122.03995, + "index": 6, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 903.12027, + "y": 120.63097, + "index": 7, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 892.18526, + "y": 116.48399, + "index": 8, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 882.56125, + "y": 109.841, + "index": 9, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 874.80624, + "y": 101.08701, + "index": 10, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 869.37123, + "y": 90.73202, + "index": 11, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 866.57221, + "y": 79.37702, + "index": 12, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 866.5722, + "y": 67.68302, + "index": 13, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 869.37118, + "y": 56.32802, + "index": 14, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 874.80617, + "y": 45.97301, + "index": 15, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 882.56115, + "y": 37.219, + "index": 16, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 892.18514, + "y": 30.57599, + "index": 17, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 903.12014, + "y": 26.42897, + "index": 18, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 914.72914, + "y": 25.01995, + "index": 19, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 926.33814, + "y": 26.42894, + "index": 20, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 937.27314, + "y": 30.57592, + "index": 21, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 946.89715, + "y": 37.21891, + "index": 22, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 954.65217, + "y": 45.9729, + "index": 23, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 960.08718, + "y": 56.32789, + "index": 24, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 962.8862, + "y": 67.68289, + "index": 25, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 914.7292, + "y": 73.52995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00001, + "y": 2.89617 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 577 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 579 + }, + "max": { + "#": 580 + } + }, + { + "x": 866.5722, + "y": 25.01995 + }, + { + "x": 962.88621, + "y": 122.03995 + }, + { + "x": 914.72919, + "y": 70.63378 + }, + [ + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88545, + "y": -0.46474 + }, + { + "x": -0.74853, + "y": -0.6631 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12049, + "y": -0.99271 + }, + { + "x": 0.12049, + "y": -0.99272 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74853, + "y": -0.66311 + }, + { + "x": 0.88545, + "y": -0.46474 + }, + { + "x": 0.97094, + "y": -0.23934 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "18,20,0,2", + "startCol": 18, + "endCol": 20, + "startRow": 0, + "endRow": 2 + }, + { + "id": 23, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 598 + }, + "angle": 0, + "vertices": { + "#": 599 + }, + "position": { + "#": 604 + }, + "force": { + "#": 605 + }, + "torque": 0, + "positionImpulse": { + "#": 606 + }, + "constraintImpulse": { + "#": 607 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 608 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 609 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 610 + }, + "bounds": { + "#": 612 + }, + "positionPrev": { + "#": 615 + }, + "anglePrev": 0, + "axes": { + "#": 616 + }, + "area": 2034.76377, + "mass": 2.03476, + "inverseMass": 0.49146, + "inertia": 5208.09959, + "inverseInertia": 0.00019, + "parent": { + "#": 597 + }, + "sleepCounter": 0, + "region": { + "#": 619 + } + }, + [ + { + "#": 597 + } + ], + [ + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + } + ], + { + "x": 962.8725, + "y": 37.73575, + "index": 0, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 1047.10519, + "y": 37.73575, + "index": 1, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 1047.10519, + "y": 61.89222, + "index": 2, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 962.8725, + "y": 61.89222, + "index": 3, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 1004.98884, + "y": 49.81399 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 611 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 613 + }, + "max": { + "#": 614 + } + }, + { + "x": 962.8725, + "y": 37.73575 + }, + { + "x": 1047.10519, + "y": 61.89222 + }, + { + "x": 1004.98884, + "y": 46.90672 + }, + [ + { + "#": 617 + }, + { + "#": 618 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "20,21,0,1", + "startCol": 20, + "endCol": 21, + "startRow": 0, + "endRow": 1 + }, + { + "id": 24, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 621 + }, + "angle": 0, + "vertices": { + "#": 622 + }, + "position": { + "#": 627 + }, + "force": { + "#": 628 + }, + "torque": 0, + "positionImpulse": { + "#": 629 + }, + "constraintImpulse": { + "#": 630 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 631 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 632 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 633 + }, + "bounds": { + "#": 635 + }, + "positionPrev": { + "#": 638 + }, + "anglePrev": 0, + "axes": { + "#": 639 + }, + "area": 1030.45569, + "mass": 1.03046, + "inverseMass": 0.97044, + "inertia": 987.30914, + "inverseInertia": 0.00101, + "parent": { + "#": 620 + }, + "sleepCounter": 0, + "region": { + "#": 642 + } + }, + [ + { + "#": 620 + } + ], + [ + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + } + ], + { + "x": 1047.10519, + "y": 37.73575, + "index": 0, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 1096.49176, + "y": 37.73575, + "index": 1, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 1096.49176, + "y": 58.60085, + "index": 2, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 1047.10519, + "y": 58.60085, + "index": 3, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 1071.79847, + "y": 48.1683 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 634 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 636 + }, + "max": { + "#": 637 + } + }, + { + "x": 1047.10519, + "y": 37.73575 + }, + { + "x": 1096.49176, + "y": 58.60085 + }, + { + "x": 1071.79847, + "y": 45.26103 + }, + [ + { + "#": 640 + }, + { + "#": 641 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "21,22,0,1", + "startCol": 21, + "endCol": 22, + "startRow": 0, + "endRow": 1 + }, + { + "id": 25, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 644 + }, + "angle": 0.17221, + "vertices": { + "#": 645 + }, + "position": { + "#": 672 + }, + "force": { + "#": 673 + }, + "torque": 0, + "positionImpulse": { + "#": 674 + }, + "constraintImpulse": { + "#": 675 + }, + "totalContacts": 0, + "speed": 1.63144, + "angularSpeed": 0.03485, + "velocity": { + "#": 676 + }, + "angularVelocity": 0.03509, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 677 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 678 + }, + "circleRadius": 26.33166, + "bounds": { + "#": 680 + }, + "positionPrev": { + "#": 683 + }, + "anglePrev": 0.13665, + "axes": { + "#": 684 + }, + "area": 2157.16533, + "mass": 2.15717, + "inverseMass": 0.46357, + "inertia": 2962.47895, + "inverseInertia": 0.00034, + "parent": { + "#": 643 + }, + "sleepCounter": 0, + "region": { + "#": 698 + } + }, + [ + { + "#": 643 + } + ], + [ + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + } + ], + { + "x": 71.75567, + "y": 161.92074, + "index": 0, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 69.20305, + "y": 167.73228, + "index": 1, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 65.33348, + "y": 172.76464, + "index": 2, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 60.37146, + "y": 176.72493, + "index": 3, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 54.60681, + "y": 179.38242, + "index": 4, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 48.37387, + "y": 180.58311, + "index": 5, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 42.03399, + "y": 180.25689, + "index": 6, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 35.9563, + "y": 178.42331, + "index": 7, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 30.49481, + "y": 175.18859, + "index": 8, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 25.966, + "y": 170.74075, + "index": 9, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 22.63256, + "y": 165.33762, + "index": 10, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 20.6894, + "y": 159.29426, + "index": 11, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 20.24895, + "y": 152.96212, + "index": 12, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 21.33673, + "y": 146.70802, + "index": 13, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 23.88935, + "y": 140.89647, + "index": 14, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 27.75892, + "y": 135.86412, + "index": 15, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 32.72094, + "y": 131.90382, + "index": 16, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 38.48559, + "y": 129.24634, + "index": 17, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 44.71853, + "y": 128.04564, + "index": 18, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 51.05841, + "y": 128.37186, + "index": 19, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 57.1361, + "y": 130.20544, + "index": 20, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 62.59759, + "y": 133.44016, + "index": 21, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 67.1264, + "y": 137.888, + "index": 22, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 70.45984, + "y": 143.29113, + "index": 23, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 72.403, + "y": 149.3345, + "index": 24, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 72.84345, + "y": 155.66663, + "index": 25, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 46.5462, + "y": 154.31438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00812, + "y": 0.00052 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01588, + "y": 1.64367 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 679 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 681 + }, + "max": { + "#": 682 + } + }, + { + "x": 20.24895, + "y": 128.04564 + }, + { + "x": 72.85944, + "y": 182.21447 + }, + { + "x": 46.53053, + "y": 152.64608 + }, + [ + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + } + ], + { + "x": -0.91557, + "y": -0.40215 + }, + { + "x": -0.79274, + "y": -0.60957 + }, + { + "x": -0.6238, + "y": -0.78158 + }, + { + "x": -0.41865, + "y": -0.90815 + }, + { + "x": -0.18916, + "y": -0.98195 + }, + { + "x": 0.05139, + "y": -0.99868 + }, + { + "x": 0.28883, + "y": -0.95738 + }, + { + "x": 0.5096, + "y": -0.86041 + }, + { + "x": 0.7007, + "y": -0.71346 + }, + { + "x": 0.85107, + "y": -0.52506 + }, + { + "x": 0.952, + "y": -0.3061 + }, + { + "x": 0.99759, + "y": -0.06939 + }, + { + "x": 0.98521, + "y": 0.17136 + }, + { + "id": "0,1,2,3", + "startCol": 0, + "endCol": 1, + "startRow": 2, + "endRow": 3 + }, + { + "id": 26, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 700 + }, + "angle": 0.00878, + "vertices": { + "#": 701 + }, + "position": { + "#": 706 + }, + "force": { + "#": 707 + }, + "torque": 0, + "positionImpulse": { + "#": 708 + }, + "constraintImpulse": { + "#": 709 + }, + "totalContacts": 0, + "speed": 2.69403, + "angularSpeed": 0.00168, + "velocity": { + "#": 710 + }, + "angularVelocity": 0.00228, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 711 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 712 + }, + "bounds": { + "#": 714 + }, + "positionPrev": { + "#": 717 + }, + "anglePrev": 0.00644, + "axes": { + "#": 718 + }, + "area": 2399.6282, + "mass": 2.39963, + "inverseMass": 0.41673, + "inertia": 3838.81032, + "inverseInertia": 0.00026, + "parent": { + "#": 699 + }, + "sleepCounter": 0, + "region": { + "#": 721 + } + }, + [ + { + "#": 699 + } + ], + [ + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + } + ], + { + "x": 121.62114, + "y": 183.00402, + "index": 0, + "body": { + "#": 699 + }, + "isInternal": false + }, + { + "x": 72.63703, + "y": 182.57391, + "index": 1, + "body": { + "#": 699 + }, + "isInternal": false + }, + { + "x": 73.06713, + "y": 133.5898, + "index": 2, + "body": { + "#": 699 + }, + "isInternal": false + }, + { + "x": 122.05125, + "y": 134.01991, + "index": 3, + "body": { + "#": 699 + }, + "isInternal": false + }, + { + "x": 97.34414, + "y": 158.29691 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.02105, + "y": 0.00018 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01037, + "y": 2.67707 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 713 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 715 + }, + "max": { + "#": 716 + } + }, + { + "x": 72.63683, + "y": 133.5898 + }, + { + "x": 122.05125, + "y": 185.69805 + }, + { + "x": 97.35285, + "y": 155.618 + }, + [ + { + "#": 719 + }, + { + "#": 720 + } + ], + { + "x": 0.00878, + "y": -0.99996 + }, + { + "x": 0.99996, + "y": 0.00878 + }, + { + "id": "1,2,2,3", + "startCol": 1, + "endCol": 2, + "startRow": 2, + "endRow": 3 + }, + { + "id": 27, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 723 + }, + "angle": 0.00701, + "vertices": { + "#": 724 + }, + "position": { + "#": 729 + }, + "force": { + "#": 730 + }, + "torque": 0, + "positionImpulse": { + "#": 731 + }, + "constraintImpulse": { + "#": 732 + }, + "totalContacts": 0, + "speed": 2.7958, + "angularSpeed": 0.00155, + "velocity": { + "#": 733 + }, + "angularVelocity": 0.002, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 734 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 735 + }, + "bounds": { + "#": 737 + }, + "positionPrev": { + "#": 740 + }, + "anglePrev": 0.00539, + "axes": { + "#": 741 + }, + "area": 1489.78438, + "mass": 1.48978, + "inverseMass": 0.67124, + "inertia": 1501.63859, + "inverseInertia": 0.00067, + "parent": { + "#": 722 + }, + "sleepCounter": 0, + "region": { + "#": 744 + } + }, + [ + { + "#": 722 + } + ], + [ + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + } + ], + { + "x": 122.0014, + "y": 134.18724, + "index": 0, + "body": { + "#": 722 + }, + "isInternal": false + }, + { + "x": 157.41347, + "y": 134.43546, + "index": 1, + "body": { + "#": 722 + }, + "isInternal": false + }, + { + "x": 157.1186, + "y": 176.50336, + "index": 2, + "body": { + "#": 722 + }, + "isInternal": false + }, + { + "x": 121.70653, + "y": 176.25514, + "index": 3, + "body": { + "#": 722 + }, + "isInternal": false + }, + { + "x": 139.56, + "y": 155.3453 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00569, + "y": 2.77679 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 736 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 738 + }, + "max": { + "#": 739 + } + }, + { + "x": 121.70653, + "y": 134.18724 + }, + { + "x": 157.43079, + "y": 179.2991 + }, + { + "x": 139.55291, + "y": 152.59161 + }, + [ + { + "#": 742 + }, + { + "#": 743 + } + ], + { + "x": -0.00701, + "y": 0.99998 + }, + { + "x": -0.99998, + "y": -0.00701 + }, + { + "id": "2,3,2,3", + "startCol": 2, + "endCol": 3, + "startRow": 2, + "endRow": 3 + }, + { + "id": 28, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 746 + }, + "angle": 0.006, + "vertices": { + "#": 747 + }, + "position": { + "#": 752 + }, + "force": { + "#": 753 + }, + "torque": 0, + "positionImpulse": { + "#": 754 + }, + "constraintImpulse": { + "#": 755 + }, + "totalContacts": 0, + "speed": 2.85706, + "angularSpeed": 0.00179, + "velocity": { + "#": 756 + }, + "angularVelocity": 0.00152, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 757 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 758 + }, + "bounds": { + "#": 760 + }, + "positionPrev": { + "#": 763 + }, + "anglePrev": 0.00401, + "axes": { + "#": 764 + }, + "area": 1765.36753, + "mass": 1.76537, + "inverseMass": 0.56645, + "inertia": 2077.83253, + "inverseInertia": 0.00048, + "parent": { + "#": 745 + }, + "sleepCounter": 0, + "region": { + "#": 767 + } + }, + [ + { + "#": 745 + } + ], + [ + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + } + ], + { + "x": 157.36403, + "y": 134.5664, + "index": 0, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 199.12717, + "y": 134.8168, + "index": 1, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 198.87374, + "y": 177.08623, + "index": 2, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 157.1106, + "y": 176.83583, + "index": 3, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 178.11889, + "y": 155.82632 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00937, + "y": 2.85202 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 759 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 761 + }, + "max": { + "#": 762 + } + }, + { + "x": 157.1106, + "y": 134.5664 + }, + { + "x": 199.1432, + "y": 179.94324 + }, + { + "x": 178.10816, + "y": 152.94845 + }, + [ + { + "#": 765 + }, + { + "#": 766 + } + ], + { + "x": -0.006, + "y": 0.99998 + }, + { + "x": -0.99998, + "y": -0.006 + }, + { + "id": "3,4,2,3", + "startCol": 3, + "endCol": 4, + "startRow": 2, + "endRow": 3 + }, + { + "id": 29, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 769 + }, + "angle": 0.00056, + "vertices": { + "#": 770 + }, + "position": { + "#": 777 + }, + "force": { + "#": 778 + }, + "torque": 0, + "positionImpulse": { + "#": 779 + }, + "constraintImpulse": { + "#": 780 + }, + "totalContacts": 0, + "speed": 2.90482, + "angularSpeed": 0.00041, + "velocity": { + "#": 781 + }, + "angularVelocity": 0.00065, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 782 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 783 + }, + "bounds": { + "#": 785 + }, + "positionPrev": { + "#": 788 + }, + "anglePrev": -0.00016, + "axes": { + "#": 789 + }, + "area": 1919.54576, + "mass": 1.91955, + "inverseMass": 0.52096, + "inertia": 2363.70788, + "inverseInertia": 0.00042, + "parent": { + "#": 768 + }, + "sleepCounter": 0, + "region": { + "#": 793 + } + }, + [ + { + "#": 768 + } + ], + [ + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + }, + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + } + ], + { + "x": 246.06051, + "y": 175.496, + "index": 0, + "body": { + "#": 768 + }, + "isInternal": false + }, + { + "x": 222.51289, + "y": 189.07279, + "index": 1, + "body": { + "#": 768 + }, + "isInternal": false + }, + { + "x": 198.98052, + "y": 175.46959, + "index": 2, + "body": { + "#": 768 + }, + "isInternal": false + }, + { + "x": 198.99577, + "y": 148.2876, + "index": 3, + "body": { + "#": 768 + }, + "isInternal": false + }, + { + "x": 222.54339, + "y": 134.7108, + "index": 4, + "body": { + "#": 768 + }, + "isInternal": false + }, + { + "x": 246.07576, + "y": 148.31401, + "index": 5, + "body": { + "#": 768 + }, + "isInternal": false + }, + { + "x": 222.52814, + "y": 161.8918 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01978, + "y": 2.88888 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 784 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 786 + }, + "max": { + "#": 787 + } + }, + { + "x": 198.98052, + "y": 134.7108 + }, + { + "x": 246.10229, + "y": 191.9775 + }, + { + "x": 222.50745, + "y": 158.99948 + }, + [ + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + } + ], + { + "x": -0.49949, + "y": -0.86632 + }, + { + "x": 0.50046, + "y": -0.86576 + }, + { + "x": 1, + "y": 0.00056 + }, + { + "id": "4,5,2,3", + "startCol": 4, + "endCol": 5, + "startRow": 2, + "endRow": 3 + }, + { + "id": 30, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 795 + }, + "angle": 0.00042, + "vertices": { + "#": 796 + }, + "position": { + "#": 803 + }, + "force": { + "#": 804 + }, + "torque": 0, + "positionImpulse": { + "#": 805 + }, + "constraintImpulse": { + "#": 806 + }, + "totalContacts": 0, + "speed": 2.9204, + "angularSpeed": 0.00013, + "velocity": { + "#": 807 + }, + "angularVelocity": 0.00009, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 808 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 809 + }, + "bounds": { + "#": 811 + }, + "positionPrev": { + "#": 814 + }, + "anglePrev": 0.00033, + "axes": { + "#": 815 + }, + "area": 6052.328, + "mass": 6.05233, + "inverseMass": 0.16523, + "inertia": 23498.5885, + "inverseInertia": 0.00004, + "parent": { + "#": 794 + }, + "sleepCounter": 0, + "region": { + "#": 819 + } + }, + [ + { + "#": 794 + } + ], + [ + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + } + ], + { + "x": 329.59027, + "y": 207.29477, + "index": 0, + "body": { + "#": 794 + }, + "isInternal": false + }, + { + "x": 287.78115, + "y": 231.40922, + "index": 1, + "body": { + "#": 794 + }, + "isInternal": false + }, + { + "x": 245.99228, + "y": 207.25969, + "index": 2, + "body": { + "#": 794 + }, + "isInternal": false + }, + { + "x": 246.01253, + "y": 158.99369, + "index": 3, + "body": { + "#": 794 + }, + "isInternal": false + }, + { + "x": 287.82165, + "y": 134.87923, + "index": 4, + "body": { + "#": 794 + }, + "isInternal": false + }, + { + "x": 329.61052, + "y": 159.02877, + "index": 5, + "body": { + "#": 794 + }, + "isInternal": false + }, + { + "x": 287.8014, + "y": 183.14423 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.01807, + "y": 0.005 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02198, + "y": 2.91811 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 810 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 812 + }, + "max": { + "#": 813 + } + }, + { + "x": 245.99228, + "y": 134.87923 + }, + { + "x": 329.63322, + "y": 234.32954 + }, + { + "x": 287.7797, + "y": 180.2259 + }, + [ + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + } + ], + { + "x": -0.49963, + "y": -0.86624 + }, + { + "x": 0.50035, + "y": -0.86582 + }, + { + "x": 1, + "y": 0.00042 + }, + { + "id": "5,6,2,4", + "startCol": 5, + "endCol": 6, + "startRow": 2, + "endRow": 4 + }, + { + "id": 31, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 821 + }, + "angle": -0.00053, + "vertices": { + "#": 822 + }, + "position": { + "#": 827 + }, + "force": { + "#": 828 + }, + "torque": 0, + "positionImpulse": { + "#": 829 + }, + "constraintImpulse": { + "#": 830 + }, + "totalContacts": 0, + "speed": 2.92285, + "angularSpeed": 0.00014, + "velocity": { + "#": 831 + }, + "angularVelocity": -0.00006, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 832 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 833 + }, + "bounds": { + "#": 835 + }, + "positionPrev": { + "#": 838 + }, + "anglePrev": -0.00046, + "axes": { + "#": 839 + }, + "area": 2220.02331, + "mass": 2.22002, + "inverseMass": 0.45045, + "inertia": 3297.61061, + "inverseInertia": 0.0003, + "parent": { + "#": 820 + }, + "sleepCounter": 0, + "region": { + "#": 842 + } + }, + [ + { + "#": 820 + } + ], + [ + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + } + ], + { + "x": 329.52891, + "y": 134.80657, + "index": 0, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 374.68026, + "y": 134.78265, + "index": 1, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 374.70631, + "y": 183.95111, + "index": 2, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 329.55495, + "y": 183.97503, + "index": 3, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 352.11761, + "y": 159.37884 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02277, + "y": 2.92193 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 834 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 836 + }, + "max": { + "#": 837 + } + }, + { + "x": 329.52891, + "y": 134.78265 + }, + { + "x": 374.72934, + "y": 186.89779 + }, + { + "x": 352.09559, + "y": 156.4566 + }, + [ + { + "#": 840 + }, + { + "#": 841 + } + ], + { + "x": 0.00053, + "y": 1 + }, + { + "x": -1, + "y": 0.00053 + }, + { + "id": "6,7,2,3", + "startCol": 6, + "endCol": 7, + "startRow": 2, + "endRow": 3 + }, + { + "id": 32, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 844 + }, + "angle": -0.00042, + "vertices": { + "#": 845 + }, + "position": { + "#": 852 + }, + "force": { + "#": 853 + }, + "torque": 0, + "positionImpulse": { + "#": 854 + }, + "constraintImpulse": { + "#": 855 + }, + "totalContacts": 0, + "speed": 2.91333, + "angularSpeed": 0.00023, + "velocity": { + "#": 856 + }, + "angularVelocity": -0.00022, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 857 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 858 + }, + "bounds": { + "#": 860 + }, + "positionPrev": { + "#": 863 + }, + "anglePrev": -0.00015, + "axes": { + "#": 864 + }, + "area": 2601.10745, + "mass": 2.60111, + "inverseMass": 0.38445, + "inertia": 4340.23704, + "inverseInertia": 0.00023, + "parent": { + "#": 843 + }, + "sleepCounter": 0, + "region": { + "#": 868 + } + }, + [ + { + "#": 843 + } + ], + [ + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + } + ], + { + "x": 429.43804, + "y": 182.21888, + "index": 0, + "body": { + "#": 843 + }, + "isInternal": false + }, + { + "x": 402.04265, + "y": 198.05033, + "index": 1, + "body": { + "#": 843 + }, + "isInternal": false + }, + { + "x": 374.63404, + "y": 182.24178, + "index": 2, + "body": { + "#": 843 + }, + "isInternal": false + }, + { + "x": 374.62082, + "y": 150.59978, + "index": 3, + "body": { + "#": 843 + }, + "isInternal": false + }, + { + "x": 402.01621, + "y": 134.76833, + "index": 4, + "body": { + "#": 843 + }, + "isInternal": false + }, + { + "x": 429.42482, + "y": 150.57689, + "index": 5, + "body": { + "#": 843 + }, + "isInternal": false + }, + { + "x": 402.02943, + "y": 166.40933 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.0056, + "y": -0.00001 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02239, + "y": 2.91514 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 859 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 861 + }, + "max": { + "#": 862 + } + }, + { + "x": 374.62082, + "y": 134.76833 + }, + { + "x": 429.45814, + "y": 200.96359 + }, + { + "x": 402.00492, + "y": 163.49699 + }, + [ + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + } + ], + { + "x": -0.50035, + "y": -0.86582 + }, + { + "x": 0.49963, + "y": -0.86624 + }, + { + "x": 1, + "y": -0.00042 + }, + { + "id": "7,8,2,4", + "startCol": 7, + "endCol": 8, + "startRow": 2, + "endRow": 4 + }, + { + "id": 33, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 870 + }, + "angle": -0.00011, + "vertices": { + "#": 871 + }, + "position": { + "#": 876 + }, + "force": { + "#": 877 + }, + "torque": 0, + "positionImpulse": { + "#": 878 + }, + "constraintImpulse": { + "#": 879 + }, + "totalContacts": 0, + "speed": 2.9069, + "angularSpeed": 0.00002, + "velocity": { + "#": 880 + }, + "angularVelocity": -0.00051, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 881 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 882 + }, + "bounds": { + "#": 884 + }, + "positionPrev": { + "#": 887 + }, + "anglePrev": -0.00036, + "axes": { + "#": 888 + }, + "area": 1413.30884, + "mass": 1.41331, + "inverseMass": 0.70756, + "inertia": 1331.62791, + "inverseInertia": 0.00075, + "parent": { + "#": 869 + }, + "sleepCounter": 0, + "region": { + "#": 891 + } + }, + [ + { + "#": 869 + } + ], + [ + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + } + ], + { + "x": 466.96361, + "y": 172.34619, + "index": 0, + "body": { + "#": 869 + }, + "isInternal": false + }, + { + "x": 429.36961, + "y": 172.35028, + "index": 1, + "body": { + "#": 869 + }, + "isInternal": false + }, + { + "x": 429.36552, + "y": 134.75628, + "index": 2, + "body": { + "#": 869 + }, + "isInternal": false + }, + { + "x": 466.95952, + "y": 134.75219, + "index": 3, + "body": { + "#": 869 + }, + "isInternal": false + }, + { + "x": 448.16457, + "y": 153.55123 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.02846, + "y": -0.00001 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02095, + "y": 2.88935 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 883 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 885 + }, + "max": { + "#": 886 + } + }, + { + "x": 429.36552, + "y": 134.75219 + }, + { + "x": 466.97642, + "y": 175.25715 + }, + { + "x": 448.14748, + "y": 150.62718 + }, + [ + { + "#": 889 + }, + { + "#": 890 + } + ], + { + "x": -0.00011, + "y": -1 + }, + { + "x": 1, + "y": -0.00011 + }, + { + "id": "8,9,2,3", + "startCol": 8, + "endCol": 9, + "startRow": 2, + "endRow": 3 + }, + { + "id": 34, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 893 + }, + "angle": 0.00005, + "vertices": { + "#": 894 + }, + "position": { + "#": 901 + }, + "force": { + "#": 902 + }, + "torque": 0, + "positionImpulse": { + "#": 903 + }, + "constraintImpulse": { + "#": 904 + }, + "totalContacts": 0, + "speed": 2.9073, + "angularSpeed": 0.00005, + "velocity": { + "#": 905 + }, + "angularVelocity": 0.00003, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 906 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 907 + }, + "bounds": { + "#": 909 + }, + "positionPrev": { + "#": 912 + }, + "anglePrev": -0.00008, + "axes": { + "#": 913 + }, + "area": 5460.80875, + "mass": 5.46081, + "inverseMass": 0.18312, + "inertia": 19129.81619, + "inverseInertia": 0.00005, + "parent": { + "#": 892 + }, + "sleepCounter": 0, + "region": { + "#": 917 + } + }, + [ + { + "#": 892 + } + ], + [ + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + } + ], + { + "x": 546.41474, + "y": 203.52682, + "index": 0, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 506.70955, + "y": 226.44776, + "index": 1, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 467.00674, + "y": 203.5227, + "index": 2, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 467.00912, + "y": 157.6767, + "index": 3, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 506.71431, + "y": 134.75576, + "index": 4, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 546.41712, + "y": 157.68082, + "index": 5, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 506.71193, + "y": 180.60176 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.11606, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.0202, + "y": 2.91269 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 908 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 910 + }, + "max": { + "#": 911 + } + }, + { + "x": 467.00674, + "y": 134.75576 + }, + { + "x": 546.42846, + "y": 229.35504 + }, + { + "x": 506.69073, + "y": 177.69805 + }, + [ + { + "#": 914 + }, + { + "#": 915 + }, + { + "#": 916 + } + ], + { + "x": -0.49995, + "y": -0.86605 + }, + { + "x": 0.50004, + "y": -0.866 + }, + { + "x": 1, + "y": 0.00005 + }, + { + "id": "9,11,2,4", + "startCol": 9, + "endCol": 11, + "startRow": 2, + "endRow": 4 + }, + { + "id": 35, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 919 + }, + "angle": 0, + "vertices": { + "#": 920 + }, + "position": { + "#": 925 + }, + "force": { + "#": 926 + }, + "torque": 0, + "positionImpulse": { + "#": 927 + }, + "constraintImpulse": { + "#": 928 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 929 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 930 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 931 + }, + "bounds": { + "#": 933 + }, + "positionPrev": { + "#": 936 + }, + "anglePrev": 0, + "axes": { + "#": 937 + }, + "area": 451.61379, + "mass": 0.45161, + "inverseMass": 2.21428, + "inertia": 136.71143, + "inverseInertia": 0.00731, + "parent": { + "#": 918 + }, + "sleepCounter": 0, + "region": { + "#": 940 + } + }, + [ + { + "#": 918 + } + ], + [ + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + }, + { + "#": 924 + } + ], + { + "x": 546.07819, + "y": 134.75575, + "index": 0, + "body": { + "#": 918 + }, + "isInternal": false + }, + { + "x": 566.24871, + "y": 134.75575, + "index": 1, + "body": { + "#": 918 + }, + "isInternal": false + }, + { + "x": 566.24871, + "y": 157.14554, + "index": 2, + "body": { + "#": 918 + }, + "isInternal": false + }, + { + "x": 546.07819, + "y": 157.14554, + "index": 3, + "body": { + "#": 918 + }, + "isInternal": false + }, + { + "x": 556.16345, + "y": 145.95065 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 932 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 934 + }, + "max": { + "#": 935 + } + }, + { + "x": 546.07819, + "y": 134.75575 + }, + { + "x": 566.24871, + "y": 157.14554 + }, + { + "x": 556.16345, + "y": 143.04338 + }, + [ + { + "#": 938 + }, + { + "#": 939 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,11,2,3", + "startCol": 11, + "endCol": 11, + "startRow": 2, + "endRow": 3 + }, + { + "id": 36, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 942 + }, + "angle": 0, + "vertices": { + "#": 943 + }, + "position": { + "#": 948 + }, + "force": { + "#": 949 + }, + "torque": 0, + "positionImpulse": { + "#": 950 + }, + "constraintImpulse": { + "#": 951 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 952 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 953 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 954 + }, + "bounds": { + "#": 956 + }, + "positionPrev": { + "#": 959 + }, + "anglePrev": 0, + "axes": { + "#": 960 + }, + "area": 3021.67907, + "mass": 3.02168, + "inverseMass": 0.33094, + "inertia": 11331.77016, + "inverseInertia": 0.00009, + "parent": { + "#": 941 + }, + "sleepCounter": 0, + "region": { + "#": 963 + } + }, + [ + { + "#": 941 + } + ], + [ + { + "#": 944 + }, + { + "#": 945 + }, + { + "#": 946 + }, + { + "#": 947 + } + ], + { + "x": 566.24871, + "y": 134.75575, + "index": 0, + "body": { + "#": 941 + }, + "isInternal": false + }, + { + "x": 668.08188, + "y": 134.75575, + "index": 1, + "body": { + "#": 941 + }, + "isInternal": false + }, + { + "x": 668.08188, + "y": 164.42859, + "index": 2, + "body": { + "#": 941 + }, + "isInternal": false + }, + { + "x": 566.24871, + "y": 164.42859, + "index": 3, + "body": { + "#": 941 + }, + "isInternal": false + }, + { + "x": 617.16529, + "y": 149.59217 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 955 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 957 + }, + "max": { + "#": 958 + } + }, + { + "x": 566.24871, + "y": 134.75575 + }, + { + "x": 668.08188, + "y": 164.42859 + }, + { + "x": 617.16529, + "y": 146.6849 + }, + [ + { + "#": 961 + }, + { + "#": 962 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,13,2,3", + "startCol": 11, + "endCol": 13, + "startRow": 2, + "endRow": 3 + }, + { + "id": 37, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 965 + }, + "angle": 0, + "vertices": { + "#": 966 + }, + "position": { + "#": 971 + }, + "force": { + "#": 972 + }, + "torque": 0, + "positionImpulse": { + "#": 973 + }, + "constraintImpulse": { + "#": 974 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 975 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 976 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 977 + }, + "bounds": { + "#": 979 + }, + "positionPrev": { + "#": 982 + }, + "anglePrev": 0, + "axes": { + "#": 983 + }, + "area": 856.73964, + "mass": 0.85674, + "inverseMass": 1.16722, + "inertia": 589.10598, + "inverseInertia": 0.0017, + "parent": { + "#": 964 + }, + "sleepCounter": 0, + "region": { + "#": 986 + } + }, + [ + { + "#": 964 + } + ], + [ + { + "#": 967 + }, + { + "#": 968 + }, + { + "#": 969 + }, + { + "#": 970 + } + ], + { + "x": 668.08188, + "y": 134.75575, + "index": 0, + "body": { + "#": 964 + }, + "isInternal": false + }, + { + "x": 708.15338, + "y": 134.75575, + "index": 1, + "body": { + "#": 964 + }, + "isInternal": false + }, + { + "x": 708.15338, + "y": 156.13603, + "index": 2, + "body": { + "#": 964 + }, + "isInternal": false + }, + { + "x": 668.08188, + "y": 156.13603, + "index": 3, + "body": { + "#": 964 + }, + "isInternal": false + }, + { + "x": 688.11763, + "y": 145.44589 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 978 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 980 + }, + "max": { + "#": 981 + } + }, + { + "x": 668.08188, + "y": 134.75575 + }, + { + "x": 708.15338, + "y": 156.13603 + }, + { + "x": 688.11763, + "y": 142.53862 + }, + [ + { + "#": 984 + }, + { + "#": 985 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,2,3", + "startCol": 13, + "endCol": 14, + "startRow": 2, + "endRow": 3 + }, + { + "id": 38, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 988 + }, + "angle": 0, + "vertices": { + "#": 989 + }, + "position": { + "#": 998 + }, + "force": { + "#": 999 + }, + "torque": 0, + "positionImpulse": { + "#": 1000 + }, + "constraintImpulse": { + "#": 1001 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1002 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1003 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1004 + }, + "bounds": { + "#": 1006 + }, + "positionPrev": { + "#": 1009 + }, + "anglePrev": 0, + "axes": { + "#": 1010 + }, + "area": 4088.59995, + "mass": 4.0886, + "inverseMass": 0.24458, + "inertia": 10666.41244, + "inverseInertia": 0.00009, + "parent": { + "#": 987 + }, + "sleepCounter": 0, + "region": { + "#": 1015 + } + }, + [ + { + "#": 987 + } + ], + [ + { + "#": 990 + }, + { + "#": 991 + }, + { + "#": 992 + }, + { + "#": 993 + }, + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + }, + { + "#": 997 + } + ], + { + "x": 778.40538, + "y": 184.43175, + "index": 0, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 757.82938, + "y": 205.00775, + "index": 1, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 728.72938, + "y": 205.00775, + "index": 2, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 708.15338, + "y": 184.43175, + "index": 3, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 708.15338, + "y": 155.33175, + "index": 4, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 728.72938, + "y": 134.75575, + "index": 5, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 757.82938, + "y": 134.75575, + "index": 6, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 778.40538, + "y": 155.33175, + "index": 7, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 743.27938, + "y": 169.88175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1005 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1007 + }, + "max": { + "#": 1008 + } + }, + { + "x": 708.15338, + "y": 134.75575 + }, + { + "x": 778.40538, + "y": 205.00775 + }, + { + "x": 743.27938, + "y": 166.97448 + }, + [ + { + "#": 1011 + }, + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "14,16,2,4", + "startCol": 14, + "endCol": 16, + "startRow": 2, + "endRow": 4 + }, + { + "id": 39, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1017 + }, + "angle": -0.00019, + "vertices": { + "#": 1018 + }, + "position": { + "#": 1023 + }, + "force": { + "#": 1024 + }, + "torque": 0, + "positionImpulse": { + "#": 1025 + }, + "constraintImpulse": { + "#": 1026 + }, + "totalContacts": 0, + "speed": 2.88646, + "angularSpeed": 0.00014, + "velocity": { + "#": 1027 + }, + "angularVelocity": -0.00014, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1028 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1029 + }, + "bounds": { + "#": 1031 + }, + "positionPrev": { + "#": 1034 + }, + "anglePrev": -0.00006, + "axes": { + "#": 1035 + }, + "area": 1965.14243, + "mass": 1.96514, + "inverseMass": 0.50887, + "inertia": 5563.36836, + "inverseInertia": 0.00018, + "parent": { + "#": 1016 + }, + "sleepCounter": 0, + "region": { + "#": 1038 + } + }, + [ + { + "#": 1016 + } + ], + [ + { + "#": 1019 + }, + { + "#": 1020 + }, + { + "#": 1021 + }, + { + "#": 1022 + } + ], + { + "x": 946.23475, + "y": 121.77581, + "index": 0, + "body": { + "#": 1016 + }, + "isInternal": false + }, + { + "x": 1035.73903, + "y": 121.75841, + "index": 1, + "body": { + "#": 1016 + }, + "isInternal": false + }, + { + "x": 1035.7433, + "y": 143.71426, + "index": 2, + "body": { + "#": 1016 + }, + "isInternal": false + }, + { + "x": 946.23902, + "y": 143.73166, + "index": 3, + "body": { + "#": 1016 + }, + "isInternal": false + }, + { + "x": 990.98902, + "y": 132.74504 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00119, + "y": 2.88646 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1030 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1032 + }, + "max": { + "#": 1033 + } + }, + { + "x": 946.23475, + "y": 121.75841 + }, + { + "x": 1035.7433, + "y": 143.73166 + }, + { + "x": 990.98783, + "y": 129.85858 + }, + [ + { + "#": 1036 + }, + { + "#": 1037 + } + ], + { + "x": 0.00019, + "y": 1 + }, + { + "x": -1, + "y": 0.00019 + }, + { + "id": "19,21,2,2", + "startCol": 19, + "endCol": 21, + "startRow": 2, + "endRow": 2 + }, + { + "id": 40, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1040 + }, + "angle": -0.00115, + "vertices": { + "#": 1041 + }, + "position": { + "#": 1045 + }, + "force": { + "#": 1046 + }, + "torque": 0, + "positionImpulse": { + "#": 1047 + }, + "constraintImpulse": { + "#": 1048 + }, + "totalContacts": 0, + "speed": 2.90249, + "angularSpeed": 0.00016, + "velocity": { + "#": 1049 + }, + "angularVelocity": -0.00016, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1050 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1051 + }, + "bounds": { + "#": 1053 + }, + "positionPrev": { + "#": 1056 + }, + "anglePrev": -0.00098, + "axes": { + "#": 1057 + }, + "area": 1492.52562, + "mass": 1.49253, + "inverseMass": 0.67001, + "inertia": 1714.83247, + "inverseInertia": 0.00058, + "parent": { + "#": 1039 + }, + "sleepCounter": 0, + "region": { + "#": 1061 + } + }, + [ + { + "#": 1039 + } + ], + [ + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + } + ], + { + "x": 895.89251, + "y": 233.28023, + "index": 0, + "body": { + "#": 1039 + }, + "isInternal": false + }, + { + "x": 845.01488, + "y": 203.98357, + "index": 1, + "body": { + "#": 1039 + }, + "isInternal": false + }, + { + "x": 895.82517, + "y": 174.57027, + "index": 2, + "body": { + "#": 1039 + }, + "isInternal": false + }, + { + "x": 878.91086, + "y": 203.94469 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00079, + "y": 2.90249 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1052 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1054 + }, + "max": { + "#": 1055 + } + }, + { + "x": 845.01488, + "y": 174.57027 + }, + { + "x": 895.89251, + "y": 233.28023 + }, + { + "x": 878.91164, + "y": 201.0422 + }, + [ + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + } + ], + { + "x": -0.49901, + "y": 0.8666 + }, + { + "x": -0.501, + "y": -0.86545 + }, + { + "x": 1, + "y": -0.00115 + }, + { + "id": "17,18,3,4", + "startCol": 17, + "endCol": 18, + "startRow": 3, + "endRow": 4 + }, + { + "id": 41, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1063 + }, + "angle": -0.00156, + "vertices": { + "#": 1064 + }, + "position": { + "#": 1069 + }, + "force": { + "#": 1070 + }, + "torque": 0, + "positionImpulse": { + "#": 1071 + }, + "constraintImpulse": { + "#": 1072 + }, + "totalContacts": 0, + "speed": 2.91208, + "angularSpeed": 0.00021, + "velocity": { + "#": 1073 + }, + "angularVelocity": -0.00021, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1074 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1075 + }, + "bounds": { + "#": 1077 + }, + "positionPrev": { + "#": 1080 + }, + "anglePrev": -0.00135, + "axes": { + "#": 1081 + }, + "area": 942.00657, + "mass": 0.94201, + "inverseMass": 1.06156, + "inertia": 767.50816, + "inverseInertia": 0.0013, + "parent": { + "#": 1062 + }, + "sleepCounter": 0, + "region": { + "#": 1084 + } + }, + [ + { + "#": 1062 + } + ], + [ + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + } + ], + { + "x": 900.88465, + "y": 173.31266, + "index": 0, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 921.94455, + "y": 173.27972, + "index": 1, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 922.01452, + "y": 218.00947, + "index": 2, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 900.95462, + "y": 218.04241, + "index": 3, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 911.44959, + "y": 195.66107 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.13743, + "y": 0.92643 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00392, + "y": 2.91208 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1076 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1078 + }, + "max": { + "#": 1079 + } + }, + { + "x": 900.88465, + "y": 173.27972 + }, + { + "x": 922.01844, + "y": 220.95449 + }, + { + "x": 911.44566, + "y": 192.74899 + }, + [ + { + "#": 1082 + }, + { + "#": 1083 + } + ], + { + "x": 0.00156, + "y": 1 + }, + { + "x": -1, + "y": 0.00156 + }, + { + "id": "18,19,3,4", + "startCol": 18, + "endCol": 19, + "startRow": 3, + "endRow": 4 + }, + { + "id": 42, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1086 + }, + "angle": -0.00013, + "vertices": { + "#": 1087 + }, + "position": { + "#": 1092 + }, + "force": { + "#": 1093 + }, + "torque": 0, + "positionImpulse": { + "#": 1094 + }, + "constraintImpulse": { + "#": 1095 + }, + "totalContacts": 0, + "speed": 2.90817, + "angularSpeed": 0.00002, + "velocity": { + "#": 1096 + }, + "angularVelocity": -0.00002, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1097 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1098 + }, + "bounds": { + "#": 1100 + }, + "positionPrev": { + "#": 1103 + }, + "anglePrev": -0.00011, + "axes": { + "#": 1104 + }, + "area": 2898.41559, + "mass": 2.89842, + "inverseMass": 0.34502, + "inertia": 12806.46533, + "inverseInertia": 0.00008, + "parent": { + "#": 1085 + }, + "sleepCounter": 0, + "region": { + "#": 1107 + } + }, + [ + { + "#": 1085 + } + ], + [ + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + } + ], + { + "x": 927.42462, + "y": 173.68561, + "index": 0, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 1039.6206, + "y": 173.67098, + "index": 1, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 1039.62397, + "y": 199.50448, + "index": 2, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 927.42799, + "y": 199.51912, + "index": 3, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 983.52429, + "y": 186.59505 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.04279, + "y": 0.93622 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00085, + "y": 2.90817 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1099 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1101 + }, + "max": { + "#": 1102 + } + }, + { + "x": 927.42377, + "y": 173.67098 + }, + { + "x": 1039.62397, + "y": 202.42729 + }, + { + "x": 983.52514, + "y": 183.68688 + }, + [ + { + "#": 1105 + }, + { + "#": 1106 + } + ], + { + "x": 0.00013, + "y": 1 + }, + { + "x": -1, + "y": 0.00013 + }, + { + "id": "19,21,3,4", + "startCol": 19, + "endCol": 21, + "startRow": 3, + "endRow": 4 + }, + { + "id": 43, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1109 + }, + "angle": 0, + "vertices": { + "#": 1110 + }, + "position": { + "#": 1114 + }, + "force": { + "#": 1115 + }, + "torque": 0, + "positionImpulse": { + "#": 1116 + }, + "constraintImpulse": { + "#": 1117 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1118 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1119 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1120 + }, + "bounds": { + "#": 1122 + }, + "positionPrev": { + "#": 1125 + }, + "anglePrev": 0, + "axes": { + "#": 1126 + }, + "area": 842.52305, + "mass": 0.84252, + "inverseMass": 1.18691, + "inertia": 546.43901, + "inverseInertia": 0.00183, + "parent": { + "#": 1108 + }, + "sleepCounter": 0, + "region": { + "#": 1130 + } + }, + [ + { + "#": 1108 + } + ], + [ + { + "#": 1111 + }, + { + "#": 1112 + }, + { + "#": 1113 + } + ], + { + "x": 1078.62914, + "y": 178.86575, + "index": 0, + "body": { + "#": 1108 + }, + "isInternal": false + }, + { + "x": 1040.42814, + "y": 156.81075, + "index": 1, + "body": { + "#": 1108 + }, + "isInternal": false + }, + { + "x": 1078.62914, + "y": 134.75575, + "index": 2, + "body": { + "#": 1108 + }, + "isInternal": false + }, + { + "x": 1065.89548, + "y": 156.81075 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.05836, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1121 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1123 + }, + "max": { + "#": 1124 + } + }, + { + "x": 1040.42814, + "y": 134.75575 + }, + { + "x": 1078.62914, + "y": 181.77303 + }, + { + "x": 1065.89548, + "y": 153.90348 + }, + [ + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + } + ], + { + "x": -0.49999, + "y": 0.86603 + }, + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "21,22,2,3", + "startCol": 21, + "endCol": 22, + "startRow": 2, + "endRow": 3 + }, + { + "id": 44, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1132 + }, + "angle": 0, + "vertices": { + "#": 1133 + }, + "position": { + "#": 1160 + }, + "force": { + "#": 1161 + }, + "torque": 0, + "positionImpulse": { + "#": 1162 + }, + "constraintImpulse": { + "#": 1163 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1164 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1165 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1166 + }, + "circleRadius": 46.27315, + "bounds": { + "#": 1168 + }, + "positionPrev": { + "#": 1171 + }, + "anglePrev": 0, + "axes": { + "#": 1172 + }, + "area": 6661.54248, + "mass": 6.66154, + "inverseMass": 0.15012, + "inertia": 28251.27242, + "inverseInertia": 0.00004, + "parent": { + "#": 1131 + }, + "sleepCounter": 0, + "region": { + "#": 1186 + } + }, + [ + { + "#": 1131 + } + ], + [ + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + }, + { + "#": 1152 + }, + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + }, + { + "#": 1156 + }, + { + "#": 1157 + }, + { + "#": 1158 + }, + { + "#": 1159 + } + ], + { + "x": 1189.96635, + "y": 186.60675, + "index": 0, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1187.29635, + "y": 197.43775, + "index": 1, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1182.11235, + "y": 207.31475, + "index": 2, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1174.71535, + "y": 215.66475, + "index": 3, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1165.53435, + "y": 222.00175, + "index": 4, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1155.10435, + "y": 225.95775, + "index": 5, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1144.03035, + "y": 227.30175, + "index": 6, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1132.95635, + "y": 225.95775, + "index": 7, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1122.52635, + "y": 222.00175, + "index": 8, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1113.34535, + "y": 215.66475, + "index": 9, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1105.94835, + "y": 207.31475, + "index": 10, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1100.76435, + "y": 197.43775, + "index": 11, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1098.09435, + "y": 186.60675, + "index": 12, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1098.09435, + "y": 175.45075, + "index": 13, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1100.76435, + "y": 164.61975, + "index": 14, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1105.94835, + "y": 154.74275, + "index": 15, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1113.34535, + "y": 146.39275, + "index": 16, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1122.52635, + "y": 140.05575, + "index": 17, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1132.95635, + "y": 136.09975, + "index": 18, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1144.03035, + "y": 134.75575, + "index": 19, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1155.10435, + "y": 136.09975, + "index": 20, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1165.53435, + "y": 140.05575, + "index": 21, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1174.71535, + "y": 146.39275, + "index": 22, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1182.11235, + "y": 154.74275, + "index": 23, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1187.29635, + "y": 164.61975, + "index": 24, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1189.96635, + "y": 175.45075, + "index": 25, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1144.03035, + "y": 181.02875 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.54671, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1167 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1169 + }, + "max": { + "#": 1170 + } + }, + { + "x": 1098.09435, + "y": 134.75575 + }, + { + "x": 1189.96635, + "y": 230.20903 + }, + { + "x": 1144.03035, + "y": 178.12148 + }, + [ + { + "#": 1173 + }, + { + "#": 1174 + }, + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + }, + { + "#": 1179 + }, + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88545, + "y": -0.46473 + }, + { + "x": -0.74853, + "y": -0.6631 + }, + { + "x": -0.56805, + "y": -0.82299 + }, + { + "x": -0.35464, + "y": -0.935 + }, + { + "x": -0.12048, + "y": -0.99272 + }, + { + "x": 0.12048, + "y": -0.99272 + }, + { + "x": 0.35464, + "y": -0.935 + }, + { + "x": 0.56805, + "y": -0.82299 + }, + { + "x": 0.74853, + "y": -0.6631 + }, + { + "x": 0.88545, + "y": -0.46473 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "22,24,2,4", + "startCol": 22, + "endCol": 24, + "startRow": 2, + "endRow": 4 + }, + { + "id": 45, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1188 + }, + "angle": 0.08337, + "vertices": { + "#": 1189 + }, + "position": { + "#": 1194 + }, + "force": { + "#": 1195 + }, + "torque": 0, + "positionImpulse": { + "#": 1196 + }, + "constraintImpulse": { + "#": 1197 + }, + "totalContacts": 0, + "speed": 2.39592, + "angularSpeed": 0.01035, + "velocity": { + "#": 1198 + }, + "angularVelocity": 0.01035, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1199 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1200 + }, + "bounds": { + "#": 1202 + }, + "positionPrev": { + "#": 1205 + }, + "anglePrev": 0.07302, + "axes": { + "#": 1206 + }, + "area": 1051.31113, + "mass": 1.05131, + "inverseMass": 0.95119, + "inertia": 749.58313, + "inverseInertia": 0.00133, + "parent": { + "#": 1187 + }, + "sleepCounter": 0, + "region": { + "#": 1209 + } + }, + [ + { + "#": 1187 + } + ], + [ + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + } + ], + { + "x": 24.73593, + "y": 225.66367, + "index": 0, + "body": { + "#": 1187 + }, + "isInternal": false + }, + { + "x": 54.18166, + "y": 228.12419, + "index": 1, + "body": { + "#": 1187 + }, + "isInternal": false + }, + { + "x": 51.21892, + "y": 263.57997, + "index": 2, + "body": { + "#": 1187 + }, + "isInternal": false + }, + { + "x": 21.77319, + "y": 261.11944, + "index": 3, + "body": { + "#": 1187 + }, + "isInternal": false + }, + { + "x": 37.97742, + "y": 244.62182 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.10057, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.16696, + "y": 2.3901 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1201 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1203 + }, + "max": { + "#": 1204 + } + }, + { + "x": 21.77319, + "y": 225.66367 + }, + { + "x": 54.34862, + "y": 265.97007 + }, + { + "x": 37.81046, + "y": 242.23172 + }, + [ + { + "#": 1207 + }, + { + "#": 1208 + } + ], + { + "x": -0.08327, + "y": 0.99653 + }, + { + "x": -0.99653, + "y": -0.08327 + }, + { + "id": "0,1,4,5", + "startCol": 0, + "endCol": 1, + "startRow": 4, + "endRow": 5 + }, + { + "id": 46, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1211 + }, + "angle": 0.00119, + "vertices": { + "#": 1212 + }, + "position": { + "#": 1220 + }, + "force": { + "#": 1221 + }, + "torque": 0, + "positionImpulse": { + "#": 1222 + }, + "constraintImpulse": { + "#": 1223 + }, + "totalContacts": 0, + "speed": 2.89137, + "angularSpeed": 0.00014, + "velocity": { + "#": 1224 + }, + "angularVelocity": 0.00018, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1225 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1226 + }, + "bounds": { + "#": 1228 + }, + "positionPrev": { + "#": 1231 + }, + "anglePrev": 0.00108, + "axes": { + "#": 1232 + }, + "area": 6245.524, + "mass": 6.24552, + "inverseMass": 0.16011, + "inertia": 24931.28629, + "inverseInertia": 0.00004, + "parent": { + "#": 1210 + }, + "sleepCounter": 0, + "region": { + "#": 1240 + } + }, + [ + { + "#": 1210 + } + ], + [ + { + "#": 1213 + }, + { + "#": 1214 + }, + { + "#": 1215 + }, + { + "#": 1216 + }, + { + "#": 1217 + }, + { + "#": 1218 + }, + { + "#": 1219 + } + ], + { + "x": 134.52462, + "y": 301.31249, + "index": 0, + "body": { + "#": 1210 + }, + "isInternal": false + }, + { + "x": 102.08191, + "y": 327.12294, + "index": 1, + "body": { + "#": 1210 + }, + "isInternal": false + }, + { + "x": 61.67491, + "y": 317.84889, + "index": 2, + "body": { + "#": 1210 + }, + "isInternal": false + }, + { + "x": 43.73233, + "y": 280.47653, + "index": 3, + "body": { + "#": 1210 + }, + "isInternal": false + }, + { + "x": 61.76372, + "y": 243.14694, + "index": 4, + "body": { + "#": 1210 + }, + "isInternal": false + }, + { + "x": 102.19266, + "y": 233.969, + "index": 5, + "body": { + "#": 1210 + }, + "isInternal": false + }, + { + "x": 134.57391, + "y": 259.85652, + "index": 6, + "body": { + "#": 1210 + }, + "isInternal": false + }, + { + "x": 91.50633, + "y": 280.53333 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.0171, + "y": 0.0544 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00517, + "y": 2.89426 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1227 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1229 + }, + "max": { + "#": 1230 + } + }, + { + "x": 43.73233, + "y": 233.969 + }, + { + "x": 134.57766, + "y": 330.01431 + }, + { + "x": 91.50506, + "y": 277.64394 + }, + [ + { + "#": 1233 + }, + { + "#": 1234 + }, + { + "#": 1235 + }, + { + "#": 1236 + }, + { + "#": 1237 + }, + { + "#": 1238 + }, + { + "#": 1239 + } + ], + { + "x": 0.62258, + "y": 0.78256 + }, + { + "x": -0.2237, + "y": 0.97466 + }, + { + "x": -0.90149, + "y": 0.43281 + }, + { + "x": -0.90046, + "y": -0.43495 + }, + { + "x": -0.22138, + "y": -0.97519 + }, + { + "x": 0.62444, + "y": -0.78107 + }, + { + "x": 1, + "y": 0.00119 + }, + { + "id": "0,2,4,6", + "startCol": 0, + "endCol": 2, + "startRow": 4, + "endRow": 6 + }, + { + "id": 47, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1242 + }, + "angle": 0.00064, + "vertices": { + "#": 1243 + }, + "position": { + "#": 1247 + }, + "force": { + "#": 1248 + }, + "torque": 0, + "positionImpulse": { + "#": 1249 + }, + "constraintImpulse": { + "#": 1250 + }, + "totalContacts": 0, + "speed": 2.9118, + "angularSpeed": 0.00035, + "velocity": { + "#": 1251 + }, + "angularVelocity": 0.00091, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1252 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1253 + }, + "bounds": { + "#": 1255 + }, + "positionPrev": { + "#": 1258 + }, + "anglePrev": 0.00067, + "axes": { + "#": 1259 + }, + "area": 1100.44355, + "mass": 1.10044, + "inverseMass": 0.90872, + "inertia": 932.20976, + "inverseInertia": 0.00107, + "parent": { + "#": 1241 + }, + "sleepCounter": 0, + "region": { + "#": 1263 + } + }, + [ + { + "#": 1241 + } + ], + [ + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + } + ], + { + "x": 172.11811, + "y": 280.27952, + "index": 0, + "body": { + "#": 1241 + }, + "isInternal": false + }, + { + "x": 128.47613, + "y": 255.0458, + "index": 1, + "body": { + "#": 1241 + }, + "isInternal": false + }, + { + "x": 172.15013, + "y": 229.86753, + "index": 2, + "body": { + "#": 1241 + }, + "isInternal": false + }, + { + "x": 157.58146, + "y": 255.06428 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.04332, + "y": 0.0014 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00189, + "y": 2.89541 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1254 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1256 + }, + "max": { + "#": 1257 + } + }, + { + "x": 128.47613, + "y": 229.86753 + }, + { + "x": 172.15628, + "y": 283.19131 + }, + { + "x": 157.56122, + "y": 252.14123 + }, + [ + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + } + ], + { + "x": -0.50055, + "y": 0.86571 + }, + { + "x": -0.49945, + "y": -0.86634 + }, + { + "x": 1, + "y": 0.00064 + }, + { + "id": "2,3,4,5", + "startCol": 2, + "endCol": 3, + "startRow": 4, + "endRow": 5 + }, + { + "id": 48, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1265 + }, + "angle": -0.00027, + "vertices": { + "#": 1266 + }, + "position": { + "#": 1274 + }, + "force": { + "#": 1275 + }, + "torque": 0, + "positionImpulse": { + "#": 1276 + }, + "constraintImpulse": { + "#": 1277 + }, + "totalContacts": 0, + "speed": 2.90156, + "angularSpeed": 0.00006, + "velocity": { + "#": 1278 + }, + "angularVelocity": 0.00003, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1279 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1280 + }, + "bounds": { + "#": 1282 + }, + "positionPrev": { + "#": 1285 + }, + "anglePrev": -0.0003, + "axes": { + "#": 1286 + }, + "area": 4695.38663, + "mass": 4.69539, + "inverseMass": 0.21298, + "inertia": 14091.25388, + "inverseInertia": 0.00007, + "parent": { + "#": 1264 + }, + "sleepCounter": 0, + "region": { + "#": 1294 + } + }, + [ + { + "#": 1264 + } + ], + [ + { + "#": 1267 + }, + { + "#": 1268 + }, + { + "#": 1269 + }, + { + "#": 1270 + }, + { + "#": 1271 + }, + { + "#": 1272 + }, + { + "#": 1273 + } + ], + { + "x": 250.85082, + "y": 289.61357, + "index": 0, + "body": { + "#": 1264 + }, + "isInternal": false + }, + { + "x": 222.75385, + "y": 312.03314, + "index": 1, + "body": { + "#": 1264 + }, + "isInternal": false + }, + { + "x": 187.7067, + "y": 304.04357, + "index": 2, + "body": { + "#": 1264 + }, + "isInternal": false + }, + { + "x": 172.10198, + "y": 271.66177, + "index": 3, + "body": { + "#": 1264 + }, + "isInternal": false + }, + { + "x": 187.68926, + "y": 239.27157, + "index": 4, + "body": { + "#": 1264 + }, + "isInternal": false + }, + { + "x": 222.73211, + "y": 231.26314, + "index": 5, + "body": { + "#": 1264 + }, + "isInternal": false + }, + { + "x": 250.84114, + "y": 253.66757, + "index": 6, + "body": { + "#": 1264 + }, + "isInternal": false + }, + { + "x": 213.52511, + "y": 271.65062 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00347, + "y": 2.90832 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1281 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1283 + }, + "max": { + "#": 1284 + } + }, + { + "x": 172.10198, + "y": 231.26314 + }, + { + "x": 250.85428, + "y": 314.93469 + }, + { + "x": 213.52164, + "y": 268.74243 + }, + [ + { + "#": 1287 + }, + { + "#": 1288 + }, + { + "#": 1289 + }, + { + "#": 1290 + }, + { + "#": 1291 + }, + { + "#": 1292 + }, + { + "#": 1293 + } + ], + { + "x": 0.62371, + "y": 0.78166 + }, + { + "x": -0.22226, + "y": 0.97499 + }, + { + "x": -0.90086, + "y": 0.43412 + }, + { + "x": -0.90109, + "y": -0.43363 + }, + { + "x": -0.22279, + "y": -0.97487 + }, + { + "x": 0.62329, + "y": -0.78199 + }, + { + "x": 1, + "y": -0.00027 + }, + { + "id": "3,5,4,6", + "startCol": 3, + "endCol": 5, + "startRow": 4, + "endRow": 6 + }, + { + "id": 49, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1296 + }, + "angle": -0.00005, + "vertices": { + "#": 1297 + }, + "position": { + "#": 1302 + }, + "force": { + "#": 1303 + }, + "torque": 0, + "positionImpulse": { + "#": 1304 + }, + "constraintImpulse": { + "#": 1305 + }, + "totalContacts": 0, + "speed": 2.92746, + "angularSpeed": 0.00014, + "velocity": { + "#": 1306 + }, + "angularVelocity": 0.00027, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1307 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1308 + }, + "bounds": { + "#": 1310 + }, + "positionPrev": { + "#": 1313 + }, + "anglePrev": -0.00032, + "axes": { + "#": 1314 + }, + "area": 2533.6813, + "mass": 2.53368, + "inverseMass": 0.39468, + "inertia": 9087.28705, + "inverseInertia": 0.00011, + "parent": { + "#": 1295 + }, + "sleepCounter": 0, + "region": { + "#": 1317 + } + }, + [ + { + "#": 1295 + } + ], + [ + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + }, + { + "#": 1301 + } + ], + { + "x": 250.79068, + "y": 231.361, + "index": 0, + "body": { + "#": 1295 + }, + "isInternal": false + }, + { + "x": 351.41774, + "y": 231.3562, + "index": 1, + "body": { + "#": 1295 + }, + "isInternal": false + }, + { + "x": 351.41894, + "y": 256.53512, + "index": 2, + "body": { + "#": 1295 + }, + "isInternal": false + }, + { + "x": 250.79189, + "y": 256.53993, + "index": 3, + "body": { + "#": 1295 + }, + "isInternal": false + }, + { + "x": 301.10481, + "y": 243.94806 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.09903, + "y": 0.00081 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.0144, + "y": 2.92253 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1309 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1311 + }, + "max": { + "#": 1312 + } + }, + { + "x": 250.79068, + "y": 231.3562 + }, + { + "x": 351.43574, + "y": 259.46734 + }, + { + "x": 301.09046, + "y": 241.02627 + }, + [ + { + "#": 1315 + }, + { + "#": 1316 + } + ], + { + "x": 0.00005, + "y": 1 + }, + { + "x": -1, + "y": 0.00005 + }, + { + "id": "5,7,4,5", + "startCol": 5, + "endCol": 7, + "startRow": 4, + "endRow": 5 + }, + { + "id": 50, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1319 + }, + "angle": -0.00024, + "vertices": { + "#": 1320 + }, + "position": { + "#": 1325 + }, + "force": { + "#": 1326 + }, + "torque": 0, + "positionImpulse": { + "#": 1327 + }, + "constraintImpulse": { + "#": 1328 + }, + "totalContacts": 0, + "speed": 2.88798, + "angularSpeed": 0.00003, + "velocity": { + "#": 1329 + }, + "angularVelocity": -0.00003, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1330 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1331 + }, + "bounds": { + "#": 1333 + }, + "positionPrev": { + "#": 1336 + }, + "anglePrev": -0.00021, + "axes": { + "#": 1337 + }, + "area": 2082.10472, + "mass": 2.0821, + "inverseMass": 0.48028, + "inertia": 2917.865, + "inverseInertia": 0.00034, + "parent": { + "#": 1318 + }, + "sleepCounter": 0, + "region": { + "#": 1340 + } + }, + [ + { + "#": 1318 + } + ], + [ + { + "#": 1321 + }, + { + "#": 1322 + }, + { + "#": 1323 + }, + { + "#": 1324 + } + ], + { + "x": 351.79211, + "y": 231.25691, + "index": 0, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 394.36953, + "y": 231.24686, + "index": 1, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 394.38107, + "y": 280.14848, + "index": 2, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 351.80365, + "y": 280.15853, + "index": 3, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 373.08659, + "y": 255.7027 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01013, + "y": 2.88796 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1332 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1334 + }, + "max": { + "#": 1335 + } + }, + { + "x": 351.79211, + "y": 231.24686 + }, + { + "x": 394.38107, + "y": 280.15853 + }, + { + "x": 373.07646, + "y": 252.81474 + }, + [ + { + "#": 1338 + }, + { + "#": 1339 + } + ], + { + "x": 0.00024, + "y": 1 + }, + { + "x": -1, + "y": 0.00024 + }, + { + "id": "7,8,4,5", + "startCol": 7, + "endCol": 8, + "startRow": 4, + "endRow": 5 + }, + { + "id": 51, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1342 + }, + "angle": -0.00051, + "vertices": { + "#": 1343 + }, + "position": { + "#": 1348 + }, + "force": { + "#": 1349 + }, + "torque": 0, + "positionImpulse": { + "#": 1350 + }, + "constraintImpulse": { + "#": 1351 + }, + "totalContacts": 0, + "speed": 2.91144, + "angularSpeed": 0.00018, + "velocity": { + "#": 1352 + }, + "angularVelocity": -0.00018, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1353 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1354 + }, + "bounds": { + "#": 1356 + }, + "positionPrev": { + "#": 1359 + }, + "anglePrev": -0.00033, + "axes": { + "#": 1360 + }, + "area": 2570.18089, + "mass": 2.57018, + "inverseMass": 0.38908, + "inertia": 7426.99294, + "inverseInertia": 0.00013, + "parent": { + "#": 1341 + }, + "sleepCounter": 0, + "region": { + "#": 1363 + } + }, + [ + { + "#": 1341 + } + ], + [ + { + "#": 1344 + }, + { + "#": 1345 + }, + { + "#": 1346 + }, + { + "#": 1347 + } + ], + { + "x": 394.4402, + "y": 222.27773, + "index": 0, + "body": { + "#": 1341 + }, + "isInternal": false + }, + { + "x": 482.89818, + "y": 222.23219, + "index": 1, + "body": { + "#": 1341 + }, + "isInternal": false + }, + { + "x": 482.91314, + "y": 251.28757, + "index": 2, + "body": { + "#": 1341 + }, + "isInternal": false + }, + { + "x": 394.45516, + "y": 251.33311, + "index": 3, + "body": { + "#": 1341 + }, + "isInternal": false + }, + { + "x": 438.67667, + "y": 236.78265 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.04375, + "y": -0.00001 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01511, + "y": 2.9114 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1355 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1357 + }, + "max": { + "#": 1358 + } + }, + { + "x": 394.4402, + "y": 222.23219 + }, + { + "x": 482.92825, + "y": 254.24451 + }, + { + "x": 438.66156, + "y": 233.87124 + }, + [ + { + "#": 1361 + }, + { + "#": 1362 + } + ], + { + "x": 0.00051, + "y": 1 + }, + { + "x": -1, + "y": 0.00051 + }, + { + "id": "8,10,4,5", + "startCol": 8, + "endCol": 10, + "startRow": 4, + "endRow": 5 + }, + { + "id": 52, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1365 + }, + "angle": -0.00091, + "vertices": { + "#": 1366 + }, + "position": { + "#": 1370 + }, + "force": { + "#": 1371 + }, + "torque": 0, + "positionImpulse": { + "#": 1372 + }, + "constraintImpulse": { + "#": 1373 + }, + "totalContacts": 0, + "speed": 2.86128, + "angularSpeed": 0.00058, + "velocity": { + "#": 1374 + }, + "angularVelocity": -0.00058, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1375 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1376 + }, + "bounds": { + "#": 1378 + }, + "positionPrev": { + "#": 1381 + }, + "anglePrev": -0.00032, + "axes": { + "#": 1382 + }, + "area": 1460.27851, + "mass": 1.46028, + "inverseMass": 0.6848, + "inertia": 1641.53255, + "inverseInertia": 0.00061, + "parent": { + "#": 1364 + }, + "sleepCounter": 0, + "region": { + "#": 1386 + } + }, + [ + { + "#": 1364 + } + ], + [ + { + "#": 1367 + }, + { + "#": 1368 + }, + { + "#": 1369 + } + ], + { + "x": 463.26706, + "y": 324.73593, + "index": 0, + "body": { + "#": 1364 + }, + "isInternal": false + }, + { + "x": 412.94879, + "y": 295.74548, + "index": 1, + "body": { + "#": 1364 + }, + "isInternal": false + }, + { + "x": 463.21448, + "y": 266.66395, + "index": 2, + "body": { + "#": 1364 + }, + "isInternal": false + }, + { + "x": 446.47678, + "y": 295.71512 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00327, + "y": 2.86128 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1377 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1379 + }, + "max": { + "#": 1380 + } + }, + { + "x": 412.94879, + "y": 266.66395 + }, + { + "x": 463.26706, + "y": 324.73593 + }, + { + "x": 446.48005, + "y": 292.85384 + }, + [ + { + "#": 1383 + }, + { + "#": 1384 + }, + { + "#": 1385 + } + ], + { + "x": -0.49921, + "y": 0.86648 + }, + { + "x": -0.50078, + "y": -0.86557 + }, + { + "x": 1, + "y": -0.00091 + }, + { + "id": "8,9,5,6", + "startCol": 8, + "endCol": 9, + "startRow": 5, + "endRow": 6 + }, + { + "id": 53, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1388 + }, + "angle": -0.00113, + "vertices": { + "#": 1389 + }, + "position": { + "#": 1397 + }, + "force": { + "#": 1398 + }, + "torque": 0, + "positionImpulse": { + "#": 1399 + }, + "constraintImpulse": { + "#": 1400 + }, + "totalContacts": 0, + "speed": 2.903, + "angularSpeed": 0.00012, + "velocity": { + "#": 1401 + }, + "angularVelocity": -0.00012, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1402 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1403 + }, + "bounds": { + "#": 1405 + }, + "positionPrev": { + "#": 1408 + }, + "anglePrev": -0.001, + "axes": { + "#": 1409 + }, + "area": 4167.43305, + "mass": 4.16743, + "inverseMass": 0.23996, + "inertia": 11100.54206, + "inverseInertia": 0.00009, + "parent": { + "#": 1387 + }, + "sleepCounter": 0, + "region": { + "#": 1417 + } + }, + [ + { + "#": 1387 + } + ], + [ + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + }, + { + "#": 1394 + }, + { + "#": 1395 + }, + { + "#": 1396 + } + ], + { + "x": 547.26225, + "y": 292.43796, + "index": 0, + "body": { + "#": 1387 + }, + "isInternal": false + }, + { + "x": 520.81004, + "y": 313.58275, + "index": 1, + "body": { + "#": 1387 + }, + "isInternal": false + }, + { + "x": 487.78558, + "y": 306.08393, + "index": 2, + "body": { + "#": 1387 + }, + "isInternal": false + }, + { + "x": 473.05823, + "y": 275.58949, + "index": 3, + "body": { + "#": 1387 + }, + "isInternal": false + }, + { + "x": 487.71687, + "y": 245.06197, + "index": 4, + "body": { + "#": 1387 + }, + "isInternal": false + }, + { + "x": 520.72437, + "y": 237.4888, + "index": 5, + "body": { + "#": 1387 + }, + "isInternal": false + }, + { + "x": 547.22412, + "y": 258.57398, + "index": 6, + "body": { + "#": 1387 + }, + "isInternal": false + }, + { + "x": 512.083, + "y": 275.54555 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.03642, + "y": 0.86903 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00477, + "y": 2.90299 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1404 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1406 + }, + "max": { + "#": 1407 + } + }, + { + "x": 473.05823, + "y": 237.4888 + }, + { + "x": 547.26702, + "y": 316.48575 + }, + { + "x": 512.07823, + "y": 272.64256 + }, + [ + { + "#": 1410 + }, + { + "#": 1411 + }, + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + }, + { + "#": 1415 + }, + { + "#": 1416 + } + ], + { + "x": 0.62439, + "y": 0.78111 + }, + { + "x": -0.22143, + "y": 0.97518 + }, + { + "x": -0.90048, + "y": 0.43489 + }, + { + "x": -0.90146, + "y": -0.43286 + }, + { + "x": -0.22363, + "y": -0.97467 + }, + { + "x": 0.62263, + "y": -0.78252 + }, + { + "x": 1, + "y": -0.00113 + }, + { + "id": "9,11,4,6", + "startCol": 9, + "endCol": 11, + "startRow": 4, + "endRow": 6 + }, + { + "id": 54, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1419 + }, + "angle": -0.0009, + "vertices": { + "#": 1420 + }, + "position": { + "#": 1425 + }, + "force": { + "#": 1426 + }, + "torque": 0, + "positionImpulse": { + "#": 1427 + }, + "constraintImpulse": { + "#": 1428 + }, + "totalContacts": 0, + "speed": 2.89331, + "angularSpeed": 0.00002, + "velocity": { + "#": 1429 + }, + "angularVelocity": 0.00002, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1430 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1431 + }, + "bounds": { + "#": 1433 + }, + "positionPrev": { + "#": 1436 + }, + "anglePrev": -0.00091, + "axes": { + "#": 1437 + }, + "area": 1687.76618, + "mass": 1.68777, + "inverseMass": 0.5925, + "inertia": 1980.3012, + "inverseInertia": 0.0005, + "parent": { + "#": 1418 + }, + "sleepCounter": 0, + "region": { + "#": 1440 + } + }, + [ + { + "#": 1418 + } + ], + [ + { + "#": 1421 + }, + { + "#": 1422 + }, + { + "#": 1423 + }, + { + "#": 1424 + } + ], + { + "x": 599.75323, + "y": 223.76928, + "index": 0, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 635.26351, + "y": 223.73744, + "index": 1, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 635.30612, + "y": 271.26636, + "index": 2, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 599.79585, + "y": 271.2982, + "index": 3, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 617.52968, + "y": 247.51782 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00003, + "y": 0.03915 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00741, + "y": 2.8933 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1432 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1434 + }, + "max": { + "#": 1435 + } + }, + { + "x": 599.75323, + "y": 223.73744 + }, + { + "x": 635.31353, + "y": 274.1915 + }, + { + "x": 617.52227, + "y": 244.62452 + }, + [ + { + "#": 1438 + }, + { + "#": 1439 + } + ], + { + "x": 0.0009, + "y": 1 + }, + { + "x": -1, + "y": 0.0009 + }, + { + "id": "12,13,4,5", + "startCol": 12, + "endCol": 13, + "startRow": 4, + "endRow": 5 + }, + { + "id": 55, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1442 + }, + "angle": 0.00408, + "vertices": { + "#": 1443 + }, + "position": { + "#": 1448 + }, + "force": { + "#": 1449 + }, + "torque": 0, + "positionImpulse": { + "#": 1450 + }, + "constraintImpulse": { + "#": 1451 + }, + "totalContacts": 0, + "speed": 2.89027, + "angularSpeed": 0.00076, + "velocity": { + "#": 1452 + }, + "angularVelocity": 0.00076, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1453 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1454 + }, + "bounds": { + "#": 1456 + }, + "positionPrev": { + "#": 1459 + }, + "anglePrev": 0.00331, + "axes": { + "#": 1460 + }, + "area": 888.8746, + "mass": 0.88887, + "inverseMass": 1.12502, + "inertia": 526.73203, + "inverseInertia": 0.0019, + "parent": { + "#": 1441 + }, + "sleepCounter": 0, + "region": { + "#": 1463 + } + }, + [ + { + "#": 1441 + } + ], + [ + { + "#": 1444 + }, + { + "#": 1445 + }, + { + "#": 1446 + }, + { + "#": 1447 + } + ], + { + "x": 615.92228, + "y": 223.43391, + "index": 0, + "body": { + "#": 1441 + }, + "isInternal": false + }, + { + "x": 586.10853, + "y": 223.31239, + "index": 1, + "body": { + "#": 1441 + }, + "isInternal": false + }, + { + "x": 586.23004, + "y": 193.49864, + "index": 2, + "body": { + "#": 1441 + }, + "isInternal": false + }, + { + "x": 616.0438, + "y": 193.62016, + "index": 3, + "body": { + "#": 1441 + }, + "isInternal": false + }, + { + "x": 601.07616, + "y": 208.46628 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.03802, + "y": 2.89002 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1455 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1457 + }, + "max": { + "#": 1458 + } + }, + { + "x": 586.10853, + "y": 193.49864 + }, + { + "x": 616.0438, + "y": 223.43391 + }, + { + "x": 601.11418, + "y": 205.57625 + }, + [ + { + "#": 1461 + }, + { + "#": 1462 + } + ], + { + "x": 0.00408, + "y": -0.99999 + }, + { + "x": 0.99999, + "y": 0.00408 + }, + { + "id": "12,12,4,4", + "startCol": 12, + "endCol": 12, + "startRow": 4, + "endRow": 4 + }, + { + "id": 56, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1465 + }, + "angle": -0.00278, + "vertices": { + "#": 1466 + }, + "position": { + "#": 1471 + }, + "force": { + "#": 1472 + }, + "torque": 0, + "positionImpulse": { + "#": 1473 + }, + "constraintImpulse": { + "#": 1474 + }, + "totalContacts": 0, + "speed": 2.8748, + "angularSpeed": 0.00029, + "velocity": { + "#": 1475 + }, + "angularVelocity": 0.00013, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1476 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1477 + }, + "bounds": { + "#": 1479 + }, + "positionPrev": { + "#": 1482 + }, + "anglePrev": -0.00249, + "axes": { + "#": 1483 + }, + "area": 1624.12153, + "mass": 1.62412, + "inverseMass": 0.61572, + "inertia": 1766.68126, + "inverseInertia": 0.00057, + "parent": { + "#": 1464 + }, + "sleepCounter": 0, + "region": { + "#": 1486 + } + }, + [ + { + "#": 1464 + } + ], + [ + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + }, + { + "#": 1470 + } + ], + { + "x": 662.21297, + "y": 208.03498, + "index": 0, + "body": { + "#": 1464 + }, + "isInternal": false + }, + { + "x": 704.50203, + "y": 207.91727, + "index": 1, + "body": { + "#": 1464 + }, + "isInternal": false + }, + { + "x": 704.60892, + "y": 246.32222, + "index": 2, + "body": { + "#": 1464 + }, + "isInternal": false + }, + { + "x": 662.31986, + "y": 246.43993, + "index": 3, + "body": { + "#": 1464 + }, + "isInternal": false + }, + { + "x": 683.41094, + "y": 227.1786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00227, + "y": 2.89592 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1478 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1480 + }, + "max": { + "#": 1481 + } + }, + { + "x": 662.21297, + "y": 207.91727 + }, + { + "x": 704.61151, + "y": 249.31473 + }, + { + "x": 683.40835, + "y": 224.3038 + }, + [ + { + "#": 1484 + }, + { + "#": 1485 + } + ], + { + "x": 0.00278, + "y": 1 + }, + { + "x": -1, + "y": 0.00278 + }, + { + "id": "13,14,4,5", + "startCol": 13, + "endCol": 14, + "startRow": 4, + "endRow": 5 + }, + { + "id": 57, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1488 + }, + "angle": -0.00026, + "vertices": { + "#": 1489 + }, + "position": { + "#": 1494 + }, + "force": { + "#": 1495 + }, + "torque": 0, + "positionImpulse": { + "#": 1496 + }, + "constraintImpulse": { + "#": 1497 + }, + "totalContacts": 0, + "speed": 2.90728, + "angularSpeed": 0.00003, + "velocity": { + "#": 1498 + }, + "angularVelocity": 0.00101, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1499 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1500 + }, + "bounds": { + "#": 1502 + }, + "positionPrev": { + "#": 1505 + }, + "anglePrev": -0.00023, + "axes": { + "#": 1506 + }, + "area": 925.43359, + "mass": 0.92543, + "inverseMass": 1.08057, + "inertia": 658.9066, + "inverseInertia": 0.00152, + "parent": { + "#": 1487 + }, + "sleepCounter": 0, + "region": { + "#": 1509 + } + }, + [ + { + "#": 1487 + } + ], + [ + { + "#": 1490 + }, + { + "#": 1491 + }, + { + "#": 1492 + }, + { + "#": 1493 + } + ], + { + "x": 704.55503, + "y": 231.29093, + "index": 0, + "body": { + "#": 1487 + }, + "isInternal": false + }, + { + "x": 744.56866, + "y": 231.28058, + "index": 1, + "body": { + "#": 1487 + }, + "isInternal": false + }, + { + "x": 744.57465, + "y": 254.40853, + "index": 2, + "body": { + "#": 1487 + }, + "isInternal": false + }, + { + "x": 704.56102, + "y": 254.41889, + "index": 3, + "body": { + "#": 1487 + }, + "isInternal": false + }, + { + "x": 724.56484, + "y": 242.84973 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00135, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00656, + "y": 2.87021 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1501 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1503 + }, + "max": { + "#": 1504 + } + }, + { + "x": 704.55503, + "y": 231.28058 + }, + { + "x": 744.58066, + "y": 257.32616 + }, + { + "x": 724.55883, + "y": 239.94246 + }, + [ + { + "#": 1507 + }, + { + "#": 1508 + } + ], + { + "x": 0.00026, + "y": 1 + }, + { + "x": -1, + "y": 0.00026 + }, + { + "id": "14,15,4,5", + "startCol": 14, + "endCol": 15, + "startRow": 4, + "endRow": 5 + }, + { + "id": 58, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1511 + }, + "angle": -0.00192, + "vertices": { + "#": 1512 + }, + "position": { + "#": 1539 + }, + "force": { + "#": 1540 + }, + "torque": 0, + "positionImpulse": { + "#": 1541 + }, + "constraintImpulse": { + "#": 1542 + }, + "totalContacts": 0, + "speed": 2.89286, + "angularSpeed": 0.00013, + "velocity": { + "#": 1543 + }, + "angularVelocity": -0.00013, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1544 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1545 + }, + "circleRadius": 43.65625, + "bounds": { + "#": 1547 + }, + "positionPrev": { + "#": 1550 + }, + "anglePrev": -0.00179, + "axes": { + "#": 1551 + }, + "area": 5929.34751, + "mass": 5.92935, + "inverseMass": 0.16865, + "inertia": 22382.17147, + "inverseInertia": 0.00004, + "parent": { + "#": 1510 + }, + "sleepCounter": 0, + "region": { + "#": 1565 + } + }, + [ + { + "#": 1510 + } + ], + [ + { + "#": 1513 + }, + { + "#": 1514 + }, + { + "#": 1515 + }, + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + }, + { + "#": 1520 + }, + { + "#": 1521 + }, + { + "#": 1522 + }, + { + "#": 1523 + }, + { + "#": 1524 + }, + { + "#": 1525 + }, + { + "#": 1526 + }, + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + }, + { + "#": 1533 + }, + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + }, + { + "#": 1537 + }, + { + "#": 1538 + } + ], + { + "x": 665.29489, + "y": 331.74126, + "index": 0, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 662.79552, + "y": 341.96508, + "index": 1, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 657.92242, + "y": 351.29346, + "index": 2, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 650.95856, + "y": 359.18384, + "index": 3, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 642.30905, + "y": 365.17946, + "index": 4, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 632.47624, + "y": 368.93035, + "index": 5, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 622.03069, + "y": 370.21841, + "index": 6, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 611.58028, + "y": 368.97047, + "index": 7, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 601.73313, + "y": 365.25737, + "index": 8, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 593.06067, + "y": 359.29501, + "index": 9, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 586.06655, + "y": 351.43143, + "index": 10, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 581.15767, + "y": 342.12183, + "index": 11, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 578.61905, + "y": 331.90769, + "index": 12, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 578.59885, + "y": 321.38371, + "index": 13, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 581.09822, + "y": 311.15989, + "index": 14, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 585.97132, + "y": 301.83152, + "index": 15, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 592.93518, + "y": 293.94113, + "index": 16, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 601.58468, + "y": 287.94551, + "index": 17, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 611.4175, + "y": 284.19463, + "index": 18, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 621.86305, + "y": 282.90657, + "index": 19, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 632.31346, + "y": 284.1545, + "index": 20, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 642.16061, + "y": 287.8676, + "index": 21, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 650.83307, + "y": 293.82996, + "index": 22, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 657.82718, + "y": 301.69355, + "index": 23, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 662.73607, + "y": 311.00314, + "index": 24, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 665.27469, + "y": 321.21728, + "index": 25, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 621.94687, + "y": 326.56249 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00046, + "y": 0.91166 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00094, + "y": 2.89286 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1546 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1548 + }, + "max": { + "#": 1549 + } + }, + { + "x": 578.5979, + "y": 282.90657 + }, + { + "x": 665.29489, + "y": 373.11126 + }, + { + "x": 621.94781, + "y": 323.66963 + }, + [ + { + "#": 1552 + }, + { + "#": 1553 + }, + { + "#": 1554 + }, + { + "#": 1555 + }, + { + "#": 1556 + }, + { + "#": 1557 + }, + { + "#": 1558 + }, + { + "#": 1559 + }, + { + "#": 1560 + }, + { + "#": 1561 + }, + { + "#": 1562 + }, + { + "#": 1563 + }, + { + "#": 1564 + } + ], + { + "x": -0.97139, + "y": -0.23747 + }, + { + "x": -0.88635, + "y": -0.46302 + }, + { + "x": -0.74975, + "y": -0.66172 + }, + { + "x": -0.56969, + "y": -0.82186 + }, + { + "x": -0.35641, + "y": -0.93433 + }, + { + "x": -0.12238, + "y": -0.99248 + }, + { + "x": 0.11857, + "y": -0.99295 + }, + { + "x": 0.35282, + "y": -0.93569 + }, + { + "x": 0.56653, + "y": -0.82404 + }, + { + "x": 0.74721, + "y": -0.66459 + }, + { + "x": 0.88456, + "y": -0.46642 + }, + { + "x": 0.97048, + "y": -0.2412 + }, + { + "x": 1, + "y": -0.00192 + }, + { + "id": "12,13,5,7", + "startCol": 12, + "endCol": 13, + "startRow": 5, + "endRow": 7 + }, + { + "id": 59, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1567 + }, + "angle": -0.00004, + "vertices": { + "#": 1568 + }, + "position": { + "#": 1573 + }, + "force": { + "#": 1574 + }, + "torque": 0, + "positionImpulse": { + "#": 1575 + }, + "constraintImpulse": { + "#": 1576 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0.00001, + "velocity": { + "#": 1577 + }, + "angularVelocity": -0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1578 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1579 + }, + "bounds": { + "#": 1581 + }, + "positionPrev": { + "#": 1584 + }, + "anglePrev": -0.00003, + "axes": { + "#": 1585 + }, + "area": 2550.1664, + "mass": 2.55017, + "inverseMass": 0.39213, + "inertia": 10939.16513, + "inverseInertia": 0.00009, + "parent": { + "#": 1566 + }, + "sleepCounter": 0, + "region": { + "#": 1588 + } + }, + [ + { + "#": 1566 + } + ], + [ + { + "#": 1569 + }, + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + } + ], + { + "x": 831.19617, + "y": 302.09389, + "index": 0, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 942.28997, + "y": 302.0896, + "index": 1, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 942.29085, + "y": 325.04468, + "index": 2, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 831.19706, + "y": 325.04897, + "index": 3, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 886.74351, + "y": 313.56929 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 3.75791 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00098, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1580 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1582 + }, + "max": { + "#": 1583 + } + }, + { + "x": 831.19519, + "y": 302.0896 + }, + { + "x": 942.29085, + "y": 327.95624 + }, + { + "x": 886.7445, + "y": 310.66201 + }, + [ + { + "#": 1586 + }, + { + "#": 1587 + } + ], + { + "x": 0.00004, + "y": 1 + }, + { + "x": -1, + "y": 0.00004 + }, + { + "id": "17,19,6,6", + "startCol": 17, + "endCol": 19, + "startRow": 6, + "endRow": 6 + }, + { + "id": 60, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1590 + }, + "angle": 0.00058, + "vertices": { + "#": 1591 + }, + "position": { + "#": 1618 + }, + "force": { + "#": 1619 + }, + "torque": 0, + "positionImpulse": { + "#": 1620 + }, + "constraintImpulse": { + "#": 1621 + }, + "totalContacts": 0, + "speed": 2.88644, + "angularSpeed": 0.00011, + "velocity": { + "#": 1622 + }, + "angularVelocity": 0.00011, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1623 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1624 + }, + "circleRadius": 40.78241, + "bounds": { + "#": 1626 + }, + "positionPrev": { + "#": 1629 + }, + "anglePrev": 0.00047, + "axes": { + "#": 1630 + }, + "area": 5174.38131, + "mass": 5.17438, + "inverseMass": 0.19326, + "inertia": 17045.32427, + "inverseInertia": 0.00006, + "parent": { + "#": 1589 + }, + "sleepCounter": 0, + "region": { + "#": 1644 + } + }, + [ + { + "#": 1589 + } + ], + [ + { + "#": 1592 + }, + { + "#": 1593 + }, + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + }, + { + "#": 1597 + }, + { + "#": 1598 + }, + { + "#": 1599 + }, + { + "#": 1600 + }, + { + "#": 1601 + }, + { + "#": 1602 + }, + { + "#": 1603 + }, + { + "#": 1604 + }, + { + "#": 1605 + }, + { + "#": 1606 + }, + { + "#": 1607 + }, + { + "#": 1608 + }, + { + "#": 1609 + }, + { + "#": 1610 + }, + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + }, + { + "#": 1614 + }, + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + } + ], + { + "x": 1024.75693, + "y": 270.6971, + "index": 0, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 1022.39843, + "y": 280.24175, + "index": 1, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 1017.82442, + "y": 288.94411, + "index": 2, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 1011.30118, + "y": 296.29936, + "index": 3, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 1003.20696, + "y": 301.8797, + "index": 4, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 994.01196, + "y": 305.3604, + "index": 5, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 984.25128, + "y": 306.53978, + "index": 6, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 974.49196, + "y": 305.34916, + "index": 7, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 965.30097, + "y": 301.85786, + "index": 8, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 957.21319, + "y": 296.2682, + "index": 9, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 950.69843, + "y": 288.90545, + "index": 10, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 946.13444, + "y": 280.19782, + "index": 11, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 943.78694, + "y": 270.65047, + "index": 12, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 943.7926, + "y": 260.81847, + "index": 13, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 946.1511, + "y": 251.27383, + "index": 14, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 950.72511, + "y": 242.57146, + "index": 15, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 957.24835, + "y": 235.21621, + "index": 16, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 965.34257, + "y": 229.63588, + "index": 17, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 974.53757, + "y": 226.15517, + "index": 18, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 984.29825, + "y": 224.97579, + "index": 19, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 994.05757, + "y": 226.16641, + "index": 20, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 1003.24856, + "y": 229.65771, + "index": 21, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 1011.33634, + "y": 235.24737, + "index": 22, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 1017.8511, + "y": 242.61012, + "index": 23, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 1022.41509, + "y": 251.31775, + "index": 24, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 1024.76259, + "y": 260.86511, + "index": 25, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 984.27476, + "y": 265.75779 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00167, + "y": 2.88644 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1625 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1627 + }, + "max": { + "#": 1628 + } + }, + { + "x": 943.78527, + "y": 224.97579 + }, + { + "x": 1024.76259, + "y": 309.42622 + }, + { + "x": 984.27644, + "y": 262.87134 + }, + [ + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + }, + { + "#": 1637 + }, + { + "#": 1638 + }, + { + "#": 1639 + }, + { + "#": 1640 + }, + { + "#": 1641 + }, + { + "#": 1642 + }, + { + "#": 1643 + } + ], + { + "x": -0.9708, + "y": -0.23989 + }, + { + "x": -0.88518, + "y": -0.46525 + }, + { + "x": -0.74815, + "y": -0.66352 + }, + { + "x": -0.5676, + "y": -0.8233 + }, + { + "x": -0.35403, + "y": -0.93524 + }, + { + "x": -0.11996, + "y": -0.99278 + }, + { + "x": 0.1211, + "y": -0.99264 + }, + { + "x": 0.3551, + "y": -0.93483 + }, + { + "x": 0.56855, + "y": -0.82265 + }, + { + "x": 0.74892, + "y": -0.66266 + }, + { + "x": 0.88571, + "y": -0.46423 + }, + { + "x": 0.97108, + "y": -0.23877 + }, + { + "x": 1, + "y": 0.00058 + }, + { + "id": "19,21,4,6", + "startCol": 19, + "endCol": 21, + "startRow": 4, + "endRow": 6 + }, + { + "id": 61, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1646 + }, + "angle": 0.00522, + "vertices": { + "#": 1647 + }, + "position": { + "#": 1652 + }, + "force": { + "#": 1653 + }, + "torque": 0, + "positionImpulse": { + "#": 1654 + }, + "constraintImpulse": { + "#": 1655 + }, + "totalContacts": 0, + "speed": 2.90853, + "angularSpeed": 0.00091, + "velocity": { + "#": 1656 + }, + "angularVelocity": 0.00091, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1657 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1658 + }, + "bounds": { + "#": 1660 + }, + "positionPrev": { + "#": 1663 + }, + "anglePrev": 0.0043, + "axes": { + "#": 1664 + }, + "area": 1308.20346, + "mass": 1.3082, + "inverseMass": 0.76441, + "inertia": 1149.85791, + "inverseInertia": 0.00087, + "parent": { + "#": 1645 + }, + "sleepCounter": 0, + "region": { + "#": 1667 + } + }, + [ + { + "#": 1645 + } + ], + [ + { + "#": 1648 + }, + { + "#": 1649 + }, + { + "#": 1650 + }, + { + "#": 1651 + } + ], + { + "x": 1024.88754, + "y": 230.79862, + "index": 0, + "body": { + "#": 1645 + }, + "isInternal": false + }, + { + "x": 1063.38907, + "y": 230.99942, + "index": 1, + "body": { + "#": 1645 + }, + "isInternal": false + }, + { + "x": 1063.21187, + "y": 264.97646, + "index": 2, + "body": { + "#": 1645 + }, + "isInternal": false + }, + { + "x": 1024.71034, + "y": 264.77566, + "index": 3, + "body": { + "#": 1645 + }, + "isInternal": false + }, + { + "x": 1044.04971, + "y": 247.88754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01448, + "y": 2.9085 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1659 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1661 + }, + "max": { + "#": 1662 + } + }, + { + "x": 1024.71034, + "y": 230.79862 + }, + { + "x": 1063.40356, + "y": 267.88495 + }, + { + "x": 1044.03522, + "y": 244.97904 + }, + [ + { + "#": 1665 + }, + { + "#": 1666 + } + ], + { + "x": -0.00522, + "y": 0.99999 + }, + { + "x": -0.99999, + "y": -0.00522 + }, + { + "id": "21,22,4,5", + "startCol": 21, + "endCol": 22, + "startRow": 4, + "endRow": 5 + }, + { + "id": 62, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1669 + }, + "angle": 0.00101, + "vertices": { + "#": 1670 + }, + "position": { + "#": 1678 + }, + "force": { + "#": 1679 + }, + "torque": 0, + "positionImpulse": { + "#": 1680 + }, + "constraintImpulse": { + "#": 1681 + }, + "totalContacts": 0, + "speed": 2.90383, + "angularSpeed": 0.0002, + "velocity": { + "#": 1682 + }, + "angularVelocity": 0.0002, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1683 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1684 + }, + "bounds": { + "#": 1686 + }, + "positionPrev": { + "#": 1689 + }, + "anglePrev": 0.00081, + "axes": { + "#": 1690 + }, + "area": 3803.77675, + "mass": 3.80378, + "inverseMass": 0.2629, + "inertia": 9247.76875, + "inverseInertia": 0.00011, + "parent": { + "#": 1668 + }, + "sleepCounter": 0, + "region": { + "#": 1698 + } + }, + [ + { + "#": 1668 + } + ], + [ + { + "#": 1671 + }, + { + "#": 1672 + }, + { + "#": 1673 + }, + { + "#": 1674 + }, + { + "#": 1675 + }, + { + "#": 1676 + }, + { + "#": 1677 + } + ], + { + "x": 1132.82908, + "y": 286.55131, + "index": 0, + "body": { + "#": 1668 + }, + "isInternal": false + }, + { + "x": 1107.51378, + "y": 306.69784, + "index": 1, + "body": { + "#": 1668 + }, + "isInternal": false + }, + { + "x": 1075.97905, + "y": 299.46608, + "index": 2, + "body": { + "#": 1668 + }, + "isInternal": false + }, + { + "x": 1061.9704, + "y": 270.30297, + "index": 3, + "body": { + "#": 1668 + }, + "isInternal": false + }, + { + "x": 1076.03774, + "y": 241.16811, + "index": 4, + "body": { + "#": 1668 + }, + "isInternal": false + }, + { + "x": 1107.58697, + "y": 233.99987, + "index": 5, + "body": { + "#": 1668 + }, + "isInternal": false + }, + { + "x": 1132.86165, + "y": 254.19733, + "index": 6, + "body": { + "#": 1668 + }, + "isInternal": false + }, + { + "x": 1099.25424, + "y": 270.3405 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.05117, + "y": 0.1092 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00486, + "y": 2.90383 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1685 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1687 + }, + "max": { + "#": 1688 + } + }, + { + "x": 1061.9704, + "y": 233.99987 + }, + { + "x": 1132.86651, + "y": 309.60167 + }, + { + "x": 1099.24939, + "y": 267.43667 + }, + [ + { + "#": 1691 + }, + { + "#": 1692 + }, + { + "#": 1693 + }, + { + "#": 1694 + }, + { + "#": 1695 + }, + { + "#": 1696 + }, + { + "#": 1697 + } + ], + { + "x": 0.6227, + "y": 0.78246 + }, + { + "x": -0.22352, + "y": 0.9747 + }, + { + "x": -0.9014, + "y": 0.43299 + }, + { + "x": -0.90052, + "y": -0.43481 + }, + { + "x": -0.22156, + "y": -0.97515 + }, + { + "x": 0.62427, + "y": -0.7812 + }, + { + "x": 1, + "y": 0.00101 + }, + { + "id": "22,23,4,6", + "startCol": 22, + "endCol": 23, + "startRow": 4, + "endRow": 6 + }, + { + "id": 63, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1700 + }, + "angle": 0.0016, + "vertices": { + "#": 1701 + }, + "position": { + "#": 1706 + }, + "force": { + "#": 1707 + }, + "torque": 0, + "positionImpulse": { + "#": 1708 + }, + "constraintImpulse": { + "#": 1709 + }, + "totalContacts": 0, + "speed": 2.91634, + "angularSpeed": 0.00046, + "velocity": { + "#": 1710 + }, + "angularVelocity": 0.00046, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1711 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1712 + }, + "bounds": { + "#": 1714 + }, + "positionPrev": { + "#": 1717 + }, + "anglePrev": 0.00114, + "axes": { + "#": 1718 + }, + "area": 1519.53857, + "mass": 1.51954, + "inverseMass": 0.65809, + "inertia": 1623.69877, + "inverseInertia": 0.00062, + "parent": { + "#": 1699 + }, + "sleepCounter": 0, + "region": { + "#": 1721 + } + }, + [ + { + "#": 1699 + } + ], + [ + { + "#": 1702 + }, + { + "#": 1703 + }, + { + "#": 1704 + }, + { + "#": 1705 + } + ], + { + "x": 1133.86312, + "y": 231.27399, + "index": 0, + "body": { + "#": 1699 + }, + "isInternal": false + }, + { + "x": 1166.92184, + "y": 231.32695, + "index": 1, + "body": { + "#": 1699 + }, + "isInternal": false + }, + { + "x": 1166.84822, + "y": 277.29165, + "index": 2, + "body": { + "#": 1699 + }, + "isInternal": false + }, + { + "x": 1133.78949, + "y": 277.2387, + "index": 3, + "body": { + "#": 1699 + }, + "isInternal": false + }, + { + "x": 1150.35567, + "y": 254.28282 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.15234, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00251, + "y": 2.91634 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1713 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1715 + }, + "max": { + "#": 1716 + } + }, + { + "x": 1133.78949, + "y": 231.27399 + }, + { + "x": 1166.92436, + "y": 280.20799 + }, + { + "x": 1150.35315, + "y": 251.36648 + }, + [ + { + "#": 1719 + }, + { + "#": 1720 + } + ], + { + "x": -0.0016, + "y": 1 + }, + { + "x": -1, + "y": -0.0016 + }, + { + "id": "23,24,4,5", + "startCol": 23, + "endCol": 24, + "startRow": 4, + "endRow": 5 + }, + { + "id": 64, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1723 + }, + "angle": 0.00054, + "vertices": { + "#": 1724 + }, + "position": { + "#": 1729 + }, + "force": { + "#": 1730 + }, + "torque": 0, + "positionImpulse": { + "#": 1731 + }, + "constraintImpulse": { + "#": 1732 + }, + "totalContacts": 0, + "speed": 2.89675, + "angularSpeed": 0.00017, + "velocity": { + "#": 1733 + }, + "angularVelocity": 0.00017, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1734 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1735 + }, + "bounds": { + "#": 1737 + }, + "positionPrev": { + "#": 1740 + }, + "anglePrev": 0.00038, + "axes": { + "#": 1741 + }, + "area": 3306.48, + "mass": 3.30648, + "inverseMass": 0.30244, + "inertia": 7288.54001, + "inverseInertia": 0.00014, + "parent": { + "#": 1722 + }, + "sleepCounter": 0, + "region": { + "#": 1744 + } + }, + [ + { + "#": 1722 + } + ], + [ + { + "#": 1725 + }, + { + "#": 1726 + }, + { + "#": 1727 + }, + { + "#": 1728 + } + ], + { + "x": 1224.51921, + "y": 288.76997, + "index": 0, + "body": { + "#": 1722 + }, + "isInternal": false + }, + { + "x": 1167.01721, + "y": 288.73884, + "index": 1, + "body": { + "#": 1722 + }, + "isInternal": false + }, + { + "x": 1167.04835, + "y": 231.23684, + "index": 2, + "body": { + "#": 1722 + }, + "isInternal": false + }, + { + "x": 1224.55034, + "y": 231.26798, + "index": 3, + "body": { + "#": 1722 + }, + "isInternal": false + }, + { + "x": 1195.78378, + "y": 260.00341 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.17893, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00483, + "y": 2.89675 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1736 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1738 + }, + "max": { + "#": 1739 + } + }, + { + "x": 1167.01721, + "y": 231.23684 + }, + { + "x": 1224.55517, + "y": 291.66672 + }, + { + "x": 1195.77895, + "y": 257.10666 + }, + [ + { + "#": 1742 + }, + { + "#": 1743 + } + ], + { + "x": 0.00054, + "y": -1 + }, + { + "x": 1, + "y": 0.00054 + }, + { + "id": "24,25,4,6", + "startCol": 24, + "endCol": 25, + "startRow": 4, + "endRow": 6 + }, + { + "id": 65, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1746 + }, + "angle": 0.09647, + "vertices": { + "#": 1747 + }, + "position": { + "#": 1751 + }, + "force": { + "#": 1752 + }, + "torque": 0, + "positionImpulse": { + "#": 1753 + }, + "constraintImpulse": { + "#": 1754 + }, + "totalContacts": 0, + "speed": 1.96588, + "angularSpeed": 0.02638, + "velocity": { + "#": 1755 + }, + "angularVelocity": 0.04135, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1756 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1757 + }, + "bounds": { + "#": 1759 + }, + "positionPrev": { + "#": 1762 + }, + "anglePrev": 0.05524, + "axes": { + "#": 1763 + }, + "area": 1545.32445, + "mass": 1.54532, + "inverseMass": 0.64711, + "inertia": 1838.30455, + "inverseInertia": 0.00054, + "parent": { + "#": 1745 + }, + "sleepCounter": 0, + "region": { + "#": 1767 + } + }, + [ + { + "#": 1745 + } + ], + [ + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + } + ], + { + "x": 67.84979, + "y": 381.29162, + "index": 0, + "body": { + "#": 1745 + }, + "isInternal": false + }, + { + "x": 19.23235, + "y": 346.57748, + "index": 1, + "body": { + "#": 1745 + }, + "isInternal": false + }, + { + "x": 73.60383, + "y": 321.82937, + "index": 2, + "body": { + "#": 1745 + }, + "isInternal": false + }, + { + "x": 53.56199, + "y": 349.89949 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.13714, + "y": 1.42003 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1758 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1760 + }, + "max": { + "#": 1761 + } + }, + { + "x": 19.1434, + "y": 321.82937 + }, + { + "x": 73.60383, + "y": 383.25548 + }, + { + "x": 53.70692, + "y": 348.47997 + }, + [ + { + "#": 1764 + }, + { + "#": 1765 + }, + { + "#": 1766 + } + ], + { + "x": -0.5811, + "y": 0.81383 + }, + { + "x": -0.41427, + "y": -0.91015 + }, + { + "x": 0.99535, + "y": 0.09632 + }, + { + "id": "0,1,6,7", + "startCol": 0, + "endCol": 1, + "startRow": 6, + "endRow": 7 + }, + { + "id": 66, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1769 + }, + "angle": 0.04543, + "vertices": { + "#": 1770 + }, + "position": { + "#": 1775 + }, + "force": { + "#": 1776 + }, + "torque": 0, + "positionImpulse": { + "#": 1777 + }, + "constraintImpulse": { + "#": 1778 + }, + "totalContacts": 0, + "speed": 2.68414, + "angularSpeed": 0.01961, + "velocity": { + "#": 1779 + }, + "angularVelocity": 0.02996, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1780 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1781 + }, + "bounds": { + "#": 1783 + }, + "positionPrev": { + "#": 1786 + }, + "anglePrev": 0.0151, + "axes": { + "#": 1787 + }, + "area": 832.69161, + "mass": 0.83269, + "inverseMass": 1.20092, + "inertia": 462.47405, + "inverseInertia": 0.00216, + "parent": { + "#": 1768 + }, + "sleepCounter": 0, + "region": { + "#": 1790 + } + }, + [ + { + "#": 1768 + } + ], + [ + { + "#": 1771 + }, + { + "#": 1772 + }, + { + "#": 1773 + }, + { + "#": 1774 + } + ], + { + "x": 70.55317, + "y": 332.80121, + "index": 0, + "body": { + "#": 1768 + }, + "isInternal": false + }, + { + "x": 99.83184, + "y": 334.13215, + "index": 1, + "body": { + "#": 1768 + }, + "isInternal": false + }, + { + "x": 98.54168, + "y": 362.51372, + "index": 2, + "body": { + "#": 1768 + }, + "isInternal": false + }, + { + "x": 69.26301, + "y": 361.18278, + "index": 3, + "body": { + "#": 1768 + }, + "isInternal": false + }, + { + "x": 84.54743, + "y": 347.65746 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.18859, + "y": 0.61698 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.06548, + "y": 2.54571 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1782 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1784 + }, + "max": { + "#": 1785 + } + }, + { + "x": 69.26301, + "y": 332.80121 + }, + { + "x": 99.95094, + "y": 365.19521 + }, + { + "x": 84.46748, + "y": 345.11081 + }, + [ + { + "#": 1788 + }, + { + "#": 1789 + } + ], + { + "x": -0.04541, + "y": 0.99897 + }, + { + "x": -0.99897, + "y": -0.04541 + }, + { + "id": "1,2,6,7", + "startCol": 1, + "endCol": 2, + "startRow": 6, + "endRow": 7 + }, + { + "id": 67, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1792 + }, + "angle": -0.00044, + "vertices": { + "#": 1793 + }, + "position": { + "#": 1799 + }, + "force": { + "#": 1800 + }, + "torque": 0, + "positionImpulse": { + "#": 1801 + }, + "constraintImpulse": { + "#": 1802 + }, + "totalContacts": 0, + "speed": 2.90651, + "angularSpeed": 0.00055, + "velocity": { + "#": 1803 + }, + "angularVelocity": -0.00104, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1804 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1805 + }, + "bounds": { + "#": 1807 + }, + "positionPrev": { + "#": 1810 + }, + "anglePrev": 0.00046, + "axes": { + "#": 1811 + }, + "area": 979.53176, + "mass": 0.97953, + "inverseMass": 1.0209, + "inertia": 621.19304, + "inverseInertia": 0.00161, + "parent": { + "#": 1791 + }, + "sleepCounter": 0, + "region": { + "#": 1817 + } + }, + [ + { + "#": 1791 + } + ], + [ + { + "#": 1794 + }, + { + "#": 1795 + }, + { + "#": 1796 + }, + { + "#": 1797 + }, + { + "#": 1798 + } + ], + { + "x": 134.09923, + "y": 356.87218, + "index": 0, + "body": { + "#": 1791 + }, + "isInternal": false + }, + { + "x": 111.40947, + "y": 364.25615, + "index": 1, + "body": { + "#": 1791 + }, + "isInternal": false + }, + { + "x": 97.37599, + "y": 344.95831, + "index": 2, + "body": { + "#": 1791 + }, + "isInternal": false + }, + { + "x": 111.39251, + "y": 325.64815, + "index": 3, + "body": { + "#": 1791 + }, + "isInternal": false + }, + { + "x": 134.08875, + "y": 333.01218, + "index": 4, + "body": { + "#": 1791 + }, + "isInternal": false + }, + { + "x": 117.67309, + "y": 344.94939 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.10661, + "y": 0.21792 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.14647, + "y": 2.91133 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1806 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1808 + }, + "max": { + "#": 1809 + } + }, + { + "x": 97.37599, + "y": 325.64815 + }, + { + "x": 134.17586, + "y": 367.16164 + }, + { + "x": 117.55124, + "y": 342.04137 + }, + [ + { + "#": 1812 + }, + { + "#": 1813 + }, + { + "#": 1814 + }, + { + "#": 1815 + }, + { + "#": 1816 + } + ], + { + "x": 0.30946, + "y": 0.95091 + }, + { + "x": -0.80876, + "y": 0.58814 + }, + { + "x": -0.80928, + "y": -0.58743 + }, + { + "x": 0.30862, + "y": -0.95118 + }, + { + "x": 1, + "y": -0.00044 + }, + { + "id": "2,2,6,7", + "startCol": 2, + "endCol": 2, + "startRow": 6, + "endRow": 7 + }, + { + "id": 68, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1819 + }, + "angle": 0.00143, + "vertices": { + "#": 1820 + }, + "position": { + "#": 1825 + }, + "force": { + "#": 1826 + }, + "torque": 0, + "positionImpulse": { + "#": 1827 + }, + "constraintImpulse": { + "#": 1828 + }, + "totalContacts": 0, + "speed": 2.90542, + "angularSpeed": 0.00103, + "velocity": { + "#": 1829 + }, + "angularVelocity": 0.00085, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1830 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1831 + }, + "bounds": { + "#": 1833 + }, + "positionPrev": { + "#": 1836 + }, + "anglePrev": 0.00051, + "axes": { + "#": 1837 + }, + "area": 1515.31318, + "mass": 1.51531, + "inverseMass": 0.65993, + "inertia": 1532.42068, + "inverseInertia": 0.00065, + "parent": { + "#": 1818 + }, + "sleepCounter": 0, + "region": { + "#": 1840 + } + }, + [ + { + "#": 1818 + } + ], + [ + { + "#": 1821 + }, + { + "#": 1822 + }, + { + "#": 1823 + }, + { + "#": 1824 + } + ], + { + "x": 132.2126, + "y": 324.38917, + "index": 0, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 172.0504, + "y": 324.44598, + "index": 1, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 171.99616, + "y": 362.48297, + "index": 2, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 132.15836, + "y": 362.42616, + "index": 3, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 152.10438, + "y": 343.43607 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.11528, + "y": 2.90482 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1832 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1834 + }, + "max": { + "#": 1835 + } + }, + { + "x": 132.15836, + "y": 324.38917 + }, + { + "x": 172.10027, + "y": 365.38797 + }, + { + "x": 152.00424, + "y": 340.53478 + }, + [ + { + "#": 1838 + }, + { + "#": 1839 + } + ], + { + "x": -0.00143, + "y": 1 + }, + { + "x": -1, + "y": -0.00143 + }, + { + "id": "2,3,6,7", + "startCol": 2, + "endCol": 3, + "startRow": 6, + "endRow": 7 + }, + { + "id": 69, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1842 + }, + "angle": 0.00047, + "vertices": { + "#": 1843 + }, + "position": { + "#": 1848 + }, + "force": { + "#": 1849 + }, + "torque": 0, + "positionImpulse": { + "#": 1850 + }, + "constraintImpulse": { + "#": 1851 + }, + "totalContacts": 0, + "speed": 2.91678, + "angularSpeed": 0.00027, + "velocity": { + "#": 1852 + }, + "angularVelocity": 0.00181, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1853 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1854 + }, + "bounds": { + "#": 1856 + }, + "positionPrev": { + "#": 1859 + }, + "anglePrev": -0.00123, + "axes": { + "#": 1860 + }, + "area": 1347.92786, + "mass": 1.34793, + "inverseMass": 0.74188, + "inertia": 1394.56669, + "inverseInertia": 0.00072, + "parent": { + "#": 1841 + }, + "sleepCounter": 0, + "region": { + "#": 1863 + } + }, + [ + { + "#": 1841 + } + ], + [ + { + "#": 1844 + }, + { + "#": 1845 + }, + { + "#": 1846 + }, + { + "#": 1847 + } + ], + { + "x": 170.18176, + "y": 324.43255, + "index": 0, + "body": { + "#": 1841 + }, + "isInternal": false + }, + { + "x": 198.16066, + "y": 324.44558, + "index": 1, + "body": { + "#": 1841 + }, + "isInternal": false + }, + { + "x": 198.13823, + "y": 372.62214, + "index": 2, + "body": { + "#": 1841 + }, + "isInternal": false + }, + { + "x": 170.15932, + "y": 372.60911, + "index": 3, + "body": { + "#": 1841 + }, + "isInternal": false + }, + { + "x": 184.15999, + "y": 348.52734 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.06368, + "y": 2.92819 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1855 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1857 + }, + "max": { + "#": 1858 + } + }, + { + "x": 170.15932, + "y": 324.43255 + }, + { + "x": 198.18689, + "y": 375.5388 + }, + { + "x": 184.07929, + "y": 345.59518 + }, + [ + { + "#": 1861 + }, + { + "#": 1862 + } + ], + { + "x": -0.00047, + "y": 1 + }, + { + "x": -1, + "y": -0.00047 + }, + { + "id": "3,4,6,7", + "startCol": 3, + "endCol": 4, + "startRow": 6, + "endRow": 7 + }, + { + "id": 70, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1865 + }, + "angle": 0.00156, + "vertices": { + "#": 1866 + }, + "position": { + "#": 1871 + }, + "force": { + "#": 1872 + }, + "torque": 0, + "positionImpulse": { + "#": 1873 + }, + "constraintImpulse": { + "#": 1874 + }, + "totalContacts": 0, + "speed": 2.92456, + "angularSpeed": 0.00048, + "velocity": { + "#": 1875 + }, + "angularVelocity": -0.00003, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1876 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1877 + }, + "bounds": { + "#": 1879 + }, + "positionPrev": { + "#": 1882 + }, + "anglePrev": 0.00176, + "axes": { + "#": 1883 + }, + "area": 2285.40536, + "mass": 2.28541, + "inverseMass": 0.43756, + "inertia": 3483.87721, + "inverseInertia": 0.00029, + "parent": { + "#": 1864 + }, + "sleepCounter": 0, + "region": { + "#": 1886 + } + }, + [ + { + "#": 1864 + } + ], + [ + { + "#": 1867 + }, + { + "#": 1868 + }, + { + "#": 1869 + }, + { + "#": 1870 + } + ], + { + "x": 196.4502, + "y": 324.44811, + "index": 0, + "body": { + "#": 1864 + }, + "isInternal": false + }, + { + "x": 243.48834, + "y": 324.52146, + "index": 1, + "body": { + "#": 1864 + }, + "isInternal": false + }, + { + "x": 243.41258, + "y": 373.10756, + "index": 2, + "body": { + "#": 1864 + }, + "isInternal": false + }, + { + "x": 196.37444, + "y": 373.03422, + "index": 3, + "body": { + "#": 1864 + }, + "isInternal": false + }, + { + "x": 219.93139, + "y": 348.77784 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.1123, + "y": 0.00038 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00663, + "y": 2.93729 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1878 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1880 + }, + "max": { + "#": 1881 + } + }, + { + "x": 196.37157, + "y": 324.44811 + }, + { + "x": 243.48834, + "y": 376.03212 + }, + { + "x": 219.91655, + "y": 345.83797 + }, + [ + { + "#": 1884 + }, + { + "#": 1885 + } + ], + { + "x": -0.00156, + "y": 1 + }, + { + "x": -1, + "y": -0.00156 + }, + { + "id": "4,5,6,7", + "startCol": 4, + "endCol": 5, + "startRow": 6, + "endRow": 7 + }, + { + "id": 71, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1888 + }, + "angle": -0.00149, + "vertices": { + "#": 1889 + }, + "position": { + "#": 1895 + }, + "force": { + "#": 1896 + }, + "torque": 0, + "positionImpulse": { + "#": 1897 + }, + "constraintImpulse": { + "#": 1898 + }, + "totalContacts": 0, + "speed": 2.91295, + "angularSpeed": 0.00052, + "velocity": { + "#": 1899 + }, + "angularVelocity": -0.00056, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1900 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1901 + }, + "bounds": { + "#": 1903 + }, + "positionPrev": { + "#": 1906 + }, + "anglePrev": -0.00092, + "axes": { + "#": 1907 + }, + "area": 4327.82858, + "mass": 4.32783, + "inverseMass": 0.23106, + "inertia": 12126.33711, + "inverseInertia": 0.00008, + "parent": { + "#": 1887 + }, + "sleepCounter": 0, + "region": { + "#": 1913 + } + }, + [ + { + "#": 1887 + } + ], + [ + { + "#": 1890 + }, + { + "#": 1891 + }, + { + "#": 1892 + }, + { + "#": 1893 + }, + { + "#": 1894 + } + ], + { + "x": 319.00932, + "y": 390.12955, + "index": 0, + "body": { + "#": 1887 + }, + "isInternal": false + }, + { + "x": 271.33241, + "y": 405.69944, + "index": 1, + "body": { + "#": 1887 + }, + "isInternal": false + }, + { + "x": 241.79212, + "y": 365.16732, + "index": 2, + "body": { + "#": 1887 + }, + "isInternal": false + }, + { + "x": 271.21177, + "y": 324.54753, + "index": 3, + "body": { + "#": 1887 + }, + "isInternal": false + }, + { + "x": 318.93476, + "y": 339.9756, + "index": 4, + "body": { + "#": 1887 + }, + "isInternal": false + }, + { + "x": 284.45603, + "y": 365.10389 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.42233, + "y": 0.01899 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00711, + "y": 2.91099 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1902 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1904 + }, + "max": { + "#": 1905 + } + }, + { + "x": 241.77397, + "y": 324.54753 + }, + { + "x": 319.00932, + "y": 408.61233 + }, + { + "x": 284.44945, + "y": 362.19289 + }, + [ + { + "#": 1908 + }, + { + "#": 1909 + }, + { + "#": 1910 + }, + { + "#": 1911 + }, + { + "#": 1912 + } + ], + { + "x": 0.31044, + "y": 0.95059 + }, + { + "x": -0.80814, + "y": 0.58898 + }, + { + "x": -0.80989, + "y": -0.58658 + }, + { + "x": 0.30761, + "y": -0.95151 + }, + { + "x": 1, + "y": -0.00149 + }, + { + "id": "5,6,6,8", + "startCol": 5, + "endCol": 6, + "startRow": 6, + "endRow": 8 + }, + { + "id": 72, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1915 + }, + "angle": -0.00105, + "vertices": { + "#": 1916 + }, + "position": { + "#": 1921 + }, + "force": { + "#": 1922 + }, + "torque": 0, + "positionImpulse": { + "#": 1923 + }, + "constraintImpulse": { + "#": 1924 + }, + "totalContacts": 0, + "speed": 2.88453, + "angularSpeed": 0.00023, + "velocity": { + "#": 1925 + }, + "angularVelocity": -0.00019, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1926 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1927 + }, + "bounds": { + "#": 1929 + }, + "positionPrev": { + "#": 1932 + }, + "anglePrev": -0.00086, + "axes": { + "#": 1933 + }, + "area": 2032.72927, + "mass": 2.03273, + "inverseMass": 0.49195, + "inertia": 6700.37412, + "inverseInertia": 0.00015, + "parent": { + "#": 1914 + }, + "sleepCounter": 0, + "region": { + "#": 1936 + } + }, + [ + { + "#": 1914 + } + ], + [ + { + "#": 1917 + }, + { + "#": 1918 + }, + { + "#": 1919 + }, + { + "#": 1920 + } + ], + { + "x": 317.57353, + "y": 324.42862, + "index": 0, + "body": { + "#": 1914 + }, + "isInternal": false + }, + { + "x": 414.79262, + "y": 324.32624, + "index": 1, + "body": { + "#": 1914 + }, + "isInternal": false + }, + { + "x": 414.81464, + "y": 345.23496, + "index": 2, + "body": { + "#": 1914 + }, + "isInternal": false + }, + { + "x": 317.59555, + "y": 345.33735, + "index": 3, + "body": { + "#": 1914 + }, + "isInternal": false + }, + { + "x": 366.19409, + "y": 334.83179 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00755, + "y": 2.88323 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1928 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1930 + }, + "max": { + "#": 1931 + } + }, + { + "x": 317.54903, + "y": 324.32624 + }, + { + "x": 414.81464, + "y": 348.22177 + }, + { + "x": 366.20052, + "y": 331.94842 + }, + [ + { + "#": 1934 + }, + { + "#": 1935 + } + ], + { + "x": 0.00105, + "y": 1 + }, + { + "x": -1, + "y": 0.00105 + }, + { + "id": "6,8,6,7", + "startCol": 6, + "endCol": 8, + "startRow": 6, + "endRow": 7 + }, + { + "id": 73, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1938 + }, + "angle": -0.00149, + "vertices": { + "#": 1939 + }, + "position": { + "#": 1944 + }, + "force": { + "#": 1945 + }, + "torque": 0, + "positionImpulse": { + "#": 1946 + }, + "constraintImpulse": { + "#": 1947 + }, + "totalContacts": 0, + "speed": 2.86414, + "angularSpeed": 0.0003, + "velocity": { + "#": 1948 + }, + "angularVelocity": -0.00027, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1949 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1950 + }, + "bounds": { + "#": 1952 + }, + "positionPrev": { + "#": 1955 + }, + "anglePrev": -0.00121, + "axes": { + "#": 1956 + }, + "area": 1931.95349, + "mass": 1.93195, + "inverseMass": 0.51761, + "inertia": 4690.99661, + "inverseInertia": 0.00021, + "parent": { + "#": 1937 + }, + "sleepCounter": 0, + "region": { + "#": 1959 + } + }, + [ + { + "#": 1937 + } + ], + [ + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + } + ], + { + "x": 413.93125, + "y": 326.42422, + "index": 0, + "body": { + "#": 1937 + }, + "isInternal": false + }, + { + "x": 495.96597, + "y": 326.30191, + "index": 1, + "body": { + "#": 1937 + }, + "isInternal": false + }, + { + "x": 496.00108, + "y": 349.8523, + "index": 2, + "body": { + "#": 1937 + }, + "isInternal": false + }, + { + "x": 413.96636, + "y": 349.9746, + "index": 3, + "body": { + "#": 1937 + }, + "isInternal": false + }, + { + "x": 454.96616, + "y": 338.13826 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1.23364, + "y": 0.44423 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00403, + "y": 2.8633 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1951 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1953 + }, + "max": { + "#": 1954 + } + }, + { + "x": 413.91536, + "y": 326.30191 + }, + { + "x": 496.00108, + "y": 352.8387 + }, + { + "x": 454.96916, + "y": 335.27494 + }, + [ + { + "#": 1957 + }, + { + "#": 1958 + } + ], + { + "x": 0.00149, + "y": 1 + }, + { + "x": -1, + "y": 0.00149 + }, + { + "id": "8,10,6,7", + "startCol": 8, + "endCol": 10, + "startRow": 6, + "endRow": 7 + }, + { + "id": 74, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1961 + }, + "angle": 0.00135, + "vertices": { + "#": 1962 + }, + "position": { + "#": 1967 + }, + "force": { + "#": 1968 + }, + "torque": 0, + "positionImpulse": { + "#": 1969 + }, + "constraintImpulse": { + "#": 1970 + }, + "totalContacts": 0, + "speed": 2.84895, + "angularSpeed": 0.00019, + "velocity": { + "#": 1971 + }, + "angularVelocity": -0.00018, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1972 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1973 + }, + "bounds": { + "#": 1975 + }, + "positionPrev": { + "#": 1978 + }, + "anglePrev": 0.00153, + "axes": { + "#": 1979 + }, + "area": 2376.31797, + "mass": 2.37632, + "inverseMass": 0.42082, + "inertia": 3764.5915, + "inverseInertia": 0.00027, + "parent": { + "#": 1960 + }, + "sleepCounter": 0, + "region": { + "#": 1982 + } + }, + [ + { + "#": 1960 + } + ], + [ + { + "#": 1963 + }, + { + "#": 1964 + }, + { + "#": 1965 + }, + { + "#": 1966 + } + ], + { + "x": 495.72079, + "y": 315.55302, + "index": 0, + "body": { + "#": 1960 + }, + "isInternal": false + }, + { + "x": 544.462, + "y": 315.61889, + "index": 1, + "body": { + "#": 1960 + }, + "isInternal": false + }, + { + "x": 544.39612, + "y": 364.37258, + "index": 2, + "body": { + "#": 1960 + }, + "isInternal": false + }, + { + "x": 495.65491, + "y": 364.30671, + "index": 3, + "body": { + "#": 1960 + }, + "isInternal": false + }, + { + "x": 520.05845, + "y": 339.9628 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1.38596, + "y": 0.00187 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00135, + "y": 2.8478 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1974 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1976 + }, + "max": { + "#": 1977 + } + }, + { + "x": 495.65489, + "y": 315.55302 + }, + { + "x": 544.462, + "y": 367.22152 + }, + { + "x": 520.05794, + "y": 337.11501 + }, + [ + { + "#": 1980 + }, + { + "#": 1981 + } + ], + { + "x": -0.00135, + "y": 1 + }, + { + "x": -1, + "y": -0.00135 + }, + { + "id": "10,11,6,7", + "startCol": 10, + "endCol": 11, + "startRow": 6, + "endRow": 7 + }, + { + "id": 75, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1984 + }, + "angle": -0.0007, + "vertices": { + "#": 1985 + }, + "position": { + "#": 2012 + }, + "force": { + "#": 2013 + }, + "torque": 0, + "positionImpulse": { + "#": 2014 + }, + "constraintImpulse": { + "#": 2015 + }, + "totalContacts": 0, + "speed": 2.88342, + "angularSpeed": 0.00039, + "velocity": { + "#": 2016 + }, + "angularVelocity": -0.00039, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2017 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2018 + }, + "circleRadius": 47.98573, + "bounds": { + "#": 2020 + }, + "positionPrev": { + "#": 2023 + }, + "anglePrev": -0.00031, + "axes": { + "#": 2024 + }, + "area": 7163.66511, + "mass": 7.16367, + "inverseMass": 0.13959, + "inertia": 32670.7391, + "inverseInertia": 0.00003, + "parent": { + "#": 1983 + }, + "sleepCounter": 0, + "region": { + "#": 2038 + } + }, + [ + { + "#": 1983 + } + ], + [ + { + "#": 1986 + }, + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + }, + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + }, + { + "#": 1996 + }, + { + "#": 1997 + }, + { + "#": 1998 + }, + { + "#": 1999 + }, + { + "#": 2000 + }, + { + "#": 2001 + }, + { + "#": 2002 + }, + { + "#": 2003 + }, + { + "#": 2004 + }, + { + "#": 2005 + }, + { + "#": 2006 + }, + { + "#": 2007 + }, + { + "#": 2008 + }, + { + "#": 2009 + }, + { + "#": 2010 + }, + { + "#": 2011 + } + ], + { + "x": 620.33715, + "y": 409.79285, + "index": 0, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 617.57601, + "y": 421.02678, + "index": 1, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 612.20719, + "y": 431.27354, + "index": 2, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 604.54225, + "y": 439.93791, + "index": 3, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 595.02686, + "y": 446.51558, + "index": 4, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 584.21373, + "y": 450.62515, + "index": 5, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 572.73071, + "y": 452.02819, + "index": 6, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 561.24574, + "y": 450.64124, + "index": 7, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 550.42687, + "y": 446.54681, + "index": 8, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 540.90227, + "y": 439.98248, + "index": 9, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 533.22521, + "y": 431.32886, + "index": 10, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 527.84203, + "y": 421.08962, + "index": 11, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 525.06517, + "y": 409.85956, + "index": 12, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 525.05707, + "y": 398.29157, + "index": 13, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 527.8182, + "y": 387.05763, + "index": 14, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 533.18703, + "y": 376.81087, + "index": 15, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 540.85196, + "y": 368.1465, + "index": 16, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 550.36736, + "y": 361.56883, + "index": 17, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 561.18048, + "y": 357.45926, + "index": 18, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 572.6635, + "y": 356.05622, + "index": 19, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 584.14848, + "y": 357.44318, + "index": 20, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 594.96735, + "y": 361.5376, + "index": 21, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 604.49195, + "y": 368.10193, + "index": 22, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 612.16901, + "y": 376.75556, + "index": 23, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 617.55218, + "y": 386.99479, + "index": 24, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 620.32904, + "y": 398.22485, + "index": 25, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 572.69711, + "y": 404.04221 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.64651, + "y": 0.87503 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.04211, + "y": 2.88311 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2019 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2021 + }, + "max": { + "#": 2022 + } + }, + { + "x": 525.01495, + "y": 356.05622 + }, + { + "x": 620.33715, + "y": 454.91131 + }, + { + "x": 572.73922, + "y": 401.15909 + }, + [ + { + "#": 2025 + }, + { + "#": 2026 + }, + { + "#": 2027 + }, + { + "#": 2028 + }, + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + }, + { + "#": 2032 + }, + { + "#": 2033 + }, + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + } + ], + { + "x": -0.9711, + "y": -0.23868 + }, + { + "x": -0.88578, + "y": -0.46411 + }, + { + "x": -0.74898, + "y": -0.66259 + }, + { + "x": -0.56863, + "y": -0.82259 + }, + { + "x": -0.35526, + "y": -0.93477 + }, + { + "x": -0.12128, + "y": -0.99262 + }, + { + "x": 0.11989, + "y": -0.99279 + }, + { + "x": 0.35395, + "y": -0.93526 + }, + { + "x": 0.56748, + "y": -0.82339 + }, + { + "x": 0.74805, + "y": -0.66364 + }, + { + "x": 0.88513, + "y": -0.46535 + }, + { + "x": 0.97076, + "y": -0.24004 + }, + { + "x": 1, + "y": -0.0007 + }, + { + "id": "10,12,7,9", + "startCol": 10, + "endCol": 12, + "startRow": 7, + "endRow": 9 + }, + { + "id": 76, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2040 + }, + "angle": -0.00029, + "vertices": { + "#": 2041 + }, + "position": { + "#": 2068 + }, + "force": { + "#": 2069 + }, + "torque": 0, + "positionImpulse": { + "#": 2070 + }, + "constraintImpulse": { + "#": 2071 + }, + "totalContacts": 0, + "speed": 2.85091, + "angularSpeed": 0.00007, + "velocity": { + "#": 2072 + }, + "angularVelocity": -0.00007, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2073 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2074 + }, + "circleRadius": 44.1313, + "bounds": { + "#": 2076 + }, + "positionPrev": { + "#": 2079 + }, + "anglePrev": -0.00022, + "axes": { + "#": 2080 + }, + "area": 6059.04975, + "mass": 6.05905, + "inverseMass": 0.16504, + "inertia": 23372.08438, + "inverseInertia": 0.00004, + "parent": { + "#": 2039 + }, + "sleepCounter": 0, + "region": { + "#": 2094 + } + }, + [ + { + "#": 2039 + } + ], + [ + { + "#": 2042 + }, + { + "#": 2043 + }, + { + "#": 2044 + }, + { + "#": 2045 + }, + { + "#": 2046 + }, + { + "#": 2047 + }, + { + "#": 2048 + }, + { + "#": 2049 + }, + { + "#": 2050 + }, + { + "#": 2051 + }, + { + "#": 2052 + }, + { + "#": 2053 + }, + { + "#": 2054 + }, + { + "#": 2055 + }, + { + "#": 2056 + }, + { + "#": 2057 + }, + { + "#": 2058 + }, + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + }, + { + "#": 2062 + }, + { + "#": 2063 + }, + { + "#": 2064 + }, + { + "#": 2065 + }, + { + "#": 2066 + }, + { + "#": 2067 + } + ], + { + "x": 708.60361, + "y": 418.05337, + "index": 0, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 706.05965, + "y": 428.38412, + "index": 1, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 701.11841, + "y": 437.80557, + "index": 2, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 694.06575, + "y": 445.77164, + "index": 3, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 685.31253, + "y": 451.81721, + "index": 4, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 675.36564, + "y": 455.59313, + "index": 5, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 664.80501, + "y": 456.87823, + "index": 6, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 654.24364, + "y": 455.59933, + "index": 7, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 644.29453, + "y": 451.82926, + "index": 8, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 635.53776, + "y": 445.78883, + "index": 9, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 628.48042, + "y": 437.8269, + "index": 10, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 623.53365, + "y": 428.40835, + "index": 11, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 620.98362, + "y": 418.0791, + "index": 12, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 620.9805, + "y": 407.4411, + "index": 13, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 623.52446, + "y": 397.11035, + "index": 14, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 628.4657, + "y": 387.6889, + "index": 15, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 635.51836, + "y": 379.72283, + "index": 16, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 644.27158, + "y": 373.67726, + "index": 17, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 654.21847, + "y": 369.90134, + "index": 18, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 664.7791, + "y": 368.61624, + "index": 19, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 675.34047, + "y": 369.89514, + "index": 20, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 685.28958, + "y": 373.66521, + "index": 21, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 694.04635, + "y": 379.70564, + "index": 22, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 701.10369, + "y": 387.66757, + "index": 23, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 706.05046, + "y": 397.08612, + "index": 24, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 708.60049, + "y": 407.41537, + "index": 25, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 664.79205, + "y": 412.74723 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.85736, + "y": 0.84164 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.04193, + "y": 2.8506 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2075 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2077 + }, + "max": { + "#": 2078 + } + }, + { + "x": 620.93857, + "y": 368.61624 + }, + { + "x": 708.60361, + "y": 459.72883 + }, + { + "x": 664.83398, + "y": 409.89663 + }, + [ + { + "#": 2081 + }, + { + "#": 2082 + }, + { + "#": 2083 + }, + { + "#": 2084 + }, + { + "#": 2085 + }, + { + "#": 2086 + }, + { + "#": 2087 + }, + { + "#": 2088 + }, + { + "#": 2089 + }, + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + } + ], + { + "x": -0.97099, + "y": -0.23911 + }, + { + "x": -0.88559, + "y": -0.46446 + }, + { + "x": -0.74873, + "y": -0.66288 + }, + { + "x": -0.5683, + "y": -0.82282 + }, + { + "x": -0.3549, + "y": -0.93491 + }, + { + "x": -0.1208, + "y": -0.99268 + }, + { + "x": 0.12021, + "y": -0.99275 + }, + { + "x": 0.35435, + "y": -0.93511 + }, + { + "x": 0.56781, + "y": -0.82316 + }, + { + "x": 0.74834, + "y": -0.66332 + }, + { + "x": 0.88532, + "y": -0.46498 + }, + { + "x": 0.97085, + "y": -0.23968 + }, + { + "x": 1, + "y": -0.00029 + }, + { + "id": "12,14,7,9", + "startCol": 12, + "endCol": 14, + "startRow": 7, + "endRow": 9 + }, + { + "id": 77, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2096 + }, + "angle": -0.02661, + "vertices": { + "#": 2097 + }, + "position": { + "#": 2103 + }, + "force": { + "#": 2104 + }, + "torque": 0, + "positionImpulse": { + "#": 2105 + }, + "constraintImpulse": { + "#": 2106 + }, + "totalContacts": 0, + "speed": 2.83048, + "angularSpeed": 0.00295, + "velocity": { + "#": 2107 + }, + "angularVelocity": -0.00295, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2108 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2109 + }, + "bounds": { + "#": 2111 + }, + "positionPrev": { + "#": 2114 + }, + "anglePrev": -0.02365, + "axes": { + "#": 2115 + }, + "area": 1190.42275, + "mass": 1.19042, + "inverseMass": 0.84004, + "inertia": 917.47021, + "inverseInertia": 0.00109, + "parent": { + "#": 2095 + }, + "sleepCounter": 0, + "region": { + "#": 2121 + } + }, + [ + { + "#": 2095 + } + ], + [ + { + "#": 2098 + }, + { + "#": 2099 + }, + { + "#": 2100 + }, + { + "#": 2101 + }, + { + "#": 2102 + } + ], + { + "x": 706.88203, + "y": 347.7713, + "index": 0, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 682.09116, + "y": 356.56297, + "index": 1, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 666.06845, + "y": 335.70086, + "index": 2, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 680.9588, + "y": 314.01603, + "index": 3, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 706.18222, + "y": 321.47661, + "index": 4, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 688.43632, + "y": 335.10556 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.51713, + "y": 0.0088 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.05729, + "y": 2.8299 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2110 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2112 + }, + "max": { + "#": 2113 + } + }, + { + "x": 666.01117, + "y": 314.01603 + }, + { + "x": 706.88203, + "y": 359.39286 + }, + { + "x": 688.4936, + "y": 332.27567 + }, + [ + { + "#": 2116 + }, + { + "#": 2117 + }, + { + "#": 2118 + }, + { + "#": 2119 + }, + { + "#": 2120 + } + ], + { + "x": 0.33424, + "y": 0.94249 + }, + { + "x": -0.79308, + "y": 0.60911 + }, + { + "x": -0.82436, + "y": -0.56606 + }, + { + "x": 0.28363, + "y": -0.95893 + }, + { + "x": 0.99965, + "y": -0.0266 + }, + { + "id": "13,14,6,7", + "startCol": 13, + "endCol": 14, + "startRow": 6, + "endRow": 7 + }, + { + "id": 78, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2123 + }, + "angle": -0.02762, + "vertices": { + "#": 2124 + }, + "position": { + "#": 2129 + }, + "force": { + "#": 2130 + }, + "torque": 0, + "positionImpulse": { + "#": 2131 + }, + "constraintImpulse": { + "#": 2132 + }, + "totalContacts": 0, + "speed": 2.68236, + "angularSpeed": 0.00283, + "velocity": { + "#": 2133 + }, + "angularVelocity": -0.00283, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2134 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2135 + }, + "bounds": { + "#": 2137 + }, + "positionPrev": { + "#": 2140 + }, + "anglePrev": -0.02479, + "axes": { + "#": 2141 + }, + "area": 2171.01614, + "mass": 2.17102, + "inverseMass": 0.46061, + "inertia": 3142.32114, + "inverseInertia": 0.00032, + "parent": { + "#": 2122 + }, + "sleepCounter": 0, + "region": { + "#": 2144 + } + }, + [ + { + "#": 2122 + } + ], + [ + { + "#": 2125 + }, + { + "#": 2126 + }, + { + "#": 2127 + }, + { + "#": 2128 + } + ], + { + "x": 708.66513, + "y": 322.70607, + "index": 0, + "body": { + "#": 2122 + }, + "isInternal": false + }, + { + "x": 755.4401, + "y": 321.41377, + "index": 1, + "body": { + "#": 2122 + }, + "isInternal": false + }, + { + "x": 756.72145, + "y": 367.79242, + "index": 2, + "body": { + "#": 2122 + }, + "isInternal": false + }, + { + "x": 709.94647, + "y": 369.08472, + "index": 3, + "body": { + "#": 2122 + }, + "isInternal": false + }, + { + "x": 732.69329, + "y": 345.24924 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01753, + "y": 2.6823 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2136 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2138 + }, + "max": { + "#": 2139 + } + }, + { + "x": 708.66513, + "y": 321.41377 + }, + { + "x": 756.72145, + "y": 369.08472 + }, + { + "x": 732.71081, + "y": 342.56694 + }, + [ + { + "#": 2142 + }, + { + "#": 2143 + } + ], + { + "x": 0.02762, + "y": 0.99962 + }, + { + "x": -0.99962, + "y": 0.02762 + }, + { + "id": "14,15,6,7", + "startCol": 14, + "endCol": 15, + "startRow": 6, + "endRow": 7 + }, + { + "id": 79, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2146 + }, + "angle": 0.08516, + "vertices": { + "#": 2147 + }, + "position": { + "#": 2151 + }, + "force": { + "#": 2152 + }, + "torque": 0, + "positionImpulse": { + "#": 2153 + }, + "constraintImpulse": { + "#": 2154 + }, + "totalContacts": 0, + "speed": 2.77457, + "angularSpeed": 0.00835, + "velocity": { + "#": 2155 + }, + "angularVelocity": 0.00835, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2156 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2157 + }, + "bounds": { + "#": 2159 + }, + "positionPrev": { + "#": 2162 + }, + "anglePrev": 0.07681, + "axes": { + "#": 2163 + }, + "area": 1119.99488, + "mass": 1.11999, + "inverseMass": 0.89286, + "inertia": 965.62873, + "inverseInertia": 0.00104, + "parent": { + "#": 2145 + }, + "sleepCounter": 0, + "region": { + "#": 2167 + } + }, + [ + { + "#": 2145 + } + ], + [ + { + "#": 2148 + }, + { + "#": 2149 + }, + { + "#": 2150 + } + ], + { + "x": 885.47683, + "y": 375.04757, + "index": 0, + "body": { + "#": 2145 + }, + "isInternal": false + }, + { + "x": 843.75543, + "y": 345.96437, + "index": 1, + "body": { + "#": 2145 + }, + "isInternal": false + }, + { + "x": 889.80279, + "y": 324.37388, + "index": 2, + "body": { + "#": 2145 + }, + "isInternal": false + }, + { + "x": 873.01168, + "y": 348.46194 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00019, + "y": 2.77457 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2158 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2160 + }, + "max": { + "#": 2161 + } + }, + { + "x": 843.75543, + "y": 324.37388 + }, + { + "x": 889.80279, + "y": 375.04757 + }, + { + "x": 873.01187, + "y": 345.68737 + }, + [ + { + "#": 2164 + }, + { + "#": 2165 + }, + { + "#": 2166 + } + ], + { + "x": -0.57185, + "y": 0.82036 + }, + { + "x": -0.42453, + "y": -0.90542 + }, + { + "x": 0.99638, + "y": 0.08506 + }, + { + "id": "17,18,6,7", + "startCol": 17, + "endCol": 18, + "startRow": 6, + "endRow": 7 + }, + { + "id": 80, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2169 + }, + "angle": -0.00197, + "vertices": { + "#": 2170 + }, + "position": { + "#": 2178 + }, + "force": { + "#": 2179 + }, + "torque": 0, + "positionImpulse": { + "#": 2180 + }, + "constraintImpulse": { + "#": 2181 + }, + "totalContacts": 0, + "speed": 2.88833, + "angularSpeed": 0.0003, + "velocity": { + "#": 2182 + }, + "angularVelocity": -0.0003, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2183 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2184 + }, + "bounds": { + "#": 2186 + }, + "positionPrev": { + "#": 2189 + }, + "anglePrev": -0.00167, + "axes": { + "#": 2190 + }, + "area": 5582.97476, + "mass": 5.58297, + "inverseMass": 0.17912, + "inertia": 19922.24381, + "inverseInertia": 0.00005, + "parent": { + "#": 2168 + }, + "sleepCounter": 0, + "region": { + "#": 2198 + } + }, + [ + { + "#": 2168 + } + ], + [ + { + "#": 2171 + }, + { + "#": 2172 + }, + { + "#": 2173 + }, + { + "#": 2174 + }, + { + "#": 2175 + }, + { + "#": 2176 + }, + { + "#": 2177 + } + ], + { + "x": 972.2467, + "y": 408.21203, + "index": 0, + "body": { + "#": 2168 + }, + "isInternal": false + }, + { + "x": 941.64985, + "y": 432.71129, + "index": 1, + "body": { + "#": 2168 + }, + "isInternal": false + }, + { + "x": 903.41976, + "y": 424.0645, + "index": 2, + "body": { + "#": 2168 + }, + "isInternal": false + }, + { + "x": 886.34329, + "y": 388.78304, + "index": 3, + "body": { + "#": 2168 + }, + "isInternal": false + }, + { + "x": 903.28077, + "y": 353.43464, + "index": 4, + "body": { + "#": 2168 + }, + "isInternal": false + }, + { + "x": 941.47653, + "y": 344.63746, + "index": 5, + "body": { + "#": 2168 + }, + "isInternal": false + }, + { + "x": 972.16956, + "y": 369.01611, + "index": 6, + "body": { + "#": 2168 + }, + "isInternal": false + }, + { + "x": 931.51229, + "y": 388.69415 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.24495, + "y": 0.42391 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00737, + "y": 2.88832 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2185 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2187 + }, + "max": { + "#": 2188 + } + }, + { + "x": 886.34329, + "y": 344.63746 + }, + { + "x": 972.25407, + "y": 435.59961 + }, + { + "x": 931.50492, + "y": 385.80583 + }, + [ + { + "#": 2191 + }, + { + "#": 2192 + }, + { + "#": 2193 + }, + { + "#": 2194 + }, + { + "#": 2195 + }, + { + "#": 2196 + }, + { + "#": 2197 + } + ], + { + "x": 0.62503, + "y": 0.7806 + }, + { + "x": -0.22061, + "y": 0.97536 + }, + { + "x": -0.90011, + "y": 0.43566 + }, + { + "x": -0.90182, + "y": -0.43211 + }, + { + "x": -0.22444, + "y": -0.97449 + }, + { + "x": 0.62196, + "y": -0.78305 + }, + { + "x": 1, + "y": -0.00197 + }, + { + "id": "18,20,7,9", + "startCol": 18, + "endCol": 20, + "startRow": 7, + "endRow": 9 + }, + { + "id": 81, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2200 + }, + "angle": -0.00136, + "vertices": { + "#": 2201 + }, + "position": { + "#": 2208 + }, + "force": { + "#": 2209 + }, + "torque": 0, + "positionImpulse": { + "#": 2210 + }, + "constraintImpulse": { + "#": 2211 + }, + "totalContacts": 0, + "speed": 2.89726, + "angularSpeed": 0.00019, + "velocity": { + "#": 2212 + }, + "angularVelocity": -0.00019, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2213 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2214 + }, + "bounds": { + "#": 2216 + }, + "positionPrev": { + "#": 2219 + }, + "anglePrev": -0.00117, + "axes": { + "#": 2220 + }, + "area": 1427.9506, + "mass": 1.42795, + "inverseMass": 0.7003, + "inertia": 1308.04663, + "inverseInertia": 0.00076, + "parent": { + "#": 2199 + }, + "sleepCounter": 0, + "region": { + "#": 2224 + } + }, + [ + { + "#": 2199 + } + ], + [ + { + "#": 2202 + }, + { + "#": 2203 + }, + { + "#": 2204 + }, + { + "#": 2205 + }, + { + "#": 2206 + }, + { + "#": 2207 + } + ], + { + "x": 985.34688, + "y": 337.97332, + "index": 0, + "body": { + "#": 2199 + }, + "isInternal": false + }, + { + "x": 965.0599, + "y": 349.72301, + "index": 1, + "body": { + "#": 2199 + }, + "isInternal": false + }, + { + "x": 944.74092, + "y": 338.02872, + "index": 2, + "body": { + "#": 2199 + }, + "isInternal": false + }, + { + "x": 944.70894, + "y": 314.58474, + "index": 3, + "body": { + "#": 2199 + }, + "isInternal": false + }, + { + "x": 964.99593, + "y": 302.83505, + "index": 4, + "body": { + "#": 2199 + }, + "isInternal": false + }, + { + "x": 985.3149, + "y": 314.52934, + "index": 5, + "body": { + "#": 2199 + }, + "isInternal": false + }, + { + "x": 965.02791, + "y": 326.27903 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.03867, + "y": 0.06696 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02838, + "y": 2.89712 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2215 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2217 + }, + "max": { + "#": 2218 + } + }, + { + "x": 944.70894, + "y": 302.83505 + }, + { + "x": 985.37527, + "y": 352.62013 + }, + { + "x": 964.99953, + "y": 323.38191 + }, + [ + { + "#": 2221 + }, + { + "#": 2222 + }, + { + "#": 2223 + } + ], + { + "x": -0.50118, + "y": -0.86534 + }, + { + "x": 0.49882, + "y": -0.86671 + }, + { + "x": 1, + "y": -0.00136 + }, + { + "id": "19,20,6,7", + "startCol": 19, + "endCol": 20, + "startRow": 6, + "endRow": 7 + }, + { + "id": 82, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2226 + }, + "angle": -0.00402, + "vertices": { + "#": 2227 + }, + "position": { + "#": 2232 + }, + "force": { + "#": 2233 + }, + "torque": 0, + "positionImpulse": { + "#": 2234 + }, + "constraintImpulse": { + "#": 2235 + }, + "totalContacts": 0, + "speed": 2.9158, + "angularSpeed": 0.00058, + "velocity": { + "#": 2236 + }, + "angularVelocity": -0.00058, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2237 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2238 + }, + "bounds": { + "#": 2240 + }, + "positionPrev": { + "#": 2243 + }, + "anglePrev": -0.00344, + "axes": { + "#": 2244 + }, + "area": 1006.25243, + "mass": 1.00625, + "inverseMass": 0.99379, + "inertia": 697.14617, + "inverseInertia": 0.00143, + "parent": { + "#": 2225 + }, + "sleepCounter": 0, + "region": { + "#": 2247 + } + }, + [ + { + "#": 2225 + } + ], + [ + { + "#": 2228 + }, + { + "#": 2229 + }, + { + "#": 2230 + }, + { + "#": 2231 + } + ], + { + "x": 988.94398, + "y": 321.74027, + "index": 0, + "body": { + "#": 2225 + }, + "isInternal": false + }, + { + "x": 1024.98407, + "y": 321.59548, + "index": 1, + "body": { + "#": 2225 + }, + "isInternal": false + }, + { + "x": 1025.09623, + "y": 349.51539, + "index": 2, + "body": { + "#": 2225 + }, + "isInternal": false + }, + { + "x": 989.05615, + "y": 349.66018, + "index": 3, + "body": { + "#": 2225 + }, + "isInternal": false + }, + { + "x": 1007.02011, + "y": 335.62783 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00365, + "y": 2.9158 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2239 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2241 + }, + "max": { + "#": 2242 + } + }, + { + "x": 988.94398, + "y": 321.59548 + }, + { + "x": 1025.09623, + "y": 349.66018 + }, + { + "x": 1007.02376, + "y": 332.71203 + }, + [ + { + "#": 2245 + }, + { + "#": 2246 + } + ], + { + "x": 0.00402, + "y": 0.99999 + }, + { + "x": -0.99999, + "y": 0.00402 + }, + { + "id": "20,21,6,7", + "startCol": 20, + "endCol": 21, + "startRow": 6, + "endRow": 7 + }, + { + "id": 83, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2249 + }, + "angle": -0.00015, + "vertices": { + "#": 2250 + }, + "position": { + "#": 2258 + }, + "force": { + "#": 2259 + }, + "torque": 0, + "positionImpulse": { + "#": 2260 + }, + "constraintImpulse": { + "#": 2261 + }, + "totalContacts": 0, + "speed": 2.90968, + "angularSpeed": 0.00002, + "velocity": { + "#": 2262 + }, + "angularVelocity": -0.00002, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2263 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2264 + }, + "bounds": { + "#": 2266 + }, + "positionPrev": { + "#": 2269 + }, + "anglePrev": -0.00013, + "axes": { + "#": 2270 + }, + "area": 3210.13014, + "mass": 3.21013, + "inverseMass": 0.31151, + "inertia": 6586.46215, + "inverseInertia": 0.00015, + "parent": { + "#": 2248 + }, + "sleepCounter": 0, + "region": { + "#": 2278 + } + }, + [ + { + "#": 2248 + } + ], + [ + { + "#": 2251 + }, + { + "#": 2252 + }, + { + "#": 2253 + }, + { + "#": 2254 + }, + { + "#": 2255 + }, + { + "#": 2256 + }, + { + "#": 2257 + } + ], + { + "x": 1085.75858, + "y": 396.31723, + "index": 0, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 1062.5244, + "y": 414.85177, + "index": 1, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 1033.5464, + "y": 408.24218, + "index": 2, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 1020.64632, + "y": 381.46615, + "index": 3, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 1033.53824, + "y": 354.68618, + "index": 4, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 1062.51423, + "y": 348.06777, + "index": 5, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 1085.75406, + "y": 366.59523, + "index": 6, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 1054.89745, + "y": 381.46093 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.10115, + "y": 0.95204 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00182, + "y": 2.90968 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2265 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2267 + }, + "max": { + "#": 2268 + } + }, + { + "x": 1020.64632, + "y": 348.06777 + }, + { + "x": 1085.7604, + "y": 417.76145 + }, + { + "x": 1054.89563, + "y": 378.55125 + }, + [ + { + "#": 2271 + }, + { + "#": 2272 + }, + { + "#": 2273 + }, + { + "#": 2274 + }, + { + "#": 2275 + }, + { + "#": 2276 + }, + { + "#": 2277 + } + ], + { + "x": 0.62361, + "y": 0.78173 + }, + { + "x": -0.22238, + "y": 0.97496 + }, + { + "x": -0.9009, + "y": 0.43403 + }, + { + "x": -0.90103, + "y": -0.43376 + }, + { + "x": -0.22268, + "y": -0.97489 + }, + { + "x": 0.62337, + "y": -0.78192 + }, + { + "x": 1, + "y": -0.00015 + }, + { + "id": "21,22,7,8", + "startCol": 21, + "endCol": 22, + "startRow": 7, + "endRow": 8 + }, + { + "id": 84, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2280 + }, + "angle": -0.00022, + "vertices": { + "#": 2281 + }, + "position": { + "#": 2286 + }, + "force": { + "#": 2287 + }, + "torque": 0, + "positionImpulse": { + "#": 2288 + }, + "constraintImpulse": { + "#": 2289 + }, + "totalContacts": 0, + "speed": 2.90817, + "angularSpeed": 0.00004, + "velocity": { + "#": 2290 + }, + "angularVelocity": -0.00004, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2291 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2292 + }, + "bounds": { + "#": 2294 + }, + "positionPrev": { + "#": 2297 + }, + "anglePrev": -0.00018, + "axes": { + "#": 2298 + }, + "area": 1352.92727, + "mass": 1.35293, + "inverseMass": 0.73914, + "inertia": 1256.99094, + "inverseInertia": 0.0008, + "parent": { + "#": 2279 + }, + "sleepCounter": 0, + "region": { + "#": 2301 + } + }, + [ + { + "#": 2279 + } + ], + [ + { + "#": 2282 + }, + { + "#": 2283 + }, + { + "#": 2284 + }, + { + "#": 2285 + } + ], + { + "x": 1085.69655, + "y": 324.44963, + "index": 0, + "body": { + "#": 2279 + }, + "isInternal": false + }, + { + "x": 1127.26586, + "y": 324.44043, + "index": 1, + "body": { + "#": 2279 + }, + "isInternal": false + }, + { + "x": 1127.27307, + "y": 356.98673, + "index": 2, + "body": { + "#": 2279 + }, + "isInternal": false + }, + { + "x": 1085.70375, + "y": 356.99593, + "index": 3, + "body": { + "#": 2279 + }, + "isInternal": false + }, + { + "x": 1106.48481, + "y": 340.71818 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.101, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00109, + "y": 2.90817 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2293 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2295 + }, + "max": { + "#": 2296 + } + }, + { + "x": 1085.69655, + "y": 324.44043 + }, + { + "x": 1127.27415, + "y": 359.9041 + }, + { + "x": 1106.48372, + "y": 337.81001 + }, + [ + { + "#": 2299 + }, + { + "#": 2300 + } + ], + { + "x": 0.00022, + "y": 1 + }, + { + "x": -1, + "y": 0.00022 + }, + { + "id": "22,23,6,7", + "startCol": 22, + "endCol": 23, + "startRow": 6, + "endRow": 7 + }, + { + "id": 85, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2303 + }, + "angle": 0.05563, + "vertices": { + "#": 2304 + }, + "position": { + "#": 2309 + }, + "force": { + "#": 2310 + }, + "torque": 0, + "positionImpulse": { + "#": 2311 + }, + "constraintImpulse": { + "#": 2312 + }, + "totalContacts": 0, + "speed": 2.36311, + "angularSpeed": 0.00644, + "velocity": { + "#": 2313 + }, + "angularVelocity": 0.00725, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2314 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2315 + }, + "bounds": { + "#": 2317 + }, + "positionPrev": { + "#": 2320 + }, + "anglePrev": 0.04827, + "axes": { + "#": 2321 + }, + "area": 1720.12601, + "mass": 1.72013, + "inverseMass": 0.58135, + "inertia": 2025.86246, + "inverseInertia": 0.00049, + "parent": { + "#": 2302 + }, + "sleepCounter": 0, + "region": { + "#": 2324 + } + }, + [ + { + "#": 2302 + } + ], + [ + { + "#": 2305 + }, + { + "#": 2306 + }, + { + "#": 2307 + }, + { + "#": 2308 + } + ], + { + "x": 21.40811, + "y": 414.66625, + "index": 0, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 58.2836, + "y": 416.71965, + "index": 1, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 55.69411, + "y": 463.22233, + "index": 2, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 18.81862, + "y": 461.16892, + "index": 3, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 38.55111, + "y": 438.94429 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.09235, + "y": 2.42322 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2316 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2318 + }, + "max": { + "#": 2319 + } + }, + { + "x": 18.81862, + "y": 414.66625 + }, + { + "x": 58.43428, + "y": 465.58062 + }, + { + "x": 38.46048, + "y": 436.51997 + }, + [ + { + "#": 2322 + }, + { + "#": 2323 + } + ], + { + "x": -0.0556, + "y": 0.99845 + }, + { + "x": -0.99845, + "y": -0.0556 + }, + { + "id": "0,1,8,9", + "startCol": 0, + "endCol": 1, + "startRow": 8, + "endRow": 9 + }, + { + "id": 86, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2326 + }, + "angle": 0.04383, + "vertices": { + "#": 2327 + }, + "position": { + "#": 2332 + }, + "force": { + "#": 2333 + }, + "torque": 0, + "positionImpulse": { + "#": 2334 + }, + "constraintImpulse": { + "#": 2335 + }, + "totalContacts": 0, + "speed": 2.78838, + "angularSpeed": 0.00594, + "velocity": { + "#": 2336 + }, + "angularVelocity": 0.00873, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2337 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2338 + }, + "bounds": { + "#": 2340 + }, + "positionPrev": { + "#": 2343 + }, + "anglePrev": 0.03526, + "axes": { + "#": 2344 + }, + "area": 1250.16168, + "mass": 1.25016, + "inverseMass": 0.7999, + "inertia": 1044.21974, + "inverseInertia": 0.00096, + "parent": { + "#": 2325 + }, + "sleepCounter": 0, + "region": { + "#": 2347 + } + }, + [ + { + "#": 2325 + } + ], + [ + { + "#": 2328 + }, + { + "#": 2329 + }, + { + "#": 2330 + }, + { + "#": 2331 + } + ], + { + "x": 58.16767, + "y": 412.99006, + "index": 0, + "body": { + "#": 2325 + }, + "isInternal": false + }, + { + "x": 94.68002, + "y": 414.59152, + "index": 1, + "body": { + "#": 2325 + }, + "isInternal": false + }, + { + "x": 93.18113, + "y": 448.7652, + "index": 2, + "body": { + "#": 2325 + }, + "isInternal": false + }, + { + "x": 56.66878, + "y": 447.16374, + "index": 3, + "body": { + "#": 2325 + }, + "isInternal": false + }, + { + "x": 75.6744, + "y": 430.87763 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.148, + "y": 2.72478 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2339 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2341 + }, + "max": { + "#": 2342 + } + }, + { + "x": 56.66878, + "y": 412.99006 + }, + { + "x": 94.77566, + "y": 451.55193 + }, + { + "x": 75.52405, + "y": 428.15437 + }, + [ + { + "#": 2345 + }, + { + "#": 2346 + } + ], + { + "x": -0.04382, + "y": 0.99904 + }, + { + "x": -0.99904, + "y": -0.04382 + }, + { + "id": "1,1,8,9", + "startCol": 1, + "endCol": 1, + "startRow": 8, + "endRow": 9 + }, + { + "id": 87, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2349 + }, + "angle": 0.00045, + "vertices": { + "#": 2350 + }, + "position": { + "#": 2356 + }, + "force": { + "#": 2357 + }, + "torque": 0, + "positionImpulse": { + "#": 2358 + }, + "constraintImpulse": { + "#": 2359 + }, + "totalContacts": 0, + "speed": 2.89513, + "angularSpeed": 0.00014, + "velocity": { + "#": 2360 + }, + "angularVelocity": 0.00029, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2361 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2362 + }, + "bounds": { + "#": 2364 + }, + "positionPrev": { + "#": 2367 + }, + "anglePrev": 0.00017, + "axes": { + "#": 2368 + }, + "area": 3092.07523, + "mass": 3.09208, + "inverseMass": 0.32341, + "inertia": 6189.98562, + "inverseInertia": 0.00016, + "parent": { + "#": 2348 + }, + "sleepCounter": 0, + "region": { + "#": 2374 + } + }, + [ + { + "#": 2348 + } + ], + [ + { + "#": 2351 + }, + { + "#": 2352 + }, + { + "#": 2353 + }, + { + "#": 2354 + }, + { + "#": 2355 + } + ], + { + "x": 146.12863, + "y": 485.80817, + "index": 0, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 105.80369, + "y": 498.88987, + "index": 1, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 80.90126, + "y": 464.58156, + "index": 2, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 105.83482, + "y": 430.29588, + "index": 3, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 146.14787, + "y": 443.41417, + "index": 4, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 116.96337, + "y": 464.59793 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -2.45543, + "y": 1.54207 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01328, + "y": 2.88598 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2363 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2365 + }, + "max": { + "#": 2366 + } + }, + { + "x": 80.88948, + "y": 430.29588 + }, + { + "x": 146.14787, + "y": 501.78498 + }, + { + "x": 116.9778, + "y": 461.71163 + }, + [ + { + "#": 2369 + }, + { + "#": 2370 + }, + { + "#": 2371 + }, + { + "#": 2372 + }, + { + "#": 2373 + } + ], + { + "x": 0.30858, + "y": 0.9512 + }, + { + "x": -0.80929, + "y": 0.58741 + }, + { + "x": -0.80875, + "y": -0.58815 + }, + { + "x": 0.30944, + "y": -0.95092 + }, + { + "x": 1, + "y": 0.00045 + }, + { + "id": "1,3,8,10", + "startCol": 1, + "endCol": 3, + "startRow": 8, + "endRow": 10 + }, + { + "id": 88, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2376 + }, + "angle": 0.00055, + "vertices": { + "#": 2377 + }, + "position": { + "#": 2382 + }, + "force": { + "#": 2383 + }, + "torque": 0, + "positionImpulse": { + "#": 2384 + }, + "constraintImpulse": { + "#": 2385 + }, + "totalContacts": 0, + "speed": 2.90476, + "angularSpeed": 0.00024, + "velocity": { + "#": 2386 + }, + "angularVelocity": 0.00029, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2387 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2388 + }, + "bounds": { + "#": 2390 + }, + "positionPrev": { + "#": 2393 + }, + "anglePrev": 0.00025, + "axes": { + "#": 2394 + }, + "area": 1581.4152, + "mass": 1.58142, + "inverseMass": 0.63235, + "inertia": 1771.7086, + "inverseInertia": 0.00056, + "parent": { + "#": 2375 + }, + "sleepCounter": 0, + "region": { + "#": 2397 + } + }, + [ + { + "#": 2375 + } + ], + [ + { + "#": 2378 + }, + { + "#": 2379 + }, + { + "#": 2380 + }, + { + "#": 2381 + } + ], + { + "x": 145.13637, + "y": 420.38851, + "index": 0, + "body": { + "#": 2375 + }, + "isInternal": false + }, + { + "x": 192.55997, + "y": 420.41463, + "index": 1, + "body": { + "#": 2375 + }, + "isInternal": false + }, + { + "x": 192.54161, + "y": 453.7612, + "index": 2, + "body": { + "#": 2375 + }, + "isInternal": false + }, + { + "x": 145.118, + "y": 453.73509, + "index": 3, + "body": { + "#": 2375 + }, + "isInternal": false + }, + { + "x": 168.83899, + "y": 437.07486 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -2.48553, + "y": -0.00074 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00678, + "y": 2.90277 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2389 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2391 + }, + "max": { + "#": 2392 + } + }, + { + "x": 145.11069, + "y": 420.38851 + }, + { + "x": 192.55997, + "y": 456.66595 + }, + { + "x": 168.84741, + "y": 434.17183 + }, + [ + { + "#": 2395 + }, + { + "#": 2396 + } + ], + { + "x": -0.00055, + "y": 1 + }, + { + "x": -1, + "y": -0.00055 + }, + { + "id": "3,4,8,9", + "startCol": 3, + "endCol": 4, + "startRow": 8, + "endRow": 9 + }, + { + "id": 89, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2399 + }, + "angle": -0.00001, + "vertices": { + "#": 2400 + }, + "position": { + "#": 2409 + }, + "force": { + "#": 2410 + }, + "torque": 0, + "positionImpulse": { + "#": 2411 + }, + "constraintImpulse": { + "#": 2412 + }, + "totalContacts": 0, + "speed": 2.91021, + "angularSpeed": 0, + "velocity": { + "#": 2413 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2414 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2415 + }, + "bounds": { + "#": 2417 + }, + "positionPrev": { + "#": 2420 + }, + "anglePrev": -0.00002, + "axes": { + "#": 2421 + }, + "area": 4508.288, + "mass": 4.50829, + "inverseMass": 0.22181, + "inertia": 12968.58039, + "inverseInertia": 0.00008, + "parent": { + "#": 2398 + }, + "sleepCounter": 0, + "region": { + "#": 2426 + } + }, + [ + { + "#": 2398 + } + ], + [ + { + "#": 2401 + }, + { + "#": 2402 + }, + { + "#": 2403 + }, + { + "#": 2404 + }, + { + "#": 2405 + }, + { + "#": 2406 + }, + { + "#": 2407 + }, + { + "#": 2408 + } + ], + { + "x": 264.86949, + "y": 472.59253, + "index": 0, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 243.26268, + "y": 494.19971, + "index": 1, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 212.70668, + "y": 494.19998, + "index": 2, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 191.09949, + "y": 472.59317, + "index": 3, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 191.09923, + "y": 442.03717, + "index": 4, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 212.70604, + "y": 420.42998, + "index": 5, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 243.26204, + "y": 420.42971, + "index": 6, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 264.86923, + "y": 442.03653, + "index": 7, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 227.98436, + "y": 457.31485 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -2.19397, + "y": 0.00485 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01231, + "y": 2.9104 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2416 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2418 + }, + "max": { + "#": 2419 + } + }, + { + "x": 191.08941, + "y": 420.42971 + }, + { + "x": 264.86949, + "y": 497.11017 + }, + { + "x": 227.99609, + "y": 454.40454 + }, + [ + { + "#": 2422 + }, + { + "#": 2423 + }, + { + "#": 2424 + }, + { + "#": 2425 + } + ], + { + "x": -0.70711, + "y": -0.7071 + }, + { + "x": -0.00001, + "y": -1 + }, + { + "x": 0.7071, + "y": -0.70711 + }, + { + "x": 1, + "y": -0.00001 + }, + { + "id": "4,5,8,10", + "startCol": 4, + "endCol": 5, + "startRow": 8, + "endRow": 10 + }, + { + "id": 90, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2428 + }, + "angle": -0.00079, + "vertices": { + "#": 2429 + }, + "position": { + "#": 2434 + }, + "force": { + "#": 2435 + }, + "torque": 0, + "positionImpulse": { + "#": 2436 + }, + "constraintImpulse": { + "#": 2437 + }, + "totalContacts": 0, + "speed": 2.90357, + "angularSpeed": 0.00032, + "velocity": { + "#": 2438 + }, + "angularVelocity": -0.00036, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2439 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2440 + }, + "bounds": { + "#": 2442 + }, + "positionPrev": { + "#": 2445 + }, + "anglePrev": -0.00045, + "axes": { + "#": 2446 + }, + "area": 1039.62673, + "mass": 1.03963, + "inverseMass": 0.96188, + "inertia": 836.76945, + "inverseInertia": 0.0012, + "parent": { + "#": 2427 + }, + "sleepCounter": 0, + "region": { + "#": 2449 + } + }, + [ + { + "#": 2427 + } + ], + [ + { + "#": 2430 + }, + { + "#": 2431 + }, + { + "#": 2432 + }, + { + "#": 2433 + } + ], + { + "x": 263.1691, + "y": 420.4187, + "index": 0, + "body": { + "#": 2427 + }, + "isInternal": false + }, + { + "x": 305.84385, + "y": 420.38518, + "index": 1, + "body": { + "#": 2427 + }, + "isInternal": false + }, + { + "x": 305.86299, + "y": 444.74679, + "index": 2, + "body": { + "#": 2427 + }, + "isInternal": false + }, + { + "x": 263.18824, + "y": 444.78032, + "index": 3, + "body": { + "#": 2427 + }, + "isInternal": false + }, + { + "x": 284.51604, + "y": 432.58275 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -1.6963, + "y": -0.0019 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01594, + "y": 2.90305 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2441 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2443 + }, + "max": { + "#": 2444 + } + }, + { + "x": 263.15397, + "y": 420.38518 + }, + { + "x": 305.86299, + "y": 447.68385 + }, + { + "x": 284.53182, + "y": 429.67998 + }, + [ + { + "#": 2447 + }, + { + "#": 2448 + } + ], + { + "x": 0.00079, + "y": 1 + }, + { + "x": -1, + "y": 0.00079 + }, + { + "id": "5,6,8,9", + "startCol": 5, + "endCol": 6, + "startRow": 8, + "endRow": 9 + }, + { + "id": 91, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2451 + }, + "angle": -0.00018, + "vertices": { + "#": 2452 + }, + "position": { + "#": 2457 + }, + "force": { + "#": 2458 + }, + "torque": 0, + "positionImpulse": { + "#": 2459 + }, + "constraintImpulse": { + "#": 2460 + }, + "totalContacts": 0, + "speed": 2.89644, + "angularSpeed": 0.00001, + "velocity": { + "#": 2461 + }, + "angularVelocity": -0.00005, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2462 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2463 + }, + "bounds": { + "#": 2465 + }, + "positionPrev": { + "#": 2468 + }, + "anglePrev": -0.00015, + "axes": { + "#": 2469 + }, + "area": 1574.87173, + "mass": 1.57487, + "inverseMass": 0.63497, + "inertia": 1691.40994, + "inverseInertia": 0.00059, + "parent": { + "#": 2450 + }, + "sleepCounter": 0, + "region": { + "#": 2472 + } + }, + [ + { + "#": 2450 + } + ], + [ + { + "#": 2453 + }, + { + "#": 2454 + }, + { + "#": 2455 + }, + { + "#": 2456 + } + ], + { + "x": 304.07894, + "y": 420.39109, + "index": 0, + "body": { + "#": 2450 + }, + "isInternal": false + }, + { + "x": 339.74046, + "y": 420.38456, + "index": 1, + "body": { + "#": 2450 + }, + "isInternal": false + }, + { + "x": 339.74855, + "y": 464.54621, + "index": 2, + "body": { + "#": 2450 + }, + "isInternal": false + }, + { + "x": 304.08702, + "y": 464.55274, + "index": 3, + "body": { + "#": 2450 + }, + "isInternal": false + }, + { + "x": 321.91374, + "y": 442.46865 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -1.14956, + "y": 0.00003 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01513, + "y": 2.89458 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2464 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2466 + }, + "max": { + "#": 2467 + } + }, + { + "x": 304.06327, + "y": 420.38456 + }, + { + "x": 339.74855, + "y": 467.44914 + }, + { + "x": 321.92847, + "y": 439.57394 + }, + [ + { + "#": 2470 + }, + { + "#": 2471 + } + ], + { + "x": 0.00018, + "y": 1 + }, + { + "x": -1, + "y": 0.00018 + }, + { + "id": "6,7,8,9", + "startCol": 6, + "endCol": 7, + "startRow": 8, + "endRow": 9 + }, + { + "id": 92, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2474 + }, + "angle": 0.0003, + "vertices": { + "#": 2475 + }, + "position": { + "#": 2480 + }, + "force": { + "#": 2481 + }, + "torque": 0, + "positionImpulse": { + "#": 2482 + }, + "constraintImpulse": { + "#": 2483 + }, + "totalContacts": 0, + "speed": 2.89968, + "angularSpeed": 0.00014, + "velocity": { + "#": 2484 + }, + "angularVelocity": 0.00016, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2485 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2486 + }, + "bounds": { + "#": 2488 + }, + "positionPrev": { + "#": 2491 + }, + "anglePrev": 0.00014, + "axes": { + "#": 2492 + }, + "area": 968.38796, + "mass": 0.96839, + "inverseMass": 1.03264, + "inertia": 797.61752, + "inverseInertia": 0.00125, + "parent": { + "#": 2473 + }, + "sleepCounter": 0, + "region": { + "#": 2495 + } + }, + [ + { + "#": 2473 + } + ], + [ + { + "#": 2476 + }, + { + "#": 2477 + }, + { + "#": 2478 + }, + { + "#": 2479 + } + ], + { + "x": 338.0022, + "y": 420.35988, + "index": 0, + "body": { + "#": 2473 + }, + "isInternal": false + }, + { + "x": 382.75387, + "y": 420.37348, + "index": 1, + "body": { + "#": 2473 + }, + "isInternal": false + }, + { + "x": 382.7473, + "y": 442.01263, + "index": 2, + "body": { + "#": 2473 + }, + "isInternal": false + }, + { + "x": 337.99563, + "y": 441.99902, + "index": 3, + "body": { + "#": 2473 + }, + "isInternal": false + }, + { + "x": 360.37475, + "y": 431.18625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01492, + "y": 2.89784 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2487 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2489 + }, + "max": { + "#": 2490 + } + }, + { + "x": 337.97931, + "y": 420.35988 + }, + { + "x": 382.75387, + "y": 444.91226 + }, + { + "x": 360.38891, + "y": 428.28803 + }, + [ + { + "#": 2493 + }, + { + "#": 2494 + } + ], + { + "x": -0.0003, + "y": 1 + }, + { + "x": -1, + "y": -0.0003 + }, + { + "id": "7,7,8,9", + "startCol": 7, + "endCol": 7, + "startRow": 8, + "endRow": 9 + }, + { + "id": 93, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2497 + }, + "angle": 0.00082, + "vertices": { + "#": 2498 + }, + "position": { + "#": 2503 + }, + "force": { + "#": 2504 + }, + "torque": 0, + "positionImpulse": { + "#": 2505 + }, + "constraintImpulse": { + "#": 2506 + }, + "totalContacts": 0, + "speed": 2.90555, + "angularSpeed": 0.00016, + "velocity": { + "#": 2507 + }, + "angularVelocity": 0.00011, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2508 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2509 + }, + "bounds": { + "#": 2511 + }, + "positionPrev": { + "#": 2514 + }, + "anglePrev": 0.00071, + "axes": { + "#": 2515 + }, + "area": 1379.26758, + "mass": 1.37927, + "inverseMass": 0.72502, + "inertia": 1297.38361, + "inverseInertia": 0.00077, + "parent": { + "#": 2496 + }, + "sleepCounter": 0, + "region": { + "#": 2518 + } + }, + [ + { + "#": 2496 + } + ], + [ + { + "#": 2499 + }, + { + "#": 2500 + }, + { + "#": 2501 + }, + { + "#": 2502 + } + ], + { + "x": 381.16386, + "y": 420.40065, + "index": 0, + "body": { + "#": 2496 + }, + "isInternal": false + }, + { + "x": 414.53499, + "y": 420.42801, + "index": 1, + "body": { + "#": 2496 + }, + "isInternal": false + }, + { + "x": 414.50111, + "y": 461.75914, + "index": 2, + "body": { + "#": 2496 + }, + "isInternal": false + }, + { + "x": 381.12998, + "y": 461.73179, + "index": 3, + "body": { + "#": 2496 + }, + "isInternal": false + }, + { + "x": 397.83248, + "y": 441.0799 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.2321, + "y": 0.00086 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.0151, + "y": 2.90397 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2510 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2512 + }, + "max": { + "#": 2513 + } + }, + { + "x": 381.11198, + "y": 420.40065 + }, + { + "x": 414.53499, + "y": 464.66463 + }, + { + "x": 397.84697, + "y": 438.17571 + }, + [ + { + "#": 2516 + }, + { + "#": 2517 + } + ], + { + "x": -0.00082, + "y": 1 + }, + { + "x": -1, + "y": -0.00082 + }, + { + "id": "7,8,8,9", + "startCol": 7, + "endCol": 8, + "startRow": 8, + "endRow": 9 + }, + { + "id": 94, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2520 + }, + "angle": 0, + "vertices": { + "#": 2521 + }, + "position": { + "#": 2528 + }, + "force": { + "#": 2529 + }, + "torque": 0, + "positionImpulse": { + "#": 2530 + }, + "constraintImpulse": { + "#": 2531 + }, + "totalContacts": 0, + "speed": 2.90777, + "angularSpeed": 0.00001, + "velocity": { + "#": 2532 + }, + "angularVelocity": -0.00002, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2533 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2534 + }, + "bounds": { + "#": 2536 + }, + "positionPrev": { + "#": 2539 + }, + "anglePrev": 0.00001, + "axes": { + "#": 2540 + }, + "area": 1475.91406, + "mass": 1.47591, + "inverseMass": 0.67755, + "inertia": 1397.39442, + "inverseInertia": 0.00072, + "parent": { + "#": 2519 + }, + "sleepCounter": 0, + "region": { + "#": 2544 + } + }, + [ + { + "#": 2519 + } + ], + [ + { + "#": 2522 + }, + { + "#": 2523 + }, + { + "#": 2524 + }, + { + "#": 2525 + }, + { + "#": 2526 + }, + { + "#": 2527 + } + ], + { + "x": 454.44721, + "y": 456.19314, + "index": 0, + "body": { + "#": 2519 + }, + "isInternal": false + }, + { + "x": 433.80619, + "y": 468.11111, + "index": 1, + "body": { + "#": 2519 + }, + "isInternal": false + }, + { + "x": 413.16521, + "y": 456.19308, + "index": 2, + "body": { + "#": 2519 + }, + "isInternal": false + }, + { + "x": 413.16524, + "y": 432.35908, + "index": 3, + "body": { + "#": 2519 + }, + "isInternal": false + }, + { + "x": 433.80626, + "y": 420.44111, + "index": 4, + "body": { + "#": 2519 + }, + "isInternal": false + }, + { + "x": 454.44724, + "y": 432.35914, + "index": 5, + "body": { + "#": 2519 + }, + "isInternal": false + }, + { + "x": 433.80622, + "y": 444.27611 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.15946, + "y": 0.00532 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01403, + "y": 2.90602 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2535 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2537 + }, + "max": { + "#": 2538 + } + }, + { + "x": 413.14676, + "y": 420.44111 + }, + { + "x": 454.44724, + "y": 471.01882 + }, + { + "x": 433.82083, + "y": 441.37029 + }, + [ + { + "#": 2541 + }, + { + "#": 2542 + }, + { + "#": 2543 + } + ], + { + "x": -0.50003, + "y": -0.86601 + }, + { + "x": 0.50003, + "y": -0.86601 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,8,9", + "startCol": 8, + "endCol": 9, + "startRow": 8, + "endRow": 9 + }, + { + "id": 95, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2546 + }, + "angle": -0.00041, + "vertices": { + "#": 2547 + }, + "position": { + "#": 2552 + }, + "force": { + "#": 2553 + }, + "torque": 0, + "positionImpulse": { + "#": 2554 + }, + "constraintImpulse": { + "#": 2555 + }, + "totalContacts": 0, + "speed": 2.904, + "angularSpeed": 0.00014, + "velocity": { + "#": 2556 + }, + "angularVelocity": -0.00017, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2557 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2558 + }, + "bounds": { + "#": 2560 + }, + "positionPrev": { + "#": 2563 + }, + "anglePrev": -0.00025, + "axes": { + "#": 2564 + }, + "area": 2731.5257, + "mass": 2.73153, + "inverseMass": 0.3661, + "inertia": 4974.15509, + "inverseInertia": 0.0002, + "parent": { + "#": 2545 + }, + "sleepCounter": 0, + "region": { + "#": 2567 + } + }, + [ + { + "#": 2545 + } + ], + [ + { + "#": 2548 + }, + { + "#": 2549 + }, + { + "#": 2550 + }, + { + "#": 2551 + } + ], + { + "x": 505.6692, + "y": 472.66137, + "index": 0, + "body": { + "#": 2545 + }, + "isInternal": false + }, + { + "x": 453.40521, + "y": 472.68294, + "index": 1, + "body": { + "#": 2545 + }, + "isInternal": false + }, + { + "x": 453.38364, + "y": 420.41894, + "index": 2, + "body": { + "#": 2545 + }, + "isInternal": false + }, + { + "x": 505.64764, + "y": 420.39737, + "index": 3, + "body": { + "#": 2545 + }, + "isInternal": false + }, + { + "x": 479.52642, + "y": 446.54015 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01319, + "y": 2.90174 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2559 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2561 + }, + "max": { + "#": 2562 + } + }, + { + "x": 453.36559, + "y": 420.39737 + }, + { + "x": 505.6692, + "y": 475.58688 + }, + { + "x": 479.53997, + "y": 443.63846 + }, + [ + { + "#": 2565 + }, + { + "#": 2566 + } + ], + { + "x": -0.00041, + "y": -1 + }, + { + "x": 1, + "y": -0.00041 + }, + { + "id": "9,10,8,9", + "startCol": 9, + "endCol": 10, + "startRow": 8, + "endRow": 9 + }, + { + "id": 96, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2569 + }, + "angle": -0.00173, + "vertices": { + "#": 2570 + }, + "position": { + "#": 2577 + }, + "force": { + "#": 2578 + }, + "torque": 0, + "positionImpulse": { + "#": 2579 + }, + "constraintImpulse": { + "#": 2580 + }, + "totalContacts": 0, + "speed": 2.89554, + "angularSpeed": 0.00023, + "velocity": { + "#": 2581 + }, + "angularVelocity": -0.00014, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2582 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2583 + }, + "bounds": { + "#": 2585 + }, + "positionPrev": { + "#": 2588 + }, + "anglePrev": -0.00158, + "axes": { + "#": 2589 + }, + "area": 1453.96239, + "mass": 1.45396, + "inverseMass": 0.68778, + "inertia": 1356.13589, + "inverseInertia": 0.00074, + "parent": { + "#": 2568 + }, + "sleepCounter": 0, + "region": { + "#": 2593 + } + }, + [ + { + "#": 2568 + } + ], + [ + { + "#": 2571 + }, + { + "#": 2572 + }, + { + "#": 2573 + }, + { + "#": 2574 + }, + { + "#": 2575 + }, + { + "#": 2576 + } + ], + { + "x": 545.93146, + "y": 468.13853, + "index": 0, + "body": { + "#": 2568 + }, + "isInternal": false + }, + { + "x": 525.46498, + "y": 480.003, + "index": 1, + "body": { + "#": 2568 + }, + "isInternal": false + }, + { + "x": 504.95752, + "y": 468.20951, + "index": 2, + "body": { + "#": 2568 + }, + "isInternal": false + }, + { + "x": 504.91654, + "y": 444.55355, + "index": 3, + "body": { + "#": 2568 + }, + "isInternal": false + }, + { + "x": 525.38302, + "y": 432.68907, + "index": 4, + "body": { + "#": 2568 + }, + "isInternal": false + }, + { + "x": 545.89048, + "y": 444.48256, + "index": 5, + "body": { + "#": 2568 + }, + "isInternal": false + }, + { + "x": 525.424, + "y": 456.34604 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.91814, + "y": 1.23227 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00996, + "y": 2.89481 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2584 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2586 + }, + "max": { + "#": 2587 + } + }, + { + "x": 504.90135, + "y": 432.68907 + }, + { + "x": 545.93146, + "y": 482.89851 + }, + { + "x": 525.43463, + "y": 453.45133 + }, + [ + { + "#": 2590 + }, + { + "#": 2591 + }, + { + "#": 2592 + } + ], + { + "x": -0.50153, + "y": -0.86514 + }, + { + "x": 0.49853, + "y": -0.86688 + }, + { + "x": 1, + "y": -0.00173 + }, + { + "id": "10,11,8,9", + "startCol": 10, + "endCol": 11, + "startRow": 8, + "endRow": 9 + }, + { + "id": 97, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2595 + }, + "angle": -0.00035, + "vertices": { + "#": 2596 + }, + "position": { + "#": 2601 + }, + "force": { + "#": 2602 + }, + "torque": 0, + "positionImpulse": { + "#": 2603 + }, + "constraintImpulse": { + "#": 2604 + }, + "totalContacts": 0, + "speed": 2.89436, + "angularSpeed": 0.00011, + "velocity": { + "#": 2605 + }, + "angularVelocity": 0.00012, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2606 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2607 + }, + "bounds": { + "#": 2609 + }, + "positionPrev": { + "#": 2612 + }, + "anglePrev": -0.00047, + "axes": { + "#": 2613 + }, + "area": 4826.0809, + "mass": 4.82608, + "inverseMass": 0.20721, + "inertia": 15527.37124, + "inverseInertia": 0.00006, + "parent": { + "#": 2594 + }, + "sleepCounter": 0, + "region": { + "#": 2616 + } + }, + [ + { + "#": 2594 + } + ], + [ + { + "#": 2597 + }, + { + "#": 2598 + }, + { + "#": 2599 + }, + { + "#": 2600 + } + ], + { + "x": 614.97925, + "y": 532.49596, + "index": 0, + "body": { + "#": 2594 + }, + "isInternal": false + }, + { + "x": 545.50925, + "y": 532.52008, + "index": 1, + "body": { + "#": 2594 + }, + "isInternal": false + }, + { + "x": 545.48513, + "y": 463.05009, + "index": 2, + "body": { + "#": 2594 + }, + "isInternal": false + }, + { + "x": 614.95513, + "y": 463.02597, + "index": 3, + "body": { + "#": 2594 + }, + "isInternal": false + }, + { + "x": 580.23219, + "y": 497.77303 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1.19642, + "y": 2.02521 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01235, + "y": 2.89642 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2608 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2610 + }, + "max": { + "#": 2611 + } + }, + { + "x": 545.46903, + "y": 463.02597 + }, + { + "x": 614.97925, + "y": 535.4144 + }, + { + "x": 580.2447, + "y": 494.87664 + }, + [ + { + "#": 2614 + }, + { + "#": 2615 + } + ], + { + "x": -0.00035, + "y": -1 + }, + { + "x": 1, + "y": -0.00035 + }, + { + "id": "11,12,9,11", + "startCol": 11, + "endCol": 12, + "startRow": 9, + "endRow": 11 + }, + { + "id": 98, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2618 + }, + "angle": 0.0032, + "vertices": { + "#": 2619 + }, + "position": { + "#": 2624 + }, + "force": { + "#": 2625 + }, + "torque": 0, + "positionImpulse": { + "#": 2626 + }, + "constraintImpulse": { + "#": 2627 + }, + "totalContacts": 0, + "speed": 2.90209, + "angularSpeed": 0.00017, + "velocity": { + "#": 2628 + }, + "angularVelocity": 0.00012, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2629 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2630 + }, + "bounds": { + "#": 2632 + }, + "positionPrev": { + "#": 2635 + }, + "anglePrev": 0.00308, + "axes": { + "#": 2636 + }, + "area": 1288.74263, + "mass": 1.28874, + "inverseMass": 0.77595, + "inertia": 1283.52541, + "inverseInertia": 0.00078, + "parent": { + "#": 2617 + }, + "sleepCounter": 0, + "region": { + "#": 2639 + } + }, + [ + { + "#": 2617 + } + ], + [ + { + "#": 2620 + }, + { + "#": 2621 + }, + { + "#": 2622 + }, + { + "#": 2623 + } + ], + { + "x": 614.88057, + "y": 481.42989, + "index": 0, + "body": { + "#": 2617 + }, + "isInternal": false + }, + { + "x": 662.30973, + "y": 481.58185, + "index": 1, + "body": { + "#": 2617 + }, + "isInternal": false + }, + { + "x": 662.22267, + "y": 508.75352, + "index": 2, + "body": { + "#": 2617 + }, + "isInternal": false + }, + { + "x": 614.79352, + "y": 508.60156, + "index": 3, + "body": { + "#": 2617 + }, + "isInternal": false + }, + { + "x": 638.55162, + "y": 495.0917 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1.30096, + "y": 2.58258 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01189, + "y": 2.90358 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2631 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2633 + }, + "max": { + "#": 2634 + } + }, + { + "x": 614.77858, + "y": 481.42989 + }, + { + "x": 662.30973, + "y": 511.65557 + }, + { + "x": 638.56363, + "y": 492.18813 + }, + [ + { + "#": 2637 + }, + { + "#": 2638 + } + ], + { + "x": -0.0032, + "y": 0.99999 + }, + { + "x": -0.99999, + "y": -0.0032 + }, + { + "id": "12,13,9,10", + "startCol": 12, + "endCol": 13, + "startRow": 9, + "endRow": 10 + }, + { + "id": 99, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2641 + }, + "angle": -0.05127, + "vertices": { + "#": 2642 + }, + "position": { + "#": 2648 + }, + "force": { + "#": 2649 + }, + "torque": 0, + "positionImpulse": { + "#": 2650 + }, + "constraintImpulse": { + "#": 2651 + }, + "totalContacts": 0, + "speed": 2.75587, + "angularSpeed": 0.00803, + "velocity": { + "#": 2652 + }, + "angularVelocity": -0.00803, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2653 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2654 + }, + "bounds": { + "#": 2656 + }, + "positionPrev": { + "#": 2659 + }, + "anglePrev": -0.04324, + "axes": { + "#": 2660 + }, + "area": 1779.8838, + "mass": 1.77988, + "inverseMass": 0.56183, + "inertia": 2051.03388, + "inverseInertia": 0.00049, + "parent": { + "#": 2640 + }, + "sleepCounter": 0, + "region": { + "#": 2666 + } + }, + [ + { + "#": 2640 + } + ], + [ + { + "#": 2643 + }, + { + "#": 2644 + }, + { + "#": 2645 + }, + { + "#": 2646 + }, + { + "#": 2647 + } + ], + { + "x": 712.48633, + "y": 495.92096, + "index": 0, + "body": { + "#": 2640 + }, + "isInternal": false + }, + { + "x": 682.44585, + "y": 507.41451, + "index": 1, + "body": { + "#": 2640 + }, + "isInternal": false + }, + { + "x": 662.23122, + "y": 482.39656, + "index": 2, + "body": { + "#": 2640 + }, + "isInternal": false + }, + { + "x": 679.77891, + "y": 455.44089, + "index": 3, + "body": { + "#": 2640 + }, + "isInternal": false + }, + { + "x": 710.83805, + "y": 463.79922, + "index": 4, + "body": { + "#": 2640 + }, + "isInternal": false + }, + { + "x": 689.55606, + "y": 480.99443 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.09862, + "y": 1.54533 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00406, + "y": 2.75587 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2655 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2657 + }, + "max": { + "#": 2658 + } + }, + { + "x": 662.22717, + "y": 455.44089 + }, + { + "x": 712.48633, + "y": 510.17038 + }, + { + "x": 689.56012, + "y": 478.23856 + }, + [ + { + "#": 2661 + }, + { + "#": 2662 + }, + { + "#": 2663 + }, + { + "#": 2664 + }, + { + "#": 2665 + } + ], + { + "x": 0.35734, + "y": 0.93397 + }, + { + "x": -0.77782, + "y": 0.62848 + }, + { + "x": -0.83807, + "y": -0.54557 + }, + { + "x": 0.25986, + "y": -0.96565 + }, + { + "x": 0.99869, + "y": -0.05125 + }, + { + "id": "13,14,9,10", + "startCol": 13, + "endCol": 14, + "startRow": 9, + "endRow": 10 + }, + { + "id": 100, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2668 + }, + "angle": -0.05919, + "vertices": { + "#": 2669 + }, + "position": { + "#": 2674 + }, + "force": { + "#": 2675 + }, + "torque": 0, + "positionImpulse": { + "#": 2676 + }, + "constraintImpulse": { + "#": 2677 + }, + "totalContacts": 0, + "speed": 2.2053, + "angularSpeed": 0.00966, + "velocity": { + "#": 2678 + }, + "angularVelocity": -0.00966, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2679 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2680 + }, + "bounds": { + "#": 2682 + }, + "positionPrev": { + "#": 2685 + }, + "anglePrev": -0.04952, + "axes": { + "#": 2686 + }, + "area": 4428.37012, + "mass": 4.42837, + "inverseMass": 0.22582, + "inertia": 13073.64126, + "inverseInertia": 0.00008, + "parent": { + "#": 2667 + }, + "sleepCounter": 0, + "region": { + "#": 2689 + } + }, + [ + { + "#": 2667 + } + ], + [ + { + "#": 2670 + }, + { + "#": 2671 + }, + { + "#": 2672 + }, + { + "#": 2673 + } + ], + { + "x": 778.6537, + "y": 479.61945, + "index": 0, + "body": { + "#": 2667 + }, + "isInternal": false + }, + { + "x": 712.22423, + "y": 483.55593, + "index": 1, + "body": { + "#": 2667 + }, + "isInternal": false + }, + { + "x": 708.28775, + "y": 417.12646, + "index": 2, + "body": { + "#": 2667 + }, + "isInternal": false + }, + { + "x": 774.71722, + "y": 413.18998, + "index": 3, + "body": { + "#": 2667 + }, + "isInternal": false + }, + { + "x": 743.47073, + "y": 448.37295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.13361, + "y": -0.0037 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.19151, + "y": 2.19697 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2681 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2683 + }, + "max": { + "#": 2684 + } + }, + { + "x": 708.09625, + "y": 413.18998 + }, + { + "x": 778.6537, + "y": 485.75289 + }, + { + "x": 743.66223, + "y": 446.17599 + }, + [ + { + "#": 2687 + }, + { + "#": 2688 + } + ], + { + "x": -0.05915, + "y": -0.99825 + }, + { + "x": 0.99825, + "y": -0.05915 + }, + { + "id": "14,16,8,10", + "startCol": 14, + "endCol": 16, + "startRow": 8, + "endRow": 10 + }, + { + "id": 101, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2691 + }, + "angle": 0.02082, + "vertices": { + "#": 2692 + }, + "position": { + "#": 2719 + }, + "force": { + "#": 2720 + }, + "torque": 0, + "positionImpulse": { + "#": 2721 + }, + "constraintImpulse": { + "#": 2722 + }, + "totalContacts": 0, + "speed": 2.80297, + "angularSpeed": 0.00205, + "velocity": { + "#": 2723 + }, + "angularVelocity": 0.00205, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2724 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2725 + }, + "circleRadius": 35.88632, + "bounds": { + "#": 2727 + }, + "positionPrev": { + "#": 2730 + }, + "anglePrev": 0.01877, + "axes": { + "#": 2731 + }, + "area": 4006.57748, + "mass": 4.00658, + "inverseMass": 0.24959, + "inertia": 10219.63772, + "inverseInertia": 0.0001, + "parent": { + "#": 2690 + }, + "sleepCounter": 0, + "region": { + "#": 2745 + } + }, + [ + { + "#": 2690 + } + ], + [ + { + "#": 2693 + }, + { + "#": 2694 + }, + { + "#": 2695 + }, + { + "#": 2696 + }, + { + "#": 2697 + }, + { + "#": 2698 + }, + { + "#": 2699 + }, + { + "#": 2700 + }, + { + "#": 2701 + }, + { + "#": 2702 + }, + { + "#": 2703 + }, + { + "#": 2704 + }, + { + "#": 2705 + }, + { + "#": 2706 + }, + { + "#": 2707 + }, + { + "#": 2708 + }, + { + "#": 2709 + }, + { + "#": 2710 + }, + { + "#": 2711 + }, + { + "#": 2712 + }, + { + "#": 2713 + }, + { + "#": 2714 + }, + { + "#": 2715 + }, + { + "#": 2716 + }, + { + "#": 2717 + }, + { + "#": 2718 + } + ], + { + "x": 987.84588, + "y": 543.95212, + "index": 0, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 985.60044, + "y": 552.30618, + "index": 1, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 981.42179, + "y": 559.88181, + "index": 2, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 975.55121, + "y": 566.23595, + "index": 3, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 968.33041, + "y": 571.00163, + "index": 4, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 960.17928, + "y": 573.90053, + "index": 5, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 951.57145, + "y": 574.76348, + "index": 6, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 943.00701, + "y": 573.54289, + "index": 7, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 934.98364, + "y": 570.30712, + "index": 8, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 927.96753, + "y": 565.24493, + "index": 9, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 922.3666, + "y": 558.65188, + "index": 10, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 918.50699, + "y": 550.90883, + "index": 11, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 916.61133, + "y": 542.46853, + "index": 12, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 916.79148, + "y": 533.81841, + "index": 13, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 919.03692, + "y": 525.46435, + "index": 14, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 923.21557, + "y": 517.88872, + "index": 15, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 929.08615, + "y": 511.53458, + "index": 16, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 936.30695, + "y": 506.7689, + "index": 17, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 944.45807, + "y": 503.87, + "index": 18, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 953.06591, + "y": 503.00704, + "index": 19, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 961.63035, + "y": 504.22764, + "index": 20, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 969.65371, + "y": 507.46341, + "index": 21, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 976.66983, + "y": 512.5256, + "index": 22, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 982.27076, + "y": 519.11865, + "index": 23, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 986.13037, + "y": 526.86169, + "index": 24, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 988.02603, + "y": 535.302, + "index": 25, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 952.31868, + "y": 538.88526 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 2.0821, + "y": 2.358 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01767, + "y": 2.80291 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2726 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2728 + }, + "max": { + "#": 2729 + } + }, + { + "x": 916.59366, + "y": 503.00704 + }, + { + "x": 988.02603, + "y": 577.5664 + }, + { + "x": 952.33635, + "y": 536.08235 + }, + [ + { + "#": 2732 + }, + { + "#": 2733 + }, + { + "#": 2734 + }, + { + "#": 2735 + }, + { + "#": 2736 + }, + { + "#": 2737 + }, + { + "#": 2738 + }, + { + "#": 2739 + }, + { + "#": 2740 + }, + { + "#": 2741 + }, + { + "#": 2742 + }, + { + "#": 2743 + }, + { + "#": 2744 + } + ], + { + "x": -0.96572, + "y": -0.25957 + }, + { + "x": -0.87563, + "y": -0.48299 + }, + { + "x": -0.7345, + "y": -0.67861 + }, + { + "x": -0.55084, + "y": -0.83461 + }, + { + "x": -0.33508, + "y": -0.94219 + }, + { + "x": -0.09975, + "y": -0.99501 + }, + { + "x": 0.14109, + "y": -0.99 + }, + { + "x": 0.37402, + "y": -0.92742 + }, + { + "x": 0.58511, + "y": -0.81095 + }, + { + "x": 0.76212, + "y": -0.64744 + }, + { + "x": 0.89498, + "y": -0.44611 + }, + { + "x": 0.97569, + "y": -0.21914 + }, + { + "x": 0.99978, + "y": 0.02082 + }, + { + "id": "19,20,10,11", + "startCol": 19, + "endCol": 20, + "startRow": 10, + "endRow": 11 + }, + { + "id": 102, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2747 + }, + "angle": 0.00972, + "vertices": { + "#": 2748 + }, + "position": { + "#": 2753 + }, + "force": { + "#": 2754 + }, + "torque": 0, + "positionImpulse": { + "#": 2755 + }, + "constraintImpulse": { + "#": 2756 + }, + "totalContacts": 0, + "speed": 2.79103, + "angularSpeed": 0.00089, + "velocity": { + "#": 2757 + }, + "angularVelocity": 0.00089, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2758 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2759 + }, + "bounds": { + "#": 2761 + }, + "positionPrev": { + "#": 2764 + }, + "anglePrev": 0.00883, + "axes": { + "#": 2765 + }, + "area": 2513.03702, + "mass": 2.51304, + "inverseMass": 0.39792, + "inertia": 7118.36798, + "inverseInertia": 0.00014, + "parent": { + "#": 2746 + }, + "sleepCounter": 0, + "region": { + "#": 2768 + } + }, + [ + { + "#": 2746 + } + ], + [ + { + "#": 2749 + }, + { + "#": 2750 + }, + { + "#": 2751 + }, + { + "#": 2752 + } + ], + { + "x": 873.27219, + "y": 464.89863, + "index": 0, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 960.87436, + "y": 465.7503, + "index": 1, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 960.59549, + "y": 494.43452, + "index": 2, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 872.99332, + "y": 493.58285, + "index": 3, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 916.93384, + "y": 479.66657 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00006, + "y": 1.66088 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02138, + "y": 2.79095 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2760 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2762 + }, + "max": { + "#": 2763 + } + }, + { + "x": 872.99332, + "y": 464.89863 + }, + { + "x": 960.89574, + "y": 497.22547 + }, + { + "x": 916.91246, + "y": 476.87562 + }, + [ + { + "#": 2766 + }, + { + "#": 2767 + } + ], + { + "x": -0.00972, + "y": 0.99995 + }, + { + "x": -0.99995, + "y": -0.00972 + }, + { + "id": "18,20,9,10", + "startCol": 18, + "endCol": 20, + "startRow": 9, + "endRow": 10 + }, + { + "id": 103, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2770 + }, + "angle": 0.00808, + "vertices": { + "#": 2771 + }, + "position": { + "#": 2776 + }, + "force": { + "#": 2777 + }, + "torque": 0, + "positionImpulse": { + "#": 2778 + }, + "constraintImpulse": { + "#": 2779 + }, + "totalContacts": 0, + "speed": 2.8895, + "angularSpeed": 0.00081, + "velocity": { + "#": 2780 + }, + "angularVelocity": 0.00081, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2781 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2782 + }, + "bounds": { + "#": 2784 + }, + "positionPrev": { + "#": 2787 + }, + "anglePrev": 0.00727, + "axes": { + "#": 2788 + }, + "area": 1629.36666, + "mass": 1.62937, + "inverseMass": 0.61374, + "inertia": 1918.06222, + "inverseInertia": 0.00052, + "parent": { + "#": 2769 + }, + "sleepCounter": 0, + "region": { + "#": 2791 + } + }, + [ + { + "#": 2769 + } + ], + [ + { + "#": 2772 + }, + { + "#": 2773 + }, + { + "#": 2774 + }, + { + "#": 2775 + } + ], + { + "x": 968.27817, + "y": 420.0884, + "index": 0, + "body": { + "#": 2769 + }, + "isInternal": false + }, + { + "x": 1001.22013, + "y": 420.3545, + "index": 1, + "body": { + "#": 2769 + }, + "isInternal": false + }, + { + "x": 1000.8206, + "y": 469.81302, + "index": 2, + "body": { + "#": 2769 + }, + "isInternal": false + }, + { + "x": 967.87864, + "y": 469.54692, + "index": 3, + "body": { + "#": 2769 + }, + "isInternal": false + }, + { + "x": 984.54939, + "y": 444.95071 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.24046, + "y": -0.00033 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01925, + "y": 2.88943 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2783 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2785 + }, + "max": { + "#": 2786 + } + }, + { + "x": 967.87864, + "y": 420.0884 + }, + { + "x": 1001.23938, + "y": 472.70246 + }, + { + "x": 984.53014, + "y": 442.06128 + }, + [ + { + "#": 2789 + }, + { + "#": 2790 + } + ], + { + "x": -0.00808, + "y": 0.99997 + }, + { + "x": -0.99997, + "y": -0.00808 + }, + { + "id": "20,20,8,9", + "startCol": 20, + "endCol": 20, + "startRow": 8, + "endRow": 9 + }, + { + "id": 104, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2793 + }, + "angle": -0.00401, + "vertices": { + "#": 2794 + }, + "position": { + "#": 2802 + }, + "force": { + "#": 2803 + }, + "torque": 0, + "positionImpulse": { + "#": 2804 + }, + "constraintImpulse": { + "#": 2805 + }, + "totalContacts": 0, + "speed": 2.92596, + "angularSpeed": 0.00048, + "velocity": { + "#": 2806 + }, + "angularVelocity": -0.00048, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2807 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2808 + }, + "bounds": { + "#": 2810 + }, + "positionPrev": { + "#": 2813 + }, + "anglePrev": -0.00353, + "axes": { + "#": 2814 + }, + "area": 1316.36654, + "mass": 1.31637, + "inverseMass": 0.75967, + "inertia": 1107.54299, + "inverseInertia": 0.0009, + "parent": { + "#": 2792 + }, + "sleepCounter": 0, + "region": { + "#": 2822 + } + }, + [ + { + "#": 2792 + } + ], + [ + { + "#": 2795 + }, + { + "#": 2796 + }, + { + "#": 2797 + }, + { + "#": 2798 + }, + { + "#": 2799 + }, + { + "#": 2800 + }, + { + "#": 2801 + } + ], + { + "x": 1057.46891, + "y": 451.41702, + "index": 0, + "body": { + "#": 2792 + }, + "isInternal": false + }, + { + "x": 1042.63661, + "y": 463.34359, + "index": 1, + "body": { + "#": 2792 + }, + "isInternal": false + }, + { + "x": 1024.06378, + "y": 459.18304, + "index": 2, + "body": { + "#": 2792 + }, + "isInternal": false + }, + { + "x": 1015.73708, + "y": 442.06829, + "index": 3, + "body": { + "#": 2792 + }, + "isInternal": false + }, + { + "x": 1023.92625, + "y": 424.88731, + "index": 4, + "body": { + "#": 2792 + }, + "isInternal": false + }, + { + "x": 1042.46512, + "y": 420.57794, + "index": 5, + "body": { + "#": 2792 + }, + "isInternal": false + }, + { + "x": 1057.39259, + "y": 432.38517, + "index": 6, + "body": { + "#": 2792 + }, + "isInternal": false + }, + { + "x": 1037.66988, + "y": 441.98034 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.7857, + "y": 0.00098 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02766, + "y": 2.92583 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2809 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2811 + }, + "max": { + "#": 2812 + } + }, + { + "x": 1015.73708, + "y": 420.57794 + }, + { + "x": 1057.49656, + "y": 466.26942 + }, + { + "x": 1037.64222, + "y": 439.05451 + }, + [ + { + "#": 2815 + }, + { + "#": 2816 + }, + { + "#": 2817 + }, + { + "#": 2818 + }, + { + "#": 2819 + }, + { + "#": 2820 + }, + { + "#": 2821 + } + ], + { + "x": 0.62664, + "y": 0.77931 + }, + { + "x": -0.2186, + "y": 0.97582 + }, + { + "x": -0.89922, + "y": 0.43749 + }, + { + "x": -0.9027, + "y": -0.43027 + }, + { + "x": -0.22641, + "y": -0.97403 + }, + { + "x": 0.62037, + "y": -0.78431 + }, + { + "x": 0.99999, + "y": -0.00401 + }, + { + "id": "21,22,8,9", + "startCol": 21, + "endCol": 22, + "startRow": 8, + "endRow": 9 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 2827 + }, + "max": { + "#": 2828 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/car/car-0.json b/test/node/refs/car/car-0.json new file mode 100644 index 00000000..61a4ee8f --- /dev/null +++ b/test/node/refs/car/car-0.json @@ -0,0 +1,4793 @@ +[ + { + "id": 69, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 156 + }, + "composites": { + "#": 157 + }, + "label": "World", + "gravity": { + "#": 492 + }, + "bounds": { + "#": 493 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 112 + }, + { + "#": 134 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 16, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 91 + }, + "angle": 0.1885, + "vertices": { + "#": 92 + }, + "position": { + "#": 97 + }, + "force": { + "#": 98 + }, + "torque": 0, + "positionImpulse": { + "#": 99 + }, + "constraintImpulse": { + "#": 100 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 101 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 102 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 103 + }, + "bounds": { + "#": 105 + }, + "positionPrev": { + "#": 108 + }, + "anglePrev": 0.1885, + "axes": { + "#": 109 + }, + "area": 13000, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 90 + }, + "sleepCounter": 0 + }, + [ + { + "#": 90 + } + ], + [ + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + } + ], + { + "x": -117.36954, + "y": 79.2782, + "index": 0, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 521.11717, + "y": 201.07605, + "index": 1, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 517.36954, + "y": 220.7218, + "index": 2, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": -121.11717, + "y": 98.92395, + "index": 3, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 200, + "y": 150 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 104 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 106 + }, + "max": { + "#": 107 + } + }, + { + "x": -121.11717, + "y": 79.2782 + }, + { + "x": 521.11717, + "y": 220.7218 + }, + { + "x": 200, + "y": 150 + }, + [ + { + "#": 110 + }, + { + "#": 111 + } + ], + { + "x": -0.18738, + "y": 0.98229 + }, + { + "x": -0.98229, + "y": -0.18738 + }, + { + "id": 17, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 113 + }, + "angle": -0.1885, + "vertices": { + "#": 114 + }, + "position": { + "#": 119 + }, + "force": { + "#": 120 + }, + "torque": 0, + "positionImpulse": { + "#": 121 + }, + "constraintImpulse": { + "#": 122 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 123 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 124 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 125 + }, + "bounds": { + "#": 127 + }, + "positionPrev": { + "#": 130 + }, + "anglePrev": -0.1885, + "axes": { + "#": 131 + }, + "area": 13000, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 112 + }, + "sleepCounter": 0 + }, + [ + { + "#": 112 + } + ], + [ + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + } + ], + { + "x": 178.88283, + "y": 401.07605, + "index": 0, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 817.36954, + "y": 279.2782, + "index": 1, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 821.11717, + "y": 298.92395, + "index": 2, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 182.63046, + "y": 420.7218, + "index": 3, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 500, + "y": 350 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 126 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 128 + }, + "max": { + "#": 129 + } + }, + { + "x": 178.88283, + "y": 279.2782 + }, + { + "x": 821.11717, + "y": 420.7218 + }, + { + "x": 500, + "y": 350 + }, + [ + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "x": 0.18738, + "y": 0.98229 + }, + { + "x": -0.98229, + "y": 0.18738 + }, + { + "id": 18, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 135 + }, + "angle": 0.12566, + "vertices": { + "#": 136 + }, + "position": { + "#": 141 + }, + "force": { + "#": 142 + }, + "torque": 0, + "positionImpulse": { + "#": 143 + }, + "constraintImpulse": { + "#": 144 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 145 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 146 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 147 + }, + "bounds": { + "#": 149 + }, + "positionPrev": { + "#": 152 + }, + "anglePrev": 0.12566, + "axes": { + "#": 153 + }, + "area": 14000, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 134 + }, + "sleepCounter": 0 + }, + [ + { + "#": 134 + } + ], + [ + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + } + ], + { + "x": -5.98681, + "y": 526.21222, + "index": 0, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 688.49348, + "y": 613.94548, + "index": 1, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 685.98681, + "y": 633.78778, + "index": 2, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": -8.49348, + "y": 546.05452, + "index": 3, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 340, + "y": 580 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 148 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 150 + }, + "max": { + "#": 151 + } + }, + { + "x": -8.49348, + "y": 526.21222 + }, + { + "x": 688.49348, + "y": 633.78778 + }, + { + "x": 340, + "y": 580 + }, + [ + { + "#": 154 + }, + { + "#": 155 + } + ], + { + "x": -0.12533, + "y": 0.99211 + }, + { + "x": -0.99211, + "y": -0.12533 + }, + [], + [ + { + "#": 158 + }, + { + "#": 328 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 159 + }, + "constraints": { + "#": 318 + }, + "composites": { + "#": 327 + }, + "label": "Car" + }, + [ + { + "#": 160 + }, + { + "#": 208 + }, + { + "#": 263 + } + ], + { + "id": 5, + "type": "body", + "label": "Trapezoid Body", + "parts": { + "#": 161 + }, + "angle": 0, + "vertices": { + "#": 162 + }, + "position": { + "#": 179 + }, + "force": { + "#": 180 + }, + "torque": 0, + "positionImpulse": { + "#": 181 + }, + "constraintImpulse": { + "#": 182 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 183 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 184 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 185 + }, + "bounds": { + "#": 187 + }, + "positionPrev": { + "#": 190 + }, + "anglePrev": 0, + "axes": { + "#": 191 + }, + "area": 2708.0744, + "mass": 2.70807, + "inverseMass": 0.36927, + "inertia": 6441.78106, + "inverseInertia": 0.00016, + "parent": { + "#": 160 + }, + "sleepCounter": 0 + }, + [ + { + "#": 160 + } + ], + [ + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + } + ], + { + "x": 116.50517, + "y": 117.18631, + "index": 0, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 111.46933, + "y": 115.82577, + "index": 1, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 107.80378, + "y": 112.11437, + "index": 2, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 106.50594, + "y": 107.06201, + "index": 3, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 117.07338, + "y": 87.35414, + "index": 4, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 118.72589, + "y": 84.49798, + "index": 5, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 121.21798, + "y": 82.33512, + "index": 6, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 124.27831, + "y": 81.10108, + "index": 7, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 173.3261, + "y": 80.86538, + "index": 8, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 176.58065, + "y": 81.4098, + "index": 9, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 179.48082, + "y": 82.98379, + "index": 10, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 181.71084, + "y": 85.41597, + "index": 11, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 192.6209, + "y": 103.67507, + "index": 12, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 193.11519, + "y": 108.86799, + "index": 13, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 190.92715, + "y": 113.60331, + "index": 14, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 186.65218, + "y": 116.59252, + "index": 15, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 150, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -1 + }, + { + "visible": true, + "sprite": { + "#": 186 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 188 + }, + "max": { + "#": 189 + } + }, + { + "x": 106.50594, + "y": 80.86538 + }, + { + "x": 193.11519, + "y": 117.18631 + }, + { + "x": 150, + "y": 100 + }, + [ + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + } + ], + { + "x": -0.26082, + "y": 0.96539 + }, + { + "x": -0.71149, + "y": 0.7027 + }, + { + "x": -0.96855, + "y": 0.2488 + }, + { + "x": -0.8813, + "y": -0.47256 + }, + { + "x": -0.86557, + "y": -0.50079 + }, + { + "x": -0.65546, + "y": -0.75523 + }, + { + "x": -0.37398, + "y": -0.92744 + }, + { + "x": -0.00481, + "y": -0.99999 + }, + { + "x": 0.16499, + "y": -0.9863 + }, + { + "x": 0.477, + "y": -0.8789 + }, + { + "x": 0.73707, + "y": -0.67581 + }, + { + "x": 0.85843, + "y": -0.51293 + }, + { + "x": 0.9955, + "y": -0.09476 + }, + { + "x": 0.90778, + "y": 0.41945 + }, + { + "x": 0.57304, + "y": 0.81953 + }, + { + "x": 0.00846, + "y": 0.99996 + }, + { + "id": 6, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 209 + }, + "angle": 0, + "vertices": { + "#": 210 + }, + "position": { + "#": 237 + }, + "force": { + "#": 238 + }, + "torque": 0, + "positionImpulse": { + "#": 239 + }, + "constraintImpulse": { + "#": 240 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 241 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.01, + "restitution": 0.5, + "friction": 0.9, + "frictionStatic": 10, + "frictionAir": 0.01, + "collisionFilter": { + "#": 242 + }, + "slop": 0.5, + "timeScale": 1, + "render": { + "#": 243 + }, + "circleRadius": 27, + "bounds": { + "#": 245 + }, + "positionPrev": { + "#": 248 + }, + "anglePrev": 0, + "axes": { + "#": 249 + }, + "area": 2267.9782, + "mass": 22.67978, + "inverseMass": 0.04409, + "inertia": 32746.59604, + "inverseInertia": 0.00003, + "parent": { + "#": 208 + }, + "sleepCounter": 0 + }, + [ + { + "#": 208 + } + ], + [ + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + } + ], + { + "x": 111.803, + "y": 103.254, + "index": 0, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 110.245, + "y": 109.574, + "index": 1, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 107.221, + "y": 115.338, + "index": 2, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 102.904, + "y": 120.21, + "index": 3, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 97.548, + "y": 123.907, + "index": 4, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 91.462, + "y": 126.215, + "index": 5, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 85, + "y": 127, + "index": 6, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 78.538, + "y": 126.215, + "index": 7, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 72.452, + "y": 123.907, + "index": 8, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 67.096, + "y": 120.21, + "index": 9, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 62.779, + "y": 115.338, + "index": 10, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 59.755, + "y": 109.574, + "index": 11, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 58.197, + "y": 103.254, + "index": 12, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 58.197, + "y": 96.746, + "index": 13, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 59.755, + "y": 90.426, + "index": 14, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 62.779, + "y": 84.662, + "index": 15, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 67.096, + "y": 79.79, + "index": 16, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 72.452, + "y": 76.093, + "index": 17, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 78.538, + "y": 73.785, + "index": 18, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 85, + "y": 73, + "index": 19, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 91.462, + "y": 73.785, + "index": 20, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 97.548, + "y": 76.093, + "index": 21, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 102.904, + "y": 79.79, + "index": 22, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 107.221, + "y": 84.662, + "index": 23, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 110.245, + "y": 90.426, + "index": 24, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 111.803, + "y": 96.746, + "index": 25, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 85, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -1 + }, + { + "visible": true, + "sprite": { + "#": 244 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 246 + }, + "max": { + "#": 247 + } + }, + { + "x": 58.197, + "y": 73 + }, + { + "x": 111.803, + "y": 127 + }, + { + "x": 85, + "y": 100 + }, + [ + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88553, + "y": -0.46458 + }, + { + "x": -0.74845, + "y": -0.66319 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.35459, + "y": -0.93502 + }, + { + "x": -0.12059, + "y": -0.9927 + }, + { + "x": 0.12059, + "y": -0.9927 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74845, + "y": -0.66319 + }, + { + "x": 0.88553, + "y": -0.46458 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 264 + }, + "angle": 0, + "vertices": { + "#": 265 + }, + "position": { + "#": 292 + }, + "force": { + "#": 293 + }, + "torque": 0, + "positionImpulse": { + "#": 294 + }, + "constraintImpulse": { + "#": 295 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 296 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.01, + "restitution": 0.5, + "friction": 0.9, + "frictionStatic": 10, + "frictionAir": 0.01, + "collisionFilter": { + "#": 297 + }, + "slop": 0.5, + "timeScale": 1, + "render": { + "#": 298 + }, + "circleRadius": 27, + "bounds": { + "#": 300 + }, + "positionPrev": { + "#": 303 + }, + "anglePrev": 0, + "axes": { + "#": 304 + }, + "area": 2267.9782, + "mass": 22.67978, + "inverseMass": 0.04409, + "inertia": 32746.59604, + "inverseInertia": 0.00003, + "parent": { + "#": 263 + }, + "sleepCounter": 0 + }, + [ + { + "#": 263 + } + ], + [ + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + } + ], + { + "x": 241.803, + "y": 103.254, + "index": 0, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 240.245, + "y": 109.574, + "index": 1, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 237.221, + "y": 115.338, + "index": 2, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 232.904, + "y": 120.21, + "index": 3, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 227.548, + "y": 123.907, + "index": 4, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 221.462, + "y": 126.215, + "index": 5, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 215, + "y": 127, + "index": 6, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 208.538, + "y": 126.215, + "index": 7, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 202.452, + "y": 123.907, + "index": 8, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 197.096, + "y": 120.21, + "index": 9, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 192.779, + "y": 115.338, + "index": 10, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 189.755, + "y": 109.574, + "index": 11, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 188.197, + "y": 103.254, + "index": 12, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 188.197, + "y": 96.746, + "index": 13, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 189.755, + "y": 90.426, + "index": 14, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 192.779, + "y": 84.662, + "index": 15, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 197.096, + "y": 79.79, + "index": 16, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 202.452, + "y": 76.093, + "index": 17, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 208.538, + "y": 73.785, + "index": 18, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 215, + "y": 73, + "index": 19, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 221.462, + "y": 73.785, + "index": 20, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 227.548, + "y": 76.093, + "index": 21, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 232.904, + "y": 79.79, + "index": 22, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 237.221, + "y": 84.662, + "index": 23, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 240.245, + "y": 90.426, + "index": 24, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 241.803, + "y": 96.746, + "index": 25, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 215, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -1 + }, + { + "visible": true, + "sprite": { + "#": 299 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 301 + }, + "max": { + "#": 302 + } + }, + { + "x": 188.197, + "y": 73 + }, + { + "x": 241.803, + "y": 127 + }, + { + "x": 215, + "y": 100 + }, + [ + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88553, + "y": -0.46458 + }, + { + "x": -0.74845, + "y": -0.66319 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.35459, + "y": -0.93502 + }, + { + "x": -0.12059, + "y": -0.9927 + }, + { + "x": 0.12059, + "y": -0.9927 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74845, + "y": -0.66319 + }, + { + "x": 0.88553, + "y": -0.46458 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + [ + { + "#": 319 + }, + { + "#": 323 + } + ], + { + "bodyA": { + "#": 160 + }, + "pointA": { + "#": 320 + }, + "bodyB": { + "#": 208 + }, + "stiffness": 0.5, + "pointB": { + "#": 321 + }, + "length": 0, + "render": { + "#": 322 + }, + "id": 8, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": -65, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 160 + }, + "pointA": { + "#": 324 + }, + "bodyB": { + "#": 263 + }, + "stiffness": 0.5, + "pointB": { + "#": 325 + }, + "length": 0, + "render": { + "#": 326 + }, + "id": 9, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 65, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "id": 10, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 329 + }, + "constraints": { + "#": 482 + }, + "composites": { + "#": 491 + }, + "label": "Car" + }, + [ + { + "#": 330 + }, + { + "#": 378 + }, + { + "#": 430 + } + ], + { + "id": 11, + "type": "body", + "label": "Trapezoid Body", + "parts": { + "#": 331 + }, + "angle": 0, + "vertices": { + "#": 332 + }, + "position": { + "#": 349 + }, + "force": { + "#": 350 + }, + "torque": 0, + "positionImpulse": { + "#": 351 + }, + "constraintImpulse": { + "#": 352 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 353 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 354 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 355 + }, + "bounds": { + "#": 357 + }, + "positionPrev": { + "#": 360 + }, + "anglePrev": 0, + "axes": { + "#": 361 + }, + "area": 2126.18845, + "mass": 2.12619, + "inverseMass": 0.47033, + "inertia": 3956.45726, + "inverseInertia": 0.00025, + "parent": { + "#": 330 + }, + "sleepCounter": 0 + }, + [ + { + "#": 330 + } + ], + [ + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + } + ], + { + "x": 321.48941, + "y": 315.33042, + "index": 0, + "body": { + "#": 330 + }, + "isInternal": false + }, + { + "x": 316.45357, + "y": 313.96988, + "index": 1, + "body": { + "#": 330 + }, + "isInternal": false + }, + { + "x": 312.78802, + "y": 310.25848, + "index": 2, + "body": { + "#": 330 + }, + "isInternal": false + }, + { + "x": 311.49018, + "y": 305.20612, + "index": 3, + "body": { + "#": 330 + }, + "isInternal": false + }, + { + "x": 320.55762, + "y": 289.49825, + "index": 4, + "body": { + "#": 330 + }, + "isInternal": false + }, + { + "x": 322.21013, + "y": 286.64209, + "index": 5, + "body": { + "#": 330 + }, + "isInternal": false + }, + { + "x": 324.70222, + "y": 284.47923, + "index": 6, + "body": { + "#": 330 + }, + "isInternal": false + }, + { + "x": 327.76255, + "y": 283.24519, + "index": 7, + "body": { + "#": 330 + }, + "isInternal": false + }, + { + "x": 369.81034, + "y": 283.00949, + "index": 8, + "body": { + "#": 330 + }, + "isInternal": false + }, + { + "x": 373.06488, + "y": 283.55391, + "index": 9, + "body": { + "#": 330 + }, + "isInternal": false + }, + { + "x": 375.96506, + "y": 285.1279, + "index": 10, + "body": { + "#": 330 + }, + "isInternal": false + }, + { + "x": 378.19508, + "y": 287.56008, + "index": 11, + "body": { + "#": 330 + }, + "isInternal": false + }, + { + "x": 387.60513, + "y": 301.81918, + "index": 12, + "body": { + "#": 330 + }, + "isInternal": false + }, + { + "x": 388.09942, + "y": 307.0121, + "index": 13, + "body": { + "#": 330 + }, + "isInternal": false + }, + { + "x": 385.91139, + "y": 311.74742, + "index": 14, + "body": { + "#": 330 + }, + "isInternal": false + }, + { + "x": 381.63642, + "y": 314.73663, + "index": 15, + "body": { + "#": 330 + }, + "isInternal": false + }, + { + "x": 350, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -2 + }, + { + "visible": true, + "sprite": { + "#": 356 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 358 + }, + "max": { + "#": 359 + } + }, + { + "x": 311.49018, + "y": 283.00949 + }, + { + "x": 388.09942, + "y": 315.33042 + }, + { + "x": 350, + "y": 300 + }, + [ + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + } + ], + { + "x": -0.26082, + "y": 0.96539 + }, + { + "x": -0.71149, + "y": 0.7027 + }, + { + "x": -0.96855, + "y": 0.2488 + }, + { + "x": -0.86606, + "y": -0.49994 + }, + { + "x": -0.86557, + "y": -0.50079 + }, + { + "x": -0.65546, + "y": -0.75523 + }, + { + "x": -0.37398, + "y": -0.92744 + }, + { + "x": -0.00561, + "y": -0.99998 + }, + { + "x": 0.16499, + "y": -0.9863 + }, + { + "x": 0.477, + "y": -0.8789 + }, + { + "x": 0.73707, + "y": -0.67581 + }, + { + "x": 0.83464, + "y": -0.5508 + }, + { + "x": 0.9955, + "y": -0.09476 + }, + { + "x": 0.90778, + "y": 0.41945 + }, + { + "x": 0.57304, + "y": 0.81953 + }, + { + "x": 0.00987, + "y": 0.99995 + }, + { + "id": 12, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 379 + }, + "angle": 0, + "vertices": { + "#": 380 + }, + "position": { + "#": 405 + }, + "force": { + "#": 406 + }, + "torque": 0, + "positionImpulse": { + "#": 407 + }, + "constraintImpulse": { + "#": 408 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 409 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.01, + "restitution": 0.5, + "friction": 0.9, + "frictionStatic": 10, + "frictionAir": 0.01, + "collisionFilter": { + "#": 410 + }, + "slop": 0.5, + "timeScale": 1, + "render": { + "#": 411 + }, + "circleRadius": 24, + "bounds": { + "#": 413 + }, + "positionPrev": { + "#": 416 + }, + "anglePrev": 0, + "axes": { + "#": 417 + }, + "area": 1788.9357, + "mass": 17.88936, + "inverseMass": 0.0559, + "inertia": 20374.22107, + "inverseInertia": 0.00005, + "parent": { + "#": 378 + }, + "sleepCounter": 0 + }, + [ + { + "#": 378 + } + ], + [ + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + } + ], + { + "x": 313.795, + "y": 303.133, + "index": 0, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 312.173, + "y": 309.184, + "index": 1, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 309.04, + "y": 314.61, + "index": 2, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 304.61, + "y": 319.04, + "index": 3, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 299.184, + "y": 322.173, + "index": 4, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 293.133, + "y": 323.795, + "index": 5, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 286.867, + "y": 323.795, + "index": 6, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 280.816, + "y": 322.173, + "index": 7, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 275.39, + "y": 319.04, + "index": 8, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 270.96, + "y": 314.61, + "index": 9, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 267.827, + "y": 309.184, + "index": 10, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 266.205, + "y": 303.133, + "index": 11, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 266.205, + "y": 296.867, + "index": 12, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 267.827, + "y": 290.816, + "index": 13, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 270.96, + "y": 285.39, + "index": 14, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 275.39, + "y": 280.96, + "index": 15, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 280.816, + "y": 277.827, + "index": 16, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 286.867, + "y": 276.205, + "index": 17, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 293.133, + "y": 276.205, + "index": 18, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 299.184, + "y": 277.827, + "index": 19, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 304.61, + "y": 280.96, + "index": 20, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 309.04, + "y": 285.39, + "index": 21, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 312.173, + "y": 290.816, + "index": 22, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 313.795, + "y": 296.867, + "index": 23, + "body": { + "#": 378 + }, + "isInternal": false + }, + { + "x": 290, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -2 + }, + { + "visible": true, + "sprite": { + "#": 412 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 414 + }, + "max": { + "#": 415 + } + }, + { + "x": 266.205, + "y": 276.205 + }, + { + "x": 313.795, + "y": 323.795 + }, + { + "x": 290, + "y": 300 + }, + [ + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + } + ], + { + "x": -0.9659, + "y": -0.25891 + }, + { + "x": -0.866, + "y": -0.50004 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.50004, + "y": -0.866 + }, + { + "x": -0.25891, + "y": -0.9659 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25891, + "y": -0.9659 + }, + { + "x": 0.50004, + "y": -0.866 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.866, + "y": -0.50004 + }, + { + "x": 0.9659, + "y": -0.25891 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 13, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 431 + }, + "angle": 0, + "vertices": { + "#": 432 + }, + "position": { + "#": 457 + }, + "force": { + "#": 458 + }, + "torque": 0, + "positionImpulse": { + "#": 459 + }, + "constraintImpulse": { + "#": 460 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 461 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.01, + "restitution": 0.5, + "friction": 0.9, + "frictionStatic": 10, + "frictionAir": 0.01, + "collisionFilter": { + "#": 462 + }, + "slop": 0.5, + "timeScale": 1, + "render": { + "#": 463 + }, + "circleRadius": 24, + "bounds": { + "#": 465 + }, + "positionPrev": { + "#": 468 + }, + "anglePrev": 0, + "axes": { + "#": 469 + }, + "area": 1788.9357, + "mass": 17.88936, + "inverseMass": 0.0559, + "inertia": 20374.22107, + "inverseInertia": 0.00005, + "parent": { + "#": 430 + }, + "sleepCounter": 0 + }, + [ + { + "#": 430 + } + ], + [ + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + } + ], + { + "x": 433.795, + "y": 303.133, + "index": 0, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 432.173, + "y": 309.184, + "index": 1, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 429.04, + "y": 314.61, + "index": 2, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 424.61, + "y": 319.04, + "index": 3, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 419.184, + "y": 322.173, + "index": 4, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 413.133, + "y": 323.795, + "index": 5, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 406.867, + "y": 323.795, + "index": 6, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 400.816, + "y": 322.173, + "index": 7, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 395.39, + "y": 319.04, + "index": 8, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 390.96, + "y": 314.61, + "index": 9, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 387.827, + "y": 309.184, + "index": 10, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 386.205, + "y": 303.133, + "index": 11, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 386.205, + "y": 296.867, + "index": 12, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 387.827, + "y": 290.816, + "index": 13, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 390.96, + "y": 285.39, + "index": 14, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 395.39, + "y": 280.96, + "index": 15, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 400.816, + "y": 277.827, + "index": 16, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 406.867, + "y": 276.205, + "index": 17, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 413.133, + "y": 276.205, + "index": 18, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 419.184, + "y": 277.827, + "index": 19, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 424.61, + "y": 280.96, + "index": 20, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 429.04, + "y": 285.39, + "index": 21, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 432.173, + "y": 290.816, + "index": 22, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 433.795, + "y": 296.867, + "index": 23, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 410, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -2 + }, + { + "visible": true, + "sprite": { + "#": 464 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 466 + }, + "max": { + "#": 467 + } + }, + { + "x": 386.205, + "y": 276.205 + }, + { + "x": 433.795, + "y": 323.795 + }, + { + "x": 410, + "y": 300 + }, + [ + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + } + ], + { + "x": -0.9659, + "y": -0.25891 + }, + { + "x": -0.866, + "y": -0.50004 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.50004, + "y": -0.866 + }, + { + "x": -0.25891, + "y": -0.9659 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25891, + "y": -0.9659 + }, + { + "x": 0.50004, + "y": -0.866 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.866, + "y": -0.50004 + }, + { + "x": 0.9659, + "y": -0.25891 + }, + { + "x": 1, + "y": 0 + }, + [ + { + "#": 483 + }, + { + "#": 487 + } + ], + { + "bodyA": { + "#": 330 + }, + "pointA": { + "#": 484 + }, + "bodyB": { + "#": 378 + }, + "stiffness": 0.5, + "pointB": { + "#": 485 + }, + "length": 0, + "render": { + "#": 486 + }, + "id": 14, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": -60, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 330 + }, + "pointA": { + "#": 488 + }, + "bodyB": { + "#": 430 + }, + "stiffness": 0.5, + "pointB": { + "#": 489 + }, + "length": 0, + "render": { + "#": 490 + }, + "id": 15, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 60, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 494 + }, + "max": { + "#": 495 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/car/car-10.json b/test/node/refs/car/car-10.json new file mode 100644 index 00000000..06b688f2 --- /dev/null +++ b/test/node/refs/car/car-10.json @@ -0,0 +1,4923 @@ +[ + { + "id": 69, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 163 + }, + "composites": { + "#": 164 + }, + "label": "World", + "gravity": { + "#": 505 + }, + "bounds": { + "#": 506 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + }, + { + "#": 94 + }, + { + "#": 117 + }, + { + "#": 140 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + { + "id": 16, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 95 + }, + "angle": 0.1885, + "vertices": { + "#": 96 + }, + "position": { + "#": 101 + }, + "force": { + "#": 102 + }, + "torque": 0, + "positionImpulse": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 105 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 106 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 107 + }, + "bounds": { + "#": 109 + }, + "positionPrev": { + "#": 112 + }, + "anglePrev": 0.1885, + "axes": { + "#": 113 + }, + "area": 13000, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 94 + }, + "sleepCounter": 0, + "region": { + "#": 116 + } + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + } + ], + { + "x": -117.36954, + "y": 79.2782, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 521.11717, + "y": 201.07605, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 517.36954, + "y": 220.7218, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": -121.11717, + "y": 98.92395, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 200, + "y": 150 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 108 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 110 + }, + "max": { + "#": 111 + } + }, + { + "x": -121.11717, + "y": 79.2782 + }, + { + "x": 521.11717, + "y": 220.7218 + }, + { + "x": 200, + "y": 150 + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": -0.18738, + "y": 0.98229 + }, + { + "x": -0.98229, + "y": -0.18738 + }, + { + "id": "-3,10,1,4", + "startCol": -3, + "endCol": 10, + "startRow": 1, + "endRow": 4 + }, + { + "id": 17, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 118 + }, + "angle": -0.1885, + "vertices": { + "#": 119 + }, + "position": { + "#": 124 + }, + "force": { + "#": 125 + }, + "torque": 0, + "positionImpulse": { + "#": 126 + }, + "constraintImpulse": { + "#": 127 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 128 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 129 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 130 + }, + "bounds": { + "#": 132 + }, + "positionPrev": { + "#": 135 + }, + "anglePrev": -0.1885, + "axes": { + "#": 136 + }, + "area": 13000, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 117 + }, + "sleepCounter": 0, + "region": { + "#": 139 + } + }, + [ + { + "#": 117 + } + ], + [ + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + } + ], + { + "x": 178.88283, + "y": 401.07605, + "index": 0, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 817.36954, + "y": 279.2782, + "index": 1, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 821.11717, + "y": 298.92395, + "index": 2, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 182.63046, + "y": 420.7218, + "index": 3, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 500, + "y": 350 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 131 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 133 + }, + "max": { + "#": 134 + } + }, + { + "x": 178.88283, + "y": 279.2782 + }, + { + "x": 821.11717, + "y": 420.7218 + }, + { + "x": 500, + "y": 350 + }, + [ + { + "#": 137 + }, + { + "#": 138 + } + ], + { + "x": 0.18738, + "y": 0.98229 + }, + { + "x": -0.98229, + "y": 0.18738 + }, + { + "id": "3,17,5,8", + "startCol": 3, + "endCol": 17, + "startRow": 5, + "endRow": 8 + }, + { + "id": 18, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 141 + }, + "angle": 0.12566, + "vertices": { + "#": 142 + }, + "position": { + "#": 147 + }, + "force": { + "#": 148 + }, + "torque": 0, + "positionImpulse": { + "#": 149 + }, + "constraintImpulse": { + "#": 150 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 151 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 152 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 153 + }, + "bounds": { + "#": 155 + }, + "positionPrev": { + "#": 158 + }, + "anglePrev": 0.12566, + "axes": { + "#": 159 + }, + "area": 14000, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 140 + }, + "sleepCounter": 0, + "region": { + "#": 162 + } + }, + [ + { + "#": 140 + } + ], + [ + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + } + ], + { + "x": -5.98681, + "y": 526.21222, + "index": 0, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 688.49348, + "y": 613.94548, + "index": 1, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 685.98681, + "y": 633.78778, + "index": 2, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": -8.49348, + "y": 546.05452, + "index": 3, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 340, + "y": 580 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 154 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 156 + }, + "max": { + "#": 157 + } + }, + { + "x": -8.49348, + "y": 526.21222 + }, + { + "x": 688.49348, + "y": 633.78778 + }, + { + "x": 340, + "y": 580 + }, + [ + { + "#": 160 + }, + { + "#": 161 + } + ], + { + "x": -0.12533, + "y": 0.99211 + }, + { + "x": -0.99211, + "y": -0.12533 + }, + { + "id": "-1,14,10,13", + "startCol": -1, + "endCol": 14, + "startRow": 10, + "endRow": 13 + }, + [], + [ + { + "#": 165 + }, + { + "#": 338 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 166 + }, + "constraints": { + "#": 328 + }, + "composites": { + "#": 337 + }, + "label": "Car" + }, + [ + { + "#": 167 + }, + { + "#": 216 + }, + { + "#": 272 + } + ], + { + "id": 5, + "type": "body", + "label": "Trapezoid Body", + "parts": { + "#": 168 + }, + "angle": 0.08266, + "vertices": { + "#": 169 + }, + "position": { + "#": 186 + }, + "force": { + "#": 187 + }, + "torque": 0, + "positionImpulse": { + "#": 188 + }, + "constraintImpulse": { + "#": 189 + }, + "totalContacts": 0, + "speed": 1.13743, + "angularSpeed": 0.00486, + "velocity": { + "#": 190 + }, + "angularVelocity": 0.00514, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 191 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 192 + }, + "bounds": { + "#": 194 + }, + "positionPrev": { + "#": 197 + }, + "anglePrev": 0.078, + "axes": { + "#": 198 + }, + "area": 2708.0744, + "mass": 2.70807, + "inverseMass": 0.36927, + "inertia": 6441.78106, + "inverseInertia": 0.00016, + "parent": { + "#": 167 + }, + "sleepCounter": 0, + "region": { + "#": 215 + } + }, + [ + { + "#": 167 + } + ], + [ + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + } + ], + { + "x": 119.18406, + "y": 109.39529, + "index": 0, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 114.27775, + "y": 107.62362, + "index": 1, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 110.93114, + "y": 103.62225, + "index": 2, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 110.05488, + "y": 98.47999, + "index": 3, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 122.2134, + "y": 79.7119, + "index": 4, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 124.09608, + "y": 77.00192, + "index": 5, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 126.75824, + "y": 75.05221, + "index": 6, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 129.91001, + "y": 74.07505, + "index": 7, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 178.80979, + "y": 77.88974, + "index": 8, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 182.00828, + "y": 78.70101, + "index": 9, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 184.7686, + "y": 80.50908, + "index": 10, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 186.7902, + "y": 83.11707, + "index": 11, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 196.15545, + "y": 102.21461, + "index": 12, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 196.21931, + "y": 107.43061, + "index": 13, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 193.64778, + "y": 111.96911, + "index": 14, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 189.1406, + "y": 114.59516, + "index": 15, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 153.9835, + "y": 95.03313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.35147, + "y": 0.82832 + }, + { + "category": 1, + "mask": 4294967295, + "group": -1 + }, + { + "visible": true, + "sprite": { + "#": 193 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 195 + }, + "max": { + "#": 196 + } + }, + { + "x": 110.05488, + "y": 74.07505 + }, + { + "x": 196.21931, + "y": 114.59516 + }, + { + "x": 153.63901, + "y": 94.21426 + }, + [ + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + } + ], + { + "x": -0.33964, + "y": 0.94056 + }, + { + "x": -0.76708, + "y": 0.64156 + }, + { + "x": -0.98579, + "y": 0.16798 + }, + { + "x": -0.83928, + "y": -0.54371 + }, + { + "x": -0.82126, + "y": -0.57055 + }, + { + "x": -0.59086, + "y": -0.80677 + }, + { + "x": -0.29613, + "y": -0.95515 + }, + { + "x": 0.07777, + "y": -0.99697 + }, + { + "x": 0.24586, + "y": -0.96931 + }, + { + "x": 0.54794, + "y": -0.83652 + }, + { + "x": 0.79036, + "y": -0.61265 + }, + { + "x": 0.89785, + "y": -0.4403 + }, + { + "x": 0.99993, + "y": -0.01224 + }, + { + "x": 0.87005, + "y": 0.49297 + }, + { + "x": 0.50342, + "y": 0.86404 + }, + { + "x": -0.07413, + "y": 0.99725 + }, + { + "id": "2,4,1,2", + "startCol": 2, + "endCol": 4, + "startRow": 1, + "endRow": 2 + }, + { + "id": 6, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 217 + }, + "angle": -0.04743, + "vertices": { + "#": 218 + }, + "position": { + "#": 245 + }, + "force": { + "#": 246 + }, + "torque": 0, + "positionImpulse": { + "#": 247 + }, + "constraintImpulse": { + "#": 248 + }, + "totalContacts": 0, + "speed": 0.81867, + "angularSpeed": 0.005, + "velocity": { + "#": 249 + }, + "angularVelocity": -0.005, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.01, + "restitution": 0.5, + "friction": 0.9, + "frictionStatic": 10, + "frictionAir": 0.01, + "collisionFilter": { + "#": 250 + }, + "slop": 0.5, + "timeScale": 1, + "render": { + "#": 251 + }, + "circleRadius": 27, + "bounds": { + "#": 253 + }, + "positionPrev": { + "#": 256 + }, + "anglePrev": -0.04243, + "axes": { + "#": 257 + }, + "area": 2267.9782, + "mass": 22.67978, + "inverseMass": 0.04409, + "inertia": 32746.59604, + "inverseInertia": 0.00003, + "parent": { + "#": 216 + }, + "sleepCounter": 0, + "region": { + "#": 271 + } + }, + [ + { + "#": 216 + } + ], + [ + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + } + ], + { + "x": 116.13724, + "y": 91.92949, + "index": 0, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 114.88066, + "y": 98.31626, + "index": 1, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 112.13336, + "y": 104.21716, + "index": 2, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 108.05223, + "y": 109.28837, + "index": 3, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 102.87755, + "y": 113.23517, + "index": 4, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 96.90783, + "y": 115.82915, + "index": 5, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 90.49032, + "y": 116.91967, + "index": 6, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 83.99837, + "y": 116.44195, + "index": 7, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 77.80978, + "y": 114.42512, + "index": 8, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 72.2845, + "y": 110.98623, + "index": 9, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 67.74135, + "y": 106.32441, + "index": 10, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 64.44745, + "y": 100.71028, + "index": 11, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 62.59153, + "y": 94.47126, + "index": 12, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 62.28295, + "y": 87.97058, + "index": 13, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 63.53953, + "y": 81.58381, + "index": 14, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 66.28683, + "y": 75.68291, + "index": 15, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 70.36796, + "y": 70.6117, + "index": 16, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 75.54264, + "y": 66.6649, + "index": 17, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 81.51236, + "y": 64.07092, + "index": 18, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 87.92987, + "y": 62.9804, + "index": 19, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 94.42183, + "y": 63.45812, + "index": 20, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 100.61042, + "y": 65.47495, + "index": 21, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 106.13569, + "y": 68.91384, + "index": 22, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 110.67884, + "y": 73.57566, + "index": 23, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 113.97274, + "y": 79.1898, + "index": 24, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 115.82866, + "y": 85.42881, + "index": 25, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 89.2101, + "y": 89.95004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.33075, + "y": 0.89104 + }, + { + "category": 1, + "mask": 4294967295, + "group": -1 + }, + { + "visible": true, + "sprite": { + "#": 252 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 254 + }, + "max": { + "#": 255 + } + }, + { + "x": 62.28295, + "y": 62.9804 + }, + { + "x": 116.13724, + "y": 116.91967 + }, + { + "x": 88.90226, + "y": 88.88767 + }, + [ + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + } + ], + { + "x": -0.98119, + "y": -0.19305 + }, + { + "x": -0.90656, + "y": -0.42207 + }, + { + "x": -0.77905, + "y": -0.62696 + }, + { + "x": -0.60645, + "y": -0.79512 + }, + { + "x": -0.39853, + "y": -0.91716 + }, + { + "x": -0.16753, + "y": -0.98587 + }, + { + "x": 0.07339, + "y": -0.9973 + }, + { + "x": 0.30986, + "y": -0.95078 + }, + { + "x": 0.52841, + "y": -0.84899 + }, + { + "x": 0.71616, + "y": -0.69793 + }, + { + "x": 0.86251, + "y": -0.50605 + }, + { + "x": 0.95849, + "y": -0.28512 + }, + { + "x": 0.99888, + "y": -0.04742 + }, + { + "id": "1,2,1,2", + "startCol": 1, + "endCol": 2, + "startRow": 1, + "endRow": 2 + }, + { + "id": 7, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 273 + }, + "angle": 0, + "vertices": { + "#": 274 + }, + "position": { + "#": 301 + }, + "force": { + "#": 302 + }, + "torque": 0, + "positionImpulse": { + "#": 303 + }, + "constraintImpulse": { + "#": 304 + }, + "totalContacts": 0, + "speed": 1.20786, + "angularSpeed": 0, + "velocity": { + "#": 305 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.01, + "restitution": 0.5, + "friction": 0.9, + "frictionStatic": 10, + "frictionAir": 0.01, + "collisionFilter": { + "#": 306 + }, + "slop": 0.5, + "timeScale": 1, + "render": { + "#": 307 + }, + "circleRadius": 27, + "bounds": { + "#": 309 + }, + "positionPrev": { + "#": 312 + }, + "anglePrev": 0, + "axes": { + "#": 313 + }, + "area": 2267.9782, + "mass": 22.67978, + "inverseMass": 0.04409, + "inertia": 32746.59604, + "inverseInertia": 0.00003, + "parent": { + "#": 272 + }, + "sleepCounter": 0, + "region": { + "#": 327 + } + }, + [ + { + "#": 272 + } + ], + [ + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + } + ], + { + "x": 245.54803, + "y": 103.66614, + "index": 0, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 243.99003, + "y": 109.98614, + "index": 1, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 240.96603, + "y": 115.75014, + "index": 2, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 236.64903, + "y": 120.62214, + "index": 3, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 231.29303, + "y": 124.31914, + "index": 4, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 225.20703, + "y": 126.62714, + "index": 5, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 218.74503, + "y": 127.41214, + "index": 6, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 212.28303, + "y": 126.62714, + "index": 7, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 206.19703, + "y": 124.31914, + "index": 8, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 200.84103, + "y": 120.62214, + "index": 9, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 196.52403, + "y": 115.75014, + "index": 10, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 193.50003, + "y": 109.98614, + "index": 11, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 191.94203, + "y": 103.66614, + "index": 12, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 191.94203, + "y": 97.15814, + "index": 13, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 193.50003, + "y": 90.83814, + "index": 14, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 196.52403, + "y": 85.07414, + "index": 15, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 200.84103, + "y": 80.20214, + "index": 16, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 206.19703, + "y": 76.50514, + "index": 17, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 212.28303, + "y": 74.19714, + "index": 18, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 218.74503, + "y": 73.41214, + "index": 19, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 225.20703, + "y": 74.19714, + "index": 20, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 231.29303, + "y": 76.50514, + "index": 21, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 236.64903, + "y": 80.20214, + "index": 22, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 240.96603, + "y": 85.07414, + "index": 23, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 243.99003, + "y": 90.83814, + "index": 24, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 245.54803, + "y": 97.15814, + "index": 25, + "body": { + "#": 272 + }, + "isInternal": false + }, + { + "x": 218.74503, + "y": 100.41214 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.32366, + "y": 1.10611 + }, + { + "category": 1, + "mask": 4294967295, + "group": -1 + }, + { + "visible": true, + "sprite": { + "#": 308 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 310 + }, + "max": { + "#": 311 + } + }, + { + "x": 191.94203, + "y": 73.41214 + }, + { + "x": 245.54803, + "y": 127.41214 + }, + { + "x": 218.4144, + "y": 99.29658 + }, + [ + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88553, + "y": -0.46458 + }, + { + "x": -0.74845, + "y": -0.66319 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.35459, + "y": -0.93502 + }, + { + "x": -0.12059, + "y": -0.9927 + }, + { + "x": 0.12059, + "y": -0.9927 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74845, + "y": -0.66319 + }, + { + "x": 0.88553, + "y": -0.46458 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,5,1,2", + "startCol": 3, + "endCol": 5, + "startRow": 1, + "endRow": 2 + }, + [ + { + "#": 329 + }, + { + "#": 333 + } + ], + { + "bodyA": { + "#": 167 + }, + "pointA": { + "#": 330 + }, + "bodyB": { + "#": 216 + }, + "stiffness": 0.5, + "pointB": { + "#": 331 + }, + "length": 0, + "render": { + "#": 332 + }, + "id": 8, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0.08314, + "angleB": -0.04743 + }, + { + "x": -64.77548, + "y": -5.3979 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 167 + }, + "pointA": { + "#": 334 + }, + "bodyB": { + "#": 272 + }, + "stiffness": 0.5, + "pointB": { + "#": 335 + }, + "length": 0, + "render": { + "#": 336 + }, + "id": 9, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0.08314, + "angleB": 0 + }, + { + "x": 64.77548, + "y": 5.3979 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "id": 10, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 339 + }, + "constraints": { + "#": 495 + }, + "composites": { + "#": 504 + }, + "label": "Car" + }, + [ + { + "#": 340 + }, + { + "#": 389 + }, + { + "#": 442 + } + ], + { + "id": 11, + "type": "body", + "label": "Trapezoid Body", + "parts": { + "#": 341 + }, + "angle": 0, + "vertices": { + "#": 342 + }, + "position": { + "#": 359 + }, + "force": { + "#": 360 + }, + "torque": 0, + "positionImpulse": { + "#": 361 + }, + "constraintImpulse": { + "#": 362 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 363 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 364 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 365 + }, + "bounds": { + "#": 367 + }, + "positionPrev": { + "#": 370 + }, + "anglePrev": 0, + "axes": { + "#": 371 + }, + "area": 2126.18845, + "mass": 2.12619, + "inverseMass": 0.47033, + "inertia": 3956.45726, + "inverseInertia": 0.00025, + "parent": { + "#": 340 + }, + "sleepCounter": 0, + "region": { + "#": 388 + } + }, + [ + { + "#": 340 + } + ], + [ + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + } + ], + { + "x": 321.48941, + "y": 333.06617, + "index": 0, + "body": { + "#": 340 + }, + "isInternal": false + }, + { + "x": 316.45357, + "y": 331.70563, + "index": 1, + "body": { + "#": 340 + }, + "isInternal": false + }, + { + "x": 312.78802, + "y": 327.99423, + "index": 2, + "body": { + "#": 340 + }, + "isInternal": false + }, + { + "x": 311.49018, + "y": 322.94187, + "index": 3, + "body": { + "#": 340 + }, + "isInternal": false + }, + { + "x": 320.55762, + "y": 307.23401, + "index": 4, + "body": { + "#": 340 + }, + "isInternal": false + }, + { + "x": 322.21013, + "y": 304.37784, + "index": 5, + "body": { + "#": 340 + }, + "isInternal": false + }, + { + "x": 324.70222, + "y": 302.21499, + "index": 6, + "body": { + "#": 340 + }, + "isInternal": false + }, + { + "x": 327.76255, + "y": 300.98095, + "index": 7, + "body": { + "#": 340 + }, + "isInternal": false + }, + { + "x": 369.81034, + "y": 300.74524, + "index": 8, + "body": { + "#": 340 + }, + "isInternal": false + }, + { + "x": 373.06488, + "y": 301.28967, + "index": 9, + "body": { + "#": 340 + }, + "isInternal": false + }, + { + "x": 375.96506, + "y": 302.86366, + "index": 10, + "body": { + "#": 340 + }, + "isInternal": false + }, + { + "x": 378.19508, + "y": 305.29583, + "index": 11, + "body": { + "#": 340 + }, + "isInternal": false + }, + { + "x": 387.60513, + "y": 319.55494, + "index": 12, + "body": { + "#": 340 + }, + "isInternal": false + }, + { + "x": 388.09942, + "y": 324.74786, + "index": 13, + "body": { + "#": 340 + }, + "isInternal": false + }, + { + "x": 385.91139, + "y": 329.48318, + "index": 14, + "body": { + "#": 340 + }, + "isInternal": false + }, + { + "x": 381.63642, + "y": 332.47238, + "index": 15, + "body": { + "#": 340 + }, + "isInternal": false + }, + { + "x": 350, + "y": 317.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": -2 + }, + { + "visible": true, + "sprite": { + "#": 366 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 368 + }, + "max": { + "#": 369 + } + }, + { + "x": 311.49018, + "y": 300.74524 + }, + { + "x": 388.09942, + "y": 333.06617 + }, + { + "x": 350, + "y": 314.82848 + }, + [ + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + } + ], + { + "x": -0.26082, + "y": 0.96539 + }, + { + "x": -0.71149, + "y": 0.7027 + }, + { + "x": -0.96855, + "y": 0.2488 + }, + { + "x": -0.86606, + "y": -0.49994 + }, + { + "x": -0.86557, + "y": -0.50079 + }, + { + "x": -0.65546, + "y": -0.75523 + }, + { + "x": -0.37398, + "y": -0.92744 + }, + { + "x": -0.00561, + "y": -0.99998 + }, + { + "x": 0.16499, + "y": -0.9863 + }, + { + "x": 0.477, + "y": -0.8789 + }, + { + "x": 0.73707, + "y": -0.67581 + }, + { + "x": 0.83464, + "y": -0.5508 + }, + { + "x": 0.9955, + "y": -0.09476 + }, + { + "x": 0.90778, + "y": 0.41945 + }, + { + "x": 0.57304, + "y": 0.81953 + }, + { + "x": 0.00987, + "y": 0.99995 + }, + { + "id": "6,8,6,6", + "startCol": 6, + "endCol": 8, + "startRow": 6, + "endRow": 6 + }, + { + "id": 12, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 390 + }, + "angle": 0, + "vertices": { + "#": 391 + }, + "position": { + "#": 416 + }, + "force": { + "#": 417 + }, + "torque": 0, + "positionImpulse": { + "#": 418 + }, + "constraintImpulse": { + "#": 419 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 420 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.01, + "restitution": 0.5, + "friction": 0.9, + "frictionStatic": 10, + "frictionAir": 0.01, + "collisionFilter": { + "#": 421 + }, + "slop": 0.5, + "timeScale": 1, + "render": { + "#": 422 + }, + "circleRadius": 24, + "bounds": { + "#": 424 + }, + "positionPrev": { + "#": 427 + }, + "anglePrev": 0, + "axes": { + "#": 428 + }, + "area": 1788.9357, + "mass": 17.88936, + "inverseMass": 0.0559, + "inertia": 20374.22107, + "inverseInertia": 0.00005, + "parent": { + "#": 389 + }, + "sleepCounter": 0, + "region": { + "#": 441 + } + }, + [ + { + "#": 389 + } + ], + [ + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + } + ], + { + "x": 313.795, + "y": 320.86875, + "index": 0, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 312.173, + "y": 326.91975, + "index": 1, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 309.04, + "y": 332.34575, + "index": 2, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 304.61, + "y": 336.77575, + "index": 3, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 299.184, + "y": 339.90875, + "index": 4, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 293.133, + "y": 341.53075, + "index": 5, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 286.867, + "y": 341.53075, + "index": 6, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 280.816, + "y": 339.90875, + "index": 7, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 275.39, + "y": 336.77575, + "index": 8, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 270.96, + "y": 332.34575, + "index": 9, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 267.827, + "y": 326.91975, + "index": 10, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 266.205, + "y": 320.86875, + "index": 11, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 266.205, + "y": 314.60275, + "index": 12, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 267.827, + "y": 308.55175, + "index": 13, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 270.96, + "y": 303.12575, + "index": 14, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 275.39, + "y": 298.69575, + "index": 15, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 280.816, + "y": 295.56275, + "index": 16, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 286.867, + "y": 293.94075, + "index": 17, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 293.133, + "y": 293.94075, + "index": 18, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 299.184, + "y": 295.56275, + "index": 19, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 304.61, + "y": 298.69575, + "index": 20, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 309.04, + "y": 303.12575, + "index": 21, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 312.173, + "y": 308.55175, + "index": 22, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 313.795, + "y": 314.60275, + "index": 23, + "body": { + "#": 389 + }, + "isInternal": false + }, + { + "x": 290, + "y": 317.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": -2 + }, + { + "visible": true, + "sprite": { + "#": 423 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 425 + }, + "max": { + "#": 426 + } + }, + { + "x": 266.205, + "y": 293.94075 + }, + { + "x": 313.795, + "y": 341.53075 + }, + { + "x": 290, + "y": 314.82848 + }, + [ + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + } + ], + { + "x": -0.9659, + "y": -0.25891 + }, + { + "x": -0.866, + "y": -0.50004 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.50004, + "y": -0.866 + }, + { + "x": -0.25891, + "y": -0.9659 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25891, + "y": -0.9659 + }, + { + "x": 0.50004, + "y": -0.866 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.866, + "y": -0.50004 + }, + { + "x": 0.9659, + "y": -0.25891 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,6,7", + "startCol": 5, + "endCol": 6, + "startRow": 6, + "endRow": 7 + }, + { + "id": 13, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 443 + }, + "angle": 0, + "vertices": { + "#": 444 + }, + "position": { + "#": 469 + }, + "force": { + "#": 470 + }, + "torque": 0, + "positionImpulse": { + "#": 471 + }, + "constraintImpulse": { + "#": 472 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 473 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.01, + "restitution": 0.5, + "friction": 0.9, + "frictionStatic": 10, + "frictionAir": 0.01, + "collisionFilter": { + "#": 474 + }, + "slop": 0.5, + "timeScale": 1, + "render": { + "#": 475 + }, + "circleRadius": 24, + "bounds": { + "#": 477 + }, + "positionPrev": { + "#": 480 + }, + "anglePrev": 0, + "axes": { + "#": 481 + }, + "area": 1788.9357, + "mass": 17.88936, + "inverseMass": 0.0559, + "inertia": 20374.22107, + "inverseInertia": 0.00005, + "parent": { + "#": 442 + }, + "sleepCounter": 0, + "region": { + "#": 494 + } + }, + [ + { + "#": 442 + } + ], + [ + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + } + ], + { + "x": 433.795, + "y": 320.86875, + "index": 0, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 432.173, + "y": 326.91975, + "index": 1, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 429.04, + "y": 332.34575, + "index": 2, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 424.61, + "y": 336.77575, + "index": 3, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 419.184, + "y": 339.90875, + "index": 4, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 413.133, + "y": 341.53075, + "index": 5, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 406.867, + "y": 341.53075, + "index": 6, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 400.816, + "y": 339.90875, + "index": 7, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 395.39, + "y": 336.77575, + "index": 8, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 390.96, + "y": 332.34575, + "index": 9, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 387.827, + "y": 326.91975, + "index": 10, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 386.205, + "y": 320.86875, + "index": 11, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 386.205, + "y": 314.60275, + "index": 12, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 387.827, + "y": 308.55175, + "index": 13, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 390.96, + "y": 303.12575, + "index": 14, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 395.39, + "y": 298.69575, + "index": 15, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 400.816, + "y": 295.56275, + "index": 16, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 406.867, + "y": 293.94075, + "index": 17, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 413.133, + "y": 293.94075, + "index": 18, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 419.184, + "y": 295.56275, + "index": 19, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 424.61, + "y": 298.69575, + "index": 20, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 429.04, + "y": 303.12575, + "index": 21, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 432.173, + "y": 308.55175, + "index": 22, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 433.795, + "y": 314.60275, + "index": 23, + "body": { + "#": 442 + }, + "isInternal": false + }, + { + "x": 410, + "y": 317.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": -2 + }, + { + "visible": true, + "sprite": { + "#": 476 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 478 + }, + "max": { + "#": 479 + } + }, + { + "x": 386.205, + "y": 293.94075 + }, + { + "x": 433.795, + "y": 341.53075 + }, + { + "x": 410, + "y": 314.82848 + }, + [ + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + } + ], + { + "x": -0.9659, + "y": -0.25891 + }, + { + "x": -0.866, + "y": -0.50004 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.50004, + "y": -0.866 + }, + { + "x": -0.25891, + "y": -0.9659 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.25891, + "y": -0.9659 + }, + { + "x": 0.50004, + "y": -0.866 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.866, + "y": -0.50004 + }, + { + "x": 0.9659, + "y": -0.25891 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,6,7", + "startCol": 8, + "endCol": 9, + "startRow": 6, + "endRow": 7 + }, + [ + { + "#": 496 + }, + { + "#": 500 + } + ], + { + "bodyA": { + "#": 340 + }, + "pointA": { + "#": 497 + }, + "bodyB": { + "#": 389 + }, + "stiffness": 0.5, + "pointB": { + "#": 498 + }, + "length": 0, + "render": { + "#": 499 + }, + "id": 14, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": -60, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 340 + }, + "pointA": { + "#": 501 + }, + "bodyB": { + "#": 442 + }, + "stiffness": 0.5, + "pointB": { + "#": 502 + }, + "length": 0, + "render": { + "#": 503 + }, + "id": 15, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 60, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 507 + }, + "max": { + "#": 508 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/catapult/catapult-0.json b/test/node/refs/catapult/catapult-0.json new file mode 100644 index 00000000..cc699956 --- /dev/null +++ b/test/node/refs/catapult/catapult-0.json @@ -0,0 +1,3205 @@ +[ + { + "id": 19, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 189 + }, + "composites": { + "#": 198 + }, + "label": "World", + "gravity": { + "#": 335 + }, + "bounds": { + "#": 336 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 112 + }, + { + "#": 134 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 91 + }, + "angle": 0, + "vertices": { + "#": 92 + }, + "position": { + "#": 97 + }, + "force": { + "#": 98 + }, + "torque": 0, + "positionImpulse": { + "#": 99 + }, + "constraintImpulse": { + "#": 100 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 101 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 102 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 103 + }, + "bounds": { + "#": 105 + }, + "positionPrev": { + "#": 108 + }, + "anglePrev": 0, + "axes": { + "#": 109 + }, + "area": 6400, + "mass": 6.4, + "inverseMass": 0.15625, + "inertia": 219306.66667, + "inverseInertia": 0, + "parent": { + "#": 90 + }, + "sleepCounter": 0 + }, + [ + { + "#": 90 + } + ], + [ + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + } + ], + { + "x": 240, + "y": 510, + "index": 0, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 560, + "y": 510, + "index": 1, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 560, + "y": 530, + "index": 2, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 240, + "y": 530, + "index": 3, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 400, + "y": 520 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 104 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 106 + }, + "max": { + "#": 107 + } + }, + { + "x": 240, + "y": 510 + }, + { + "x": 560, + "y": 530 + }, + { + "x": 400, + "y": 520 + }, + [ + { + "#": 110 + }, + { + "#": 111 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 113 + }, + "angle": 0, + "vertices": { + "#": 114 + }, + "position": { + "#": 119 + }, + "force": { + "#": 120 + }, + "torque": 0, + "positionImpulse": { + "#": 121 + }, + "constraintImpulse": { + "#": 122 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 123 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 124 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 125 + }, + "bounds": { + "#": 127 + }, + "positionPrev": { + "#": 130 + }, + "anglePrev": 0, + "axes": { + "#": 131 + }, + "area": 1000, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 112 + }, + "sleepCounter": 0 + }, + [ + { + "#": 112 + } + ], + [ + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + } + ], + { + "x": 240, + "y": 530, + "index": 0, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 260, + "y": 530, + "index": 1, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 260, + "y": 580, + "index": 2, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 240, + "y": 580, + "index": 3, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 250, + "y": 555 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 126 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 128 + }, + "max": { + "#": 129 + } + }, + { + "x": 240, + "y": 530 + }, + { + "x": 260, + "y": 580 + }, + { + "x": 250, + "y": 555 + }, + [ + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 13, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 135 + }, + "angle": 0, + "vertices": { + "#": 136 + }, + "position": { + "#": 163 + }, + "force": { + "#": 164 + }, + "torque": 0, + "positionImpulse": { + "#": 165 + }, + "constraintImpulse": { + "#": 166 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 167 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.005, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 168 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 169 + }, + "circleRadius": 50, + "bounds": { + "#": 171 + }, + "positionPrev": { + "#": 174 + }, + "anglePrev": 0, + "axes": { + "#": 175 + }, + "area": 7777.74467, + "mass": 38.88872, + "inverseMass": 0.02571, + "inertia": 192559.86687, + "inverseInertia": 0.00001, + "parent": { + "#": 134 + }, + "sleepCounter": 0 + }, + [ + { + "#": 134 + } + ], + [ + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + }, + { + "#": 156 + }, + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + } + ], + { + "x": 609.635, + "y": 106.027, + "index": 0, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 606.751, + "y": 117.73, + "index": 1, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 601.149, + "y": 128.403, + "index": 2, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 593.156, + "y": 137.426, + "index": 3, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 583.236, + "y": 144.273, + "index": 4, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 571.966, + "y": 148.547, + "index": 5, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 560, + "y": 150, + "index": 6, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 548.034, + "y": 148.547, + "index": 7, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 536.764, + "y": 144.273, + "index": 8, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 526.844, + "y": 137.426, + "index": 9, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 518.851, + "y": 128.403, + "index": 10, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 513.249, + "y": 117.73, + "index": 11, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 510.365, + "y": 106.027, + "index": 12, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 510.365, + "y": 93.973, + "index": 13, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 513.249, + "y": 82.27, + "index": 14, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 518.851, + "y": 71.597, + "index": 15, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 526.844, + "y": 62.574, + "index": 16, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 536.764, + "y": 55.727, + "index": 17, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 548.034, + "y": 51.453, + "index": 18, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 560, + "y": 50, + "index": 19, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 571.966, + "y": 51.453, + "index": 20, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 583.236, + "y": 55.727, + "index": 21, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 593.156, + "y": 62.574, + "index": 22, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 601.149, + "y": 71.597, + "index": 23, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 606.751, + "y": 82.27, + "index": 24, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 609.635, + "y": 93.973, + "index": 25, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 560, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 170 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 172 + }, + "max": { + "#": 173 + } + }, + { + "x": 510.365, + "y": 50 + }, + { + "x": 609.635, + "y": 150 + }, + { + "x": 560, + "y": 100 + }, + [ + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + } + ], + { + "x": -0.97095, + "y": -0.23927 + }, + { + "x": -0.88544, + "y": -0.46475 + }, + { + "x": -0.74854, + "y": -0.66309 + }, + { + "x": -0.56805, + "y": -0.82299 + }, + { + "x": -0.35459, + "y": -0.93502 + }, + { + "x": -0.12054, + "y": -0.99271 + }, + { + "x": 0.12054, + "y": -0.99271 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.56805, + "y": -0.82299 + }, + { + "x": 0.74854, + "y": -0.66309 + }, + { + "x": 0.88544, + "y": -0.46475 + }, + { + "x": 0.97095, + "y": -0.23927 + }, + { + "x": 1, + "y": 0 + }, + [ + { + "#": 190 + }, + { + "#": 194 + } + ], + { + "bodyA": { + "#": 90 + }, + "pointB": { + "#": 191 + }, + "pointA": { + "#": 192 + }, + "length": 60.82763, + "render": { + "#": 193 + }, + "id": 14, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": 0, + "angleB": { + "#": -1 + } + }, + { + "x": 390, + "y": 580 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 90 + }, + "pointB": { + "#": 195 + }, + "pointA": { + "#": 196 + }, + "length": 60.82763, + "render": { + "#": 197 + }, + "id": 15, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": 0, + "angleB": { + "#": -1 + } + }, + { + "x": 410, + "y": 580 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [ + { + "#": 199 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 200 + }, + "constraints": { + "#": 333 + }, + "composites": { + "#": 334 + }, + "label": "Stack" + }, + [ + { + "#": 201 + }, + { + "#": 223 + }, + { + "#": 245 + }, + { + "#": 267 + }, + { + "#": 289 + }, + { + "#": 311 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 202 + }, + "angle": 0, + "vertices": { + "#": 203 + }, + "position": { + "#": 208 + }, + "force": { + "#": 209 + }, + "torque": 0, + "positionImpulse": { + "#": 210 + }, + "constraintImpulse": { + "#": 211 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 212 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 213 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 214 + }, + "bounds": { + "#": 216 + }, + "positionPrev": { + "#": 219 + }, + "anglePrev": 0, + "axes": { + "#": 220 + }, + "area": 900, + "mass": 0.9, + "inverseMass": 1.11111, + "inertia": 540, + "inverseInertia": 0.00185, + "parent": { + "#": 201 + }, + "sleepCounter": 0 + }, + [ + { + "#": 201 + } + ], + [ + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + } + ], + { + "x": 250, + "y": 255, + "index": 0, + "body": { + "#": 201 + }, + "isInternal": false + }, + { + "x": 280, + "y": 255, + "index": 1, + "body": { + "#": 201 + }, + "isInternal": false + }, + { + "x": 280, + "y": 285, + "index": 2, + "body": { + "#": 201 + }, + "isInternal": false + }, + { + "x": 250, + "y": 285, + "index": 3, + "body": { + "#": 201 + }, + "isInternal": false + }, + { + "x": 265, + "y": 270 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 215 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 217 + }, + "max": { + "#": 218 + } + }, + { + "x": 250, + "y": 255 + }, + { + "x": 280, + "y": 285 + }, + { + "x": 265, + "y": 270 + }, + [ + { + "#": 221 + }, + { + "#": 222 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 224 + }, + "angle": 0, + "vertices": { + "#": 225 + }, + "position": { + "#": 230 + }, + "force": { + "#": 231 + }, + "torque": 0, + "positionImpulse": { + "#": 232 + }, + "constraintImpulse": { + "#": 233 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 234 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 235 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 236 + }, + "bounds": { + "#": 238 + }, + "positionPrev": { + "#": 241 + }, + "anglePrev": 0, + "axes": { + "#": 242 + }, + "area": 900, + "mass": 0.9, + "inverseMass": 1.11111, + "inertia": 540, + "inverseInertia": 0.00185, + "parent": { + "#": 223 + }, + "sleepCounter": 0 + }, + [ + { + "#": 223 + } + ], + [ + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + } + ], + { + "x": 250, + "y": 285, + "index": 0, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 280, + "y": 285, + "index": 1, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 280, + "y": 315, + "index": 2, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 250, + "y": 315, + "index": 3, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 265, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 237 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 239 + }, + "max": { + "#": 240 + } + }, + { + "x": 250, + "y": 285 + }, + { + "x": 280, + "y": 315 + }, + { + "x": 265, + "y": 300 + }, + [ + { + "#": 243 + }, + { + "#": 244 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 246 + }, + "angle": 0, + "vertices": { + "#": 247 + }, + "position": { + "#": 252 + }, + "force": { + "#": 253 + }, + "torque": 0, + "positionImpulse": { + "#": 254 + }, + "constraintImpulse": { + "#": 255 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 256 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 257 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 258 + }, + "bounds": { + "#": 260 + }, + "positionPrev": { + "#": 263 + }, + "anglePrev": 0, + "axes": { + "#": 264 + }, + "area": 900, + "mass": 0.9, + "inverseMass": 1.11111, + "inertia": 540, + "inverseInertia": 0.00185, + "parent": { + "#": 245 + }, + "sleepCounter": 0 + }, + [ + { + "#": 245 + } + ], + [ + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + } + ], + { + "x": 250, + "y": 315, + "index": 0, + "body": { + "#": 245 + }, + "isInternal": false + }, + { + "x": 280, + "y": 315, + "index": 1, + "body": { + "#": 245 + }, + "isInternal": false + }, + { + "x": 280, + "y": 345, + "index": 2, + "body": { + "#": 245 + }, + "isInternal": false + }, + { + "x": 250, + "y": 345, + "index": 3, + "body": { + "#": 245 + }, + "isInternal": false + }, + { + "x": 265, + "y": 330 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 259 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 261 + }, + "max": { + "#": 262 + } + }, + { + "x": 250, + "y": 315 + }, + { + "x": 280, + "y": 345 + }, + { + "x": 265, + "y": 330 + }, + [ + { + "#": 265 + }, + { + "#": 266 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 268 + }, + "angle": 0, + "vertices": { + "#": 269 + }, + "position": { + "#": 274 + }, + "force": { + "#": 275 + }, + "torque": 0, + "positionImpulse": { + "#": 276 + }, + "constraintImpulse": { + "#": 277 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 278 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 279 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 280 + }, + "bounds": { + "#": 282 + }, + "positionPrev": { + "#": 285 + }, + "anglePrev": 0, + "axes": { + "#": 286 + }, + "area": 900, + "mass": 0.9, + "inverseMass": 1.11111, + "inertia": 540, + "inverseInertia": 0.00185, + "parent": { + "#": 267 + }, + "sleepCounter": 0 + }, + [ + { + "#": 267 + } + ], + [ + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + } + ], + { + "x": 250, + "y": 345, + "index": 0, + "body": { + "#": 267 + }, + "isInternal": false + }, + { + "x": 280, + "y": 345, + "index": 1, + "body": { + "#": 267 + }, + "isInternal": false + }, + { + "x": 280, + "y": 375, + "index": 2, + "body": { + "#": 267 + }, + "isInternal": false + }, + { + "x": 250, + "y": 375, + "index": 3, + "body": { + "#": 267 + }, + "isInternal": false + }, + { + "x": 265, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 281 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 283 + }, + "max": { + "#": 284 + } + }, + { + "x": 250, + "y": 345 + }, + { + "x": 280, + "y": 375 + }, + { + "x": 265, + "y": 360 + }, + [ + { + "#": 287 + }, + { + "#": 288 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 290 + }, + "angle": 0, + "vertices": { + "#": 291 + }, + "position": { + "#": 296 + }, + "force": { + "#": 297 + }, + "torque": 0, + "positionImpulse": { + "#": 298 + }, + "constraintImpulse": { + "#": 299 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 300 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 301 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 302 + }, + "bounds": { + "#": 304 + }, + "positionPrev": { + "#": 307 + }, + "anglePrev": 0, + "axes": { + "#": 308 + }, + "area": 900, + "mass": 0.9, + "inverseMass": 1.11111, + "inertia": 540, + "inverseInertia": 0.00185, + "parent": { + "#": 289 + }, + "sleepCounter": 0 + }, + [ + { + "#": 289 + } + ], + [ + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + } + ], + { + "x": 250, + "y": 375, + "index": 0, + "body": { + "#": 289 + }, + "isInternal": false + }, + { + "x": 280, + "y": 375, + "index": 1, + "body": { + "#": 289 + }, + "isInternal": false + }, + { + "x": 280, + "y": 405, + "index": 2, + "body": { + "#": 289 + }, + "isInternal": false + }, + { + "x": 250, + "y": 405, + "index": 3, + "body": { + "#": 289 + }, + "isInternal": false + }, + { + "x": 265, + "y": 390 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 303 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 305 + }, + "max": { + "#": 306 + } + }, + { + "x": 250, + "y": 375 + }, + { + "x": 280, + "y": 405 + }, + { + "x": 265, + "y": 390 + }, + [ + { + "#": 309 + }, + { + "#": 310 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 312 + }, + "angle": 0, + "vertices": { + "#": 313 + }, + "position": { + "#": 318 + }, + "force": { + "#": 319 + }, + "torque": 0, + "positionImpulse": { + "#": 320 + }, + "constraintImpulse": { + "#": 321 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 322 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 323 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 324 + }, + "bounds": { + "#": 326 + }, + "positionPrev": { + "#": 329 + }, + "anglePrev": 0, + "axes": { + "#": 330 + }, + "area": 900, + "mass": 0.9, + "inverseMass": 1.11111, + "inertia": 540, + "inverseInertia": 0.00185, + "parent": { + "#": 311 + }, + "sleepCounter": 0 + }, + [ + { + "#": 311 + } + ], + [ + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + } + ], + { + "x": 250, + "y": 405, + "index": 0, + "body": { + "#": 311 + }, + "isInternal": false + }, + { + "x": 280, + "y": 405, + "index": 1, + "body": { + "#": 311 + }, + "isInternal": false + }, + { + "x": 280, + "y": 435, + "index": 2, + "body": { + "#": 311 + }, + "isInternal": false + }, + { + "x": 250, + "y": 435, + "index": 3, + "body": { + "#": 311 + }, + "isInternal": false + }, + { + "x": 265, + "y": 420 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 325 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 327 + }, + "max": { + "#": 328 + } + }, + { + "x": 250, + "y": 405 + }, + { + "x": 280, + "y": 435 + }, + { + "x": 265, + "y": 420 + }, + [ + { + "#": 331 + }, + { + "#": 332 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 337 + }, + "max": { + "#": 338 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/catapult/catapult-10.json b/test/node/refs/catapult/catapult-10.json new file mode 100644 index 00000000..923b0046 --- /dev/null +++ b/test/node/refs/catapult/catapult-10.json @@ -0,0 +1,3335 @@ +[ + { + "id": 19, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 196 + }, + "composites": { + "#": 205 + }, + "label": "World", + "gravity": { + "#": 348 + }, + "bounds": { + "#": 349 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + }, + { + "#": 94 + }, + { + "#": 117 + }, + { + "#": 140 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 95 + }, + "angle": 0.00104, + "vertices": { + "#": 96 + }, + "position": { + "#": 101 + }, + "force": { + "#": 102 + }, + "torque": 0, + "positionImpulse": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "totalContacts": 0, + "speed": 0.27654, + "angularSpeed": 0.0001, + "velocity": { + "#": 105 + }, + "angularVelocity": 0.0001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 106 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 107 + }, + "bounds": { + "#": 109 + }, + "positionPrev": { + "#": 112 + }, + "anglePrev": 0.00093, + "axes": { + "#": 113 + }, + "area": 6400, + "mass": 6.4, + "inverseMass": 0.15625, + "inertia": 219306.66667, + "inverseInertia": 0, + "parent": { + "#": 94 + }, + "sleepCounter": 0, + "region": { + "#": 116 + } + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + } + ], + { + "x": 240.21032, + "y": 509.85283, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 560.21015, + "y": 510.18405, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 560.18945, + "y": 530.18404, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 240.18962, + "y": 529.85282, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 400.19989, + "y": 520.01844 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01722, + "y": 0.04903 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 108 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 110 + }, + "max": { + "#": 111 + } + }, + { + "x": 240.18962, + "y": 509.85283 + }, + { + "x": 560.21015, + "y": 530.18404 + }, + { + "x": 400.19084, + "y": 520.01947 + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": -0.00104, + "y": 1 + }, + { + "x": -1, + "y": -0.00104 + }, + { + "id": "5,11,10,11", + "startCol": 5, + "endCol": 11, + "startRow": 10, + "endRow": 11 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 118 + }, + "angle": 0, + "vertices": { + "#": 119 + }, + "position": { + "#": 124 + }, + "force": { + "#": 125 + }, + "torque": 0, + "positionImpulse": { + "#": 126 + }, + "constraintImpulse": { + "#": 127 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 128 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 129 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 130 + }, + "bounds": { + "#": 132 + }, + "positionPrev": { + "#": 135 + }, + "anglePrev": 0, + "axes": { + "#": 136 + }, + "area": 1000, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 117 + }, + "sleepCounter": 0, + "region": { + "#": 139 + } + }, + [ + { + "#": 117 + } + ], + [ + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + } + ], + { + "x": 240, + "y": 530, + "index": 0, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 260, + "y": 530, + "index": 1, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 260, + "y": 580, + "index": 2, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 240, + "y": 580, + "index": 3, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 250, + "y": 555 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 131 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 133 + }, + "max": { + "#": 134 + } + }, + { + "x": 240, + "y": 530 + }, + { + "x": 260, + "y": 580 + }, + { + "x": 250, + "y": 555 + }, + [ + { + "#": 137 + }, + { + "#": 138 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,11,12", + "startCol": 5, + "endCol": 5, + "startRow": 11, + "endRow": 12 + }, + { + "id": 13, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 141 + }, + "angle": 0, + "vertices": { + "#": 142 + }, + "position": { + "#": 169 + }, + "force": { + "#": 170 + }, + "torque": 0, + "positionImpulse": { + "#": 171 + }, + "constraintImpulse": { + "#": 172 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 173 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.005, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 174 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 175 + }, + "circleRadius": 50, + "bounds": { + "#": 177 + }, + "positionPrev": { + "#": 180 + }, + "anglePrev": 0, + "axes": { + "#": 181 + }, + "area": 7777.74467, + "mass": 38.88872, + "inverseMass": 0.02571, + "inertia": 192559.86687, + "inverseInertia": 0.00001, + "parent": { + "#": 140 + }, + "sleepCounter": 0, + "region": { + "#": 195 + } + }, + [ + { + "#": 140 + } + ], + [ + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + }, + { + "#": 156 + }, + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + } + ], + { + "x": 609.635, + "y": 123.76275, + "index": 0, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 606.751, + "y": 135.46575, + "index": 1, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 601.149, + "y": 146.13875, + "index": 2, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 593.156, + "y": 155.16175, + "index": 3, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 583.236, + "y": 162.00875, + "index": 4, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 571.966, + "y": 166.28275, + "index": 5, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 560, + "y": 167.73575, + "index": 6, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 548.034, + "y": 166.28275, + "index": 7, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 536.764, + "y": 162.00875, + "index": 8, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 526.844, + "y": 155.16175, + "index": 9, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 518.851, + "y": 146.13875, + "index": 10, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 513.249, + "y": 135.46575, + "index": 11, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 510.365, + "y": 123.76275, + "index": 12, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 510.365, + "y": 111.70875, + "index": 13, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 513.249, + "y": 100.00575, + "index": 14, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 518.851, + "y": 89.33275, + "index": 15, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 526.844, + "y": 80.30975, + "index": 16, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 536.764, + "y": 73.46275, + "index": 17, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 548.034, + "y": 69.18875, + "index": 18, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 560, + "y": 67.73575, + "index": 19, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 571.966, + "y": 69.18875, + "index": 20, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 583.236, + "y": 73.46275, + "index": 21, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 593.156, + "y": 80.30975, + "index": 22, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 601.149, + "y": 89.33275, + "index": 23, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 606.751, + "y": 100.00575, + "index": 24, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 609.635, + "y": 111.70875, + "index": 25, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 560, + "y": 117.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 176 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 178 + }, + "max": { + "#": 179 + } + }, + { + "x": 510.365, + "y": 67.73575 + }, + { + "x": 609.635, + "y": 167.73575 + }, + { + "x": 560, + "y": 114.82848 + }, + [ + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + } + ], + { + "x": -0.97095, + "y": -0.23927 + }, + { + "x": -0.88544, + "y": -0.46475 + }, + { + "x": -0.74854, + "y": -0.66309 + }, + { + "x": -0.56805, + "y": -0.82299 + }, + { + "x": -0.35459, + "y": -0.93502 + }, + { + "x": -0.12054, + "y": -0.99271 + }, + { + "x": 0.12054, + "y": -0.99271 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.56805, + "y": -0.82299 + }, + { + "x": 0.74854, + "y": -0.66309 + }, + { + "x": 0.88544, + "y": -0.46475 + }, + { + "x": 0.97095, + "y": -0.23927 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,12,1,3", + "startCol": 10, + "endCol": 12, + "startRow": 1, + "endRow": 3 + }, + [ + { + "#": 197 + }, + { + "#": 201 + } + ], + { + "bodyA": { + "#": 94 + }, + "pointB": { + "#": 198 + }, + "pointA": { + "#": 199 + }, + "length": 60.82763, + "render": { + "#": 200 + }, + "id": 14, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": 0.00104, + "angleB": { + "#": -1 + } + }, + { + "x": 390, + "y": 580 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 94 + }, + "pointB": { + "#": 202 + }, + "pointA": { + "#": 203 + }, + "length": 60.82763, + "render": { + "#": 204 + }, + "id": 15, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": 0.00104, + "angleB": { + "#": -1 + } + }, + { + "x": 410, + "y": 580 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [ + { + "#": 206 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 207 + }, + "constraints": { + "#": 346 + }, + "composites": { + "#": 347 + }, + "label": "Stack" + }, + [ + { + "#": 208 + }, + { + "#": 231 + }, + { + "#": 254 + }, + { + "#": 277 + }, + { + "#": 300 + }, + { + "#": 323 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 209 + }, + "angle": 0, + "vertices": { + "#": 210 + }, + "position": { + "#": 215 + }, + "force": { + "#": 216 + }, + "torque": 0, + "positionImpulse": { + "#": 217 + }, + "constraintImpulse": { + "#": 218 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 219 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 220 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 221 + }, + "bounds": { + "#": 223 + }, + "positionPrev": { + "#": 226 + }, + "anglePrev": 0, + "axes": { + "#": 227 + }, + "area": 900, + "mass": 0.9, + "inverseMass": 1.11111, + "inertia": 540, + "inverseInertia": 0.00185, + "parent": { + "#": 208 + }, + "sleepCounter": 0, + "region": { + "#": 230 + } + }, + [ + { + "#": 208 + } + ], + [ + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + } + ], + { + "x": 250, + "y": 272.73575, + "index": 0, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 280, + "y": 272.73575, + "index": 1, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 280, + "y": 302.73575, + "index": 2, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 250, + "y": 302.73575, + "index": 3, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 265, + "y": 287.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 222 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 224 + }, + "max": { + "#": 225 + } + }, + { + "x": 250, + "y": 272.73575 + }, + { + "x": 280, + "y": 302.73575 + }, + { + "x": 265, + "y": 284.82848 + }, + [ + { + "#": 228 + }, + { + "#": 229 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,5,6", + "startCol": 5, + "endCol": 5, + "startRow": 5, + "endRow": 6 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 232 + }, + "angle": 0, + "vertices": { + "#": 233 + }, + "position": { + "#": 238 + }, + "force": { + "#": 239 + }, + "torque": 0, + "positionImpulse": { + "#": 240 + }, + "constraintImpulse": { + "#": 241 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 242 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 243 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 244 + }, + "bounds": { + "#": 246 + }, + "positionPrev": { + "#": 249 + }, + "anglePrev": 0, + "axes": { + "#": 250 + }, + "area": 900, + "mass": 0.9, + "inverseMass": 1.11111, + "inertia": 540, + "inverseInertia": 0.00185, + "parent": { + "#": 231 + }, + "sleepCounter": 0, + "region": { + "#": 253 + } + }, + [ + { + "#": 231 + } + ], + [ + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + } + ], + { + "x": 250, + "y": 302.73575, + "index": 0, + "body": { + "#": 231 + }, + "isInternal": false + }, + { + "x": 280, + "y": 302.73575, + "index": 1, + "body": { + "#": 231 + }, + "isInternal": false + }, + { + "x": 280, + "y": 332.73575, + "index": 2, + "body": { + "#": 231 + }, + "isInternal": false + }, + { + "x": 250, + "y": 332.73575, + "index": 3, + "body": { + "#": 231 + }, + "isInternal": false + }, + { + "x": 265, + "y": 317.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 245 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 247 + }, + "max": { + "#": 248 + } + }, + { + "x": 250, + "y": 302.73575 + }, + { + "x": 280, + "y": 332.73575 + }, + { + "x": 265, + "y": 314.82848 + }, + [ + { + "#": 251 + }, + { + "#": 252 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,6,6", + "startCol": 5, + "endCol": 5, + "startRow": 6, + "endRow": 6 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 255 + }, + "angle": 0, + "vertices": { + "#": 256 + }, + "position": { + "#": 261 + }, + "force": { + "#": 262 + }, + "torque": 0, + "positionImpulse": { + "#": 263 + }, + "constraintImpulse": { + "#": 264 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 265 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 266 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 267 + }, + "bounds": { + "#": 269 + }, + "positionPrev": { + "#": 272 + }, + "anglePrev": 0, + "axes": { + "#": 273 + }, + "area": 900, + "mass": 0.9, + "inverseMass": 1.11111, + "inertia": 540, + "inverseInertia": 0.00185, + "parent": { + "#": 254 + }, + "sleepCounter": 0, + "region": { + "#": 276 + } + }, + [ + { + "#": 254 + } + ], + [ + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + } + ], + { + "x": 250, + "y": 332.73575, + "index": 0, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 280, + "y": 332.73575, + "index": 1, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 280, + "y": 362.73575, + "index": 2, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 250, + "y": 362.73575, + "index": 3, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 265, + "y": 347.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 268 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 270 + }, + "max": { + "#": 271 + } + }, + { + "x": 250, + "y": 332.73575 + }, + { + "x": 280, + "y": 362.73575 + }, + { + "x": 265, + "y": 344.82848 + }, + [ + { + "#": 274 + }, + { + "#": 275 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,6,7", + "startCol": 5, + "endCol": 5, + "startRow": 6, + "endRow": 7 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 278 + }, + "angle": 0, + "vertices": { + "#": 279 + }, + "position": { + "#": 284 + }, + "force": { + "#": 285 + }, + "torque": 0, + "positionImpulse": { + "#": 286 + }, + "constraintImpulse": { + "#": 287 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 288 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 289 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 290 + }, + "bounds": { + "#": 292 + }, + "positionPrev": { + "#": 295 + }, + "anglePrev": 0, + "axes": { + "#": 296 + }, + "area": 900, + "mass": 0.9, + "inverseMass": 1.11111, + "inertia": 540, + "inverseInertia": 0.00185, + "parent": { + "#": 277 + }, + "sleepCounter": 0, + "region": { + "#": 299 + } + }, + [ + { + "#": 277 + } + ], + [ + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + } + ], + { + "x": 250, + "y": 362.73575, + "index": 0, + "body": { + "#": 277 + }, + "isInternal": false + }, + { + "x": 280, + "y": 362.73575, + "index": 1, + "body": { + "#": 277 + }, + "isInternal": false + }, + { + "x": 280, + "y": 392.73575, + "index": 2, + "body": { + "#": 277 + }, + "isInternal": false + }, + { + "x": 250, + "y": 392.73575, + "index": 3, + "body": { + "#": 277 + }, + "isInternal": false + }, + { + "x": 265, + "y": 377.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 291 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 293 + }, + "max": { + "#": 294 + } + }, + { + "x": 250, + "y": 362.73575 + }, + { + "x": 280, + "y": 392.73575 + }, + { + "x": 265, + "y": 374.82848 + }, + [ + { + "#": 297 + }, + { + "#": 298 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,7,8", + "startCol": 5, + "endCol": 5, + "startRow": 7, + "endRow": 8 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 301 + }, + "angle": 0, + "vertices": { + "#": 302 + }, + "position": { + "#": 307 + }, + "force": { + "#": 308 + }, + "torque": 0, + "positionImpulse": { + "#": 309 + }, + "constraintImpulse": { + "#": 310 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 311 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 312 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 313 + }, + "bounds": { + "#": 315 + }, + "positionPrev": { + "#": 318 + }, + "anglePrev": 0, + "axes": { + "#": 319 + }, + "area": 900, + "mass": 0.9, + "inverseMass": 1.11111, + "inertia": 540, + "inverseInertia": 0.00185, + "parent": { + "#": 300 + }, + "sleepCounter": 0, + "region": { + "#": 322 + } + }, + [ + { + "#": 300 + } + ], + [ + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + } + ], + { + "x": 250, + "y": 392.73575, + "index": 0, + "body": { + "#": 300 + }, + "isInternal": false + }, + { + "x": 280, + "y": 392.73575, + "index": 1, + "body": { + "#": 300 + }, + "isInternal": false + }, + { + "x": 280, + "y": 422.73575, + "index": 2, + "body": { + "#": 300 + }, + "isInternal": false + }, + { + "x": 250, + "y": 422.73575, + "index": 3, + "body": { + "#": 300 + }, + "isInternal": false + }, + { + "x": 265, + "y": 407.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 314 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 316 + }, + "max": { + "#": 317 + } + }, + { + "x": 250, + "y": 392.73575 + }, + { + "x": 280, + "y": 422.73575 + }, + { + "x": 265, + "y": 404.82848 + }, + [ + { + "#": 320 + }, + { + "#": 321 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,8,8", + "startCol": 5, + "endCol": 5, + "startRow": 8, + "endRow": 8 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 324 + }, + "angle": 0, + "vertices": { + "#": 325 + }, + "position": { + "#": 330 + }, + "force": { + "#": 331 + }, + "torque": 0, + "positionImpulse": { + "#": 332 + }, + "constraintImpulse": { + "#": 333 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 334 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 335 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 336 + }, + "bounds": { + "#": 338 + }, + "positionPrev": { + "#": 341 + }, + "anglePrev": 0, + "axes": { + "#": 342 + }, + "area": 900, + "mass": 0.9, + "inverseMass": 1.11111, + "inertia": 540, + "inverseInertia": 0.00185, + "parent": { + "#": 323 + }, + "sleepCounter": 0, + "region": { + "#": 345 + } + }, + [ + { + "#": 323 + } + ], + [ + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + } + ], + { + "x": 250, + "y": 422.73575, + "index": 0, + "body": { + "#": 323 + }, + "isInternal": false + }, + { + "x": 280, + "y": 422.73575, + "index": 1, + "body": { + "#": 323 + }, + "isInternal": false + }, + { + "x": 280, + "y": 452.73575, + "index": 2, + "body": { + "#": 323 + }, + "isInternal": false + }, + { + "x": 250, + "y": 452.73575, + "index": 3, + "body": { + "#": 323 + }, + "isInternal": false + }, + { + "x": 265, + "y": 437.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 337 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 339 + }, + "max": { + "#": 340 + } + }, + { + "x": 250, + "y": 422.73575 + }, + { + "x": 280, + "y": 452.73575 + }, + { + "x": 265, + "y": 434.82848 + }, + [ + { + "#": 343 + }, + { + "#": 344 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,8,9", + "startCol": 5, + "endCol": 5, + "startRow": 8, + "endRow": 9 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 350 + }, + "max": { + "#": 351 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/chains/chains-0.json b/test/node/refs/chains/chains-0.json new file mode 100644 index 00000000..25109c4e --- /dev/null +++ b/test/node/refs/chains/chains-0.json @@ -0,0 +1,8313 @@ +[ + { + "id": 695, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 90 + }, + "composites": { + "#": 91 + }, + "label": "World", + "gravity": { + "#": 860 + }, + "bounds": { + "#": 861 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [ + { + "#": 92 + }, + { + "#": 356 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 93 + }, + "constraints": { + "#": 314 + }, + "composites": { + "#": 355 + }, + "label": "Stack Chain" + }, + [ + { + "#": 94 + }, + { + "#": 116 + }, + { + "#": 138 + }, + { + "#": 160 + }, + { + "#": 182 + }, + { + "#": 204 + }, + { + "#": 226 + }, + { + "#": 248 + }, + { + "#": 270 + }, + { + "#": 292 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 96 + }, + "position": { + "#": 101 + }, + "force": { + "#": 102 + }, + "torque": 0, + "positionImpulse": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 105 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 106 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 107 + }, + "bounds": { + "#": 109 + }, + "positionPrev": { + "#": 112 + }, + "anglePrev": 0, + "axes": { + "#": 113 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 94 + }, + "sleepCounter": 0 + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + } + ], + { + "x": 200, + "y": 100, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 250, + "y": 100, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 250, + "y": 120, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 200, + "y": 120, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 225, + "y": 110 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -5 + }, + { + "visible": true, + "sprite": { + "#": 108 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 110 + }, + "max": { + "#": 111 + } + }, + { + "x": 200, + "y": 100 + }, + { + "x": 250, + "y": 120 + }, + { + "x": 225, + "y": 110 + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 117 + }, + "angle": 0, + "vertices": { + "#": 118 + }, + "position": { + "#": 123 + }, + "force": { + "#": 124 + }, + "torque": 0, + "positionImpulse": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 127 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 128 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 129 + }, + "bounds": { + "#": 131 + }, + "positionPrev": { + "#": 134 + }, + "anglePrev": 0, + "axes": { + "#": 135 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 116 + }, + "sleepCounter": 0 + }, + [ + { + "#": 116 + } + ], + [ + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + } + ], + { + "x": 260, + "y": 100, + "index": 0, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 310, + "y": 100, + "index": 1, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 310, + "y": 120, + "index": 2, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 260, + "y": 120, + "index": 3, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 285, + "y": 110 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -5 + }, + { + "visible": true, + "sprite": { + "#": 130 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 132 + }, + "max": { + "#": 133 + } + }, + { + "x": 260, + "y": 100 + }, + { + "x": 310, + "y": 120 + }, + { + "x": 285, + "y": 110 + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 139 + }, + "angle": 0, + "vertices": { + "#": 140 + }, + "position": { + "#": 145 + }, + "force": { + "#": 146 + }, + "torque": 0, + "positionImpulse": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 149 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 150 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 151 + }, + "bounds": { + "#": 153 + }, + "positionPrev": { + "#": 156 + }, + "anglePrev": 0, + "axes": { + "#": 157 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 138 + }, + "sleepCounter": 0 + }, + [ + { + "#": 138 + } + ], + [ + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + } + ], + { + "x": 320, + "y": 100, + "index": 0, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 370, + "y": 100, + "index": 1, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 370, + "y": 120, + "index": 2, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 320, + "y": 120, + "index": 3, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 345, + "y": 110 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -5 + }, + { + "visible": true, + "sprite": { + "#": 152 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 154 + }, + "max": { + "#": 155 + } + }, + { + "x": 320, + "y": 100 + }, + { + "x": 370, + "y": 120 + }, + { + "x": 345, + "y": 110 + }, + [ + { + "#": 158 + }, + { + "#": 159 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 161 + }, + "angle": 0, + "vertices": { + "#": 162 + }, + "position": { + "#": 167 + }, + "force": { + "#": 168 + }, + "torque": 0, + "positionImpulse": { + "#": 169 + }, + "constraintImpulse": { + "#": 170 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 171 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 172 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 173 + }, + "bounds": { + "#": 175 + }, + "positionPrev": { + "#": 178 + }, + "anglePrev": 0, + "axes": { + "#": 179 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 160 + }, + "sleepCounter": 0 + }, + [ + { + "#": 160 + } + ], + [ + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + } + ], + { + "x": 380, + "y": 100, + "index": 0, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 430, + "y": 100, + "index": 1, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 430, + "y": 120, + "index": 2, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 380, + "y": 120, + "index": 3, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 405, + "y": 110 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -5 + }, + { + "visible": true, + "sprite": { + "#": 174 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 176 + }, + "max": { + "#": 177 + } + }, + { + "x": 380, + "y": 100 + }, + { + "x": 430, + "y": 120 + }, + { + "x": 405, + "y": 110 + }, + [ + { + "#": 180 + }, + { + "#": 181 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 183 + }, + "angle": 0, + "vertices": { + "#": 184 + }, + "position": { + "#": 189 + }, + "force": { + "#": 190 + }, + "torque": 0, + "positionImpulse": { + "#": 191 + }, + "constraintImpulse": { + "#": 192 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 193 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 194 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 195 + }, + "bounds": { + "#": 197 + }, + "positionPrev": { + "#": 200 + }, + "anglePrev": 0, + "axes": { + "#": 201 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 182 + }, + "sleepCounter": 0 + }, + [ + { + "#": 182 + } + ], + [ + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + } + ], + { + "x": 440, + "y": 100, + "index": 0, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 490, + "y": 100, + "index": 1, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 490, + "y": 120, + "index": 2, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 440, + "y": 120, + "index": 3, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 465, + "y": 110 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -5 + }, + { + "visible": true, + "sprite": { + "#": 196 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 198 + }, + "max": { + "#": 199 + } + }, + { + "x": 440, + "y": 100 + }, + { + "x": 490, + "y": 120 + }, + { + "x": 465, + "y": 110 + }, + [ + { + "#": 202 + }, + { + "#": 203 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 205 + }, + "angle": 0, + "vertices": { + "#": 206 + }, + "position": { + "#": 211 + }, + "force": { + "#": 212 + }, + "torque": 0, + "positionImpulse": { + "#": 213 + }, + "constraintImpulse": { + "#": 214 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 215 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 216 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 217 + }, + "bounds": { + "#": 219 + }, + "positionPrev": { + "#": 222 + }, + "anglePrev": 0, + "axes": { + "#": 223 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 204 + }, + "sleepCounter": 0 + }, + [ + { + "#": 204 + } + ], + [ + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + } + ], + { + "x": 200, + "y": 130, + "index": 0, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 250, + "y": 130, + "index": 1, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 250, + "y": 150, + "index": 2, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 200, + "y": 150, + "index": 3, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 225, + "y": 140 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -5 + }, + { + "visible": true, + "sprite": { + "#": 218 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 220 + }, + "max": { + "#": 221 + } + }, + { + "x": 200, + "y": 130 + }, + { + "x": 250, + "y": 150 + }, + { + "x": 225, + "y": 140 + }, + [ + { + "#": 224 + }, + { + "#": 225 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 227 + }, + "angle": 0, + "vertices": { + "#": 228 + }, + "position": { + "#": 233 + }, + "force": { + "#": 234 + }, + "torque": 0, + "positionImpulse": { + "#": 235 + }, + "constraintImpulse": { + "#": 236 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 237 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 238 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 239 + }, + "bounds": { + "#": 241 + }, + "positionPrev": { + "#": 244 + }, + "anglePrev": 0, + "axes": { + "#": 245 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 226 + }, + "sleepCounter": 0 + }, + [ + { + "#": 226 + } + ], + [ + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + } + ], + { + "x": 260, + "y": 130, + "index": 0, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 310, + "y": 130, + "index": 1, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 310, + "y": 150, + "index": 2, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 260, + "y": 150, + "index": 3, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 285, + "y": 140 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -5 + }, + { + "visible": true, + "sprite": { + "#": 240 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 242 + }, + "max": { + "#": 243 + } + }, + { + "x": 260, + "y": 130 + }, + { + "x": 310, + "y": 150 + }, + { + "x": 285, + "y": 140 + }, + [ + { + "#": 246 + }, + { + "#": 247 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 249 + }, + "angle": 0, + "vertices": { + "#": 250 + }, + "position": { + "#": 255 + }, + "force": { + "#": 256 + }, + "torque": 0, + "positionImpulse": { + "#": 257 + }, + "constraintImpulse": { + "#": 258 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 259 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 260 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 261 + }, + "bounds": { + "#": 263 + }, + "positionPrev": { + "#": 266 + }, + "anglePrev": 0, + "axes": { + "#": 267 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 248 + }, + "sleepCounter": 0 + }, + [ + { + "#": 248 + } + ], + [ + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + } + ], + { + "x": 320, + "y": 130, + "index": 0, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 370, + "y": 130, + "index": 1, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 370, + "y": 150, + "index": 2, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 320, + "y": 150, + "index": 3, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 345, + "y": 140 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -5 + }, + { + "visible": true, + "sprite": { + "#": 262 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 264 + }, + "max": { + "#": 265 + } + }, + { + "x": 320, + "y": 130 + }, + { + "x": 370, + "y": 150 + }, + { + "x": 345, + "y": 140 + }, + [ + { + "#": 268 + }, + { + "#": 269 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 271 + }, + "angle": 0, + "vertices": { + "#": 272 + }, + "position": { + "#": 277 + }, + "force": { + "#": 278 + }, + "torque": 0, + "positionImpulse": { + "#": 279 + }, + "constraintImpulse": { + "#": 280 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 281 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 282 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 283 + }, + "bounds": { + "#": 285 + }, + "positionPrev": { + "#": 288 + }, + "anglePrev": 0, + "axes": { + "#": 289 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 270 + }, + "sleepCounter": 0 + }, + [ + { + "#": 270 + } + ], + [ + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + } + ], + { + "x": 380, + "y": 130, + "index": 0, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 430, + "y": 130, + "index": 1, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 430, + "y": 150, + "index": 2, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 380, + "y": 150, + "index": 3, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 405, + "y": 140 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -5 + }, + { + "visible": true, + "sprite": { + "#": 284 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 286 + }, + "max": { + "#": 287 + } + }, + { + "x": 380, + "y": 130 + }, + { + "x": 430, + "y": 150 + }, + { + "x": 405, + "y": 140 + }, + [ + { + "#": 290 + }, + { + "#": 291 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 293 + }, + "angle": 0, + "vertices": { + "#": 294 + }, + "position": { + "#": 299 + }, + "force": { + "#": 300 + }, + "torque": 0, + "positionImpulse": { + "#": 301 + }, + "constraintImpulse": { + "#": 302 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 303 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 304 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 305 + }, + "bounds": { + "#": 307 + }, + "positionPrev": { + "#": 310 + }, + "anglePrev": 0, + "axes": { + "#": 311 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 292 + }, + "sleepCounter": 0 + }, + [ + { + "#": 292 + } + ], + [ + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + } + ], + { + "x": 440, + "y": 130, + "index": 0, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 490, + "y": 130, + "index": 1, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 490, + "y": 150, + "index": 2, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 440, + "y": 150, + "index": 3, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 465, + "y": 140 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -5 + }, + { + "visible": true, + "sprite": { + "#": 306 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 308 + }, + "max": { + "#": 309 + } + }, + { + "x": 440, + "y": 130 + }, + { + "x": 490, + "y": 150 + }, + { + "x": 465, + "y": 140 + }, + [ + { + "#": 312 + }, + { + "#": 313 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 315 + }, + { + "#": 319 + }, + { + "#": 323 + }, + { + "#": 327 + }, + { + "#": 331 + }, + { + "#": 335 + }, + { + "#": 339 + }, + { + "#": 343 + }, + { + "#": 347 + }, + { + "#": 351 + } + ], + { + "bodyA": { + "#": 94 + }, + "pointA": { + "#": 316 + }, + "bodyB": { + "#": 116 + }, + "pointB": { + "#": 317 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 318 + }, + "id": 15, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 116 + }, + "pointA": { + "#": 320 + }, + "bodyB": { + "#": 138 + }, + "pointB": { + "#": 321 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 322 + }, + "id": 16, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 138 + }, + "pointA": { + "#": 324 + }, + "bodyB": { + "#": 160 + }, + "pointB": { + "#": 325 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 326 + }, + "id": 17, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 160 + }, + "pointA": { + "#": 328 + }, + "bodyB": { + "#": 182 + }, + "pointB": { + "#": 329 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 330 + }, + "id": 18, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 182 + }, + "pointA": { + "#": 332 + }, + "bodyB": { + "#": 204 + }, + "pointB": { + "#": 333 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 334 + }, + "id": 19, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 204 + }, + "pointA": { + "#": 336 + }, + "bodyB": { + "#": 226 + }, + "pointB": { + "#": 337 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 338 + }, + "id": 20, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 226 + }, + "pointA": { + "#": 340 + }, + "bodyB": { + "#": 248 + }, + "pointB": { + "#": 341 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 342 + }, + "id": 21, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 248 + }, + "pointA": { + "#": 344 + }, + "bodyB": { + "#": 270 + }, + "pointB": { + "#": 345 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 346 + }, + "id": 22, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 270 + }, + "pointA": { + "#": 348 + }, + "bodyB": { + "#": 292 + }, + "pointB": { + "#": 349 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 350 + }, + "id": 23, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 25, + "y": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyB": { + "#": 94 + }, + "pointB": { + "#": 352 + }, + "pointA": { + "#": 353 + }, + "stiffness": 0.5, + "length": 10, + "render": { + "#": 354 + }, + "id": 24, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": -25, + "y": 0 + }, + { + "x": 200, + "y": 100 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "id": 25, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 357 + }, + "constraints": { + "#": 818 + }, + "composites": { + "#": 859 + }, + "label": "Stack Chain" + }, + [ + { + "#": 358 + }, + { + "#": 404 + }, + { + "#": 450 + }, + { + "#": 496 + }, + { + "#": 542 + }, + { + "#": 588 + }, + { + "#": 634 + }, + { + "#": 680 + }, + { + "#": 726 + }, + { + "#": 772 + } + ], + { + "id": 26, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 359 + }, + "angle": 0, + "vertices": { + "#": 360 + }, + "position": { + "#": 381 + }, + "force": { + "#": 382 + }, + "torque": 0, + "positionImpulse": { + "#": 383 + }, + "constraintImpulse": { + "#": 384 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 385 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 386 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 387 + }, + "circleRadius": 20, + "bounds": { + "#": 389 + }, + "positionPrev": { + "#": 392 + }, + "anglePrev": 0, + "axes": { + "#": 393 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 358 + }, + "sleepCounter": 0 + }, + [ + { + "#": 358 + } + ], + [ + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + } + ], + { + "x": 539.508, + "y": 122.883, + "index": 0, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 537.574, + "y": 128.834, + "index": 1, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 533.896, + "y": 133.896, + "index": 2, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 528.834, + "y": 137.574, + "index": 3, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 522.883, + "y": 139.508, + "index": 4, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 516.625, + "y": 139.508, + "index": 5, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 510.674, + "y": 137.574, + "index": 6, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 505.612, + "y": 133.896, + "index": 7, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 501.934, + "y": 128.834, + "index": 8, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 500, + "y": 122.883, + "index": 9, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 500, + "y": 116.625, + "index": 10, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 501.934, + "y": 110.674, + "index": 11, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 505.612, + "y": 105.612, + "index": 12, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 510.674, + "y": 101.934, + "index": 13, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 516.625, + "y": 100, + "index": 14, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 522.883, + "y": 100, + "index": 15, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 528.834, + "y": 101.934, + "index": 16, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 533.896, + "y": 105.612, + "index": 17, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 537.574, + "y": 110.674, + "index": 18, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 539.508, + "y": 116.625, + "index": 19, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 519.754, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -6 + }, + { + "visible": true, + "sprite": { + "#": 388 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 390 + }, + "max": { + "#": 391 + } + }, + { + "x": 500, + "y": 100 + }, + { + "x": 539.508, + "y": 139.508 + }, + { + "x": 519.754, + "y": 119.754 + }, + [ + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 27, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 405 + }, + "angle": 0, + "vertices": { + "#": 406 + }, + "position": { + "#": 427 + }, + "force": { + "#": 428 + }, + "torque": 0, + "positionImpulse": { + "#": 429 + }, + "constraintImpulse": { + "#": 430 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 431 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 432 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 433 + }, + "circleRadius": 20, + "bounds": { + "#": 435 + }, + "positionPrev": { + "#": 438 + }, + "anglePrev": 0, + "axes": { + "#": 439 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 404 + }, + "sleepCounter": 0 + }, + [ + { + "#": 404 + } + ], + [ + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + } + ], + { + "x": 589.016, + "y": 122.883, + "index": 0, + "body": { + "#": 404 + }, + "isInternal": false + }, + { + "x": 587.082, + "y": 128.834, + "index": 1, + "body": { + "#": 404 + }, + "isInternal": false + }, + { + "x": 583.404, + "y": 133.896, + "index": 2, + "body": { + "#": 404 + }, + "isInternal": false + }, + { + "x": 578.342, + "y": 137.574, + "index": 3, + "body": { + "#": 404 + }, + "isInternal": false + }, + { + "x": 572.391, + "y": 139.508, + "index": 4, + "body": { + "#": 404 + }, + "isInternal": false + }, + { + "x": 566.133, + "y": 139.508, + "index": 5, + "body": { + "#": 404 + }, + "isInternal": false + }, + { + "x": 560.182, + "y": 137.574, + "index": 6, + "body": { + "#": 404 + }, + "isInternal": false + }, + { + "x": 555.12, + "y": 133.896, + "index": 7, + "body": { + "#": 404 + }, + "isInternal": false + }, + { + "x": 551.442, + "y": 128.834, + "index": 8, + "body": { + "#": 404 + }, + "isInternal": false + }, + { + "x": 549.508, + "y": 122.883, + "index": 9, + "body": { + "#": 404 + }, + "isInternal": false + }, + { + "x": 549.508, + "y": 116.625, + "index": 10, + "body": { + "#": 404 + }, + "isInternal": false + }, + { + "x": 551.442, + "y": 110.674, + "index": 11, + "body": { + "#": 404 + }, + "isInternal": false + }, + { + "x": 555.12, + "y": 105.612, + "index": 12, + "body": { + "#": 404 + }, + "isInternal": false + }, + { + "x": 560.182, + "y": 101.934, + "index": 13, + "body": { + "#": 404 + }, + "isInternal": false + }, + { + "x": 566.133, + "y": 100, + "index": 14, + "body": { + "#": 404 + }, + "isInternal": false + }, + { + "x": 572.391, + "y": 100, + "index": 15, + "body": { + "#": 404 + }, + "isInternal": false + }, + { + "x": 578.342, + "y": 101.934, + "index": 16, + "body": { + "#": 404 + }, + "isInternal": false + }, + { + "x": 583.404, + "y": 105.612, + "index": 17, + "body": { + "#": 404 + }, + "isInternal": false + }, + { + "x": 587.082, + "y": 110.674, + "index": 18, + "body": { + "#": 404 + }, + "isInternal": false + }, + { + "x": 589.016, + "y": 116.625, + "index": 19, + "body": { + "#": 404 + }, + "isInternal": false + }, + { + "x": 569.262, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -6 + }, + { + "visible": true, + "sprite": { + "#": 434 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 436 + }, + "max": { + "#": 437 + } + }, + { + "x": 549.508, + "y": 100 + }, + { + "x": 589.016, + "y": 139.508 + }, + { + "x": 569.262, + "y": 119.754 + }, + [ + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 28, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 451 + }, + "angle": 0, + "vertices": { + "#": 452 + }, + "position": { + "#": 473 + }, + "force": { + "#": 474 + }, + "torque": 0, + "positionImpulse": { + "#": 475 + }, + "constraintImpulse": { + "#": 476 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 477 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 478 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 479 + }, + "circleRadius": 20, + "bounds": { + "#": 481 + }, + "positionPrev": { + "#": 484 + }, + "anglePrev": 0, + "axes": { + "#": 485 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 450 + }, + "sleepCounter": 0 + }, + [ + { + "#": 450 + } + ], + [ + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + } + ], + { + "x": 638.524, + "y": 122.883, + "index": 0, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 636.59, + "y": 128.834, + "index": 1, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 632.912, + "y": 133.896, + "index": 2, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 627.85, + "y": 137.574, + "index": 3, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 621.899, + "y": 139.508, + "index": 4, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 615.641, + "y": 139.508, + "index": 5, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 609.69, + "y": 137.574, + "index": 6, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 604.628, + "y": 133.896, + "index": 7, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 600.95, + "y": 128.834, + "index": 8, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 599.016, + "y": 122.883, + "index": 9, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 599.016, + "y": 116.625, + "index": 10, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 600.95, + "y": 110.674, + "index": 11, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 604.628, + "y": 105.612, + "index": 12, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 609.69, + "y": 101.934, + "index": 13, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 615.641, + "y": 100, + "index": 14, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 621.899, + "y": 100, + "index": 15, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 627.85, + "y": 101.934, + "index": 16, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 632.912, + "y": 105.612, + "index": 17, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 636.59, + "y": 110.674, + "index": 18, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 638.524, + "y": 116.625, + "index": 19, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 618.77, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -6 + }, + { + "visible": true, + "sprite": { + "#": 480 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 482 + }, + "max": { + "#": 483 + } + }, + { + "x": 599.016, + "y": 100 + }, + { + "x": 638.524, + "y": 139.508 + }, + { + "x": 618.77, + "y": 119.754 + }, + [ + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 29, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 497 + }, + "angle": 0, + "vertices": { + "#": 498 + }, + "position": { + "#": 519 + }, + "force": { + "#": 520 + }, + "torque": 0, + "positionImpulse": { + "#": 521 + }, + "constraintImpulse": { + "#": 522 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 523 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 524 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 525 + }, + "circleRadius": 20, + "bounds": { + "#": 527 + }, + "positionPrev": { + "#": 530 + }, + "anglePrev": 0, + "axes": { + "#": 531 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 496 + }, + "sleepCounter": 0 + }, + [ + { + "#": 496 + } + ], + [ + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + } + ], + { + "x": 688.032, + "y": 122.883, + "index": 0, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 686.098, + "y": 128.834, + "index": 1, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 682.42, + "y": 133.896, + "index": 2, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 677.358, + "y": 137.574, + "index": 3, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 671.407, + "y": 139.508, + "index": 4, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 665.149, + "y": 139.508, + "index": 5, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 659.198, + "y": 137.574, + "index": 6, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 654.136, + "y": 133.896, + "index": 7, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 650.458, + "y": 128.834, + "index": 8, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 648.524, + "y": 122.883, + "index": 9, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 648.524, + "y": 116.625, + "index": 10, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 650.458, + "y": 110.674, + "index": 11, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 654.136, + "y": 105.612, + "index": 12, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 659.198, + "y": 101.934, + "index": 13, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 665.149, + "y": 100, + "index": 14, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 671.407, + "y": 100, + "index": 15, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 677.358, + "y": 101.934, + "index": 16, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 682.42, + "y": 105.612, + "index": 17, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 686.098, + "y": 110.674, + "index": 18, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 688.032, + "y": 116.625, + "index": 19, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 668.278, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -6 + }, + { + "visible": true, + "sprite": { + "#": 526 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 528 + }, + "max": { + "#": 529 + } + }, + { + "x": 648.524, + "y": 100 + }, + { + "x": 688.032, + "y": 139.508 + }, + { + "x": 668.278, + "y": 119.754 + }, + [ + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 30, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 543 + }, + "angle": 0, + "vertices": { + "#": 544 + }, + "position": { + "#": 565 + }, + "force": { + "#": 566 + }, + "torque": 0, + "positionImpulse": { + "#": 567 + }, + "constraintImpulse": { + "#": 568 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 569 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 570 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 571 + }, + "circleRadius": 20, + "bounds": { + "#": 573 + }, + "positionPrev": { + "#": 576 + }, + "anglePrev": 0, + "axes": { + "#": 577 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 542 + }, + "sleepCounter": 0 + }, + [ + { + "#": 542 + } + ], + [ + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + } + ], + { + "x": 737.54, + "y": 122.883, + "index": 0, + "body": { + "#": 542 + }, + "isInternal": false + }, + { + "x": 735.606, + "y": 128.834, + "index": 1, + "body": { + "#": 542 + }, + "isInternal": false + }, + { + "x": 731.928, + "y": 133.896, + "index": 2, + "body": { + "#": 542 + }, + "isInternal": false + }, + { + "x": 726.866, + "y": 137.574, + "index": 3, + "body": { + "#": 542 + }, + "isInternal": false + }, + { + "x": 720.915, + "y": 139.508, + "index": 4, + "body": { + "#": 542 + }, + "isInternal": false + }, + { + "x": 714.657, + "y": 139.508, + "index": 5, + "body": { + "#": 542 + }, + "isInternal": false + }, + { + "x": 708.706, + "y": 137.574, + "index": 6, + "body": { + "#": 542 + }, + "isInternal": false + }, + { + "x": 703.644, + "y": 133.896, + "index": 7, + "body": { + "#": 542 + }, + "isInternal": false + }, + { + "x": 699.966, + "y": 128.834, + "index": 8, + "body": { + "#": 542 + }, + "isInternal": false + }, + { + "x": 698.032, + "y": 122.883, + "index": 9, + "body": { + "#": 542 + }, + "isInternal": false + }, + { + "x": 698.032, + "y": 116.625, + "index": 10, + "body": { + "#": 542 + }, + "isInternal": false + }, + { + "x": 699.966, + "y": 110.674, + "index": 11, + "body": { + "#": 542 + }, + "isInternal": false + }, + { + "x": 703.644, + "y": 105.612, + "index": 12, + "body": { + "#": 542 + }, + "isInternal": false + }, + { + "x": 708.706, + "y": 101.934, + "index": 13, + "body": { + "#": 542 + }, + "isInternal": false + }, + { + "x": 714.657, + "y": 100, + "index": 14, + "body": { + "#": 542 + }, + "isInternal": false + }, + { + "x": 720.915, + "y": 100, + "index": 15, + "body": { + "#": 542 + }, + "isInternal": false + }, + { + "x": 726.866, + "y": 101.934, + "index": 16, + "body": { + "#": 542 + }, + "isInternal": false + }, + { + "x": 731.928, + "y": 105.612, + "index": 17, + "body": { + "#": 542 + }, + "isInternal": false + }, + { + "x": 735.606, + "y": 110.674, + "index": 18, + "body": { + "#": 542 + }, + "isInternal": false + }, + { + "x": 737.54, + "y": 116.625, + "index": 19, + "body": { + "#": 542 + }, + "isInternal": false + }, + { + "x": 717.786, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -6 + }, + { + "visible": true, + "sprite": { + "#": 572 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 574 + }, + "max": { + "#": 575 + } + }, + { + "x": 698.032, + "y": 100 + }, + { + "x": 737.54, + "y": 139.508 + }, + { + "x": 717.786, + "y": 119.754 + }, + [ + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 31, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 589 + }, + "angle": 0, + "vertices": { + "#": 590 + }, + "position": { + "#": 611 + }, + "force": { + "#": 612 + }, + "torque": 0, + "positionImpulse": { + "#": 613 + }, + "constraintImpulse": { + "#": 614 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 615 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 616 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 617 + }, + "circleRadius": 20, + "bounds": { + "#": 619 + }, + "positionPrev": { + "#": 622 + }, + "anglePrev": 0, + "axes": { + "#": 623 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 588 + }, + "sleepCounter": 0 + }, + [ + { + "#": 588 + } + ], + [ + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + } + ], + { + "x": 539.508, + "y": 172.391, + "index": 0, + "body": { + "#": 588 + }, + "isInternal": false + }, + { + "x": 537.574, + "y": 178.342, + "index": 1, + "body": { + "#": 588 + }, + "isInternal": false + }, + { + "x": 533.896, + "y": 183.404, + "index": 2, + "body": { + "#": 588 + }, + "isInternal": false + }, + { + "x": 528.834, + "y": 187.082, + "index": 3, + "body": { + "#": 588 + }, + "isInternal": false + }, + { + "x": 522.883, + "y": 189.016, + "index": 4, + "body": { + "#": 588 + }, + "isInternal": false + }, + { + "x": 516.625, + "y": 189.016, + "index": 5, + "body": { + "#": 588 + }, + "isInternal": false + }, + { + "x": 510.674, + "y": 187.082, + "index": 6, + "body": { + "#": 588 + }, + "isInternal": false + }, + { + "x": 505.612, + "y": 183.404, + "index": 7, + "body": { + "#": 588 + }, + "isInternal": false + }, + { + "x": 501.934, + "y": 178.342, + "index": 8, + "body": { + "#": 588 + }, + "isInternal": false + }, + { + "x": 500, + "y": 172.391, + "index": 9, + "body": { + "#": 588 + }, + "isInternal": false + }, + { + "x": 500, + "y": 166.133, + "index": 10, + "body": { + "#": 588 + }, + "isInternal": false + }, + { + "x": 501.934, + "y": 160.182, + "index": 11, + "body": { + "#": 588 + }, + "isInternal": false + }, + { + "x": 505.612, + "y": 155.12, + "index": 12, + "body": { + "#": 588 + }, + "isInternal": false + }, + { + "x": 510.674, + "y": 151.442, + "index": 13, + "body": { + "#": 588 + }, + "isInternal": false + }, + { + "x": 516.625, + "y": 149.508, + "index": 14, + "body": { + "#": 588 + }, + "isInternal": false + }, + { + "x": 522.883, + "y": 149.508, + "index": 15, + "body": { + "#": 588 + }, + "isInternal": false + }, + { + "x": 528.834, + "y": 151.442, + "index": 16, + "body": { + "#": 588 + }, + "isInternal": false + }, + { + "x": 533.896, + "y": 155.12, + "index": 17, + "body": { + "#": 588 + }, + "isInternal": false + }, + { + "x": 537.574, + "y": 160.182, + "index": 18, + "body": { + "#": 588 + }, + "isInternal": false + }, + { + "x": 539.508, + "y": 166.133, + "index": 19, + "body": { + "#": 588 + }, + "isInternal": false + }, + { + "x": 519.754, + "y": 169.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -6 + }, + { + "visible": true, + "sprite": { + "#": 618 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 620 + }, + "max": { + "#": 621 + } + }, + { + "x": 500, + "y": 149.508 + }, + { + "x": 539.508, + "y": 189.016 + }, + { + "x": 519.754, + "y": 169.262 + }, + [ + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 32, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 635 + }, + "angle": 0, + "vertices": { + "#": 636 + }, + "position": { + "#": 657 + }, + "force": { + "#": 658 + }, + "torque": 0, + "positionImpulse": { + "#": 659 + }, + "constraintImpulse": { + "#": 660 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 661 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 662 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 663 + }, + "circleRadius": 20, + "bounds": { + "#": 665 + }, + "positionPrev": { + "#": 668 + }, + "anglePrev": 0, + "axes": { + "#": 669 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 634 + }, + "sleepCounter": 0 + }, + [ + { + "#": 634 + } + ], + [ + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + } + ], + { + "x": 589.016, + "y": 172.391, + "index": 0, + "body": { + "#": 634 + }, + "isInternal": false + }, + { + "x": 587.082, + "y": 178.342, + "index": 1, + "body": { + "#": 634 + }, + "isInternal": false + }, + { + "x": 583.404, + "y": 183.404, + "index": 2, + "body": { + "#": 634 + }, + "isInternal": false + }, + { + "x": 578.342, + "y": 187.082, + "index": 3, + "body": { + "#": 634 + }, + "isInternal": false + }, + { + "x": 572.391, + "y": 189.016, + "index": 4, + "body": { + "#": 634 + }, + "isInternal": false + }, + { + "x": 566.133, + "y": 189.016, + "index": 5, + "body": { + "#": 634 + }, + "isInternal": false + }, + { + "x": 560.182, + "y": 187.082, + "index": 6, + "body": { + "#": 634 + }, + "isInternal": false + }, + { + "x": 555.12, + "y": 183.404, + "index": 7, + "body": { + "#": 634 + }, + "isInternal": false + }, + { + "x": 551.442, + "y": 178.342, + "index": 8, + "body": { + "#": 634 + }, + "isInternal": false + }, + { + "x": 549.508, + "y": 172.391, + "index": 9, + "body": { + "#": 634 + }, + "isInternal": false + }, + { + "x": 549.508, + "y": 166.133, + "index": 10, + "body": { + "#": 634 + }, + "isInternal": false + }, + { + "x": 551.442, + "y": 160.182, + "index": 11, + "body": { + "#": 634 + }, + "isInternal": false + }, + { + "x": 555.12, + "y": 155.12, + "index": 12, + "body": { + "#": 634 + }, + "isInternal": false + }, + { + "x": 560.182, + "y": 151.442, + "index": 13, + "body": { + "#": 634 + }, + "isInternal": false + }, + { + "x": 566.133, + "y": 149.508, + "index": 14, + "body": { + "#": 634 + }, + "isInternal": false + }, + { + "x": 572.391, + "y": 149.508, + "index": 15, + "body": { + "#": 634 + }, + "isInternal": false + }, + { + "x": 578.342, + "y": 151.442, + "index": 16, + "body": { + "#": 634 + }, + "isInternal": false + }, + { + "x": 583.404, + "y": 155.12, + "index": 17, + "body": { + "#": 634 + }, + "isInternal": false + }, + { + "x": 587.082, + "y": 160.182, + "index": 18, + "body": { + "#": 634 + }, + "isInternal": false + }, + { + "x": 589.016, + "y": 166.133, + "index": 19, + "body": { + "#": 634 + }, + "isInternal": false + }, + { + "x": 569.262, + "y": 169.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -6 + }, + { + "visible": true, + "sprite": { + "#": 664 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 666 + }, + "max": { + "#": 667 + } + }, + { + "x": 549.508, + "y": 149.508 + }, + { + "x": 589.016, + "y": 189.016 + }, + { + "x": 569.262, + "y": 169.262 + }, + [ + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 33, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 681 + }, + "angle": 0, + "vertices": { + "#": 682 + }, + "position": { + "#": 703 + }, + "force": { + "#": 704 + }, + "torque": 0, + "positionImpulse": { + "#": 705 + }, + "constraintImpulse": { + "#": 706 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 707 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 708 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 709 + }, + "circleRadius": 20, + "bounds": { + "#": 711 + }, + "positionPrev": { + "#": 714 + }, + "anglePrev": 0, + "axes": { + "#": 715 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 680 + }, + "sleepCounter": 0 + }, + [ + { + "#": 680 + } + ], + [ + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + } + ], + { + "x": 638.524, + "y": 172.391, + "index": 0, + "body": { + "#": 680 + }, + "isInternal": false + }, + { + "x": 636.59, + "y": 178.342, + "index": 1, + "body": { + "#": 680 + }, + "isInternal": false + }, + { + "x": 632.912, + "y": 183.404, + "index": 2, + "body": { + "#": 680 + }, + "isInternal": false + }, + { + "x": 627.85, + "y": 187.082, + "index": 3, + "body": { + "#": 680 + }, + "isInternal": false + }, + { + "x": 621.899, + "y": 189.016, + "index": 4, + "body": { + "#": 680 + }, + "isInternal": false + }, + { + "x": 615.641, + "y": 189.016, + "index": 5, + "body": { + "#": 680 + }, + "isInternal": false + }, + { + "x": 609.69, + "y": 187.082, + "index": 6, + "body": { + "#": 680 + }, + "isInternal": false + }, + { + "x": 604.628, + "y": 183.404, + "index": 7, + "body": { + "#": 680 + }, + "isInternal": false + }, + { + "x": 600.95, + "y": 178.342, + "index": 8, + "body": { + "#": 680 + }, + "isInternal": false + }, + { + "x": 599.016, + "y": 172.391, + "index": 9, + "body": { + "#": 680 + }, + "isInternal": false + }, + { + "x": 599.016, + "y": 166.133, + "index": 10, + "body": { + "#": 680 + }, + "isInternal": false + }, + { + "x": 600.95, + "y": 160.182, + "index": 11, + "body": { + "#": 680 + }, + "isInternal": false + }, + { + "x": 604.628, + "y": 155.12, + "index": 12, + "body": { + "#": 680 + }, + "isInternal": false + }, + { + "x": 609.69, + "y": 151.442, + "index": 13, + "body": { + "#": 680 + }, + "isInternal": false + }, + { + "x": 615.641, + "y": 149.508, + "index": 14, + "body": { + "#": 680 + }, + "isInternal": false + }, + { + "x": 621.899, + "y": 149.508, + "index": 15, + "body": { + "#": 680 + }, + "isInternal": false + }, + { + "x": 627.85, + "y": 151.442, + "index": 16, + "body": { + "#": 680 + }, + "isInternal": false + }, + { + "x": 632.912, + "y": 155.12, + "index": 17, + "body": { + "#": 680 + }, + "isInternal": false + }, + { + "x": 636.59, + "y": 160.182, + "index": 18, + "body": { + "#": 680 + }, + "isInternal": false + }, + { + "x": 638.524, + "y": 166.133, + "index": 19, + "body": { + "#": 680 + }, + "isInternal": false + }, + { + "x": 618.77, + "y": 169.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -6 + }, + { + "visible": true, + "sprite": { + "#": 710 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 712 + }, + "max": { + "#": 713 + } + }, + { + "x": 599.016, + "y": 149.508 + }, + { + "x": 638.524, + "y": 189.016 + }, + { + "x": 618.77, + "y": 169.262 + }, + [ + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 34, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 727 + }, + "angle": 0, + "vertices": { + "#": 728 + }, + "position": { + "#": 749 + }, + "force": { + "#": 750 + }, + "torque": 0, + "positionImpulse": { + "#": 751 + }, + "constraintImpulse": { + "#": 752 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 753 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 754 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 755 + }, + "circleRadius": 20, + "bounds": { + "#": 757 + }, + "positionPrev": { + "#": 760 + }, + "anglePrev": 0, + "axes": { + "#": 761 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 726 + }, + "sleepCounter": 0 + }, + [ + { + "#": 726 + } + ], + [ + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + } + ], + { + "x": 688.032, + "y": 172.391, + "index": 0, + "body": { + "#": 726 + }, + "isInternal": false + }, + { + "x": 686.098, + "y": 178.342, + "index": 1, + "body": { + "#": 726 + }, + "isInternal": false + }, + { + "x": 682.42, + "y": 183.404, + "index": 2, + "body": { + "#": 726 + }, + "isInternal": false + }, + { + "x": 677.358, + "y": 187.082, + "index": 3, + "body": { + "#": 726 + }, + "isInternal": false + }, + { + "x": 671.407, + "y": 189.016, + "index": 4, + "body": { + "#": 726 + }, + "isInternal": false + }, + { + "x": 665.149, + "y": 189.016, + "index": 5, + "body": { + "#": 726 + }, + "isInternal": false + }, + { + "x": 659.198, + "y": 187.082, + "index": 6, + "body": { + "#": 726 + }, + "isInternal": false + }, + { + "x": 654.136, + "y": 183.404, + "index": 7, + "body": { + "#": 726 + }, + "isInternal": false + }, + { + "x": 650.458, + "y": 178.342, + "index": 8, + "body": { + "#": 726 + }, + "isInternal": false + }, + { + "x": 648.524, + "y": 172.391, + "index": 9, + "body": { + "#": 726 + }, + "isInternal": false + }, + { + "x": 648.524, + "y": 166.133, + "index": 10, + "body": { + "#": 726 + }, + "isInternal": false + }, + { + "x": 650.458, + "y": 160.182, + "index": 11, + "body": { + "#": 726 + }, + "isInternal": false + }, + { + "x": 654.136, + "y": 155.12, + "index": 12, + "body": { + "#": 726 + }, + "isInternal": false + }, + { + "x": 659.198, + "y": 151.442, + "index": 13, + "body": { + "#": 726 + }, + "isInternal": false + }, + { + "x": 665.149, + "y": 149.508, + "index": 14, + "body": { + "#": 726 + }, + "isInternal": false + }, + { + "x": 671.407, + "y": 149.508, + "index": 15, + "body": { + "#": 726 + }, + "isInternal": false + }, + { + "x": 677.358, + "y": 151.442, + "index": 16, + "body": { + "#": 726 + }, + "isInternal": false + }, + { + "x": 682.42, + "y": 155.12, + "index": 17, + "body": { + "#": 726 + }, + "isInternal": false + }, + { + "x": 686.098, + "y": 160.182, + "index": 18, + "body": { + "#": 726 + }, + "isInternal": false + }, + { + "x": 688.032, + "y": 166.133, + "index": 19, + "body": { + "#": 726 + }, + "isInternal": false + }, + { + "x": 668.278, + "y": 169.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -6 + }, + { + "visible": true, + "sprite": { + "#": 756 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 758 + }, + "max": { + "#": 759 + } + }, + { + "x": 648.524, + "y": 149.508 + }, + { + "x": 688.032, + "y": 189.016 + }, + { + "x": 668.278, + "y": 169.262 + }, + [ + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + }, + { + "#": 767 + }, + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 35, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 773 + }, + "angle": 0, + "vertices": { + "#": 774 + }, + "position": { + "#": 795 + }, + "force": { + "#": 796 + }, + "torque": 0, + "positionImpulse": { + "#": 797 + }, + "constraintImpulse": { + "#": 798 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 799 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 800 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 801 + }, + "circleRadius": 20, + "bounds": { + "#": 803 + }, + "positionPrev": { + "#": 806 + }, + "anglePrev": 0, + "axes": { + "#": 807 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 772 + }, + "sleepCounter": 0 + }, + [ + { + "#": 772 + } + ], + [ + { + "#": 775 + }, + { + "#": 776 + }, + { + "#": 777 + }, + { + "#": 778 + }, + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + }, + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + } + ], + { + "x": 737.54, + "y": 172.391, + "index": 0, + "body": { + "#": 772 + }, + "isInternal": false + }, + { + "x": 735.606, + "y": 178.342, + "index": 1, + "body": { + "#": 772 + }, + "isInternal": false + }, + { + "x": 731.928, + "y": 183.404, + "index": 2, + "body": { + "#": 772 + }, + "isInternal": false + }, + { + "x": 726.866, + "y": 187.082, + "index": 3, + "body": { + "#": 772 + }, + "isInternal": false + }, + { + "x": 720.915, + "y": 189.016, + "index": 4, + "body": { + "#": 772 + }, + "isInternal": false + }, + { + "x": 714.657, + "y": 189.016, + "index": 5, + "body": { + "#": 772 + }, + "isInternal": false + }, + { + "x": 708.706, + "y": 187.082, + "index": 6, + "body": { + "#": 772 + }, + "isInternal": false + }, + { + "x": 703.644, + "y": 183.404, + "index": 7, + "body": { + "#": 772 + }, + "isInternal": false + }, + { + "x": 699.966, + "y": 178.342, + "index": 8, + "body": { + "#": 772 + }, + "isInternal": false + }, + { + "x": 698.032, + "y": 172.391, + "index": 9, + "body": { + "#": 772 + }, + "isInternal": false + }, + { + "x": 698.032, + "y": 166.133, + "index": 10, + "body": { + "#": 772 + }, + "isInternal": false + }, + { + "x": 699.966, + "y": 160.182, + "index": 11, + "body": { + "#": 772 + }, + "isInternal": false + }, + { + "x": 703.644, + "y": 155.12, + "index": 12, + "body": { + "#": 772 + }, + "isInternal": false + }, + { + "x": 708.706, + "y": 151.442, + "index": 13, + "body": { + "#": 772 + }, + "isInternal": false + }, + { + "x": 714.657, + "y": 149.508, + "index": 14, + "body": { + "#": 772 + }, + "isInternal": false + }, + { + "x": 720.915, + "y": 149.508, + "index": 15, + "body": { + "#": 772 + }, + "isInternal": false + }, + { + "x": 726.866, + "y": 151.442, + "index": 16, + "body": { + "#": 772 + }, + "isInternal": false + }, + { + "x": 731.928, + "y": 155.12, + "index": 17, + "body": { + "#": 772 + }, + "isInternal": false + }, + { + "x": 735.606, + "y": 160.182, + "index": 18, + "body": { + "#": 772 + }, + "isInternal": false + }, + { + "x": 737.54, + "y": 166.133, + "index": 19, + "body": { + "#": 772 + }, + "isInternal": false + }, + { + "x": 717.786, + "y": 169.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -6 + }, + { + "visible": true, + "sprite": { + "#": 802 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 804 + }, + "max": { + "#": 805 + } + }, + { + "x": 698.032, + "y": 149.508 + }, + { + "x": 737.54, + "y": 189.016 + }, + { + "x": 717.786, + "y": 169.262 + }, + [ + { + "#": 808 + }, + { + "#": 809 + }, + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + }, + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + [ + { + "#": 819 + }, + { + "#": 823 + }, + { + "#": 827 + }, + { + "#": 831 + }, + { + "#": 835 + }, + { + "#": 839 + }, + { + "#": 843 + }, + { + "#": 847 + }, + { + "#": 851 + }, + { + "#": 855 + } + ], + { + "bodyA": { + "#": 358 + }, + "pointA": { + "#": 820 + }, + "bodyB": { + "#": 404 + }, + "pointB": { + "#": 821 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 822 + }, + "id": 36, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 19.754, + "y": 0 + }, + { + "x": -19.754, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 404 + }, + "pointA": { + "#": 824 + }, + "bodyB": { + "#": 450 + }, + "pointB": { + "#": 825 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 826 + }, + "id": 37, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 19.754, + "y": 0 + }, + { + "x": -19.754, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 450 + }, + "pointA": { + "#": 828 + }, + "bodyB": { + "#": 496 + }, + "pointB": { + "#": 829 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 830 + }, + "id": 38, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 19.754, + "y": 0 + }, + { + "x": -19.754, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 496 + }, + "pointA": { + "#": 832 + }, + "bodyB": { + "#": 542 + }, + "pointB": { + "#": 833 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 834 + }, + "id": 39, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 19.754, + "y": 0 + }, + { + "x": -19.754, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 542 + }, + "pointA": { + "#": 836 + }, + "bodyB": { + "#": 588 + }, + "pointB": { + "#": 837 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 838 + }, + "id": 40, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 19.754, + "y": 0 + }, + { + "x": -19.754, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 588 + }, + "pointA": { + "#": 840 + }, + "bodyB": { + "#": 634 + }, + "pointB": { + "#": 841 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 842 + }, + "id": 41, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 19.754, + "y": 0 + }, + { + "x": -19.754, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 634 + }, + "pointA": { + "#": 844 + }, + "bodyB": { + "#": 680 + }, + "pointB": { + "#": 845 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 846 + }, + "id": 42, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 19.754, + "y": 0 + }, + { + "x": -19.754, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 680 + }, + "pointA": { + "#": 848 + }, + "bodyB": { + "#": 726 + }, + "pointB": { + "#": 849 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 850 + }, + "id": 43, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 19.754, + "y": 0 + }, + { + "x": -19.754, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 726 + }, + "pointA": { + "#": 852 + }, + "bodyB": { + "#": 772 + }, + "pointB": { + "#": 853 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 854 + }, + "id": 44, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 19.754, + "y": 0 + }, + { + "x": -19.754, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyB": { + "#": 358 + }, + "pointB": { + "#": 856 + }, + "pointA": { + "#": 857 + }, + "stiffness": 0.5, + "length": 19.75553, + "render": { + "#": 858 + }, + "id": 45, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": -20, + "y": 0 + }, + { + "x": 500, + "y": 100 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 862 + }, + "max": { + "#": 863 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/chains/chains-10.json b/test/node/refs/chains/chains-10.json new file mode 100644 index 00000000..f99b34b3 --- /dev/null +++ b/test/node/refs/chains/chains-10.json @@ -0,0 +1,8553 @@ +[ + { + "id": 695, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 94 + }, + "composites": { + "#": 95 + }, + "label": "World", + "gravity": { + "#": 884 + }, + "bounds": { + "#": 885 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + [], + [ + { + "#": 96 + }, + { + "#": 370 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 97 + }, + "constraints": { + "#": 328 + }, + "composites": { + "#": 369 + }, + "label": "Stack Chain" + }, + [ + { + "#": 98 + }, + { + "#": 121 + }, + { + "#": 144 + }, + { + "#": 167 + }, + { + "#": 190 + }, + { + "#": 213 + }, + { + "#": 236 + }, + { + "#": 259 + }, + { + "#": 282 + }, + { + "#": 305 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 99 + }, + "angle": 1.25526, + "vertices": { + "#": 100 + }, + "position": { + "#": 105 + }, + "force": { + "#": 106 + }, + "torque": 0, + "positionImpulse": { + "#": 107 + }, + "constraintImpulse": { + "#": 108 + }, + "totalContacts": 0, + "speed": 11.43684, + "angularSpeed": 0.15541, + "velocity": { + "#": 109 + }, + "angularVelocity": 0.12541, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 110 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 111 + }, + "bounds": { + "#": 113 + }, + "positionPrev": { + "#": 116 + }, + "anglePrev": 1.13986, + "axes": { + "#": 117 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 98 + }, + "sleepCounter": 0, + "region": { + "#": 120 + } + }, + [ + { + "#": 98 + } + ], + [ + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + } + ], + { + "x": 216.54226, + "y": 85.10561, + "index": 0, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 232.05836, + "y": 132.63718, + "index": 1, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 213.04573, + "y": 138.84362, + "index": 2, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 197.52963, + "y": 91.31205, + "index": 3, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 214.79399, + "y": 111.97462 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 12.78626, + "y": 1.30862 + }, + { + "category": 1, + "mask": 4294967295, + "group": -5 + }, + { + "visible": true, + "sprite": { + "#": 112 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 114 + }, + "max": { + "#": 115 + } + }, + { + "x": 197.52963, + "y": 85.10561 + }, + { + "x": 232.05836, + "y": 138.84362 + }, + { + "x": 202.78444, + "y": 109.46239 + }, + [ + { + "#": 118 + }, + { + "#": 119 + } + ], + { + "x": -0.95063, + "y": 0.31032 + }, + { + "x": -0.31032, + "y": -0.95063 + }, + { + "id": "4,4,1,2", + "startCol": 4, + "endCol": 4, + "startRow": 1, + "endRow": 2 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 122 + }, + "angle": 0.55413, + "vertices": { + "#": 123 + }, + "position": { + "#": 128 + }, + "force": { + "#": 129 + }, + "torque": 0, + "positionImpulse": { + "#": 130 + }, + "constraintImpulse": { + "#": 131 + }, + "totalContacts": 0, + "speed": 17.53628, + "angularSpeed": 0.07579, + "velocity": { + "#": 132 + }, + "angularVelocity": 0.05579, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 133 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 134 + }, + "bounds": { + "#": 136 + }, + "positionPrev": { + "#": 139 + }, + "anglePrev": 0.50834, + "axes": { + "#": 140 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 121 + }, + "sleepCounter": 0, + "region": { + "#": 143 + } + }, + [ + { + "#": 121 + } + ], + [ + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + } + ], + { + "x": 229.87572, + "y": 124.01799, + "index": 0, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 272.39357, + "y": 150.3283, + "index": 1, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 261.86944, + "y": 167.33544, + "index": 2, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 219.35159, + "y": 141.02513, + "index": 3, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 245.87258, + "y": 145.67672 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 14.54088, + "y": 8.52323 + }, + { + "category": 1, + "mask": 4294967295, + "group": -5 + }, + { + "visible": true, + "sprite": { + "#": 135 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 137 + }, + "max": { + "#": 138 + } + }, + { + "x": 219.35159, + "y": 124.01799 + }, + { + "x": 272.39357, + "y": 167.33544 + }, + { + "x": 231.08401, + "y": 138.10319 + }, + [ + { + "#": 141 + }, + { + "#": 142 + } + ], + { + "x": -0.52621, + "y": 0.85036 + }, + { + "x": -0.85036, + "y": -0.52621 + }, + { + "id": "4,5,2,3", + "startCol": 4, + "endCol": 5, + "startRow": 2, + "endRow": 3 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 145 + }, + "angle": 0.30395, + "vertices": { + "#": 146 + }, + "position": { + "#": 151 + }, + "force": { + "#": 152 + }, + "torque": 0, + "positionImpulse": { + "#": 153 + }, + "constraintImpulse": { + "#": 154 + }, + "totalContacts": 0, + "speed": 20.64401, + "angularSpeed": 0.02723, + "velocity": { + "#": 155 + }, + "angularVelocity": 0.01723, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 156 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 157 + }, + "bounds": { + "#": 159 + }, + "positionPrev": { + "#": 162 + }, + "anglePrev": 0.29672, + "axes": { + "#": 163 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 144 + }, + "sleepCounter": 0, + "region": { + "#": 166 + } + }, + [ + { + "#": 144 + } + ], + [ + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + } + ], + { + "x": 270.32821, + "y": 147.87158, + "index": 0, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 318.03629, + "y": 162.83618, + "index": 1, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 312.05045, + "y": 181.91941, + "index": 2, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 264.34237, + "y": 166.95481, + "index": 3, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 291.18933, + "y": 164.8955 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 17.95957, + "y": 10.21695 + }, + { + "category": 1, + "mask": 4294967295, + "group": -5 + }, + { + "visible": true, + "sprite": { + "#": 158 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 160 + }, + "max": { + "#": 161 + } + }, + { + "x": 264.34237, + "y": 147.87158 + }, + { + "x": 318.03629, + "y": 181.91941 + }, + { + "x": 273.2328, + "y": 154.58518 + }, + [ + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": -0.29929, + "y": 0.95416 + }, + { + "x": -0.95416, + "y": -0.29929 + }, + { + "id": "5,6,3,3", + "startCol": 5, + "endCol": 6, + "startRow": 3, + "endRow": 3 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 168 + }, + "angle": -0.23034, + "vertices": { + "#": 169 + }, + "position": { + "#": 174 + }, + "force": { + "#": 175 + }, + "torque": 0, + "positionImpulse": { + "#": 176 + }, + "constraintImpulse": { + "#": 177 + }, + "totalContacts": 0, + "speed": 21.16646, + "angularSpeed": 0.06638, + "velocity": { + "#": 178 + }, + "angularVelocity": -0.07374, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 179 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 180 + }, + "bounds": { + "#": 182 + }, + "positionPrev": { + "#": 185 + }, + "anglePrev": -0.1666, + "axes": { + "#": 186 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 167 + }, + "sleepCounter": 0, + "region": { + "#": 189 + } + }, + [ + { + "#": 167 + } + ], + [ + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + } + ], + { + "x": 312.59852, + "y": 161.91001, + "index": 0, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 361.27796, + "y": 150.4946, + "index": 1, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 365.84413, + "y": 169.96637, + "index": 2, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 317.16469, + "y": 181.38179, + "index": 3, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 339.22133, + "y": 165.93819 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 19.77293, + "y": 8.05046 + }, + { + "category": 1, + "mask": 4294967295, + "group": -5 + }, + { + "visible": true, + "sprite": { + "#": 181 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 183 + }, + "max": { + "#": 184 + } + }, + { + "x": 312.59852, + "y": 150.4946 + }, + { + "x": 365.84413, + "y": 181.38179 + }, + { + "x": 319.50398, + "y": 157.07859 + }, + [ + { + "#": 187 + }, + { + "#": 188 + } + ], + { + "x": 0.22831, + "y": 0.97359 + }, + { + "x": -0.97359, + "y": 0.22831 + }, + { + "id": "6,7,3,3", + "startCol": 6, + "endCol": 7, + "startRow": 3, + "endRow": 3 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 191 + }, + "angle": -0.53385, + "vertices": { + "#": 192 + }, + "position": { + "#": 197 + }, + "force": { + "#": 198 + }, + "torque": 0, + "positionImpulse": { + "#": 199 + }, + "constraintImpulse": { + "#": 200 + }, + "totalContacts": 0, + "speed": 19.31791, + "angularSpeed": 0.05459, + "velocity": { + "#": 201 + }, + "angularVelocity": -0.04363, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 202 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 203 + }, + "bounds": { + "#": 205 + }, + "positionPrev": { + "#": 208 + }, + "anglePrev": -0.49021, + "axes": { + "#": 209 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 190 + }, + "sleepCounter": 0, + "region": { + "#": 212 + } + }, + [ + { + "#": 190 + } + ], + [ + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + } + ], + { + "x": 358.60789, + "y": 154.35913, + "index": 0, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 401.65073, + "y": 128.91678, + "index": 1, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 411.82768, + "y": 146.13392, + "index": 2, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 368.78483, + "y": 171.57627, + "index": 3, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 385.21778, + "y": 150.24653 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 18.15725, + "y": 6.00931 + }, + { + "category": 1, + "mask": 4294967295, + "group": -5 + }, + { + "visible": true, + "sprite": { + "#": 204 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 206 + }, + "max": { + "#": 207 + } + }, + { + "x": 358.60789, + "y": 128.91678 + }, + { + "x": 411.82768, + "y": 171.57627 + }, + { + "x": 366.60445, + "y": 143.6004 + }, + [ + { + "#": 210 + }, + { + "#": 211 + } + ], + { + "x": 0.50885, + "y": 0.86086 + }, + { + "x": -0.86086, + "y": 0.50885 + }, + { + "id": "7,8,2,3", + "startCol": 7, + "endCol": 8, + "startRow": 2, + "endRow": 3 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 214 + }, + "angle": 0.09885, + "vertices": { + "#": 215 + }, + "position": { + "#": 220 + }, + "force": { + "#": 221 + }, + "torque": 0, + "positionImpulse": { + "#": 222 + }, + "constraintImpulse": { + "#": 223 + }, + "totalContacts": 0, + "speed": 16.29129, + "angularSpeed": 0.0475, + "velocity": { + "#": 224 + }, + "angularVelocity": 0.0475, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 225 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 226 + }, + "bounds": { + "#": 228 + }, + "positionPrev": { + "#": 231 + }, + "anglePrev": 0.05135, + "axes": { + "#": 232 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 213 + }, + "sleepCounter": 0, + "region": { + "#": 235 + } + }, + [ + { + "#": 213 + } + ], + [ + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + } + ], + { + "x": 409.12479, + "y": 129.65674, + "index": 0, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 458.88073, + "y": 134.59096, + "index": 1, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 456.90704, + "y": 154.49334, + "index": 2, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 407.1511, + "y": 149.55911, + "index": 3, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 433.01592, + "y": 142.07504 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 14.47539, + "y": 6.55985 + }, + { + "category": 1, + "mask": 4294967295, + "group": -5 + }, + { + "visible": true, + "sprite": { + "#": 227 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 229 + }, + "max": { + "#": 230 + } + }, + { + "x": 407.1511, + "y": 129.65674 + }, + { + "x": 458.88073, + "y": 154.49334 + }, + { + "x": 418.40605, + "y": 135.16246 + }, + [ + { + "#": 233 + }, + { + "#": 234 + } + ], + { + "x": -0.09868, + "y": 0.99512 + }, + { + "x": -0.99512, + "y": -0.09868 + }, + { + "id": "8,9,2,3", + "startCol": 8, + "endCol": 9, + "startRow": 2, + "endRow": 3 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 237 + }, + "angle": 0.36525, + "vertices": { + "#": 238 + }, + "position": { + "#": 243 + }, + "force": { + "#": 244 + }, + "torque": 0, + "positionImpulse": { + "#": 245 + }, + "constraintImpulse": { + "#": 246 + }, + "totalContacts": 0, + "speed": 13.06004, + "angularSpeed": 0.00841, + "velocity": { + "#": 247 + }, + "angularVelocity": 0.00159, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 248 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 249 + }, + "bounds": { + "#": 251 + }, + "positionPrev": { + "#": 254 + }, + "anglePrev": 0.36366, + "axes": { + "#": 255 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 236 + }, + "sleepCounter": 0, + "region": { + "#": 258 + } + }, + [ + { + "#": 236 + } + ], + [ + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + } + ], + { + "x": 462.46059, + "y": 137.53973, + "index": 0, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 509.16233, + "y": 155.39882, + "index": 1, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 502.01869, + "y": 174.07952, + "index": 2, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 455.31695, + "y": 156.22043, + "index": 3, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 482.23964, + "y": 155.80962 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 10.2063, + "y": 7.13662 + }, + { + "category": 1, + "mask": 4294967295, + "group": -5 + }, + { + "visible": true, + "sprite": { + "#": 250 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 252 + }, + "max": { + "#": 253 + } + }, + { + "x": 455.31695, + "y": 137.53973 + }, + { + "x": 509.16233, + "y": 174.07952 + }, + { + "x": 471.90635, + "y": 148.14626 + }, + [ + { + "#": 256 + }, + { + "#": 257 + } + ], + { + "x": -0.35718, + "y": 0.93403 + }, + { + "x": -0.93403, + "y": -0.35718 + }, + { + "id": "9,10,2,3", + "startCol": 9, + "endCol": 10, + "startRow": 2, + "endRow": 3 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 260 + }, + "angle": 1.34243, + "vertices": { + "#": 261 + }, + "position": { + "#": 266 + }, + "force": { + "#": 267 + }, + "torque": 0, + "positionImpulse": { + "#": 268 + }, + "constraintImpulse": { + "#": 269 + }, + "totalContacts": 0, + "speed": 9.48713, + "angularSpeed": 0.05923, + "velocity": { + "#": 270 + }, + "angularVelocity": 0.07145, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 271 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 272 + }, + "bounds": { + "#": 274 + }, + "positionPrev": { + "#": 277 + }, + "anglePrev": 1.27098, + "axes": { + "#": 278 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 259 + }, + "sleepCounter": 0, + "region": { + "#": 281 + } + }, + [ + { + "#": 259 + } + ], + [ + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + } + ], + { + "x": 516.30912, + "y": 164.63369, + "index": 0, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 527.62853, + "y": 213.33555, + "index": 1, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 508.14779, + "y": 217.86331, + "index": 2, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 496.82838, + "y": 169.16145, + "index": 3, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 512.22845, + "y": 191.2485 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 5.56351, + "y": 6.95299 + }, + { + "category": 1, + "mask": 4294967295, + "group": -5 + }, + { + "visible": true, + "sprite": { + "#": 273 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 275 + }, + "max": { + "#": 276 + } + }, + { + "x": 496.82838, + "y": 164.63369 + }, + { + "x": 527.62853, + "y": 217.86331 + }, + { + "x": 506.60406, + "y": 184.03988 + }, + [ + { + "#": 279 + }, + { + "#": 280 + } + ], + { + "x": -0.97404, + "y": 0.22639 + }, + { + "x": -0.22639, + "y": -0.97404 + }, + { + "id": "10,10,3,4", + "startCol": 10, + "endCol": 10, + "startRow": 3, + "endRow": 4 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 283 + }, + "angle": 0.6662, + "vertices": { + "#": 284 + }, + "position": { + "#": 289 + }, + "force": { + "#": 290 + }, + "torque": 0, + "positionImpulse": { + "#": 291 + }, + "constraintImpulse": { + "#": 292 + }, + "totalContacts": 0, + "speed": 8.17362, + "angularSpeed": 0.02099, + "velocity": { + "#": 293 + }, + "angularVelocity": 0.03518, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 294 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 295 + }, + "bounds": { + "#": 297 + }, + "positionPrev": { + "#": 300 + }, + "anglePrev": 0.63994, + "axes": { + "#": 301 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 282 + }, + "sleepCounter": 0, + "region": { + "#": 304 + } + }, + [ + { + "#": 282 + } + ], + [ + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + } + ], + { + "x": 525.36362, + "y": 209.60771, + "index": 0, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 564.67248, + "y": 240.50777, + "index": 1, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 552.31246, + "y": 256.23131, + "index": 2, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 513.0036, + "y": 225.33126, + "index": 3, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 538.83804, + "y": 232.91951 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.224, + "y": 7.59964 + }, + { + "category": 1, + "mask": 4294967295, + "group": -5 + }, + { + "visible": true, + "sprite": { + "#": 296 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 298 + }, + "max": { + "#": 299 + } + }, + { + "x": 513.0036, + "y": 209.60771 + }, + { + "x": 564.67248, + "y": 256.23131 + }, + { + "x": 538.02668, + "y": 225.38806 + }, + [ + { + "#": 302 + }, + { + "#": 303 + } + ], + { + "x": -0.618, + "y": 0.78618 + }, + { + "x": -0.78618, + "y": -0.618 + }, + { + "id": "10,11,4,5", + "startCol": 10, + "endCol": 11, + "startRow": 4, + "endRow": 5 + }, + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 306 + }, + "angle": -1.93529, + "vertices": { + "#": 307 + }, + "position": { + "#": 312 + }, + "force": { + "#": 313 + }, + "torque": 0, + "positionImpulse": { + "#": 314 + }, + "constraintImpulse": { + "#": 315 + }, + "totalContacts": 0, + "speed": 10.14227, + "angularSpeed": 0.22429, + "velocity": { + "#": 316 + }, + "angularVelocity": -0.22856, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 317 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 318 + }, + "bounds": { + "#": 320 + }, + "positionPrev": { + "#": 323 + }, + "anglePrev": -1.71673, + "axes": { + "#": 324 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 966.66667, + "inverseInertia": 0.00103, + "parent": { + "#": 305 + }, + "sleepCounter": 0, + "region": { + "#": 327 + } + }, + [ + { + "#": 305 + } + ], + [ + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + } + ], + { + "x": 551.2118, + "y": 251.86447, + "index": 0, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 533.38801, + "y": 205.14925, + "index": 1, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 552.0741, + "y": 198.01973, + "index": 2, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 569.8979, + "y": 244.73496, + "index": 3, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 551.64295, + "y": 224.9421 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00884, + "y": 0.04056 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -4.77048, + "y": 7.9965 + }, + { + "category": 1, + "mask": 4294967295, + "group": -5 + }, + { + "visible": true, + "sprite": { + "#": 319 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 321 + }, + "max": { + "#": 322 + } + }, + { + "x": 528.61754, + "y": 198.01973 + }, + { + "x": 569.8979, + "y": 259.86098 + }, + { + "x": 557.00079, + "y": 216.87742 + }, + [ + { + "#": 325 + }, + { + "#": 326 + } + ], + { + "x": 0.9343, + "y": -0.35648 + }, + { + "x": 0.35648, + "y": 0.9343 + }, + { + "id": "11,11,4,5", + "startCol": 11, + "endCol": 11, + "startRow": 4, + "endRow": 5 + }, + [ + { + "#": 329 + }, + { + "#": 333 + }, + { + "#": 337 + }, + { + "#": 341 + }, + { + "#": 345 + }, + { + "#": 349 + }, + { + "#": 353 + }, + { + "#": 357 + }, + { + "#": 361 + }, + { + "#": 365 + } + ], + { + "bodyA": { + "#": 98 + }, + "pointA": { + "#": 330 + }, + "bodyB": { + "#": 121 + }, + "pointB": { + "#": 331 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 332 + }, + "id": 15, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 1.27526, + "angleB": 0.57413 + }, + { + "x": 7.28121, + "y": 23.91619 + }, + { + "x": -20.99159, + "y": -13.57768 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 121 + }, + "pointA": { + "#": 334 + }, + "bodyB": { + "#": 144 + }, + "pointB": { + "#": 335 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 336 + }, + "id": 16, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0.56413, + "angleB": 0.32395 + }, + { + "x": 21.12631, + "y": 13.36709 + }, + { + "x": -23.69963, + "y": -7.95785 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 144 + }, + "pointA": { + "#": 338 + }, + "bodyB": { + "#": 167 + }, + "pointB": { + "#": 339 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 340 + }, + "id": 17, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0.31395, + "angleB": -0.23034 + }, + { + "x": 23.77803, + "y": 7.72046 + }, + { + "x": -24.33972, + "y": 5.70771 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 167 + }, + "pointA": { + "#": 342 + }, + "bodyB": { + "#": 190 + }, + "pointB": { + "#": 343 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 344 + }, + "id": 18, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": -0.24034, + "angleB": -0.54385 + }, + { + "x": 24.28143, + "y": -5.95082 + }, + { + "x": -21.39314, + "y": 12.93575 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 190 + }, + "pointA": { + "#": 346 + }, + "bodyB": { + "#": 213 + }, + "pointB": { + "#": 347 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 348 + }, + "id": 19, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": -0.53385, + "angleB": 0.09885 + }, + { + "x": 21.52142, + "y": -12.72118 + }, + { + "x": -24.87797, + "y": -2.46711 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 213 + }, + "pointA": { + "#": 350 + }, + "bodyB": { + "#": 236 + }, + "pointB": { + "#": 351 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 352 + }, + "id": 20, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0.09885, + "angleB": 0.36525 + }, + { + "x": 24.87797, + "y": 2.46711 + }, + { + "x": -23.35087, + "y": -8.92955 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 236 + }, + "pointA": { + "#": 354 + }, + "bodyB": { + "#": 259 + }, + "pointB": { + "#": 355 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 356 + }, + "id": 21, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0.36525, + "angleB": 1.34243 + }, + { + "x": 23.35087, + "y": 8.92955 + }, + { + "x": -5.6597, + "y": -24.35093 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 259 + }, + "pointA": { + "#": 358 + }, + "bodyB": { + "#": 282 + }, + "pointB": { + "#": 359 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 360 + }, + "id": 22, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 1.34243, + "angleB": 0.67512 + }, + { + "x": 5.6597, + "y": 24.35093 + }, + { + "x": -19.5158, + "y": -15.62477 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 282 + }, + "pointA": { + "#": 362 + }, + "bodyB": { + "#": 305 + }, + "pointB": { + "#": 363 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 364 + }, + "id": 23, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0.67512, + "angleB": -1.94529 + }, + { + "x": 19.5158, + "y": 15.62477 + }, + { + "x": 9.14502, + "y": 23.26733 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyB": { + "#": 98 + }, + "pointB": { + "#": 366 + }, + "pointA": { + "#": 367 + }, + "stiffness": 0.5, + "length": 10, + "render": { + "#": 368 + }, + "id": 24, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 1.26526 + }, + { + "x": -7.52001, + "y": -23.84218 + }, + { + "x": 200, + "y": 100 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "id": 25, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 371 + }, + "constraints": { + "#": 842 + }, + "composites": { + "#": 883 + }, + "label": "Stack Chain" + }, + [ + { + "#": 372 + }, + { + "#": 419 + }, + { + "#": 466 + }, + { + "#": 513 + }, + { + "#": 560 + }, + { + "#": 607 + }, + { + "#": 654 + }, + { + "#": 701 + }, + { + "#": 748 + }, + { + "#": 795 + } + ], + { + "id": 26, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 373 + }, + "angle": 1.38722, + "vertices": { + "#": 374 + }, + "position": { + "#": 395 + }, + "force": { + "#": 396 + }, + "torque": 0, + "positionImpulse": { + "#": 397 + }, + "constraintImpulse": { + "#": 398 + }, + "totalContacts": 0, + "speed": 9.67589, + "angularSpeed": 0.15469, + "velocity": { + "#": 399 + }, + "angularVelocity": 0.14469, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 400 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 401 + }, + "circleRadius": 20, + "bounds": { + "#": 403 + }, + "positionPrev": { + "#": 406 + }, + "anglePrev": 1.25253, + "axes": { + "#": 407 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 372 + }, + "sleepCounter": 0, + "region": { + "#": 418 + } + }, + [ + { + "#": 372 + } + ], + [ + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + } + ], + { + "x": 514.60336, + "y": 118.12864, + "index": 0, + "body": { + "#": 372 + }, + "isInternal": false + }, + { + "x": 508.39931, + "y": 117.31348, + "index": 1, + "body": { + "#": 372 + }, + "isInternal": false + }, + { + "x": 502.75095, + "y": 114.62133, + "index": 2, + "body": { + "#": 372 + }, + "isInternal": false + }, + { + "x": 498.2107, + "y": 110.3158, + "index": 3, + "body": { + "#": 372 + }, + "isInternal": false + }, + { + "x": 495.22285, + "y": 104.81784, + "index": 4, + "body": { + "#": 372 + }, + "isInternal": false + }, + { + "x": 494.08047, + "y": 98.665, + "index": 5, + "body": { + "#": 372 + }, + "isInternal": false + }, + { + "x": 494.89563, + "y": 92.46094, + "index": 6, + "body": { + "#": 372 + }, + "isInternal": false + }, + { + "x": 497.58778, + "y": 86.81259, + "index": 7, + "body": { + "#": 372 + }, + "isInternal": false + }, + { + "x": 501.89331, + "y": 82.27233, + "index": 8, + "body": { + "#": 372 + }, + "isInternal": false + }, + { + "x": 507.39127, + "y": 79.28449, + "index": 9, + "body": { + "#": 372 + }, + "isInternal": false + }, + { + "x": 513.54412, + "y": 78.14211, + "index": 10, + "body": { + "#": 372 + }, + "isInternal": false + }, + { + "x": 519.74817, + "y": 78.95727, + "index": 11, + "body": { + "#": 372 + }, + "isInternal": false + }, + { + "x": 525.39652, + "y": 81.64941, + "index": 12, + "body": { + "#": 372 + }, + "isInternal": false + }, + { + "x": 529.93678, + "y": 85.95495, + "index": 13, + "body": { + "#": 372 + }, + "isInternal": false + }, + { + "x": 532.92462, + "y": 91.4529, + "index": 14, + "body": { + "#": 372 + }, + "isInternal": false + }, + { + "x": 534.067, + "y": 97.60575, + "index": 15, + "body": { + "#": 372 + }, + "isInternal": false + }, + { + "x": 533.25184, + "y": 103.8098, + "index": 16, + "body": { + "#": 372 + }, + "isInternal": false + }, + { + "x": 530.5597, + "y": 109.45816, + "index": 17, + "body": { + "#": 372 + }, + "isInternal": false + }, + { + "x": 526.25416, + "y": 113.99841, + "index": 18, + "body": { + "#": 372 + }, + "isInternal": false + }, + { + "x": 520.75621, + "y": 116.98626, + "index": 19, + "body": { + "#": 372 + }, + "isInternal": false + }, + { + "x": 514.07374, + "y": 98.13537 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 9.42311, + "y": -0.25358 + }, + { + "category": 1, + "mask": 4294967295, + "group": -6 + }, + { + "visible": true, + "sprite": { + "#": 402 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 404 + }, + "max": { + "#": 405 + } + }, + { + "x": 494.08047, + "y": 78.14211 + }, + { + "x": 534.067, + "y": 118.12864 + }, + { + "x": 505.30732, + "y": 97.07774 + }, + [ + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + } + ], + { + "x": 0.13027, + "y": -0.99148 + }, + { + "x": 0.43025, + "y": -0.90271 + }, + { + "x": 0.6881, + "y": -0.72561 + }, + { + "x": 0.87864, + "y": -0.47749 + }, + { + "x": 0.9832, + "y": -0.18255 + }, + { + "x": 0.99148, + "y": 0.13027 + }, + { + "x": 0.90271, + "y": 0.43025 + }, + { + "x": 0.72561, + "y": 0.6881 + }, + { + "x": 0.47749, + "y": 0.87864 + }, + { + "x": 0.18255, + "y": 0.9832 + }, + { + "id": "10,11,1,2", + "startCol": 10, + "endCol": 11, + "startRow": 1, + "endRow": 2 + }, + { + "id": 27, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 420 + }, + "angle": 0.26262, + "vertices": { + "#": 421 + }, + "position": { + "#": 442 + }, + "force": { + "#": 443 + }, + "torque": 0, + "positionImpulse": { + "#": 444 + }, + "constraintImpulse": { + "#": 445 + }, + "totalContacts": 0, + "speed": 8.86629, + "angularSpeed": 0.00313, + "velocity": { + "#": 446 + }, + "angularVelocity": 0.00741, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 447 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 448 + }, + "circleRadius": 20, + "bounds": { + "#": 450 + }, + "positionPrev": { + "#": 453 + }, + "anglePrev": 0.25228, + "axes": { + "#": 454 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 419 + }, + "sleepCounter": 0, + "region": { + "#": 465 + } + }, + [ + { + "#": 419 + } + ], + [ + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + } + ], + { + "x": 553.92736, + "y": 127.23585, + "index": 0, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 550.51474, + "y": 132.48073, + "index": 1, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 545.64871, + "y": 136.41434, + "index": 2, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 539.80543, + "y": 138.6521, + "index": 3, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 533.55639, + "y": 138.97487, + "index": 4, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 527.51295, + "y": 137.35025, + "index": 5, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 522.26806, + "y": 133.93763, + "index": 6, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 518.33445, + "y": 129.0716, + "index": 7, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 516.09669, + "y": 123.22832, + "index": 8, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 515.77392, + "y": 116.97928, + "index": 9, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 517.39854, + "y": 110.93584, + "index": 10, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 520.81116, + "y": 105.69095, + "index": 11, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 525.67719, + "y": 101.75734, + "index": 12, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 531.52047, + "y": 99.51958, + "index": 13, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 537.76952, + "y": 99.19681, + "index": 14, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 543.81296, + "y": 100.82143, + "index": 15, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 549.05784, + "y": 104.23405, + "index": 16, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 552.99145, + "y": 109.10008, + "index": 17, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 555.22921, + "y": 114.94336, + "index": 18, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 555.55198, + "y": 121.19241, + "index": 19, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 535.66295, + "y": 119.08584 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 7.04471, + "y": 1.43829 + }, + { + "category": 1, + "mask": 4294967295, + "group": -6 + }, + { + "visible": true, + "sprite": { + "#": 449 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 451 + }, + "max": { + "#": 452 + } + }, + { + "x": 515.77392, + "y": 99.19681 + }, + { + "x": 555.55198, + "y": 138.97487 + }, + { + "x": 530.19606, + "y": 117.74393 + }, + [ + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + } + ], + { + "x": -0.83819, + "y": -0.54537 + }, + { + "x": -0.62866, + "y": -0.77768 + }, + { + "x": -0.35763, + "y": -0.93386 + }, + { + "x": -0.05158, + "y": -0.99867 + }, + { + "x": 0.25961, + "y": -0.96571 + }, + { + "x": 0.54537, + "y": -0.83819 + }, + { + "x": 0.77768, + "y": -0.62866 + }, + { + "x": 0.93386, + "y": -0.35763 + }, + { + "x": 0.99867, + "y": -0.05158 + }, + { + "x": 0.96571, + "y": 0.25961 + }, + { + "id": "10,11,2,2", + "startCol": 10, + "endCol": 11, + "startRow": 2, + "endRow": 2 + }, + { + "id": 28, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 467 + }, + "angle": 0.57661, + "vertices": { + "#": 468 + }, + "position": { + "#": 489 + }, + "force": { + "#": 490 + }, + "torque": 0, + "positionImpulse": { + "#": 491 + }, + "constraintImpulse": { + "#": 492 + }, + "totalContacts": 0, + "speed": 7.35051, + "angularSpeed": 0.02667, + "velocity": { + "#": 493 + }, + "angularVelocity": 0.0506, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 494 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 495 + }, + "circleRadius": 20, + "bounds": { + "#": 497 + }, + "positionPrev": { + "#": 500 + }, + "anglePrev": 0.516, + "axes": { + "#": 501 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 466 + }, + "sleepCounter": 0, + "region": { + "#": 512 + } + }, + [ + { + "#": 466 + } + ], + [ + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + } + ], + { + "x": 580.86033, + "y": 147.79133, + "index": 0, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 575.99465, + "y": 151.72578, + "index": 1, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 570.15161, + "y": 153.96417, + "index": 2, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 563.90287, + "y": 154.2878, + "index": 3, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 557.85965, + "y": 152.66473, + "index": 4, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 552.61346, + "y": 149.25299, + "index": 5, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 548.67901, + "y": 144.38731, + "index": 6, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 546.44062, + "y": 138.54427, + "index": 7, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 546.11699, + "y": 132.29552, + "index": 8, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 547.74005, + "y": 126.25231, + "index": 9, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 551.1518, + "y": 121.00611, + "index": 10, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 556.01748, + "y": 117.07166, + "index": 11, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 561.86052, + "y": 114.83327, + "index": 12, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 568.10926, + "y": 114.50964, + "index": 13, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 574.15248, + "y": 116.13271, + "index": 14, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 579.39867, + "y": 119.54445, + "index": 15, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 583.33312, + "y": 124.41013, + "index": 16, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 585.57151, + "y": 130.25318, + "index": 17, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 585.89514, + "y": 136.50192, + "index": 18, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 584.27208, + "y": 142.54513, + "index": 19, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 566.00607, + "y": 134.39872 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 6.29965, + "y": 2.63722 + }, + { + "category": 1, + "mask": 4294967295, + "group": -6 + }, + { + "visible": true, + "sprite": { + "#": 496 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 498 + }, + "max": { + "#": 499 + } + }, + { + "x": 546.11699, + "y": 114.50964 + }, + { + "x": 585.89514, + "y": 154.2878 + }, + { + "x": 562.60722, + "y": 131.47076 + }, + [ + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + } + ], + { + "x": -0.62877, + "y": -0.77759 + }, + { + "x": -0.35774, + "y": -0.93382 + }, + { + "x": -0.05172, + "y": -0.99866 + }, + { + "x": 0.25938, + "y": -0.96577 + }, + { + "x": 0.54518, + "y": -0.83832 + }, + { + "x": 0.77759, + "y": -0.62877 + }, + { + "x": 0.93382, + "y": -0.35774 + }, + { + "x": 0.99866, + "y": -0.05172 + }, + { + "x": 0.96577, + "y": 0.25938 + }, + { + "x": 0.83832, + "y": 0.54518 + }, + { + "id": "11,12,2,3", + "startCol": 11, + "endCol": 12, + "startRow": 2, + "endRow": 3 + }, + { + "id": 29, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 514 + }, + "angle": -0.05954, + "vertices": { + "#": 515 + }, + "position": { + "#": 536 + }, + "force": { + "#": 537 + }, + "torque": 0, + "positionImpulse": { + "#": 538 + }, + "constraintImpulse": { + "#": 539 + }, + "totalContacts": 0, + "speed": 3.70751, + "angularSpeed": 0.07791, + "velocity": { + "#": 540 + }, + "angularVelocity": -0.07279, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 541 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 542 + }, + "circleRadius": 20, + "bounds": { + "#": 544 + }, + "positionPrev": { + "#": 547 + }, + "anglePrev": 0.00521, + "axes": { + "#": 548 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 513 + }, + "sleepCounter": 0, + "region": { + "#": 559 + } + }, + [ + { + "#": 513 + } + ], + [ + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + } + ], + { + "x": 616.19281, + "y": 146.67426, + "index": 0, + "body": { + "#": 513 + }, + "isInternal": false + }, + { + "x": 614.61632, + "y": 152.72979, + "index": 1, + "body": { + "#": 513 + }, + "isInternal": false + }, + { + "x": 611.24603, + "y": 158.00166, + "index": 2, + "body": { + "#": 513 + }, + "isInternal": false + }, + { + "x": 606.41184, + "y": 161.97434, + "index": 3, + "body": { + "#": 513 + }, + "isInternal": false + }, + { + "x": 600.58646, + "y": 164.259, + "index": 4, + "body": { + "#": 513 + }, + "isInternal": false + }, + { + "x": 594.33955, + "y": 164.63135, + "index": 5, + "body": { + "#": 513 + }, + "isInternal": false + }, + { + "x": 588.28402, + "y": 163.05486, + "index": 6, + "body": { + "#": 513 + }, + "isInternal": false + }, + { + "x": 583.01214, + "y": 159.68457, + "index": 7, + "body": { + "#": 513 + }, + "isInternal": false + }, + { + "x": 579.03947, + "y": 154.85038, + "index": 8, + "body": { + "#": 513 + }, + "isInternal": false + }, + { + "x": 576.75481, + "y": 149.025, + "index": 9, + "body": { + "#": 513 + }, + "isInternal": false + }, + { + "x": 576.38245, + "y": 142.77808, + "index": 10, + "body": { + "#": 513 + }, + "isInternal": false + }, + { + "x": 577.95894, + "y": 136.72255, + "index": 11, + "body": { + "#": 513 + }, + "isInternal": false + }, + { + "x": 581.32923, + "y": 131.45068, + "index": 12, + "body": { + "#": 513 + }, + "isInternal": false + }, + { + "x": 586.16342, + "y": 127.47801, + "index": 13, + "body": { + "#": 513 + }, + "isInternal": false + }, + { + "x": 591.98881, + "y": 125.19335, + "index": 14, + "body": { + "#": 513 + }, + "isInternal": false + }, + { + "x": 598.23572, + "y": 124.82099, + "index": 15, + "body": { + "#": 513 + }, + "isInternal": false + }, + { + "x": 604.29125, + "y": 126.39748, + "index": 16, + "body": { + "#": 513 + }, + "isInternal": false + }, + { + "x": 609.56312, + "y": 129.76777, + "index": 17, + "body": { + "#": 513 + }, + "isInternal": false + }, + { + "x": 613.5358, + "y": 134.60196, + "index": 18, + "body": { + "#": 513 + }, + "isInternal": false + }, + { + "x": 615.82046, + "y": 140.42735, + "index": 19, + "body": { + "#": 513 + }, + "isInternal": false + }, + { + "x": 596.28763, + "y": 144.72617 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 5.06715, + "y": 1.91885 + }, + { + "category": 1, + "mask": 4294967295, + "group": -6 + }, + { + "visible": true, + "sprite": { + "#": 543 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 545 + }, + "max": { + "#": 546 + } + }, + { + "x": 576.38245, + "y": 124.82099 + }, + { + "x": 616.19281, + "y": 164.63135 + }, + { + "x": 594.04537, + "y": 141.70802 + }, + [ + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + } + ], + { + "x": -0.96774, + "y": -0.25194 + }, + { + "x": -0.84254, + "y": -0.53863 + }, + { + "x": -0.6349, + "y": -0.77259 + }, + { + "x": -0.36511, + "y": -0.93096 + }, + { + "x": -0.0595, + "y": -0.99823 + }, + { + "x": 0.25194, + "y": -0.96774 + }, + { + "x": 0.53863, + "y": -0.84254 + }, + { + "x": 0.77259, + "y": -0.6349 + }, + { + "x": 0.93096, + "y": -0.36511 + }, + { + "x": 0.99823, + "y": -0.0595 + }, + { + "id": "12,12,2,3", + "startCol": 12, + "endCol": 12, + "startRow": 2, + "endRow": 3 + }, + { + "id": 30, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 561 + }, + "angle": -0.73739, + "vertices": { + "#": 562 + }, + "position": { + "#": 583 + }, + "force": { + "#": 584 + }, + "torque": 0, + "positionImpulse": { + "#": 585 + }, + "constraintImpulse": { + "#": 586 + }, + "totalContacts": 0, + "speed": 0.94245, + "angularSpeed": 0.13895, + "velocity": { + "#": 587 + }, + "angularVelocity": -0.16796, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 588 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 589 + }, + "circleRadius": 20, + "bounds": { + "#": 591 + }, + "positionPrev": { + "#": 594 + }, + "anglePrev": -0.57128, + "axes": { + "#": 595 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 560 + }, + "sleepCounter": 0, + "region": { + "#": 606 + } + }, + [ + { + "#": 560 + } + ], + [ + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + } + ], + { + "x": 643.12247, + "y": 122.26101, + "index": 0, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 645.69206, + "y": 127.96645, + "index": 1, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 646.37296, + "y": 134.18641, + "index": 2, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 645.09884, + "y": 140.31243, + "index": 3, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 641.99408, + "y": 145.74522, + "index": 4, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 637.36173, + "y": 149.95282, + "index": 5, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 631.65629, + "y": 152.5224, + "index": 6, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 625.43633, + "y": 153.20331, + "index": 7, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 619.31031, + "y": 151.92919, + "index": 8, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 613.87752, + "y": 148.82443, + "index": 9, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 609.66992, + "y": 144.19208, + "index": 10, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 607.10034, + "y": 138.48664, + "index": 11, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 606.41944, + "y": 132.26668, + "index": 12, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 607.69355, + "y": 126.14066, + "index": 13, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 610.79831, + "y": 120.70787, + "index": 14, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 615.43066, + "y": 116.50027, + "index": 15, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 621.1361, + "y": 113.93069, + "index": 16, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 627.35606, + "y": 113.24978, + "index": 17, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 633.48208, + "y": 114.5239, + "index": 18, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 638.91487, + "y": 117.62866, + "index": 19, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 626.3962, + "y": 133.22654 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 2.54301, + "y": -1.68204 + }, + { + "category": 1, + "mask": 4294967295, + "group": -6 + }, + { + "visible": true, + "sprite": { + "#": 590 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 592 + }, + "max": { + "#": 593 + } + }, + { + "x": 606.41944, + "y": 113.24978 + }, + { + "x": 646.37296, + "y": 153.20331 + }, + { + "x": 625.15234, + "y": 133.43175 + }, + [ + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + } + ], + { + "x": -0.91179, + "y": 0.41065 + }, + { + "x": -0.99406, + "y": 0.10882 + }, + { + "x": -0.97905, + "y": -0.20363 + }, + { + "x": -0.86822, + "y": -0.49618 + }, + { + "x": -0.67236, + "y": -0.74023 + }, + { + "x": -0.41065, + "y": -0.91179 + }, + { + "x": -0.10882, + "y": -0.99406 + }, + { + "x": 0.20363, + "y": -0.97905 + }, + { + "x": 0.49618, + "y": -0.86822 + }, + { + "x": 0.74023, + "y": -0.67236 + }, + { + "id": "12,13,2,3", + "startCol": 12, + "endCol": 13, + "startRow": 2, + "endRow": 3 + }, + { + "id": 31, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 608 + }, + "angle": -0.82902, + "vertices": { + "#": 609 + }, + "position": { + "#": 630 + }, + "force": { + "#": 631 + }, + "torque": 0, + "positionImpulse": { + "#": 632 + }, + "constraintImpulse": { + "#": 633 + }, + "totalContacts": 0, + "speed": 5.71154, + "angularSpeed": 0.16821, + "velocity": { + "#": 634 + }, + "angularVelocity": -0.18405, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 635 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 636 + }, + "circleRadius": 20, + "bounds": { + "#": 638 + }, + "positionPrev": { + "#": 641 + }, + "anglePrev": -0.64685, + "axes": { + "#": 642 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 607 + }, + "sleepCounter": 0, + "region": { + "#": 653 + } + }, + [ + { + "#": 607 + } + ], + [ + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + } + ], + { + "x": 668.04149, + "y": 96.24663, + "index": 0, + "body": { + "#": 607 + }, + "isInternal": false + }, + { + "x": 671.1224, + "y": 101.69298, + "index": 1, + "body": { + "#": 607 + }, + "isInternal": false + }, + { + "x": 672.36964, + "y": 107.82453, + "index": 2, + "body": { + "#": 607 + }, + "isInternal": false + }, + { + "x": 671.66146, + "y": 114.04145, + "index": 3, + "body": { + "#": 607 + }, + "isInternal": false + }, + { + "x": 669.06688, + "y": 119.73556, + "index": 4, + "body": { + "#": 607 + }, + "isInternal": false + }, + { + "x": 664.83901, + "y": 124.34941, + "index": 5, + "body": { + "#": 607 + }, + "isInternal": false + }, + { + "x": 659.39266, + "y": 127.43033, + "index": 6, + "body": { + "#": 607 + }, + "isInternal": false + }, + { + "x": 653.26111, + "y": 128.67756, + "index": 7, + "body": { + "#": 607 + }, + "isInternal": false + }, + { + "x": 647.04419, + "y": 127.96939, + "index": 8, + "body": { + "#": 607 + }, + "isInternal": false + }, + { + "x": 641.35008, + "y": 125.37481, + "index": 9, + "body": { + "#": 607 + }, + "isInternal": false + }, + { + "x": 636.73623, + "y": 121.14694, + "index": 10, + "body": { + "#": 607 + }, + "isInternal": false + }, + { + "x": 633.65532, + "y": 115.70059, + "index": 11, + "body": { + "#": 607 + }, + "isInternal": false + }, + { + "x": 632.40808, + "y": 109.56904, + "index": 12, + "body": { + "#": 607 + }, + "isInternal": false + }, + { + "x": 633.11625, + "y": 103.35212, + "index": 13, + "body": { + "#": 607 + }, + "isInternal": false + }, + { + "x": 635.71083, + "y": 97.65801, + "index": 14, + "body": { + "#": 607 + }, + "isInternal": false + }, + { + "x": 639.9387, + "y": 93.04416, + "index": 15, + "body": { + "#": 607 + }, + "isInternal": false + }, + { + "x": 645.38505, + "y": 89.96324, + "index": 16, + "body": { + "#": 607 + }, + "isInternal": false + }, + { + "x": 651.51661, + "y": 88.71601, + "index": 17, + "body": { + "#": 607 + }, + "isInternal": false + }, + { + "x": 657.73352, + "y": 89.42418, + "index": 18, + "body": { + "#": 607 + }, + "isInternal": false + }, + { + "x": 663.42763, + "y": 92.01876, + "index": 19, + "body": { + "#": 607 + }, + "isInternal": false + }, + { + "x": 652.38886, + "y": 108.69678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.70716, + "y": -5.44921 + }, + { + "category": 1, + "mask": 4294967295, + "group": -6 + }, + { + "visible": true, + "sprite": { + "#": 637 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 639 + }, + "max": { + "#": 640 + } + }, + { + "x": 632.40808, + "y": 88.71601 + }, + { + "x": 672.36964, + "y": 128.67756 + }, + { + "x": 653.52864, + "y": 113.51052 + }, + [ + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + } + ], + { + "x": -0.87039, + "y": 0.49236 + }, + { + "x": -0.97993, + "y": 0.19933 + }, + { + "x": -0.99357, + "y": -0.11318 + }, + { + "x": -0.90998, + "y": -0.41464 + }, + { + "x": -0.73727, + "y": -0.67559 + }, + { + "x": -0.49236, + "y": -0.87039 + }, + { + "x": -0.19933, + "y": -0.97993 + }, + { + "x": 0.11318, + "y": -0.99357 + }, + { + "x": 0.41464, + "y": -0.90998 + }, + { + "x": 0.67559, + "y": -0.73727 + }, + { + "id": "13,14,1,2", + "startCol": 13, + "endCol": 14, + "startRow": 1, + "endRow": 2 + }, + { + "id": 32, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 655 + }, + "angle": 0.59097, + "vertices": { + "#": 656 + }, + "position": { + "#": 677 + }, + "force": { + "#": 678 + }, + "torque": 0, + "positionImpulse": { + "#": 679 + }, + "constraintImpulse": { + "#": 680 + }, + "totalContacts": 0, + "speed": 6.39062, + "angularSpeed": 0.05764, + "velocity": { + "#": 681 + }, + "angularVelocity": 0.07129, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 682 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 683 + }, + "circleRadius": 20, + "bounds": { + "#": 685 + }, + "positionPrev": { + "#": 688 + }, + "anglePrev": 0.52108, + "axes": { + "#": 689 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 654 + }, + "sleepCounter": 0, + "region": { + "#": 700 + } + }, + [ + { + "#": 654 + } + ], + [ + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + } + ], + { + "x": 695.28427, + "y": 121.19289, + "index": 0, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 690.36256, + "y": 125.05703, + "index": 1, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 684.48796, + "y": 127.21123, + "index": 2, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 678.23521, + "y": 127.44504, + "index": 3, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 672.21595, + "y": 125.73531, + "index": 4, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 667.01931, + "y": 122.24854, + "index": 5, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 663.15518, + "y": 117.32683, + "index": 6, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 661.00097, + "y": 111.45223, + "index": 7, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 660.76716, + "y": 105.19949, + "index": 8, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 662.47689, + "y": 99.18022, + "index": 9, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 665.96366, + "y": 93.98358, + "index": 10, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 670.88537, + "y": 90.11945, + "index": 11, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 676.75997, + "y": 87.96524, + "index": 12, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 683.01272, + "y": 87.73143, + "index": 13, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 689.03199, + "y": 89.44116, + "index": 14, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 694.22862, + "y": 92.92793, + "index": 15, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 698.09275, + "y": 97.84964, + "index": 16, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 700.24696, + "y": 103.72424, + "index": 17, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 700.48077, + "y": 109.97699, + "index": 18, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 698.77104, + "y": 115.99626, + "index": 19, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 680.62397, + "y": 107.58824 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -2.25182, + "y": -5.06591 + }, + { + "category": 1, + "mask": 4294967295, + "group": -6 + }, + { + "visible": true, + "sprite": { + "#": 684 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 686 + }, + "max": { + "#": 687 + } + }, + { + "x": 660.76716, + "y": 87.73143 + }, + { + "x": 700.48077, + "y": 127.44504 + }, + { + "x": 683.23953, + "y": 112.02696 + }, + [ + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + } + ], + { + "x": -0.61753, + "y": -0.78655 + }, + { + "x": -0.34428, + "y": -0.93887 + }, + { + "x": -0.03737, + "y": -0.9993 + }, + { + "x": 0.27323, + "y": -0.96195 + }, + { + "x": 0.55717, + "y": -0.8304 + }, + { + "x": 0.78655, + "y": -0.61753 + }, + { + "x": 0.93887, + "y": -0.34428 + }, + { + "x": 0.9993, + "y": -0.03737 + }, + { + "x": 0.96195, + "y": 0.27323 + }, + { + "x": 0.8304, + "y": 0.55717 + }, + { + "id": "13,14,1,2", + "startCol": 13, + "endCol": 14, + "startRow": 1, + "endRow": 2 + }, + { + "id": 33, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 702 + }, + "angle": 1.13634, + "vertices": { + "#": 703 + }, + "position": { + "#": 724 + }, + "force": { + "#": 725 + }, + "torque": 0, + "positionImpulse": { + "#": 726 + }, + "constraintImpulse": { + "#": 727 + }, + "totalContacts": 0, + "speed": 3.76105, + "angularSpeed": 0.14828, + "velocity": { + "#": 728 + }, + "angularVelocity": 0.14714, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 729 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 730 + }, + "circleRadius": 20, + "bounds": { + "#": 732 + }, + "positionPrev": { + "#": 735 + }, + "anglePrev": 0.9992, + "axes": { + "#": 736 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 701 + }, + "sleepCounter": 0, + "region": { + "#": 747 + } + }, + [ + { + "#": 701 + } + ], + [ + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + }, + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + } + ], + { + "x": 711.86977, + "y": 154.21112, + "index": 0, + "body": { + "#": 701 + }, + "isInternal": false + }, + { + "x": 705.65757, + "y": 154.96165, + "index": 1, + "body": { + "#": 701 + }, + "isInternal": false + }, + { + "x": 699.5177, + "y": 153.75602, + "index": 2, + "body": { + "#": 701 + }, + "isInternal": false + }, + { + "x": 694.05071, + "y": 150.7124, + "index": 3, + "body": { + "#": 701 + }, + "isInternal": false + }, + { + "x": 689.79151, + "y": 146.1283, + "index": 4, + "body": { + "#": 701 + }, + "isInternal": false + }, + { + "x": 687.15742, + "y": 140.45167, + "index": 5, + "body": { + "#": 701 + }, + "isInternal": false + }, + { + "x": 686.40689, + "y": 134.23947, + "index": 6, + "body": { + "#": 701 + }, + "isInternal": false + }, + { + "x": 687.61253, + "y": 128.0996, + "index": 7, + "body": { + "#": 701 + }, + "isInternal": false + }, + { + "x": 690.65614, + "y": 122.63262, + "index": 8, + "body": { + "#": 701 + }, + "isInternal": false + }, + { + "x": 695.24024, + "y": 118.37342, + "index": 9, + "body": { + "#": 701 + }, + "isInternal": false + }, + { + "x": 700.91687, + "y": 115.73933, + "index": 10, + "body": { + "#": 701 + }, + "isInternal": false + }, + { + "x": 707.12907, + "y": 114.98879, + "index": 11, + "body": { + "#": 701 + }, + "isInternal": false + }, + { + "x": 713.26894, + "y": 116.19443, + "index": 12, + "body": { + "#": 701 + }, + "isInternal": false + }, + { + "x": 718.73593, + "y": 119.23804, + "index": 13, + "body": { + "#": 701 + }, + "isInternal": false + }, + { + "x": 722.99512, + "y": 123.82214, + "index": 14, + "body": { + "#": 701 + }, + "isInternal": false + }, + { + "x": 725.62921, + "y": 129.49877, + "index": 15, + "body": { + "#": 701 + }, + "isInternal": false + }, + { + "x": 726.37975, + "y": 135.71098, + "index": 16, + "body": { + "#": 701 + }, + "isInternal": false + }, + { + "x": 725.17411, + "y": 141.85084, + "index": 17, + "body": { + "#": 701 + }, + "isInternal": false + }, + { + "x": 722.1305, + "y": 147.31783, + "index": 18, + "body": { + "#": 701 + }, + "isInternal": false + }, + { + "x": 717.5464, + "y": 151.57703, + "index": 19, + "body": { + "#": 701 + }, + "isInternal": false + }, + { + "x": 706.39332, + "y": 134.97522 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -2.70973, + "y": -1.93073 + }, + { + "category": 1, + "mask": 4294967295, + "group": -6 + }, + { + "visible": true, + "sprite": { + "#": 731 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 733 + }, + "max": { + "#": 734 + } + }, + { + "x": 686.40689, + "y": 114.98879 + }, + { + "x": 726.37975, + "y": 154.96165 + }, + { + "x": 708.76764, + "y": 136.97766 + }, + [ + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + } + ], + { + "x": -0.11994, + "y": -0.99278 + }, + { + "x": 0.19268, + "y": -0.98126 + }, + { + "x": 0.48642, + "y": -0.87372 + }, + { + "x": 0.73259, + "y": -0.68067 + }, + { + "x": 0.9071, + "y": -0.42092 + }, + { + "x": 0.99278, + "y": -0.11994 + }, + { + "x": 0.98126, + "y": 0.19268 + }, + { + "x": 0.87372, + "y": 0.48642 + }, + { + "x": 0.68067, + "y": 0.73259 + }, + { + "x": 0.42092, + "y": 0.9071 + }, + { + "id": "14,15,2,3", + "startCol": 14, + "endCol": 15, + "startRow": 2, + "endRow": 3 + }, + { + "id": 34, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 749 + }, + "angle": 0.92323, + "vertices": { + "#": 750 + }, + "position": { + "#": 771 + }, + "force": { + "#": 772 + }, + "torque": 0, + "positionImpulse": { + "#": 773 + }, + "constraintImpulse": { + "#": 774 + }, + "totalContacts": 0, + "speed": 5.35047, + "angularSpeed": 0.12715, + "velocity": { + "#": 775 + }, + "angularVelocity": 0.10715, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 776 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 777 + }, + "circleRadius": 20, + "bounds": { + "#": 779 + }, + "positionPrev": { + "#": 782 + }, + "anglePrev": 0.82608, + "axes": { + "#": 783 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 748 + }, + "sleepCounter": 0, + "region": { + "#": 794 + } + }, + [ + { + "#": 748 + } + ], + [ + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + }, + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + }, + { + "#": 767 + }, + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + } + ], + { + "x": 738.80925, + "y": 185.80078, + "index": 0, + "body": { + "#": 748 + }, + "isInternal": false + }, + { + "x": 732.89632, + "y": 187.84822, + "index": 1, + "body": { + "#": 748 + }, + "isInternal": false + }, + { + "x": 726.64036, + "y": 187.96844, + "index": 2, + "body": { + "#": 748 + }, + "isInternal": false + }, + { + "x": 720.65332, + "y": 186.14994, + "index": 3, + "body": { + "#": 748 + }, + "isInternal": false + }, + { + "x": 715.52093, + "y": 182.57036, + "index": 4, + "body": { + "#": 748 + }, + "isInternal": false + }, + { + "x": 711.74583, + "y": 177.57926, + "index": 5, + "body": { + "#": 748 + }, + "isInternal": false + }, + { + "x": 709.69839, + "y": 171.66633, + "index": 6, + "body": { + "#": 748 + }, + "isInternal": false + }, + { + "x": 709.57817, + "y": 165.41037, + "index": 7, + "body": { + "#": 748 + }, + "isInternal": false + }, + { + "x": 711.39667, + "y": 159.42333, + "index": 8, + "body": { + "#": 748 + }, + "isInternal": false + }, + { + "x": 714.97625, + "y": 154.29094, + "index": 9, + "body": { + "#": 748 + }, + "isInternal": false + }, + { + "x": 719.96735, + "y": 150.51584, + "index": 10, + "body": { + "#": 748 + }, + "isInternal": false + }, + { + "x": 725.88028, + "y": 148.4684, + "index": 11, + "body": { + "#": 748 + }, + "isInternal": false + }, + { + "x": 732.13624, + "y": 148.34818, + "index": 12, + "body": { + "#": 748 + }, + "isInternal": false + }, + { + "x": 738.12328, + "y": 150.16668, + "index": 13, + "body": { + "#": 748 + }, + "isInternal": false + }, + { + "x": 743.25567, + "y": 153.74626, + "index": 14, + "body": { + "#": 748 + }, + "isInternal": false + }, + { + "x": 747.03077, + "y": 158.73736, + "index": 15, + "body": { + "#": 748 + }, + "isInternal": false + }, + { + "x": 749.07821, + "y": 164.65029, + "index": 16, + "body": { + "#": 748 + }, + "isInternal": false + }, + { + "x": 749.19843, + "y": 170.90626, + "index": 17, + "body": { + "#": 748 + }, + "isInternal": false + }, + { + "x": 747.37993, + "y": 176.89329, + "index": 18, + "body": { + "#": 748 + }, + "isInternal": false + }, + { + "x": 743.80035, + "y": 182.02568, + "index": 19, + "body": { + "#": 748 + }, + "isInternal": false + }, + { + "x": 729.3883, + "y": 168.15831 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -3.90317, + "y": 2.89292 + }, + { + "category": 1, + "mask": 4294967295, + "group": -6 + }, + { + "visible": true, + "sprite": { + "#": 778 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 780 + }, + "max": { + "#": 781 + } + }, + { + "x": 709.57817, + "y": 148.34818 + }, + { + "x": 749.19843, + "y": 187.96844 + }, + { + "x": 731.97322, + "y": 165.74395 + }, + [ + { + "#": 784 + }, + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + } + ], + { + "x": -0.3272, + "y": -0.94495 + }, + { + "x": -0.01921, + "y": -0.99982 + }, + { + "x": 0.29063, + "y": -0.95684 + }, + { + "x": 0.57206, + "y": -0.82021 + }, + { + "x": 0.79756, + "y": -0.60325 + }, + { + "x": 0.94495, + "y": -0.3272 + }, + { + "x": 0.99982, + "y": -0.01921 + }, + { + "x": 0.95684, + "y": 0.29063 + }, + { + "x": 0.82021, + "y": 0.57206 + }, + { + "x": 0.60325, + "y": 0.79756 + }, + { + "id": "14,15,3,3", + "startCol": 14, + "endCol": 15, + "startRow": 3, + "endRow": 3 + }, + { + "id": 35, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 796 + }, + "angle": 0.69068, + "vertices": { + "#": 797 + }, + "position": { + "#": 818 + }, + "force": { + "#": 819 + }, + "torque": 0, + "positionImpulse": { + "#": 820 + }, + "constraintImpulse": { + "#": 821 + }, + "totalContacts": 0, + "speed": 6.04927, + "angularSpeed": 0.07614, + "velocity": { + "#": 822 + }, + "angularVelocity": 0.06614, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 823 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 824 + }, + "circleRadius": 20, + "bounds": { + "#": 826 + }, + "positionPrev": { + "#": 829 + }, + "anglePrev": 0.63454, + "axes": { + "#": 830 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 795 + }, + "sleepCounter": 0, + "region": { + "#": 841 + } + }, + [ + { + "#": 795 + } + ], + [ + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + }, + { + "#": 806 + }, + { + "#": 807 + }, + { + "#": 808 + }, + { + "#": 809 + }, + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + }, + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + } + ], + { + "x": 771.57126, + "y": 211.2246, + "index": 0, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 766.28937, + "y": 214.57966, + "index": 1, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 760.22952, + "y": 216.13843, + "index": 2, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 753.98455, + "y": 215.7487, + "index": 3, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 748.16535, + "y": 213.44832, + "index": 4, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 743.34159, + "y": 209.46161, + "index": 5, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 739.98653, + "y": 204.17972, + "index": 6, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 738.42776, + "y": 198.11987, + "index": 7, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 738.81749, + "y": 191.8749, + "index": 8, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 741.11787, + "y": 186.05571, + "index": 9, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 745.10458, + "y": 181.23195, + "index": 10, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 750.38647, + "y": 177.87689, + "index": 11, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 756.44632, + "y": 176.31812, + "index": 12, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 762.69129, + "y": 176.70785, + "index": 13, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 768.51048, + "y": 179.00823, + "index": 14, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 773.33425, + "y": 182.99494, + "index": 15, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 776.6893, + "y": 188.27683, + "index": 16, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 778.24807, + "y": 194.33668, + "index": 17, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 777.85834, + "y": 200.58164, + "index": 18, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 775.55797, + "y": 206.40084, + "index": 19, + "body": { + "#": 795 + }, + "isInternal": false + }, + { + "x": 758.33792, + "y": 196.22827 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.37119, + "y": 5.89219 + }, + { + "category": 1, + "mask": 4294967295, + "group": -6 + }, + { + "visible": true, + "sprite": { + "#": 825 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 827 + }, + "max": { + "#": 828 + } + }, + { + "x": 738.42776, + "y": 176.31812 + }, + { + "x": 778.24807, + "y": 216.13843 + }, + { + "x": 760.02735, + "y": 189.85753 + }, + [ + { + "#": 831 + }, + { + "#": 832 + }, + { + "#": 833 + }, + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + } + ], + { + "x": -0.53618, + "y": -0.84411 + }, + { + "x": -0.24912, + "y": -0.96847 + }, + { + "x": 0.06229, + "y": -0.99806 + }, + { + "x": 0.36763, + "y": -0.92997 + }, + { + "x": 0.63706, + "y": -0.77082 + }, + { + "x": 0.84411, + "y": -0.53618 + }, + { + "x": 0.96847, + "y": -0.24912 + }, + { + "x": 0.99806, + "y": 0.06229 + }, + { + "x": 0.92997, + "y": 0.36763 + }, + { + "x": 0.77082, + "y": 0.63706 + }, + { + "id": "15,16,3,4", + "startCol": 15, + "endCol": 16, + "startRow": 3, + "endRow": 4 + }, + [ + { + "#": 843 + }, + { + "#": 847 + }, + { + "#": 851 + }, + { + "#": 855 + }, + { + "#": 859 + }, + { + "#": 863 + }, + { + "#": 867 + }, + { + "#": 871 + }, + { + "#": 875 + }, + { + "#": 879 + } + ], + { + "bodyA": { + "#": 372 + }, + "pointA": { + "#": 844 + }, + "bodyB": { + "#": 419 + }, + "pointB": { + "#": 845 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 846 + }, + "id": 36, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 1.39722, + "angleB": 0.25969 + }, + { + "x": 3.41165, + "y": 19.45716 + }, + { + "x": -19.09165, + "y": -5.07241 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 419 + }, + "pointA": { + "#": 848 + }, + "bodyB": { + "#": 466 + }, + "pointB": { + "#": 849 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 850 + }, + "id": 37, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0.25969, + "angleB": 0.55958 + }, + { + "x": 19.09165, + "y": 5.07241 + }, + { + "x": -16.74104, + "y": -10.48609 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 466 + }, + "pointA": { + "#": 852 + }, + "bodyB": { + "#": 513 + }, + "pointB": { + "#": 853 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 854 + }, + "id": 38, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0.56661, + "angleB": -0.06836 + }, + { + "x": 16.667, + "y": 10.60337 + }, + { + "x": -19.70786, + "y": 1.34932 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 513 + }, + "pointA": { + "#": 856 + }, + "bodyB": { + "#": 560 + }, + "pointB": { + "#": 857 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 858 + }, + "id": 39, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": -0.06759, + "angleB": -0.73023 + }, + { + "x": 19.7089, + "y": -1.33408 + }, + { + "x": -14.71711, + "y": 13.17677 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 560 + }, + "pointA": { + "#": 860 + }, + "bodyB": { + "#": 607 + }, + "pointB": { + "#": 861 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 862 + }, + "id": 40, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": -0.73925, + "angleB": -0.8314 + }, + { + "x": 14.59773, + "y": -13.3089 + }, + { + "x": -13.31112, + "y": 14.59571 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 607 + }, + "pointA": { + "#": 864 + }, + "bodyB": { + "#": 654 + }, + "pointB": { + "#": 865 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 866 + }, + "id": 41, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": -0.8309, + "angleB": 0.58237 + }, + { + "x": 13.31834, + "y": -14.58911 + }, + { + "x": -16.49775, + "y": -10.86483 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 654 + }, + "pointA": { + "#": 868 + }, + "bodyB": { + "#": 701 + }, + "pointB": { + "#": 869 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 870 + }, + "id": 42, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0.59237, + "angleB": 1.14748 + }, + { + "x": 16.38828, + "y": 11.02927 + }, + { + "x": -8.11466, + "y": -18.01035 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 701 + }, + "pointA": { + "#": 872 + }, + "bodyB": { + "#": 748 + }, + "pointB": { + "#": 873 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 874 + }, + "id": 43, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 1.14634, + "angleB": 0.94323 + }, + { + "x": 8.13516, + "y": 18.0011 + }, + { + "x": -11.59904, + "y": -15.99008 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 748 + }, + "pointA": { + "#": 876 + }, + "bodyB": { + "#": 795 + }, + "pointB": { + "#": 877 + }, + "stiffness": 0.8, + "length": 2, + "render": { + "#": 878 + }, + "id": 44, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0.93323, + "angleB": 0.70068 + }, + { + "x": 11.75836, + "y": 15.87329 + }, + { + "x": -15.10009, + "y": -12.73608 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyB": { + "#": 372 + }, + "pointB": { + "#": 880 + }, + "pointA": { + "#": 881 + }, + "stiffness": 0.5, + "length": 19.75553, + "render": { + "#": 882 + }, + "id": 45, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 1.39722 + }, + { + "x": -3.45413, + "y": -19.69947 + }, + { + "x": 500, + "y": 100 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 886 + }, + "max": { + "#": 887 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/circleStack/circleStack-0.json b/test/node/refs/circleStack/circleStack-0.json new file mode 100644 index 00000000..7fbb26e0 --- /dev/null +++ b/test/node/refs/circleStack/circleStack-0.json @@ -0,0 +1,45958 @@ +[ + { + "id": 55, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 90 + }, + "composites": { + "#": 91 + }, + "label": "World", + "gravity": { + "#": 4696 + }, + "bounds": { + "#": 4697 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [ + { + "#": 92 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 93 + }, + "constraints": { + "#": 4694 + }, + "composites": { + "#": 4695 + }, + "label": "Stack" + }, + [ + { + "#": 94 + }, + { + "#": 140 + }, + { + "#": 186 + }, + { + "#": 232 + }, + { + "#": 278 + }, + { + "#": 324 + }, + { + "#": 370 + }, + { + "#": 416 + }, + { + "#": 462 + }, + { + "#": 508 + }, + { + "#": 554 + }, + { + "#": 600 + }, + { + "#": 646 + }, + { + "#": 692 + }, + { + "#": 738 + }, + { + "#": 784 + }, + { + "#": 830 + }, + { + "#": 876 + }, + { + "#": 922 + }, + { + "#": 968 + }, + { + "#": 1014 + }, + { + "#": 1060 + }, + { + "#": 1106 + }, + { + "#": 1152 + }, + { + "#": 1198 + }, + { + "#": 1244 + }, + { + "#": 1290 + }, + { + "#": 1336 + }, + { + "#": 1382 + }, + { + "#": 1428 + }, + { + "#": 1474 + }, + { + "#": 1520 + }, + { + "#": 1566 + }, + { + "#": 1612 + }, + { + "#": 1658 + }, + { + "#": 1704 + }, + { + "#": 1750 + }, + { + "#": 1796 + }, + { + "#": 1842 + }, + { + "#": 1888 + }, + { + "#": 1934 + }, + { + "#": 1980 + }, + { + "#": 2026 + }, + { + "#": 2072 + }, + { + "#": 2118 + }, + { + "#": 2164 + }, + { + "#": 2210 + }, + { + "#": 2256 + }, + { + "#": 2302 + }, + { + "#": 2348 + }, + { + "#": 2394 + }, + { + "#": 2440 + }, + { + "#": 2486 + }, + { + "#": 2532 + }, + { + "#": 2578 + }, + { + "#": 2624 + }, + { + "#": 2670 + }, + { + "#": 2716 + }, + { + "#": 2762 + }, + { + "#": 2808 + }, + { + "#": 2854 + }, + { + "#": 2900 + }, + { + "#": 2946 + }, + { + "#": 2992 + }, + { + "#": 3038 + }, + { + "#": 3084 + }, + { + "#": 3130 + }, + { + "#": 3176 + }, + { + "#": 3222 + }, + { + "#": 3268 + }, + { + "#": 3314 + }, + { + "#": 3360 + }, + { + "#": 3406 + }, + { + "#": 3452 + }, + { + "#": 3498 + }, + { + "#": 3544 + }, + { + "#": 3590 + }, + { + "#": 3636 + }, + { + "#": 3682 + }, + { + "#": 3728 + }, + { + "#": 3774 + }, + { + "#": 3820 + }, + { + "#": 3866 + }, + { + "#": 3912 + }, + { + "#": 3958 + }, + { + "#": 4004 + }, + { + "#": 4050 + }, + { + "#": 4096 + }, + { + "#": 4142 + }, + { + "#": 4188 + }, + { + "#": 4234 + }, + { + "#": 4280 + }, + { + "#": 4326 + }, + { + "#": 4372 + }, + { + "#": 4418 + }, + { + "#": 4464 + }, + { + "#": 4510 + }, + { + "#": 4556 + }, + { + "#": 4602 + }, + { + "#": 4648 + } + ], + { + "id": 5, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 96 + }, + "position": { + "#": 117 + }, + "force": { + "#": 118 + }, + "torque": 0, + "positionImpulse": { + "#": 119 + }, + "constraintImpulse": { + "#": 120 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 121 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 122 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 123 + }, + "circleRadius": 20, + "bounds": { + "#": 125 + }, + "positionPrev": { + "#": 128 + }, + "anglePrev": 0, + "axes": { + "#": 129 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 94 + }, + "sleepCounter": 0 + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + } + ], + { + "x": 139.508, + "y": 122.883, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 128.834, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 133.896, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 137.574, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 139.508, + "index": 4, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 139.508, + "index": 5, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 137.574, + "index": 6, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 133.896, + "index": 7, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 128.834, + "index": 8, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 100, + "y": 122.883, + "index": 9, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 100, + "y": 116.625, + "index": 10, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 110.674, + "index": 11, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 105.612, + "index": 12, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 101.934, + "index": 13, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 100, + "index": 14, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 100, + "index": 15, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 101.934, + "index": 16, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 105.612, + "index": 17, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 110.674, + "index": 18, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 139.508, + "y": 116.625, + "index": 19, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 119.754, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 124 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 126 + }, + "max": { + "#": 127 + } + }, + { + "x": 100, + "y": 100 + }, + { + "x": 139.508, + "y": 139.508 + }, + { + "x": 119.754, + "y": 119.754 + }, + [ + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 141 + }, + "angle": 0, + "vertices": { + "#": 142 + }, + "position": { + "#": 163 + }, + "force": { + "#": 164 + }, + "torque": 0, + "positionImpulse": { + "#": 165 + }, + "constraintImpulse": { + "#": 166 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 167 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 168 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 169 + }, + "circleRadius": 20, + "bounds": { + "#": 171 + }, + "positionPrev": { + "#": 174 + }, + "anglePrev": 0, + "axes": { + "#": 175 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 140 + }, + "sleepCounter": 0 + }, + [ + { + "#": 140 + } + ], + [ + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + }, + { + "#": 156 + }, + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + } + ], + { + "x": 199.016, + "y": 122.883, + "index": 0, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 128.834, + "index": 1, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 133.896, + "index": 2, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 137.574, + "index": 3, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 139.508, + "index": 4, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 139.508, + "index": 5, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 137.574, + "index": 6, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 133.896, + "index": 7, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 128.834, + "index": 8, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 122.883, + "index": 9, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 116.625, + "index": 10, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 110.674, + "index": 11, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 105.612, + "index": 12, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 101.934, + "index": 13, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 100, + "index": 14, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 100, + "index": 15, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 101.934, + "index": 16, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 105.612, + "index": 17, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 110.674, + "index": 18, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 199.016, + "y": 116.625, + "index": 19, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 179.262, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 170 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 172 + }, + "max": { + "#": 173 + } + }, + { + "x": 159.508, + "y": 100 + }, + { + "x": 199.016, + "y": 139.508 + }, + { + "x": 179.262, + "y": 119.754 + }, + [ + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 187 + }, + "angle": 0, + "vertices": { + "#": 188 + }, + "position": { + "#": 209 + }, + "force": { + "#": 210 + }, + "torque": 0, + "positionImpulse": { + "#": 211 + }, + "constraintImpulse": { + "#": 212 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 213 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 214 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 215 + }, + "circleRadius": 20, + "bounds": { + "#": 217 + }, + "positionPrev": { + "#": 220 + }, + "anglePrev": 0, + "axes": { + "#": 221 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 186 + }, + "sleepCounter": 0 + }, + [ + { + "#": 186 + } + ], + [ + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + } + ], + { + "x": 258.524, + "y": 122.883, + "index": 0, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 128.834, + "index": 1, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 133.896, + "index": 2, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 137.574, + "index": 3, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 139.508, + "index": 4, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 139.508, + "index": 5, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 137.574, + "index": 6, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 133.896, + "index": 7, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 128.834, + "index": 8, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 122.883, + "index": 9, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 116.625, + "index": 10, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 110.674, + "index": 11, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 105.612, + "index": 12, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 101.934, + "index": 13, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 100, + "index": 14, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 100, + "index": 15, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 101.934, + "index": 16, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 105.612, + "index": 17, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 110.674, + "index": 18, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 258.524, + "y": 116.625, + "index": 19, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 238.77, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 216 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 218 + }, + "max": { + "#": 219 + } + }, + { + "x": 219.016, + "y": 100 + }, + { + "x": 258.524, + "y": 139.508 + }, + { + "x": 238.77, + "y": 119.754 + }, + [ + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 233 + }, + "angle": 0, + "vertices": { + "#": 234 + }, + "position": { + "#": 255 + }, + "force": { + "#": 256 + }, + "torque": 0, + "positionImpulse": { + "#": 257 + }, + "constraintImpulse": { + "#": 258 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 259 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 260 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 261 + }, + "circleRadius": 20, + "bounds": { + "#": 263 + }, + "positionPrev": { + "#": 266 + }, + "anglePrev": 0, + "axes": { + "#": 267 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 232 + }, + "sleepCounter": 0 + }, + [ + { + "#": 232 + } + ], + [ + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + } + ], + { + "x": 318.032, + "y": 122.883, + "index": 0, + "body": { + "#": 232 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 128.834, + "index": 1, + "body": { + "#": 232 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 133.896, + "index": 2, + "body": { + "#": 232 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 137.574, + "index": 3, + "body": { + "#": 232 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 139.508, + "index": 4, + "body": { + "#": 232 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 139.508, + "index": 5, + "body": { + "#": 232 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 137.574, + "index": 6, + "body": { + "#": 232 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 133.896, + "index": 7, + "body": { + "#": 232 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 128.834, + "index": 8, + "body": { + "#": 232 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 122.883, + "index": 9, + "body": { + "#": 232 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 116.625, + "index": 10, + "body": { + "#": 232 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 110.674, + "index": 11, + "body": { + "#": 232 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 105.612, + "index": 12, + "body": { + "#": 232 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 101.934, + "index": 13, + "body": { + "#": 232 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 100, + "index": 14, + "body": { + "#": 232 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 100, + "index": 15, + "body": { + "#": 232 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 101.934, + "index": 16, + "body": { + "#": 232 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 105.612, + "index": 17, + "body": { + "#": 232 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 110.674, + "index": 18, + "body": { + "#": 232 + }, + "isInternal": false + }, + { + "x": 318.032, + "y": 116.625, + "index": 19, + "body": { + "#": 232 + }, + "isInternal": false + }, + { + "x": 298.278, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 262 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 264 + }, + "max": { + "#": 265 + } + }, + { + "x": 278.524, + "y": 100 + }, + { + "x": 318.032, + "y": 139.508 + }, + { + "x": 298.278, + "y": 119.754 + }, + [ + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 279 + }, + "angle": 0, + "vertices": { + "#": 280 + }, + "position": { + "#": 301 + }, + "force": { + "#": 302 + }, + "torque": 0, + "positionImpulse": { + "#": 303 + }, + "constraintImpulse": { + "#": 304 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 305 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 306 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 307 + }, + "circleRadius": 20, + "bounds": { + "#": 309 + }, + "positionPrev": { + "#": 312 + }, + "anglePrev": 0, + "axes": { + "#": 313 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 278 + }, + "sleepCounter": 0 + }, + [ + { + "#": 278 + } + ], + [ + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + } + ], + { + "x": 377.54, + "y": 122.883, + "index": 0, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 128.834, + "index": 1, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 133.896, + "index": 2, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 137.574, + "index": 3, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 139.508, + "index": 4, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 139.508, + "index": 5, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 137.574, + "index": 6, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 133.896, + "index": 7, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 128.834, + "index": 8, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 122.883, + "index": 9, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 116.625, + "index": 10, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 110.674, + "index": 11, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 105.612, + "index": 12, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 101.934, + "index": 13, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 100, + "index": 14, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 100, + "index": 15, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 101.934, + "index": 16, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 105.612, + "index": 17, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 110.674, + "index": 18, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 377.54, + "y": 116.625, + "index": 19, + "body": { + "#": 278 + }, + "isInternal": false + }, + { + "x": 357.786, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 308 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 310 + }, + "max": { + "#": 311 + } + }, + { + "x": 338.032, + "y": 100 + }, + { + "x": 377.54, + "y": 139.508 + }, + { + "x": 357.786, + "y": 119.754 + }, + [ + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 10, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 325 + }, + "angle": 0, + "vertices": { + "#": 326 + }, + "position": { + "#": 347 + }, + "force": { + "#": 348 + }, + "torque": 0, + "positionImpulse": { + "#": 349 + }, + "constraintImpulse": { + "#": 350 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 351 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 352 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 353 + }, + "circleRadius": 20, + "bounds": { + "#": 355 + }, + "positionPrev": { + "#": 358 + }, + "anglePrev": 0, + "axes": { + "#": 359 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 324 + }, + "sleepCounter": 0 + }, + [ + { + "#": 324 + } + ], + [ + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + } + ], + { + "x": 437.048, + "y": 122.883, + "index": 0, + "body": { + "#": 324 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 128.834, + "index": 1, + "body": { + "#": 324 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 133.896, + "index": 2, + "body": { + "#": 324 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 137.574, + "index": 3, + "body": { + "#": 324 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 139.508, + "index": 4, + "body": { + "#": 324 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 139.508, + "index": 5, + "body": { + "#": 324 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 137.574, + "index": 6, + "body": { + "#": 324 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 133.896, + "index": 7, + "body": { + "#": 324 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 128.834, + "index": 8, + "body": { + "#": 324 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 122.883, + "index": 9, + "body": { + "#": 324 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 116.625, + "index": 10, + "body": { + "#": 324 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 110.674, + "index": 11, + "body": { + "#": 324 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 105.612, + "index": 12, + "body": { + "#": 324 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 101.934, + "index": 13, + "body": { + "#": 324 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 100, + "index": 14, + "body": { + "#": 324 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 100, + "index": 15, + "body": { + "#": 324 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 101.934, + "index": 16, + "body": { + "#": 324 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 105.612, + "index": 17, + "body": { + "#": 324 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 110.674, + "index": 18, + "body": { + "#": 324 + }, + "isInternal": false + }, + { + "x": 437.048, + "y": 116.625, + "index": 19, + "body": { + "#": 324 + }, + "isInternal": false + }, + { + "x": 417.294, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 354 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 356 + }, + "max": { + "#": 357 + } + }, + { + "x": 397.54, + "y": 100 + }, + { + "x": 437.048, + "y": 139.508 + }, + { + "x": 417.294, + "y": 119.754 + }, + [ + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 11, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 371 + }, + "angle": 0, + "vertices": { + "#": 372 + }, + "position": { + "#": 393 + }, + "force": { + "#": 394 + }, + "torque": 0, + "positionImpulse": { + "#": 395 + }, + "constraintImpulse": { + "#": 396 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 397 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 398 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 399 + }, + "circleRadius": 20, + "bounds": { + "#": 401 + }, + "positionPrev": { + "#": 404 + }, + "anglePrev": 0, + "axes": { + "#": 405 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 370 + }, + "sleepCounter": 0 + }, + [ + { + "#": 370 + } + ], + [ + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + } + ], + { + "x": 496.556, + "y": 122.883, + "index": 0, + "body": { + "#": 370 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 128.834, + "index": 1, + "body": { + "#": 370 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 133.896, + "index": 2, + "body": { + "#": 370 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 137.574, + "index": 3, + "body": { + "#": 370 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 139.508, + "index": 4, + "body": { + "#": 370 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 139.508, + "index": 5, + "body": { + "#": 370 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 137.574, + "index": 6, + "body": { + "#": 370 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 133.896, + "index": 7, + "body": { + "#": 370 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 128.834, + "index": 8, + "body": { + "#": 370 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 122.883, + "index": 9, + "body": { + "#": 370 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 116.625, + "index": 10, + "body": { + "#": 370 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 110.674, + "index": 11, + "body": { + "#": 370 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 105.612, + "index": 12, + "body": { + "#": 370 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 101.934, + "index": 13, + "body": { + "#": 370 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 100, + "index": 14, + "body": { + "#": 370 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 100, + "index": 15, + "body": { + "#": 370 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 101.934, + "index": 16, + "body": { + "#": 370 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 105.612, + "index": 17, + "body": { + "#": 370 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 110.674, + "index": 18, + "body": { + "#": 370 + }, + "isInternal": false + }, + { + "x": 496.556, + "y": 116.625, + "index": 19, + "body": { + "#": 370 + }, + "isInternal": false + }, + { + "x": 476.802, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 400 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 402 + }, + "max": { + "#": 403 + } + }, + { + "x": 457.048, + "y": 100 + }, + { + "x": 496.556, + "y": 139.508 + }, + { + "x": 476.802, + "y": 119.754 + }, + [ + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 12, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 417 + }, + "angle": 0, + "vertices": { + "#": 418 + }, + "position": { + "#": 439 + }, + "force": { + "#": 440 + }, + "torque": 0, + "positionImpulse": { + "#": 441 + }, + "constraintImpulse": { + "#": 442 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 443 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 444 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 445 + }, + "circleRadius": 20, + "bounds": { + "#": 447 + }, + "positionPrev": { + "#": 450 + }, + "anglePrev": 0, + "axes": { + "#": 451 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 416 + }, + "sleepCounter": 0 + }, + [ + { + "#": 416 + } + ], + [ + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + } + ], + { + "x": 556.064, + "y": 122.883, + "index": 0, + "body": { + "#": 416 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 128.834, + "index": 1, + "body": { + "#": 416 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 133.896, + "index": 2, + "body": { + "#": 416 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 137.574, + "index": 3, + "body": { + "#": 416 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 139.508, + "index": 4, + "body": { + "#": 416 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 139.508, + "index": 5, + "body": { + "#": 416 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 137.574, + "index": 6, + "body": { + "#": 416 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 133.896, + "index": 7, + "body": { + "#": 416 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 128.834, + "index": 8, + "body": { + "#": 416 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 122.883, + "index": 9, + "body": { + "#": 416 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 116.625, + "index": 10, + "body": { + "#": 416 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 110.674, + "index": 11, + "body": { + "#": 416 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 105.612, + "index": 12, + "body": { + "#": 416 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 101.934, + "index": 13, + "body": { + "#": 416 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 100, + "index": 14, + "body": { + "#": 416 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 100, + "index": 15, + "body": { + "#": 416 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 101.934, + "index": 16, + "body": { + "#": 416 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 105.612, + "index": 17, + "body": { + "#": 416 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 110.674, + "index": 18, + "body": { + "#": 416 + }, + "isInternal": false + }, + { + "x": 556.064, + "y": 116.625, + "index": 19, + "body": { + "#": 416 + }, + "isInternal": false + }, + { + "x": 536.31, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 446 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 448 + }, + "max": { + "#": 449 + } + }, + { + "x": 516.556, + "y": 100 + }, + { + "x": 556.064, + "y": 139.508 + }, + { + "x": 536.31, + "y": 119.754 + }, + [ + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 13, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 463 + }, + "angle": 0, + "vertices": { + "#": 464 + }, + "position": { + "#": 485 + }, + "force": { + "#": 486 + }, + "torque": 0, + "positionImpulse": { + "#": 487 + }, + "constraintImpulse": { + "#": 488 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 489 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 490 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 491 + }, + "circleRadius": 20, + "bounds": { + "#": 493 + }, + "positionPrev": { + "#": 496 + }, + "anglePrev": 0, + "axes": { + "#": 497 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 462 + }, + "sleepCounter": 0 + }, + [ + { + "#": 462 + } + ], + [ + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + } + ], + { + "x": 615.572, + "y": 122.883, + "index": 0, + "body": { + "#": 462 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 128.834, + "index": 1, + "body": { + "#": 462 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 133.896, + "index": 2, + "body": { + "#": 462 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 137.574, + "index": 3, + "body": { + "#": 462 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 139.508, + "index": 4, + "body": { + "#": 462 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 139.508, + "index": 5, + "body": { + "#": 462 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 137.574, + "index": 6, + "body": { + "#": 462 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 133.896, + "index": 7, + "body": { + "#": 462 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 128.834, + "index": 8, + "body": { + "#": 462 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 122.883, + "index": 9, + "body": { + "#": 462 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 116.625, + "index": 10, + "body": { + "#": 462 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 110.674, + "index": 11, + "body": { + "#": 462 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 105.612, + "index": 12, + "body": { + "#": 462 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 101.934, + "index": 13, + "body": { + "#": 462 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 100, + "index": 14, + "body": { + "#": 462 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 100, + "index": 15, + "body": { + "#": 462 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 101.934, + "index": 16, + "body": { + "#": 462 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 105.612, + "index": 17, + "body": { + "#": 462 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 110.674, + "index": 18, + "body": { + "#": 462 + }, + "isInternal": false + }, + { + "x": 615.572, + "y": 116.625, + "index": 19, + "body": { + "#": 462 + }, + "isInternal": false + }, + { + "x": 595.818, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 492 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 494 + }, + "max": { + "#": 495 + } + }, + { + "x": 576.064, + "y": 100 + }, + { + "x": 615.572, + "y": 139.508 + }, + { + "x": 595.818, + "y": 119.754 + }, + [ + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 14, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 509 + }, + "angle": 0, + "vertices": { + "#": 510 + }, + "position": { + "#": 531 + }, + "force": { + "#": 532 + }, + "torque": 0, + "positionImpulse": { + "#": 533 + }, + "constraintImpulse": { + "#": 534 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 535 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 536 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 537 + }, + "circleRadius": 20, + "bounds": { + "#": 539 + }, + "positionPrev": { + "#": 542 + }, + "anglePrev": 0, + "axes": { + "#": 543 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 508 + }, + "sleepCounter": 0 + }, + [ + { + "#": 508 + } + ], + [ + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + } + ], + { + "x": 675.08, + "y": 122.883, + "index": 0, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 128.834, + "index": 1, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 133.896, + "index": 2, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 137.574, + "index": 3, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 139.508, + "index": 4, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 139.508, + "index": 5, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 137.574, + "index": 6, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 133.896, + "index": 7, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 128.834, + "index": 8, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 122.883, + "index": 9, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 116.625, + "index": 10, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 110.674, + "index": 11, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 105.612, + "index": 12, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 101.934, + "index": 13, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 100, + "index": 14, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 100, + "index": 15, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 101.934, + "index": 16, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 105.612, + "index": 17, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 110.674, + "index": 18, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 675.08, + "y": 116.625, + "index": 19, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 655.326, + "y": 119.754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 538 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 540 + }, + "max": { + "#": 541 + } + }, + { + "x": 635.572, + "y": 100 + }, + { + "x": 675.08, + "y": 139.508 + }, + { + "x": 655.326, + "y": 119.754 + }, + [ + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 15, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 555 + }, + "angle": 0, + "vertices": { + "#": 556 + }, + "position": { + "#": 577 + }, + "force": { + "#": 578 + }, + "torque": 0, + "positionImpulse": { + "#": 579 + }, + "constraintImpulse": { + "#": 580 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 581 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 582 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 583 + }, + "circleRadius": 20, + "bounds": { + "#": 585 + }, + "positionPrev": { + "#": 588 + }, + "anglePrev": 0, + "axes": { + "#": 589 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 554 + }, + "sleepCounter": 0 + }, + [ + { + "#": 554 + } + ], + [ + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + } + ], + { + "x": 139.508, + "y": 162.391, + "index": 0, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 168.342, + "index": 1, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 173.404, + "index": 2, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 177.082, + "index": 3, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 179.016, + "index": 4, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 179.016, + "index": 5, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 177.082, + "index": 6, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 173.404, + "index": 7, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 168.342, + "index": 8, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 100, + "y": 162.391, + "index": 9, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 100, + "y": 156.133, + "index": 10, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 150.182, + "index": 11, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 145.12, + "index": 12, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 141.442, + "index": 13, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 139.508, + "index": 14, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 139.508, + "index": 15, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 141.442, + "index": 16, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 145.12, + "index": 17, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 150.182, + "index": 18, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 139.508, + "y": 156.133, + "index": 19, + "body": { + "#": 554 + }, + "isInternal": false + }, + { + "x": 119.754, + "y": 159.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 584 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 586 + }, + "max": { + "#": 587 + } + }, + { + "x": 100, + "y": 139.508 + }, + { + "x": 139.508, + "y": 179.016 + }, + { + "x": 119.754, + "y": 159.262 + }, + [ + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 16, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 601 + }, + "angle": 0, + "vertices": { + "#": 602 + }, + "position": { + "#": 623 + }, + "force": { + "#": 624 + }, + "torque": 0, + "positionImpulse": { + "#": 625 + }, + "constraintImpulse": { + "#": 626 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 627 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 628 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 629 + }, + "circleRadius": 20, + "bounds": { + "#": 631 + }, + "positionPrev": { + "#": 634 + }, + "anglePrev": 0, + "axes": { + "#": 635 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 600 + }, + "sleepCounter": 0 + }, + [ + { + "#": 600 + } + ], + [ + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + } + ], + { + "x": 199.016, + "y": 162.391, + "index": 0, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 168.342, + "index": 1, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 173.404, + "index": 2, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 177.082, + "index": 3, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 179.016, + "index": 4, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 179.016, + "index": 5, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 177.082, + "index": 6, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 173.404, + "index": 7, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 168.342, + "index": 8, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 162.391, + "index": 9, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 156.133, + "index": 10, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 150.182, + "index": 11, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 145.12, + "index": 12, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 141.442, + "index": 13, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 139.508, + "index": 14, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 139.508, + "index": 15, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 141.442, + "index": 16, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 145.12, + "index": 17, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 150.182, + "index": 18, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 199.016, + "y": 156.133, + "index": 19, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 179.262, + "y": 159.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 630 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 632 + }, + "max": { + "#": 633 + } + }, + { + "x": 159.508, + "y": 139.508 + }, + { + "x": 199.016, + "y": 179.016 + }, + { + "x": 179.262, + "y": 159.262 + }, + [ + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 17, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 647 + }, + "angle": 0, + "vertices": { + "#": 648 + }, + "position": { + "#": 669 + }, + "force": { + "#": 670 + }, + "torque": 0, + "positionImpulse": { + "#": 671 + }, + "constraintImpulse": { + "#": 672 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 673 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 674 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 675 + }, + "circleRadius": 20, + "bounds": { + "#": 677 + }, + "positionPrev": { + "#": 680 + }, + "anglePrev": 0, + "axes": { + "#": 681 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 646 + }, + "sleepCounter": 0 + }, + [ + { + "#": 646 + } + ], + [ + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + } + ], + { + "x": 258.524, + "y": 162.391, + "index": 0, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 168.342, + "index": 1, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 173.404, + "index": 2, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 177.082, + "index": 3, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 179.016, + "index": 4, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 179.016, + "index": 5, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 177.082, + "index": 6, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 173.404, + "index": 7, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 168.342, + "index": 8, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 162.391, + "index": 9, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 156.133, + "index": 10, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 150.182, + "index": 11, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 145.12, + "index": 12, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 141.442, + "index": 13, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 139.508, + "index": 14, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 139.508, + "index": 15, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 141.442, + "index": 16, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 145.12, + "index": 17, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 150.182, + "index": 18, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 258.524, + "y": 156.133, + "index": 19, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 238.77, + "y": 159.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 676 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 678 + }, + "max": { + "#": 679 + } + }, + { + "x": 219.016, + "y": 139.508 + }, + { + "x": 258.524, + "y": 179.016 + }, + { + "x": 238.77, + "y": 159.262 + }, + [ + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 18, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 693 + }, + "angle": 0, + "vertices": { + "#": 694 + }, + "position": { + "#": 715 + }, + "force": { + "#": 716 + }, + "torque": 0, + "positionImpulse": { + "#": 717 + }, + "constraintImpulse": { + "#": 718 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 719 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 720 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 721 + }, + "circleRadius": 20, + "bounds": { + "#": 723 + }, + "positionPrev": { + "#": 726 + }, + "anglePrev": 0, + "axes": { + "#": 727 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 692 + }, + "sleepCounter": 0 + }, + [ + { + "#": 692 + } + ], + [ + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + }, + { + "#": 714 + } + ], + { + "x": 318.032, + "y": 162.391, + "index": 0, + "body": { + "#": 692 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 168.342, + "index": 1, + "body": { + "#": 692 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 173.404, + "index": 2, + "body": { + "#": 692 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 177.082, + "index": 3, + "body": { + "#": 692 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 179.016, + "index": 4, + "body": { + "#": 692 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 179.016, + "index": 5, + "body": { + "#": 692 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 177.082, + "index": 6, + "body": { + "#": 692 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 173.404, + "index": 7, + "body": { + "#": 692 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 168.342, + "index": 8, + "body": { + "#": 692 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 162.391, + "index": 9, + "body": { + "#": 692 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 156.133, + "index": 10, + "body": { + "#": 692 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 150.182, + "index": 11, + "body": { + "#": 692 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 145.12, + "index": 12, + "body": { + "#": 692 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 141.442, + "index": 13, + "body": { + "#": 692 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 139.508, + "index": 14, + "body": { + "#": 692 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 139.508, + "index": 15, + "body": { + "#": 692 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 141.442, + "index": 16, + "body": { + "#": 692 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 145.12, + "index": 17, + "body": { + "#": 692 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 150.182, + "index": 18, + "body": { + "#": 692 + }, + "isInternal": false + }, + { + "x": 318.032, + "y": 156.133, + "index": 19, + "body": { + "#": 692 + }, + "isInternal": false + }, + { + "x": 298.278, + "y": 159.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 722 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 724 + }, + "max": { + "#": 725 + } + }, + { + "x": 278.524, + "y": 139.508 + }, + { + "x": 318.032, + "y": 179.016 + }, + { + "x": 298.278, + "y": 159.262 + }, + [ + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 19, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 739 + }, + "angle": 0, + "vertices": { + "#": 740 + }, + "position": { + "#": 761 + }, + "force": { + "#": 762 + }, + "torque": 0, + "positionImpulse": { + "#": 763 + }, + "constraintImpulse": { + "#": 764 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 765 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 766 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 767 + }, + "circleRadius": 20, + "bounds": { + "#": 769 + }, + "positionPrev": { + "#": 772 + }, + "anglePrev": 0, + "axes": { + "#": 773 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 738 + }, + "sleepCounter": 0 + }, + [ + { + "#": 738 + } + ], + [ + { + "#": 741 + }, + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + }, + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + } + ], + { + "x": 377.54, + "y": 162.391, + "index": 0, + "body": { + "#": 738 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 168.342, + "index": 1, + "body": { + "#": 738 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 173.404, + "index": 2, + "body": { + "#": 738 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 177.082, + "index": 3, + "body": { + "#": 738 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 179.016, + "index": 4, + "body": { + "#": 738 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 179.016, + "index": 5, + "body": { + "#": 738 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 177.082, + "index": 6, + "body": { + "#": 738 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 173.404, + "index": 7, + "body": { + "#": 738 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 168.342, + "index": 8, + "body": { + "#": 738 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 162.391, + "index": 9, + "body": { + "#": 738 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 156.133, + "index": 10, + "body": { + "#": 738 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 150.182, + "index": 11, + "body": { + "#": 738 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 145.12, + "index": 12, + "body": { + "#": 738 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 141.442, + "index": 13, + "body": { + "#": 738 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 139.508, + "index": 14, + "body": { + "#": 738 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 139.508, + "index": 15, + "body": { + "#": 738 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 141.442, + "index": 16, + "body": { + "#": 738 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 145.12, + "index": 17, + "body": { + "#": 738 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 150.182, + "index": 18, + "body": { + "#": 738 + }, + "isInternal": false + }, + { + "x": 377.54, + "y": 156.133, + "index": 19, + "body": { + "#": 738 + }, + "isInternal": false + }, + { + "x": 357.786, + "y": 159.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 768 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 770 + }, + "max": { + "#": 771 + } + }, + { + "x": 338.032, + "y": 139.508 + }, + { + "x": 377.54, + "y": 179.016 + }, + { + "x": 357.786, + "y": 159.262 + }, + [ + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + }, + { + "#": 777 + }, + { + "#": 778 + }, + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + }, + { + "#": 783 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 20, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 785 + }, + "angle": 0, + "vertices": { + "#": 786 + }, + "position": { + "#": 807 + }, + "force": { + "#": 808 + }, + "torque": 0, + "positionImpulse": { + "#": 809 + }, + "constraintImpulse": { + "#": 810 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 811 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 812 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 813 + }, + "circleRadius": 20, + "bounds": { + "#": 815 + }, + "positionPrev": { + "#": 818 + }, + "anglePrev": 0, + "axes": { + "#": 819 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 784 + }, + "sleepCounter": 0 + }, + [ + { + "#": 784 + } + ], + [ + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + }, + { + "#": 806 + } + ], + { + "x": 437.048, + "y": 162.391, + "index": 0, + "body": { + "#": 784 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 168.342, + "index": 1, + "body": { + "#": 784 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 173.404, + "index": 2, + "body": { + "#": 784 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 177.082, + "index": 3, + "body": { + "#": 784 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 179.016, + "index": 4, + "body": { + "#": 784 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 179.016, + "index": 5, + "body": { + "#": 784 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 177.082, + "index": 6, + "body": { + "#": 784 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 173.404, + "index": 7, + "body": { + "#": 784 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 168.342, + "index": 8, + "body": { + "#": 784 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 162.391, + "index": 9, + "body": { + "#": 784 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 156.133, + "index": 10, + "body": { + "#": 784 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 150.182, + "index": 11, + "body": { + "#": 784 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 145.12, + "index": 12, + "body": { + "#": 784 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 141.442, + "index": 13, + "body": { + "#": 784 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 139.508, + "index": 14, + "body": { + "#": 784 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 139.508, + "index": 15, + "body": { + "#": 784 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 141.442, + "index": 16, + "body": { + "#": 784 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 145.12, + "index": 17, + "body": { + "#": 784 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 150.182, + "index": 18, + "body": { + "#": 784 + }, + "isInternal": false + }, + { + "x": 437.048, + "y": 156.133, + "index": 19, + "body": { + "#": 784 + }, + "isInternal": false + }, + { + "x": 417.294, + "y": 159.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 814 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 816 + }, + "max": { + "#": 817 + } + }, + { + "x": 397.54, + "y": 139.508 + }, + { + "x": 437.048, + "y": 179.016 + }, + { + "x": 417.294, + "y": 159.262 + }, + [ + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + }, + { + "#": 827 + }, + { + "#": 828 + }, + { + "#": 829 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 21, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 831 + }, + "angle": 0, + "vertices": { + "#": 832 + }, + "position": { + "#": 853 + }, + "force": { + "#": 854 + }, + "torque": 0, + "positionImpulse": { + "#": 855 + }, + "constraintImpulse": { + "#": 856 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 857 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 858 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 859 + }, + "circleRadius": 20, + "bounds": { + "#": 861 + }, + "positionPrev": { + "#": 864 + }, + "anglePrev": 0, + "axes": { + "#": 865 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 830 + }, + "sleepCounter": 0 + }, + [ + { + "#": 830 + } + ], + [ + { + "#": 833 + }, + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + }, + { + "#": 852 + } + ], + { + "x": 496.556, + "y": 162.391, + "index": 0, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 168.342, + "index": 1, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 173.404, + "index": 2, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 177.082, + "index": 3, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 179.016, + "index": 4, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 179.016, + "index": 5, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 177.082, + "index": 6, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 173.404, + "index": 7, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 168.342, + "index": 8, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 162.391, + "index": 9, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 156.133, + "index": 10, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 150.182, + "index": 11, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 145.12, + "index": 12, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 141.442, + "index": 13, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 139.508, + "index": 14, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 139.508, + "index": 15, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 141.442, + "index": 16, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 145.12, + "index": 17, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 150.182, + "index": 18, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 496.556, + "y": 156.133, + "index": 19, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 476.802, + "y": 159.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 860 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 862 + }, + "max": { + "#": 863 + } + }, + { + "x": 457.048, + "y": 139.508 + }, + { + "x": 496.556, + "y": 179.016 + }, + { + "x": 476.802, + "y": 159.262 + }, + [ + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + }, + { + "#": 869 + }, + { + "#": 870 + }, + { + "#": 871 + }, + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 22, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 877 + }, + "angle": 0, + "vertices": { + "#": 878 + }, + "position": { + "#": 899 + }, + "force": { + "#": 900 + }, + "torque": 0, + "positionImpulse": { + "#": 901 + }, + "constraintImpulse": { + "#": 902 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 903 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 904 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 905 + }, + "circleRadius": 20, + "bounds": { + "#": 907 + }, + "positionPrev": { + "#": 910 + }, + "anglePrev": 0, + "axes": { + "#": 911 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 876 + }, + "sleepCounter": 0 + }, + [ + { + "#": 876 + } + ], + [ + { + "#": 879 + }, + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + }, + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + }, + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + }, + { + "#": 894 + }, + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + } + ], + { + "x": 556.064, + "y": 162.391, + "index": 0, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 168.342, + "index": 1, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 173.404, + "index": 2, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 177.082, + "index": 3, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 179.016, + "index": 4, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 179.016, + "index": 5, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 177.082, + "index": 6, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 173.404, + "index": 7, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 168.342, + "index": 8, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 162.391, + "index": 9, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 156.133, + "index": 10, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 150.182, + "index": 11, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 145.12, + "index": 12, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 141.442, + "index": 13, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 139.508, + "index": 14, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 139.508, + "index": 15, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 141.442, + "index": 16, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 145.12, + "index": 17, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 150.182, + "index": 18, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 556.064, + "y": 156.133, + "index": 19, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 536.31, + "y": 159.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 906 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 908 + }, + "max": { + "#": 909 + } + }, + { + "x": 516.556, + "y": 139.508 + }, + { + "x": 556.064, + "y": 179.016 + }, + { + "x": 536.31, + "y": 159.262 + }, + [ + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + }, + { + "#": 915 + }, + { + "#": 916 + }, + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + }, + { + "#": 920 + }, + { + "#": 921 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 23, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 923 + }, + "angle": 0, + "vertices": { + "#": 924 + }, + "position": { + "#": 945 + }, + "force": { + "#": 946 + }, + "torque": 0, + "positionImpulse": { + "#": 947 + }, + "constraintImpulse": { + "#": 948 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 949 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 950 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 951 + }, + "circleRadius": 20, + "bounds": { + "#": 953 + }, + "positionPrev": { + "#": 956 + }, + "anglePrev": 0, + "axes": { + "#": 957 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 922 + }, + "sleepCounter": 0 + }, + [ + { + "#": 922 + } + ], + [ + { + "#": 925 + }, + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + }, + { + "#": 932 + }, + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + }, + { + "#": 943 + }, + { + "#": 944 + } + ], + { + "x": 615.572, + "y": 162.391, + "index": 0, + "body": { + "#": 922 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 168.342, + "index": 1, + "body": { + "#": 922 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 173.404, + "index": 2, + "body": { + "#": 922 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 177.082, + "index": 3, + "body": { + "#": 922 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 179.016, + "index": 4, + "body": { + "#": 922 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 179.016, + "index": 5, + "body": { + "#": 922 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 177.082, + "index": 6, + "body": { + "#": 922 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 173.404, + "index": 7, + "body": { + "#": 922 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 168.342, + "index": 8, + "body": { + "#": 922 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 162.391, + "index": 9, + "body": { + "#": 922 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 156.133, + "index": 10, + "body": { + "#": 922 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 150.182, + "index": 11, + "body": { + "#": 922 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 145.12, + "index": 12, + "body": { + "#": 922 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 141.442, + "index": 13, + "body": { + "#": 922 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 139.508, + "index": 14, + "body": { + "#": 922 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 139.508, + "index": 15, + "body": { + "#": 922 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 141.442, + "index": 16, + "body": { + "#": 922 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 145.12, + "index": 17, + "body": { + "#": 922 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 150.182, + "index": 18, + "body": { + "#": 922 + }, + "isInternal": false + }, + { + "x": 615.572, + "y": 156.133, + "index": 19, + "body": { + "#": 922 + }, + "isInternal": false + }, + { + "x": 595.818, + "y": 159.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 952 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 954 + }, + "max": { + "#": 955 + } + }, + { + "x": 576.064, + "y": 139.508 + }, + { + "x": 615.572, + "y": 179.016 + }, + { + "x": 595.818, + "y": 159.262 + }, + [ + { + "#": 958 + }, + { + "#": 959 + }, + { + "#": 960 + }, + { + "#": 961 + }, + { + "#": 962 + }, + { + "#": 963 + }, + { + "#": 964 + }, + { + "#": 965 + }, + { + "#": 966 + }, + { + "#": 967 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 24, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 969 + }, + "angle": 0, + "vertices": { + "#": 970 + }, + "position": { + "#": 991 + }, + "force": { + "#": 992 + }, + "torque": 0, + "positionImpulse": { + "#": 993 + }, + "constraintImpulse": { + "#": 994 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 995 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 996 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 997 + }, + "circleRadius": 20, + "bounds": { + "#": 999 + }, + "positionPrev": { + "#": 1002 + }, + "anglePrev": 0, + "axes": { + "#": 1003 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 968 + }, + "sleepCounter": 0 + }, + [ + { + "#": 968 + } + ], + [ + { + "#": 971 + }, + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + }, + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + }, + { + "#": 985 + }, + { + "#": 986 + }, + { + "#": 987 + }, + { + "#": 988 + }, + { + "#": 989 + }, + { + "#": 990 + } + ], + { + "x": 675.08, + "y": 162.391, + "index": 0, + "body": { + "#": 968 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 168.342, + "index": 1, + "body": { + "#": 968 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 173.404, + "index": 2, + "body": { + "#": 968 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 177.082, + "index": 3, + "body": { + "#": 968 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 179.016, + "index": 4, + "body": { + "#": 968 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 179.016, + "index": 5, + "body": { + "#": 968 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 177.082, + "index": 6, + "body": { + "#": 968 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 173.404, + "index": 7, + "body": { + "#": 968 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 168.342, + "index": 8, + "body": { + "#": 968 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 162.391, + "index": 9, + "body": { + "#": 968 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 156.133, + "index": 10, + "body": { + "#": 968 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 150.182, + "index": 11, + "body": { + "#": 968 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 145.12, + "index": 12, + "body": { + "#": 968 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 141.442, + "index": 13, + "body": { + "#": 968 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 139.508, + "index": 14, + "body": { + "#": 968 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 139.508, + "index": 15, + "body": { + "#": 968 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 141.442, + "index": 16, + "body": { + "#": 968 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 145.12, + "index": 17, + "body": { + "#": 968 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 150.182, + "index": 18, + "body": { + "#": 968 + }, + "isInternal": false + }, + { + "x": 675.08, + "y": 156.133, + "index": 19, + "body": { + "#": 968 + }, + "isInternal": false + }, + { + "x": 655.326, + "y": 159.262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 998 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1000 + }, + "max": { + "#": 1001 + } + }, + { + "x": 635.572, + "y": 139.508 + }, + { + "x": 675.08, + "y": 179.016 + }, + { + "x": 655.326, + "y": 159.262 + }, + [ + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + }, + { + "#": 1007 + }, + { + "#": 1008 + }, + { + "#": 1009 + }, + { + "#": 1010 + }, + { + "#": 1011 + }, + { + "#": 1012 + }, + { + "#": 1013 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 25, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1015 + }, + "angle": 0, + "vertices": { + "#": 1016 + }, + "position": { + "#": 1037 + }, + "force": { + "#": 1038 + }, + "torque": 0, + "positionImpulse": { + "#": 1039 + }, + "constraintImpulse": { + "#": 1040 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1041 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1042 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1043 + }, + "circleRadius": 20, + "bounds": { + "#": 1045 + }, + "positionPrev": { + "#": 1048 + }, + "anglePrev": 0, + "axes": { + "#": 1049 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1014 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1014 + } + ], + [ + { + "#": 1017 + }, + { + "#": 1018 + }, + { + "#": 1019 + }, + { + "#": 1020 + }, + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + }, + { + "#": 1026 + }, + { + "#": 1027 + }, + { + "#": 1028 + }, + { + "#": 1029 + }, + { + "#": 1030 + }, + { + "#": 1031 + }, + { + "#": 1032 + }, + { + "#": 1033 + }, + { + "#": 1034 + }, + { + "#": 1035 + }, + { + "#": 1036 + } + ], + { + "x": 139.508, + "y": 201.899, + "index": 0, + "body": { + "#": 1014 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 207.85, + "index": 1, + "body": { + "#": 1014 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 212.912, + "index": 2, + "body": { + "#": 1014 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 216.59, + "index": 3, + "body": { + "#": 1014 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 218.524, + "index": 4, + "body": { + "#": 1014 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 218.524, + "index": 5, + "body": { + "#": 1014 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 216.59, + "index": 6, + "body": { + "#": 1014 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 212.912, + "index": 7, + "body": { + "#": 1014 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 207.85, + "index": 8, + "body": { + "#": 1014 + }, + "isInternal": false + }, + { + "x": 100, + "y": 201.899, + "index": 9, + "body": { + "#": 1014 + }, + "isInternal": false + }, + { + "x": 100, + "y": 195.641, + "index": 10, + "body": { + "#": 1014 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 189.69, + "index": 11, + "body": { + "#": 1014 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 184.628, + "index": 12, + "body": { + "#": 1014 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 180.95, + "index": 13, + "body": { + "#": 1014 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 179.016, + "index": 14, + "body": { + "#": 1014 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 179.016, + "index": 15, + "body": { + "#": 1014 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 180.95, + "index": 16, + "body": { + "#": 1014 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 184.628, + "index": 17, + "body": { + "#": 1014 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 189.69, + "index": 18, + "body": { + "#": 1014 + }, + "isInternal": false + }, + { + "x": 139.508, + "y": 195.641, + "index": 19, + "body": { + "#": 1014 + }, + "isInternal": false + }, + { + "x": 119.754, + "y": 198.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1044 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1046 + }, + "max": { + "#": 1047 + } + }, + { + "x": 100, + "y": 179.016 + }, + { + "x": 139.508, + "y": 218.524 + }, + { + "x": 119.754, + "y": 198.77 + }, + [ + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + }, + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + }, + { + "#": 1057 + }, + { + "#": 1058 + }, + { + "#": 1059 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 26, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1061 + }, + "angle": 0, + "vertices": { + "#": 1062 + }, + "position": { + "#": 1083 + }, + "force": { + "#": 1084 + }, + "torque": 0, + "positionImpulse": { + "#": 1085 + }, + "constraintImpulse": { + "#": 1086 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1087 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1088 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1089 + }, + "circleRadius": 20, + "bounds": { + "#": 1091 + }, + "positionPrev": { + "#": 1094 + }, + "anglePrev": 0, + "axes": { + "#": 1095 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1060 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1060 + } + ], + [ + { + "#": 1063 + }, + { + "#": 1064 + }, + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + }, + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + } + ], + { + "x": 199.016, + "y": 201.899, + "index": 0, + "body": { + "#": 1060 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 207.85, + "index": 1, + "body": { + "#": 1060 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 212.912, + "index": 2, + "body": { + "#": 1060 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 216.59, + "index": 3, + "body": { + "#": 1060 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 218.524, + "index": 4, + "body": { + "#": 1060 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 218.524, + "index": 5, + "body": { + "#": 1060 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 216.59, + "index": 6, + "body": { + "#": 1060 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 212.912, + "index": 7, + "body": { + "#": 1060 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 207.85, + "index": 8, + "body": { + "#": 1060 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 201.899, + "index": 9, + "body": { + "#": 1060 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 195.641, + "index": 10, + "body": { + "#": 1060 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 189.69, + "index": 11, + "body": { + "#": 1060 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 184.628, + "index": 12, + "body": { + "#": 1060 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 180.95, + "index": 13, + "body": { + "#": 1060 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 179.016, + "index": 14, + "body": { + "#": 1060 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 179.016, + "index": 15, + "body": { + "#": 1060 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 180.95, + "index": 16, + "body": { + "#": 1060 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 184.628, + "index": 17, + "body": { + "#": 1060 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 189.69, + "index": 18, + "body": { + "#": 1060 + }, + "isInternal": false + }, + { + "x": 199.016, + "y": 195.641, + "index": 19, + "body": { + "#": 1060 + }, + "isInternal": false + }, + { + "x": 179.262, + "y": 198.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1090 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1092 + }, + "max": { + "#": 1093 + } + }, + { + "x": 159.508, + "y": 179.016 + }, + { + "x": 199.016, + "y": 218.524 + }, + { + "x": 179.262, + "y": 198.77 + }, + [ + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 27, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1107 + }, + "angle": 0, + "vertices": { + "#": 1108 + }, + "position": { + "#": 1129 + }, + "force": { + "#": 1130 + }, + "torque": 0, + "positionImpulse": { + "#": 1131 + }, + "constraintImpulse": { + "#": 1132 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1133 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1134 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1135 + }, + "circleRadius": 20, + "bounds": { + "#": 1137 + }, + "positionPrev": { + "#": 1140 + }, + "anglePrev": 0, + "axes": { + "#": 1141 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1106 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1106 + } + ], + [ + { + "#": 1109 + }, + { + "#": 1110 + }, + { + "#": 1111 + }, + { + "#": 1112 + }, + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + } + ], + { + "x": 258.524, + "y": 201.899, + "index": 0, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 207.85, + "index": 1, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 212.912, + "index": 2, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 216.59, + "index": 3, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 218.524, + "index": 4, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 218.524, + "index": 5, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 216.59, + "index": 6, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 212.912, + "index": 7, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 207.85, + "index": 8, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 201.899, + "index": 9, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 195.641, + "index": 10, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 189.69, + "index": 11, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 184.628, + "index": 12, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 180.95, + "index": 13, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 179.016, + "index": 14, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 179.016, + "index": 15, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 180.95, + "index": 16, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 184.628, + "index": 17, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 189.69, + "index": 18, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 258.524, + "y": 195.641, + "index": 19, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 238.77, + "y": 198.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1136 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1138 + }, + "max": { + "#": 1139 + } + }, + { + "x": 219.016, + "y": 179.016 + }, + { + "x": 258.524, + "y": 218.524 + }, + { + "x": 238.77, + "y": 198.77 + }, + [ + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 28, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1153 + }, + "angle": 0, + "vertices": { + "#": 1154 + }, + "position": { + "#": 1175 + }, + "force": { + "#": 1176 + }, + "torque": 0, + "positionImpulse": { + "#": 1177 + }, + "constraintImpulse": { + "#": 1178 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1179 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1180 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1181 + }, + "circleRadius": 20, + "bounds": { + "#": 1183 + }, + "positionPrev": { + "#": 1186 + }, + "anglePrev": 0, + "axes": { + "#": 1187 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1152 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1152 + } + ], + [ + { + "#": 1155 + }, + { + "#": 1156 + }, + { + "#": 1157 + }, + { + "#": 1158 + }, + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + }, + { + "#": 1163 + }, + { + "#": 1164 + }, + { + "#": 1165 + }, + { + "#": 1166 + }, + { + "#": 1167 + }, + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + } + ], + { + "x": 318.032, + "y": 201.899, + "index": 0, + "body": { + "#": 1152 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 207.85, + "index": 1, + "body": { + "#": 1152 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 212.912, + "index": 2, + "body": { + "#": 1152 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 216.59, + "index": 3, + "body": { + "#": 1152 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 218.524, + "index": 4, + "body": { + "#": 1152 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 218.524, + "index": 5, + "body": { + "#": 1152 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 216.59, + "index": 6, + "body": { + "#": 1152 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 212.912, + "index": 7, + "body": { + "#": 1152 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 207.85, + "index": 8, + "body": { + "#": 1152 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 201.899, + "index": 9, + "body": { + "#": 1152 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 195.641, + "index": 10, + "body": { + "#": 1152 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 189.69, + "index": 11, + "body": { + "#": 1152 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 184.628, + "index": 12, + "body": { + "#": 1152 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 180.95, + "index": 13, + "body": { + "#": 1152 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 179.016, + "index": 14, + "body": { + "#": 1152 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 179.016, + "index": 15, + "body": { + "#": 1152 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 180.95, + "index": 16, + "body": { + "#": 1152 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 184.628, + "index": 17, + "body": { + "#": 1152 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 189.69, + "index": 18, + "body": { + "#": 1152 + }, + "isInternal": false + }, + { + "x": 318.032, + "y": 195.641, + "index": 19, + "body": { + "#": 1152 + }, + "isInternal": false + }, + { + "x": 298.278, + "y": 198.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1182 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1184 + }, + "max": { + "#": 1185 + } + }, + { + "x": 278.524, + "y": 179.016 + }, + { + "x": 318.032, + "y": 218.524 + }, + { + "x": 298.278, + "y": 198.77 + }, + [ + { + "#": 1188 + }, + { + "#": 1189 + }, + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + }, + { + "#": 1194 + }, + { + "#": 1195 + }, + { + "#": 1196 + }, + { + "#": 1197 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 29, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1199 + }, + "angle": 0, + "vertices": { + "#": 1200 + }, + "position": { + "#": 1221 + }, + "force": { + "#": 1222 + }, + "torque": 0, + "positionImpulse": { + "#": 1223 + }, + "constraintImpulse": { + "#": 1224 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1225 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1226 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1227 + }, + "circleRadius": 20, + "bounds": { + "#": 1229 + }, + "positionPrev": { + "#": 1232 + }, + "anglePrev": 0, + "axes": { + "#": 1233 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1198 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1198 + } + ], + [ + { + "#": 1201 + }, + { + "#": 1202 + }, + { + "#": 1203 + }, + { + "#": 1204 + }, + { + "#": 1205 + }, + { + "#": 1206 + }, + { + "#": 1207 + }, + { + "#": 1208 + }, + { + "#": 1209 + }, + { + "#": 1210 + }, + { + "#": 1211 + }, + { + "#": 1212 + }, + { + "#": 1213 + }, + { + "#": 1214 + }, + { + "#": 1215 + }, + { + "#": 1216 + }, + { + "#": 1217 + }, + { + "#": 1218 + }, + { + "#": 1219 + }, + { + "#": 1220 + } + ], + { + "x": 377.54, + "y": 201.899, + "index": 0, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 207.85, + "index": 1, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 212.912, + "index": 2, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 216.59, + "index": 3, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 218.524, + "index": 4, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 218.524, + "index": 5, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 216.59, + "index": 6, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 212.912, + "index": 7, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 207.85, + "index": 8, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 201.899, + "index": 9, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 195.641, + "index": 10, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 189.69, + "index": 11, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 184.628, + "index": 12, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 180.95, + "index": 13, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 179.016, + "index": 14, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 179.016, + "index": 15, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 180.95, + "index": 16, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 184.628, + "index": 17, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 189.69, + "index": 18, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 377.54, + "y": 195.641, + "index": 19, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 357.786, + "y": 198.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1228 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1230 + }, + "max": { + "#": 1231 + } + }, + { + "x": 338.032, + "y": 179.016 + }, + { + "x": 377.54, + "y": 218.524 + }, + { + "x": 357.786, + "y": 198.77 + }, + [ + { + "#": 1234 + }, + { + "#": 1235 + }, + { + "#": 1236 + }, + { + "#": 1237 + }, + { + "#": 1238 + }, + { + "#": 1239 + }, + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 30, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1245 + }, + "angle": 0, + "vertices": { + "#": 1246 + }, + "position": { + "#": 1267 + }, + "force": { + "#": 1268 + }, + "torque": 0, + "positionImpulse": { + "#": 1269 + }, + "constraintImpulse": { + "#": 1270 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1271 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1272 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1273 + }, + "circleRadius": 20, + "bounds": { + "#": 1275 + }, + "positionPrev": { + "#": 1278 + }, + "anglePrev": 0, + "axes": { + "#": 1279 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1244 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1244 + } + ], + [ + { + "#": 1247 + }, + { + "#": 1248 + }, + { + "#": 1249 + }, + { + "#": 1250 + }, + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + }, + { + "#": 1254 + }, + { + "#": 1255 + }, + { + "#": 1256 + }, + { + "#": 1257 + }, + { + "#": 1258 + }, + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + }, + { + "#": 1263 + }, + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + } + ], + { + "x": 437.048, + "y": 201.899, + "index": 0, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 207.85, + "index": 1, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 212.912, + "index": 2, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 216.59, + "index": 3, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 218.524, + "index": 4, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 218.524, + "index": 5, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 216.59, + "index": 6, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 212.912, + "index": 7, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 207.85, + "index": 8, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 201.899, + "index": 9, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 195.641, + "index": 10, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 189.69, + "index": 11, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 184.628, + "index": 12, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 180.95, + "index": 13, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 179.016, + "index": 14, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 179.016, + "index": 15, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 180.95, + "index": 16, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 184.628, + "index": 17, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 189.69, + "index": 18, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 437.048, + "y": 195.641, + "index": 19, + "body": { + "#": 1244 + }, + "isInternal": false + }, + { + "x": 417.294, + "y": 198.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1274 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1276 + }, + "max": { + "#": 1277 + } + }, + { + "x": 397.54, + "y": 179.016 + }, + { + "x": 437.048, + "y": 218.524 + }, + { + "x": 417.294, + "y": 198.77 + }, + [ + { + "#": 1280 + }, + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + }, + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + }, + { + "#": 1289 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 31, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1291 + }, + "angle": 0, + "vertices": { + "#": 1292 + }, + "position": { + "#": 1313 + }, + "force": { + "#": 1314 + }, + "torque": 0, + "positionImpulse": { + "#": 1315 + }, + "constraintImpulse": { + "#": 1316 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1317 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1318 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1319 + }, + "circleRadius": 20, + "bounds": { + "#": 1321 + }, + "positionPrev": { + "#": 1324 + }, + "anglePrev": 0, + "axes": { + "#": 1325 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1290 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1290 + } + ], + [ + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + }, + { + "#": 1296 + }, + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + }, + { + "#": 1301 + }, + { + "#": 1302 + }, + { + "#": 1303 + }, + { + "#": 1304 + }, + { + "#": 1305 + }, + { + "#": 1306 + }, + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + }, + { + "#": 1310 + }, + { + "#": 1311 + }, + { + "#": 1312 + } + ], + { + "x": 496.556, + "y": 201.899, + "index": 0, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 207.85, + "index": 1, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 212.912, + "index": 2, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 216.59, + "index": 3, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 218.524, + "index": 4, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 218.524, + "index": 5, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 216.59, + "index": 6, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 212.912, + "index": 7, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 207.85, + "index": 8, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 201.899, + "index": 9, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 195.641, + "index": 10, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 189.69, + "index": 11, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 184.628, + "index": 12, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 180.95, + "index": 13, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 179.016, + "index": 14, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 179.016, + "index": 15, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 180.95, + "index": 16, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 184.628, + "index": 17, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 189.69, + "index": 18, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 496.556, + "y": 195.641, + "index": 19, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 476.802, + "y": 198.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1320 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1322 + }, + "max": { + "#": 1323 + } + }, + { + "x": 457.048, + "y": 179.016 + }, + { + "x": 496.556, + "y": 218.524 + }, + { + "x": 476.802, + "y": 198.77 + }, + [ + { + "#": 1326 + }, + { + "#": 1327 + }, + { + "#": 1328 + }, + { + "#": 1329 + }, + { + "#": 1330 + }, + { + "#": 1331 + }, + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + }, + { + "#": 1335 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 32, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1337 + }, + "angle": 0, + "vertices": { + "#": 1338 + }, + "position": { + "#": 1359 + }, + "force": { + "#": 1360 + }, + "torque": 0, + "positionImpulse": { + "#": 1361 + }, + "constraintImpulse": { + "#": 1362 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1363 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1364 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1365 + }, + "circleRadius": 20, + "bounds": { + "#": 1367 + }, + "positionPrev": { + "#": 1370 + }, + "anglePrev": 0, + "axes": { + "#": 1371 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1336 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1336 + } + ], + [ + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + }, + { + "#": 1342 + }, + { + "#": 1343 + }, + { + "#": 1344 + }, + { + "#": 1345 + }, + { + "#": 1346 + }, + { + "#": 1347 + }, + { + "#": 1348 + }, + { + "#": 1349 + }, + { + "#": 1350 + }, + { + "#": 1351 + }, + { + "#": 1352 + }, + { + "#": 1353 + }, + { + "#": 1354 + }, + { + "#": 1355 + }, + { + "#": 1356 + }, + { + "#": 1357 + }, + { + "#": 1358 + } + ], + { + "x": 556.064, + "y": 201.899, + "index": 0, + "body": { + "#": 1336 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 207.85, + "index": 1, + "body": { + "#": 1336 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 212.912, + "index": 2, + "body": { + "#": 1336 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 216.59, + "index": 3, + "body": { + "#": 1336 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 218.524, + "index": 4, + "body": { + "#": 1336 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 218.524, + "index": 5, + "body": { + "#": 1336 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 216.59, + "index": 6, + "body": { + "#": 1336 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 212.912, + "index": 7, + "body": { + "#": 1336 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 207.85, + "index": 8, + "body": { + "#": 1336 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 201.899, + "index": 9, + "body": { + "#": 1336 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 195.641, + "index": 10, + "body": { + "#": 1336 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 189.69, + "index": 11, + "body": { + "#": 1336 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 184.628, + "index": 12, + "body": { + "#": 1336 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 180.95, + "index": 13, + "body": { + "#": 1336 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 179.016, + "index": 14, + "body": { + "#": 1336 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 179.016, + "index": 15, + "body": { + "#": 1336 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 180.95, + "index": 16, + "body": { + "#": 1336 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 184.628, + "index": 17, + "body": { + "#": 1336 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 189.69, + "index": 18, + "body": { + "#": 1336 + }, + "isInternal": false + }, + { + "x": 556.064, + "y": 195.641, + "index": 19, + "body": { + "#": 1336 + }, + "isInternal": false + }, + { + "x": 536.31, + "y": 198.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1366 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1368 + }, + "max": { + "#": 1369 + } + }, + { + "x": 516.556, + "y": 179.016 + }, + { + "x": 556.064, + "y": 218.524 + }, + { + "x": 536.31, + "y": 198.77 + }, + [ + { + "#": 1372 + }, + { + "#": 1373 + }, + { + "#": 1374 + }, + { + "#": 1375 + }, + { + "#": 1376 + }, + { + "#": 1377 + }, + { + "#": 1378 + }, + { + "#": 1379 + }, + { + "#": 1380 + }, + { + "#": 1381 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 33, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1383 + }, + "angle": 0, + "vertices": { + "#": 1384 + }, + "position": { + "#": 1405 + }, + "force": { + "#": 1406 + }, + "torque": 0, + "positionImpulse": { + "#": 1407 + }, + "constraintImpulse": { + "#": 1408 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1409 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1410 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1411 + }, + "circleRadius": 20, + "bounds": { + "#": 1413 + }, + "positionPrev": { + "#": 1416 + }, + "anglePrev": 0, + "axes": { + "#": 1417 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1382 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1382 + } + ], + [ + { + "#": 1385 + }, + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + }, + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + }, + { + "#": 1394 + }, + { + "#": 1395 + }, + { + "#": 1396 + }, + { + "#": 1397 + }, + { + "#": 1398 + }, + { + "#": 1399 + }, + { + "#": 1400 + }, + { + "#": 1401 + }, + { + "#": 1402 + }, + { + "#": 1403 + }, + { + "#": 1404 + } + ], + { + "x": 615.572, + "y": 201.899, + "index": 0, + "body": { + "#": 1382 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 207.85, + "index": 1, + "body": { + "#": 1382 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 212.912, + "index": 2, + "body": { + "#": 1382 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 216.59, + "index": 3, + "body": { + "#": 1382 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 218.524, + "index": 4, + "body": { + "#": 1382 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 218.524, + "index": 5, + "body": { + "#": 1382 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 216.59, + "index": 6, + "body": { + "#": 1382 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 212.912, + "index": 7, + "body": { + "#": 1382 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 207.85, + "index": 8, + "body": { + "#": 1382 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 201.899, + "index": 9, + "body": { + "#": 1382 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 195.641, + "index": 10, + "body": { + "#": 1382 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 189.69, + "index": 11, + "body": { + "#": 1382 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 184.628, + "index": 12, + "body": { + "#": 1382 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 180.95, + "index": 13, + "body": { + "#": 1382 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 179.016, + "index": 14, + "body": { + "#": 1382 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 179.016, + "index": 15, + "body": { + "#": 1382 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 180.95, + "index": 16, + "body": { + "#": 1382 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 184.628, + "index": 17, + "body": { + "#": 1382 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 189.69, + "index": 18, + "body": { + "#": 1382 + }, + "isInternal": false + }, + { + "x": 615.572, + "y": 195.641, + "index": 19, + "body": { + "#": 1382 + }, + "isInternal": false + }, + { + "x": 595.818, + "y": 198.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1412 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1414 + }, + "max": { + "#": 1415 + } + }, + { + "x": 576.064, + "y": 179.016 + }, + { + "x": 615.572, + "y": 218.524 + }, + { + "x": 595.818, + "y": 198.77 + }, + [ + { + "#": 1418 + }, + { + "#": 1419 + }, + { + "#": 1420 + }, + { + "#": 1421 + }, + { + "#": 1422 + }, + { + "#": 1423 + }, + { + "#": 1424 + }, + { + "#": 1425 + }, + { + "#": 1426 + }, + { + "#": 1427 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 34, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1429 + }, + "angle": 0, + "vertices": { + "#": 1430 + }, + "position": { + "#": 1451 + }, + "force": { + "#": 1452 + }, + "torque": 0, + "positionImpulse": { + "#": 1453 + }, + "constraintImpulse": { + "#": 1454 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1455 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1456 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1457 + }, + "circleRadius": 20, + "bounds": { + "#": 1459 + }, + "positionPrev": { + "#": 1462 + }, + "anglePrev": 0, + "axes": { + "#": 1463 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1428 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1428 + } + ], + [ + { + "#": 1431 + }, + { + "#": 1432 + }, + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + }, + { + "#": 1438 + }, + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + }, + { + "#": 1442 + }, + { + "#": 1443 + }, + { + "#": 1444 + }, + { + "#": 1445 + }, + { + "#": 1446 + }, + { + "#": 1447 + }, + { + "#": 1448 + }, + { + "#": 1449 + }, + { + "#": 1450 + } + ], + { + "x": 675.08, + "y": 201.899, + "index": 0, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 207.85, + "index": 1, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 212.912, + "index": 2, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 216.59, + "index": 3, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 218.524, + "index": 4, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 218.524, + "index": 5, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 216.59, + "index": 6, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 212.912, + "index": 7, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 207.85, + "index": 8, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 201.899, + "index": 9, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 195.641, + "index": 10, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 189.69, + "index": 11, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 184.628, + "index": 12, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 180.95, + "index": 13, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 179.016, + "index": 14, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 179.016, + "index": 15, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 180.95, + "index": 16, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 184.628, + "index": 17, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 189.69, + "index": 18, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 675.08, + "y": 195.641, + "index": 19, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 655.326, + "y": 198.77 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1458 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1460 + }, + "max": { + "#": 1461 + } + }, + { + "x": 635.572, + "y": 179.016 + }, + { + "x": 675.08, + "y": 218.524 + }, + { + "x": 655.326, + "y": 198.77 + }, + [ + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + }, + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + }, + { + "#": 1473 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 35, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1475 + }, + "angle": 0, + "vertices": { + "#": 1476 + }, + "position": { + "#": 1497 + }, + "force": { + "#": 1498 + }, + "torque": 0, + "positionImpulse": { + "#": 1499 + }, + "constraintImpulse": { + "#": 1500 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1501 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1502 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1503 + }, + "circleRadius": 20, + "bounds": { + "#": 1505 + }, + "positionPrev": { + "#": 1508 + }, + "anglePrev": 0, + "axes": { + "#": 1509 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1474 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1474 + } + ], + [ + { + "#": 1477 + }, + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + }, + { + "#": 1481 + }, + { + "#": 1482 + }, + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + }, + { + "#": 1487 + }, + { + "#": 1488 + }, + { + "#": 1489 + }, + { + "#": 1490 + }, + { + "#": 1491 + }, + { + "#": 1492 + }, + { + "#": 1493 + }, + { + "#": 1494 + }, + { + "#": 1495 + }, + { + "#": 1496 + } + ], + { + "x": 139.508, + "y": 241.407, + "index": 0, + "body": { + "#": 1474 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 247.358, + "index": 1, + "body": { + "#": 1474 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 252.42, + "index": 2, + "body": { + "#": 1474 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 256.098, + "index": 3, + "body": { + "#": 1474 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 258.032, + "index": 4, + "body": { + "#": 1474 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 258.032, + "index": 5, + "body": { + "#": 1474 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 256.098, + "index": 6, + "body": { + "#": 1474 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 252.42, + "index": 7, + "body": { + "#": 1474 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 247.358, + "index": 8, + "body": { + "#": 1474 + }, + "isInternal": false + }, + { + "x": 100, + "y": 241.407, + "index": 9, + "body": { + "#": 1474 + }, + "isInternal": false + }, + { + "x": 100, + "y": 235.149, + "index": 10, + "body": { + "#": 1474 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 229.198, + "index": 11, + "body": { + "#": 1474 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 224.136, + "index": 12, + "body": { + "#": 1474 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 220.458, + "index": 13, + "body": { + "#": 1474 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 218.524, + "index": 14, + "body": { + "#": 1474 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 218.524, + "index": 15, + "body": { + "#": 1474 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 220.458, + "index": 16, + "body": { + "#": 1474 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 224.136, + "index": 17, + "body": { + "#": 1474 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 229.198, + "index": 18, + "body": { + "#": 1474 + }, + "isInternal": false + }, + { + "x": 139.508, + "y": 235.149, + "index": 19, + "body": { + "#": 1474 + }, + "isInternal": false + }, + { + "x": 119.754, + "y": 238.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1504 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1506 + }, + "max": { + "#": 1507 + } + }, + { + "x": 100, + "y": 218.524 + }, + { + "x": 139.508, + "y": 258.032 + }, + { + "x": 119.754, + "y": 238.278 + }, + [ + { + "#": 1510 + }, + { + "#": 1511 + }, + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + }, + { + "#": 1515 + }, + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 36, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1521 + }, + "angle": 0, + "vertices": { + "#": 1522 + }, + "position": { + "#": 1543 + }, + "force": { + "#": 1544 + }, + "torque": 0, + "positionImpulse": { + "#": 1545 + }, + "constraintImpulse": { + "#": 1546 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1547 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1548 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1549 + }, + "circleRadius": 20, + "bounds": { + "#": 1551 + }, + "positionPrev": { + "#": 1554 + }, + "anglePrev": 0, + "axes": { + "#": 1555 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1520 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1520 + } + ], + [ + { + "#": 1523 + }, + { + "#": 1524 + }, + { + "#": 1525 + }, + { + "#": 1526 + }, + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + }, + { + "#": 1533 + }, + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + }, + { + "#": 1537 + }, + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + } + ], + { + "x": 199.016, + "y": 241.407, + "index": 0, + "body": { + "#": 1520 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 247.358, + "index": 1, + "body": { + "#": 1520 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 252.42, + "index": 2, + "body": { + "#": 1520 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 256.098, + "index": 3, + "body": { + "#": 1520 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 258.032, + "index": 4, + "body": { + "#": 1520 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 258.032, + "index": 5, + "body": { + "#": 1520 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 256.098, + "index": 6, + "body": { + "#": 1520 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 252.42, + "index": 7, + "body": { + "#": 1520 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 247.358, + "index": 8, + "body": { + "#": 1520 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 241.407, + "index": 9, + "body": { + "#": 1520 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 235.149, + "index": 10, + "body": { + "#": 1520 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 229.198, + "index": 11, + "body": { + "#": 1520 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 224.136, + "index": 12, + "body": { + "#": 1520 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 220.458, + "index": 13, + "body": { + "#": 1520 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 218.524, + "index": 14, + "body": { + "#": 1520 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 218.524, + "index": 15, + "body": { + "#": 1520 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 220.458, + "index": 16, + "body": { + "#": 1520 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 224.136, + "index": 17, + "body": { + "#": 1520 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 229.198, + "index": 18, + "body": { + "#": 1520 + }, + "isInternal": false + }, + { + "x": 199.016, + "y": 235.149, + "index": 19, + "body": { + "#": 1520 + }, + "isInternal": false + }, + { + "x": 179.262, + "y": 238.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1550 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1552 + }, + "max": { + "#": 1553 + } + }, + { + "x": 159.508, + "y": 218.524 + }, + { + "x": 199.016, + "y": 258.032 + }, + { + "x": 179.262, + "y": 238.278 + }, + [ + { + "#": 1556 + }, + { + "#": 1557 + }, + { + "#": 1558 + }, + { + "#": 1559 + }, + { + "#": 1560 + }, + { + "#": 1561 + }, + { + "#": 1562 + }, + { + "#": 1563 + }, + { + "#": 1564 + }, + { + "#": 1565 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 37, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1567 + }, + "angle": 0, + "vertices": { + "#": 1568 + }, + "position": { + "#": 1589 + }, + "force": { + "#": 1590 + }, + "torque": 0, + "positionImpulse": { + "#": 1591 + }, + "constraintImpulse": { + "#": 1592 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1593 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1594 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1595 + }, + "circleRadius": 20, + "bounds": { + "#": 1597 + }, + "positionPrev": { + "#": 1600 + }, + "anglePrev": 0, + "axes": { + "#": 1601 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1566 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1566 + } + ], + [ + { + "#": 1569 + }, + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + }, + { + "#": 1577 + }, + { + "#": 1578 + }, + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + }, + { + "#": 1583 + }, + { + "#": 1584 + }, + { + "#": 1585 + }, + { + "#": 1586 + }, + { + "#": 1587 + }, + { + "#": 1588 + } + ], + { + "x": 258.524, + "y": 241.407, + "index": 0, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 247.358, + "index": 1, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 252.42, + "index": 2, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 256.098, + "index": 3, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 258.032, + "index": 4, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 258.032, + "index": 5, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 256.098, + "index": 6, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 252.42, + "index": 7, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 247.358, + "index": 8, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 241.407, + "index": 9, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 235.149, + "index": 10, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 229.198, + "index": 11, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 224.136, + "index": 12, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 220.458, + "index": 13, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 218.524, + "index": 14, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 218.524, + "index": 15, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 220.458, + "index": 16, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 224.136, + "index": 17, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 229.198, + "index": 18, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 258.524, + "y": 235.149, + "index": 19, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 238.77, + "y": 238.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1596 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1598 + }, + "max": { + "#": 1599 + } + }, + { + "x": 219.016, + "y": 218.524 + }, + { + "x": 258.524, + "y": 258.032 + }, + { + "x": 238.77, + "y": 238.278 + }, + [ + { + "#": 1602 + }, + { + "#": 1603 + }, + { + "#": 1604 + }, + { + "#": 1605 + }, + { + "#": 1606 + }, + { + "#": 1607 + }, + { + "#": 1608 + }, + { + "#": 1609 + }, + { + "#": 1610 + }, + { + "#": 1611 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 38, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1613 + }, + "angle": 0, + "vertices": { + "#": 1614 + }, + "position": { + "#": 1635 + }, + "force": { + "#": 1636 + }, + "torque": 0, + "positionImpulse": { + "#": 1637 + }, + "constraintImpulse": { + "#": 1638 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1639 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1640 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1641 + }, + "circleRadius": 20, + "bounds": { + "#": 1643 + }, + "positionPrev": { + "#": 1646 + }, + "anglePrev": 0, + "axes": { + "#": 1647 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1612 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1612 + } + ], + [ + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + }, + { + "#": 1618 + }, + { + "#": 1619 + }, + { + "#": 1620 + }, + { + "#": 1621 + }, + { + "#": 1622 + }, + { + "#": 1623 + }, + { + "#": 1624 + }, + { + "#": 1625 + }, + { + "#": 1626 + }, + { + "#": 1627 + }, + { + "#": 1628 + }, + { + "#": 1629 + }, + { + "#": 1630 + }, + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + } + ], + { + "x": 318.032, + "y": 241.407, + "index": 0, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 247.358, + "index": 1, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 252.42, + "index": 2, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 256.098, + "index": 3, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 258.032, + "index": 4, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 258.032, + "index": 5, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 256.098, + "index": 6, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 252.42, + "index": 7, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 247.358, + "index": 8, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 241.407, + "index": 9, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 235.149, + "index": 10, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 229.198, + "index": 11, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 224.136, + "index": 12, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 220.458, + "index": 13, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 218.524, + "index": 14, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 218.524, + "index": 15, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 220.458, + "index": 16, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 224.136, + "index": 17, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 229.198, + "index": 18, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 318.032, + "y": 235.149, + "index": 19, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 298.278, + "y": 238.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1642 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1644 + }, + "max": { + "#": 1645 + } + }, + { + "x": 278.524, + "y": 218.524 + }, + { + "x": 318.032, + "y": 258.032 + }, + { + "x": 298.278, + "y": 238.278 + }, + [ + { + "#": 1648 + }, + { + "#": 1649 + }, + { + "#": 1650 + }, + { + "#": 1651 + }, + { + "#": 1652 + }, + { + "#": 1653 + }, + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 39, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1659 + }, + "angle": 0, + "vertices": { + "#": 1660 + }, + "position": { + "#": 1681 + }, + "force": { + "#": 1682 + }, + "torque": 0, + "positionImpulse": { + "#": 1683 + }, + "constraintImpulse": { + "#": 1684 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1685 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1686 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1687 + }, + "circleRadius": 20, + "bounds": { + "#": 1689 + }, + "positionPrev": { + "#": 1692 + }, + "anglePrev": 0, + "axes": { + "#": 1693 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1658 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1658 + } + ], + [ + { + "#": 1661 + }, + { + "#": 1662 + }, + { + "#": 1663 + }, + { + "#": 1664 + }, + { + "#": 1665 + }, + { + "#": 1666 + }, + { + "#": 1667 + }, + { + "#": 1668 + }, + { + "#": 1669 + }, + { + "#": 1670 + }, + { + "#": 1671 + }, + { + "#": 1672 + }, + { + "#": 1673 + }, + { + "#": 1674 + }, + { + "#": 1675 + }, + { + "#": 1676 + }, + { + "#": 1677 + }, + { + "#": 1678 + }, + { + "#": 1679 + }, + { + "#": 1680 + } + ], + { + "x": 377.54, + "y": 241.407, + "index": 0, + "body": { + "#": 1658 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 247.358, + "index": 1, + "body": { + "#": 1658 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 252.42, + "index": 2, + "body": { + "#": 1658 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 256.098, + "index": 3, + "body": { + "#": 1658 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 258.032, + "index": 4, + "body": { + "#": 1658 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 258.032, + "index": 5, + "body": { + "#": 1658 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 256.098, + "index": 6, + "body": { + "#": 1658 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 252.42, + "index": 7, + "body": { + "#": 1658 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 247.358, + "index": 8, + "body": { + "#": 1658 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 241.407, + "index": 9, + "body": { + "#": 1658 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 235.149, + "index": 10, + "body": { + "#": 1658 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 229.198, + "index": 11, + "body": { + "#": 1658 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 224.136, + "index": 12, + "body": { + "#": 1658 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 220.458, + "index": 13, + "body": { + "#": 1658 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 218.524, + "index": 14, + "body": { + "#": 1658 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 218.524, + "index": 15, + "body": { + "#": 1658 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 220.458, + "index": 16, + "body": { + "#": 1658 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 224.136, + "index": 17, + "body": { + "#": 1658 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 229.198, + "index": 18, + "body": { + "#": 1658 + }, + "isInternal": false + }, + { + "x": 377.54, + "y": 235.149, + "index": 19, + "body": { + "#": 1658 + }, + "isInternal": false + }, + { + "x": 357.786, + "y": 238.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1688 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1690 + }, + "max": { + "#": 1691 + } + }, + { + "x": 338.032, + "y": 218.524 + }, + { + "x": 377.54, + "y": 258.032 + }, + { + "x": 357.786, + "y": 238.278 + }, + [ + { + "#": 1694 + }, + { + "#": 1695 + }, + { + "#": 1696 + }, + { + "#": 1697 + }, + { + "#": 1698 + }, + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + }, + { + "#": 1703 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 40, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1705 + }, + "angle": 0, + "vertices": { + "#": 1706 + }, + "position": { + "#": 1727 + }, + "force": { + "#": 1728 + }, + "torque": 0, + "positionImpulse": { + "#": 1729 + }, + "constraintImpulse": { + "#": 1730 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1731 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1732 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1733 + }, + "circleRadius": 20, + "bounds": { + "#": 1735 + }, + "positionPrev": { + "#": 1738 + }, + "anglePrev": 0, + "axes": { + "#": 1739 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1704 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1704 + } + ], + [ + { + "#": 1707 + }, + { + "#": 1708 + }, + { + "#": 1709 + }, + { + "#": 1710 + }, + { + "#": 1711 + }, + { + "#": 1712 + }, + { + "#": 1713 + }, + { + "#": 1714 + }, + { + "#": 1715 + }, + { + "#": 1716 + }, + { + "#": 1717 + }, + { + "#": 1718 + }, + { + "#": 1719 + }, + { + "#": 1720 + }, + { + "#": 1721 + }, + { + "#": 1722 + }, + { + "#": 1723 + }, + { + "#": 1724 + }, + { + "#": 1725 + }, + { + "#": 1726 + } + ], + { + "x": 437.048, + "y": 241.407, + "index": 0, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 247.358, + "index": 1, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 252.42, + "index": 2, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 256.098, + "index": 3, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 258.032, + "index": 4, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 258.032, + "index": 5, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 256.098, + "index": 6, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 252.42, + "index": 7, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 247.358, + "index": 8, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 241.407, + "index": 9, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 235.149, + "index": 10, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 229.198, + "index": 11, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 224.136, + "index": 12, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 220.458, + "index": 13, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 218.524, + "index": 14, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 218.524, + "index": 15, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 220.458, + "index": 16, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 224.136, + "index": 17, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 229.198, + "index": 18, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 437.048, + "y": 235.149, + "index": 19, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 417.294, + "y": 238.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1734 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1736 + }, + "max": { + "#": 1737 + } + }, + { + "x": 397.54, + "y": 218.524 + }, + { + "x": 437.048, + "y": 258.032 + }, + { + "x": 417.294, + "y": 238.278 + }, + [ + { + "#": 1740 + }, + { + "#": 1741 + }, + { + "#": 1742 + }, + { + "#": 1743 + }, + { + "#": 1744 + }, + { + "#": 1745 + }, + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 41, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1751 + }, + "angle": 0, + "vertices": { + "#": 1752 + }, + "position": { + "#": 1773 + }, + "force": { + "#": 1774 + }, + "torque": 0, + "positionImpulse": { + "#": 1775 + }, + "constraintImpulse": { + "#": 1776 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1777 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1778 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1779 + }, + "circleRadius": 20, + "bounds": { + "#": 1781 + }, + "positionPrev": { + "#": 1784 + }, + "anglePrev": 0, + "axes": { + "#": 1785 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1750 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1750 + } + ], + [ + { + "#": 1753 + }, + { + "#": 1754 + }, + { + "#": 1755 + }, + { + "#": 1756 + }, + { + "#": 1757 + }, + { + "#": 1758 + }, + { + "#": 1759 + }, + { + "#": 1760 + }, + { + "#": 1761 + }, + { + "#": 1762 + }, + { + "#": 1763 + }, + { + "#": 1764 + }, + { + "#": 1765 + }, + { + "#": 1766 + }, + { + "#": 1767 + }, + { + "#": 1768 + }, + { + "#": 1769 + }, + { + "#": 1770 + }, + { + "#": 1771 + }, + { + "#": 1772 + } + ], + { + "x": 496.556, + "y": 241.407, + "index": 0, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 247.358, + "index": 1, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 252.42, + "index": 2, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 256.098, + "index": 3, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 258.032, + "index": 4, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 258.032, + "index": 5, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 256.098, + "index": 6, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 252.42, + "index": 7, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 247.358, + "index": 8, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 241.407, + "index": 9, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 235.149, + "index": 10, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 229.198, + "index": 11, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 224.136, + "index": 12, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 220.458, + "index": 13, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 218.524, + "index": 14, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 218.524, + "index": 15, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 220.458, + "index": 16, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 224.136, + "index": 17, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 229.198, + "index": 18, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 496.556, + "y": 235.149, + "index": 19, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 476.802, + "y": 238.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1780 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1782 + }, + "max": { + "#": 1783 + } + }, + { + "x": 457.048, + "y": 218.524 + }, + { + "x": 496.556, + "y": 258.032 + }, + { + "x": 476.802, + "y": 238.278 + }, + [ + { + "#": 1786 + }, + { + "#": 1787 + }, + { + "#": 1788 + }, + { + "#": 1789 + }, + { + "#": 1790 + }, + { + "#": 1791 + }, + { + "#": 1792 + }, + { + "#": 1793 + }, + { + "#": 1794 + }, + { + "#": 1795 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 42, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1797 + }, + "angle": 0, + "vertices": { + "#": 1798 + }, + "position": { + "#": 1819 + }, + "force": { + "#": 1820 + }, + "torque": 0, + "positionImpulse": { + "#": 1821 + }, + "constraintImpulse": { + "#": 1822 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1823 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1824 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1825 + }, + "circleRadius": 20, + "bounds": { + "#": 1827 + }, + "positionPrev": { + "#": 1830 + }, + "anglePrev": 0, + "axes": { + "#": 1831 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1796 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1796 + } + ], + [ + { + "#": 1799 + }, + { + "#": 1800 + }, + { + "#": 1801 + }, + { + "#": 1802 + }, + { + "#": 1803 + }, + { + "#": 1804 + }, + { + "#": 1805 + }, + { + "#": 1806 + }, + { + "#": 1807 + }, + { + "#": 1808 + }, + { + "#": 1809 + }, + { + "#": 1810 + }, + { + "#": 1811 + }, + { + "#": 1812 + }, + { + "#": 1813 + }, + { + "#": 1814 + }, + { + "#": 1815 + }, + { + "#": 1816 + }, + { + "#": 1817 + }, + { + "#": 1818 + } + ], + { + "x": 556.064, + "y": 241.407, + "index": 0, + "body": { + "#": 1796 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 247.358, + "index": 1, + "body": { + "#": 1796 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 252.42, + "index": 2, + "body": { + "#": 1796 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 256.098, + "index": 3, + "body": { + "#": 1796 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 258.032, + "index": 4, + "body": { + "#": 1796 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 258.032, + "index": 5, + "body": { + "#": 1796 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 256.098, + "index": 6, + "body": { + "#": 1796 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 252.42, + "index": 7, + "body": { + "#": 1796 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 247.358, + "index": 8, + "body": { + "#": 1796 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 241.407, + "index": 9, + "body": { + "#": 1796 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 235.149, + "index": 10, + "body": { + "#": 1796 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 229.198, + "index": 11, + "body": { + "#": 1796 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 224.136, + "index": 12, + "body": { + "#": 1796 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 220.458, + "index": 13, + "body": { + "#": 1796 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 218.524, + "index": 14, + "body": { + "#": 1796 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 218.524, + "index": 15, + "body": { + "#": 1796 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 220.458, + "index": 16, + "body": { + "#": 1796 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 224.136, + "index": 17, + "body": { + "#": 1796 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 229.198, + "index": 18, + "body": { + "#": 1796 + }, + "isInternal": false + }, + { + "x": 556.064, + "y": 235.149, + "index": 19, + "body": { + "#": 1796 + }, + "isInternal": false + }, + { + "x": 536.31, + "y": 238.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1826 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1828 + }, + "max": { + "#": 1829 + } + }, + { + "x": 516.556, + "y": 218.524 + }, + { + "x": 556.064, + "y": 258.032 + }, + { + "x": 536.31, + "y": 238.278 + }, + [ + { + "#": 1832 + }, + { + "#": 1833 + }, + { + "#": 1834 + }, + { + "#": 1835 + }, + { + "#": 1836 + }, + { + "#": 1837 + }, + { + "#": 1838 + }, + { + "#": 1839 + }, + { + "#": 1840 + }, + { + "#": 1841 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 43, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1843 + }, + "angle": 0, + "vertices": { + "#": 1844 + }, + "position": { + "#": 1865 + }, + "force": { + "#": 1866 + }, + "torque": 0, + "positionImpulse": { + "#": 1867 + }, + "constraintImpulse": { + "#": 1868 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1869 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1870 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1871 + }, + "circleRadius": 20, + "bounds": { + "#": 1873 + }, + "positionPrev": { + "#": 1876 + }, + "anglePrev": 0, + "axes": { + "#": 1877 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1842 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1842 + } + ], + [ + { + "#": 1845 + }, + { + "#": 1846 + }, + { + "#": 1847 + }, + { + "#": 1848 + }, + { + "#": 1849 + }, + { + "#": 1850 + }, + { + "#": 1851 + }, + { + "#": 1852 + }, + { + "#": 1853 + }, + { + "#": 1854 + }, + { + "#": 1855 + }, + { + "#": 1856 + }, + { + "#": 1857 + }, + { + "#": 1858 + }, + { + "#": 1859 + }, + { + "#": 1860 + }, + { + "#": 1861 + }, + { + "#": 1862 + }, + { + "#": 1863 + }, + { + "#": 1864 + } + ], + { + "x": 615.572, + "y": 241.407, + "index": 0, + "body": { + "#": 1842 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 247.358, + "index": 1, + "body": { + "#": 1842 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 252.42, + "index": 2, + "body": { + "#": 1842 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 256.098, + "index": 3, + "body": { + "#": 1842 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 258.032, + "index": 4, + "body": { + "#": 1842 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 258.032, + "index": 5, + "body": { + "#": 1842 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 256.098, + "index": 6, + "body": { + "#": 1842 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 252.42, + "index": 7, + "body": { + "#": 1842 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 247.358, + "index": 8, + "body": { + "#": 1842 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 241.407, + "index": 9, + "body": { + "#": 1842 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 235.149, + "index": 10, + "body": { + "#": 1842 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 229.198, + "index": 11, + "body": { + "#": 1842 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 224.136, + "index": 12, + "body": { + "#": 1842 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 220.458, + "index": 13, + "body": { + "#": 1842 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 218.524, + "index": 14, + "body": { + "#": 1842 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 218.524, + "index": 15, + "body": { + "#": 1842 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 220.458, + "index": 16, + "body": { + "#": 1842 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 224.136, + "index": 17, + "body": { + "#": 1842 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 229.198, + "index": 18, + "body": { + "#": 1842 + }, + "isInternal": false + }, + { + "x": 615.572, + "y": 235.149, + "index": 19, + "body": { + "#": 1842 + }, + "isInternal": false + }, + { + "x": 595.818, + "y": 238.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1872 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1874 + }, + "max": { + "#": 1875 + } + }, + { + "x": 576.064, + "y": 218.524 + }, + { + "x": 615.572, + "y": 258.032 + }, + { + "x": 595.818, + "y": 238.278 + }, + [ + { + "#": 1878 + }, + { + "#": 1879 + }, + { + "#": 1880 + }, + { + "#": 1881 + }, + { + "#": 1882 + }, + { + "#": 1883 + }, + { + "#": 1884 + }, + { + "#": 1885 + }, + { + "#": 1886 + }, + { + "#": 1887 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 44, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1889 + }, + "angle": 0, + "vertices": { + "#": 1890 + }, + "position": { + "#": 1911 + }, + "force": { + "#": 1912 + }, + "torque": 0, + "positionImpulse": { + "#": 1913 + }, + "constraintImpulse": { + "#": 1914 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1915 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1916 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1917 + }, + "circleRadius": 20, + "bounds": { + "#": 1919 + }, + "positionPrev": { + "#": 1922 + }, + "anglePrev": 0, + "axes": { + "#": 1923 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1888 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1888 + } + ], + [ + { + "#": 1891 + }, + { + "#": 1892 + }, + { + "#": 1893 + }, + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + }, + { + "#": 1902 + }, + { + "#": 1903 + }, + { + "#": 1904 + }, + { + "#": 1905 + }, + { + "#": 1906 + }, + { + "#": 1907 + }, + { + "#": 1908 + }, + { + "#": 1909 + }, + { + "#": 1910 + } + ], + { + "x": 675.08, + "y": 241.407, + "index": 0, + "body": { + "#": 1888 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 247.358, + "index": 1, + "body": { + "#": 1888 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 252.42, + "index": 2, + "body": { + "#": 1888 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 256.098, + "index": 3, + "body": { + "#": 1888 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 258.032, + "index": 4, + "body": { + "#": 1888 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 258.032, + "index": 5, + "body": { + "#": 1888 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 256.098, + "index": 6, + "body": { + "#": 1888 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 252.42, + "index": 7, + "body": { + "#": 1888 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 247.358, + "index": 8, + "body": { + "#": 1888 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 241.407, + "index": 9, + "body": { + "#": 1888 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 235.149, + "index": 10, + "body": { + "#": 1888 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 229.198, + "index": 11, + "body": { + "#": 1888 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 224.136, + "index": 12, + "body": { + "#": 1888 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 220.458, + "index": 13, + "body": { + "#": 1888 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 218.524, + "index": 14, + "body": { + "#": 1888 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 218.524, + "index": 15, + "body": { + "#": 1888 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 220.458, + "index": 16, + "body": { + "#": 1888 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 224.136, + "index": 17, + "body": { + "#": 1888 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 229.198, + "index": 18, + "body": { + "#": 1888 + }, + "isInternal": false + }, + { + "x": 675.08, + "y": 235.149, + "index": 19, + "body": { + "#": 1888 + }, + "isInternal": false + }, + { + "x": 655.326, + "y": 238.278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1918 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1920 + }, + "max": { + "#": 1921 + } + }, + { + "x": 635.572, + "y": 218.524 + }, + { + "x": 675.08, + "y": 258.032 + }, + { + "x": 655.326, + "y": 238.278 + }, + [ + { + "#": 1924 + }, + { + "#": 1925 + }, + { + "#": 1926 + }, + { + "#": 1927 + }, + { + "#": 1928 + }, + { + "#": 1929 + }, + { + "#": 1930 + }, + { + "#": 1931 + }, + { + "#": 1932 + }, + { + "#": 1933 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 45, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1935 + }, + "angle": 0, + "vertices": { + "#": 1936 + }, + "position": { + "#": 1957 + }, + "force": { + "#": 1958 + }, + "torque": 0, + "positionImpulse": { + "#": 1959 + }, + "constraintImpulse": { + "#": 1960 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1961 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1962 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1963 + }, + "circleRadius": 20, + "bounds": { + "#": 1965 + }, + "positionPrev": { + "#": 1968 + }, + "anglePrev": 0, + "axes": { + "#": 1969 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1934 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1934 + } + ], + [ + { + "#": 1937 + }, + { + "#": 1938 + }, + { + "#": 1939 + }, + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + }, + { + "#": 1944 + }, + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + }, + { + "#": 1948 + }, + { + "#": 1949 + }, + { + "#": 1950 + }, + { + "#": 1951 + }, + { + "#": 1952 + }, + { + "#": 1953 + }, + { + "#": 1954 + }, + { + "#": 1955 + }, + { + "#": 1956 + } + ], + { + "x": 139.508, + "y": 280.915, + "index": 0, + "body": { + "#": 1934 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 286.866, + "index": 1, + "body": { + "#": 1934 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 291.928, + "index": 2, + "body": { + "#": 1934 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 295.606, + "index": 3, + "body": { + "#": 1934 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 297.54, + "index": 4, + "body": { + "#": 1934 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 297.54, + "index": 5, + "body": { + "#": 1934 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 295.606, + "index": 6, + "body": { + "#": 1934 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 291.928, + "index": 7, + "body": { + "#": 1934 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 286.866, + "index": 8, + "body": { + "#": 1934 + }, + "isInternal": false + }, + { + "x": 100, + "y": 280.915, + "index": 9, + "body": { + "#": 1934 + }, + "isInternal": false + }, + { + "x": 100, + "y": 274.657, + "index": 10, + "body": { + "#": 1934 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 268.706, + "index": 11, + "body": { + "#": 1934 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 263.644, + "index": 12, + "body": { + "#": 1934 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 259.966, + "index": 13, + "body": { + "#": 1934 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 258.032, + "index": 14, + "body": { + "#": 1934 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 258.032, + "index": 15, + "body": { + "#": 1934 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 259.966, + "index": 16, + "body": { + "#": 1934 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 263.644, + "index": 17, + "body": { + "#": 1934 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 268.706, + "index": 18, + "body": { + "#": 1934 + }, + "isInternal": false + }, + { + "x": 139.508, + "y": 274.657, + "index": 19, + "body": { + "#": 1934 + }, + "isInternal": false + }, + { + "x": 119.754, + "y": 277.786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1964 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1966 + }, + "max": { + "#": 1967 + } + }, + { + "x": 100, + "y": 258.032 + }, + { + "x": 139.508, + "y": 297.54 + }, + { + "x": 119.754, + "y": 277.786 + }, + [ + { + "#": 1970 + }, + { + "#": 1971 + }, + { + "#": 1972 + }, + { + "#": 1973 + }, + { + "#": 1974 + }, + { + "#": 1975 + }, + { + "#": 1976 + }, + { + "#": 1977 + }, + { + "#": 1978 + }, + { + "#": 1979 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 46, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1981 + }, + "angle": 0, + "vertices": { + "#": 1982 + }, + "position": { + "#": 2003 + }, + "force": { + "#": 2004 + }, + "torque": 0, + "positionImpulse": { + "#": 2005 + }, + "constraintImpulse": { + "#": 2006 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2007 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2008 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2009 + }, + "circleRadius": 20, + "bounds": { + "#": 2011 + }, + "positionPrev": { + "#": 2014 + }, + "anglePrev": 0, + "axes": { + "#": 2015 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1980 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1980 + } + ], + [ + { + "#": 1983 + }, + { + "#": 1984 + }, + { + "#": 1985 + }, + { + "#": 1986 + }, + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + }, + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + }, + { + "#": 1996 + }, + { + "#": 1997 + }, + { + "#": 1998 + }, + { + "#": 1999 + }, + { + "#": 2000 + }, + { + "#": 2001 + }, + { + "#": 2002 + } + ], + { + "x": 199.016, + "y": 280.915, + "index": 0, + "body": { + "#": 1980 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 286.866, + "index": 1, + "body": { + "#": 1980 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 291.928, + "index": 2, + "body": { + "#": 1980 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 295.606, + "index": 3, + "body": { + "#": 1980 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 297.54, + "index": 4, + "body": { + "#": 1980 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 297.54, + "index": 5, + "body": { + "#": 1980 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 295.606, + "index": 6, + "body": { + "#": 1980 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 291.928, + "index": 7, + "body": { + "#": 1980 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 286.866, + "index": 8, + "body": { + "#": 1980 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 280.915, + "index": 9, + "body": { + "#": 1980 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 274.657, + "index": 10, + "body": { + "#": 1980 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 268.706, + "index": 11, + "body": { + "#": 1980 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 263.644, + "index": 12, + "body": { + "#": 1980 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 259.966, + "index": 13, + "body": { + "#": 1980 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 258.032, + "index": 14, + "body": { + "#": 1980 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 258.032, + "index": 15, + "body": { + "#": 1980 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 259.966, + "index": 16, + "body": { + "#": 1980 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 263.644, + "index": 17, + "body": { + "#": 1980 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 268.706, + "index": 18, + "body": { + "#": 1980 + }, + "isInternal": false + }, + { + "x": 199.016, + "y": 274.657, + "index": 19, + "body": { + "#": 1980 + }, + "isInternal": false + }, + { + "x": 179.262, + "y": 277.786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2010 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2012 + }, + "max": { + "#": 2013 + } + }, + { + "x": 159.508, + "y": 258.032 + }, + { + "x": 199.016, + "y": 297.54 + }, + { + "x": 179.262, + "y": 277.786 + }, + [ + { + "#": 2016 + }, + { + "#": 2017 + }, + { + "#": 2018 + }, + { + "#": 2019 + }, + { + "#": 2020 + }, + { + "#": 2021 + }, + { + "#": 2022 + }, + { + "#": 2023 + }, + { + "#": 2024 + }, + { + "#": 2025 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 47, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2027 + }, + "angle": 0, + "vertices": { + "#": 2028 + }, + "position": { + "#": 2049 + }, + "force": { + "#": 2050 + }, + "torque": 0, + "positionImpulse": { + "#": 2051 + }, + "constraintImpulse": { + "#": 2052 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2053 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2054 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2055 + }, + "circleRadius": 20, + "bounds": { + "#": 2057 + }, + "positionPrev": { + "#": 2060 + }, + "anglePrev": 0, + "axes": { + "#": 2061 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2026 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2026 + } + ], + [ + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + }, + { + "#": 2032 + }, + { + "#": 2033 + }, + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + }, + { + "#": 2038 + }, + { + "#": 2039 + }, + { + "#": 2040 + }, + { + "#": 2041 + }, + { + "#": 2042 + }, + { + "#": 2043 + }, + { + "#": 2044 + }, + { + "#": 2045 + }, + { + "#": 2046 + }, + { + "#": 2047 + }, + { + "#": 2048 + } + ], + { + "x": 258.524, + "y": 280.915, + "index": 0, + "body": { + "#": 2026 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 286.866, + "index": 1, + "body": { + "#": 2026 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 291.928, + "index": 2, + "body": { + "#": 2026 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 295.606, + "index": 3, + "body": { + "#": 2026 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 297.54, + "index": 4, + "body": { + "#": 2026 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 297.54, + "index": 5, + "body": { + "#": 2026 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 295.606, + "index": 6, + "body": { + "#": 2026 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 291.928, + "index": 7, + "body": { + "#": 2026 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 286.866, + "index": 8, + "body": { + "#": 2026 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 280.915, + "index": 9, + "body": { + "#": 2026 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 274.657, + "index": 10, + "body": { + "#": 2026 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 268.706, + "index": 11, + "body": { + "#": 2026 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 263.644, + "index": 12, + "body": { + "#": 2026 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 259.966, + "index": 13, + "body": { + "#": 2026 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 258.032, + "index": 14, + "body": { + "#": 2026 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 258.032, + "index": 15, + "body": { + "#": 2026 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 259.966, + "index": 16, + "body": { + "#": 2026 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 263.644, + "index": 17, + "body": { + "#": 2026 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 268.706, + "index": 18, + "body": { + "#": 2026 + }, + "isInternal": false + }, + { + "x": 258.524, + "y": 274.657, + "index": 19, + "body": { + "#": 2026 + }, + "isInternal": false + }, + { + "x": 238.77, + "y": 277.786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2056 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2058 + }, + "max": { + "#": 2059 + } + }, + { + "x": 219.016, + "y": 258.032 + }, + { + "x": 258.524, + "y": 297.54 + }, + { + "x": 238.77, + "y": 277.786 + }, + [ + { + "#": 2062 + }, + { + "#": 2063 + }, + { + "#": 2064 + }, + { + "#": 2065 + }, + { + "#": 2066 + }, + { + "#": 2067 + }, + { + "#": 2068 + }, + { + "#": 2069 + }, + { + "#": 2070 + }, + { + "#": 2071 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 48, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2073 + }, + "angle": 0, + "vertices": { + "#": 2074 + }, + "position": { + "#": 2095 + }, + "force": { + "#": 2096 + }, + "torque": 0, + "positionImpulse": { + "#": 2097 + }, + "constraintImpulse": { + "#": 2098 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2099 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2100 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2101 + }, + "circleRadius": 20, + "bounds": { + "#": 2103 + }, + "positionPrev": { + "#": 2106 + }, + "anglePrev": 0, + "axes": { + "#": 2107 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2072 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2072 + } + ], + [ + { + "#": 2075 + }, + { + "#": 2076 + }, + { + "#": 2077 + }, + { + "#": 2078 + }, + { + "#": 2079 + }, + { + "#": 2080 + }, + { + "#": 2081 + }, + { + "#": 2082 + }, + { + "#": 2083 + }, + { + "#": 2084 + }, + { + "#": 2085 + }, + { + "#": 2086 + }, + { + "#": 2087 + }, + { + "#": 2088 + }, + { + "#": 2089 + }, + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + }, + { + "#": 2094 + } + ], + { + "x": 318.032, + "y": 280.915, + "index": 0, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 286.866, + "index": 1, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 291.928, + "index": 2, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 295.606, + "index": 3, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 297.54, + "index": 4, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 297.54, + "index": 5, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 295.606, + "index": 6, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 291.928, + "index": 7, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 286.866, + "index": 8, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 280.915, + "index": 9, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 274.657, + "index": 10, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 268.706, + "index": 11, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 263.644, + "index": 12, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 259.966, + "index": 13, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 258.032, + "index": 14, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 258.032, + "index": 15, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 259.966, + "index": 16, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 263.644, + "index": 17, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 268.706, + "index": 18, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 318.032, + "y": 274.657, + "index": 19, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 298.278, + "y": 277.786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2102 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2104 + }, + "max": { + "#": 2105 + } + }, + { + "x": 278.524, + "y": 258.032 + }, + { + "x": 318.032, + "y": 297.54 + }, + { + "x": 298.278, + "y": 277.786 + }, + [ + { + "#": 2108 + }, + { + "#": 2109 + }, + { + "#": 2110 + }, + { + "#": 2111 + }, + { + "#": 2112 + }, + { + "#": 2113 + }, + { + "#": 2114 + }, + { + "#": 2115 + }, + { + "#": 2116 + }, + { + "#": 2117 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 49, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2119 + }, + "angle": 0, + "vertices": { + "#": 2120 + }, + "position": { + "#": 2141 + }, + "force": { + "#": 2142 + }, + "torque": 0, + "positionImpulse": { + "#": 2143 + }, + "constraintImpulse": { + "#": 2144 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2145 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2146 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2147 + }, + "circleRadius": 20, + "bounds": { + "#": 2149 + }, + "positionPrev": { + "#": 2152 + }, + "anglePrev": 0, + "axes": { + "#": 2153 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2118 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2118 + } + ], + [ + { + "#": 2121 + }, + { + "#": 2122 + }, + { + "#": 2123 + }, + { + "#": 2124 + }, + { + "#": 2125 + }, + { + "#": 2126 + }, + { + "#": 2127 + }, + { + "#": 2128 + }, + { + "#": 2129 + }, + { + "#": 2130 + }, + { + "#": 2131 + }, + { + "#": 2132 + }, + { + "#": 2133 + }, + { + "#": 2134 + }, + { + "#": 2135 + }, + { + "#": 2136 + }, + { + "#": 2137 + }, + { + "#": 2138 + }, + { + "#": 2139 + }, + { + "#": 2140 + } + ], + { + "x": 377.54, + "y": 280.915, + "index": 0, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 286.866, + "index": 1, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 291.928, + "index": 2, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 295.606, + "index": 3, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 297.54, + "index": 4, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 297.54, + "index": 5, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 295.606, + "index": 6, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 291.928, + "index": 7, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 286.866, + "index": 8, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 280.915, + "index": 9, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 274.657, + "index": 10, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 268.706, + "index": 11, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 263.644, + "index": 12, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 259.966, + "index": 13, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 258.032, + "index": 14, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 258.032, + "index": 15, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 259.966, + "index": 16, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 263.644, + "index": 17, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 268.706, + "index": 18, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 377.54, + "y": 274.657, + "index": 19, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 357.786, + "y": 277.786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2148 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2150 + }, + "max": { + "#": 2151 + } + }, + { + "x": 338.032, + "y": 258.032 + }, + { + "x": 377.54, + "y": 297.54 + }, + { + "x": 357.786, + "y": 277.786 + }, + [ + { + "#": 2154 + }, + { + "#": 2155 + }, + { + "#": 2156 + }, + { + "#": 2157 + }, + { + "#": 2158 + }, + { + "#": 2159 + }, + { + "#": 2160 + }, + { + "#": 2161 + }, + { + "#": 2162 + }, + { + "#": 2163 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 50, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2165 + }, + "angle": 0, + "vertices": { + "#": 2166 + }, + "position": { + "#": 2187 + }, + "force": { + "#": 2188 + }, + "torque": 0, + "positionImpulse": { + "#": 2189 + }, + "constraintImpulse": { + "#": 2190 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2191 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2192 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2193 + }, + "circleRadius": 20, + "bounds": { + "#": 2195 + }, + "positionPrev": { + "#": 2198 + }, + "anglePrev": 0, + "axes": { + "#": 2199 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2164 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2164 + } + ], + [ + { + "#": 2167 + }, + { + "#": 2168 + }, + { + "#": 2169 + }, + { + "#": 2170 + }, + { + "#": 2171 + }, + { + "#": 2172 + }, + { + "#": 2173 + }, + { + "#": 2174 + }, + { + "#": 2175 + }, + { + "#": 2176 + }, + { + "#": 2177 + }, + { + "#": 2178 + }, + { + "#": 2179 + }, + { + "#": 2180 + }, + { + "#": 2181 + }, + { + "#": 2182 + }, + { + "#": 2183 + }, + { + "#": 2184 + }, + { + "#": 2185 + }, + { + "#": 2186 + } + ], + { + "x": 437.048, + "y": 280.915, + "index": 0, + "body": { + "#": 2164 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 286.866, + "index": 1, + "body": { + "#": 2164 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 291.928, + "index": 2, + "body": { + "#": 2164 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 295.606, + "index": 3, + "body": { + "#": 2164 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 297.54, + "index": 4, + "body": { + "#": 2164 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 297.54, + "index": 5, + "body": { + "#": 2164 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 295.606, + "index": 6, + "body": { + "#": 2164 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 291.928, + "index": 7, + "body": { + "#": 2164 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 286.866, + "index": 8, + "body": { + "#": 2164 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 280.915, + "index": 9, + "body": { + "#": 2164 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 274.657, + "index": 10, + "body": { + "#": 2164 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 268.706, + "index": 11, + "body": { + "#": 2164 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 263.644, + "index": 12, + "body": { + "#": 2164 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 259.966, + "index": 13, + "body": { + "#": 2164 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 258.032, + "index": 14, + "body": { + "#": 2164 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 258.032, + "index": 15, + "body": { + "#": 2164 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 259.966, + "index": 16, + "body": { + "#": 2164 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 263.644, + "index": 17, + "body": { + "#": 2164 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 268.706, + "index": 18, + "body": { + "#": 2164 + }, + "isInternal": false + }, + { + "x": 437.048, + "y": 274.657, + "index": 19, + "body": { + "#": 2164 + }, + "isInternal": false + }, + { + "x": 417.294, + "y": 277.786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2194 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2196 + }, + "max": { + "#": 2197 + } + }, + { + "x": 397.54, + "y": 258.032 + }, + { + "x": 437.048, + "y": 297.54 + }, + { + "x": 417.294, + "y": 277.786 + }, + [ + { + "#": 2200 + }, + { + "#": 2201 + }, + { + "#": 2202 + }, + { + "#": 2203 + }, + { + "#": 2204 + }, + { + "#": 2205 + }, + { + "#": 2206 + }, + { + "#": 2207 + }, + { + "#": 2208 + }, + { + "#": 2209 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 51, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2211 + }, + "angle": 0, + "vertices": { + "#": 2212 + }, + "position": { + "#": 2233 + }, + "force": { + "#": 2234 + }, + "torque": 0, + "positionImpulse": { + "#": 2235 + }, + "constraintImpulse": { + "#": 2236 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2237 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2238 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2239 + }, + "circleRadius": 20, + "bounds": { + "#": 2241 + }, + "positionPrev": { + "#": 2244 + }, + "anglePrev": 0, + "axes": { + "#": 2245 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2210 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2210 + } + ], + [ + { + "#": 2213 + }, + { + "#": 2214 + }, + { + "#": 2215 + }, + { + "#": 2216 + }, + { + "#": 2217 + }, + { + "#": 2218 + }, + { + "#": 2219 + }, + { + "#": 2220 + }, + { + "#": 2221 + }, + { + "#": 2222 + }, + { + "#": 2223 + }, + { + "#": 2224 + }, + { + "#": 2225 + }, + { + "#": 2226 + }, + { + "#": 2227 + }, + { + "#": 2228 + }, + { + "#": 2229 + }, + { + "#": 2230 + }, + { + "#": 2231 + }, + { + "#": 2232 + } + ], + { + "x": 496.556, + "y": 280.915, + "index": 0, + "body": { + "#": 2210 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 286.866, + "index": 1, + "body": { + "#": 2210 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 291.928, + "index": 2, + "body": { + "#": 2210 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 295.606, + "index": 3, + "body": { + "#": 2210 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 297.54, + "index": 4, + "body": { + "#": 2210 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 297.54, + "index": 5, + "body": { + "#": 2210 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 295.606, + "index": 6, + "body": { + "#": 2210 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 291.928, + "index": 7, + "body": { + "#": 2210 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 286.866, + "index": 8, + "body": { + "#": 2210 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 280.915, + "index": 9, + "body": { + "#": 2210 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 274.657, + "index": 10, + "body": { + "#": 2210 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 268.706, + "index": 11, + "body": { + "#": 2210 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 263.644, + "index": 12, + "body": { + "#": 2210 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 259.966, + "index": 13, + "body": { + "#": 2210 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 258.032, + "index": 14, + "body": { + "#": 2210 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 258.032, + "index": 15, + "body": { + "#": 2210 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 259.966, + "index": 16, + "body": { + "#": 2210 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 263.644, + "index": 17, + "body": { + "#": 2210 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 268.706, + "index": 18, + "body": { + "#": 2210 + }, + "isInternal": false + }, + { + "x": 496.556, + "y": 274.657, + "index": 19, + "body": { + "#": 2210 + }, + "isInternal": false + }, + { + "x": 476.802, + "y": 277.786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2240 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2242 + }, + "max": { + "#": 2243 + } + }, + { + "x": 457.048, + "y": 258.032 + }, + { + "x": 496.556, + "y": 297.54 + }, + { + "x": 476.802, + "y": 277.786 + }, + [ + { + "#": 2246 + }, + { + "#": 2247 + }, + { + "#": 2248 + }, + { + "#": 2249 + }, + { + "#": 2250 + }, + { + "#": 2251 + }, + { + "#": 2252 + }, + { + "#": 2253 + }, + { + "#": 2254 + }, + { + "#": 2255 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 52, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2257 + }, + "angle": 0, + "vertices": { + "#": 2258 + }, + "position": { + "#": 2279 + }, + "force": { + "#": 2280 + }, + "torque": 0, + "positionImpulse": { + "#": 2281 + }, + "constraintImpulse": { + "#": 2282 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2283 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2284 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2285 + }, + "circleRadius": 20, + "bounds": { + "#": 2287 + }, + "positionPrev": { + "#": 2290 + }, + "anglePrev": 0, + "axes": { + "#": 2291 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2256 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2256 + } + ], + [ + { + "#": 2259 + }, + { + "#": 2260 + }, + { + "#": 2261 + }, + { + "#": 2262 + }, + { + "#": 2263 + }, + { + "#": 2264 + }, + { + "#": 2265 + }, + { + "#": 2266 + }, + { + "#": 2267 + }, + { + "#": 2268 + }, + { + "#": 2269 + }, + { + "#": 2270 + }, + { + "#": 2271 + }, + { + "#": 2272 + }, + { + "#": 2273 + }, + { + "#": 2274 + }, + { + "#": 2275 + }, + { + "#": 2276 + }, + { + "#": 2277 + }, + { + "#": 2278 + } + ], + { + "x": 556.064, + "y": 280.915, + "index": 0, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 286.866, + "index": 1, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 291.928, + "index": 2, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 295.606, + "index": 3, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 297.54, + "index": 4, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 297.54, + "index": 5, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 295.606, + "index": 6, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 291.928, + "index": 7, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 286.866, + "index": 8, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 280.915, + "index": 9, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 274.657, + "index": 10, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 268.706, + "index": 11, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 263.644, + "index": 12, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 259.966, + "index": 13, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 258.032, + "index": 14, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 258.032, + "index": 15, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 259.966, + "index": 16, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 263.644, + "index": 17, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 268.706, + "index": 18, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 556.064, + "y": 274.657, + "index": 19, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 536.31, + "y": 277.786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2286 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2288 + }, + "max": { + "#": 2289 + } + }, + { + "x": 516.556, + "y": 258.032 + }, + { + "x": 556.064, + "y": 297.54 + }, + { + "x": 536.31, + "y": 277.786 + }, + [ + { + "#": 2292 + }, + { + "#": 2293 + }, + { + "#": 2294 + }, + { + "#": 2295 + }, + { + "#": 2296 + }, + { + "#": 2297 + }, + { + "#": 2298 + }, + { + "#": 2299 + }, + { + "#": 2300 + }, + { + "#": 2301 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 53, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2303 + }, + "angle": 0, + "vertices": { + "#": 2304 + }, + "position": { + "#": 2325 + }, + "force": { + "#": 2326 + }, + "torque": 0, + "positionImpulse": { + "#": 2327 + }, + "constraintImpulse": { + "#": 2328 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2329 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2330 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2331 + }, + "circleRadius": 20, + "bounds": { + "#": 2333 + }, + "positionPrev": { + "#": 2336 + }, + "anglePrev": 0, + "axes": { + "#": 2337 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2302 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2302 + } + ], + [ + { + "#": 2305 + }, + { + "#": 2306 + }, + { + "#": 2307 + }, + { + "#": 2308 + }, + { + "#": 2309 + }, + { + "#": 2310 + }, + { + "#": 2311 + }, + { + "#": 2312 + }, + { + "#": 2313 + }, + { + "#": 2314 + }, + { + "#": 2315 + }, + { + "#": 2316 + }, + { + "#": 2317 + }, + { + "#": 2318 + }, + { + "#": 2319 + }, + { + "#": 2320 + }, + { + "#": 2321 + }, + { + "#": 2322 + }, + { + "#": 2323 + }, + { + "#": 2324 + } + ], + { + "x": 615.572, + "y": 280.915, + "index": 0, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 286.866, + "index": 1, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 291.928, + "index": 2, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 295.606, + "index": 3, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 297.54, + "index": 4, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 297.54, + "index": 5, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 295.606, + "index": 6, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 291.928, + "index": 7, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 286.866, + "index": 8, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 280.915, + "index": 9, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 274.657, + "index": 10, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 268.706, + "index": 11, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 263.644, + "index": 12, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 259.966, + "index": 13, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 258.032, + "index": 14, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 258.032, + "index": 15, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 259.966, + "index": 16, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 263.644, + "index": 17, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 268.706, + "index": 18, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 615.572, + "y": 274.657, + "index": 19, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 595.818, + "y": 277.786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2332 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2334 + }, + "max": { + "#": 2335 + } + }, + { + "x": 576.064, + "y": 258.032 + }, + { + "x": 615.572, + "y": 297.54 + }, + { + "x": 595.818, + "y": 277.786 + }, + [ + { + "#": 2338 + }, + { + "#": 2339 + }, + { + "#": 2340 + }, + { + "#": 2341 + }, + { + "#": 2342 + }, + { + "#": 2343 + }, + { + "#": 2344 + }, + { + "#": 2345 + }, + { + "#": 2346 + }, + { + "#": 2347 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 54, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2349 + }, + "angle": 0, + "vertices": { + "#": 2350 + }, + "position": { + "#": 2371 + }, + "force": { + "#": 2372 + }, + "torque": 0, + "positionImpulse": { + "#": 2373 + }, + "constraintImpulse": { + "#": 2374 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2375 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2376 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2377 + }, + "circleRadius": 20, + "bounds": { + "#": 2379 + }, + "positionPrev": { + "#": 2382 + }, + "anglePrev": 0, + "axes": { + "#": 2383 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2348 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2348 + } + ], + [ + { + "#": 2351 + }, + { + "#": 2352 + }, + { + "#": 2353 + }, + { + "#": 2354 + }, + { + "#": 2355 + }, + { + "#": 2356 + }, + { + "#": 2357 + }, + { + "#": 2358 + }, + { + "#": 2359 + }, + { + "#": 2360 + }, + { + "#": 2361 + }, + { + "#": 2362 + }, + { + "#": 2363 + }, + { + "#": 2364 + }, + { + "#": 2365 + }, + { + "#": 2366 + }, + { + "#": 2367 + }, + { + "#": 2368 + }, + { + "#": 2369 + }, + { + "#": 2370 + } + ], + { + "x": 675.08, + "y": 280.915, + "index": 0, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 286.866, + "index": 1, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 291.928, + "index": 2, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 295.606, + "index": 3, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 297.54, + "index": 4, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 297.54, + "index": 5, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 295.606, + "index": 6, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 291.928, + "index": 7, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 286.866, + "index": 8, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 280.915, + "index": 9, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 274.657, + "index": 10, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 268.706, + "index": 11, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 263.644, + "index": 12, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 259.966, + "index": 13, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 258.032, + "index": 14, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 258.032, + "index": 15, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 259.966, + "index": 16, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 263.644, + "index": 17, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 268.706, + "index": 18, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 675.08, + "y": 274.657, + "index": 19, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 655.326, + "y": 277.786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2378 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2380 + }, + "max": { + "#": 2381 + } + }, + { + "x": 635.572, + "y": 258.032 + }, + { + "x": 675.08, + "y": 297.54 + }, + { + "x": 655.326, + "y": 277.786 + }, + [ + { + "#": 2384 + }, + { + "#": 2385 + }, + { + "#": 2386 + }, + { + "#": 2387 + }, + { + "#": 2388 + }, + { + "#": 2389 + }, + { + "#": 2390 + }, + { + "#": 2391 + }, + { + "#": 2392 + }, + { + "#": 2393 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 55, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2395 + }, + "angle": 0, + "vertices": { + "#": 2396 + }, + "position": { + "#": 2417 + }, + "force": { + "#": 2418 + }, + "torque": 0, + "positionImpulse": { + "#": 2419 + }, + "constraintImpulse": { + "#": 2420 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2421 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2422 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2423 + }, + "circleRadius": 20, + "bounds": { + "#": 2425 + }, + "positionPrev": { + "#": 2428 + }, + "anglePrev": 0, + "axes": { + "#": 2429 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2394 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2394 + } + ], + [ + { + "#": 2397 + }, + { + "#": 2398 + }, + { + "#": 2399 + }, + { + "#": 2400 + }, + { + "#": 2401 + }, + { + "#": 2402 + }, + { + "#": 2403 + }, + { + "#": 2404 + }, + { + "#": 2405 + }, + { + "#": 2406 + }, + { + "#": 2407 + }, + { + "#": 2408 + }, + { + "#": 2409 + }, + { + "#": 2410 + }, + { + "#": 2411 + }, + { + "#": 2412 + }, + { + "#": 2413 + }, + { + "#": 2414 + }, + { + "#": 2415 + }, + { + "#": 2416 + } + ], + { + "x": 139.508, + "y": 320.423, + "index": 0, + "body": { + "#": 2394 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 326.374, + "index": 1, + "body": { + "#": 2394 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 331.436, + "index": 2, + "body": { + "#": 2394 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 335.114, + "index": 3, + "body": { + "#": 2394 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 337.048, + "index": 4, + "body": { + "#": 2394 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 337.048, + "index": 5, + "body": { + "#": 2394 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 335.114, + "index": 6, + "body": { + "#": 2394 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 331.436, + "index": 7, + "body": { + "#": 2394 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 326.374, + "index": 8, + "body": { + "#": 2394 + }, + "isInternal": false + }, + { + "x": 100, + "y": 320.423, + "index": 9, + "body": { + "#": 2394 + }, + "isInternal": false + }, + { + "x": 100, + "y": 314.165, + "index": 10, + "body": { + "#": 2394 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 308.214, + "index": 11, + "body": { + "#": 2394 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 303.152, + "index": 12, + "body": { + "#": 2394 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 299.474, + "index": 13, + "body": { + "#": 2394 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 297.54, + "index": 14, + "body": { + "#": 2394 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 297.54, + "index": 15, + "body": { + "#": 2394 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 299.474, + "index": 16, + "body": { + "#": 2394 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 303.152, + "index": 17, + "body": { + "#": 2394 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 308.214, + "index": 18, + "body": { + "#": 2394 + }, + "isInternal": false + }, + { + "x": 139.508, + "y": 314.165, + "index": 19, + "body": { + "#": 2394 + }, + "isInternal": false + }, + { + "x": 119.754, + "y": 317.294 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2424 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2426 + }, + "max": { + "#": 2427 + } + }, + { + "x": 100, + "y": 297.54 + }, + { + "x": 139.508, + "y": 337.048 + }, + { + "x": 119.754, + "y": 317.294 + }, + [ + { + "#": 2430 + }, + { + "#": 2431 + }, + { + "#": 2432 + }, + { + "#": 2433 + }, + { + "#": 2434 + }, + { + "#": 2435 + }, + { + "#": 2436 + }, + { + "#": 2437 + }, + { + "#": 2438 + }, + { + "#": 2439 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 56, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2441 + }, + "angle": 0, + "vertices": { + "#": 2442 + }, + "position": { + "#": 2463 + }, + "force": { + "#": 2464 + }, + "torque": 0, + "positionImpulse": { + "#": 2465 + }, + "constraintImpulse": { + "#": 2466 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2467 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2468 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2469 + }, + "circleRadius": 20, + "bounds": { + "#": 2471 + }, + "positionPrev": { + "#": 2474 + }, + "anglePrev": 0, + "axes": { + "#": 2475 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2440 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2440 + } + ], + [ + { + "#": 2443 + }, + { + "#": 2444 + }, + { + "#": 2445 + }, + { + "#": 2446 + }, + { + "#": 2447 + }, + { + "#": 2448 + }, + { + "#": 2449 + }, + { + "#": 2450 + }, + { + "#": 2451 + }, + { + "#": 2452 + }, + { + "#": 2453 + }, + { + "#": 2454 + }, + { + "#": 2455 + }, + { + "#": 2456 + }, + { + "#": 2457 + }, + { + "#": 2458 + }, + { + "#": 2459 + }, + { + "#": 2460 + }, + { + "#": 2461 + }, + { + "#": 2462 + } + ], + { + "x": 199.016, + "y": 320.423, + "index": 0, + "body": { + "#": 2440 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 326.374, + "index": 1, + "body": { + "#": 2440 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 331.436, + "index": 2, + "body": { + "#": 2440 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 335.114, + "index": 3, + "body": { + "#": 2440 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 337.048, + "index": 4, + "body": { + "#": 2440 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 337.048, + "index": 5, + "body": { + "#": 2440 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 335.114, + "index": 6, + "body": { + "#": 2440 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 331.436, + "index": 7, + "body": { + "#": 2440 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 326.374, + "index": 8, + "body": { + "#": 2440 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 320.423, + "index": 9, + "body": { + "#": 2440 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 314.165, + "index": 10, + "body": { + "#": 2440 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 308.214, + "index": 11, + "body": { + "#": 2440 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 303.152, + "index": 12, + "body": { + "#": 2440 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 299.474, + "index": 13, + "body": { + "#": 2440 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 297.54, + "index": 14, + "body": { + "#": 2440 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 297.54, + "index": 15, + "body": { + "#": 2440 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 299.474, + "index": 16, + "body": { + "#": 2440 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 303.152, + "index": 17, + "body": { + "#": 2440 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 308.214, + "index": 18, + "body": { + "#": 2440 + }, + "isInternal": false + }, + { + "x": 199.016, + "y": 314.165, + "index": 19, + "body": { + "#": 2440 + }, + "isInternal": false + }, + { + "x": 179.262, + "y": 317.294 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2470 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2472 + }, + "max": { + "#": 2473 + } + }, + { + "x": 159.508, + "y": 297.54 + }, + { + "x": 199.016, + "y": 337.048 + }, + { + "x": 179.262, + "y": 317.294 + }, + [ + { + "#": 2476 + }, + { + "#": 2477 + }, + { + "#": 2478 + }, + { + "#": 2479 + }, + { + "#": 2480 + }, + { + "#": 2481 + }, + { + "#": 2482 + }, + { + "#": 2483 + }, + { + "#": 2484 + }, + { + "#": 2485 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 57, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2487 + }, + "angle": 0, + "vertices": { + "#": 2488 + }, + "position": { + "#": 2509 + }, + "force": { + "#": 2510 + }, + "torque": 0, + "positionImpulse": { + "#": 2511 + }, + "constraintImpulse": { + "#": 2512 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2513 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2514 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2515 + }, + "circleRadius": 20, + "bounds": { + "#": 2517 + }, + "positionPrev": { + "#": 2520 + }, + "anglePrev": 0, + "axes": { + "#": 2521 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2486 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2486 + } + ], + [ + { + "#": 2489 + }, + { + "#": 2490 + }, + { + "#": 2491 + }, + { + "#": 2492 + }, + { + "#": 2493 + }, + { + "#": 2494 + }, + { + "#": 2495 + }, + { + "#": 2496 + }, + { + "#": 2497 + }, + { + "#": 2498 + }, + { + "#": 2499 + }, + { + "#": 2500 + }, + { + "#": 2501 + }, + { + "#": 2502 + }, + { + "#": 2503 + }, + { + "#": 2504 + }, + { + "#": 2505 + }, + { + "#": 2506 + }, + { + "#": 2507 + }, + { + "#": 2508 + } + ], + { + "x": 258.524, + "y": 320.423, + "index": 0, + "body": { + "#": 2486 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 326.374, + "index": 1, + "body": { + "#": 2486 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 331.436, + "index": 2, + "body": { + "#": 2486 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 335.114, + "index": 3, + "body": { + "#": 2486 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 337.048, + "index": 4, + "body": { + "#": 2486 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 337.048, + "index": 5, + "body": { + "#": 2486 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 335.114, + "index": 6, + "body": { + "#": 2486 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 331.436, + "index": 7, + "body": { + "#": 2486 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 326.374, + "index": 8, + "body": { + "#": 2486 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 320.423, + "index": 9, + "body": { + "#": 2486 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 314.165, + "index": 10, + "body": { + "#": 2486 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 308.214, + "index": 11, + "body": { + "#": 2486 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 303.152, + "index": 12, + "body": { + "#": 2486 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 299.474, + "index": 13, + "body": { + "#": 2486 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 297.54, + "index": 14, + "body": { + "#": 2486 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 297.54, + "index": 15, + "body": { + "#": 2486 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 299.474, + "index": 16, + "body": { + "#": 2486 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 303.152, + "index": 17, + "body": { + "#": 2486 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 308.214, + "index": 18, + "body": { + "#": 2486 + }, + "isInternal": false + }, + { + "x": 258.524, + "y": 314.165, + "index": 19, + "body": { + "#": 2486 + }, + "isInternal": false + }, + { + "x": 238.77, + "y": 317.294 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2516 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2518 + }, + "max": { + "#": 2519 + } + }, + { + "x": 219.016, + "y": 297.54 + }, + { + "x": 258.524, + "y": 337.048 + }, + { + "x": 238.77, + "y": 317.294 + }, + [ + { + "#": 2522 + }, + { + "#": 2523 + }, + { + "#": 2524 + }, + { + "#": 2525 + }, + { + "#": 2526 + }, + { + "#": 2527 + }, + { + "#": 2528 + }, + { + "#": 2529 + }, + { + "#": 2530 + }, + { + "#": 2531 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 58, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2533 + }, + "angle": 0, + "vertices": { + "#": 2534 + }, + "position": { + "#": 2555 + }, + "force": { + "#": 2556 + }, + "torque": 0, + "positionImpulse": { + "#": 2557 + }, + "constraintImpulse": { + "#": 2558 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2559 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2560 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2561 + }, + "circleRadius": 20, + "bounds": { + "#": 2563 + }, + "positionPrev": { + "#": 2566 + }, + "anglePrev": 0, + "axes": { + "#": 2567 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2532 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2532 + } + ], + [ + { + "#": 2535 + }, + { + "#": 2536 + }, + { + "#": 2537 + }, + { + "#": 2538 + }, + { + "#": 2539 + }, + { + "#": 2540 + }, + { + "#": 2541 + }, + { + "#": 2542 + }, + { + "#": 2543 + }, + { + "#": 2544 + }, + { + "#": 2545 + }, + { + "#": 2546 + }, + { + "#": 2547 + }, + { + "#": 2548 + }, + { + "#": 2549 + }, + { + "#": 2550 + }, + { + "#": 2551 + }, + { + "#": 2552 + }, + { + "#": 2553 + }, + { + "#": 2554 + } + ], + { + "x": 318.032, + "y": 320.423, + "index": 0, + "body": { + "#": 2532 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 326.374, + "index": 1, + "body": { + "#": 2532 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 331.436, + "index": 2, + "body": { + "#": 2532 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 335.114, + "index": 3, + "body": { + "#": 2532 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 337.048, + "index": 4, + "body": { + "#": 2532 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 337.048, + "index": 5, + "body": { + "#": 2532 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 335.114, + "index": 6, + "body": { + "#": 2532 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 331.436, + "index": 7, + "body": { + "#": 2532 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 326.374, + "index": 8, + "body": { + "#": 2532 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 320.423, + "index": 9, + "body": { + "#": 2532 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 314.165, + "index": 10, + "body": { + "#": 2532 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 308.214, + "index": 11, + "body": { + "#": 2532 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 303.152, + "index": 12, + "body": { + "#": 2532 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 299.474, + "index": 13, + "body": { + "#": 2532 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 297.54, + "index": 14, + "body": { + "#": 2532 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 297.54, + "index": 15, + "body": { + "#": 2532 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 299.474, + "index": 16, + "body": { + "#": 2532 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 303.152, + "index": 17, + "body": { + "#": 2532 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 308.214, + "index": 18, + "body": { + "#": 2532 + }, + "isInternal": false + }, + { + "x": 318.032, + "y": 314.165, + "index": 19, + "body": { + "#": 2532 + }, + "isInternal": false + }, + { + "x": 298.278, + "y": 317.294 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2562 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2564 + }, + "max": { + "#": 2565 + } + }, + { + "x": 278.524, + "y": 297.54 + }, + { + "x": 318.032, + "y": 337.048 + }, + { + "x": 298.278, + "y": 317.294 + }, + [ + { + "#": 2568 + }, + { + "#": 2569 + }, + { + "#": 2570 + }, + { + "#": 2571 + }, + { + "#": 2572 + }, + { + "#": 2573 + }, + { + "#": 2574 + }, + { + "#": 2575 + }, + { + "#": 2576 + }, + { + "#": 2577 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 59, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2579 + }, + "angle": 0, + "vertices": { + "#": 2580 + }, + "position": { + "#": 2601 + }, + "force": { + "#": 2602 + }, + "torque": 0, + "positionImpulse": { + "#": 2603 + }, + "constraintImpulse": { + "#": 2604 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2605 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2606 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2607 + }, + "circleRadius": 20, + "bounds": { + "#": 2609 + }, + "positionPrev": { + "#": 2612 + }, + "anglePrev": 0, + "axes": { + "#": 2613 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2578 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2578 + } + ], + [ + { + "#": 2581 + }, + { + "#": 2582 + }, + { + "#": 2583 + }, + { + "#": 2584 + }, + { + "#": 2585 + }, + { + "#": 2586 + }, + { + "#": 2587 + }, + { + "#": 2588 + }, + { + "#": 2589 + }, + { + "#": 2590 + }, + { + "#": 2591 + }, + { + "#": 2592 + }, + { + "#": 2593 + }, + { + "#": 2594 + }, + { + "#": 2595 + }, + { + "#": 2596 + }, + { + "#": 2597 + }, + { + "#": 2598 + }, + { + "#": 2599 + }, + { + "#": 2600 + } + ], + { + "x": 377.54, + "y": 320.423, + "index": 0, + "body": { + "#": 2578 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 326.374, + "index": 1, + "body": { + "#": 2578 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 331.436, + "index": 2, + "body": { + "#": 2578 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 335.114, + "index": 3, + "body": { + "#": 2578 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 337.048, + "index": 4, + "body": { + "#": 2578 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 337.048, + "index": 5, + "body": { + "#": 2578 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 335.114, + "index": 6, + "body": { + "#": 2578 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 331.436, + "index": 7, + "body": { + "#": 2578 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 326.374, + "index": 8, + "body": { + "#": 2578 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 320.423, + "index": 9, + "body": { + "#": 2578 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 314.165, + "index": 10, + "body": { + "#": 2578 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 308.214, + "index": 11, + "body": { + "#": 2578 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 303.152, + "index": 12, + "body": { + "#": 2578 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 299.474, + "index": 13, + "body": { + "#": 2578 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 297.54, + "index": 14, + "body": { + "#": 2578 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 297.54, + "index": 15, + "body": { + "#": 2578 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 299.474, + "index": 16, + "body": { + "#": 2578 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 303.152, + "index": 17, + "body": { + "#": 2578 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 308.214, + "index": 18, + "body": { + "#": 2578 + }, + "isInternal": false + }, + { + "x": 377.54, + "y": 314.165, + "index": 19, + "body": { + "#": 2578 + }, + "isInternal": false + }, + { + "x": 357.786, + "y": 317.294 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2608 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2610 + }, + "max": { + "#": 2611 + } + }, + { + "x": 338.032, + "y": 297.54 + }, + { + "x": 377.54, + "y": 337.048 + }, + { + "x": 357.786, + "y": 317.294 + }, + [ + { + "#": 2614 + }, + { + "#": 2615 + }, + { + "#": 2616 + }, + { + "#": 2617 + }, + { + "#": 2618 + }, + { + "#": 2619 + }, + { + "#": 2620 + }, + { + "#": 2621 + }, + { + "#": 2622 + }, + { + "#": 2623 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 60, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2625 + }, + "angle": 0, + "vertices": { + "#": 2626 + }, + "position": { + "#": 2647 + }, + "force": { + "#": 2648 + }, + "torque": 0, + "positionImpulse": { + "#": 2649 + }, + "constraintImpulse": { + "#": 2650 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2651 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2652 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2653 + }, + "circleRadius": 20, + "bounds": { + "#": 2655 + }, + "positionPrev": { + "#": 2658 + }, + "anglePrev": 0, + "axes": { + "#": 2659 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2624 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2624 + } + ], + [ + { + "#": 2627 + }, + { + "#": 2628 + }, + { + "#": 2629 + }, + { + "#": 2630 + }, + { + "#": 2631 + }, + { + "#": 2632 + }, + { + "#": 2633 + }, + { + "#": 2634 + }, + { + "#": 2635 + }, + { + "#": 2636 + }, + { + "#": 2637 + }, + { + "#": 2638 + }, + { + "#": 2639 + }, + { + "#": 2640 + }, + { + "#": 2641 + }, + { + "#": 2642 + }, + { + "#": 2643 + }, + { + "#": 2644 + }, + { + "#": 2645 + }, + { + "#": 2646 + } + ], + { + "x": 437.048, + "y": 320.423, + "index": 0, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 326.374, + "index": 1, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 331.436, + "index": 2, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 335.114, + "index": 3, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 337.048, + "index": 4, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 337.048, + "index": 5, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 335.114, + "index": 6, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 331.436, + "index": 7, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 326.374, + "index": 8, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 320.423, + "index": 9, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 314.165, + "index": 10, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 308.214, + "index": 11, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 303.152, + "index": 12, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 299.474, + "index": 13, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 297.54, + "index": 14, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 297.54, + "index": 15, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 299.474, + "index": 16, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 303.152, + "index": 17, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 308.214, + "index": 18, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 437.048, + "y": 314.165, + "index": 19, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 417.294, + "y": 317.294 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2654 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2656 + }, + "max": { + "#": 2657 + } + }, + { + "x": 397.54, + "y": 297.54 + }, + { + "x": 437.048, + "y": 337.048 + }, + { + "x": 417.294, + "y": 317.294 + }, + [ + { + "#": 2660 + }, + { + "#": 2661 + }, + { + "#": 2662 + }, + { + "#": 2663 + }, + { + "#": 2664 + }, + { + "#": 2665 + }, + { + "#": 2666 + }, + { + "#": 2667 + }, + { + "#": 2668 + }, + { + "#": 2669 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 61, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2671 + }, + "angle": 0, + "vertices": { + "#": 2672 + }, + "position": { + "#": 2693 + }, + "force": { + "#": 2694 + }, + "torque": 0, + "positionImpulse": { + "#": 2695 + }, + "constraintImpulse": { + "#": 2696 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2697 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2698 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2699 + }, + "circleRadius": 20, + "bounds": { + "#": 2701 + }, + "positionPrev": { + "#": 2704 + }, + "anglePrev": 0, + "axes": { + "#": 2705 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2670 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2670 + } + ], + [ + { + "#": 2673 + }, + { + "#": 2674 + }, + { + "#": 2675 + }, + { + "#": 2676 + }, + { + "#": 2677 + }, + { + "#": 2678 + }, + { + "#": 2679 + }, + { + "#": 2680 + }, + { + "#": 2681 + }, + { + "#": 2682 + }, + { + "#": 2683 + }, + { + "#": 2684 + }, + { + "#": 2685 + }, + { + "#": 2686 + }, + { + "#": 2687 + }, + { + "#": 2688 + }, + { + "#": 2689 + }, + { + "#": 2690 + }, + { + "#": 2691 + }, + { + "#": 2692 + } + ], + { + "x": 496.556, + "y": 320.423, + "index": 0, + "body": { + "#": 2670 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 326.374, + "index": 1, + "body": { + "#": 2670 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 331.436, + "index": 2, + "body": { + "#": 2670 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 335.114, + "index": 3, + "body": { + "#": 2670 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 337.048, + "index": 4, + "body": { + "#": 2670 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 337.048, + "index": 5, + "body": { + "#": 2670 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 335.114, + "index": 6, + "body": { + "#": 2670 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 331.436, + "index": 7, + "body": { + "#": 2670 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 326.374, + "index": 8, + "body": { + "#": 2670 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 320.423, + "index": 9, + "body": { + "#": 2670 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 314.165, + "index": 10, + "body": { + "#": 2670 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 308.214, + "index": 11, + "body": { + "#": 2670 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 303.152, + "index": 12, + "body": { + "#": 2670 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 299.474, + "index": 13, + "body": { + "#": 2670 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 297.54, + "index": 14, + "body": { + "#": 2670 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 297.54, + "index": 15, + "body": { + "#": 2670 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 299.474, + "index": 16, + "body": { + "#": 2670 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 303.152, + "index": 17, + "body": { + "#": 2670 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 308.214, + "index": 18, + "body": { + "#": 2670 + }, + "isInternal": false + }, + { + "x": 496.556, + "y": 314.165, + "index": 19, + "body": { + "#": 2670 + }, + "isInternal": false + }, + { + "x": 476.802, + "y": 317.294 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2700 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2702 + }, + "max": { + "#": 2703 + } + }, + { + "x": 457.048, + "y": 297.54 + }, + { + "x": 496.556, + "y": 337.048 + }, + { + "x": 476.802, + "y": 317.294 + }, + [ + { + "#": 2706 + }, + { + "#": 2707 + }, + { + "#": 2708 + }, + { + "#": 2709 + }, + { + "#": 2710 + }, + { + "#": 2711 + }, + { + "#": 2712 + }, + { + "#": 2713 + }, + { + "#": 2714 + }, + { + "#": 2715 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 62, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2717 + }, + "angle": 0, + "vertices": { + "#": 2718 + }, + "position": { + "#": 2739 + }, + "force": { + "#": 2740 + }, + "torque": 0, + "positionImpulse": { + "#": 2741 + }, + "constraintImpulse": { + "#": 2742 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2743 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2744 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2745 + }, + "circleRadius": 20, + "bounds": { + "#": 2747 + }, + "positionPrev": { + "#": 2750 + }, + "anglePrev": 0, + "axes": { + "#": 2751 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2716 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2716 + } + ], + [ + { + "#": 2719 + }, + { + "#": 2720 + }, + { + "#": 2721 + }, + { + "#": 2722 + }, + { + "#": 2723 + }, + { + "#": 2724 + }, + { + "#": 2725 + }, + { + "#": 2726 + }, + { + "#": 2727 + }, + { + "#": 2728 + }, + { + "#": 2729 + }, + { + "#": 2730 + }, + { + "#": 2731 + }, + { + "#": 2732 + }, + { + "#": 2733 + }, + { + "#": 2734 + }, + { + "#": 2735 + }, + { + "#": 2736 + }, + { + "#": 2737 + }, + { + "#": 2738 + } + ], + { + "x": 556.064, + "y": 320.423, + "index": 0, + "body": { + "#": 2716 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 326.374, + "index": 1, + "body": { + "#": 2716 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 331.436, + "index": 2, + "body": { + "#": 2716 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 335.114, + "index": 3, + "body": { + "#": 2716 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 337.048, + "index": 4, + "body": { + "#": 2716 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 337.048, + "index": 5, + "body": { + "#": 2716 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 335.114, + "index": 6, + "body": { + "#": 2716 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 331.436, + "index": 7, + "body": { + "#": 2716 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 326.374, + "index": 8, + "body": { + "#": 2716 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 320.423, + "index": 9, + "body": { + "#": 2716 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 314.165, + "index": 10, + "body": { + "#": 2716 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 308.214, + "index": 11, + "body": { + "#": 2716 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 303.152, + "index": 12, + "body": { + "#": 2716 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 299.474, + "index": 13, + "body": { + "#": 2716 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 297.54, + "index": 14, + "body": { + "#": 2716 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 297.54, + "index": 15, + "body": { + "#": 2716 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 299.474, + "index": 16, + "body": { + "#": 2716 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 303.152, + "index": 17, + "body": { + "#": 2716 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 308.214, + "index": 18, + "body": { + "#": 2716 + }, + "isInternal": false + }, + { + "x": 556.064, + "y": 314.165, + "index": 19, + "body": { + "#": 2716 + }, + "isInternal": false + }, + { + "x": 536.31, + "y": 317.294 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2746 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2748 + }, + "max": { + "#": 2749 + } + }, + { + "x": 516.556, + "y": 297.54 + }, + { + "x": 556.064, + "y": 337.048 + }, + { + "x": 536.31, + "y": 317.294 + }, + [ + { + "#": 2752 + }, + { + "#": 2753 + }, + { + "#": 2754 + }, + { + "#": 2755 + }, + { + "#": 2756 + }, + { + "#": 2757 + }, + { + "#": 2758 + }, + { + "#": 2759 + }, + { + "#": 2760 + }, + { + "#": 2761 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 63, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2763 + }, + "angle": 0, + "vertices": { + "#": 2764 + }, + "position": { + "#": 2785 + }, + "force": { + "#": 2786 + }, + "torque": 0, + "positionImpulse": { + "#": 2787 + }, + "constraintImpulse": { + "#": 2788 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2789 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2790 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2791 + }, + "circleRadius": 20, + "bounds": { + "#": 2793 + }, + "positionPrev": { + "#": 2796 + }, + "anglePrev": 0, + "axes": { + "#": 2797 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2762 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2762 + } + ], + [ + { + "#": 2765 + }, + { + "#": 2766 + }, + { + "#": 2767 + }, + { + "#": 2768 + }, + { + "#": 2769 + }, + { + "#": 2770 + }, + { + "#": 2771 + }, + { + "#": 2772 + }, + { + "#": 2773 + }, + { + "#": 2774 + }, + { + "#": 2775 + }, + { + "#": 2776 + }, + { + "#": 2777 + }, + { + "#": 2778 + }, + { + "#": 2779 + }, + { + "#": 2780 + }, + { + "#": 2781 + }, + { + "#": 2782 + }, + { + "#": 2783 + }, + { + "#": 2784 + } + ], + { + "x": 615.572, + "y": 320.423, + "index": 0, + "body": { + "#": 2762 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 326.374, + "index": 1, + "body": { + "#": 2762 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 331.436, + "index": 2, + "body": { + "#": 2762 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 335.114, + "index": 3, + "body": { + "#": 2762 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 337.048, + "index": 4, + "body": { + "#": 2762 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 337.048, + "index": 5, + "body": { + "#": 2762 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 335.114, + "index": 6, + "body": { + "#": 2762 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 331.436, + "index": 7, + "body": { + "#": 2762 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 326.374, + "index": 8, + "body": { + "#": 2762 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 320.423, + "index": 9, + "body": { + "#": 2762 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 314.165, + "index": 10, + "body": { + "#": 2762 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 308.214, + "index": 11, + "body": { + "#": 2762 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 303.152, + "index": 12, + "body": { + "#": 2762 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 299.474, + "index": 13, + "body": { + "#": 2762 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 297.54, + "index": 14, + "body": { + "#": 2762 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 297.54, + "index": 15, + "body": { + "#": 2762 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 299.474, + "index": 16, + "body": { + "#": 2762 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 303.152, + "index": 17, + "body": { + "#": 2762 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 308.214, + "index": 18, + "body": { + "#": 2762 + }, + "isInternal": false + }, + { + "x": 615.572, + "y": 314.165, + "index": 19, + "body": { + "#": 2762 + }, + "isInternal": false + }, + { + "x": 595.818, + "y": 317.294 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2792 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2794 + }, + "max": { + "#": 2795 + } + }, + { + "x": 576.064, + "y": 297.54 + }, + { + "x": 615.572, + "y": 337.048 + }, + { + "x": 595.818, + "y": 317.294 + }, + [ + { + "#": 2798 + }, + { + "#": 2799 + }, + { + "#": 2800 + }, + { + "#": 2801 + }, + { + "#": 2802 + }, + { + "#": 2803 + }, + { + "#": 2804 + }, + { + "#": 2805 + }, + { + "#": 2806 + }, + { + "#": 2807 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 64, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2809 + }, + "angle": 0, + "vertices": { + "#": 2810 + }, + "position": { + "#": 2831 + }, + "force": { + "#": 2832 + }, + "torque": 0, + "positionImpulse": { + "#": 2833 + }, + "constraintImpulse": { + "#": 2834 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2835 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2836 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2837 + }, + "circleRadius": 20, + "bounds": { + "#": 2839 + }, + "positionPrev": { + "#": 2842 + }, + "anglePrev": 0, + "axes": { + "#": 2843 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2808 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2808 + } + ], + [ + { + "#": 2811 + }, + { + "#": 2812 + }, + { + "#": 2813 + }, + { + "#": 2814 + }, + { + "#": 2815 + }, + { + "#": 2816 + }, + { + "#": 2817 + }, + { + "#": 2818 + }, + { + "#": 2819 + }, + { + "#": 2820 + }, + { + "#": 2821 + }, + { + "#": 2822 + }, + { + "#": 2823 + }, + { + "#": 2824 + }, + { + "#": 2825 + }, + { + "#": 2826 + }, + { + "#": 2827 + }, + { + "#": 2828 + }, + { + "#": 2829 + }, + { + "#": 2830 + } + ], + { + "x": 675.08, + "y": 320.423, + "index": 0, + "body": { + "#": 2808 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 326.374, + "index": 1, + "body": { + "#": 2808 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 331.436, + "index": 2, + "body": { + "#": 2808 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 335.114, + "index": 3, + "body": { + "#": 2808 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 337.048, + "index": 4, + "body": { + "#": 2808 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 337.048, + "index": 5, + "body": { + "#": 2808 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 335.114, + "index": 6, + "body": { + "#": 2808 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 331.436, + "index": 7, + "body": { + "#": 2808 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 326.374, + "index": 8, + "body": { + "#": 2808 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 320.423, + "index": 9, + "body": { + "#": 2808 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 314.165, + "index": 10, + "body": { + "#": 2808 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 308.214, + "index": 11, + "body": { + "#": 2808 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 303.152, + "index": 12, + "body": { + "#": 2808 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 299.474, + "index": 13, + "body": { + "#": 2808 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 297.54, + "index": 14, + "body": { + "#": 2808 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 297.54, + "index": 15, + "body": { + "#": 2808 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 299.474, + "index": 16, + "body": { + "#": 2808 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 303.152, + "index": 17, + "body": { + "#": 2808 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 308.214, + "index": 18, + "body": { + "#": 2808 + }, + "isInternal": false + }, + { + "x": 675.08, + "y": 314.165, + "index": 19, + "body": { + "#": 2808 + }, + "isInternal": false + }, + { + "x": 655.326, + "y": 317.294 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2838 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2840 + }, + "max": { + "#": 2841 + } + }, + { + "x": 635.572, + "y": 297.54 + }, + { + "x": 675.08, + "y": 337.048 + }, + { + "x": 655.326, + "y": 317.294 + }, + [ + { + "#": 2844 + }, + { + "#": 2845 + }, + { + "#": 2846 + }, + { + "#": 2847 + }, + { + "#": 2848 + }, + { + "#": 2849 + }, + { + "#": 2850 + }, + { + "#": 2851 + }, + { + "#": 2852 + }, + { + "#": 2853 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 65, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2855 + }, + "angle": 0, + "vertices": { + "#": 2856 + }, + "position": { + "#": 2877 + }, + "force": { + "#": 2878 + }, + "torque": 0, + "positionImpulse": { + "#": 2879 + }, + "constraintImpulse": { + "#": 2880 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2881 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2882 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2883 + }, + "circleRadius": 20, + "bounds": { + "#": 2885 + }, + "positionPrev": { + "#": 2888 + }, + "anglePrev": 0, + "axes": { + "#": 2889 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2854 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2854 + } + ], + [ + { + "#": 2857 + }, + { + "#": 2858 + }, + { + "#": 2859 + }, + { + "#": 2860 + }, + { + "#": 2861 + }, + { + "#": 2862 + }, + { + "#": 2863 + }, + { + "#": 2864 + }, + { + "#": 2865 + }, + { + "#": 2866 + }, + { + "#": 2867 + }, + { + "#": 2868 + }, + { + "#": 2869 + }, + { + "#": 2870 + }, + { + "#": 2871 + }, + { + "#": 2872 + }, + { + "#": 2873 + }, + { + "#": 2874 + }, + { + "#": 2875 + }, + { + "#": 2876 + } + ], + { + "x": 139.508, + "y": 359.931, + "index": 0, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 365.882, + "index": 1, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 370.944, + "index": 2, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 374.622, + "index": 3, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 376.556, + "index": 4, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 376.556, + "index": 5, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 374.622, + "index": 6, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 370.944, + "index": 7, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 365.882, + "index": 8, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 100, + "y": 359.931, + "index": 9, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 100, + "y": 353.673, + "index": 10, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 347.722, + "index": 11, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 342.66, + "index": 12, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 338.982, + "index": 13, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 337.048, + "index": 14, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 337.048, + "index": 15, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 338.982, + "index": 16, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 342.66, + "index": 17, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 347.722, + "index": 18, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 139.508, + "y": 353.673, + "index": 19, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 119.754, + "y": 356.802 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2884 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2886 + }, + "max": { + "#": 2887 + } + }, + { + "x": 100, + "y": 337.048 + }, + { + "x": 139.508, + "y": 376.556 + }, + { + "x": 119.754, + "y": 356.802 + }, + [ + { + "#": 2890 + }, + { + "#": 2891 + }, + { + "#": 2892 + }, + { + "#": 2893 + }, + { + "#": 2894 + }, + { + "#": 2895 + }, + { + "#": 2896 + }, + { + "#": 2897 + }, + { + "#": 2898 + }, + { + "#": 2899 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 66, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2901 + }, + "angle": 0, + "vertices": { + "#": 2902 + }, + "position": { + "#": 2923 + }, + "force": { + "#": 2924 + }, + "torque": 0, + "positionImpulse": { + "#": 2925 + }, + "constraintImpulse": { + "#": 2926 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2927 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2928 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2929 + }, + "circleRadius": 20, + "bounds": { + "#": 2931 + }, + "positionPrev": { + "#": 2934 + }, + "anglePrev": 0, + "axes": { + "#": 2935 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2900 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2900 + } + ], + [ + { + "#": 2903 + }, + { + "#": 2904 + }, + { + "#": 2905 + }, + { + "#": 2906 + }, + { + "#": 2907 + }, + { + "#": 2908 + }, + { + "#": 2909 + }, + { + "#": 2910 + }, + { + "#": 2911 + }, + { + "#": 2912 + }, + { + "#": 2913 + }, + { + "#": 2914 + }, + { + "#": 2915 + }, + { + "#": 2916 + }, + { + "#": 2917 + }, + { + "#": 2918 + }, + { + "#": 2919 + }, + { + "#": 2920 + }, + { + "#": 2921 + }, + { + "#": 2922 + } + ], + { + "x": 199.016, + "y": 359.931, + "index": 0, + "body": { + "#": 2900 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 365.882, + "index": 1, + "body": { + "#": 2900 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 370.944, + "index": 2, + "body": { + "#": 2900 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 374.622, + "index": 3, + "body": { + "#": 2900 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 376.556, + "index": 4, + "body": { + "#": 2900 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 376.556, + "index": 5, + "body": { + "#": 2900 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 374.622, + "index": 6, + "body": { + "#": 2900 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 370.944, + "index": 7, + "body": { + "#": 2900 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 365.882, + "index": 8, + "body": { + "#": 2900 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 359.931, + "index": 9, + "body": { + "#": 2900 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 353.673, + "index": 10, + "body": { + "#": 2900 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 347.722, + "index": 11, + "body": { + "#": 2900 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 342.66, + "index": 12, + "body": { + "#": 2900 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 338.982, + "index": 13, + "body": { + "#": 2900 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 337.048, + "index": 14, + "body": { + "#": 2900 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 337.048, + "index": 15, + "body": { + "#": 2900 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 338.982, + "index": 16, + "body": { + "#": 2900 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 342.66, + "index": 17, + "body": { + "#": 2900 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 347.722, + "index": 18, + "body": { + "#": 2900 + }, + "isInternal": false + }, + { + "x": 199.016, + "y": 353.673, + "index": 19, + "body": { + "#": 2900 + }, + "isInternal": false + }, + { + "x": 179.262, + "y": 356.802 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2930 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2932 + }, + "max": { + "#": 2933 + } + }, + { + "x": 159.508, + "y": 337.048 + }, + { + "x": 199.016, + "y": 376.556 + }, + { + "x": 179.262, + "y": 356.802 + }, + [ + { + "#": 2936 + }, + { + "#": 2937 + }, + { + "#": 2938 + }, + { + "#": 2939 + }, + { + "#": 2940 + }, + { + "#": 2941 + }, + { + "#": 2942 + }, + { + "#": 2943 + }, + { + "#": 2944 + }, + { + "#": 2945 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 67, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2947 + }, + "angle": 0, + "vertices": { + "#": 2948 + }, + "position": { + "#": 2969 + }, + "force": { + "#": 2970 + }, + "torque": 0, + "positionImpulse": { + "#": 2971 + }, + "constraintImpulse": { + "#": 2972 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2973 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2974 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2975 + }, + "circleRadius": 20, + "bounds": { + "#": 2977 + }, + "positionPrev": { + "#": 2980 + }, + "anglePrev": 0, + "axes": { + "#": 2981 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2946 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2946 + } + ], + [ + { + "#": 2949 + }, + { + "#": 2950 + }, + { + "#": 2951 + }, + { + "#": 2952 + }, + { + "#": 2953 + }, + { + "#": 2954 + }, + { + "#": 2955 + }, + { + "#": 2956 + }, + { + "#": 2957 + }, + { + "#": 2958 + }, + { + "#": 2959 + }, + { + "#": 2960 + }, + { + "#": 2961 + }, + { + "#": 2962 + }, + { + "#": 2963 + }, + { + "#": 2964 + }, + { + "#": 2965 + }, + { + "#": 2966 + }, + { + "#": 2967 + }, + { + "#": 2968 + } + ], + { + "x": 258.524, + "y": 359.931, + "index": 0, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 365.882, + "index": 1, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 370.944, + "index": 2, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 374.622, + "index": 3, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 376.556, + "index": 4, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 376.556, + "index": 5, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 374.622, + "index": 6, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 370.944, + "index": 7, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 365.882, + "index": 8, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 359.931, + "index": 9, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 353.673, + "index": 10, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 347.722, + "index": 11, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 342.66, + "index": 12, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 338.982, + "index": 13, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 337.048, + "index": 14, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 337.048, + "index": 15, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 338.982, + "index": 16, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 342.66, + "index": 17, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 347.722, + "index": 18, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 258.524, + "y": 353.673, + "index": 19, + "body": { + "#": 2946 + }, + "isInternal": false + }, + { + "x": 238.77, + "y": 356.802 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2976 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2978 + }, + "max": { + "#": 2979 + } + }, + { + "x": 219.016, + "y": 337.048 + }, + { + "x": 258.524, + "y": 376.556 + }, + { + "x": 238.77, + "y": 356.802 + }, + [ + { + "#": 2982 + }, + { + "#": 2983 + }, + { + "#": 2984 + }, + { + "#": 2985 + }, + { + "#": 2986 + }, + { + "#": 2987 + }, + { + "#": 2988 + }, + { + "#": 2989 + }, + { + "#": 2990 + }, + { + "#": 2991 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 68, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2993 + }, + "angle": 0, + "vertices": { + "#": 2994 + }, + "position": { + "#": 3015 + }, + "force": { + "#": 3016 + }, + "torque": 0, + "positionImpulse": { + "#": 3017 + }, + "constraintImpulse": { + "#": 3018 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3019 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3020 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3021 + }, + "circleRadius": 20, + "bounds": { + "#": 3023 + }, + "positionPrev": { + "#": 3026 + }, + "anglePrev": 0, + "axes": { + "#": 3027 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2992 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2992 + } + ], + [ + { + "#": 2995 + }, + { + "#": 2996 + }, + { + "#": 2997 + }, + { + "#": 2998 + }, + { + "#": 2999 + }, + { + "#": 3000 + }, + { + "#": 3001 + }, + { + "#": 3002 + }, + { + "#": 3003 + }, + { + "#": 3004 + }, + { + "#": 3005 + }, + { + "#": 3006 + }, + { + "#": 3007 + }, + { + "#": 3008 + }, + { + "#": 3009 + }, + { + "#": 3010 + }, + { + "#": 3011 + }, + { + "#": 3012 + }, + { + "#": 3013 + }, + { + "#": 3014 + } + ], + { + "x": 318.032, + "y": 359.931, + "index": 0, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 365.882, + "index": 1, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 370.944, + "index": 2, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 374.622, + "index": 3, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 376.556, + "index": 4, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 376.556, + "index": 5, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 374.622, + "index": 6, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 370.944, + "index": 7, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 365.882, + "index": 8, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 359.931, + "index": 9, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 353.673, + "index": 10, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 347.722, + "index": 11, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 342.66, + "index": 12, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 338.982, + "index": 13, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 337.048, + "index": 14, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 337.048, + "index": 15, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 338.982, + "index": 16, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 342.66, + "index": 17, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 347.722, + "index": 18, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 318.032, + "y": 353.673, + "index": 19, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 298.278, + "y": 356.802 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3022 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3024 + }, + "max": { + "#": 3025 + } + }, + { + "x": 278.524, + "y": 337.048 + }, + { + "x": 318.032, + "y": 376.556 + }, + { + "x": 298.278, + "y": 356.802 + }, + [ + { + "#": 3028 + }, + { + "#": 3029 + }, + { + "#": 3030 + }, + { + "#": 3031 + }, + { + "#": 3032 + }, + { + "#": 3033 + }, + { + "#": 3034 + }, + { + "#": 3035 + }, + { + "#": 3036 + }, + { + "#": 3037 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 69, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3039 + }, + "angle": 0, + "vertices": { + "#": 3040 + }, + "position": { + "#": 3061 + }, + "force": { + "#": 3062 + }, + "torque": 0, + "positionImpulse": { + "#": 3063 + }, + "constraintImpulse": { + "#": 3064 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3065 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3066 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3067 + }, + "circleRadius": 20, + "bounds": { + "#": 3069 + }, + "positionPrev": { + "#": 3072 + }, + "anglePrev": 0, + "axes": { + "#": 3073 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3038 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3038 + } + ], + [ + { + "#": 3041 + }, + { + "#": 3042 + }, + { + "#": 3043 + }, + { + "#": 3044 + }, + { + "#": 3045 + }, + { + "#": 3046 + }, + { + "#": 3047 + }, + { + "#": 3048 + }, + { + "#": 3049 + }, + { + "#": 3050 + }, + { + "#": 3051 + }, + { + "#": 3052 + }, + { + "#": 3053 + }, + { + "#": 3054 + }, + { + "#": 3055 + }, + { + "#": 3056 + }, + { + "#": 3057 + }, + { + "#": 3058 + }, + { + "#": 3059 + }, + { + "#": 3060 + } + ], + { + "x": 377.54, + "y": 359.931, + "index": 0, + "body": { + "#": 3038 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 365.882, + "index": 1, + "body": { + "#": 3038 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 370.944, + "index": 2, + "body": { + "#": 3038 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 374.622, + "index": 3, + "body": { + "#": 3038 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 376.556, + "index": 4, + "body": { + "#": 3038 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 376.556, + "index": 5, + "body": { + "#": 3038 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 374.622, + "index": 6, + "body": { + "#": 3038 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 370.944, + "index": 7, + "body": { + "#": 3038 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 365.882, + "index": 8, + "body": { + "#": 3038 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 359.931, + "index": 9, + "body": { + "#": 3038 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 353.673, + "index": 10, + "body": { + "#": 3038 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 347.722, + "index": 11, + "body": { + "#": 3038 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 342.66, + "index": 12, + "body": { + "#": 3038 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 338.982, + "index": 13, + "body": { + "#": 3038 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 337.048, + "index": 14, + "body": { + "#": 3038 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 337.048, + "index": 15, + "body": { + "#": 3038 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 338.982, + "index": 16, + "body": { + "#": 3038 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 342.66, + "index": 17, + "body": { + "#": 3038 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 347.722, + "index": 18, + "body": { + "#": 3038 + }, + "isInternal": false + }, + { + "x": 377.54, + "y": 353.673, + "index": 19, + "body": { + "#": 3038 + }, + "isInternal": false + }, + { + "x": 357.786, + "y": 356.802 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3068 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3070 + }, + "max": { + "#": 3071 + } + }, + { + "x": 338.032, + "y": 337.048 + }, + { + "x": 377.54, + "y": 376.556 + }, + { + "x": 357.786, + "y": 356.802 + }, + [ + { + "#": 3074 + }, + { + "#": 3075 + }, + { + "#": 3076 + }, + { + "#": 3077 + }, + { + "#": 3078 + }, + { + "#": 3079 + }, + { + "#": 3080 + }, + { + "#": 3081 + }, + { + "#": 3082 + }, + { + "#": 3083 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 70, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3085 + }, + "angle": 0, + "vertices": { + "#": 3086 + }, + "position": { + "#": 3107 + }, + "force": { + "#": 3108 + }, + "torque": 0, + "positionImpulse": { + "#": 3109 + }, + "constraintImpulse": { + "#": 3110 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3111 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3112 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3113 + }, + "circleRadius": 20, + "bounds": { + "#": 3115 + }, + "positionPrev": { + "#": 3118 + }, + "anglePrev": 0, + "axes": { + "#": 3119 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3084 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3084 + } + ], + [ + { + "#": 3087 + }, + { + "#": 3088 + }, + { + "#": 3089 + }, + { + "#": 3090 + }, + { + "#": 3091 + }, + { + "#": 3092 + }, + { + "#": 3093 + }, + { + "#": 3094 + }, + { + "#": 3095 + }, + { + "#": 3096 + }, + { + "#": 3097 + }, + { + "#": 3098 + }, + { + "#": 3099 + }, + { + "#": 3100 + }, + { + "#": 3101 + }, + { + "#": 3102 + }, + { + "#": 3103 + }, + { + "#": 3104 + }, + { + "#": 3105 + }, + { + "#": 3106 + } + ], + { + "x": 437.048, + "y": 359.931, + "index": 0, + "body": { + "#": 3084 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 365.882, + "index": 1, + "body": { + "#": 3084 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 370.944, + "index": 2, + "body": { + "#": 3084 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 374.622, + "index": 3, + "body": { + "#": 3084 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 376.556, + "index": 4, + "body": { + "#": 3084 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 376.556, + "index": 5, + "body": { + "#": 3084 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 374.622, + "index": 6, + "body": { + "#": 3084 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 370.944, + "index": 7, + "body": { + "#": 3084 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 365.882, + "index": 8, + "body": { + "#": 3084 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 359.931, + "index": 9, + "body": { + "#": 3084 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 353.673, + "index": 10, + "body": { + "#": 3084 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 347.722, + "index": 11, + "body": { + "#": 3084 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 342.66, + "index": 12, + "body": { + "#": 3084 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 338.982, + "index": 13, + "body": { + "#": 3084 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 337.048, + "index": 14, + "body": { + "#": 3084 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 337.048, + "index": 15, + "body": { + "#": 3084 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 338.982, + "index": 16, + "body": { + "#": 3084 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 342.66, + "index": 17, + "body": { + "#": 3084 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 347.722, + "index": 18, + "body": { + "#": 3084 + }, + "isInternal": false + }, + { + "x": 437.048, + "y": 353.673, + "index": 19, + "body": { + "#": 3084 + }, + "isInternal": false + }, + { + "x": 417.294, + "y": 356.802 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3114 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3116 + }, + "max": { + "#": 3117 + } + }, + { + "x": 397.54, + "y": 337.048 + }, + { + "x": 437.048, + "y": 376.556 + }, + { + "x": 417.294, + "y": 356.802 + }, + [ + { + "#": 3120 + }, + { + "#": 3121 + }, + { + "#": 3122 + }, + { + "#": 3123 + }, + { + "#": 3124 + }, + { + "#": 3125 + }, + { + "#": 3126 + }, + { + "#": 3127 + }, + { + "#": 3128 + }, + { + "#": 3129 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 71, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3131 + }, + "angle": 0, + "vertices": { + "#": 3132 + }, + "position": { + "#": 3153 + }, + "force": { + "#": 3154 + }, + "torque": 0, + "positionImpulse": { + "#": 3155 + }, + "constraintImpulse": { + "#": 3156 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3157 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3158 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3159 + }, + "circleRadius": 20, + "bounds": { + "#": 3161 + }, + "positionPrev": { + "#": 3164 + }, + "anglePrev": 0, + "axes": { + "#": 3165 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3130 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3130 + } + ], + [ + { + "#": 3133 + }, + { + "#": 3134 + }, + { + "#": 3135 + }, + { + "#": 3136 + }, + { + "#": 3137 + }, + { + "#": 3138 + }, + { + "#": 3139 + }, + { + "#": 3140 + }, + { + "#": 3141 + }, + { + "#": 3142 + }, + { + "#": 3143 + }, + { + "#": 3144 + }, + { + "#": 3145 + }, + { + "#": 3146 + }, + { + "#": 3147 + }, + { + "#": 3148 + }, + { + "#": 3149 + }, + { + "#": 3150 + }, + { + "#": 3151 + }, + { + "#": 3152 + } + ], + { + "x": 496.556, + "y": 359.931, + "index": 0, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 365.882, + "index": 1, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 370.944, + "index": 2, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 374.622, + "index": 3, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 376.556, + "index": 4, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 376.556, + "index": 5, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 374.622, + "index": 6, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 370.944, + "index": 7, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 365.882, + "index": 8, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 359.931, + "index": 9, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 353.673, + "index": 10, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 347.722, + "index": 11, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 342.66, + "index": 12, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 338.982, + "index": 13, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 337.048, + "index": 14, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 337.048, + "index": 15, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 338.982, + "index": 16, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 342.66, + "index": 17, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 347.722, + "index": 18, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 496.556, + "y": 353.673, + "index": 19, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 476.802, + "y": 356.802 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3160 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3162 + }, + "max": { + "#": 3163 + } + }, + { + "x": 457.048, + "y": 337.048 + }, + { + "x": 496.556, + "y": 376.556 + }, + { + "x": 476.802, + "y": 356.802 + }, + [ + { + "#": 3166 + }, + { + "#": 3167 + }, + { + "#": 3168 + }, + { + "#": 3169 + }, + { + "#": 3170 + }, + { + "#": 3171 + }, + { + "#": 3172 + }, + { + "#": 3173 + }, + { + "#": 3174 + }, + { + "#": 3175 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 72, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3177 + }, + "angle": 0, + "vertices": { + "#": 3178 + }, + "position": { + "#": 3199 + }, + "force": { + "#": 3200 + }, + "torque": 0, + "positionImpulse": { + "#": 3201 + }, + "constraintImpulse": { + "#": 3202 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3203 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3204 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3205 + }, + "circleRadius": 20, + "bounds": { + "#": 3207 + }, + "positionPrev": { + "#": 3210 + }, + "anglePrev": 0, + "axes": { + "#": 3211 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3176 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3176 + } + ], + [ + { + "#": 3179 + }, + { + "#": 3180 + }, + { + "#": 3181 + }, + { + "#": 3182 + }, + { + "#": 3183 + }, + { + "#": 3184 + }, + { + "#": 3185 + }, + { + "#": 3186 + }, + { + "#": 3187 + }, + { + "#": 3188 + }, + { + "#": 3189 + }, + { + "#": 3190 + }, + { + "#": 3191 + }, + { + "#": 3192 + }, + { + "#": 3193 + }, + { + "#": 3194 + }, + { + "#": 3195 + }, + { + "#": 3196 + }, + { + "#": 3197 + }, + { + "#": 3198 + } + ], + { + "x": 556.064, + "y": 359.931, + "index": 0, + "body": { + "#": 3176 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 365.882, + "index": 1, + "body": { + "#": 3176 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 370.944, + "index": 2, + "body": { + "#": 3176 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 374.622, + "index": 3, + "body": { + "#": 3176 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 376.556, + "index": 4, + "body": { + "#": 3176 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 376.556, + "index": 5, + "body": { + "#": 3176 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 374.622, + "index": 6, + "body": { + "#": 3176 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 370.944, + "index": 7, + "body": { + "#": 3176 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 365.882, + "index": 8, + "body": { + "#": 3176 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 359.931, + "index": 9, + "body": { + "#": 3176 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 353.673, + "index": 10, + "body": { + "#": 3176 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 347.722, + "index": 11, + "body": { + "#": 3176 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 342.66, + "index": 12, + "body": { + "#": 3176 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 338.982, + "index": 13, + "body": { + "#": 3176 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 337.048, + "index": 14, + "body": { + "#": 3176 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 337.048, + "index": 15, + "body": { + "#": 3176 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 338.982, + "index": 16, + "body": { + "#": 3176 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 342.66, + "index": 17, + "body": { + "#": 3176 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 347.722, + "index": 18, + "body": { + "#": 3176 + }, + "isInternal": false + }, + { + "x": 556.064, + "y": 353.673, + "index": 19, + "body": { + "#": 3176 + }, + "isInternal": false + }, + { + "x": 536.31, + "y": 356.802 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3206 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3208 + }, + "max": { + "#": 3209 + } + }, + { + "x": 516.556, + "y": 337.048 + }, + { + "x": 556.064, + "y": 376.556 + }, + { + "x": 536.31, + "y": 356.802 + }, + [ + { + "#": 3212 + }, + { + "#": 3213 + }, + { + "#": 3214 + }, + { + "#": 3215 + }, + { + "#": 3216 + }, + { + "#": 3217 + }, + { + "#": 3218 + }, + { + "#": 3219 + }, + { + "#": 3220 + }, + { + "#": 3221 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 73, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3223 + }, + "angle": 0, + "vertices": { + "#": 3224 + }, + "position": { + "#": 3245 + }, + "force": { + "#": 3246 + }, + "torque": 0, + "positionImpulse": { + "#": 3247 + }, + "constraintImpulse": { + "#": 3248 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3249 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3250 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3251 + }, + "circleRadius": 20, + "bounds": { + "#": 3253 + }, + "positionPrev": { + "#": 3256 + }, + "anglePrev": 0, + "axes": { + "#": 3257 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3222 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3222 + } + ], + [ + { + "#": 3225 + }, + { + "#": 3226 + }, + { + "#": 3227 + }, + { + "#": 3228 + }, + { + "#": 3229 + }, + { + "#": 3230 + }, + { + "#": 3231 + }, + { + "#": 3232 + }, + { + "#": 3233 + }, + { + "#": 3234 + }, + { + "#": 3235 + }, + { + "#": 3236 + }, + { + "#": 3237 + }, + { + "#": 3238 + }, + { + "#": 3239 + }, + { + "#": 3240 + }, + { + "#": 3241 + }, + { + "#": 3242 + }, + { + "#": 3243 + }, + { + "#": 3244 + } + ], + { + "x": 615.572, + "y": 359.931, + "index": 0, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 365.882, + "index": 1, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 370.944, + "index": 2, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 374.622, + "index": 3, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 376.556, + "index": 4, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 376.556, + "index": 5, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 374.622, + "index": 6, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 370.944, + "index": 7, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 365.882, + "index": 8, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 359.931, + "index": 9, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 353.673, + "index": 10, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 347.722, + "index": 11, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 342.66, + "index": 12, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 338.982, + "index": 13, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 337.048, + "index": 14, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 337.048, + "index": 15, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 338.982, + "index": 16, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 342.66, + "index": 17, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 347.722, + "index": 18, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 615.572, + "y": 353.673, + "index": 19, + "body": { + "#": 3222 + }, + "isInternal": false + }, + { + "x": 595.818, + "y": 356.802 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3252 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3254 + }, + "max": { + "#": 3255 + } + }, + { + "x": 576.064, + "y": 337.048 + }, + { + "x": 615.572, + "y": 376.556 + }, + { + "x": 595.818, + "y": 356.802 + }, + [ + { + "#": 3258 + }, + { + "#": 3259 + }, + { + "#": 3260 + }, + { + "#": 3261 + }, + { + "#": 3262 + }, + { + "#": 3263 + }, + { + "#": 3264 + }, + { + "#": 3265 + }, + { + "#": 3266 + }, + { + "#": 3267 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 74, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3269 + }, + "angle": 0, + "vertices": { + "#": 3270 + }, + "position": { + "#": 3291 + }, + "force": { + "#": 3292 + }, + "torque": 0, + "positionImpulse": { + "#": 3293 + }, + "constraintImpulse": { + "#": 3294 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3295 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3296 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3297 + }, + "circleRadius": 20, + "bounds": { + "#": 3299 + }, + "positionPrev": { + "#": 3302 + }, + "anglePrev": 0, + "axes": { + "#": 3303 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3268 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3268 + } + ], + [ + { + "#": 3271 + }, + { + "#": 3272 + }, + { + "#": 3273 + }, + { + "#": 3274 + }, + { + "#": 3275 + }, + { + "#": 3276 + }, + { + "#": 3277 + }, + { + "#": 3278 + }, + { + "#": 3279 + }, + { + "#": 3280 + }, + { + "#": 3281 + }, + { + "#": 3282 + }, + { + "#": 3283 + }, + { + "#": 3284 + }, + { + "#": 3285 + }, + { + "#": 3286 + }, + { + "#": 3287 + }, + { + "#": 3288 + }, + { + "#": 3289 + }, + { + "#": 3290 + } + ], + { + "x": 675.08, + "y": 359.931, + "index": 0, + "body": { + "#": 3268 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 365.882, + "index": 1, + "body": { + "#": 3268 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 370.944, + "index": 2, + "body": { + "#": 3268 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 374.622, + "index": 3, + "body": { + "#": 3268 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 376.556, + "index": 4, + "body": { + "#": 3268 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 376.556, + "index": 5, + "body": { + "#": 3268 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 374.622, + "index": 6, + "body": { + "#": 3268 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 370.944, + "index": 7, + "body": { + "#": 3268 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 365.882, + "index": 8, + "body": { + "#": 3268 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 359.931, + "index": 9, + "body": { + "#": 3268 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 353.673, + "index": 10, + "body": { + "#": 3268 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 347.722, + "index": 11, + "body": { + "#": 3268 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 342.66, + "index": 12, + "body": { + "#": 3268 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 338.982, + "index": 13, + "body": { + "#": 3268 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 337.048, + "index": 14, + "body": { + "#": 3268 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 337.048, + "index": 15, + "body": { + "#": 3268 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 338.982, + "index": 16, + "body": { + "#": 3268 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 342.66, + "index": 17, + "body": { + "#": 3268 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 347.722, + "index": 18, + "body": { + "#": 3268 + }, + "isInternal": false + }, + { + "x": 675.08, + "y": 353.673, + "index": 19, + "body": { + "#": 3268 + }, + "isInternal": false + }, + { + "x": 655.326, + "y": 356.802 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3298 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3300 + }, + "max": { + "#": 3301 + } + }, + { + "x": 635.572, + "y": 337.048 + }, + { + "x": 675.08, + "y": 376.556 + }, + { + "x": 655.326, + "y": 356.802 + }, + [ + { + "#": 3304 + }, + { + "#": 3305 + }, + { + "#": 3306 + }, + { + "#": 3307 + }, + { + "#": 3308 + }, + { + "#": 3309 + }, + { + "#": 3310 + }, + { + "#": 3311 + }, + { + "#": 3312 + }, + { + "#": 3313 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 75, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3315 + }, + "angle": 0, + "vertices": { + "#": 3316 + }, + "position": { + "#": 3337 + }, + "force": { + "#": 3338 + }, + "torque": 0, + "positionImpulse": { + "#": 3339 + }, + "constraintImpulse": { + "#": 3340 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3341 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3342 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3343 + }, + "circleRadius": 20, + "bounds": { + "#": 3345 + }, + "positionPrev": { + "#": 3348 + }, + "anglePrev": 0, + "axes": { + "#": 3349 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3314 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3314 + } + ], + [ + { + "#": 3317 + }, + { + "#": 3318 + }, + { + "#": 3319 + }, + { + "#": 3320 + }, + { + "#": 3321 + }, + { + "#": 3322 + }, + { + "#": 3323 + }, + { + "#": 3324 + }, + { + "#": 3325 + }, + { + "#": 3326 + }, + { + "#": 3327 + }, + { + "#": 3328 + }, + { + "#": 3329 + }, + { + "#": 3330 + }, + { + "#": 3331 + }, + { + "#": 3332 + }, + { + "#": 3333 + }, + { + "#": 3334 + }, + { + "#": 3335 + }, + { + "#": 3336 + } + ], + { + "x": 139.508, + "y": 399.439, + "index": 0, + "body": { + "#": 3314 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 405.39, + "index": 1, + "body": { + "#": 3314 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 410.452, + "index": 2, + "body": { + "#": 3314 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 414.13, + "index": 3, + "body": { + "#": 3314 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 416.064, + "index": 4, + "body": { + "#": 3314 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 416.064, + "index": 5, + "body": { + "#": 3314 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 414.13, + "index": 6, + "body": { + "#": 3314 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 410.452, + "index": 7, + "body": { + "#": 3314 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 405.39, + "index": 8, + "body": { + "#": 3314 + }, + "isInternal": false + }, + { + "x": 100, + "y": 399.439, + "index": 9, + "body": { + "#": 3314 + }, + "isInternal": false + }, + { + "x": 100, + "y": 393.181, + "index": 10, + "body": { + "#": 3314 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 387.23, + "index": 11, + "body": { + "#": 3314 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 382.168, + "index": 12, + "body": { + "#": 3314 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 378.49, + "index": 13, + "body": { + "#": 3314 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 376.556, + "index": 14, + "body": { + "#": 3314 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 376.556, + "index": 15, + "body": { + "#": 3314 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 378.49, + "index": 16, + "body": { + "#": 3314 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 382.168, + "index": 17, + "body": { + "#": 3314 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 387.23, + "index": 18, + "body": { + "#": 3314 + }, + "isInternal": false + }, + { + "x": 139.508, + "y": 393.181, + "index": 19, + "body": { + "#": 3314 + }, + "isInternal": false + }, + { + "x": 119.754, + "y": 396.31 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3344 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3346 + }, + "max": { + "#": 3347 + } + }, + { + "x": 100, + "y": 376.556 + }, + { + "x": 139.508, + "y": 416.064 + }, + { + "x": 119.754, + "y": 396.31 + }, + [ + { + "#": 3350 + }, + { + "#": 3351 + }, + { + "#": 3352 + }, + { + "#": 3353 + }, + { + "#": 3354 + }, + { + "#": 3355 + }, + { + "#": 3356 + }, + { + "#": 3357 + }, + { + "#": 3358 + }, + { + "#": 3359 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 76, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3361 + }, + "angle": 0, + "vertices": { + "#": 3362 + }, + "position": { + "#": 3383 + }, + "force": { + "#": 3384 + }, + "torque": 0, + "positionImpulse": { + "#": 3385 + }, + "constraintImpulse": { + "#": 3386 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3387 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3388 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3389 + }, + "circleRadius": 20, + "bounds": { + "#": 3391 + }, + "positionPrev": { + "#": 3394 + }, + "anglePrev": 0, + "axes": { + "#": 3395 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3360 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3360 + } + ], + [ + { + "#": 3363 + }, + { + "#": 3364 + }, + { + "#": 3365 + }, + { + "#": 3366 + }, + { + "#": 3367 + }, + { + "#": 3368 + }, + { + "#": 3369 + }, + { + "#": 3370 + }, + { + "#": 3371 + }, + { + "#": 3372 + }, + { + "#": 3373 + }, + { + "#": 3374 + }, + { + "#": 3375 + }, + { + "#": 3376 + }, + { + "#": 3377 + }, + { + "#": 3378 + }, + { + "#": 3379 + }, + { + "#": 3380 + }, + { + "#": 3381 + }, + { + "#": 3382 + } + ], + { + "x": 199.016, + "y": 399.439, + "index": 0, + "body": { + "#": 3360 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 405.39, + "index": 1, + "body": { + "#": 3360 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 410.452, + "index": 2, + "body": { + "#": 3360 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 414.13, + "index": 3, + "body": { + "#": 3360 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 416.064, + "index": 4, + "body": { + "#": 3360 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 416.064, + "index": 5, + "body": { + "#": 3360 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 414.13, + "index": 6, + "body": { + "#": 3360 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 410.452, + "index": 7, + "body": { + "#": 3360 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 405.39, + "index": 8, + "body": { + "#": 3360 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 399.439, + "index": 9, + "body": { + "#": 3360 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 393.181, + "index": 10, + "body": { + "#": 3360 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 387.23, + "index": 11, + "body": { + "#": 3360 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 382.168, + "index": 12, + "body": { + "#": 3360 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 378.49, + "index": 13, + "body": { + "#": 3360 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 376.556, + "index": 14, + "body": { + "#": 3360 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 376.556, + "index": 15, + "body": { + "#": 3360 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 378.49, + "index": 16, + "body": { + "#": 3360 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 382.168, + "index": 17, + "body": { + "#": 3360 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 387.23, + "index": 18, + "body": { + "#": 3360 + }, + "isInternal": false + }, + { + "x": 199.016, + "y": 393.181, + "index": 19, + "body": { + "#": 3360 + }, + "isInternal": false + }, + { + "x": 179.262, + "y": 396.31 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3390 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3392 + }, + "max": { + "#": 3393 + } + }, + { + "x": 159.508, + "y": 376.556 + }, + { + "x": 199.016, + "y": 416.064 + }, + { + "x": 179.262, + "y": 396.31 + }, + [ + { + "#": 3396 + }, + { + "#": 3397 + }, + { + "#": 3398 + }, + { + "#": 3399 + }, + { + "#": 3400 + }, + { + "#": 3401 + }, + { + "#": 3402 + }, + { + "#": 3403 + }, + { + "#": 3404 + }, + { + "#": 3405 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 77, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3407 + }, + "angle": 0, + "vertices": { + "#": 3408 + }, + "position": { + "#": 3429 + }, + "force": { + "#": 3430 + }, + "torque": 0, + "positionImpulse": { + "#": 3431 + }, + "constraintImpulse": { + "#": 3432 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3433 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3434 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3435 + }, + "circleRadius": 20, + "bounds": { + "#": 3437 + }, + "positionPrev": { + "#": 3440 + }, + "anglePrev": 0, + "axes": { + "#": 3441 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3406 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3406 + } + ], + [ + { + "#": 3409 + }, + { + "#": 3410 + }, + { + "#": 3411 + }, + { + "#": 3412 + }, + { + "#": 3413 + }, + { + "#": 3414 + }, + { + "#": 3415 + }, + { + "#": 3416 + }, + { + "#": 3417 + }, + { + "#": 3418 + }, + { + "#": 3419 + }, + { + "#": 3420 + }, + { + "#": 3421 + }, + { + "#": 3422 + }, + { + "#": 3423 + }, + { + "#": 3424 + }, + { + "#": 3425 + }, + { + "#": 3426 + }, + { + "#": 3427 + }, + { + "#": 3428 + } + ], + { + "x": 258.524, + "y": 399.439, + "index": 0, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 405.39, + "index": 1, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 410.452, + "index": 2, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 414.13, + "index": 3, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 416.064, + "index": 4, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 416.064, + "index": 5, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 414.13, + "index": 6, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 410.452, + "index": 7, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 405.39, + "index": 8, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 399.439, + "index": 9, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 393.181, + "index": 10, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 387.23, + "index": 11, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 382.168, + "index": 12, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 378.49, + "index": 13, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 376.556, + "index": 14, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 376.556, + "index": 15, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 378.49, + "index": 16, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 382.168, + "index": 17, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 387.23, + "index": 18, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 258.524, + "y": 393.181, + "index": 19, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 238.77, + "y": 396.31 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3436 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3438 + }, + "max": { + "#": 3439 + } + }, + { + "x": 219.016, + "y": 376.556 + }, + { + "x": 258.524, + "y": 416.064 + }, + { + "x": 238.77, + "y": 396.31 + }, + [ + { + "#": 3442 + }, + { + "#": 3443 + }, + { + "#": 3444 + }, + { + "#": 3445 + }, + { + "#": 3446 + }, + { + "#": 3447 + }, + { + "#": 3448 + }, + { + "#": 3449 + }, + { + "#": 3450 + }, + { + "#": 3451 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 78, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3453 + }, + "angle": 0, + "vertices": { + "#": 3454 + }, + "position": { + "#": 3475 + }, + "force": { + "#": 3476 + }, + "torque": 0, + "positionImpulse": { + "#": 3477 + }, + "constraintImpulse": { + "#": 3478 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3479 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3480 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3481 + }, + "circleRadius": 20, + "bounds": { + "#": 3483 + }, + "positionPrev": { + "#": 3486 + }, + "anglePrev": 0, + "axes": { + "#": 3487 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3452 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3452 + } + ], + [ + { + "#": 3455 + }, + { + "#": 3456 + }, + { + "#": 3457 + }, + { + "#": 3458 + }, + { + "#": 3459 + }, + { + "#": 3460 + }, + { + "#": 3461 + }, + { + "#": 3462 + }, + { + "#": 3463 + }, + { + "#": 3464 + }, + { + "#": 3465 + }, + { + "#": 3466 + }, + { + "#": 3467 + }, + { + "#": 3468 + }, + { + "#": 3469 + }, + { + "#": 3470 + }, + { + "#": 3471 + }, + { + "#": 3472 + }, + { + "#": 3473 + }, + { + "#": 3474 + } + ], + { + "x": 318.032, + "y": 399.439, + "index": 0, + "body": { + "#": 3452 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 405.39, + "index": 1, + "body": { + "#": 3452 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 410.452, + "index": 2, + "body": { + "#": 3452 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 414.13, + "index": 3, + "body": { + "#": 3452 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 416.064, + "index": 4, + "body": { + "#": 3452 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 416.064, + "index": 5, + "body": { + "#": 3452 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 414.13, + "index": 6, + "body": { + "#": 3452 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 410.452, + "index": 7, + "body": { + "#": 3452 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 405.39, + "index": 8, + "body": { + "#": 3452 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 399.439, + "index": 9, + "body": { + "#": 3452 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 393.181, + "index": 10, + "body": { + "#": 3452 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 387.23, + "index": 11, + "body": { + "#": 3452 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 382.168, + "index": 12, + "body": { + "#": 3452 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 378.49, + "index": 13, + "body": { + "#": 3452 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 376.556, + "index": 14, + "body": { + "#": 3452 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 376.556, + "index": 15, + "body": { + "#": 3452 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 378.49, + "index": 16, + "body": { + "#": 3452 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 382.168, + "index": 17, + "body": { + "#": 3452 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 387.23, + "index": 18, + "body": { + "#": 3452 + }, + "isInternal": false + }, + { + "x": 318.032, + "y": 393.181, + "index": 19, + "body": { + "#": 3452 + }, + "isInternal": false + }, + { + "x": 298.278, + "y": 396.31 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3482 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3484 + }, + "max": { + "#": 3485 + } + }, + { + "x": 278.524, + "y": 376.556 + }, + { + "x": 318.032, + "y": 416.064 + }, + { + "x": 298.278, + "y": 396.31 + }, + [ + { + "#": 3488 + }, + { + "#": 3489 + }, + { + "#": 3490 + }, + { + "#": 3491 + }, + { + "#": 3492 + }, + { + "#": 3493 + }, + { + "#": 3494 + }, + { + "#": 3495 + }, + { + "#": 3496 + }, + { + "#": 3497 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 79, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3499 + }, + "angle": 0, + "vertices": { + "#": 3500 + }, + "position": { + "#": 3521 + }, + "force": { + "#": 3522 + }, + "torque": 0, + "positionImpulse": { + "#": 3523 + }, + "constraintImpulse": { + "#": 3524 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3525 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3526 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3527 + }, + "circleRadius": 20, + "bounds": { + "#": 3529 + }, + "positionPrev": { + "#": 3532 + }, + "anglePrev": 0, + "axes": { + "#": 3533 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3498 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3498 + } + ], + [ + { + "#": 3501 + }, + { + "#": 3502 + }, + { + "#": 3503 + }, + { + "#": 3504 + }, + { + "#": 3505 + }, + { + "#": 3506 + }, + { + "#": 3507 + }, + { + "#": 3508 + }, + { + "#": 3509 + }, + { + "#": 3510 + }, + { + "#": 3511 + }, + { + "#": 3512 + }, + { + "#": 3513 + }, + { + "#": 3514 + }, + { + "#": 3515 + }, + { + "#": 3516 + }, + { + "#": 3517 + }, + { + "#": 3518 + }, + { + "#": 3519 + }, + { + "#": 3520 + } + ], + { + "x": 377.54, + "y": 399.439, + "index": 0, + "body": { + "#": 3498 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 405.39, + "index": 1, + "body": { + "#": 3498 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 410.452, + "index": 2, + "body": { + "#": 3498 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 414.13, + "index": 3, + "body": { + "#": 3498 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 416.064, + "index": 4, + "body": { + "#": 3498 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 416.064, + "index": 5, + "body": { + "#": 3498 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 414.13, + "index": 6, + "body": { + "#": 3498 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 410.452, + "index": 7, + "body": { + "#": 3498 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 405.39, + "index": 8, + "body": { + "#": 3498 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 399.439, + "index": 9, + "body": { + "#": 3498 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 393.181, + "index": 10, + "body": { + "#": 3498 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 387.23, + "index": 11, + "body": { + "#": 3498 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 382.168, + "index": 12, + "body": { + "#": 3498 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 378.49, + "index": 13, + "body": { + "#": 3498 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 376.556, + "index": 14, + "body": { + "#": 3498 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 376.556, + "index": 15, + "body": { + "#": 3498 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 378.49, + "index": 16, + "body": { + "#": 3498 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 382.168, + "index": 17, + "body": { + "#": 3498 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 387.23, + "index": 18, + "body": { + "#": 3498 + }, + "isInternal": false + }, + { + "x": 377.54, + "y": 393.181, + "index": 19, + "body": { + "#": 3498 + }, + "isInternal": false + }, + { + "x": 357.786, + "y": 396.31 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3528 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3530 + }, + "max": { + "#": 3531 + } + }, + { + "x": 338.032, + "y": 376.556 + }, + { + "x": 377.54, + "y": 416.064 + }, + { + "x": 357.786, + "y": 396.31 + }, + [ + { + "#": 3534 + }, + { + "#": 3535 + }, + { + "#": 3536 + }, + { + "#": 3537 + }, + { + "#": 3538 + }, + { + "#": 3539 + }, + { + "#": 3540 + }, + { + "#": 3541 + }, + { + "#": 3542 + }, + { + "#": 3543 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 80, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3545 + }, + "angle": 0, + "vertices": { + "#": 3546 + }, + "position": { + "#": 3567 + }, + "force": { + "#": 3568 + }, + "torque": 0, + "positionImpulse": { + "#": 3569 + }, + "constraintImpulse": { + "#": 3570 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3571 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3572 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3573 + }, + "circleRadius": 20, + "bounds": { + "#": 3575 + }, + "positionPrev": { + "#": 3578 + }, + "anglePrev": 0, + "axes": { + "#": 3579 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3544 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3544 + } + ], + [ + { + "#": 3547 + }, + { + "#": 3548 + }, + { + "#": 3549 + }, + { + "#": 3550 + }, + { + "#": 3551 + }, + { + "#": 3552 + }, + { + "#": 3553 + }, + { + "#": 3554 + }, + { + "#": 3555 + }, + { + "#": 3556 + }, + { + "#": 3557 + }, + { + "#": 3558 + }, + { + "#": 3559 + }, + { + "#": 3560 + }, + { + "#": 3561 + }, + { + "#": 3562 + }, + { + "#": 3563 + }, + { + "#": 3564 + }, + { + "#": 3565 + }, + { + "#": 3566 + } + ], + { + "x": 437.048, + "y": 399.439, + "index": 0, + "body": { + "#": 3544 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 405.39, + "index": 1, + "body": { + "#": 3544 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 410.452, + "index": 2, + "body": { + "#": 3544 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 414.13, + "index": 3, + "body": { + "#": 3544 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 416.064, + "index": 4, + "body": { + "#": 3544 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 416.064, + "index": 5, + "body": { + "#": 3544 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 414.13, + "index": 6, + "body": { + "#": 3544 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 410.452, + "index": 7, + "body": { + "#": 3544 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 405.39, + "index": 8, + "body": { + "#": 3544 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 399.439, + "index": 9, + "body": { + "#": 3544 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 393.181, + "index": 10, + "body": { + "#": 3544 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 387.23, + "index": 11, + "body": { + "#": 3544 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 382.168, + "index": 12, + "body": { + "#": 3544 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 378.49, + "index": 13, + "body": { + "#": 3544 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 376.556, + "index": 14, + "body": { + "#": 3544 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 376.556, + "index": 15, + "body": { + "#": 3544 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 378.49, + "index": 16, + "body": { + "#": 3544 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 382.168, + "index": 17, + "body": { + "#": 3544 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 387.23, + "index": 18, + "body": { + "#": 3544 + }, + "isInternal": false + }, + { + "x": 437.048, + "y": 393.181, + "index": 19, + "body": { + "#": 3544 + }, + "isInternal": false + }, + { + "x": 417.294, + "y": 396.31 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3574 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3576 + }, + "max": { + "#": 3577 + } + }, + { + "x": 397.54, + "y": 376.556 + }, + { + "x": 437.048, + "y": 416.064 + }, + { + "x": 417.294, + "y": 396.31 + }, + [ + { + "#": 3580 + }, + { + "#": 3581 + }, + { + "#": 3582 + }, + { + "#": 3583 + }, + { + "#": 3584 + }, + { + "#": 3585 + }, + { + "#": 3586 + }, + { + "#": 3587 + }, + { + "#": 3588 + }, + { + "#": 3589 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 81, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3591 + }, + "angle": 0, + "vertices": { + "#": 3592 + }, + "position": { + "#": 3613 + }, + "force": { + "#": 3614 + }, + "torque": 0, + "positionImpulse": { + "#": 3615 + }, + "constraintImpulse": { + "#": 3616 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3617 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3618 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3619 + }, + "circleRadius": 20, + "bounds": { + "#": 3621 + }, + "positionPrev": { + "#": 3624 + }, + "anglePrev": 0, + "axes": { + "#": 3625 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3590 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3590 + } + ], + [ + { + "#": 3593 + }, + { + "#": 3594 + }, + { + "#": 3595 + }, + { + "#": 3596 + }, + { + "#": 3597 + }, + { + "#": 3598 + }, + { + "#": 3599 + }, + { + "#": 3600 + }, + { + "#": 3601 + }, + { + "#": 3602 + }, + { + "#": 3603 + }, + { + "#": 3604 + }, + { + "#": 3605 + }, + { + "#": 3606 + }, + { + "#": 3607 + }, + { + "#": 3608 + }, + { + "#": 3609 + }, + { + "#": 3610 + }, + { + "#": 3611 + }, + { + "#": 3612 + } + ], + { + "x": 496.556, + "y": 399.439, + "index": 0, + "body": { + "#": 3590 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 405.39, + "index": 1, + "body": { + "#": 3590 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 410.452, + "index": 2, + "body": { + "#": 3590 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 414.13, + "index": 3, + "body": { + "#": 3590 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 416.064, + "index": 4, + "body": { + "#": 3590 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 416.064, + "index": 5, + "body": { + "#": 3590 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 414.13, + "index": 6, + "body": { + "#": 3590 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 410.452, + "index": 7, + "body": { + "#": 3590 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 405.39, + "index": 8, + "body": { + "#": 3590 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 399.439, + "index": 9, + "body": { + "#": 3590 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 393.181, + "index": 10, + "body": { + "#": 3590 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 387.23, + "index": 11, + "body": { + "#": 3590 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 382.168, + "index": 12, + "body": { + "#": 3590 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 378.49, + "index": 13, + "body": { + "#": 3590 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 376.556, + "index": 14, + "body": { + "#": 3590 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 376.556, + "index": 15, + "body": { + "#": 3590 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 378.49, + "index": 16, + "body": { + "#": 3590 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 382.168, + "index": 17, + "body": { + "#": 3590 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 387.23, + "index": 18, + "body": { + "#": 3590 + }, + "isInternal": false + }, + { + "x": 496.556, + "y": 393.181, + "index": 19, + "body": { + "#": 3590 + }, + "isInternal": false + }, + { + "x": 476.802, + "y": 396.31 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3620 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3622 + }, + "max": { + "#": 3623 + } + }, + { + "x": 457.048, + "y": 376.556 + }, + { + "x": 496.556, + "y": 416.064 + }, + { + "x": 476.802, + "y": 396.31 + }, + [ + { + "#": 3626 + }, + { + "#": 3627 + }, + { + "#": 3628 + }, + { + "#": 3629 + }, + { + "#": 3630 + }, + { + "#": 3631 + }, + { + "#": 3632 + }, + { + "#": 3633 + }, + { + "#": 3634 + }, + { + "#": 3635 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 82, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3637 + }, + "angle": 0, + "vertices": { + "#": 3638 + }, + "position": { + "#": 3659 + }, + "force": { + "#": 3660 + }, + "torque": 0, + "positionImpulse": { + "#": 3661 + }, + "constraintImpulse": { + "#": 3662 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3663 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3664 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3665 + }, + "circleRadius": 20, + "bounds": { + "#": 3667 + }, + "positionPrev": { + "#": 3670 + }, + "anglePrev": 0, + "axes": { + "#": 3671 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3636 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3636 + } + ], + [ + { + "#": 3639 + }, + { + "#": 3640 + }, + { + "#": 3641 + }, + { + "#": 3642 + }, + { + "#": 3643 + }, + { + "#": 3644 + }, + { + "#": 3645 + }, + { + "#": 3646 + }, + { + "#": 3647 + }, + { + "#": 3648 + }, + { + "#": 3649 + }, + { + "#": 3650 + }, + { + "#": 3651 + }, + { + "#": 3652 + }, + { + "#": 3653 + }, + { + "#": 3654 + }, + { + "#": 3655 + }, + { + "#": 3656 + }, + { + "#": 3657 + }, + { + "#": 3658 + } + ], + { + "x": 556.064, + "y": 399.439, + "index": 0, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 405.39, + "index": 1, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 410.452, + "index": 2, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 414.13, + "index": 3, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 416.064, + "index": 4, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 416.064, + "index": 5, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 414.13, + "index": 6, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 410.452, + "index": 7, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 405.39, + "index": 8, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 399.439, + "index": 9, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 393.181, + "index": 10, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 387.23, + "index": 11, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 382.168, + "index": 12, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 378.49, + "index": 13, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 376.556, + "index": 14, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 376.556, + "index": 15, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 378.49, + "index": 16, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 382.168, + "index": 17, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 387.23, + "index": 18, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 556.064, + "y": 393.181, + "index": 19, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 536.31, + "y": 396.31 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3666 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3668 + }, + "max": { + "#": 3669 + } + }, + { + "x": 516.556, + "y": 376.556 + }, + { + "x": 556.064, + "y": 416.064 + }, + { + "x": 536.31, + "y": 396.31 + }, + [ + { + "#": 3672 + }, + { + "#": 3673 + }, + { + "#": 3674 + }, + { + "#": 3675 + }, + { + "#": 3676 + }, + { + "#": 3677 + }, + { + "#": 3678 + }, + { + "#": 3679 + }, + { + "#": 3680 + }, + { + "#": 3681 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 83, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3683 + }, + "angle": 0, + "vertices": { + "#": 3684 + }, + "position": { + "#": 3705 + }, + "force": { + "#": 3706 + }, + "torque": 0, + "positionImpulse": { + "#": 3707 + }, + "constraintImpulse": { + "#": 3708 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3709 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3710 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3711 + }, + "circleRadius": 20, + "bounds": { + "#": 3713 + }, + "positionPrev": { + "#": 3716 + }, + "anglePrev": 0, + "axes": { + "#": 3717 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3682 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3682 + } + ], + [ + { + "#": 3685 + }, + { + "#": 3686 + }, + { + "#": 3687 + }, + { + "#": 3688 + }, + { + "#": 3689 + }, + { + "#": 3690 + }, + { + "#": 3691 + }, + { + "#": 3692 + }, + { + "#": 3693 + }, + { + "#": 3694 + }, + { + "#": 3695 + }, + { + "#": 3696 + }, + { + "#": 3697 + }, + { + "#": 3698 + }, + { + "#": 3699 + }, + { + "#": 3700 + }, + { + "#": 3701 + }, + { + "#": 3702 + }, + { + "#": 3703 + }, + { + "#": 3704 + } + ], + { + "x": 615.572, + "y": 399.439, + "index": 0, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 405.39, + "index": 1, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 410.452, + "index": 2, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 414.13, + "index": 3, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 416.064, + "index": 4, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 416.064, + "index": 5, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 414.13, + "index": 6, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 410.452, + "index": 7, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 405.39, + "index": 8, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 399.439, + "index": 9, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 393.181, + "index": 10, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 387.23, + "index": 11, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 382.168, + "index": 12, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 378.49, + "index": 13, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 376.556, + "index": 14, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 376.556, + "index": 15, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 378.49, + "index": 16, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 382.168, + "index": 17, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 387.23, + "index": 18, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 615.572, + "y": 393.181, + "index": 19, + "body": { + "#": 3682 + }, + "isInternal": false + }, + { + "x": 595.818, + "y": 396.31 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3712 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3714 + }, + "max": { + "#": 3715 + } + }, + { + "x": 576.064, + "y": 376.556 + }, + { + "x": 615.572, + "y": 416.064 + }, + { + "x": 595.818, + "y": 396.31 + }, + [ + { + "#": 3718 + }, + { + "#": 3719 + }, + { + "#": 3720 + }, + { + "#": 3721 + }, + { + "#": 3722 + }, + { + "#": 3723 + }, + { + "#": 3724 + }, + { + "#": 3725 + }, + { + "#": 3726 + }, + { + "#": 3727 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 84, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3729 + }, + "angle": 0, + "vertices": { + "#": 3730 + }, + "position": { + "#": 3751 + }, + "force": { + "#": 3752 + }, + "torque": 0, + "positionImpulse": { + "#": 3753 + }, + "constraintImpulse": { + "#": 3754 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3755 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3756 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3757 + }, + "circleRadius": 20, + "bounds": { + "#": 3759 + }, + "positionPrev": { + "#": 3762 + }, + "anglePrev": 0, + "axes": { + "#": 3763 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3728 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3728 + } + ], + [ + { + "#": 3731 + }, + { + "#": 3732 + }, + { + "#": 3733 + }, + { + "#": 3734 + }, + { + "#": 3735 + }, + { + "#": 3736 + }, + { + "#": 3737 + }, + { + "#": 3738 + }, + { + "#": 3739 + }, + { + "#": 3740 + }, + { + "#": 3741 + }, + { + "#": 3742 + }, + { + "#": 3743 + }, + { + "#": 3744 + }, + { + "#": 3745 + }, + { + "#": 3746 + }, + { + "#": 3747 + }, + { + "#": 3748 + }, + { + "#": 3749 + }, + { + "#": 3750 + } + ], + { + "x": 675.08, + "y": 399.439, + "index": 0, + "body": { + "#": 3728 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 405.39, + "index": 1, + "body": { + "#": 3728 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 410.452, + "index": 2, + "body": { + "#": 3728 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 414.13, + "index": 3, + "body": { + "#": 3728 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 416.064, + "index": 4, + "body": { + "#": 3728 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 416.064, + "index": 5, + "body": { + "#": 3728 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 414.13, + "index": 6, + "body": { + "#": 3728 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 410.452, + "index": 7, + "body": { + "#": 3728 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 405.39, + "index": 8, + "body": { + "#": 3728 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 399.439, + "index": 9, + "body": { + "#": 3728 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 393.181, + "index": 10, + "body": { + "#": 3728 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 387.23, + "index": 11, + "body": { + "#": 3728 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 382.168, + "index": 12, + "body": { + "#": 3728 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 378.49, + "index": 13, + "body": { + "#": 3728 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 376.556, + "index": 14, + "body": { + "#": 3728 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 376.556, + "index": 15, + "body": { + "#": 3728 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 378.49, + "index": 16, + "body": { + "#": 3728 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 382.168, + "index": 17, + "body": { + "#": 3728 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 387.23, + "index": 18, + "body": { + "#": 3728 + }, + "isInternal": false + }, + { + "x": 675.08, + "y": 393.181, + "index": 19, + "body": { + "#": 3728 + }, + "isInternal": false + }, + { + "x": 655.326, + "y": 396.31 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3758 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3760 + }, + "max": { + "#": 3761 + } + }, + { + "x": 635.572, + "y": 376.556 + }, + { + "x": 675.08, + "y": 416.064 + }, + { + "x": 655.326, + "y": 396.31 + }, + [ + { + "#": 3764 + }, + { + "#": 3765 + }, + { + "#": 3766 + }, + { + "#": 3767 + }, + { + "#": 3768 + }, + { + "#": 3769 + }, + { + "#": 3770 + }, + { + "#": 3771 + }, + { + "#": 3772 + }, + { + "#": 3773 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 85, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3775 + }, + "angle": 0, + "vertices": { + "#": 3776 + }, + "position": { + "#": 3797 + }, + "force": { + "#": 3798 + }, + "torque": 0, + "positionImpulse": { + "#": 3799 + }, + "constraintImpulse": { + "#": 3800 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3801 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3802 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3803 + }, + "circleRadius": 20, + "bounds": { + "#": 3805 + }, + "positionPrev": { + "#": 3808 + }, + "anglePrev": 0, + "axes": { + "#": 3809 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3774 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3774 + } + ], + [ + { + "#": 3777 + }, + { + "#": 3778 + }, + { + "#": 3779 + }, + { + "#": 3780 + }, + { + "#": 3781 + }, + { + "#": 3782 + }, + { + "#": 3783 + }, + { + "#": 3784 + }, + { + "#": 3785 + }, + { + "#": 3786 + }, + { + "#": 3787 + }, + { + "#": 3788 + }, + { + "#": 3789 + }, + { + "#": 3790 + }, + { + "#": 3791 + }, + { + "#": 3792 + }, + { + "#": 3793 + }, + { + "#": 3794 + }, + { + "#": 3795 + }, + { + "#": 3796 + } + ], + { + "x": 139.508, + "y": 438.947, + "index": 0, + "body": { + "#": 3774 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 444.898, + "index": 1, + "body": { + "#": 3774 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 449.96, + "index": 2, + "body": { + "#": 3774 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 453.638, + "index": 3, + "body": { + "#": 3774 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 455.572, + "index": 4, + "body": { + "#": 3774 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 455.572, + "index": 5, + "body": { + "#": 3774 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 453.638, + "index": 6, + "body": { + "#": 3774 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 449.96, + "index": 7, + "body": { + "#": 3774 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 444.898, + "index": 8, + "body": { + "#": 3774 + }, + "isInternal": false + }, + { + "x": 100, + "y": 438.947, + "index": 9, + "body": { + "#": 3774 + }, + "isInternal": false + }, + { + "x": 100, + "y": 432.689, + "index": 10, + "body": { + "#": 3774 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 426.738, + "index": 11, + "body": { + "#": 3774 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 421.676, + "index": 12, + "body": { + "#": 3774 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 417.998, + "index": 13, + "body": { + "#": 3774 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 416.064, + "index": 14, + "body": { + "#": 3774 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 416.064, + "index": 15, + "body": { + "#": 3774 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 417.998, + "index": 16, + "body": { + "#": 3774 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 421.676, + "index": 17, + "body": { + "#": 3774 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 426.738, + "index": 18, + "body": { + "#": 3774 + }, + "isInternal": false + }, + { + "x": 139.508, + "y": 432.689, + "index": 19, + "body": { + "#": 3774 + }, + "isInternal": false + }, + { + "x": 119.754, + "y": 435.818 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3804 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3806 + }, + "max": { + "#": 3807 + } + }, + { + "x": 100, + "y": 416.064 + }, + { + "x": 139.508, + "y": 455.572 + }, + { + "x": 119.754, + "y": 435.818 + }, + [ + { + "#": 3810 + }, + { + "#": 3811 + }, + { + "#": 3812 + }, + { + "#": 3813 + }, + { + "#": 3814 + }, + { + "#": 3815 + }, + { + "#": 3816 + }, + { + "#": 3817 + }, + { + "#": 3818 + }, + { + "#": 3819 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 86, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3821 + }, + "angle": 0, + "vertices": { + "#": 3822 + }, + "position": { + "#": 3843 + }, + "force": { + "#": 3844 + }, + "torque": 0, + "positionImpulse": { + "#": 3845 + }, + "constraintImpulse": { + "#": 3846 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3847 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3848 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3849 + }, + "circleRadius": 20, + "bounds": { + "#": 3851 + }, + "positionPrev": { + "#": 3854 + }, + "anglePrev": 0, + "axes": { + "#": 3855 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3820 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3820 + } + ], + [ + { + "#": 3823 + }, + { + "#": 3824 + }, + { + "#": 3825 + }, + { + "#": 3826 + }, + { + "#": 3827 + }, + { + "#": 3828 + }, + { + "#": 3829 + }, + { + "#": 3830 + }, + { + "#": 3831 + }, + { + "#": 3832 + }, + { + "#": 3833 + }, + { + "#": 3834 + }, + { + "#": 3835 + }, + { + "#": 3836 + }, + { + "#": 3837 + }, + { + "#": 3838 + }, + { + "#": 3839 + }, + { + "#": 3840 + }, + { + "#": 3841 + }, + { + "#": 3842 + } + ], + { + "x": 199.016, + "y": 438.947, + "index": 0, + "body": { + "#": 3820 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 444.898, + "index": 1, + "body": { + "#": 3820 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 449.96, + "index": 2, + "body": { + "#": 3820 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 453.638, + "index": 3, + "body": { + "#": 3820 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 455.572, + "index": 4, + "body": { + "#": 3820 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 455.572, + "index": 5, + "body": { + "#": 3820 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 453.638, + "index": 6, + "body": { + "#": 3820 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 449.96, + "index": 7, + "body": { + "#": 3820 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 444.898, + "index": 8, + "body": { + "#": 3820 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 438.947, + "index": 9, + "body": { + "#": 3820 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 432.689, + "index": 10, + "body": { + "#": 3820 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 426.738, + "index": 11, + "body": { + "#": 3820 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 421.676, + "index": 12, + "body": { + "#": 3820 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 417.998, + "index": 13, + "body": { + "#": 3820 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 416.064, + "index": 14, + "body": { + "#": 3820 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 416.064, + "index": 15, + "body": { + "#": 3820 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 417.998, + "index": 16, + "body": { + "#": 3820 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 421.676, + "index": 17, + "body": { + "#": 3820 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 426.738, + "index": 18, + "body": { + "#": 3820 + }, + "isInternal": false + }, + { + "x": 199.016, + "y": 432.689, + "index": 19, + "body": { + "#": 3820 + }, + "isInternal": false + }, + { + "x": 179.262, + "y": 435.818 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3850 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3852 + }, + "max": { + "#": 3853 + } + }, + { + "x": 159.508, + "y": 416.064 + }, + { + "x": 199.016, + "y": 455.572 + }, + { + "x": 179.262, + "y": 435.818 + }, + [ + { + "#": 3856 + }, + { + "#": 3857 + }, + { + "#": 3858 + }, + { + "#": 3859 + }, + { + "#": 3860 + }, + { + "#": 3861 + }, + { + "#": 3862 + }, + { + "#": 3863 + }, + { + "#": 3864 + }, + { + "#": 3865 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 87, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3867 + }, + "angle": 0, + "vertices": { + "#": 3868 + }, + "position": { + "#": 3889 + }, + "force": { + "#": 3890 + }, + "torque": 0, + "positionImpulse": { + "#": 3891 + }, + "constraintImpulse": { + "#": 3892 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3893 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3894 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3895 + }, + "circleRadius": 20, + "bounds": { + "#": 3897 + }, + "positionPrev": { + "#": 3900 + }, + "anglePrev": 0, + "axes": { + "#": 3901 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3866 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3866 + } + ], + [ + { + "#": 3869 + }, + { + "#": 3870 + }, + { + "#": 3871 + }, + { + "#": 3872 + }, + { + "#": 3873 + }, + { + "#": 3874 + }, + { + "#": 3875 + }, + { + "#": 3876 + }, + { + "#": 3877 + }, + { + "#": 3878 + }, + { + "#": 3879 + }, + { + "#": 3880 + }, + { + "#": 3881 + }, + { + "#": 3882 + }, + { + "#": 3883 + }, + { + "#": 3884 + }, + { + "#": 3885 + }, + { + "#": 3886 + }, + { + "#": 3887 + }, + { + "#": 3888 + } + ], + { + "x": 258.524, + "y": 438.947, + "index": 0, + "body": { + "#": 3866 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 444.898, + "index": 1, + "body": { + "#": 3866 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 449.96, + "index": 2, + "body": { + "#": 3866 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 453.638, + "index": 3, + "body": { + "#": 3866 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 455.572, + "index": 4, + "body": { + "#": 3866 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 455.572, + "index": 5, + "body": { + "#": 3866 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 453.638, + "index": 6, + "body": { + "#": 3866 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 449.96, + "index": 7, + "body": { + "#": 3866 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 444.898, + "index": 8, + "body": { + "#": 3866 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 438.947, + "index": 9, + "body": { + "#": 3866 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 432.689, + "index": 10, + "body": { + "#": 3866 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 426.738, + "index": 11, + "body": { + "#": 3866 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 421.676, + "index": 12, + "body": { + "#": 3866 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 417.998, + "index": 13, + "body": { + "#": 3866 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 416.064, + "index": 14, + "body": { + "#": 3866 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 416.064, + "index": 15, + "body": { + "#": 3866 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 417.998, + "index": 16, + "body": { + "#": 3866 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 421.676, + "index": 17, + "body": { + "#": 3866 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 426.738, + "index": 18, + "body": { + "#": 3866 + }, + "isInternal": false + }, + { + "x": 258.524, + "y": 432.689, + "index": 19, + "body": { + "#": 3866 + }, + "isInternal": false + }, + { + "x": 238.77, + "y": 435.818 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3896 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3898 + }, + "max": { + "#": 3899 + } + }, + { + "x": 219.016, + "y": 416.064 + }, + { + "x": 258.524, + "y": 455.572 + }, + { + "x": 238.77, + "y": 435.818 + }, + [ + { + "#": 3902 + }, + { + "#": 3903 + }, + { + "#": 3904 + }, + { + "#": 3905 + }, + { + "#": 3906 + }, + { + "#": 3907 + }, + { + "#": 3908 + }, + { + "#": 3909 + }, + { + "#": 3910 + }, + { + "#": 3911 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 88, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3913 + }, + "angle": 0, + "vertices": { + "#": 3914 + }, + "position": { + "#": 3935 + }, + "force": { + "#": 3936 + }, + "torque": 0, + "positionImpulse": { + "#": 3937 + }, + "constraintImpulse": { + "#": 3938 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3939 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3940 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3941 + }, + "circleRadius": 20, + "bounds": { + "#": 3943 + }, + "positionPrev": { + "#": 3946 + }, + "anglePrev": 0, + "axes": { + "#": 3947 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3912 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3912 + } + ], + [ + { + "#": 3915 + }, + { + "#": 3916 + }, + { + "#": 3917 + }, + { + "#": 3918 + }, + { + "#": 3919 + }, + { + "#": 3920 + }, + { + "#": 3921 + }, + { + "#": 3922 + }, + { + "#": 3923 + }, + { + "#": 3924 + }, + { + "#": 3925 + }, + { + "#": 3926 + }, + { + "#": 3927 + }, + { + "#": 3928 + }, + { + "#": 3929 + }, + { + "#": 3930 + }, + { + "#": 3931 + }, + { + "#": 3932 + }, + { + "#": 3933 + }, + { + "#": 3934 + } + ], + { + "x": 318.032, + "y": 438.947, + "index": 0, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 444.898, + "index": 1, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 449.96, + "index": 2, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 453.638, + "index": 3, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 455.572, + "index": 4, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 455.572, + "index": 5, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 453.638, + "index": 6, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 449.96, + "index": 7, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 444.898, + "index": 8, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 438.947, + "index": 9, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 432.689, + "index": 10, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 426.738, + "index": 11, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 421.676, + "index": 12, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 417.998, + "index": 13, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 416.064, + "index": 14, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 416.064, + "index": 15, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 417.998, + "index": 16, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 421.676, + "index": 17, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 426.738, + "index": 18, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 318.032, + "y": 432.689, + "index": 19, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 298.278, + "y": 435.818 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3942 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3944 + }, + "max": { + "#": 3945 + } + }, + { + "x": 278.524, + "y": 416.064 + }, + { + "x": 318.032, + "y": 455.572 + }, + { + "x": 298.278, + "y": 435.818 + }, + [ + { + "#": 3948 + }, + { + "#": 3949 + }, + { + "#": 3950 + }, + { + "#": 3951 + }, + { + "#": 3952 + }, + { + "#": 3953 + }, + { + "#": 3954 + }, + { + "#": 3955 + }, + { + "#": 3956 + }, + { + "#": 3957 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 89, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3959 + }, + "angle": 0, + "vertices": { + "#": 3960 + }, + "position": { + "#": 3981 + }, + "force": { + "#": 3982 + }, + "torque": 0, + "positionImpulse": { + "#": 3983 + }, + "constraintImpulse": { + "#": 3984 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3985 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3986 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3987 + }, + "circleRadius": 20, + "bounds": { + "#": 3989 + }, + "positionPrev": { + "#": 3992 + }, + "anglePrev": 0, + "axes": { + "#": 3993 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3958 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3958 + } + ], + [ + { + "#": 3961 + }, + { + "#": 3962 + }, + { + "#": 3963 + }, + { + "#": 3964 + }, + { + "#": 3965 + }, + { + "#": 3966 + }, + { + "#": 3967 + }, + { + "#": 3968 + }, + { + "#": 3969 + }, + { + "#": 3970 + }, + { + "#": 3971 + }, + { + "#": 3972 + }, + { + "#": 3973 + }, + { + "#": 3974 + }, + { + "#": 3975 + }, + { + "#": 3976 + }, + { + "#": 3977 + }, + { + "#": 3978 + }, + { + "#": 3979 + }, + { + "#": 3980 + } + ], + { + "x": 377.54, + "y": 438.947, + "index": 0, + "body": { + "#": 3958 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 444.898, + "index": 1, + "body": { + "#": 3958 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 449.96, + "index": 2, + "body": { + "#": 3958 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 453.638, + "index": 3, + "body": { + "#": 3958 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 455.572, + "index": 4, + "body": { + "#": 3958 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 455.572, + "index": 5, + "body": { + "#": 3958 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 453.638, + "index": 6, + "body": { + "#": 3958 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 449.96, + "index": 7, + "body": { + "#": 3958 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 444.898, + "index": 8, + "body": { + "#": 3958 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 438.947, + "index": 9, + "body": { + "#": 3958 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 432.689, + "index": 10, + "body": { + "#": 3958 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 426.738, + "index": 11, + "body": { + "#": 3958 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 421.676, + "index": 12, + "body": { + "#": 3958 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 417.998, + "index": 13, + "body": { + "#": 3958 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 416.064, + "index": 14, + "body": { + "#": 3958 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 416.064, + "index": 15, + "body": { + "#": 3958 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 417.998, + "index": 16, + "body": { + "#": 3958 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 421.676, + "index": 17, + "body": { + "#": 3958 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 426.738, + "index": 18, + "body": { + "#": 3958 + }, + "isInternal": false + }, + { + "x": 377.54, + "y": 432.689, + "index": 19, + "body": { + "#": 3958 + }, + "isInternal": false + }, + { + "x": 357.786, + "y": 435.818 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3988 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3990 + }, + "max": { + "#": 3991 + } + }, + { + "x": 338.032, + "y": 416.064 + }, + { + "x": 377.54, + "y": 455.572 + }, + { + "x": 357.786, + "y": 435.818 + }, + [ + { + "#": 3994 + }, + { + "#": 3995 + }, + { + "#": 3996 + }, + { + "#": 3997 + }, + { + "#": 3998 + }, + { + "#": 3999 + }, + { + "#": 4000 + }, + { + "#": 4001 + }, + { + "#": 4002 + }, + { + "#": 4003 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 90, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4005 + }, + "angle": 0, + "vertices": { + "#": 4006 + }, + "position": { + "#": 4027 + }, + "force": { + "#": 4028 + }, + "torque": 0, + "positionImpulse": { + "#": 4029 + }, + "constraintImpulse": { + "#": 4030 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4031 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4032 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4033 + }, + "circleRadius": 20, + "bounds": { + "#": 4035 + }, + "positionPrev": { + "#": 4038 + }, + "anglePrev": 0, + "axes": { + "#": 4039 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4004 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4004 + } + ], + [ + { + "#": 4007 + }, + { + "#": 4008 + }, + { + "#": 4009 + }, + { + "#": 4010 + }, + { + "#": 4011 + }, + { + "#": 4012 + }, + { + "#": 4013 + }, + { + "#": 4014 + }, + { + "#": 4015 + }, + { + "#": 4016 + }, + { + "#": 4017 + }, + { + "#": 4018 + }, + { + "#": 4019 + }, + { + "#": 4020 + }, + { + "#": 4021 + }, + { + "#": 4022 + }, + { + "#": 4023 + }, + { + "#": 4024 + }, + { + "#": 4025 + }, + { + "#": 4026 + } + ], + { + "x": 437.048, + "y": 438.947, + "index": 0, + "body": { + "#": 4004 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 444.898, + "index": 1, + "body": { + "#": 4004 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 449.96, + "index": 2, + "body": { + "#": 4004 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 453.638, + "index": 3, + "body": { + "#": 4004 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 455.572, + "index": 4, + "body": { + "#": 4004 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 455.572, + "index": 5, + "body": { + "#": 4004 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 453.638, + "index": 6, + "body": { + "#": 4004 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 449.96, + "index": 7, + "body": { + "#": 4004 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 444.898, + "index": 8, + "body": { + "#": 4004 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 438.947, + "index": 9, + "body": { + "#": 4004 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 432.689, + "index": 10, + "body": { + "#": 4004 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 426.738, + "index": 11, + "body": { + "#": 4004 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 421.676, + "index": 12, + "body": { + "#": 4004 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 417.998, + "index": 13, + "body": { + "#": 4004 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 416.064, + "index": 14, + "body": { + "#": 4004 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 416.064, + "index": 15, + "body": { + "#": 4004 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 417.998, + "index": 16, + "body": { + "#": 4004 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 421.676, + "index": 17, + "body": { + "#": 4004 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 426.738, + "index": 18, + "body": { + "#": 4004 + }, + "isInternal": false + }, + { + "x": 437.048, + "y": 432.689, + "index": 19, + "body": { + "#": 4004 + }, + "isInternal": false + }, + { + "x": 417.294, + "y": 435.818 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4034 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4036 + }, + "max": { + "#": 4037 + } + }, + { + "x": 397.54, + "y": 416.064 + }, + { + "x": 437.048, + "y": 455.572 + }, + { + "x": 417.294, + "y": 435.818 + }, + [ + { + "#": 4040 + }, + { + "#": 4041 + }, + { + "#": 4042 + }, + { + "#": 4043 + }, + { + "#": 4044 + }, + { + "#": 4045 + }, + { + "#": 4046 + }, + { + "#": 4047 + }, + { + "#": 4048 + }, + { + "#": 4049 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 91, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4051 + }, + "angle": 0, + "vertices": { + "#": 4052 + }, + "position": { + "#": 4073 + }, + "force": { + "#": 4074 + }, + "torque": 0, + "positionImpulse": { + "#": 4075 + }, + "constraintImpulse": { + "#": 4076 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4077 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4078 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4079 + }, + "circleRadius": 20, + "bounds": { + "#": 4081 + }, + "positionPrev": { + "#": 4084 + }, + "anglePrev": 0, + "axes": { + "#": 4085 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4050 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4050 + } + ], + [ + { + "#": 4053 + }, + { + "#": 4054 + }, + { + "#": 4055 + }, + { + "#": 4056 + }, + { + "#": 4057 + }, + { + "#": 4058 + }, + { + "#": 4059 + }, + { + "#": 4060 + }, + { + "#": 4061 + }, + { + "#": 4062 + }, + { + "#": 4063 + }, + { + "#": 4064 + }, + { + "#": 4065 + }, + { + "#": 4066 + }, + { + "#": 4067 + }, + { + "#": 4068 + }, + { + "#": 4069 + }, + { + "#": 4070 + }, + { + "#": 4071 + }, + { + "#": 4072 + } + ], + { + "x": 496.556, + "y": 438.947, + "index": 0, + "body": { + "#": 4050 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 444.898, + "index": 1, + "body": { + "#": 4050 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 449.96, + "index": 2, + "body": { + "#": 4050 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 453.638, + "index": 3, + "body": { + "#": 4050 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 455.572, + "index": 4, + "body": { + "#": 4050 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 455.572, + "index": 5, + "body": { + "#": 4050 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 453.638, + "index": 6, + "body": { + "#": 4050 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 449.96, + "index": 7, + "body": { + "#": 4050 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 444.898, + "index": 8, + "body": { + "#": 4050 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 438.947, + "index": 9, + "body": { + "#": 4050 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 432.689, + "index": 10, + "body": { + "#": 4050 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 426.738, + "index": 11, + "body": { + "#": 4050 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 421.676, + "index": 12, + "body": { + "#": 4050 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 417.998, + "index": 13, + "body": { + "#": 4050 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 416.064, + "index": 14, + "body": { + "#": 4050 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 416.064, + "index": 15, + "body": { + "#": 4050 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 417.998, + "index": 16, + "body": { + "#": 4050 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 421.676, + "index": 17, + "body": { + "#": 4050 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 426.738, + "index": 18, + "body": { + "#": 4050 + }, + "isInternal": false + }, + { + "x": 496.556, + "y": 432.689, + "index": 19, + "body": { + "#": 4050 + }, + "isInternal": false + }, + { + "x": 476.802, + "y": 435.818 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4080 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4082 + }, + "max": { + "#": 4083 + } + }, + { + "x": 457.048, + "y": 416.064 + }, + { + "x": 496.556, + "y": 455.572 + }, + { + "x": 476.802, + "y": 435.818 + }, + [ + { + "#": 4086 + }, + { + "#": 4087 + }, + { + "#": 4088 + }, + { + "#": 4089 + }, + { + "#": 4090 + }, + { + "#": 4091 + }, + { + "#": 4092 + }, + { + "#": 4093 + }, + { + "#": 4094 + }, + { + "#": 4095 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 92, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4097 + }, + "angle": 0, + "vertices": { + "#": 4098 + }, + "position": { + "#": 4119 + }, + "force": { + "#": 4120 + }, + "torque": 0, + "positionImpulse": { + "#": 4121 + }, + "constraintImpulse": { + "#": 4122 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4123 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4124 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4125 + }, + "circleRadius": 20, + "bounds": { + "#": 4127 + }, + "positionPrev": { + "#": 4130 + }, + "anglePrev": 0, + "axes": { + "#": 4131 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4096 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4096 + } + ], + [ + { + "#": 4099 + }, + { + "#": 4100 + }, + { + "#": 4101 + }, + { + "#": 4102 + }, + { + "#": 4103 + }, + { + "#": 4104 + }, + { + "#": 4105 + }, + { + "#": 4106 + }, + { + "#": 4107 + }, + { + "#": 4108 + }, + { + "#": 4109 + }, + { + "#": 4110 + }, + { + "#": 4111 + }, + { + "#": 4112 + }, + { + "#": 4113 + }, + { + "#": 4114 + }, + { + "#": 4115 + }, + { + "#": 4116 + }, + { + "#": 4117 + }, + { + "#": 4118 + } + ], + { + "x": 556.064, + "y": 438.947, + "index": 0, + "body": { + "#": 4096 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 444.898, + "index": 1, + "body": { + "#": 4096 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 449.96, + "index": 2, + "body": { + "#": 4096 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 453.638, + "index": 3, + "body": { + "#": 4096 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 455.572, + "index": 4, + "body": { + "#": 4096 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 455.572, + "index": 5, + "body": { + "#": 4096 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 453.638, + "index": 6, + "body": { + "#": 4096 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 449.96, + "index": 7, + "body": { + "#": 4096 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 444.898, + "index": 8, + "body": { + "#": 4096 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 438.947, + "index": 9, + "body": { + "#": 4096 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 432.689, + "index": 10, + "body": { + "#": 4096 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 426.738, + "index": 11, + "body": { + "#": 4096 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 421.676, + "index": 12, + "body": { + "#": 4096 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 417.998, + "index": 13, + "body": { + "#": 4096 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 416.064, + "index": 14, + "body": { + "#": 4096 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 416.064, + "index": 15, + "body": { + "#": 4096 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 417.998, + "index": 16, + "body": { + "#": 4096 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 421.676, + "index": 17, + "body": { + "#": 4096 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 426.738, + "index": 18, + "body": { + "#": 4096 + }, + "isInternal": false + }, + { + "x": 556.064, + "y": 432.689, + "index": 19, + "body": { + "#": 4096 + }, + "isInternal": false + }, + { + "x": 536.31, + "y": 435.818 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4126 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4128 + }, + "max": { + "#": 4129 + } + }, + { + "x": 516.556, + "y": 416.064 + }, + { + "x": 556.064, + "y": 455.572 + }, + { + "x": 536.31, + "y": 435.818 + }, + [ + { + "#": 4132 + }, + { + "#": 4133 + }, + { + "#": 4134 + }, + { + "#": 4135 + }, + { + "#": 4136 + }, + { + "#": 4137 + }, + { + "#": 4138 + }, + { + "#": 4139 + }, + { + "#": 4140 + }, + { + "#": 4141 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 93, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4143 + }, + "angle": 0, + "vertices": { + "#": 4144 + }, + "position": { + "#": 4165 + }, + "force": { + "#": 4166 + }, + "torque": 0, + "positionImpulse": { + "#": 4167 + }, + "constraintImpulse": { + "#": 4168 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4169 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4170 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4171 + }, + "circleRadius": 20, + "bounds": { + "#": 4173 + }, + "positionPrev": { + "#": 4176 + }, + "anglePrev": 0, + "axes": { + "#": 4177 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4142 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4142 + } + ], + [ + { + "#": 4145 + }, + { + "#": 4146 + }, + { + "#": 4147 + }, + { + "#": 4148 + }, + { + "#": 4149 + }, + { + "#": 4150 + }, + { + "#": 4151 + }, + { + "#": 4152 + }, + { + "#": 4153 + }, + { + "#": 4154 + }, + { + "#": 4155 + }, + { + "#": 4156 + }, + { + "#": 4157 + }, + { + "#": 4158 + }, + { + "#": 4159 + }, + { + "#": 4160 + }, + { + "#": 4161 + }, + { + "#": 4162 + }, + { + "#": 4163 + }, + { + "#": 4164 + } + ], + { + "x": 615.572, + "y": 438.947, + "index": 0, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 444.898, + "index": 1, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 449.96, + "index": 2, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 453.638, + "index": 3, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 455.572, + "index": 4, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 455.572, + "index": 5, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 453.638, + "index": 6, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 449.96, + "index": 7, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 444.898, + "index": 8, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 438.947, + "index": 9, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 432.689, + "index": 10, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 426.738, + "index": 11, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 421.676, + "index": 12, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 417.998, + "index": 13, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 416.064, + "index": 14, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 416.064, + "index": 15, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 417.998, + "index": 16, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 421.676, + "index": 17, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 426.738, + "index": 18, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 615.572, + "y": 432.689, + "index": 19, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 595.818, + "y": 435.818 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4172 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4174 + }, + "max": { + "#": 4175 + } + }, + { + "x": 576.064, + "y": 416.064 + }, + { + "x": 615.572, + "y": 455.572 + }, + { + "x": 595.818, + "y": 435.818 + }, + [ + { + "#": 4178 + }, + { + "#": 4179 + }, + { + "#": 4180 + }, + { + "#": 4181 + }, + { + "#": 4182 + }, + { + "#": 4183 + }, + { + "#": 4184 + }, + { + "#": 4185 + }, + { + "#": 4186 + }, + { + "#": 4187 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 94, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4189 + }, + "angle": 0, + "vertices": { + "#": 4190 + }, + "position": { + "#": 4211 + }, + "force": { + "#": 4212 + }, + "torque": 0, + "positionImpulse": { + "#": 4213 + }, + "constraintImpulse": { + "#": 4214 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4215 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4216 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4217 + }, + "circleRadius": 20, + "bounds": { + "#": 4219 + }, + "positionPrev": { + "#": 4222 + }, + "anglePrev": 0, + "axes": { + "#": 4223 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4188 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4188 + } + ], + [ + { + "#": 4191 + }, + { + "#": 4192 + }, + { + "#": 4193 + }, + { + "#": 4194 + }, + { + "#": 4195 + }, + { + "#": 4196 + }, + { + "#": 4197 + }, + { + "#": 4198 + }, + { + "#": 4199 + }, + { + "#": 4200 + }, + { + "#": 4201 + }, + { + "#": 4202 + }, + { + "#": 4203 + }, + { + "#": 4204 + }, + { + "#": 4205 + }, + { + "#": 4206 + }, + { + "#": 4207 + }, + { + "#": 4208 + }, + { + "#": 4209 + }, + { + "#": 4210 + } + ], + { + "x": 675.08, + "y": 438.947, + "index": 0, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 444.898, + "index": 1, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 449.96, + "index": 2, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 453.638, + "index": 3, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 455.572, + "index": 4, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 455.572, + "index": 5, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 453.638, + "index": 6, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 449.96, + "index": 7, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 444.898, + "index": 8, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 438.947, + "index": 9, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 432.689, + "index": 10, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 426.738, + "index": 11, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 421.676, + "index": 12, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 417.998, + "index": 13, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 416.064, + "index": 14, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 416.064, + "index": 15, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 417.998, + "index": 16, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 421.676, + "index": 17, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 426.738, + "index": 18, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 675.08, + "y": 432.689, + "index": 19, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 655.326, + "y": 435.818 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4218 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4220 + }, + "max": { + "#": 4221 + } + }, + { + "x": 635.572, + "y": 416.064 + }, + { + "x": 675.08, + "y": 455.572 + }, + { + "x": 655.326, + "y": 435.818 + }, + [ + { + "#": 4224 + }, + { + "#": 4225 + }, + { + "#": 4226 + }, + { + "#": 4227 + }, + { + "#": 4228 + }, + { + "#": 4229 + }, + { + "#": 4230 + }, + { + "#": 4231 + }, + { + "#": 4232 + }, + { + "#": 4233 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 95, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4235 + }, + "angle": 0, + "vertices": { + "#": 4236 + }, + "position": { + "#": 4257 + }, + "force": { + "#": 4258 + }, + "torque": 0, + "positionImpulse": { + "#": 4259 + }, + "constraintImpulse": { + "#": 4260 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4261 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4262 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4263 + }, + "circleRadius": 20, + "bounds": { + "#": 4265 + }, + "positionPrev": { + "#": 4268 + }, + "anglePrev": 0, + "axes": { + "#": 4269 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4234 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4234 + } + ], + [ + { + "#": 4237 + }, + { + "#": 4238 + }, + { + "#": 4239 + }, + { + "#": 4240 + }, + { + "#": 4241 + }, + { + "#": 4242 + }, + { + "#": 4243 + }, + { + "#": 4244 + }, + { + "#": 4245 + }, + { + "#": 4246 + }, + { + "#": 4247 + }, + { + "#": 4248 + }, + { + "#": 4249 + }, + { + "#": 4250 + }, + { + "#": 4251 + }, + { + "#": 4252 + }, + { + "#": 4253 + }, + { + "#": 4254 + }, + { + "#": 4255 + }, + { + "#": 4256 + } + ], + { + "x": 139.508, + "y": 478.455, + "index": 0, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 484.406, + "index": 1, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 489.468, + "index": 2, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 493.146, + "index": 3, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 495.08, + "index": 4, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 495.08, + "index": 5, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 493.146, + "index": 6, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 489.468, + "index": 7, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 484.406, + "index": 8, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 100, + "y": 478.455, + "index": 9, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 100, + "y": 472.197, + "index": 10, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 466.246, + "index": 11, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 461.184, + "index": 12, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 457.506, + "index": 13, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 455.572, + "index": 14, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 455.572, + "index": 15, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 457.506, + "index": 16, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 461.184, + "index": 17, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 466.246, + "index": 18, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 139.508, + "y": 472.197, + "index": 19, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 119.754, + "y": 475.326 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4264 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4266 + }, + "max": { + "#": 4267 + } + }, + { + "x": 100, + "y": 455.572 + }, + { + "x": 139.508, + "y": 495.08 + }, + { + "x": 119.754, + "y": 475.326 + }, + [ + { + "#": 4270 + }, + { + "#": 4271 + }, + { + "#": 4272 + }, + { + "#": 4273 + }, + { + "#": 4274 + }, + { + "#": 4275 + }, + { + "#": 4276 + }, + { + "#": 4277 + }, + { + "#": 4278 + }, + { + "#": 4279 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 96, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4281 + }, + "angle": 0, + "vertices": { + "#": 4282 + }, + "position": { + "#": 4303 + }, + "force": { + "#": 4304 + }, + "torque": 0, + "positionImpulse": { + "#": 4305 + }, + "constraintImpulse": { + "#": 4306 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4307 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4308 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4309 + }, + "circleRadius": 20, + "bounds": { + "#": 4311 + }, + "positionPrev": { + "#": 4314 + }, + "anglePrev": 0, + "axes": { + "#": 4315 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4280 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4280 + } + ], + [ + { + "#": 4283 + }, + { + "#": 4284 + }, + { + "#": 4285 + }, + { + "#": 4286 + }, + { + "#": 4287 + }, + { + "#": 4288 + }, + { + "#": 4289 + }, + { + "#": 4290 + }, + { + "#": 4291 + }, + { + "#": 4292 + }, + { + "#": 4293 + }, + { + "#": 4294 + }, + { + "#": 4295 + }, + { + "#": 4296 + }, + { + "#": 4297 + }, + { + "#": 4298 + }, + { + "#": 4299 + }, + { + "#": 4300 + }, + { + "#": 4301 + }, + { + "#": 4302 + } + ], + { + "x": 199.016, + "y": 478.455, + "index": 0, + "body": { + "#": 4280 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 484.406, + "index": 1, + "body": { + "#": 4280 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 489.468, + "index": 2, + "body": { + "#": 4280 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 493.146, + "index": 3, + "body": { + "#": 4280 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 495.08, + "index": 4, + "body": { + "#": 4280 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 495.08, + "index": 5, + "body": { + "#": 4280 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 493.146, + "index": 6, + "body": { + "#": 4280 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 489.468, + "index": 7, + "body": { + "#": 4280 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 484.406, + "index": 8, + "body": { + "#": 4280 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 478.455, + "index": 9, + "body": { + "#": 4280 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 472.197, + "index": 10, + "body": { + "#": 4280 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 466.246, + "index": 11, + "body": { + "#": 4280 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 461.184, + "index": 12, + "body": { + "#": 4280 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 457.506, + "index": 13, + "body": { + "#": 4280 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 455.572, + "index": 14, + "body": { + "#": 4280 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 455.572, + "index": 15, + "body": { + "#": 4280 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 457.506, + "index": 16, + "body": { + "#": 4280 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 461.184, + "index": 17, + "body": { + "#": 4280 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 466.246, + "index": 18, + "body": { + "#": 4280 + }, + "isInternal": false + }, + { + "x": 199.016, + "y": 472.197, + "index": 19, + "body": { + "#": 4280 + }, + "isInternal": false + }, + { + "x": 179.262, + "y": 475.326 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4310 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4312 + }, + "max": { + "#": 4313 + } + }, + { + "x": 159.508, + "y": 455.572 + }, + { + "x": 199.016, + "y": 495.08 + }, + { + "x": 179.262, + "y": 475.326 + }, + [ + { + "#": 4316 + }, + { + "#": 4317 + }, + { + "#": 4318 + }, + { + "#": 4319 + }, + { + "#": 4320 + }, + { + "#": 4321 + }, + { + "#": 4322 + }, + { + "#": 4323 + }, + { + "#": 4324 + }, + { + "#": 4325 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 97, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4327 + }, + "angle": 0, + "vertices": { + "#": 4328 + }, + "position": { + "#": 4349 + }, + "force": { + "#": 4350 + }, + "torque": 0, + "positionImpulse": { + "#": 4351 + }, + "constraintImpulse": { + "#": 4352 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4353 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4354 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4355 + }, + "circleRadius": 20, + "bounds": { + "#": 4357 + }, + "positionPrev": { + "#": 4360 + }, + "anglePrev": 0, + "axes": { + "#": 4361 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4326 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4326 + } + ], + [ + { + "#": 4329 + }, + { + "#": 4330 + }, + { + "#": 4331 + }, + { + "#": 4332 + }, + { + "#": 4333 + }, + { + "#": 4334 + }, + { + "#": 4335 + }, + { + "#": 4336 + }, + { + "#": 4337 + }, + { + "#": 4338 + }, + { + "#": 4339 + }, + { + "#": 4340 + }, + { + "#": 4341 + }, + { + "#": 4342 + }, + { + "#": 4343 + }, + { + "#": 4344 + }, + { + "#": 4345 + }, + { + "#": 4346 + }, + { + "#": 4347 + }, + { + "#": 4348 + } + ], + { + "x": 258.524, + "y": 478.455, + "index": 0, + "body": { + "#": 4326 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 484.406, + "index": 1, + "body": { + "#": 4326 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 489.468, + "index": 2, + "body": { + "#": 4326 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 493.146, + "index": 3, + "body": { + "#": 4326 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 495.08, + "index": 4, + "body": { + "#": 4326 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 495.08, + "index": 5, + "body": { + "#": 4326 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 493.146, + "index": 6, + "body": { + "#": 4326 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 489.468, + "index": 7, + "body": { + "#": 4326 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 484.406, + "index": 8, + "body": { + "#": 4326 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 478.455, + "index": 9, + "body": { + "#": 4326 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 472.197, + "index": 10, + "body": { + "#": 4326 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 466.246, + "index": 11, + "body": { + "#": 4326 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 461.184, + "index": 12, + "body": { + "#": 4326 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 457.506, + "index": 13, + "body": { + "#": 4326 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 455.572, + "index": 14, + "body": { + "#": 4326 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 455.572, + "index": 15, + "body": { + "#": 4326 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 457.506, + "index": 16, + "body": { + "#": 4326 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 461.184, + "index": 17, + "body": { + "#": 4326 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 466.246, + "index": 18, + "body": { + "#": 4326 + }, + "isInternal": false + }, + { + "x": 258.524, + "y": 472.197, + "index": 19, + "body": { + "#": 4326 + }, + "isInternal": false + }, + { + "x": 238.77, + "y": 475.326 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4356 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4358 + }, + "max": { + "#": 4359 + } + }, + { + "x": 219.016, + "y": 455.572 + }, + { + "x": 258.524, + "y": 495.08 + }, + { + "x": 238.77, + "y": 475.326 + }, + [ + { + "#": 4362 + }, + { + "#": 4363 + }, + { + "#": 4364 + }, + { + "#": 4365 + }, + { + "#": 4366 + }, + { + "#": 4367 + }, + { + "#": 4368 + }, + { + "#": 4369 + }, + { + "#": 4370 + }, + { + "#": 4371 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 98, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4373 + }, + "angle": 0, + "vertices": { + "#": 4374 + }, + "position": { + "#": 4395 + }, + "force": { + "#": 4396 + }, + "torque": 0, + "positionImpulse": { + "#": 4397 + }, + "constraintImpulse": { + "#": 4398 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4399 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4400 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4401 + }, + "circleRadius": 20, + "bounds": { + "#": 4403 + }, + "positionPrev": { + "#": 4406 + }, + "anglePrev": 0, + "axes": { + "#": 4407 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4372 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4372 + } + ], + [ + { + "#": 4375 + }, + { + "#": 4376 + }, + { + "#": 4377 + }, + { + "#": 4378 + }, + { + "#": 4379 + }, + { + "#": 4380 + }, + { + "#": 4381 + }, + { + "#": 4382 + }, + { + "#": 4383 + }, + { + "#": 4384 + }, + { + "#": 4385 + }, + { + "#": 4386 + }, + { + "#": 4387 + }, + { + "#": 4388 + }, + { + "#": 4389 + }, + { + "#": 4390 + }, + { + "#": 4391 + }, + { + "#": 4392 + }, + { + "#": 4393 + }, + { + "#": 4394 + } + ], + { + "x": 318.032, + "y": 478.455, + "index": 0, + "body": { + "#": 4372 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 484.406, + "index": 1, + "body": { + "#": 4372 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 489.468, + "index": 2, + "body": { + "#": 4372 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 493.146, + "index": 3, + "body": { + "#": 4372 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 495.08, + "index": 4, + "body": { + "#": 4372 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 495.08, + "index": 5, + "body": { + "#": 4372 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 493.146, + "index": 6, + "body": { + "#": 4372 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 489.468, + "index": 7, + "body": { + "#": 4372 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 484.406, + "index": 8, + "body": { + "#": 4372 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 478.455, + "index": 9, + "body": { + "#": 4372 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 472.197, + "index": 10, + "body": { + "#": 4372 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 466.246, + "index": 11, + "body": { + "#": 4372 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 461.184, + "index": 12, + "body": { + "#": 4372 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 457.506, + "index": 13, + "body": { + "#": 4372 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 455.572, + "index": 14, + "body": { + "#": 4372 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 455.572, + "index": 15, + "body": { + "#": 4372 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 457.506, + "index": 16, + "body": { + "#": 4372 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 461.184, + "index": 17, + "body": { + "#": 4372 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 466.246, + "index": 18, + "body": { + "#": 4372 + }, + "isInternal": false + }, + { + "x": 318.032, + "y": 472.197, + "index": 19, + "body": { + "#": 4372 + }, + "isInternal": false + }, + { + "x": 298.278, + "y": 475.326 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4402 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4404 + }, + "max": { + "#": 4405 + } + }, + { + "x": 278.524, + "y": 455.572 + }, + { + "x": 318.032, + "y": 495.08 + }, + { + "x": 298.278, + "y": 475.326 + }, + [ + { + "#": 4408 + }, + { + "#": 4409 + }, + { + "#": 4410 + }, + { + "#": 4411 + }, + { + "#": 4412 + }, + { + "#": 4413 + }, + { + "#": 4414 + }, + { + "#": 4415 + }, + { + "#": 4416 + }, + { + "#": 4417 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 99, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4419 + }, + "angle": 0, + "vertices": { + "#": 4420 + }, + "position": { + "#": 4441 + }, + "force": { + "#": 4442 + }, + "torque": 0, + "positionImpulse": { + "#": 4443 + }, + "constraintImpulse": { + "#": 4444 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4445 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4446 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4447 + }, + "circleRadius": 20, + "bounds": { + "#": 4449 + }, + "positionPrev": { + "#": 4452 + }, + "anglePrev": 0, + "axes": { + "#": 4453 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4418 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4418 + } + ], + [ + { + "#": 4421 + }, + { + "#": 4422 + }, + { + "#": 4423 + }, + { + "#": 4424 + }, + { + "#": 4425 + }, + { + "#": 4426 + }, + { + "#": 4427 + }, + { + "#": 4428 + }, + { + "#": 4429 + }, + { + "#": 4430 + }, + { + "#": 4431 + }, + { + "#": 4432 + }, + { + "#": 4433 + }, + { + "#": 4434 + }, + { + "#": 4435 + }, + { + "#": 4436 + }, + { + "#": 4437 + }, + { + "#": 4438 + }, + { + "#": 4439 + }, + { + "#": 4440 + } + ], + { + "x": 377.54, + "y": 478.455, + "index": 0, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 484.406, + "index": 1, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 489.468, + "index": 2, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 493.146, + "index": 3, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 495.08, + "index": 4, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 495.08, + "index": 5, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 493.146, + "index": 6, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 489.468, + "index": 7, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 484.406, + "index": 8, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 478.455, + "index": 9, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 472.197, + "index": 10, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 466.246, + "index": 11, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 461.184, + "index": 12, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 457.506, + "index": 13, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 455.572, + "index": 14, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 455.572, + "index": 15, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 457.506, + "index": 16, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 461.184, + "index": 17, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 466.246, + "index": 18, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 377.54, + "y": 472.197, + "index": 19, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 357.786, + "y": 475.326 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4448 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4450 + }, + "max": { + "#": 4451 + } + }, + { + "x": 338.032, + "y": 455.572 + }, + { + "x": 377.54, + "y": 495.08 + }, + { + "x": 357.786, + "y": 475.326 + }, + [ + { + "#": 4454 + }, + { + "#": 4455 + }, + { + "#": 4456 + }, + { + "#": 4457 + }, + { + "#": 4458 + }, + { + "#": 4459 + }, + { + "#": 4460 + }, + { + "#": 4461 + }, + { + "#": 4462 + }, + { + "#": 4463 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 100, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4465 + }, + "angle": 0, + "vertices": { + "#": 4466 + }, + "position": { + "#": 4487 + }, + "force": { + "#": 4488 + }, + "torque": 0, + "positionImpulse": { + "#": 4489 + }, + "constraintImpulse": { + "#": 4490 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4491 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4492 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4493 + }, + "circleRadius": 20, + "bounds": { + "#": 4495 + }, + "positionPrev": { + "#": 4498 + }, + "anglePrev": 0, + "axes": { + "#": 4499 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4464 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4464 + } + ], + [ + { + "#": 4467 + }, + { + "#": 4468 + }, + { + "#": 4469 + }, + { + "#": 4470 + }, + { + "#": 4471 + }, + { + "#": 4472 + }, + { + "#": 4473 + }, + { + "#": 4474 + }, + { + "#": 4475 + }, + { + "#": 4476 + }, + { + "#": 4477 + }, + { + "#": 4478 + }, + { + "#": 4479 + }, + { + "#": 4480 + }, + { + "#": 4481 + }, + { + "#": 4482 + }, + { + "#": 4483 + }, + { + "#": 4484 + }, + { + "#": 4485 + }, + { + "#": 4486 + } + ], + { + "x": 437.048, + "y": 478.455, + "index": 0, + "body": { + "#": 4464 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 484.406, + "index": 1, + "body": { + "#": 4464 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 489.468, + "index": 2, + "body": { + "#": 4464 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 493.146, + "index": 3, + "body": { + "#": 4464 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 495.08, + "index": 4, + "body": { + "#": 4464 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 495.08, + "index": 5, + "body": { + "#": 4464 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 493.146, + "index": 6, + "body": { + "#": 4464 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 489.468, + "index": 7, + "body": { + "#": 4464 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 484.406, + "index": 8, + "body": { + "#": 4464 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 478.455, + "index": 9, + "body": { + "#": 4464 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 472.197, + "index": 10, + "body": { + "#": 4464 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 466.246, + "index": 11, + "body": { + "#": 4464 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 461.184, + "index": 12, + "body": { + "#": 4464 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 457.506, + "index": 13, + "body": { + "#": 4464 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 455.572, + "index": 14, + "body": { + "#": 4464 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 455.572, + "index": 15, + "body": { + "#": 4464 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 457.506, + "index": 16, + "body": { + "#": 4464 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 461.184, + "index": 17, + "body": { + "#": 4464 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 466.246, + "index": 18, + "body": { + "#": 4464 + }, + "isInternal": false + }, + { + "x": 437.048, + "y": 472.197, + "index": 19, + "body": { + "#": 4464 + }, + "isInternal": false + }, + { + "x": 417.294, + "y": 475.326 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4494 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4496 + }, + "max": { + "#": 4497 + } + }, + { + "x": 397.54, + "y": 455.572 + }, + { + "x": 437.048, + "y": 495.08 + }, + { + "x": 417.294, + "y": 475.326 + }, + [ + { + "#": 4500 + }, + { + "#": 4501 + }, + { + "#": 4502 + }, + { + "#": 4503 + }, + { + "#": 4504 + }, + { + "#": 4505 + }, + { + "#": 4506 + }, + { + "#": 4507 + }, + { + "#": 4508 + }, + { + "#": 4509 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 101, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4511 + }, + "angle": 0, + "vertices": { + "#": 4512 + }, + "position": { + "#": 4533 + }, + "force": { + "#": 4534 + }, + "torque": 0, + "positionImpulse": { + "#": 4535 + }, + "constraintImpulse": { + "#": 4536 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4537 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4538 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4539 + }, + "circleRadius": 20, + "bounds": { + "#": 4541 + }, + "positionPrev": { + "#": 4544 + }, + "anglePrev": 0, + "axes": { + "#": 4545 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4510 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4510 + } + ], + [ + { + "#": 4513 + }, + { + "#": 4514 + }, + { + "#": 4515 + }, + { + "#": 4516 + }, + { + "#": 4517 + }, + { + "#": 4518 + }, + { + "#": 4519 + }, + { + "#": 4520 + }, + { + "#": 4521 + }, + { + "#": 4522 + }, + { + "#": 4523 + }, + { + "#": 4524 + }, + { + "#": 4525 + }, + { + "#": 4526 + }, + { + "#": 4527 + }, + { + "#": 4528 + }, + { + "#": 4529 + }, + { + "#": 4530 + }, + { + "#": 4531 + }, + { + "#": 4532 + } + ], + { + "x": 496.556, + "y": 478.455, + "index": 0, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 484.406, + "index": 1, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 489.468, + "index": 2, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 493.146, + "index": 3, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 495.08, + "index": 4, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 495.08, + "index": 5, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 493.146, + "index": 6, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 489.468, + "index": 7, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 484.406, + "index": 8, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 478.455, + "index": 9, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 472.197, + "index": 10, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 466.246, + "index": 11, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 461.184, + "index": 12, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 457.506, + "index": 13, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 455.572, + "index": 14, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 455.572, + "index": 15, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 457.506, + "index": 16, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 461.184, + "index": 17, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 466.246, + "index": 18, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 496.556, + "y": 472.197, + "index": 19, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 476.802, + "y": 475.326 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4540 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4542 + }, + "max": { + "#": 4543 + } + }, + { + "x": 457.048, + "y": 455.572 + }, + { + "x": 496.556, + "y": 495.08 + }, + { + "x": 476.802, + "y": 475.326 + }, + [ + { + "#": 4546 + }, + { + "#": 4547 + }, + { + "#": 4548 + }, + { + "#": 4549 + }, + { + "#": 4550 + }, + { + "#": 4551 + }, + { + "#": 4552 + }, + { + "#": 4553 + }, + { + "#": 4554 + }, + { + "#": 4555 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 102, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4557 + }, + "angle": 0, + "vertices": { + "#": 4558 + }, + "position": { + "#": 4579 + }, + "force": { + "#": 4580 + }, + "torque": 0, + "positionImpulse": { + "#": 4581 + }, + "constraintImpulse": { + "#": 4582 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4583 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4584 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4585 + }, + "circleRadius": 20, + "bounds": { + "#": 4587 + }, + "positionPrev": { + "#": 4590 + }, + "anglePrev": 0, + "axes": { + "#": 4591 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4556 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4556 + } + ], + [ + { + "#": 4559 + }, + { + "#": 4560 + }, + { + "#": 4561 + }, + { + "#": 4562 + }, + { + "#": 4563 + }, + { + "#": 4564 + }, + { + "#": 4565 + }, + { + "#": 4566 + }, + { + "#": 4567 + }, + { + "#": 4568 + }, + { + "#": 4569 + }, + { + "#": 4570 + }, + { + "#": 4571 + }, + { + "#": 4572 + }, + { + "#": 4573 + }, + { + "#": 4574 + }, + { + "#": 4575 + }, + { + "#": 4576 + }, + { + "#": 4577 + }, + { + "#": 4578 + } + ], + { + "x": 556.064, + "y": 478.455, + "index": 0, + "body": { + "#": 4556 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 484.406, + "index": 1, + "body": { + "#": 4556 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 489.468, + "index": 2, + "body": { + "#": 4556 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 493.146, + "index": 3, + "body": { + "#": 4556 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 495.08, + "index": 4, + "body": { + "#": 4556 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 495.08, + "index": 5, + "body": { + "#": 4556 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 493.146, + "index": 6, + "body": { + "#": 4556 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 489.468, + "index": 7, + "body": { + "#": 4556 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 484.406, + "index": 8, + "body": { + "#": 4556 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 478.455, + "index": 9, + "body": { + "#": 4556 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 472.197, + "index": 10, + "body": { + "#": 4556 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 466.246, + "index": 11, + "body": { + "#": 4556 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 461.184, + "index": 12, + "body": { + "#": 4556 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 457.506, + "index": 13, + "body": { + "#": 4556 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 455.572, + "index": 14, + "body": { + "#": 4556 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 455.572, + "index": 15, + "body": { + "#": 4556 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 457.506, + "index": 16, + "body": { + "#": 4556 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 461.184, + "index": 17, + "body": { + "#": 4556 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 466.246, + "index": 18, + "body": { + "#": 4556 + }, + "isInternal": false + }, + { + "x": 556.064, + "y": 472.197, + "index": 19, + "body": { + "#": 4556 + }, + "isInternal": false + }, + { + "x": 536.31, + "y": 475.326 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4586 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4588 + }, + "max": { + "#": 4589 + } + }, + { + "x": 516.556, + "y": 455.572 + }, + { + "x": 556.064, + "y": 495.08 + }, + { + "x": 536.31, + "y": 475.326 + }, + [ + { + "#": 4592 + }, + { + "#": 4593 + }, + { + "#": 4594 + }, + { + "#": 4595 + }, + { + "#": 4596 + }, + { + "#": 4597 + }, + { + "#": 4598 + }, + { + "#": 4599 + }, + { + "#": 4600 + }, + { + "#": 4601 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 103, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4603 + }, + "angle": 0, + "vertices": { + "#": 4604 + }, + "position": { + "#": 4625 + }, + "force": { + "#": 4626 + }, + "torque": 0, + "positionImpulse": { + "#": 4627 + }, + "constraintImpulse": { + "#": 4628 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4629 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4630 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4631 + }, + "circleRadius": 20, + "bounds": { + "#": 4633 + }, + "positionPrev": { + "#": 4636 + }, + "anglePrev": 0, + "axes": { + "#": 4637 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4602 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4602 + } + ], + [ + { + "#": 4605 + }, + { + "#": 4606 + }, + { + "#": 4607 + }, + { + "#": 4608 + }, + { + "#": 4609 + }, + { + "#": 4610 + }, + { + "#": 4611 + }, + { + "#": 4612 + }, + { + "#": 4613 + }, + { + "#": 4614 + }, + { + "#": 4615 + }, + { + "#": 4616 + }, + { + "#": 4617 + }, + { + "#": 4618 + }, + { + "#": 4619 + }, + { + "#": 4620 + }, + { + "#": 4621 + }, + { + "#": 4622 + }, + { + "#": 4623 + }, + { + "#": 4624 + } + ], + { + "x": 615.572, + "y": 478.455, + "index": 0, + "body": { + "#": 4602 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 484.406, + "index": 1, + "body": { + "#": 4602 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 489.468, + "index": 2, + "body": { + "#": 4602 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 493.146, + "index": 3, + "body": { + "#": 4602 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 495.08, + "index": 4, + "body": { + "#": 4602 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 495.08, + "index": 5, + "body": { + "#": 4602 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 493.146, + "index": 6, + "body": { + "#": 4602 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 489.468, + "index": 7, + "body": { + "#": 4602 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 484.406, + "index": 8, + "body": { + "#": 4602 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 478.455, + "index": 9, + "body": { + "#": 4602 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 472.197, + "index": 10, + "body": { + "#": 4602 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 466.246, + "index": 11, + "body": { + "#": 4602 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 461.184, + "index": 12, + "body": { + "#": 4602 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 457.506, + "index": 13, + "body": { + "#": 4602 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 455.572, + "index": 14, + "body": { + "#": 4602 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 455.572, + "index": 15, + "body": { + "#": 4602 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 457.506, + "index": 16, + "body": { + "#": 4602 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 461.184, + "index": 17, + "body": { + "#": 4602 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 466.246, + "index": 18, + "body": { + "#": 4602 + }, + "isInternal": false + }, + { + "x": 615.572, + "y": 472.197, + "index": 19, + "body": { + "#": 4602 + }, + "isInternal": false + }, + { + "x": 595.818, + "y": 475.326 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4632 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4634 + }, + "max": { + "#": 4635 + } + }, + { + "x": 576.064, + "y": 455.572 + }, + { + "x": 615.572, + "y": 495.08 + }, + { + "x": 595.818, + "y": 475.326 + }, + [ + { + "#": 4638 + }, + { + "#": 4639 + }, + { + "#": 4640 + }, + { + "#": 4641 + }, + { + "#": 4642 + }, + { + "#": 4643 + }, + { + "#": 4644 + }, + { + "#": 4645 + }, + { + "#": 4646 + }, + { + "#": 4647 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 104, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4649 + }, + "angle": 0, + "vertices": { + "#": 4650 + }, + "position": { + "#": 4671 + }, + "force": { + "#": 4672 + }, + "torque": 0, + "positionImpulse": { + "#": 4673 + }, + "constraintImpulse": { + "#": 4674 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4675 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4676 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4677 + }, + "circleRadius": 20, + "bounds": { + "#": 4679 + }, + "positionPrev": { + "#": 4682 + }, + "anglePrev": 0, + "axes": { + "#": 4683 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4648 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4648 + } + ], + [ + { + "#": 4651 + }, + { + "#": 4652 + }, + { + "#": 4653 + }, + { + "#": 4654 + }, + { + "#": 4655 + }, + { + "#": 4656 + }, + { + "#": 4657 + }, + { + "#": 4658 + }, + { + "#": 4659 + }, + { + "#": 4660 + }, + { + "#": 4661 + }, + { + "#": 4662 + }, + { + "#": 4663 + }, + { + "#": 4664 + }, + { + "#": 4665 + }, + { + "#": 4666 + }, + { + "#": 4667 + }, + { + "#": 4668 + }, + { + "#": 4669 + }, + { + "#": 4670 + } + ], + { + "x": 675.08, + "y": 478.455, + "index": 0, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 484.406, + "index": 1, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 489.468, + "index": 2, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 493.146, + "index": 3, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 495.08, + "index": 4, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 495.08, + "index": 5, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 493.146, + "index": 6, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 489.468, + "index": 7, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 484.406, + "index": 8, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 478.455, + "index": 9, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 472.197, + "index": 10, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 466.246, + "index": 11, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 461.184, + "index": 12, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 457.506, + "index": 13, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 455.572, + "index": 14, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 455.572, + "index": 15, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 457.506, + "index": 16, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 461.184, + "index": 17, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 466.246, + "index": 18, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 675.08, + "y": 472.197, + "index": 19, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 655.326, + "y": 475.326 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4678 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4680 + }, + "max": { + "#": 4681 + } + }, + { + "x": 635.572, + "y": 455.572 + }, + { + "x": 675.08, + "y": 495.08 + }, + { + "x": 655.326, + "y": 475.326 + }, + [ + { + "#": 4684 + }, + { + "#": 4685 + }, + { + "#": 4686 + }, + { + "#": 4687 + }, + { + "#": 4688 + }, + { + "#": 4689 + }, + { + "#": 4690 + }, + { + "#": 4691 + }, + { + "#": 4692 + }, + { + "#": 4693 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 4698 + }, + "max": { + "#": 4699 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/circleStack/circleStack-10.json b/test/node/refs/circleStack/circleStack-10.json new file mode 100644 index 00000000..b35fa846 --- /dev/null +++ b/test/node/refs/circleStack/circleStack-10.json @@ -0,0 +1,46998 @@ +[ + { + "id": 55, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 94 + }, + "composites": { + "#": 95 + }, + "label": "World", + "gravity": { + "#": 4800 + }, + "bounds": { + "#": 4801 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + [], + [ + { + "#": 96 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 97 + }, + "constraints": { + "#": 4798 + }, + "composites": { + "#": 4799 + }, + "label": "Stack" + }, + [ + { + "#": 98 + }, + { + "#": 145 + }, + { + "#": 192 + }, + { + "#": 239 + }, + { + "#": 286 + }, + { + "#": 333 + }, + { + "#": 380 + }, + { + "#": 427 + }, + { + "#": 474 + }, + { + "#": 521 + }, + { + "#": 568 + }, + { + "#": 615 + }, + { + "#": 662 + }, + { + "#": 709 + }, + { + "#": 756 + }, + { + "#": 803 + }, + { + "#": 850 + }, + { + "#": 897 + }, + { + "#": 944 + }, + { + "#": 991 + }, + { + "#": 1038 + }, + { + "#": 1085 + }, + { + "#": 1132 + }, + { + "#": 1179 + }, + { + "#": 1226 + }, + { + "#": 1273 + }, + { + "#": 1320 + }, + { + "#": 1367 + }, + { + "#": 1414 + }, + { + "#": 1461 + }, + { + "#": 1508 + }, + { + "#": 1555 + }, + { + "#": 1602 + }, + { + "#": 1649 + }, + { + "#": 1696 + }, + { + "#": 1743 + }, + { + "#": 1790 + }, + { + "#": 1837 + }, + { + "#": 1884 + }, + { + "#": 1931 + }, + { + "#": 1978 + }, + { + "#": 2025 + }, + { + "#": 2072 + }, + { + "#": 2119 + }, + { + "#": 2166 + }, + { + "#": 2213 + }, + { + "#": 2260 + }, + { + "#": 2307 + }, + { + "#": 2354 + }, + { + "#": 2401 + }, + { + "#": 2448 + }, + { + "#": 2495 + }, + { + "#": 2542 + }, + { + "#": 2589 + }, + { + "#": 2636 + }, + { + "#": 2683 + }, + { + "#": 2730 + }, + { + "#": 2777 + }, + { + "#": 2824 + }, + { + "#": 2871 + }, + { + "#": 2918 + }, + { + "#": 2965 + }, + { + "#": 3012 + }, + { + "#": 3059 + }, + { + "#": 3106 + }, + { + "#": 3153 + }, + { + "#": 3200 + }, + { + "#": 3247 + }, + { + "#": 3294 + }, + { + "#": 3341 + }, + { + "#": 3388 + }, + { + "#": 3435 + }, + { + "#": 3482 + }, + { + "#": 3529 + }, + { + "#": 3576 + }, + { + "#": 3623 + }, + { + "#": 3670 + }, + { + "#": 3717 + }, + { + "#": 3764 + }, + { + "#": 3811 + }, + { + "#": 3858 + }, + { + "#": 3905 + }, + { + "#": 3952 + }, + { + "#": 3999 + }, + { + "#": 4046 + }, + { + "#": 4093 + }, + { + "#": 4140 + }, + { + "#": 4187 + }, + { + "#": 4234 + }, + { + "#": 4281 + }, + { + "#": 4328 + }, + { + "#": 4375 + }, + { + "#": 4422 + }, + { + "#": 4469 + }, + { + "#": 4516 + }, + { + "#": 4563 + }, + { + "#": 4610 + }, + { + "#": 4657 + }, + { + "#": 4704 + }, + { + "#": 4751 + } + ], + { + "id": 5, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 99 + }, + "angle": 0, + "vertices": { + "#": 100 + }, + "position": { + "#": 121 + }, + "force": { + "#": 122 + }, + "torque": 0, + "positionImpulse": { + "#": 123 + }, + "constraintImpulse": { + "#": 124 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 125 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 126 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 127 + }, + "circleRadius": 20, + "bounds": { + "#": 129 + }, + "positionPrev": { + "#": 132 + }, + "anglePrev": 0, + "axes": { + "#": 133 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 98 + }, + "sleepCounter": 0, + "region": { + "#": 144 + } + }, + [ + { + "#": 98 + } + ], + [ + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + } + ], + { + "x": 139.508, + "y": 140.71646, + "index": 0, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 146.66746, + "index": 1, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 151.72946, + "index": 2, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 155.40746, + "index": 3, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 157.34146, + "index": 4, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 157.34146, + "index": 5, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 155.40746, + "index": 6, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 151.72946, + "index": 7, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 146.66746, + "index": 8, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 100, + "y": 140.71646, + "index": 9, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 100, + "y": 134.45846, + "index": 10, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 128.50746, + "index": 11, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 123.44546, + "index": 12, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 119.76746, + "index": 13, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 117.83346, + "index": 14, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 117.83346, + "index": 15, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 119.76746, + "index": 16, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 123.44546, + "index": 17, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 128.50746, + "index": 18, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 139.508, + "y": 134.45846, + "index": 19, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 119.754, + "y": 137.58746 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 128 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 130 + }, + "max": { + "#": 131 + } + }, + { + "x": 100, + "y": 117.83346 + }, + { + "x": 139.508, + "y": 160.24873 + }, + { + "x": 119.754, + "y": 134.68019 + }, + [ + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,2,2,3", + "startCol": 2, + "endCol": 2, + "startRow": 2, + "endRow": 3 + }, + { + "id": 6, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 146 + }, + "angle": 0, + "vertices": { + "#": 147 + }, + "position": { + "#": 168 + }, + "force": { + "#": 169 + }, + "torque": 0, + "positionImpulse": { + "#": 170 + }, + "constraintImpulse": { + "#": 171 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 172 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 173 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 174 + }, + "circleRadius": 20, + "bounds": { + "#": 176 + }, + "positionPrev": { + "#": 179 + }, + "anglePrev": 0, + "axes": { + "#": 180 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 145 + }, + "sleepCounter": 0, + "region": { + "#": 191 + } + }, + [ + { + "#": 145 + } + ], + [ + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + }, + { + "#": 156 + }, + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + } + ], + { + "x": 199.016, + "y": 140.71646, + "index": 0, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 146.66746, + "index": 1, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 151.72946, + "index": 2, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 155.40746, + "index": 3, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 157.34146, + "index": 4, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 157.34146, + "index": 5, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 155.40746, + "index": 6, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 151.72946, + "index": 7, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 146.66746, + "index": 8, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 140.71646, + "index": 9, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 134.45846, + "index": 10, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 128.50746, + "index": 11, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 123.44546, + "index": 12, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 119.76746, + "index": 13, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 117.83346, + "index": 14, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 117.83346, + "index": 15, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 119.76746, + "index": 16, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 123.44546, + "index": 17, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 128.50746, + "index": 18, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 199.016, + "y": 134.45846, + "index": 19, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 179.262, + "y": 137.58746 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 175 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 177 + }, + "max": { + "#": 178 + } + }, + { + "x": 159.508, + "y": 117.83346 + }, + { + "x": 199.016, + "y": 160.24873 + }, + { + "x": 179.262, + "y": 134.68019 + }, + [ + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,2,3", + "startCol": 3, + "endCol": 4, + "startRow": 2, + "endRow": 3 + }, + { + "id": 7, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 193 + }, + "angle": 0, + "vertices": { + "#": 194 + }, + "position": { + "#": 215 + }, + "force": { + "#": 216 + }, + "torque": 0, + "positionImpulse": { + "#": 217 + }, + "constraintImpulse": { + "#": 218 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 219 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 220 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 221 + }, + "circleRadius": 20, + "bounds": { + "#": 223 + }, + "positionPrev": { + "#": 226 + }, + "anglePrev": 0, + "axes": { + "#": 227 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 192 + }, + "sleepCounter": 0, + "region": { + "#": 238 + } + }, + [ + { + "#": 192 + } + ], + [ + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + } + ], + { + "x": 258.524, + "y": 140.71646, + "index": 0, + "body": { + "#": 192 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 146.66746, + "index": 1, + "body": { + "#": 192 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 151.72946, + "index": 2, + "body": { + "#": 192 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 155.40746, + "index": 3, + "body": { + "#": 192 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 157.34146, + "index": 4, + "body": { + "#": 192 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 157.34146, + "index": 5, + "body": { + "#": 192 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 155.40746, + "index": 6, + "body": { + "#": 192 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 151.72946, + "index": 7, + "body": { + "#": 192 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 146.66746, + "index": 8, + "body": { + "#": 192 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 140.71646, + "index": 9, + "body": { + "#": 192 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 134.45846, + "index": 10, + "body": { + "#": 192 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 128.50746, + "index": 11, + "body": { + "#": 192 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 123.44546, + "index": 12, + "body": { + "#": 192 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 119.76746, + "index": 13, + "body": { + "#": 192 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 117.83346, + "index": 14, + "body": { + "#": 192 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 117.83346, + "index": 15, + "body": { + "#": 192 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 119.76746, + "index": 16, + "body": { + "#": 192 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 123.44546, + "index": 17, + "body": { + "#": 192 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 128.50746, + "index": 18, + "body": { + "#": 192 + }, + "isInternal": false + }, + { + "x": 258.524, + "y": 134.45846, + "index": 19, + "body": { + "#": 192 + }, + "isInternal": false + }, + { + "x": 238.77, + "y": 137.58746 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 222 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 224 + }, + "max": { + "#": 225 + } + }, + { + "x": 219.016, + "y": 117.83346 + }, + { + "x": 258.524, + "y": 160.24873 + }, + { + "x": 238.77, + "y": 134.68019 + }, + [ + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,2,3", + "startCol": 4, + "endCol": 5, + "startRow": 2, + "endRow": 3 + }, + { + "id": 8, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 240 + }, + "angle": 0, + "vertices": { + "#": 241 + }, + "position": { + "#": 262 + }, + "force": { + "#": 263 + }, + "torque": 0, + "positionImpulse": { + "#": 264 + }, + "constraintImpulse": { + "#": 265 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 266 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 267 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 268 + }, + "circleRadius": 20, + "bounds": { + "#": 270 + }, + "positionPrev": { + "#": 273 + }, + "anglePrev": 0, + "axes": { + "#": 274 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 239 + }, + "sleepCounter": 0, + "region": { + "#": 285 + } + }, + [ + { + "#": 239 + } + ], + [ + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + } + ], + { + "x": 318.032, + "y": 140.71646, + "index": 0, + "body": { + "#": 239 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 146.66746, + "index": 1, + "body": { + "#": 239 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 151.72946, + "index": 2, + "body": { + "#": 239 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 155.40746, + "index": 3, + "body": { + "#": 239 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 157.34146, + "index": 4, + "body": { + "#": 239 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 157.34146, + "index": 5, + "body": { + "#": 239 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 155.40746, + "index": 6, + "body": { + "#": 239 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 151.72946, + "index": 7, + "body": { + "#": 239 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 146.66746, + "index": 8, + "body": { + "#": 239 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 140.71646, + "index": 9, + "body": { + "#": 239 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 134.45846, + "index": 10, + "body": { + "#": 239 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 128.50746, + "index": 11, + "body": { + "#": 239 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 123.44546, + "index": 12, + "body": { + "#": 239 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 119.76746, + "index": 13, + "body": { + "#": 239 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 117.83346, + "index": 14, + "body": { + "#": 239 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 117.83346, + "index": 15, + "body": { + "#": 239 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 119.76746, + "index": 16, + "body": { + "#": 239 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 123.44546, + "index": 17, + "body": { + "#": 239 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 128.50746, + "index": 18, + "body": { + "#": 239 + }, + "isInternal": false + }, + { + "x": 318.032, + "y": 134.45846, + "index": 19, + "body": { + "#": 239 + }, + "isInternal": false + }, + { + "x": 298.278, + "y": 137.58746 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 269 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 271 + }, + "max": { + "#": 272 + } + }, + { + "x": 278.524, + "y": 117.83346 + }, + { + "x": 318.032, + "y": 160.24873 + }, + { + "x": 298.278, + "y": 134.68019 + }, + [ + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,2,3", + "startCol": 5, + "endCol": 6, + "startRow": 2, + "endRow": 3 + }, + { + "id": 9, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 287 + }, + "angle": 0, + "vertices": { + "#": 288 + }, + "position": { + "#": 309 + }, + "force": { + "#": 310 + }, + "torque": 0, + "positionImpulse": { + "#": 311 + }, + "constraintImpulse": { + "#": 312 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 313 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 314 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 315 + }, + "circleRadius": 20, + "bounds": { + "#": 317 + }, + "positionPrev": { + "#": 320 + }, + "anglePrev": 0, + "axes": { + "#": 321 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 286 + }, + "sleepCounter": 0, + "region": { + "#": 332 + } + }, + [ + { + "#": 286 + } + ], + [ + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + } + ], + { + "x": 377.54, + "y": 140.71646, + "index": 0, + "body": { + "#": 286 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 146.66746, + "index": 1, + "body": { + "#": 286 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 151.72946, + "index": 2, + "body": { + "#": 286 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 155.40746, + "index": 3, + "body": { + "#": 286 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 157.34146, + "index": 4, + "body": { + "#": 286 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 157.34146, + "index": 5, + "body": { + "#": 286 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 155.40746, + "index": 6, + "body": { + "#": 286 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 151.72946, + "index": 7, + "body": { + "#": 286 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 146.66746, + "index": 8, + "body": { + "#": 286 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 140.71646, + "index": 9, + "body": { + "#": 286 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 134.45846, + "index": 10, + "body": { + "#": 286 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 128.50746, + "index": 11, + "body": { + "#": 286 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 123.44546, + "index": 12, + "body": { + "#": 286 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 119.76746, + "index": 13, + "body": { + "#": 286 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 117.83346, + "index": 14, + "body": { + "#": 286 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 117.83346, + "index": 15, + "body": { + "#": 286 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 119.76746, + "index": 16, + "body": { + "#": 286 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 123.44546, + "index": 17, + "body": { + "#": 286 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 128.50746, + "index": 18, + "body": { + "#": 286 + }, + "isInternal": false + }, + { + "x": 377.54, + "y": 134.45846, + "index": 19, + "body": { + "#": 286 + }, + "isInternal": false + }, + { + "x": 357.786, + "y": 137.58746 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 316 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 318 + }, + "max": { + "#": 319 + } + }, + { + "x": 338.032, + "y": 117.83346 + }, + { + "x": 377.54, + "y": 160.24873 + }, + { + "x": 357.786, + "y": 134.68019 + }, + [ + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,2,3", + "startCol": 7, + "endCol": 7, + "startRow": 2, + "endRow": 3 + }, + { + "id": 10, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 334 + }, + "angle": 0, + "vertices": { + "#": 335 + }, + "position": { + "#": 356 + }, + "force": { + "#": 357 + }, + "torque": 0, + "positionImpulse": { + "#": 358 + }, + "constraintImpulse": { + "#": 359 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 360 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 361 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 362 + }, + "circleRadius": 20, + "bounds": { + "#": 364 + }, + "positionPrev": { + "#": 367 + }, + "anglePrev": 0, + "axes": { + "#": 368 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 333 + }, + "sleepCounter": 0, + "region": { + "#": 379 + } + }, + [ + { + "#": 333 + } + ], + [ + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + } + ], + { + "x": 437.048, + "y": 140.71646, + "index": 0, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 146.66746, + "index": 1, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 151.72946, + "index": 2, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 155.40746, + "index": 3, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 157.34146, + "index": 4, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 157.34146, + "index": 5, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 155.40746, + "index": 6, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 151.72946, + "index": 7, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 146.66746, + "index": 8, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 140.71646, + "index": 9, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 134.45846, + "index": 10, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 128.50746, + "index": 11, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 123.44546, + "index": 12, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 119.76746, + "index": 13, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 117.83346, + "index": 14, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 117.83346, + "index": 15, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 119.76746, + "index": 16, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 123.44546, + "index": 17, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 128.50746, + "index": 18, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 437.048, + "y": 134.45846, + "index": 19, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 417.294, + "y": 137.58746 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 363 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 365 + }, + "max": { + "#": 366 + } + }, + { + "x": 397.54, + "y": 117.83346 + }, + { + "x": 437.048, + "y": 160.24873 + }, + { + "x": 417.294, + "y": 134.68019 + }, + [ + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,2,3", + "startCol": 8, + "endCol": 9, + "startRow": 2, + "endRow": 3 + }, + { + "id": 11, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 381 + }, + "angle": 0, + "vertices": { + "#": 382 + }, + "position": { + "#": 403 + }, + "force": { + "#": 404 + }, + "torque": 0, + "positionImpulse": { + "#": 405 + }, + "constraintImpulse": { + "#": 406 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 407 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 408 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 409 + }, + "circleRadius": 20, + "bounds": { + "#": 411 + }, + "positionPrev": { + "#": 414 + }, + "anglePrev": 0, + "axes": { + "#": 415 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 380 + }, + "sleepCounter": 0, + "region": { + "#": 426 + } + }, + [ + { + "#": 380 + } + ], + [ + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + } + ], + { + "x": 496.556, + "y": 140.71646, + "index": 0, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 146.66746, + "index": 1, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 151.72946, + "index": 2, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 155.40746, + "index": 3, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 157.34146, + "index": 4, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 157.34146, + "index": 5, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 155.40746, + "index": 6, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 151.72946, + "index": 7, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 146.66746, + "index": 8, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 140.71646, + "index": 9, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 134.45846, + "index": 10, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 128.50746, + "index": 11, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 123.44546, + "index": 12, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 119.76746, + "index": 13, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 117.83346, + "index": 14, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 117.83346, + "index": 15, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 119.76746, + "index": 16, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 123.44546, + "index": 17, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 128.50746, + "index": 18, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 496.556, + "y": 134.45846, + "index": 19, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 476.802, + "y": 137.58746 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 410 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 412 + }, + "max": { + "#": 413 + } + }, + { + "x": 457.048, + "y": 117.83346 + }, + { + "x": 496.556, + "y": 160.24873 + }, + { + "x": 476.802, + "y": 134.68019 + }, + [ + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,2,3", + "startCol": 9, + "endCol": 10, + "startRow": 2, + "endRow": 3 + }, + { + "id": 12, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 428 + }, + "angle": 0, + "vertices": { + "#": 429 + }, + "position": { + "#": 450 + }, + "force": { + "#": 451 + }, + "torque": 0, + "positionImpulse": { + "#": 452 + }, + "constraintImpulse": { + "#": 453 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 454 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 455 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 456 + }, + "circleRadius": 20, + "bounds": { + "#": 458 + }, + "positionPrev": { + "#": 461 + }, + "anglePrev": 0, + "axes": { + "#": 462 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 427 + }, + "sleepCounter": 0, + "region": { + "#": 473 + } + }, + [ + { + "#": 427 + } + ], + [ + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + } + ], + { + "x": 556.064, + "y": 140.71646, + "index": 0, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 146.66746, + "index": 1, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 151.72946, + "index": 2, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 155.40746, + "index": 3, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 157.34146, + "index": 4, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 157.34146, + "index": 5, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 155.40746, + "index": 6, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 151.72946, + "index": 7, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 146.66746, + "index": 8, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 140.71646, + "index": 9, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 134.45846, + "index": 10, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 128.50746, + "index": 11, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 123.44546, + "index": 12, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 119.76746, + "index": 13, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 117.83346, + "index": 14, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 117.83346, + "index": 15, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 119.76746, + "index": 16, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 123.44546, + "index": 17, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 128.50746, + "index": 18, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 556.064, + "y": 134.45846, + "index": 19, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 536.31, + "y": 137.58746 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 457 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 459 + }, + "max": { + "#": 460 + } + }, + { + "x": 516.556, + "y": 117.83346 + }, + { + "x": 556.064, + "y": 160.24873 + }, + { + "x": 536.31, + "y": 134.68019 + }, + [ + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,2,3", + "startCol": 10, + "endCol": 11, + "startRow": 2, + "endRow": 3 + }, + { + "id": 13, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 475 + }, + "angle": 0, + "vertices": { + "#": 476 + }, + "position": { + "#": 497 + }, + "force": { + "#": 498 + }, + "torque": 0, + "positionImpulse": { + "#": 499 + }, + "constraintImpulse": { + "#": 500 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 501 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 502 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 503 + }, + "circleRadius": 20, + "bounds": { + "#": 505 + }, + "positionPrev": { + "#": 508 + }, + "anglePrev": 0, + "axes": { + "#": 509 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 474 + }, + "sleepCounter": 0, + "region": { + "#": 520 + } + }, + [ + { + "#": 474 + } + ], + [ + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + } + ], + { + "x": 615.572, + "y": 140.71646, + "index": 0, + "body": { + "#": 474 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 146.66746, + "index": 1, + "body": { + "#": 474 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 151.72946, + "index": 2, + "body": { + "#": 474 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 155.40746, + "index": 3, + "body": { + "#": 474 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 157.34146, + "index": 4, + "body": { + "#": 474 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 157.34146, + "index": 5, + "body": { + "#": 474 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 155.40746, + "index": 6, + "body": { + "#": 474 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 151.72946, + "index": 7, + "body": { + "#": 474 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 146.66746, + "index": 8, + "body": { + "#": 474 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 140.71646, + "index": 9, + "body": { + "#": 474 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 134.45846, + "index": 10, + "body": { + "#": 474 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 128.50746, + "index": 11, + "body": { + "#": 474 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 123.44546, + "index": 12, + "body": { + "#": 474 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 119.76746, + "index": 13, + "body": { + "#": 474 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 117.83346, + "index": 14, + "body": { + "#": 474 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 117.83346, + "index": 15, + "body": { + "#": 474 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 119.76746, + "index": 16, + "body": { + "#": 474 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 123.44546, + "index": 17, + "body": { + "#": 474 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 128.50746, + "index": 18, + "body": { + "#": 474 + }, + "isInternal": false + }, + { + "x": 615.572, + "y": 134.45846, + "index": 19, + "body": { + "#": 474 + }, + "isInternal": false + }, + { + "x": 595.818, + "y": 137.58746 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 504 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 506 + }, + "max": { + "#": 507 + } + }, + { + "x": 576.064, + "y": 117.83346 + }, + { + "x": 615.572, + "y": 160.24873 + }, + { + "x": 595.818, + "y": 134.68019 + }, + [ + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,2,3", + "startCol": 12, + "endCol": 12, + "startRow": 2, + "endRow": 3 + }, + { + "id": 14, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 522 + }, + "angle": 0, + "vertices": { + "#": 523 + }, + "position": { + "#": 544 + }, + "force": { + "#": 545 + }, + "torque": 0, + "positionImpulse": { + "#": 546 + }, + "constraintImpulse": { + "#": 547 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 548 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 549 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 550 + }, + "circleRadius": 20, + "bounds": { + "#": 552 + }, + "positionPrev": { + "#": 555 + }, + "anglePrev": 0, + "axes": { + "#": 556 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 521 + }, + "sleepCounter": 0, + "region": { + "#": 567 + } + }, + [ + { + "#": 521 + } + ], + [ + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + } + ], + { + "x": 675.08, + "y": 140.71646, + "index": 0, + "body": { + "#": 521 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 146.66746, + "index": 1, + "body": { + "#": 521 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 151.72946, + "index": 2, + "body": { + "#": 521 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 155.40746, + "index": 3, + "body": { + "#": 521 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 157.34146, + "index": 4, + "body": { + "#": 521 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 157.34146, + "index": 5, + "body": { + "#": 521 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 155.40746, + "index": 6, + "body": { + "#": 521 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 151.72946, + "index": 7, + "body": { + "#": 521 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 146.66746, + "index": 8, + "body": { + "#": 521 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 140.71646, + "index": 9, + "body": { + "#": 521 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 134.45846, + "index": 10, + "body": { + "#": 521 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 128.50746, + "index": 11, + "body": { + "#": 521 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 123.44546, + "index": 12, + "body": { + "#": 521 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 119.76746, + "index": 13, + "body": { + "#": 521 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 117.83346, + "index": 14, + "body": { + "#": 521 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 117.83346, + "index": 15, + "body": { + "#": 521 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 119.76746, + "index": 16, + "body": { + "#": 521 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 123.44546, + "index": 17, + "body": { + "#": 521 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 128.50746, + "index": 18, + "body": { + "#": 521 + }, + "isInternal": false + }, + { + "x": 675.08, + "y": 134.45846, + "index": 19, + "body": { + "#": 521 + }, + "isInternal": false + }, + { + "x": 655.326, + "y": 137.58746 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 551 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 553 + }, + "max": { + "#": 554 + } + }, + { + "x": 635.572, + "y": 117.83346 + }, + { + "x": 675.08, + "y": 160.24873 + }, + { + "x": 655.326, + "y": 134.68019 + }, + [ + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "13,14,2,3", + "startCol": 13, + "endCol": 14, + "startRow": 2, + "endRow": 3 + }, + { + "id": 15, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 569 + }, + "angle": 0, + "vertices": { + "#": 570 + }, + "position": { + "#": 591 + }, + "force": { + "#": 592 + }, + "torque": 0, + "positionImpulse": { + "#": 593 + }, + "constraintImpulse": { + "#": 594 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 595 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 596 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 597 + }, + "circleRadius": 20, + "bounds": { + "#": 599 + }, + "positionPrev": { + "#": 602 + }, + "anglePrev": 0, + "axes": { + "#": 603 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 568 + }, + "sleepCounter": 0, + "region": { + "#": 614 + } + }, + [ + { + "#": 568 + } + ], + [ + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + } + ], + { + "x": 139.508, + "y": 180.17446, + "index": 0, + "body": { + "#": 568 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 186.12546, + "index": 1, + "body": { + "#": 568 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 191.18746, + "index": 2, + "body": { + "#": 568 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 194.86546, + "index": 3, + "body": { + "#": 568 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 196.79946, + "index": 4, + "body": { + "#": 568 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 196.79946, + "index": 5, + "body": { + "#": 568 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 194.86546, + "index": 6, + "body": { + "#": 568 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 191.18746, + "index": 7, + "body": { + "#": 568 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 186.12546, + "index": 8, + "body": { + "#": 568 + }, + "isInternal": false + }, + { + "x": 100, + "y": 180.17446, + "index": 9, + "body": { + "#": 568 + }, + "isInternal": false + }, + { + "x": 100, + "y": 173.91646, + "index": 10, + "body": { + "#": 568 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 167.96546, + "index": 11, + "body": { + "#": 568 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 162.90346, + "index": 12, + "body": { + "#": 568 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 159.22546, + "index": 13, + "body": { + "#": 568 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 157.29146, + "index": 14, + "body": { + "#": 568 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 157.29146, + "index": 15, + "body": { + "#": 568 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 159.22546, + "index": 16, + "body": { + "#": 568 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 162.90346, + "index": 17, + "body": { + "#": 568 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 167.96546, + "index": 18, + "body": { + "#": 568 + }, + "isInternal": false + }, + { + "x": 139.508, + "y": 173.91646, + "index": 19, + "body": { + "#": 568 + }, + "isInternal": false + }, + { + "x": 119.754, + "y": 177.04546 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 598 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 600 + }, + "max": { + "#": 601 + } + }, + { + "x": 100, + "y": 157.29146 + }, + { + "x": 139.508, + "y": 199.70673 + }, + { + "x": 119.754, + "y": 174.13819 + }, + [ + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,2,3,4", + "startCol": 2, + "endCol": 2, + "startRow": 3, + "endRow": 4 + }, + { + "id": 16, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 616 + }, + "angle": 0, + "vertices": { + "#": 617 + }, + "position": { + "#": 638 + }, + "force": { + "#": 639 + }, + "torque": 0, + "positionImpulse": { + "#": 640 + }, + "constraintImpulse": { + "#": 641 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 642 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 643 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 644 + }, + "circleRadius": 20, + "bounds": { + "#": 646 + }, + "positionPrev": { + "#": 649 + }, + "anglePrev": 0, + "axes": { + "#": 650 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 615 + }, + "sleepCounter": 0, + "region": { + "#": 661 + } + }, + [ + { + "#": 615 + } + ], + [ + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + } + ], + { + "x": 199.016, + "y": 180.17446, + "index": 0, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 186.12546, + "index": 1, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 191.18746, + "index": 2, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 194.86546, + "index": 3, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 196.79946, + "index": 4, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 196.79946, + "index": 5, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 194.86546, + "index": 6, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 191.18746, + "index": 7, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 186.12546, + "index": 8, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 180.17446, + "index": 9, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 173.91646, + "index": 10, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 167.96546, + "index": 11, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 162.90346, + "index": 12, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 159.22546, + "index": 13, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 157.29146, + "index": 14, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 157.29146, + "index": 15, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 159.22546, + "index": 16, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 162.90346, + "index": 17, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 167.96546, + "index": 18, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 199.016, + "y": 173.91646, + "index": 19, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 179.262, + "y": 177.04546 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 645 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 647 + }, + "max": { + "#": 648 + } + }, + { + "x": 159.508, + "y": 157.29146 + }, + { + "x": 199.016, + "y": 199.70673 + }, + { + "x": 179.262, + "y": 174.13819 + }, + [ + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,3,4", + "startCol": 3, + "endCol": 4, + "startRow": 3, + "endRow": 4 + }, + { + "id": 17, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 663 + }, + "angle": 0, + "vertices": { + "#": 664 + }, + "position": { + "#": 685 + }, + "force": { + "#": 686 + }, + "torque": 0, + "positionImpulse": { + "#": 687 + }, + "constraintImpulse": { + "#": 688 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 689 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 690 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 691 + }, + "circleRadius": 20, + "bounds": { + "#": 693 + }, + "positionPrev": { + "#": 696 + }, + "anglePrev": 0, + "axes": { + "#": 697 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 662 + }, + "sleepCounter": 0, + "region": { + "#": 708 + } + }, + [ + { + "#": 662 + } + ], + [ + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + } + ], + { + "x": 258.524, + "y": 180.17446, + "index": 0, + "body": { + "#": 662 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 186.12546, + "index": 1, + "body": { + "#": 662 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 191.18746, + "index": 2, + "body": { + "#": 662 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 194.86546, + "index": 3, + "body": { + "#": 662 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 196.79946, + "index": 4, + "body": { + "#": 662 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 196.79946, + "index": 5, + "body": { + "#": 662 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 194.86546, + "index": 6, + "body": { + "#": 662 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 191.18746, + "index": 7, + "body": { + "#": 662 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 186.12546, + "index": 8, + "body": { + "#": 662 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 180.17446, + "index": 9, + "body": { + "#": 662 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 173.91646, + "index": 10, + "body": { + "#": 662 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 167.96546, + "index": 11, + "body": { + "#": 662 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 162.90346, + "index": 12, + "body": { + "#": 662 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 159.22546, + "index": 13, + "body": { + "#": 662 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 157.29146, + "index": 14, + "body": { + "#": 662 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 157.29146, + "index": 15, + "body": { + "#": 662 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 159.22546, + "index": 16, + "body": { + "#": 662 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 162.90346, + "index": 17, + "body": { + "#": 662 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 167.96546, + "index": 18, + "body": { + "#": 662 + }, + "isInternal": false + }, + { + "x": 258.524, + "y": 173.91646, + "index": 19, + "body": { + "#": 662 + }, + "isInternal": false + }, + { + "x": 238.77, + "y": 177.04546 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 692 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 694 + }, + "max": { + "#": 695 + } + }, + { + "x": 219.016, + "y": 157.29146 + }, + { + "x": 258.524, + "y": 199.70673 + }, + { + "x": 238.77, + "y": 174.13819 + }, + [ + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,3,4", + "startCol": 4, + "endCol": 5, + "startRow": 3, + "endRow": 4 + }, + { + "id": 18, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 710 + }, + "angle": 0, + "vertices": { + "#": 711 + }, + "position": { + "#": 732 + }, + "force": { + "#": 733 + }, + "torque": 0, + "positionImpulse": { + "#": 734 + }, + "constraintImpulse": { + "#": 735 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 736 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 737 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 738 + }, + "circleRadius": 20, + "bounds": { + "#": 740 + }, + "positionPrev": { + "#": 743 + }, + "anglePrev": 0, + "axes": { + "#": 744 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 709 + }, + "sleepCounter": 0, + "region": { + "#": 755 + } + }, + [ + { + "#": 709 + } + ], + [ + { + "#": 712 + }, + { + "#": 713 + }, + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + } + ], + { + "x": 318.032, + "y": 180.17446, + "index": 0, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 186.12546, + "index": 1, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 191.18746, + "index": 2, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 194.86546, + "index": 3, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 196.79946, + "index": 4, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 196.79946, + "index": 5, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 194.86546, + "index": 6, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 191.18746, + "index": 7, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 186.12546, + "index": 8, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 180.17446, + "index": 9, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 173.91646, + "index": 10, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 167.96546, + "index": 11, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 162.90346, + "index": 12, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 159.22546, + "index": 13, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 157.29146, + "index": 14, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 157.29146, + "index": 15, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 159.22546, + "index": 16, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 162.90346, + "index": 17, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 167.96546, + "index": 18, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 318.032, + "y": 173.91646, + "index": 19, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 298.278, + "y": 177.04546 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 739 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 741 + }, + "max": { + "#": 742 + } + }, + { + "x": 278.524, + "y": 157.29146 + }, + { + "x": 318.032, + "y": 199.70673 + }, + { + "x": 298.278, + "y": 174.13819 + }, + [ + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,3,4", + "startCol": 5, + "endCol": 6, + "startRow": 3, + "endRow": 4 + }, + { + "id": 19, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 757 + }, + "angle": 0, + "vertices": { + "#": 758 + }, + "position": { + "#": 779 + }, + "force": { + "#": 780 + }, + "torque": 0, + "positionImpulse": { + "#": 781 + }, + "constraintImpulse": { + "#": 782 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 783 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 784 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 785 + }, + "circleRadius": 20, + "bounds": { + "#": 787 + }, + "positionPrev": { + "#": 790 + }, + "anglePrev": 0, + "axes": { + "#": 791 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 756 + }, + "sleepCounter": 0, + "region": { + "#": 802 + } + }, + [ + { + "#": 756 + } + ], + [ + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + }, + { + "#": 767 + }, + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + }, + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + }, + { + "#": 777 + }, + { + "#": 778 + } + ], + { + "x": 377.54, + "y": 180.17446, + "index": 0, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 186.12546, + "index": 1, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 191.18746, + "index": 2, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 194.86546, + "index": 3, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 196.79946, + "index": 4, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 196.79946, + "index": 5, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 194.86546, + "index": 6, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 191.18746, + "index": 7, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 186.12546, + "index": 8, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 180.17446, + "index": 9, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 173.91646, + "index": 10, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 167.96546, + "index": 11, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 162.90346, + "index": 12, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 159.22546, + "index": 13, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 157.29146, + "index": 14, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 157.29146, + "index": 15, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 159.22546, + "index": 16, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 162.90346, + "index": 17, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 167.96546, + "index": 18, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 377.54, + "y": 173.91646, + "index": 19, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 357.786, + "y": 177.04546 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 786 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 788 + }, + "max": { + "#": 789 + } + }, + { + "x": 338.032, + "y": 157.29146 + }, + { + "x": 377.54, + "y": 199.70673 + }, + { + "x": 357.786, + "y": 174.13819 + }, + [ + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + }, + { + "#": 801 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,3,4", + "startCol": 7, + "endCol": 7, + "startRow": 3, + "endRow": 4 + }, + { + "id": 20, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 804 + }, + "angle": 0, + "vertices": { + "#": 805 + }, + "position": { + "#": 826 + }, + "force": { + "#": 827 + }, + "torque": 0, + "positionImpulse": { + "#": 828 + }, + "constraintImpulse": { + "#": 829 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 830 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 831 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 832 + }, + "circleRadius": 20, + "bounds": { + "#": 834 + }, + "positionPrev": { + "#": 837 + }, + "anglePrev": 0, + "axes": { + "#": 838 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 803 + }, + "sleepCounter": 0, + "region": { + "#": 849 + } + }, + [ + { + "#": 803 + } + ], + [ + { + "#": 806 + }, + { + "#": 807 + }, + { + "#": 808 + }, + { + "#": 809 + }, + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + }, + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + } + ], + { + "x": 437.048, + "y": 180.17446, + "index": 0, + "body": { + "#": 803 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 186.12546, + "index": 1, + "body": { + "#": 803 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 191.18746, + "index": 2, + "body": { + "#": 803 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 194.86546, + "index": 3, + "body": { + "#": 803 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 196.79946, + "index": 4, + "body": { + "#": 803 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 196.79946, + "index": 5, + "body": { + "#": 803 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 194.86546, + "index": 6, + "body": { + "#": 803 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 191.18746, + "index": 7, + "body": { + "#": 803 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 186.12546, + "index": 8, + "body": { + "#": 803 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 180.17446, + "index": 9, + "body": { + "#": 803 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 173.91646, + "index": 10, + "body": { + "#": 803 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 167.96546, + "index": 11, + "body": { + "#": 803 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 162.90346, + "index": 12, + "body": { + "#": 803 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 159.22546, + "index": 13, + "body": { + "#": 803 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 157.29146, + "index": 14, + "body": { + "#": 803 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 157.29146, + "index": 15, + "body": { + "#": 803 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 159.22546, + "index": 16, + "body": { + "#": 803 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 162.90346, + "index": 17, + "body": { + "#": 803 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 167.96546, + "index": 18, + "body": { + "#": 803 + }, + "isInternal": false + }, + { + "x": 437.048, + "y": 173.91646, + "index": 19, + "body": { + "#": 803 + }, + "isInternal": false + }, + { + "x": 417.294, + "y": 177.04546 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 833 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 835 + }, + "max": { + "#": 836 + } + }, + { + "x": 397.54, + "y": 157.29146 + }, + { + "x": 437.048, + "y": 199.70673 + }, + { + "x": 417.294, + "y": 174.13819 + }, + [ + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,3,4", + "startCol": 8, + "endCol": 9, + "startRow": 3, + "endRow": 4 + }, + { + "id": 21, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 851 + }, + "angle": 0, + "vertices": { + "#": 852 + }, + "position": { + "#": 873 + }, + "force": { + "#": 874 + }, + "torque": 0, + "positionImpulse": { + "#": 875 + }, + "constraintImpulse": { + "#": 876 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 877 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 878 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 879 + }, + "circleRadius": 20, + "bounds": { + "#": 881 + }, + "positionPrev": { + "#": 884 + }, + "anglePrev": 0, + "axes": { + "#": 885 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 850 + }, + "sleepCounter": 0, + "region": { + "#": 896 + } + }, + [ + { + "#": 850 + } + ], + [ + { + "#": 853 + }, + { + "#": 854 + }, + { + "#": 855 + }, + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + }, + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + }, + { + "#": 869 + }, + { + "#": 870 + }, + { + "#": 871 + }, + { + "#": 872 + } + ], + { + "x": 496.556, + "y": 180.17446, + "index": 0, + "body": { + "#": 850 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 186.12546, + "index": 1, + "body": { + "#": 850 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 191.18746, + "index": 2, + "body": { + "#": 850 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 194.86546, + "index": 3, + "body": { + "#": 850 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 196.79946, + "index": 4, + "body": { + "#": 850 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 196.79946, + "index": 5, + "body": { + "#": 850 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 194.86546, + "index": 6, + "body": { + "#": 850 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 191.18746, + "index": 7, + "body": { + "#": 850 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 186.12546, + "index": 8, + "body": { + "#": 850 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 180.17446, + "index": 9, + "body": { + "#": 850 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 173.91646, + "index": 10, + "body": { + "#": 850 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 167.96546, + "index": 11, + "body": { + "#": 850 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 162.90346, + "index": 12, + "body": { + "#": 850 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 159.22546, + "index": 13, + "body": { + "#": 850 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 157.29146, + "index": 14, + "body": { + "#": 850 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 157.29146, + "index": 15, + "body": { + "#": 850 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 159.22546, + "index": 16, + "body": { + "#": 850 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 162.90346, + "index": 17, + "body": { + "#": 850 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 167.96546, + "index": 18, + "body": { + "#": 850 + }, + "isInternal": false + }, + { + "x": 496.556, + "y": 173.91646, + "index": 19, + "body": { + "#": 850 + }, + "isInternal": false + }, + { + "x": 476.802, + "y": 177.04546 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 880 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 882 + }, + "max": { + "#": 883 + } + }, + { + "x": 457.048, + "y": 157.29146 + }, + { + "x": 496.556, + "y": 199.70673 + }, + { + "x": 476.802, + "y": 174.13819 + }, + [ + { + "#": 886 + }, + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + }, + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + }, + { + "#": 894 + }, + { + "#": 895 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,3,4", + "startCol": 9, + "endCol": 10, + "startRow": 3, + "endRow": 4 + }, + { + "id": 22, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 898 + }, + "angle": 0, + "vertices": { + "#": 899 + }, + "position": { + "#": 920 + }, + "force": { + "#": 921 + }, + "torque": 0, + "positionImpulse": { + "#": 922 + }, + "constraintImpulse": { + "#": 923 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 924 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 925 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 926 + }, + "circleRadius": 20, + "bounds": { + "#": 928 + }, + "positionPrev": { + "#": 931 + }, + "anglePrev": 0, + "axes": { + "#": 932 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 897 + }, + "sleepCounter": 0, + "region": { + "#": 943 + } + }, + [ + { + "#": 897 + } + ], + [ + { + "#": 900 + }, + { + "#": 901 + }, + { + "#": 902 + }, + { + "#": 903 + }, + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + }, + { + "#": 915 + }, + { + "#": 916 + }, + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + } + ], + { + "x": 556.064, + "y": 180.17446, + "index": 0, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 186.12546, + "index": 1, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 191.18746, + "index": 2, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 194.86546, + "index": 3, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 196.79946, + "index": 4, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 196.79946, + "index": 5, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 194.86546, + "index": 6, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 191.18746, + "index": 7, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 186.12546, + "index": 8, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 180.17446, + "index": 9, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 173.91646, + "index": 10, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 167.96546, + "index": 11, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 162.90346, + "index": 12, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 159.22546, + "index": 13, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 157.29146, + "index": 14, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 157.29146, + "index": 15, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 159.22546, + "index": 16, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 162.90346, + "index": 17, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 167.96546, + "index": 18, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 556.064, + "y": 173.91646, + "index": 19, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 536.31, + "y": 177.04546 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 927 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 929 + }, + "max": { + "#": 930 + } + }, + { + "x": 516.556, + "y": 157.29146 + }, + { + "x": 556.064, + "y": 199.70673 + }, + { + "x": 536.31, + "y": 174.13819 + }, + [ + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,3,4", + "startCol": 10, + "endCol": 11, + "startRow": 3, + "endRow": 4 + }, + { + "id": 23, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 945 + }, + "angle": 0, + "vertices": { + "#": 946 + }, + "position": { + "#": 967 + }, + "force": { + "#": 968 + }, + "torque": 0, + "positionImpulse": { + "#": 969 + }, + "constraintImpulse": { + "#": 970 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 971 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 972 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 973 + }, + "circleRadius": 20, + "bounds": { + "#": 975 + }, + "positionPrev": { + "#": 978 + }, + "anglePrev": 0, + "axes": { + "#": 979 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 944 + }, + "sleepCounter": 0, + "region": { + "#": 990 + } + }, + [ + { + "#": 944 + } + ], + [ + { + "#": 947 + }, + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + }, + { + "#": 959 + }, + { + "#": 960 + }, + { + "#": 961 + }, + { + "#": 962 + }, + { + "#": 963 + }, + { + "#": 964 + }, + { + "#": 965 + }, + { + "#": 966 + } + ], + { + "x": 615.572, + "y": 180.17446, + "index": 0, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 186.12546, + "index": 1, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 191.18746, + "index": 2, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 194.86546, + "index": 3, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 196.79946, + "index": 4, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 196.79946, + "index": 5, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 194.86546, + "index": 6, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 191.18746, + "index": 7, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 186.12546, + "index": 8, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 180.17446, + "index": 9, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 173.91646, + "index": 10, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 167.96546, + "index": 11, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 162.90346, + "index": 12, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 159.22546, + "index": 13, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 157.29146, + "index": 14, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 157.29146, + "index": 15, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 159.22546, + "index": 16, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 162.90346, + "index": 17, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 167.96546, + "index": 18, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 615.572, + "y": 173.91646, + "index": 19, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 595.818, + "y": 177.04546 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 974 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 976 + }, + "max": { + "#": 977 + } + }, + { + "x": 576.064, + "y": 157.29146 + }, + { + "x": 615.572, + "y": 199.70673 + }, + { + "x": 595.818, + "y": 174.13819 + }, + [ + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + }, + { + "#": 985 + }, + { + "#": 986 + }, + { + "#": 987 + }, + { + "#": 988 + }, + { + "#": 989 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,3,4", + "startCol": 12, + "endCol": 12, + "startRow": 3, + "endRow": 4 + }, + { + "id": 24, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 992 + }, + "angle": 0, + "vertices": { + "#": 993 + }, + "position": { + "#": 1014 + }, + "force": { + "#": 1015 + }, + "torque": 0, + "positionImpulse": { + "#": 1016 + }, + "constraintImpulse": { + "#": 1017 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1018 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1019 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1020 + }, + "circleRadius": 20, + "bounds": { + "#": 1022 + }, + "positionPrev": { + "#": 1025 + }, + "anglePrev": 0, + "axes": { + "#": 1026 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 991 + }, + "sleepCounter": 0, + "region": { + "#": 1037 + } + }, + [ + { + "#": 991 + } + ], + [ + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + }, + { + "#": 997 + }, + { + "#": 998 + }, + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + }, + { + "#": 1002 + }, + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + }, + { + "#": 1007 + }, + { + "#": 1008 + }, + { + "#": 1009 + }, + { + "#": 1010 + }, + { + "#": 1011 + }, + { + "#": 1012 + }, + { + "#": 1013 + } + ], + { + "x": 675.08, + "y": 180.17446, + "index": 0, + "body": { + "#": 991 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 186.12546, + "index": 1, + "body": { + "#": 991 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 191.18746, + "index": 2, + "body": { + "#": 991 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 194.86546, + "index": 3, + "body": { + "#": 991 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 196.79946, + "index": 4, + "body": { + "#": 991 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 196.79946, + "index": 5, + "body": { + "#": 991 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 194.86546, + "index": 6, + "body": { + "#": 991 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 191.18746, + "index": 7, + "body": { + "#": 991 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 186.12546, + "index": 8, + "body": { + "#": 991 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 180.17446, + "index": 9, + "body": { + "#": 991 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 173.91646, + "index": 10, + "body": { + "#": 991 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 167.96546, + "index": 11, + "body": { + "#": 991 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 162.90346, + "index": 12, + "body": { + "#": 991 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 159.22546, + "index": 13, + "body": { + "#": 991 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 157.29146, + "index": 14, + "body": { + "#": 991 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 157.29146, + "index": 15, + "body": { + "#": 991 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 159.22546, + "index": 16, + "body": { + "#": 991 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 162.90346, + "index": 17, + "body": { + "#": 991 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 167.96546, + "index": 18, + "body": { + "#": 991 + }, + "isInternal": false + }, + { + "x": 675.08, + "y": 173.91646, + "index": 19, + "body": { + "#": 991 + }, + "isInternal": false + }, + { + "x": 655.326, + "y": 177.04546 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1021 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1023 + }, + "max": { + "#": 1024 + } + }, + { + "x": 635.572, + "y": 157.29146 + }, + { + "x": 675.08, + "y": 199.70673 + }, + { + "x": 655.326, + "y": 174.13819 + }, + [ + { + "#": 1027 + }, + { + "#": 1028 + }, + { + "#": 1029 + }, + { + "#": 1030 + }, + { + "#": 1031 + }, + { + "#": 1032 + }, + { + "#": 1033 + }, + { + "#": 1034 + }, + { + "#": 1035 + }, + { + "#": 1036 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "13,14,3,4", + "startCol": 13, + "endCol": 14, + "startRow": 3, + "endRow": 4 + }, + { + "id": 25, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1039 + }, + "angle": 0, + "vertices": { + "#": 1040 + }, + "position": { + "#": 1061 + }, + "force": { + "#": 1062 + }, + "torque": 0, + "positionImpulse": { + "#": 1063 + }, + "constraintImpulse": { + "#": 1064 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1065 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1066 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1067 + }, + "circleRadius": 20, + "bounds": { + "#": 1069 + }, + "positionPrev": { + "#": 1072 + }, + "anglePrev": 0, + "axes": { + "#": 1073 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1038 + }, + "sleepCounter": 0, + "region": { + "#": 1084 + } + }, + [ + { + "#": 1038 + } + ], + [ + { + "#": 1041 + }, + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + }, + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + }, + { + "#": 1057 + }, + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + } + ], + { + "x": 139.508, + "y": 219.63246, + "index": 0, + "body": { + "#": 1038 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 225.58346, + "index": 1, + "body": { + "#": 1038 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 230.64546, + "index": 2, + "body": { + "#": 1038 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 234.32346, + "index": 3, + "body": { + "#": 1038 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 236.25746, + "index": 4, + "body": { + "#": 1038 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 236.25746, + "index": 5, + "body": { + "#": 1038 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 234.32346, + "index": 6, + "body": { + "#": 1038 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 230.64546, + "index": 7, + "body": { + "#": 1038 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 225.58346, + "index": 8, + "body": { + "#": 1038 + }, + "isInternal": false + }, + { + "x": 100, + "y": 219.63246, + "index": 9, + "body": { + "#": 1038 + }, + "isInternal": false + }, + { + "x": 100, + "y": 213.37446, + "index": 10, + "body": { + "#": 1038 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 207.42346, + "index": 11, + "body": { + "#": 1038 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 202.36146, + "index": 12, + "body": { + "#": 1038 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 198.68346, + "index": 13, + "body": { + "#": 1038 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 196.74946, + "index": 14, + "body": { + "#": 1038 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 196.74946, + "index": 15, + "body": { + "#": 1038 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 198.68346, + "index": 16, + "body": { + "#": 1038 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 202.36146, + "index": 17, + "body": { + "#": 1038 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 207.42346, + "index": 18, + "body": { + "#": 1038 + }, + "isInternal": false + }, + { + "x": 139.508, + "y": 213.37446, + "index": 19, + "body": { + "#": 1038 + }, + "isInternal": false + }, + { + "x": 119.754, + "y": 216.50346 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1068 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1070 + }, + "max": { + "#": 1071 + } + }, + { + "x": 100, + "y": 196.74946 + }, + { + "x": 139.508, + "y": 239.16473 + }, + { + "x": 119.754, + "y": 213.59619 + }, + [ + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + }, + { + "#": 1083 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,2,4,4", + "startCol": 2, + "endCol": 2, + "startRow": 4, + "endRow": 4 + }, + { + "id": 26, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1086 + }, + "angle": 0, + "vertices": { + "#": 1087 + }, + "position": { + "#": 1108 + }, + "force": { + "#": 1109 + }, + "torque": 0, + "positionImpulse": { + "#": 1110 + }, + "constraintImpulse": { + "#": 1111 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1112 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1113 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1114 + }, + "circleRadius": 20, + "bounds": { + "#": 1116 + }, + "positionPrev": { + "#": 1119 + }, + "anglePrev": 0, + "axes": { + "#": 1120 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1085 + }, + "sleepCounter": 0, + "region": { + "#": 1131 + } + }, + [ + { + "#": 1085 + } + ], + [ + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + } + ], + { + "x": 199.016, + "y": 219.63246, + "index": 0, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 225.58346, + "index": 1, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 230.64546, + "index": 2, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 234.32346, + "index": 3, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 236.25746, + "index": 4, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 236.25746, + "index": 5, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 234.32346, + "index": 6, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 230.64546, + "index": 7, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 225.58346, + "index": 8, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 219.63246, + "index": 9, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 213.37446, + "index": 10, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 207.42346, + "index": 11, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 202.36146, + "index": 12, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 198.68346, + "index": 13, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 196.74946, + "index": 14, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 196.74946, + "index": 15, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 198.68346, + "index": 16, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 202.36146, + "index": 17, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 207.42346, + "index": 18, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 199.016, + "y": 213.37446, + "index": 19, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 179.262, + "y": 216.50346 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1115 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1117 + }, + "max": { + "#": 1118 + } + }, + { + "x": 159.508, + "y": 196.74946 + }, + { + "x": 199.016, + "y": 239.16473 + }, + { + "x": 179.262, + "y": 213.59619 + }, + [ + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,4,4", + "startCol": 3, + "endCol": 4, + "startRow": 4, + "endRow": 4 + }, + { + "id": 27, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1133 + }, + "angle": 0, + "vertices": { + "#": 1134 + }, + "position": { + "#": 1155 + }, + "force": { + "#": 1156 + }, + "torque": 0, + "positionImpulse": { + "#": 1157 + }, + "constraintImpulse": { + "#": 1158 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1159 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1160 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1161 + }, + "circleRadius": 20, + "bounds": { + "#": 1163 + }, + "positionPrev": { + "#": 1166 + }, + "anglePrev": 0, + "axes": { + "#": 1167 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1132 + }, + "sleepCounter": 0, + "region": { + "#": 1178 + } + }, + [ + { + "#": 1132 + } + ], + [ + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + }, + { + "#": 1152 + }, + { + "#": 1153 + }, + { + "#": 1154 + } + ], + { + "x": 258.524, + "y": 219.63246, + "index": 0, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 225.58346, + "index": 1, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 230.64546, + "index": 2, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 234.32346, + "index": 3, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 236.25746, + "index": 4, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 236.25746, + "index": 5, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 234.32346, + "index": 6, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 230.64546, + "index": 7, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 225.58346, + "index": 8, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 219.63246, + "index": 9, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 213.37446, + "index": 10, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 207.42346, + "index": 11, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 202.36146, + "index": 12, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 198.68346, + "index": 13, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 196.74946, + "index": 14, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 196.74946, + "index": 15, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 198.68346, + "index": 16, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 202.36146, + "index": 17, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 207.42346, + "index": 18, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 258.524, + "y": 213.37446, + "index": 19, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 238.77, + "y": 216.50346 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1162 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1164 + }, + "max": { + "#": 1165 + } + }, + { + "x": 219.016, + "y": 196.74946 + }, + { + "x": 258.524, + "y": 239.16473 + }, + { + "x": 238.77, + "y": 213.59619 + }, + [ + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + }, + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,4,4", + "startCol": 4, + "endCol": 5, + "startRow": 4, + "endRow": 4 + }, + { + "id": 28, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1180 + }, + "angle": 0, + "vertices": { + "#": 1181 + }, + "position": { + "#": 1202 + }, + "force": { + "#": 1203 + }, + "torque": 0, + "positionImpulse": { + "#": 1204 + }, + "constraintImpulse": { + "#": 1205 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1206 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1207 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1208 + }, + "circleRadius": 20, + "bounds": { + "#": 1210 + }, + "positionPrev": { + "#": 1213 + }, + "anglePrev": 0, + "axes": { + "#": 1214 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1179 + }, + "sleepCounter": 0, + "region": { + "#": 1225 + } + }, + [ + { + "#": 1179 + } + ], + [ + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + }, + { + "#": 1186 + }, + { + "#": 1187 + }, + { + "#": 1188 + }, + { + "#": 1189 + }, + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + }, + { + "#": 1194 + }, + { + "#": 1195 + }, + { + "#": 1196 + }, + { + "#": 1197 + }, + { + "#": 1198 + }, + { + "#": 1199 + }, + { + "#": 1200 + }, + { + "#": 1201 + } + ], + { + "x": 318.032, + "y": 219.63246, + "index": 0, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 225.58346, + "index": 1, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 230.64546, + "index": 2, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 234.32346, + "index": 3, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 236.25746, + "index": 4, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 236.25746, + "index": 5, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 234.32346, + "index": 6, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 230.64546, + "index": 7, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 225.58346, + "index": 8, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 219.63246, + "index": 9, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 213.37446, + "index": 10, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 207.42346, + "index": 11, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 202.36146, + "index": 12, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 198.68346, + "index": 13, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 196.74946, + "index": 14, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 196.74946, + "index": 15, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 198.68346, + "index": 16, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 202.36146, + "index": 17, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 207.42346, + "index": 18, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 318.032, + "y": 213.37446, + "index": 19, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 298.278, + "y": 216.50346 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1209 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1211 + }, + "max": { + "#": 1212 + } + }, + { + "x": 278.524, + "y": 196.74946 + }, + { + "x": 318.032, + "y": 239.16473 + }, + { + "x": 298.278, + "y": 213.59619 + }, + [ + { + "#": 1215 + }, + { + "#": 1216 + }, + { + "#": 1217 + }, + { + "#": 1218 + }, + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,4,4", + "startCol": 5, + "endCol": 6, + "startRow": 4, + "endRow": 4 + }, + { + "id": 29, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1227 + }, + "angle": 0, + "vertices": { + "#": 1228 + }, + "position": { + "#": 1249 + }, + "force": { + "#": 1250 + }, + "torque": 0, + "positionImpulse": { + "#": 1251 + }, + "constraintImpulse": { + "#": 1252 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1253 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1254 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1255 + }, + "circleRadius": 20, + "bounds": { + "#": 1257 + }, + "positionPrev": { + "#": 1260 + }, + "anglePrev": 0, + "axes": { + "#": 1261 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1226 + }, + "sleepCounter": 0, + "region": { + "#": 1272 + } + }, + [ + { + "#": 1226 + } + ], + [ + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + }, + { + "#": 1232 + }, + { + "#": 1233 + }, + { + "#": 1234 + }, + { + "#": 1235 + }, + { + "#": 1236 + }, + { + "#": 1237 + }, + { + "#": 1238 + }, + { + "#": 1239 + }, + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + }, + { + "#": 1247 + }, + { + "#": 1248 + } + ], + { + "x": 377.54, + "y": 219.63246, + "index": 0, + "body": { + "#": 1226 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 225.58346, + "index": 1, + "body": { + "#": 1226 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 230.64546, + "index": 2, + "body": { + "#": 1226 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 234.32346, + "index": 3, + "body": { + "#": 1226 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 236.25746, + "index": 4, + "body": { + "#": 1226 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 236.25746, + "index": 5, + "body": { + "#": 1226 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 234.32346, + "index": 6, + "body": { + "#": 1226 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 230.64546, + "index": 7, + "body": { + "#": 1226 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 225.58346, + "index": 8, + "body": { + "#": 1226 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 219.63246, + "index": 9, + "body": { + "#": 1226 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 213.37446, + "index": 10, + "body": { + "#": 1226 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 207.42346, + "index": 11, + "body": { + "#": 1226 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 202.36146, + "index": 12, + "body": { + "#": 1226 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 198.68346, + "index": 13, + "body": { + "#": 1226 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 196.74946, + "index": 14, + "body": { + "#": 1226 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 196.74946, + "index": 15, + "body": { + "#": 1226 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 198.68346, + "index": 16, + "body": { + "#": 1226 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 202.36146, + "index": 17, + "body": { + "#": 1226 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 207.42346, + "index": 18, + "body": { + "#": 1226 + }, + "isInternal": false + }, + { + "x": 377.54, + "y": 213.37446, + "index": 19, + "body": { + "#": 1226 + }, + "isInternal": false + }, + { + "x": 357.786, + "y": 216.50346 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1256 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1258 + }, + "max": { + "#": 1259 + } + }, + { + "x": 338.032, + "y": 196.74946 + }, + { + "x": 377.54, + "y": 239.16473 + }, + { + "x": 357.786, + "y": 213.59619 + }, + [ + { + "#": 1262 + }, + { + "#": 1263 + }, + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + }, + { + "#": 1267 + }, + { + "#": 1268 + }, + { + "#": 1269 + }, + { + "#": 1270 + }, + { + "#": 1271 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,4,4", + "startCol": 7, + "endCol": 7, + "startRow": 4, + "endRow": 4 + }, + { + "id": 30, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1274 + }, + "angle": 0, + "vertices": { + "#": 1275 + }, + "position": { + "#": 1296 + }, + "force": { + "#": 1297 + }, + "torque": 0, + "positionImpulse": { + "#": 1298 + }, + "constraintImpulse": { + "#": 1299 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1300 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1301 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1302 + }, + "circleRadius": 20, + "bounds": { + "#": 1304 + }, + "positionPrev": { + "#": 1307 + }, + "anglePrev": 0, + "axes": { + "#": 1308 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1273 + }, + "sleepCounter": 0, + "region": { + "#": 1319 + } + }, + [ + { + "#": 1273 + } + ], + [ + { + "#": 1276 + }, + { + "#": 1277 + }, + { + "#": 1278 + }, + { + "#": 1279 + }, + { + "#": 1280 + }, + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + }, + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + }, + { + "#": 1289 + }, + { + "#": 1290 + }, + { + "#": 1291 + }, + { + "#": 1292 + }, + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + } + ], + { + "x": 437.048, + "y": 219.63246, + "index": 0, + "body": { + "#": 1273 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 225.58346, + "index": 1, + "body": { + "#": 1273 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 230.64546, + "index": 2, + "body": { + "#": 1273 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 234.32346, + "index": 3, + "body": { + "#": 1273 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 236.25746, + "index": 4, + "body": { + "#": 1273 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 236.25746, + "index": 5, + "body": { + "#": 1273 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 234.32346, + "index": 6, + "body": { + "#": 1273 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 230.64546, + "index": 7, + "body": { + "#": 1273 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 225.58346, + "index": 8, + "body": { + "#": 1273 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 219.63246, + "index": 9, + "body": { + "#": 1273 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 213.37446, + "index": 10, + "body": { + "#": 1273 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 207.42346, + "index": 11, + "body": { + "#": 1273 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 202.36146, + "index": 12, + "body": { + "#": 1273 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 198.68346, + "index": 13, + "body": { + "#": 1273 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 196.74946, + "index": 14, + "body": { + "#": 1273 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 196.74946, + "index": 15, + "body": { + "#": 1273 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 198.68346, + "index": 16, + "body": { + "#": 1273 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 202.36146, + "index": 17, + "body": { + "#": 1273 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 207.42346, + "index": 18, + "body": { + "#": 1273 + }, + "isInternal": false + }, + { + "x": 437.048, + "y": 213.37446, + "index": 19, + "body": { + "#": 1273 + }, + "isInternal": false + }, + { + "x": 417.294, + "y": 216.50346 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1303 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1305 + }, + "max": { + "#": 1306 + } + }, + { + "x": 397.54, + "y": 196.74946 + }, + { + "x": 437.048, + "y": 239.16473 + }, + { + "x": 417.294, + "y": 213.59619 + }, + [ + { + "#": 1309 + }, + { + "#": 1310 + }, + { + "#": 1311 + }, + { + "#": 1312 + }, + { + "#": 1313 + }, + { + "#": 1314 + }, + { + "#": 1315 + }, + { + "#": 1316 + }, + { + "#": 1317 + }, + { + "#": 1318 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,4,4", + "startCol": 8, + "endCol": 9, + "startRow": 4, + "endRow": 4 + }, + { + "id": 31, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1321 + }, + "angle": 0, + "vertices": { + "#": 1322 + }, + "position": { + "#": 1343 + }, + "force": { + "#": 1344 + }, + "torque": 0, + "positionImpulse": { + "#": 1345 + }, + "constraintImpulse": { + "#": 1346 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1347 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1348 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1349 + }, + "circleRadius": 20, + "bounds": { + "#": 1351 + }, + "positionPrev": { + "#": 1354 + }, + "anglePrev": 0, + "axes": { + "#": 1355 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1320 + }, + "sleepCounter": 0, + "region": { + "#": 1366 + } + }, + [ + { + "#": 1320 + } + ], + [ + { + "#": 1323 + }, + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + }, + { + "#": 1327 + }, + { + "#": 1328 + }, + { + "#": 1329 + }, + { + "#": 1330 + }, + { + "#": 1331 + }, + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + }, + { + "#": 1335 + }, + { + "#": 1336 + }, + { + "#": 1337 + }, + { + "#": 1338 + }, + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + }, + { + "#": 1342 + } + ], + { + "x": 496.556, + "y": 219.63246, + "index": 0, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 225.58346, + "index": 1, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 230.64546, + "index": 2, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 234.32346, + "index": 3, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 236.25746, + "index": 4, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 236.25746, + "index": 5, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 234.32346, + "index": 6, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 230.64546, + "index": 7, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 225.58346, + "index": 8, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 219.63246, + "index": 9, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 213.37446, + "index": 10, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 207.42346, + "index": 11, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 202.36146, + "index": 12, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 198.68346, + "index": 13, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 196.74946, + "index": 14, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 196.74946, + "index": 15, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 198.68346, + "index": 16, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 202.36146, + "index": 17, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 207.42346, + "index": 18, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 496.556, + "y": 213.37446, + "index": 19, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 476.802, + "y": 216.50346 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1350 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1352 + }, + "max": { + "#": 1353 + } + }, + { + "x": 457.048, + "y": 196.74946 + }, + { + "x": 496.556, + "y": 239.16473 + }, + { + "x": 476.802, + "y": 213.59619 + }, + [ + { + "#": 1356 + }, + { + "#": 1357 + }, + { + "#": 1358 + }, + { + "#": 1359 + }, + { + "#": 1360 + }, + { + "#": 1361 + }, + { + "#": 1362 + }, + { + "#": 1363 + }, + { + "#": 1364 + }, + { + "#": 1365 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,4,4", + "startCol": 9, + "endCol": 10, + "startRow": 4, + "endRow": 4 + }, + { + "id": 32, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1368 + }, + "angle": 0, + "vertices": { + "#": 1369 + }, + "position": { + "#": 1390 + }, + "force": { + "#": 1391 + }, + "torque": 0, + "positionImpulse": { + "#": 1392 + }, + "constraintImpulse": { + "#": 1393 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1394 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1395 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1396 + }, + "circleRadius": 20, + "bounds": { + "#": 1398 + }, + "positionPrev": { + "#": 1401 + }, + "anglePrev": 0, + "axes": { + "#": 1402 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1367 + }, + "sleepCounter": 0, + "region": { + "#": 1413 + } + }, + [ + { + "#": 1367 + } + ], + [ + { + "#": 1370 + }, + { + "#": 1371 + }, + { + "#": 1372 + }, + { + "#": 1373 + }, + { + "#": 1374 + }, + { + "#": 1375 + }, + { + "#": 1376 + }, + { + "#": 1377 + }, + { + "#": 1378 + }, + { + "#": 1379 + }, + { + "#": 1380 + }, + { + "#": 1381 + }, + { + "#": 1382 + }, + { + "#": 1383 + }, + { + "#": 1384 + }, + { + "#": 1385 + }, + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + } + ], + { + "x": 556.064, + "y": 219.63246, + "index": 0, + "body": { + "#": 1367 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 225.58346, + "index": 1, + "body": { + "#": 1367 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 230.64546, + "index": 2, + "body": { + "#": 1367 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 234.32346, + "index": 3, + "body": { + "#": 1367 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 236.25746, + "index": 4, + "body": { + "#": 1367 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 236.25746, + "index": 5, + "body": { + "#": 1367 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 234.32346, + "index": 6, + "body": { + "#": 1367 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 230.64546, + "index": 7, + "body": { + "#": 1367 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 225.58346, + "index": 8, + "body": { + "#": 1367 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 219.63246, + "index": 9, + "body": { + "#": 1367 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 213.37446, + "index": 10, + "body": { + "#": 1367 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 207.42346, + "index": 11, + "body": { + "#": 1367 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 202.36146, + "index": 12, + "body": { + "#": 1367 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 198.68346, + "index": 13, + "body": { + "#": 1367 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 196.74946, + "index": 14, + "body": { + "#": 1367 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 196.74946, + "index": 15, + "body": { + "#": 1367 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 198.68346, + "index": 16, + "body": { + "#": 1367 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 202.36146, + "index": 17, + "body": { + "#": 1367 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 207.42346, + "index": 18, + "body": { + "#": 1367 + }, + "isInternal": false + }, + { + "x": 556.064, + "y": 213.37446, + "index": 19, + "body": { + "#": 1367 + }, + "isInternal": false + }, + { + "x": 536.31, + "y": 216.50346 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1397 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1399 + }, + "max": { + "#": 1400 + } + }, + { + "x": 516.556, + "y": 196.74946 + }, + { + "x": 556.064, + "y": 239.16473 + }, + { + "x": 536.31, + "y": 213.59619 + }, + [ + { + "#": 1403 + }, + { + "#": 1404 + }, + { + "#": 1405 + }, + { + "#": 1406 + }, + { + "#": 1407 + }, + { + "#": 1408 + }, + { + "#": 1409 + }, + { + "#": 1410 + }, + { + "#": 1411 + }, + { + "#": 1412 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,4,4", + "startCol": 10, + "endCol": 11, + "startRow": 4, + "endRow": 4 + }, + { + "id": 33, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1415 + }, + "angle": 0, + "vertices": { + "#": 1416 + }, + "position": { + "#": 1437 + }, + "force": { + "#": 1438 + }, + "torque": 0, + "positionImpulse": { + "#": 1439 + }, + "constraintImpulse": { + "#": 1440 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1441 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1442 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1443 + }, + "circleRadius": 20, + "bounds": { + "#": 1445 + }, + "positionPrev": { + "#": 1448 + }, + "anglePrev": 0, + "axes": { + "#": 1449 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1414 + }, + "sleepCounter": 0, + "region": { + "#": 1460 + } + }, + [ + { + "#": 1414 + } + ], + [ + { + "#": 1417 + }, + { + "#": 1418 + }, + { + "#": 1419 + }, + { + "#": 1420 + }, + { + "#": 1421 + }, + { + "#": 1422 + }, + { + "#": 1423 + }, + { + "#": 1424 + }, + { + "#": 1425 + }, + { + "#": 1426 + }, + { + "#": 1427 + }, + { + "#": 1428 + }, + { + "#": 1429 + }, + { + "#": 1430 + }, + { + "#": 1431 + }, + { + "#": 1432 + }, + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + } + ], + { + "x": 615.572, + "y": 219.63246, + "index": 0, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 225.58346, + "index": 1, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 230.64546, + "index": 2, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 234.32346, + "index": 3, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 236.25746, + "index": 4, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 236.25746, + "index": 5, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 234.32346, + "index": 6, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 230.64546, + "index": 7, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 225.58346, + "index": 8, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 219.63246, + "index": 9, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 213.37446, + "index": 10, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 207.42346, + "index": 11, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 202.36146, + "index": 12, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 198.68346, + "index": 13, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 196.74946, + "index": 14, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 196.74946, + "index": 15, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 198.68346, + "index": 16, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 202.36146, + "index": 17, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 207.42346, + "index": 18, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 615.572, + "y": 213.37446, + "index": 19, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 595.818, + "y": 216.50346 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1444 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1446 + }, + "max": { + "#": 1447 + } + }, + { + "x": 576.064, + "y": 196.74946 + }, + { + "x": 615.572, + "y": 239.16473 + }, + { + "x": 595.818, + "y": 213.59619 + }, + [ + { + "#": 1450 + }, + { + "#": 1451 + }, + { + "#": 1452 + }, + { + "#": 1453 + }, + { + "#": 1454 + }, + { + "#": 1455 + }, + { + "#": 1456 + }, + { + "#": 1457 + }, + { + "#": 1458 + }, + { + "#": 1459 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,4,4", + "startCol": 12, + "endCol": 12, + "startRow": 4, + "endRow": 4 + }, + { + "id": 34, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1462 + }, + "angle": 0, + "vertices": { + "#": 1463 + }, + "position": { + "#": 1484 + }, + "force": { + "#": 1485 + }, + "torque": 0, + "positionImpulse": { + "#": 1486 + }, + "constraintImpulse": { + "#": 1487 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1488 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1489 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1490 + }, + "circleRadius": 20, + "bounds": { + "#": 1492 + }, + "positionPrev": { + "#": 1495 + }, + "anglePrev": 0, + "axes": { + "#": 1496 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1461 + }, + "sleepCounter": 0, + "region": { + "#": 1507 + } + }, + [ + { + "#": 1461 + } + ], + [ + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + }, + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + }, + { + "#": 1473 + }, + { + "#": 1474 + }, + { + "#": 1475 + }, + { + "#": 1476 + }, + { + "#": 1477 + }, + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + }, + { + "#": 1481 + }, + { + "#": 1482 + }, + { + "#": 1483 + } + ], + { + "x": 675.08, + "y": 219.63246, + "index": 0, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 225.58346, + "index": 1, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 230.64546, + "index": 2, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 234.32346, + "index": 3, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 236.25746, + "index": 4, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 236.25746, + "index": 5, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 234.32346, + "index": 6, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 230.64546, + "index": 7, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 225.58346, + "index": 8, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 219.63246, + "index": 9, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 213.37446, + "index": 10, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 207.42346, + "index": 11, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 202.36146, + "index": 12, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 198.68346, + "index": 13, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 196.74946, + "index": 14, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 196.74946, + "index": 15, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 198.68346, + "index": 16, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 202.36146, + "index": 17, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 207.42346, + "index": 18, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 675.08, + "y": 213.37446, + "index": 19, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 655.326, + "y": 216.50346 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1491 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1493 + }, + "max": { + "#": 1494 + } + }, + { + "x": 635.572, + "y": 196.74946 + }, + { + "x": 675.08, + "y": 239.16473 + }, + { + "x": 655.326, + "y": 213.59619 + }, + [ + { + "#": 1497 + }, + { + "#": 1498 + }, + { + "#": 1499 + }, + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "13,14,4,4", + "startCol": 13, + "endCol": 14, + "startRow": 4, + "endRow": 4 + }, + { + "id": 35, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1509 + }, + "angle": 0, + "vertices": { + "#": 1510 + }, + "position": { + "#": 1531 + }, + "force": { + "#": 1532 + }, + "torque": 0, + "positionImpulse": { + "#": 1533 + }, + "constraintImpulse": { + "#": 1534 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1535 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1536 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1537 + }, + "circleRadius": 20, + "bounds": { + "#": 1539 + }, + "positionPrev": { + "#": 1542 + }, + "anglePrev": 0, + "axes": { + "#": 1543 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1508 + }, + "sleepCounter": 0, + "region": { + "#": 1554 + } + }, + [ + { + "#": 1508 + } + ], + [ + { + "#": 1511 + }, + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + }, + { + "#": 1515 + }, + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + }, + { + "#": 1520 + }, + { + "#": 1521 + }, + { + "#": 1522 + }, + { + "#": 1523 + }, + { + "#": 1524 + }, + { + "#": 1525 + }, + { + "#": 1526 + }, + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + } + ], + { + "x": 139.508, + "y": 259.14275, + "index": 0, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 265.09375, + "index": 1, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 270.15575, + "index": 2, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 273.83375, + "index": 3, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 275.76775, + "index": 4, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 275.76775, + "index": 5, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 273.83375, + "index": 6, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 270.15575, + "index": 7, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 265.09375, + "index": 8, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 100, + "y": 259.14275, + "index": 9, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 100, + "y": 252.88475, + "index": 10, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 246.93375, + "index": 11, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 241.87175, + "index": 12, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 238.19375, + "index": 13, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 236.25975, + "index": 14, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 236.25975, + "index": 15, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 238.19375, + "index": 16, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 241.87175, + "index": 17, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 246.93375, + "index": 18, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 139.508, + "y": 252.88475, + "index": 19, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 119.754, + "y": 256.01375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1538 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1540 + }, + "max": { + "#": 1541 + } + }, + { + "x": 100, + "y": 236.25975 + }, + { + "x": 139.508, + "y": 275.76775 + }, + { + "x": 119.754, + "y": 253.10648 + }, + [ + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + }, + { + "#": 1548 + }, + { + "#": 1549 + }, + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + }, + { + "#": 1553 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,2,4,5", + "startCol": 2, + "endCol": 2, + "startRow": 4, + "endRow": 5 + }, + { + "id": 36, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1556 + }, + "angle": 0, + "vertices": { + "#": 1557 + }, + "position": { + "#": 1578 + }, + "force": { + "#": 1579 + }, + "torque": 0, + "positionImpulse": { + "#": 1580 + }, + "constraintImpulse": { + "#": 1581 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1582 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1583 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1584 + }, + "circleRadius": 20, + "bounds": { + "#": 1586 + }, + "positionPrev": { + "#": 1589 + }, + "anglePrev": 0, + "axes": { + "#": 1590 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1555 + }, + "sleepCounter": 0, + "region": { + "#": 1601 + } + }, + [ + { + "#": 1555 + } + ], + [ + { + "#": 1558 + }, + { + "#": 1559 + }, + { + "#": 1560 + }, + { + "#": 1561 + }, + { + "#": 1562 + }, + { + "#": 1563 + }, + { + "#": 1564 + }, + { + "#": 1565 + }, + { + "#": 1566 + }, + { + "#": 1567 + }, + { + "#": 1568 + }, + { + "#": 1569 + }, + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + }, + { + "#": 1577 + } + ], + { + "x": 199.016, + "y": 259.14275, + "index": 0, + "body": { + "#": 1555 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 265.09375, + "index": 1, + "body": { + "#": 1555 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 270.15575, + "index": 2, + "body": { + "#": 1555 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 273.83375, + "index": 3, + "body": { + "#": 1555 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 275.76775, + "index": 4, + "body": { + "#": 1555 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 275.76775, + "index": 5, + "body": { + "#": 1555 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 273.83375, + "index": 6, + "body": { + "#": 1555 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 270.15575, + "index": 7, + "body": { + "#": 1555 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 265.09375, + "index": 8, + "body": { + "#": 1555 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 259.14275, + "index": 9, + "body": { + "#": 1555 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 252.88475, + "index": 10, + "body": { + "#": 1555 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 246.93375, + "index": 11, + "body": { + "#": 1555 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 241.87175, + "index": 12, + "body": { + "#": 1555 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 238.19375, + "index": 13, + "body": { + "#": 1555 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 236.25975, + "index": 14, + "body": { + "#": 1555 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 236.25975, + "index": 15, + "body": { + "#": 1555 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 238.19375, + "index": 16, + "body": { + "#": 1555 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 241.87175, + "index": 17, + "body": { + "#": 1555 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 246.93375, + "index": 18, + "body": { + "#": 1555 + }, + "isInternal": false + }, + { + "x": 199.016, + "y": 252.88475, + "index": 19, + "body": { + "#": 1555 + }, + "isInternal": false + }, + { + "x": 179.262, + "y": 256.01375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1585 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1587 + }, + "max": { + "#": 1588 + } + }, + { + "x": 159.508, + "y": 236.25975 + }, + { + "x": 199.016, + "y": 275.76775 + }, + { + "x": 179.262, + "y": 253.10648 + }, + [ + { + "#": 1591 + }, + { + "#": 1592 + }, + { + "#": 1593 + }, + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + }, + { + "#": 1597 + }, + { + "#": 1598 + }, + { + "#": 1599 + }, + { + "#": 1600 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,4,5", + "startCol": 3, + "endCol": 4, + "startRow": 4, + "endRow": 5 + }, + { + "id": 37, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1603 + }, + "angle": 0, + "vertices": { + "#": 1604 + }, + "position": { + "#": 1625 + }, + "force": { + "#": 1626 + }, + "torque": 0, + "positionImpulse": { + "#": 1627 + }, + "constraintImpulse": { + "#": 1628 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1629 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1630 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1631 + }, + "circleRadius": 20, + "bounds": { + "#": 1633 + }, + "positionPrev": { + "#": 1636 + }, + "anglePrev": 0, + "axes": { + "#": 1637 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1602 + }, + "sleepCounter": 0, + "region": { + "#": 1648 + } + }, + [ + { + "#": 1602 + } + ], + [ + { + "#": 1605 + }, + { + "#": 1606 + }, + { + "#": 1607 + }, + { + "#": 1608 + }, + { + "#": 1609 + }, + { + "#": 1610 + }, + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + }, + { + "#": 1614 + }, + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + }, + { + "#": 1618 + }, + { + "#": 1619 + }, + { + "#": 1620 + }, + { + "#": 1621 + }, + { + "#": 1622 + }, + { + "#": 1623 + }, + { + "#": 1624 + } + ], + { + "x": 258.524, + "y": 259.14275, + "index": 0, + "body": { + "#": 1602 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 265.09375, + "index": 1, + "body": { + "#": 1602 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 270.15575, + "index": 2, + "body": { + "#": 1602 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 273.83375, + "index": 3, + "body": { + "#": 1602 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 275.76775, + "index": 4, + "body": { + "#": 1602 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 275.76775, + "index": 5, + "body": { + "#": 1602 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 273.83375, + "index": 6, + "body": { + "#": 1602 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 270.15575, + "index": 7, + "body": { + "#": 1602 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 265.09375, + "index": 8, + "body": { + "#": 1602 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 259.14275, + "index": 9, + "body": { + "#": 1602 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 252.88475, + "index": 10, + "body": { + "#": 1602 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 246.93375, + "index": 11, + "body": { + "#": 1602 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 241.87175, + "index": 12, + "body": { + "#": 1602 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 238.19375, + "index": 13, + "body": { + "#": 1602 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 236.25975, + "index": 14, + "body": { + "#": 1602 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 236.25975, + "index": 15, + "body": { + "#": 1602 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 238.19375, + "index": 16, + "body": { + "#": 1602 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 241.87175, + "index": 17, + "body": { + "#": 1602 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 246.93375, + "index": 18, + "body": { + "#": 1602 + }, + "isInternal": false + }, + { + "x": 258.524, + "y": 252.88475, + "index": 19, + "body": { + "#": 1602 + }, + "isInternal": false + }, + { + "x": 238.77, + "y": 256.01375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1632 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1634 + }, + "max": { + "#": 1635 + } + }, + { + "x": 219.016, + "y": 236.25975 + }, + { + "x": 258.524, + "y": 275.76775 + }, + { + "x": 238.77, + "y": 253.10648 + }, + [ + { + "#": 1638 + }, + { + "#": 1639 + }, + { + "#": 1640 + }, + { + "#": 1641 + }, + { + "#": 1642 + }, + { + "#": 1643 + }, + { + "#": 1644 + }, + { + "#": 1645 + }, + { + "#": 1646 + }, + { + "#": 1647 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,4,5", + "startCol": 4, + "endCol": 5, + "startRow": 4, + "endRow": 5 + }, + { + "id": 38, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1650 + }, + "angle": 0, + "vertices": { + "#": 1651 + }, + "position": { + "#": 1672 + }, + "force": { + "#": 1673 + }, + "torque": 0, + "positionImpulse": { + "#": 1674 + }, + "constraintImpulse": { + "#": 1675 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1676 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1677 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1678 + }, + "circleRadius": 20, + "bounds": { + "#": 1680 + }, + "positionPrev": { + "#": 1683 + }, + "anglePrev": 0, + "axes": { + "#": 1684 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1649 + }, + "sleepCounter": 0, + "region": { + "#": 1695 + } + }, + [ + { + "#": 1649 + } + ], + [ + { + "#": 1652 + }, + { + "#": 1653 + }, + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + }, + { + "#": 1661 + }, + { + "#": 1662 + }, + { + "#": 1663 + }, + { + "#": 1664 + }, + { + "#": 1665 + }, + { + "#": 1666 + }, + { + "#": 1667 + }, + { + "#": 1668 + }, + { + "#": 1669 + }, + { + "#": 1670 + }, + { + "#": 1671 + } + ], + { + "x": 318.032, + "y": 259.14275, + "index": 0, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 265.09375, + "index": 1, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 270.15575, + "index": 2, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 273.83375, + "index": 3, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 275.76775, + "index": 4, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 275.76775, + "index": 5, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 273.83375, + "index": 6, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 270.15575, + "index": 7, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 265.09375, + "index": 8, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 259.14275, + "index": 9, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 252.88475, + "index": 10, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 246.93375, + "index": 11, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 241.87175, + "index": 12, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 238.19375, + "index": 13, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 236.25975, + "index": 14, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 236.25975, + "index": 15, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 238.19375, + "index": 16, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 241.87175, + "index": 17, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 246.93375, + "index": 18, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 318.032, + "y": 252.88475, + "index": 19, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 298.278, + "y": 256.01375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1679 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1681 + }, + "max": { + "#": 1682 + } + }, + { + "x": 278.524, + "y": 236.25975 + }, + { + "x": 318.032, + "y": 275.76775 + }, + { + "x": 298.278, + "y": 253.10648 + }, + [ + { + "#": 1685 + }, + { + "#": 1686 + }, + { + "#": 1687 + }, + { + "#": 1688 + }, + { + "#": 1689 + }, + { + "#": 1690 + }, + { + "#": 1691 + }, + { + "#": 1692 + }, + { + "#": 1693 + }, + { + "#": 1694 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,4,5", + "startCol": 5, + "endCol": 6, + "startRow": 4, + "endRow": 5 + }, + { + "id": 39, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1697 + }, + "angle": 0, + "vertices": { + "#": 1698 + }, + "position": { + "#": 1719 + }, + "force": { + "#": 1720 + }, + "torque": 0, + "positionImpulse": { + "#": 1721 + }, + "constraintImpulse": { + "#": 1722 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1723 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1724 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1725 + }, + "circleRadius": 20, + "bounds": { + "#": 1727 + }, + "positionPrev": { + "#": 1730 + }, + "anglePrev": 0, + "axes": { + "#": 1731 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1696 + }, + "sleepCounter": 0, + "region": { + "#": 1742 + } + }, + [ + { + "#": 1696 + } + ], + [ + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + }, + { + "#": 1703 + }, + { + "#": 1704 + }, + { + "#": 1705 + }, + { + "#": 1706 + }, + { + "#": 1707 + }, + { + "#": 1708 + }, + { + "#": 1709 + }, + { + "#": 1710 + }, + { + "#": 1711 + }, + { + "#": 1712 + }, + { + "#": 1713 + }, + { + "#": 1714 + }, + { + "#": 1715 + }, + { + "#": 1716 + }, + { + "#": 1717 + }, + { + "#": 1718 + } + ], + { + "x": 377.54, + "y": 259.14275, + "index": 0, + "body": { + "#": 1696 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 265.09375, + "index": 1, + "body": { + "#": 1696 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 270.15575, + "index": 2, + "body": { + "#": 1696 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 273.83375, + "index": 3, + "body": { + "#": 1696 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 275.76775, + "index": 4, + "body": { + "#": 1696 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 275.76775, + "index": 5, + "body": { + "#": 1696 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 273.83375, + "index": 6, + "body": { + "#": 1696 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 270.15575, + "index": 7, + "body": { + "#": 1696 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 265.09375, + "index": 8, + "body": { + "#": 1696 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 259.14275, + "index": 9, + "body": { + "#": 1696 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 252.88475, + "index": 10, + "body": { + "#": 1696 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 246.93375, + "index": 11, + "body": { + "#": 1696 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 241.87175, + "index": 12, + "body": { + "#": 1696 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 238.19375, + "index": 13, + "body": { + "#": 1696 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 236.25975, + "index": 14, + "body": { + "#": 1696 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 236.25975, + "index": 15, + "body": { + "#": 1696 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 238.19375, + "index": 16, + "body": { + "#": 1696 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 241.87175, + "index": 17, + "body": { + "#": 1696 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 246.93375, + "index": 18, + "body": { + "#": 1696 + }, + "isInternal": false + }, + { + "x": 377.54, + "y": 252.88475, + "index": 19, + "body": { + "#": 1696 + }, + "isInternal": false + }, + { + "x": 357.786, + "y": 256.01375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1726 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1728 + }, + "max": { + "#": 1729 + } + }, + { + "x": 338.032, + "y": 236.25975 + }, + { + "x": 377.54, + "y": 275.76775 + }, + { + "x": 357.786, + "y": 253.10648 + }, + [ + { + "#": 1732 + }, + { + "#": 1733 + }, + { + "#": 1734 + }, + { + "#": 1735 + }, + { + "#": 1736 + }, + { + "#": 1737 + }, + { + "#": 1738 + }, + { + "#": 1739 + }, + { + "#": 1740 + }, + { + "#": 1741 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,4,5", + "startCol": 7, + "endCol": 7, + "startRow": 4, + "endRow": 5 + }, + { + "id": 40, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1744 + }, + "angle": 0, + "vertices": { + "#": 1745 + }, + "position": { + "#": 1766 + }, + "force": { + "#": 1767 + }, + "torque": 0, + "positionImpulse": { + "#": 1768 + }, + "constraintImpulse": { + "#": 1769 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1770 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1771 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1772 + }, + "circleRadius": 20, + "bounds": { + "#": 1774 + }, + "positionPrev": { + "#": 1777 + }, + "anglePrev": 0, + "axes": { + "#": 1778 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1743 + }, + "sleepCounter": 0, + "region": { + "#": 1789 + } + }, + [ + { + "#": 1743 + } + ], + [ + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + }, + { + "#": 1751 + }, + { + "#": 1752 + }, + { + "#": 1753 + }, + { + "#": 1754 + }, + { + "#": 1755 + }, + { + "#": 1756 + }, + { + "#": 1757 + }, + { + "#": 1758 + }, + { + "#": 1759 + }, + { + "#": 1760 + }, + { + "#": 1761 + }, + { + "#": 1762 + }, + { + "#": 1763 + }, + { + "#": 1764 + }, + { + "#": 1765 + } + ], + { + "x": 437.048, + "y": 259.14275, + "index": 0, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 265.09375, + "index": 1, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 270.15575, + "index": 2, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 273.83375, + "index": 3, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 275.76775, + "index": 4, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 275.76775, + "index": 5, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 273.83375, + "index": 6, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 270.15575, + "index": 7, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 265.09375, + "index": 8, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 259.14275, + "index": 9, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 252.88475, + "index": 10, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 246.93375, + "index": 11, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 241.87175, + "index": 12, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 238.19375, + "index": 13, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 236.25975, + "index": 14, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 236.25975, + "index": 15, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 238.19375, + "index": 16, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 241.87175, + "index": 17, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 246.93375, + "index": 18, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 437.048, + "y": 252.88475, + "index": 19, + "body": { + "#": 1743 + }, + "isInternal": false + }, + { + "x": 417.294, + "y": 256.01375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1773 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1775 + }, + "max": { + "#": 1776 + } + }, + { + "x": 397.54, + "y": 236.25975 + }, + { + "x": 437.048, + "y": 275.76775 + }, + { + "x": 417.294, + "y": 253.10648 + }, + [ + { + "#": 1779 + }, + { + "#": 1780 + }, + { + "#": 1781 + }, + { + "#": 1782 + }, + { + "#": 1783 + }, + { + "#": 1784 + }, + { + "#": 1785 + }, + { + "#": 1786 + }, + { + "#": 1787 + }, + { + "#": 1788 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,4,5", + "startCol": 8, + "endCol": 9, + "startRow": 4, + "endRow": 5 + }, + { + "id": 41, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1791 + }, + "angle": 0, + "vertices": { + "#": 1792 + }, + "position": { + "#": 1813 + }, + "force": { + "#": 1814 + }, + "torque": 0, + "positionImpulse": { + "#": 1815 + }, + "constraintImpulse": { + "#": 1816 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1817 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1818 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1819 + }, + "circleRadius": 20, + "bounds": { + "#": 1821 + }, + "positionPrev": { + "#": 1824 + }, + "anglePrev": 0, + "axes": { + "#": 1825 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1790 + }, + "sleepCounter": 0, + "region": { + "#": 1836 + } + }, + [ + { + "#": 1790 + } + ], + [ + { + "#": 1793 + }, + { + "#": 1794 + }, + { + "#": 1795 + }, + { + "#": 1796 + }, + { + "#": 1797 + }, + { + "#": 1798 + }, + { + "#": 1799 + }, + { + "#": 1800 + }, + { + "#": 1801 + }, + { + "#": 1802 + }, + { + "#": 1803 + }, + { + "#": 1804 + }, + { + "#": 1805 + }, + { + "#": 1806 + }, + { + "#": 1807 + }, + { + "#": 1808 + }, + { + "#": 1809 + }, + { + "#": 1810 + }, + { + "#": 1811 + }, + { + "#": 1812 + } + ], + { + "x": 496.556, + "y": 259.14275, + "index": 0, + "body": { + "#": 1790 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 265.09375, + "index": 1, + "body": { + "#": 1790 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 270.15575, + "index": 2, + "body": { + "#": 1790 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 273.83375, + "index": 3, + "body": { + "#": 1790 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 275.76775, + "index": 4, + "body": { + "#": 1790 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 275.76775, + "index": 5, + "body": { + "#": 1790 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 273.83375, + "index": 6, + "body": { + "#": 1790 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 270.15575, + "index": 7, + "body": { + "#": 1790 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 265.09375, + "index": 8, + "body": { + "#": 1790 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 259.14275, + "index": 9, + "body": { + "#": 1790 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 252.88475, + "index": 10, + "body": { + "#": 1790 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 246.93375, + "index": 11, + "body": { + "#": 1790 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 241.87175, + "index": 12, + "body": { + "#": 1790 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 238.19375, + "index": 13, + "body": { + "#": 1790 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 236.25975, + "index": 14, + "body": { + "#": 1790 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 236.25975, + "index": 15, + "body": { + "#": 1790 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 238.19375, + "index": 16, + "body": { + "#": 1790 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 241.87175, + "index": 17, + "body": { + "#": 1790 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 246.93375, + "index": 18, + "body": { + "#": 1790 + }, + "isInternal": false + }, + { + "x": 496.556, + "y": 252.88475, + "index": 19, + "body": { + "#": 1790 + }, + "isInternal": false + }, + { + "x": 476.802, + "y": 256.01375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1820 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1822 + }, + "max": { + "#": 1823 + } + }, + { + "x": 457.048, + "y": 236.25975 + }, + { + "x": 496.556, + "y": 275.76775 + }, + { + "x": 476.802, + "y": 253.10648 + }, + [ + { + "#": 1826 + }, + { + "#": 1827 + }, + { + "#": 1828 + }, + { + "#": 1829 + }, + { + "#": 1830 + }, + { + "#": 1831 + }, + { + "#": 1832 + }, + { + "#": 1833 + }, + { + "#": 1834 + }, + { + "#": 1835 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,4,5", + "startCol": 9, + "endCol": 10, + "startRow": 4, + "endRow": 5 + }, + { + "id": 42, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1838 + }, + "angle": 0, + "vertices": { + "#": 1839 + }, + "position": { + "#": 1860 + }, + "force": { + "#": 1861 + }, + "torque": 0, + "positionImpulse": { + "#": 1862 + }, + "constraintImpulse": { + "#": 1863 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1864 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1865 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1866 + }, + "circleRadius": 20, + "bounds": { + "#": 1868 + }, + "positionPrev": { + "#": 1871 + }, + "anglePrev": 0, + "axes": { + "#": 1872 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1837 + }, + "sleepCounter": 0, + "region": { + "#": 1883 + } + }, + [ + { + "#": 1837 + } + ], + [ + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + }, + { + "#": 1844 + }, + { + "#": 1845 + }, + { + "#": 1846 + }, + { + "#": 1847 + }, + { + "#": 1848 + }, + { + "#": 1849 + }, + { + "#": 1850 + }, + { + "#": 1851 + }, + { + "#": 1852 + }, + { + "#": 1853 + }, + { + "#": 1854 + }, + { + "#": 1855 + }, + { + "#": 1856 + }, + { + "#": 1857 + }, + { + "#": 1858 + }, + { + "#": 1859 + } + ], + { + "x": 556.064, + "y": 259.14275, + "index": 0, + "body": { + "#": 1837 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 265.09375, + "index": 1, + "body": { + "#": 1837 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 270.15575, + "index": 2, + "body": { + "#": 1837 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 273.83375, + "index": 3, + "body": { + "#": 1837 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 275.76775, + "index": 4, + "body": { + "#": 1837 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 275.76775, + "index": 5, + "body": { + "#": 1837 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 273.83375, + "index": 6, + "body": { + "#": 1837 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 270.15575, + "index": 7, + "body": { + "#": 1837 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 265.09375, + "index": 8, + "body": { + "#": 1837 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 259.14275, + "index": 9, + "body": { + "#": 1837 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 252.88475, + "index": 10, + "body": { + "#": 1837 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 246.93375, + "index": 11, + "body": { + "#": 1837 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 241.87175, + "index": 12, + "body": { + "#": 1837 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 238.19375, + "index": 13, + "body": { + "#": 1837 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 236.25975, + "index": 14, + "body": { + "#": 1837 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 236.25975, + "index": 15, + "body": { + "#": 1837 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 238.19375, + "index": 16, + "body": { + "#": 1837 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 241.87175, + "index": 17, + "body": { + "#": 1837 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 246.93375, + "index": 18, + "body": { + "#": 1837 + }, + "isInternal": false + }, + { + "x": 556.064, + "y": 252.88475, + "index": 19, + "body": { + "#": 1837 + }, + "isInternal": false + }, + { + "x": 536.31, + "y": 256.01375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1867 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1869 + }, + "max": { + "#": 1870 + } + }, + { + "x": 516.556, + "y": 236.25975 + }, + { + "x": 556.064, + "y": 275.76775 + }, + { + "x": 536.31, + "y": 253.10648 + }, + [ + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + }, + { + "#": 1877 + }, + { + "#": 1878 + }, + { + "#": 1879 + }, + { + "#": 1880 + }, + { + "#": 1881 + }, + { + "#": 1882 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,4,5", + "startCol": 10, + "endCol": 11, + "startRow": 4, + "endRow": 5 + }, + { + "id": 43, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1885 + }, + "angle": 0, + "vertices": { + "#": 1886 + }, + "position": { + "#": 1907 + }, + "force": { + "#": 1908 + }, + "torque": 0, + "positionImpulse": { + "#": 1909 + }, + "constraintImpulse": { + "#": 1910 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1911 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1912 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1913 + }, + "circleRadius": 20, + "bounds": { + "#": 1915 + }, + "positionPrev": { + "#": 1918 + }, + "anglePrev": 0, + "axes": { + "#": 1919 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1884 + }, + "sleepCounter": 0, + "region": { + "#": 1930 + } + }, + [ + { + "#": 1884 + } + ], + [ + { + "#": 1887 + }, + { + "#": 1888 + }, + { + "#": 1889 + }, + { + "#": 1890 + }, + { + "#": 1891 + }, + { + "#": 1892 + }, + { + "#": 1893 + }, + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + }, + { + "#": 1902 + }, + { + "#": 1903 + }, + { + "#": 1904 + }, + { + "#": 1905 + }, + { + "#": 1906 + } + ], + { + "x": 615.572, + "y": 259.14275, + "index": 0, + "body": { + "#": 1884 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 265.09375, + "index": 1, + "body": { + "#": 1884 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 270.15575, + "index": 2, + "body": { + "#": 1884 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 273.83375, + "index": 3, + "body": { + "#": 1884 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 275.76775, + "index": 4, + "body": { + "#": 1884 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 275.76775, + "index": 5, + "body": { + "#": 1884 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 273.83375, + "index": 6, + "body": { + "#": 1884 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 270.15575, + "index": 7, + "body": { + "#": 1884 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 265.09375, + "index": 8, + "body": { + "#": 1884 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 259.14275, + "index": 9, + "body": { + "#": 1884 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 252.88475, + "index": 10, + "body": { + "#": 1884 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 246.93375, + "index": 11, + "body": { + "#": 1884 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 241.87175, + "index": 12, + "body": { + "#": 1884 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 238.19375, + "index": 13, + "body": { + "#": 1884 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 236.25975, + "index": 14, + "body": { + "#": 1884 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 236.25975, + "index": 15, + "body": { + "#": 1884 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 238.19375, + "index": 16, + "body": { + "#": 1884 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 241.87175, + "index": 17, + "body": { + "#": 1884 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 246.93375, + "index": 18, + "body": { + "#": 1884 + }, + "isInternal": false + }, + { + "x": 615.572, + "y": 252.88475, + "index": 19, + "body": { + "#": 1884 + }, + "isInternal": false + }, + { + "x": 595.818, + "y": 256.01375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1914 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1916 + }, + "max": { + "#": 1917 + } + }, + { + "x": 576.064, + "y": 236.25975 + }, + { + "x": 615.572, + "y": 275.76775 + }, + { + "x": 595.818, + "y": 253.10648 + }, + [ + { + "#": 1920 + }, + { + "#": 1921 + }, + { + "#": 1922 + }, + { + "#": 1923 + }, + { + "#": 1924 + }, + { + "#": 1925 + }, + { + "#": 1926 + }, + { + "#": 1927 + }, + { + "#": 1928 + }, + { + "#": 1929 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,4,5", + "startCol": 12, + "endCol": 12, + "startRow": 4, + "endRow": 5 + }, + { + "id": 44, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1932 + }, + "angle": 0, + "vertices": { + "#": 1933 + }, + "position": { + "#": 1954 + }, + "force": { + "#": 1955 + }, + "torque": 0, + "positionImpulse": { + "#": 1956 + }, + "constraintImpulse": { + "#": 1957 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1958 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1959 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1960 + }, + "circleRadius": 20, + "bounds": { + "#": 1962 + }, + "positionPrev": { + "#": 1965 + }, + "anglePrev": 0, + "axes": { + "#": 1966 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1931 + }, + "sleepCounter": 0, + "region": { + "#": 1977 + } + }, + [ + { + "#": 1931 + } + ], + [ + { + "#": 1934 + }, + { + "#": 1935 + }, + { + "#": 1936 + }, + { + "#": 1937 + }, + { + "#": 1938 + }, + { + "#": 1939 + }, + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + }, + { + "#": 1944 + }, + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + }, + { + "#": 1948 + }, + { + "#": 1949 + }, + { + "#": 1950 + }, + { + "#": 1951 + }, + { + "#": 1952 + }, + { + "#": 1953 + } + ], + { + "x": 675.08, + "y": 259.14275, + "index": 0, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 265.09375, + "index": 1, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 270.15575, + "index": 2, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 273.83375, + "index": 3, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 275.76775, + "index": 4, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 275.76775, + "index": 5, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 273.83375, + "index": 6, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 270.15575, + "index": 7, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 265.09375, + "index": 8, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 259.14275, + "index": 9, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 252.88475, + "index": 10, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 246.93375, + "index": 11, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 241.87175, + "index": 12, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 238.19375, + "index": 13, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 236.25975, + "index": 14, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 236.25975, + "index": 15, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 238.19375, + "index": 16, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 241.87175, + "index": 17, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 246.93375, + "index": 18, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 675.08, + "y": 252.88475, + "index": 19, + "body": { + "#": 1931 + }, + "isInternal": false + }, + { + "x": 655.326, + "y": 256.01375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1961 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1963 + }, + "max": { + "#": 1964 + } + }, + { + "x": 635.572, + "y": 236.25975 + }, + { + "x": 675.08, + "y": 275.76775 + }, + { + "x": 655.326, + "y": 253.10648 + }, + [ + { + "#": 1967 + }, + { + "#": 1968 + }, + { + "#": 1969 + }, + { + "#": 1970 + }, + { + "#": 1971 + }, + { + "#": 1972 + }, + { + "#": 1973 + }, + { + "#": 1974 + }, + { + "#": 1975 + }, + { + "#": 1976 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "13,14,4,5", + "startCol": 13, + "endCol": 14, + "startRow": 4, + "endRow": 5 + }, + { + "id": 45, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1979 + }, + "angle": 0, + "vertices": { + "#": 1980 + }, + "position": { + "#": 2001 + }, + "force": { + "#": 2002 + }, + "torque": 0, + "positionImpulse": { + "#": 2003 + }, + "constraintImpulse": { + "#": 2004 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2005 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2006 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2007 + }, + "circleRadius": 20, + "bounds": { + "#": 2009 + }, + "positionPrev": { + "#": 2012 + }, + "anglePrev": 0, + "axes": { + "#": 2013 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 1978 + }, + "sleepCounter": 0, + "region": { + "#": 2024 + } + }, + [ + { + "#": 1978 + } + ], + [ + { + "#": 1981 + }, + { + "#": 1982 + }, + { + "#": 1983 + }, + { + "#": 1984 + }, + { + "#": 1985 + }, + { + "#": 1986 + }, + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + }, + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + }, + { + "#": 1996 + }, + { + "#": 1997 + }, + { + "#": 1998 + }, + { + "#": 1999 + }, + { + "#": 2000 + } + ], + { + "x": 139.508, + "y": 298.74846, + "index": 0, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 304.69946, + "index": 1, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 309.76146, + "index": 2, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 313.43946, + "index": 3, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 315.37346, + "index": 4, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 315.37346, + "index": 5, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 313.43946, + "index": 6, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 309.76146, + "index": 7, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 304.69946, + "index": 8, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 100, + "y": 298.74846, + "index": 9, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 100, + "y": 292.49046, + "index": 10, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 286.53946, + "index": 11, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 281.47746, + "index": 12, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 277.79946, + "index": 13, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 275.86546, + "index": 14, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 275.86546, + "index": 15, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 277.79946, + "index": 16, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 281.47746, + "index": 17, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 286.53946, + "index": 18, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 139.508, + "y": 292.49046, + "index": 19, + "body": { + "#": 1978 + }, + "isInternal": false + }, + { + "x": 119.754, + "y": 295.61946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2008 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2010 + }, + "max": { + "#": 2011 + } + }, + { + "x": 100, + "y": 275.86546 + }, + { + "x": 139.508, + "y": 318.28073 + }, + { + "x": 119.754, + "y": 292.71219 + }, + [ + { + "#": 2014 + }, + { + "#": 2015 + }, + { + "#": 2016 + }, + { + "#": 2017 + }, + { + "#": 2018 + }, + { + "#": 2019 + }, + { + "#": 2020 + }, + { + "#": 2021 + }, + { + "#": 2022 + }, + { + "#": 2023 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,2,5,6", + "startCol": 2, + "endCol": 2, + "startRow": 5, + "endRow": 6 + }, + { + "id": 46, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2026 + }, + "angle": 0, + "vertices": { + "#": 2027 + }, + "position": { + "#": 2048 + }, + "force": { + "#": 2049 + }, + "torque": 0, + "positionImpulse": { + "#": 2050 + }, + "constraintImpulse": { + "#": 2051 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2052 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2053 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2054 + }, + "circleRadius": 20, + "bounds": { + "#": 2056 + }, + "positionPrev": { + "#": 2059 + }, + "anglePrev": 0, + "axes": { + "#": 2060 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2025 + }, + "sleepCounter": 0, + "region": { + "#": 2071 + } + }, + [ + { + "#": 2025 + } + ], + [ + { + "#": 2028 + }, + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + }, + { + "#": 2032 + }, + { + "#": 2033 + }, + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + }, + { + "#": 2038 + }, + { + "#": 2039 + }, + { + "#": 2040 + }, + { + "#": 2041 + }, + { + "#": 2042 + }, + { + "#": 2043 + }, + { + "#": 2044 + }, + { + "#": 2045 + }, + { + "#": 2046 + }, + { + "#": 2047 + } + ], + { + "x": 199.016, + "y": 298.74846, + "index": 0, + "body": { + "#": 2025 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 304.69946, + "index": 1, + "body": { + "#": 2025 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 309.76146, + "index": 2, + "body": { + "#": 2025 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 313.43946, + "index": 3, + "body": { + "#": 2025 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 315.37346, + "index": 4, + "body": { + "#": 2025 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 315.37346, + "index": 5, + "body": { + "#": 2025 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 313.43946, + "index": 6, + "body": { + "#": 2025 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 309.76146, + "index": 7, + "body": { + "#": 2025 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 304.69946, + "index": 8, + "body": { + "#": 2025 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 298.74846, + "index": 9, + "body": { + "#": 2025 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 292.49046, + "index": 10, + "body": { + "#": 2025 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 286.53946, + "index": 11, + "body": { + "#": 2025 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 281.47746, + "index": 12, + "body": { + "#": 2025 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 277.79946, + "index": 13, + "body": { + "#": 2025 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 275.86546, + "index": 14, + "body": { + "#": 2025 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 275.86546, + "index": 15, + "body": { + "#": 2025 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 277.79946, + "index": 16, + "body": { + "#": 2025 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 281.47746, + "index": 17, + "body": { + "#": 2025 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 286.53946, + "index": 18, + "body": { + "#": 2025 + }, + "isInternal": false + }, + { + "x": 199.016, + "y": 292.49046, + "index": 19, + "body": { + "#": 2025 + }, + "isInternal": false + }, + { + "x": 179.262, + "y": 295.61946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2055 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2057 + }, + "max": { + "#": 2058 + } + }, + { + "x": 159.508, + "y": 275.86546 + }, + { + "x": 199.016, + "y": 318.28073 + }, + { + "x": 179.262, + "y": 292.71219 + }, + [ + { + "#": 2061 + }, + { + "#": 2062 + }, + { + "#": 2063 + }, + { + "#": 2064 + }, + { + "#": 2065 + }, + { + "#": 2066 + }, + { + "#": 2067 + }, + { + "#": 2068 + }, + { + "#": 2069 + }, + { + "#": 2070 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,5,6", + "startCol": 3, + "endCol": 4, + "startRow": 5, + "endRow": 6 + }, + { + "id": 47, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2073 + }, + "angle": 0, + "vertices": { + "#": 2074 + }, + "position": { + "#": 2095 + }, + "force": { + "#": 2096 + }, + "torque": 0, + "positionImpulse": { + "#": 2097 + }, + "constraintImpulse": { + "#": 2098 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2099 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2100 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2101 + }, + "circleRadius": 20, + "bounds": { + "#": 2103 + }, + "positionPrev": { + "#": 2106 + }, + "anglePrev": 0, + "axes": { + "#": 2107 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2072 + }, + "sleepCounter": 0, + "region": { + "#": 2118 + } + }, + [ + { + "#": 2072 + } + ], + [ + { + "#": 2075 + }, + { + "#": 2076 + }, + { + "#": 2077 + }, + { + "#": 2078 + }, + { + "#": 2079 + }, + { + "#": 2080 + }, + { + "#": 2081 + }, + { + "#": 2082 + }, + { + "#": 2083 + }, + { + "#": 2084 + }, + { + "#": 2085 + }, + { + "#": 2086 + }, + { + "#": 2087 + }, + { + "#": 2088 + }, + { + "#": 2089 + }, + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + }, + { + "#": 2094 + } + ], + { + "x": 258.524, + "y": 298.74846, + "index": 0, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 304.69946, + "index": 1, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 309.76146, + "index": 2, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 313.43946, + "index": 3, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 315.37346, + "index": 4, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 315.37346, + "index": 5, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 313.43946, + "index": 6, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 309.76146, + "index": 7, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 304.69946, + "index": 8, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 298.74846, + "index": 9, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 292.49046, + "index": 10, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 286.53946, + "index": 11, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 281.47746, + "index": 12, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 277.79946, + "index": 13, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 275.86546, + "index": 14, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 275.86546, + "index": 15, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 277.79946, + "index": 16, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 281.47746, + "index": 17, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 286.53946, + "index": 18, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 258.524, + "y": 292.49046, + "index": 19, + "body": { + "#": 2072 + }, + "isInternal": false + }, + { + "x": 238.77, + "y": 295.61946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2102 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2104 + }, + "max": { + "#": 2105 + } + }, + { + "x": 219.016, + "y": 275.86546 + }, + { + "x": 258.524, + "y": 318.28073 + }, + { + "x": 238.77, + "y": 292.71219 + }, + [ + { + "#": 2108 + }, + { + "#": 2109 + }, + { + "#": 2110 + }, + { + "#": 2111 + }, + { + "#": 2112 + }, + { + "#": 2113 + }, + { + "#": 2114 + }, + { + "#": 2115 + }, + { + "#": 2116 + }, + { + "#": 2117 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,5,6", + "startCol": 4, + "endCol": 5, + "startRow": 5, + "endRow": 6 + }, + { + "id": 48, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2120 + }, + "angle": 0, + "vertices": { + "#": 2121 + }, + "position": { + "#": 2142 + }, + "force": { + "#": 2143 + }, + "torque": 0, + "positionImpulse": { + "#": 2144 + }, + "constraintImpulse": { + "#": 2145 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2146 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2147 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2148 + }, + "circleRadius": 20, + "bounds": { + "#": 2150 + }, + "positionPrev": { + "#": 2153 + }, + "anglePrev": 0, + "axes": { + "#": 2154 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2119 + }, + "sleepCounter": 0, + "region": { + "#": 2165 + } + }, + [ + { + "#": 2119 + } + ], + [ + { + "#": 2122 + }, + { + "#": 2123 + }, + { + "#": 2124 + }, + { + "#": 2125 + }, + { + "#": 2126 + }, + { + "#": 2127 + }, + { + "#": 2128 + }, + { + "#": 2129 + }, + { + "#": 2130 + }, + { + "#": 2131 + }, + { + "#": 2132 + }, + { + "#": 2133 + }, + { + "#": 2134 + }, + { + "#": 2135 + }, + { + "#": 2136 + }, + { + "#": 2137 + }, + { + "#": 2138 + }, + { + "#": 2139 + }, + { + "#": 2140 + }, + { + "#": 2141 + } + ], + { + "x": 318.032, + "y": 298.74846, + "index": 0, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 304.69946, + "index": 1, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 309.76146, + "index": 2, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 313.43946, + "index": 3, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 315.37346, + "index": 4, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 315.37346, + "index": 5, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 313.43946, + "index": 6, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 309.76146, + "index": 7, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 304.69946, + "index": 8, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 298.74846, + "index": 9, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 292.49046, + "index": 10, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 286.53946, + "index": 11, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 281.47746, + "index": 12, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 277.79946, + "index": 13, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 275.86546, + "index": 14, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 275.86546, + "index": 15, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 277.79946, + "index": 16, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 281.47746, + "index": 17, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 286.53946, + "index": 18, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 318.032, + "y": 292.49046, + "index": 19, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 298.278, + "y": 295.61946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2149 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2151 + }, + "max": { + "#": 2152 + } + }, + { + "x": 278.524, + "y": 275.86546 + }, + { + "x": 318.032, + "y": 318.28073 + }, + { + "x": 298.278, + "y": 292.71219 + }, + [ + { + "#": 2155 + }, + { + "#": 2156 + }, + { + "#": 2157 + }, + { + "#": 2158 + }, + { + "#": 2159 + }, + { + "#": 2160 + }, + { + "#": 2161 + }, + { + "#": 2162 + }, + { + "#": 2163 + }, + { + "#": 2164 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,5,6", + "startCol": 5, + "endCol": 6, + "startRow": 5, + "endRow": 6 + }, + { + "id": 49, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2167 + }, + "angle": 0, + "vertices": { + "#": 2168 + }, + "position": { + "#": 2189 + }, + "force": { + "#": 2190 + }, + "torque": 0, + "positionImpulse": { + "#": 2191 + }, + "constraintImpulse": { + "#": 2192 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2193 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2194 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2195 + }, + "circleRadius": 20, + "bounds": { + "#": 2197 + }, + "positionPrev": { + "#": 2200 + }, + "anglePrev": 0, + "axes": { + "#": 2201 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2166 + }, + "sleepCounter": 0, + "region": { + "#": 2212 + } + }, + [ + { + "#": 2166 + } + ], + [ + { + "#": 2169 + }, + { + "#": 2170 + }, + { + "#": 2171 + }, + { + "#": 2172 + }, + { + "#": 2173 + }, + { + "#": 2174 + }, + { + "#": 2175 + }, + { + "#": 2176 + }, + { + "#": 2177 + }, + { + "#": 2178 + }, + { + "#": 2179 + }, + { + "#": 2180 + }, + { + "#": 2181 + }, + { + "#": 2182 + }, + { + "#": 2183 + }, + { + "#": 2184 + }, + { + "#": 2185 + }, + { + "#": 2186 + }, + { + "#": 2187 + }, + { + "#": 2188 + } + ], + { + "x": 377.54, + "y": 298.74846, + "index": 0, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 304.69946, + "index": 1, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 309.76146, + "index": 2, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 313.43946, + "index": 3, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 315.37346, + "index": 4, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 315.37346, + "index": 5, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 313.43946, + "index": 6, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 309.76146, + "index": 7, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 304.69946, + "index": 8, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 298.74846, + "index": 9, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 292.49046, + "index": 10, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 286.53946, + "index": 11, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 281.47746, + "index": 12, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 277.79946, + "index": 13, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 275.86546, + "index": 14, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 275.86546, + "index": 15, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 277.79946, + "index": 16, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 281.47746, + "index": 17, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 286.53946, + "index": 18, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 377.54, + "y": 292.49046, + "index": 19, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 357.786, + "y": 295.61946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2196 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2198 + }, + "max": { + "#": 2199 + } + }, + { + "x": 338.032, + "y": 275.86546 + }, + { + "x": 377.54, + "y": 318.28073 + }, + { + "x": 357.786, + "y": 292.71219 + }, + [ + { + "#": 2202 + }, + { + "#": 2203 + }, + { + "#": 2204 + }, + { + "#": 2205 + }, + { + "#": 2206 + }, + { + "#": 2207 + }, + { + "#": 2208 + }, + { + "#": 2209 + }, + { + "#": 2210 + }, + { + "#": 2211 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,5,6", + "startCol": 7, + "endCol": 7, + "startRow": 5, + "endRow": 6 + }, + { + "id": 50, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2214 + }, + "angle": 0, + "vertices": { + "#": 2215 + }, + "position": { + "#": 2236 + }, + "force": { + "#": 2237 + }, + "torque": 0, + "positionImpulse": { + "#": 2238 + }, + "constraintImpulse": { + "#": 2239 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2240 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2241 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2242 + }, + "circleRadius": 20, + "bounds": { + "#": 2244 + }, + "positionPrev": { + "#": 2247 + }, + "anglePrev": 0, + "axes": { + "#": 2248 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2213 + }, + "sleepCounter": 0, + "region": { + "#": 2259 + } + }, + [ + { + "#": 2213 + } + ], + [ + { + "#": 2216 + }, + { + "#": 2217 + }, + { + "#": 2218 + }, + { + "#": 2219 + }, + { + "#": 2220 + }, + { + "#": 2221 + }, + { + "#": 2222 + }, + { + "#": 2223 + }, + { + "#": 2224 + }, + { + "#": 2225 + }, + { + "#": 2226 + }, + { + "#": 2227 + }, + { + "#": 2228 + }, + { + "#": 2229 + }, + { + "#": 2230 + }, + { + "#": 2231 + }, + { + "#": 2232 + }, + { + "#": 2233 + }, + { + "#": 2234 + }, + { + "#": 2235 + } + ], + { + "x": 437.048, + "y": 298.74846, + "index": 0, + "body": { + "#": 2213 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 304.69946, + "index": 1, + "body": { + "#": 2213 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 309.76146, + "index": 2, + "body": { + "#": 2213 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 313.43946, + "index": 3, + "body": { + "#": 2213 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 315.37346, + "index": 4, + "body": { + "#": 2213 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 315.37346, + "index": 5, + "body": { + "#": 2213 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 313.43946, + "index": 6, + "body": { + "#": 2213 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 309.76146, + "index": 7, + "body": { + "#": 2213 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 304.69946, + "index": 8, + "body": { + "#": 2213 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 298.74846, + "index": 9, + "body": { + "#": 2213 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 292.49046, + "index": 10, + "body": { + "#": 2213 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 286.53946, + "index": 11, + "body": { + "#": 2213 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 281.47746, + "index": 12, + "body": { + "#": 2213 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 277.79946, + "index": 13, + "body": { + "#": 2213 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 275.86546, + "index": 14, + "body": { + "#": 2213 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 275.86546, + "index": 15, + "body": { + "#": 2213 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 277.79946, + "index": 16, + "body": { + "#": 2213 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 281.47746, + "index": 17, + "body": { + "#": 2213 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 286.53946, + "index": 18, + "body": { + "#": 2213 + }, + "isInternal": false + }, + { + "x": 437.048, + "y": 292.49046, + "index": 19, + "body": { + "#": 2213 + }, + "isInternal": false + }, + { + "x": 417.294, + "y": 295.61946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2243 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2245 + }, + "max": { + "#": 2246 + } + }, + { + "x": 397.54, + "y": 275.86546 + }, + { + "x": 437.048, + "y": 318.28073 + }, + { + "x": 417.294, + "y": 292.71219 + }, + [ + { + "#": 2249 + }, + { + "#": 2250 + }, + { + "#": 2251 + }, + { + "#": 2252 + }, + { + "#": 2253 + }, + { + "#": 2254 + }, + { + "#": 2255 + }, + { + "#": 2256 + }, + { + "#": 2257 + }, + { + "#": 2258 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,5,6", + "startCol": 8, + "endCol": 9, + "startRow": 5, + "endRow": 6 + }, + { + "id": 51, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2261 + }, + "angle": 0, + "vertices": { + "#": 2262 + }, + "position": { + "#": 2283 + }, + "force": { + "#": 2284 + }, + "torque": 0, + "positionImpulse": { + "#": 2285 + }, + "constraintImpulse": { + "#": 2286 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2287 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2288 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2289 + }, + "circleRadius": 20, + "bounds": { + "#": 2291 + }, + "positionPrev": { + "#": 2294 + }, + "anglePrev": 0, + "axes": { + "#": 2295 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2260 + }, + "sleepCounter": 0, + "region": { + "#": 2306 + } + }, + [ + { + "#": 2260 + } + ], + [ + { + "#": 2263 + }, + { + "#": 2264 + }, + { + "#": 2265 + }, + { + "#": 2266 + }, + { + "#": 2267 + }, + { + "#": 2268 + }, + { + "#": 2269 + }, + { + "#": 2270 + }, + { + "#": 2271 + }, + { + "#": 2272 + }, + { + "#": 2273 + }, + { + "#": 2274 + }, + { + "#": 2275 + }, + { + "#": 2276 + }, + { + "#": 2277 + }, + { + "#": 2278 + }, + { + "#": 2279 + }, + { + "#": 2280 + }, + { + "#": 2281 + }, + { + "#": 2282 + } + ], + { + "x": 496.556, + "y": 298.74846, + "index": 0, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 304.69946, + "index": 1, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 309.76146, + "index": 2, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 313.43946, + "index": 3, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 315.37346, + "index": 4, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 315.37346, + "index": 5, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 313.43946, + "index": 6, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 309.76146, + "index": 7, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 304.69946, + "index": 8, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 298.74846, + "index": 9, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 292.49046, + "index": 10, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 286.53946, + "index": 11, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 281.47746, + "index": 12, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 277.79946, + "index": 13, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 275.86546, + "index": 14, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 275.86546, + "index": 15, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 277.79946, + "index": 16, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 281.47746, + "index": 17, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 286.53946, + "index": 18, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 496.556, + "y": 292.49046, + "index": 19, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 476.802, + "y": 295.61946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2290 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2292 + }, + "max": { + "#": 2293 + } + }, + { + "x": 457.048, + "y": 275.86546 + }, + { + "x": 496.556, + "y": 318.28073 + }, + { + "x": 476.802, + "y": 292.71219 + }, + [ + { + "#": 2296 + }, + { + "#": 2297 + }, + { + "#": 2298 + }, + { + "#": 2299 + }, + { + "#": 2300 + }, + { + "#": 2301 + }, + { + "#": 2302 + }, + { + "#": 2303 + }, + { + "#": 2304 + }, + { + "#": 2305 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,5,6", + "startCol": 9, + "endCol": 10, + "startRow": 5, + "endRow": 6 + }, + { + "id": 52, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2308 + }, + "angle": 0, + "vertices": { + "#": 2309 + }, + "position": { + "#": 2330 + }, + "force": { + "#": 2331 + }, + "torque": 0, + "positionImpulse": { + "#": 2332 + }, + "constraintImpulse": { + "#": 2333 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2334 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2335 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2336 + }, + "circleRadius": 20, + "bounds": { + "#": 2338 + }, + "positionPrev": { + "#": 2341 + }, + "anglePrev": 0, + "axes": { + "#": 2342 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2307 + }, + "sleepCounter": 0, + "region": { + "#": 2353 + } + }, + [ + { + "#": 2307 + } + ], + [ + { + "#": 2310 + }, + { + "#": 2311 + }, + { + "#": 2312 + }, + { + "#": 2313 + }, + { + "#": 2314 + }, + { + "#": 2315 + }, + { + "#": 2316 + }, + { + "#": 2317 + }, + { + "#": 2318 + }, + { + "#": 2319 + }, + { + "#": 2320 + }, + { + "#": 2321 + }, + { + "#": 2322 + }, + { + "#": 2323 + }, + { + "#": 2324 + }, + { + "#": 2325 + }, + { + "#": 2326 + }, + { + "#": 2327 + }, + { + "#": 2328 + }, + { + "#": 2329 + } + ], + { + "x": 556.064, + "y": 298.74846, + "index": 0, + "body": { + "#": 2307 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 304.69946, + "index": 1, + "body": { + "#": 2307 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 309.76146, + "index": 2, + "body": { + "#": 2307 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 313.43946, + "index": 3, + "body": { + "#": 2307 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 315.37346, + "index": 4, + "body": { + "#": 2307 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 315.37346, + "index": 5, + "body": { + "#": 2307 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 313.43946, + "index": 6, + "body": { + "#": 2307 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 309.76146, + "index": 7, + "body": { + "#": 2307 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 304.69946, + "index": 8, + "body": { + "#": 2307 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 298.74846, + "index": 9, + "body": { + "#": 2307 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 292.49046, + "index": 10, + "body": { + "#": 2307 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 286.53946, + "index": 11, + "body": { + "#": 2307 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 281.47746, + "index": 12, + "body": { + "#": 2307 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 277.79946, + "index": 13, + "body": { + "#": 2307 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 275.86546, + "index": 14, + "body": { + "#": 2307 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 275.86546, + "index": 15, + "body": { + "#": 2307 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 277.79946, + "index": 16, + "body": { + "#": 2307 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 281.47746, + "index": 17, + "body": { + "#": 2307 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 286.53946, + "index": 18, + "body": { + "#": 2307 + }, + "isInternal": false + }, + { + "x": 556.064, + "y": 292.49046, + "index": 19, + "body": { + "#": 2307 + }, + "isInternal": false + }, + { + "x": 536.31, + "y": 295.61946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2337 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2339 + }, + "max": { + "#": 2340 + } + }, + { + "x": 516.556, + "y": 275.86546 + }, + { + "x": 556.064, + "y": 318.28073 + }, + { + "x": 536.31, + "y": 292.71219 + }, + [ + { + "#": 2343 + }, + { + "#": 2344 + }, + { + "#": 2345 + }, + { + "#": 2346 + }, + { + "#": 2347 + }, + { + "#": 2348 + }, + { + "#": 2349 + }, + { + "#": 2350 + }, + { + "#": 2351 + }, + { + "#": 2352 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,5,6", + "startCol": 10, + "endCol": 11, + "startRow": 5, + "endRow": 6 + }, + { + "id": 53, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2355 + }, + "angle": 0, + "vertices": { + "#": 2356 + }, + "position": { + "#": 2377 + }, + "force": { + "#": 2378 + }, + "torque": 0, + "positionImpulse": { + "#": 2379 + }, + "constraintImpulse": { + "#": 2380 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2381 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2382 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2383 + }, + "circleRadius": 20, + "bounds": { + "#": 2385 + }, + "positionPrev": { + "#": 2388 + }, + "anglePrev": 0, + "axes": { + "#": 2389 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2354 + }, + "sleepCounter": 0, + "region": { + "#": 2400 + } + }, + [ + { + "#": 2354 + } + ], + [ + { + "#": 2357 + }, + { + "#": 2358 + }, + { + "#": 2359 + }, + { + "#": 2360 + }, + { + "#": 2361 + }, + { + "#": 2362 + }, + { + "#": 2363 + }, + { + "#": 2364 + }, + { + "#": 2365 + }, + { + "#": 2366 + }, + { + "#": 2367 + }, + { + "#": 2368 + }, + { + "#": 2369 + }, + { + "#": 2370 + }, + { + "#": 2371 + }, + { + "#": 2372 + }, + { + "#": 2373 + }, + { + "#": 2374 + }, + { + "#": 2375 + }, + { + "#": 2376 + } + ], + { + "x": 615.572, + "y": 298.74846, + "index": 0, + "body": { + "#": 2354 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 304.69946, + "index": 1, + "body": { + "#": 2354 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 309.76146, + "index": 2, + "body": { + "#": 2354 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 313.43946, + "index": 3, + "body": { + "#": 2354 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 315.37346, + "index": 4, + "body": { + "#": 2354 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 315.37346, + "index": 5, + "body": { + "#": 2354 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 313.43946, + "index": 6, + "body": { + "#": 2354 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 309.76146, + "index": 7, + "body": { + "#": 2354 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 304.69946, + "index": 8, + "body": { + "#": 2354 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 298.74846, + "index": 9, + "body": { + "#": 2354 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 292.49046, + "index": 10, + "body": { + "#": 2354 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 286.53946, + "index": 11, + "body": { + "#": 2354 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 281.47746, + "index": 12, + "body": { + "#": 2354 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 277.79946, + "index": 13, + "body": { + "#": 2354 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 275.86546, + "index": 14, + "body": { + "#": 2354 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 275.86546, + "index": 15, + "body": { + "#": 2354 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 277.79946, + "index": 16, + "body": { + "#": 2354 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 281.47746, + "index": 17, + "body": { + "#": 2354 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 286.53946, + "index": 18, + "body": { + "#": 2354 + }, + "isInternal": false + }, + { + "x": 615.572, + "y": 292.49046, + "index": 19, + "body": { + "#": 2354 + }, + "isInternal": false + }, + { + "x": 595.818, + "y": 295.61946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2384 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2386 + }, + "max": { + "#": 2387 + } + }, + { + "x": 576.064, + "y": 275.86546 + }, + { + "x": 615.572, + "y": 318.28073 + }, + { + "x": 595.818, + "y": 292.71219 + }, + [ + { + "#": 2390 + }, + { + "#": 2391 + }, + { + "#": 2392 + }, + { + "#": 2393 + }, + { + "#": 2394 + }, + { + "#": 2395 + }, + { + "#": 2396 + }, + { + "#": 2397 + }, + { + "#": 2398 + }, + { + "#": 2399 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,5,6", + "startCol": 12, + "endCol": 12, + "startRow": 5, + "endRow": 6 + }, + { + "id": 54, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2402 + }, + "angle": 0, + "vertices": { + "#": 2403 + }, + "position": { + "#": 2424 + }, + "force": { + "#": 2425 + }, + "torque": 0, + "positionImpulse": { + "#": 2426 + }, + "constraintImpulse": { + "#": 2427 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2428 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2429 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2430 + }, + "circleRadius": 20, + "bounds": { + "#": 2432 + }, + "positionPrev": { + "#": 2435 + }, + "anglePrev": 0, + "axes": { + "#": 2436 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2401 + }, + "sleepCounter": 0, + "region": { + "#": 2447 + } + }, + [ + { + "#": 2401 + } + ], + [ + { + "#": 2404 + }, + { + "#": 2405 + }, + { + "#": 2406 + }, + { + "#": 2407 + }, + { + "#": 2408 + }, + { + "#": 2409 + }, + { + "#": 2410 + }, + { + "#": 2411 + }, + { + "#": 2412 + }, + { + "#": 2413 + }, + { + "#": 2414 + }, + { + "#": 2415 + }, + { + "#": 2416 + }, + { + "#": 2417 + }, + { + "#": 2418 + }, + { + "#": 2419 + }, + { + "#": 2420 + }, + { + "#": 2421 + }, + { + "#": 2422 + }, + { + "#": 2423 + } + ], + { + "x": 675.08, + "y": 298.74846, + "index": 0, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 304.69946, + "index": 1, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 309.76146, + "index": 2, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 313.43946, + "index": 3, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 315.37346, + "index": 4, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 315.37346, + "index": 5, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 313.43946, + "index": 6, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 309.76146, + "index": 7, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 304.69946, + "index": 8, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 298.74846, + "index": 9, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 292.49046, + "index": 10, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 286.53946, + "index": 11, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 281.47746, + "index": 12, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 277.79946, + "index": 13, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 275.86546, + "index": 14, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 275.86546, + "index": 15, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 277.79946, + "index": 16, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 281.47746, + "index": 17, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 286.53946, + "index": 18, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 675.08, + "y": 292.49046, + "index": 19, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 655.326, + "y": 295.61946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2431 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2433 + }, + "max": { + "#": 2434 + } + }, + { + "x": 635.572, + "y": 275.86546 + }, + { + "x": 675.08, + "y": 318.28073 + }, + { + "x": 655.326, + "y": 292.71219 + }, + [ + { + "#": 2437 + }, + { + "#": 2438 + }, + { + "#": 2439 + }, + { + "#": 2440 + }, + { + "#": 2441 + }, + { + "#": 2442 + }, + { + "#": 2443 + }, + { + "#": 2444 + }, + { + "#": 2445 + }, + { + "#": 2446 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "13,14,5,6", + "startCol": 13, + "endCol": 14, + "startRow": 5, + "endRow": 6 + }, + { + "id": 55, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2449 + }, + "angle": 0, + "vertices": { + "#": 2450 + }, + "position": { + "#": 2471 + }, + "force": { + "#": 2472 + }, + "torque": 0, + "positionImpulse": { + "#": 2473 + }, + "constraintImpulse": { + "#": 2474 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2475 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2476 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2477 + }, + "circleRadius": 20, + "bounds": { + "#": 2479 + }, + "positionPrev": { + "#": 2482 + }, + "anglePrev": 0, + "axes": { + "#": 2483 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2448 + }, + "sleepCounter": 0, + "region": { + "#": 2494 + } + }, + [ + { + "#": 2448 + } + ], + [ + { + "#": 2451 + }, + { + "#": 2452 + }, + { + "#": 2453 + }, + { + "#": 2454 + }, + { + "#": 2455 + }, + { + "#": 2456 + }, + { + "#": 2457 + }, + { + "#": 2458 + }, + { + "#": 2459 + }, + { + "#": 2460 + }, + { + "#": 2461 + }, + { + "#": 2462 + }, + { + "#": 2463 + }, + { + "#": 2464 + }, + { + "#": 2465 + }, + { + "#": 2466 + }, + { + "#": 2467 + }, + { + "#": 2468 + }, + { + "#": 2469 + }, + { + "#": 2470 + } + ], + { + "x": 139.508, + "y": 338.20646, + "index": 0, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 344.15746, + "index": 1, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 349.21946, + "index": 2, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 352.89746, + "index": 3, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 354.83146, + "index": 4, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 354.83146, + "index": 5, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 352.89746, + "index": 6, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 349.21946, + "index": 7, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 344.15746, + "index": 8, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 100, + "y": 338.20646, + "index": 9, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 100, + "y": 331.94846, + "index": 10, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 325.99746, + "index": 11, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 320.93546, + "index": 12, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 317.25746, + "index": 13, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 315.32346, + "index": 14, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 315.32346, + "index": 15, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 317.25746, + "index": 16, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 320.93546, + "index": 17, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 325.99746, + "index": 18, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 139.508, + "y": 331.94846, + "index": 19, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 119.754, + "y": 335.07746 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2478 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2480 + }, + "max": { + "#": 2481 + } + }, + { + "x": 100, + "y": 315.32346 + }, + { + "x": 139.508, + "y": 357.73873 + }, + { + "x": 119.754, + "y": 332.17019 + }, + [ + { + "#": 2484 + }, + { + "#": 2485 + }, + { + "#": 2486 + }, + { + "#": 2487 + }, + { + "#": 2488 + }, + { + "#": 2489 + }, + { + "#": 2490 + }, + { + "#": 2491 + }, + { + "#": 2492 + }, + { + "#": 2493 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,2,6,7", + "startCol": 2, + "endCol": 2, + "startRow": 6, + "endRow": 7 + }, + { + "id": 56, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2496 + }, + "angle": 0, + "vertices": { + "#": 2497 + }, + "position": { + "#": 2518 + }, + "force": { + "#": 2519 + }, + "torque": 0, + "positionImpulse": { + "#": 2520 + }, + "constraintImpulse": { + "#": 2521 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2522 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2523 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2524 + }, + "circleRadius": 20, + "bounds": { + "#": 2526 + }, + "positionPrev": { + "#": 2529 + }, + "anglePrev": 0, + "axes": { + "#": 2530 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2495 + }, + "sleepCounter": 0, + "region": { + "#": 2541 + } + }, + [ + { + "#": 2495 + } + ], + [ + { + "#": 2498 + }, + { + "#": 2499 + }, + { + "#": 2500 + }, + { + "#": 2501 + }, + { + "#": 2502 + }, + { + "#": 2503 + }, + { + "#": 2504 + }, + { + "#": 2505 + }, + { + "#": 2506 + }, + { + "#": 2507 + }, + { + "#": 2508 + }, + { + "#": 2509 + }, + { + "#": 2510 + }, + { + "#": 2511 + }, + { + "#": 2512 + }, + { + "#": 2513 + }, + { + "#": 2514 + }, + { + "#": 2515 + }, + { + "#": 2516 + }, + { + "#": 2517 + } + ], + { + "x": 199.016, + "y": 338.20646, + "index": 0, + "body": { + "#": 2495 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 344.15746, + "index": 1, + "body": { + "#": 2495 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 349.21946, + "index": 2, + "body": { + "#": 2495 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 352.89746, + "index": 3, + "body": { + "#": 2495 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 354.83146, + "index": 4, + "body": { + "#": 2495 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 354.83146, + "index": 5, + "body": { + "#": 2495 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 352.89746, + "index": 6, + "body": { + "#": 2495 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 349.21946, + "index": 7, + "body": { + "#": 2495 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 344.15746, + "index": 8, + "body": { + "#": 2495 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 338.20646, + "index": 9, + "body": { + "#": 2495 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 331.94846, + "index": 10, + "body": { + "#": 2495 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 325.99746, + "index": 11, + "body": { + "#": 2495 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 320.93546, + "index": 12, + "body": { + "#": 2495 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 317.25746, + "index": 13, + "body": { + "#": 2495 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 315.32346, + "index": 14, + "body": { + "#": 2495 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 315.32346, + "index": 15, + "body": { + "#": 2495 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 317.25746, + "index": 16, + "body": { + "#": 2495 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 320.93546, + "index": 17, + "body": { + "#": 2495 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 325.99746, + "index": 18, + "body": { + "#": 2495 + }, + "isInternal": false + }, + { + "x": 199.016, + "y": 331.94846, + "index": 19, + "body": { + "#": 2495 + }, + "isInternal": false + }, + { + "x": 179.262, + "y": 335.07746 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2525 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2527 + }, + "max": { + "#": 2528 + } + }, + { + "x": 159.508, + "y": 315.32346 + }, + { + "x": 199.016, + "y": 357.73873 + }, + { + "x": 179.262, + "y": 332.17019 + }, + [ + { + "#": 2531 + }, + { + "#": 2532 + }, + { + "#": 2533 + }, + { + "#": 2534 + }, + { + "#": 2535 + }, + { + "#": 2536 + }, + { + "#": 2537 + }, + { + "#": 2538 + }, + { + "#": 2539 + }, + { + "#": 2540 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,6,7", + "startCol": 3, + "endCol": 4, + "startRow": 6, + "endRow": 7 + }, + { + "id": 57, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2543 + }, + "angle": 0, + "vertices": { + "#": 2544 + }, + "position": { + "#": 2565 + }, + "force": { + "#": 2566 + }, + "torque": 0, + "positionImpulse": { + "#": 2567 + }, + "constraintImpulse": { + "#": 2568 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2569 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2570 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2571 + }, + "circleRadius": 20, + "bounds": { + "#": 2573 + }, + "positionPrev": { + "#": 2576 + }, + "anglePrev": 0, + "axes": { + "#": 2577 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2542 + }, + "sleepCounter": 0, + "region": { + "#": 2588 + } + }, + [ + { + "#": 2542 + } + ], + [ + { + "#": 2545 + }, + { + "#": 2546 + }, + { + "#": 2547 + }, + { + "#": 2548 + }, + { + "#": 2549 + }, + { + "#": 2550 + }, + { + "#": 2551 + }, + { + "#": 2552 + }, + { + "#": 2553 + }, + { + "#": 2554 + }, + { + "#": 2555 + }, + { + "#": 2556 + }, + { + "#": 2557 + }, + { + "#": 2558 + }, + { + "#": 2559 + }, + { + "#": 2560 + }, + { + "#": 2561 + }, + { + "#": 2562 + }, + { + "#": 2563 + }, + { + "#": 2564 + } + ], + { + "x": 258.524, + "y": 338.20646, + "index": 0, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 344.15746, + "index": 1, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 349.21946, + "index": 2, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 352.89746, + "index": 3, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 354.83146, + "index": 4, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 354.83146, + "index": 5, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 352.89746, + "index": 6, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 349.21946, + "index": 7, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 344.15746, + "index": 8, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 338.20646, + "index": 9, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 331.94846, + "index": 10, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 325.99746, + "index": 11, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 320.93546, + "index": 12, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 317.25746, + "index": 13, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 315.32346, + "index": 14, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 315.32346, + "index": 15, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 317.25746, + "index": 16, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 320.93546, + "index": 17, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 325.99746, + "index": 18, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 258.524, + "y": 331.94846, + "index": 19, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 238.77, + "y": 335.07746 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2572 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2574 + }, + "max": { + "#": 2575 + } + }, + { + "x": 219.016, + "y": 315.32346 + }, + { + "x": 258.524, + "y": 357.73873 + }, + { + "x": 238.77, + "y": 332.17019 + }, + [ + { + "#": 2578 + }, + { + "#": 2579 + }, + { + "#": 2580 + }, + { + "#": 2581 + }, + { + "#": 2582 + }, + { + "#": 2583 + }, + { + "#": 2584 + }, + { + "#": 2585 + }, + { + "#": 2586 + }, + { + "#": 2587 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,6,7", + "startCol": 4, + "endCol": 5, + "startRow": 6, + "endRow": 7 + }, + { + "id": 58, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2590 + }, + "angle": 0, + "vertices": { + "#": 2591 + }, + "position": { + "#": 2612 + }, + "force": { + "#": 2613 + }, + "torque": 0, + "positionImpulse": { + "#": 2614 + }, + "constraintImpulse": { + "#": 2615 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2616 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2617 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2618 + }, + "circleRadius": 20, + "bounds": { + "#": 2620 + }, + "positionPrev": { + "#": 2623 + }, + "anglePrev": 0, + "axes": { + "#": 2624 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2589 + }, + "sleepCounter": 0, + "region": { + "#": 2635 + } + }, + [ + { + "#": 2589 + } + ], + [ + { + "#": 2592 + }, + { + "#": 2593 + }, + { + "#": 2594 + }, + { + "#": 2595 + }, + { + "#": 2596 + }, + { + "#": 2597 + }, + { + "#": 2598 + }, + { + "#": 2599 + }, + { + "#": 2600 + }, + { + "#": 2601 + }, + { + "#": 2602 + }, + { + "#": 2603 + }, + { + "#": 2604 + }, + { + "#": 2605 + }, + { + "#": 2606 + }, + { + "#": 2607 + }, + { + "#": 2608 + }, + { + "#": 2609 + }, + { + "#": 2610 + }, + { + "#": 2611 + } + ], + { + "x": 318.032, + "y": 338.20646, + "index": 0, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 344.15746, + "index": 1, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 349.21946, + "index": 2, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 352.89746, + "index": 3, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 354.83146, + "index": 4, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 354.83146, + "index": 5, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 352.89746, + "index": 6, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 349.21946, + "index": 7, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 344.15746, + "index": 8, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 338.20646, + "index": 9, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 331.94846, + "index": 10, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 325.99746, + "index": 11, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 320.93546, + "index": 12, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 317.25746, + "index": 13, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 315.32346, + "index": 14, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 315.32346, + "index": 15, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 317.25746, + "index": 16, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 320.93546, + "index": 17, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 325.99746, + "index": 18, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 318.032, + "y": 331.94846, + "index": 19, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 298.278, + "y": 335.07746 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2619 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2621 + }, + "max": { + "#": 2622 + } + }, + { + "x": 278.524, + "y": 315.32346 + }, + { + "x": 318.032, + "y": 357.73873 + }, + { + "x": 298.278, + "y": 332.17019 + }, + [ + { + "#": 2625 + }, + { + "#": 2626 + }, + { + "#": 2627 + }, + { + "#": 2628 + }, + { + "#": 2629 + }, + { + "#": 2630 + }, + { + "#": 2631 + }, + { + "#": 2632 + }, + { + "#": 2633 + }, + { + "#": 2634 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,6,7", + "startCol": 5, + "endCol": 6, + "startRow": 6, + "endRow": 7 + }, + { + "id": 59, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2637 + }, + "angle": 0, + "vertices": { + "#": 2638 + }, + "position": { + "#": 2659 + }, + "force": { + "#": 2660 + }, + "torque": 0, + "positionImpulse": { + "#": 2661 + }, + "constraintImpulse": { + "#": 2662 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2663 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2664 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2665 + }, + "circleRadius": 20, + "bounds": { + "#": 2667 + }, + "positionPrev": { + "#": 2670 + }, + "anglePrev": 0, + "axes": { + "#": 2671 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2636 + }, + "sleepCounter": 0, + "region": { + "#": 2682 + } + }, + [ + { + "#": 2636 + } + ], + [ + { + "#": 2639 + }, + { + "#": 2640 + }, + { + "#": 2641 + }, + { + "#": 2642 + }, + { + "#": 2643 + }, + { + "#": 2644 + }, + { + "#": 2645 + }, + { + "#": 2646 + }, + { + "#": 2647 + }, + { + "#": 2648 + }, + { + "#": 2649 + }, + { + "#": 2650 + }, + { + "#": 2651 + }, + { + "#": 2652 + }, + { + "#": 2653 + }, + { + "#": 2654 + }, + { + "#": 2655 + }, + { + "#": 2656 + }, + { + "#": 2657 + }, + { + "#": 2658 + } + ], + { + "x": 377.54, + "y": 338.20646, + "index": 0, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 344.15746, + "index": 1, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 349.21946, + "index": 2, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 352.89746, + "index": 3, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 354.83146, + "index": 4, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 354.83146, + "index": 5, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 352.89746, + "index": 6, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 349.21946, + "index": 7, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 344.15746, + "index": 8, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 338.20646, + "index": 9, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 331.94846, + "index": 10, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 325.99746, + "index": 11, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 320.93546, + "index": 12, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 317.25746, + "index": 13, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 315.32346, + "index": 14, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 315.32346, + "index": 15, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 317.25746, + "index": 16, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 320.93546, + "index": 17, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 325.99746, + "index": 18, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 377.54, + "y": 331.94846, + "index": 19, + "body": { + "#": 2636 + }, + "isInternal": false + }, + { + "x": 357.786, + "y": 335.07746 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2666 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2668 + }, + "max": { + "#": 2669 + } + }, + { + "x": 338.032, + "y": 315.32346 + }, + { + "x": 377.54, + "y": 357.73873 + }, + { + "x": 357.786, + "y": 332.17019 + }, + [ + { + "#": 2672 + }, + { + "#": 2673 + }, + { + "#": 2674 + }, + { + "#": 2675 + }, + { + "#": 2676 + }, + { + "#": 2677 + }, + { + "#": 2678 + }, + { + "#": 2679 + }, + { + "#": 2680 + }, + { + "#": 2681 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,6,7", + "startCol": 7, + "endCol": 7, + "startRow": 6, + "endRow": 7 + }, + { + "id": 60, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2684 + }, + "angle": 0, + "vertices": { + "#": 2685 + }, + "position": { + "#": 2706 + }, + "force": { + "#": 2707 + }, + "torque": 0, + "positionImpulse": { + "#": 2708 + }, + "constraintImpulse": { + "#": 2709 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2710 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2711 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2712 + }, + "circleRadius": 20, + "bounds": { + "#": 2714 + }, + "positionPrev": { + "#": 2717 + }, + "anglePrev": 0, + "axes": { + "#": 2718 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2683 + }, + "sleepCounter": 0, + "region": { + "#": 2729 + } + }, + [ + { + "#": 2683 + } + ], + [ + { + "#": 2686 + }, + { + "#": 2687 + }, + { + "#": 2688 + }, + { + "#": 2689 + }, + { + "#": 2690 + }, + { + "#": 2691 + }, + { + "#": 2692 + }, + { + "#": 2693 + }, + { + "#": 2694 + }, + { + "#": 2695 + }, + { + "#": 2696 + }, + { + "#": 2697 + }, + { + "#": 2698 + }, + { + "#": 2699 + }, + { + "#": 2700 + }, + { + "#": 2701 + }, + { + "#": 2702 + }, + { + "#": 2703 + }, + { + "#": 2704 + }, + { + "#": 2705 + } + ], + { + "x": 437.048, + "y": 338.20646, + "index": 0, + "body": { + "#": 2683 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 344.15746, + "index": 1, + "body": { + "#": 2683 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 349.21946, + "index": 2, + "body": { + "#": 2683 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 352.89746, + "index": 3, + "body": { + "#": 2683 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 354.83146, + "index": 4, + "body": { + "#": 2683 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 354.83146, + "index": 5, + "body": { + "#": 2683 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 352.89746, + "index": 6, + "body": { + "#": 2683 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 349.21946, + "index": 7, + "body": { + "#": 2683 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 344.15746, + "index": 8, + "body": { + "#": 2683 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 338.20646, + "index": 9, + "body": { + "#": 2683 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 331.94846, + "index": 10, + "body": { + "#": 2683 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 325.99746, + "index": 11, + "body": { + "#": 2683 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 320.93546, + "index": 12, + "body": { + "#": 2683 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 317.25746, + "index": 13, + "body": { + "#": 2683 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 315.32346, + "index": 14, + "body": { + "#": 2683 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 315.32346, + "index": 15, + "body": { + "#": 2683 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 317.25746, + "index": 16, + "body": { + "#": 2683 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 320.93546, + "index": 17, + "body": { + "#": 2683 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 325.99746, + "index": 18, + "body": { + "#": 2683 + }, + "isInternal": false + }, + { + "x": 437.048, + "y": 331.94846, + "index": 19, + "body": { + "#": 2683 + }, + "isInternal": false + }, + { + "x": 417.294, + "y": 335.07746 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2713 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2715 + }, + "max": { + "#": 2716 + } + }, + { + "x": 397.54, + "y": 315.32346 + }, + { + "x": 437.048, + "y": 357.73873 + }, + { + "x": 417.294, + "y": 332.17019 + }, + [ + { + "#": 2719 + }, + { + "#": 2720 + }, + { + "#": 2721 + }, + { + "#": 2722 + }, + { + "#": 2723 + }, + { + "#": 2724 + }, + { + "#": 2725 + }, + { + "#": 2726 + }, + { + "#": 2727 + }, + { + "#": 2728 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,6,7", + "startCol": 8, + "endCol": 9, + "startRow": 6, + "endRow": 7 + }, + { + "id": 61, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2731 + }, + "angle": 0, + "vertices": { + "#": 2732 + }, + "position": { + "#": 2753 + }, + "force": { + "#": 2754 + }, + "torque": 0, + "positionImpulse": { + "#": 2755 + }, + "constraintImpulse": { + "#": 2756 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2757 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2758 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2759 + }, + "circleRadius": 20, + "bounds": { + "#": 2761 + }, + "positionPrev": { + "#": 2764 + }, + "anglePrev": 0, + "axes": { + "#": 2765 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2730 + }, + "sleepCounter": 0, + "region": { + "#": 2776 + } + }, + [ + { + "#": 2730 + } + ], + [ + { + "#": 2733 + }, + { + "#": 2734 + }, + { + "#": 2735 + }, + { + "#": 2736 + }, + { + "#": 2737 + }, + { + "#": 2738 + }, + { + "#": 2739 + }, + { + "#": 2740 + }, + { + "#": 2741 + }, + { + "#": 2742 + }, + { + "#": 2743 + }, + { + "#": 2744 + }, + { + "#": 2745 + }, + { + "#": 2746 + }, + { + "#": 2747 + }, + { + "#": 2748 + }, + { + "#": 2749 + }, + { + "#": 2750 + }, + { + "#": 2751 + }, + { + "#": 2752 + } + ], + { + "x": 496.556, + "y": 338.20646, + "index": 0, + "body": { + "#": 2730 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 344.15746, + "index": 1, + "body": { + "#": 2730 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 349.21946, + "index": 2, + "body": { + "#": 2730 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 352.89746, + "index": 3, + "body": { + "#": 2730 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 354.83146, + "index": 4, + "body": { + "#": 2730 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 354.83146, + "index": 5, + "body": { + "#": 2730 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 352.89746, + "index": 6, + "body": { + "#": 2730 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 349.21946, + "index": 7, + "body": { + "#": 2730 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 344.15746, + "index": 8, + "body": { + "#": 2730 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 338.20646, + "index": 9, + "body": { + "#": 2730 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 331.94846, + "index": 10, + "body": { + "#": 2730 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 325.99746, + "index": 11, + "body": { + "#": 2730 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 320.93546, + "index": 12, + "body": { + "#": 2730 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 317.25746, + "index": 13, + "body": { + "#": 2730 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 315.32346, + "index": 14, + "body": { + "#": 2730 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 315.32346, + "index": 15, + "body": { + "#": 2730 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 317.25746, + "index": 16, + "body": { + "#": 2730 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 320.93546, + "index": 17, + "body": { + "#": 2730 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 325.99746, + "index": 18, + "body": { + "#": 2730 + }, + "isInternal": false + }, + { + "x": 496.556, + "y": 331.94846, + "index": 19, + "body": { + "#": 2730 + }, + "isInternal": false + }, + { + "x": 476.802, + "y": 335.07746 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2760 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2762 + }, + "max": { + "#": 2763 + } + }, + { + "x": 457.048, + "y": 315.32346 + }, + { + "x": 496.556, + "y": 357.73873 + }, + { + "x": 476.802, + "y": 332.17019 + }, + [ + { + "#": 2766 + }, + { + "#": 2767 + }, + { + "#": 2768 + }, + { + "#": 2769 + }, + { + "#": 2770 + }, + { + "#": 2771 + }, + { + "#": 2772 + }, + { + "#": 2773 + }, + { + "#": 2774 + }, + { + "#": 2775 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,6,7", + "startCol": 9, + "endCol": 10, + "startRow": 6, + "endRow": 7 + }, + { + "id": 62, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2778 + }, + "angle": 0, + "vertices": { + "#": 2779 + }, + "position": { + "#": 2800 + }, + "force": { + "#": 2801 + }, + "torque": 0, + "positionImpulse": { + "#": 2802 + }, + "constraintImpulse": { + "#": 2803 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2804 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2805 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2806 + }, + "circleRadius": 20, + "bounds": { + "#": 2808 + }, + "positionPrev": { + "#": 2811 + }, + "anglePrev": 0, + "axes": { + "#": 2812 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2777 + }, + "sleepCounter": 0, + "region": { + "#": 2823 + } + }, + [ + { + "#": 2777 + } + ], + [ + { + "#": 2780 + }, + { + "#": 2781 + }, + { + "#": 2782 + }, + { + "#": 2783 + }, + { + "#": 2784 + }, + { + "#": 2785 + }, + { + "#": 2786 + }, + { + "#": 2787 + }, + { + "#": 2788 + }, + { + "#": 2789 + }, + { + "#": 2790 + }, + { + "#": 2791 + }, + { + "#": 2792 + }, + { + "#": 2793 + }, + { + "#": 2794 + }, + { + "#": 2795 + }, + { + "#": 2796 + }, + { + "#": 2797 + }, + { + "#": 2798 + }, + { + "#": 2799 + } + ], + { + "x": 556.064, + "y": 338.20646, + "index": 0, + "body": { + "#": 2777 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 344.15746, + "index": 1, + "body": { + "#": 2777 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 349.21946, + "index": 2, + "body": { + "#": 2777 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 352.89746, + "index": 3, + "body": { + "#": 2777 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 354.83146, + "index": 4, + "body": { + "#": 2777 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 354.83146, + "index": 5, + "body": { + "#": 2777 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 352.89746, + "index": 6, + "body": { + "#": 2777 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 349.21946, + "index": 7, + "body": { + "#": 2777 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 344.15746, + "index": 8, + "body": { + "#": 2777 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 338.20646, + "index": 9, + "body": { + "#": 2777 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 331.94846, + "index": 10, + "body": { + "#": 2777 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 325.99746, + "index": 11, + "body": { + "#": 2777 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 320.93546, + "index": 12, + "body": { + "#": 2777 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 317.25746, + "index": 13, + "body": { + "#": 2777 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 315.32346, + "index": 14, + "body": { + "#": 2777 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 315.32346, + "index": 15, + "body": { + "#": 2777 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 317.25746, + "index": 16, + "body": { + "#": 2777 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 320.93546, + "index": 17, + "body": { + "#": 2777 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 325.99746, + "index": 18, + "body": { + "#": 2777 + }, + "isInternal": false + }, + { + "x": 556.064, + "y": 331.94846, + "index": 19, + "body": { + "#": 2777 + }, + "isInternal": false + }, + { + "x": 536.31, + "y": 335.07746 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2807 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2809 + }, + "max": { + "#": 2810 + } + }, + { + "x": 516.556, + "y": 315.32346 + }, + { + "x": 556.064, + "y": 357.73873 + }, + { + "x": 536.31, + "y": 332.17019 + }, + [ + { + "#": 2813 + }, + { + "#": 2814 + }, + { + "#": 2815 + }, + { + "#": 2816 + }, + { + "#": 2817 + }, + { + "#": 2818 + }, + { + "#": 2819 + }, + { + "#": 2820 + }, + { + "#": 2821 + }, + { + "#": 2822 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,6,7", + "startCol": 10, + "endCol": 11, + "startRow": 6, + "endRow": 7 + }, + { + "id": 63, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2825 + }, + "angle": 0, + "vertices": { + "#": 2826 + }, + "position": { + "#": 2847 + }, + "force": { + "#": 2848 + }, + "torque": 0, + "positionImpulse": { + "#": 2849 + }, + "constraintImpulse": { + "#": 2850 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2851 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2852 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2853 + }, + "circleRadius": 20, + "bounds": { + "#": 2855 + }, + "positionPrev": { + "#": 2858 + }, + "anglePrev": 0, + "axes": { + "#": 2859 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2824 + }, + "sleepCounter": 0, + "region": { + "#": 2870 + } + }, + [ + { + "#": 2824 + } + ], + [ + { + "#": 2827 + }, + { + "#": 2828 + }, + { + "#": 2829 + }, + { + "#": 2830 + }, + { + "#": 2831 + }, + { + "#": 2832 + }, + { + "#": 2833 + }, + { + "#": 2834 + }, + { + "#": 2835 + }, + { + "#": 2836 + }, + { + "#": 2837 + }, + { + "#": 2838 + }, + { + "#": 2839 + }, + { + "#": 2840 + }, + { + "#": 2841 + }, + { + "#": 2842 + }, + { + "#": 2843 + }, + { + "#": 2844 + }, + { + "#": 2845 + }, + { + "#": 2846 + } + ], + { + "x": 615.572, + "y": 338.20646, + "index": 0, + "body": { + "#": 2824 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 344.15746, + "index": 1, + "body": { + "#": 2824 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 349.21946, + "index": 2, + "body": { + "#": 2824 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 352.89746, + "index": 3, + "body": { + "#": 2824 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 354.83146, + "index": 4, + "body": { + "#": 2824 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 354.83146, + "index": 5, + "body": { + "#": 2824 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 352.89746, + "index": 6, + "body": { + "#": 2824 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 349.21946, + "index": 7, + "body": { + "#": 2824 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 344.15746, + "index": 8, + "body": { + "#": 2824 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 338.20646, + "index": 9, + "body": { + "#": 2824 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 331.94846, + "index": 10, + "body": { + "#": 2824 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 325.99746, + "index": 11, + "body": { + "#": 2824 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 320.93546, + "index": 12, + "body": { + "#": 2824 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 317.25746, + "index": 13, + "body": { + "#": 2824 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 315.32346, + "index": 14, + "body": { + "#": 2824 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 315.32346, + "index": 15, + "body": { + "#": 2824 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 317.25746, + "index": 16, + "body": { + "#": 2824 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 320.93546, + "index": 17, + "body": { + "#": 2824 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 325.99746, + "index": 18, + "body": { + "#": 2824 + }, + "isInternal": false + }, + { + "x": 615.572, + "y": 331.94846, + "index": 19, + "body": { + "#": 2824 + }, + "isInternal": false + }, + { + "x": 595.818, + "y": 335.07746 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2854 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2856 + }, + "max": { + "#": 2857 + } + }, + { + "x": 576.064, + "y": 315.32346 + }, + { + "x": 615.572, + "y": 357.73873 + }, + { + "x": 595.818, + "y": 332.17019 + }, + [ + { + "#": 2860 + }, + { + "#": 2861 + }, + { + "#": 2862 + }, + { + "#": 2863 + }, + { + "#": 2864 + }, + { + "#": 2865 + }, + { + "#": 2866 + }, + { + "#": 2867 + }, + { + "#": 2868 + }, + { + "#": 2869 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,6,7", + "startCol": 12, + "endCol": 12, + "startRow": 6, + "endRow": 7 + }, + { + "id": 64, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2872 + }, + "angle": 0, + "vertices": { + "#": 2873 + }, + "position": { + "#": 2894 + }, + "force": { + "#": 2895 + }, + "torque": 0, + "positionImpulse": { + "#": 2896 + }, + "constraintImpulse": { + "#": 2897 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2898 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2899 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2900 + }, + "circleRadius": 20, + "bounds": { + "#": 2902 + }, + "positionPrev": { + "#": 2905 + }, + "anglePrev": 0, + "axes": { + "#": 2906 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2871 + }, + "sleepCounter": 0, + "region": { + "#": 2917 + } + }, + [ + { + "#": 2871 + } + ], + [ + { + "#": 2874 + }, + { + "#": 2875 + }, + { + "#": 2876 + }, + { + "#": 2877 + }, + { + "#": 2878 + }, + { + "#": 2879 + }, + { + "#": 2880 + }, + { + "#": 2881 + }, + { + "#": 2882 + }, + { + "#": 2883 + }, + { + "#": 2884 + }, + { + "#": 2885 + }, + { + "#": 2886 + }, + { + "#": 2887 + }, + { + "#": 2888 + }, + { + "#": 2889 + }, + { + "#": 2890 + }, + { + "#": 2891 + }, + { + "#": 2892 + }, + { + "#": 2893 + } + ], + { + "x": 675.08, + "y": 338.20646, + "index": 0, + "body": { + "#": 2871 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 344.15746, + "index": 1, + "body": { + "#": 2871 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 349.21946, + "index": 2, + "body": { + "#": 2871 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 352.89746, + "index": 3, + "body": { + "#": 2871 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 354.83146, + "index": 4, + "body": { + "#": 2871 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 354.83146, + "index": 5, + "body": { + "#": 2871 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 352.89746, + "index": 6, + "body": { + "#": 2871 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 349.21946, + "index": 7, + "body": { + "#": 2871 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 344.15746, + "index": 8, + "body": { + "#": 2871 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 338.20646, + "index": 9, + "body": { + "#": 2871 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 331.94846, + "index": 10, + "body": { + "#": 2871 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 325.99746, + "index": 11, + "body": { + "#": 2871 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 320.93546, + "index": 12, + "body": { + "#": 2871 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 317.25746, + "index": 13, + "body": { + "#": 2871 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 315.32346, + "index": 14, + "body": { + "#": 2871 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 315.32346, + "index": 15, + "body": { + "#": 2871 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 317.25746, + "index": 16, + "body": { + "#": 2871 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 320.93546, + "index": 17, + "body": { + "#": 2871 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 325.99746, + "index": 18, + "body": { + "#": 2871 + }, + "isInternal": false + }, + { + "x": 675.08, + "y": 331.94846, + "index": 19, + "body": { + "#": 2871 + }, + "isInternal": false + }, + { + "x": 655.326, + "y": 335.07746 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2901 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2903 + }, + "max": { + "#": 2904 + } + }, + { + "x": 635.572, + "y": 315.32346 + }, + { + "x": 675.08, + "y": 357.73873 + }, + { + "x": 655.326, + "y": 332.17019 + }, + [ + { + "#": 2907 + }, + { + "#": 2908 + }, + { + "#": 2909 + }, + { + "#": 2910 + }, + { + "#": 2911 + }, + { + "#": 2912 + }, + { + "#": 2913 + }, + { + "#": 2914 + }, + { + "#": 2915 + }, + { + "#": 2916 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "13,14,6,7", + "startCol": 13, + "endCol": 14, + "startRow": 6, + "endRow": 7 + }, + { + "id": 65, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2919 + }, + "angle": 0, + "vertices": { + "#": 2920 + }, + "position": { + "#": 2941 + }, + "force": { + "#": 2942 + }, + "torque": 0, + "positionImpulse": { + "#": 2943 + }, + "constraintImpulse": { + "#": 2944 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2945 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2946 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2947 + }, + "circleRadius": 20, + "bounds": { + "#": 2949 + }, + "positionPrev": { + "#": 2952 + }, + "anglePrev": 0, + "axes": { + "#": 2953 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2918 + }, + "sleepCounter": 0, + "region": { + "#": 2964 + } + }, + [ + { + "#": 2918 + } + ], + [ + { + "#": 2921 + }, + { + "#": 2922 + }, + { + "#": 2923 + }, + { + "#": 2924 + }, + { + "#": 2925 + }, + { + "#": 2926 + }, + { + "#": 2927 + }, + { + "#": 2928 + }, + { + "#": 2929 + }, + { + "#": 2930 + }, + { + "#": 2931 + }, + { + "#": 2932 + }, + { + "#": 2933 + }, + { + "#": 2934 + }, + { + "#": 2935 + }, + { + "#": 2936 + }, + { + "#": 2937 + }, + { + "#": 2938 + }, + { + "#": 2939 + }, + { + "#": 2940 + } + ], + { + "x": 139.508, + "y": 377.66446, + "index": 0, + "body": { + "#": 2918 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 383.61546, + "index": 1, + "body": { + "#": 2918 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 388.67746, + "index": 2, + "body": { + "#": 2918 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 392.35546, + "index": 3, + "body": { + "#": 2918 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 394.28946, + "index": 4, + "body": { + "#": 2918 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 394.28946, + "index": 5, + "body": { + "#": 2918 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 392.35546, + "index": 6, + "body": { + "#": 2918 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 388.67746, + "index": 7, + "body": { + "#": 2918 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 383.61546, + "index": 8, + "body": { + "#": 2918 + }, + "isInternal": false + }, + { + "x": 100, + "y": 377.66446, + "index": 9, + "body": { + "#": 2918 + }, + "isInternal": false + }, + { + "x": 100, + "y": 371.40646, + "index": 10, + "body": { + "#": 2918 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 365.45546, + "index": 11, + "body": { + "#": 2918 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 360.39346, + "index": 12, + "body": { + "#": 2918 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 356.71546, + "index": 13, + "body": { + "#": 2918 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 354.78146, + "index": 14, + "body": { + "#": 2918 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 354.78146, + "index": 15, + "body": { + "#": 2918 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 356.71546, + "index": 16, + "body": { + "#": 2918 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 360.39346, + "index": 17, + "body": { + "#": 2918 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 365.45546, + "index": 18, + "body": { + "#": 2918 + }, + "isInternal": false + }, + { + "x": 139.508, + "y": 371.40646, + "index": 19, + "body": { + "#": 2918 + }, + "isInternal": false + }, + { + "x": 119.754, + "y": 374.53546 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2948 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2950 + }, + "max": { + "#": 2951 + } + }, + { + "x": 100, + "y": 354.78146 + }, + { + "x": 139.508, + "y": 397.19673 + }, + { + "x": 119.754, + "y": 371.62819 + }, + [ + { + "#": 2954 + }, + { + "#": 2955 + }, + { + "#": 2956 + }, + { + "#": 2957 + }, + { + "#": 2958 + }, + { + "#": 2959 + }, + { + "#": 2960 + }, + { + "#": 2961 + }, + { + "#": 2962 + }, + { + "#": 2963 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,2,7,8", + "startCol": 2, + "endCol": 2, + "startRow": 7, + "endRow": 8 + }, + { + "id": 66, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2966 + }, + "angle": 0, + "vertices": { + "#": 2967 + }, + "position": { + "#": 2988 + }, + "force": { + "#": 2989 + }, + "torque": 0, + "positionImpulse": { + "#": 2990 + }, + "constraintImpulse": { + "#": 2991 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2992 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2993 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2994 + }, + "circleRadius": 20, + "bounds": { + "#": 2996 + }, + "positionPrev": { + "#": 2999 + }, + "anglePrev": 0, + "axes": { + "#": 3000 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 2965 + }, + "sleepCounter": 0, + "region": { + "#": 3011 + } + }, + [ + { + "#": 2965 + } + ], + [ + { + "#": 2968 + }, + { + "#": 2969 + }, + { + "#": 2970 + }, + { + "#": 2971 + }, + { + "#": 2972 + }, + { + "#": 2973 + }, + { + "#": 2974 + }, + { + "#": 2975 + }, + { + "#": 2976 + }, + { + "#": 2977 + }, + { + "#": 2978 + }, + { + "#": 2979 + }, + { + "#": 2980 + }, + { + "#": 2981 + }, + { + "#": 2982 + }, + { + "#": 2983 + }, + { + "#": 2984 + }, + { + "#": 2985 + }, + { + "#": 2986 + }, + { + "#": 2987 + } + ], + { + "x": 199.016, + "y": 377.66446, + "index": 0, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 383.61546, + "index": 1, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 388.67746, + "index": 2, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 392.35546, + "index": 3, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 394.28946, + "index": 4, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 394.28946, + "index": 5, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 392.35546, + "index": 6, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 388.67746, + "index": 7, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 383.61546, + "index": 8, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 377.66446, + "index": 9, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 371.40646, + "index": 10, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 365.45546, + "index": 11, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 360.39346, + "index": 12, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 356.71546, + "index": 13, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 354.78146, + "index": 14, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 354.78146, + "index": 15, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 356.71546, + "index": 16, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 360.39346, + "index": 17, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 365.45546, + "index": 18, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 199.016, + "y": 371.40646, + "index": 19, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 179.262, + "y": 374.53546 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2995 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2997 + }, + "max": { + "#": 2998 + } + }, + { + "x": 159.508, + "y": 354.78146 + }, + { + "x": 199.016, + "y": 397.19673 + }, + { + "x": 179.262, + "y": 371.62819 + }, + [ + { + "#": 3001 + }, + { + "#": 3002 + }, + { + "#": 3003 + }, + { + "#": 3004 + }, + { + "#": 3005 + }, + { + "#": 3006 + }, + { + "#": 3007 + }, + { + "#": 3008 + }, + { + "#": 3009 + }, + { + "#": 3010 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,7,8", + "startCol": 3, + "endCol": 4, + "startRow": 7, + "endRow": 8 + }, + { + "id": 67, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3013 + }, + "angle": 0, + "vertices": { + "#": 3014 + }, + "position": { + "#": 3035 + }, + "force": { + "#": 3036 + }, + "torque": 0, + "positionImpulse": { + "#": 3037 + }, + "constraintImpulse": { + "#": 3038 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3039 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3040 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3041 + }, + "circleRadius": 20, + "bounds": { + "#": 3043 + }, + "positionPrev": { + "#": 3046 + }, + "anglePrev": 0, + "axes": { + "#": 3047 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3012 + }, + "sleepCounter": 0, + "region": { + "#": 3058 + } + }, + [ + { + "#": 3012 + } + ], + [ + { + "#": 3015 + }, + { + "#": 3016 + }, + { + "#": 3017 + }, + { + "#": 3018 + }, + { + "#": 3019 + }, + { + "#": 3020 + }, + { + "#": 3021 + }, + { + "#": 3022 + }, + { + "#": 3023 + }, + { + "#": 3024 + }, + { + "#": 3025 + }, + { + "#": 3026 + }, + { + "#": 3027 + }, + { + "#": 3028 + }, + { + "#": 3029 + }, + { + "#": 3030 + }, + { + "#": 3031 + }, + { + "#": 3032 + }, + { + "#": 3033 + }, + { + "#": 3034 + } + ], + { + "x": 258.524, + "y": 377.66446, + "index": 0, + "body": { + "#": 3012 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 383.61546, + "index": 1, + "body": { + "#": 3012 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 388.67746, + "index": 2, + "body": { + "#": 3012 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 392.35546, + "index": 3, + "body": { + "#": 3012 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 394.28946, + "index": 4, + "body": { + "#": 3012 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 394.28946, + "index": 5, + "body": { + "#": 3012 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 392.35546, + "index": 6, + "body": { + "#": 3012 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 388.67746, + "index": 7, + "body": { + "#": 3012 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 383.61546, + "index": 8, + "body": { + "#": 3012 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 377.66446, + "index": 9, + "body": { + "#": 3012 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 371.40646, + "index": 10, + "body": { + "#": 3012 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 365.45546, + "index": 11, + "body": { + "#": 3012 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 360.39346, + "index": 12, + "body": { + "#": 3012 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 356.71546, + "index": 13, + "body": { + "#": 3012 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 354.78146, + "index": 14, + "body": { + "#": 3012 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 354.78146, + "index": 15, + "body": { + "#": 3012 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 356.71546, + "index": 16, + "body": { + "#": 3012 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 360.39346, + "index": 17, + "body": { + "#": 3012 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 365.45546, + "index": 18, + "body": { + "#": 3012 + }, + "isInternal": false + }, + { + "x": 258.524, + "y": 371.40646, + "index": 19, + "body": { + "#": 3012 + }, + "isInternal": false + }, + { + "x": 238.77, + "y": 374.53546 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3042 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3044 + }, + "max": { + "#": 3045 + } + }, + { + "x": 219.016, + "y": 354.78146 + }, + { + "x": 258.524, + "y": 397.19673 + }, + { + "x": 238.77, + "y": 371.62819 + }, + [ + { + "#": 3048 + }, + { + "#": 3049 + }, + { + "#": 3050 + }, + { + "#": 3051 + }, + { + "#": 3052 + }, + { + "#": 3053 + }, + { + "#": 3054 + }, + { + "#": 3055 + }, + { + "#": 3056 + }, + { + "#": 3057 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,7,8", + "startCol": 4, + "endCol": 5, + "startRow": 7, + "endRow": 8 + }, + { + "id": 68, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3060 + }, + "angle": 0, + "vertices": { + "#": 3061 + }, + "position": { + "#": 3082 + }, + "force": { + "#": 3083 + }, + "torque": 0, + "positionImpulse": { + "#": 3084 + }, + "constraintImpulse": { + "#": 3085 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3086 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3087 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3088 + }, + "circleRadius": 20, + "bounds": { + "#": 3090 + }, + "positionPrev": { + "#": 3093 + }, + "anglePrev": 0, + "axes": { + "#": 3094 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3059 + }, + "sleepCounter": 0, + "region": { + "#": 3105 + } + }, + [ + { + "#": 3059 + } + ], + [ + { + "#": 3062 + }, + { + "#": 3063 + }, + { + "#": 3064 + }, + { + "#": 3065 + }, + { + "#": 3066 + }, + { + "#": 3067 + }, + { + "#": 3068 + }, + { + "#": 3069 + }, + { + "#": 3070 + }, + { + "#": 3071 + }, + { + "#": 3072 + }, + { + "#": 3073 + }, + { + "#": 3074 + }, + { + "#": 3075 + }, + { + "#": 3076 + }, + { + "#": 3077 + }, + { + "#": 3078 + }, + { + "#": 3079 + }, + { + "#": 3080 + }, + { + "#": 3081 + } + ], + { + "x": 318.032, + "y": 377.66446, + "index": 0, + "body": { + "#": 3059 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 383.61546, + "index": 1, + "body": { + "#": 3059 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 388.67746, + "index": 2, + "body": { + "#": 3059 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 392.35546, + "index": 3, + "body": { + "#": 3059 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 394.28946, + "index": 4, + "body": { + "#": 3059 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 394.28946, + "index": 5, + "body": { + "#": 3059 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 392.35546, + "index": 6, + "body": { + "#": 3059 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 388.67746, + "index": 7, + "body": { + "#": 3059 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 383.61546, + "index": 8, + "body": { + "#": 3059 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 377.66446, + "index": 9, + "body": { + "#": 3059 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 371.40646, + "index": 10, + "body": { + "#": 3059 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 365.45546, + "index": 11, + "body": { + "#": 3059 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 360.39346, + "index": 12, + "body": { + "#": 3059 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 356.71546, + "index": 13, + "body": { + "#": 3059 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 354.78146, + "index": 14, + "body": { + "#": 3059 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 354.78146, + "index": 15, + "body": { + "#": 3059 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 356.71546, + "index": 16, + "body": { + "#": 3059 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 360.39346, + "index": 17, + "body": { + "#": 3059 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 365.45546, + "index": 18, + "body": { + "#": 3059 + }, + "isInternal": false + }, + { + "x": 318.032, + "y": 371.40646, + "index": 19, + "body": { + "#": 3059 + }, + "isInternal": false + }, + { + "x": 298.278, + "y": 374.53546 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3089 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3091 + }, + "max": { + "#": 3092 + } + }, + { + "x": 278.524, + "y": 354.78146 + }, + { + "x": 318.032, + "y": 397.19673 + }, + { + "x": 298.278, + "y": 371.62819 + }, + [ + { + "#": 3095 + }, + { + "#": 3096 + }, + { + "#": 3097 + }, + { + "#": 3098 + }, + { + "#": 3099 + }, + { + "#": 3100 + }, + { + "#": 3101 + }, + { + "#": 3102 + }, + { + "#": 3103 + }, + { + "#": 3104 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,7,8", + "startCol": 5, + "endCol": 6, + "startRow": 7, + "endRow": 8 + }, + { + "id": 69, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3107 + }, + "angle": 0, + "vertices": { + "#": 3108 + }, + "position": { + "#": 3129 + }, + "force": { + "#": 3130 + }, + "torque": 0, + "positionImpulse": { + "#": 3131 + }, + "constraintImpulse": { + "#": 3132 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3133 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3134 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3135 + }, + "circleRadius": 20, + "bounds": { + "#": 3137 + }, + "positionPrev": { + "#": 3140 + }, + "anglePrev": 0, + "axes": { + "#": 3141 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3106 + }, + "sleepCounter": 0, + "region": { + "#": 3152 + } + }, + [ + { + "#": 3106 + } + ], + [ + { + "#": 3109 + }, + { + "#": 3110 + }, + { + "#": 3111 + }, + { + "#": 3112 + }, + { + "#": 3113 + }, + { + "#": 3114 + }, + { + "#": 3115 + }, + { + "#": 3116 + }, + { + "#": 3117 + }, + { + "#": 3118 + }, + { + "#": 3119 + }, + { + "#": 3120 + }, + { + "#": 3121 + }, + { + "#": 3122 + }, + { + "#": 3123 + }, + { + "#": 3124 + }, + { + "#": 3125 + }, + { + "#": 3126 + }, + { + "#": 3127 + }, + { + "#": 3128 + } + ], + { + "x": 377.54, + "y": 377.66446, + "index": 0, + "body": { + "#": 3106 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 383.61546, + "index": 1, + "body": { + "#": 3106 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 388.67746, + "index": 2, + "body": { + "#": 3106 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 392.35546, + "index": 3, + "body": { + "#": 3106 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 394.28946, + "index": 4, + "body": { + "#": 3106 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 394.28946, + "index": 5, + "body": { + "#": 3106 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 392.35546, + "index": 6, + "body": { + "#": 3106 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 388.67746, + "index": 7, + "body": { + "#": 3106 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 383.61546, + "index": 8, + "body": { + "#": 3106 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 377.66446, + "index": 9, + "body": { + "#": 3106 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 371.40646, + "index": 10, + "body": { + "#": 3106 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 365.45546, + "index": 11, + "body": { + "#": 3106 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 360.39346, + "index": 12, + "body": { + "#": 3106 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 356.71546, + "index": 13, + "body": { + "#": 3106 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 354.78146, + "index": 14, + "body": { + "#": 3106 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 354.78146, + "index": 15, + "body": { + "#": 3106 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 356.71546, + "index": 16, + "body": { + "#": 3106 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 360.39346, + "index": 17, + "body": { + "#": 3106 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 365.45546, + "index": 18, + "body": { + "#": 3106 + }, + "isInternal": false + }, + { + "x": 377.54, + "y": 371.40646, + "index": 19, + "body": { + "#": 3106 + }, + "isInternal": false + }, + { + "x": 357.786, + "y": 374.53546 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3136 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3138 + }, + "max": { + "#": 3139 + } + }, + { + "x": 338.032, + "y": 354.78146 + }, + { + "x": 377.54, + "y": 397.19673 + }, + { + "x": 357.786, + "y": 371.62819 + }, + [ + { + "#": 3142 + }, + { + "#": 3143 + }, + { + "#": 3144 + }, + { + "#": 3145 + }, + { + "#": 3146 + }, + { + "#": 3147 + }, + { + "#": 3148 + }, + { + "#": 3149 + }, + { + "#": 3150 + }, + { + "#": 3151 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,7,8", + "startCol": 7, + "endCol": 7, + "startRow": 7, + "endRow": 8 + }, + { + "id": 70, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3154 + }, + "angle": 0, + "vertices": { + "#": 3155 + }, + "position": { + "#": 3176 + }, + "force": { + "#": 3177 + }, + "torque": 0, + "positionImpulse": { + "#": 3178 + }, + "constraintImpulse": { + "#": 3179 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3180 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3181 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3182 + }, + "circleRadius": 20, + "bounds": { + "#": 3184 + }, + "positionPrev": { + "#": 3187 + }, + "anglePrev": 0, + "axes": { + "#": 3188 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3153 + }, + "sleepCounter": 0, + "region": { + "#": 3199 + } + }, + [ + { + "#": 3153 + } + ], + [ + { + "#": 3156 + }, + { + "#": 3157 + }, + { + "#": 3158 + }, + { + "#": 3159 + }, + { + "#": 3160 + }, + { + "#": 3161 + }, + { + "#": 3162 + }, + { + "#": 3163 + }, + { + "#": 3164 + }, + { + "#": 3165 + }, + { + "#": 3166 + }, + { + "#": 3167 + }, + { + "#": 3168 + }, + { + "#": 3169 + }, + { + "#": 3170 + }, + { + "#": 3171 + }, + { + "#": 3172 + }, + { + "#": 3173 + }, + { + "#": 3174 + }, + { + "#": 3175 + } + ], + { + "x": 437.048, + "y": 377.66446, + "index": 0, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 383.61546, + "index": 1, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 388.67746, + "index": 2, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 392.35546, + "index": 3, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 394.28946, + "index": 4, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 394.28946, + "index": 5, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 392.35546, + "index": 6, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 388.67746, + "index": 7, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 383.61546, + "index": 8, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 377.66446, + "index": 9, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 371.40646, + "index": 10, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 365.45546, + "index": 11, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 360.39346, + "index": 12, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 356.71546, + "index": 13, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 354.78146, + "index": 14, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 354.78146, + "index": 15, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 356.71546, + "index": 16, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 360.39346, + "index": 17, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 365.45546, + "index": 18, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 437.048, + "y": 371.40646, + "index": 19, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 417.294, + "y": 374.53546 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3183 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3185 + }, + "max": { + "#": 3186 + } + }, + { + "x": 397.54, + "y": 354.78146 + }, + { + "x": 437.048, + "y": 397.19673 + }, + { + "x": 417.294, + "y": 371.62819 + }, + [ + { + "#": 3189 + }, + { + "#": 3190 + }, + { + "#": 3191 + }, + { + "#": 3192 + }, + { + "#": 3193 + }, + { + "#": 3194 + }, + { + "#": 3195 + }, + { + "#": 3196 + }, + { + "#": 3197 + }, + { + "#": 3198 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,7,8", + "startCol": 8, + "endCol": 9, + "startRow": 7, + "endRow": 8 + }, + { + "id": 71, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3201 + }, + "angle": 0, + "vertices": { + "#": 3202 + }, + "position": { + "#": 3223 + }, + "force": { + "#": 3224 + }, + "torque": 0, + "positionImpulse": { + "#": 3225 + }, + "constraintImpulse": { + "#": 3226 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3227 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3228 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3229 + }, + "circleRadius": 20, + "bounds": { + "#": 3231 + }, + "positionPrev": { + "#": 3234 + }, + "anglePrev": 0, + "axes": { + "#": 3235 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3200 + }, + "sleepCounter": 0, + "region": { + "#": 3246 + } + }, + [ + { + "#": 3200 + } + ], + [ + { + "#": 3203 + }, + { + "#": 3204 + }, + { + "#": 3205 + }, + { + "#": 3206 + }, + { + "#": 3207 + }, + { + "#": 3208 + }, + { + "#": 3209 + }, + { + "#": 3210 + }, + { + "#": 3211 + }, + { + "#": 3212 + }, + { + "#": 3213 + }, + { + "#": 3214 + }, + { + "#": 3215 + }, + { + "#": 3216 + }, + { + "#": 3217 + }, + { + "#": 3218 + }, + { + "#": 3219 + }, + { + "#": 3220 + }, + { + "#": 3221 + }, + { + "#": 3222 + } + ], + { + "x": 496.556, + "y": 377.66446, + "index": 0, + "body": { + "#": 3200 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 383.61546, + "index": 1, + "body": { + "#": 3200 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 388.67746, + "index": 2, + "body": { + "#": 3200 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 392.35546, + "index": 3, + "body": { + "#": 3200 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 394.28946, + "index": 4, + "body": { + "#": 3200 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 394.28946, + "index": 5, + "body": { + "#": 3200 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 392.35546, + "index": 6, + "body": { + "#": 3200 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 388.67746, + "index": 7, + "body": { + "#": 3200 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 383.61546, + "index": 8, + "body": { + "#": 3200 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 377.66446, + "index": 9, + "body": { + "#": 3200 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 371.40646, + "index": 10, + "body": { + "#": 3200 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 365.45546, + "index": 11, + "body": { + "#": 3200 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 360.39346, + "index": 12, + "body": { + "#": 3200 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 356.71546, + "index": 13, + "body": { + "#": 3200 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 354.78146, + "index": 14, + "body": { + "#": 3200 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 354.78146, + "index": 15, + "body": { + "#": 3200 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 356.71546, + "index": 16, + "body": { + "#": 3200 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 360.39346, + "index": 17, + "body": { + "#": 3200 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 365.45546, + "index": 18, + "body": { + "#": 3200 + }, + "isInternal": false + }, + { + "x": 496.556, + "y": 371.40646, + "index": 19, + "body": { + "#": 3200 + }, + "isInternal": false + }, + { + "x": 476.802, + "y": 374.53546 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3230 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3232 + }, + "max": { + "#": 3233 + } + }, + { + "x": 457.048, + "y": 354.78146 + }, + { + "x": 496.556, + "y": 397.19673 + }, + { + "x": 476.802, + "y": 371.62819 + }, + [ + { + "#": 3236 + }, + { + "#": 3237 + }, + { + "#": 3238 + }, + { + "#": 3239 + }, + { + "#": 3240 + }, + { + "#": 3241 + }, + { + "#": 3242 + }, + { + "#": 3243 + }, + { + "#": 3244 + }, + { + "#": 3245 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,7,8", + "startCol": 9, + "endCol": 10, + "startRow": 7, + "endRow": 8 + }, + { + "id": 72, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3248 + }, + "angle": 0, + "vertices": { + "#": 3249 + }, + "position": { + "#": 3270 + }, + "force": { + "#": 3271 + }, + "torque": 0, + "positionImpulse": { + "#": 3272 + }, + "constraintImpulse": { + "#": 3273 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3274 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3275 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3276 + }, + "circleRadius": 20, + "bounds": { + "#": 3278 + }, + "positionPrev": { + "#": 3281 + }, + "anglePrev": 0, + "axes": { + "#": 3282 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3247 + }, + "sleepCounter": 0, + "region": { + "#": 3293 + } + }, + [ + { + "#": 3247 + } + ], + [ + { + "#": 3250 + }, + { + "#": 3251 + }, + { + "#": 3252 + }, + { + "#": 3253 + }, + { + "#": 3254 + }, + { + "#": 3255 + }, + { + "#": 3256 + }, + { + "#": 3257 + }, + { + "#": 3258 + }, + { + "#": 3259 + }, + { + "#": 3260 + }, + { + "#": 3261 + }, + { + "#": 3262 + }, + { + "#": 3263 + }, + { + "#": 3264 + }, + { + "#": 3265 + }, + { + "#": 3266 + }, + { + "#": 3267 + }, + { + "#": 3268 + }, + { + "#": 3269 + } + ], + { + "x": 556.064, + "y": 377.66446, + "index": 0, + "body": { + "#": 3247 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 383.61546, + "index": 1, + "body": { + "#": 3247 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 388.67746, + "index": 2, + "body": { + "#": 3247 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 392.35546, + "index": 3, + "body": { + "#": 3247 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 394.28946, + "index": 4, + "body": { + "#": 3247 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 394.28946, + "index": 5, + "body": { + "#": 3247 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 392.35546, + "index": 6, + "body": { + "#": 3247 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 388.67746, + "index": 7, + "body": { + "#": 3247 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 383.61546, + "index": 8, + "body": { + "#": 3247 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 377.66446, + "index": 9, + "body": { + "#": 3247 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 371.40646, + "index": 10, + "body": { + "#": 3247 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 365.45546, + "index": 11, + "body": { + "#": 3247 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 360.39346, + "index": 12, + "body": { + "#": 3247 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 356.71546, + "index": 13, + "body": { + "#": 3247 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 354.78146, + "index": 14, + "body": { + "#": 3247 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 354.78146, + "index": 15, + "body": { + "#": 3247 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 356.71546, + "index": 16, + "body": { + "#": 3247 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 360.39346, + "index": 17, + "body": { + "#": 3247 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 365.45546, + "index": 18, + "body": { + "#": 3247 + }, + "isInternal": false + }, + { + "x": 556.064, + "y": 371.40646, + "index": 19, + "body": { + "#": 3247 + }, + "isInternal": false + }, + { + "x": 536.31, + "y": 374.53546 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3277 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3279 + }, + "max": { + "#": 3280 + } + }, + { + "x": 516.556, + "y": 354.78146 + }, + { + "x": 556.064, + "y": 397.19673 + }, + { + "x": 536.31, + "y": 371.62819 + }, + [ + { + "#": 3283 + }, + { + "#": 3284 + }, + { + "#": 3285 + }, + { + "#": 3286 + }, + { + "#": 3287 + }, + { + "#": 3288 + }, + { + "#": 3289 + }, + { + "#": 3290 + }, + { + "#": 3291 + }, + { + "#": 3292 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,7,8", + "startCol": 10, + "endCol": 11, + "startRow": 7, + "endRow": 8 + }, + { + "id": 73, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3295 + }, + "angle": 0, + "vertices": { + "#": 3296 + }, + "position": { + "#": 3317 + }, + "force": { + "#": 3318 + }, + "torque": 0, + "positionImpulse": { + "#": 3319 + }, + "constraintImpulse": { + "#": 3320 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3321 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3322 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3323 + }, + "circleRadius": 20, + "bounds": { + "#": 3325 + }, + "positionPrev": { + "#": 3328 + }, + "anglePrev": 0, + "axes": { + "#": 3329 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3294 + }, + "sleepCounter": 0, + "region": { + "#": 3340 + } + }, + [ + { + "#": 3294 + } + ], + [ + { + "#": 3297 + }, + { + "#": 3298 + }, + { + "#": 3299 + }, + { + "#": 3300 + }, + { + "#": 3301 + }, + { + "#": 3302 + }, + { + "#": 3303 + }, + { + "#": 3304 + }, + { + "#": 3305 + }, + { + "#": 3306 + }, + { + "#": 3307 + }, + { + "#": 3308 + }, + { + "#": 3309 + }, + { + "#": 3310 + }, + { + "#": 3311 + }, + { + "#": 3312 + }, + { + "#": 3313 + }, + { + "#": 3314 + }, + { + "#": 3315 + }, + { + "#": 3316 + } + ], + { + "x": 615.572, + "y": 377.66446, + "index": 0, + "body": { + "#": 3294 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 383.61546, + "index": 1, + "body": { + "#": 3294 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 388.67746, + "index": 2, + "body": { + "#": 3294 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 392.35546, + "index": 3, + "body": { + "#": 3294 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 394.28946, + "index": 4, + "body": { + "#": 3294 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 394.28946, + "index": 5, + "body": { + "#": 3294 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 392.35546, + "index": 6, + "body": { + "#": 3294 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 388.67746, + "index": 7, + "body": { + "#": 3294 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 383.61546, + "index": 8, + "body": { + "#": 3294 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 377.66446, + "index": 9, + "body": { + "#": 3294 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 371.40646, + "index": 10, + "body": { + "#": 3294 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 365.45546, + "index": 11, + "body": { + "#": 3294 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 360.39346, + "index": 12, + "body": { + "#": 3294 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 356.71546, + "index": 13, + "body": { + "#": 3294 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 354.78146, + "index": 14, + "body": { + "#": 3294 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 354.78146, + "index": 15, + "body": { + "#": 3294 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 356.71546, + "index": 16, + "body": { + "#": 3294 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 360.39346, + "index": 17, + "body": { + "#": 3294 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 365.45546, + "index": 18, + "body": { + "#": 3294 + }, + "isInternal": false + }, + { + "x": 615.572, + "y": 371.40646, + "index": 19, + "body": { + "#": 3294 + }, + "isInternal": false + }, + { + "x": 595.818, + "y": 374.53546 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3324 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3326 + }, + "max": { + "#": 3327 + } + }, + { + "x": 576.064, + "y": 354.78146 + }, + { + "x": 615.572, + "y": 397.19673 + }, + { + "x": 595.818, + "y": 371.62819 + }, + [ + { + "#": 3330 + }, + { + "#": 3331 + }, + { + "#": 3332 + }, + { + "#": 3333 + }, + { + "#": 3334 + }, + { + "#": 3335 + }, + { + "#": 3336 + }, + { + "#": 3337 + }, + { + "#": 3338 + }, + { + "#": 3339 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,7,8", + "startCol": 12, + "endCol": 12, + "startRow": 7, + "endRow": 8 + }, + { + "id": 74, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3342 + }, + "angle": 0, + "vertices": { + "#": 3343 + }, + "position": { + "#": 3364 + }, + "force": { + "#": 3365 + }, + "torque": 0, + "positionImpulse": { + "#": 3366 + }, + "constraintImpulse": { + "#": 3367 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3368 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3369 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3370 + }, + "circleRadius": 20, + "bounds": { + "#": 3372 + }, + "positionPrev": { + "#": 3375 + }, + "anglePrev": 0, + "axes": { + "#": 3376 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3341 + }, + "sleepCounter": 0, + "region": { + "#": 3387 + } + }, + [ + { + "#": 3341 + } + ], + [ + { + "#": 3344 + }, + { + "#": 3345 + }, + { + "#": 3346 + }, + { + "#": 3347 + }, + { + "#": 3348 + }, + { + "#": 3349 + }, + { + "#": 3350 + }, + { + "#": 3351 + }, + { + "#": 3352 + }, + { + "#": 3353 + }, + { + "#": 3354 + }, + { + "#": 3355 + }, + { + "#": 3356 + }, + { + "#": 3357 + }, + { + "#": 3358 + }, + { + "#": 3359 + }, + { + "#": 3360 + }, + { + "#": 3361 + }, + { + "#": 3362 + }, + { + "#": 3363 + } + ], + { + "x": 675.08, + "y": 377.66446, + "index": 0, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 383.61546, + "index": 1, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 388.67746, + "index": 2, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 392.35546, + "index": 3, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 394.28946, + "index": 4, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 394.28946, + "index": 5, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 392.35546, + "index": 6, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 388.67746, + "index": 7, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 383.61546, + "index": 8, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 377.66446, + "index": 9, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 371.40646, + "index": 10, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 365.45546, + "index": 11, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 360.39346, + "index": 12, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 356.71546, + "index": 13, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 354.78146, + "index": 14, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 354.78146, + "index": 15, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 356.71546, + "index": 16, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 360.39346, + "index": 17, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 365.45546, + "index": 18, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 675.08, + "y": 371.40646, + "index": 19, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 655.326, + "y": 374.53546 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0028 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3371 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3373 + }, + "max": { + "#": 3374 + } + }, + { + "x": 635.572, + "y": 354.78146 + }, + { + "x": 675.08, + "y": 397.19673 + }, + { + "x": 655.326, + "y": 371.62819 + }, + [ + { + "#": 3377 + }, + { + "#": 3378 + }, + { + "#": 3379 + }, + { + "#": 3380 + }, + { + "#": 3381 + }, + { + "#": 3382 + }, + { + "#": 3383 + }, + { + "#": 3384 + }, + { + "#": 3385 + }, + { + "#": 3386 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "13,14,7,8", + "startCol": 13, + "endCol": 14, + "startRow": 7, + "endRow": 8 + }, + { + "id": 75, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3389 + }, + "angle": 0, + "vertices": { + "#": 3390 + }, + "position": { + "#": 3411 + }, + "force": { + "#": 3412 + }, + "torque": 0, + "positionImpulse": { + "#": 3413 + }, + "constraintImpulse": { + "#": 3414 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3415 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3416 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3417 + }, + "circleRadius": 20, + "bounds": { + "#": 3419 + }, + "positionPrev": { + "#": 3422 + }, + "anglePrev": 0, + "axes": { + "#": 3423 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3388 + }, + "sleepCounter": 0, + "region": { + "#": 3434 + } + }, + [ + { + "#": 3388 + } + ], + [ + { + "#": 3391 + }, + { + "#": 3392 + }, + { + "#": 3393 + }, + { + "#": 3394 + }, + { + "#": 3395 + }, + { + "#": 3396 + }, + { + "#": 3397 + }, + { + "#": 3398 + }, + { + "#": 3399 + }, + { + "#": 3400 + }, + { + "#": 3401 + }, + { + "#": 3402 + }, + { + "#": 3403 + }, + { + "#": 3404 + }, + { + "#": 3405 + }, + { + "#": 3406 + }, + { + "#": 3407 + }, + { + "#": 3408 + }, + { + "#": 3409 + }, + { + "#": 3410 + } + ], + { + "x": 139.508, + "y": 417.17475, + "index": 0, + "body": { + "#": 3388 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 423.12575, + "index": 1, + "body": { + "#": 3388 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 428.18775, + "index": 2, + "body": { + "#": 3388 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 431.86575, + "index": 3, + "body": { + "#": 3388 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 433.79975, + "index": 4, + "body": { + "#": 3388 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 433.79975, + "index": 5, + "body": { + "#": 3388 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 431.86575, + "index": 6, + "body": { + "#": 3388 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 428.18775, + "index": 7, + "body": { + "#": 3388 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 423.12575, + "index": 8, + "body": { + "#": 3388 + }, + "isInternal": false + }, + { + "x": 100, + "y": 417.17475, + "index": 9, + "body": { + "#": 3388 + }, + "isInternal": false + }, + { + "x": 100, + "y": 410.91675, + "index": 10, + "body": { + "#": 3388 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 404.96575, + "index": 11, + "body": { + "#": 3388 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 399.90375, + "index": 12, + "body": { + "#": 3388 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 396.22575, + "index": 13, + "body": { + "#": 3388 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 394.29175, + "index": 14, + "body": { + "#": 3388 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 394.29175, + "index": 15, + "body": { + "#": 3388 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 396.22575, + "index": 16, + "body": { + "#": 3388 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 399.90375, + "index": 17, + "body": { + "#": 3388 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 404.96575, + "index": 18, + "body": { + "#": 3388 + }, + "isInternal": false + }, + { + "x": 139.508, + "y": 410.91675, + "index": 19, + "body": { + "#": 3388 + }, + "isInternal": false + }, + { + "x": 119.754, + "y": 414.04575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3418 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3420 + }, + "max": { + "#": 3421 + } + }, + { + "x": 100, + "y": 394.29175 + }, + { + "x": 139.508, + "y": 433.79975 + }, + { + "x": 119.754, + "y": 411.13848 + }, + [ + { + "#": 3424 + }, + { + "#": 3425 + }, + { + "#": 3426 + }, + { + "#": 3427 + }, + { + "#": 3428 + }, + { + "#": 3429 + }, + { + "#": 3430 + }, + { + "#": 3431 + }, + { + "#": 3432 + }, + { + "#": 3433 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,2,8,9", + "startCol": 2, + "endCol": 2, + "startRow": 8, + "endRow": 9 + }, + { + "id": 76, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3436 + }, + "angle": 0, + "vertices": { + "#": 3437 + }, + "position": { + "#": 3458 + }, + "force": { + "#": 3459 + }, + "torque": 0, + "positionImpulse": { + "#": 3460 + }, + "constraintImpulse": { + "#": 3461 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3462 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3463 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3464 + }, + "circleRadius": 20, + "bounds": { + "#": 3466 + }, + "positionPrev": { + "#": 3469 + }, + "anglePrev": 0, + "axes": { + "#": 3470 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3435 + }, + "sleepCounter": 0, + "region": { + "#": 3481 + } + }, + [ + { + "#": 3435 + } + ], + [ + { + "#": 3438 + }, + { + "#": 3439 + }, + { + "#": 3440 + }, + { + "#": 3441 + }, + { + "#": 3442 + }, + { + "#": 3443 + }, + { + "#": 3444 + }, + { + "#": 3445 + }, + { + "#": 3446 + }, + { + "#": 3447 + }, + { + "#": 3448 + }, + { + "#": 3449 + }, + { + "#": 3450 + }, + { + "#": 3451 + }, + { + "#": 3452 + }, + { + "#": 3453 + }, + { + "#": 3454 + }, + { + "#": 3455 + }, + { + "#": 3456 + }, + { + "#": 3457 + } + ], + { + "x": 199.016, + "y": 417.17475, + "index": 0, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 423.12575, + "index": 1, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 428.18775, + "index": 2, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 431.86575, + "index": 3, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 433.79975, + "index": 4, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 433.79975, + "index": 5, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 431.86575, + "index": 6, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 428.18775, + "index": 7, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 423.12575, + "index": 8, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 417.17475, + "index": 9, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 410.91675, + "index": 10, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 404.96575, + "index": 11, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 399.90375, + "index": 12, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 396.22575, + "index": 13, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 394.29175, + "index": 14, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 394.29175, + "index": 15, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 396.22575, + "index": 16, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 399.90375, + "index": 17, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 404.96575, + "index": 18, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 199.016, + "y": 410.91675, + "index": 19, + "body": { + "#": 3435 + }, + "isInternal": false + }, + { + "x": 179.262, + "y": 414.04575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3465 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3467 + }, + "max": { + "#": 3468 + } + }, + { + "x": 159.508, + "y": 394.29175 + }, + { + "x": 199.016, + "y": 433.79975 + }, + { + "x": 179.262, + "y": 411.13848 + }, + [ + { + "#": 3471 + }, + { + "#": 3472 + }, + { + "#": 3473 + }, + { + "#": 3474 + }, + { + "#": 3475 + }, + { + "#": 3476 + }, + { + "#": 3477 + }, + { + "#": 3478 + }, + { + "#": 3479 + }, + { + "#": 3480 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,8,9", + "startCol": 3, + "endCol": 4, + "startRow": 8, + "endRow": 9 + }, + { + "id": 77, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3483 + }, + "angle": 0, + "vertices": { + "#": 3484 + }, + "position": { + "#": 3505 + }, + "force": { + "#": 3506 + }, + "torque": 0, + "positionImpulse": { + "#": 3507 + }, + "constraintImpulse": { + "#": 3508 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3509 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3510 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3511 + }, + "circleRadius": 20, + "bounds": { + "#": 3513 + }, + "positionPrev": { + "#": 3516 + }, + "anglePrev": 0, + "axes": { + "#": 3517 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3482 + }, + "sleepCounter": 0, + "region": { + "#": 3528 + } + }, + [ + { + "#": 3482 + } + ], + [ + { + "#": 3485 + }, + { + "#": 3486 + }, + { + "#": 3487 + }, + { + "#": 3488 + }, + { + "#": 3489 + }, + { + "#": 3490 + }, + { + "#": 3491 + }, + { + "#": 3492 + }, + { + "#": 3493 + }, + { + "#": 3494 + }, + { + "#": 3495 + }, + { + "#": 3496 + }, + { + "#": 3497 + }, + { + "#": 3498 + }, + { + "#": 3499 + }, + { + "#": 3500 + }, + { + "#": 3501 + }, + { + "#": 3502 + }, + { + "#": 3503 + }, + { + "#": 3504 + } + ], + { + "x": 258.524, + "y": 417.17475, + "index": 0, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 423.12575, + "index": 1, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 428.18775, + "index": 2, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 431.86575, + "index": 3, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 433.79975, + "index": 4, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 433.79975, + "index": 5, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 431.86575, + "index": 6, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 428.18775, + "index": 7, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 423.12575, + "index": 8, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 417.17475, + "index": 9, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 410.91675, + "index": 10, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 404.96575, + "index": 11, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 399.90375, + "index": 12, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 396.22575, + "index": 13, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 394.29175, + "index": 14, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 394.29175, + "index": 15, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 396.22575, + "index": 16, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 399.90375, + "index": 17, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 404.96575, + "index": 18, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 258.524, + "y": 410.91675, + "index": 19, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 238.77, + "y": 414.04575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3512 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3514 + }, + "max": { + "#": 3515 + } + }, + { + "x": 219.016, + "y": 394.29175 + }, + { + "x": 258.524, + "y": 433.79975 + }, + { + "x": 238.77, + "y": 411.13848 + }, + [ + { + "#": 3518 + }, + { + "#": 3519 + }, + { + "#": 3520 + }, + { + "#": 3521 + }, + { + "#": 3522 + }, + { + "#": 3523 + }, + { + "#": 3524 + }, + { + "#": 3525 + }, + { + "#": 3526 + }, + { + "#": 3527 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,8,9", + "startCol": 4, + "endCol": 5, + "startRow": 8, + "endRow": 9 + }, + { + "id": 78, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3530 + }, + "angle": 0, + "vertices": { + "#": 3531 + }, + "position": { + "#": 3552 + }, + "force": { + "#": 3553 + }, + "torque": 0, + "positionImpulse": { + "#": 3554 + }, + "constraintImpulse": { + "#": 3555 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3556 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3557 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3558 + }, + "circleRadius": 20, + "bounds": { + "#": 3560 + }, + "positionPrev": { + "#": 3563 + }, + "anglePrev": 0, + "axes": { + "#": 3564 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3529 + }, + "sleepCounter": 0, + "region": { + "#": 3575 + } + }, + [ + { + "#": 3529 + } + ], + [ + { + "#": 3532 + }, + { + "#": 3533 + }, + { + "#": 3534 + }, + { + "#": 3535 + }, + { + "#": 3536 + }, + { + "#": 3537 + }, + { + "#": 3538 + }, + { + "#": 3539 + }, + { + "#": 3540 + }, + { + "#": 3541 + }, + { + "#": 3542 + }, + { + "#": 3543 + }, + { + "#": 3544 + }, + { + "#": 3545 + }, + { + "#": 3546 + }, + { + "#": 3547 + }, + { + "#": 3548 + }, + { + "#": 3549 + }, + { + "#": 3550 + }, + { + "#": 3551 + } + ], + { + "x": 318.032, + "y": 417.17475, + "index": 0, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 423.12575, + "index": 1, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 428.18775, + "index": 2, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 431.86575, + "index": 3, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 433.79975, + "index": 4, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 433.79975, + "index": 5, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 431.86575, + "index": 6, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 428.18775, + "index": 7, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 423.12575, + "index": 8, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 417.17475, + "index": 9, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 410.91675, + "index": 10, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 404.96575, + "index": 11, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 399.90375, + "index": 12, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 396.22575, + "index": 13, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 394.29175, + "index": 14, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 394.29175, + "index": 15, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 396.22575, + "index": 16, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 399.90375, + "index": 17, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 404.96575, + "index": 18, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 318.032, + "y": 410.91675, + "index": 19, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 298.278, + "y": 414.04575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3559 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3561 + }, + "max": { + "#": 3562 + } + }, + { + "x": 278.524, + "y": 394.29175 + }, + { + "x": 318.032, + "y": 433.79975 + }, + { + "x": 298.278, + "y": 411.13848 + }, + [ + { + "#": 3565 + }, + { + "#": 3566 + }, + { + "#": 3567 + }, + { + "#": 3568 + }, + { + "#": 3569 + }, + { + "#": 3570 + }, + { + "#": 3571 + }, + { + "#": 3572 + }, + { + "#": 3573 + }, + { + "#": 3574 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,8,9", + "startCol": 5, + "endCol": 6, + "startRow": 8, + "endRow": 9 + }, + { + "id": 79, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3577 + }, + "angle": 0, + "vertices": { + "#": 3578 + }, + "position": { + "#": 3599 + }, + "force": { + "#": 3600 + }, + "torque": 0, + "positionImpulse": { + "#": 3601 + }, + "constraintImpulse": { + "#": 3602 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3603 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3604 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3605 + }, + "circleRadius": 20, + "bounds": { + "#": 3607 + }, + "positionPrev": { + "#": 3610 + }, + "anglePrev": 0, + "axes": { + "#": 3611 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3576 + }, + "sleepCounter": 0, + "region": { + "#": 3622 + } + }, + [ + { + "#": 3576 + } + ], + [ + { + "#": 3579 + }, + { + "#": 3580 + }, + { + "#": 3581 + }, + { + "#": 3582 + }, + { + "#": 3583 + }, + { + "#": 3584 + }, + { + "#": 3585 + }, + { + "#": 3586 + }, + { + "#": 3587 + }, + { + "#": 3588 + }, + { + "#": 3589 + }, + { + "#": 3590 + }, + { + "#": 3591 + }, + { + "#": 3592 + }, + { + "#": 3593 + }, + { + "#": 3594 + }, + { + "#": 3595 + }, + { + "#": 3596 + }, + { + "#": 3597 + }, + { + "#": 3598 + } + ], + { + "x": 377.54, + "y": 417.17475, + "index": 0, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 423.12575, + "index": 1, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 428.18775, + "index": 2, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 431.86575, + "index": 3, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 433.79975, + "index": 4, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 433.79975, + "index": 5, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 431.86575, + "index": 6, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 428.18775, + "index": 7, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 423.12575, + "index": 8, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 417.17475, + "index": 9, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 410.91675, + "index": 10, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 404.96575, + "index": 11, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 399.90375, + "index": 12, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 396.22575, + "index": 13, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 394.29175, + "index": 14, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 394.29175, + "index": 15, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 396.22575, + "index": 16, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 399.90375, + "index": 17, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 404.96575, + "index": 18, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 377.54, + "y": 410.91675, + "index": 19, + "body": { + "#": 3576 + }, + "isInternal": false + }, + { + "x": 357.786, + "y": 414.04575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3606 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3608 + }, + "max": { + "#": 3609 + } + }, + { + "x": 338.032, + "y": 394.29175 + }, + { + "x": 377.54, + "y": 433.79975 + }, + { + "x": 357.786, + "y": 411.13848 + }, + [ + { + "#": 3612 + }, + { + "#": 3613 + }, + { + "#": 3614 + }, + { + "#": 3615 + }, + { + "#": 3616 + }, + { + "#": 3617 + }, + { + "#": 3618 + }, + { + "#": 3619 + }, + { + "#": 3620 + }, + { + "#": 3621 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,8,9", + "startCol": 7, + "endCol": 7, + "startRow": 8, + "endRow": 9 + }, + { + "id": 80, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3624 + }, + "angle": 0, + "vertices": { + "#": 3625 + }, + "position": { + "#": 3646 + }, + "force": { + "#": 3647 + }, + "torque": 0, + "positionImpulse": { + "#": 3648 + }, + "constraintImpulse": { + "#": 3649 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3650 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3651 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3652 + }, + "circleRadius": 20, + "bounds": { + "#": 3654 + }, + "positionPrev": { + "#": 3657 + }, + "anglePrev": 0, + "axes": { + "#": 3658 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3623 + }, + "sleepCounter": 0, + "region": { + "#": 3669 + } + }, + [ + { + "#": 3623 + } + ], + [ + { + "#": 3626 + }, + { + "#": 3627 + }, + { + "#": 3628 + }, + { + "#": 3629 + }, + { + "#": 3630 + }, + { + "#": 3631 + }, + { + "#": 3632 + }, + { + "#": 3633 + }, + { + "#": 3634 + }, + { + "#": 3635 + }, + { + "#": 3636 + }, + { + "#": 3637 + }, + { + "#": 3638 + }, + { + "#": 3639 + }, + { + "#": 3640 + }, + { + "#": 3641 + }, + { + "#": 3642 + }, + { + "#": 3643 + }, + { + "#": 3644 + }, + { + "#": 3645 + } + ], + { + "x": 437.048, + "y": 417.17475, + "index": 0, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 423.12575, + "index": 1, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 428.18775, + "index": 2, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 431.86575, + "index": 3, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 433.79975, + "index": 4, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 433.79975, + "index": 5, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 431.86575, + "index": 6, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 428.18775, + "index": 7, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 423.12575, + "index": 8, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 417.17475, + "index": 9, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 410.91675, + "index": 10, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 404.96575, + "index": 11, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 399.90375, + "index": 12, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 396.22575, + "index": 13, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 394.29175, + "index": 14, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 394.29175, + "index": 15, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 396.22575, + "index": 16, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 399.90375, + "index": 17, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 404.96575, + "index": 18, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 437.048, + "y": 410.91675, + "index": 19, + "body": { + "#": 3623 + }, + "isInternal": false + }, + { + "x": 417.294, + "y": 414.04575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3653 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3655 + }, + "max": { + "#": 3656 + } + }, + { + "x": 397.54, + "y": 394.29175 + }, + { + "x": 437.048, + "y": 433.79975 + }, + { + "x": 417.294, + "y": 411.13848 + }, + [ + { + "#": 3659 + }, + { + "#": 3660 + }, + { + "#": 3661 + }, + { + "#": 3662 + }, + { + "#": 3663 + }, + { + "#": 3664 + }, + { + "#": 3665 + }, + { + "#": 3666 + }, + { + "#": 3667 + }, + { + "#": 3668 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,8,9", + "startCol": 8, + "endCol": 9, + "startRow": 8, + "endRow": 9 + }, + { + "id": 81, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3671 + }, + "angle": 0, + "vertices": { + "#": 3672 + }, + "position": { + "#": 3693 + }, + "force": { + "#": 3694 + }, + "torque": 0, + "positionImpulse": { + "#": 3695 + }, + "constraintImpulse": { + "#": 3696 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3697 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3698 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3699 + }, + "circleRadius": 20, + "bounds": { + "#": 3701 + }, + "positionPrev": { + "#": 3704 + }, + "anglePrev": 0, + "axes": { + "#": 3705 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3670 + }, + "sleepCounter": 0, + "region": { + "#": 3716 + } + }, + [ + { + "#": 3670 + } + ], + [ + { + "#": 3673 + }, + { + "#": 3674 + }, + { + "#": 3675 + }, + { + "#": 3676 + }, + { + "#": 3677 + }, + { + "#": 3678 + }, + { + "#": 3679 + }, + { + "#": 3680 + }, + { + "#": 3681 + }, + { + "#": 3682 + }, + { + "#": 3683 + }, + { + "#": 3684 + }, + { + "#": 3685 + }, + { + "#": 3686 + }, + { + "#": 3687 + }, + { + "#": 3688 + }, + { + "#": 3689 + }, + { + "#": 3690 + }, + { + "#": 3691 + }, + { + "#": 3692 + } + ], + { + "x": 496.556, + "y": 417.17475, + "index": 0, + "body": { + "#": 3670 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 423.12575, + "index": 1, + "body": { + "#": 3670 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 428.18775, + "index": 2, + "body": { + "#": 3670 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 431.86575, + "index": 3, + "body": { + "#": 3670 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 433.79975, + "index": 4, + "body": { + "#": 3670 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 433.79975, + "index": 5, + "body": { + "#": 3670 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 431.86575, + "index": 6, + "body": { + "#": 3670 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 428.18775, + "index": 7, + "body": { + "#": 3670 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 423.12575, + "index": 8, + "body": { + "#": 3670 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 417.17475, + "index": 9, + "body": { + "#": 3670 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 410.91675, + "index": 10, + "body": { + "#": 3670 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 404.96575, + "index": 11, + "body": { + "#": 3670 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 399.90375, + "index": 12, + "body": { + "#": 3670 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 396.22575, + "index": 13, + "body": { + "#": 3670 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 394.29175, + "index": 14, + "body": { + "#": 3670 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 394.29175, + "index": 15, + "body": { + "#": 3670 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 396.22575, + "index": 16, + "body": { + "#": 3670 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 399.90375, + "index": 17, + "body": { + "#": 3670 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 404.96575, + "index": 18, + "body": { + "#": 3670 + }, + "isInternal": false + }, + { + "x": 496.556, + "y": 410.91675, + "index": 19, + "body": { + "#": 3670 + }, + "isInternal": false + }, + { + "x": 476.802, + "y": 414.04575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3700 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3702 + }, + "max": { + "#": 3703 + } + }, + { + "x": 457.048, + "y": 394.29175 + }, + { + "x": 496.556, + "y": 433.79975 + }, + { + "x": 476.802, + "y": 411.13848 + }, + [ + { + "#": 3706 + }, + { + "#": 3707 + }, + { + "#": 3708 + }, + { + "#": 3709 + }, + { + "#": 3710 + }, + { + "#": 3711 + }, + { + "#": 3712 + }, + { + "#": 3713 + }, + { + "#": 3714 + }, + { + "#": 3715 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,8,9", + "startCol": 9, + "endCol": 10, + "startRow": 8, + "endRow": 9 + }, + { + "id": 82, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3718 + }, + "angle": 0, + "vertices": { + "#": 3719 + }, + "position": { + "#": 3740 + }, + "force": { + "#": 3741 + }, + "torque": 0, + "positionImpulse": { + "#": 3742 + }, + "constraintImpulse": { + "#": 3743 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3744 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3745 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3746 + }, + "circleRadius": 20, + "bounds": { + "#": 3748 + }, + "positionPrev": { + "#": 3751 + }, + "anglePrev": 0, + "axes": { + "#": 3752 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3717 + }, + "sleepCounter": 0, + "region": { + "#": 3763 + } + }, + [ + { + "#": 3717 + } + ], + [ + { + "#": 3720 + }, + { + "#": 3721 + }, + { + "#": 3722 + }, + { + "#": 3723 + }, + { + "#": 3724 + }, + { + "#": 3725 + }, + { + "#": 3726 + }, + { + "#": 3727 + }, + { + "#": 3728 + }, + { + "#": 3729 + }, + { + "#": 3730 + }, + { + "#": 3731 + }, + { + "#": 3732 + }, + { + "#": 3733 + }, + { + "#": 3734 + }, + { + "#": 3735 + }, + { + "#": 3736 + }, + { + "#": 3737 + }, + { + "#": 3738 + }, + { + "#": 3739 + } + ], + { + "x": 556.064, + "y": 417.17475, + "index": 0, + "body": { + "#": 3717 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 423.12575, + "index": 1, + "body": { + "#": 3717 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 428.18775, + "index": 2, + "body": { + "#": 3717 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 431.86575, + "index": 3, + "body": { + "#": 3717 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 433.79975, + "index": 4, + "body": { + "#": 3717 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 433.79975, + "index": 5, + "body": { + "#": 3717 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 431.86575, + "index": 6, + "body": { + "#": 3717 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 428.18775, + "index": 7, + "body": { + "#": 3717 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 423.12575, + "index": 8, + "body": { + "#": 3717 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 417.17475, + "index": 9, + "body": { + "#": 3717 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 410.91675, + "index": 10, + "body": { + "#": 3717 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 404.96575, + "index": 11, + "body": { + "#": 3717 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 399.90375, + "index": 12, + "body": { + "#": 3717 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 396.22575, + "index": 13, + "body": { + "#": 3717 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 394.29175, + "index": 14, + "body": { + "#": 3717 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 394.29175, + "index": 15, + "body": { + "#": 3717 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 396.22575, + "index": 16, + "body": { + "#": 3717 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 399.90375, + "index": 17, + "body": { + "#": 3717 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 404.96575, + "index": 18, + "body": { + "#": 3717 + }, + "isInternal": false + }, + { + "x": 556.064, + "y": 410.91675, + "index": 19, + "body": { + "#": 3717 + }, + "isInternal": false + }, + { + "x": 536.31, + "y": 414.04575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3747 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3749 + }, + "max": { + "#": 3750 + } + }, + { + "x": 516.556, + "y": 394.29175 + }, + { + "x": 556.064, + "y": 433.79975 + }, + { + "x": 536.31, + "y": 411.13848 + }, + [ + { + "#": 3753 + }, + { + "#": 3754 + }, + { + "#": 3755 + }, + { + "#": 3756 + }, + { + "#": 3757 + }, + { + "#": 3758 + }, + { + "#": 3759 + }, + { + "#": 3760 + }, + { + "#": 3761 + }, + { + "#": 3762 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,8,9", + "startCol": 10, + "endCol": 11, + "startRow": 8, + "endRow": 9 + }, + { + "id": 83, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3765 + }, + "angle": 0, + "vertices": { + "#": 3766 + }, + "position": { + "#": 3787 + }, + "force": { + "#": 3788 + }, + "torque": 0, + "positionImpulse": { + "#": 3789 + }, + "constraintImpulse": { + "#": 3790 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3791 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3792 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3793 + }, + "circleRadius": 20, + "bounds": { + "#": 3795 + }, + "positionPrev": { + "#": 3798 + }, + "anglePrev": 0, + "axes": { + "#": 3799 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3764 + }, + "sleepCounter": 0, + "region": { + "#": 3810 + } + }, + [ + { + "#": 3764 + } + ], + [ + { + "#": 3767 + }, + { + "#": 3768 + }, + { + "#": 3769 + }, + { + "#": 3770 + }, + { + "#": 3771 + }, + { + "#": 3772 + }, + { + "#": 3773 + }, + { + "#": 3774 + }, + { + "#": 3775 + }, + { + "#": 3776 + }, + { + "#": 3777 + }, + { + "#": 3778 + }, + { + "#": 3779 + }, + { + "#": 3780 + }, + { + "#": 3781 + }, + { + "#": 3782 + }, + { + "#": 3783 + }, + { + "#": 3784 + }, + { + "#": 3785 + }, + { + "#": 3786 + } + ], + { + "x": 615.572, + "y": 417.17475, + "index": 0, + "body": { + "#": 3764 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 423.12575, + "index": 1, + "body": { + "#": 3764 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 428.18775, + "index": 2, + "body": { + "#": 3764 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 431.86575, + "index": 3, + "body": { + "#": 3764 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 433.79975, + "index": 4, + "body": { + "#": 3764 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 433.79975, + "index": 5, + "body": { + "#": 3764 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 431.86575, + "index": 6, + "body": { + "#": 3764 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 428.18775, + "index": 7, + "body": { + "#": 3764 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 423.12575, + "index": 8, + "body": { + "#": 3764 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 417.17475, + "index": 9, + "body": { + "#": 3764 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 410.91675, + "index": 10, + "body": { + "#": 3764 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 404.96575, + "index": 11, + "body": { + "#": 3764 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 399.90375, + "index": 12, + "body": { + "#": 3764 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 396.22575, + "index": 13, + "body": { + "#": 3764 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 394.29175, + "index": 14, + "body": { + "#": 3764 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 394.29175, + "index": 15, + "body": { + "#": 3764 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 396.22575, + "index": 16, + "body": { + "#": 3764 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 399.90375, + "index": 17, + "body": { + "#": 3764 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 404.96575, + "index": 18, + "body": { + "#": 3764 + }, + "isInternal": false + }, + { + "x": 615.572, + "y": 410.91675, + "index": 19, + "body": { + "#": 3764 + }, + "isInternal": false + }, + { + "x": 595.818, + "y": 414.04575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3794 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3796 + }, + "max": { + "#": 3797 + } + }, + { + "x": 576.064, + "y": 394.29175 + }, + { + "x": 615.572, + "y": 433.79975 + }, + { + "x": 595.818, + "y": 411.13848 + }, + [ + { + "#": 3800 + }, + { + "#": 3801 + }, + { + "#": 3802 + }, + { + "#": 3803 + }, + { + "#": 3804 + }, + { + "#": 3805 + }, + { + "#": 3806 + }, + { + "#": 3807 + }, + { + "#": 3808 + }, + { + "#": 3809 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,8,9", + "startCol": 12, + "endCol": 12, + "startRow": 8, + "endRow": 9 + }, + { + "id": 84, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3812 + }, + "angle": 0, + "vertices": { + "#": 3813 + }, + "position": { + "#": 3834 + }, + "force": { + "#": 3835 + }, + "torque": 0, + "positionImpulse": { + "#": 3836 + }, + "constraintImpulse": { + "#": 3837 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3838 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3839 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3840 + }, + "circleRadius": 20, + "bounds": { + "#": 3842 + }, + "positionPrev": { + "#": 3845 + }, + "anglePrev": 0, + "axes": { + "#": 3846 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3811 + }, + "sleepCounter": 0, + "region": { + "#": 3857 + } + }, + [ + { + "#": 3811 + } + ], + [ + { + "#": 3814 + }, + { + "#": 3815 + }, + { + "#": 3816 + }, + { + "#": 3817 + }, + { + "#": 3818 + }, + { + "#": 3819 + }, + { + "#": 3820 + }, + { + "#": 3821 + }, + { + "#": 3822 + }, + { + "#": 3823 + }, + { + "#": 3824 + }, + { + "#": 3825 + }, + { + "#": 3826 + }, + { + "#": 3827 + }, + { + "#": 3828 + }, + { + "#": 3829 + }, + { + "#": 3830 + }, + { + "#": 3831 + }, + { + "#": 3832 + }, + { + "#": 3833 + } + ], + { + "x": 675.08, + "y": 417.17475, + "index": 0, + "body": { + "#": 3811 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 423.12575, + "index": 1, + "body": { + "#": 3811 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 428.18775, + "index": 2, + "body": { + "#": 3811 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 431.86575, + "index": 3, + "body": { + "#": 3811 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 433.79975, + "index": 4, + "body": { + "#": 3811 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 433.79975, + "index": 5, + "body": { + "#": 3811 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 431.86575, + "index": 6, + "body": { + "#": 3811 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 428.18775, + "index": 7, + "body": { + "#": 3811 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 423.12575, + "index": 8, + "body": { + "#": 3811 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 417.17475, + "index": 9, + "body": { + "#": 3811 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 410.91675, + "index": 10, + "body": { + "#": 3811 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 404.96575, + "index": 11, + "body": { + "#": 3811 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 399.90375, + "index": 12, + "body": { + "#": 3811 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 396.22575, + "index": 13, + "body": { + "#": 3811 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 394.29175, + "index": 14, + "body": { + "#": 3811 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 394.29175, + "index": 15, + "body": { + "#": 3811 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 396.22575, + "index": 16, + "body": { + "#": 3811 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 399.90375, + "index": 17, + "body": { + "#": 3811 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 404.96575, + "index": 18, + "body": { + "#": 3811 + }, + "isInternal": false + }, + { + "x": 675.08, + "y": 410.91675, + "index": 19, + "body": { + "#": 3811 + }, + "isInternal": false + }, + { + "x": 655.326, + "y": 414.04575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3841 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3843 + }, + "max": { + "#": 3844 + } + }, + { + "x": 635.572, + "y": 394.29175 + }, + { + "x": 675.08, + "y": 433.79975 + }, + { + "x": 655.326, + "y": 411.13848 + }, + [ + { + "#": 3847 + }, + { + "#": 3848 + }, + { + "#": 3849 + }, + { + "#": 3850 + }, + { + "#": 3851 + }, + { + "#": 3852 + }, + { + "#": 3853 + }, + { + "#": 3854 + }, + { + "#": 3855 + }, + { + "#": 3856 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "13,14,8,9", + "startCol": 13, + "endCol": 14, + "startRow": 8, + "endRow": 9 + }, + { + "id": 85, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3859 + }, + "angle": 0, + "vertices": { + "#": 3860 + }, + "position": { + "#": 3881 + }, + "force": { + "#": 3882 + }, + "torque": 0, + "positionImpulse": { + "#": 3883 + }, + "constraintImpulse": { + "#": 3884 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3885 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3886 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3887 + }, + "circleRadius": 20, + "bounds": { + "#": 3889 + }, + "positionPrev": { + "#": 3892 + }, + "anglePrev": 0, + "axes": { + "#": 3893 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3858 + }, + "sleepCounter": 0, + "region": { + "#": 3904 + } + }, + [ + { + "#": 3858 + } + ], + [ + { + "#": 3861 + }, + { + "#": 3862 + }, + { + "#": 3863 + }, + { + "#": 3864 + }, + { + "#": 3865 + }, + { + "#": 3866 + }, + { + "#": 3867 + }, + { + "#": 3868 + }, + { + "#": 3869 + }, + { + "#": 3870 + }, + { + "#": 3871 + }, + { + "#": 3872 + }, + { + "#": 3873 + }, + { + "#": 3874 + }, + { + "#": 3875 + }, + { + "#": 3876 + }, + { + "#": 3877 + }, + { + "#": 3878 + }, + { + "#": 3879 + }, + { + "#": 3880 + } + ], + { + "x": 139.508, + "y": 456.68275, + "index": 0, + "body": { + "#": 3858 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 462.63375, + "index": 1, + "body": { + "#": 3858 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 467.69575, + "index": 2, + "body": { + "#": 3858 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 471.37375, + "index": 3, + "body": { + "#": 3858 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 473.30775, + "index": 4, + "body": { + "#": 3858 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 473.30775, + "index": 5, + "body": { + "#": 3858 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 471.37375, + "index": 6, + "body": { + "#": 3858 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 467.69575, + "index": 7, + "body": { + "#": 3858 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 462.63375, + "index": 8, + "body": { + "#": 3858 + }, + "isInternal": false + }, + { + "x": 100, + "y": 456.68275, + "index": 9, + "body": { + "#": 3858 + }, + "isInternal": false + }, + { + "x": 100, + "y": 450.42475, + "index": 10, + "body": { + "#": 3858 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 444.47375, + "index": 11, + "body": { + "#": 3858 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 439.41175, + "index": 12, + "body": { + "#": 3858 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 435.73375, + "index": 13, + "body": { + "#": 3858 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 433.79975, + "index": 14, + "body": { + "#": 3858 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 433.79975, + "index": 15, + "body": { + "#": 3858 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 435.73375, + "index": 16, + "body": { + "#": 3858 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 439.41175, + "index": 17, + "body": { + "#": 3858 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 444.47375, + "index": 18, + "body": { + "#": 3858 + }, + "isInternal": false + }, + { + "x": 139.508, + "y": 450.42475, + "index": 19, + "body": { + "#": 3858 + }, + "isInternal": false + }, + { + "x": 119.754, + "y": 453.55375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3888 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3890 + }, + "max": { + "#": 3891 + } + }, + { + "x": 100, + "y": 433.79975 + }, + { + "x": 139.508, + "y": 473.30775 + }, + { + "x": 119.754, + "y": 450.64648 + }, + [ + { + "#": 3894 + }, + { + "#": 3895 + }, + { + "#": 3896 + }, + { + "#": 3897 + }, + { + "#": 3898 + }, + { + "#": 3899 + }, + { + "#": 3900 + }, + { + "#": 3901 + }, + { + "#": 3902 + }, + { + "#": 3903 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,2,9,9", + "startCol": 2, + "endCol": 2, + "startRow": 9, + "endRow": 9 + }, + { + "id": 86, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3906 + }, + "angle": 0, + "vertices": { + "#": 3907 + }, + "position": { + "#": 3928 + }, + "force": { + "#": 3929 + }, + "torque": 0, + "positionImpulse": { + "#": 3930 + }, + "constraintImpulse": { + "#": 3931 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3932 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3933 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3934 + }, + "circleRadius": 20, + "bounds": { + "#": 3936 + }, + "positionPrev": { + "#": 3939 + }, + "anglePrev": 0, + "axes": { + "#": 3940 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3905 + }, + "sleepCounter": 0, + "region": { + "#": 3951 + } + }, + [ + { + "#": 3905 + } + ], + [ + { + "#": 3908 + }, + { + "#": 3909 + }, + { + "#": 3910 + }, + { + "#": 3911 + }, + { + "#": 3912 + }, + { + "#": 3913 + }, + { + "#": 3914 + }, + { + "#": 3915 + }, + { + "#": 3916 + }, + { + "#": 3917 + }, + { + "#": 3918 + }, + { + "#": 3919 + }, + { + "#": 3920 + }, + { + "#": 3921 + }, + { + "#": 3922 + }, + { + "#": 3923 + }, + { + "#": 3924 + }, + { + "#": 3925 + }, + { + "#": 3926 + }, + { + "#": 3927 + } + ], + { + "x": 199.016, + "y": 456.68275, + "index": 0, + "body": { + "#": 3905 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 462.63375, + "index": 1, + "body": { + "#": 3905 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 467.69575, + "index": 2, + "body": { + "#": 3905 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 471.37375, + "index": 3, + "body": { + "#": 3905 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 473.30775, + "index": 4, + "body": { + "#": 3905 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 473.30775, + "index": 5, + "body": { + "#": 3905 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 471.37375, + "index": 6, + "body": { + "#": 3905 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 467.69575, + "index": 7, + "body": { + "#": 3905 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 462.63375, + "index": 8, + "body": { + "#": 3905 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 456.68275, + "index": 9, + "body": { + "#": 3905 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 450.42475, + "index": 10, + "body": { + "#": 3905 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 444.47375, + "index": 11, + "body": { + "#": 3905 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 439.41175, + "index": 12, + "body": { + "#": 3905 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 435.73375, + "index": 13, + "body": { + "#": 3905 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 433.79975, + "index": 14, + "body": { + "#": 3905 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 433.79975, + "index": 15, + "body": { + "#": 3905 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 435.73375, + "index": 16, + "body": { + "#": 3905 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 439.41175, + "index": 17, + "body": { + "#": 3905 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 444.47375, + "index": 18, + "body": { + "#": 3905 + }, + "isInternal": false + }, + { + "x": 199.016, + "y": 450.42475, + "index": 19, + "body": { + "#": 3905 + }, + "isInternal": false + }, + { + "x": 179.262, + "y": 453.55375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3935 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3937 + }, + "max": { + "#": 3938 + } + }, + { + "x": 159.508, + "y": 433.79975 + }, + { + "x": 199.016, + "y": 473.30775 + }, + { + "x": 179.262, + "y": 450.64648 + }, + [ + { + "#": 3941 + }, + { + "#": 3942 + }, + { + "#": 3943 + }, + { + "#": 3944 + }, + { + "#": 3945 + }, + { + "#": 3946 + }, + { + "#": 3947 + }, + { + "#": 3948 + }, + { + "#": 3949 + }, + { + "#": 3950 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,9,9", + "startCol": 3, + "endCol": 4, + "startRow": 9, + "endRow": 9 + }, + { + "id": 87, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3953 + }, + "angle": 0, + "vertices": { + "#": 3954 + }, + "position": { + "#": 3975 + }, + "force": { + "#": 3976 + }, + "torque": 0, + "positionImpulse": { + "#": 3977 + }, + "constraintImpulse": { + "#": 3978 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3979 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3980 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3981 + }, + "circleRadius": 20, + "bounds": { + "#": 3983 + }, + "positionPrev": { + "#": 3986 + }, + "anglePrev": 0, + "axes": { + "#": 3987 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3952 + }, + "sleepCounter": 0, + "region": { + "#": 3998 + } + }, + [ + { + "#": 3952 + } + ], + [ + { + "#": 3955 + }, + { + "#": 3956 + }, + { + "#": 3957 + }, + { + "#": 3958 + }, + { + "#": 3959 + }, + { + "#": 3960 + }, + { + "#": 3961 + }, + { + "#": 3962 + }, + { + "#": 3963 + }, + { + "#": 3964 + }, + { + "#": 3965 + }, + { + "#": 3966 + }, + { + "#": 3967 + }, + { + "#": 3968 + }, + { + "#": 3969 + }, + { + "#": 3970 + }, + { + "#": 3971 + }, + { + "#": 3972 + }, + { + "#": 3973 + }, + { + "#": 3974 + } + ], + { + "x": 258.524, + "y": 456.68275, + "index": 0, + "body": { + "#": 3952 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 462.63375, + "index": 1, + "body": { + "#": 3952 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 467.69575, + "index": 2, + "body": { + "#": 3952 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 471.37375, + "index": 3, + "body": { + "#": 3952 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 473.30775, + "index": 4, + "body": { + "#": 3952 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 473.30775, + "index": 5, + "body": { + "#": 3952 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 471.37375, + "index": 6, + "body": { + "#": 3952 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 467.69575, + "index": 7, + "body": { + "#": 3952 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 462.63375, + "index": 8, + "body": { + "#": 3952 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 456.68275, + "index": 9, + "body": { + "#": 3952 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 450.42475, + "index": 10, + "body": { + "#": 3952 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 444.47375, + "index": 11, + "body": { + "#": 3952 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 439.41175, + "index": 12, + "body": { + "#": 3952 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 435.73375, + "index": 13, + "body": { + "#": 3952 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 433.79975, + "index": 14, + "body": { + "#": 3952 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 433.79975, + "index": 15, + "body": { + "#": 3952 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 435.73375, + "index": 16, + "body": { + "#": 3952 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 439.41175, + "index": 17, + "body": { + "#": 3952 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 444.47375, + "index": 18, + "body": { + "#": 3952 + }, + "isInternal": false + }, + { + "x": 258.524, + "y": 450.42475, + "index": 19, + "body": { + "#": 3952 + }, + "isInternal": false + }, + { + "x": 238.77, + "y": 453.55375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3982 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3984 + }, + "max": { + "#": 3985 + } + }, + { + "x": 219.016, + "y": 433.79975 + }, + { + "x": 258.524, + "y": 473.30775 + }, + { + "x": 238.77, + "y": 450.64648 + }, + [ + { + "#": 3988 + }, + { + "#": 3989 + }, + { + "#": 3990 + }, + { + "#": 3991 + }, + { + "#": 3992 + }, + { + "#": 3993 + }, + { + "#": 3994 + }, + { + "#": 3995 + }, + { + "#": 3996 + }, + { + "#": 3997 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,9,9", + "startCol": 4, + "endCol": 5, + "startRow": 9, + "endRow": 9 + }, + { + "id": 88, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4000 + }, + "angle": 0, + "vertices": { + "#": 4001 + }, + "position": { + "#": 4022 + }, + "force": { + "#": 4023 + }, + "torque": 0, + "positionImpulse": { + "#": 4024 + }, + "constraintImpulse": { + "#": 4025 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4026 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4027 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4028 + }, + "circleRadius": 20, + "bounds": { + "#": 4030 + }, + "positionPrev": { + "#": 4033 + }, + "anglePrev": 0, + "axes": { + "#": 4034 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 3999 + }, + "sleepCounter": 0, + "region": { + "#": 4045 + } + }, + [ + { + "#": 3999 + } + ], + [ + { + "#": 4002 + }, + { + "#": 4003 + }, + { + "#": 4004 + }, + { + "#": 4005 + }, + { + "#": 4006 + }, + { + "#": 4007 + }, + { + "#": 4008 + }, + { + "#": 4009 + }, + { + "#": 4010 + }, + { + "#": 4011 + }, + { + "#": 4012 + }, + { + "#": 4013 + }, + { + "#": 4014 + }, + { + "#": 4015 + }, + { + "#": 4016 + }, + { + "#": 4017 + }, + { + "#": 4018 + }, + { + "#": 4019 + }, + { + "#": 4020 + }, + { + "#": 4021 + } + ], + { + "x": 318.032, + "y": 456.68275, + "index": 0, + "body": { + "#": 3999 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 462.63375, + "index": 1, + "body": { + "#": 3999 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 467.69575, + "index": 2, + "body": { + "#": 3999 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 471.37375, + "index": 3, + "body": { + "#": 3999 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 473.30775, + "index": 4, + "body": { + "#": 3999 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 473.30775, + "index": 5, + "body": { + "#": 3999 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 471.37375, + "index": 6, + "body": { + "#": 3999 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 467.69575, + "index": 7, + "body": { + "#": 3999 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 462.63375, + "index": 8, + "body": { + "#": 3999 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 456.68275, + "index": 9, + "body": { + "#": 3999 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 450.42475, + "index": 10, + "body": { + "#": 3999 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 444.47375, + "index": 11, + "body": { + "#": 3999 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 439.41175, + "index": 12, + "body": { + "#": 3999 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 435.73375, + "index": 13, + "body": { + "#": 3999 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 433.79975, + "index": 14, + "body": { + "#": 3999 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 433.79975, + "index": 15, + "body": { + "#": 3999 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 435.73375, + "index": 16, + "body": { + "#": 3999 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 439.41175, + "index": 17, + "body": { + "#": 3999 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 444.47375, + "index": 18, + "body": { + "#": 3999 + }, + "isInternal": false + }, + { + "x": 318.032, + "y": 450.42475, + "index": 19, + "body": { + "#": 3999 + }, + "isInternal": false + }, + { + "x": 298.278, + "y": 453.55375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4029 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4031 + }, + "max": { + "#": 4032 + } + }, + { + "x": 278.524, + "y": 433.79975 + }, + { + "x": 318.032, + "y": 473.30775 + }, + { + "x": 298.278, + "y": 450.64648 + }, + [ + { + "#": 4035 + }, + { + "#": 4036 + }, + { + "#": 4037 + }, + { + "#": 4038 + }, + { + "#": 4039 + }, + { + "#": 4040 + }, + { + "#": 4041 + }, + { + "#": 4042 + }, + { + "#": 4043 + }, + { + "#": 4044 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,9,9", + "startCol": 5, + "endCol": 6, + "startRow": 9, + "endRow": 9 + }, + { + "id": 89, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4047 + }, + "angle": 0, + "vertices": { + "#": 4048 + }, + "position": { + "#": 4069 + }, + "force": { + "#": 4070 + }, + "torque": 0, + "positionImpulse": { + "#": 4071 + }, + "constraintImpulse": { + "#": 4072 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4073 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4074 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4075 + }, + "circleRadius": 20, + "bounds": { + "#": 4077 + }, + "positionPrev": { + "#": 4080 + }, + "anglePrev": 0, + "axes": { + "#": 4081 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4046 + }, + "sleepCounter": 0, + "region": { + "#": 4092 + } + }, + [ + { + "#": 4046 + } + ], + [ + { + "#": 4049 + }, + { + "#": 4050 + }, + { + "#": 4051 + }, + { + "#": 4052 + }, + { + "#": 4053 + }, + { + "#": 4054 + }, + { + "#": 4055 + }, + { + "#": 4056 + }, + { + "#": 4057 + }, + { + "#": 4058 + }, + { + "#": 4059 + }, + { + "#": 4060 + }, + { + "#": 4061 + }, + { + "#": 4062 + }, + { + "#": 4063 + }, + { + "#": 4064 + }, + { + "#": 4065 + }, + { + "#": 4066 + }, + { + "#": 4067 + }, + { + "#": 4068 + } + ], + { + "x": 377.54, + "y": 456.68275, + "index": 0, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 462.63375, + "index": 1, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 467.69575, + "index": 2, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 471.37375, + "index": 3, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 473.30775, + "index": 4, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 473.30775, + "index": 5, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 471.37375, + "index": 6, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 467.69575, + "index": 7, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 462.63375, + "index": 8, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 456.68275, + "index": 9, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 450.42475, + "index": 10, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 444.47375, + "index": 11, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 439.41175, + "index": 12, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 435.73375, + "index": 13, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 433.79975, + "index": 14, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 433.79975, + "index": 15, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 435.73375, + "index": 16, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 439.41175, + "index": 17, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 444.47375, + "index": 18, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 377.54, + "y": 450.42475, + "index": 19, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 357.786, + "y": 453.55375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4076 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4078 + }, + "max": { + "#": 4079 + } + }, + { + "x": 338.032, + "y": 433.79975 + }, + { + "x": 377.54, + "y": 473.30775 + }, + { + "x": 357.786, + "y": 450.64648 + }, + [ + { + "#": 4082 + }, + { + "#": 4083 + }, + { + "#": 4084 + }, + { + "#": 4085 + }, + { + "#": 4086 + }, + { + "#": 4087 + }, + { + "#": 4088 + }, + { + "#": 4089 + }, + { + "#": 4090 + }, + { + "#": 4091 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,9,9", + "startCol": 7, + "endCol": 7, + "startRow": 9, + "endRow": 9 + }, + { + "id": 90, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4094 + }, + "angle": 0, + "vertices": { + "#": 4095 + }, + "position": { + "#": 4116 + }, + "force": { + "#": 4117 + }, + "torque": 0, + "positionImpulse": { + "#": 4118 + }, + "constraintImpulse": { + "#": 4119 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4120 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4121 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4122 + }, + "circleRadius": 20, + "bounds": { + "#": 4124 + }, + "positionPrev": { + "#": 4127 + }, + "anglePrev": 0, + "axes": { + "#": 4128 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4093 + }, + "sleepCounter": 0, + "region": { + "#": 4139 + } + }, + [ + { + "#": 4093 + } + ], + [ + { + "#": 4096 + }, + { + "#": 4097 + }, + { + "#": 4098 + }, + { + "#": 4099 + }, + { + "#": 4100 + }, + { + "#": 4101 + }, + { + "#": 4102 + }, + { + "#": 4103 + }, + { + "#": 4104 + }, + { + "#": 4105 + }, + { + "#": 4106 + }, + { + "#": 4107 + }, + { + "#": 4108 + }, + { + "#": 4109 + }, + { + "#": 4110 + }, + { + "#": 4111 + }, + { + "#": 4112 + }, + { + "#": 4113 + }, + { + "#": 4114 + }, + { + "#": 4115 + } + ], + { + "x": 437.048, + "y": 456.68275, + "index": 0, + "body": { + "#": 4093 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 462.63375, + "index": 1, + "body": { + "#": 4093 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 467.69575, + "index": 2, + "body": { + "#": 4093 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 471.37375, + "index": 3, + "body": { + "#": 4093 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 473.30775, + "index": 4, + "body": { + "#": 4093 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 473.30775, + "index": 5, + "body": { + "#": 4093 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 471.37375, + "index": 6, + "body": { + "#": 4093 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 467.69575, + "index": 7, + "body": { + "#": 4093 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 462.63375, + "index": 8, + "body": { + "#": 4093 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 456.68275, + "index": 9, + "body": { + "#": 4093 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 450.42475, + "index": 10, + "body": { + "#": 4093 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 444.47375, + "index": 11, + "body": { + "#": 4093 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 439.41175, + "index": 12, + "body": { + "#": 4093 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 435.73375, + "index": 13, + "body": { + "#": 4093 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 433.79975, + "index": 14, + "body": { + "#": 4093 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 433.79975, + "index": 15, + "body": { + "#": 4093 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 435.73375, + "index": 16, + "body": { + "#": 4093 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 439.41175, + "index": 17, + "body": { + "#": 4093 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 444.47375, + "index": 18, + "body": { + "#": 4093 + }, + "isInternal": false + }, + { + "x": 437.048, + "y": 450.42475, + "index": 19, + "body": { + "#": 4093 + }, + "isInternal": false + }, + { + "x": 417.294, + "y": 453.55375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4123 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4125 + }, + "max": { + "#": 4126 + } + }, + { + "x": 397.54, + "y": 433.79975 + }, + { + "x": 437.048, + "y": 473.30775 + }, + { + "x": 417.294, + "y": 450.64648 + }, + [ + { + "#": 4129 + }, + { + "#": 4130 + }, + { + "#": 4131 + }, + { + "#": 4132 + }, + { + "#": 4133 + }, + { + "#": 4134 + }, + { + "#": 4135 + }, + { + "#": 4136 + }, + { + "#": 4137 + }, + { + "#": 4138 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,9,9", + "startCol": 8, + "endCol": 9, + "startRow": 9, + "endRow": 9 + }, + { + "id": 91, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4141 + }, + "angle": 0, + "vertices": { + "#": 4142 + }, + "position": { + "#": 4163 + }, + "force": { + "#": 4164 + }, + "torque": 0, + "positionImpulse": { + "#": 4165 + }, + "constraintImpulse": { + "#": 4166 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4167 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4168 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4169 + }, + "circleRadius": 20, + "bounds": { + "#": 4171 + }, + "positionPrev": { + "#": 4174 + }, + "anglePrev": 0, + "axes": { + "#": 4175 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4140 + }, + "sleepCounter": 0, + "region": { + "#": 4186 + } + }, + [ + { + "#": 4140 + } + ], + [ + { + "#": 4143 + }, + { + "#": 4144 + }, + { + "#": 4145 + }, + { + "#": 4146 + }, + { + "#": 4147 + }, + { + "#": 4148 + }, + { + "#": 4149 + }, + { + "#": 4150 + }, + { + "#": 4151 + }, + { + "#": 4152 + }, + { + "#": 4153 + }, + { + "#": 4154 + }, + { + "#": 4155 + }, + { + "#": 4156 + }, + { + "#": 4157 + }, + { + "#": 4158 + }, + { + "#": 4159 + }, + { + "#": 4160 + }, + { + "#": 4161 + }, + { + "#": 4162 + } + ], + { + "x": 496.556, + "y": 456.68275, + "index": 0, + "body": { + "#": 4140 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 462.63375, + "index": 1, + "body": { + "#": 4140 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 467.69575, + "index": 2, + "body": { + "#": 4140 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 471.37375, + "index": 3, + "body": { + "#": 4140 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 473.30775, + "index": 4, + "body": { + "#": 4140 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 473.30775, + "index": 5, + "body": { + "#": 4140 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 471.37375, + "index": 6, + "body": { + "#": 4140 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 467.69575, + "index": 7, + "body": { + "#": 4140 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 462.63375, + "index": 8, + "body": { + "#": 4140 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 456.68275, + "index": 9, + "body": { + "#": 4140 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 450.42475, + "index": 10, + "body": { + "#": 4140 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 444.47375, + "index": 11, + "body": { + "#": 4140 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 439.41175, + "index": 12, + "body": { + "#": 4140 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 435.73375, + "index": 13, + "body": { + "#": 4140 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 433.79975, + "index": 14, + "body": { + "#": 4140 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 433.79975, + "index": 15, + "body": { + "#": 4140 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 435.73375, + "index": 16, + "body": { + "#": 4140 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 439.41175, + "index": 17, + "body": { + "#": 4140 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 444.47375, + "index": 18, + "body": { + "#": 4140 + }, + "isInternal": false + }, + { + "x": 496.556, + "y": 450.42475, + "index": 19, + "body": { + "#": 4140 + }, + "isInternal": false + }, + { + "x": 476.802, + "y": 453.55375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4170 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4172 + }, + "max": { + "#": 4173 + } + }, + { + "x": 457.048, + "y": 433.79975 + }, + { + "x": 496.556, + "y": 473.30775 + }, + { + "x": 476.802, + "y": 450.64648 + }, + [ + { + "#": 4176 + }, + { + "#": 4177 + }, + { + "#": 4178 + }, + { + "#": 4179 + }, + { + "#": 4180 + }, + { + "#": 4181 + }, + { + "#": 4182 + }, + { + "#": 4183 + }, + { + "#": 4184 + }, + { + "#": 4185 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,9,9", + "startCol": 9, + "endCol": 10, + "startRow": 9, + "endRow": 9 + }, + { + "id": 92, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4188 + }, + "angle": 0, + "vertices": { + "#": 4189 + }, + "position": { + "#": 4210 + }, + "force": { + "#": 4211 + }, + "torque": 0, + "positionImpulse": { + "#": 4212 + }, + "constraintImpulse": { + "#": 4213 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4214 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4215 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4216 + }, + "circleRadius": 20, + "bounds": { + "#": 4218 + }, + "positionPrev": { + "#": 4221 + }, + "anglePrev": 0, + "axes": { + "#": 4222 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4187 + }, + "sleepCounter": 0, + "region": { + "#": 4233 + } + }, + [ + { + "#": 4187 + } + ], + [ + { + "#": 4190 + }, + { + "#": 4191 + }, + { + "#": 4192 + }, + { + "#": 4193 + }, + { + "#": 4194 + }, + { + "#": 4195 + }, + { + "#": 4196 + }, + { + "#": 4197 + }, + { + "#": 4198 + }, + { + "#": 4199 + }, + { + "#": 4200 + }, + { + "#": 4201 + }, + { + "#": 4202 + }, + { + "#": 4203 + }, + { + "#": 4204 + }, + { + "#": 4205 + }, + { + "#": 4206 + }, + { + "#": 4207 + }, + { + "#": 4208 + }, + { + "#": 4209 + } + ], + { + "x": 556.064, + "y": 456.68275, + "index": 0, + "body": { + "#": 4187 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 462.63375, + "index": 1, + "body": { + "#": 4187 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 467.69575, + "index": 2, + "body": { + "#": 4187 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 471.37375, + "index": 3, + "body": { + "#": 4187 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 473.30775, + "index": 4, + "body": { + "#": 4187 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 473.30775, + "index": 5, + "body": { + "#": 4187 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 471.37375, + "index": 6, + "body": { + "#": 4187 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 467.69575, + "index": 7, + "body": { + "#": 4187 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 462.63375, + "index": 8, + "body": { + "#": 4187 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 456.68275, + "index": 9, + "body": { + "#": 4187 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 450.42475, + "index": 10, + "body": { + "#": 4187 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 444.47375, + "index": 11, + "body": { + "#": 4187 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 439.41175, + "index": 12, + "body": { + "#": 4187 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 435.73375, + "index": 13, + "body": { + "#": 4187 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 433.79975, + "index": 14, + "body": { + "#": 4187 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 433.79975, + "index": 15, + "body": { + "#": 4187 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 435.73375, + "index": 16, + "body": { + "#": 4187 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 439.41175, + "index": 17, + "body": { + "#": 4187 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 444.47375, + "index": 18, + "body": { + "#": 4187 + }, + "isInternal": false + }, + { + "x": 556.064, + "y": 450.42475, + "index": 19, + "body": { + "#": 4187 + }, + "isInternal": false + }, + { + "x": 536.31, + "y": 453.55375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4217 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4219 + }, + "max": { + "#": 4220 + } + }, + { + "x": 516.556, + "y": 433.79975 + }, + { + "x": 556.064, + "y": 473.30775 + }, + { + "x": 536.31, + "y": 450.64648 + }, + [ + { + "#": 4223 + }, + { + "#": 4224 + }, + { + "#": 4225 + }, + { + "#": 4226 + }, + { + "#": 4227 + }, + { + "#": 4228 + }, + { + "#": 4229 + }, + { + "#": 4230 + }, + { + "#": 4231 + }, + { + "#": 4232 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,9,9", + "startCol": 10, + "endCol": 11, + "startRow": 9, + "endRow": 9 + }, + { + "id": 93, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4235 + }, + "angle": 0, + "vertices": { + "#": 4236 + }, + "position": { + "#": 4257 + }, + "force": { + "#": 4258 + }, + "torque": 0, + "positionImpulse": { + "#": 4259 + }, + "constraintImpulse": { + "#": 4260 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4261 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4262 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4263 + }, + "circleRadius": 20, + "bounds": { + "#": 4265 + }, + "positionPrev": { + "#": 4268 + }, + "anglePrev": 0, + "axes": { + "#": 4269 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4234 + }, + "sleepCounter": 0, + "region": { + "#": 4280 + } + }, + [ + { + "#": 4234 + } + ], + [ + { + "#": 4237 + }, + { + "#": 4238 + }, + { + "#": 4239 + }, + { + "#": 4240 + }, + { + "#": 4241 + }, + { + "#": 4242 + }, + { + "#": 4243 + }, + { + "#": 4244 + }, + { + "#": 4245 + }, + { + "#": 4246 + }, + { + "#": 4247 + }, + { + "#": 4248 + }, + { + "#": 4249 + }, + { + "#": 4250 + }, + { + "#": 4251 + }, + { + "#": 4252 + }, + { + "#": 4253 + }, + { + "#": 4254 + }, + { + "#": 4255 + }, + { + "#": 4256 + } + ], + { + "x": 615.572, + "y": 456.68275, + "index": 0, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 462.63375, + "index": 1, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 467.69575, + "index": 2, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 471.37375, + "index": 3, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 473.30775, + "index": 4, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 473.30775, + "index": 5, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 471.37375, + "index": 6, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 467.69575, + "index": 7, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 462.63375, + "index": 8, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 456.68275, + "index": 9, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 450.42475, + "index": 10, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 444.47375, + "index": 11, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 439.41175, + "index": 12, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 435.73375, + "index": 13, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 433.79975, + "index": 14, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 433.79975, + "index": 15, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 435.73375, + "index": 16, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 439.41175, + "index": 17, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 444.47375, + "index": 18, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 615.572, + "y": 450.42475, + "index": 19, + "body": { + "#": 4234 + }, + "isInternal": false + }, + { + "x": 595.818, + "y": 453.55375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4264 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4266 + }, + "max": { + "#": 4267 + } + }, + { + "x": 576.064, + "y": 433.79975 + }, + { + "x": 615.572, + "y": 473.30775 + }, + { + "x": 595.818, + "y": 450.64648 + }, + [ + { + "#": 4270 + }, + { + "#": 4271 + }, + { + "#": 4272 + }, + { + "#": 4273 + }, + { + "#": 4274 + }, + { + "#": 4275 + }, + { + "#": 4276 + }, + { + "#": 4277 + }, + { + "#": 4278 + }, + { + "#": 4279 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,9,9", + "startCol": 12, + "endCol": 12, + "startRow": 9, + "endRow": 9 + }, + { + "id": 94, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4282 + }, + "angle": 0, + "vertices": { + "#": 4283 + }, + "position": { + "#": 4304 + }, + "force": { + "#": 4305 + }, + "torque": 0, + "positionImpulse": { + "#": 4306 + }, + "constraintImpulse": { + "#": 4307 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4308 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4309 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4310 + }, + "circleRadius": 20, + "bounds": { + "#": 4312 + }, + "positionPrev": { + "#": 4315 + }, + "anglePrev": 0, + "axes": { + "#": 4316 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4281 + }, + "sleepCounter": 0, + "region": { + "#": 4327 + } + }, + [ + { + "#": 4281 + } + ], + [ + { + "#": 4284 + }, + { + "#": 4285 + }, + { + "#": 4286 + }, + { + "#": 4287 + }, + { + "#": 4288 + }, + { + "#": 4289 + }, + { + "#": 4290 + }, + { + "#": 4291 + }, + { + "#": 4292 + }, + { + "#": 4293 + }, + { + "#": 4294 + }, + { + "#": 4295 + }, + { + "#": 4296 + }, + { + "#": 4297 + }, + { + "#": 4298 + }, + { + "#": 4299 + }, + { + "#": 4300 + }, + { + "#": 4301 + }, + { + "#": 4302 + }, + { + "#": 4303 + } + ], + { + "x": 675.08, + "y": 456.68275, + "index": 0, + "body": { + "#": 4281 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 462.63375, + "index": 1, + "body": { + "#": 4281 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 467.69575, + "index": 2, + "body": { + "#": 4281 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 471.37375, + "index": 3, + "body": { + "#": 4281 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 473.30775, + "index": 4, + "body": { + "#": 4281 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 473.30775, + "index": 5, + "body": { + "#": 4281 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 471.37375, + "index": 6, + "body": { + "#": 4281 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 467.69575, + "index": 7, + "body": { + "#": 4281 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 462.63375, + "index": 8, + "body": { + "#": 4281 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 456.68275, + "index": 9, + "body": { + "#": 4281 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 450.42475, + "index": 10, + "body": { + "#": 4281 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 444.47375, + "index": 11, + "body": { + "#": 4281 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 439.41175, + "index": 12, + "body": { + "#": 4281 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 435.73375, + "index": 13, + "body": { + "#": 4281 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 433.79975, + "index": 14, + "body": { + "#": 4281 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 433.79975, + "index": 15, + "body": { + "#": 4281 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 435.73375, + "index": 16, + "body": { + "#": 4281 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 439.41175, + "index": 17, + "body": { + "#": 4281 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 444.47375, + "index": 18, + "body": { + "#": 4281 + }, + "isInternal": false + }, + { + "x": 675.08, + "y": 450.42475, + "index": 19, + "body": { + "#": 4281 + }, + "isInternal": false + }, + { + "x": 655.326, + "y": 453.55375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4311 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4313 + }, + "max": { + "#": 4314 + } + }, + { + "x": 635.572, + "y": 433.79975 + }, + { + "x": 675.08, + "y": 473.30775 + }, + { + "x": 655.326, + "y": 450.64648 + }, + [ + { + "#": 4317 + }, + { + "#": 4318 + }, + { + "#": 4319 + }, + { + "#": 4320 + }, + { + "#": 4321 + }, + { + "#": 4322 + }, + { + "#": 4323 + }, + { + "#": 4324 + }, + { + "#": 4325 + }, + { + "#": 4326 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "13,14,9,9", + "startCol": 13, + "endCol": 14, + "startRow": 9, + "endRow": 9 + }, + { + "id": 95, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4329 + }, + "angle": 0, + "vertices": { + "#": 4330 + }, + "position": { + "#": 4351 + }, + "force": { + "#": 4352 + }, + "torque": 0, + "positionImpulse": { + "#": 4353 + }, + "constraintImpulse": { + "#": 4354 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4355 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4356 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4357 + }, + "circleRadius": 20, + "bounds": { + "#": 4359 + }, + "positionPrev": { + "#": 4362 + }, + "anglePrev": 0, + "axes": { + "#": 4363 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4328 + }, + "sleepCounter": 0, + "region": { + "#": 4374 + } + }, + [ + { + "#": 4328 + } + ], + [ + { + "#": 4331 + }, + { + "#": 4332 + }, + { + "#": 4333 + }, + { + "#": 4334 + }, + { + "#": 4335 + }, + { + "#": 4336 + }, + { + "#": 4337 + }, + { + "#": 4338 + }, + { + "#": 4339 + }, + { + "#": 4340 + }, + { + "#": 4341 + }, + { + "#": 4342 + }, + { + "#": 4343 + }, + { + "#": 4344 + }, + { + "#": 4345 + }, + { + "#": 4346 + }, + { + "#": 4347 + }, + { + "#": 4348 + }, + { + "#": 4349 + }, + { + "#": 4350 + } + ], + { + "x": 139.508, + "y": 496.19075, + "index": 0, + "body": { + "#": 4328 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 502.14175, + "index": 1, + "body": { + "#": 4328 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 507.20375, + "index": 2, + "body": { + "#": 4328 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 510.88175, + "index": 3, + "body": { + "#": 4328 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 512.81575, + "index": 4, + "body": { + "#": 4328 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 512.81575, + "index": 5, + "body": { + "#": 4328 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 510.88175, + "index": 6, + "body": { + "#": 4328 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 507.20375, + "index": 7, + "body": { + "#": 4328 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 502.14175, + "index": 8, + "body": { + "#": 4328 + }, + "isInternal": false + }, + { + "x": 100, + "y": 496.19075, + "index": 9, + "body": { + "#": 4328 + }, + "isInternal": false + }, + { + "x": 100, + "y": 489.93275, + "index": 10, + "body": { + "#": 4328 + }, + "isInternal": false + }, + { + "x": 101.934, + "y": 483.98175, + "index": 11, + "body": { + "#": 4328 + }, + "isInternal": false + }, + { + "x": 105.612, + "y": 478.91975, + "index": 12, + "body": { + "#": 4328 + }, + "isInternal": false + }, + { + "x": 110.674, + "y": 475.24175, + "index": 13, + "body": { + "#": 4328 + }, + "isInternal": false + }, + { + "x": 116.625, + "y": 473.30775, + "index": 14, + "body": { + "#": 4328 + }, + "isInternal": false + }, + { + "x": 122.883, + "y": 473.30775, + "index": 15, + "body": { + "#": 4328 + }, + "isInternal": false + }, + { + "x": 128.834, + "y": 475.24175, + "index": 16, + "body": { + "#": 4328 + }, + "isInternal": false + }, + { + "x": 133.896, + "y": 478.91975, + "index": 17, + "body": { + "#": 4328 + }, + "isInternal": false + }, + { + "x": 137.574, + "y": 483.98175, + "index": 18, + "body": { + "#": 4328 + }, + "isInternal": false + }, + { + "x": 139.508, + "y": 489.93275, + "index": 19, + "body": { + "#": 4328 + }, + "isInternal": false + }, + { + "x": 119.754, + "y": 493.06175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4358 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4360 + }, + "max": { + "#": 4361 + } + }, + { + "x": 100, + "y": 473.30775 + }, + { + "x": 139.508, + "y": 512.81575 + }, + { + "x": 119.754, + "y": 490.15448 + }, + [ + { + "#": 4364 + }, + { + "#": 4365 + }, + { + "#": 4366 + }, + { + "#": 4367 + }, + { + "#": 4368 + }, + { + "#": 4369 + }, + { + "#": 4370 + }, + { + "#": 4371 + }, + { + "#": 4372 + }, + { + "#": 4373 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,2,9,10", + "startCol": 2, + "endCol": 2, + "startRow": 9, + "endRow": 10 + }, + { + "id": 96, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4376 + }, + "angle": 0, + "vertices": { + "#": 4377 + }, + "position": { + "#": 4398 + }, + "force": { + "#": 4399 + }, + "torque": 0, + "positionImpulse": { + "#": 4400 + }, + "constraintImpulse": { + "#": 4401 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4402 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4403 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4404 + }, + "circleRadius": 20, + "bounds": { + "#": 4406 + }, + "positionPrev": { + "#": 4409 + }, + "anglePrev": 0, + "axes": { + "#": 4410 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4375 + }, + "sleepCounter": 0, + "region": { + "#": 4421 + } + }, + [ + { + "#": 4375 + } + ], + [ + { + "#": 4378 + }, + { + "#": 4379 + }, + { + "#": 4380 + }, + { + "#": 4381 + }, + { + "#": 4382 + }, + { + "#": 4383 + }, + { + "#": 4384 + }, + { + "#": 4385 + }, + { + "#": 4386 + }, + { + "#": 4387 + }, + { + "#": 4388 + }, + { + "#": 4389 + }, + { + "#": 4390 + }, + { + "#": 4391 + }, + { + "#": 4392 + }, + { + "#": 4393 + }, + { + "#": 4394 + }, + { + "#": 4395 + }, + { + "#": 4396 + }, + { + "#": 4397 + } + ], + { + "x": 199.016, + "y": 496.19075, + "index": 0, + "body": { + "#": 4375 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 502.14175, + "index": 1, + "body": { + "#": 4375 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 507.20375, + "index": 2, + "body": { + "#": 4375 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 510.88175, + "index": 3, + "body": { + "#": 4375 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 512.81575, + "index": 4, + "body": { + "#": 4375 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 512.81575, + "index": 5, + "body": { + "#": 4375 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 510.88175, + "index": 6, + "body": { + "#": 4375 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 507.20375, + "index": 7, + "body": { + "#": 4375 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 502.14175, + "index": 8, + "body": { + "#": 4375 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 496.19075, + "index": 9, + "body": { + "#": 4375 + }, + "isInternal": false + }, + { + "x": 159.508, + "y": 489.93275, + "index": 10, + "body": { + "#": 4375 + }, + "isInternal": false + }, + { + "x": 161.442, + "y": 483.98175, + "index": 11, + "body": { + "#": 4375 + }, + "isInternal": false + }, + { + "x": 165.12, + "y": 478.91975, + "index": 12, + "body": { + "#": 4375 + }, + "isInternal": false + }, + { + "x": 170.182, + "y": 475.24175, + "index": 13, + "body": { + "#": 4375 + }, + "isInternal": false + }, + { + "x": 176.133, + "y": 473.30775, + "index": 14, + "body": { + "#": 4375 + }, + "isInternal": false + }, + { + "x": 182.391, + "y": 473.30775, + "index": 15, + "body": { + "#": 4375 + }, + "isInternal": false + }, + { + "x": 188.342, + "y": 475.24175, + "index": 16, + "body": { + "#": 4375 + }, + "isInternal": false + }, + { + "x": 193.404, + "y": 478.91975, + "index": 17, + "body": { + "#": 4375 + }, + "isInternal": false + }, + { + "x": 197.082, + "y": 483.98175, + "index": 18, + "body": { + "#": 4375 + }, + "isInternal": false + }, + { + "x": 199.016, + "y": 489.93275, + "index": 19, + "body": { + "#": 4375 + }, + "isInternal": false + }, + { + "x": 179.262, + "y": 493.06175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4405 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4407 + }, + "max": { + "#": 4408 + } + }, + { + "x": 159.508, + "y": 473.30775 + }, + { + "x": 199.016, + "y": 512.81575 + }, + { + "x": 179.262, + "y": 490.15448 + }, + [ + { + "#": 4411 + }, + { + "#": 4412 + }, + { + "#": 4413 + }, + { + "#": 4414 + }, + { + "#": 4415 + }, + { + "#": 4416 + }, + { + "#": 4417 + }, + { + "#": 4418 + }, + { + "#": 4419 + }, + { + "#": 4420 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,9,10", + "startCol": 3, + "endCol": 4, + "startRow": 9, + "endRow": 10 + }, + { + "id": 97, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4423 + }, + "angle": 0, + "vertices": { + "#": 4424 + }, + "position": { + "#": 4445 + }, + "force": { + "#": 4446 + }, + "torque": 0, + "positionImpulse": { + "#": 4447 + }, + "constraintImpulse": { + "#": 4448 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4449 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4450 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4451 + }, + "circleRadius": 20, + "bounds": { + "#": 4453 + }, + "positionPrev": { + "#": 4456 + }, + "anglePrev": 0, + "axes": { + "#": 4457 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4422 + }, + "sleepCounter": 0, + "region": { + "#": 4468 + } + }, + [ + { + "#": 4422 + } + ], + [ + { + "#": 4425 + }, + { + "#": 4426 + }, + { + "#": 4427 + }, + { + "#": 4428 + }, + { + "#": 4429 + }, + { + "#": 4430 + }, + { + "#": 4431 + }, + { + "#": 4432 + }, + { + "#": 4433 + }, + { + "#": 4434 + }, + { + "#": 4435 + }, + { + "#": 4436 + }, + { + "#": 4437 + }, + { + "#": 4438 + }, + { + "#": 4439 + }, + { + "#": 4440 + }, + { + "#": 4441 + }, + { + "#": 4442 + }, + { + "#": 4443 + }, + { + "#": 4444 + } + ], + { + "x": 258.524, + "y": 496.19075, + "index": 0, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 502.14175, + "index": 1, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 507.20375, + "index": 2, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 510.88175, + "index": 3, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 512.81575, + "index": 4, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 512.81575, + "index": 5, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 510.88175, + "index": 6, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 507.20375, + "index": 7, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 502.14175, + "index": 8, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 496.19075, + "index": 9, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 219.016, + "y": 489.93275, + "index": 10, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 220.95, + "y": 483.98175, + "index": 11, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 224.628, + "y": 478.91975, + "index": 12, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 229.69, + "y": 475.24175, + "index": 13, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 235.641, + "y": 473.30775, + "index": 14, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 241.899, + "y": 473.30775, + "index": 15, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 247.85, + "y": 475.24175, + "index": 16, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 252.912, + "y": 478.91975, + "index": 17, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 256.59, + "y": 483.98175, + "index": 18, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 258.524, + "y": 489.93275, + "index": 19, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 238.77, + "y": 493.06175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4452 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4454 + }, + "max": { + "#": 4455 + } + }, + { + "x": 219.016, + "y": 473.30775 + }, + { + "x": 258.524, + "y": 512.81575 + }, + { + "x": 238.77, + "y": 490.15448 + }, + [ + { + "#": 4458 + }, + { + "#": 4459 + }, + { + "#": 4460 + }, + { + "#": 4461 + }, + { + "#": 4462 + }, + { + "#": 4463 + }, + { + "#": 4464 + }, + { + "#": 4465 + }, + { + "#": 4466 + }, + { + "#": 4467 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,9,10", + "startCol": 4, + "endCol": 5, + "startRow": 9, + "endRow": 10 + }, + { + "id": 98, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4470 + }, + "angle": 0, + "vertices": { + "#": 4471 + }, + "position": { + "#": 4492 + }, + "force": { + "#": 4493 + }, + "torque": 0, + "positionImpulse": { + "#": 4494 + }, + "constraintImpulse": { + "#": 4495 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4496 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4497 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4498 + }, + "circleRadius": 20, + "bounds": { + "#": 4500 + }, + "positionPrev": { + "#": 4503 + }, + "anglePrev": 0, + "axes": { + "#": 4504 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4469 + }, + "sleepCounter": 0, + "region": { + "#": 4515 + } + }, + [ + { + "#": 4469 + } + ], + [ + { + "#": 4472 + }, + { + "#": 4473 + }, + { + "#": 4474 + }, + { + "#": 4475 + }, + { + "#": 4476 + }, + { + "#": 4477 + }, + { + "#": 4478 + }, + { + "#": 4479 + }, + { + "#": 4480 + }, + { + "#": 4481 + }, + { + "#": 4482 + }, + { + "#": 4483 + }, + { + "#": 4484 + }, + { + "#": 4485 + }, + { + "#": 4486 + }, + { + "#": 4487 + }, + { + "#": 4488 + }, + { + "#": 4489 + }, + { + "#": 4490 + }, + { + "#": 4491 + } + ], + { + "x": 318.032, + "y": 496.19075, + "index": 0, + "body": { + "#": 4469 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 502.14175, + "index": 1, + "body": { + "#": 4469 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 507.20375, + "index": 2, + "body": { + "#": 4469 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 510.88175, + "index": 3, + "body": { + "#": 4469 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 512.81575, + "index": 4, + "body": { + "#": 4469 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 512.81575, + "index": 5, + "body": { + "#": 4469 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 510.88175, + "index": 6, + "body": { + "#": 4469 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 507.20375, + "index": 7, + "body": { + "#": 4469 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 502.14175, + "index": 8, + "body": { + "#": 4469 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 496.19075, + "index": 9, + "body": { + "#": 4469 + }, + "isInternal": false + }, + { + "x": 278.524, + "y": 489.93275, + "index": 10, + "body": { + "#": 4469 + }, + "isInternal": false + }, + { + "x": 280.458, + "y": 483.98175, + "index": 11, + "body": { + "#": 4469 + }, + "isInternal": false + }, + { + "x": 284.136, + "y": 478.91975, + "index": 12, + "body": { + "#": 4469 + }, + "isInternal": false + }, + { + "x": 289.198, + "y": 475.24175, + "index": 13, + "body": { + "#": 4469 + }, + "isInternal": false + }, + { + "x": 295.149, + "y": 473.30775, + "index": 14, + "body": { + "#": 4469 + }, + "isInternal": false + }, + { + "x": 301.407, + "y": 473.30775, + "index": 15, + "body": { + "#": 4469 + }, + "isInternal": false + }, + { + "x": 307.358, + "y": 475.24175, + "index": 16, + "body": { + "#": 4469 + }, + "isInternal": false + }, + { + "x": 312.42, + "y": 478.91975, + "index": 17, + "body": { + "#": 4469 + }, + "isInternal": false + }, + { + "x": 316.098, + "y": 483.98175, + "index": 18, + "body": { + "#": 4469 + }, + "isInternal": false + }, + { + "x": 318.032, + "y": 489.93275, + "index": 19, + "body": { + "#": 4469 + }, + "isInternal": false + }, + { + "x": 298.278, + "y": 493.06175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4499 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4501 + }, + "max": { + "#": 4502 + } + }, + { + "x": 278.524, + "y": 473.30775 + }, + { + "x": 318.032, + "y": 512.81575 + }, + { + "x": 298.278, + "y": 490.15448 + }, + [ + { + "#": 4505 + }, + { + "#": 4506 + }, + { + "#": 4507 + }, + { + "#": 4508 + }, + { + "#": 4509 + }, + { + "#": 4510 + }, + { + "#": 4511 + }, + { + "#": 4512 + }, + { + "#": 4513 + }, + { + "#": 4514 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,9,10", + "startCol": 5, + "endCol": 6, + "startRow": 9, + "endRow": 10 + }, + { + "id": 99, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4517 + }, + "angle": 0, + "vertices": { + "#": 4518 + }, + "position": { + "#": 4539 + }, + "force": { + "#": 4540 + }, + "torque": 0, + "positionImpulse": { + "#": 4541 + }, + "constraintImpulse": { + "#": 4542 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4543 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4544 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4545 + }, + "circleRadius": 20, + "bounds": { + "#": 4547 + }, + "positionPrev": { + "#": 4550 + }, + "anglePrev": 0, + "axes": { + "#": 4551 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4516 + }, + "sleepCounter": 0, + "region": { + "#": 4562 + } + }, + [ + { + "#": 4516 + } + ], + [ + { + "#": 4519 + }, + { + "#": 4520 + }, + { + "#": 4521 + }, + { + "#": 4522 + }, + { + "#": 4523 + }, + { + "#": 4524 + }, + { + "#": 4525 + }, + { + "#": 4526 + }, + { + "#": 4527 + }, + { + "#": 4528 + }, + { + "#": 4529 + }, + { + "#": 4530 + }, + { + "#": 4531 + }, + { + "#": 4532 + }, + { + "#": 4533 + }, + { + "#": 4534 + }, + { + "#": 4535 + }, + { + "#": 4536 + }, + { + "#": 4537 + }, + { + "#": 4538 + } + ], + { + "x": 377.54, + "y": 496.19075, + "index": 0, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 502.14175, + "index": 1, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 507.20375, + "index": 2, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 510.88175, + "index": 3, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 512.81575, + "index": 4, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 512.81575, + "index": 5, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 510.88175, + "index": 6, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 507.20375, + "index": 7, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 502.14175, + "index": 8, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 496.19075, + "index": 9, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 338.032, + "y": 489.93275, + "index": 10, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 339.966, + "y": 483.98175, + "index": 11, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 343.644, + "y": 478.91975, + "index": 12, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 348.706, + "y": 475.24175, + "index": 13, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 354.657, + "y": 473.30775, + "index": 14, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 360.915, + "y": 473.30775, + "index": 15, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 366.866, + "y": 475.24175, + "index": 16, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 371.928, + "y": 478.91975, + "index": 17, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 375.606, + "y": 483.98175, + "index": 18, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 377.54, + "y": 489.93275, + "index": 19, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 357.786, + "y": 493.06175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4546 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4548 + }, + "max": { + "#": 4549 + } + }, + { + "x": 338.032, + "y": 473.30775 + }, + { + "x": 377.54, + "y": 512.81575 + }, + { + "x": 357.786, + "y": 490.15448 + }, + [ + { + "#": 4552 + }, + { + "#": 4553 + }, + { + "#": 4554 + }, + { + "#": 4555 + }, + { + "#": 4556 + }, + { + "#": 4557 + }, + { + "#": 4558 + }, + { + "#": 4559 + }, + { + "#": 4560 + }, + { + "#": 4561 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,9,10", + "startCol": 7, + "endCol": 7, + "startRow": 9, + "endRow": 10 + }, + { + "id": 100, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4564 + }, + "angle": 0, + "vertices": { + "#": 4565 + }, + "position": { + "#": 4586 + }, + "force": { + "#": 4587 + }, + "torque": 0, + "positionImpulse": { + "#": 4588 + }, + "constraintImpulse": { + "#": 4589 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4590 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4591 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4592 + }, + "circleRadius": 20, + "bounds": { + "#": 4594 + }, + "positionPrev": { + "#": 4597 + }, + "anglePrev": 0, + "axes": { + "#": 4598 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4563 + }, + "sleepCounter": 0, + "region": { + "#": 4609 + } + }, + [ + { + "#": 4563 + } + ], + [ + { + "#": 4566 + }, + { + "#": 4567 + }, + { + "#": 4568 + }, + { + "#": 4569 + }, + { + "#": 4570 + }, + { + "#": 4571 + }, + { + "#": 4572 + }, + { + "#": 4573 + }, + { + "#": 4574 + }, + { + "#": 4575 + }, + { + "#": 4576 + }, + { + "#": 4577 + }, + { + "#": 4578 + }, + { + "#": 4579 + }, + { + "#": 4580 + }, + { + "#": 4581 + }, + { + "#": 4582 + }, + { + "#": 4583 + }, + { + "#": 4584 + }, + { + "#": 4585 + } + ], + { + "x": 437.048, + "y": 496.19075, + "index": 0, + "body": { + "#": 4563 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 502.14175, + "index": 1, + "body": { + "#": 4563 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 507.20375, + "index": 2, + "body": { + "#": 4563 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 510.88175, + "index": 3, + "body": { + "#": 4563 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 512.81575, + "index": 4, + "body": { + "#": 4563 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 512.81575, + "index": 5, + "body": { + "#": 4563 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 510.88175, + "index": 6, + "body": { + "#": 4563 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 507.20375, + "index": 7, + "body": { + "#": 4563 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 502.14175, + "index": 8, + "body": { + "#": 4563 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 496.19075, + "index": 9, + "body": { + "#": 4563 + }, + "isInternal": false + }, + { + "x": 397.54, + "y": 489.93275, + "index": 10, + "body": { + "#": 4563 + }, + "isInternal": false + }, + { + "x": 399.474, + "y": 483.98175, + "index": 11, + "body": { + "#": 4563 + }, + "isInternal": false + }, + { + "x": 403.152, + "y": 478.91975, + "index": 12, + "body": { + "#": 4563 + }, + "isInternal": false + }, + { + "x": 408.214, + "y": 475.24175, + "index": 13, + "body": { + "#": 4563 + }, + "isInternal": false + }, + { + "x": 414.165, + "y": 473.30775, + "index": 14, + "body": { + "#": 4563 + }, + "isInternal": false + }, + { + "x": 420.423, + "y": 473.30775, + "index": 15, + "body": { + "#": 4563 + }, + "isInternal": false + }, + { + "x": 426.374, + "y": 475.24175, + "index": 16, + "body": { + "#": 4563 + }, + "isInternal": false + }, + { + "x": 431.436, + "y": 478.91975, + "index": 17, + "body": { + "#": 4563 + }, + "isInternal": false + }, + { + "x": 435.114, + "y": 483.98175, + "index": 18, + "body": { + "#": 4563 + }, + "isInternal": false + }, + { + "x": 437.048, + "y": 489.93275, + "index": 19, + "body": { + "#": 4563 + }, + "isInternal": false + }, + { + "x": 417.294, + "y": 493.06175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4593 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4595 + }, + "max": { + "#": 4596 + } + }, + { + "x": 397.54, + "y": 473.30775 + }, + { + "x": 437.048, + "y": 512.81575 + }, + { + "x": 417.294, + "y": 490.15448 + }, + [ + { + "#": 4599 + }, + { + "#": 4600 + }, + { + "#": 4601 + }, + { + "#": 4602 + }, + { + "#": 4603 + }, + { + "#": 4604 + }, + { + "#": 4605 + }, + { + "#": 4606 + }, + { + "#": 4607 + }, + { + "#": 4608 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,9,10", + "startCol": 8, + "endCol": 9, + "startRow": 9, + "endRow": 10 + }, + { + "id": 101, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4611 + }, + "angle": 0, + "vertices": { + "#": 4612 + }, + "position": { + "#": 4633 + }, + "force": { + "#": 4634 + }, + "torque": 0, + "positionImpulse": { + "#": 4635 + }, + "constraintImpulse": { + "#": 4636 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4637 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4638 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4639 + }, + "circleRadius": 20, + "bounds": { + "#": 4641 + }, + "positionPrev": { + "#": 4644 + }, + "anglePrev": 0, + "axes": { + "#": 4645 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4610 + }, + "sleepCounter": 0, + "region": { + "#": 4656 + } + }, + [ + { + "#": 4610 + } + ], + [ + { + "#": 4613 + }, + { + "#": 4614 + }, + { + "#": 4615 + }, + { + "#": 4616 + }, + { + "#": 4617 + }, + { + "#": 4618 + }, + { + "#": 4619 + }, + { + "#": 4620 + }, + { + "#": 4621 + }, + { + "#": 4622 + }, + { + "#": 4623 + }, + { + "#": 4624 + }, + { + "#": 4625 + }, + { + "#": 4626 + }, + { + "#": 4627 + }, + { + "#": 4628 + }, + { + "#": 4629 + }, + { + "#": 4630 + }, + { + "#": 4631 + }, + { + "#": 4632 + } + ], + { + "x": 496.556, + "y": 496.19075, + "index": 0, + "body": { + "#": 4610 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 502.14175, + "index": 1, + "body": { + "#": 4610 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 507.20375, + "index": 2, + "body": { + "#": 4610 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 510.88175, + "index": 3, + "body": { + "#": 4610 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 512.81575, + "index": 4, + "body": { + "#": 4610 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 512.81575, + "index": 5, + "body": { + "#": 4610 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 510.88175, + "index": 6, + "body": { + "#": 4610 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 507.20375, + "index": 7, + "body": { + "#": 4610 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 502.14175, + "index": 8, + "body": { + "#": 4610 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 496.19075, + "index": 9, + "body": { + "#": 4610 + }, + "isInternal": false + }, + { + "x": 457.048, + "y": 489.93275, + "index": 10, + "body": { + "#": 4610 + }, + "isInternal": false + }, + { + "x": 458.982, + "y": 483.98175, + "index": 11, + "body": { + "#": 4610 + }, + "isInternal": false + }, + { + "x": 462.66, + "y": 478.91975, + "index": 12, + "body": { + "#": 4610 + }, + "isInternal": false + }, + { + "x": 467.722, + "y": 475.24175, + "index": 13, + "body": { + "#": 4610 + }, + "isInternal": false + }, + { + "x": 473.673, + "y": 473.30775, + "index": 14, + "body": { + "#": 4610 + }, + "isInternal": false + }, + { + "x": 479.931, + "y": 473.30775, + "index": 15, + "body": { + "#": 4610 + }, + "isInternal": false + }, + { + "x": 485.882, + "y": 475.24175, + "index": 16, + "body": { + "#": 4610 + }, + "isInternal": false + }, + { + "x": 490.944, + "y": 478.91975, + "index": 17, + "body": { + "#": 4610 + }, + "isInternal": false + }, + { + "x": 494.622, + "y": 483.98175, + "index": 18, + "body": { + "#": 4610 + }, + "isInternal": false + }, + { + "x": 496.556, + "y": 489.93275, + "index": 19, + "body": { + "#": 4610 + }, + "isInternal": false + }, + { + "x": 476.802, + "y": 493.06175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4640 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4642 + }, + "max": { + "#": 4643 + } + }, + { + "x": 457.048, + "y": 473.30775 + }, + { + "x": 496.556, + "y": 512.81575 + }, + { + "x": 476.802, + "y": 490.15448 + }, + [ + { + "#": 4646 + }, + { + "#": 4647 + }, + { + "#": 4648 + }, + { + "#": 4649 + }, + { + "#": 4650 + }, + { + "#": 4651 + }, + { + "#": 4652 + }, + { + "#": 4653 + }, + { + "#": 4654 + }, + { + "#": 4655 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,9,10", + "startCol": 9, + "endCol": 10, + "startRow": 9, + "endRow": 10 + }, + { + "id": 102, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4658 + }, + "angle": 0, + "vertices": { + "#": 4659 + }, + "position": { + "#": 4680 + }, + "force": { + "#": 4681 + }, + "torque": 0, + "positionImpulse": { + "#": 4682 + }, + "constraintImpulse": { + "#": 4683 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4684 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4685 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4686 + }, + "circleRadius": 20, + "bounds": { + "#": 4688 + }, + "positionPrev": { + "#": 4691 + }, + "anglePrev": 0, + "axes": { + "#": 4692 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4657 + }, + "sleepCounter": 0, + "region": { + "#": 4703 + } + }, + [ + { + "#": 4657 + } + ], + [ + { + "#": 4660 + }, + { + "#": 4661 + }, + { + "#": 4662 + }, + { + "#": 4663 + }, + { + "#": 4664 + }, + { + "#": 4665 + }, + { + "#": 4666 + }, + { + "#": 4667 + }, + { + "#": 4668 + }, + { + "#": 4669 + }, + { + "#": 4670 + }, + { + "#": 4671 + }, + { + "#": 4672 + }, + { + "#": 4673 + }, + { + "#": 4674 + }, + { + "#": 4675 + }, + { + "#": 4676 + }, + { + "#": 4677 + }, + { + "#": 4678 + }, + { + "#": 4679 + } + ], + { + "x": 556.064, + "y": 496.19075, + "index": 0, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 502.14175, + "index": 1, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 507.20375, + "index": 2, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 510.88175, + "index": 3, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 512.81575, + "index": 4, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 512.81575, + "index": 5, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 510.88175, + "index": 6, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 507.20375, + "index": 7, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 502.14175, + "index": 8, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 496.19075, + "index": 9, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 516.556, + "y": 489.93275, + "index": 10, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 518.49, + "y": 483.98175, + "index": 11, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 522.168, + "y": 478.91975, + "index": 12, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 527.23, + "y": 475.24175, + "index": 13, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 533.181, + "y": 473.30775, + "index": 14, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 539.439, + "y": 473.30775, + "index": 15, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 545.39, + "y": 475.24175, + "index": 16, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 550.452, + "y": 478.91975, + "index": 17, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 554.13, + "y": 483.98175, + "index": 18, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 556.064, + "y": 489.93275, + "index": 19, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 536.31, + "y": 493.06175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4687 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4689 + }, + "max": { + "#": 4690 + } + }, + { + "x": 516.556, + "y": 473.30775 + }, + { + "x": 556.064, + "y": 512.81575 + }, + { + "x": 536.31, + "y": 490.15448 + }, + [ + { + "#": 4693 + }, + { + "#": 4694 + }, + { + "#": 4695 + }, + { + "#": 4696 + }, + { + "#": 4697 + }, + { + "#": 4698 + }, + { + "#": 4699 + }, + { + "#": 4700 + }, + { + "#": 4701 + }, + { + "#": 4702 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,9,10", + "startCol": 10, + "endCol": 11, + "startRow": 9, + "endRow": 10 + }, + { + "id": 103, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4705 + }, + "angle": 0, + "vertices": { + "#": 4706 + }, + "position": { + "#": 4727 + }, + "force": { + "#": 4728 + }, + "torque": 0, + "positionImpulse": { + "#": 4729 + }, + "constraintImpulse": { + "#": 4730 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4731 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4732 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4733 + }, + "circleRadius": 20, + "bounds": { + "#": 4735 + }, + "positionPrev": { + "#": 4738 + }, + "anglePrev": 0, + "axes": { + "#": 4739 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4704 + }, + "sleepCounter": 0, + "region": { + "#": 4750 + } + }, + [ + { + "#": 4704 + } + ], + [ + { + "#": 4707 + }, + { + "#": 4708 + }, + { + "#": 4709 + }, + { + "#": 4710 + }, + { + "#": 4711 + }, + { + "#": 4712 + }, + { + "#": 4713 + }, + { + "#": 4714 + }, + { + "#": 4715 + }, + { + "#": 4716 + }, + { + "#": 4717 + }, + { + "#": 4718 + }, + { + "#": 4719 + }, + { + "#": 4720 + }, + { + "#": 4721 + }, + { + "#": 4722 + }, + { + "#": 4723 + }, + { + "#": 4724 + }, + { + "#": 4725 + }, + { + "#": 4726 + } + ], + { + "x": 615.572, + "y": 496.19075, + "index": 0, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 502.14175, + "index": 1, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 507.20375, + "index": 2, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 510.88175, + "index": 3, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 512.81575, + "index": 4, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 512.81575, + "index": 5, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 510.88175, + "index": 6, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 507.20375, + "index": 7, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 502.14175, + "index": 8, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 496.19075, + "index": 9, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 576.064, + "y": 489.93275, + "index": 10, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 577.998, + "y": 483.98175, + "index": 11, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 581.676, + "y": 478.91975, + "index": 12, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 586.738, + "y": 475.24175, + "index": 13, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 592.689, + "y": 473.30775, + "index": 14, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 598.947, + "y": 473.30775, + "index": 15, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 604.898, + "y": 475.24175, + "index": 16, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 609.96, + "y": 478.91975, + "index": 17, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 613.638, + "y": 483.98175, + "index": 18, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 615.572, + "y": 489.93275, + "index": 19, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 595.818, + "y": 493.06175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4734 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4736 + }, + "max": { + "#": 4737 + } + }, + { + "x": 576.064, + "y": 473.30775 + }, + { + "x": 615.572, + "y": 512.81575 + }, + { + "x": 595.818, + "y": 490.15448 + }, + [ + { + "#": 4740 + }, + { + "#": 4741 + }, + { + "#": 4742 + }, + { + "#": 4743 + }, + { + "#": 4744 + }, + { + "#": 4745 + }, + { + "#": 4746 + }, + { + "#": 4747 + }, + { + "#": 4748 + }, + { + "#": 4749 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,9,10", + "startCol": 12, + "endCol": 12, + "startRow": 9, + "endRow": 10 + }, + { + "id": 104, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4752 + }, + "angle": 0, + "vertices": { + "#": 4753 + }, + "position": { + "#": 4774 + }, + "force": { + "#": 4775 + }, + "torque": 0, + "positionImpulse": { + "#": 4776 + }, + "constraintImpulse": { + "#": 4777 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4778 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4779 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4780 + }, + "circleRadius": 20, + "bounds": { + "#": 4782 + }, + "positionPrev": { + "#": 4785 + }, + "anglePrev": 0, + "axes": { + "#": 4786 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inertia": 972.73363, + "inverseInertia": 0.00103, + "parent": { + "#": 4751 + }, + "sleepCounter": 0, + "region": { + "#": 4797 + } + }, + [ + { + "#": 4751 + } + ], + [ + { + "#": 4754 + }, + { + "#": 4755 + }, + { + "#": 4756 + }, + { + "#": 4757 + }, + { + "#": 4758 + }, + { + "#": 4759 + }, + { + "#": 4760 + }, + { + "#": 4761 + }, + { + "#": 4762 + }, + { + "#": 4763 + }, + { + "#": 4764 + }, + { + "#": 4765 + }, + { + "#": 4766 + }, + { + "#": 4767 + }, + { + "#": 4768 + }, + { + "#": 4769 + }, + { + "#": 4770 + }, + { + "#": 4771 + }, + { + "#": 4772 + }, + { + "#": 4773 + } + ], + { + "x": 675.08, + "y": 496.19075, + "index": 0, + "body": { + "#": 4751 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 502.14175, + "index": 1, + "body": { + "#": 4751 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 507.20375, + "index": 2, + "body": { + "#": 4751 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 510.88175, + "index": 3, + "body": { + "#": 4751 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 512.81575, + "index": 4, + "body": { + "#": 4751 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 512.81575, + "index": 5, + "body": { + "#": 4751 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 510.88175, + "index": 6, + "body": { + "#": 4751 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 507.20375, + "index": 7, + "body": { + "#": 4751 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 502.14175, + "index": 8, + "body": { + "#": 4751 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 496.19075, + "index": 9, + "body": { + "#": 4751 + }, + "isInternal": false + }, + { + "x": 635.572, + "y": 489.93275, + "index": 10, + "body": { + "#": 4751 + }, + "isInternal": false + }, + { + "x": 637.506, + "y": 483.98175, + "index": 11, + "body": { + "#": 4751 + }, + "isInternal": false + }, + { + "x": 641.184, + "y": 478.91975, + "index": 12, + "body": { + "#": 4751 + }, + "isInternal": false + }, + { + "x": 646.246, + "y": 475.24175, + "index": 13, + "body": { + "#": 4751 + }, + "isInternal": false + }, + { + "x": 652.197, + "y": 473.30775, + "index": 14, + "body": { + "#": 4751 + }, + "isInternal": false + }, + { + "x": 658.455, + "y": 473.30775, + "index": 15, + "body": { + "#": 4751 + }, + "isInternal": false + }, + { + "x": 664.406, + "y": 475.24175, + "index": 16, + "body": { + "#": 4751 + }, + "isInternal": false + }, + { + "x": 669.468, + "y": 478.91975, + "index": 17, + "body": { + "#": 4751 + }, + "isInternal": false + }, + { + "x": 673.146, + "y": 483.98175, + "index": 18, + "body": { + "#": 4751 + }, + "isInternal": false + }, + { + "x": 675.08, + "y": 489.93275, + "index": 19, + "body": { + "#": 4751 + }, + "isInternal": false + }, + { + "x": 655.326, + "y": 493.06175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4781 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4783 + }, + "max": { + "#": 4784 + } + }, + { + "x": 635.572, + "y": 473.30775 + }, + { + "x": 675.08, + "y": 512.81575 + }, + { + "x": 655.326, + "y": 490.15448 + }, + [ + { + "#": 4787 + }, + { + "#": 4788 + }, + { + "#": 4789 + }, + { + "#": 4790 + }, + { + "#": 4791 + }, + { + "#": 4792 + }, + { + "#": 4793 + }, + { + "#": 4794 + }, + { + "#": 4795 + }, + { + "#": 4796 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "13,14,9,10", + "startCol": 13, + "endCol": 14, + "startRow": 9, + "endRow": 10 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 4802 + }, + "max": { + "#": 4803 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/cloth/cloth-0.json b/test/node/refs/cloth/cloth-0.json new file mode 100644 index 00000000..8d6a2b55 --- /dev/null +++ b/test/node/refs/cloth/cloth-0.json @@ -0,0 +1,92101 @@ +[ + { + "id": 251, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 167 + }, + "composites": { + "#": 168 + }, + "label": "World", + "gravity": { + "#": 9405 + }, + "bounds": { + "#": 9406 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 145 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 693, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 91 + }, + "angle": 0, + "vertices": { + "#": 92 + }, + "position": { + "#": 119 + }, + "force": { + "#": 120 + }, + "torque": 0, + "positionImpulse": { + "#": 121 + }, + "constraintImpulse": { + "#": 122 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 123 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 124 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 125 + }, + "circleRadius": 80, + "bounds": { + "#": 127 + }, + "positionPrev": { + "#": 130 + }, + "anglePrev": 0, + "axes": { + "#": 131 + }, + "area": 19911.02412, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 90 + }, + "sleepCounter": 0 + }, + [ + { + "#": 90 + } + ], + [ + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + } + ], + { + "x": 379.417, + "y": 509.643, + "index": 0, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 374.801, + "y": 528.368, + "index": 1, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 365.839, + "y": 545.445, + "index": 2, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 353.05, + "y": 559.881, + "index": 3, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 337.178, + "y": 570.836, + "index": 4, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 319.145, + "y": 577.675, + "index": 5, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 300, + "y": 580, + "index": 6, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 280.855, + "y": 577.675, + "index": 7, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 262.822, + "y": 570.836, + "index": 8, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 246.95, + "y": 559.881, + "index": 9, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 234.161, + "y": 545.445, + "index": 10, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 225.199, + "y": 528.368, + "index": 11, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 220.583, + "y": 509.643, + "index": 12, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 220.583, + "y": 490.357, + "index": 13, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 225.199, + "y": 471.632, + "index": 14, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 234.161, + "y": 454.555, + "index": 15, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 246.95, + "y": 440.119, + "index": 16, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 262.822, + "y": 429.164, + "index": 17, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 280.855, + "y": 422.325, + "index": 18, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 300, + "y": 420, + "index": 19, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 319.145, + "y": 422.325, + "index": 20, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 337.178, + "y": 429.164, + "index": 21, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 353.05, + "y": 440.119, + "index": 22, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 365.839, + "y": 454.555, + "index": 23, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 374.801, + "y": 471.632, + "index": 24, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 379.417, + "y": 490.357, + "index": 25, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 300, + "y": 500 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 126 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 128 + }, + "max": { + "#": 129 + } + }, + { + "x": 220.583, + "y": 420 + }, + { + "x": 379.417, + "y": 580 + }, + { + "x": 300, + "y": 500 + }, + [ + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88547, + "y": -0.46469 + }, + { + "x": -0.74852, + "y": -0.66312 + }, + { + "x": -0.56804, + "y": -0.823 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56804, + "y": -0.823 + }, + { + "x": 0.74852, + "y": -0.66312 + }, + { + "x": 0.88547, + "y": -0.46469 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 694, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 146 + }, + "angle": 0, + "vertices": { + "#": 147 + }, + "position": { + "#": 152 + }, + "force": { + "#": 153 + }, + "torque": 0, + "positionImpulse": { + "#": 154 + }, + "constraintImpulse": { + "#": 155 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 156 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 157 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 158 + }, + "bounds": { + "#": 160 + }, + "positionPrev": { + "#": 163 + }, + "anglePrev": 0, + "axes": { + "#": 164 + }, + "area": 6400, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 145 + }, + "sleepCounter": 0 + }, + [ + { + "#": 145 + } + ], + [ + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + } + ], + { + "x": 460, + "y": 440, + "index": 0, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 540, + "y": 440, + "index": 1, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 540, + "y": 520, + "index": 2, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 460, + "y": 520, + "index": 3, + "body": { + "#": 145 + }, + "isInternal": false + }, + { + "x": 500, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 159 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 161 + }, + "max": { + "#": 162 + } + }, + { + "x": 460, + "y": 440 + }, + { + "x": 540, + "y": 520 + }, + { + "x": 500, + "y": 480 + }, + [ + { + "#": 165 + }, + { + "#": 166 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [ + { + "#": 169 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 170 + }, + "constraints": { + "#": 7611 + }, + "composites": { + "#": 9404 + }, + "label": "Soft Body" + }, + [ + { + "#": 171 + }, + { + "#": 202 + }, + { + "#": 233 + }, + { + "#": 264 + }, + { + "#": 295 + }, + { + "#": 326 + }, + { + "#": 357 + }, + { + "#": 388 + }, + { + "#": 419 + }, + { + "#": 450 + }, + { + "#": 481 + }, + { + "#": 512 + }, + { + "#": 543 + }, + { + "#": 574 + }, + { + "#": 605 + }, + { + "#": 636 + }, + { + "#": 667 + }, + { + "#": 698 + }, + { + "#": 729 + }, + { + "#": 760 + }, + { + "#": 791 + }, + { + "#": 822 + }, + { + "#": 853 + }, + { + "#": 884 + }, + { + "#": 915 + }, + { + "#": 946 + }, + { + "#": 977 + }, + { + "#": 1008 + }, + { + "#": 1039 + }, + { + "#": 1070 + }, + { + "#": 1101 + }, + { + "#": 1132 + }, + { + "#": 1163 + }, + { + "#": 1194 + }, + { + "#": 1225 + }, + { + "#": 1256 + }, + { + "#": 1287 + }, + { + "#": 1318 + }, + { + "#": 1349 + }, + { + "#": 1380 + }, + { + "#": 1411 + }, + { + "#": 1442 + }, + { + "#": 1473 + }, + { + "#": 1504 + }, + { + "#": 1535 + }, + { + "#": 1566 + }, + { + "#": 1597 + }, + { + "#": 1628 + }, + { + "#": 1659 + }, + { + "#": 1690 + }, + { + "#": 1721 + }, + { + "#": 1752 + }, + { + "#": 1783 + }, + { + "#": 1814 + }, + { + "#": 1845 + }, + { + "#": 1876 + }, + { + "#": 1907 + }, + { + "#": 1938 + }, + { + "#": 1969 + }, + { + "#": 2000 + }, + { + "#": 2031 + }, + { + "#": 2062 + }, + { + "#": 2093 + }, + { + "#": 2124 + }, + { + "#": 2155 + }, + { + "#": 2186 + }, + { + "#": 2217 + }, + { + "#": 2248 + }, + { + "#": 2279 + }, + { + "#": 2310 + }, + { + "#": 2341 + }, + { + "#": 2372 + }, + { + "#": 2403 + }, + { + "#": 2434 + }, + { + "#": 2465 + }, + { + "#": 2496 + }, + { + "#": 2527 + }, + { + "#": 2558 + }, + { + "#": 2589 + }, + { + "#": 2620 + }, + { + "#": 2651 + }, + { + "#": 2682 + }, + { + "#": 2713 + }, + { + "#": 2744 + }, + { + "#": 2775 + }, + { + "#": 2806 + }, + { + "#": 2837 + }, + { + "#": 2868 + }, + { + "#": 2899 + }, + { + "#": 2930 + }, + { + "#": 2961 + }, + { + "#": 2992 + }, + { + "#": 3023 + }, + { + "#": 3054 + }, + { + "#": 3085 + }, + { + "#": 3116 + }, + { + "#": 3147 + }, + { + "#": 3178 + }, + { + "#": 3209 + }, + { + "#": 3240 + }, + { + "#": 3271 + }, + { + "#": 3302 + }, + { + "#": 3333 + }, + { + "#": 3364 + }, + { + "#": 3395 + }, + { + "#": 3426 + }, + { + "#": 3457 + }, + { + "#": 3488 + }, + { + "#": 3519 + }, + { + "#": 3550 + }, + { + "#": 3581 + }, + { + "#": 3612 + }, + { + "#": 3643 + }, + { + "#": 3674 + }, + { + "#": 3705 + }, + { + "#": 3736 + }, + { + "#": 3767 + }, + { + "#": 3798 + }, + { + "#": 3829 + }, + { + "#": 3860 + }, + { + "#": 3891 + }, + { + "#": 3922 + }, + { + "#": 3953 + }, + { + "#": 3984 + }, + { + "#": 4015 + }, + { + "#": 4046 + }, + { + "#": 4077 + }, + { + "#": 4108 + }, + { + "#": 4139 + }, + { + "#": 4170 + }, + { + "#": 4201 + }, + { + "#": 4232 + }, + { + "#": 4263 + }, + { + "#": 4294 + }, + { + "#": 4325 + }, + { + "#": 4356 + }, + { + "#": 4387 + }, + { + "#": 4418 + }, + { + "#": 4449 + }, + { + "#": 4480 + }, + { + "#": 4511 + }, + { + "#": 4542 + }, + { + "#": 4573 + }, + { + "#": 4604 + }, + { + "#": 4635 + }, + { + "#": 4666 + }, + { + "#": 4697 + }, + { + "#": 4728 + }, + { + "#": 4759 + }, + { + "#": 4790 + }, + { + "#": 4821 + }, + { + "#": 4852 + }, + { + "#": 4883 + }, + { + "#": 4914 + }, + { + "#": 4945 + }, + { + "#": 4976 + }, + { + "#": 5007 + }, + { + "#": 5038 + }, + { + "#": 5069 + }, + { + "#": 5100 + }, + { + "#": 5131 + }, + { + "#": 5162 + }, + { + "#": 5193 + }, + { + "#": 5224 + }, + { + "#": 5255 + }, + { + "#": 5286 + }, + { + "#": 5317 + }, + { + "#": 5348 + }, + { + "#": 5379 + }, + { + "#": 5410 + }, + { + "#": 5441 + }, + { + "#": 5472 + }, + { + "#": 5503 + }, + { + "#": 5534 + }, + { + "#": 5565 + }, + { + "#": 5596 + }, + { + "#": 5627 + }, + { + "#": 5658 + }, + { + "#": 5689 + }, + { + "#": 5720 + }, + { + "#": 5751 + }, + { + "#": 5782 + }, + { + "#": 5813 + }, + { + "#": 5844 + }, + { + "#": 5875 + }, + { + "#": 5906 + }, + { + "#": 5937 + }, + { + "#": 5968 + }, + { + "#": 5999 + }, + { + "#": 6030 + }, + { + "#": 6061 + }, + { + "#": 6092 + }, + { + "#": 6123 + }, + { + "#": 6154 + }, + { + "#": 6185 + }, + { + "#": 6216 + }, + { + "#": 6247 + }, + { + "#": 6278 + }, + { + "#": 6309 + }, + { + "#": 6340 + }, + { + "#": 6371 + }, + { + "#": 6402 + }, + { + "#": 6433 + }, + { + "#": 6464 + }, + { + "#": 6495 + }, + { + "#": 6526 + }, + { + "#": 6557 + }, + { + "#": 6588 + }, + { + "#": 6619 + }, + { + "#": 6650 + }, + { + "#": 6681 + }, + { + "#": 6712 + }, + { + "#": 6743 + }, + { + "#": 6774 + }, + { + "#": 6805 + }, + { + "#": 6836 + }, + { + "#": 6867 + }, + { + "#": 6898 + }, + { + "#": 6929 + }, + { + "#": 6960 + }, + { + "#": 6991 + }, + { + "#": 7022 + }, + { + "#": 7053 + }, + { + "#": 7084 + }, + { + "#": 7115 + }, + { + "#": 7146 + }, + { + "#": 7177 + }, + { + "#": 7208 + }, + { + "#": 7239 + }, + { + "#": 7270 + }, + { + "#": 7301 + }, + { + "#": 7332 + }, + { + "#": 7363 + }, + { + "#": 7394 + }, + { + "#": 7425 + }, + { + "#": 7456 + }, + { + "#": 7487 + }, + { + "#": 7518 + }, + { + "#": 7549 + }, + { + "#": 7580 + } + ], + { + "id": 5, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 172 + }, + "angle": 0, + "vertices": { + "#": 173 + }, + "position": { + "#": 184 + }, + "force": { + "#": 185 + }, + "torque": 0, + "positionImpulse": { + "#": 186 + }, + "constraintImpulse": { + "#": 187 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 188 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 189 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 190 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 192 + }, + "positionPrev": { + "#": 195 + }, + "anglePrev": 0, + "axes": { + "#": 196 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 171 + }, + "sleepCounter": 0 + }, + [ + { + "#": 171 + } + ], + [ + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + } + ], + { + "x": 215.216, + "y": 210.472, + "index": 0, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 214.472, + "index": 1, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 216, + "index": 2, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 214.472, + "index": 3, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 200, + "y": 210.472, + "index": 4, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 200, + "y": 205.528, + "index": 5, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 201.528, + "index": 6, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 200, + "index": 7, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 201.528, + "index": 8, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 215.216, + "y": 205.528, + "index": 9, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 191 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 193 + }, + "max": { + "#": 194 + } + }, + { + "x": 200, + "y": 200 + }, + { + "x": 215.216, + "y": 216 + }, + { + "x": 207.608, + "y": 208 + }, + [ + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 203 + }, + "angle": 0, + "vertices": { + "#": 204 + }, + "position": { + "#": 215 + }, + "force": { + "#": 216 + }, + "torque": 0, + "positionImpulse": { + "#": 217 + }, + "constraintImpulse": { + "#": 218 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 219 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 220 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 221 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 223 + }, + "positionPrev": { + "#": 226 + }, + "anglePrev": 0, + "axes": { + "#": 227 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 202 + }, + "sleepCounter": 0 + }, + [ + { + "#": 202 + } + ], + [ + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + } + ], + { + "x": 235.432, + "y": 210.472, + "index": 0, + "body": { + "#": 202 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 214.472, + "index": 1, + "body": { + "#": 202 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 216, + "index": 2, + "body": { + "#": 202 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 214.472, + "index": 3, + "body": { + "#": 202 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 210.472, + "index": 4, + "body": { + "#": 202 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 205.528, + "index": 5, + "body": { + "#": 202 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 201.528, + "index": 6, + "body": { + "#": 202 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 200, + "index": 7, + "body": { + "#": 202 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 201.528, + "index": 8, + "body": { + "#": 202 + }, + "isInternal": false + }, + { + "x": 235.432, + "y": 205.528, + "index": 9, + "body": { + "#": 202 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 222 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 224 + }, + "max": { + "#": 225 + } + }, + { + "x": 220.216, + "y": 200 + }, + { + "x": 235.432, + "y": 216 + }, + { + "x": 227.824, + "y": 208 + }, + [ + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 234 + }, + "angle": 0, + "vertices": { + "#": 235 + }, + "position": { + "#": 246 + }, + "force": { + "#": 247 + }, + "torque": 0, + "positionImpulse": { + "#": 248 + }, + "constraintImpulse": { + "#": 249 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 250 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 251 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 252 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 254 + }, + "positionPrev": { + "#": 257 + }, + "anglePrev": 0, + "axes": { + "#": 258 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 233 + }, + "sleepCounter": 0 + }, + [ + { + "#": 233 + } + ], + [ + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + } + ], + { + "x": 255.648, + "y": 210.472, + "index": 0, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 214.472, + "index": 1, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 216, + "index": 2, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 214.472, + "index": 3, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 210.472, + "index": 4, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 205.528, + "index": 5, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 201.528, + "index": 6, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 200, + "index": 7, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 201.528, + "index": 8, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 255.648, + "y": 205.528, + "index": 9, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 253 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 255 + }, + "max": { + "#": 256 + } + }, + { + "x": 240.432, + "y": 200 + }, + { + "x": 255.648, + "y": 216 + }, + { + "x": 248.04, + "y": 208 + }, + [ + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 265 + }, + "angle": 0, + "vertices": { + "#": 266 + }, + "position": { + "#": 277 + }, + "force": { + "#": 278 + }, + "torque": 0, + "positionImpulse": { + "#": 279 + }, + "constraintImpulse": { + "#": 280 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 281 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 282 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 283 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 285 + }, + "positionPrev": { + "#": 288 + }, + "anglePrev": 0, + "axes": { + "#": 289 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 264 + }, + "sleepCounter": 0 + }, + [ + { + "#": 264 + } + ], + [ + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + } + ], + { + "x": 275.864, + "y": 210.472, + "index": 0, + "body": { + "#": 264 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 214.472, + "index": 1, + "body": { + "#": 264 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 216, + "index": 2, + "body": { + "#": 264 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 214.472, + "index": 3, + "body": { + "#": 264 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 210.472, + "index": 4, + "body": { + "#": 264 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 205.528, + "index": 5, + "body": { + "#": 264 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 201.528, + "index": 6, + "body": { + "#": 264 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 200, + "index": 7, + "body": { + "#": 264 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 201.528, + "index": 8, + "body": { + "#": 264 + }, + "isInternal": false + }, + { + "x": 275.864, + "y": 205.528, + "index": 9, + "body": { + "#": 264 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 284 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 286 + }, + "max": { + "#": 287 + } + }, + { + "x": 260.648, + "y": 200 + }, + { + "x": 275.864, + "y": 216 + }, + { + "x": 268.256, + "y": 208 + }, + [ + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 296 + }, + "angle": 0, + "vertices": { + "#": 297 + }, + "position": { + "#": 308 + }, + "force": { + "#": 309 + }, + "torque": 0, + "positionImpulse": { + "#": 310 + }, + "constraintImpulse": { + "#": 311 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 312 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 313 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 314 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 316 + }, + "positionPrev": { + "#": 319 + }, + "anglePrev": 0, + "axes": { + "#": 320 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 295 + }, + "sleepCounter": 0 + }, + [ + { + "#": 295 + } + ], + [ + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + } + ], + { + "x": 296.08, + "y": 210.472, + "index": 0, + "body": { + "#": 295 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 214.472, + "index": 1, + "body": { + "#": 295 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 216, + "index": 2, + "body": { + "#": 295 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 214.472, + "index": 3, + "body": { + "#": 295 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 210.472, + "index": 4, + "body": { + "#": 295 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 205.528, + "index": 5, + "body": { + "#": 295 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 201.528, + "index": 6, + "body": { + "#": 295 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 200, + "index": 7, + "body": { + "#": 295 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 201.528, + "index": 8, + "body": { + "#": 295 + }, + "isInternal": false + }, + { + "x": 296.08, + "y": 205.528, + "index": 9, + "body": { + "#": 295 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 315 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 317 + }, + "max": { + "#": 318 + } + }, + { + "x": 280.864, + "y": 200 + }, + { + "x": 296.08, + "y": 216 + }, + { + "x": 288.472, + "y": 208 + }, + [ + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 10, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 327 + }, + "angle": 0, + "vertices": { + "#": 328 + }, + "position": { + "#": 339 + }, + "force": { + "#": 340 + }, + "torque": 0, + "positionImpulse": { + "#": 341 + }, + "constraintImpulse": { + "#": 342 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 343 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 344 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 345 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 347 + }, + "positionPrev": { + "#": 350 + }, + "anglePrev": 0, + "axes": { + "#": 351 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 326 + }, + "sleepCounter": 0 + }, + [ + { + "#": 326 + } + ], + [ + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + } + ], + { + "x": 316.296, + "y": 210.472, + "index": 0, + "body": { + "#": 326 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 214.472, + "index": 1, + "body": { + "#": 326 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 216, + "index": 2, + "body": { + "#": 326 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 214.472, + "index": 3, + "body": { + "#": 326 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 210.472, + "index": 4, + "body": { + "#": 326 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 205.528, + "index": 5, + "body": { + "#": 326 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 201.528, + "index": 6, + "body": { + "#": 326 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 200, + "index": 7, + "body": { + "#": 326 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 201.528, + "index": 8, + "body": { + "#": 326 + }, + "isInternal": false + }, + { + "x": 316.296, + "y": 205.528, + "index": 9, + "body": { + "#": 326 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 346 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 348 + }, + "max": { + "#": 349 + } + }, + { + "x": 301.08, + "y": 200 + }, + { + "x": 316.296, + "y": 216 + }, + { + "x": 308.688, + "y": 208 + }, + [ + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 11, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 358 + }, + "angle": 0, + "vertices": { + "#": 359 + }, + "position": { + "#": 370 + }, + "force": { + "#": 371 + }, + "torque": 0, + "positionImpulse": { + "#": 372 + }, + "constraintImpulse": { + "#": 373 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 374 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 375 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 376 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 378 + }, + "positionPrev": { + "#": 381 + }, + "anglePrev": 0, + "axes": { + "#": 382 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 357 + }, + "sleepCounter": 0 + }, + [ + { + "#": 357 + } + ], + [ + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + } + ], + { + "x": 336.512, + "y": 210.472, + "index": 0, + "body": { + "#": 357 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 214.472, + "index": 1, + "body": { + "#": 357 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 216, + "index": 2, + "body": { + "#": 357 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 214.472, + "index": 3, + "body": { + "#": 357 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 210.472, + "index": 4, + "body": { + "#": 357 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 205.528, + "index": 5, + "body": { + "#": 357 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 201.528, + "index": 6, + "body": { + "#": 357 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 200, + "index": 7, + "body": { + "#": 357 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 201.528, + "index": 8, + "body": { + "#": 357 + }, + "isInternal": false + }, + { + "x": 336.512, + "y": 205.528, + "index": 9, + "body": { + "#": 357 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 377 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 379 + }, + "max": { + "#": 380 + } + }, + { + "x": 321.296, + "y": 200 + }, + { + "x": 336.512, + "y": 216 + }, + { + "x": 328.904, + "y": 208 + }, + [ + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 12, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 389 + }, + "angle": 0, + "vertices": { + "#": 390 + }, + "position": { + "#": 401 + }, + "force": { + "#": 402 + }, + "torque": 0, + "positionImpulse": { + "#": 403 + }, + "constraintImpulse": { + "#": 404 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 405 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 406 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 407 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 409 + }, + "positionPrev": { + "#": 412 + }, + "anglePrev": 0, + "axes": { + "#": 413 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 388 + }, + "sleepCounter": 0 + }, + [ + { + "#": 388 + } + ], + [ + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + } + ], + { + "x": 356.728, + "y": 210.472, + "index": 0, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 214.472, + "index": 1, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 216, + "index": 2, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 214.472, + "index": 3, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 210.472, + "index": 4, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 205.528, + "index": 5, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 201.528, + "index": 6, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 200, + "index": 7, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 201.528, + "index": 8, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 356.728, + "y": 205.528, + "index": 9, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 408 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 410 + }, + "max": { + "#": 411 + } + }, + { + "x": 341.512, + "y": 200 + }, + { + "x": 356.728, + "y": 216 + }, + { + "x": 349.12, + "y": 208 + }, + [ + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 13, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 420 + }, + "angle": 0, + "vertices": { + "#": 421 + }, + "position": { + "#": 432 + }, + "force": { + "#": 433 + }, + "torque": 0, + "positionImpulse": { + "#": 434 + }, + "constraintImpulse": { + "#": 435 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 436 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 437 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 438 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 440 + }, + "positionPrev": { + "#": 443 + }, + "anglePrev": 0, + "axes": { + "#": 444 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 419 + }, + "sleepCounter": 0 + }, + [ + { + "#": 419 + } + ], + [ + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + } + ], + { + "x": 376.944, + "y": 210.472, + "index": 0, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 214.472, + "index": 1, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 216, + "index": 2, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 214.472, + "index": 3, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 210.472, + "index": 4, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 205.528, + "index": 5, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 201.528, + "index": 6, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 200, + "index": 7, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 201.528, + "index": 8, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 376.944, + "y": 205.528, + "index": 9, + "body": { + "#": 419 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 439 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 441 + }, + "max": { + "#": 442 + } + }, + { + "x": 361.728, + "y": 200 + }, + { + "x": 376.944, + "y": 216 + }, + { + "x": 369.336, + "y": 208 + }, + [ + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 14, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 451 + }, + "angle": 0, + "vertices": { + "#": 452 + }, + "position": { + "#": 463 + }, + "force": { + "#": 464 + }, + "torque": 0, + "positionImpulse": { + "#": 465 + }, + "constraintImpulse": { + "#": 466 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 467 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 468 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 469 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 471 + }, + "positionPrev": { + "#": 474 + }, + "anglePrev": 0, + "axes": { + "#": 475 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 450 + }, + "sleepCounter": 0 + }, + [ + { + "#": 450 + } + ], + [ + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + } + ], + { + "x": 397.16, + "y": 210.472, + "index": 0, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 214.472, + "index": 1, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 216, + "index": 2, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 214.472, + "index": 3, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 210.472, + "index": 4, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 205.528, + "index": 5, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 201.528, + "index": 6, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 200, + "index": 7, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 201.528, + "index": 8, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 397.16, + "y": 205.528, + "index": 9, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 470 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 472 + }, + "max": { + "#": 473 + } + }, + { + "x": 381.944, + "y": 200 + }, + { + "x": 397.16, + "y": 216 + }, + { + "x": 389.552, + "y": 208 + }, + [ + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 15, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 482 + }, + "angle": 0, + "vertices": { + "#": 483 + }, + "position": { + "#": 494 + }, + "force": { + "#": 495 + }, + "torque": 0, + "positionImpulse": { + "#": 496 + }, + "constraintImpulse": { + "#": 497 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 498 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 499 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 500 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 502 + }, + "positionPrev": { + "#": 505 + }, + "anglePrev": 0, + "axes": { + "#": 506 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 481 + }, + "sleepCounter": 0 + }, + [ + { + "#": 481 + } + ], + [ + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + } + ], + { + "x": 417.376, + "y": 210.472, + "index": 0, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 214.472, + "index": 1, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 216, + "index": 2, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 214.472, + "index": 3, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 210.472, + "index": 4, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 205.528, + "index": 5, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 201.528, + "index": 6, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 200, + "index": 7, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 201.528, + "index": 8, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 417.376, + "y": 205.528, + "index": 9, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 501 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 503 + }, + "max": { + "#": 504 + } + }, + { + "x": 402.16, + "y": 200 + }, + { + "x": 417.376, + "y": 216 + }, + { + "x": 409.768, + "y": 208 + }, + [ + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 16, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 513 + }, + "angle": 0, + "vertices": { + "#": 514 + }, + "position": { + "#": 525 + }, + "force": { + "#": 526 + }, + "torque": 0, + "positionImpulse": { + "#": 527 + }, + "constraintImpulse": { + "#": 528 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 529 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 530 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 531 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 533 + }, + "positionPrev": { + "#": 536 + }, + "anglePrev": 0, + "axes": { + "#": 537 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 512 + }, + "sleepCounter": 0 + }, + [ + { + "#": 512 + } + ], + [ + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + } + ], + { + "x": 437.592, + "y": 210.472, + "index": 0, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 214.472, + "index": 1, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 216, + "index": 2, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 214.472, + "index": 3, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 210.472, + "index": 4, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 205.528, + "index": 5, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 201.528, + "index": 6, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 200, + "index": 7, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 201.528, + "index": 8, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 437.592, + "y": 205.528, + "index": 9, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 532 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 534 + }, + "max": { + "#": 535 + } + }, + { + "x": 422.376, + "y": 200 + }, + { + "x": 437.592, + "y": 216 + }, + { + "x": 429.984, + "y": 208 + }, + [ + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 17, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 544 + }, + "angle": 0, + "vertices": { + "#": 545 + }, + "position": { + "#": 556 + }, + "force": { + "#": 557 + }, + "torque": 0, + "positionImpulse": { + "#": 558 + }, + "constraintImpulse": { + "#": 559 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 560 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 561 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 562 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 564 + }, + "positionPrev": { + "#": 567 + }, + "anglePrev": 0, + "axes": { + "#": 568 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 543 + }, + "sleepCounter": 0 + }, + [ + { + "#": 543 + } + ], + [ + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + } + ], + { + "x": 457.808, + "y": 210.472, + "index": 0, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 214.472, + "index": 1, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 216, + "index": 2, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 214.472, + "index": 3, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 210.472, + "index": 4, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 205.528, + "index": 5, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 201.528, + "index": 6, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 200, + "index": 7, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 201.528, + "index": 8, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 457.808, + "y": 205.528, + "index": 9, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 563 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 565 + }, + "max": { + "#": 566 + } + }, + { + "x": 442.592, + "y": 200 + }, + { + "x": 457.808, + "y": 216 + }, + { + "x": 450.2, + "y": 208 + }, + [ + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 18, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 575 + }, + "angle": 0, + "vertices": { + "#": 576 + }, + "position": { + "#": 587 + }, + "force": { + "#": 588 + }, + "torque": 0, + "positionImpulse": { + "#": 589 + }, + "constraintImpulse": { + "#": 590 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 591 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 592 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 593 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 595 + }, + "positionPrev": { + "#": 598 + }, + "anglePrev": 0, + "axes": { + "#": 599 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 574 + }, + "sleepCounter": 0 + }, + [ + { + "#": 574 + } + ], + [ + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + } + ], + { + "x": 478.024, + "y": 210.472, + "index": 0, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 214.472, + "index": 1, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 216, + "index": 2, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 214.472, + "index": 3, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 210.472, + "index": 4, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 205.528, + "index": 5, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 201.528, + "index": 6, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 200, + "index": 7, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 201.528, + "index": 8, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 478.024, + "y": 205.528, + "index": 9, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 594 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 596 + }, + "max": { + "#": 597 + } + }, + { + "x": 462.808, + "y": 200 + }, + { + "x": 478.024, + "y": 216 + }, + { + "x": 470.416, + "y": 208 + }, + [ + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 19, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 606 + }, + "angle": 0, + "vertices": { + "#": 607 + }, + "position": { + "#": 618 + }, + "force": { + "#": 619 + }, + "torque": 0, + "positionImpulse": { + "#": 620 + }, + "constraintImpulse": { + "#": 621 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 622 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 623 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 624 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 626 + }, + "positionPrev": { + "#": 629 + }, + "anglePrev": 0, + "axes": { + "#": 630 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 605 + }, + "sleepCounter": 0 + }, + [ + { + "#": 605 + } + ], + [ + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + } + ], + { + "x": 498.24, + "y": 210.472, + "index": 0, + "body": { + "#": 605 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 214.472, + "index": 1, + "body": { + "#": 605 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 216, + "index": 2, + "body": { + "#": 605 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 214.472, + "index": 3, + "body": { + "#": 605 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 210.472, + "index": 4, + "body": { + "#": 605 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 205.528, + "index": 5, + "body": { + "#": 605 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 201.528, + "index": 6, + "body": { + "#": 605 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 200, + "index": 7, + "body": { + "#": 605 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 201.528, + "index": 8, + "body": { + "#": 605 + }, + "isInternal": false + }, + { + "x": 498.24, + "y": 205.528, + "index": 9, + "body": { + "#": 605 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 625 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 627 + }, + "max": { + "#": 628 + } + }, + { + "x": 483.024, + "y": 200 + }, + { + "x": 498.24, + "y": 216 + }, + { + "x": 490.632, + "y": 208 + }, + [ + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 20, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 637 + }, + "angle": 0, + "vertices": { + "#": 638 + }, + "position": { + "#": 649 + }, + "force": { + "#": 650 + }, + "torque": 0, + "positionImpulse": { + "#": 651 + }, + "constraintImpulse": { + "#": 652 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 653 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 654 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 655 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 657 + }, + "positionPrev": { + "#": 660 + }, + "anglePrev": 0, + "axes": { + "#": 661 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 636 + }, + "sleepCounter": 0 + }, + [ + { + "#": 636 + } + ], + [ + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + } + ], + { + "x": 518.456, + "y": 210.472, + "index": 0, + "body": { + "#": 636 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 214.472, + "index": 1, + "body": { + "#": 636 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 216, + "index": 2, + "body": { + "#": 636 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 214.472, + "index": 3, + "body": { + "#": 636 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 210.472, + "index": 4, + "body": { + "#": 636 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 205.528, + "index": 5, + "body": { + "#": 636 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 201.528, + "index": 6, + "body": { + "#": 636 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 200, + "index": 7, + "body": { + "#": 636 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 201.528, + "index": 8, + "body": { + "#": 636 + }, + "isInternal": false + }, + { + "x": 518.456, + "y": 205.528, + "index": 9, + "body": { + "#": 636 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 656 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 658 + }, + "max": { + "#": 659 + } + }, + { + "x": 503.24, + "y": 200 + }, + { + "x": 518.456, + "y": 216 + }, + { + "x": 510.848, + "y": 208 + }, + [ + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 21, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 668 + }, + "angle": 0, + "vertices": { + "#": 669 + }, + "position": { + "#": 680 + }, + "force": { + "#": 681 + }, + "torque": 0, + "positionImpulse": { + "#": 682 + }, + "constraintImpulse": { + "#": 683 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 684 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 685 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 686 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 688 + }, + "positionPrev": { + "#": 691 + }, + "anglePrev": 0, + "axes": { + "#": 692 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 667 + }, + "sleepCounter": 0 + }, + [ + { + "#": 667 + } + ], + [ + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + } + ], + { + "x": 538.672, + "y": 210.472, + "index": 0, + "body": { + "#": 667 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 214.472, + "index": 1, + "body": { + "#": 667 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 216, + "index": 2, + "body": { + "#": 667 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 214.472, + "index": 3, + "body": { + "#": 667 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 210.472, + "index": 4, + "body": { + "#": 667 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 205.528, + "index": 5, + "body": { + "#": 667 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 201.528, + "index": 6, + "body": { + "#": 667 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 200, + "index": 7, + "body": { + "#": 667 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 201.528, + "index": 8, + "body": { + "#": 667 + }, + "isInternal": false + }, + { + "x": 538.672, + "y": 205.528, + "index": 9, + "body": { + "#": 667 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 687 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 689 + }, + "max": { + "#": 690 + } + }, + { + "x": 523.456, + "y": 200 + }, + { + "x": 538.672, + "y": 216 + }, + { + "x": 531.064, + "y": 208 + }, + [ + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 22, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 699 + }, + "angle": 0, + "vertices": { + "#": 700 + }, + "position": { + "#": 711 + }, + "force": { + "#": 712 + }, + "torque": 0, + "positionImpulse": { + "#": 713 + }, + "constraintImpulse": { + "#": 714 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 715 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 716 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 717 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 719 + }, + "positionPrev": { + "#": 722 + }, + "anglePrev": 0, + "axes": { + "#": 723 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 698 + }, + "sleepCounter": 0 + }, + [ + { + "#": 698 + } + ], + [ + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + } + ], + { + "x": 558.888, + "y": 210.472, + "index": 0, + "body": { + "#": 698 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 214.472, + "index": 1, + "body": { + "#": 698 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 216, + "index": 2, + "body": { + "#": 698 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 214.472, + "index": 3, + "body": { + "#": 698 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 210.472, + "index": 4, + "body": { + "#": 698 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 205.528, + "index": 5, + "body": { + "#": 698 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 201.528, + "index": 6, + "body": { + "#": 698 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 200, + "index": 7, + "body": { + "#": 698 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 201.528, + "index": 8, + "body": { + "#": 698 + }, + "isInternal": false + }, + { + "x": 558.888, + "y": 205.528, + "index": 9, + "body": { + "#": 698 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 718 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 720 + }, + "max": { + "#": 721 + } + }, + { + "x": 543.672, + "y": 200 + }, + { + "x": 558.888, + "y": 216 + }, + { + "x": 551.28, + "y": 208 + }, + [ + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 23, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 730 + }, + "angle": 0, + "vertices": { + "#": 731 + }, + "position": { + "#": 742 + }, + "force": { + "#": 743 + }, + "torque": 0, + "positionImpulse": { + "#": 744 + }, + "constraintImpulse": { + "#": 745 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 746 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 747 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 748 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 750 + }, + "positionPrev": { + "#": 753 + }, + "anglePrev": 0, + "axes": { + "#": 754 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 729 + }, + "sleepCounter": 0 + }, + [ + { + "#": 729 + } + ], + [ + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + } + ], + { + "x": 579.104, + "y": 210.472, + "index": 0, + "body": { + "#": 729 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 214.472, + "index": 1, + "body": { + "#": 729 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 216, + "index": 2, + "body": { + "#": 729 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 214.472, + "index": 3, + "body": { + "#": 729 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 210.472, + "index": 4, + "body": { + "#": 729 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 205.528, + "index": 5, + "body": { + "#": 729 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 201.528, + "index": 6, + "body": { + "#": 729 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 200, + "index": 7, + "body": { + "#": 729 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 201.528, + "index": 8, + "body": { + "#": 729 + }, + "isInternal": false + }, + { + "x": 579.104, + "y": 205.528, + "index": 9, + "body": { + "#": 729 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 749 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 751 + }, + "max": { + "#": 752 + } + }, + { + "x": 563.888, + "y": 200 + }, + { + "x": 579.104, + "y": 216 + }, + { + "x": 571.496, + "y": 208 + }, + [ + { + "#": 755 + }, + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 24, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 761 + }, + "angle": 0, + "vertices": { + "#": 762 + }, + "position": { + "#": 773 + }, + "force": { + "#": 774 + }, + "torque": 0, + "positionImpulse": { + "#": 775 + }, + "constraintImpulse": { + "#": 776 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 777 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 778 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 779 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 781 + }, + "positionPrev": { + "#": 784 + }, + "anglePrev": 0, + "axes": { + "#": 785 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 760 + }, + "sleepCounter": 0 + }, + [ + { + "#": 760 + } + ], + [ + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + }, + { + "#": 767 + }, + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + } + ], + { + "x": 599.32, + "y": 210.472, + "index": 0, + "body": { + "#": 760 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 214.472, + "index": 1, + "body": { + "#": 760 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 216, + "index": 2, + "body": { + "#": 760 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 214.472, + "index": 3, + "body": { + "#": 760 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 210.472, + "index": 4, + "body": { + "#": 760 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 205.528, + "index": 5, + "body": { + "#": 760 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 201.528, + "index": 6, + "body": { + "#": 760 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 200, + "index": 7, + "body": { + "#": 760 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 201.528, + "index": 8, + "body": { + "#": 760 + }, + "isInternal": false + }, + { + "x": 599.32, + "y": 205.528, + "index": 9, + "body": { + "#": 760 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 780 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 782 + }, + "max": { + "#": 783 + } + }, + { + "x": 584.104, + "y": 200 + }, + { + "x": 599.32, + "y": 216 + }, + { + "x": 591.712, + "y": 208 + }, + [ + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 25, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 792 + }, + "angle": 0, + "vertices": { + "#": 793 + }, + "position": { + "#": 804 + }, + "force": { + "#": 805 + }, + "torque": 0, + "positionImpulse": { + "#": 806 + }, + "constraintImpulse": { + "#": 807 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 808 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 809 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 810 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 812 + }, + "positionPrev": { + "#": 815 + }, + "anglePrev": 0, + "axes": { + "#": 816 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 791 + }, + "sleepCounter": 0 + }, + [ + { + "#": 791 + } + ], + [ + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + } + ], + { + "x": 215.216, + "y": 231.472, + "index": 0, + "body": { + "#": 791 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 235.472, + "index": 1, + "body": { + "#": 791 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 237, + "index": 2, + "body": { + "#": 791 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 235.472, + "index": 3, + "body": { + "#": 791 + }, + "isInternal": false + }, + { + "x": 200, + "y": 231.472, + "index": 4, + "body": { + "#": 791 + }, + "isInternal": false + }, + { + "x": 200, + "y": 226.528, + "index": 5, + "body": { + "#": 791 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 222.528, + "index": 6, + "body": { + "#": 791 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 221, + "index": 7, + "body": { + "#": 791 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 222.528, + "index": 8, + "body": { + "#": 791 + }, + "isInternal": false + }, + { + "x": 215.216, + "y": 226.528, + "index": 9, + "body": { + "#": 791 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 811 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 813 + }, + "max": { + "#": 814 + } + }, + { + "x": 200, + "y": 221 + }, + { + "x": 215.216, + "y": 237 + }, + { + "x": 207.608, + "y": 229 + }, + [ + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 26, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 823 + }, + "angle": 0, + "vertices": { + "#": 824 + }, + "position": { + "#": 835 + }, + "force": { + "#": 836 + }, + "torque": 0, + "positionImpulse": { + "#": 837 + }, + "constraintImpulse": { + "#": 838 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 839 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 840 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 841 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 843 + }, + "positionPrev": { + "#": 846 + }, + "anglePrev": 0, + "axes": { + "#": 847 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 822 + }, + "sleepCounter": 0 + }, + [ + { + "#": 822 + } + ], + [ + { + "#": 825 + }, + { + "#": 826 + }, + { + "#": 827 + }, + { + "#": 828 + }, + { + "#": 829 + }, + { + "#": 830 + }, + { + "#": 831 + }, + { + "#": 832 + }, + { + "#": 833 + }, + { + "#": 834 + } + ], + { + "x": 235.432, + "y": 231.472, + "index": 0, + "body": { + "#": 822 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 235.472, + "index": 1, + "body": { + "#": 822 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 237, + "index": 2, + "body": { + "#": 822 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 235.472, + "index": 3, + "body": { + "#": 822 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 231.472, + "index": 4, + "body": { + "#": 822 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 226.528, + "index": 5, + "body": { + "#": 822 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 222.528, + "index": 6, + "body": { + "#": 822 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 221, + "index": 7, + "body": { + "#": 822 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 222.528, + "index": 8, + "body": { + "#": 822 + }, + "isInternal": false + }, + { + "x": 235.432, + "y": 226.528, + "index": 9, + "body": { + "#": 822 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 842 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 844 + }, + "max": { + "#": 845 + } + }, + { + "x": 220.216, + "y": 221 + }, + { + "x": 235.432, + "y": 237 + }, + { + "x": 227.824, + "y": 229 + }, + [ + { + "#": 848 + }, + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + }, + { + "#": 852 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 27, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 854 + }, + "angle": 0, + "vertices": { + "#": 855 + }, + "position": { + "#": 866 + }, + "force": { + "#": 867 + }, + "torque": 0, + "positionImpulse": { + "#": 868 + }, + "constraintImpulse": { + "#": 869 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 870 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 871 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 872 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 874 + }, + "positionPrev": { + "#": 877 + }, + "anglePrev": 0, + "axes": { + "#": 878 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 853 + }, + "sleepCounter": 0 + }, + [ + { + "#": 853 + } + ], + [ + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + }, + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + } + ], + { + "x": 255.648, + "y": 231.472, + "index": 0, + "body": { + "#": 853 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 235.472, + "index": 1, + "body": { + "#": 853 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 237, + "index": 2, + "body": { + "#": 853 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 235.472, + "index": 3, + "body": { + "#": 853 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 231.472, + "index": 4, + "body": { + "#": 853 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 226.528, + "index": 5, + "body": { + "#": 853 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 222.528, + "index": 6, + "body": { + "#": 853 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 221, + "index": 7, + "body": { + "#": 853 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 222.528, + "index": 8, + "body": { + "#": 853 + }, + "isInternal": false + }, + { + "x": 255.648, + "y": 226.528, + "index": 9, + "body": { + "#": 853 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 873 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 875 + }, + "max": { + "#": 876 + } + }, + { + "x": 240.432, + "y": 221 + }, + { + "x": 255.648, + "y": 237 + }, + { + "x": 248.04, + "y": 229 + }, + [ + { + "#": 879 + }, + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 28, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 885 + }, + "angle": 0, + "vertices": { + "#": 886 + }, + "position": { + "#": 897 + }, + "force": { + "#": 898 + }, + "torque": 0, + "positionImpulse": { + "#": 899 + }, + "constraintImpulse": { + "#": 900 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 901 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 902 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 903 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 905 + }, + "positionPrev": { + "#": 908 + }, + "anglePrev": 0, + "axes": { + "#": 909 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 884 + }, + "sleepCounter": 0 + }, + [ + { + "#": 884 + } + ], + [ + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + }, + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + }, + { + "#": 894 + }, + { + "#": 895 + }, + { + "#": 896 + } + ], + { + "x": 275.864, + "y": 231.472, + "index": 0, + "body": { + "#": 884 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 235.472, + "index": 1, + "body": { + "#": 884 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 237, + "index": 2, + "body": { + "#": 884 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 235.472, + "index": 3, + "body": { + "#": 884 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 231.472, + "index": 4, + "body": { + "#": 884 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 226.528, + "index": 5, + "body": { + "#": 884 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 222.528, + "index": 6, + "body": { + "#": 884 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 221, + "index": 7, + "body": { + "#": 884 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 222.528, + "index": 8, + "body": { + "#": 884 + }, + "isInternal": false + }, + { + "x": 275.864, + "y": 226.528, + "index": 9, + "body": { + "#": 884 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 904 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 906 + }, + "max": { + "#": 907 + } + }, + { + "x": 260.648, + "y": 221 + }, + { + "x": 275.864, + "y": 237 + }, + { + "x": 268.256, + "y": 229 + }, + [ + { + "#": 910 + }, + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 29, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 916 + }, + "angle": 0, + "vertices": { + "#": 917 + }, + "position": { + "#": 928 + }, + "force": { + "#": 929 + }, + "torque": 0, + "positionImpulse": { + "#": 930 + }, + "constraintImpulse": { + "#": 931 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 932 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 933 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 934 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 936 + }, + "positionPrev": { + "#": 939 + }, + "anglePrev": 0, + "axes": { + "#": 940 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 915 + }, + "sleepCounter": 0 + }, + [ + { + "#": 915 + } + ], + [ + { + "#": 918 + }, + { + "#": 919 + }, + { + "#": 920 + }, + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + }, + { + "#": 924 + }, + { + "#": 925 + }, + { + "#": 926 + }, + { + "#": 927 + } + ], + { + "x": 296.08, + "y": 231.472, + "index": 0, + "body": { + "#": 915 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 235.472, + "index": 1, + "body": { + "#": 915 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 237, + "index": 2, + "body": { + "#": 915 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 235.472, + "index": 3, + "body": { + "#": 915 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 231.472, + "index": 4, + "body": { + "#": 915 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 226.528, + "index": 5, + "body": { + "#": 915 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 222.528, + "index": 6, + "body": { + "#": 915 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 221, + "index": 7, + "body": { + "#": 915 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 222.528, + "index": 8, + "body": { + "#": 915 + }, + "isInternal": false + }, + { + "x": 296.08, + "y": 226.528, + "index": 9, + "body": { + "#": 915 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 935 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 937 + }, + "max": { + "#": 938 + } + }, + { + "x": 280.864, + "y": 221 + }, + { + "x": 296.08, + "y": 237 + }, + { + "x": 288.472, + "y": 229 + }, + [ + { + "#": 941 + }, + { + "#": 942 + }, + { + "#": 943 + }, + { + "#": 944 + }, + { + "#": 945 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 30, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 947 + }, + "angle": 0, + "vertices": { + "#": 948 + }, + "position": { + "#": 959 + }, + "force": { + "#": 960 + }, + "torque": 0, + "positionImpulse": { + "#": 961 + }, + "constraintImpulse": { + "#": 962 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 963 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 964 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 965 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 967 + }, + "positionPrev": { + "#": 970 + }, + "anglePrev": 0, + "axes": { + "#": 971 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 946 + }, + "sleepCounter": 0 + }, + [ + { + "#": 946 + } + ], + [ + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + } + ], + { + "x": 316.296, + "y": 231.472, + "index": 0, + "body": { + "#": 946 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 235.472, + "index": 1, + "body": { + "#": 946 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 237, + "index": 2, + "body": { + "#": 946 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 235.472, + "index": 3, + "body": { + "#": 946 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 231.472, + "index": 4, + "body": { + "#": 946 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 226.528, + "index": 5, + "body": { + "#": 946 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 222.528, + "index": 6, + "body": { + "#": 946 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 221, + "index": 7, + "body": { + "#": 946 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 222.528, + "index": 8, + "body": { + "#": 946 + }, + "isInternal": false + }, + { + "x": 316.296, + "y": 226.528, + "index": 9, + "body": { + "#": 946 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 966 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 968 + }, + "max": { + "#": 969 + } + }, + { + "x": 301.08, + "y": 221 + }, + { + "x": 316.296, + "y": 237 + }, + { + "x": 308.688, + "y": 229 + }, + [ + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + }, + { + "#": 976 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 31, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 978 + }, + "angle": 0, + "vertices": { + "#": 979 + }, + "position": { + "#": 990 + }, + "force": { + "#": 991 + }, + "torque": 0, + "positionImpulse": { + "#": 992 + }, + "constraintImpulse": { + "#": 993 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 994 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 995 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 996 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 998 + }, + "positionPrev": { + "#": 1001 + }, + "anglePrev": 0, + "axes": { + "#": 1002 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 977 + }, + "sleepCounter": 0 + }, + [ + { + "#": 977 + } + ], + [ + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + }, + { + "#": 985 + }, + { + "#": 986 + }, + { + "#": 987 + }, + { + "#": 988 + }, + { + "#": 989 + } + ], + { + "x": 336.512, + "y": 231.472, + "index": 0, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 235.472, + "index": 1, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 237, + "index": 2, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 235.472, + "index": 3, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 231.472, + "index": 4, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 226.528, + "index": 5, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 222.528, + "index": 6, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 221, + "index": 7, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 222.528, + "index": 8, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 336.512, + "y": 226.528, + "index": 9, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 997 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 999 + }, + "max": { + "#": 1000 + } + }, + { + "x": 321.296, + "y": 221 + }, + { + "x": 336.512, + "y": 237 + }, + { + "x": 328.904, + "y": 229 + }, + [ + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + }, + { + "#": 1007 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 32, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1009 + }, + "angle": 0, + "vertices": { + "#": 1010 + }, + "position": { + "#": 1021 + }, + "force": { + "#": 1022 + }, + "torque": 0, + "positionImpulse": { + "#": 1023 + }, + "constraintImpulse": { + "#": 1024 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1025 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1026 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1027 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1029 + }, + "positionPrev": { + "#": 1032 + }, + "anglePrev": 0, + "axes": { + "#": 1033 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1008 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1008 + } + ], + [ + { + "#": 1011 + }, + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + }, + { + "#": 1016 + }, + { + "#": 1017 + }, + { + "#": 1018 + }, + { + "#": 1019 + }, + { + "#": 1020 + } + ], + { + "x": 356.728, + "y": 231.472, + "index": 0, + "body": { + "#": 1008 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 235.472, + "index": 1, + "body": { + "#": 1008 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 237, + "index": 2, + "body": { + "#": 1008 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 235.472, + "index": 3, + "body": { + "#": 1008 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 231.472, + "index": 4, + "body": { + "#": 1008 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 226.528, + "index": 5, + "body": { + "#": 1008 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 222.528, + "index": 6, + "body": { + "#": 1008 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 221, + "index": 7, + "body": { + "#": 1008 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 222.528, + "index": 8, + "body": { + "#": 1008 + }, + "isInternal": false + }, + { + "x": 356.728, + "y": 226.528, + "index": 9, + "body": { + "#": 1008 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1028 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1030 + }, + "max": { + "#": 1031 + } + }, + { + "x": 341.512, + "y": 221 + }, + { + "x": 356.728, + "y": 237 + }, + { + "x": 349.12, + "y": 229 + }, + [ + { + "#": 1034 + }, + { + "#": 1035 + }, + { + "#": 1036 + }, + { + "#": 1037 + }, + { + "#": 1038 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 33, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1040 + }, + "angle": 0, + "vertices": { + "#": 1041 + }, + "position": { + "#": 1052 + }, + "force": { + "#": 1053 + }, + "torque": 0, + "positionImpulse": { + "#": 1054 + }, + "constraintImpulse": { + "#": 1055 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1056 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1057 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1058 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1060 + }, + "positionPrev": { + "#": 1063 + }, + "anglePrev": 0, + "axes": { + "#": 1064 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1039 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1039 + } + ], + [ + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + } + ], + { + "x": 376.944, + "y": 231.472, + "index": 0, + "body": { + "#": 1039 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 235.472, + "index": 1, + "body": { + "#": 1039 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 237, + "index": 2, + "body": { + "#": 1039 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 235.472, + "index": 3, + "body": { + "#": 1039 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 231.472, + "index": 4, + "body": { + "#": 1039 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 226.528, + "index": 5, + "body": { + "#": 1039 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 222.528, + "index": 6, + "body": { + "#": 1039 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 221, + "index": 7, + "body": { + "#": 1039 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 222.528, + "index": 8, + "body": { + "#": 1039 + }, + "isInternal": false + }, + { + "x": 376.944, + "y": 226.528, + "index": 9, + "body": { + "#": 1039 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1059 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1061 + }, + "max": { + "#": 1062 + } + }, + { + "x": 361.728, + "y": 221 + }, + { + "x": 376.944, + "y": 237 + }, + { + "x": 369.336, + "y": 229 + }, + [ + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 34, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1071 + }, + "angle": 0, + "vertices": { + "#": 1072 + }, + "position": { + "#": 1083 + }, + "force": { + "#": 1084 + }, + "torque": 0, + "positionImpulse": { + "#": 1085 + }, + "constraintImpulse": { + "#": 1086 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1087 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1088 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1089 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1091 + }, + "positionPrev": { + "#": 1094 + }, + "anglePrev": 0, + "axes": { + "#": 1095 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1070 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1070 + } + ], + [ + { + "#": 1073 + }, + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + } + ], + { + "x": 397.16, + "y": 231.472, + "index": 0, + "body": { + "#": 1070 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 235.472, + "index": 1, + "body": { + "#": 1070 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 237, + "index": 2, + "body": { + "#": 1070 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 235.472, + "index": 3, + "body": { + "#": 1070 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 231.472, + "index": 4, + "body": { + "#": 1070 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 226.528, + "index": 5, + "body": { + "#": 1070 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 222.528, + "index": 6, + "body": { + "#": 1070 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 221, + "index": 7, + "body": { + "#": 1070 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 222.528, + "index": 8, + "body": { + "#": 1070 + }, + "isInternal": false + }, + { + "x": 397.16, + "y": 226.528, + "index": 9, + "body": { + "#": 1070 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1090 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1092 + }, + "max": { + "#": 1093 + } + }, + { + "x": 381.944, + "y": 221 + }, + { + "x": 397.16, + "y": 237 + }, + { + "x": 389.552, + "y": 229 + }, + [ + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 35, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1102 + }, + "angle": 0, + "vertices": { + "#": 1103 + }, + "position": { + "#": 1114 + }, + "force": { + "#": 1115 + }, + "torque": 0, + "positionImpulse": { + "#": 1116 + }, + "constraintImpulse": { + "#": 1117 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1118 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1119 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1120 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1122 + }, + "positionPrev": { + "#": 1125 + }, + "anglePrev": 0, + "axes": { + "#": 1126 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1101 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1101 + } + ], + [ + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + }, + { + "#": 1108 + }, + { + "#": 1109 + }, + { + "#": 1110 + }, + { + "#": 1111 + }, + { + "#": 1112 + }, + { + "#": 1113 + } + ], + { + "x": 417.376, + "y": 231.472, + "index": 0, + "body": { + "#": 1101 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 235.472, + "index": 1, + "body": { + "#": 1101 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 237, + "index": 2, + "body": { + "#": 1101 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 235.472, + "index": 3, + "body": { + "#": 1101 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 231.472, + "index": 4, + "body": { + "#": 1101 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 226.528, + "index": 5, + "body": { + "#": 1101 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 222.528, + "index": 6, + "body": { + "#": 1101 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 221, + "index": 7, + "body": { + "#": 1101 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 222.528, + "index": 8, + "body": { + "#": 1101 + }, + "isInternal": false + }, + { + "x": 417.376, + "y": 226.528, + "index": 9, + "body": { + "#": 1101 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1121 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1123 + }, + "max": { + "#": 1124 + } + }, + { + "x": 402.16, + "y": 221 + }, + { + "x": 417.376, + "y": 237 + }, + { + "x": 409.768, + "y": 229 + }, + [ + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 36, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1133 + }, + "angle": 0, + "vertices": { + "#": 1134 + }, + "position": { + "#": 1145 + }, + "force": { + "#": 1146 + }, + "torque": 0, + "positionImpulse": { + "#": 1147 + }, + "constraintImpulse": { + "#": 1148 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1149 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1150 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1151 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1153 + }, + "positionPrev": { + "#": 1156 + }, + "anglePrev": 0, + "axes": { + "#": 1157 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1132 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1132 + } + ], + [ + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + } + ], + { + "x": 437.592, + "y": 231.472, + "index": 0, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 235.472, + "index": 1, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 237, + "index": 2, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 235.472, + "index": 3, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 231.472, + "index": 4, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 226.528, + "index": 5, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 222.528, + "index": 6, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 221, + "index": 7, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 222.528, + "index": 8, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 437.592, + "y": 226.528, + "index": 9, + "body": { + "#": 1132 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1152 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1154 + }, + "max": { + "#": 1155 + } + }, + { + "x": 422.376, + "y": 221 + }, + { + "x": 437.592, + "y": 237 + }, + { + "x": 429.984, + "y": 229 + }, + [ + { + "#": 1158 + }, + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 37, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1164 + }, + "angle": 0, + "vertices": { + "#": 1165 + }, + "position": { + "#": 1176 + }, + "force": { + "#": 1177 + }, + "torque": 0, + "positionImpulse": { + "#": 1178 + }, + "constraintImpulse": { + "#": 1179 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1180 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1181 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1182 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1184 + }, + "positionPrev": { + "#": 1187 + }, + "anglePrev": 0, + "axes": { + "#": 1188 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1163 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1163 + } + ], + [ + { + "#": 1166 + }, + { + "#": 1167 + }, + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + }, + { + "#": 1175 + } + ], + { + "x": 457.808, + "y": 231.472, + "index": 0, + "body": { + "#": 1163 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 235.472, + "index": 1, + "body": { + "#": 1163 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 237, + "index": 2, + "body": { + "#": 1163 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 235.472, + "index": 3, + "body": { + "#": 1163 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 231.472, + "index": 4, + "body": { + "#": 1163 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 226.528, + "index": 5, + "body": { + "#": 1163 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 222.528, + "index": 6, + "body": { + "#": 1163 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 221, + "index": 7, + "body": { + "#": 1163 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 222.528, + "index": 8, + "body": { + "#": 1163 + }, + "isInternal": false + }, + { + "x": 457.808, + "y": 226.528, + "index": 9, + "body": { + "#": 1163 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1183 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1185 + }, + "max": { + "#": 1186 + } + }, + { + "x": 442.592, + "y": 221 + }, + { + "x": 457.808, + "y": 237 + }, + { + "x": 450.2, + "y": 229 + }, + [ + { + "#": 1189 + }, + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 38, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1195 + }, + "angle": 0, + "vertices": { + "#": 1196 + }, + "position": { + "#": 1207 + }, + "force": { + "#": 1208 + }, + "torque": 0, + "positionImpulse": { + "#": 1209 + }, + "constraintImpulse": { + "#": 1210 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1211 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1212 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1213 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1215 + }, + "positionPrev": { + "#": 1218 + }, + "anglePrev": 0, + "axes": { + "#": 1219 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1194 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1194 + } + ], + [ + { + "#": 1197 + }, + { + "#": 1198 + }, + { + "#": 1199 + }, + { + "#": 1200 + }, + { + "#": 1201 + }, + { + "#": 1202 + }, + { + "#": 1203 + }, + { + "#": 1204 + }, + { + "#": 1205 + }, + { + "#": 1206 + } + ], + { + "x": 478.024, + "y": 231.472, + "index": 0, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 235.472, + "index": 1, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 237, + "index": 2, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 235.472, + "index": 3, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 231.472, + "index": 4, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 226.528, + "index": 5, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 222.528, + "index": 6, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 221, + "index": 7, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 222.528, + "index": 8, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 478.024, + "y": 226.528, + "index": 9, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1214 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1216 + }, + "max": { + "#": 1217 + } + }, + { + "x": 462.808, + "y": 221 + }, + { + "x": 478.024, + "y": 237 + }, + { + "x": 470.416, + "y": 229 + }, + [ + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 39, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1226 + }, + "angle": 0, + "vertices": { + "#": 1227 + }, + "position": { + "#": 1238 + }, + "force": { + "#": 1239 + }, + "torque": 0, + "positionImpulse": { + "#": 1240 + }, + "constraintImpulse": { + "#": 1241 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1242 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1243 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1244 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1246 + }, + "positionPrev": { + "#": 1249 + }, + "anglePrev": 0, + "axes": { + "#": 1250 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1225 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1225 + } + ], + [ + { + "#": 1228 + }, + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + }, + { + "#": 1232 + }, + { + "#": 1233 + }, + { + "#": 1234 + }, + { + "#": 1235 + }, + { + "#": 1236 + }, + { + "#": 1237 + } + ], + { + "x": 498.24, + "y": 231.472, + "index": 0, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 235.472, + "index": 1, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 237, + "index": 2, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 235.472, + "index": 3, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 231.472, + "index": 4, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 226.528, + "index": 5, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 222.528, + "index": 6, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 221, + "index": 7, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 222.528, + "index": 8, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 498.24, + "y": 226.528, + "index": 9, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1245 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1247 + }, + "max": { + "#": 1248 + } + }, + { + "x": 483.024, + "y": 221 + }, + { + "x": 498.24, + "y": 237 + }, + { + "x": 490.632, + "y": 229 + }, + [ + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + }, + { + "#": 1254 + }, + { + "#": 1255 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 40, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1257 + }, + "angle": 0, + "vertices": { + "#": 1258 + }, + "position": { + "#": 1269 + }, + "force": { + "#": 1270 + }, + "torque": 0, + "positionImpulse": { + "#": 1271 + }, + "constraintImpulse": { + "#": 1272 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1273 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1274 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1275 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1277 + }, + "positionPrev": { + "#": 1280 + }, + "anglePrev": 0, + "axes": { + "#": 1281 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1256 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1256 + } + ], + [ + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + }, + { + "#": 1263 + }, + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + }, + { + "#": 1267 + }, + { + "#": 1268 + } + ], + { + "x": 518.456, + "y": 231.472, + "index": 0, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 235.472, + "index": 1, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 237, + "index": 2, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 235.472, + "index": 3, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 231.472, + "index": 4, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 226.528, + "index": 5, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 222.528, + "index": 6, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 221, + "index": 7, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 222.528, + "index": 8, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 518.456, + "y": 226.528, + "index": 9, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1276 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1278 + }, + "max": { + "#": 1279 + } + }, + { + "x": 503.24, + "y": 221 + }, + { + "x": 518.456, + "y": 237 + }, + { + "x": 510.848, + "y": 229 + }, + [ + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + }, + { + "#": 1285 + }, + { + "#": 1286 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 41, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1288 + }, + "angle": 0, + "vertices": { + "#": 1289 + }, + "position": { + "#": 1300 + }, + "force": { + "#": 1301 + }, + "torque": 0, + "positionImpulse": { + "#": 1302 + }, + "constraintImpulse": { + "#": 1303 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1304 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1305 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1306 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1308 + }, + "positionPrev": { + "#": 1311 + }, + "anglePrev": 0, + "axes": { + "#": 1312 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1287 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1287 + } + ], + [ + { + "#": 1290 + }, + { + "#": 1291 + }, + { + "#": 1292 + }, + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + }, + { + "#": 1296 + }, + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + } + ], + { + "x": 538.672, + "y": 231.472, + "index": 0, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 235.472, + "index": 1, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 237, + "index": 2, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 235.472, + "index": 3, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 231.472, + "index": 4, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 226.528, + "index": 5, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 222.528, + "index": 6, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 221, + "index": 7, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 222.528, + "index": 8, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 538.672, + "y": 226.528, + "index": 9, + "body": { + "#": 1287 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1307 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1309 + }, + "max": { + "#": 1310 + } + }, + { + "x": 523.456, + "y": 221 + }, + { + "x": 538.672, + "y": 237 + }, + { + "x": 531.064, + "y": 229 + }, + [ + { + "#": 1313 + }, + { + "#": 1314 + }, + { + "#": 1315 + }, + { + "#": 1316 + }, + { + "#": 1317 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 42, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1319 + }, + "angle": 0, + "vertices": { + "#": 1320 + }, + "position": { + "#": 1331 + }, + "force": { + "#": 1332 + }, + "torque": 0, + "positionImpulse": { + "#": 1333 + }, + "constraintImpulse": { + "#": 1334 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1335 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1336 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1337 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1339 + }, + "positionPrev": { + "#": 1342 + }, + "anglePrev": 0, + "axes": { + "#": 1343 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1318 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1318 + } + ], + [ + { + "#": 1321 + }, + { + "#": 1322 + }, + { + "#": 1323 + }, + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + }, + { + "#": 1327 + }, + { + "#": 1328 + }, + { + "#": 1329 + }, + { + "#": 1330 + } + ], + { + "x": 558.888, + "y": 231.472, + "index": 0, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 235.472, + "index": 1, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 237, + "index": 2, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 235.472, + "index": 3, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 231.472, + "index": 4, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 226.528, + "index": 5, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 222.528, + "index": 6, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 221, + "index": 7, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 222.528, + "index": 8, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 558.888, + "y": 226.528, + "index": 9, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1338 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1340 + }, + "max": { + "#": 1341 + } + }, + { + "x": 543.672, + "y": 221 + }, + { + "x": 558.888, + "y": 237 + }, + { + "x": 551.28, + "y": 229 + }, + [ + { + "#": 1344 + }, + { + "#": 1345 + }, + { + "#": 1346 + }, + { + "#": 1347 + }, + { + "#": 1348 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 43, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1350 + }, + "angle": 0, + "vertices": { + "#": 1351 + }, + "position": { + "#": 1362 + }, + "force": { + "#": 1363 + }, + "torque": 0, + "positionImpulse": { + "#": 1364 + }, + "constraintImpulse": { + "#": 1365 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1366 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1367 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1368 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1370 + }, + "positionPrev": { + "#": 1373 + }, + "anglePrev": 0, + "axes": { + "#": 1374 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1349 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1349 + } + ], + [ + { + "#": 1352 + }, + { + "#": 1353 + }, + { + "#": 1354 + }, + { + "#": 1355 + }, + { + "#": 1356 + }, + { + "#": 1357 + }, + { + "#": 1358 + }, + { + "#": 1359 + }, + { + "#": 1360 + }, + { + "#": 1361 + } + ], + { + "x": 579.104, + "y": 231.472, + "index": 0, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 235.472, + "index": 1, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 237, + "index": 2, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 235.472, + "index": 3, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 231.472, + "index": 4, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 226.528, + "index": 5, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 222.528, + "index": 6, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 221, + "index": 7, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 222.528, + "index": 8, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 579.104, + "y": 226.528, + "index": 9, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1369 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1371 + }, + "max": { + "#": 1372 + } + }, + { + "x": 563.888, + "y": 221 + }, + { + "x": 579.104, + "y": 237 + }, + { + "x": 571.496, + "y": 229 + }, + [ + { + "#": 1375 + }, + { + "#": 1376 + }, + { + "#": 1377 + }, + { + "#": 1378 + }, + { + "#": 1379 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 44, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1381 + }, + "angle": 0, + "vertices": { + "#": 1382 + }, + "position": { + "#": 1393 + }, + "force": { + "#": 1394 + }, + "torque": 0, + "positionImpulse": { + "#": 1395 + }, + "constraintImpulse": { + "#": 1396 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1397 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1398 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1399 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1401 + }, + "positionPrev": { + "#": 1404 + }, + "anglePrev": 0, + "axes": { + "#": 1405 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1380 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1380 + } + ], + [ + { + "#": 1383 + }, + { + "#": 1384 + }, + { + "#": 1385 + }, + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + }, + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + } + ], + { + "x": 599.32, + "y": 231.472, + "index": 0, + "body": { + "#": 1380 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 235.472, + "index": 1, + "body": { + "#": 1380 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 237, + "index": 2, + "body": { + "#": 1380 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 235.472, + "index": 3, + "body": { + "#": 1380 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 231.472, + "index": 4, + "body": { + "#": 1380 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 226.528, + "index": 5, + "body": { + "#": 1380 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 222.528, + "index": 6, + "body": { + "#": 1380 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 221, + "index": 7, + "body": { + "#": 1380 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 222.528, + "index": 8, + "body": { + "#": 1380 + }, + "isInternal": false + }, + { + "x": 599.32, + "y": 226.528, + "index": 9, + "body": { + "#": 1380 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 229 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1400 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1402 + }, + "max": { + "#": 1403 + } + }, + { + "x": 584.104, + "y": 221 + }, + { + "x": 599.32, + "y": 237 + }, + { + "x": 591.712, + "y": 229 + }, + [ + { + "#": 1406 + }, + { + "#": 1407 + }, + { + "#": 1408 + }, + { + "#": 1409 + }, + { + "#": 1410 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 45, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1412 + }, + "angle": 0, + "vertices": { + "#": 1413 + }, + "position": { + "#": 1424 + }, + "force": { + "#": 1425 + }, + "torque": 0, + "positionImpulse": { + "#": 1426 + }, + "constraintImpulse": { + "#": 1427 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1428 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1429 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1430 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1432 + }, + "positionPrev": { + "#": 1435 + }, + "anglePrev": 0, + "axes": { + "#": 1436 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1411 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1411 + } + ], + [ + { + "#": 1414 + }, + { + "#": 1415 + }, + { + "#": 1416 + }, + { + "#": 1417 + }, + { + "#": 1418 + }, + { + "#": 1419 + }, + { + "#": 1420 + }, + { + "#": 1421 + }, + { + "#": 1422 + }, + { + "#": 1423 + } + ], + { + "x": 215.216, + "y": 252.472, + "index": 0, + "body": { + "#": 1411 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 256.472, + "index": 1, + "body": { + "#": 1411 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 258, + "index": 2, + "body": { + "#": 1411 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 256.472, + "index": 3, + "body": { + "#": 1411 + }, + "isInternal": false + }, + { + "x": 200, + "y": 252.472, + "index": 4, + "body": { + "#": 1411 + }, + "isInternal": false + }, + { + "x": 200, + "y": 247.528, + "index": 5, + "body": { + "#": 1411 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 243.528, + "index": 6, + "body": { + "#": 1411 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 242, + "index": 7, + "body": { + "#": 1411 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 243.528, + "index": 8, + "body": { + "#": 1411 + }, + "isInternal": false + }, + { + "x": 215.216, + "y": 247.528, + "index": 9, + "body": { + "#": 1411 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1431 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1433 + }, + "max": { + "#": 1434 + } + }, + { + "x": 200, + "y": 242 + }, + { + "x": 215.216, + "y": 258 + }, + { + "x": 207.608, + "y": 250 + }, + [ + { + "#": 1437 + }, + { + "#": 1438 + }, + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 46, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1443 + }, + "angle": 0, + "vertices": { + "#": 1444 + }, + "position": { + "#": 1455 + }, + "force": { + "#": 1456 + }, + "torque": 0, + "positionImpulse": { + "#": 1457 + }, + "constraintImpulse": { + "#": 1458 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1459 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1460 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1461 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1463 + }, + "positionPrev": { + "#": 1466 + }, + "anglePrev": 0, + "axes": { + "#": 1467 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1442 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1442 + } + ], + [ + { + "#": 1445 + }, + { + "#": 1446 + }, + { + "#": 1447 + }, + { + "#": 1448 + }, + { + "#": 1449 + }, + { + "#": 1450 + }, + { + "#": 1451 + }, + { + "#": 1452 + }, + { + "#": 1453 + }, + { + "#": 1454 + } + ], + { + "x": 235.432, + "y": 252.472, + "index": 0, + "body": { + "#": 1442 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 256.472, + "index": 1, + "body": { + "#": 1442 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 258, + "index": 2, + "body": { + "#": 1442 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 256.472, + "index": 3, + "body": { + "#": 1442 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 252.472, + "index": 4, + "body": { + "#": 1442 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 247.528, + "index": 5, + "body": { + "#": 1442 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 243.528, + "index": 6, + "body": { + "#": 1442 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 242, + "index": 7, + "body": { + "#": 1442 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 243.528, + "index": 8, + "body": { + "#": 1442 + }, + "isInternal": false + }, + { + "x": 235.432, + "y": 247.528, + "index": 9, + "body": { + "#": 1442 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1462 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1464 + }, + "max": { + "#": 1465 + } + }, + { + "x": 220.216, + "y": 242 + }, + { + "x": 235.432, + "y": 258 + }, + { + "x": 227.824, + "y": 250 + }, + [ + { + "#": 1468 + }, + { + "#": 1469 + }, + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 47, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1474 + }, + "angle": 0, + "vertices": { + "#": 1475 + }, + "position": { + "#": 1486 + }, + "force": { + "#": 1487 + }, + "torque": 0, + "positionImpulse": { + "#": 1488 + }, + "constraintImpulse": { + "#": 1489 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1490 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1491 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1492 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1494 + }, + "positionPrev": { + "#": 1497 + }, + "anglePrev": 0, + "axes": { + "#": 1498 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1473 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1473 + } + ], + [ + { + "#": 1476 + }, + { + "#": 1477 + }, + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + }, + { + "#": 1481 + }, + { + "#": 1482 + }, + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + } + ], + { + "x": 255.648, + "y": 252.472, + "index": 0, + "body": { + "#": 1473 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 256.472, + "index": 1, + "body": { + "#": 1473 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 258, + "index": 2, + "body": { + "#": 1473 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 256.472, + "index": 3, + "body": { + "#": 1473 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 252.472, + "index": 4, + "body": { + "#": 1473 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 247.528, + "index": 5, + "body": { + "#": 1473 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 243.528, + "index": 6, + "body": { + "#": 1473 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 242, + "index": 7, + "body": { + "#": 1473 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 243.528, + "index": 8, + "body": { + "#": 1473 + }, + "isInternal": false + }, + { + "x": 255.648, + "y": 247.528, + "index": 9, + "body": { + "#": 1473 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1493 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1495 + }, + "max": { + "#": 1496 + } + }, + { + "x": 240.432, + "y": 242 + }, + { + "x": 255.648, + "y": 258 + }, + { + "x": 248.04, + "y": 250 + }, + [ + { + "#": 1499 + }, + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 48, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1505 + }, + "angle": 0, + "vertices": { + "#": 1506 + }, + "position": { + "#": 1517 + }, + "force": { + "#": 1518 + }, + "torque": 0, + "positionImpulse": { + "#": 1519 + }, + "constraintImpulse": { + "#": 1520 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1521 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1522 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1523 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1525 + }, + "positionPrev": { + "#": 1528 + }, + "anglePrev": 0, + "axes": { + "#": 1529 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1504 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1504 + } + ], + [ + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + }, + { + "#": 1510 + }, + { + "#": 1511 + }, + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + }, + { + "#": 1515 + }, + { + "#": 1516 + } + ], + { + "x": 275.864, + "y": 252.472, + "index": 0, + "body": { + "#": 1504 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 256.472, + "index": 1, + "body": { + "#": 1504 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 258, + "index": 2, + "body": { + "#": 1504 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 256.472, + "index": 3, + "body": { + "#": 1504 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 252.472, + "index": 4, + "body": { + "#": 1504 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 247.528, + "index": 5, + "body": { + "#": 1504 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 243.528, + "index": 6, + "body": { + "#": 1504 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 242, + "index": 7, + "body": { + "#": 1504 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 243.528, + "index": 8, + "body": { + "#": 1504 + }, + "isInternal": false + }, + { + "x": 275.864, + "y": 247.528, + "index": 9, + "body": { + "#": 1504 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1524 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1526 + }, + "max": { + "#": 1527 + } + }, + { + "x": 260.648, + "y": 242 + }, + { + "x": 275.864, + "y": 258 + }, + { + "x": 268.256, + "y": 250 + }, + [ + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + }, + { + "#": 1533 + }, + { + "#": 1534 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 49, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1536 + }, + "angle": 0, + "vertices": { + "#": 1537 + }, + "position": { + "#": 1548 + }, + "force": { + "#": 1549 + }, + "torque": 0, + "positionImpulse": { + "#": 1550 + }, + "constraintImpulse": { + "#": 1551 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1552 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1553 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1554 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1556 + }, + "positionPrev": { + "#": 1559 + }, + "anglePrev": 0, + "axes": { + "#": 1560 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1535 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1535 + } + ], + [ + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + }, + { + "#": 1543 + }, + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + } + ], + { + "x": 296.08, + "y": 252.472, + "index": 0, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 256.472, + "index": 1, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 258, + "index": 2, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 256.472, + "index": 3, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 252.472, + "index": 4, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 247.528, + "index": 5, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 243.528, + "index": 6, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 242, + "index": 7, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 243.528, + "index": 8, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 296.08, + "y": 247.528, + "index": 9, + "body": { + "#": 1535 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1555 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1557 + }, + "max": { + "#": 1558 + } + }, + { + "x": 280.864, + "y": 242 + }, + { + "x": 296.08, + "y": 258 + }, + { + "x": 288.472, + "y": 250 + }, + [ + { + "#": 1561 + }, + { + "#": 1562 + }, + { + "#": 1563 + }, + { + "#": 1564 + }, + { + "#": 1565 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 50, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1567 + }, + "angle": 0, + "vertices": { + "#": 1568 + }, + "position": { + "#": 1579 + }, + "force": { + "#": 1580 + }, + "torque": 0, + "positionImpulse": { + "#": 1581 + }, + "constraintImpulse": { + "#": 1582 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1583 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1584 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1585 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1587 + }, + "positionPrev": { + "#": 1590 + }, + "anglePrev": 0, + "axes": { + "#": 1591 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1566 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1566 + } + ], + [ + { + "#": 1569 + }, + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + }, + { + "#": 1577 + }, + { + "#": 1578 + } + ], + { + "x": 316.296, + "y": 252.472, + "index": 0, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 256.472, + "index": 1, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 258, + "index": 2, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 256.472, + "index": 3, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 252.472, + "index": 4, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 247.528, + "index": 5, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 243.528, + "index": 6, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 242, + "index": 7, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 243.528, + "index": 8, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 316.296, + "y": 247.528, + "index": 9, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1586 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1588 + }, + "max": { + "#": 1589 + } + }, + { + "x": 301.08, + "y": 242 + }, + { + "x": 316.296, + "y": 258 + }, + { + "x": 308.688, + "y": 250 + }, + [ + { + "#": 1592 + }, + { + "#": 1593 + }, + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 51, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1598 + }, + "angle": 0, + "vertices": { + "#": 1599 + }, + "position": { + "#": 1610 + }, + "force": { + "#": 1611 + }, + "torque": 0, + "positionImpulse": { + "#": 1612 + }, + "constraintImpulse": { + "#": 1613 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1614 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1615 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1616 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1618 + }, + "positionPrev": { + "#": 1621 + }, + "anglePrev": 0, + "axes": { + "#": 1622 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1597 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1597 + } + ], + [ + { + "#": 1600 + }, + { + "#": 1601 + }, + { + "#": 1602 + }, + { + "#": 1603 + }, + { + "#": 1604 + }, + { + "#": 1605 + }, + { + "#": 1606 + }, + { + "#": 1607 + }, + { + "#": 1608 + }, + { + "#": 1609 + } + ], + { + "x": 336.512, + "y": 252.472, + "index": 0, + "body": { + "#": 1597 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 256.472, + "index": 1, + "body": { + "#": 1597 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 258, + "index": 2, + "body": { + "#": 1597 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 256.472, + "index": 3, + "body": { + "#": 1597 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 252.472, + "index": 4, + "body": { + "#": 1597 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 247.528, + "index": 5, + "body": { + "#": 1597 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 243.528, + "index": 6, + "body": { + "#": 1597 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 242, + "index": 7, + "body": { + "#": 1597 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 243.528, + "index": 8, + "body": { + "#": 1597 + }, + "isInternal": false + }, + { + "x": 336.512, + "y": 247.528, + "index": 9, + "body": { + "#": 1597 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1617 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1619 + }, + "max": { + "#": 1620 + } + }, + { + "x": 321.296, + "y": 242 + }, + { + "x": 336.512, + "y": 258 + }, + { + "x": 328.904, + "y": 250 + }, + [ + { + "#": 1623 + }, + { + "#": 1624 + }, + { + "#": 1625 + }, + { + "#": 1626 + }, + { + "#": 1627 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 52, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1629 + }, + "angle": 0, + "vertices": { + "#": 1630 + }, + "position": { + "#": 1641 + }, + "force": { + "#": 1642 + }, + "torque": 0, + "positionImpulse": { + "#": 1643 + }, + "constraintImpulse": { + "#": 1644 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1645 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1646 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1647 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1649 + }, + "positionPrev": { + "#": 1652 + }, + "anglePrev": 0, + "axes": { + "#": 1653 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1628 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1628 + } + ], + [ + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + }, + { + "#": 1637 + }, + { + "#": 1638 + }, + { + "#": 1639 + }, + { + "#": 1640 + } + ], + { + "x": 356.728, + "y": 252.472, + "index": 0, + "body": { + "#": 1628 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 256.472, + "index": 1, + "body": { + "#": 1628 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 258, + "index": 2, + "body": { + "#": 1628 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 256.472, + "index": 3, + "body": { + "#": 1628 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 252.472, + "index": 4, + "body": { + "#": 1628 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 247.528, + "index": 5, + "body": { + "#": 1628 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 243.528, + "index": 6, + "body": { + "#": 1628 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 242, + "index": 7, + "body": { + "#": 1628 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 243.528, + "index": 8, + "body": { + "#": 1628 + }, + "isInternal": false + }, + { + "x": 356.728, + "y": 247.528, + "index": 9, + "body": { + "#": 1628 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1648 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1650 + }, + "max": { + "#": 1651 + } + }, + { + "x": 341.512, + "y": 242 + }, + { + "x": 356.728, + "y": 258 + }, + { + "x": 349.12, + "y": 250 + }, + [ + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + }, + { + "#": 1658 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 53, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1660 + }, + "angle": 0, + "vertices": { + "#": 1661 + }, + "position": { + "#": 1672 + }, + "force": { + "#": 1673 + }, + "torque": 0, + "positionImpulse": { + "#": 1674 + }, + "constraintImpulse": { + "#": 1675 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1676 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1677 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1678 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1680 + }, + "positionPrev": { + "#": 1683 + }, + "anglePrev": 0, + "axes": { + "#": 1684 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1659 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1659 + } + ], + [ + { + "#": 1662 + }, + { + "#": 1663 + }, + { + "#": 1664 + }, + { + "#": 1665 + }, + { + "#": 1666 + }, + { + "#": 1667 + }, + { + "#": 1668 + }, + { + "#": 1669 + }, + { + "#": 1670 + }, + { + "#": 1671 + } + ], + { + "x": 376.944, + "y": 252.472, + "index": 0, + "body": { + "#": 1659 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 256.472, + "index": 1, + "body": { + "#": 1659 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 258, + "index": 2, + "body": { + "#": 1659 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 256.472, + "index": 3, + "body": { + "#": 1659 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 252.472, + "index": 4, + "body": { + "#": 1659 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 247.528, + "index": 5, + "body": { + "#": 1659 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 243.528, + "index": 6, + "body": { + "#": 1659 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 242, + "index": 7, + "body": { + "#": 1659 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 243.528, + "index": 8, + "body": { + "#": 1659 + }, + "isInternal": false + }, + { + "x": 376.944, + "y": 247.528, + "index": 9, + "body": { + "#": 1659 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1679 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1681 + }, + "max": { + "#": 1682 + } + }, + { + "x": 361.728, + "y": 242 + }, + { + "x": 376.944, + "y": 258 + }, + { + "x": 369.336, + "y": 250 + }, + [ + { + "#": 1685 + }, + { + "#": 1686 + }, + { + "#": 1687 + }, + { + "#": 1688 + }, + { + "#": 1689 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 54, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1691 + }, + "angle": 0, + "vertices": { + "#": 1692 + }, + "position": { + "#": 1703 + }, + "force": { + "#": 1704 + }, + "torque": 0, + "positionImpulse": { + "#": 1705 + }, + "constraintImpulse": { + "#": 1706 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1707 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1708 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1709 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1711 + }, + "positionPrev": { + "#": 1714 + }, + "anglePrev": 0, + "axes": { + "#": 1715 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1690 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1690 + } + ], + [ + { + "#": 1693 + }, + { + "#": 1694 + }, + { + "#": 1695 + }, + { + "#": 1696 + }, + { + "#": 1697 + }, + { + "#": 1698 + }, + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + } + ], + { + "x": 397.16, + "y": 252.472, + "index": 0, + "body": { + "#": 1690 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 256.472, + "index": 1, + "body": { + "#": 1690 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 258, + "index": 2, + "body": { + "#": 1690 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 256.472, + "index": 3, + "body": { + "#": 1690 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 252.472, + "index": 4, + "body": { + "#": 1690 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 247.528, + "index": 5, + "body": { + "#": 1690 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 243.528, + "index": 6, + "body": { + "#": 1690 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 242, + "index": 7, + "body": { + "#": 1690 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 243.528, + "index": 8, + "body": { + "#": 1690 + }, + "isInternal": false + }, + { + "x": 397.16, + "y": 247.528, + "index": 9, + "body": { + "#": 1690 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1710 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1712 + }, + "max": { + "#": 1713 + } + }, + { + "x": 381.944, + "y": 242 + }, + { + "x": 397.16, + "y": 258 + }, + { + "x": 389.552, + "y": 250 + }, + [ + { + "#": 1716 + }, + { + "#": 1717 + }, + { + "#": 1718 + }, + { + "#": 1719 + }, + { + "#": 1720 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 55, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1722 + }, + "angle": 0, + "vertices": { + "#": 1723 + }, + "position": { + "#": 1734 + }, + "force": { + "#": 1735 + }, + "torque": 0, + "positionImpulse": { + "#": 1736 + }, + "constraintImpulse": { + "#": 1737 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1738 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1739 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1740 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1742 + }, + "positionPrev": { + "#": 1745 + }, + "anglePrev": 0, + "axes": { + "#": 1746 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1721 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1721 + } + ], + [ + { + "#": 1724 + }, + { + "#": 1725 + }, + { + "#": 1726 + }, + { + "#": 1727 + }, + { + "#": 1728 + }, + { + "#": 1729 + }, + { + "#": 1730 + }, + { + "#": 1731 + }, + { + "#": 1732 + }, + { + "#": 1733 + } + ], + { + "x": 417.376, + "y": 252.472, + "index": 0, + "body": { + "#": 1721 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 256.472, + "index": 1, + "body": { + "#": 1721 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 258, + "index": 2, + "body": { + "#": 1721 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 256.472, + "index": 3, + "body": { + "#": 1721 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 252.472, + "index": 4, + "body": { + "#": 1721 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 247.528, + "index": 5, + "body": { + "#": 1721 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 243.528, + "index": 6, + "body": { + "#": 1721 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 242, + "index": 7, + "body": { + "#": 1721 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 243.528, + "index": 8, + "body": { + "#": 1721 + }, + "isInternal": false + }, + { + "x": 417.376, + "y": 247.528, + "index": 9, + "body": { + "#": 1721 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1741 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1743 + }, + "max": { + "#": 1744 + } + }, + { + "x": 402.16, + "y": 242 + }, + { + "x": 417.376, + "y": 258 + }, + { + "x": 409.768, + "y": 250 + }, + [ + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + }, + { + "#": 1751 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 56, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1753 + }, + "angle": 0, + "vertices": { + "#": 1754 + }, + "position": { + "#": 1765 + }, + "force": { + "#": 1766 + }, + "torque": 0, + "positionImpulse": { + "#": 1767 + }, + "constraintImpulse": { + "#": 1768 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1769 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1770 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1771 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1773 + }, + "positionPrev": { + "#": 1776 + }, + "anglePrev": 0, + "axes": { + "#": 1777 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1752 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1752 + } + ], + [ + { + "#": 1755 + }, + { + "#": 1756 + }, + { + "#": 1757 + }, + { + "#": 1758 + }, + { + "#": 1759 + }, + { + "#": 1760 + }, + { + "#": 1761 + }, + { + "#": 1762 + }, + { + "#": 1763 + }, + { + "#": 1764 + } + ], + { + "x": 437.592, + "y": 252.472, + "index": 0, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 256.472, + "index": 1, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 258, + "index": 2, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 256.472, + "index": 3, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 252.472, + "index": 4, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 247.528, + "index": 5, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 243.528, + "index": 6, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 242, + "index": 7, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 243.528, + "index": 8, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 437.592, + "y": 247.528, + "index": 9, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1772 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1774 + }, + "max": { + "#": 1775 + } + }, + { + "x": 422.376, + "y": 242 + }, + { + "x": 437.592, + "y": 258 + }, + { + "x": 429.984, + "y": 250 + }, + [ + { + "#": 1778 + }, + { + "#": 1779 + }, + { + "#": 1780 + }, + { + "#": 1781 + }, + { + "#": 1782 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 57, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1784 + }, + "angle": 0, + "vertices": { + "#": 1785 + }, + "position": { + "#": 1796 + }, + "force": { + "#": 1797 + }, + "torque": 0, + "positionImpulse": { + "#": 1798 + }, + "constraintImpulse": { + "#": 1799 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1800 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1801 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1802 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1804 + }, + "positionPrev": { + "#": 1807 + }, + "anglePrev": 0, + "axes": { + "#": 1808 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1783 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1783 + } + ], + [ + { + "#": 1786 + }, + { + "#": 1787 + }, + { + "#": 1788 + }, + { + "#": 1789 + }, + { + "#": 1790 + }, + { + "#": 1791 + }, + { + "#": 1792 + }, + { + "#": 1793 + }, + { + "#": 1794 + }, + { + "#": 1795 + } + ], + { + "x": 457.808, + "y": 252.472, + "index": 0, + "body": { + "#": 1783 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 256.472, + "index": 1, + "body": { + "#": 1783 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 258, + "index": 2, + "body": { + "#": 1783 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 256.472, + "index": 3, + "body": { + "#": 1783 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 252.472, + "index": 4, + "body": { + "#": 1783 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 247.528, + "index": 5, + "body": { + "#": 1783 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 243.528, + "index": 6, + "body": { + "#": 1783 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 242, + "index": 7, + "body": { + "#": 1783 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 243.528, + "index": 8, + "body": { + "#": 1783 + }, + "isInternal": false + }, + { + "x": 457.808, + "y": 247.528, + "index": 9, + "body": { + "#": 1783 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1803 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1805 + }, + "max": { + "#": 1806 + } + }, + { + "x": 442.592, + "y": 242 + }, + { + "x": 457.808, + "y": 258 + }, + { + "x": 450.2, + "y": 250 + }, + [ + { + "#": 1809 + }, + { + "#": 1810 + }, + { + "#": 1811 + }, + { + "#": 1812 + }, + { + "#": 1813 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 58, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1815 + }, + "angle": 0, + "vertices": { + "#": 1816 + }, + "position": { + "#": 1827 + }, + "force": { + "#": 1828 + }, + "torque": 0, + "positionImpulse": { + "#": 1829 + }, + "constraintImpulse": { + "#": 1830 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1831 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1832 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1833 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1835 + }, + "positionPrev": { + "#": 1838 + }, + "anglePrev": 0, + "axes": { + "#": 1839 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1814 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1814 + } + ], + [ + { + "#": 1817 + }, + { + "#": 1818 + }, + { + "#": 1819 + }, + { + "#": 1820 + }, + { + "#": 1821 + }, + { + "#": 1822 + }, + { + "#": 1823 + }, + { + "#": 1824 + }, + { + "#": 1825 + }, + { + "#": 1826 + } + ], + { + "x": 478.024, + "y": 252.472, + "index": 0, + "body": { + "#": 1814 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 256.472, + "index": 1, + "body": { + "#": 1814 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 258, + "index": 2, + "body": { + "#": 1814 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 256.472, + "index": 3, + "body": { + "#": 1814 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 252.472, + "index": 4, + "body": { + "#": 1814 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 247.528, + "index": 5, + "body": { + "#": 1814 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 243.528, + "index": 6, + "body": { + "#": 1814 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 242, + "index": 7, + "body": { + "#": 1814 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 243.528, + "index": 8, + "body": { + "#": 1814 + }, + "isInternal": false + }, + { + "x": 478.024, + "y": 247.528, + "index": 9, + "body": { + "#": 1814 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1834 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1836 + }, + "max": { + "#": 1837 + } + }, + { + "x": 462.808, + "y": 242 + }, + { + "x": 478.024, + "y": 258 + }, + { + "x": 470.416, + "y": 250 + }, + [ + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + }, + { + "#": 1844 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 59, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1846 + }, + "angle": 0, + "vertices": { + "#": 1847 + }, + "position": { + "#": 1858 + }, + "force": { + "#": 1859 + }, + "torque": 0, + "positionImpulse": { + "#": 1860 + }, + "constraintImpulse": { + "#": 1861 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1862 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1863 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1864 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1866 + }, + "positionPrev": { + "#": 1869 + }, + "anglePrev": 0, + "axes": { + "#": 1870 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1845 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1845 + } + ], + [ + { + "#": 1848 + }, + { + "#": 1849 + }, + { + "#": 1850 + }, + { + "#": 1851 + }, + { + "#": 1852 + }, + { + "#": 1853 + }, + { + "#": 1854 + }, + { + "#": 1855 + }, + { + "#": 1856 + }, + { + "#": 1857 + } + ], + { + "x": 498.24, + "y": 252.472, + "index": 0, + "body": { + "#": 1845 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 256.472, + "index": 1, + "body": { + "#": 1845 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 258, + "index": 2, + "body": { + "#": 1845 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 256.472, + "index": 3, + "body": { + "#": 1845 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 252.472, + "index": 4, + "body": { + "#": 1845 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 247.528, + "index": 5, + "body": { + "#": 1845 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 243.528, + "index": 6, + "body": { + "#": 1845 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 242, + "index": 7, + "body": { + "#": 1845 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 243.528, + "index": 8, + "body": { + "#": 1845 + }, + "isInternal": false + }, + { + "x": 498.24, + "y": 247.528, + "index": 9, + "body": { + "#": 1845 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1865 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1867 + }, + "max": { + "#": 1868 + } + }, + { + "x": 483.024, + "y": 242 + }, + { + "x": 498.24, + "y": 258 + }, + { + "x": 490.632, + "y": 250 + }, + [ + { + "#": 1871 + }, + { + "#": 1872 + }, + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 60, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1877 + }, + "angle": 0, + "vertices": { + "#": 1878 + }, + "position": { + "#": 1889 + }, + "force": { + "#": 1890 + }, + "torque": 0, + "positionImpulse": { + "#": 1891 + }, + "constraintImpulse": { + "#": 1892 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1893 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1894 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1895 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1897 + }, + "positionPrev": { + "#": 1900 + }, + "anglePrev": 0, + "axes": { + "#": 1901 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1876 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1876 + } + ], + [ + { + "#": 1879 + }, + { + "#": 1880 + }, + { + "#": 1881 + }, + { + "#": 1882 + }, + { + "#": 1883 + }, + { + "#": 1884 + }, + { + "#": 1885 + }, + { + "#": 1886 + }, + { + "#": 1887 + }, + { + "#": 1888 + } + ], + { + "x": 518.456, + "y": 252.472, + "index": 0, + "body": { + "#": 1876 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 256.472, + "index": 1, + "body": { + "#": 1876 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 258, + "index": 2, + "body": { + "#": 1876 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 256.472, + "index": 3, + "body": { + "#": 1876 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 252.472, + "index": 4, + "body": { + "#": 1876 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 247.528, + "index": 5, + "body": { + "#": 1876 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 243.528, + "index": 6, + "body": { + "#": 1876 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 242, + "index": 7, + "body": { + "#": 1876 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 243.528, + "index": 8, + "body": { + "#": 1876 + }, + "isInternal": false + }, + { + "x": 518.456, + "y": 247.528, + "index": 9, + "body": { + "#": 1876 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1896 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1898 + }, + "max": { + "#": 1899 + } + }, + { + "x": 503.24, + "y": 242 + }, + { + "x": 518.456, + "y": 258 + }, + { + "x": 510.848, + "y": 250 + }, + [ + { + "#": 1902 + }, + { + "#": 1903 + }, + { + "#": 1904 + }, + { + "#": 1905 + }, + { + "#": 1906 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 61, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1908 + }, + "angle": 0, + "vertices": { + "#": 1909 + }, + "position": { + "#": 1920 + }, + "force": { + "#": 1921 + }, + "torque": 0, + "positionImpulse": { + "#": 1922 + }, + "constraintImpulse": { + "#": 1923 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1924 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1925 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1926 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1928 + }, + "positionPrev": { + "#": 1931 + }, + "anglePrev": 0, + "axes": { + "#": 1932 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1907 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1907 + } + ], + [ + { + "#": 1910 + }, + { + "#": 1911 + }, + { + "#": 1912 + }, + { + "#": 1913 + }, + { + "#": 1914 + }, + { + "#": 1915 + }, + { + "#": 1916 + }, + { + "#": 1917 + }, + { + "#": 1918 + }, + { + "#": 1919 + } + ], + { + "x": 538.672, + "y": 252.472, + "index": 0, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 256.472, + "index": 1, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 258, + "index": 2, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 256.472, + "index": 3, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 252.472, + "index": 4, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 247.528, + "index": 5, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 243.528, + "index": 6, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 242, + "index": 7, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 243.528, + "index": 8, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 538.672, + "y": 247.528, + "index": 9, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1927 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1929 + }, + "max": { + "#": 1930 + } + }, + { + "x": 523.456, + "y": 242 + }, + { + "x": 538.672, + "y": 258 + }, + { + "x": 531.064, + "y": 250 + }, + [ + { + "#": 1933 + }, + { + "#": 1934 + }, + { + "#": 1935 + }, + { + "#": 1936 + }, + { + "#": 1937 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 62, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1939 + }, + "angle": 0, + "vertices": { + "#": 1940 + }, + "position": { + "#": 1951 + }, + "force": { + "#": 1952 + }, + "torque": 0, + "positionImpulse": { + "#": 1953 + }, + "constraintImpulse": { + "#": 1954 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1955 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1956 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1957 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1959 + }, + "positionPrev": { + "#": 1962 + }, + "anglePrev": 0, + "axes": { + "#": 1963 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1938 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1938 + } + ], + [ + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + }, + { + "#": 1944 + }, + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + }, + { + "#": 1948 + }, + { + "#": 1949 + }, + { + "#": 1950 + } + ], + { + "x": 558.888, + "y": 252.472, + "index": 0, + "body": { + "#": 1938 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 256.472, + "index": 1, + "body": { + "#": 1938 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 258, + "index": 2, + "body": { + "#": 1938 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 256.472, + "index": 3, + "body": { + "#": 1938 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 252.472, + "index": 4, + "body": { + "#": 1938 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 247.528, + "index": 5, + "body": { + "#": 1938 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 243.528, + "index": 6, + "body": { + "#": 1938 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 242, + "index": 7, + "body": { + "#": 1938 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 243.528, + "index": 8, + "body": { + "#": 1938 + }, + "isInternal": false + }, + { + "x": 558.888, + "y": 247.528, + "index": 9, + "body": { + "#": 1938 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1958 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1960 + }, + "max": { + "#": 1961 + } + }, + { + "x": 543.672, + "y": 242 + }, + { + "x": 558.888, + "y": 258 + }, + { + "x": 551.28, + "y": 250 + }, + [ + { + "#": 1964 + }, + { + "#": 1965 + }, + { + "#": 1966 + }, + { + "#": 1967 + }, + { + "#": 1968 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 63, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1970 + }, + "angle": 0, + "vertices": { + "#": 1971 + }, + "position": { + "#": 1982 + }, + "force": { + "#": 1983 + }, + "torque": 0, + "positionImpulse": { + "#": 1984 + }, + "constraintImpulse": { + "#": 1985 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1986 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1987 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1988 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1990 + }, + "positionPrev": { + "#": 1993 + }, + "anglePrev": 0, + "axes": { + "#": 1994 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1969 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1969 + } + ], + [ + { + "#": 1972 + }, + { + "#": 1973 + }, + { + "#": 1974 + }, + { + "#": 1975 + }, + { + "#": 1976 + }, + { + "#": 1977 + }, + { + "#": 1978 + }, + { + "#": 1979 + }, + { + "#": 1980 + }, + { + "#": 1981 + } + ], + { + "x": 579.104, + "y": 252.472, + "index": 0, + "body": { + "#": 1969 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 256.472, + "index": 1, + "body": { + "#": 1969 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 258, + "index": 2, + "body": { + "#": 1969 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 256.472, + "index": 3, + "body": { + "#": 1969 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 252.472, + "index": 4, + "body": { + "#": 1969 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 247.528, + "index": 5, + "body": { + "#": 1969 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 243.528, + "index": 6, + "body": { + "#": 1969 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 242, + "index": 7, + "body": { + "#": 1969 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 243.528, + "index": 8, + "body": { + "#": 1969 + }, + "isInternal": false + }, + { + "x": 579.104, + "y": 247.528, + "index": 9, + "body": { + "#": 1969 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1989 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1991 + }, + "max": { + "#": 1992 + } + }, + { + "x": 563.888, + "y": 242 + }, + { + "x": 579.104, + "y": 258 + }, + { + "x": 571.496, + "y": 250 + }, + [ + { + "#": 1995 + }, + { + "#": 1996 + }, + { + "#": 1997 + }, + { + "#": 1998 + }, + { + "#": 1999 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 64, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2001 + }, + "angle": 0, + "vertices": { + "#": 2002 + }, + "position": { + "#": 2013 + }, + "force": { + "#": 2014 + }, + "torque": 0, + "positionImpulse": { + "#": 2015 + }, + "constraintImpulse": { + "#": 2016 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2017 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2018 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2019 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2021 + }, + "positionPrev": { + "#": 2024 + }, + "anglePrev": 0, + "axes": { + "#": 2025 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2000 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2000 + } + ], + [ + { + "#": 2003 + }, + { + "#": 2004 + }, + { + "#": 2005 + }, + { + "#": 2006 + }, + { + "#": 2007 + }, + { + "#": 2008 + }, + { + "#": 2009 + }, + { + "#": 2010 + }, + { + "#": 2011 + }, + { + "#": 2012 + } + ], + { + "x": 599.32, + "y": 252.472, + "index": 0, + "body": { + "#": 2000 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 256.472, + "index": 1, + "body": { + "#": 2000 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 258, + "index": 2, + "body": { + "#": 2000 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 256.472, + "index": 3, + "body": { + "#": 2000 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 252.472, + "index": 4, + "body": { + "#": 2000 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 247.528, + "index": 5, + "body": { + "#": 2000 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 243.528, + "index": 6, + "body": { + "#": 2000 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 242, + "index": 7, + "body": { + "#": 2000 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 243.528, + "index": 8, + "body": { + "#": 2000 + }, + "isInternal": false + }, + { + "x": 599.32, + "y": 247.528, + "index": 9, + "body": { + "#": 2000 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2020 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2022 + }, + "max": { + "#": 2023 + } + }, + { + "x": 584.104, + "y": 242 + }, + { + "x": 599.32, + "y": 258 + }, + { + "x": 591.712, + "y": 250 + }, + [ + { + "#": 2026 + }, + { + "#": 2027 + }, + { + "#": 2028 + }, + { + "#": 2029 + }, + { + "#": 2030 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 65, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2032 + }, + "angle": 0, + "vertices": { + "#": 2033 + }, + "position": { + "#": 2044 + }, + "force": { + "#": 2045 + }, + "torque": 0, + "positionImpulse": { + "#": 2046 + }, + "constraintImpulse": { + "#": 2047 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2048 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2049 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2050 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2052 + }, + "positionPrev": { + "#": 2055 + }, + "anglePrev": 0, + "axes": { + "#": 2056 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2031 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2031 + } + ], + [ + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + }, + { + "#": 2038 + }, + { + "#": 2039 + }, + { + "#": 2040 + }, + { + "#": 2041 + }, + { + "#": 2042 + }, + { + "#": 2043 + } + ], + { + "x": 215.216, + "y": 273.472, + "index": 0, + "body": { + "#": 2031 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 277.472, + "index": 1, + "body": { + "#": 2031 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 279, + "index": 2, + "body": { + "#": 2031 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 277.472, + "index": 3, + "body": { + "#": 2031 + }, + "isInternal": false + }, + { + "x": 200, + "y": 273.472, + "index": 4, + "body": { + "#": 2031 + }, + "isInternal": false + }, + { + "x": 200, + "y": 268.528, + "index": 5, + "body": { + "#": 2031 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 264.528, + "index": 6, + "body": { + "#": 2031 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 263, + "index": 7, + "body": { + "#": 2031 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 264.528, + "index": 8, + "body": { + "#": 2031 + }, + "isInternal": false + }, + { + "x": 215.216, + "y": 268.528, + "index": 9, + "body": { + "#": 2031 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2051 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2053 + }, + "max": { + "#": 2054 + } + }, + { + "x": 200, + "y": 263 + }, + { + "x": 215.216, + "y": 279 + }, + { + "x": 207.608, + "y": 271 + }, + [ + { + "#": 2057 + }, + { + "#": 2058 + }, + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 66, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2063 + }, + "angle": 0, + "vertices": { + "#": 2064 + }, + "position": { + "#": 2075 + }, + "force": { + "#": 2076 + }, + "torque": 0, + "positionImpulse": { + "#": 2077 + }, + "constraintImpulse": { + "#": 2078 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2079 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2080 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2081 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2083 + }, + "positionPrev": { + "#": 2086 + }, + "anglePrev": 0, + "axes": { + "#": 2087 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2062 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2062 + } + ], + [ + { + "#": 2065 + }, + { + "#": 2066 + }, + { + "#": 2067 + }, + { + "#": 2068 + }, + { + "#": 2069 + }, + { + "#": 2070 + }, + { + "#": 2071 + }, + { + "#": 2072 + }, + { + "#": 2073 + }, + { + "#": 2074 + } + ], + { + "x": 235.432, + "y": 273.472, + "index": 0, + "body": { + "#": 2062 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 277.472, + "index": 1, + "body": { + "#": 2062 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 279, + "index": 2, + "body": { + "#": 2062 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 277.472, + "index": 3, + "body": { + "#": 2062 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 273.472, + "index": 4, + "body": { + "#": 2062 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 268.528, + "index": 5, + "body": { + "#": 2062 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 264.528, + "index": 6, + "body": { + "#": 2062 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 263, + "index": 7, + "body": { + "#": 2062 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 264.528, + "index": 8, + "body": { + "#": 2062 + }, + "isInternal": false + }, + { + "x": 235.432, + "y": 268.528, + "index": 9, + "body": { + "#": 2062 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2082 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2084 + }, + "max": { + "#": 2085 + } + }, + { + "x": 220.216, + "y": 263 + }, + { + "x": 235.432, + "y": 279 + }, + { + "x": 227.824, + "y": 271 + }, + [ + { + "#": 2088 + }, + { + "#": 2089 + }, + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 67, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2094 + }, + "angle": 0, + "vertices": { + "#": 2095 + }, + "position": { + "#": 2106 + }, + "force": { + "#": 2107 + }, + "torque": 0, + "positionImpulse": { + "#": 2108 + }, + "constraintImpulse": { + "#": 2109 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2110 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2111 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2112 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2114 + }, + "positionPrev": { + "#": 2117 + }, + "anglePrev": 0, + "axes": { + "#": 2118 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2093 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2093 + } + ], + [ + { + "#": 2096 + }, + { + "#": 2097 + }, + { + "#": 2098 + }, + { + "#": 2099 + }, + { + "#": 2100 + }, + { + "#": 2101 + }, + { + "#": 2102 + }, + { + "#": 2103 + }, + { + "#": 2104 + }, + { + "#": 2105 + } + ], + { + "x": 255.648, + "y": 273.472, + "index": 0, + "body": { + "#": 2093 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 277.472, + "index": 1, + "body": { + "#": 2093 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 279, + "index": 2, + "body": { + "#": 2093 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 277.472, + "index": 3, + "body": { + "#": 2093 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 273.472, + "index": 4, + "body": { + "#": 2093 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 268.528, + "index": 5, + "body": { + "#": 2093 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 264.528, + "index": 6, + "body": { + "#": 2093 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 263, + "index": 7, + "body": { + "#": 2093 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 264.528, + "index": 8, + "body": { + "#": 2093 + }, + "isInternal": false + }, + { + "x": 255.648, + "y": 268.528, + "index": 9, + "body": { + "#": 2093 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2113 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2115 + }, + "max": { + "#": 2116 + } + }, + { + "x": 240.432, + "y": 263 + }, + { + "x": 255.648, + "y": 279 + }, + { + "x": 248.04, + "y": 271 + }, + [ + { + "#": 2119 + }, + { + "#": 2120 + }, + { + "#": 2121 + }, + { + "#": 2122 + }, + { + "#": 2123 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 68, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2125 + }, + "angle": 0, + "vertices": { + "#": 2126 + }, + "position": { + "#": 2137 + }, + "force": { + "#": 2138 + }, + "torque": 0, + "positionImpulse": { + "#": 2139 + }, + "constraintImpulse": { + "#": 2140 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2141 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2142 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2143 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2145 + }, + "positionPrev": { + "#": 2148 + }, + "anglePrev": 0, + "axes": { + "#": 2149 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2124 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2124 + } + ], + [ + { + "#": 2127 + }, + { + "#": 2128 + }, + { + "#": 2129 + }, + { + "#": 2130 + }, + { + "#": 2131 + }, + { + "#": 2132 + }, + { + "#": 2133 + }, + { + "#": 2134 + }, + { + "#": 2135 + }, + { + "#": 2136 + } + ], + { + "x": 275.864, + "y": 273.472, + "index": 0, + "body": { + "#": 2124 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 277.472, + "index": 1, + "body": { + "#": 2124 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 279, + "index": 2, + "body": { + "#": 2124 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 277.472, + "index": 3, + "body": { + "#": 2124 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 273.472, + "index": 4, + "body": { + "#": 2124 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 268.528, + "index": 5, + "body": { + "#": 2124 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 264.528, + "index": 6, + "body": { + "#": 2124 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 263, + "index": 7, + "body": { + "#": 2124 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 264.528, + "index": 8, + "body": { + "#": 2124 + }, + "isInternal": false + }, + { + "x": 275.864, + "y": 268.528, + "index": 9, + "body": { + "#": 2124 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2144 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2146 + }, + "max": { + "#": 2147 + } + }, + { + "x": 260.648, + "y": 263 + }, + { + "x": 275.864, + "y": 279 + }, + { + "x": 268.256, + "y": 271 + }, + [ + { + "#": 2150 + }, + { + "#": 2151 + }, + { + "#": 2152 + }, + { + "#": 2153 + }, + { + "#": 2154 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 69, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2156 + }, + "angle": 0, + "vertices": { + "#": 2157 + }, + "position": { + "#": 2168 + }, + "force": { + "#": 2169 + }, + "torque": 0, + "positionImpulse": { + "#": 2170 + }, + "constraintImpulse": { + "#": 2171 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2172 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2173 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2174 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2176 + }, + "positionPrev": { + "#": 2179 + }, + "anglePrev": 0, + "axes": { + "#": 2180 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2155 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2155 + } + ], + [ + { + "#": 2158 + }, + { + "#": 2159 + }, + { + "#": 2160 + }, + { + "#": 2161 + }, + { + "#": 2162 + }, + { + "#": 2163 + }, + { + "#": 2164 + }, + { + "#": 2165 + }, + { + "#": 2166 + }, + { + "#": 2167 + } + ], + { + "x": 296.08, + "y": 273.472, + "index": 0, + "body": { + "#": 2155 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 277.472, + "index": 1, + "body": { + "#": 2155 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 279, + "index": 2, + "body": { + "#": 2155 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 277.472, + "index": 3, + "body": { + "#": 2155 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 273.472, + "index": 4, + "body": { + "#": 2155 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 268.528, + "index": 5, + "body": { + "#": 2155 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 264.528, + "index": 6, + "body": { + "#": 2155 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 263, + "index": 7, + "body": { + "#": 2155 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 264.528, + "index": 8, + "body": { + "#": 2155 + }, + "isInternal": false + }, + { + "x": 296.08, + "y": 268.528, + "index": 9, + "body": { + "#": 2155 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2175 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2177 + }, + "max": { + "#": 2178 + } + }, + { + "x": 280.864, + "y": 263 + }, + { + "x": 296.08, + "y": 279 + }, + { + "x": 288.472, + "y": 271 + }, + [ + { + "#": 2181 + }, + { + "#": 2182 + }, + { + "#": 2183 + }, + { + "#": 2184 + }, + { + "#": 2185 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 70, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2187 + }, + "angle": 0, + "vertices": { + "#": 2188 + }, + "position": { + "#": 2199 + }, + "force": { + "#": 2200 + }, + "torque": 0, + "positionImpulse": { + "#": 2201 + }, + "constraintImpulse": { + "#": 2202 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2203 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2204 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2205 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2207 + }, + "positionPrev": { + "#": 2210 + }, + "anglePrev": 0, + "axes": { + "#": 2211 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2186 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2186 + } + ], + [ + { + "#": 2189 + }, + { + "#": 2190 + }, + { + "#": 2191 + }, + { + "#": 2192 + }, + { + "#": 2193 + }, + { + "#": 2194 + }, + { + "#": 2195 + }, + { + "#": 2196 + }, + { + "#": 2197 + }, + { + "#": 2198 + } + ], + { + "x": 316.296, + "y": 273.472, + "index": 0, + "body": { + "#": 2186 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 277.472, + "index": 1, + "body": { + "#": 2186 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 279, + "index": 2, + "body": { + "#": 2186 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 277.472, + "index": 3, + "body": { + "#": 2186 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 273.472, + "index": 4, + "body": { + "#": 2186 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 268.528, + "index": 5, + "body": { + "#": 2186 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 264.528, + "index": 6, + "body": { + "#": 2186 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 263, + "index": 7, + "body": { + "#": 2186 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 264.528, + "index": 8, + "body": { + "#": 2186 + }, + "isInternal": false + }, + { + "x": 316.296, + "y": 268.528, + "index": 9, + "body": { + "#": 2186 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2206 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2208 + }, + "max": { + "#": 2209 + } + }, + { + "x": 301.08, + "y": 263 + }, + { + "x": 316.296, + "y": 279 + }, + { + "x": 308.688, + "y": 271 + }, + [ + { + "#": 2212 + }, + { + "#": 2213 + }, + { + "#": 2214 + }, + { + "#": 2215 + }, + { + "#": 2216 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 71, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2218 + }, + "angle": 0, + "vertices": { + "#": 2219 + }, + "position": { + "#": 2230 + }, + "force": { + "#": 2231 + }, + "torque": 0, + "positionImpulse": { + "#": 2232 + }, + "constraintImpulse": { + "#": 2233 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2234 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2235 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2236 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2238 + }, + "positionPrev": { + "#": 2241 + }, + "anglePrev": 0, + "axes": { + "#": 2242 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2217 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2217 + } + ], + [ + { + "#": 2220 + }, + { + "#": 2221 + }, + { + "#": 2222 + }, + { + "#": 2223 + }, + { + "#": 2224 + }, + { + "#": 2225 + }, + { + "#": 2226 + }, + { + "#": 2227 + }, + { + "#": 2228 + }, + { + "#": 2229 + } + ], + { + "x": 336.512, + "y": 273.472, + "index": 0, + "body": { + "#": 2217 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 277.472, + "index": 1, + "body": { + "#": 2217 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 279, + "index": 2, + "body": { + "#": 2217 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 277.472, + "index": 3, + "body": { + "#": 2217 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 273.472, + "index": 4, + "body": { + "#": 2217 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 268.528, + "index": 5, + "body": { + "#": 2217 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 264.528, + "index": 6, + "body": { + "#": 2217 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 263, + "index": 7, + "body": { + "#": 2217 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 264.528, + "index": 8, + "body": { + "#": 2217 + }, + "isInternal": false + }, + { + "x": 336.512, + "y": 268.528, + "index": 9, + "body": { + "#": 2217 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2237 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2239 + }, + "max": { + "#": 2240 + } + }, + { + "x": 321.296, + "y": 263 + }, + { + "x": 336.512, + "y": 279 + }, + { + "x": 328.904, + "y": 271 + }, + [ + { + "#": 2243 + }, + { + "#": 2244 + }, + { + "#": 2245 + }, + { + "#": 2246 + }, + { + "#": 2247 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 72, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2249 + }, + "angle": 0, + "vertices": { + "#": 2250 + }, + "position": { + "#": 2261 + }, + "force": { + "#": 2262 + }, + "torque": 0, + "positionImpulse": { + "#": 2263 + }, + "constraintImpulse": { + "#": 2264 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2265 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2266 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2267 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2269 + }, + "positionPrev": { + "#": 2272 + }, + "anglePrev": 0, + "axes": { + "#": 2273 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2248 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2248 + } + ], + [ + { + "#": 2251 + }, + { + "#": 2252 + }, + { + "#": 2253 + }, + { + "#": 2254 + }, + { + "#": 2255 + }, + { + "#": 2256 + }, + { + "#": 2257 + }, + { + "#": 2258 + }, + { + "#": 2259 + }, + { + "#": 2260 + } + ], + { + "x": 356.728, + "y": 273.472, + "index": 0, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 277.472, + "index": 1, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 279, + "index": 2, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 277.472, + "index": 3, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 273.472, + "index": 4, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 268.528, + "index": 5, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 264.528, + "index": 6, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 263, + "index": 7, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 264.528, + "index": 8, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 356.728, + "y": 268.528, + "index": 9, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2268 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2270 + }, + "max": { + "#": 2271 + } + }, + { + "x": 341.512, + "y": 263 + }, + { + "x": 356.728, + "y": 279 + }, + { + "x": 349.12, + "y": 271 + }, + [ + { + "#": 2274 + }, + { + "#": 2275 + }, + { + "#": 2276 + }, + { + "#": 2277 + }, + { + "#": 2278 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 73, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2280 + }, + "angle": 0, + "vertices": { + "#": 2281 + }, + "position": { + "#": 2292 + }, + "force": { + "#": 2293 + }, + "torque": 0, + "positionImpulse": { + "#": 2294 + }, + "constraintImpulse": { + "#": 2295 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2296 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2297 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2298 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2300 + }, + "positionPrev": { + "#": 2303 + }, + "anglePrev": 0, + "axes": { + "#": 2304 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2279 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2279 + } + ], + [ + { + "#": 2282 + }, + { + "#": 2283 + }, + { + "#": 2284 + }, + { + "#": 2285 + }, + { + "#": 2286 + }, + { + "#": 2287 + }, + { + "#": 2288 + }, + { + "#": 2289 + }, + { + "#": 2290 + }, + { + "#": 2291 + } + ], + { + "x": 376.944, + "y": 273.472, + "index": 0, + "body": { + "#": 2279 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 277.472, + "index": 1, + "body": { + "#": 2279 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 279, + "index": 2, + "body": { + "#": 2279 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 277.472, + "index": 3, + "body": { + "#": 2279 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 273.472, + "index": 4, + "body": { + "#": 2279 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 268.528, + "index": 5, + "body": { + "#": 2279 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 264.528, + "index": 6, + "body": { + "#": 2279 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 263, + "index": 7, + "body": { + "#": 2279 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 264.528, + "index": 8, + "body": { + "#": 2279 + }, + "isInternal": false + }, + { + "x": 376.944, + "y": 268.528, + "index": 9, + "body": { + "#": 2279 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2299 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2301 + }, + "max": { + "#": 2302 + } + }, + { + "x": 361.728, + "y": 263 + }, + { + "x": 376.944, + "y": 279 + }, + { + "x": 369.336, + "y": 271 + }, + [ + { + "#": 2305 + }, + { + "#": 2306 + }, + { + "#": 2307 + }, + { + "#": 2308 + }, + { + "#": 2309 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 74, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2311 + }, + "angle": 0, + "vertices": { + "#": 2312 + }, + "position": { + "#": 2323 + }, + "force": { + "#": 2324 + }, + "torque": 0, + "positionImpulse": { + "#": 2325 + }, + "constraintImpulse": { + "#": 2326 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2327 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2328 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2329 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2331 + }, + "positionPrev": { + "#": 2334 + }, + "anglePrev": 0, + "axes": { + "#": 2335 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2310 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2310 + } + ], + [ + { + "#": 2313 + }, + { + "#": 2314 + }, + { + "#": 2315 + }, + { + "#": 2316 + }, + { + "#": 2317 + }, + { + "#": 2318 + }, + { + "#": 2319 + }, + { + "#": 2320 + }, + { + "#": 2321 + }, + { + "#": 2322 + } + ], + { + "x": 397.16, + "y": 273.472, + "index": 0, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 277.472, + "index": 1, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 279, + "index": 2, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 277.472, + "index": 3, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 273.472, + "index": 4, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 268.528, + "index": 5, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 264.528, + "index": 6, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 263, + "index": 7, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 264.528, + "index": 8, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 397.16, + "y": 268.528, + "index": 9, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2330 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2332 + }, + "max": { + "#": 2333 + } + }, + { + "x": 381.944, + "y": 263 + }, + { + "x": 397.16, + "y": 279 + }, + { + "x": 389.552, + "y": 271 + }, + [ + { + "#": 2336 + }, + { + "#": 2337 + }, + { + "#": 2338 + }, + { + "#": 2339 + }, + { + "#": 2340 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 75, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2342 + }, + "angle": 0, + "vertices": { + "#": 2343 + }, + "position": { + "#": 2354 + }, + "force": { + "#": 2355 + }, + "torque": 0, + "positionImpulse": { + "#": 2356 + }, + "constraintImpulse": { + "#": 2357 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2358 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2359 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2360 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2362 + }, + "positionPrev": { + "#": 2365 + }, + "anglePrev": 0, + "axes": { + "#": 2366 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2341 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2341 + } + ], + [ + { + "#": 2344 + }, + { + "#": 2345 + }, + { + "#": 2346 + }, + { + "#": 2347 + }, + { + "#": 2348 + }, + { + "#": 2349 + }, + { + "#": 2350 + }, + { + "#": 2351 + }, + { + "#": 2352 + }, + { + "#": 2353 + } + ], + { + "x": 417.376, + "y": 273.472, + "index": 0, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 277.472, + "index": 1, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 279, + "index": 2, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 277.472, + "index": 3, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 273.472, + "index": 4, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 268.528, + "index": 5, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 264.528, + "index": 6, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 263, + "index": 7, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 264.528, + "index": 8, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 417.376, + "y": 268.528, + "index": 9, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2361 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2363 + }, + "max": { + "#": 2364 + } + }, + { + "x": 402.16, + "y": 263 + }, + { + "x": 417.376, + "y": 279 + }, + { + "x": 409.768, + "y": 271 + }, + [ + { + "#": 2367 + }, + { + "#": 2368 + }, + { + "#": 2369 + }, + { + "#": 2370 + }, + { + "#": 2371 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 76, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2373 + }, + "angle": 0, + "vertices": { + "#": 2374 + }, + "position": { + "#": 2385 + }, + "force": { + "#": 2386 + }, + "torque": 0, + "positionImpulse": { + "#": 2387 + }, + "constraintImpulse": { + "#": 2388 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2389 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2390 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2391 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2393 + }, + "positionPrev": { + "#": 2396 + }, + "anglePrev": 0, + "axes": { + "#": 2397 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2372 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2372 + } + ], + [ + { + "#": 2375 + }, + { + "#": 2376 + }, + { + "#": 2377 + }, + { + "#": 2378 + }, + { + "#": 2379 + }, + { + "#": 2380 + }, + { + "#": 2381 + }, + { + "#": 2382 + }, + { + "#": 2383 + }, + { + "#": 2384 + } + ], + { + "x": 437.592, + "y": 273.472, + "index": 0, + "body": { + "#": 2372 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 277.472, + "index": 1, + "body": { + "#": 2372 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 279, + "index": 2, + "body": { + "#": 2372 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 277.472, + "index": 3, + "body": { + "#": 2372 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 273.472, + "index": 4, + "body": { + "#": 2372 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 268.528, + "index": 5, + "body": { + "#": 2372 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 264.528, + "index": 6, + "body": { + "#": 2372 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 263, + "index": 7, + "body": { + "#": 2372 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 264.528, + "index": 8, + "body": { + "#": 2372 + }, + "isInternal": false + }, + { + "x": 437.592, + "y": 268.528, + "index": 9, + "body": { + "#": 2372 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2392 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2394 + }, + "max": { + "#": 2395 + } + }, + { + "x": 422.376, + "y": 263 + }, + { + "x": 437.592, + "y": 279 + }, + { + "x": 429.984, + "y": 271 + }, + [ + { + "#": 2398 + }, + { + "#": 2399 + }, + { + "#": 2400 + }, + { + "#": 2401 + }, + { + "#": 2402 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 77, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2404 + }, + "angle": 0, + "vertices": { + "#": 2405 + }, + "position": { + "#": 2416 + }, + "force": { + "#": 2417 + }, + "torque": 0, + "positionImpulse": { + "#": 2418 + }, + "constraintImpulse": { + "#": 2419 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2420 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2421 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2422 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2424 + }, + "positionPrev": { + "#": 2427 + }, + "anglePrev": 0, + "axes": { + "#": 2428 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2403 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2403 + } + ], + [ + { + "#": 2406 + }, + { + "#": 2407 + }, + { + "#": 2408 + }, + { + "#": 2409 + }, + { + "#": 2410 + }, + { + "#": 2411 + }, + { + "#": 2412 + }, + { + "#": 2413 + }, + { + "#": 2414 + }, + { + "#": 2415 + } + ], + { + "x": 457.808, + "y": 273.472, + "index": 0, + "body": { + "#": 2403 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 277.472, + "index": 1, + "body": { + "#": 2403 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 279, + "index": 2, + "body": { + "#": 2403 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 277.472, + "index": 3, + "body": { + "#": 2403 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 273.472, + "index": 4, + "body": { + "#": 2403 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 268.528, + "index": 5, + "body": { + "#": 2403 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 264.528, + "index": 6, + "body": { + "#": 2403 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 263, + "index": 7, + "body": { + "#": 2403 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 264.528, + "index": 8, + "body": { + "#": 2403 + }, + "isInternal": false + }, + { + "x": 457.808, + "y": 268.528, + "index": 9, + "body": { + "#": 2403 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2423 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2425 + }, + "max": { + "#": 2426 + } + }, + { + "x": 442.592, + "y": 263 + }, + { + "x": 457.808, + "y": 279 + }, + { + "x": 450.2, + "y": 271 + }, + [ + { + "#": 2429 + }, + { + "#": 2430 + }, + { + "#": 2431 + }, + { + "#": 2432 + }, + { + "#": 2433 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 78, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2435 + }, + "angle": 0, + "vertices": { + "#": 2436 + }, + "position": { + "#": 2447 + }, + "force": { + "#": 2448 + }, + "torque": 0, + "positionImpulse": { + "#": 2449 + }, + "constraintImpulse": { + "#": 2450 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2451 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2452 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2453 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2455 + }, + "positionPrev": { + "#": 2458 + }, + "anglePrev": 0, + "axes": { + "#": 2459 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2434 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2434 + } + ], + [ + { + "#": 2437 + }, + { + "#": 2438 + }, + { + "#": 2439 + }, + { + "#": 2440 + }, + { + "#": 2441 + }, + { + "#": 2442 + }, + { + "#": 2443 + }, + { + "#": 2444 + }, + { + "#": 2445 + }, + { + "#": 2446 + } + ], + { + "x": 478.024, + "y": 273.472, + "index": 0, + "body": { + "#": 2434 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 277.472, + "index": 1, + "body": { + "#": 2434 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 279, + "index": 2, + "body": { + "#": 2434 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 277.472, + "index": 3, + "body": { + "#": 2434 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 273.472, + "index": 4, + "body": { + "#": 2434 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 268.528, + "index": 5, + "body": { + "#": 2434 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 264.528, + "index": 6, + "body": { + "#": 2434 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 263, + "index": 7, + "body": { + "#": 2434 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 264.528, + "index": 8, + "body": { + "#": 2434 + }, + "isInternal": false + }, + { + "x": 478.024, + "y": 268.528, + "index": 9, + "body": { + "#": 2434 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2454 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2456 + }, + "max": { + "#": 2457 + } + }, + { + "x": 462.808, + "y": 263 + }, + { + "x": 478.024, + "y": 279 + }, + { + "x": 470.416, + "y": 271 + }, + [ + { + "#": 2460 + }, + { + "#": 2461 + }, + { + "#": 2462 + }, + { + "#": 2463 + }, + { + "#": 2464 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 79, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2466 + }, + "angle": 0, + "vertices": { + "#": 2467 + }, + "position": { + "#": 2478 + }, + "force": { + "#": 2479 + }, + "torque": 0, + "positionImpulse": { + "#": 2480 + }, + "constraintImpulse": { + "#": 2481 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2482 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2483 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2484 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2486 + }, + "positionPrev": { + "#": 2489 + }, + "anglePrev": 0, + "axes": { + "#": 2490 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2465 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2465 + } + ], + [ + { + "#": 2468 + }, + { + "#": 2469 + }, + { + "#": 2470 + }, + { + "#": 2471 + }, + { + "#": 2472 + }, + { + "#": 2473 + }, + { + "#": 2474 + }, + { + "#": 2475 + }, + { + "#": 2476 + }, + { + "#": 2477 + } + ], + { + "x": 498.24, + "y": 273.472, + "index": 0, + "body": { + "#": 2465 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 277.472, + "index": 1, + "body": { + "#": 2465 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 279, + "index": 2, + "body": { + "#": 2465 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 277.472, + "index": 3, + "body": { + "#": 2465 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 273.472, + "index": 4, + "body": { + "#": 2465 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 268.528, + "index": 5, + "body": { + "#": 2465 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 264.528, + "index": 6, + "body": { + "#": 2465 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 263, + "index": 7, + "body": { + "#": 2465 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 264.528, + "index": 8, + "body": { + "#": 2465 + }, + "isInternal": false + }, + { + "x": 498.24, + "y": 268.528, + "index": 9, + "body": { + "#": 2465 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2485 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2487 + }, + "max": { + "#": 2488 + } + }, + { + "x": 483.024, + "y": 263 + }, + { + "x": 498.24, + "y": 279 + }, + { + "x": 490.632, + "y": 271 + }, + [ + { + "#": 2491 + }, + { + "#": 2492 + }, + { + "#": 2493 + }, + { + "#": 2494 + }, + { + "#": 2495 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 80, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2497 + }, + "angle": 0, + "vertices": { + "#": 2498 + }, + "position": { + "#": 2509 + }, + "force": { + "#": 2510 + }, + "torque": 0, + "positionImpulse": { + "#": 2511 + }, + "constraintImpulse": { + "#": 2512 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2513 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2514 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2515 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2517 + }, + "positionPrev": { + "#": 2520 + }, + "anglePrev": 0, + "axes": { + "#": 2521 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2496 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2496 + } + ], + [ + { + "#": 2499 + }, + { + "#": 2500 + }, + { + "#": 2501 + }, + { + "#": 2502 + }, + { + "#": 2503 + }, + { + "#": 2504 + }, + { + "#": 2505 + }, + { + "#": 2506 + }, + { + "#": 2507 + }, + { + "#": 2508 + } + ], + { + "x": 518.456, + "y": 273.472, + "index": 0, + "body": { + "#": 2496 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 277.472, + "index": 1, + "body": { + "#": 2496 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 279, + "index": 2, + "body": { + "#": 2496 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 277.472, + "index": 3, + "body": { + "#": 2496 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 273.472, + "index": 4, + "body": { + "#": 2496 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 268.528, + "index": 5, + "body": { + "#": 2496 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 264.528, + "index": 6, + "body": { + "#": 2496 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 263, + "index": 7, + "body": { + "#": 2496 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 264.528, + "index": 8, + "body": { + "#": 2496 + }, + "isInternal": false + }, + { + "x": 518.456, + "y": 268.528, + "index": 9, + "body": { + "#": 2496 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2516 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2518 + }, + "max": { + "#": 2519 + } + }, + { + "x": 503.24, + "y": 263 + }, + { + "x": 518.456, + "y": 279 + }, + { + "x": 510.848, + "y": 271 + }, + [ + { + "#": 2522 + }, + { + "#": 2523 + }, + { + "#": 2524 + }, + { + "#": 2525 + }, + { + "#": 2526 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 81, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2528 + }, + "angle": 0, + "vertices": { + "#": 2529 + }, + "position": { + "#": 2540 + }, + "force": { + "#": 2541 + }, + "torque": 0, + "positionImpulse": { + "#": 2542 + }, + "constraintImpulse": { + "#": 2543 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2544 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2545 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2546 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2548 + }, + "positionPrev": { + "#": 2551 + }, + "anglePrev": 0, + "axes": { + "#": 2552 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2527 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2527 + } + ], + [ + { + "#": 2530 + }, + { + "#": 2531 + }, + { + "#": 2532 + }, + { + "#": 2533 + }, + { + "#": 2534 + }, + { + "#": 2535 + }, + { + "#": 2536 + }, + { + "#": 2537 + }, + { + "#": 2538 + }, + { + "#": 2539 + } + ], + { + "x": 538.672, + "y": 273.472, + "index": 0, + "body": { + "#": 2527 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 277.472, + "index": 1, + "body": { + "#": 2527 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 279, + "index": 2, + "body": { + "#": 2527 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 277.472, + "index": 3, + "body": { + "#": 2527 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 273.472, + "index": 4, + "body": { + "#": 2527 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 268.528, + "index": 5, + "body": { + "#": 2527 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 264.528, + "index": 6, + "body": { + "#": 2527 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 263, + "index": 7, + "body": { + "#": 2527 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 264.528, + "index": 8, + "body": { + "#": 2527 + }, + "isInternal": false + }, + { + "x": 538.672, + "y": 268.528, + "index": 9, + "body": { + "#": 2527 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2547 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2549 + }, + "max": { + "#": 2550 + } + }, + { + "x": 523.456, + "y": 263 + }, + { + "x": 538.672, + "y": 279 + }, + { + "x": 531.064, + "y": 271 + }, + [ + { + "#": 2553 + }, + { + "#": 2554 + }, + { + "#": 2555 + }, + { + "#": 2556 + }, + { + "#": 2557 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 82, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2559 + }, + "angle": 0, + "vertices": { + "#": 2560 + }, + "position": { + "#": 2571 + }, + "force": { + "#": 2572 + }, + "torque": 0, + "positionImpulse": { + "#": 2573 + }, + "constraintImpulse": { + "#": 2574 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2575 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2576 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2577 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2579 + }, + "positionPrev": { + "#": 2582 + }, + "anglePrev": 0, + "axes": { + "#": 2583 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2558 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2558 + } + ], + [ + { + "#": 2561 + }, + { + "#": 2562 + }, + { + "#": 2563 + }, + { + "#": 2564 + }, + { + "#": 2565 + }, + { + "#": 2566 + }, + { + "#": 2567 + }, + { + "#": 2568 + }, + { + "#": 2569 + }, + { + "#": 2570 + } + ], + { + "x": 558.888, + "y": 273.472, + "index": 0, + "body": { + "#": 2558 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 277.472, + "index": 1, + "body": { + "#": 2558 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 279, + "index": 2, + "body": { + "#": 2558 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 277.472, + "index": 3, + "body": { + "#": 2558 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 273.472, + "index": 4, + "body": { + "#": 2558 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 268.528, + "index": 5, + "body": { + "#": 2558 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 264.528, + "index": 6, + "body": { + "#": 2558 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 263, + "index": 7, + "body": { + "#": 2558 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 264.528, + "index": 8, + "body": { + "#": 2558 + }, + "isInternal": false + }, + { + "x": 558.888, + "y": 268.528, + "index": 9, + "body": { + "#": 2558 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2578 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2580 + }, + "max": { + "#": 2581 + } + }, + { + "x": 543.672, + "y": 263 + }, + { + "x": 558.888, + "y": 279 + }, + { + "x": 551.28, + "y": 271 + }, + [ + { + "#": 2584 + }, + { + "#": 2585 + }, + { + "#": 2586 + }, + { + "#": 2587 + }, + { + "#": 2588 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 83, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2590 + }, + "angle": 0, + "vertices": { + "#": 2591 + }, + "position": { + "#": 2602 + }, + "force": { + "#": 2603 + }, + "torque": 0, + "positionImpulse": { + "#": 2604 + }, + "constraintImpulse": { + "#": 2605 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2606 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2607 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2608 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2610 + }, + "positionPrev": { + "#": 2613 + }, + "anglePrev": 0, + "axes": { + "#": 2614 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2589 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2589 + } + ], + [ + { + "#": 2592 + }, + { + "#": 2593 + }, + { + "#": 2594 + }, + { + "#": 2595 + }, + { + "#": 2596 + }, + { + "#": 2597 + }, + { + "#": 2598 + }, + { + "#": 2599 + }, + { + "#": 2600 + }, + { + "#": 2601 + } + ], + { + "x": 579.104, + "y": 273.472, + "index": 0, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 277.472, + "index": 1, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 279, + "index": 2, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 277.472, + "index": 3, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 273.472, + "index": 4, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 268.528, + "index": 5, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 264.528, + "index": 6, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 263, + "index": 7, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 264.528, + "index": 8, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 579.104, + "y": 268.528, + "index": 9, + "body": { + "#": 2589 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2609 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2611 + }, + "max": { + "#": 2612 + } + }, + { + "x": 563.888, + "y": 263 + }, + { + "x": 579.104, + "y": 279 + }, + { + "x": 571.496, + "y": 271 + }, + [ + { + "#": 2615 + }, + { + "#": 2616 + }, + { + "#": 2617 + }, + { + "#": 2618 + }, + { + "#": 2619 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 84, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2621 + }, + "angle": 0, + "vertices": { + "#": 2622 + }, + "position": { + "#": 2633 + }, + "force": { + "#": 2634 + }, + "torque": 0, + "positionImpulse": { + "#": 2635 + }, + "constraintImpulse": { + "#": 2636 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2637 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2638 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2639 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2641 + }, + "positionPrev": { + "#": 2644 + }, + "anglePrev": 0, + "axes": { + "#": 2645 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2620 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2620 + } + ], + [ + { + "#": 2623 + }, + { + "#": 2624 + }, + { + "#": 2625 + }, + { + "#": 2626 + }, + { + "#": 2627 + }, + { + "#": 2628 + }, + { + "#": 2629 + }, + { + "#": 2630 + }, + { + "#": 2631 + }, + { + "#": 2632 + } + ], + { + "x": 599.32, + "y": 273.472, + "index": 0, + "body": { + "#": 2620 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 277.472, + "index": 1, + "body": { + "#": 2620 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 279, + "index": 2, + "body": { + "#": 2620 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 277.472, + "index": 3, + "body": { + "#": 2620 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 273.472, + "index": 4, + "body": { + "#": 2620 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 268.528, + "index": 5, + "body": { + "#": 2620 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 264.528, + "index": 6, + "body": { + "#": 2620 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 263, + "index": 7, + "body": { + "#": 2620 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 264.528, + "index": 8, + "body": { + "#": 2620 + }, + "isInternal": false + }, + { + "x": 599.32, + "y": 268.528, + "index": 9, + "body": { + "#": 2620 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 271 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2640 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2642 + }, + "max": { + "#": 2643 + } + }, + { + "x": 584.104, + "y": 263 + }, + { + "x": 599.32, + "y": 279 + }, + { + "x": 591.712, + "y": 271 + }, + [ + { + "#": 2646 + }, + { + "#": 2647 + }, + { + "#": 2648 + }, + { + "#": 2649 + }, + { + "#": 2650 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 85, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2652 + }, + "angle": 0, + "vertices": { + "#": 2653 + }, + "position": { + "#": 2664 + }, + "force": { + "#": 2665 + }, + "torque": 0, + "positionImpulse": { + "#": 2666 + }, + "constraintImpulse": { + "#": 2667 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2668 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2669 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2670 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2672 + }, + "positionPrev": { + "#": 2675 + }, + "anglePrev": 0, + "axes": { + "#": 2676 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2651 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2651 + } + ], + [ + { + "#": 2654 + }, + { + "#": 2655 + }, + { + "#": 2656 + }, + { + "#": 2657 + }, + { + "#": 2658 + }, + { + "#": 2659 + }, + { + "#": 2660 + }, + { + "#": 2661 + }, + { + "#": 2662 + }, + { + "#": 2663 + } + ], + { + "x": 215.216, + "y": 294.472, + "index": 0, + "body": { + "#": 2651 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 298.472, + "index": 1, + "body": { + "#": 2651 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 300, + "index": 2, + "body": { + "#": 2651 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 298.472, + "index": 3, + "body": { + "#": 2651 + }, + "isInternal": false + }, + { + "x": 200, + "y": 294.472, + "index": 4, + "body": { + "#": 2651 + }, + "isInternal": false + }, + { + "x": 200, + "y": 289.528, + "index": 5, + "body": { + "#": 2651 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 285.528, + "index": 6, + "body": { + "#": 2651 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 284, + "index": 7, + "body": { + "#": 2651 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 285.528, + "index": 8, + "body": { + "#": 2651 + }, + "isInternal": false + }, + { + "x": 215.216, + "y": 289.528, + "index": 9, + "body": { + "#": 2651 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2671 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2673 + }, + "max": { + "#": 2674 + } + }, + { + "x": 200, + "y": 284 + }, + { + "x": 215.216, + "y": 300 + }, + { + "x": 207.608, + "y": 292 + }, + [ + { + "#": 2677 + }, + { + "#": 2678 + }, + { + "#": 2679 + }, + { + "#": 2680 + }, + { + "#": 2681 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 86, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2683 + }, + "angle": 0, + "vertices": { + "#": 2684 + }, + "position": { + "#": 2695 + }, + "force": { + "#": 2696 + }, + "torque": 0, + "positionImpulse": { + "#": 2697 + }, + "constraintImpulse": { + "#": 2698 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2699 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2700 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2701 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2703 + }, + "positionPrev": { + "#": 2706 + }, + "anglePrev": 0, + "axes": { + "#": 2707 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2682 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2682 + } + ], + [ + { + "#": 2685 + }, + { + "#": 2686 + }, + { + "#": 2687 + }, + { + "#": 2688 + }, + { + "#": 2689 + }, + { + "#": 2690 + }, + { + "#": 2691 + }, + { + "#": 2692 + }, + { + "#": 2693 + }, + { + "#": 2694 + } + ], + { + "x": 235.432, + "y": 294.472, + "index": 0, + "body": { + "#": 2682 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 298.472, + "index": 1, + "body": { + "#": 2682 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 300, + "index": 2, + "body": { + "#": 2682 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 298.472, + "index": 3, + "body": { + "#": 2682 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 294.472, + "index": 4, + "body": { + "#": 2682 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 289.528, + "index": 5, + "body": { + "#": 2682 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 285.528, + "index": 6, + "body": { + "#": 2682 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 284, + "index": 7, + "body": { + "#": 2682 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 285.528, + "index": 8, + "body": { + "#": 2682 + }, + "isInternal": false + }, + { + "x": 235.432, + "y": 289.528, + "index": 9, + "body": { + "#": 2682 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2702 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2704 + }, + "max": { + "#": 2705 + } + }, + { + "x": 220.216, + "y": 284 + }, + { + "x": 235.432, + "y": 300 + }, + { + "x": 227.824, + "y": 292 + }, + [ + { + "#": 2708 + }, + { + "#": 2709 + }, + { + "#": 2710 + }, + { + "#": 2711 + }, + { + "#": 2712 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 87, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2714 + }, + "angle": 0, + "vertices": { + "#": 2715 + }, + "position": { + "#": 2726 + }, + "force": { + "#": 2727 + }, + "torque": 0, + "positionImpulse": { + "#": 2728 + }, + "constraintImpulse": { + "#": 2729 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2730 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2731 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2732 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2734 + }, + "positionPrev": { + "#": 2737 + }, + "anglePrev": 0, + "axes": { + "#": 2738 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2713 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2713 + } + ], + [ + { + "#": 2716 + }, + { + "#": 2717 + }, + { + "#": 2718 + }, + { + "#": 2719 + }, + { + "#": 2720 + }, + { + "#": 2721 + }, + { + "#": 2722 + }, + { + "#": 2723 + }, + { + "#": 2724 + }, + { + "#": 2725 + } + ], + { + "x": 255.648, + "y": 294.472, + "index": 0, + "body": { + "#": 2713 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 298.472, + "index": 1, + "body": { + "#": 2713 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 300, + "index": 2, + "body": { + "#": 2713 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 298.472, + "index": 3, + "body": { + "#": 2713 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 294.472, + "index": 4, + "body": { + "#": 2713 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 289.528, + "index": 5, + "body": { + "#": 2713 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 285.528, + "index": 6, + "body": { + "#": 2713 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 284, + "index": 7, + "body": { + "#": 2713 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 285.528, + "index": 8, + "body": { + "#": 2713 + }, + "isInternal": false + }, + { + "x": 255.648, + "y": 289.528, + "index": 9, + "body": { + "#": 2713 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2733 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2735 + }, + "max": { + "#": 2736 + } + }, + { + "x": 240.432, + "y": 284 + }, + { + "x": 255.648, + "y": 300 + }, + { + "x": 248.04, + "y": 292 + }, + [ + { + "#": 2739 + }, + { + "#": 2740 + }, + { + "#": 2741 + }, + { + "#": 2742 + }, + { + "#": 2743 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 88, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2745 + }, + "angle": 0, + "vertices": { + "#": 2746 + }, + "position": { + "#": 2757 + }, + "force": { + "#": 2758 + }, + "torque": 0, + "positionImpulse": { + "#": 2759 + }, + "constraintImpulse": { + "#": 2760 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2761 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2762 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2763 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2765 + }, + "positionPrev": { + "#": 2768 + }, + "anglePrev": 0, + "axes": { + "#": 2769 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2744 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2744 + } + ], + [ + { + "#": 2747 + }, + { + "#": 2748 + }, + { + "#": 2749 + }, + { + "#": 2750 + }, + { + "#": 2751 + }, + { + "#": 2752 + }, + { + "#": 2753 + }, + { + "#": 2754 + }, + { + "#": 2755 + }, + { + "#": 2756 + } + ], + { + "x": 275.864, + "y": 294.472, + "index": 0, + "body": { + "#": 2744 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 298.472, + "index": 1, + "body": { + "#": 2744 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 300, + "index": 2, + "body": { + "#": 2744 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 298.472, + "index": 3, + "body": { + "#": 2744 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 294.472, + "index": 4, + "body": { + "#": 2744 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 289.528, + "index": 5, + "body": { + "#": 2744 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 285.528, + "index": 6, + "body": { + "#": 2744 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 284, + "index": 7, + "body": { + "#": 2744 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 285.528, + "index": 8, + "body": { + "#": 2744 + }, + "isInternal": false + }, + { + "x": 275.864, + "y": 289.528, + "index": 9, + "body": { + "#": 2744 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2764 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2766 + }, + "max": { + "#": 2767 + } + }, + { + "x": 260.648, + "y": 284 + }, + { + "x": 275.864, + "y": 300 + }, + { + "x": 268.256, + "y": 292 + }, + [ + { + "#": 2770 + }, + { + "#": 2771 + }, + { + "#": 2772 + }, + { + "#": 2773 + }, + { + "#": 2774 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 89, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2776 + }, + "angle": 0, + "vertices": { + "#": 2777 + }, + "position": { + "#": 2788 + }, + "force": { + "#": 2789 + }, + "torque": 0, + "positionImpulse": { + "#": 2790 + }, + "constraintImpulse": { + "#": 2791 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2792 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2793 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2794 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2796 + }, + "positionPrev": { + "#": 2799 + }, + "anglePrev": 0, + "axes": { + "#": 2800 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2775 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2775 + } + ], + [ + { + "#": 2778 + }, + { + "#": 2779 + }, + { + "#": 2780 + }, + { + "#": 2781 + }, + { + "#": 2782 + }, + { + "#": 2783 + }, + { + "#": 2784 + }, + { + "#": 2785 + }, + { + "#": 2786 + }, + { + "#": 2787 + } + ], + { + "x": 296.08, + "y": 294.472, + "index": 0, + "body": { + "#": 2775 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 298.472, + "index": 1, + "body": { + "#": 2775 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 300, + "index": 2, + "body": { + "#": 2775 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 298.472, + "index": 3, + "body": { + "#": 2775 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 294.472, + "index": 4, + "body": { + "#": 2775 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 289.528, + "index": 5, + "body": { + "#": 2775 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 285.528, + "index": 6, + "body": { + "#": 2775 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 284, + "index": 7, + "body": { + "#": 2775 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 285.528, + "index": 8, + "body": { + "#": 2775 + }, + "isInternal": false + }, + { + "x": 296.08, + "y": 289.528, + "index": 9, + "body": { + "#": 2775 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2795 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2797 + }, + "max": { + "#": 2798 + } + }, + { + "x": 280.864, + "y": 284 + }, + { + "x": 296.08, + "y": 300 + }, + { + "x": 288.472, + "y": 292 + }, + [ + { + "#": 2801 + }, + { + "#": 2802 + }, + { + "#": 2803 + }, + { + "#": 2804 + }, + { + "#": 2805 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 90, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2807 + }, + "angle": 0, + "vertices": { + "#": 2808 + }, + "position": { + "#": 2819 + }, + "force": { + "#": 2820 + }, + "torque": 0, + "positionImpulse": { + "#": 2821 + }, + "constraintImpulse": { + "#": 2822 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2823 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2824 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2825 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2827 + }, + "positionPrev": { + "#": 2830 + }, + "anglePrev": 0, + "axes": { + "#": 2831 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2806 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2806 + } + ], + [ + { + "#": 2809 + }, + { + "#": 2810 + }, + { + "#": 2811 + }, + { + "#": 2812 + }, + { + "#": 2813 + }, + { + "#": 2814 + }, + { + "#": 2815 + }, + { + "#": 2816 + }, + { + "#": 2817 + }, + { + "#": 2818 + } + ], + { + "x": 316.296, + "y": 294.472, + "index": 0, + "body": { + "#": 2806 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 298.472, + "index": 1, + "body": { + "#": 2806 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 300, + "index": 2, + "body": { + "#": 2806 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 298.472, + "index": 3, + "body": { + "#": 2806 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 294.472, + "index": 4, + "body": { + "#": 2806 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 289.528, + "index": 5, + "body": { + "#": 2806 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 285.528, + "index": 6, + "body": { + "#": 2806 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 284, + "index": 7, + "body": { + "#": 2806 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 285.528, + "index": 8, + "body": { + "#": 2806 + }, + "isInternal": false + }, + { + "x": 316.296, + "y": 289.528, + "index": 9, + "body": { + "#": 2806 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2826 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2828 + }, + "max": { + "#": 2829 + } + }, + { + "x": 301.08, + "y": 284 + }, + { + "x": 316.296, + "y": 300 + }, + { + "x": 308.688, + "y": 292 + }, + [ + { + "#": 2832 + }, + { + "#": 2833 + }, + { + "#": 2834 + }, + { + "#": 2835 + }, + { + "#": 2836 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 91, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2838 + }, + "angle": 0, + "vertices": { + "#": 2839 + }, + "position": { + "#": 2850 + }, + "force": { + "#": 2851 + }, + "torque": 0, + "positionImpulse": { + "#": 2852 + }, + "constraintImpulse": { + "#": 2853 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2854 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2855 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2856 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2858 + }, + "positionPrev": { + "#": 2861 + }, + "anglePrev": 0, + "axes": { + "#": 2862 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2837 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2837 + } + ], + [ + { + "#": 2840 + }, + { + "#": 2841 + }, + { + "#": 2842 + }, + { + "#": 2843 + }, + { + "#": 2844 + }, + { + "#": 2845 + }, + { + "#": 2846 + }, + { + "#": 2847 + }, + { + "#": 2848 + }, + { + "#": 2849 + } + ], + { + "x": 336.512, + "y": 294.472, + "index": 0, + "body": { + "#": 2837 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 298.472, + "index": 1, + "body": { + "#": 2837 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 300, + "index": 2, + "body": { + "#": 2837 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 298.472, + "index": 3, + "body": { + "#": 2837 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 294.472, + "index": 4, + "body": { + "#": 2837 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 289.528, + "index": 5, + "body": { + "#": 2837 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 285.528, + "index": 6, + "body": { + "#": 2837 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 284, + "index": 7, + "body": { + "#": 2837 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 285.528, + "index": 8, + "body": { + "#": 2837 + }, + "isInternal": false + }, + { + "x": 336.512, + "y": 289.528, + "index": 9, + "body": { + "#": 2837 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2857 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2859 + }, + "max": { + "#": 2860 + } + }, + { + "x": 321.296, + "y": 284 + }, + { + "x": 336.512, + "y": 300 + }, + { + "x": 328.904, + "y": 292 + }, + [ + { + "#": 2863 + }, + { + "#": 2864 + }, + { + "#": 2865 + }, + { + "#": 2866 + }, + { + "#": 2867 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 92, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2869 + }, + "angle": 0, + "vertices": { + "#": 2870 + }, + "position": { + "#": 2881 + }, + "force": { + "#": 2882 + }, + "torque": 0, + "positionImpulse": { + "#": 2883 + }, + "constraintImpulse": { + "#": 2884 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2885 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2886 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2887 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2889 + }, + "positionPrev": { + "#": 2892 + }, + "anglePrev": 0, + "axes": { + "#": 2893 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2868 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2868 + } + ], + [ + { + "#": 2871 + }, + { + "#": 2872 + }, + { + "#": 2873 + }, + { + "#": 2874 + }, + { + "#": 2875 + }, + { + "#": 2876 + }, + { + "#": 2877 + }, + { + "#": 2878 + }, + { + "#": 2879 + }, + { + "#": 2880 + } + ], + { + "x": 356.728, + "y": 294.472, + "index": 0, + "body": { + "#": 2868 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 298.472, + "index": 1, + "body": { + "#": 2868 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 300, + "index": 2, + "body": { + "#": 2868 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 298.472, + "index": 3, + "body": { + "#": 2868 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 294.472, + "index": 4, + "body": { + "#": 2868 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 289.528, + "index": 5, + "body": { + "#": 2868 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 285.528, + "index": 6, + "body": { + "#": 2868 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 284, + "index": 7, + "body": { + "#": 2868 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 285.528, + "index": 8, + "body": { + "#": 2868 + }, + "isInternal": false + }, + { + "x": 356.728, + "y": 289.528, + "index": 9, + "body": { + "#": 2868 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2888 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2890 + }, + "max": { + "#": 2891 + } + }, + { + "x": 341.512, + "y": 284 + }, + { + "x": 356.728, + "y": 300 + }, + { + "x": 349.12, + "y": 292 + }, + [ + { + "#": 2894 + }, + { + "#": 2895 + }, + { + "#": 2896 + }, + { + "#": 2897 + }, + { + "#": 2898 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 93, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2900 + }, + "angle": 0, + "vertices": { + "#": 2901 + }, + "position": { + "#": 2912 + }, + "force": { + "#": 2913 + }, + "torque": 0, + "positionImpulse": { + "#": 2914 + }, + "constraintImpulse": { + "#": 2915 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2916 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2917 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2918 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2920 + }, + "positionPrev": { + "#": 2923 + }, + "anglePrev": 0, + "axes": { + "#": 2924 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2899 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2899 + } + ], + [ + { + "#": 2902 + }, + { + "#": 2903 + }, + { + "#": 2904 + }, + { + "#": 2905 + }, + { + "#": 2906 + }, + { + "#": 2907 + }, + { + "#": 2908 + }, + { + "#": 2909 + }, + { + "#": 2910 + }, + { + "#": 2911 + } + ], + { + "x": 376.944, + "y": 294.472, + "index": 0, + "body": { + "#": 2899 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 298.472, + "index": 1, + "body": { + "#": 2899 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 300, + "index": 2, + "body": { + "#": 2899 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 298.472, + "index": 3, + "body": { + "#": 2899 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 294.472, + "index": 4, + "body": { + "#": 2899 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 289.528, + "index": 5, + "body": { + "#": 2899 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 285.528, + "index": 6, + "body": { + "#": 2899 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 284, + "index": 7, + "body": { + "#": 2899 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 285.528, + "index": 8, + "body": { + "#": 2899 + }, + "isInternal": false + }, + { + "x": 376.944, + "y": 289.528, + "index": 9, + "body": { + "#": 2899 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2919 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2921 + }, + "max": { + "#": 2922 + } + }, + { + "x": 361.728, + "y": 284 + }, + { + "x": 376.944, + "y": 300 + }, + { + "x": 369.336, + "y": 292 + }, + [ + { + "#": 2925 + }, + { + "#": 2926 + }, + { + "#": 2927 + }, + { + "#": 2928 + }, + { + "#": 2929 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 94, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2931 + }, + "angle": 0, + "vertices": { + "#": 2932 + }, + "position": { + "#": 2943 + }, + "force": { + "#": 2944 + }, + "torque": 0, + "positionImpulse": { + "#": 2945 + }, + "constraintImpulse": { + "#": 2946 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2947 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2948 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2949 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2951 + }, + "positionPrev": { + "#": 2954 + }, + "anglePrev": 0, + "axes": { + "#": 2955 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2930 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2930 + } + ], + [ + { + "#": 2933 + }, + { + "#": 2934 + }, + { + "#": 2935 + }, + { + "#": 2936 + }, + { + "#": 2937 + }, + { + "#": 2938 + }, + { + "#": 2939 + }, + { + "#": 2940 + }, + { + "#": 2941 + }, + { + "#": 2942 + } + ], + { + "x": 397.16, + "y": 294.472, + "index": 0, + "body": { + "#": 2930 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 298.472, + "index": 1, + "body": { + "#": 2930 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 300, + "index": 2, + "body": { + "#": 2930 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 298.472, + "index": 3, + "body": { + "#": 2930 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 294.472, + "index": 4, + "body": { + "#": 2930 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 289.528, + "index": 5, + "body": { + "#": 2930 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 285.528, + "index": 6, + "body": { + "#": 2930 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 284, + "index": 7, + "body": { + "#": 2930 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 285.528, + "index": 8, + "body": { + "#": 2930 + }, + "isInternal": false + }, + { + "x": 397.16, + "y": 289.528, + "index": 9, + "body": { + "#": 2930 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2950 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2952 + }, + "max": { + "#": 2953 + } + }, + { + "x": 381.944, + "y": 284 + }, + { + "x": 397.16, + "y": 300 + }, + { + "x": 389.552, + "y": 292 + }, + [ + { + "#": 2956 + }, + { + "#": 2957 + }, + { + "#": 2958 + }, + { + "#": 2959 + }, + { + "#": 2960 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 95, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2962 + }, + "angle": 0, + "vertices": { + "#": 2963 + }, + "position": { + "#": 2974 + }, + "force": { + "#": 2975 + }, + "torque": 0, + "positionImpulse": { + "#": 2976 + }, + "constraintImpulse": { + "#": 2977 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2978 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2979 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2980 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2982 + }, + "positionPrev": { + "#": 2985 + }, + "anglePrev": 0, + "axes": { + "#": 2986 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2961 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2961 + } + ], + [ + { + "#": 2964 + }, + { + "#": 2965 + }, + { + "#": 2966 + }, + { + "#": 2967 + }, + { + "#": 2968 + }, + { + "#": 2969 + }, + { + "#": 2970 + }, + { + "#": 2971 + }, + { + "#": 2972 + }, + { + "#": 2973 + } + ], + { + "x": 417.376, + "y": 294.472, + "index": 0, + "body": { + "#": 2961 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 298.472, + "index": 1, + "body": { + "#": 2961 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 300, + "index": 2, + "body": { + "#": 2961 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 298.472, + "index": 3, + "body": { + "#": 2961 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 294.472, + "index": 4, + "body": { + "#": 2961 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 289.528, + "index": 5, + "body": { + "#": 2961 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 285.528, + "index": 6, + "body": { + "#": 2961 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 284, + "index": 7, + "body": { + "#": 2961 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 285.528, + "index": 8, + "body": { + "#": 2961 + }, + "isInternal": false + }, + { + "x": 417.376, + "y": 289.528, + "index": 9, + "body": { + "#": 2961 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2981 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2983 + }, + "max": { + "#": 2984 + } + }, + { + "x": 402.16, + "y": 284 + }, + { + "x": 417.376, + "y": 300 + }, + { + "x": 409.768, + "y": 292 + }, + [ + { + "#": 2987 + }, + { + "#": 2988 + }, + { + "#": 2989 + }, + { + "#": 2990 + }, + { + "#": 2991 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 96, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2993 + }, + "angle": 0, + "vertices": { + "#": 2994 + }, + "position": { + "#": 3005 + }, + "force": { + "#": 3006 + }, + "torque": 0, + "positionImpulse": { + "#": 3007 + }, + "constraintImpulse": { + "#": 3008 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3009 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3010 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3011 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3013 + }, + "positionPrev": { + "#": 3016 + }, + "anglePrev": 0, + "axes": { + "#": 3017 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2992 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2992 + } + ], + [ + { + "#": 2995 + }, + { + "#": 2996 + }, + { + "#": 2997 + }, + { + "#": 2998 + }, + { + "#": 2999 + }, + { + "#": 3000 + }, + { + "#": 3001 + }, + { + "#": 3002 + }, + { + "#": 3003 + }, + { + "#": 3004 + } + ], + { + "x": 437.592, + "y": 294.472, + "index": 0, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 298.472, + "index": 1, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 300, + "index": 2, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 298.472, + "index": 3, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 294.472, + "index": 4, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 289.528, + "index": 5, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 285.528, + "index": 6, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 284, + "index": 7, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 285.528, + "index": 8, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 437.592, + "y": 289.528, + "index": 9, + "body": { + "#": 2992 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3012 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3014 + }, + "max": { + "#": 3015 + } + }, + { + "x": 422.376, + "y": 284 + }, + { + "x": 437.592, + "y": 300 + }, + { + "x": 429.984, + "y": 292 + }, + [ + { + "#": 3018 + }, + { + "#": 3019 + }, + { + "#": 3020 + }, + { + "#": 3021 + }, + { + "#": 3022 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 97, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3024 + }, + "angle": 0, + "vertices": { + "#": 3025 + }, + "position": { + "#": 3036 + }, + "force": { + "#": 3037 + }, + "torque": 0, + "positionImpulse": { + "#": 3038 + }, + "constraintImpulse": { + "#": 3039 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3040 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3041 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3042 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3044 + }, + "positionPrev": { + "#": 3047 + }, + "anglePrev": 0, + "axes": { + "#": 3048 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3023 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3023 + } + ], + [ + { + "#": 3026 + }, + { + "#": 3027 + }, + { + "#": 3028 + }, + { + "#": 3029 + }, + { + "#": 3030 + }, + { + "#": 3031 + }, + { + "#": 3032 + }, + { + "#": 3033 + }, + { + "#": 3034 + }, + { + "#": 3035 + } + ], + { + "x": 457.808, + "y": 294.472, + "index": 0, + "body": { + "#": 3023 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 298.472, + "index": 1, + "body": { + "#": 3023 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 300, + "index": 2, + "body": { + "#": 3023 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 298.472, + "index": 3, + "body": { + "#": 3023 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 294.472, + "index": 4, + "body": { + "#": 3023 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 289.528, + "index": 5, + "body": { + "#": 3023 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 285.528, + "index": 6, + "body": { + "#": 3023 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 284, + "index": 7, + "body": { + "#": 3023 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 285.528, + "index": 8, + "body": { + "#": 3023 + }, + "isInternal": false + }, + { + "x": 457.808, + "y": 289.528, + "index": 9, + "body": { + "#": 3023 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3043 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3045 + }, + "max": { + "#": 3046 + } + }, + { + "x": 442.592, + "y": 284 + }, + { + "x": 457.808, + "y": 300 + }, + { + "x": 450.2, + "y": 292 + }, + [ + { + "#": 3049 + }, + { + "#": 3050 + }, + { + "#": 3051 + }, + { + "#": 3052 + }, + { + "#": 3053 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 98, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3055 + }, + "angle": 0, + "vertices": { + "#": 3056 + }, + "position": { + "#": 3067 + }, + "force": { + "#": 3068 + }, + "torque": 0, + "positionImpulse": { + "#": 3069 + }, + "constraintImpulse": { + "#": 3070 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3071 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3072 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3073 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3075 + }, + "positionPrev": { + "#": 3078 + }, + "anglePrev": 0, + "axes": { + "#": 3079 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3054 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3054 + } + ], + [ + { + "#": 3057 + }, + { + "#": 3058 + }, + { + "#": 3059 + }, + { + "#": 3060 + }, + { + "#": 3061 + }, + { + "#": 3062 + }, + { + "#": 3063 + }, + { + "#": 3064 + }, + { + "#": 3065 + }, + { + "#": 3066 + } + ], + { + "x": 478.024, + "y": 294.472, + "index": 0, + "body": { + "#": 3054 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 298.472, + "index": 1, + "body": { + "#": 3054 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 300, + "index": 2, + "body": { + "#": 3054 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 298.472, + "index": 3, + "body": { + "#": 3054 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 294.472, + "index": 4, + "body": { + "#": 3054 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 289.528, + "index": 5, + "body": { + "#": 3054 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 285.528, + "index": 6, + "body": { + "#": 3054 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 284, + "index": 7, + "body": { + "#": 3054 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 285.528, + "index": 8, + "body": { + "#": 3054 + }, + "isInternal": false + }, + { + "x": 478.024, + "y": 289.528, + "index": 9, + "body": { + "#": 3054 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3074 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3076 + }, + "max": { + "#": 3077 + } + }, + { + "x": 462.808, + "y": 284 + }, + { + "x": 478.024, + "y": 300 + }, + { + "x": 470.416, + "y": 292 + }, + [ + { + "#": 3080 + }, + { + "#": 3081 + }, + { + "#": 3082 + }, + { + "#": 3083 + }, + { + "#": 3084 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 99, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3086 + }, + "angle": 0, + "vertices": { + "#": 3087 + }, + "position": { + "#": 3098 + }, + "force": { + "#": 3099 + }, + "torque": 0, + "positionImpulse": { + "#": 3100 + }, + "constraintImpulse": { + "#": 3101 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3102 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3103 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3104 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3106 + }, + "positionPrev": { + "#": 3109 + }, + "anglePrev": 0, + "axes": { + "#": 3110 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3085 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3085 + } + ], + [ + { + "#": 3088 + }, + { + "#": 3089 + }, + { + "#": 3090 + }, + { + "#": 3091 + }, + { + "#": 3092 + }, + { + "#": 3093 + }, + { + "#": 3094 + }, + { + "#": 3095 + }, + { + "#": 3096 + }, + { + "#": 3097 + } + ], + { + "x": 498.24, + "y": 294.472, + "index": 0, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 298.472, + "index": 1, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 300, + "index": 2, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 298.472, + "index": 3, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 294.472, + "index": 4, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 289.528, + "index": 5, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 285.528, + "index": 6, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 284, + "index": 7, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 285.528, + "index": 8, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 498.24, + "y": 289.528, + "index": 9, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3105 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3107 + }, + "max": { + "#": 3108 + } + }, + { + "x": 483.024, + "y": 284 + }, + { + "x": 498.24, + "y": 300 + }, + { + "x": 490.632, + "y": 292 + }, + [ + { + "#": 3111 + }, + { + "#": 3112 + }, + { + "#": 3113 + }, + { + "#": 3114 + }, + { + "#": 3115 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 100, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3117 + }, + "angle": 0, + "vertices": { + "#": 3118 + }, + "position": { + "#": 3129 + }, + "force": { + "#": 3130 + }, + "torque": 0, + "positionImpulse": { + "#": 3131 + }, + "constraintImpulse": { + "#": 3132 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3133 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3134 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3135 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3137 + }, + "positionPrev": { + "#": 3140 + }, + "anglePrev": 0, + "axes": { + "#": 3141 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3116 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3116 + } + ], + [ + { + "#": 3119 + }, + { + "#": 3120 + }, + { + "#": 3121 + }, + { + "#": 3122 + }, + { + "#": 3123 + }, + { + "#": 3124 + }, + { + "#": 3125 + }, + { + "#": 3126 + }, + { + "#": 3127 + }, + { + "#": 3128 + } + ], + { + "x": 518.456, + "y": 294.472, + "index": 0, + "body": { + "#": 3116 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 298.472, + "index": 1, + "body": { + "#": 3116 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 300, + "index": 2, + "body": { + "#": 3116 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 298.472, + "index": 3, + "body": { + "#": 3116 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 294.472, + "index": 4, + "body": { + "#": 3116 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 289.528, + "index": 5, + "body": { + "#": 3116 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 285.528, + "index": 6, + "body": { + "#": 3116 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 284, + "index": 7, + "body": { + "#": 3116 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 285.528, + "index": 8, + "body": { + "#": 3116 + }, + "isInternal": false + }, + { + "x": 518.456, + "y": 289.528, + "index": 9, + "body": { + "#": 3116 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3136 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3138 + }, + "max": { + "#": 3139 + } + }, + { + "x": 503.24, + "y": 284 + }, + { + "x": 518.456, + "y": 300 + }, + { + "x": 510.848, + "y": 292 + }, + [ + { + "#": 3142 + }, + { + "#": 3143 + }, + { + "#": 3144 + }, + { + "#": 3145 + }, + { + "#": 3146 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 101, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3148 + }, + "angle": 0, + "vertices": { + "#": 3149 + }, + "position": { + "#": 3160 + }, + "force": { + "#": 3161 + }, + "torque": 0, + "positionImpulse": { + "#": 3162 + }, + "constraintImpulse": { + "#": 3163 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3164 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3165 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3166 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3168 + }, + "positionPrev": { + "#": 3171 + }, + "anglePrev": 0, + "axes": { + "#": 3172 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3147 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3147 + } + ], + [ + { + "#": 3150 + }, + { + "#": 3151 + }, + { + "#": 3152 + }, + { + "#": 3153 + }, + { + "#": 3154 + }, + { + "#": 3155 + }, + { + "#": 3156 + }, + { + "#": 3157 + }, + { + "#": 3158 + }, + { + "#": 3159 + } + ], + { + "x": 538.672, + "y": 294.472, + "index": 0, + "body": { + "#": 3147 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 298.472, + "index": 1, + "body": { + "#": 3147 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 300, + "index": 2, + "body": { + "#": 3147 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 298.472, + "index": 3, + "body": { + "#": 3147 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 294.472, + "index": 4, + "body": { + "#": 3147 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 289.528, + "index": 5, + "body": { + "#": 3147 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 285.528, + "index": 6, + "body": { + "#": 3147 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 284, + "index": 7, + "body": { + "#": 3147 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 285.528, + "index": 8, + "body": { + "#": 3147 + }, + "isInternal": false + }, + { + "x": 538.672, + "y": 289.528, + "index": 9, + "body": { + "#": 3147 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3167 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3169 + }, + "max": { + "#": 3170 + } + }, + { + "x": 523.456, + "y": 284 + }, + { + "x": 538.672, + "y": 300 + }, + { + "x": 531.064, + "y": 292 + }, + [ + { + "#": 3173 + }, + { + "#": 3174 + }, + { + "#": 3175 + }, + { + "#": 3176 + }, + { + "#": 3177 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 102, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3179 + }, + "angle": 0, + "vertices": { + "#": 3180 + }, + "position": { + "#": 3191 + }, + "force": { + "#": 3192 + }, + "torque": 0, + "positionImpulse": { + "#": 3193 + }, + "constraintImpulse": { + "#": 3194 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3195 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3196 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3197 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3199 + }, + "positionPrev": { + "#": 3202 + }, + "anglePrev": 0, + "axes": { + "#": 3203 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3178 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3178 + } + ], + [ + { + "#": 3181 + }, + { + "#": 3182 + }, + { + "#": 3183 + }, + { + "#": 3184 + }, + { + "#": 3185 + }, + { + "#": 3186 + }, + { + "#": 3187 + }, + { + "#": 3188 + }, + { + "#": 3189 + }, + { + "#": 3190 + } + ], + { + "x": 558.888, + "y": 294.472, + "index": 0, + "body": { + "#": 3178 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 298.472, + "index": 1, + "body": { + "#": 3178 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 300, + "index": 2, + "body": { + "#": 3178 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 298.472, + "index": 3, + "body": { + "#": 3178 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 294.472, + "index": 4, + "body": { + "#": 3178 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 289.528, + "index": 5, + "body": { + "#": 3178 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 285.528, + "index": 6, + "body": { + "#": 3178 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 284, + "index": 7, + "body": { + "#": 3178 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 285.528, + "index": 8, + "body": { + "#": 3178 + }, + "isInternal": false + }, + { + "x": 558.888, + "y": 289.528, + "index": 9, + "body": { + "#": 3178 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3198 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3200 + }, + "max": { + "#": 3201 + } + }, + { + "x": 543.672, + "y": 284 + }, + { + "x": 558.888, + "y": 300 + }, + { + "x": 551.28, + "y": 292 + }, + [ + { + "#": 3204 + }, + { + "#": 3205 + }, + { + "#": 3206 + }, + { + "#": 3207 + }, + { + "#": 3208 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 103, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3210 + }, + "angle": 0, + "vertices": { + "#": 3211 + }, + "position": { + "#": 3222 + }, + "force": { + "#": 3223 + }, + "torque": 0, + "positionImpulse": { + "#": 3224 + }, + "constraintImpulse": { + "#": 3225 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3226 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3227 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3228 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3230 + }, + "positionPrev": { + "#": 3233 + }, + "anglePrev": 0, + "axes": { + "#": 3234 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3209 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3209 + } + ], + [ + { + "#": 3212 + }, + { + "#": 3213 + }, + { + "#": 3214 + }, + { + "#": 3215 + }, + { + "#": 3216 + }, + { + "#": 3217 + }, + { + "#": 3218 + }, + { + "#": 3219 + }, + { + "#": 3220 + }, + { + "#": 3221 + } + ], + { + "x": 579.104, + "y": 294.472, + "index": 0, + "body": { + "#": 3209 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 298.472, + "index": 1, + "body": { + "#": 3209 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 300, + "index": 2, + "body": { + "#": 3209 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 298.472, + "index": 3, + "body": { + "#": 3209 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 294.472, + "index": 4, + "body": { + "#": 3209 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 289.528, + "index": 5, + "body": { + "#": 3209 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 285.528, + "index": 6, + "body": { + "#": 3209 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 284, + "index": 7, + "body": { + "#": 3209 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 285.528, + "index": 8, + "body": { + "#": 3209 + }, + "isInternal": false + }, + { + "x": 579.104, + "y": 289.528, + "index": 9, + "body": { + "#": 3209 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3229 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3231 + }, + "max": { + "#": 3232 + } + }, + { + "x": 563.888, + "y": 284 + }, + { + "x": 579.104, + "y": 300 + }, + { + "x": 571.496, + "y": 292 + }, + [ + { + "#": 3235 + }, + { + "#": 3236 + }, + { + "#": 3237 + }, + { + "#": 3238 + }, + { + "#": 3239 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 104, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3241 + }, + "angle": 0, + "vertices": { + "#": 3242 + }, + "position": { + "#": 3253 + }, + "force": { + "#": 3254 + }, + "torque": 0, + "positionImpulse": { + "#": 3255 + }, + "constraintImpulse": { + "#": 3256 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3257 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3258 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3259 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3261 + }, + "positionPrev": { + "#": 3264 + }, + "anglePrev": 0, + "axes": { + "#": 3265 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3240 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3240 + } + ], + [ + { + "#": 3243 + }, + { + "#": 3244 + }, + { + "#": 3245 + }, + { + "#": 3246 + }, + { + "#": 3247 + }, + { + "#": 3248 + }, + { + "#": 3249 + }, + { + "#": 3250 + }, + { + "#": 3251 + }, + { + "#": 3252 + } + ], + { + "x": 599.32, + "y": 294.472, + "index": 0, + "body": { + "#": 3240 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 298.472, + "index": 1, + "body": { + "#": 3240 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 300, + "index": 2, + "body": { + "#": 3240 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 298.472, + "index": 3, + "body": { + "#": 3240 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 294.472, + "index": 4, + "body": { + "#": 3240 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 289.528, + "index": 5, + "body": { + "#": 3240 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 285.528, + "index": 6, + "body": { + "#": 3240 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 284, + "index": 7, + "body": { + "#": 3240 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 285.528, + "index": 8, + "body": { + "#": 3240 + }, + "isInternal": false + }, + { + "x": 599.32, + "y": 289.528, + "index": 9, + "body": { + "#": 3240 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 292 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3260 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3262 + }, + "max": { + "#": 3263 + } + }, + { + "x": 584.104, + "y": 284 + }, + { + "x": 599.32, + "y": 300 + }, + { + "x": 591.712, + "y": 292 + }, + [ + { + "#": 3266 + }, + { + "#": 3267 + }, + { + "#": 3268 + }, + { + "#": 3269 + }, + { + "#": 3270 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 105, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3272 + }, + "angle": 0, + "vertices": { + "#": 3273 + }, + "position": { + "#": 3284 + }, + "force": { + "#": 3285 + }, + "torque": 0, + "positionImpulse": { + "#": 3286 + }, + "constraintImpulse": { + "#": 3287 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3288 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3289 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3290 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3292 + }, + "positionPrev": { + "#": 3295 + }, + "anglePrev": 0, + "axes": { + "#": 3296 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3271 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3271 + } + ], + [ + { + "#": 3274 + }, + { + "#": 3275 + }, + { + "#": 3276 + }, + { + "#": 3277 + }, + { + "#": 3278 + }, + { + "#": 3279 + }, + { + "#": 3280 + }, + { + "#": 3281 + }, + { + "#": 3282 + }, + { + "#": 3283 + } + ], + { + "x": 215.216, + "y": 315.472, + "index": 0, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 319.472, + "index": 1, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 321, + "index": 2, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 319.472, + "index": 3, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 200, + "y": 315.472, + "index": 4, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 200, + "y": 310.528, + "index": 5, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 306.528, + "index": 6, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 305, + "index": 7, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 306.528, + "index": 8, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 215.216, + "y": 310.528, + "index": 9, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3291 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3293 + }, + "max": { + "#": 3294 + } + }, + { + "x": 200, + "y": 305 + }, + { + "x": 215.216, + "y": 321 + }, + { + "x": 207.608, + "y": 313 + }, + [ + { + "#": 3297 + }, + { + "#": 3298 + }, + { + "#": 3299 + }, + { + "#": 3300 + }, + { + "#": 3301 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 106, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3303 + }, + "angle": 0, + "vertices": { + "#": 3304 + }, + "position": { + "#": 3315 + }, + "force": { + "#": 3316 + }, + "torque": 0, + "positionImpulse": { + "#": 3317 + }, + "constraintImpulse": { + "#": 3318 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3319 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3320 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3321 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3323 + }, + "positionPrev": { + "#": 3326 + }, + "anglePrev": 0, + "axes": { + "#": 3327 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3302 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3302 + } + ], + [ + { + "#": 3305 + }, + { + "#": 3306 + }, + { + "#": 3307 + }, + { + "#": 3308 + }, + { + "#": 3309 + }, + { + "#": 3310 + }, + { + "#": 3311 + }, + { + "#": 3312 + }, + { + "#": 3313 + }, + { + "#": 3314 + } + ], + { + "x": 235.432, + "y": 315.472, + "index": 0, + "body": { + "#": 3302 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 319.472, + "index": 1, + "body": { + "#": 3302 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 321, + "index": 2, + "body": { + "#": 3302 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 319.472, + "index": 3, + "body": { + "#": 3302 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 315.472, + "index": 4, + "body": { + "#": 3302 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 310.528, + "index": 5, + "body": { + "#": 3302 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 306.528, + "index": 6, + "body": { + "#": 3302 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 305, + "index": 7, + "body": { + "#": 3302 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 306.528, + "index": 8, + "body": { + "#": 3302 + }, + "isInternal": false + }, + { + "x": 235.432, + "y": 310.528, + "index": 9, + "body": { + "#": 3302 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3322 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3324 + }, + "max": { + "#": 3325 + } + }, + { + "x": 220.216, + "y": 305 + }, + { + "x": 235.432, + "y": 321 + }, + { + "x": 227.824, + "y": 313 + }, + [ + { + "#": 3328 + }, + { + "#": 3329 + }, + { + "#": 3330 + }, + { + "#": 3331 + }, + { + "#": 3332 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 107, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3334 + }, + "angle": 0, + "vertices": { + "#": 3335 + }, + "position": { + "#": 3346 + }, + "force": { + "#": 3347 + }, + "torque": 0, + "positionImpulse": { + "#": 3348 + }, + "constraintImpulse": { + "#": 3349 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3350 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3351 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3352 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3354 + }, + "positionPrev": { + "#": 3357 + }, + "anglePrev": 0, + "axes": { + "#": 3358 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3333 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3333 + } + ], + [ + { + "#": 3336 + }, + { + "#": 3337 + }, + { + "#": 3338 + }, + { + "#": 3339 + }, + { + "#": 3340 + }, + { + "#": 3341 + }, + { + "#": 3342 + }, + { + "#": 3343 + }, + { + "#": 3344 + }, + { + "#": 3345 + } + ], + { + "x": 255.648, + "y": 315.472, + "index": 0, + "body": { + "#": 3333 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 319.472, + "index": 1, + "body": { + "#": 3333 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 321, + "index": 2, + "body": { + "#": 3333 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 319.472, + "index": 3, + "body": { + "#": 3333 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 315.472, + "index": 4, + "body": { + "#": 3333 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 310.528, + "index": 5, + "body": { + "#": 3333 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 306.528, + "index": 6, + "body": { + "#": 3333 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 305, + "index": 7, + "body": { + "#": 3333 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 306.528, + "index": 8, + "body": { + "#": 3333 + }, + "isInternal": false + }, + { + "x": 255.648, + "y": 310.528, + "index": 9, + "body": { + "#": 3333 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3353 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3355 + }, + "max": { + "#": 3356 + } + }, + { + "x": 240.432, + "y": 305 + }, + { + "x": 255.648, + "y": 321 + }, + { + "x": 248.04, + "y": 313 + }, + [ + { + "#": 3359 + }, + { + "#": 3360 + }, + { + "#": 3361 + }, + { + "#": 3362 + }, + { + "#": 3363 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 108, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3365 + }, + "angle": 0, + "vertices": { + "#": 3366 + }, + "position": { + "#": 3377 + }, + "force": { + "#": 3378 + }, + "torque": 0, + "positionImpulse": { + "#": 3379 + }, + "constraintImpulse": { + "#": 3380 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3381 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3382 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3383 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3385 + }, + "positionPrev": { + "#": 3388 + }, + "anglePrev": 0, + "axes": { + "#": 3389 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3364 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3364 + } + ], + [ + { + "#": 3367 + }, + { + "#": 3368 + }, + { + "#": 3369 + }, + { + "#": 3370 + }, + { + "#": 3371 + }, + { + "#": 3372 + }, + { + "#": 3373 + }, + { + "#": 3374 + }, + { + "#": 3375 + }, + { + "#": 3376 + } + ], + { + "x": 275.864, + "y": 315.472, + "index": 0, + "body": { + "#": 3364 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 319.472, + "index": 1, + "body": { + "#": 3364 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 321, + "index": 2, + "body": { + "#": 3364 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 319.472, + "index": 3, + "body": { + "#": 3364 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 315.472, + "index": 4, + "body": { + "#": 3364 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 310.528, + "index": 5, + "body": { + "#": 3364 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 306.528, + "index": 6, + "body": { + "#": 3364 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 305, + "index": 7, + "body": { + "#": 3364 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 306.528, + "index": 8, + "body": { + "#": 3364 + }, + "isInternal": false + }, + { + "x": 275.864, + "y": 310.528, + "index": 9, + "body": { + "#": 3364 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3384 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3386 + }, + "max": { + "#": 3387 + } + }, + { + "x": 260.648, + "y": 305 + }, + { + "x": 275.864, + "y": 321 + }, + { + "x": 268.256, + "y": 313 + }, + [ + { + "#": 3390 + }, + { + "#": 3391 + }, + { + "#": 3392 + }, + { + "#": 3393 + }, + { + "#": 3394 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 109, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3396 + }, + "angle": 0, + "vertices": { + "#": 3397 + }, + "position": { + "#": 3408 + }, + "force": { + "#": 3409 + }, + "torque": 0, + "positionImpulse": { + "#": 3410 + }, + "constraintImpulse": { + "#": 3411 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3412 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3413 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3414 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3416 + }, + "positionPrev": { + "#": 3419 + }, + "anglePrev": 0, + "axes": { + "#": 3420 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3395 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3395 + } + ], + [ + { + "#": 3398 + }, + { + "#": 3399 + }, + { + "#": 3400 + }, + { + "#": 3401 + }, + { + "#": 3402 + }, + { + "#": 3403 + }, + { + "#": 3404 + }, + { + "#": 3405 + }, + { + "#": 3406 + }, + { + "#": 3407 + } + ], + { + "x": 296.08, + "y": 315.472, + "index": 0, + "body": { + "#": 3395 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 319.472, + "index": 1, + "body": { + "#": 3395 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 321, + "index": 2, + "body": { + "#": 3395 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 319.472, + "index": 3, + "body": { + "#": 3395 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 315.472, + "index": 4, + "body": { + "#": 3395 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 310.528, + "index": 5, + "body": { + "#": 3395 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 306.528, + "index": 6, + "body": { + "#": 3395 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 305, + "index": 7, + "body": { + "#": 3395 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 306.528, + "index": 8, + "body": { + "#": 3395 + }, + "isInternal": false + }, + { + "x": 296.08, + "y": 310.528, + "index": 9, + "body": { + "#": 3395 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3415 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3417 + }, + "max": { + "#": 3418 + } + }, + { + "x": 280.864, + "y": 305 + }, + { + "x": 296.08, + "y": 321 + }, + { + "x": 288.472, + "y": 313 + }, + [ + { + "#": 3421 + }, + { + "#": 3422 + }, + { + "#": 3423 + }, + { + "#": 3424 + }, + { + "#": 3425 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 110, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3427 + }, + "angle": 0, + "vertices": { + "#": 3428 + }, + "position": { + "#": 3439 + }, + "force": { + "#": 3440 + }, + "torque": 0, + "positionImpulse": { + "#": 3441 + }, + "constraintImpulse": { + "#": 3442 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3443 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3444 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3445 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3447 + }, + "positionPrev": { + "#": 3450 + }, + "anglePrev": 0, + "axes": { + "#": 3451 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3426 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3426 + } + ], + [ + { + "#": 3429 + }, + { + "#": 3430 + }, + { + "#": 3431 + }, + { + "#": 3432 + }, + { + "#": 3433 + }, + { + "#": 3434 + }, + { + "#": 3435 + }, + { + "#": 3436 + }, + { + "#": 3437 + }, + { + "#": 3438 + } + ], + { + "x": 316.296, + "y": 315.472, + "index": 0, + "body": { + "#": 3426 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 319.472, + "index": 1, + "body": { + "#": 3426 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 321, + "index": 2, + "body": { + "#": 3426 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 319.472, + "index": 3, + "body": { + "#": 3426 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 315.472, + "index": 4, + "body": { + "#": 3426 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 310.528, + "index": 5, + "body": { + "#": 3426 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 306.528, + "index": 6, + "body": { + "#": 3426 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 305, + "index": 7, + "body": { + "#": 3426 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 306.528, + "index": 8, + "body": { + "#": 3426 + }, + "isInternal": false + }, + { + "x": 316.296, + "y": 310.528, + "index": 9, + "body": { + "#": 3426 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3446 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3448 + }, + "max": { + "#": 3449 + } + }, + { + "x": 301.08, + "y": 305 + }, + { + "x": 316.296, + "y": 321 + }, + { + "x": 308.688, + "y": 313 + }, + [ + { + "#": 3452 + }, + { + "#": 3453 + }, + { + "#": 3454 + }, + { + "#": 3455 + }, + { + "#": 3456 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 111, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3458 + }, + "angle": 0, + "vertices": { + "#": 3459 + }, + "position": { + "#": 3470 + }, + "force": { + "#": 3471 + }, + "torque": 0, + "positionImpulse": { + "#": 3472 + }, + "constraintImpulse": { + "#": 3473 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3474 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3475 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3476 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3478 + }, + "positionPrev": { + "#": 3481 + }, + "anglePrev": 0, + "axes": { + "#": 3482 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3457 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3457 + } + ], + [ + { + "#": 3460 + }, + { + "#": 3461 + }, + { + "#": 3462 + }, + { + "#": 3463 + }, + { + "#": 3464 + }, + { + "#": 3465 + }, + { + "#": 3466 + }, + { + "#": 3467 + }, + { + "#": 3468 + }, + { + "#": 3469 + } + ], + { + "x": 336.512, + "y": 315.472, + "index": 0, + "body": { + "#": 3457 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 319.472, + "index": 1, + "body": { + "#": 3457 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 321, + "index": 2, + "body": { + "#": 3457 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 319.472, + "index": 3, + "body": { + "#": 3457 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 315.472, + "index": 4, + "body": { + "#": 3457 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 310.528, + "index": 5, + "body": { + "#": 3457 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 306.528, + "index": 6, + "body": { + "#": 3457 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 305, + "index": 7, + "body": { + "#": 3457 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 306.528, + "index": 8, + "body": { + "#": 3457 + }, + "isInternal": false + }, + { + "x": 336.512, + "y": 310.528, + "index": 9, + "body": { + "#": 3457 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3477 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3479 + }, + "max": { + "#": 3480 + } + }, + { + "x": 321.296, + "y": 305 + }, + { + "x": 336.512, + "y": 321 + }, + { + "x": 328.904, + "y": 313 + }, + [ + { + "#": 3483 + }, + { + "#": 3484 + }, + { + "#": 3485 + }, + { + "#": 3486 + }, + { + "#": 3487 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 112, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3489 + }, + "angle": 0, + "vertices": { + "#": 3490 + }, + "position": { + "#": 3501 + }, + "force": { + "#": 3502 + }, + "torque": 0, + "positionImpulse": { + "#": 3503 + }, + "constraintImpulse": { + "#": 3504 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3505 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3506 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3507 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3509 + }, + "positionPrev": { + "#": 3512 + }, + "anglePrev": 0, + "axes": { + "#": 3513 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3488 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3488 + } + ], + [ + { + "#": 3491 + }, + { + "#": 3492 + }, + { + "#": 3493 + }, + { + "#": 3494 + }, + { + "#": 3495 + }, + { + "#": 3496 + }, + { + "#": 3497 + }, + { + "#": 3498 + }, + { + "#": 3499 + }, + { + "#": 3500 + } + ], + { + "x": 356.728, + "y": 315.472, + "index": 0, + "body": { + "#": 3488 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 319.472, + "index": 1, + "body": { + "#": 3488 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 321, + "index": 2, + "body": { + "#": 3488 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 319.472, + "index": 3, + "body": { + "#": 3488 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 315.472, + "index": 4, + "body": { + "#": 3488 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 310.528, + "index": 5, + "body": { + "#": 3488 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 306.528, + "index": 6, + "body": { + "#": 3488 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 305, + "index": 7, + "body": { + "#": 3488 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 306.528, + "index": 8, + "body": { + "#": 3488 + }, + "isInternal": false + }, + { + "x": 356.728, + "y": 310.528, + "index": 9, + "body": { + "#": 3488 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3508 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3510 + }, + "max": { + "#": 3511 + } + }, + { + "x": 341.512, + "y": 305 + }, + { + "x": 356.728, + "y": 321 + }, + { + "x": 349.12, + "y": 313 + }, + [ + { + "#": 3514 + }, + { + "#": 3515 + }, + { + "#": 3516 + }, + { + "#": 3517 + }, + { + "#": 3518 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 113, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3520 + }, + "angle": 0, + "vertices": { + "#": 3521 + }, + "position": { + "#": 3532 + }, + "force": { + "#": 3533 + }, + "torque": 0, + "positionImpulse": { + "#": 3534 + }, + "constraintImpulse": { + "#": 3535 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3536 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3537 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3538 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3540 + }, + "positionPrev": { + "#": 3543 + }, + "anglePrev": 0, + "axes": { + "#": 3544 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3519 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3519 + } + ], + [ + { + "#": 3522 + }, + { + "#": 3523 + }, + { + "#": 3524 + }, + { + "#": 3525 + }, + { + "#": 3526 + }, + { + "#": 3527 + }, + { + "#": 3528 + }, + { + "#": 3529 + }, + { + "#": 3530 + }, + { + "#": 3531 + } + ], + { + "x": 376.944, + "y": 315.472, + "index": 0, + "body": { + "#": 3519 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 319.472, + "index": 1, + "body": { + "#": 3519 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 321, + "index": 2, + "body": { + "#": 3519 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 319.472, + "index": 3, + "body": { + "#": 3519 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 315.472, + "index": 4, + "body": { + "#": 3519 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 310.528, + "index": 5, + "body": { + "#": 3519 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 306.528, + "index": 6, + "body": { + "#": 3519 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 305, + "index": 7, + "body": { + "#": 3519 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 306.528, + "index": 8, + "body": { + "#": 3519 + }, + "isInternal": false + }, + { + "x": 376.944, + "y": 310.528, + "index": 9, + "body": { + "#": 3519 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3539 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3541 + }, + "max": { + "#": 3542 + } + }, + { + "x": 361.728, + "y": 305 + }, + { + "x": 376.944, + "y": 321 + }, + { + "x": 369.336, + "y": 313 + }, + [ + { + "#": 3545 + }, + { + "#": 3546 + }, + { + "#": 3547 + }, + { + "#": 3548 + }, + { + "#": 3549 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 114, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3551 + }, + "angle": 0, + "vertices": { + "#": 3552 + }, + "position": { + "#": 3563 + }, + "force": { + "#": 3564 + }, + "torque": 0, + "positionImpulse": { + "#": 3565 + }, + "constraintImpulse": { + "#": 3566 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3567 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3568 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3569 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3571 + }, + "positionPrev": { + "#": 3574 + }, + "anglePrev": 0, + "axes": { + "#": 3575 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3550 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3550 + } + ], + [ + { + "#": 3553 + }, + { + "#": 3554 + }, + { + "#": 3555 + }, + { + "#": 3556 + }, + { + "#": 3557 + }, + { + "#": 3558 + }, + { + "#": 3559 + }, + { + "#": 3560 + }, + { + "#": 3561 + }, + { + "#": 3562 + } + ], + { + "x": 397.16, + "y": 315.472, + "index": 0, + "body": { + "#": 3550 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 319.472, + "index": 1, + "body": { + "#": 3550 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 321, + "index": 2, + "body": { + "#": 3550 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 319.472, + "index": 3, + "body": { + "#": 3550 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 315.472, + "index": 4, + "body": { + "#": 3550 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 310.528, + "index": 5, + "body": { + "#": 3550 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 306.528, + "index": 6, + "body": { + "#": 3550 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 305, + "index": 7, + "body": { + "#": 3550 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 306.528, + "index": 8, + "body": { + "#": 3550 + }, + "isInternal": false + }, + { + "x": 397.16, + "y": 310.528, + "index": 9, + "body": { + "#": 3550 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3570 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3572 + }, + "max": { + "#": 3573 + } + }, + { + "x": 381.944, + "y": 305 + }, + { + "x": 397.16, + "y": 321 + }, + { + "x": 389.552, + "y": 313 + }, + [ + { + "#": 3576 + }, + { + "#": 3577 + }, + { + "#": 3578 + }, + { + "#": 3579 + }, + { + "#": 3580 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 115, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3582 + }, + "angle": 0, + "vertices": { + "#": 3583 + }, + "position": { + "#": 3594 + }, + "force": { + "#": 3595 + }, + "torque": 0, + "positionImpulse": { + "#": 3596 + }, + "constraintImpulse": { + "#": 3597 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3598 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3599 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3600 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3602 + }, + "positionPrev": { + "#": 3605 + }, + "anglePrev": 0, + "axes": { + "#": 3606 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3581 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3581 + } + ], + [ + { + "#": 3584 + }, + { + "#": 3585 + }, + { + "#": 3586 + }, + { + "#": 3587 + }, + { + "#": 3588 + }, + { + "#": 3589 + }, + { + "#": 3590 + }, + { + "#": 3591 + }, + { + "#": 3592 + }, + { + "#": 3593 + } + ], + { + "x": 417.376, + "y": 315.472, + "index": 0, + "body": { + "#": 3581 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 319.472, + "index": 1, + "body": { + "#": 3581 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 321, + "index": 2, + "body": { + "#": 3581 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 319.472, + "index": 3, + "body": { + "#": 3581 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 315.472, + "index": 4, + "body": { + "#": 3581 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 310.528, + "index": 5, + "body": { + "#": 3581 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 306.528, + "index": 6, + "body": { + "#": 3581 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 305, + "index": 7, + "body": { + "#": 3581 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 306.528, + "index": 8, + "body": { + "#": 3581 + }, + "isInternal": false + }, + { + "x": 417.376, + "y": 310.528, + "index": 9, + "body": { + "#": 3581 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3601 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3603 + }, + "max": { + "#": 3604 + } + }, + { + "x": 402.16, + "y": 305 + }, + { + "x": 417.376, + "y": 321 + }, + { + "x": 409.768, + "y": 313 + }, + [ + { + "#": 3607 + }, + { + "#": 3608 + }, + { + "#": 3609 + }, + { + "#": 3610 + }, + { + "#": 3611 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 116, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3613 + }, + "angle": 0, + "vertices": { + "#": 3614 + }, + "position": { + "#": 3625 + }, + "force": { + "#": 3626 + }, + "torque": 0, + "positionImpulse": { + "#": 3627 + }, + "constraintImpulse": { + "#": 3628 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3629 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3630 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3631 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3633 + }, + "positionPrev": { + "#": 3636 + }, + "anglePrev": 0, + "axes": { + "#": 3637 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3612 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3612 + } + ], + [ + { + "#": 3615 + }, + { + "#": 3616 + }, + { + "#": 3617 + }, + { + "#": 3618 + }, + { + "#": 3619 + }, + { + "#": 3620 + }, + { + "#": 3621 + }, + { + "#": 3622 + }, + { + "#": 3623 + }, + { + "#": 3624 + } + ], + { + "x": 437.592, + "y": 315.472, + "index": 0, + "body": { + "#": 3612 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 319.472, + "index": 1, + "body": { + "#": 3612 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 321, + "index": 2, + "body": { + "#": 3612 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 319.472, + "index": 3, + "body": { + "#": 3612 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 315.472, + "index": 4, + "body": { + "#": 3612 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 310.528, + "index": 5, + "body": { + "#": 3612 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 306.528, + "index": 6, + "body": { + "#": 3612 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 305, + "index": 7, + "body": { + "#": 3612 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 306.528, + "index": 8, + "body": { + "#": 3612 + }, + "isInternal": false + }, + { + "x": 437.592, + "y": 310.528, + "index": 9, + "body": { + "#": 3612 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3632 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3634 + }, + "max": { + "#": 3635 + } + }, + { + "x": 422.376, + "y": 305 + }, + { + "x": 437.592, + "y": 321 + }, + { + "x": 429.984, + "y": 313 + }, + [ + { + "#": 3638 + }, + { + "#": 3639 + }, + { + "#": 3640 + }, + { + "#": 3641 + }, + { + "#": 3642 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 117, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3644 + }, + "angle": 0, + "vertices": { + "#": 3645 + }, + "position": { + "#": 3656 + }, + "force": { + "#": 3657 + }, + "torque": 0, + "positionImpulse": { + "#": 3658 + }, + "constraintImpulse": { + "#": 3659 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3660 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3661 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3662 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3664 + }, + "positionPrev": { + "#": 3667 + }, + "anglePrev": 0, + "axes": { + "#": 3668 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3643 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3643 + } + ], + [ + { + "#": 3646 + }, + { + "#": 3647 + }, + { + "#": 3648 + }, + { + "#": 3649 + }, + { + "#": 3650 + }, + { + "#": 3651 + }, + { + "#": 3652 + }, + { + "#": 3653 + }, + { + "#": 3654 + }, + { + "#": 3655 + } + ], + { + "x": 457.808, + "y": 315.472, + "index": 0, + "body": { + "#": 3643 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 319.472, + "index": 1, + "body": { + "#": 3643 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 321, + "index": 2, + "body": { + "#": 3643 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 319.472, + "index": 3, + "body": { + "#": 3643 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 315.472, + "index": 4, + "body": { + "#": 3643 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 310.528, + "index": 5, + "body": { + "#": 3643 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 306.528, + "index": 6, + "body": { + "#": 3643 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 305, + "index": 7, + "body": { + "#": 3643 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 306.528, + "index": 8, + "body": { + "#": 3643 + }, + "isInternal": false + }, + { + "x": 457.808, + "y": 310.528, + "index": 9, + "body": { + "#": 3643 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3663 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3665 + }, + "max": { + "#": 3666 + } + }, + { + "x": 442.592, + "y": 305 + }, + { + "x": 457.808, + "y": 321 + }, + { + "x": 450.2, + "y": 313 + }, + [ + { + "#": 3669 + }, + { + "#": 3670 + }, + { + "#": 3671 + }, + { + "#": 3672 + }, + { + "#": 3673 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 118, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3675 + }, + "angle": 0, + "vertices": { + "#": 3676 + }, + "position": { + "#": 3687 + }, + "force": { + "#": 3688 + }, + "torque": 0, + "positionImpulse": { + "#": 3689 + }, + "constraintImpulse": { + "#": 3690 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3691 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3692 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3693 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3695 + }, + "positionPrev": { + "#": 3698 + }, + "anglePrev": 0, + "axes": { + "#": 3699 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3674 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3674 + } + ], + [ + { + "#": 3677 + }, + { + "#": 3678 + }, + { + "#": 3679 + }, + { + "#": 3680 + }, + { + "#": 3681 + }, + { + "#": 3682 + }, + { + "#": 3683 + }, + { + "#": 3684 + }, + { + "#": 3685 + }, + { + "#": 3686 + } + ], + { + "x": 478.024, + "y": 315.472, + "index": 0, + "body": { + "#": 3674 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 319.472, + "index": 1, + "body": { + "#": 3674 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 321, + "index": 2, + "body": { + "#": 3674 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 319.472, + "index": 3, + "body": { + "#": 3674 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 315.472, + "index": 4, + "body": { + "#": 3674 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 310.528, + "index": 5, + "body": { + "#": 3674 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 306.528, + "index": 6, + "body": { + "#": 3674 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 305, + "index": 7, + "body": { + "#": 3674 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 306.528, + "index": 8, + "body": { + "#": 3674 + }, + "isInternal": false + }, + { + "x": 478.024, + "y": 310.528, + "index": 9, + "body": { + "#": 3674 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3694 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3696 + }, + "max": { + "#": 3697 + } + }, + { + "x": 462.808, + "y": 305 + }, + { + "x": 478.024, + "y": 321 + }, + { + "x": 470.416, + "y": 313 + }, + [ + { + "#": 3700 + }, + { + "#": 3701 + }, + { + "#": 3702 + }, + { + "#": 3703 + }, + { + "#": 3704 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 119, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3706 + }, + "angle": 0, + "vertices": { + "#": 3707 + }, + "position": { + "#": 3718 + }, + "force": { + "#": 3719 + }, + "torque": 0, + "positionImpulse": { + "#": 3720 + }, + "constraintImpulse": { + "#": 3721 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3722 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3723 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3724 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3726 + }, + "positionPrev": { + "#": 3729 + }, + "anglePrev": 0, + "axes": { + "#": 3730 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3705 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3705 + } + ], + [ + { + "#": 3708 + }, + { + "#": 3709 + }, + { + "#": 3710 + }, + { + "#": 3711 + }, + { + "#": 3712 + }, + { + "#": 3713 + }, + { + "#": 3714 + }, + { + "#": 3715 + }, + { + "#": 3716 + }, + { + "#": 3717 + } + ], + { + "x": 498.24, + "y": 315.472, + "index": 0, + "body": { + "#": 3705 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 319.472, + "index": 1, + "body": { + "#": 3705 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 321, + "index": 2, + "body": { + "#": 3705 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 319.472, + "index": 3, + "body": { + "#": 3705 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 315.472, + "index": 4, + "body": { + "#": 3705 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 310.528, + "index": 5, + "body": { + "#": 3705 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 306.528, + "index": 6, + "body": { + "#": 3705 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 305, + "index": 7, + "body": { + "#": 3705 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 306.528, + "index": 8, + "body": { + "#": 3705 + }, + "isInternal": false + }, + { + "x": 498.24, + "y": 310.528, + "index": 9, + "body": { + "#": 3705 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3725 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3727 + }, + "max": { + "#": 3728 + } + }, + { + "x": 483.024, + "y": 305 + }, + { + "x": 498.24, + "y": 321 + }, + { + "x": 490.632, + "y": 313 + }, + [ + { + "#": 3731 + }, + { + "#": 3732 + }, + { + "#": 3733 + }, + { + "#": 3734 + }, + { + "#": 3735 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 120, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3737 + }, + "angle": 0, + "vertices": { + "#": 3738 + }, + "position": { + "#": 3749 + }, + "force": { + "#": 3750 + }, + "torque": 0, + "positionImpulse": { + "#": 3751 + }, + "constraintImpulse": { + "#": 3752 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3753 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3754 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3755 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3757 + }, + "positionPrev": { + "#": 3760 + }, + "anglePrev": 0, + "axes": { + "#": 3761 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3736 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3736 + } + ], + [ + { + "#": 3739 + }, + { + "#": 3740 + }, + { + "#": 3741 + }, + { + "#": 3742 + }, + { + "#": 3743 + }, + { + "#": 3744 + }, + { + "#": 3745 + }, + { + "#": 3746 + }, + { + "#": 3747 + }, + { + "#": 3748 + } + ], + { + "x": 518.456, + "y": 315.472, + "index": 0, + "body": { + "#": 3736 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 319.472, + "index": 1, + "body": { + "#": 3736 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 321, + "index": 2, + "body": { + "#": 3736 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 319.472, + "index": 3, + "body": { + "#": 3736 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 315.472, + "index": 4, + "body": { + "#": 3736 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 310.528, + "index": 5, + "body": { + "#": 3736 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 306.528, + "index": 6, + "body": { + "#": 3736 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 305, + "index": 7, + "body": { + "#": 3736 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 306.528, + "index": 8, + "body": { + "#": 3736 + }, + "isInternal": false + }, + { + "x": 518.456, + "y": 310.528, + "index": 9, + "body": { + "#": 3736 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3756 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3758 + }, + "max": { + "#": 3759 + } + }, + { + "x": 503.24, + "y": 305 + }, + { + "x": 518.456, + "y": 321 + }, + { + "x": 510.848, + "y": 313 + }, + [ + { + "#": 3762 + }, + { + "#": 3763 + }, + { + "#": 3764 + }, + { + "#": 3765 + }, + { + "#": 3766 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 121, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3768 + }, + "angle": 0, + "vertices": { + "#": 3769 + }, + "position": { + "#": 3780 + }, + "force": { + "#": 3781 + }, + "torque": 0, + "positionImpulse": { + "#": 3782 + }, + "constraintImpulse": { + "#": 3783 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3784 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3785 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3786 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3788 + }, + "positionPrev": { + "#": 3791 + }, + "anglePrev": 0, + "axes": { + "#": 3792 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3767 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3767 + } + ], + [ + { + "#": 3770 + }, + { + "#": 3771 + }, + { + "#": 3772 + }, + { + "#": 3773 + }, + { + "#": 3774 + }, + { + "#": 3775 + }, + { + "#": 3776 + }, + { + "#": 3777 + }, + { + "#": 3778 + }, + { + "#": 3779 + } + ], + { + "x": 538.672, + "y": 315.472, + "index": 0, + "body": { + "#": 3767 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 319.472, + "index": 1, + "body": { + "#": 3767 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 321, + "index": 2, + "body": { + "#": 3767 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 319.472, + "index": 3, + "body": { + "#": 3767 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 315.472, + "index": 4, + "body": { + "#": 3767 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 310.528, + "index": 5, + "body": { + "#": 3767 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 306.528, + "index": 6, + "body": { + "#": 3767 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 305, + "index": 7, + "body": { + "#": 3767 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 306.528, + "index": 8, + "body": { + "#": 3767 + }, + "isInternal": false + }, + { + "x": 538.672, + "y": 310.528, + "index": 9, + "body": { + "#": 3767 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3787 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3789 + }, + "max": { + "#": 3790 + } + }, + { + "x": 523.456, + "y": 305 + }, + { + "x": 538.672, + "y": 321 + }, + { + "x": 531.064, + "y": 313 + }, + [ + { + "#": 3793 + }, + { + "#": 3794 + }, + { + "#": 3795 + }, + { + "#": 3796 + }, + { + "#": 3797 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 122, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3799 + }, + "angle": 0, + "vertices": { + "#": 3800 + }, + "position": { + "#": 3811 + }, + "force": { + "#": 3812 + }, + "torque": 0, + "positionImpulse": { + "#": 3813 + }, + "constraintImpulse": { + "#": 3814 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3815 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3816 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3817 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3819 + }, + "positionPrev": { + "#": 3822 + }, + "anglePrev": 0, + "axes": { + "#": 3823 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3798 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3798 + } + ], + [ + { + "#": 3801 + }, + { + "#": 3802 + }, + { + "#": 3803 + }, + { + "#": 3804 + }, + { + "#": 3805 + }, + { + "#": 3806 + }, + { + "#": 3807 + }, + { + "#": 3808 + }, + { + "#": 3809 + }, + { + "#": 3810 + } + ], + { + "x": 558.888, + "y": 315.472, + "index": 0, + "body": { + "#": 3798 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 319.472, + "index": 1, + "body": { + "#": 3798 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 321, + "index": 2, + "body": { + "#": 3798 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 319.472, + "index": 3, + "body": { + "#": 3798 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 315.472, + "index": 4, + "body": { + "#": 3798 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 310.528, + "index": 5, + "body": { + "#": 3798 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 306.528, + "index": 6, + "body": { + "#": 3798 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 305, + "index": 7, + "body": { + "#": 3798 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 306.528, + "index": 8, + "body": { + "#": 3798 + }, + "isInternal": false + }, + { + "x": 558.888, + "y": 310.528, + "index": 9, + "body": { + "#": 3798 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3818 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3820 + }, + "max": { + "#": 3821 + } + }, + { + "x": 543.672, + "y": 305 + }, + { + "x": 558.888, + "y": 321 + }, + { + "x": 551.28, + "y": 313 + }, + [ + { + "#": 3824 + }, + { + "#": 3825 + }, + { + "#": 3826 + }, + { + "#": 3827 + }, + { + "#": 3828 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 123, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3830 + }, + "angle": 0, + "vertices": { + "#": 3831 + }, + "position": { + "#": 3842 + }, + "force": { + "#": 3843 + }, + "torque": 0, + "positionImpulse": { + "#": 3844 + }, + "constraintImpulse": { + "#": 3845 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3846 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3847 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3848 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3850 + }, + "positionPrev": { + "#": 3853 + }, + "anglePrev": 0, + "axes": { + "#": 3854 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3829 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3829 + } + ], + [ + { + "#": 3832 + }, + { + "#": 3833 + }, + { + "#": 3834 + }, + { + "#": 3835 + }, + { + "#": 3836 + }, + { + "#": 3837 + }, + { + "#": 3838 + }, + { + "#": 3839 + }, + { + "#": 3840 + }, + { + "#": 3841 + } + ], + { + "x": 579.104, + "y": 315.472, + "index": 0, + "body": { + "#": 3829 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 319.472, + "index": 1, + "body": { + "#": 3829 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 321, + "index": 2, + "body": { + "#": 3829 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 319.472, + "index": 3, + "body": { + "#": 3829 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 315.472, + "index": 4, + "body": { + "#": 3829 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 310.528, + "index": 5, + "body": { + "#": 3829 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 306.528, + "index": 6, + "body": { + "#": 3829 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 305, + "index": 7, + "body": { + "#": 3829 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 306.528, + "index": 8, + "body": { + "#": 3829 + }, + "isInternal": false + }, + { + "x": 579.104, + "y": 310.528, + "index": 9, + "body": { + "#": 3829 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3849 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3851 + }, + "max": { + "#": 3852 + } + }, + { + "x": 563.888, + "y": 305 + }, + { + "x": 579.104, + "y": 321 + }, + { + "x": 571.496, + "y": 313 + }, + [ + { + "#": 3855 + }, + { + "#": 3856 + }, + { + "#": 3857 + }, + { + "#": 3858 + }, + { + "#": 3859 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 124, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3861 + }, + "angle": 0, + "vertices": { + "#": 3862 + }, + "position": { + "#": 3873 + }, + "force": { + "#": 3874 + }, + "torque": 0, + "positionImpulse": { + "#": 3875 + }, + "constraintImpulse": { + "#": 3876 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3877 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3878 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3879 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3881 + }, + "positionPrev": { + "#": 3884 + }, + "anglePrev": 0, + "axes": { + "#": 3885 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3860 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3860 + } + ], + [ + { + "#": 3863 + }, + { + "#": 3864 + }, + { + "#": 3865 + }, + { + "#": 3866 + }, + { + "#": 3867 + }, + { + "#": 3868 + }, + { + "#": 3869 + }, + { + "#": 3870 + }, + { + "#": 3871 + }, + { + "#": 3872 + } + ], + { + "x": 599.32, + "y": 315.472, + "index": 0, + "body": { + "#": 3860 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 319.472, + "index": 1, + "body": { + "#": 3860 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 321, + "index": 2, + "body": { + "#": 3860 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 319.472, + "index": 3, + "body": { + "#": 3860 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 315.472, + "index": 4, + "body": { + "#": 3860 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 310.528, + "index": 5, + "body": { + "#": 3860 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 306.528, + "index": 6, + "body": { + "#": 3860 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 305, + "index": 7, + "body": { + "#": 3860 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 306.528, + "index": 8, + "body": { + "#": 3860 + }, + "isInternal": false + }, + { + "x": 599.32, + "y": 310.528, + "index": 9, + "body": { + "#": 3860 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3880 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3882 + }, + "max": { + "#": 3883 + } + }, + { + "x": 584.104, + "y": 305 + }, + { + "x": 599.32, + "y": 321 + }, + { + "x": 591.712, + "y": 313 + }, + [ + { + "#": 3886 + }, + { + "#": 3887 + }, + { + "#": 3888 + }, + { + "#": 3889 + }, + { + "#": 3890 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 125, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3892 + }, + "angle": 0, + "vertices": { + "#": 3893 + }, + "position": { + "#": 3904 + }, + "force": { + "#": 3905 + }, + "torque": 0, + "positionImpulse": { + "#": 3906 + }, + "constraintImpulse": { + "#": 3907 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3908 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3909 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3910 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3912 + }, + "positionPrev": { + "#": 3915 + }, + "anglePrev": 0, + "axes": { + "#": 3916 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3891 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3891 + } + ], + [ + { + "#": 3894 + }, + { + "#": 3895 + }, + { + "#": 3896 + }, + { + "#": 3897 + }, + { + "#": 3898 + }, + { + "#": 3899 + }, + { + "#": 3900 + }, + { + "#": 3901 + }, + { + "#": 3902 + }, + { + "#": 3903 + } + ], + { + "x": 215.216, + "y": 336.472, + "index": 0, + "body": { + "#": 3891 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 340.472, + "index": 1, + "body": { + "#": 3891 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 342, + "index": 2, + "body": { + "#": 3891 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 340.472, + "index": 3, + "body": { + "#": 3891 + }, + "isInternal": false + }, + { + "x": 200, + "y": 336.472, + "index": 4, + "body": { + "#": 3891 + }, + "isInternal": false + }, + { + "x": 200, + "y": 331.528, + "index": 5, + "body": { + "#": 3891 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 327.528, + "index": 6, + "body": { + "#": 3891 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 326, + "index": 7, + "body": { + "#": 3891 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 327.528, + "index": 8, + "body": { + "#": 3891 + }, + "isInternal": false + }, + { + "x": 215.216, + "y": 331.528, + "index": 9, + "body": { + "#": 3891 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3911 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3913 + }, + "max": { + "#": 3914 + } + }, + { + "x": 200, + "y": 326 + }, + { + "x": 215.216, + "y": 342 + }, + { + "x": 207.608, + "y": 334 + }, + [ + { + "#": 3917 + }, + { + "#": 3918 + }, + { + "#": 3919 + }, + { + "#": 3920 + }, + { + "#": 3921 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 126, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3923 + }, + "angle": 0, + "vertices": { + "#": 3924 + }, + "position": { + "#": 3935 + }, + "force": { + "#": 3936 + }, + "torque": 0, + "positionImpulse": { + "#": 3937 + }, + "constraintImpulse": { + "#": 3938 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3939 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3940 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3941 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3943 + }, + "positionPrev": { + "#": 3946 + }, + "anglePrev": 0, + "axes": { + "#": 3947 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3922 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3922 + } + ], + [ + { + "#": 3925 + }, + { + "#": 3926 + }, + { + "#": 3927 + }, + { + "#": 3928 + }, + { + "#": 3929 + }, + { + "#": 3930 + }, + { + "#": 3931 + }, + { + "#": 3932 + }, + { + "#": 3933 + }, + { + "#": 3934 + } + ], + { + "x": 235.432, + "y": 336.472, + "index": 0, + "body": { + "#": 3922 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 340.472, + "index": 1, + "body": { + "#": 3922 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 342, + "index": 2, + "body": { + "#": 3922 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 340.472, + "index": 3, + "body": { + "#": 3922 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 336.472, + "index": 4, + "body": { + "#": 3922 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 331.528, + "index": 5, + "body": { + "#": 3922 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 327.528, + "index": 6, + "body": { + "#": 3922 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 326, + "index": 7, + "body": { + "#": 3922 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 327.528, + "index": 8, + "body": { + "#": 3922 + }, + "isInternal": false + }, + { + "x": 235.432, + "y": 331.528, + "index": 9, + "body": { + "#": 3922 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3942 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3944 + }, + "max": { + "#": 3945 + } + }, + { + "x": 220.216, + "y": 326 + }, + { + "x": 235.432, + "y": 342 + }, + { + "x": 227.824, + "y": 334 + }, + [ + { + "#": 3948 + }, + { + "#": 3949 + }, + { + "#": 3950 + }, + { + "#": 3951 + }, + { + "#": 3952 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 127, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3954 + }, + "angle": 0, + "vertices": { + "#": 3955 + }, + "position": { + "#": 3966 + }, + "force": { + "#": 3967 + }, + "torque": 0, + "positionImpulse": { + "#": 3968 + }, + "constraintImpulse": { + "#": 3969 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3970 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3971 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3972 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3974 + }, + "positionPrev": { + "#": 3977 + }, + "anglePrev": 0, + "axes": { + "#": 3978 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3953 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3953 + } + ], + [ + { + "#": 3956 + }, + { + "#": 3957 + }, + { + "#": 3958 + }, + { + "#": 3959 + }, + { + "#": 3960 + }, + { + "#": 3961 + }, + { + "#": 3962 + }, + { + "#": 3963 + }, + { + "#": 3964 + }, + { + "#": 3965 + } + ], + { + "x": 255.648, + "y": 336.472, + "index": 0, + "body": { + "#": 3953 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 340.472, + "index": 1, + "body": { + "#": 3953 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 342, + "index": 2, + "body": { + "#": 3953 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 340.472, + "index": 3, + "body": { + "#": 3953 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 336.472, + "index": 4, + "body": { + "#": 3953 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 331.528, + "index": 5, + "body": { + "#": 3953 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 327.528, + "index": 6, + "body": { + "#": 3953 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 326, + "index": 7, + "body": { + "#": 3953 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 327.528, + "index": 8, + "body": { + "#": 3953 + }, + "isInternal": false + }, + { + "x": 255.648, + "y": 331.528, + "index": 9, + "body": { + "#": 3953 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3973 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3975 + }, + "max": { + "#": 3976 + } + }, + { + "x": 240.432, + "y": 326 + }, + { + "x": 255.648, + "y": 342 + }, + { + "x": 248.04, + "y": 334 + }, + [ + { + "#": 3979 + }, + { + "#": 3980 + }, + { + "#": 3981 + }, + { + "#": 3982 + }, + { + "#": 3983 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 128, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3985 + }, + "angle": 0, + "vertices": { + "#": 3986 + }, + "position": { + "#": 3997 + }, + "force": { + "#": 3998 + }, + "torque": 0, + "positionImpulse": { + "#": 3999 + }, + "constraintImpulse": { + "#": 4000 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4001 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4002 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4003 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4005 + }, + "positionPrev": { + "#": 4008 + }, + "anglePrev": 0, + "axes": { + "#": 4009 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3984 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3984 + } + ], + [ + { + "#": 3987 + }, + { + "#": 3988 + }, + { + "#": 3989 + }, + { + "#": 3990 + }, + { + "#": 3991 + }, + { + "#": 3992 + }, + { + "#": 3993 + }, + { + "#": 3994 + }, + { + "#": 3995 + }, + { + "#": 3996 + } + ], + { + "x": 275.864, + "y": 336.472, + "index": 0, + "body": { + "#": 3984 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 340.472, + "index": 1, + "body": { + "#": 3984 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 342, + "index": 2, + "body": { + "#": 3984 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 340.472, + "index": 3, + "body": { + "#": 3984 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 336.472, + "index": 4, + "body": { + "#": 3984 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 331.528, + "index": 5, + "body": { + "#": 3984 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 327.528, + "index": 6, + "body": { + "#": 3984 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 326, + "index": 7, + "body": { + "#": 3984 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 327.528, + "index": 8, + "body": { + "#": 3984 + }, + "isInternal": false + }, + { + "x": 275.864, + "y": 331.528, + "index": 9, + "body": { + "#": 3984 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4004 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4006 + }, + "max": { + "#": 4007 + } + }, + { + "x": 260.648, + "y": 326 + }, + { + "x": 275.864, + "y": 342 + }, + { + "x": 268.256, + "y": 334 + }, + [ + { + "#": 4010 + }, + { + "#": 4011 + }, + { + "#": 4012 + }, + { + "#": 4013 + }, + { + "#": 4014 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 129, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4016 + }, + "angle": 0, + "vertices": { + "#": 4017 + }, + "position": { + "#": 4028 + }, + "force": { + "#": 4029 + }, + "torque": 0, + "positionImpulse": { + "#": 4030 + }, + "constraintImpulse": { + "#": 4031 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4032 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4033 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4034 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4036 + }, + "positionPrev": { + "#": 4039 + }, + "anglePrev": 0, + "axes": { + "#": 4040 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4015 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4015 + } + ], + [ + { + "#": 4018 + }, + { + "#": 4019 + }, + { + "#": 4020 + }, + { + "#": 4021 + }, + { + "#": 4022 + }, + { + "#": 4023 + }, + { + "#": 4024 + }, + { + "#": 4025 + }, + { + "#": 4026 + }, + { + "#": 4027 + } + ], + { + "x": 296.08, + "y": 336.472, + "index": 0, + "body": { + "#": 4015 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 340.472, + "index": 1, + "body": { + "#": 4015 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 342, + "index": 2, + "body": { + "#": 4015 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 340.472, + "index": 3, + "body": { + "#": 4015 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 336.472, + "index": 4, + "body": { + "#": 4015 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 331.528, + "index": 5, + "body": { + "#": 4015 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 327.528, + "index": 6, + "body": { + "#": 4015 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 326, + "index": 7, + "body": { + "#": 4015 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 327.528, + "index": 8, + "body": { + "#": 4015 + }, + "isInternal": false + }, + { + "x": 296.08, + "y": 331.528, + "index": 9, + "body": { + "#": 4015 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4035 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4037 + }, + "max": { + "#": 4038 + } + }, + { + "x": 280.864, + "y": 326 + }, + { + "x": 296.08, + "y": 342 + }, + { + "x": 288.472, + "y": 334 + }, + [ + { + "#": 4041 + }, + { + "#": 4042 + }, + { + "#": 4043 + }, + { + "#": 4044 + }, + { + "#": 4045 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 130, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4047 + }, + "angle": 0, + "vertices": { + "#": 4048 + }, + "position": { + "#": 4059 + }, + "force": { + "#": 4060 + }, + "torque": 0, + "positionImpulse": { + "#": 4061 + }, + "constraintImpulse": { + "#": 4062 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4063 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4064 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4065 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4067 + }, + "positionPrev": { + "#": 4070 + }, + "anglePrev": 0, + "axes": { + "#": 4071 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4046 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4046 + } + ], + [ + { + "#": 4049 + }, + { + "#": 4050 + }, + { + "#": 4051 + }, + { + "#": 4052 + }, + { + "#": 4053 + }, + { + "#": 4054 + }, + { + "#": 4055 + }, + { + "#": 4056 + }, + { + "#": 4057 + }, + { + "#": 4058 + } + ], + { + "x": 316.296, + "y": 336.472, + "index": 0, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 340.472, + "index": 1, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 342, + "index": 2, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 340.472, + "index": 3, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 336.472, + "index": 4, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 331.528, + "index": 5, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 327.528, + "index": 6, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 326, + "index": 7, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 327.528, + "index": 8, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 316.296, + "y": 331.528, + "index": 9, + "body": { + "#": 4046 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4066 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4068 + }, + "max": { + "#": 4069 + } + }, + { + "x": 301.08, + "y": 326 + }, + { + "x": 316.296, + "y": 342 + }, + { + "x": 308.688, + "y": 334 + }, + [ + { + "#": 4072 + }, + { + "#": 4073 + }, + { + "#": 4074 + }, + { + "#": 4075 + }, + { + "#": 4076 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 131, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4078 + }, + "angle": 0, + "vertices": { + "#": 4079 + }, + "position": { + "#": 4090 + }, + "force": { + "#": 4091 + }, + "torque": 0, + "positionImpulse": { + "#": 4092 + }, + "constraintImpulse": { + "#": 4093 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4094 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4095 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4096 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4098 + }, + "positionPrev": { + "#": 4101 + }, + "anglePrev": 0, + "axes": { + "#": 4102 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4077 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4077 + } + ], + [ + { + "#": 4080 + }, + { + "#": 4081 + }, + { + "#": 4082 + }, + { + "#": 4083 + }, + { + "#": 4084 + }, + { + "#": 4085 + }, + { + "#": 4086 + }, + { + "#": 4087 + }, + { + "#": 4088 + }, + { + "#": 4089 + } + ], + { + "x": 336.512, + "y": 336.472, + "index": 0, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 340.472, + "index": 1, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 342, + "index": 2, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 340.472, + "index": 3, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 336.472, + "index": 4, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 331.528, + "index": 5, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 327.528, + "index": 6, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 326, + "index": 7, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 327.528, + "index": 8, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 336.512, + "y": 331.528, + "index": 9, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4097 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4099 + }, + "max": { + "#": 4100 + } + }, + { + "x": 321.296, + "y": 326 + }, + { + "x": 336.512, + "y": 342 + }, + { + "x": 328.904, + "y": 334 + }, + [ + { + "#": 4103 + }, + { + "#": 4104 + }, + { + "#": 4105 + }, + { + "#": 4106 + }, + { + "#": 4107 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 132, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4109 + }, + "angle": 0, + "vertices": { + "#": 4110 + }, + "position": { + "#": 4121 + }, + "force": { + "#": 4122 + }, + "torque": 0, + "positionImpulse": { + "#": 4123 + }, + "constraintImpulse": { + "#": 4124 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4125 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4126 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4127 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4129 + }, + "positionPrev": { + "#": 4132 + }, + "anglePrev": 0, + "axes": { + "#": 4133 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4108 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4108 + } + ], + [ + { + "#": 4111 + }, + { + "#": 4112 + }, + { + "#": 4113 + }, + { + "#": 4114 + }, + { + "#": 4115 + }, + { + "#": 4116 + }, + { + "#": 4117 + }, + { + "#": 4118 + }, + { + "#": 4119 + }, + { + "#": 4120 + } + ], + { + "x": 356.728, + "y": 336.472, + "index": 0, + "body": { + "#": 4108 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 340.472, + "index": 1, + "body": { + "#": 4108 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 342, + "index": 2, + "body": { + "#": 4108 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 340.472, + "index": 3, + "body": { + "#": 4108 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 336.472, + "index": 4, + "body": { + "#": 4108 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 331.528, + "index": 5, + "body": { + "#": 4108 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 327.528, + "index": 6, + "body": { + "#": 4108 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 326, + "index": 7, + "body": { + "#": 4108 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 327.528, + "index": 8, + "body": { + "#": 4108 + }, + "isInternal": false + }, + { + "x": 356.728, + "y": 331.528, + "index": 9, + "body": { + "#": 4108 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4128 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4130 + }, + "max": { + "#": 4131 + } + }, + { + "x": 341.512, + "y": 326 + }, + { + "x": 356.728, + "y": 342 + }, + { + "x": 349.12, + "y": 334 + }, + [ + { + "#": 4134 + }, + { + "#": 4135 + }, + { + "#": 4136 + }, + { + "#": 4137 + }, + { + "#": 4138 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 133, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4140 + }, + "angle": 0, + "vertices": { + "#": 4141 + }, + "position": { + "#": 4152 + }, + "force": { + "#": 4153 + }, + "torque": 0, + "positionImpulse": { + "#": 4154 + }, + "constraintImpulse": { + "#": 4155 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4156 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4157 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4158 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4160 + }, + "positionPrev": { + "#": 4163 + }, + "anglePrev": 0, + "axes": { + "#": 4164 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4139 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4139 + } + ], + [ + { + "#": 4142 + }, + { + "#": 4143 + }, + { + "#": 4144 + }, + { + "#": 4145 + }, + { + "#": 4146 + }, + { + "#": 4147 + }, + { + "#": 4148 + }, + { + "#": 4149 + }, + { + "#": 4150 + }, + { + "#": 4151 + } + ], + { + "x": 376.944, + "y": 336.472, + "index": 0, + "body": { + "#": 4139 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 340.472, + "index": 1, + "body": { + "#": 4139 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 342, + "index": 2, + "body": { + "#": 4139 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 340.472, + "index": 3, + "body": { + "#": 4139 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 336.472, + "index": 4, + "body": { + "#": 4139 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 331.528, + "index": 5, + "body": { + "#": 4139 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 327.528, + "index": 6, + "body": { + "#": 4139 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 326, + "index": 7, + "body": { + "#": 4139 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 327.528, + "index": 8, + "body": { + "#": 4139 + }, + "isInternal": false + }, + { + "x": 376.944, + "y": 331.528, + "index": 9, + "body": { + "#": 4139 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4159 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4161 + }, + "max": { + "#": 4162 + } + }, + { + "x": 361.728, + "y": 326 + }, + { + "x": 376.944, + "y": 342 + }, + { + "x": 369.336, + "y": 334 + }, + [ + { + "#": 4165 + }, + { + "#": 4166 + }, + { + "#": 4167 + }, + { + "#": 4168 + }, + { + "#": 4169 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 134, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4171 + }, + "angle": 0, + "vertices": { + "#": 4172 + }, + "position": { + "#": 4183 + }, + "force": { + "#": 4184 + }, + "torque": 0, + "positionImpulse": { + "#": 4185 + }, + "constraintImpulse": { + "#": 4186 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4187 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4188 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4189 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4191 + }, + "positionPrev": { + "#": 4194 + }, + "anglePrev": 0, + "axes": { + "#": 4195 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4170 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4170 + } + ], + [ + { + "#": 4173 + }, + { + "#": 4174 + }, + { + "#": 4175 + }, + { + "#": 4176 + }, + { + "#": 4177 + }, + { + "#": 4178 + }, + { + "#": 4179 + }, + { + "#": 4180 + }, + { + "#": 4181 + }, + { + "#": 4182 + } + ], + { + "x": 397.16, + "y": 336.472, + "index": 0, + "body": { + "#": 4170 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 340.472, + "index": 1, + "body": { + "#": 4170 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 342, + "index": 2, + "body": { + "#": 4170 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 340.472, + "index": 3, + "body": { + "#": 4170 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 336.472, + "index": 4, + "body": { + "#": 4170 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 331.528, + "index": 5, + "body": { + "#": 4170 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 327.528, + "index": 6, + "body": { + "#": 4170 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 326, + "index": 7, + "body": { + "#": 4170 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 327.528, + "index": 8, + "body": { + "#": 4170 + }, + "isInternal": false + }, + { + "x": 397.16, + "y": 331.528, + "index": 9, + "body": { + "#": 4170 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4190 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4192 + }, + "max": { + "#": 4193 + } + }, + { + "x": 381.944, + "y": 326 + }, + { + "x": 397.16, + "y": 342 + }, + { + "x": 389.552, + "y": 334 + }, + [ + { + "#": 4196 + }, + { + "#": 4197 + }, + { + "#": 4198 + }, + { + "#": 4199 + }, + { + "#": 4200 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 135, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4202 + }, + "angle": 0, + "vertices": { + "#": 4203 + }, + "position": { + "#": 4214 + }, + "force": { + "#": 4215 + }, + "torque": 0, + "positionImpulse": { + "#": 4216 + }, + "constraintImpulse": { + "#": 4217 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4218 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4219 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4220 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4222 + }, + "positionPrev": { + "#": 4225 + }, + "anglePrev": 0, + "axes": { + "#": 4226 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4201 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4201 + } + ], + [ + { + "#": 4204 + }, + { + "#": 4205 + }, + { + "#": 4206 + }, + { + "#": 4207 + }, + { + "#": 4208 + }, + { + "#": 4209 + }, + { + "#": 4210 + }, + { + "#": 4211 + }, + { + "#": 4212 + }, + { + "#": 4213 + } + ], + { + "x": 417.376, + "y": 336.472, + "index": 0, + "body": { + "#": 4201 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 340.472, + "index": 1, + "body": { + "#": 4201 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 342, + "index": 2, + "body": { + "#": 4201 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 340.472, + "index": 3, + "body": { + "#": 4201 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 336.472, + "index": 4, + "body": { + "#": 4201 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 331.528, + "index": 5, + "body": { + "#": 4201 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 327.528, + "index": 6, + "body": { + "#": 4201 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 326, + "index": 7, + "body": { + "#": 4201 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 327.528, + "index": 8, + "body": { + "#": 4201 + }, + "isInternal": false + }, + { + "x": 417.376, + "y": 331.528, + "index": 9, + "body": { + "#": 4201 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4221 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4223 + }, + "max": { + "#": 4224 + } + }, + { + "x": 402.16, + "y": 326 + }, + { + "x": 417.376, + "y": 342 + }, + { + "x": 409.768, + "y": 334 + }, + [ + { + "#": 4227 + }, + { + "#": 4228 + }, + { + "#": 4229 + }, + { + "#": 4230 + }, + { + "#": 4231 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 136, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4233 + }, + "angle": 0, + "vertices": { + "#": 4234 + }, + "position": { + "#": 4245 + }, + "force": { + "#": 4246 + }, + "torque": 0, + "positionImpulse": { + "#": 4247 + }, + "constraintImpulse": { + "#": 4248 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4249 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4250 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4251 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4253 + }, + "positionPrev": { + "#": 4256 + }, + "anglePrev": 0, + "axes": { + "#": 4257 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4232 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4232 + } + ], + [ + { + "#": 4235 + }, + { + "#": 4236 + }, + { + "#": 4237 + }, + { + "#": 4238 + }, + { + "#": 4239 + }, + { + "#": 4240 + }, + { + "#": 4241 + }, + { + "#": 4242 + }, + { + "#": 4243 + }, + { + "#": 4244 + } + ], + { + "x": 437.592, + "y": 336.472, + "index": 0, + "body": { + "#": 4232 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 340.472, + "index": 1, + "body": { + "#": 4232 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 342, + "index": 2, + "body": { + "#": 4232 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 340.472, + "index": 3, + "body": { + "#": 4232 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 336.472, + "index": 4, + "body": { + "#": 4232 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 331.528, + "index": 5, + "body": { + "#": 4232 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 327.528, + "index": 6, + "body": { + "#": 4232 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 326, + "index": 7, + "body": { + "#": 4232 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 327.528, + "index": 8, + "body": { + "#": 4232 + }, + "isInternal": false + }, + { + "x": 437.592, + "y": 331.528, + "index": 9, + "body": { + "#": 4232 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4252 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4254 + }, + "max": { + "#": 4255 + } + }, + { + "x": 422.376, + "y": 326 + }, + { + "x": 437.592, + "y": 342 + }, + { + "x": 429.984, + "y": 334 + }, + [ + { + "#": 4258 + }, + { + "#": 4259 + }, + { + "#": 4260 + }, + { + "#": 4261 + }, + { + "#": 4262 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 137, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4264 + }, + "angle": 0, + "vertices": { + "#": 4265 + }, + "position": { + "#": 4276 + }, + "force": { + "#": 4277 + }, + "torque": 0, + "positionImpulse": { + "#": 4278 + }, + "constraintImpulse": { + "#": 4279 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4280 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4281 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4282 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4284 + }, + "positionPrev": { + "#": 4287 + }, + "anglePrev": 0, + "axes": { + "#": 4288 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4263 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4263 + } + ], + [ + { + "#": 4266 + }, + { + "#": 4267 + }, + { + "#": 4268 + }, + { + "#": 4269 + }, + { + "#": 4270 + }, + { + "#": 4271 + }, + { + "#": 4272 + }, + { + "#": 4273 + }, + { + "#": 4274 + }, + { + "#": 4275 + } + ], + { + "x": 457.808, + "y": 336.472, + "index": 0, + "body": { + "#": 4263 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 340.472, + "index": 1, + "body": { + "#": 4263 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 342, + "index": 2, + "body": { + "#": 4263 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 340.472, + "index": 3, + "body": { + "#": 4263 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 336.472, + "index": 4, + "body": { + "#": 4263 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 331.528, + "index": 5, + "body": { + "#": 4263 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 327.528, + "index": 6, + "body": { + "#": 4263 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 326, + "index": 7, + "body": { + "#": 4263 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 327.528, + "index": 8, + "body": { + "#": 4263 + }, + "isInternal": false + }, + { + "x": 457.808, + "y": 331.528, + "index": 9, + "body": { + "#": 4263 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4283 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4285 + }, + "max": { + "#": 4286 + } + }, + { + "x": 442.592, + "y": 326 + }, + { + "x": 457.808, + "y": 342 + }, + { + "x": 450.2, + "y": 334 + }, + [ + { + "#": 4289 + }, + { + "#": 4290 + }, + { + "#": 4291 + }, + { + "#": 4292 + }, + { + "#": 4293 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 138, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4295 + }, + "angle": 0, + "vertices": { + "#": 4296 + }, + "position": { + "#": 4307 + }, + "force": { + "#": 4308 + }, + "torque": 0, + "positionImpulse": { + "#": 4309 + }, + "constraintImpulse": { + "#": 4310 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4311 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4312 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4313 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4315 + }, + "positionPrev": { + "#": 4318 + }, + "anglePrev": 0, + "axes": { + "#": 4319 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4294 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4294 + } + ], + [ + { + "#": 4297 + }, + { + "#": 4298 + }, + { + "#": 4299 + }, + { + "#": 4300 + }, + { + "#": 4301 + }, + { + "#": 4302 + }, + { + "#": 4303 + }, + { + "#": 4304 + }, + { + "#": 4305 + }, + { + "#": 4306 + } + ], + { + "x": 478.024, + "y": 336.472, + "index": 0, + "body": { + "#": 4294 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 340.472, + "index": 1, + "body": { + "#": 4294 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 342, + "index": 2, + "body": { + "#": 4294 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 340.472, + "index": 3, + "body": { + "#": 4294 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 336.472, + "index": 4, + "body": { + "#": 4294 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 331.528, + "index": 5, + "body": { + "#": 4294 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 327.528, + "index": 6, + "body": { + "#": 4294 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 326, + "index": 7, + "body": { + "#": 4294 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 327.528, + "index": 8, + "body": { + "#": 4294 + }, + "isInternal": false + }, + { + "x": 478.024, + "y": 331.528, + "index": 9, + "body": { + "#": 4294 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4314 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4316 + }, + "max": { + "#": 4317 + } + }, + { + "x": 462.808, + "y": 326 + }, + { + "x": 478.024, + "y": 342 + }, + { + "x": 470.416, + "y": 334 + }, + [ + { + "#": 4320 + }, + { + "#": 4321 + }, + { + "#": 4322 + }, + { + "#": 4323 + }, + { + "#": 4324 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 139, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4326 + }, + "angle": 0, + "vertices": { + "#": 4327 + }, + "position": { + "#": 4338 + }, + "force": { + "#": 4339 + }, + "torque": 0, + "positionImpulse": { + "#": 4340 + }, + "constraintImpulse": { + "#": 4341 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4342 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4343 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4344 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4346 + }, + "positionPrev": { + "#": 4349 + }, + "anglePrev": 0, + "axes": { + "#": 4350 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4325 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4325 + } + ], + [ + { + "#": 4328 + }, + { + "#": 4329 + }, + { + "#": 4330 + }, + { + "#": 4331 + }, + { + "#": 4332 + }, + { + "#": 4333 + }, + { + "#": 4334 + }, + { + "#": 4335 + }, + { + "#": 4336 + }, + { + "#": 4337 + } + ], + { + "x": 498.24, + "y": 336.472, + "index": 0, + "body": { + "#": 4325 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 340.472, + "index": 1, + "body": { + "#": 4325 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 342, + "index": 2, + "body": { + "#": 4325 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 340.472, + "index": 3, + "body": { + "#": 4325 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 336.472, + "index": 4, + "body": { + "#": 4325 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 331.528, + "index": 5, + "body": { + "#": 4325 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 327.528, + "index": 6, + "body": { + "#": 4325 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 326, + "index": 7, + "body": { + "#": 4325 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 327.528, + "index": 8, + "body": { + "#": 4325 + }, + "isInternal": false + }, + { + "x": 498.24, + "y": 331.528, + "index": 9, + "body": { + "#": 4325 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4345 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4347 + }, + "max": { + "#": 4348 + } + }, + { + "x": 483.024, + "y": 326 + }, + { + "x": 498.24, + "y": 342 + }, + { + "x": 490.632, + "y": 334 + }, + [ + { + "#": 4351 + }, + { + "#": 4352 + }, + { + "#": 4353 + }, + { + "#": 4354 + }, + { + "#": 4355 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 140, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4357 + }, + "angle": 0, + "vertices": { + "#": 4358 + }, + "position": { + "#": 4369 + }, + "force": { + "#": 4370 + }, + "torque": 0, + "positionImpulse": { + "#": 4371 + }, + "constraintImpulse": { + "#": 4372 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4373 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4374 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4375 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4377 + }, + "positionPrev": { + "#": 4380 + }, + "anglePrev": 0, + "axes": { + "#": 4381 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4356 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4356 + } + ], + [ + { + "#": 4359 + }, + { + "#": 4360 + }, + { + "#": 4361 + }, + { + "#": 4362 + }, + { + "#": 4363 + }, + { + "#": 4364 + }, + { + "#": 4365 + }, + { + "#": 4366 + }, + { + "#": 4367 + }, + { + "#": 4368 + } + ], + { + "x": 518.456, + "y": 336.472, + "index": 0, + "body": { + "#": 4356 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 340.472, + "index": 1, + "body": { + "#": 4356 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 342, + "index": 2, + "body": { + "#": 4356 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 340.472, + "index": 3, + "body": { + "#": 4356 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 336.472, + "index": 4, + "body": { + "#": 4356 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 331.528, + "index": 5, + "body": { + "#": 4356 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 327.528, + "index": 6, + "body": { + "#": 4356 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 326, + "index": 7, + "body": { + "#": 4356 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 327.528, + "index": 8, + "body": { + "#": 4356 + }, + "isInternal": false + }, + { + "x": 518.456, + "y": 331.528, + "index": 9, + "body": { + "#": 4356 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4376 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4378 + }, + "max": { + "#": 4379 + } + }, + { + "x": 503.24, + "y": 326 + }, + { + "x": 518.456, + "y": 342 + }, + { + "x": 510.848, + "y": 334 + }, + [ + { + "#": 4382 + }, + { + "#": 4383 + }, + { + "#": 4384 + }, + { + "#": 4385 + }, + { + "#": 4386 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 141, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4388 + }, + "angle": 0, + "vertices": { + "#": 4389 + }, + "position": { + "#": 4400 + }, + "force": { + "#": 4401 + }, + "torque": 0, + "positionImpulse": { + "#": 4402 + }, + "constraintImpulse": { + "#": 4403 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4404 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4405 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4406 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4408 + }, + "positionPrev": { + "#": 4411 + }, + "anglePrev": 0, + "axes": { + "#": 4412 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4387 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4387 + } + ], + [ + { + "#": 4390 + }, + { + "#": 4391 + }, + { + "#": 4392 + }, + { + "#": 4393 + }, + { + "#": 4394 + }, + { + "#": 4395 + }, + { + "#": 4396 + }, + { + "#": 4397 + }, + { + "#": 4398 + }, + { + "#": 4399 + } + ], + { + "x": 538.672, + "y": 336.472, + "index": 0, + "body": { + "#": 4387 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 340.472, + "index": 1, + "body": { + "#": 4387 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 342, + "index": 2, + "body": { + "#": 4387 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 340.472, + "index": 3, + "body": { + "#": 4387 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 336.472, + "index": 4, + "body": { + "#": 4387 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 331.528, + "index": 5, + "body": { + "#": 4387 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 327.528, + "index": 6, + "body": { + "#": 4387 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 326, + "index": 7, + "body": { + "#": 4387 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 327.528, + "index": 8, + "body": { + "#": 4387 + }, + "isInternal": false + }, + { + "x": 538.672, + "y": 331.528, + "index": 9, + "body": { + "#": 4387 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4407 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4409 + }, + "max": { + "#": 4410 + } + }, + { + "x": 523.456, + "y": 326 + }, + { + "x": 538.672, + "y": 342 + }, + { + "x": 531.064, + "y": 334 + }, + [ + { + "#": 4413 + }, + { + "#": 4414 + }, + { + "#": 4415 + }, + { + "#": 4416 + }, + { + "#": 4417 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 142, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4419 + }, + "angle": 0, + "vertices": { + "#": 4420 + }, + "position": { + "#": 4431 + }, + "force": { + "#": 4432 + }, + "torque": 0, + "positionImpulse": { + "#": 4433 + }, + "constraintImpulse": { + "#": 4434 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4435 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4436 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4437 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4439 + }, + "positionPrev": { + "#": 4442 + }, + "anglePrev": 0, + "axes": { + "#": 4443 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4418 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4418 + } + ], + [ + { + "#": 4421 + }, + { + "#": 4422 + }, + { + "#": 4423 + }, + { + "#": 4424 + }, + { + "#": 4425 + }, + { + "#": 4426 + }, + { + "#": 4427 + }, + { + "#": 4428 + }, + { + "#": 4429 + }, + { + "#": 4430 + } + ], + { + "x": 558.888, + "y": 336.472, + "index": 0, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 340.472, + "index": 1, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 342, + "index": 2, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 340.472, + "index": 3, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 336.472, + "index": 4, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 331.528, + "index": 5, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 327.528, + "index": 6, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 326, + "index": 7, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 327.528, + "index": 8, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 558.888, + "y": 331.528, + "index": 9, + "body": { + "#": 4418 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4438 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4440 + }, + "max": { + "#": 4441 + } + }, + { + "x": 543.672, + "y": 326 + }, + { + "x": 558.888, + "y": 342 + }, + { + "x": 551.28, + "y": 334 + }, + [ + { + "#": 4444 + }, + { + "#": 4445 + }, + { + "#": 4446 + }, + { + "#": 4447 + }, + { + "#": 4448 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 143, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4450 + }, + "angle": 0, + "vertices": { + "#": 4451 + }, + "position": { + "#": 4462 + }, + "force": { + "#": 4463 + }, + "torque": 0, + "positionImpulse": { + "#": 4464 + }, + "constraintImpulse": { + "#": 4465 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4466 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4467 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4468 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4470 + }, + "positionPrev": { + "#": 4473 + }, + "anglePrev": 0, + "axes": { + "#": 4474 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4449 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4449 + } + ], + [ + { + "#": 4452 + }, + { + "#": 4453 + }, + { + "#": 4454 + }, + { + "#": 4455 + }, + { + "#": 4456 + }, + { + "#": 4457 + }, + { + "#": 4458 + }, + { + "#": 4459 + }, + { + "#": 4460 + }, + { + "#": 4461 + } + ], + { + "x": 579.104, + "y": 336.472, + "index": 0, + "body": { + "#": 4449 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 340.472, + "index": 1, + "body": { + "#": 4449 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 342, + "index": 2, + "body": { + "#": 4449 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 340.472, + "index": 3, + "body": { + "#": 4449 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 336.472, + "index": 4, + "body": { + "#": 4449 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 331.528, + "index": 5, + "body": { + "#": 4449 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 327.528, + "index": 6, + "body": { + "#": 4449 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 326, + "index": 7, + "body": { + "#": 4449 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 327.528, + "index": 8, + "body": { + "#": 4449 + }, + "isInternal": false + }, + { + "x": 579.104, + "y": 331.528, + "index": 9, + "body": { + "#": 4449 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4469 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4471 + }, + "max": { + "#": 4472 + } + }, + { + "x": 563.888, + "y": 326 + }, + { + "x": 579.104, + "y": 342 + }, + { + "x": 571.496, + "y": 334 + }, + [ + { + "#": 4475 + }, + { + "#": 4476 + }, + { + "#": 4477 + }, + { + "#": 4478 + }, + { + "#": 4479 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 144, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4481 + }, + "angle": 0, + "vertices": { + "#": 4482 + }, + "position": { + "#": 4493 + }, + "force": { + "#": 4494 + }, + "torque": 0, + "positionImpulse": { + "#": 4495 + }, + "constraintImpulse": { + "#": 4496 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4497 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4498 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4499 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4501 + }, + "positionPrev": { + "#": 4504 + }, + "anglePrev": 0, + "axes": { + "#": 4505 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4480 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4480 + } + ], + [ + { + "#": 4483 + }, + { + "#": 4484 + }, + { + "#": 4485 + }, + { + "#": 4486 + }, + { + "#": 4487 + }, + { + "#": 4488 + }, + { + "#": 4489 + }, + { + "#": 4490 + }, + { + "#": 4491 + }, + { + "#": 4492 + } + ], + { + "x": 599.32, + "y": 336.472, + "index": 0, + "body": { + "#": 4480 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 340.472, + "index": 1, + "body": { + "#": 4480 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 342, + "index": 2, + "body": { + "#": 4480 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 340.472, + "index": 3, + "body": { + "#": 4480 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 336.472, + "index": 4, + "body": { + "#": 4480 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 331.528, + "index": 5, + "body": { + "#": 4480 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 327.528, + "index": 6, + "body": { + "#": 4480 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 326, + "index": 7, + "body": { + "#": 4480 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 327.528, + "index": 8, + "body": { + "#": 4480 + }, + "isInternal": false + }, + { + "x": 599.32, + "y": 331.528, + "index": 9, + "body": { + "#": 4480 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 334 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4500 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4502 + }, + "max": { + "#": 4503 + } + }, + { + "x": 584.104, + "y": 326 + }, + { + "x": 599.32, + "y": 342 + }, + { + "x": 591.712, + "y": 334 + }, + [ + { + "#": 4506 + }, + { + "#": 4507 + }, + { + "#": 4508 + }, + { + "#": 4509 + }, + { + "#": 4510 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 145, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4512 + }, + "angle": 0, + "vertices": { + "#": 4513 + }, + "position": { + "#": 4524 + }, + "force": { + "#": 4525 + }, + "torque": 0, + "positionImpulse": { + "#": 4526 + }, + "constraintImpulse": { + "#": 4527 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4528 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4529 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4530 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4532 + }, + "positionPrev": { + "#": 4535 + }, + "anglePrev": 0, + "axes": { + "#": 4536 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4511 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4511 + } + ], + [ + { + "#": 4514 + }, + { + "#": 4515 + }, + { + "#": 4516 + }, + { + "#": 4517 + }, + { + "#": 4518 + }, + { + "#": 4519 + }, + { + "#": 4520 + }, + { + "#": 4521 + }, + { + "#": 4522 + }, + { + "#": 4523 + } + ], + { + "x": 215.216, + "y": 357.472, + "index": 0, + "body": { + "#": 4511 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 361.472, + "index": 1, + "body": { + "#": 4511 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 363, + "index": 2, + "body": { + "#": 4511 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 361.472, + "index": 3, + "body": { + "#": 4511 + }, + "isInternal": false + }, + { + "x": 200, + "y": 357.472, + "index": 4, + "body": { + "#": 4511 + }, + "isInternal": false + }, + { + "x": 200, + "y": 352.528, + "index": 5, + "body": { + "#": 4511 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 348.528, + "index": 6, + "body": { + "#": 4511 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 347, + "index": 7, + "body": { + "#": 4511 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 348.528, + "index": 8, + "body": { + "#": 4511 + }, + "isInternal": false + }, + { + "x": 215.216, + "y": 352.528, + "index": 9, + "body": { + "#": 4511 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4531 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4533 + }, + "max": { + "#": 4534 + } + }, + { + "x": 200, + "y": 347 + }, + { + "x": 215.216, + "y": 363 + }, + { + "x": 207.608, + "y": 355 + }, + [ + { + "#": 4537 + }, + { + "#": 4538 + }, + { + "#": 4539 + }, + { + "#": 4540 + }, + { + "#": 4541 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 146, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4543 + }, + "angle": 0, + "vertices": { + "#": 4544 + }, + "position": { + "#": 4555 + }, + "force": { + "#": 4556 + }, + "torque": 0, + "positionImpulse": { + "#": 4557 + }, + "constraintImpulse": { + "#": 4558 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4559 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4560 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4561 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4563 + }, + "positionPrev": { + "#": 4566 + }, + "anglePrev": 0, + "axes": { + "#": 4567 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4542 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4542 + } + ], + [ + { + "#": 4545 + }, + { + "#": 4546 + }, + { + "#": 4547 + }, + { + "#": 4548 + }, + { + "#": 4549 + }, + { + "#": 4550 + }, + { + "#": 4551 + }, + { + "#": 4552 + }, + { + "#": 4553 + }, + { + "#": 4554 + } + ], + { + "x": 235.432, + "y": 357.472, + "index": 0, + "body": { + "#": 4542 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 361.472, + "index": 1, + "body": { + "#": 4542 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 363, + "index": 2, + "body": { + "#": 4542 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 361.472, + "index": 3, + "body": { + "#": 4542 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 357.472, + "index": 4, + "body": { + "#": 4542 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 352.528, + "index": 5, + "body": { + "#": 4542 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 348.528, + "index": 6, + "body": { + "#": 4542 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 347, + "index": 7, + "body": { + "#": 4542 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 348.528, + "index": 8, + "body": { + "#": 4542 + }, + "isInternal": false + }, + { + "x": 235.432, + "y": 352.528, + "index": 9, + "body": { + "#": 4542 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4562 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4564 + }, + "max": { + "#": 4565 + } + }, + { + "x": 220.216, + "y": 347 + }, + { + "x": 235.432, + "y": 363 + }, + { + "x": 227.824, + "y": 355 + }, + [ + { + "#": 4568 + }, + { + "#": 4569 + }, + { + "#": 4570 + }, + { + "#": 4571 + }, + { + "#": 4572 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 147, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4574 + }, + "angle": 0, + "vertices": { + "#": 4575 + }, + "position": { + "#": 4586 + }, + "force": { + "#": 4587 + }, + "torque": 0, + "positionImpulse": { + "#": 4588 + }, + "constraintImpulse": { + "#": 4589 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4590 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4591 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4592 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4594 + }, + "positionPrev": { + "#": 4597 + }, + "anglePrev": 0, + "axes": { + "#": 4598 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4573 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4573 + } + ], + [ + { + "#": 4576 + }, + { + "#": 4577 + }, + { + "#": 4578 + }, + { + "#": 4579 + }, + { + "#": 4580 + }, + { + "#": 4581 + }, + { + "#": 4582 + }, + { + "#": 4583 + }, + { + "#": 4584 + }, + { + "#": 4585 + } + ], + { + "x": 255.648, + "y": 357.472, + "index": 0, + "body": { + "#": 4573 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 361.472, + "index": 1, + "body": { + "#": 4573 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 363, + "index": 2, + "body": { + "#": 4573 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 361.472, + "index": 3, + "body": { + "#": 4573 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 357.472, + "index": 4, + "body": { + "#": 4573 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 352.528, + "index": 5, + "body": { + "#": 4573 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 348.528, + "index": 6, + "body": { + "#": 4573 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 347, + "index": 7, + "body": { + "#": 4573 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 348.528, + "index": 8, + "body": { + "#": 4573 + }, + "isInternal": false + }, + { + "x": 255.648, + "y": 352.528, + "index": 9, + "body": { + "#": 4573 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4593 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4595 + }, + "max": { + "#": 4596 + } + }, + { + "x": 240.432, + "y": 347 + }, + { + "x": 255.648, + "y": 363 + }, + { + "x": 248.04, + "y": 355 + }, + [ + { + "#": 4599 + }, + { + "#": 4600 + }, + { + "#": 4601 + }, + { + "#": 4602 + }, + { + "#": 4603 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 148, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4605 + }, + "angle": 0, + "vertices": { + "#": 4606 + }, + "position": { + "#": 4617 + }, + "force": { + "#": 4618 + }, + "torque": 0, + "positionImpulse": { + "#": 4619 + }, + "constraintImpulse": { + "#": 4620 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4621 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4622 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4623 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4625 + }, + "positionPrev": { + "#": 4628 + }, + "anglePrev": 0, + "axes": { + "#": 4629 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4604 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4604 + } + ], + [ + { + "#": 4607 + }, + { + "#": 4608 + }, + { + "#": 4609 + }, + { + "#": 4610 + }, + { + "#": 4611 + }, + { + "#": 4612 + }, + { + "#": 4613 + }, + { + "#": 4614 + }, + { + "#": 4615 + }, + { + "#": 4616 + } + ], + { + "x": 275.864, + "y": 357.472, + "index": 0, + "body": { + "#": 4604 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 361.472, + "index": 1, + "body": { + "#": 4604 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 363, + "index": 2, + "body": { + "#": 4604 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 361.472, + "index": 3, + "body": { + "#": 4604 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 357.472, + "index": 4, + "body": { + "#": 4604 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 352.528, + "index": 5, + "body": { + "#": 4604 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 348.528, + "index": 6, + "body": { + "#": 4604 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 347, + "index": 7, + "body": { + "#": 4604 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 348.528, + "index": 8, + "body": { + "#": 4604 + }, + "isInternal": false + }, + { + "x": 275.864, + "y": 352.528, + "index": 9, + "body": { + "#": 4604 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4624 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4626 + }, + "max": { + "#": 4627 + } + }, + { + "x": 260.648, + "y": 347 + }, + { + "x": 275.864, + "y": 363 + }, + { + "x": 268.256, + "y": 355 + }, + [ + { + "#": 4630 + }, + { + "#": 4631 + }, + { + "#": 4632 + }, + { + "#": 4633 + }, + { + "#": 4634 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 149, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4636 + }, + "angle": 0, + "vertices": { + "#": 4637 + }, + "position": { + "#": 4648 + }, + "force": { + "#": 4649 + }, + "torque": 0, + "positionImpulse": { + "#": 4650 + }, + "constraintImpulse": { + "#": 4651 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4652 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4653 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4654 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4656 + }, + "positionPrev": { + "#": 4659 + }, + "anglePrev": 0, + "axes": { + "#": 4660 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4635 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4635 + } + ], + [ + { + "#": 4638 + }, + { + "#": 4639 + }, + { + "#": 4640 + }, + { + "#": 4641 + }, + { + "#": 4642 + }, + { + "#": 4643 + }, + { + "#": 4644 + }, + { + "#": 4645 + }, + { + "#": 4646 + }, + { + "#": 4647 + } + ], + { + "x": 296.08, + "y": 357.472, + "index": 0, + "body": { + "#": 4635 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 361.472, + "index": 1, + "body": { + "#": 4635 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 363, + "index": 2, + "body": { + "#": 4635 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 361.472, + "index": 3, + "body": { + "#": 4635 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 357.472, + "index": 4, + "body": { + "#": 4635 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 352.528, + "index": 5, + "body": { + "#": 4635 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 348.528, + "index": 6, + "body": { + "#": 4635 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 347, + "index": 7, + "body": { + "#": 4635 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 348.528, + "index": 8, + "body": { + "#": 4635 + }, + "isInternal": false + }, + { + "x": 296.08, + "y": 352.528, + "index": 9, + "body": { + "#": 4635 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4655 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4657 + }, + "max": { + "#": 4658 + } + }, + { + "x": 280.864, + "y": 347 + }, + { + "x": 296.08, + "y": 363 + }, + { + "x": 288.472, + "y": 355 + }, + [ + { + "#": 4661 + }, + { + "#": 4662 + }, + { + "#": 4663 + }, + { + "#": 4664 + }, + { + "#": 4665 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 150, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4667 + }, + "angle": 0, + "vertices": { + "#": 4668 + }, + "position": { + "#": 4679 + }, + "force": { + "#": 4680 + }, + "torque": 0, + "positionImpulse": { + "#": 4681 + }, + "constraintImpulse": { + "#": 4682 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4683 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4684 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4685 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4687 + }, + "positionPrev": { + "#": 4690 + }, + "anglePrev": 0, + "axes": { + "#": 4691 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4666 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4666 + } + ], + [ + { + "#": 4669 + }, + { + "#": 4670 + }, + { + "#": 4671 + }, + { + "#": 4672 + }, + { + "#": 4673 + }, + { + "#": 4674 + }, + { + "#": 4675 + }, + { + "#": 4676 + }, + { + "#": 4677 + }, + { + "#": 4678 + } + ], + { + "x": 316.296, + "y": 357.472, + "index": 0, + "body": { + "#": 4666 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 361.472, + "index": 1, + "body": { + "#": 4666 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 363, + "index": 2, + "body": { + "#": 4666 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 361.472, + "index": 3, + "body": { + "#": 4666 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 357.472, + "index": 4, + "body": { + "#": 4666 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 352.528, + "index": 5, + "body": { + "#": 4666 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 348.528, + "index": 6, + "body": { + "#": 4666 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 347, + "index": 7, + "body": { + "#": 4666 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 348.528, + "index": 8, + "body": { + "#": 4666 + }, + "isInternal": false + }, + { + "x": 316.296, + "y": 352.528, + "index": 9, + "body": { + "#": 4666 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4686 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4688 + }, + "max": { + "#": 4689 + } + }, + { + "x": 301.08, + "y": 347 + }, + { + "x": 316.296, + "y": 363 + }, + { + "x": 308.688, + "y": 355 + }, + [ + { + "#": 4692 + }, + { + "#": 4693 + }, + { + "#": 4694 + }, + { + "#": 4695 + }, + { + "#": 4696 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 151, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4698 + }, + "angle": 0, + "vertices": { + "#": 4699 + }, + "position": { + "#": 4710 + }, + "force": { + "#": 4711 + }, + "torque": 0, + "positionImpulse": { + "#": 4712 + }, + "constraintImpulse": { + "#": 4713 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4714 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4715 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4716 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4718 + }, + "positionPrev": { + "#": 4721 + }, + "anglePrev": 0, + "axes": { + "#": 4722 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4697 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4697 + } + ], + [ + { + "#": 4700 + }, + { + "#": 4701 + }, + { + "#": 4702 + }, + { + "#": 4703 + }, + { + "#": 4704 + }, + { + "#": 4705 + }, + { + "#": 4706 + }, + { + "#": 4707 + }, + { + "#": 4708 + }, + { + "#": 4709 + } + ], + { + "x": 336.512, + "y": 357.472, + "index": 0, + "body": { + "#": 4697 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 361.472, + "index": 1, + "body": { + "#": 4697 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 363, + "index": 2, + "body": { + "#": 4697 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 361.472, + "index": 3, + "body": { + "#": 4697 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 357.472, + "index": 4, + "body": { + "#": 4697 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 352.528, + "index": 5, + "body": { + "#": 4697 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 348.528, + "index": 6, + "body": { + "#": 4697 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 347, + "index": 7, + "body": { + "#": 4697 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 348.528, + "index": 8, + "body": { + "#": 4697 + }, + "isInternal": false + }, + { + "x": 336.512, + "y": 352.528, + "index": 9, + "body": { + "#": 4697 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4717 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4719 + }, + "max": { + "#": 4720 + } + }, + { + "x": 321.296, + "y": 347 + }, + { + "x": 336.512, + "y": 363 + }, + { + "x": 328.904, + "y": 355 + }, + [ + { + "#": 4723 + }, + { + "#": 4724 + }, + { + "#": 4725 + }, + { + "#": 4726 + }, + { + "#": 4727 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 152, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4729 + }, + "angle": 0, + "vertices": { + "#": 4730 + }, + "position": { + "#": 4741 + }, + "force": { + "#": 4742 + }, + "torque": 0, + "positionImpulse": { + "#": 4743 + }, + "constraintImpulse": { + "#": 4744 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4745 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4746 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4747 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4749 + }, + "positionPrev": { + "#": 4752 + }, + "anglePrev": 0, + "axes": { + "#": 4753 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4728 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4728 + } + ], + [ + { + "#": 4731 + }, + { + "#": 4732 + }, + { + "#": 4733 + }, + { + "#": 4734 + }, + { + "#": 4735 + }, + { + "#": 4736 + }, + { + "#": 4737 + }, + { + "#": 4738 + }, + { + "#": 4739 + }, + { + "#": 4740 + } + ], + { + "x": 356.728, + "y": 357.472, + "index": 0, + "body": { + "#": 4728 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 361.472, + "index": 1, + "body": { + "#": 4728 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 363, + "index": 2, + "body": { + "#": 4728 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 361.472, + "index": 3, + "body": { + "#": 4728 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 357.472, + "index": 4, + "body": { + "#": 4728 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 352.528, + "index": 5, + "body": { + "#": 4728 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 348.528, + "index": 6, + "body": { + "#": 4728 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 347, + "index": 7, + "body": { + "#": 4728 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 348.528, + "index": 8, + "body": { + "#": 4728 + }, + "isInternal": false + }, + { + "x": 356.728, + "y": 352.528, + "index": 9, + "body": { + "#": 4728 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4748 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4750 + }, + "max": { + "#": 4751 + } + }, + { + "x": 341.512, + "y": 347 + }, + { + "x": 356.728, + "y": 363 + }, + { + "x": 349.12, + "y": 355 + }, + [ + { + "#": 4754 + }, + { + "#": 4755 + }, + { + "#": 4756 + }, + { + "#": 4757 + }, + { + "#": 4758 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 153, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4760 + }, + "angle": 0, + "vertices": { + "#": 4761 + }, + "position": { + "#": 4772 + }, + "force": { + "#": 4773 + }, + "torque": 0, + "positionImpulse": { + "#": 4774 + }, + "constraintImpulse": { + "#": 4775 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4776 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4777 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4778 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4780 + }, + "positionPrev": { + "#": 4783 + }, + "anglePrev": 0, + "axes": { + "#": 4784 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4759 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4759 + } + ], + [ + { + "#": 4762 + }, + { + "#": 4763 + }, + { + "#": 4764 + }, + { + "#": 4765 + }, + { + "#": 4766 + }, + { + "#": 4767 + }, + { + "#": 4768 + }, + { + "#": 4769 + }, + { + "#": 4770 + }, + { + "#": 4771 + } + ], + { + "x": 376.944, + "y": 357.472, + "index": 0, + "body": { + "#": 4759 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 361.472, + "index": 1, + "body": { + "#": 4759 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 363, + "index": 2, + "body": { + "#": 4759 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 361.472, + "index": 3, + "body": { + "#": 4759 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 357.472, + "index": 4, + "body": { + "#": 4759 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 352.528, + "index": 5, + "body": { + "#": 4759 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 348.528, + "index": 6, + "body": { + "#": 4759 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 347, + "index": 7, + "body": { + "#": 4759 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 348.528, + "index": 8, + "body": { + "#": 4759 + }, + "isInternal": false + }, + { + "x": 376.944, + "y": 352.528, + "index": 9, + "body": { + "#": 4759 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4779 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4781 + }, + "max": { + "#": 4782 + } + }, + { + "x": 361.728, + "y": 347 + }, + { + "x": 376.944, + "y": 363 + }, + { + "x": 369.336, + "y": 355 + }, + [ + { + "#": 4785 + }, + { + "#": 4786 + }, + { + "#": 4787 + }, + { + "#": 4788 + }, + { + "#": 4789 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 154, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4791 + }, + "angle": 0, + "vertices": { + "#": 4792 + }, + "position": { + "#": 4803 + }, + "force": { + "#": 4804 + }, + "torque": 0, + "positionImpulse": { + "#": 4805 + }, + "constraintImpulse": { + "#": 4806 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4807 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4808 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4809 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4811 + }, + "positionPrev": { + "#": 4814 + }, + "anglePrev": 0, + "axes": { + "#": 4815 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4790 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4790 + } + ], + [ + { + "#": 4793 + }, + { + "#": 4794 + }, + { + "#": 4795 + }, + { + "#": 4796 + }, + { + "#": 4797 + }, + { + "#": 4798 + }, + { + "#": 4799 + }, + { + "#": 4800 + }, + { + "#": 4801 + }, + { + "#": 4802 + } + ], + { + "x": 397.16, + "y": 357.472, + "index": 0, + "body": { + "#": 4790 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 361.472, + "index": 1, + "body": { + "#": 4790 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 363, + "index": 2, + "body": { + "#": 4790 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 361.472, + "index": 3, + "body": { + "#": 4790 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 357.472, + "index": 4, + "body": { + "#": 4790 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 352.528, + "index": 5, + "body": { + "#": 4790 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 348.528, + "index": 6, + "body": { + "#": 4790 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 347, + "index": 7, + "body": { + "#": 4790 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 348.528, + "index": 8, + "body": { + "#": 4790 + }, + "isInternal": false + }, + { + "x": 397.16, + "y": 352.528, + "index": 9, + "body": { + "#": 4790 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4810 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4812 + }, + "max": { + "#": 4813 + } + }, + { + "x": 381.944, + "y": 347 + }, + { + "x": 397.16, + "y": 363 + }, + { + "x": 389.552, + "y": 355 + }, + [ + { + "#": 4816 + }, + { + "#": 4817 + }, + { + "#": 4818 + }, + { + "#": 4819 + }, + { + "#": 4820 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 155, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4822 + }, + "angle": 0, + "vertices": { + "#": 4823 + }, + "position": { + "#": 4834 + }, + "force": { + "#": 4835 + }, + "torque": 0, + "positionImpulse": { + "#": 4836 + }, + "constraintImpulse": { + "#": 4837 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4838 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4839 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4840 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4842 + }, + "positionPrev": { + "#": 4845 + }, + "anglePrev": 0, + "axes": { + "#": 4846 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4821 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4821 + } + ], + [ + { + "#": 4824 + }, + { + "#": 4825 + }, + { + "#": 4826 + }, + { + "#": 4827 + }, + { + "#": 4828 + }, + { + "#": 4829 + }, + { + "#": 4830 + }, + { + "#": 4831 + }, + { + "#": 4832 + }, + { + "#": 4833 + } + ], + { + "x": 417.376, + "y": 357.472, + "index": 0, + "body": { + "#": 4821 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 361.472, + "index": 1, + "body": { + "#": 4821 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 363, + "index": 2, + "body": { + "#": 4821 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 361.472, + "index": 3, + "body": { + "#": 4821 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 357.472, + "index": 4, + "body": { + "#": 4821 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 352.528, + "index": 5, + "body": { + "#": 4821 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 348.528, + "index": 6, + "body": { + "#": 4821 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 347, + "index": 7, + "body": { + "#": 4821 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 348.528, + "index": 8, + "body": { + "#": 4821 + }, + "isInternal": false + }, + { + "x": 417.376, + "y": 352.528, + "index": 9, + "body": { + "#": 4821 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4841 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4843 + }, + "max": { + "#": 4844 + } + }, + { + "x": 402.16, + "y": 347 + }, + { + "x": 417.376, + "y": 363 + }, + { + "x": 409.768, + "y": 355 + }, + [ + { + "#": 4847 + }, + { + "#": 4848 + }, + { + "#": 4849 + }, + { + "#": 4850 + }, + { + "#": 4851 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 156, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4853 + }, + "angle": 0, + "vertices": { + "#": 4854 + }, + "position": { + "#": 4865 + }, + "force": { + "#": 4866 + }, + "torque": 0, + "positionImpulse": { + "#": 4867 + }, + "constraintImpulse": { + "#": 4868 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4869 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4870 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4871 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4873 + }, + "positionPrev": { + "#": 4876 + }, + "anglePrev": 0, + "axes": { + "#": 4877 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4852 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4852 + } + ], + [ + { + "#": 4855 + }, + { + "#": 4856 + }, + { + "#": 4857 + }, + { + "#": 4858 + }, + { + "#": 4859 + }, + { + "#": 4860 + }, + { + "#": 4861 + }, + { + "#": 4862 + }, + { + "#": 4863 + }, + { + "#": 4864 + } + ], + { + "x": 437.592, + "y": 357.472, + "index": 0, + "body": { + "#": 4852 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 361.472, + "index": 1, + "body": { + "#": 4852 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 363, + "index": 2, + "body": { + "#": 4852 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 361.472, + "index": 3, + "body": { + "#": 4852 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 357.472, + "index": 4, + "body": { + "#": 4852 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 352.528, + "index": 5, + "body": { + "#": 4852 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 348.528, + "index": 6, + "body": { + "#": 4852 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 347, + "index": 7, + "body": { + "#": 4852 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 348.528, + "index": 8, + "body": { + "#": 4852 + }, + "isInternal": false + }, + { + "x": 437.592, + "y": 352.528, + "index": 9, + "body": { + "#": 4852 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4872 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4874 + }, + "max": { + "#": 4875 + } + }, + { + "x": 422.376, + "y": 347 + }, + { + "x": 437.592, + "y": 363 + }, + { + "x": 429.984, + "y": 355 + }, + [ + { + "#": 4878 + }, + { + "#": 4879 + }, + { + "#": 4880 + }, + { + "#": 4881 + }, + { + "#": 4882 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 157, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4884 + }, + "angle": 0, + "vertices": { + "#": 4885 + }, + "position": { + "#": 4896 + }, + "force": { + "#": 4897 + }, + "torque": 0, + "positionImpulse": { + "#": 4898 + }, + "constraintImpulse": { + "#": 4899 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4900 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4901 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4902 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4904 + }, + "positionPrev": { + "#": 4907 + }, + "anglePrev": 0, + "axes": { + "#": 4908 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4883 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4883 + } + ], + [ + { + "#": 4886 + }, + { + "#": 4887 + }, + { + "#": 4888 + }, + { + "#": 4889 + }, + { + "#": 4890 + }, + { + "#": 4891 + }, + { + "#": 4892 + }, + { + "#": 4893 + }, + { + "#": 4894 + }, + { + "#": 4895 + } + ], + { + "x": 457.808, + "y": 357.472, + "index": 0, + "body": { + "#": 4883 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 361.472, + "index": 1, + "body": { + "#": 4883 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 363, + "index": 2, + "body": { + "#": 4883 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 361.472, + "index": 3, + "body": { + "#": 4883 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 357.472, + "index": 4, + "body": { + "#": 4883 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 352.528, + "index": 5, + "body": { + "#": 4883 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 348.528, + "index": 6, + "body": { + "#": 4883 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 347, + "index": 7, + "body": { + "#": 4883 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 348.528, + "index": 8, + "body": { + "#": 4883 + }, + "isInternal": false + }, + { + "x": 457.808, + "y": 352.528, + "index": 9, + "body": { + "#": 4883 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4903 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4905 + }, + "max": { + "#": 4906 + } + }, + { + "x": 442.592, + "y": 347 + }, + { + "x": 457.808, + "y": 363 + }, + { + "x": 450.2, + "y": 355 + }, + [ + { + "#": 4909 + }, + { + "#": 4910 + }, + { + "#": 4911 + }, + { + "#": 4912 + }, + { + "#": 4913 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 158, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4915 + }, + "angle": 0, + "vertices": { + "#": 4916 + }, + "position": { + "#": 4927 + }, + "force": { + "#": 4928 + }, + "torque": 0, + "positionImpulse": { + "#": 4929 + }, + "constraintImpulse": { + "#": 4930 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4931 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4932 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4933 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4935 + }, + "positionPrev": { + "#": 4938 + }, + "anglePrev": 0, + "axes": { + "#": 4939 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4914 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4914 + } + ], + [ + { + "#": 4917 + }, + { + "#": 4918 + }, + { + "#": 4919 + }, + { + "#": 4920 + }, + { + "#": 4921 + }, + { + "#": 4922 + }, + { + "#": 4923 + }, + { + "#": 4924 + }, + { + "#": 4925 + }, + { + "#": 4926 + } + ], + { + "x": 478.024, + "y": 357.472, + "index": 0, + "body": { + "#": 4914 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 361.472, + "index": 1, + "body": { + "#": 4914 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 363, + "index": 2, + "body": { + "#": 4914 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 361.472, + "index": 3, + "body": { + "#": 4914 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 357.472, + "index": 4, + "body": { + "#": 4914 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 352.528, + "index": 5, + "body": { + "#": 4914 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 348.528, + "index": 6, + "body": { + "#": 4914 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 347, + "index": 7, + "body": { + "#": 4914 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 348.528, + "index": 8, + "body": { + "#": 4914 + }, + "isInternal": false + }, + { + "x": 478.024, + "y": 352.528, + "index": 9, + "body": { + "#": 4914 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4934 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4936 + }, + "max": { + "#": 4937 + } + }, + { + "x": 462.808, + "y": 347 + }, + { + "x": 478.024, + "y": 363 + }, + { + "x": 470.416, + "y": 355 + }, + [ + { + "#": 4940 + }, + { + "#": 4941 + }, + { + "#": 4942 + }, + { + "#": 4943 + }, + { + "#": 4944 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 159, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4946 + }, + "angle": 0, + "vertices": { + "#": 4947 + }, + "position": { + "#": 4958 + }, + "force": { + "#": 4959 + }, + "torque": 0, + "positionImpulse": { + "#": 4960 + }, + "constraintImpulse": { + "#": 4961 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4962 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4963 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4964 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4966 + }, + "positionPrev": { + "#": 4969 + }, + "anglePrev": 0, + "axes": { + "#": 4970 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4945 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4945 + } + ], + [ + { + "#": 4948 + }, + { + "#": 4949 + }, + { + "#": 4950 + }, + { + "#": 4951 + }, + { + "#": 4952 + }, + { + "#": 4953 + }, + { + "#": 4954 + }, + { + "#": 4955 + }, + { + "#": 4956 + }, + { + "#": 4957 + } + ], + { + "x": 498.24, + "y": 357.472, + "index": 0, + "body": { + "#": 4945 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 361.472, + "index": 1, + "body": { + "#": 4945 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 363, + "index": 2, + "body": { + "#": 4945 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 361.472, + "index": 3, + "body": { + "#": 4945 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 357.472, + "index": 4, + "body": { + "#": 4945 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 352.528, + "index": 5, + "body": { + "#": 4945 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 348.528, + "index": 6, + "body": { + "#": 4945 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 347, + "index": 7, + "body": { + "#": 4945 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 348.528, + "index": 8, + "body": { + "#": 4945 + }, + "isInternal": false + }, + { + "x": 498.24, + "y": 352.528, + "index": 9, + "body": { + "#": 4945 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4965 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4967 + }, + "max": { + "#": 4968 + } + }, + { + "x": 483.024, + "y": 347 + }, + { + "x": 498.24, + "y": 363 + }, + { + "x": 490.632, + "y": 355 + }, + [ + { + "#": 4971 + }, + { + "#": 4972 + }, + { + "#": 4973 + }, + { + "#": 4974 + }, + { + "#": 4975 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 160, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4977 + }, + "angle": 0, + "vertices": { + "#": 4978 + }, + "position": { + "#": 4989 + }, + "force": { + "#": 4990 + }, + "torque": 0, + "positionImpulse": { + "#": 4991 + }, + "constraintImpulse": { + "#": 4992 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4993 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4994 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4995 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4997 + }, + "positionPrev": { + "#": 5000 + }, + "anglePrev": 0, + "axes": { + "#": 5001 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4976 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4976 + } + ], + [ + { + "#": 4979 + }, + { + "#": 4980 + }, + { + "#": 4981 + }, + { + "#": 4982 + }, + { + "#": 4983 + }, + { + "#": 4984 + }, + { + "#": 4985 + }, + { + "#": 4986 + }, + { + "#": 4987 + }, + { + "#": 4988 + } + ], + { + "x": 518.456, + "y": 357.472, + "index": 0, + "body": { + "#": 4976 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 361.472, + "index": 1, + "body": { + "#": 4976 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 363, + "index": 2, + "body": { + "#": 4976 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 361.472, + "index": 3, + "body": { + "#": 4976 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 357.472, + "index": 4, + "body": { + "#": 4976 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 352.528, + "index": 5, + "body": { + "#": 4976 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 348.528, + "index": 6, + "body": { + "#": 4976 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 347, + "index": 7, + "body": { + "#": 4976 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 348.528, + "index": 8, + "body": { + "#": 4976 + }, + "isInternal": false + }, + { + "x": 518.456, + "y": 352.528, + "index": 9, + "body": { + "#": 4976 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4996 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4998 + }, + "max": { + "#": 4999 + } + }, + { + "x": 503.24, + "y": 347 + }, + { + "x": 518.456, + "y": 363 + }, + { + "x": 510.848, + "y": 355 + }, + [ + { + "#": 5002 + }, + { + "#": 5003 + }, + { + "#": 5004 + }, + { + "#": 5005 + }, + { + "#": 5006 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 161, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5008 + }, + "angle": 0, + "vertices": { + "#": 5009 + }, + "position": { + "#": 5020 + }, + "force": { + "#": 5021 + }, + "torque": 0, + "positionImpulse": { + "#": 5022 + }, + "constraintImpulse": { + "#": 5023 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5024 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5025 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5026 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5028 + }, + "positionPrev": { + "#": 5031 + }, + "anglePrev": 0, + "axes": { + "#": 5032 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5007 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5007 + } + ], + [ + { + "#": 5010 + }, + { + "#": 5011 + }, + { + "#": 5012 + }, + { + "#": 5013 + }, + { + "#": 5014 + }, + { + "#": 5015 + }, + { + "#": 5016 + }, + { + "#": 5017 + }, + { + "#": 5018 + }, + { + "#": 5019 + } + ], + { + "x": 538.672, + "y": 357.472, + "index": 0, + "body": { + "#": 5007 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 361.472, + "index": 1, + "body": { + "#": 5007 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 363, + "index": 2, + "body": { + "#": 5007 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 361.472, + "index": 3, + "body": { + "#": 5007 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 357.472, + "index": 4, + "body": { + "#": 5007 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 352.528, + "index": 5, + "body": { + "#": 5007 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 348.528, + "index": 6, + "body": { + "#": 5007 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 347, + "index": 7, + "body": { + "#": 5007 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 348.528, + "index": 8, + "body": { + "#": 5007 + }, + "isInternal": false + }, + { + "x": 538.672, + "y": 352.528, + "index": 9, + "body": { + "#": 5007 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5027 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5029 + }, + "max": { + "#": 5030 + } + }, + { + "x": 523.456, + "y": 347 + }, + { + "x": 538.672, + "y": 363 + }, + { + "x": 531.064, + "y": 355 + }, + [ + { + "#": 5033 + }, + { + "#": 5034 + }, + { + "#": 5035 + }, + { + "#": 5036 + }, + { + "#": 5037 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 162, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5039 + }, + "angle": 0, + "vertices": { + "#": 5040 + }, + "position": { + "#": 5051 + }, + "force": { + "#": 5052 + }, + "torque": 0, + "positionImpulse": { + "#": 5053 + }, + "constraintImpulse": { + "#": 5054 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5055 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5056 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5057 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5059 + }, + "positionPrev": { + "#": 5062 + }, + "anglePrev": 0, + "axes": { + "#": 5063 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5038 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5038 + } + ], + [ + { + "#": 5041 + }, + { + "#": 5042 + }, + { + "#": 5043 + }, + { + "#": 5044 + }, + { + "#": 5045 + }, + { + "#": 5046 + }, + { + "#": 5047 + }, + { + "#": 5048 + }, + { + "#": 5049 + }, + { + "#": 5050 + } + ], + { + "x": 558.888, + "y": 357.472, + "index": 0, + "body": { + "#": 5038 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 361.472, + "index": 1, + "body": { + "#": 5038 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 363, + "index": 2, + "body": { + "#": 5038 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 361.472, + "index": 3, + "body": { + "#": 5038 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 357.472, + "index": 4, + "body": { + "#": 5038 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 352.528, + "index": 5, + "body": { + "#": 5038 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 348.528, + "index": 6, + "body": { + "#": 5038 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 347, + "index": 7, + "body": { + "#": 5038 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 348.528, + "index": 8, + "body": { + "#": 5038 + }, + "isInternal": false + }, + { + "x": 558.888, + "y": 352.528, + "index": 9, + "body": { + "#": 5038 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5058 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5060 + }, + "max": { + "#": 5061 + } + }, + { + "x": 543.672, + "y": 347 + }, + { + "x": 558.888, + "y": 363 + }, + { + "x": 551.28, + "y": 355 + }, + [ + { + "#": 5064 + }, + { + "#": 5065 + }, + { + "#": 5066 + }, + { + "#": 5067 + }, + { + "#": 5068 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 163, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5070 + }, + "angle": 0, + "vertices": { + "#": 5071 + }, + "position": { + "#": 5082 + }, + "force": { + "#": 5083 + }, + "torque": 0, + "positionImpulse": { + "#": 5084 + }, + "constraintImpulse": { + "#": 5085 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5086 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5087 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5088 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5090 + }, + "positionPrev": { + "#": 5093 + }, + "anglePrev": 0, + "axes": { + "#": 5094 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5069 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5069 + } + ], + [ + { + "#": 5072 + }, + { + "#": 5073 + }, + { + "#": 5074 + }, + { + "#": 5075 + }, + { + "#": 5076 + }, + { + "#": 5077 + }, + { + "#": 5078 + }, + { + "#": 5079 + }, + { + "#": 5080 + }, + { + "#": 5081 + } + ], + { + "x": 579.104, + "y": 357.472, + "index": 0, + "body": { + "#": 5069 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 361.472, + "index": 1, + "body": { + "#": 5069 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 363, + "index": 2, + "body": { + "#": 5069 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 361.472, + "index": 3, + "body": { + "#": 5069 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 357.472, + "index": 4, + "body": { + "#": 5069 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 352.528, + "index": 5, + "body": { + "#": 5069 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 348.528, + "index": 6, + "body": { + "#": 5069 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 347, + "index": 7, + "body": { + "#": 5069 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 348.528, + "index": 8, + "body": { + "#": 5069 + }, + "isInternal": false + }, + { + "x": 579.104, + "y": 352.528, + "index": 9, + "body": { + "#": 5069 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5089 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5091 + }, + "max": { + "#": 5092 + } + }, + { + "x": 563.888, + "y": 347 + }, + { + "x": 579.104, + "y": 363 + }, + { + "x": 571.496, + "y": 355 + }, + [ + { + "#": 5095 + }, + { + "#": 5096 + }, + { + "#": 5097 + }, + { + "#": 5098 + }, + { + "#": 5099 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 164, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5101 + }, + "angle": 0, + "vertices": { + "#": 5102 + }, + "position": { + "#": 5113 + }, + "force": { + "#": 5114 + }, + "torque": 0, + "positionImpulse": { + "#": 5115 + }, + "constraintImpulse": { + "#": 5116 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5117 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5118 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5119 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5121 + }, + "positionPrev": { + "#": 5124 + }, + "anglePrev": 0, + "axes": { + "#": 5125 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5100 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5100 + } + ], + [ + { + "#": 5103 + }, + { + "#": 5104 + }, + { + "#": 5105 + }, + { + "#": 5106 + }, + { + "#": 5107 + }, + { + "#": 5108 + }, + { + "#": 5109 + }, + { + "#": 5110 + }, + { + "#": 5111 + }, + { + "#": 5112 + } + ], + { + "x": 599.32, + "y": 357.472, + "index": 0, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 361.472, + "index": 1, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 363, + "index": 2, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 361.472, + "index": 3, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 357.472, + "index": 4, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 352.528, + "index": 5, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 348.528, + "index": 6, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 347, + "index": 7, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 348.528, + "index": 8, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 599.32, + "y": 352.528, + "index": 9, + "body": { + "#": 5100 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 355 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5120 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5122 + }, + "max": { + "#": 5123 + } + }, + { + "x": 584.104, + "y": 347 + }, + { + "x": 599.32, + "y": 363 + }, + { + "x": 591.712, + "y": 355 + }, + [ + { + "#": 5126 + }, + { + "#": 5127 + }, + { + "#": 5128 + }, + { + "#": 5129 + }, + { + "#": 5130 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 165, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5132 + }, + "angle": 0, + "vertices": { + "#": 5133 + }, + "position": { + "#": 5144 + }, + "force": { + "#": 5145 + }, + "torque": 0, + "positionImpulse": { + "#": 5146 + }, + "constraintImpulse": { + "#": 5147 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5148 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5149 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5150 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5152 + }, + "positionPrev": { + "#": 5155 + }, + "anglePrev": 0, + "axes": { + "#": 5156 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5131 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5131 + } + ], + [ + { + "#": 5134 + }, + { + "#": 5135 + }, + { + "#": 5136 + }, + { + "#": 5137 + }, + { + "#": 5138 + }, + { + "#": 5139 + }, + { + "#": 5140 + }, + { + "#": 5141 + }, + { + "#": 5142 + }, + { + "#": 5143 + } + ], + { + "x": 215.216, + "y": 378.472, + "index": 0, + "body": { + "#": 5131 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 382.472, + "index": 1, + "body": { + "#": 5131 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 384, + "index": 2, + "body": { + "#": 5131 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 382.472, + "index": 3, + "body": { + "#": 5131 + }, + "isInternal": false + }, + { + "x": 200, + "y": 378.472, + "index": 4, + "body": { + "#": 5131 + }, + "isInternal": false + }, + { + "x": 200, + "y": 373.528, + "index": 5, + "body": { + "#": 5131 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 369.528, + "index": 6, + "body": { + "#": 5131 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 368, + "index": 7, + "body": { + "#": 5131 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 369.528, + "index": 8, + "body": { + "#": 5131 + }, + "isInternal": false + }, + { + "x": 215.216, + "y": 373.528, + "index": 9, + "body": { + "#": 5131 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5151 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5153 + }, + "max": { + "#": 5154 + } + }, + { + "x": 200, + "y": 368 + }, + { + "x": 215.216, + "y": 384 + }, + { + "x": 207.608, + "y": 376 + }, + [ + { + "#": 5157 + }, + { + "#": 5158 + }, + { + "#": 5159 + }, + { + "#": 5160 + }, + { + "#": 5161 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 166, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5163 + }, + "angle": 0, + "vertices": { + "#": 5164 + }, + "position": { + "#": 5175 + }, + "force": { + "#": 5176 + }, + "torque": 0, + "positionImpulse": { + "#": 5177 + }, + "constraintImpulse": { + "#": 5178 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5179 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5180 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5181 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5183 + }, + "positionPrev": { + "#": 5186 + }, + "anglePrev": 0, + "axes": { + "#": 5187 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5162 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5162 + } + ], + [ + { + "#": 5165 + }, + { + "#": 5166 + }, + { + "#": 5167 + }, + { + "#": 5168 + }, + { + "#": 5169 + }, + { + "#": 5170 + }, + { + "#": 5171 + }, + { + "#": 5172 + }, + { + "#": 5173 + }, + { + "#": 5174 + } + ], + { + "x": 235.432, + "y": 378.472, + "index": 0, + "body": { + "#": 5162 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 382.472, + "index": 1, + "body": { + "#": 5162 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 384, + "index": 2, + "body": { + "#": 5162 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 382.472, + "index": 3, + "body": { + "#": 5162 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 378.472, + "index": 4, + "body": { + "#": 5162 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 373.528, + "index": 5, + "body": { + "#": 5162 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 369.528, + "index": 6, + "body": { + "#": 5162 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 368, + "index": 7, + "body": { + "#": 5162 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 369.528, + "index": 8, + "body": { + "#": 5162 + }, + "isInternal": false + }, + { + "x": 235.432, + "y": 373.528, + "index": 9, + "body": { + "#": 5162 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5182 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5184 + }, + "max": { + "#": 5185 + } + }, + { + "x": 220.216, + "y": 368 + }, + { + "x": 235.432, + "y": 384 + }, + { + "x": 227.824, + "y": 376 + }, + [ + { + "#": 5188 + }, + { + "#": 5189 + }, + { + "#": 5190 + }, + { + "#": 5191 + }, + { + "#": 5192 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 167, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5194 + }, + "angle": 0, + "vertices": { + "#": 5195 + }, + "position": { + "#": 5206 + }, + "force": { + "#": 5207 + }, + "torque": 0, + "positionImpulse": { + "#": 5208 + }, + "constraintImpulse": { + "#": 5209 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5210 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5211 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5212 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5214 + }, + "positionPrev": { + "#": 5217 + }, + "anglePrev": 0, + "axes": { + "#": 5218 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5193 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5193 + } + ], + [ + { + "#": 5196 + }, + { + "#": 5197 + }, + { + "#": 5198 + }, + { + "#": 5199 + }, + { + "#": 5200 + }, + { + "#": 5201 + }, + { + "#": 5202 + }, + { + "#": 5203 + }, + { + "#": 5204 + }, + { + "#": 5205 + } + ], + { + "x": 255.648, + "y": 378.472, + "index": 0, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 382.472, + "index": 1, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 384, + "index": 2, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 382.472, + "index": 3, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 378.472, + "index": 4, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 373.528, + "index": 5, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 369.528, + "index": 6, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 368, + "index": 7, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 369.528, + "index": 8, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 255.648, + "y": 373.528, + "index": 9, + "body": { + "#": 5193 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5213 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5215 + }, + "max": { + "#": 5216 + } + }, + { + "x": 240.432, + "y": 368 + }, + { + "x": 255.648, + "y": 384 + }, + { + "x": 248.04, + "y": 376 + }, + [ + { + "#": 5219 + }, + { + "#": 5220 + }, + { + "#": 5221 + }, + { + "#": 5222 + }, + { + "#": 5223 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 168, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5225 + }, + "angle": 0, + "vertices": { + "#": 5226 + }, + "position": { + "#": 5237 + }, + "force": { + "#": 5238 + }, + "torque": 0, + "positionImpulse": { + "#": 5239 + }, + "constraintImpulse": { + "#": 5240 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5241 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5242 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5243 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5245 + }, + "positionPrev": { + "#": 5248 + }, + "anglePrev": 0, + "axes": { + "#": 5249 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5224 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5224 + } + ], + [ + { + "#": 5227 + }, + { + "#": 5228 + }, + { + "#": 5229 + }, + { + "#": 5230 + }, + { + "#": 5231 + }, + { + "#": 5232 + }, + { + "#": 5233 + }, + { + "#": 5234 + }, + { + "#": 5235 + }, + { + "#": 5236 + } + ], + { + "x": 275.864, + "y": 378.472, + "index": 0, + "body": { + "#": 5224 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 382.472, + "index": 1, + "body": { + "#": 5224 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 384, + "index": 2, + "body": { + "#": 5224 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 382.472, + "index": 3, + "body": { + "#": 5224 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 378.472, + "index": 4, + "body": { + "#": 5224 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 373.528, + "index": 5, + "body": { + "#": 5224 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 369.528, + "index": 6, + "body": { + "#": 5224 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 368, + "index": 7, + "body": { + "#": 5224 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 369.528, + "index": 8, + "body": { + "#": 5224 + }, + "isInternal": false + }, + { + "x": 275.864, + "y": 373.528, + "index": 9, + "body": { + "#": 5224 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5244 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5246 + }, + "max": { + "#": 5247 + } + }, + { + "x": 260.648, + "y": 368 + }, + { + "x": 275.864, + "y": 384 + }, + { + "x": 268.256, + "y": 376 + }, + [ + { + "#": 5250 + }, + { + "#": 5251 + }, + { + "#": 5252 + }, + { + "#": 5253 + }, + { + "#": 5254 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 169, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5256 + }, + "angle": 0, + "vertices": { + "#": 5257 + }, + "position": { + "#": 5268 + }, + "force": { + "#": 5269 + }, + "torque": 0, + "positionImpulse": { + "#": 5270 + }, + "constraintImpulse": { + "#": 5271 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5272 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5273 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5274 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5276 + }, + "positionPrev": { + "#": 5279 + }, + "anglePrev": 0, + "axes": { + "#": 5280 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5255 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5255 + } + ], + [ + { + "#": 5258 + }, + { + "#": 5259 + }, + { + "#": 5260 + }, + { + "#": 5261 + }, + { + "#": 5262 + }, + { + "#": 5263 + }, + { + "#": 5264 + }, + { + "#": 5265 + }, + { + "#": 5266 + }, + { + "#": 5267 + } + ], + { + "x": 296.08, + "y": 378.472, + "index": 0, + "body": { + "#": 5255 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 382.472, + "index": 1, + "body": { + "#": 5255 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 384, + "index": 2, + "body": { + "#": 5255 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 382.472, + "index": 3, + "body": { + "#": 5255 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 378.472, + "index": 4, + "body": { + "#": 5255 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 373.528, + "index": 5, + "body": { + "#": 5255 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 369.528, + "index": 6, + "body": { + "#": 5255 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 368, + "index": 7, + "body": { + "#": 5255 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 369.528, + "index": 8, + "body": { + "#": 5255 + }, + "isInternal": false + }, + { + "x": 296.08, + "y": 373.528, + "index": 9, + "body": { + "#": 5255 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5275 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5277 + }, + "max": { + "#": 5278 + } + }, + { + "x": 280.864, + "y": 368 + }, + { + "x": 296.08, + "y": 384 + }, + { + "x": 288.472, + "y": 376 + }, + [ + { + "#": 5281 + }, + { + "#": 5282 + }, + { + "#": 5283 + }, + { + "#": 5284 + }, + { + "#": 5285 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 170, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5287 + }, + "angle": 0, + "vertices": { + "#": 5288 + }, + "position": { + "#": 5299 + }, + "force": { + "#": 5300 + }, + "torque": 0, + "positionImpulse": { + "#": 5301 + }, + "constraintImpulse": { + "#": 5302 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5303 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5304 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5305 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5307 + }, + "positionPrev": { + "#": 5310 + }, + "anglePrev": 0, + "axes": { + "#": 5311 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5286 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5286 + } + ], + [ + { + "#": 5289 + }, + { + "#": 5290 + }, + { + "#": 5291 + }, + { + "#": 5292 + }, + { + "#": 5293 + }, + { + "#": 5294 + }, + { + "#": 5295 + }, + { + "#": 5296 + }, + { + "#": 5297 + }, + { + "#": 5298 + } + ], + { + "x": 316.296, + "y": 378.472, + "index": 0, + "body": { + "#": 5286 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 382.472, + "index": 1, + "body": { + "#": 5286 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 384, + "index": 2, + "body": { + "#": 5286 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 382.472, + "index": 3, + "body": { + "#": 5286 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 378.472, + "index": 4, + "body": { + "#": 5286 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 373.528, + "index": 5, + "body": { + "#": 5286 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 369.528, + "index": 6, + "body": { + "#": 5286 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 368, + "index": 7, + "body": { + "#": 5286 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 369.528, + "index": 8, + "body": { + "#": 5286 + }, + "isInternal": false + }, + { + "x": 316.296, + "y": 373.528, + "index": 9, + "body": { + "#": 5286 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5306 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5308 + }, + "max": { + "#": 5309 + } + }, + { + "x": 301.08, + "y": 368 + }, + { + "x": 316.296, + "y": 384 + }, + { + "x": 308.688, + "y": 376 + }, + [ + { + "#": 5312 + }, + { + "#": 5313 + }, + { + "#": 5314 + }, + { + "#": 5315 + }, + { + "#": 5316 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 171, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5318 + }, + "angle": 0, + "vertices": { + "#": 5319 + }, + "position": { + "#": 5330 + }, + "force": { + "#": 5331 + }, + "torque": 0, + "positionImpulse": { + "#": 5332 + }, + "constraintImpulse": { + "#": 5333 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5334 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5335 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5336 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5338 + }, + "positionPrev": { + "#": 5341 + }, + "anglePrev": 0, + "axes": { + "#": 5342 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5317 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5317 + } + ], + [ + { + "#": 5320 + }, + { + "#": 5321 + }, + { + "#": 5322 + }, + { + "#": 5323 + }, + { + "#": 5324 + }, + { + "#": 5325 + }, + { + "#": 5326 + }, + { + "#": 5327 + }, + { + "#": 5328 + }, + { + "#": 5329 + } + ], + { + "x": 336.512, + "y": 378.472, + "index": 0, + "body": { + "#": 5317 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 382.472, + "index": 1, + "body": { + "#": 5317 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 384, + "index": 2, + "body": { + "#": 5317 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 382.472, + "index": 3, + "body": { + "#": 5317 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 378.472, + "index": 4, + "body": { + "#": 5317 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 373.528, + "index": 5, + "body": { + "#": 5317 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 369.528, + "index": 6, + "body": { + "#": 5317 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 368, + "index": 7, + "body": { + "#": 5317 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 369.528, + "index": 8, + "body": { + "#": 5317 + }, + "isInternal": false + }, + { + "x": 336.512, + "y": 373.528, + "index": 9, + "body": { + "#": 5317 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5337 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5339 + }, + "max": { + "#": 5340 + } + }, + { + "x": 321.296, + "y": 368 + }, + { + "x": 336.512, + "y": 384 + }, + { + "x": 328.904, + "y": 376 + }, + [ + { + "#": 5343 + }, + { + "#": 5344 + }, + { + "#": 5345 + }, + { + "#": 5346 + }, + { + "#": 5347 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 172, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5349 + }, + "angle": 0, + "vertices": { + "#": 5350 + }, + "position": { + "#": 5361 + }, + "force": { + "#": 5362 + }, + "torque": 0, + "positionImpulse": { + "#": 5363 + }, + "constraintImpulse": { + "#": 5364 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5365 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5366 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5367 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5369 + }, + "positionPrev": { + "#": 5372 + }, + "anglePrev": 0, + "axes": { + "#": 5373 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5348 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5348 + } + ], + [ + { + "#": 5351 + }, + { + "#": 5352 + }, + { + "#": 5353 + }, + { + "#": 5354 + }, + { + "#": 5355 + }, + { + "#": 5356 + }, + { + "#": 5357 + }, + { + "#": 5358 + }, + { + "#": 5359 + }, + { + "#": 5360 + } + ], + { + "x": 356.728, + "y": 378.472, + "index": 0, + "body": { + "#": 5348 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 382.472, + "index": 1, + "body": { + "#": 5348 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 384, + "index": 2, + "body": { + "#": 5348 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 382.472, + "index": 3, + "body": { + "#": 5348 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 378.472, + "index": 4, + "body": { + "#": 5348 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 373.528, + "index": 5, + "body": { + "#": 5348 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 369.528, + "index": 6, + "body": { + "#": 5348 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 368, + "index": 7, + "body": { + "#": 5348 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 369.528, + "index": 8, + "body": { + "#": 5348 + }, + "isInternal": false + }, + { + "x": 356.728, + "y": 373.528, + "index": 9, + "body": { + "#": 5348 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5368 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5370 + }, + "max": { + "#": 5371 + } + }, + { + "x": 341.512, + "y": 368 + }, + { + "x": 356.728, + "y": 384 + }, + { + "x": 349.12, + "y": 376 + }, + [ + { + "#": 5374 + }, + { + "#": 5375 + }, + { + "#": 5376 + }, + { + "#": 5377 + }, + { + "#": 5378 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 173, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5380 + }, + "angle": 0, + "vertices": { + "#": 5381 + }, + "position": { + "#": 5392 + }, + "force": { + "#": 5393 + }, + "torque": 0, + "positionImpulse": { + "#": 5394 + }, + "constraintImpulse": { + "#": 5395 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5396 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5397 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5398 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5400 + }, + "positionPrev": { + "#": 5403 + }, + "anglePrev": 0, + "axes": { + "#": 5404 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5379 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5379 + } + ], + [ + { + "#": 5382 + }, + { + "#": 5383 + }, + { + "#": 5384 + }, + { + "#": 5385 + }, + { + "#": 5386 + }, + { + "#": 5387 + }, + { + "#": 5388 + }, + { + "#": 5389 + }, + { + "#": 5390 + }, + { + "#": 5391 + } + ], + { + "x": 376.944, + "y": 378.472, + "index": 0, + "body": { + "#": 5379 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 382.472, + "index": 1, + "body": { + "#": 5379 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 384, + "index": 2, + "body": { + "#": 5379 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 382.472, + "index": 3, + "body": { + "#": 5379 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 378.472, + "index": 4, + "body": { + "#": 5379 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 373.528, + "index": 5, + "body": { + "#": 5379 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 369.528, + "index": 6, + "body": { + "#": 5379 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 368, + "index": 7, + "body": { + "#": 5379 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 369.528, + "index": 8, + "body": { + "#": 5379 + }, + "isInternal": false + }, + { + "x": 376.944, + "y": 373.528, + "index": 9, + "body": { + "#": 5379 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5399 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5401 + }, + "max": { + "#": 5402 + } + }, + { + "x": 361.728, + "y": 368 + }, + { + "x": 376.944, + "y": 384 + }, + { + "x": 369.336, + "y": 376 + }, + [ + { + "#": 5405 + }, + { + "#": 5406 + }, + { + "#": 5407 + }, + { + "#": 5408 + }, + { + "#": 5409 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 174, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5411 + }, + "angle": 0, + "vertices": { + "#": 5412 + }, + "position": { + "#": 5423 + }, + "force": { + "#": 5424 + }, + "torque": 0, + "positionImpulse": { + "#": 5425 + }, + "constraintImpulse": { + "#": 5426 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5427 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5428 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5429 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5431 + }, + "positionPrev": { + "#": 5434 + }, + "anglePrev": 0, + "axes": { + "#": 5435 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5410 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5410 + } + ], + [ + { + "#": 5413 + }, + { + "#": 5414 + }, + { + "#": 5415 + }, + { + "#": 5416 + }, + { + "#": 5417 + }, + { + "#": 5418 + }, + { + "#": 5419 + }, + { + "#": 5420 + }, + { + "#": 5421 + }, + { + "#": 5422 + } + ], + { + "x": 397.16, + "y": 378.472, + "index": 0, + "body": { + "#": 5410 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 382.472, + "index": 1, + "body": { + "#": 5410 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 384, + "index": 2, + "body": { + "#": 5410 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 382.472, + "index": 3, + "body": { + "#": 5410 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 378.472, + "index": 4, + "body": { + "#": 5410 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 373.528, + "index": 5, + "body": { + "#": 5410 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 369.528, + "index": 6, + "body": { + "#": 5410 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 368, + "index": 7, + "body": { + "#": 5410 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 369.528, + "index": 8, + "body": { + "#": 5410 + }, + "isInternal": false + }, + { + "x": 397.16, + "y": 373.528, + "index": 9, + "body": { + "#": 5410 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5430 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5432 + }, + "max": { + "#": 5433 + } + }, + { + "x": 381.944, + "y": 368 + }, + { + "x": 397.16, + "y": 384 + }, + { + "x": 389.552, + "y": 376 + }, + [ + { + "#": 5436 + }, + { + "#": 5437 + }, + { + "#": 5438 + }, + { + "#": 5439 + }, + { + "#": 5440 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 175, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5442 + }, + "angle": 0, + "vertices": { + "#": 5443 + }, + "position": { + "#": 5454 + }, + "force": { + "#": 5455 + }, + "torque": 0, + "positionImpulse": { + "#": 5456 + }, + "constraintImpulse": { + "#": 5457 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5458 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5459 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5460 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5462 + }, + "positionPrev": { + "#": 5465 + }, + "anglePrev": 0, + "axes": { + "#": 5466 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5441 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5441 + } + ], + [ + { + "#": 5444 + }, + { + "#": 5445 + }, + { + "#": 5446 + }, + { + "#": 5447 + }, + { + "#": 5448 + }, + { + "#": 5449 + }, + { + "#": 5450 + }, + { + "#": 5451 + }, + { + "#": 5452 + }, + { + "#": 5453 + } + ], + { + "x": 417.376, + "y": 378.472, + "index": 0, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 382.472, + "index": 1, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 384, + "index": 2, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 382.472, + "index": 3, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 378.472, + "index": 4, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 373.528, + "index": 5, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 369.528, + "index": 6, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 368, + "index": 7, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 369.528, + "index": 8, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 417.376, + "y": 373.528, + "index": 9, + "body": { + "#": 5441 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5461 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5463 + }, + "max": { + "#": 5464 + } + }, + { + "x": 402.16, + "y": 368 + }, + { + "x": 417.376, + "y": 384 + }, + { + "x": 409.768, + "y": 376 + }, + [ + { + "#": 5467 + }, + { + "#": 5468 + }, + { + "#": 5469 + }, + { + "#": 5470 + }, + { + "#": 5471 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 176, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5473 + }, + "angle": 0, + "vertices": { + "#": 5474 + }, + "position": { + "#": 5485 + }, + "force": { + "#": 5486 + }, + "torque": 0, + "positionImpulse": { + "#": 5487 + }, + "constraintImpulse": { + "#": 5488 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5489 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5490 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5491 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5493 + }, + "positionPrev": { + "#": 5496 + }, + "anglePrev": 0, + "axes": { + "#": 5497 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5472 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5472 + } + ], + [ + { + "#": 5475 + }, + { + "#": 5476 + }, + { + "#": 5477 + }, + { + "#": 5478 + }, + { + "#": 5479 + }, + { + "#": 5480 + }, + { + "#": 5481 + }, + { + "#": 5482 + }, + { + "#": 5483 + }, + { + "#": 5484 + } + ], + { + "x": 437.592, + "y": 378.472, + "index": 0, + "body": { + "#": 5472 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 382.472, + "index": 1, + "body": { + "#": 5472 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 384, + "index": 2, + "body": { + "#": 5472 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 382.472, + "index": 3, + "body": { + "#": 5472 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 378.472, + "index": 4, + "body": { + "#": 5472 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 373.528, + "index": 5, + "body": { + "#": 5472 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 369.528, + "index": 6, + "body": { + "#": 5472 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 368, + "index": 7, + "body": { + "#": 5472 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 369.528, + "index": 8, + "body": { + "#": 5472 + }, + "isInternal": false + }, + { + "x": 437.592, + "y": 373.528, + "index": 9, + "body": { + "#": 5472 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5492 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5494 + }, + "max": { + "#": 5495 + } + }, + { + "x": 422.376, + "y": 368 + }, + { + "x": 437.592, + "y": 384 + }, + { + "x": 429.984, + "y": 376 + }, + [ + { + "#": 5498 + }, + { + "#": 5499 + }, + { + "#": 5500 + }, + { + "#": 5501 + }, + { + "#": 5502 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 177, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5504 + }, + "angle": 0, + "vertices": { + "#": 5505 + }, + "position": { + "#": 5516 + }, + "force": { + "#": 5517 + }, + "torque": 0, + "positionImpulse": { + "#": 5518 + }, + "constraintImpulse": { + "#": 5519 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5520 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5521 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5522 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5524 + }, + "positionPrev": { + "#": 5527 + }, + "anglePrev": 0, + "axes": { + "#": 5528 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5503 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5503 + } + ], + [ + { + "#": 5506 + }, + { + "#": 5507 + }, + { + "#": 5508 + }, + { + "#": 5509 + }, + { + "#": 5510 + }, + { + "#": 5511 + }, + { + "#": 5512 + }, + { + "#": 5513 + }, + { + "#": 5514 + }, + { + "#": 5515 + } + ], + { + "x": 457.808, + "y": 378.472, + "index": 0, + "body": { + "#": 5503 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 382.472, + "index": 1, + "body": { + "#": 5503 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 384, + "index": 2, + "body": { + "#": 5503 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 382.472, + "index": 3, + "body": { + "#": 5503 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 378.472, + "index": 4, + "body": { + "#": 5503 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 373.528, + "index": 5, + "body": { + "#": 5503 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 369.528, + "index": 6, + "body": { + "#": 5503 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 368, + "index": 7, + "body": { + "#": 5503 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 369.528, + "index": 8, + "body": { + "#": 5503 + }, + "isInternal": false + }, + { + "x": 457.808, + "y": 373.528, + "index": 9, + "body": { + "#": 5503 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5523 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5525 + }, + "max": { + "#": 5526 + } + }, + { + "x": 442.592, + "y": 368 + }, + { + "x": 457.808, + "y": 384 + }, + { + "x": 450.2, + "y": 376 + }, + [ + { + "#": 5529 + }, + { + "#": 5530 + }, + { + "#": 5531 + }, + { + "#": 5532 + }, + { + "#": 5533 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 178, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5535 + }, + "angle": 0, + "vertices": { + "#": 5536 + }, + "position": { + "#": 5547 + }, + "force": { + "#": 5548 + }, + "torque": 0, + "positionImpulse": { + "#": 5549 + }, + "constraintImpulse": { + "#": 5550 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5551 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5552 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5553 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5555 + }, + "positionPrev": { + "#": 5558 + }, + "anglePrev": 0, + "axes": { + "#": 5559 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5534 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5534 + } + ], + [ + { + "#": 5537 + }, + { + "#": 5538 + }, + { + "#": 5539 + }, + { + "#": 5540 + }, + { + "#": 5541 + }, + { + "#": 5542 + }, + { + "#": 5543 + }, + { + "#": 5544 + }, + { + "#": 5545 + }, + { + "#": 5546 + } + ], + { + "x": 478.024, + "y": 378.472, + "index": 0, + "body": { + "#": 5534 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 382.472, + "index": 1, + "body": { + "#": 5534 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 384, + "index": 2, + "body": { + "#": 5534 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 382.472, + "index": 3, + "body": { + "#": 5534 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 378.472, + "index": 4, + "body": { + "#": 5534 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 373.528, + "index": 5, + "body": { + "#": 5534 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 369.528, + "index": 6, + "body": { + "#": 5534 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 368, + "index": 7, + "body": { + "#": 5534 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 369.528, + "index": 8, + "body": { + "#": 5534 + }, + "isInternal": false + }, + { + "x": 478.024, + "y": 373.528, + "index": 9, + "body": { + "#": 5534 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5554 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5556 + }, + "max": { + "#": 5557 + } + }, + { + "x": 462.808, + "y": 368 + }, + { + "x": 478.024, + "y": 384 + }, + { + "x": 470.416, + "y": 376 + }, + [ + { + "#": 5560 + }, + { + "#": 5561 + }, + { + "#": 5562 + }, + { + "#": 5563 + }, + { + "#": 5564 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 179, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5566 + }, + "angle": 0, + "vertices": { + "#": 5567 + }, + "position": { + "#": 5578 + }, + "force": { + "#": 5579 + }, + "torque": 0, + "positionImpulse": { + "#": 5580 + }, + "constraintImpulse": { + "#": 5581 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5582 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5583 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5584 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5586 + }, + "positionPrev": { + "#": 5589 + }, + "anglePrev": 0, + "axes": { + "#": 5590 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5565 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5565 + } + ], + [ + { + "#": 5568 + }, + { + "#": 5569 + }, + { + "#": 5570 + }, + { + "#": 5571 + }, + { + "#": 5572 + }, + { + "#": 5573 + }, + { + "#": 5574 + }, + { + "#": 5575 + }, + { + "#": 5576 + }, + { + "#": 5577 + } + ], + { + "x": 498.24, + "y": 378.472, + "index": 0, + "body": { + "#": 5565 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 382.472, + "index": 1, + "body": { + "#": 5565 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 384, + "index": 2, + "body": { + "#": 5565 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 382.472, + "index": 3, + "body": { + "#": 5565 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 378.472, + "index": 4, + "body": { + "#": 5565 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 373.528, + "index": 5, + "body": { + "#": 5565 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 369.528, + "index": 6, + "body": { + "#": 5565 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 368, + "index": 7, + "body": { + "#": 5565 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 369.528, + "index": 8, + "body": { + "#": 5565 + }, + "isInternal": false + }, + { + "x": 498.24, + "y": 373.528, + "index": 9, + "body": { + "#": 5565 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5585 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5587 + }, + "max": { + "#": 5588 + } + }, + { + "x": 483.024, + "y": 368 + }, + { + "x": 498.24, + "y": 384 + }, + { + "x": 490.632, + "y": 376 + }, + [ + { + "#": 5591 + }, + { + "#": 5592 + }, + { + "#": 5593 + }, + { + "#": 5594 + }, + { + "#": 5595 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 180, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5597 + }, + "angle": 0, + "vertices": { + "#": 5598 + }, + "position": { + "#": 5609 + }, + "force": { + "#": 5610 + }, + "torque": 0, + "positionImpulse": { + "#": 5611 + }, + "constraintImpulse": { + "#": 5612 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5613 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5614 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5615 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5617 + }, + "positionPrev": { + "#": 5620 + }, + "anglePrev": 0, + "axes": { + "#": 5621 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5596 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5596 + } + ], + [ + { + "#": 5599 + }, + { + "#": 5600 + }, + { + "#": 5601 + }, + { + "#": 5602 + }, + { + "#": 5603 + }, + { + "#": 5604 + }, + { + "#": 5605 + }, + { + "#": 5606 + }, + { + "#": 5607 + }, + { + "#": 5608 + } + ], + { + "x": 518.456, + "y": 378.472, + "index": 0, + "body": { + "#": 5596 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 382.472, + "index": 1, + "body": { + "#": 5596 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 384, + "index": 2, + "body": { + "#": 5596 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 382.472, + "index": 3, + "body": { + "#": 5596 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 378.472, + "index": 4, + "body": { + "#": 5596 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 373.528, + "index": 5, + "body": { + "#": 5596 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 369.528, + "index": 6, + "body": { + "#": 5596 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 368, + "index": 7, + "body": { + "#": 5596 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 369.528, + "index": 8, + "body": { + "#": 5596 + }, + "isInternal": false + }, + { + "x": 518.456, + "y": 373.528, + "index": 9, + "body": { + "#": 5596 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5616 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5618 + }, + "max": { + "#": 5619 + } + }, + { + "x": 503.24, + "y": 368 + }, + { + "x": 518.456, + "y": 384 + }, + { + "x": 510.848, + "y": 376 + }, + [ + { + "#": 5622 + }, + { + "#": 5623 + }, + { + "#": 5624 + }, + { + "#": 5625 + }, + { + "#": 5626 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 181, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5628 + }, + "angle": 0, + "vertices": { + "#": 5629 + }, + "position": { + "#": 5640 + }, + "force": { + "#": 5641 + }, + "torque": 0, + "positionImpulse": { + "#": 5642 + }, + "constraintImpulse": { + "#": 5643 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5644 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5645 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5646 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5648 + }, + "positionPrev": { + "#": 5651 + }, + "anglePrev": 0, + "axes": { + "#": 5652 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5627 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5627 + } + ], + [ + { + "#": 5630 + }, + { + "#": 5631 + }, + { + "#": 5632 + }, + { + "#": 5633 + }, + { + "#": 5634 + }, + { + "#": 5635 + }, + { + "#": 5636 + }, + { + "#": 5637 + }, + { + "#": 5638 + }, + { + "#": 5639 + } + ], + { + "x": 538.672, + "y": 378.472, + "index": 0, + "body": { + "#": 5627 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 382.472, + "index": 1, + "body": { + "#": 5627 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 384, + "index": 2, + "body": { + "#": 5627 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 382.472, + "index": 3, + "body": { + "#": 5627 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 378.472, + "index": 4, + "body": { + "#": 5627 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 373.528, + "index": 5, + "body": { + "#": 5627 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 369.528, + "index": 6, + "body": { + "#": 5627 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 368, + "index": 7, + "body": { + "#": 5627 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 369.528, + "index": 8, + "body": { + "#": 5627 + }, + "isInternal": false + }, + { + "x": 538.672, + "y": 373.528, + "index": 9, + "body": { + "#": 5627 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5647 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5649 + }, + "max": { + "#": 5650 + } + }, + { + "x": 523.456, + "y": 368 + }, + { + "x": 538.672, + "y": 384 + }, + { + "x": 531.064, + "y": 376 + }, + [ + { + "#": 5653 + }, + { + "#": 5654 + }, + { + "#": 5655 + }, + { + "#": 5656 + }, + { + "#": 5657 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 182, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5659 + }, + "angle": 0, + "vertices": { + "#": 5660 + }, + "position": { + "#": 5671 + }, + "force": { + "#": 5672 + }, + "torque": 0, + "positionImpulse": { + "#": 5673 + }, + "constraintImpulse": { + "#": 5674 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5675 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5676 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5677 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5679 + }, + "positionPrev": { + "#": 5682 + }, + "anglePrev": 0, + "axes": { + "#": 5683 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5658 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5658 + } + ], + [ + { + "#": 5661 + }, + { + "#": 5662 + }, + { + "#": 5663 + }, + { + "#": 5664 + }, + { + "#": 5665 + }, + { + "#": 5666 + }, + { + "#": 5667 + }, + { + "#": 5668 + }, + { + "#": 5669 + }, + { + "#": 5670 + } + ], + { + "x": 558.888, + "y": 378.472, + "index": 0, + "body": { + "#": 5658 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 382.472, + "index": 1, + "body": { + "#": 5658 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 384, + "index": 2, + "body": { + "#": 5658 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 382.472, + "index": 3, + "body": { + "#": 5658 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 378.472, + "index": 4, + "body": { + "#": 5658 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 373.528, + "index": 5, + "body": { + "#": 5658 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 369.528, + "index": 6, + "body": { + "#": 5658 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 368, + "index": 7, + "body": { + "#": 5658 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 369.528, + "index": 8, + "body": { + "#": 5658 + }, + "isInternal": false + }, + { + "x": 558.888, + "y": 373.528, + "index": 9, + "body": { + "#": 5658 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5678 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5680 + }, + "max": { + "#": 5681 + } + }, + { + "x": 543.672, + "y": 368 + }, + { + "x": 558.888, + "y": 384 + }, + { + "x": 551.28, + "y": 376 + }, + [ + { + "#": 5684 + }, + { + "#": 5685 + }, + { + "#": 5686 + }, + { + "#": 5687 + }, + { + "#": 5688 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 183, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5690 + }, + "angle": 0, + "vertices": { + "#": 5691 + }, + "position": { + "#": 5702 + }, + "force": { + "#": 5703 + }, + "torque": 0, + "positionImpulse": { + "#": 5704 + }, + "constraintImpulse": { + "#": 5705 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5706 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5707 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5708 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5710 + }, + "positionPrev": { + "#": 5713 + }, + "anglePrev": 0, + "axes": { + "#": 5714 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5689 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5689 + } + ], + [ + { + "#": 5692 + }, + { + "#": 5693 + }, + { + "#": 5694 + }, + { + "#": 5695 + }, + { + "#": 5696 + }, + { + "#": 5697 + }, + { + "#": 5698 + }, + { + "#": 5699 + }, + { + "#": 5700 + }, + { + "#": 5701 + } + ], + { + "x": 579.104, + "y": 378.472, + "index": 0, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 382.472, + "index": 1, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 384, + "index": 2, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 382.472, + "index": 3, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 378.472, + "index": 4, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 373.528, + "index": 5, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 369.528, + "index": 6, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 368, + "index": 7, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 369.528, + "index": 8, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 579.104, + "y": 373.528, + "index": 9, + "body": { + "#": 5689 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5709 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5711 + }, + "max": { + "#": 5712 + } + }, + { + "x": 563.888, + "y": 368 + }, + { + "x": 579.104, + "y": 384 + }, + { + "x": 571.496, + "y": 376 + }, + [ + { + "#": 5715 + }, + { + "#": 5716 + }, + { + "#": 5717 + }, + { + "#": 5718 + }, + { + "#": 5719 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 184, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5721 + }, + "angle": 0, + "vertices": { + "#": 5722 + }, + "position": { + "#": 5733 + }, + "force": { + "#": 5734 + }, + "torque": 0, + "positionImpulse": { + "#": 5735 + }, + "constraintImpulse": { + "#": 5736 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5737 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5738 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5739 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5741 + }, + "positionPrev": { + "#": 5744 + }, + "anglePrev": 0, + "axes": { + "#": 5745 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5720 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5720 + } + ], + [ + { + "#": 5723 + }, + { + "#": 5724 + }, + { + "#": 5725 + }, + { + "#": 5726 + }, + { + "#": 5727 + }, + { + "#": 5728 + }, + { + "#": 5729 + }, + { + "#": 5730 + }, + { + "#": 5731 + }, + { + "#": 5732 + } + ], + { + "x": 599.32, + "y": 378.472, + "index": 0, + "body": { + "#": 5720 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 382.472, + "index": 1, + "body": { + "#": 5720 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 384, + "index": 2, + "body": { + "#": 5720 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 382.472, + "index": 3, + "body": { + "#": 5720 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 378.472, + "index": 4, + "body": { + "#": 5720 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 373.528, + "index": 5, + "body": { + "#": 5720 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 369.528, + "index": 6, + "body": { + "#": 5720 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 368, + "index": 7, + "body": { + "#": 5720 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 369.528, + "index": 8, + "body": { + "#": 5720 + }, + "isInternal": false + }, + { + "x": 599.32, + "y": 373.528, + "index": 9, + "body": { + "#": 5720 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5740 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5742 + }, + "max": { + "#": 5743 + } + }, + { + "x": 584.104, + "y": 368 + }, + { + "x": 599.32, + "y": 384 + }, + { + "x": 591.712, + "y": 376 + }, + [ + { + "#": 5746 + }, + { + "#": 5747 + }, + { + "#": 5748 + }, + { + "#": 5749 + }, + { + "#": 5750 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 185, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5752 + }, + "angle": 0, + "vertices": { + "#": 5753 + }, + "position": { + "#": 5764 + }, + "force": { + "#": 5765 + }, + "torque": 0, + "positionImpulse": { + "#": 5766 + }, + "constraintImpulse": { + "#": 5767 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5768 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5769 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5770 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5772 + }, + "positionPrev": { + "#": 5775 + }, + "anglePrev": 0, + "axes": { + "#": 5776 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5751 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5751 + } + ], + [ + { + "#": 5754 + }, + { + "#": 5755 + }, + { + "#": 5756 + }, + { + "#": 5757 + }, + { + "#": 5758 + }, + { + "#": 5759 + }, + { + "#": 5760 + }, + { + "#": 5761 + }, + { + "#": 5762 + }, + { + "#": 5763 + } + ], + { + "x": 215.216, + "y": 399.472, + "index": 0, + "body": { + "#": 5751 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 403.472, + "index": 1, + "body": { + "#": 5751 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 405, + "index": 2, + "body": { + "#": 5751 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 403.472, + "index": 3, + "body": { + "#": 5751 + }, + "isInternal": false + }, + { + "x": 200, + "y": 399.472, + "index": 4, + "body": { + "#": 5751 + }, + "isInternal": false + }, + { + "x": 200, + "y": 394.528, + "index": 5, + "body": { + "#": 5751 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 390.528, + "index": 6, + "body": { + "#": 5751 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 389, + "index": 7, + "body": { + "#": 5751 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 390.528, + "index": 8, + "body": { + "#": 5751 + }, + "isInternal": false + }, + { + "x": 215.216, + "y": 394.528, + "index": 9, + "body": { + "#": 5751 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5771 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5773 + }, + "max": { + "#": 5774 + } + }, + { + "x": 200, + "y": 389 + }, + { + "x": 215.216, + "y": 405 + }, + { + "x": 207.608, + "y": 397 + }, + [ + { + "#": 5777 + }, + { + "#": 5778 + }, + { + "#": 5779 + }, + { + "#": 5780 + }, + { + "#": 5781 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 186, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5783 + }, + "angle": 0, + "vertices": { + "#": 5784 + }, + "position": { + "#": 5795 + }, + "force": { + "#": 5796 + }, + "torque": 0, + "positionImpulse": { + "#": 5797 + }, + "constraintImpulse": { + "#": 5798 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5799 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5800 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5801 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5803 + }, + "positionPrev": { + "#": 5806 + }, + "anglePrev": 0, + "axes": { + "#": 5807 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5782 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5782 + } + ], + [ + { + "#": 5785 + }, + { + "#": 5786 + }, + { + "#": 5787 + }, + { + "#": 5788 + }, + { + "#": 5789 + }, + { + "#": 5790 + }, + { + "#": 5791 + }, + { + "#": 5792 + }, + { + "#": 5793 + }, + { + "#": 5794 + } + ], + { + "x": 235.432, + "y": 399.472, + "index": 0, + "body": { + "#": 5782 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 403.472, + "index": 1, + "body": { + "#": 5782 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 405, + "index": 2, + "body": { + "#": 5782 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 403.472, + "index": 3, + "body": { + "#": 5782 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 399.472, + "index": 4, + "body": { + "#": 5782 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 394.528, + "index": 5, + "body": { + "#": 5782 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 390.528, + "index": 6, + "body": { + "#": 5782 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 389, + "index": 7, + "body": { + "#": 5782 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 390.528, + "index": 8, + "body": { + "#": 5782 + }, + "isInternal": false + }, + { + "x": 235.432, + "y": 394.528, + "index": 9, + "body": { + "#": 5782 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5802 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5804 + }, + "max": { + "#": 5805 + } + }, + { + "x": 220.216, + "y": 389 + }, + { + "x": 235.432, + "y": 405 + }, + { + "x": 227.824, + "y": 397 + }, + [ + { + "#": 5808 + }, + { + "#": 5809 + }, + { + "#": 5810 + }, + { + "#": 5811 + }, + { + "#": 5812 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 187, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5814 + }, + "angle": 0, + "vertices": { + "#": 5815 + }, + "position": { + "#": 5826 + }, + "force": { + "#": 5827 + }, + "torque": 0, + "positionImpulse": { + "#": 5828 + }, + "constraintImpulse": { + "#": 5829 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5830 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5831 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5832 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5834 + }, + "positionPrev": { + "#": 5837 + }, + "anglePrev": 0, + "axes": { + "#": 5838 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5813 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5813 + } + ], + [ + { + "#": 5816 + }, + { + "#": 5817 + }, + { + "#": 5818 + }, + { + "#": 5819 + }, + { + "#": 5820 + }, + { + "#": 5821 + }, + { + "#": 5822 + }, + { + "#": 5823 + }, + { + "#": 5824 + }, + { + "#": 5825 + } + ], + { + "x": 255.648, + "y": 399.472, + "index": 0, + "body": { + "#": 5813 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 403.472, + "index": 1, + "body": { + "#": 5813 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 405, + "index": 2, + "body": { + "#": 5813 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 403.472, + "index": 3, + "body": { + "#": 5813 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 399.472, + "index": 4, + "body": { + "#": 5813 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 394.528, + "index": 5, + "body": { + "#": 5813 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 390.528, + "index": 6, + "body": { + "#": 5813 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 389, + "index": 7, + "body": { + "#": 5813 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 390.528, + "index": 8, + "body": { + "#": 5813 + }, + "isInternal": false + }, + { + "x": 255.648, + "y": 394.528, + "index": 9, + "body": { + "#": 5813 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5833 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5835 + }, + "max": { + "#": 5836 + } + }, + { + "x": 240.432, + "y": 389 + }, + { + "x": 255.648, + "y": 405 + }, + { + "x": 248.04, + "y": 397 + }, + [ + { + "#": 5839 + }, + { + "#": 5840 + }, + { + "#": 5841 + }, + { + "#": 5842 + }, + { + "#": 5843 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 188, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5845 + }, + "angle": 0, + "vertices": { + "#": 5846 + }, + "position": { + "#": 5857 + }, + "force": { + "#": 5858 + }, + "torque": 0, + "positionImpulse": { + "#": 5859 + }, + "constraintImpulse": { + "#": 5860 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5861 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5862 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5863 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5865 + }, + "positionPrev": { + "#": 5868 + }, + "anglePrev": 0, + "axes": { + "#": 5869 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5844 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5844 + } + ], + [ + { + "#": 5847 + }, + { + "#": 5848 + }, + { + "#": 5849 + }, + { + "#": 5850 + }, + { + "#": 5851 + }, + { + "#": 5852 + }, + { + "#": 5853 + }, + { + "#": 5854 + }, + { + "#": 5855 + }, + { + "#": 5856 + } + ], + { + "x": 275.864, + "y": 399.472, + "index": 0, + "body": { + "#": 5844 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 403.472, + "index": 1, + "body": { + "#": 5844 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 405, + "index": 2, + "body": { + "#": 5844 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 403.472, + "index": 3, + "body": { + "#": 5844 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 399.472, + "index": 4, + "body": { + "#": 5844 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 394.528, + "index": 5, + "body": { + "#": 5844 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 390.528, + "index": 6, + "body": { + "#": 5844 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 389, + "index": 7, + "body": { + "#": 5844 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 390.528, + "index": 8, + "body": { + "#": 5844 + }, + "isInternal": false + }, + { + "x": 275.864, + "y": 394.528, + "index": 9, + "body": { + "#": 5844 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5864 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5866 + }, + "max": { + "#": 5867 + } + }, + { + "x": 260.648, + "y": 389 + }, + { + "x": 275.864, + "y": 405 + }, + { + "x": 268.256, + "y": 397 + }, + [ + { + "#": 5870 + }, + { + "#": 5871 + }, + { + "#": 5872 + }, + { + "#": 5873 + }, + { + "#": 5874 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 189, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5876 + }, + "angle": 0, + "vertices": { + "#": 5877 + }, + "position": { + "#": 5888 + }, + "force": { + "#": 5889 + }, + "torque": 0, + "positionImpulse": { + "#": 5890 + }, + "constraintImpulse": { + "#": 5891 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5892 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5893 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5894 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5896 + }, + "positionPrev": { + "#": 5899 + }, + "anglePrev": 0, + "axes": { + "#": 5900 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5875 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5875 + } + ], + [ + { + "#": 5878 + }, + { + "#": 5879 + }, + { + "#": 5880 + }, + { + "#": 5881 + }, + { + "#": 5882 + }, + { + "#": 5883 + }, + { + "#": 5884 + }, + { + "#": 5885 + }, + { + "#": 5886 + }, + { + "#": 5887 + } + ], + { + "x": 296.08, + "y": 399.472, + "index": 0, + "body": { + "#": 5875 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 403.472, + "index": 1, + "body": { + "#": 5875 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 405, + "index": 2, + "body": { + "#": 5875 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 403.472, + "index": 3, + "body": { + "#": 5875 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 399.472, + "index": 4, + "body": { + "#": 5875 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 394.528, + "index": 5, + "body": { + "#": 5875 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 390.528, + "index": 6, + "body": { + "#": 5875 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 389, + "index": 7, + "body": { + "#": 5875 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 390.528, + "index": 8, + "body": { + "#": 5875 + }, + "isInternal": false + }, + { + "x": 296.08, + "y": 394.528, + "index": 9, + "body": { + "#": 5875 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5895 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5897 + }, + "max": { + "#": 5898 + } + }, + { + "x": 280.864, + "y": 389 + }, + { + "x": 296.08, + "y": 405 + }, + { + "x": 288.472, + "y": 397 + }, + [ + { + "#": 5901 + }, + { + "#": 5902 + }, + { + "#": 5903 + }, + { + "#": 5904 + }, + { + "#": 5905 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 190, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5907 + }, + "angle": 0, + "vertices": { + "#": 5908 + }, + "position": { + "#": 5919 + }, + "force": { + "#": 5920 + }, + "torque": 0, + "positionImpulse": { + "#": 5921 + }, + "constraintImpulse": { + "#": 5922 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5923 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5924 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5925 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5927 + }, + "positionPrev": { + "#": 5930 + }, + "anglePrev": 0, + "axes": { + "#": 5931 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5906 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5906 + } + ], + [ + { + "#": 5909 + }, + { + "#": 5910 + }, + { + "#": 5911 + }, + { + "#": 5912 + }, + { + "#": 5913 + }, + { + "#": 5914 + }, + { + "#": 5915 + }, + { + "#": 5916 + }, + { + "#": 5917 + }, + { + "#": 5918 + } + ], + { + "x": 316.296, + "y": 399.472, + "index": 0, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 403.472, + "index": 1, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 405, + "index": 2, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 403.472, + "index": 3, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 399.472, + "index": 4, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 394.528, + "index": 5, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 390.528, + "index": 6, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 389, + "index": 7, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 390.528, + "index": 8, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 316.296, + "y": 394.528, + "index": 9, + "body": { + "#": 5906 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5926 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5928 + }, + "max": { + "#": 5929 + } + }, + { + "x": 301.08, + "y": 389 + }, + { + "x": 316.296, + "y": 405 + }, + { + "x": 308.688, + "y": 397 + }, + [ + { + "#": 5932 + }, + { + "#": 5933 + }, + { + "#": 5934 + }, + { + "#": 5935 + }, + { + "#": 5936 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 191, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5938 + }, + "angle": 0, + "vertices": { + "#": 5939 + }, + "position": { + "#": 5950 + }, + "force": { + "#": 5951 + }, + "torque": 0, + "positionImpulse": { + "#": 5952 + }, + "constraintImpulse": { + "#": 5953 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5954 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5955 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5956 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5958 + }, + "positionPrev": { + "#": 5961 + }, + "anglePrev": 0, + "axes": { + "#": 5962 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5937 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5937 + } + ], + [ + { + "#": 5940 + }, + { + "#": 5941 + }, + { + "#": 5942 + }, + { + "#": 5943 + }, + { + "#": 5944 + }, + { + "#": 5945 + }, + { + "#": 5946 + }, + { + "#": 5947 + }, + { + "#": 5948 + }, + { + "#": 5949 + } + ], + { + "x": 336.512, + "y": 399.472, + "index": 0, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 403.472, + "index": 1, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 405, + "index": 2, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 403.472, + "index": 3, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 399.472, + "index": 4, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 394.528, + "index": 5, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 390.528, + "index": 6, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 389, + "index": 7, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 390.528, + "index": 8, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 336.512, + "y": 394.528, + "index": 9, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5957 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5959 + }, + "max": { + "#": 5960 + } + }, + { + "x": 321.296, + "y": 389 + }, + { + "x": 336.512, + "y": 405 + }, + { + "x": 328.904, + "y": 397 + }, + [ + { + "#": 5963 + }, + { + "#": 5964 + }, + { + "#": 5965 + }, + { + "#": 5966 + }, + { + "#": 5967 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 192, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5969 + }, + "angle": 0, + "vertices": { + "#": 5970 + }, + "position": { + "#": 5981 + }, + "force": { + "#": 5982 + }, + "torque": 0, + "positionImpulse": { + "#": 5983 + }, + "constraintImpulse": { + "#": 5984 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5985 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5986 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5987 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5989 + }, + "positionPrev": { + "#": 5992 + }, + "anglePrev": 0, + "axes": { + "#": 5993 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5968 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5968 + } + ], + [ + { + "#": 5971 + }, + { + "#": 5972 + }, + { + "#": 5973 + }, + { + "#": 5974 + }, + { + "#": 5975 + }, + { + "#": 5976 + }, + { + "#": 5977 + }, + { + "#": 5978 + }, + { + "#": 5979 + }, + { + "#": 5980 + } + ], + { + "x": 356.728, + "y": 399.472, + "index": 0, + "body": { + "#": 5968 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 403.472, + "index": 1, + "body": { + "#": 5968 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 405, + "index": 2, + "body": { + "#": 5968 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 403.472, + "index": 3, + "body": { + "#": 5968 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 399.472, + "index": 4, + "body": { + "#": 5968 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 394.528, + "index": 5, + "body": { + "#": 5968 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 390.528, + "index": 6, + "body": { + "#": 5968 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 389, + "index": 7, + "body": { + "#": 5968 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 390.528, + "index": 8, + "body": { + "#": 5968 + }, + "isInternal": false + }, + { + "x": 356.728, + "y": 394.528, + "index": 9, + "body": { + "#": 5968 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5988 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5990 + }, + "max": { + "#": 5991 + } + }, + { + "x": 341.512, + "y": 389 + }, + { + "x": 356.728, + "y": 405 + }, + { + "x": 349.12, + "y": 397 + }, + [ + { + "#": 5994 + }, + { + "#": 5995 + }, + { + "#": 5996 + }, + { + "#": 5997 + }, + { + "#": 5998 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 193, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6000 + }, + "angle": 0, + "vertices": { + "#": 6001 + }, + "position": { + "#": 6012 + }, + "force": { + "#": 6013 + }, + "torque": 0, + "positionImpulse": { + "#": 6014 + }, + "constraintImpulse": { + "#": 6015 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6016 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6017 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6018 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6020 + }, + "positionPrev": { + "#": 6023 + }, + "anglePrev": 0, + "axes": { + "#": 6024 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5999 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5999 + } + ], + [ + { + "#": 6002 + }, + { + "#": 6003 + }, + { + "#": 6004 + }, + { + "#": 6005 + }, + { + "#": 6006 + }, + { + "#": 6007 + }, + { + "#": 6008 + }, + { + "#": 6009 + }, + { + "#": 6010 + }, + { + "#": 6011 + } + ], + { + "x": 376.944, + "y": 399.472, + "index": 0, + "body": { + "#": 5999 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 403.472, + "index": 1, + "body": { + "#": 5999 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 405, + "index": 2, + "body": { + "#": 5999 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 403.472, + "index": 3, + "body": { + "#": 5999 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 399.472, + "index": 4, + "body": { + "#": 5999 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 394.528, + "index": 5, + "body": { + "#": 5999 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 390.528, + "index": 6, + "body": { + "#": 5999 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 389, + "index": 7, + "body": { + "#": 5999 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 390.528, + "index": 8, + "body": { + "#": 5999 + }, + "isInternal": false + }, + { + "x": 376.944, + "y": 394.528, + "index": 9, + "body": { + "#": 5999 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6019 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6021 + }, + "max": { + "#": 6022 + } + }, + { + "x": 361.728, + "y": 389 + }, + { + "x": 376.944, + "y": 405 + }, + { + "x": 369.336, + "y": 397 + }, + [ + { + "#": 6025 + }, + { + "#": 6026 + }, + { + "#": 6027 + }, + { + "#": 6028 + }, + { + "#": 6029 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 194, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6031 + }, + "angle": 0, + "vertices": { + "#": 6032 + }, + "position": { + "#": 6043 + }, + "force": { + "#": 6044 + }, + "torque": 0, + "positionImpulse": { + "#": 6045 + }, + "constraintImpulse": { + "#": 6046 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6047 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6048 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6049 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6051 + }, + "positionPrev": { + "#": 6054 + }, + "anglePrev": 0, + "axes": { + "#": 6055 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6030 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6030 + } + ], + [ + { + "#": 6033 + }, + { + "#": 6034 + }, + { + "#": 6035 + }, + { + "#": 6036 + }, + { + "#": 6037 + }, + { + "#": 6038 + }, + { + "#": 6039 + }, + { + "#": 6040 + }, + { + "#": 6041 + }, + { + "#": 6042 + } + ], + { + "x": 397.16, + "y": 399.472, + "index": 0, + "body": { + "#": 6030 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 403.472, + "index": 1, + "body": { + "#": 6030 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 405, + "index": 2, + "body": { + "#": 6030 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 403.472, + "index": 3, + "body": { + "#": 6030 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 399.472, + "index": 4, + "body": { + "#": 6030 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 394.528, + "index": 5, + "body": { + "#": 6030 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 390.528, + "index": 6, + "body": { + "#": 6030 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 389, + "index": 7, + "body": { + "#": 6030 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 390.528, + "index": 8, + "body": { + "#": 6030 + }, + "isInternal": false + }, + { + "x": 397.16, + "y": 394.528, + "index": 9, + "body": { + "#": 6030 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6050 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6052 + }, + "max": { + "#": 6053 + } + }, + { + "x": 381.944, + "y": 389 + }, + { + "x": 397.16, + "y": 405 + }, + { + "x": 389.552, + "y": 397 + }, + [ + { + "#": 6056 + }, + { + "#": 6057 + }, + { + "#": 6058 + }, + { + "#": 6059 + }, + { + "#": 6060 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 195, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6062 + }, + "angle": 0, + "vertices": { + "#": 6063 + }, + "position": { + "#": 6074 + }, + "force": { + "#": 6075 + }, + "torque": 0, + "positionImpulse": { + "#": 6076 + }, + "constraintImpulse": { + "#": 6077 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6078 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6079 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6080 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6082 + }, + "positionPrev": { + "#": 6085 + }, + "anglePrev": 0, + "axes": { + "#": 6086 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6061 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6061 + } + ], + [ + { + "#": 6064 + }, + { + "#": 6065 + }, + { + "#": 6066 + }, + { + "#": 6067 + }, + { + "#": 6068 + }, + { + "#": 6069 + }, + { + "#": 6070 + }, + { + "#": 6071 + }, + { + "#": 6072 + }, + { + "#": 6073 + } + ], + { + "x": 417.376, + "y": 399.472, + "index": 0, + "body": { + "#": 6061 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 403.472, + "index": 1, + "body": { + "#": 6061 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 405, + "index": 2, + "body": { + "#": 6061 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 403.472, + "index": 3, + "body": { + "#": 6061 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 399.472, + "index": 4, + "body": { + "#": 6061 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 394.528, + "index": 5, + "body": { + "#": 6061 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 390.528, + "index": 6, + "body": { + "#": 6061 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 389, + "index": 7, + "body": { + "#": 6061 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 390.528, + "index": 8, + "body": { + "#": 6061 + }, + "isInternal": false + }, + { + "x": 417.376, + "y": 394.528, + "index": 9, + "body": { + "#": 6061 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6081 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6083 + }, + "max": { + "#": 6084 + } + }, + { + "x": 402.16, + "y": 389 + }, + { + "x": 417.376, + "y": 405 + }, + { + "x": 409.768, + "y": 397 + }, + [ + { + "#": 6087 + }, + { + "#": 6088 + }, + { + "#": 6089 + }, + { + "#": 6090 + }, + { + "#": 6091 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 196, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6093 + }, + "angle": 0, + "vertices": { + "#": 6094 + }, + "position": { + "#": 6105 + }, + "force": { + "#": 6106 + }, + "torque": 0, + "positionImpulse": { + "#": 6107 + }, + "constraintImpulse": { + "#": 6108 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6109 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6110 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6111 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6113 + }, + "positionPrev": { + "#": 6116 + }, + "anglePrev": 0, + "axes": { + "#": 6117 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6092 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6092 + } + ], + [ + { + "#": 6095 + }, + { + "#": 6096 + }, + { + "#": 6097 + }, + { + "#": 6098 + }, + { + "#": 6099 + }, + { + "#": 6100 + }, + { + "#": 6101 + }, + { + "#": 6102 + }, + { + "#": 6103 + }, + { + "#": 6104 + } + ], + { + "x": 437.592, + "y": 399.472, + "index": 0, + "body": { + "#": 6092 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 403.472, + "index": 1, + "body": { + "#": 6092 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 405, + "index": 2, + "body": { + "#": 6092 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 403.472, + "index": 3, + "body": { + "#": 6092 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 399.472, + "index": 4, + "body": { + "#": 6092 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 394.528, + "index": 5, + "body": { + "#": 6092 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 390.528, + "index": 6, + "body": { + "#": 6092 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 389, + "index": 7, + "body": { + "#": 6092 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 390.528, + "index": 8, + "body": { + "#": 6092 + }, + "isInternal": false + }, + { + "x": 437.592, + "y": 394.528, + "index": 9, + "body": { + "#": 6092 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6112 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6114 + }, + "max": { + "#": 6115 + } + }, + { + "x": 422.376, + "y": 389 + }, + { + "x": 437.592, + "y": 405 + }, + { + "x": 429.984, + "y": 397 + }, + [ + { + "#": 6118 + }, + { + "#": 6119 + }, + { + "#": 6120 + }, + { + "#": 6121 + }, + { + "#": 6122 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 197, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6124 + }, + "angle": 0, + "vertices": { + "#": 6125 + }, + "position": { + "#": 6136 + }, + "force": { + "#": 6137 + }, + "torque": 0, + "positionImpulse": { + "#": 6138 + }, + "constraintImpulse": { + "#": 6139 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6140 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6141 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6142 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6144 + }, + "positionPrev": { + "#": 6147 + }, + "anglePrev": 0, + "axes": { + "#": 6148 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6123 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6123 + } + ], + [ + { + "#": 6126 + }, + { + "#": 6127 + }, + { + "#": 6128 + }, + { + "#": 6129 + }, + { + "#": 6130 + }, + { + "#": 6131 + }, + { + "#": 6132 + }, + { + "#": 6133 + }, + { + "#": 6134 + }, + { + "#": 6135 + } + ], + { + "x": 457.808, + "y": 399.472, + "index": 0, + "body": { + "#": 6123 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 403.472, + "index": 1, + "body": { + "#": 6123 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 405, + "index": 2, + "body": { + "#": 6123 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 403.472, + "index": 3, + "body": { + "#": 6123 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 399.472, + "index": 4, + "body": { + "#": 6123 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 394.528, + "index": 5, + "body": { + "#": 6123 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 390.528, + "index": 6, + "body": { + "#": 6123 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 389, + "index": 7, + "body": { + "#": 6123 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 390.528, + "index": 8, + "body": { + "#": 6123 + }, + "isInternal": false + }, + { + "x": 457.808, + "y": 394.528, + "index": 9, + "body": { + "#": 6123 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6143 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6145 + }, + "max": { + "#": 6146 + } + }, + { + "x": 442.592, + "y": 389 + }, + { + "x": 457.808, + "y": 405 + }, + { + "x": 450.2, + "y": 397 + }, + [ + { + "#": 6149 + }, + { + "#": 6150 + }, + { + "#": 6151 + }, + { + "#": 6152 + }, + { + "#": 6153 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 198, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6155 + }, + "angle": 0, + "vertices": { + "#": 6156 + }, + "position": { + "#": 6167 + }, + "force": { + "#": 6168 + }, + "torque": 0, + "positionImpulse": { + "#": 6169 + }, + "constraintImpulse": { + "#": 6170 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6171 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6172 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6173 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6175 + }, + "positionPrev": { + "#": 6178 + }, + "anglePrev": 0, + "axes": { + "#": 6179 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6154 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6154 + } + ], + [ + { + "#": 6157 + }, + { + "#": 6158 + }, + { + "#": 6159 + }, + { + "#": 6160 + }, + { + "#": 6161 + }, + { + "#": 6162 + }, + { + "#": 6163 + }, + { + "#": 6164 + }, + { + "#": 6165 + }, + { + "#": 6166 + } + ], + { + "x": 478.024, + "y": 399.472, + "index": 0, + "body": { + "#": 6154 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 403.472, + "index": 1, + "body": { + "#": 6154 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 405, + "index": 2, + "body": { + "#": 6154 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 403.472, + "index": 3, + "body": { + "#": 6154 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 399.472, + "index": 4, + "body": { + "#": 6154 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 394.528, + "index": 5, + "body": { + "#": 6154 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 390.528, + "index": 6, + "body": { + "#": 6154 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 389, + "index": 7, + "body": { + "#": 6154 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 390.528, + "index": 8, + "body": { + "#": 6154 + }, + "isInternal": false + }, + { + "x": 478.024, + "y": 394.528, + "index": 9, + "body": { + "#": 6154 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6174 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6176 + }, + "max": { + "#": 6177 + } + }, + { + "x": 462.808, + "y": 389 + }, + { + "x": 478.024, + "y": 405 + }, + { + "x": 470.416, + "y": 397 + }, + [ + { + "#": 6180 + }, + { + "#": 6181 + }, + { + "#": 6182 + }, + { + "#": 6183 + }, + { + "#": 6184 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 199, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6186 + }, + "angle": 0, + "vertices": { + "#": 6187 + }, + "position": { + "#": 6198 + }, + "force": { + "#": 6199 + }, + "torque": 0, + "positionImpulse": { + "#": 6200 + }, + "constraintImpulse": { + "#": 6201 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6202 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6203 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6204 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6206 + }, + "positionPrev": { + "#": 6209 + }, + "anglePrev": 0, + "axes": { + "#": 6210 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6185 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6185 + } + ], + [ + { + "#": 6188 + }, + { + "#": 6189 + }, + { + "#": 6190 + }, + { + "#": 6191 + }, + { + "#": 6192 + }, + { + "#": 6193 + }, + { + "#": 6194 + }, + { + "#": 6195 + }, + { + "#": 6196 + }, + { + "#": 6197 + } + ], + { + "x": 498.24, + "y": 399.472, + "index": 0, + "body": { + "#": 6185 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 403.472, + "index": 1, + "body": { + "#": 6185 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 405, + "index": 2, + "body": { + "#": 6185 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 403.472, + "index": 3, + "body": { + "#": 6185 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 399.472, + "index": 4, + "body": { + "#": 6185 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 394.528, + "index": 5, + "body": { + "#": 6185 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 390.528, + "index": 6, + "body": { + "#": 6185 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 389, + "index": 7, + "body": { + "#": 6185 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 390.528, + "index": 8, + "body": { + "#": 6185 + }, + "isInternal": false + }, + { + "x": 498.24, + "y": 394.528, + "index": 9, + "body": { + "#": 6185 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6205 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6207 + }, + "max": { + "#": 6208 + } + }, + { + "x": 483.024, + "y": 389 + }, + { + "x": 498.24, + "y": 405 + }, + { + "x": 490.632, + "y": 397 + }, + [ + { + "#": 6211 + }, + { + "#": 6212 + }, + { + "#": 6213 + }, + { + "#": 6214 + }, + { + "#": 6215 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 200, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6217 + }, + "angle": 0, + "vertices": { + "#": 6218 + }, + "position": { + "#": 6229 + }, + "force": { + "#": 6230 + }, + "torque": 0, + "positionImpulse": { + "#": 6231 + }, + "constraintImpulse": { + "#": 6232 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6233 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6234 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6235 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6237 + }, + "positionPrev": { + "#": 6240 + }, + "anglePrev": 0, + "axes": { + "#": 6241 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6216 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6216 + } + ], + [ + { + "#": 6219 + }, + { + "#": 6220 + }, + { + "#": 6221 + }, + { + "#": 6222 + }, + { + "#": 6223 + }, + { + "#": 6224 + }, + { + "#": 6225 + }, + { + "#": 6226 + }, + { + "#": 6227 + }, + { + "#": 6228 + } + ], + { + "x": 518.456, + "y": 399.472, + "index": 0, + "body": { + "#": 6216 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 403.472, + "index": 1, + "body": { + "#": 6216 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 405, + "index": 2, + "body": { + "#": 6216 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 403.472, + "index": 3, + "body": { + "#": 6216 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 399.472, + "index": 4, + "body": { + "#": 6216 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 394.528, + "index": 5, + "body": { + "#": 6216 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 390.528, + "index": 6, + "body": { + "#": 6216 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 389, + "index": 7, + "body": { + "#": 6216 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 390.528, + "index": 8, + "body": { + "#": 6216 + }, + "isInternal": false + }, + { + "x": 518.456, + "y": 394.528, + "index": 9, + "body": { + "#": 6216 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6236 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6238 + }, + "max": { + "#": 6239 + } + }, + { + "x": 503.24, + "y": 389 + }, + { + "x": 518.456, + "y": 405 + }, + { + "x": 510.848, + "y": 397 + }, + [ + { + "#": 6242 + }, + { + "#": 6243 + }, + { + "#": 6244 + }, + { + "#": 6245 + }, + { + "#": 6246 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 201, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6248 + }, + "angle": 0, + "vertices": { + "#": 6249 + }, + "position": { + "#": 6260 + }, + "force": { + "#": 6261 + }, + "torque": 0, + "positionImpulse": { + "#": 6262 + }, + "constraintImpulse": { + "#": 6263 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6264 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6265 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6266 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6268 + }, + "positionPrev": { + "#": 6271 + }, + "anglePrev": 0, + "axes": { + "#": 6272 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6247 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6247 + } + ], + [ + { + "#": 6250 + }, + { + "#": 6251 + }, + { + "#": 6252 + }, + { + "#": 6253 + }, + { + "#": 6254 + }, + { + "#": 6255 + }, + { + "#": 6256 + }, + { + "#": 6257 + }, + { + "#": 6258 + }, + { + "#": 6259 + } + ], + { + "x": 538.672, + "y": 399.472, + "index": 0, + "body": { + "#": 6247 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 403.472, + "index": 1, + "body": { + "#": 6247 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 405, + "index": 2, + "body": { + "#": 6247 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 403.472, + "index": 3, + "body": { + "#": 6247 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 399.472, + "index": 4, + "body": { + "#": 6247 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 394.528, + "index": 5, + "body": { + "#": 6247 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 390.528, + "index": 6, + "body": { + "#": 6247 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 389, + "index": 7, + "body": { + "#": 6247 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 390.528, + "index": 8, + "body": { + "#": 6247 + }, + "isInternal": false + }, + { + "x": 538.672, + "y": 394.528, + "index": 9, + "body": { + "#": 6247 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6267 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6269 + }, + "max": { + "#": 6270 + } + }, + { + "x": 523.456, + "y": 389 + }, + { + "x": 538.672, + "y": 405 + }, + { + "x": 531.064, + "y": 397 + }, + [ + { + "#": 6273 + }, + { + "#": 6274 + }, + { + "#": 6275 + }, + { + "#": 6276 + }, + { + "#": 6277 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 202, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6279 + }, + "angle": 0, + "vertices": { + "#": 6280 + }, + "position": { + "#": 6291 + }, + "force": { + "#": 6292 + }, + "torque": 0, + "positionImpulse": { + "#": 6293 + }, + "constraintImpulse": { + "#": 6294 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6295 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6296 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6297 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6299 + }, + "positionPrev": { + "#": 6302 + }, + "anglePrev": 0, + "axes": { + "#": 6303 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6278 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6278 + } + ], + [ + { + "#": 6281 + }, + { + "#": 6282 + }, + { + "#": 6283 + }, + { + "#": 6284 + }, + { + "#": 6285 + }, + { + "#": 6286 + }, + { + "#": 6287 + }, + { + "#": 6288 + }, + { + "#": 6289 + }, + { + "#": 6290 + } + ], + { + "x": 558.888, + "y": 399.472, + "index": 0, + "body": { + "#": 6278 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 403.472, + "index": 1, + "body": { + "#": 6278 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 405, + "index": 2, + "body": { + "#": 6278 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 403.472, + "index": 3, + "body": { + "#": 6278 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 399.472, + "index": 4, + "body": { + "#": 6278 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 394.528, + "index": 5, + "body": { + "#": 6278 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 390.528, + "index": 6, + "body": { + "#": 6278 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 389, + "index": 7, + "body": { + "#": 6278 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 390.528, + "index": 8, + "body": { + "#": 6278 + }, + "isInternal": false + }, + { + "x": 558.888, + "y": 394.528, + "index": 9, + "body": { + "#": 6278 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6298 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6300 + }, + "max": { + "#": 6301 + } + }, + { + "x": 543.672, + "y": 389 + }, + { + "x": 558.888, + "y": 405 + }, + { + "x": 551.28, + "y": 397 + }, + [ + { + "#": 6304 + }, + { + "#": 6305 + }, + { + "#": 6306 + }, + { + "#": 6307 + }, + { + "#": 6308 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 203, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6310 + }, + "angle": 0, + "vertices": { + "#": 6311 + }, + "position": { + "#": 6322 + }, + "force": { + "#": 6323 + }, + "torque": 0, + "positionImpulse": { + "#": 6324 + }, + "constraintImpulse": { + "#": 6325 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6326 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6327 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6328 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6330 + }, + "positionPrev": { + "#": 6333 + }, + "anglePrev": 0, + "axes": { + "#": 6334 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6309 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6309 + } + ], + [ + { + "#": 6312 + }, + { + "#": 6313 + }, + { + "#": 6314 + }, + { + "#": 6315 + }, + { + "#": 6316 + }, + { + "#": 6317 + }, + { + "#": 6318 + }, + { + "#": 6319 + }, + { + "#": 6320 + }, + { + "#": 6321 + } + ], + { + "x": 579.104, + "y": 399.472, + "index": 0, + "body": { + "#": 6309 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 403.472, + "index": 1, + "body": { + "#": 6309 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 405, + "index": 2, + "body": { + "#": 6309 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 403.472, + "index": 3, + "body": { + "#": 6309 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 399.472, + "index": 4, + "body": { + "#": 6309 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 394.528, + "index": 5, + "body": { + "#": 6309 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 390.528, + "index": 6, + "body": { + "#": 6309 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 389, + "index": 7, + "body": { + "#": 6309 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 390.528, + "index": 8, + "body": { + "#": 6309 + }, + "isInternal": false + }, + { + "x": 579.104, + "y": 394.528, + "index": 9, + "body": { + "#": 6309 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6329 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6331 + }, + "max": { + "#": 6332 + } + }, + { + "x": 563.888, + "y": 389 + }, + { + "x": 579.104, + "y": 405 + }, + { + "x": 571.496, + "y": 397 + }, + [ + { + "#": 6335 + }, + { + "#": 6336 + }, + { + "#": 6337 + }, + { + "#": 6338 + }, + { + "#": 6339 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 204, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6341 + }, + "angle": 0, + "vertices": { + "#": 6342 + }, + "position": { + "#": 6353 + }, + "force": { + "#": 6354 + }, + "torque": 0, + "positionImpulse": { + "#": 6355 + }, + "constraintImpulse": { + "#": 6356 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6357 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6358 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6359 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6361 + }, + "positionPrev": { + "#": 6364 + }, + "anglePrev": 0, + "axes": { + "#": 6365 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6340 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6340 + } + ], + [ + { + "#": 6343 + }, + { + "#": 6344 + }, + { + "#": 6345 + }, + { + "#": 6346 + }, + { + "#": 6347 + }, + { + "#": 6348 + }, + { + "#": 6349 + }, + { + "#": 6350 + }, + { + "#": 6351 + }, + { + "#": 6352 + } + ], + { + "x": 599.32, + "y": 399.472, + "index": 0, + "body": { + "#": 6340 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 403.472, + "index": 1, + "body": { + "#": 6340 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 405, + "index": 2, + "body": { + "#": 6340 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 403.472, + "index": 3, + "body": { + "#": 6340 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 399.472, + "index": 4, + "body": { + "#": 6340 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 394.528, + "index": 5, + "body": { + "#": 6340 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 390.528, + "index": 6, + "body": { + "#": 6340 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 389, + "index": 7, + "body": { + "#": 6340 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 390.528, + "index": 8, + "body": { + "#": 6340 + }, + "isInternal": false + }, + { + "x": 599.32, + "y": 394.528, + "index": 9, + "body": { + "#": 6340 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6360 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6362 + }, + "max": { + "#": 6363 + } + }, + { + "x": 584.104, + "y": 389 + }, + { + "x": 599.32, + "y": 405 + }, + { + "x": 591.712, + "y": 397 + }, + [ + { + "#": 6366 + }, + { + "#": 6367 + }, + { + "#": 6368 + }, + { + "#": 6369 + }, + { + "#": 6370 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 205, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6372 + }, + "angle": 0, + "vertices": { + "#": 6373 + }, + "position": { + "#": 6384 + }, + "force": { + "#": 6385 + }, + "torque": 0, + "positionImpulse": { + "#": 6386 + }, + "constraintImpulse": { + "#": 6387 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6388 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6389 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6390 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6392 + }, + "positionPrev": { + "#": 6395 + }, + "anglePrev": 0, + "axes": { + "#": 6396 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6371 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6371 + } + ], + [ + { + "#": 6374 + }, + { + "#": 6375 + }, + { + "#": 6376 + }, + { + "#": 6377 + }, + { + "#": 6378 + }, + { + "#": 6379 + }, + { + "#": 6380 + }, + { + "#": 6381 + }, + { + "#": 6382 + }, + { + "#": 6383 + } + ], + { + "x": 215.216, + "y": 420.472, + "index": 0, + "body": { + "#": 6371 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 424.472, + "index": 1, + "body": { + "#": 6371 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 426, + "index": 2, + "body": { + "#": 6371 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 424.472, + "index": 3, + "body": { + "#": 6371 + }, + "isInternal": false + }, + { + "x": 200, + "y": 420.472, + "index": 4, + "body": { + "#": 6371 + }, + "isInternal": false + }, + { + "x": 200, + "y": 415.528, + "index": 5, + "body": { + "#": 6371 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 411.528, + "index": 6, + "body": { + "#": 6371 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 410, + "index": 7, + "body": { + "#": 6371 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 411.528, + "index": 8, + "body": { + "#": 6371 + }, + "isInternal": false + }, + { + "x": 215.216, + "y": 415.528, + "index": 9, + "body": { + "#": 6371 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6391 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6393 + }, + "max": { + "#": 6394 + } + }, + { + "x": 200, + "y": 410 + }, + { + "x": 215.216, + "y": 426 + }, + { + "x": 207.608, + "y": 418 + }, + [ + { + "#": 6397 + }, + { + "#": 6398 + }, + { + "#": 6399 + }, + { + "#": 6400 + }, + { + "#": 6401 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 206, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6403 + }, + "angle": 0, + "vertices": { + "#": 6404 + }, + "position": { + "#": 6415 + }, + "force": { + "#": 6416 + }, + "torque": 0, + "positionImpulse": { + "#": 6417 + }, + "constraintImpulse": { + "#": 6418 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6419 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6420 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6421 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6423 + }, + "positionPrev": { + "#": 6426 + }, + "anglePrev": 0, + "axes": { + "#": 6427 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6402 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6402 + } + ], + [ + { + "#": 6405 + }, + { + "#": 6406 + }, + { + "#": 6407 + }, + { + "#": 6408 + }, + { + "#": 6409 + }, + { + "#": 6410 + }, + { + "#": 6411 + }, + { + "#": 6412 + }, + { + "#": 6413 + }, + { + "#": 6414 + } + ], + { + "x": 235.432, + "y": 420.472, + "index": 0, + "body": { + "#": 6402 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 424.472, + "index": 1, + "body": { + "#": 6402 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 426, + "index": 2, + "body": { + "#": 6402 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 424.472, + "index": 3, + "body": { + "#": 6402 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 420.472, + "index": 4, + "body": { + "#": 6402 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 415.528, + "index": 5, + "body": { + "#": 6402 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 411.528, + "index": 6, + "body": { + "#": 6402 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 410, + "index": 7, + "body": { + "#": 6402 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 411.528, + "index": 8, + "body": { + "#": 6402 + }, + "isInternal": false + }, + { + "x": 235.432, + "y": 415.528, + "index": 9, + "body": { + "#": 6402 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6422 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6424 + }, + "max": { + "#": 6425 + } + }, + { + "x": 220.216, + "y": 410 + }, + { + "x": 235.432, + "y": 426 + }, + { + "x": 227.824, + "y": 418 + }, + [ + { + "#": 6428 + }, + { + "#": 6429 + }, + { + "#": 6430 + }, + { + "#": 6431 + }, + { + "#": 6432 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 207, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6434 + }, + "angle": 0, + "vertices": { + "#": 6435 + }, + "position": { + "#": 6446 + }, + "force": { + "#": 6447 + }, + "torque": 0, + "positionImpulse": { + "#": 6448 + }, + "constraintImpulse": { + "#": 6449 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6450 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6451 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6452 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6454 + }, + "positionPrev": { + "#": 6457 + }, + "anglePrev": 0, + "axes": { + "#": 6458 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6433 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6433 + } + ], + [ + { + "#": 6436 + }, + { + "#": 6437 + }, + { + "#": 6438 + }, + { + "#": 6439 + }, + { + "#": 6440 + }, + { + "#": 6441 + }, + { + "#": 6442 + }, + { + "#": 6443 + }, + { + "#": 6444 + }, + { + "#": 6445 + } + ], + { + "x": 255.648, + "y": 420.472, + "index": 0, + "body": { + "#": 6433 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 424.472, + "index": 1, + "body": { + "#": 6433 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 426, + "index": 2, + "body": { + "#": 6433 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 424.472, + "index": 3, + "body": { + "#": 6433 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 420.472, + "index": 4, + "body": { + "#": 6433 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 415.528, + "index": 5, + "body": { + "#": 6433 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 411.528, + "index": 6, + "body": { + "#": 6433 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 410, + "index": 7, + "body": { + "#": 6433 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 411.528, + "index": 8, + "body": { + "#": 6433 + }, + "isInternal": false + }, + { + "x": 255.648, + "y": 415.528, + "index": 9, + "body": { + "#": 6433 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6453 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6455 + }, + "max": { + "#": 6456 + } + }, + { + "x": 240.432, + "y": 410 + }, + { + "x": 255.648, + "y": 426 + }, + { + "x": 248.04, + "y": 418 + }, + [ + { + "#": 6459 + }, + { + "#": 6460 + }, + { + "#": 6461 + }, + { + "#": 6462 + }, + { + "#": 6463 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 208, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6465 + }, + "angle": 0, + "vertices": { + "#": 6466 + }, + "position": { + "#": 6477 + }, + "force": { + "#": 6478 + }, + "torque": 0, + "positionImpulse": { + "#": 6479 + }, + "constraintImpulse": { + "#": 6480 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6481 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6482 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6483 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6485 + }, + "positionPrev": { + "#": 6488 + }, + "anglePrev": 0, + "axes": { + "#": 6489 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6464 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6464 + } + ], + [ + { + "#": 6467 + }, + { + "#": 6468 + }, + { + "#": 6469 + }, + { + "#": 6470 + }, + { + "#": 6471 + }, + { + "#": 6472 + }, + { + "#": 6473 + }, + { + "#": 6474 + }, + { + "#": 6475 + }, + { + "#": 6476 + } + ], + { + "x": 275.864, + "y": 420.472, + "index": 0, + "body": { + "#": 6464 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 424.472, + "index": 1, + "body": { + "#": 6464 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 426, + "index": 2, + "body": { + "#": 6464 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 424.472, + "index": 3, + "body": { + "#": 6464 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 420.472, + "index": 4, + "body": { + "#": 6464 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 415.528, + "index": 5, + "body": { + "#": 6464 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 411.528, + "index": 6, + "body": { + "#": 6464 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 410, + "index": 7, + "body": { + "#": 6464 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 411.528, + "index": 8, + "body": { + "#": 6464 + }, + "isInternal": false + }, + { + "x": 275.864, + "y": 415.528, + "index": 9, + "body": { + "#": 6464 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6484 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6486 + }, + "max": { + "#": 6487 + } + }, + { + "x": 260.648, + "y": 410 + }, + { + "x": 275.864, + "y": 426 + }, + { + "x": 268.256, + "y": 418 + }, + [ + { + "#": 6490 + }, + { + "#": 6491 + }, + { + "#": 6492 + }, + { + "#": 6493 + }, + { + "#": 6494 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 209, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6496 + }, + "angle": 0, + "vertices": { + "#": 6497 + }, + "position": { + "#": 6508 + }, + "force": { + "#": 6509 + }, + "torque": 0, + "positionImpulse": { + "#": 6510 + }, + "constraintImpulse": { + "#": 6511 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6512 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6513 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6514 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6516 + }, + "positionPrev": { + "#": 6519 + }, + "anglePrev": 0, + "axes": { + "#": 6520 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6495 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6495 + } + ], + [ + { + "#": 6498 + }, + { + "#": 6499 + }, + { + "#": 6500 + }, + { + "#": 6501 + }, + { + "#": 6502 + }, + { + "#": 6503 + }, + { + "#": 6504 + }, + { + "#": 6505 + }, + { + "#": 6506 + }, + { + "#": 6507 + } + ], + { + "x": 296.08, + "y": 420.472, + "index": 0, + "body": { + "#": 6495 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 424.472, + "index": 1, + "body": { + "#": 6495 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 426, + "index": 2, + "body": { + "#": 6495 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 424.472, + "index": 3, + "body": { + "#": 6495 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 420.472, + "index": 4, + "body": { + "#": 6495 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 415.528, + "index": 5, + "body": { + "#": 6495 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 411.528, + "index": 6, + "body": { + "#": 6495 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 410, + "index": 7, + "body": { + "#": 6495 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 411.528, + "index": 8, + "body": { + "#": 6495 + }, + "isInternal": false + }, + { + "x": 296.08, + "y": 415.528, + "index": 9, + "body": { + "#": 6495 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6515 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6517 + }, + "max": { + "#": 6518 + } + }, + { + "x": 280.864, + "y": 410 + }, + { + "x": 296.08, + "y": 426 + }, + { + "x": 288.472, + "y": 418 + }, + [ + { + "#": 6521 + }, + { + "#": 6522 + }, + { + "#": 6523 + }, + { + "#": 6524 + }, + { + "#": 6525 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 210, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6527 + }, + "angle": 0, + "vertices": { + "#": 6528 + }, + "position": { + "#": 6539 + }, + "force": { + "#": 6540 + }, + "torque": 0, + "positionImpulse": { + "#": 6541 + }, + "constraintImpulse": { + "#": 6542 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6543 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6544 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6545 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6547 + }, + "positionPrev": { + "#": 6550 + }, + "anglePrev": 0, + "axes": { + "#": 6551 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6526 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6526 + } + ], + [ + { + "#": 6529 + }, + { + "#": 6530 + }, + { + "#": 6531 + }, + { + "#": 6532 + }, + { + "#": 6533 + }, + { + "#": 6534 + }, + { + "#": 6535 + }, + { + "#": 6536 + }, + { + "#": 6537 + }, + { + "#": 6538 + } + ], + { + "x": 316.296, + "y": 420.472, + "index": 0, + "body": { + "#": 6526 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 424.472, + "index": 1, + "body": { + "#": 6526 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 426, + "index": 2, + "body": { + "#": 6526 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 424.472, + "index": 3, + "body": { + "#": 6526 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 420.472, + "index": 4, + "body": { + "#": 6526 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 415.528, + "index": 5, + "body": { + "#": 6526 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 411.528, + "index": 6, + "body": { + "#": 6526 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 410, + "index": 7, + "body": { + "#": 6526 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 411.528, + "index": 8, + "body": { + "#": 6526 + }, + "isInternal": false + }, + { + "x": 316.296, + "y": 415.528, + "index": 9, + "body": { + "#": 6526 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6546 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6548 + }, + "max": { + "#": 6549 + } + }, + { + "x": 301.08, + "y": 410 + }, + { + "x": 316.296, + "y": 426 + }, + { + "x": 308.688, + "y": 418 + }, + [ + { + "#": 6552 + }, + { + "#": 6553 + }, + { + "#": 6554 + }, + { + "#": 6555 + }, + { + "#": 6556 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 211, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6558 + }, + "angle": 0, + "vertices": { + "#": 6559 + }, + "position": { + "#": 6570 + }, + "force": { + "#": 6571 + }, + "torque": 0, + "positionImpulse": { + "#": 6572 + }, + "constraintImpulse": { + "#": 6573 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6574 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6575 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6576 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6578 + }, + "positionPrev": { + "#": 6581 + }, + "anglePrev": 0, + "axes": { + "#": 6582 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6557 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6557 + } + ], + [ + { + "#": 6560 + }, + { + "#": 6561 + }, + { + "#": 6562 + }, + { + "#": 6563 + }, + { + "#": 6564 + }, + { + "#": 6565 + }, + { + "#": 6566 + }, + { + "#": 6567 + }, + { + "#": 6568 + }, + { + "#": 6569 + } + ], + { + "x": 336.512, + "y": 420.472, + "index": 0, + "body": { + "#": 6557 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 424.472, + "index": 1, + "body": { + "#": 6557 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 426, + "index": 2, + "body": { + "#": 6557 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 424.472, + "index": 3, + "body": { + "#": 6557 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 420.472, + "index": 4, + "body": { + "#": 6557 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 415.528, + "index": 5, + "body": { + "#": 6557 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 411.528, + "index": 6, + "body": { + "#": 6557 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 410, + "index": 7, + "body": { + "#": 6557 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 411.528, + "index": 8, + "body": { + "#": 6557 + }, + "isInternal": false + }, + { + "x": 336.512, + "y": 415.528, + "index": 9, + "body": { + "#": 6557 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6577 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6579 + }, + "max": { + "#": 6580 + } + }, + { + "x": 321.296, + "y": 410 + }, + { + "x": 336.512, + "y": 426 + }, + { + "x": 328.904, + "y": 418 + }, + [ + { + "#": 6583 + }, + { + "#": 6584 + }, + { + "#": 6585 + }, + { + "#": 6586 + }, + { + "#": 6587 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 212, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6589 + }, + "angle": 0, + "vertices": { + "#": 6590 + }, + "position": { + "#": 6601 + }, + "force": { + "#": 6602 + }, + "torque": 0, + "positionImpulse": { + "#": 6603 + }, + "constraintImpulse": { + "#": 6604 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6605 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6606 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6607 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6609 + }, + "positionPrev": { + "#": 6612 + }, + "anglePrev": 0, + "axes": { + "#": 6613 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6588 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6588 + } + ], + [ + { + "#": 6591 + }, + { + "#": 6592 + }, + { + "#": 6593 + }, + { + "#": 6594 + }, + { + "#": 6595 + }, + { + "#": 6596 + }, + { + "#": 6597 + }, + { + "#": 6598 + }, + { + "#": 6599 + }, + { + "#": 6600 + } + ], + { + "x": 356.728, + "y": 420.472, + "index": 0, + "body": { + "#": 6588 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 424.472, + "index": 1, + "body": { + "#": 6588 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 426, + "index": 2, + "body": { + "#": 6588 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 424.472, + "index": 3, + "body": { + "#": 6588 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 420.472, + "index": 4, + "body": { + "#": 6588 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 415.528, + "index": 5, + "body": { + "#": 6588 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 411.528, + "index": 6, + "body": { + "#": 6588 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 410, + "index": 7, + "body": { + "#": 6588 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 411.528, + "index": 8, + "body": { + "#": 6588 + }, + "isInternal": false + }, + { + "x": 356.728, + "y": 415.528, + "index": 9, + "body": { + "#": 6588 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6608 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6610 + }, + "max": { + "#": 6611 + } + }, + { + "x": 341.512, + "y": 410 + }, + { + "x": 356.728, + "y": 426 + }, + { + "x": 349.12, + "y": 418 + }, + [ + { + "#": 6614 + }, + { + "#": 6615 + }, + { + "#": 6616 + }, + { + "#": 6617 + }, + { + "#": 6618 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 213, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6620 + }, + "angle": 0, + "vertices": { + "#": 6621 + }, + "position": { + "#": 6632 + }, + "force": { + "#": 6633 + }, + "torque": 0, + "positionImpulse": { + "#": 6634 + }, + "constraintImpulse": { + "#": 6635 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6636 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6637 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6638 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6640 + }, + "positionPrev": { + "#": 6643 + }, + "anglePrev": 0, + "axes": { + "#": 6644 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6619 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6619 + } + ], + [ + { + "#": 6622 + }, + { + "#": 6623 + }, + { + "#": 6624 + }, + { + "#": 6625 + }, + { + "#": 6626 + }, + { + "#": 6627 + }, + { + "#": 6628 + }, + { + "#": 6629 + }, + { + "#": 6630 + }, + { + "#": 6631 + } + ], + { + "x": 376.944, + "y": 420.472, + "index": 0, + "body": { + "#": 6619 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 424.472, + "index": 1, + "body": { + "#": 6619 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 426, + "index": 2, + "body": { + "#": 6619 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 424.472, + "index": 3, + "body": { + "#": 6619 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 420.472, + "index": 4, + "body": { + "#": 6619 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 415.528, + "index": 5, + "body": { + "#": 6619 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 411.528, + "index": 6, + "body": { + "#": 6619 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 410, + "index": 7, + "body": { + "#": 6619 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 411.528, + "index": 8, + "body": { + "#": 6619 + }, + "isInternal": false + }, + { + "x": 376.944, + "y": 415.528, + "index": 9, + "body": { + "#": 6619 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6639 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6641 + }, + "max": { + "#": 6642 + } + }, + { + "x": 361.728, + "y": 410 + }, + { + "x": 376.944, + "y": 426 + }, + { + "x": 369.336, + "y": 418 + }, + [ + { + "#": 6645 + }, + { + "#": 6646 + }, + { + "#": 6647 + }, + { + "#": 6648 + }, + { + "#": 6649 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 214, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6651 + }, + "angle": 0, + "vertices": { + "#": 6652 + }, + "position": { + "#": 6663 + }, + "force": { + "#": 6664 + }, + "torque": 0, + "positionImpulse": { + "#": 6665 + }, + "constraintImpulse": { + "#": 6666 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6667 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6668 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6669 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6671 + }, + "positionPrev": { + "#": 6674 + }, + "anglePrev": 0, + "axes": { + "#": 6675 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6650 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6650 + } + ], + [ + { + "#": 6653 + }, + { + "#": 6654 + }, + { + "#": 6655 + }, + { + "#": 6656 + }, + { + "#": 6657 + }, + { + "#": 6658 + }, + { + "#": 6659 + }, + { + "#": 6660 + }, + { + "#": 6661 + }, + { + "#": 6662 + } + ], + { + "x": 397.16, + "y": 420.472, + "index": 0, + "body": { + "#": 6650 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 424.472, + "index": 1, + "body": { + "#": 6650 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 426, + "index": 2, + "body": { + "#": 6650 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 424.472, + "index": 3, + "body": { + "#": 6650 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 420.472, + "index": 4, + "body": { + "#": 6650 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 415.528, + "index": 5, + "body": { + "#": 6650 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 411.528, + "index": 6, + "body": { + "#": 6650 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 410, + "index": 7, + "body": { + "#": 6650 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 411.528, + "index": 8, + "body": { + "#": 6650 + }, + "isInternal": false + }, + { + "x": 397.16, + "y": 415.528, + "index": 9, + "body": { + "#": 6650 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6670 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6672 + }, + "max": { + "#": 6673 + } + }, + { + "x": 381.944, + "y": 410 + }, + { + "x": 397.16, + "y": 426 + }, + { + "x": 389.552, + "y": 418 + }, + [ + { + "#": 6676 + }, + { + "#": 6677 + }, + { + "#": 6678 + }, + { + "#": 6679 + }, + { + "#": 6680 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 215, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6682 + }, + "angle": 0, + "vertices": { + "#": 6683 + }, + "position": { + "#": 6694 + }, + "force": { + "#": 6695 + }, + "torque": 0, + "positionImpulse": { + "#": 6696 + }, + "constraintImpulse": { + "#": 6697 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6698 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6699 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6700 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6702 + }, + "positionPrev": { + "#": 6705 + }, + "anglePrev": 0, + "axes": { + "#": 6706 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6681 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6681 + } + ], + [ + { + "#": 6684 + }, + { + "#": 6685 + }, + { + "#": 6686 + }, + { + "#": 6687 + }, + { + "#": 6688 + }, + { + "#": 6689 + }, + { + "#": 6690 + }, + { + "#": 6691 + }, + { + "#": 6692 + }, + { + "#": 6693 + } + ], + { + "x": 417.376, + "y": 420.472, + "index": 0, + "body": { + "#": 6681 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 424.472, + "index": 1, + "body": { + "#": 6681 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 426, + "index": 2, + "body": { + "#": 6681 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 424.472, + "index": 3, + "body": { + "#": 6681 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 420.472, + "index": 4, + "body": { + "#": 6681 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 415.528, + "index": 5, + "body": { + "#": 6681 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 411.528, + "index": 6, + "body": { + "#": 6681 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 410, + "index": 7, + "body": { + "#": 6681 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 411.528, + "index": 8, + "body": { + "#": 6681 + }, + "isInternal": false + }, + { + "x": 417.376, + "y": 415.528, + "index": 9, + "body": { + "#": 6681 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6701 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6703 + }, + "max": { + "#": 6704 + } + }, + { + "x": 402.16, + "y": 410 + }, + { + "x": 417.376, + "y": 426 + }, + { + "x": 409.768, + "y": 418 + }, + [ + { + "#": 6707 + }, + { + "#": 6708 + }, + { + "#": 6709 + }, + { + "#": 6710 + }, + { + "#": 6711 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 216, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6713 + }, + "angle": 0, + "vertices": { + "#": 6714 + }, + "position": { + "#": 6725 + }, + "force": { + "#": 6726 + }, + "torque": 0, + "positionImpulse": { + "#": 6727 + }, + "constraintImpulse": { + "#": 6728 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6729 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6730 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6731 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6733 + }, + "positionPrev": { + "#": 6736 + }, + "anglePrev": 0, + "axes": { + "#": 6737 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6712 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6712 + } + ], + [ + { + "#": 6715 + }, + { + "#": 6716 + }, + { + "#": 6717 + }, + { + "#": 6718 + }, + { + "#": 6719 + }, + { + "#": 6720 + }, + { + "#": 6721 + }, + { + "#": 6722 + }, + { + "#": 6723 + }, + { + "#": 6724 + } + ], + { + "x": 437.592, + "y": 420.472, + "index": 0, + "body": { + "#": 6712 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 424.472, + "index": 1, + "body": { + "#": 6712 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 426, + "index": 2, + "body": { + "#": 6712 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 424.472, + "index": 3, + "body": { + "#": 6712 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 420.472, + "index": 4, + "body": { + "#": 6712 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 415.528, + "index": 5, + "body": { + "#": 6712 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 411.528, + "index": 6, + "body": { + "#": 6712 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 410, + "index": 7, + "body": { + "#": 6712 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 411.528, + "index": 8, + "body": { + "#": 6712 + }, + "isInternal": false + }, + { + "x": 437.592, + "y": 415.528, + "index": 9, + "body": { + "#": 6712 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6732 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6734 + }, + "max": { + "#": 6735 + } + }, + { + "x": 422.376, + "y": 410 + }, + { + "x": 437.592, + "y": 426 + }, + { + "x": 429.984, + "y": 418 + }, + [ + { + "#": 6738 + }, + { + "#": 6739 + }, + { + "#": 6740 + }, + { + "#": 6741 + }, + { + "#": 6742 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 217, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6744 + }, + "angle": 0, + "vertices": { + "#": 6745 + }, + "position": { + "#": 6756 + }, + "force": { + "#": 6757 + }, + "torque": 0, + "positionImpulse": { + "#": 6758 + }, + "constraintImpulse": { + "#": 6759 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6760 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6761 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6762 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6764 + }, + "positionPrev": { + "#": 6767 + }, + "anglePrev": 0, + "axes": { + "#": 6768 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6743 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6743 + } + ], + [ + { + "#": 6746 + }, + { + "#": 6747 + }, + { + "#": 6748 + }, + { + "#": 6749 + }, + { + "#": 6750 + }, + { + "#": 6751 + }, + { + "#": 6752 + }, + { + "#": 6753 + }, + { + "#": 6754 + }, + { + "#": 6755 + } + ], + { + "x": 457.808, + "y": 420.472, + "index": 0, + "body": { + "#": 6743 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 424.472, + "index": 1, + "body": { + "#": 6743 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 426, + "index": 2, + "body": { + "#": 6743 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 424.472, + "index": 3, + "body": { + "#": 6743 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 420.472, + "index": 4, + "body": { + "#": 6743 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 415.528, + "index": 5, + "body": { + "#": 6743 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 411.528, + "index": 6, + "body": { + "#": 6743 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 410, + "index": 7, + "body": { + "#": 6743 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 411.528, + "index": 8, + "body": { + "#": 6743 + }, + "isInternal": false + }, + { + "x": 457.808, + "y": 415.528, + "index": 9, + "body": { + "#": 6743 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6763 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6765 + }, + "max": { + "#": 6766 + } + }, + { + "x": 442.592, + "y": 410 + }, + { + "x": 457.808, + "y": 426 + }, + { + "x": 450.2, + "y": 418 + }, + [ + { + "#": 6769 + }, + { + "#": 6770 + }, + { + "#": 6771 + }, + { + "#": 6772 + }, + { + "#": 6773 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 218, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6775 + }, + "angle": 0, + "vertices": { + "#": 6776 + }, + "position": { + "#": 6787 + }, + "force": { + "#": 6788 + }, + "torque": 0, + "positionImpulse": { + "#": 6789 + }, + "constraintImpulse": { + "#": 6790 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6791 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6792 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6793 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6795 + }, + "positionPrev": { + "#": 6798 + }, + "anglePrev": 0, + "axes": { + "#": 6799 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6774 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6774 + } + ], + [ + { + "#": 6777 + }, + { + "#": 6778 + }, + { + "#": 6779 + }, + { + "#": 6780 + }, + { + "#": 6781 + }, + { + "#": 6782 + }, + { + "#": 6783 + }, + { + "#": 6784 + }, + { + "#": 6785 + }, + { + "#": 6786 + } + ], + { + "x": 478.024, + "y": 420.472, + "index": 0, + "body": { + "#": 6774 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 424.472, + "index": 1, + "body": { + "#": 6774 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 426, + "index": 2, + "body": { + "#": 6774 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 424.472, + "index": 3, + "body": { + "#": 6774 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 420.472, + "index": 4, + "body": { + "#": 6774 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 415.528, + "index": 5, + "body": { + "#": 6774 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 411.528, + "index": 6, + "body": { + "#": 6774 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 410, + "index": 7, + "body": { + "#": 6774 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 411.528, + "index": 8, + "body": { + "#": 6774 + }, + "isInternal": false + }, + { + "x": 478.024, + "y": 415.528, + "index": 9, + "body": { + "#": 6774 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6794 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6796 + }, + "max": { + "#": 6797 + } + }, + { + "x": 462.808, + "y": 410 + }, + { + "x": 478.024, + "y": 426 + }, + { + "x": 470.416, + "y": 418 + }, + [ + { + "#": 6800 + }, + { + "#": 6801 + }, + { + "#": 6802 + }, + { + "#": 6803 + }, + { + "#": 6804 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 219, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6806 + }, + "angle": 0, + "vertices": { + "#": 6807 + }, + "position": { + "#": 6818 + }, + "force": { + "#": 6819 + }, + "torque": 0, + "positionImpulse": { + "#": 6820 + }, + "constraintImpulse": { + "#": 6821 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6822 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6823 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6824 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6826 + }, + "positionPrev": { + "#": 6829 + }, + "anglePrev": 0, + "axes": { + "#": 6830 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6805 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6805 + } + ], + [ + { + "#": 6808 + }, + { + "#": 6809 + }, + { + "#": 6810 + }, + { + "#": 6811 + }, + { + "#": 6812 + }, + { + "#": 6813 + }, + { + "#": 6814 + }, + { + "#": 6815 + }, + { + "#": 6816 + }, + { + "#": 6817 + } + ], + { + "x": 498.24, + "y": 420.472, + "index": 0, + "body": { + "#": 6805 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 424.472, + "index": 1, + "body": { + "#": 6805 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 426, + "index": 2, + "body": { + "#": 6805 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 424.472, + "index": 3, + "body": { + "#": 6805 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 420.472, + "index": 4, + "body": { + "#": 6805 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 415.528, + "index": 5, + "body": { + "#": 6805 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 411.528, + "index": 6, + "body": { + "#": 6805 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 410, + "index": 7, + "body": { + "#": 6805 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 411.528, + "index": 8, + "body": { + "#": 6805 + }, + "isInternal": false + }, + { + "x": 498.24, + "y": 415.528, + "index": 9, + "body": { + "#": 6805 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6825 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6827 + }, + "max": { + "#": 6828 + } + }, + { + "x": 483.024, + "y": 410 + }, + { + "x": 498.24, + "y": 426 + }, + { + "x": 490.632, + "y": 418 + }, + [ + { + "#": 6831 + }, + { + "#": 6832 + }, + { + "#": 6833 + }, + { + "#": 6834 + }, + { + "#": 6835 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 220, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6837 + }, + "angle": 0, + "vertices": { + "#": 6838 + }, + "position": { + "#": 6849 + }, + "force": { + "#": 6850 + }, + "torque": 0, + "positionImpulse": { + "#": 6851 + }, + "constraintImpulse": { + "#": 6852 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6853 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6854 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6855 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6857 + }, + "positionPrev": { + "#": 6860 + }, + "anglePrev": 0, + "axes": { + "#": 6861 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6836 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6836 + } + ], + [ + { + "#": 6839 + }, + { + "#": 6840 + }, + { + "#": 6841 + }, + { + "#": 6842 + }, + { + "#": 6843 + }, + { + "#": 6844 + }, + { + "#": 6845 + }, + { + "#": 6846 + }, + { + "#": 6847 + }, + { + "#": 6848 + } + ], + { + "x": 518.456, + "y": 420.472, + "index": 0, + "body": { + "#": 6836 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 424.472, + "index": 1, + "body": { + "#": 6836 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 426, + "index": 2, + "body": { + "#": 6836 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 424.472, + "index": 3, + "body": { + "#": 6836 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 420.472, + "index": 4, + "body": { + "#": 6836 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 415.528, + "index": 5, + "body": { + "#": 6836 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 411.528, + "index": 6, + "body": { + "#": 6836 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 410, + "index": 7, + "body": { + "#": 6836 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 411.528, + "index": 8, + "body": { + "#": 6836 + }, + "isInternal": false + }, + { + "x": 518.456, + "y": 415.528, + "index": 9, + "body": { + "#": 6836 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6856 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6858 + }, + "max": { + "#": 6859 + } + }, + { + "x": 503.24, + "y": 410 + }, + { + "x": 518.456, + "y": 426 + }, + { + "x": 510.848, + "y": 418 + }, + [ + { + "#": 6862 + }, + { + "#": 6863 + }, + { + "#": 6864 + }, + { + "#": 6865 + }, + { + "#": 6866 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 221, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6868 + }, + "angle": 0, + "vertices": { + "#": 6869 + }, + "position": { + "#": 6880 + }, + "force": { + "#": 6881 + }, + "torque": 0, + "positionImpulse": { + "#": 6882 + }, + "constraintImpulse": { + "#": 6883 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6884 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6885 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6886 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6888 + }, + "positionPrev": { + "#": 6891 + }, + "anglePrev": 0, + "axes": { + "#": 6892 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6867 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6867 + } + ], + [ + { + "#": 6870 + }, + { + "#": 6871 + }, + { + "#": 6872 + }, + { + "#": 6873 + }, + { + "#": 6874 + }, + { + "#": 6875 + }, + { + "#": 6876 + }, + { + "#": 6877 + }, + { + "#": 6878 + }, + { + "#": 6879 + } + ], + { + "x": 538.672, + "y": 420.472, + "index": 0, + "body": { + "#": 6867 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 424.472, + "index": 1, + "body": { + "#": 6867 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 426, + "index": 2, + "body": { + "#": 6867 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 424.472, + "index": 3, + "body": { + "#": 6867 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 420.472, + "index": 4, + "body": { + "#": 6867 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 415.528, + "index": 5, + "body": { + "#": 6867 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 411.528, + "index": 6, + "body": { + "#": 6867 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 410, + "index": 7, + "body": { + "#": 6867 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 411.528, + "index": 8, + "body": { + "#": 6867 + }, + "isInternal": false + }, + { + "x": 538.672, + "y": 415.528, + "index": 9, + "body": { + "#": 6867 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6887 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6889 + }, + "max": { + "#": 6890 + } + }, + { + "x": 523.456, + "y": 410 + }, + { + "x": 538.672, + "y": 426 + }, + { + "x": 531.064, + "y": 418 + }, + [ + { + "#": 6893 + }, + { + "#": 6894 + }, + { + "#": 6895 + }, + { + "#": 6896 + }, + { + "#": 6897 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 222, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6899 + }, + "angle": 0, + "vertices": { + "#": 6900 + }, + "position": { + "#": 6911 + }, + "force": { + "#": 6912 + }, + "torque": 0, + "positionImpulse": { + "#": 6913 + }, + "constraintImpulse": { + "#": 6914 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6915 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6916 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6917 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6919 + }, + "positionPrev": { + "#": 6922 + }, + "anglePrev": 0, + "axes": { + "#": 6923 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6898 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6898 + } + ], + [ + { + "#": 6901 + }, + { + "#": 6902 + }, + { + "#": 6903 + }, + { + "#": 6904 + }, + { + "#": 6905 + }, + { + "#": 6906 + }, + { + "#": 6907 + }, + { + "#": 6908 + }, + { + "#": 6909 + }, + { + "#": 6910 + } + ], + { + "x": 558.888, + "y": 420.472, + "index": 0, + "body": { + "#": 6898 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 424.472, + "index": 1, + "body": { + "#": 6898 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 426, + "index": 2, + "body": { + "#": 6898 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 424.472, + "index": 3, + "body": { + "#": 6898 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 420.472, + "index": 4, + "body": { + "#": 6898 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 415.528, + "index": 5, + "body": { + "#": 6898 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 411.528, + "index": 6, + "body": { + "#": 6898 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 410, + "index": 7, + "body": { + "#": 6898 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 411.528, + "index": 8, + "body": { + "#": 6898 + }, + "isInternal": false + }, + { + "x": 558.888, + "y": 415.528, + "index": 9, + "body": { + "#": 6898 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6918 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6920 + }, + "max": { + "#": 6921 + } + }, + { + "x": 543.672, + "y": 410 + }, + { + "x": 558.888, + "y": 426 + }, + { + "x": 551.28, + "y": 418 + }, + [ + { + "#": 6924 + }, + { + "#": 6925 + }, + { + "#": 6926 + }, + { + "#": 6927 + }, + { + "#": 6928 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 223, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6930 + }, + "angle": 0, + "vertices": { + "#": 6931 + }, + "position": { + "#": 6942 + }, + "force": { + "#": 6943 + }, + "torque": 0, + "positionImpulse": { + "#": 6944 + }, + "constraintImpulse": { + "#": 6945 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6946 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6947 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6948 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6950 + }, + "positionPrev": { + "#": 6953 + }, + "anglePrev": 0, + "axes": { + "#": 6954 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6929 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6929 + } + ], + [ + { + "#": 6932 + }, + { + "#": 6933 + }, + { + "#": 6934 + }, + { + "#": 6935 + }, + { + "#": 6936 + }, + { + "#": 6937 + }, + { + "#": 6938 + }, + { + "#": 6939 + }, + { + "#": 6940 + }, + { + "#": 6941 + } + ], + { + "x": 579.104, + "y": 420.472, + "index": 0, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 424.472, + "index": 1, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 426, + "index": 2, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 424.472, + "index": 3, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 420.472, + "index": 4, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 415.528, + "index": 5, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 411.528, + "index": 6, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 410, + "index": 7, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 411.528, + "index": 8, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 579.104, + "y": 415.528, + "index": 9, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6949 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6951 + }, + "max": { + "#": 6952 + } + }, + { + "x": 563.888, + "y": 410 + }, + { + "x": 579.104, + "y": 426 + }, + { + "x": 571.496, + "y": 418 + }, + [ + { + "#": 6955 + }, + { + "#": 6956 + }, + { + "#": 6957 + }, + { + "#": 6958 + }, + { + "#": 6959 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 224, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6961 + }, + "angle": 0, + "vertices": { + "#": 6962 + }, + "position": { + "#": 6973 + }, + "force": { + "#": 6974 + }, + "torque": 0, + "positionImpulse": { + "#": 6975 + }, + "constraintImpulse": { + "#": 6976 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6977 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6978 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6979 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6981 + }, + "positionPrev": { + "#": 6984 + }, + "anglePrev": 0, + "axes": { + "#": 6985 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6960 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6960 + } + ], + [ + { + "#": 6963 + }, + { + "#": 6964 + }, + { + "#": 6965 + }, + { + "#": 6966 + }, + { + "#": 6967 + }, + { + "#": 6968 + }, + { + "#": 6969 + }, + { + "#": 6970 + }, + { + "#": 6971 + }, + { + "#": 6972 + } + ], + { + "x": 599.32, + "y": 420.472, + "index": 0, + "body": { + "#": 6960 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 424.472, + "index": 1, + "body": { + "#": 6960 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 426, + "index": 2, + "body": { + "#": 6960 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 424.472, + "index": 3, + "body": { + "#": 6960 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 420.472, + "index": 4, + "body": { + "#": 6960 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 415.528, + "index": 5, + "body": { + "#": 6960 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 411.528, + "index": 6, + "body": { + "#": 6960 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 410, + "index": 7, + "body": { + "#": 6960 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 411.528, + "index": 8, + "body": { + "#": 6960 + }, + "isInternal": false + }, + { + "x": 599.32, + "y": 415.528, + "index": 9, + "body": { + "#": 6960 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 418 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6980 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6982 + }, + "max": { + "#": 6983 + } + }, + { + "x": 584.104, + "y": 410 + }, + { + "x": 599.32, + "y": 426 + }, + { + "x": 591.712, + "y": 418 + }, + [ + { + "#": 6986 + }, + { + "#": 6987 + }, + { + "#": 6988 + }, + { + "#": 6989 + }, + { + "#": 6990 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 225, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6992 + }, + "angle": 0, + "vertices": { + "#": 6993 + }, + "position": { + "#": 7004 + }, + "force": { + "#": 7005 + }, + "torque": 0, + "positionImpulse": { + "#": 7006 + }, + "constraintImpulse": { + "#": 7007 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7008 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7009 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7010 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7012 + }, + "positionPrev": { + "#": 7015 + }, + "anglePrev": 0, + "axes": { + "#": 7016 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6991 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6991 + } + ], + [ + { + "#": 6994 + }, + { + "#": 6995 + }, + { + "#": 6996 + }, + { + "#": 6997 + }, + { + "#": 6998 + }, + { + "#": 6999 + }, + { + "#": 7000 + }, + { + "#": 7001 + }, + { + "#": 7002 + }, + { + "#": 7003 + } + ], + { + "x": 215.216, + "y": 441.472, + "index": 0, + "body": { + "#": 6991 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 445.472, + "index": 1, + "body": { + "#": 6991 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 447, + "index": 2, + "body": { + "#": 6991 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 445.472, + "index": 3, + "body": { + "#": 6991 + }, + "isInternal": false + }, + { + "x": 200, + "y": 441.472, + "index": 4, + "body": { + "#": 6991 + }, + "isInternal": false + }, + { + "x": 200, + "y": 436.528, + "index": 5, + "body": { + "#": 6991 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 432.528, + "index": 6, + "body": { + "#": 6991 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 431, + "index": 7, + "body": { + "#": 6991 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 432.528, + "index": 8, + "body": { + "#": 6991 + }, + "isInternal": false + }, + { + "x": 215.216, + "y": 436.528, + "index": 9, + "body": { + "#": 6991 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7011 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7013 + }, + "max": { + "#": 7014 + } + }, + { + "x": 200, + "y": 431 + }, + { + "x": 215.216, + "y": 447 + }, + { + "x": 207.608, + "y": 439 + }, + [ + { + "#": 7017 + }, + { + "#": 7018 + }, + { + "#": 7019 + }, + { + "#": 7020 + }, + { + "#": 7021 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 226, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7023 + }, + "angle": 0, + "vertices": { + "#": 7024 + }, + "position": { + "#": 7035 + }, + "force": { + "#": 7036 + }, + "torque": 0, + "positionImpulse": { + "#": 7037 + }, + "constraintImpulse": { + "#": 7038 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7039 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7040 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7041 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7043 + }, + "positionPrev": { + "#": 7046 + }, + "anglePrev": 0, + "axes": { + "#": 7047 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7022 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7022 + } + ], + [ + { + "#": 7025 + }, + { + "#": 7026 + }, + { + "#": 7027 + }, + { + "#": 7028 + }, + { + "#": 7029 + }, + { + "#": 7030 + }, + { + "#": 7031 + }, + { + "#": 7032 + }, + { + "#": 7033 + }, + { + "#": 7034 + } + ], + { + "x": 235.432, + "y": 441.472, + "index": 0, + "body": { + "#": 7022 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 445.472, + "index": 1, + "body": { + "#": 7022 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 447, + "index": 2, + "body": { + "#": 7022 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 445.472, + "index": 3, + "body": { + "#": 7022 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 441.472, + "index": 4, + "body": { + "#": 7022 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 436.528, + "index": 5, + "body": { + "#": 7022 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 432.528, + "index": 6, + "body": { + "#": 7022 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 431, + "index": 7, + "body": { + "#": 7022 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 432.528, + "index": 8, + "body": { + "#": 7022 + }, + "isInternal": false + }, + { + "x": 235.432, + "y": 436.528, + "index": 9, + "body": { + "#": 7022 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7042 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7044 + }, + "max": { + "#": 7045 + } + }, + { + "x": 220.216, + "y": 431 + }, + { + "x": 235.432, + "y": 447 + }, + { + "x": 227.824, + "y": 439 + }, + [ + { + "#": 7048 + }, + { + "#": 7049 + }, + { + "#": 7050 + }, + { + "#": 7051 + }, + { + "#": 7052 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 227, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7054 + }, + "angle": 0, + "vertices": { + "#": 7055 + }, + "position": { + "#": 7066 + }, + "force": { + "#": 7067 + }, + "torque": 0, + "positionImpulse": { + "#": 7068 + }, + "constraintImpulse": { + "#": 7069 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7070 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7071 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7072 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7074 + }, + "positionPrev": { + "#": 7077 + }, + "anglePrev": 0, + "axes": { + "#": 7078 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7053 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7053 + } + ], + [ + { + "#": 7056 + }, + { + "#": 7057 + }, + { + "#": 7058 + }, + { + "#": 7059 + }, + { + "#": 7060 + }, + { + "#": 7061 + }, + { + "#": 7062 + }, + { + "#": 7063 + }, + { + "#": 7064 + }, + { + "#": 7065 + } + ], + { + "x": 255.648, + "y": 441.472, + "index": 0, + "body": { + "#": 7053 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 445.472, + "index": 1, + "body": { + "#": 7053 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 447, + "index": 2, + "body": { + "#": 7053 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 445.472, + "index": 3, + "body": { + "#": 7053 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 441.472, + "index": 4, + "body": { + "#": 7053 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 436.528, + "index": 5, + "body": { + "#": 7053 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 432.528, + "index": 6, + "body": { + "#": 7053 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 431, + "index": 7, + "body": { + "#": 7053 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 432.528, + "index": 8, + "body": { + "#": 7053 + }, + "isInternal": false + }, + { + "x": 255.648, + "y": 436.528, + "index": 9, + "body": { + "#": 7053 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7073 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7075 + }, + "max": { + "#": 7076 + } + }, + { + "x": 240.432, + "y": 431 + }, + { + "x": 255.648, + "y": 447 + }, + { + "x": 248.04, + "y": 439 + }, + [ + { + "#": 7079 + }, + { + "#": 7080 + }, + { + "#": 7081 + }, + { + "#": 7082 + }, + { + "#": 7083 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 228, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7085 + }, + "angle": 0, + "vertices": { + "#": 7086 + }, + "position": { + "#": 7097 + }, + "force": { + "#": 7098 + }, + "torque": 0, + "positionImpulse": { + "#": 7099 + }, + "constraintImpulse": { + "#": 7100 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7101 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7102 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7103 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7105 + }, + "positionPrev": { + "#": 7108 + }, + "anglePrev": 0, + "axes": { + "#": 7109 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7084 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7084 + } + ], + [ + { + "#": 7087 + }, + { + "#": 7088 + }, + { + "#": 7089 + }, + { + "#": 7090 + }, + { + "#": 7091 + }, + { + "#": 7092 + }, + { + "#": 7093 + }, + { + "#": 7094 + }, + { + "#": 7095 + }, + { + "#": 7096 + } + ], + { + "x": 275.864, + "y": 441.472, + "index": 0, + "body": { + "#": 7084 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 445.472, + "index": 1, + "body": { + "#": 7084 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 447, + "index": 2, + "body": { + "#": 7084 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 445.472, + "index": 3, + "body": { + "#": 7084 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 441.472, + "index": 4, + "body": { + "#": 7084 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 436.528, + "index": 5, + "body": { + "#": 7084 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 432.528, + "index": 6, + "body": { + "#": 7084 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 431, + "index": 7, + "body": { + "#": 7084 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 432.528, + "index": 8, + "body": { + "#": 7084 + }, + "isInternal": false + }, + { + "x": 275.864, + "y": 436.528, + "index": 9, + "body": { + "#": 7084 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7104 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7106 + }, + "max": { + "#": 7107 + } + }, + { + "x": 260.648, + "y": 431 + }, + { + "x": 275.864, + "y": 447 + }, + { + "x": 268.256, + "y": 439 + }, + [ + { + "#": 7110 + }, + { + "#": 7111 + }, + { + "#": 7112 + }, + { + "#": 7113 + }, + { + "#": 7114 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 229, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7116 + }, + "angle": 0, + "vertices": { + "#": 7117 + }, + "position": { + "#": 7128 + }, + "force": { + "#": 7129 + }, + "torque": 0, + "positionImpulse": { + "#": 7130 + }, + "constraintImpulse": { + "#": 7131 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7132 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7133 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7134 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7136 + }, + "positionPrev": { + "#": 7139 + }, + "anglePrev": 0, + "axes": { + "#": 7140 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7115 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7115 + } + ], + [ + { + "#": 7118 + }, + { + "#": 7119 + }, + { + "#": 7120 + }, + { + "#": 7121 + }, + { + "#": 7122 + }, + { + "#": 7123 + }, + { + "#": 7124 + }, + { + "#": 7125 + }, + { + "#": 7126 + }, + { + "#": 7127 + } + ], + { + "x": 296.08, + "y": 441.472, + "index": 0, + "body": { + "#": 7115 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 445.472, + "index": 1, + "body": { + "#": 7115 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 447, + "index": 2, + "body": { + "#": 7115 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 445.472, + "index": 3, + "body": { + "#": 7115 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 441.472, + "index": 4, + "body": { + "#": 7115 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 436.528, + "index": 5, + "body": { + "#": 7115 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 432.528, + "index": 6, + "body": { + "#": 7115 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 431, + "index": 7, + "body": { + "#": 7115 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 432.528, + "index": 8, + "body": { + "#": 7115 + }, + "isInternal": false + }, + { + "x": 296.08, + "y": 436.528, + "index": 9, + "body": { + "#": 7115 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7135 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7137 + }, + "max": { + "#": 7138 + } + }, + { + "x": 280.864, + "y": 431 + }, + { + "x": 296.08, + "y": 447 + }, + { + "x": 288.472, + "y": 439 + }, + [ + { + "#": 7141 + }, + { + "#": 7142 + }, + { + "#": 7143 + }, + { + "#": 7144 + }, + { + "#": 7145 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 230, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7147 + }, + "angle": 0, + "vertices": { + "#": 7148 + }, + "position": { + "#": 7159 + }, + "force": { + "#": 7160 + }, + "torque": 0, + "positionImpulse": { + "#": 7161 + }, + "constraintImpulse": { + "#": 7162 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7163 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7164 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7165 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7167 + }, + "positionPrev": { + "#": 7170 + }, + "anglePrev": 0, + "axes": { + "#": 7171 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7146 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7146 + } + ], + [ + { + "#": 7149 + }, + { + "#": 7150 + }, + { + "#": 7151 + }, + { + "#": 7152 + }, + { + "#": 7153 + }, + { + "#": 7154 + }, + { + "#": 7155 + }, + { + "#": 7156 + }, + { + "#": 7157 + }, + { + "#": 7158 + } + ], + { + "x": 316.296, + "y": 441.472, + "index": 0, + "body": { + "#": 7146 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 445.472, + "index": 1, + "body": { + "#": 7146 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 447, + "index": 2, + "body": { + "#": 7146 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 445.472, + "index": 3, + "body": { + "#": 7146 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 441.472, + "index": 4, + "body": { + "#": 7146 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 436.528, + "index": 5, + "body": { + "#": 7146 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 432.528, + "index": 6, + "body": { + "#": 7146 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 431, + "index": 7, + "body": { + "#": 7146 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 432.528, + "index": 8, + "body": { + "#": 7146 + }, + "isInternal": false + }, + { + "x": 316.296, + "y": 436.528, + "index": 9, + "body": { + "#": 7146 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7166 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7168 + }, + "max": { + "#": 7169 + } + }, + { + "x": 301.08, + "y": 431 + }, + { + "x": 316.296, + "y": 447 + }, + { + "x": 308.688, + "y": 439 + }, + [ + { + "#": 7172 + }, + { + "#": 7173 + }, + { + "#": 7174 + }, + { + "#": 7175 + }, + { + "#": 7176 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 231, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7178 + }, + "angle": 0, + "vertices": { + "#": 7179 + }, + "position": { + "#": 7190 + }, + "force": { + "#": 7191 + }, + "torque": 0, + "positionImpulse": { + "#": 7192 + }, + "constraintImpulse": { + "#": 7193 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7194 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7195 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7196 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7198 + }, + "positionPrev": { + "#": 7201 + }, + "anglePrev": 0, + "axes": { + "#": 7202 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7177 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7177 + } + ], + [ + { + "#": 7180 + }, + { + "#": 7181 + }, + { + "#": 7182 + }, + { + "#": 7183 + }, + { + "#": 7184 + }, + { + "#": 7185 + }, + { + "#": 7186 + }, + { + "#": 7187 + }, + { + "#": 7188 + }, + { + "#": 7189 + } + ], + { + "x": 336.512, + "y": 441.472, + "index": 0, + "body": { + "#": 7177 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 445.472, + "index": 1, + "body": { + "#": 7177 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 447, + "index": 2, + "body": { + "#": 7177 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 445.472, + "index": 3, + "body": { + "#": 7177 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 441.472, + "index": 4, + "body": { + "#": 7177 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 436.528, + "index": 5, + "body": { + "#": 7177 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 432.528, + "index": 6, + "body": { + "#": 7177 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 431, + "index": 7, + "body": { + "#": 7177 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 432.528, + "index": 8, + "body": { + "#": 7177 + }, + "isInternal": false + }, + { + "x": 336.512, + "y": 436.528, + "index": 9, + "body": { + "#": 7177 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7197 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7199 + }, + "max": { + "#": 7200 + } + }, + { + "x": 321.296, + "y": 431 + }, + { + "x": 336.512, + "y": 447 + }, + { + "x": 328.904, + "y": 439 + }, + [ + { + "#": 7203 + }, + { + "#": 7204 + }, + { + "#": 7205 + }, + { + "#": 7206 + }, + { + "#": 7207 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 232, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7209 + }, + "angle": 0, + "vertices": { + "#": 7210 + }, + "position": { + "#": 7221 + }, + "force": { + "#": 7222 + }, + "torque": 0, + "positionImpulse": { + "#": 7223 + }, + "constraintImpulse": { + "#": 7224 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7225 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7226 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7227 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7229 + }, + "positionPrev": { + "#": 7232 + }, + "anglePrev": 0, + "axes": { + "#": 7233 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7208 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7208 + } + ], + [ + { + "#": 7211 + }, + { + "#": 7212 + }, + { + "#": 7213 + }, + { + "#": 7214 + }, + { + "#": 7215 + }, + { + "#": 7216 + }, + { + "#": 7217 + }, + { + "#": 7218 + }, + { + "#": 7219 + }, + { + "#": 7220 + } + ], + { + "x": 356.728, + "y": 441.472, + "index": 0, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 445.472, + "index": 1, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 447, + "index": 2, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 445.472, + "index": 3, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 441.472, + "index": 4, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 436.528, + "index": 5, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 432.528, + "index": 6, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 431, + "index": 7, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 432.528, + "index": 8, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 356.728, + "y": 436.528, + "index": 9, + "body": { + "#": 7208 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7228 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7230 + }, + "max": { + "#": 7231 + } + }, + { + "x": 341.512, + "y": 431 + }, + { + "x": 356.728, + "y": 447 + }, + { + "x": 349.12, + "y": 439 + }, + [ + { + "#": 7234 + }, + { + "#": 7235 + }, + { + "#": 7236 + }, + { + "#": 7237 + }, + { + "#": 7238 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 233, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7240 + }, + "angle": 0, + "vertices": { + "#": 7241 + }, + "position": { + "#": 7252 + }, + "force": { + "#": 7253 + }, + "torque": 0, + "positionImpulse": { + "#": 7254 + }, + "constraintImpulse": { + "#": 7255 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7256 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7257 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7258 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7260 + }, + "positionPrev": { + "#": 7263 + }, + "anglePrev": 0, + "axes": { + "#": 7264 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7239 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7239 + } + ], + [ + { + "#": 7242 + }, + { + "#": 7243 + }, + { + "#": 7244 + }, + { + "#": 7245 + }, + { + "#": 7246 + }, + { + "#": 7247 + }, + { + "#": 7248 + }, + { + "#": 7249 + }, + { + "#": 7250 + }, + { + "#": 7251 + } + ], + { + "x": 376.944, + "y": 441.472, + "index": 0, + "body": { + "#": 7239 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 445.472, + "index": 1, + "body": { + "#": 7239 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 447, + "index": 2, + "body": { + "#": 7239 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 445.472, + "index": 3, + "body": { + "#": 7239 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 441.472, + "index": 4, + "body": { + "#": 7239 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 436.528, + "index": 5, + "body": { + "#": 7239 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 432.528, + "index": 6, + "body": { + "#": 7239 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 431, + "index": 7, + "body": { + "#": 7239 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 432.528, + "index": 8, + "body": { + "#": 7239 + }, + "isInternal": false + }, + { + "x": 376.944, + "y": 436.528, + "index": 9, + "body": { + "#": 7239 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7259 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7261 + }, + "max": { + "#": 7262 + } + }, + { + "x": 361.728, + "y": 431 + }, + { + "x": 376.944, + "y": 447 + }, + { + "x": 369.336, + "y": 439 + }, + [ + { + "#": 7265 + }, + { + "#": 7266 + }, + { + "#": 7267 + }, + { + "#": 7268 + }, + { + "#": 7269 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 234, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7271 + }, + "angle": 0, + "vertices": { + "#": 7272 + }, + "position": { + "#": 7283 + }, + "force": { + "#": 7284 + }, + "torque": 0, + "positionImpulse": { + "#": 7285 + }, + "constraintImpulse": { + "#": 7286 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7287 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7288 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7289 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7291 + }, + "positionPrev": { + "#": 7294 + }, + "anglePrev": 0, + "axes": { + "#": 7295 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7270 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7270 + } + ], + [ + { + "#": 7273 + }, + { + "#": 7274 + }, + { + "#": 7275 + }, + { + "#": 7276 + }, + { + "#": 7277 + }, + { + "#": 7278 + }, + { + "#": 7279 + }, + { + "#": 7280 + }, + { + "#": 7281 + }, + { + "#": 7282 + } + ], + { + "x": 397.16, + "y": 441.472, + "index": 0, + "body": { + "#": 7270 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 445.472, + "index": 1, + "body": { + "#": 7270 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 447, + "index": 2, + "body": { + "#": 7270 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 445.472, + "index": 3, + "body": { + "#": 7270 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 441.472, + "index": 4, + "body": { + "#": 7270 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 436.528, + "index": 5, + "body": { + "#": 7270 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 432.528, + "index": 6, + "body": { + "#": 7270 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 431, + "index": 7, + "body": { + "#": 7270 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 432.528, + "index": 8, + "body": { + "#": 7270 + }, + "isInternal": false + }, + { + "x": 397.16, + "y": 436.528, + "index": 9, + "body": { + "#": 7270 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7290 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7292 + }, + "max": { + "#": 7293 + } + }, + { + "x": 381.944, + "y": 431 + }, + { + "x": 397.16, + "y": 447 + }, + { + "x": 389.552, + "y": 439 + }, + [ + { + "#": 7296 + }, + { + "#": 7297 + }, + { + "#": 7298 + }, + { + "#": 7299 + }, + { + "#": 7300 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 235, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7302 + }, + "angle": 0, + "vertices": { + "#": 7303 + }, + "position": { + "#": 7314 + }, + "force": { + "#": 7315 + }, + "torque": 0, + "positionImpulse": { + "#": 7316 + }, + "constraintImpulse": { + "#": 7317 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7318 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7319 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7320 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7322 + }, + "positionPrev": { + "#": 7325 + }, + "anglePrev": 0, + "axes": { + "#": 7326 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7301 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7301 + } + ], + [ + { + "#": 7304 + }, + { + "#": 7305 + }, + { + "#": 7306 + }, + { + "#": 7307 + }, + { + "#": 7308 + }, + { + "#": 7309 + }, + { + "#": 7310 + }, + { + "#": 7311 + }, + { + "#": 7312 + }, + { + "#": 7313 + } + ], + { + "x": 417.376, + "y": 441.472, + "index": 0, + "body": { + "#": 7301 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 445.472, + "index": 1, + "body": { + "#": 7301 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 447, + "index": 2, + "body": { + "#": 7301 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 445.472, + "index": 3, + "body": { + "#": 7301 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 441.472, + "index": 4, + "body": { + "#": 7301 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 436.528, + "index": 5, + "body": { + "#": 7301 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 432.528, + "index": 6, + "body": { + "#": 7301 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 431, + "index": 7, + "body": { + "#": 7301 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 432.528, + "index": 8, + "body": { + "#": 7301 + }, + "isInternal": false + }, + { + "x": 417.376, + "y": 436.528, + "index": 9, + "body": { + "#": 7301 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7321 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7323 + }, + "max": { + "#": 7324 + } + }, + { + "x": 402.16, + "y": 431 + }, + { + "x": 417.376, + "y": 447 + }, + { + "x": 409.768, + "y": 439 + }, + [ + { + "#": 7327 + }, + { + "#": 7328 + }, + { + "#": 7329 + }, + { + "#": 7330 + }, + { + "#": 7331 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 236, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7333 + }, + "angle": 0, + "vertices": { + "#": 7334 + }, + "position": { + "#": 7345 + }, + "force": { + "#": 7346 + }, + "torque": 0, + "positionImpulse": { + "#": 7347 + }, + "constraintImpulse": { + "#": 7348 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7349 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7350 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7351 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7353 + }, + "positionPrev": { + "#": 7356 + }, + "anglePrev": 0, + "axes": { + "#": 7357 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7332 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7332 + } + ], + [ + { + "#": 7335 + }, + { + "#": 7336 + }, + { + "#": 7337 + }, + { + "#": 7338 + }, + { + "#": 7339 + }, + { + "#": 7340 + }, + { + "#": 7341 + }, + { + "#": 7342 + }, + { + "#": 7343 + }, + { + "#": 7344 + } + ], + { + "x": 437.592, + "y": 441.472, + "index": 0, + "body": { + "#": 7332 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 445.472, + "index": 1, + "body": { + "#": 7332 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 447, + "index": 2, + "body": { + "#": 7332 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 445.472, + "index": 3, + "body": { + "#": 7332 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 441.472, + "index": 4, + "body": { + "#": 7332 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 436.528, + "index": 5, + "body": { + "#": 7332 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 432.528, + "index": 6, + "body": { + "#": 7332 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 431, + "index": 7, + "body": { + "#": 7332 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 432.528, + "index": 8, + "body": { + "#": 7332 + }, + "isInternal": false + }, + { + "x": 437.592, + "y": 436.528, + "index": 9, + "body": { + "#": 7332 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7352 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7354 + }, + "max": { + "#": 7355 + } + }, + { + "x": 422.376, + "y": 431 + }, + { + "x": 437.592, + "y": 447 + }, + { + "x": 429.984, + "y": 439 + }, + [ + { + "#": 7358 + }, + { + "#": 7359 + }, + { + "#": 7360 + }, + { + "#": 7361 + }, + { + "#": 7362 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 237, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7364 + }, + "angle": 0, + "vertices": { + "#": 7365 + }, + "position": { + "#": 7376 + }, + "force": { + "#": 7377 + }, + "torque": 0, + "positionImpulse": { + "#": 7378 + }, + "constraintImpulse": { + "#": 7379 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7380 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7381 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7382 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7384 + }, + "positionPrev": { + "#": 7387 + }, + "anglePrev": 0, + "axes": { + "#": 7388 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7363 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7363 + } + ], + [ + { + "#": 7366 + }, + { + "#": 7367 + }, + { + "#": 7368 + }, + { + "#": 7369 + }, + { + "#": 7370 + }, + { + "#": 7371 + }, + { + "#": 7372 + }, + { + "#": 7373 + }, + { + "#": 7374 + }, + { + "#": 7375 + } + ], + { + "x": 457.808, + "y": 441.472, + "index": 0, + "body": { + "#": 7363 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 445.472, + "index": 1, + "body": { + "#": 7363 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 447, + "index": 2, + "body": { + "#": 7363 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 445.472, + "index": 3, + "body": { + "#": 7363 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 441.472, + "index": 4, + "body": { + "#": 7363 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 436.528, + "index": 5, + "body": { + "#": 7363 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 432.528, + "index": 6, + "body": { + "#": 7363 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 431, + "index": 7, + "body": { + "#": 7363 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 432.528, + "index": 8, + "body": { + "#": 7363 + }, + "isInternal": false + }, + { + "x": 457.808, + "y": 436.528, + "index": 9, + "body": { + "#": 7363 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7383 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7385 + }, + "max": { + "#": 7386 + } + }, + { + "x": 442.592, + "y": 431 + }, + { + "x": 457.808, + "y": 447 + }, + { + "x": 450.2, + "y": 439 + }, + [ + { + "#": 7389 + }, + { + "#": 7390 + }, + { + "#": 7391 + }, + { + "#": 7392 + }, + { + "#": 7393 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 238, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7395 + }, + "angle": 0, + "vertices": { + "#": 7396 + }, + "position": { + "#": 7407 + }, + "force": { + "#": 7408 + }, + "torque": 0, + "positionImpulse": { + "#": 7409 + }, + "constraintImpulse": { + "#": 7410 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7411 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7412 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7413 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7415 + }, + "positionPrev": { + "#": 7418 + }, + "anglePrev": 0, + "axes": { + "#": 7419 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7394 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7394 + } + ], + [ + { + "#": 7397 + }, + { + "#": 7398 + }, + { + "#": 7399 + }, + { + "#": 7400 + }, + { + "#": 7401 + }, + { + "#": 7402 + }, + { + "#": 7403 + }, + { + "#": 7404 + }, + { + "#": 7405 + }, + { + "#": 7406 + } + ], + { + "x": 478.024, + "y": 441.472, + "index": 0, + "body": { + "#": 7394 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 445.472, + "index": 1, + "body": { + "#": 7394 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 447, + "index": 2, + "body": { + "#": 7394 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 445.472, + "index": 3, + "body": { + "#": 7394 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 441.472, + "index": 4, + "body": { + "#": 7394 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 436.528, + "index": 5, + "body": { + "#": 7394 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 432.528, + "index": 6, + "body": { + "#": 7394 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 431, + "index": 7, + "body": { + "#": 7394 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 432.528, + "index": 8, + "body": { + "#": 7394 + }, + "isInternal": false + }, + { + "x": 478.024, + "y": 436.528, + "index": 9, + "body": { + "#": 7394 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7414 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7416 + }, + "max": { + "#": 7417 + } + }, + { + "x": 462.808, + "y": 431 + }, + { + "x": 478.024, + "y": 447 + }, + { + "x": 470.416, + "y": 439 + }, + [ + { + "#": 7420 + }, + { + "#": 7421 + }, + { + "#": 7422 + }, + { + "#": 7423 + }, + { + "#": 7424 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 239, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7426 + }, + "angle": 0, + "vertices": { + "#": 7427 + }, + "position": { + "#": 7438 + }, + "force": { + "#": 7439 + }, + "torque": 0, + "positionImpulse": { + "#": 7440 + }, + "constraintImpulse": { + "#": 7441 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7442 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7443 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7444 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7446 + }, + "positionPrev": { + "#": 7449 + }, + "anglePrev": 0, + "axes": { + "#": 7450 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7425 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7425 + } + ], + [ + { + "#": 7428 + }, + { + "#": 7429 + }, + { + "#": 7430 + }, + { + "#": 7431 + }, + { + "#": 7432 + }, + { + "#": 7433 + }, + { + "#": 7434 + }, + { + "#": 7435 + }, + { + "#": 7436 + }, + { + "#": 7437 + } + ], + { + "x": 498.24, + "y": 441.472, + "index": 0, + "body": { + "#": 7425 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 445.472, + "index": 1, + "body": { + "#": 7425 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 447, + "index": 2, + "body": { + "#": 7425 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 445.472, + "index": 3, + "body": { + "#": 7425 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 441.472, + "index": 4, + "body": { + "#": 7425 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 436.528, + "index": 5, + "body": { + "#": 7425 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 432.528, + "index": 6, + "body": { + "#": 7425 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 431, + "index": 7, + "body": { + "#": 7425 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 432.528, + "index": 8, + "body": { + "#": 7425 + }, + "isInternal": false + }, + { + "x": 498.24, + "y": 436.528, + "index": 9, + "body": { + "#": 7425 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7445 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7447 + }, + "max": { + "#": 7448 + } + }, + { + "x": 483.024, + "y": 431 + }, + { + "x": 498.24, + "y": 447 + }, + { + "x": 490.632, + "y": 439 + }, + [ + { + "#": 7451 + }, + { + "#": 7452 + }, + { + "#": 7453 + }, + { + "#": 7454 + }, + { + "#": 7455 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 240, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7457 + }, + "angle": 0, + "vertices": { + "#": 7458 + }, + "position": { + "#": 7469 + }, + "force": { + "#": 7470 + }, + "torque": 0, + "positionImpulse": { + "#": 7471 + }, + "constraintImpulse": { + "#": 7472 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7473 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7474 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7475 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7477 + }, + "positionPrev": { + "#": 7480 + }, + "anglePrev": 0, + "axes": { + "#": 7481 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7456 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7456 + } + ], + [ + { + "#": 7459 + }, + { + "#": 7460 + }, + { + "#": 7461 + }, + { + "#": 7462 + }, + { + "#": 7463 + }, + { + "#": 7464 + }, + { + "#": 7465 + }, + { + "#": 7466 + }, + { + "#": 7467 + }, + { + "#": 7468 + } + ], + { + "x": 518.456, + "y": 441.472, + "index": 0, + "body": { + "#": 7456 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 445.472, + "index": 1, + "body": { + "#": 7456 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 447, + "index": 2, + "body": { + "#": 7456 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 445.472, + "index": 3, + "body": { + "#": 7456 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 441.472, + "index": 4, + "body": { + "#": 7456 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 436.528, + "index": 5, + "body": { + "#": 7456 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 432.528, + "index": 6, + "body": { + "#": 7456 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 431, + "index": 7, + "body": { + "#": 7456 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 432.528, + "index": 8, + "body": { + "#": 7456 + }, + "isInternal": false + }, + { + "x": 518.456, + "y": 436.528, + "index": 9, + "body": { + "#": 7456 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7476 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7478 + }, + "max": { + "#": 7479 + } + }, + { + "x": 503.24, + "y": 431 + }, + { + "x": 518.456, + "y": 447 + }, + { + "x": 510.848, + "y": 439 + }, + [ + { + "#": 7482 + }, + { + "#": 7483 + }, + { + "#": 7484 + }, + { + "#": 7485 + }, + { + "#": 7486 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 241, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7488 + }, + "angle": 0, + "vertices": { + "#": 7489 + }, + "position": { + "#": 7500 + }, + "force": { + "#": 7501 + }, + "torque": 0, + "positionImpulse": { + "#": 7502 + }, + "constraintImpulse": { + "#": 7503 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7504 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7505 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7506 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7508 + }, + "positionPrev": { + "#": 7511 + }, + "anglePrev": 0, + "axes": { + "#": 7512 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7487 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7487 + } + ], + [ + { + "#": 7490 + }, + { + "#": 7491 + }, + { + "#": 7492 + }, + { + "#": 7493 + }, + { + "#": 7494 + }, + { + "#": 7495 + }, + { + "#": 7496 + }, + { + "#": 7497 + }, + { + "#": 7498 + }, + { + "#": 7499 + } + ], + { + "x": 538.672, + "y": 441.472, + "index": 0, + "body": { + "#": 7487 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 445.472, + "index": 1, + "body": { + "#": 7487 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 447, + "index": 2, + "body": { + "#": 7487 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 445.472, + "index": 3, + "body": { + "#": 7487 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 441.472, + "index": 4, + "body": { + "#": 7487 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 436.528, + "index": 5, + "body": { + "#": 7487 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 432.528, + "index": 6, + "body": { + "#": 7487 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 431, + "index": 7, + "body": { + "#": 7487 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 432.528, + "index": 8, + "body": { + "#": 7487 + }, + "isInternal": false + }, + { + "x": 538.672, + "y": 436.528, + "index": 9, + "body": { + "#": 7487 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7507 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7509 + }, + "max": { + "#": 7510 + } + }, + { + "x": 523.456, + "y": 431 + }, + { + "x": 538.672, + "y": 447 + }, + { + "x": 531.064, + "y": 439 + }, + [ + { + "#": 7513 + }, + { + "#": 7514 + }, + { + "#": 7515 + }, + { + "#": 7516 + }, + { + "#": 7517 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 242, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7519 + }, + "angle": 0, + "vertices": { + "#": 7520 + }, + "position": { + "#": 7531 + }, + "force": { + "#": 7532 + }, + "torque": 0, + "positionImpulse": { + "#": 7533 + }, + "constraintImpulse": { + "#": 7534 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7535 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7536 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7537 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7539 + }, + "positionPrev": { + "#": 7542 + }, + "anglePrev": 0, + "axes": { + "#": 7543 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7518 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7518 + } + ], + [ + { + "#": 7521 + }, + { + "#": 7522 + }, + { + "#": 7523 + }, + { + "#": 7524 + }, + { + "#": 7525 + }, + { + "#": 7526 + }, + { + "#": 7527 + }, + { + "#": 7528 + }, + { + "#": 7529 + }, + { + "#": 7530 + } + ], + { + "x": 558.888, + "y": 441.472, + "index": 0, + "body": { + "#": 7518 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 445.472, + "index": 1, + "body": { + "#": 7518 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 447, + "index": 2, + "body": { + "#": 7518 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 445.472, + "index": 3, + "body": { + "#": 7518 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 441.472, + "index": 4, + "body": { + "#": 7518 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 436.528, + "index": 5, + "body": { + "#": 7518 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 432.528, + "index": 6, + "body": { + "#": 7518 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 431, + "index": 7, + "body": { + "#": 7518 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 432.528, + "index": 8, + "body": { + "#": 7518 + }, + "isInternal": false + }, + { + "x": 558.888, + "y": 436.528, + "index": 9, + "body": { + "#": 7518 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7538 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7540 + }, + "max": { + "#": 7541 + } + }, + { + "x": 543.672, + "y": 431 + }, + { + "x": 558.888, + "y": 447 + }, + { + "x": 551.28, + "y": 439 + }, + [ + { + "#": 7544 + }, + { + "#": 7545 + }, + { + "#": 7546 + }, + { + "#": 7547 + }, + { + "#": 7548 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 243, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7550 + }, + "angle": 0, + "vertices": { + "#": 7551 + }, + "position": { + "#": 7562 + }, + "force": { + "#": 7563 + }, + "torque": 0, + "positionImpulse": { + "#": 7564 + }, + "constraintImpulse": { + "#": 7565 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7566 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7567 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7568 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7570 + }, + "positionPrev": { + "#": 7573 + }, + "anglePrev": 0, + "axes": { + "#": 7574 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7549 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7549 + } + ], + [ + { + "#": 7552 + }, + { + "#": 7553 + }, + { + "#": 7554 + }, + { + "#": 7555 + }, + { + "#": 7556 + }, + { + "#": 7557 + }, + { + "#": 7558 + }, + { + "#": 7559 + }, + { + "#": 7560 + }, + { + "#": 7561 + } + ], + { + "x": 579.104, + "y": 441.472, + "index": 0, + "body": { + "#": 7549 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 445.472, + "index": 1, + "body": { + "#": 7549 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 447, + "index": 2, + "body": { + "#": 7549 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 445.472, + "index": 3, + "body": { + "#": 7549 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 441.472, + "index": 4, + "body": { + "#": 7549 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 436.528, + "index": 5, + "body": { + "#": 7549 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 432.528, + "index": 6, + "body": { + "#": 7549 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 431, + "index": 7, + "body": { + "#": 7549 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 432.528, + "index": 8, + "body": { + "#": 7549 + }, + "isInternal": false + }, + { + "x": 579.104, + "y": 436.528, + "index": 9, + "body": { + "#": 7549 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7569 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7571 + }, + "max": { + "#": 7572 + } + }, + { + "x": 563.888, + "y": 431 + }, + { + "x": 579.104, + "y": 447 + }, + { + "x": 571.496, + "y": 439 + }, + [ + { + "#": 7575 + }, + { + "#": 7576 + }, + { + "#": 7577 + }, + { + "#": 7578 + }, + { + "#": 7579 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 244, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7581 + }, + "angle": 0, + "vertices": { + "#": 7582 + }, + "position": { + "#": 7593 + }, + "force": { + "#": 7594 + }, + "torque": 0, + "positionImpulse": { + "#": 7595 + }, + "constraintImpulse": { + "#": 7596 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7597 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7598 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7599 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7601 + }, + "positionPrev": { + "#": 7604 + }, + "anglePrev": 0, + "axes": { + "#": 7605 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7580 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7580 + } + ], + [ + { + "#": 7583 + }, + { + "#": 7584 + }, + { + "#": 7585 + }, + { + "#": 7586 + }, + { + "#": 7587 + }, + { + "#": 7588 + }, + { + "#": 7589 + }, + { + "#": 7590 + }, + { + "#": 7591 + }, + { + "#": 7592 + } + ], + { + "x": 599.32, + "y": 441.472, + "index": 0, + "body": { + "#": 7580 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 445.472, + "index": 1, + "body": { + "#": 7580 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 447, + "index": 2, + "body": { + "#": 7580 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 445.472, + "index": 3, + "body": { + "#": 7580 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 441.472, + "index": 4, + "body": { + "#": 7580 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 436.528, + "index": 5, + "body": { + "#": 7580 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 432.528, + "index": 6, + "body": { + "#": 7580 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 431, + "index": 7, + "body": { + "#": 7580 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 432.528, + "index": 8, + "body": { + "#": 7580 + }, + "isInternal": false + }, + { + "x": 599.32, + "y": 436.528, + "index": 9, + "body": { + "#": 7580 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7600 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7602 + }, + "max": { + "#": 7603 + } + }, + { + "x": 584.104, + "y": 431 + }, + { + "x": 599.32, + "y": 447 + }, + { + "x": 591.712, + "y": 439 + }, + [ + { + "#": 7606 + }, + { + "#": 7607 + }, + { + "#": 7608 + }, + { + "#": 7609 + }, + { + "#": 7610 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + [ + { + "#": 7612 + }, + { + "#": 7616 + }, + { + "#": 7620 + }, + { + "#": 7624 + }, + { + "#": 7628 + }, + { + "#": 7632 + }, + { + "#": 7636 + }, + { + "#": 7640 + }, + { + "#": 7644 + }, + { + "#": 7648 + }, + { + "#": 7652 + }, + { + "#": 7656 + }, + { + "#": 7660 + }, + { + "#": 7664 + }, + { + "#": 7668 + }, + { + "#": 7672 + }, + { + "#": 7676 + }, + { + "#": 7680 + }, + { + "#": 7684 + }, + { + "#": 7688 + }, + { + "#": 7692 + }, + { + "#": 7696 + }, + { + "#": 7700 + }, + { + "#": 7704 + }, + { + "#": 7708 + }, + { + "#": 7712 + }, + { + "#": 7716 + }, + { + "#": 7720 + }, + { + "#": 7724 + }, + { + "#": 7728 + }, + { + "#": 7732 + }, + { + "#": 7736 + }, + { + "#": 7740 + }, + { + "#": 7744 + }, + { + "#": 7748 + }, + { + "#": 7752 + }, + { + "#": 7756 + }, + { + "#": 7760 + }, + { + "#": 7764 + }, + { + "#": 7768 + }, + { + "#": 7772 + }, + { + "#": 7776 + }, + { + "#": 7780 + }, + { + "#": 7784 + }, + { + "#": 7788 + }, + { + "#": 7792 + }, + { + "#": 7796 + }, + { + "#": 7800 + }, + { + "#": 7804 + }, + { + "#": 7808 + }, + { + "#": 7812 + }, + { + "#": 7816 + }, + { + "#": 7820 + }, + { + "#": 7824 + }, + { + "#": 7828 + }, + { + "#": 7832 + }, + { + "#": 7836 + }, + { + "#": 7840 + }, + { + "#": 7844 + }, + { + "#": 7848 + }, + { + "#": 7852 + }, + { + "#": 7856 + }, + { + "#": 7860 + }, + { + "#": 7864 + }, + { + "#": 7868 + }, + { + "#": 7872 + }, + { + "#": 7876 + }, + { + "#": 7880 + }, + { + "#": 7884 + }, + { + "#": 7888 + }, + { + "#": 7892 + }, + { + "#": 7896 + }, + { + "#": 7900 + }, + { + "#": 7904 + }, + { + "#": 7908 + }, + { + "#": 7912 + }, + { + "#": 7916 + }, + { + "#": 7920 + }, + { + "#": 7924 + }, + { + "#": 7928 + }, + { + "#": 7932 + }, + { + "#": 7936 + }, + { + "#": 7940 + }, + { + "#": 7944 + }, + { + "#": 7948 + }, + { + "#": 7952 + }, + { + "#": 7956 + }, + { + "#": 7960 + }, + { + "#": 7964 + }, + { + "#": 7968 + }, + { + "#": 7972 + }, + { + "#": 7976 + }, + { + "#": 7980 + }, + { + "#": 7984 + }, + { + "#": 7988 + }, + { + "#": 7992 + }, + { + "#": 7996 + }, + { + "#": 8000 + }, + { + "#": 8004 + }, + { + "#": 8008 + }, + { + "#": 8012 + }, + { + "#": 8016 + }, + { + "#": 8020 + }, + { + "#": 8024 + }, + { + "#": 8028 + }, + { + "#": 8032 + }, + { + "#": 8036 + }, + { + "#": 8040 + }, + { + "#": 8044 + }, + { + "#": 8048 + }, + { + "#": 8052 + }, + { + "#": 8056 + }, + { + "#": 8060 + }, + { + "#": 8064 + }, + { + "#": 8068 + }, + { + "#": 8072 + }, + { + "#": 8076 + }, + { + "#": 8080 + }, + { + "#": 8084 + }, + { + "#": 8088 + }, + { + "#": 8092 + }, + { + "#": 8096 + }, + { + "#": 8100 + }, + { + "#": 8104 + }, + { + "#": 8108 + }, + { + "#": 8112 + }, + { + "#": 8116 + }, + { + "#": 8120 + }, + { + "#": 8124 + }, + { + "#": 8128 + }, + { + "#": 8132 + }, + { + "#": 8136 + }, + { + "#": 8140 + }, + { + "#": 8144 + }, + { + "#": 8148 + }, + { + "#": 8152 + }, + { + "#": 8156 + }, + { + "#": 8160 + }, + { + "#": 8164 + }, + { + "#": 8168 + }, + { + "#": 8172 + }, + { + "#": 8176 + }, + { + "#": 8180 + }, + { + "#": 8184 + }, + { + "#": 8188 + }, + { + "#": 8192 + }, + { + "#": 8196 + }, + { + "#": 8200 + }, + { + "#": 8204 + }, + { + "#": 8208 + }, + { + "#": 8212 + }, + { + "#": 8216 + }, + { + "#": 8220 + }, + { + "#": 8224 + }, + { + "#": 8228 + }, + { + "#": 8232 + }, + { + "#": 8236 + }, + { + "#": 8240 + }, + { + "#": 8244 + }, + { + "#": 8248 + }, + { + "#": 8252 + }, + { + "#": 8256 + }, + { + "#": 8260 + }, + { + "#": 8264 + }, + { + "#": 8268 + }, + { + "#": 8272 + }, + { + "#": 8276 + }, + { + "#": 8280 + }, + { + "#": 8284 + }, + { + "#": 8288 + }, + { + "#": 8292 + }, + { + "#": 8296 + }, + { + "#": 8300 + }, + { + "#": 8304 + }, + { + "#": 8308 + }, + { + "#": 8312 + }, + { + "#": 8316 + }, + { + "#": 8320 + }, + { + "#": 8324 + }, + { + "#": 8328 + }, + { + "#": 8332 + }, + { + "#": 8336 + }, + { + "#": 8340 + }, + { + "#": 8344 + }, + { + "#": 8348 + }, + { + "#": 8352 + }, + { + "#": 8356 + }, + { + "#": 8360 + }, + { + "#": 8364 + }, + { + "#": 8368 + }, + { + "#": 8372 + }, + { + "#": 8376 + }, + { + "#": 8380 + }, + { + "#": 8384 + }, + { + "#": 8388 + }, + { + "#": 8392 + }, + { + "#": 8396 + }, + { + "#": 8400 + }, + { + "#": 8404 + }, + { + "#": 8408 + }, + { + "#": 8412 + }, + { + "#": 8416 + }, + { + "#": 8420 + }, + { + "#": 8424 + }, + { + "#": 8428 + }, + { + "#": 8432 + }, + { + "#": 8436 + }, + { + "#": 8440 + }, + { + "#": 8444 + }, + { + "#": 8448 + }, + { + "#": 8452 + }, + { + "#": 8456 + }, + { + "#": 8460 + }, + { + "#": 8464 + }, + { + "#": 8468 + }, + { + "#": 8472 + }, + { + "#": 8476 + }, + { + "#": 8480 + }, + { + "#": 8484 + }, + { + "#": 8488 + }, + { + "#": 8492 + }, + { + "#": 8496 + }, + { + "#": 8500 + }, + { + "#": 8504 + }, + { + "#": 8508 + }, + { + "#": 8512 + }, + { + "#": 8516 + }, + { + "#": 8520 + }, + { + "#": 8524 + }, + { + "#": 8528 + }, + { + "#": 8532 + }, + { + "#": 8536 + }, + { + "#": 8540 + }, + { + "#": 8544 + }, + { + "#": 8548 + }, + { + "#": 8552 + }, + { + "#": 8556 + }, + { + "#": 8560 + }, + { + "#": 8564 + }, + { + "#": 8568 + }, + { + "#": 8572 + }, + { + "#": 8576 + }, + { + "#": 8580 + }, + { + "#": 8584 + }, + { + "#": 8588 + }, + { + "#": 8592 + }, + { + "#": 8596 + }, + { + "#": 8600 + }, + { + "#": 8604 + }, + { + "#": 8608 + }, + { + "#": 8612 + }, + { + "#": 8616 + }, + { + "#": 8620 + }, + { + "#": 8624 + }, + { + "#": 8628 + }, + { + "#": 8632 + }, + { + "#": 8636 + }, + { + "#": 8640 + }, + { + "#": 8644 + }, + { + "#": 8648 + }, + { + "#": 8652 + }, + { + "#": 8656 + }, + { + "#": 8660 + }, + { + "#": 8664 + }, + { + "#": 8668 + }, + { + "#": 8672 + }, + { + "#": 8676 + }, + { + "#": 8680 + }, + { + "#": 8684 + }, + { + "#": 8688 + }, + { + "#": 8692 + }, + { + "#": 8696 + }, + { + "#": 8700 + }, + { + "#": 8704 + }, + { + "#": 8708 + }, + { + "#": 8712 + }, + { + "#": 8716 + }, + { + "#": 8720 + }, + { + "#": 8724 + }, + { + "#": 8728 + }, + { + "#": 8732 + }, + { + "#": 8736 + }, + { + "#": 8740 + }, + { + "#": 8744 + }, + { + "#": 8748 + }, + { + "#": 8752 + }, + { + "#": 8756 + }, + { + "#": 8760 + }, + { + "#": 8764 + }, + { + "#": 8768 + }, + { + "#": 8772 + }, + { + "#": 8776 + }, + { + "#": 8780 + }, + { + "#": 8784 + }, + { + "#": 8788 + }, + { + "#": 8792 + }, + { + "#": 8796 + }, + { + "#": 8800 + }, + { + "#": 8804 + }, + { + "#": 8808 + }, + { + "#": 8812 + }, + { + "#": 8816 + }, + { + "#": 8820 + }, + { + "#": 8824 + }, + { + "#": 8828 + }, + { + "#": 8832 + }, + { + "#": 8836 + }, + { + "#": 8840 + }, + { + "#": 8844 + }, + { + "#": 8848 + }, + { + "#": 8852 + }, + { + "#": 8856 + }, + { + "#": 8860 + }, + { + "#": 8864 + }, + { + "#": 8868 + }, + { + "#": 8872 + }, + { + "#": 8876 + }, + { + "#": 8880 + }, + { + "#": 8884 + }, + { + "#": 8888 + }, + { + "#": 8892 + }, + { + "#": 8896 + }, + { + "#": 8900 + }, + { + "#": 8904 + }, + { + "#": 8908 + }, + { + "#": 8912 + }, + { + "#": 8916 + }, + { + "#": 8920 + }, + { + "#": 8924 + }, + { + "#": 8928 + }, + { + "#": 8932 + }, + { + "#": 8936 + }, + { + "#": 8940 + }, + { + "#": 8944 + }, + { + "#": 8948 + }, + { + "#": 8952 + }, + { + "#": 8956 + }, + { + "#": 8960 + }, + { + "#": 8964 + }, + { + "#": 8968 + }, + { + "#": 8972 + }, + { + "#": 8976 + }, + { + "#": 8980 + }, + { + "#": 8984 + }, + { + "#": 8988 + }, + { + "#": 8992 + }, + { + "#": 8996 + }, + { + "#": 9000 + }, + { + "#": 9004 + }, + { + "#": 9008 + }, + { + "#": 9012 + }, + { + "#": 9016 + }, + { + "#": 9020 + }, + { + "#": 9024 + }, + { + "#": 9028 + }, + { + "#": 9032 + }, + { + "#": 9036 + }, + { + "#": 9040 + }, + { + "#": 9044 + }, + { + "#": 9048 + }, + { + "#": 9052 + }, + { + "#": 9056 + }, + { + "#": 9060 + }, + { + "#": 9064 + }, + { + "#": 9068 + }, + { + "#": 9072 + }, + { + "#": 9076 + }, + { + "#": 9080 + }, + { + "#": 9084 + }, + { + "#": 9088 + }, + { + "#": 9092 + }, + { + "#": 9096 + }, + { + "#": 9100 + }, + { + "#": 9104 + }, + { + "#": 9108 + }, + { + "#": 9112 + }, + { + "#": 9116 + }, + { + "#": 9120 + }, + { + "#": 9124 + }, + { + "#": 9128 + }, + { + "#": 9132 + }, + { + "#": 9136 + }, + { + "#": 9140 + }, + { + "#": 9144 + }, + { + "#": 9148 + }, + { + "#": 9152 + }, + { + "#": 9156 + }, + { + "#": 9160 + }, + { + "#": 9164 + }, + { + "#": 9168 + }, + { + "#": 9172 + }, + { + "#": 9176 + }, + { + "#": 9180 + }, + { + "#": 9184 + }, + { + "#": 9188 + }, + { + "#": 9192 + }, + { + "#": 9196 + }, + { + "#": 9200 + }, + { + "#": 9204 + }, + { + "#": 9208 + }, + { + "#": 9212 + }, + { + "#": 9216 + }, + { + "#": 9220 + }, + { + "#": 9224 + }, + { + "#": 9228 + }, + { + "#": 9232 + }, + { + "#": 9236 + }, + { + "#": 9240 + }, + { + "#": 9244 + }, + { + "#": 9248 + }, + { + "#": 9252 + }, + { + "#": 9256 + }, + { + "#": 9260 + }, + { + "#": 9264 + }, + { + "#": 9268 + }, + { + "#": 9272 + }, + { + "#": 9276 + }, + { + "#": 9280 + }, + { + "#": 9284 + }, + { + "#": 9288 + }, + { + "#": 9292 + }, + { + "#": 9296 + }, + { + "#": 9300 + }, + { + "#": 9304 + }, + { + "#": 9308 + }, + { + "#": 9312 + }, + { + "#": 9316 + }, + { + "#": 9320 + }, + { + "#": 9324 + }, + { + "#": 9328 + }, + { + "#": 9332 + }, + { + "#": 9336 + }, + { + "#": 9340 + }, + { + "#": 9344 + }, + { + "#": 9348 + }, + { + "#": 9352 + }, + { + "#": 9356 + }, + { + "#": 9360 + }, + { + "#": 9364 + }, + { + "#": 9368 + }, + { + "#": 9372 + }, + { + "#": 9376 + }, + { + "#": 9380 + }, + { + "#": 9384 + }, + { + "#": 9388 + }, + { + "#": 9392 + }, + { + "#": 9396 + }, + { + "#": 9400 + } + ], + { + "bodyA": { + "#": 171 + }, + "bodyB": { + "#": 202 + }, + "stiffness": 0.4, + "pointA": { + "#": 7613 + }, + "pointB": { + "#": 7614 + }, + "length": 20.216, + "render": { + "#": 7615 + }, + "id": 245, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 202 + }, + "bodyB": { + "#": 233 + }, + "stiffness": 0.4, + "pointA": { + "#": 7617 + }, + "pointB": { + "#": 7618 + }, + "length": 20.216, + "render": { + "#": 7619 + }, + "id": 246, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 233 + }, + "bodyB": { + "#": 264 + }, + "stiffness": 0.4, + "pointA": { + "#": 7621 + }, + "pointB": { + "#": 7622 + }, + "length": 20.216, + "render": { + "#": 7623 + }, + "id": 247, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 264 + }, + "bodyB": { + "#": 295 + }, + "stiffness": 0.4, + "pointA": { + "#": 7625 + }, + "pointB": { + "#": 7626 + }, + "length": 20.216, + "render": { + "#": 7627 + }, + "id": 248, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 295 + }, + "bodyB": { + "#": 326 + }, + "stiffness": 0.4, + "pointA": { + "#": 7629 + }, + "pointB": { + "#": 7630 + }, + "length": 20.216, + "render": { + "#": 7631 + }, + "id": 249, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 326 + }, + "bodyB": { + "#": 357 + }, + "stiffness": 0.4, + "pointA": { + "#": 7633 + }, + "pointB": { + "#": 7634 + }, + "length": 20.216, + "render": { + "#": 7635 + }, + "id": 250, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 357 + }, + "bodyB": { + "#": 388 + }, + "stiffness": 0.4, + "pointA": { + "#": 7637 + }, + "pointB": { + "#": 7638 + }, + "length": 20.216, + "render": { + "#": 7639 + }, + "id": 251, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 388 + }, + "bodyB": { + "#": 419 + }, + "stiffness": 0.4, + "pointA": { + "#": 7641 + }, + "pointB": { + "#": 7642 + }, + "length": 20.216, + "render": { + "#": 7643 + }, + "id": 252, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 419 + }, + "bodyB": { + "#": 450 + }, + "stiffness": 0.4, + "pointA": { + "#": 7645 + }, + "pointB": { + "#": 7646 + }, + "length": 20.216, + "render": { + "#": 7647 + }, + "id": 253, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 450 + }, + "bodyB": { + "#": 481 + }, + "stiffness": 0.4, + "pointA": { + "#": 7649 + }, + "pointB": { + "#": 7650 + }, + "length": 20.216, + "render": { + "#": 7651 + }, + "id": 254, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 481 + }, + "bodyB": { + "#": 512 + }, + "stiffness": 0.4, + "pointA": { + "#": 7653 + }, + "pointB": { + "#": 7654 + }, + "length": 20.216, + "render": { + "#": 7655 + }, + "id": 255, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 512 + }, + "bodyB": { + "#": 543 + }, + "stiffness": 0.4, + "pointA": { + "#": 7657 + }, + "pointB": { + "#": 7658 + }, + "length": 20.216, + "render": { + "#": 7659 + }, + "id": 256, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 543 + }, + "bodyB": { + "#": 574 + }, + "stiffness": 0.4, + "pointA": { + "#": 7661 + }, + "pointB": { + "#": 7662 + }, + "length": 20.216, + "render": { + "#": 7663 + }, + "id": 257, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 574 + }, + "bodyB": { + "#": 605 + }, + "stiffness": 0.4, + "pointA": { + "#": 7665 + }, + "pointB": { + "#": 7666 + }, + "length": 20.216, + "render": { + "#": 7667 + }, + "id": 258, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 605 + }, + "bodyB": { + "#": 636 + }, + "stiffness": 0.4, + "pointA": { + "#": 7669 + }, + "pointB": { + "#": 7670 + }, + "length": 20.216, + "render": { + "#": 7671 + }, + "id": 259, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 636 + }, + "bodyB": { + "#": 667 + }, + "stiffness": 0.4, + "pointA": { + "#": 7673 + }, + "pointB": { + "#": 7674 + }, + "length": 20.216, + "render": { + "#": 7675 + }, + "id": 260, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 667 + }, + "bodyB": { + "#": 698 + }, + "stiffness": 0.4, + "pointA": { + "#": 7677 + }, + "pointB": { + "#": 7678 + }, + "length": 20.216, + "render": { + "#": 7679 + }, + "id": 261, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 698 + }, + "bodyB": { + "#": 729 + }, + "stiffness": 0.4, + "pointA": { + "#": 7681 + }, + "pointB": { + "#": 7682 + }, + "length": 20.216, + "render": { + "#": 7683 + }, + "id": 262, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 729 + }, + "bodyB": { + "#": 760 + }, + "stiffness": 0.4, + "pointA": { + "#": 7685 + }, + "pointB": { + "#": 7686 + }, + "length": 20.216, + "render": { + "#": 7687 + }, + "id": 263, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 791 + }, + "bodyB": { + "#": 822 + }, + "stiffness": 0.4, + "pointA": { + "#": 7689 + }, + "pointB": { + "#": 7690 + }, + "length": 20.216, + "render": { + "#": 7691 + }, + "id": 264, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 822 + }, + "bodyB": { + "#": 853 + }, + "stiffness": 0.4, + "pointA": { + "#": 7693 + }, + "pointB": { + "#": 7694 + }, + "length": 20.216, + "render": { + "#": 7695 + }, + "id": 265, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 853 + }, + "bodyB": { + "#": 884 + }, + "stiffness": 0.4, + "pointA": { + "#": 7697 + }, + "pointB": { + "#": 7698 + }, + "length": 20.216, + "render": { + "#": 7699 + }, + "id": 266, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 884 + }, + "bodyB": { + "#": 915 + }, + "stiffness": 0.4, + "pointA": { + "#": 7701 + }, + "pointB": { + "#": 7702 + }, + "length": 20.216, + "render": { + "#": 7703 + }, + "id": 267, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 915 + }, + "bodyB": { + "#": 946 + }, + "stiffness": 0.4, + "pointA": { + "#": 7705 + }, + "pointB": { + "#": 7706 + }, + "length": 20.216, + "render": { + "#": 7707 + }, + "id": 268, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 946 + }, + "bodyB": { + "#": 977 + }, + "stiffness": 0.4, + "pointA": { + "#": 7709 + }, + "pointB": { + "#": 7710 + }, + "length": 20.216, + "render": { + "#": 7711 + }, + "id": 269, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 977 + }, + "bodyB": { + "#": 1008 + }, + "stiffness": 0.4, + "pointA": { + "#": 7713 + }, + "pointB": { + "#": 7714 + }, + "length": 20.216, + "render": { + "#": 7715 + }, + "id": 270, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1008 + }, + "bodyB": { + "#": 1039 + }, + "stiffness": 0.4, + "pointA": { + "#": 7717 + }, + "pointB": { + "#": 7718 + }, + "length": 20.216, + "render": { + "#": 7719 + }, + "id": 271, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1039 + }, + "bodyB": { + "#": 1070 + }, + "stiffness": 0.4, + "pointA": { + "#": 7721 + }, + "pointB": { + "#": 7722 + }, + "length": 20.216, + "render": { + "#": 7723 + }, + "id": 272, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1070 + }, + "bodyB": { + "#": 1101 + }, + "stiffness": 0.4, + "pointA": { + "#": 7725 + }, + "pointB": { + "#": 7726 + }, + "length": 20.216, + "render": { + "#": 7727 + }, + "id": 273, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1101 + }, + "bodyB": { + "#": 1132 + }, + "stiffness": 0.4, + "pointA": { + "#": 7729 + }, + "pointB": { + "#": 7730 + }, + "length": 20.216, + "render": { + "#": 7731 + }, + "id": 274, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1132 + }, + "bodyB": { + "#": 1163 + }, + "stiffness": 0.4, + "pointA": { + "#": 7733 + }, + "pointB": { + "#": 7734 + }, + "length": 20.216, + "render": { + "#": 7735 + }, + "id": 275, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1163 + }, + "bodyB": { + "#": 1194 + }, + "stiffness": 0.4, + "pointA": { + "#": 7737 + }, + "pointB": { + "#": 7738 + }, + "length": 20.216, + "render": { + "#": 7739 + }, + "id": 276, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1194 + }, + "bodyB": { + "#": 1225 + }, + "stiffness": 0.4, + "pointA": { + "#": 7741 + }, + "pointB": { + "#": 7742 + }, + "length": 20.216, + "render": { + "#": 7743 + }, + "id": 277, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1225 + }, + "bodyB": { + "#": 1256 + }, + "stiffness": 0.4, + "pointA": { + "#": 7745 + }, + "pointB": { + "#": 7746 + }, + "length": 20.216, + "render": { + "#": 7747 + }, + "id": 278, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1256 + }, + "bodyB": { + "#": 1287 + }, + "stiffness": 0.4, + "pointA": { + "#": 7749 + }, + "pointB": { + "#": 7750 + }, + "length": 20.216, + "render": { + "#": 7751 + }, + "id": 279, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1287 + }, + "bodyB": { + "#": 1318 + }, + "stiffness": 0.4, + "pointA": { + "#": 7753 + }, + "pointB": { + "#": 7754 + }, + "length": 20.216, + "render": { + "#": 7755 + }, + "id": 280, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1318 + }, + "bodyB": { + "#": 1349 + }, + "stiffness": 0.4, + "pointA": { + "#": 7757 + }, + "pointB": { + "#": 7758 + }, + "length": 20.216, + "render": { + "#": 7759 + }, + "id": 281, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1349 + }, + "bodyB": { + "#": 1380 + }, + "stiffness": 0.4, + "pointA": { + "#": 7761 + }, + "pointB": { + "#": 7762 + }, + "length": 20.216, + "render": { + "#": 7763 + }, + "id": 282, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 171 + }, + "bodyB": { + "#": 791 + }, + "stiffness": 0.4, + "pointA": { + "#": 7765 + }, + "pointB": { + "#": 7766 + }, + "length": 21, + "render": { + "#": 7767 + }, + "id": 283, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 202 + }, + "bodyB": { + "#": 822 + }, + "stiffness": 0.4, + "pointA": { + "#": 7769 + }, + "pointB": { + "#": 7770 + }, + "length": 21, + "render": { + "#": 7771 + }, + "id": 284, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 233 + }, + "bodyB": { + "#": 853 + }, + "stiffness": 0.4, + "pointA": { + "#": 7773 + }, + "pointB": { + "#": 7774 + }, + "length": 21, + "render": { + "#": 7775 + }, + "id": 285, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 264 + }, + "bodyB": { + "#": 884 + }, + "stiffness": 0.4, + "pointA": { + "#": 7777 + }, + "pointB": { + "#": 7778 + }, + "length": 21, + "render": { + "#": 7779 + }, + "id": 286, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 295 + }, + "bodyB": { + "#": 915 + }, + "stiffness": 0.4, + "pointA": { + "#": 7781 + }, + "pointB": { + "#": 7782 + }, + "length": 21, + "render": { + "#": 7783 + }, + "id": 287, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 326 + }, + "bodyB": { + "#": 946 + }, + "stiffness": 0.4, + "pointA": { + "#": 7785 + }, + "pointB": { + "#": 7786 + }, + "length": 21, + "render": { + "#": 7787 + }, + "id": 288, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 357 + }, + "bodyB": { + "#": 977 + }, + "stiffness": 0.4, + "pointA": { + "#": 7789 + }, + "pointB": { + "#": 7790 + }, + "length": 21, + "render": { + "#": 7791 + }, + "id": 289, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 388 + }, + "bodyB": { + "#": 1008 + }, + "stiffness": 0.4, + "pointA": { + "#": 7793 + }, + "pointB": { + "#": 7794 + }, + "length": 21, + "render": { + "#": 7795 + }, + "id": 290, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 419 + }, + "bodyB": { + "#": 1039 + }, + "stiffness": 0.4, + "pointA": { + "#": 7797 + }, + "pointB": { + "#": 7798 + }, + "length": 21, + "render": { + "#": 7799 + }, + "id": 291, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 450 + }, + "bodyB": { + "#": 1070 + }, + "stiffness": 0.4, + "pointA": { + "#": 7801 + }, + "pointB": { + "#": 7802 + }, + "length": 21, + "render": { + "#": 7803 + }, + "id": 292, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 481 + }, + "bodyB": { + "#": 1101 + }, + "stiffness": 0.4, + "pointA": { + "#": 7805 + }, + "pointB": { + "#": 7806 + }, + "length": 21, + "render": { + "#": 7807 + }, + "id": 293, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 512 + }, + "bodyB": { + "#": 1132 + }, + "stiffness": 0.4, + "pointA": { + "#": 7809 + }, + "pointB": { + "#": 7810 + }, + "length": 21, + "render": { + "#": 7811 + }, + "id": 294, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 543 + }, + "bodyB": { + "#": 1163 + }, + "stiffness": 0.4, + "pointA": { + "#": 7813 + }, + "pointB": { + "#": 7814 + }, + "length": 21, + "render": { + "#": 7815 + }, + "id": 295, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 574 + }, + "bodyB": { + "#": 1194 + }, + "stiffness": 0.4, + "pointA": { + "#": 7817 + }, + "pointB": { + "#": 7818 + }, + "length": 21, + "render": { + "#": 7819 + }, + "id": 296, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 605 + }, + "bodyB": { + "#": 1225 + }, + "stiffness": 0.4, + "pointA": { + "#": 7821 + }, + "pointB": { + "#": 7822 + }, + "length": 21, + "render": { + "#": 7823 + }, + "id": 297, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 636 + }, + "bodyB": { + "#": 1256 + }, + "stiffness": 0.4, + "pointA": { + "#": 7825 + }, + "pointB": { + "#": 7826 + }, + "length": 21, + "render": { + "#": 7827 + }, + "id": 298, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 667 + }, + "bodyB": { + "#": 1287 + }, + "stiffness": 0.4, + "pointA": { + "#": 7829 + }, + "pointB": { + "#": 7830 + }, + "length": 21, + "render": { + "#": 7831 + }, + "id": 299, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 698 + }, + "bodyB": { + "#": 1318 + }, + "stiffness": 0.4, + "pointA": { + "#": 7833 + }, + "pointB": { + "#": 7834 + }, + "length": 21, + "render": { + "#": 7835 + }, + "id": 300, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 729 + }, + "bodyB": { + "#": 1349 + }, + "stiffness": 0.4, + "pointA": { + "#": 7837 + }, + "pointB": { + "#": 7838 + }, + "length": 21, + "render": { + "#": 7839 + }, + "id": 301, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 760 + }, + "bodyB": { + "#": 1380 + }, + "stiffness": 0.4, + "pointA": { + "#": 7841 + }, + "pointB": { + "#": 7842 + }, + "length": 21, + "render": { + "#": 7843 + }, + "id": 302, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1411 + }, + "bodyB": { + "#": 1442 + }, + "stiffness": 0.4, + "pointA": { + "#": 7845 + }, + "pointB": { + "#": 7846 + }, + "length": 20.216, + "render": { + "#": 7847 + }, + "id": 303, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1442 + }, + "bodyB": { + "#": 1473 + }, + "stiffness": 0.4, + "pointA": { + "#": 7849 + }, + "pointB": { + "#": 7850 + }, + "length": 20.216, + "render": { + "#": 7851 + }, + "id": 304, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1473 + }, + "bodyB": { + "#": 1504 + }, + "stiffness": 0.4, + "pointA": { + "#": 7853 + }, + "pointB": { + "#": 7854 + }, + "length": 20.216, + "render": { + "#": 7855 + }, + "id": 305, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1504 + }, + "bodyB": { + "#": 1535 + }, + "stiffness": 0.4, + "pointA": { + "#": 7857 + }, + "pointB": { + "#": 7858 + }, + "length": 20.216, + "render": { + "#": 7859 + }, + "id": 306, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1535 + }, + "bodyB": { + "#": 1566 + }, + "stiffness": 0.4, + "pointA": { + "#": 7861 + }, + "pointB": { + "#": 7862 + }, + "length": 20.216, + "render": { + "#": 7863 + }, + "id": 307, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1566 + }, + "bodyB": { + "#": 1597 + }, + "stiffness": 0.4, + "pointA": { + "#": 7865 + }, + "pointB": { + "#": 7866 + }, + "length": 20.216, + "render": { + "#": 7867 + }, + "id": 308, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1597 + }, + "bodyB": { + "#": 1628 + }, + "stiffness": 0.4, + "pointA": { + "#": 7869 + }, + "pointB": { + "#": 7870 + }, + "length": 20.216, + "render": { + "#": 7871 + }, + "id": 309, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1628 + }, + "bodyB": { + "#": 1659 + }, + "stiffness": 0.4, + "pointA": { + "#": 7873 + }, + "pointB": { + "#": 7874 + }, + "length": 20.216, + "render": { + "#": 7875 + }, + "id": 310, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1659 + }, + "bodyB": { + "#": 1690 + }, + "stiffness": 0.4, + "pointA": { + "#": 7877 + }, + "pointB": { + "#": 7878 + }, + "length": 20.216, + "render": { + "#": 7879 + }, + "id": 311, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1690 + }, + "bodyB": { + "#": 1721 + }, + "stiffness": 0.4, + "pointA": { + "#": 7881 + }, + "pointB": { + "#": 7882 + }, + "length": 20.216, + "render": { + "#": 7883 + }, + "id": 312, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1721 + }, + "bodyB": { + "#": 1752 + }, + "stiffness": 0.4, + "pointA": { + "#": 7885 + }, + "pointB": { + "#": 7886 + }, + "length": 20.216, + "render": { + "#": 7887 + }, + "id": 313, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1752 + }, + "bodyB": { + "#": 1783 + }, + "stiffness": 0.4, + "pointA": { + "#": 7889 + }, + "pointB": { + "#": 7890 + }, + "length": 20.216, + "render": { + "#": 7891 + }, + "id": 314, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1783 + }, + "bodyB": { + "#": 1814 + }, + "stiffness": 0.4, + "pointA": { + "#": 7893 + }, + "pointB": { + "#": 7894 + }, + "length": 20.216, + "render": { + "#": 7895 + }, + "id": 315, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1814 + }, + "bodyB": { + "#": 1845 + }, + "stiffness": 0.4, + "pointA": { + "#": 7897 + }, + "pointB": { + "#": 7898 + }, + "length": 20.216, + "render": { + "#": 7899 + }, + "id": 316, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1845 + }, + "bodyB": { + "#": 1876 + }, + "stiffness": 0.4, + "pointA": { + "#": 7901 + }, + "pointB": { + "#": 7902 + }, + "length": 20.216, + "render": { + "#": 7903 + }, + "id": 317, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1876 + }, + "bodyB": { + "#": 1907 + }, + "stiffness": 0.4, + "pointA": { + "#": 7905 + }, + "pointB": { + "#": 7906 + }, + "length": 20.216, + "render": { + "#": 7907 + }, + "id": 318, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1907 + }, + "bodyB": { + "#": 1938 + }, + "stiffness": 0.4, + "pointA": { + "#": 7909 + }, + "pointB": { + "#": 7910 + }, + "length": 20.216, + "render": { + "#": 7911 + }, + "id": 319, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1938 + }, + "bodyB": { + "#": 1969 + }, + "stiffness": 0.4, + "pointA": { + "#": 7913 + }, + "pointB": { + "#": 7914 + }, + "length": 20.216, + "render": { + "#": 7915 + }, + "id": 320, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1969 + }, + "bodyB": { + "#": 2000 + }, + "stiffness": 0.4, + "pointA": { + "#": 7917 + }, + "pointB": { + "#": 7918 + }, + "length": 20.216, + "render": { + "#": 7919 + }, + "id": 321, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 791 + }, + "bodyB": { + "#": 1411 + }, + "stiffness": 0.4, + "pointA": { + "#": 7921 + }, + "pointB": { + "#": 7922 + }, + "length": 21, + "render": { + "#": 7923 + }, + "id": 322, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 822 + }, + "bodyB": { + "#": 1442 + }, + "stiffness": 0.4, + "pointA": { + "#": 7925 + }, + "pointB": { + "#": 7926 + }, + "length": 21, + "render": { + "#": 7927 + }, + "id": 323, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 853 + }, + "bodyB": { + "#": 1473 + }, + "stiffness": 0.4, + "pointA": { + "#": 7929 + }, + "pointB": { + "#": 7930 + }, + "length": 21, + "render": { + "#": 7931 + }, + "id": 324, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 884 + }, + "bodyB": { + "#": 1504 + }, + "stiffness": 0.4, + "pointA": { + "#": 7933 + }, + "pointB": { + "#": 7934 + }, + "length": 21, + "render": { + "#": 7935 + }, + "id": 325, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 915 + }, + "bodyB": { + "#": 1535 + }, + "stiffness": 0.4, + "pointA": { + "#": 7937 + }, + "pointB": { + "#": 7938 + }, + "length": 21, + "render": { + "#": 7939 + }, + "id": 326, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 946 + }, + "bodyB": { + "#": 1566 + }, + "stiffness": 0.4, + "pointA": { + "#": 7941 + }, + "pointB": { + "#": 7942 + }, + "length": 21, + "render": { + "#": 7943 + }, + "id": 327, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 977 + }, + "bodyB": { + "#": 1597 + }, + "stiffness": 0.4, + "pointA": { + "#": 7945 + }, + "pointB": { + "#": 7946 + }, + "length": 21, + "render": { + "#": 7947 + }, + "id": 328, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1008 + }, + "bodyB": { + "#": 1628 + }, + "stiffness": 0.4, + "pointA": { + "#": 7949 + }, + "pointB": { + "#": 7950 + }, + "length": 21, + "render": { + "#": 7951 + }, + "id": 329, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1039 + }, + "bodyB": { + "#": 1659 + }, + "stiffness": 0.4, + "pointA": { + "#": 7953 + }, + "pointB": { + "#": 7954 + }, + "length": 21, + "render": { + "#": 7955 + }, + "id": 330, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1070 + }, + "bodyB": { + "#": 1690 + }, + "stiffness": 0.4, + "pointA": { + "#": 7957 + }, + "pointB": { + "#": 7958 + }, + "length": 21, + "render": { + "#": 7959 + }, + "id": 331, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1101 + }, + "bodyB": { + "#": 1721 + }, + "stiffness": 0.4, + "pointA": { + "#": 7961 + }, + "pointB": { + "#": 7962 + }, + "length": 21, + "render": { + "#": 7963 + }, + "id": 332, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1132 + }, + "bodyB": { + "#": 1752 + }, + "stiffness": 0.4, + "pointA": { + "#": 7965 + }, + "pointB": { + "#": 7966 + }, + "length": 21, + "render": { + "#": 7967 + }, + "id": 333, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1163 + }, + "bodyB": { + "#": 1783 + }, + "stiffness": 0.4, + "pointA": { + "#": 7969 + }, + "pointB": { + "#": 7970 + }, + "length": 21, + "render": { + "#": 7971 + }, + "id": 334, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1194 + }, + "bodyB": { + "#": 1814 + }, + "stiffness": 0.4, + "pointA": { + "#": 7973 + }, + "pointB": { + "#": 7974 + }, + "length": 21, + "render": { + "#": 7975 + }, + "id": 335, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1225 + }, + "bodyB": { + "#": 1845 + }, + "stiffness": 0.4, + "pointA": { + "#": 7977 + }, + "pointB": { + "#": 7978 + }, + "length": 21, + "render": { + "#": 7979 + }, + "id": 336, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1256 + }, + "bodyB": { + "#": 1876 + }, + "stiffness": 0.4, + "pointA": { + "#": 7981 + }, + "pointB": { + "#": 7982 + }, + "length": 21, + "render": { + "#": 7983 + }, + "id": 337, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1287 + }, + "bodyB": { + "#": 1907 + }, + "stiffness": 0.4, + "pointA": { + "#": 7985 + }, + "pointB": { + "#": 7986 + }, + "length": 21, + "render": { + "#": 7987 + }, + "id": 338, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1318 + }, + "bodyB": { + "#": 1938 + }, + "stiffness": 0.4, + "pointA": { + "#": 7989 + }, + "pointB": { + "#": 7990 + }, + "length": 21, + "render": { + "#": 7991 + }, + "id": 339, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1349 + }, + "bodyB": { + "#": 1969 + }, + "stiffness": 0.4, + "pointA": { + "#": 7993 + }, + "pointB": { + "#": 7994 + }, + "length": 21, + "render": { + "#": 7995 + }, + "id": 340, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1380 + }, + "bodyB": { + "#": 2000 + }, + "stiffness": 0.4, + "pointA": { + "#": 7997 + }, + "pointB": { + "#": 7998 + }, + "length": 21, + "render": { + "#": 7999 + }, + "id": 341, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2031 + }, + "bodyB": { + "#": 2062 + }, + "stiffness": 0.4, + "pointA": { + "#": 8001 + }, + "pointB": { + "#": 8002 + }, + "length": 20.216, + "render": { + "#": 8003 + }, + "id": 342, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2062 + }, + "bodyB": { + "#": 2093 + }, + "stiffness": 0.4, + "pointA": { + "#": 8005 + }, + "pointB": { + "#": 8006 + }, + "length": 20.216, + "render": { + "#": 8007 + }, + "id": 343, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2093 + }, + "bodyB": { + "#": 2124 + }, + "stiffness": 0.4, + "pointA": { + "#": 8009 + }, + "pointB": { + "#": 8010 + }, + "length": 20.216, + "render": { + "#": 8011 + }, + "id": 344, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2124 + }, + "bodyB": { + "#": 2155 + }, + "stiffness": 0.4, + "pointA": { + "#": 8013 + }, + "pointB": { + "#": 8014 + }, + "length": 20.216, + "render": { + "#": 8015 + }, + "id": 345, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2155 + }, + "bodyB": { + "#": 2186 + }, + "stiffness": 0.4, + "pointA": { + "#": 8017 + }, + "pointB": { + "#": 8018 + }, + "length": 20.216, + "render": { + "#": 8019 + }, + "id": 346, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2186 + }, + "bodyB": { + "#": 2217 + }, + "stiffness": 0.4, + "pointA": { + "#": 8021 + }, + "pointB": { + "#": 8022 + }, + "length": 20.216, + "render": { + "#": 8023 + }, + "id": 347, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2217 + }, + "bodyB": { + "#": 2248 + }, + "stiffness": 0.4, + "pointA": { + "#": 8025 + }, + "pointB": { + "#": 8026 + }, + "length": 20.216, + "render": { + "#": 8027 + }, + "id": 348, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2248 + }, + "bodyB": { + "#": 2279 + }, + "stiffness": 0.4, + "pointA": { + "#": 8029 + }, + "pointB": { + "#": 8030 + }, + "length": 20.216, + "render": { + "#": 8031 + }, + "id": 349, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2279 + }, + "bodyB": { + "#": 2310 + }, + "stiffness": 0.4, + "pointA": { + "#": 8033 + }, + "pointB": { + "#": 8034 + }, + "length": 20.216, + "render": { + "#": 8035 + }, + "id": 350, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2310 + }, + "bodyB": { + "#": 2341 + }, + "stiffness": 0.4, + "pointA": { + "#": 8037 + }, + "pointB": { + "#": 8038 + }, + "length": 20.216, + "render": { + "#": 8039 + }, + "id": 351, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2341 + }, + "bodyB": { + "#": 2372 + }, + "stiffness": 0.4, + "pointA": { + "#": 8041 + }, + "pointB": { + "#": 8042 + }, + "length": 20.216, + "render": { + "#": 8043 + }, + "id": 352, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2372 + }, + "bodyB": { + "#": 2403 + }, + "stiffness": 0.4, + "pointA": { + "#": 8045 + }, + "pointB": { + "#": 8046 + }, + "length": 20.216, + "render": { + "#": 8047 + }, + "id": 353, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2403 + }, + "bodyB": { + "#": 2434 + }, + "stiffness": 0.4, + "pointA": { + "#": 8049 + }, + "pointB": { + "#": 8050 + }, + "length": 20.216, + "render": { + "#": 8051 + }, + "id": 354, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2434 + }, + "bodyB": { + "#": 2465 + }, + "stiffness": 0.4, + "pointA": { + "#": 8053 + }, + "pointB": { + "#": 8054 + }, + "length": 20.216, + "render": { + "#": 8055 + }, + "id": 355, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2465 + }, + "bodyB": { + "#": 2496 + }, + "stiffness": 0.4, + "pointA": { + "#": 8057 + }, + "pointB": { + "#": 8058 + }, + "length": 20.216, + "render": { + "#": 8059 + }, + "id": 356, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2496 + }, + "bodyB": { + "#": 2527 + }, + "stiffness": 0.4, + "pointA": { + "#": 8061 + }, + "pointB": { + "#": 8062 + }, + "length": 20.216, + "render": { + "#": 8063 + }, + "id": 357, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2527 + }, + "bodyB": { + "#": 2558 + }, + "stiffness": 0.4, + "pointA": { + "#": 8065 + }, + "pointB": { + "#": 8066 + }, + "length": 20.216, + "render": { + "#": 8067 + }, + "id": 358, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2558 + }, + "bodyB": { + "#": 2589 + }, + "stiffness": 0.4, + "pointA": { + "#": 8069 + }, + "pointB": { + "#": 8070 + }, + "length": 20.216, + "render": { + "#": 8071 + }, + "id": 359, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2589 + }, + "bodyB": { + "#": 2620 + }, + "stiffness": 0.4, + "pointA": { + "#": 8073 + }, + "pointB": { + "#": 8074 + }, + "length": 20.216, + "render": { + "#": 8075 + }, + "id": 360, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1411 + }, + "bodyB": { + "#": 2031 + }, + "stiffness": 0.4, + "pointA": { + "#": 8077 + }, + "pointB": { + "#": 8078 + }, + "length": 21, + "render": { + "#": 8079 + }, + "id": 361, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1442 + }, + "bodyB": { + "#": 2062 + }, + "stiffness": 0.4, + "pointA": { + "#": 8081 + }, + "pointB": { + "#": 8082 + }, + "length": 21, + "render": { + "#": 8083 + }, + "id": 362, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1473 + }, + "bodyB": { + "#": 2093 + }, + "stiffness": 0.4, + "pointA": { + "#": 8085 + }, + "pointB": { + "#": 8086 + }, + "length": 21, + "render": { + "#": 8087 + }, + "id": 363, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1504 + }, + "bodyB": { + "#": 2124 + }, + "stiffness": 0.4, + "pointA": { + "#": 8089 + }, + "pointB": { + "#": 8090 + }, + "length": 21, + "render": { + "#": 8091 + }, + "id": 364, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1535 + }, + "bodyB": { + "#": 2155 + }, + "stiffness": 0.4, + "pointA": { + "#": 8093 + }, + "pointB": { + "#": 8094 + }, + "length": 21, + "render": { + "#": 8095 + }, + "id": 365, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1566 + }, + "bodyB": { + "#": 2186 + }, + "stiffness": 0.4, + "pointA": { + "#": 8097 + }, + "pointB": { + "#": 8098 + }, + "length": 21, + "render": { + "#": 8099 + }, + "id": 366, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1597 + }, + "bodyB": { + "#": 2217 + }, + "stiffness": 0.4, + "pointA": { + "#": 8101 + }, + "pointB": { + "#": 8102 + }, + "length": 21, + "render": { + "#": 8103 + }, + "id": 367, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1628 + }, + "bodyB": { + "#": 2248 + }, + "stiffness": 0.4, + "pointA": { + "#": 8105 + }, + "pointB": { + "#": 8106 + }, + "length": 21, + "render": { + "#": 8107 + }, + "id": 368, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1659 + }, + "bodyB": { + "#": 2279 + }, + "stiffness": 0.4, + "pointA": { + "#": 8109 + }, + "pointB": { + "#": 8110 + }, + "length": 21, + "render": { + "#": 8111 + }, + "id": 369, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1690 + }, + "bodyB": { + "#": 2310 + }, + "stiffness": 0.4, + "pointA": { + "#": 8113 + }, + "pointB": { + "#": 8114 + }, + "length": 21, + "render": { + "#": 8115 + }, + "id": 370, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1721 + }, + "bodyB": { + "#": 2341 + }, + "stiffness": 0.4, + "pointA": { + "#": 8117 + }, + "pointB": { + "#": 8118 + }, + "length": 21, + "render": { + "#": 8119 + }, + "id": 371, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1752 + }, + "bodyB": { + "#": 2372 + }, + "stiffness": 0.4, + "pointA": { + "#": 8121 + }, + "pointB": { + "#": 8122 + }, + "length": 21, + "render": { + "#": 8123 + }, + "id": 372, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1783 + }, + "bodyB": { + "#": 2403 + }, + "stiffness": 0.4, + "pointA": { + "#": 8125 + }, + "pointB": { + "#": 8126 + }, + "length": 21, + "render": { + "#": 8127 + }, + "id": 373, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1814 + }, + "bodyB": { + "#": 2434 + }, + "stiffness": 0.4, + "pointA": { + "#": 8129 + }, + "pointB": { + "#": 8130 + }, + "length": 21, + "render": { + "#": 8131 + }, + "id": 374, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1845 + }, + "bodyB": { + "#": 2465 + }, + "stiffness": 0.4, + "pointA": { + "#": 8133 + }, + "pointB": { + "#": 8134 + }, + "length": 21, + "render": { + "#": 8135 + }, + "id": 375, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1876 + }, + "bodyB": { + "#": 2496 + }, + "stiffness": 0.4, + "pointA": { + "#": 8137 + }, + "pointB": { + "#": 8138 + }, + "length": 21, + "render": { + "#": 8139 + }, + "id": 376, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1907 + }, + "bodyB": { + "#": 2527 + }, + "stiffness": 0.4, + "pointA": { + "#": 8141 + }, + "pointB": { + "#": 8142 + }, + "length": 21, + "render": { + "#": 8143 + }, + "id": 377, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1938 + }, + "bodyB": { + "#": 2558 + }, + "stiffness": 0.4, + "pointA": { + "#": 8145 + }, + "pointB": { + "#": 8146 + }, + "length": 21, + "render": { + "#": 8147 + }, + "id": 378, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1969 + }, + "bodyB": { + "#": 2589 + }, + "stiffness": 0.4, + "pointA": { + "#": 8149 + }, + "pointB": { + "#": 8150 + }, + "length": 21, + "render": { + "#": 8151 + }, + "id": 379, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2000 + }, + "bodyB": { + "#": 2620 + }, + "stiffness": 0.4, + "pointA": { + "#": 8153 + }, + "pointB": { + "#": 8154 + }, + "length": 21, + "render": { + "#": 8155 + }, + "id": 380, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2651 + }, + "bodyB": { + "#": 2682 + }, + "stiffness": 0.4, + "pointA": { + "#": 8157 + }, + "pointB": { + "#": 8158 + }, + "length": 20.216, + "render": { + "#": 8159 + }, + "id": 381, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2682 + }, + "bodyB": { + "#": 2713 + }, + "stiffness": 0.4, + "pointA": { + "#": 8161 + }, + "pointB": { + "#": 8162 + }, + "length": 20.216, + "render": { + "#": 8163 + }, + "id": 382, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2713 + }, + "bodyB": { + "#": 2744 + }, + "stiffness": 0.4, + "pointA": { + "#": 8165 + }, + "pointB": { + "#": 8166 + }, + "length": 20.216, + "render": { + "#": 8167 + }, + "id": 383, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2744 + }, + "bodyB": { + "#": 2775 + }, + "stiffness": 0.4, + "pointA": { + "#": 8169 + }, + "pointB": { + "#": 8170 + }, + "length": 20.216, + "render": { + "#": 8171 + }, + "id": 384, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2775 + }, + "bodyB": { + "#": 2806 + }, + "stiffness": 0.4, + "pointA": { + "#": 8173 + }, + "pointB": { + "#": 8174 + }, + "length": 20.216, + "render": { + "#": 8175 + }, + "id": 385, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2806 + }, + "bodyB": { + "#": 2837 + }, + "stiffness": 0.4, + "pointA": { + "#": 8177 + }, + "pointB": { + "#": 8178 + }, + "length": 20.216, + "render": { + "#": 8179 + }, + "id": 386, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2837 + }, + "bodyB": { + "#": 2868 + }, + "stiffness": 0.4, + "pointA": { + "#": 8181 + }, + "pointB": { + "#": 8182 + }, + "length": 20.216, + "render": { + "#": 8183 + }, + "id": 387, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2868 + }, + "bodyB": { + "#": 2899 + }, + "stiffness": 0.4, + "pointA": { + "#": 8185 + }, + "pointB": { + "#": 8186 + }, + "length": 20.216, + "render": { + "#": 8187 + }, + "id": 388, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2899 + }, + "bodyB": { + "#": 2930 + }, + "stiffness": 0.4, + "pointA": { + "#": 8189 + }, + "pointB": { + "#": 8190 + }, + "length": 20.216, + "render": { + "#": 8191 + }, + "id": 389, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2930 + }, + "bodyB": { + "#": 2961 + }, + "stiffness": 0.4, + "pointA": { + "#": 8193 + }, + "pointB": { + "#": 8194 + }, + "length": 20.216, + "render": { + "#": 8195 + }, + "id": 390, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2961 + }, + "bodyB": { + "#": 2992 + }, + "stiffness": 0.4, + "pointA": { + "#": 8197 + }, + "pointB": { + "#": 8198 + }, + "length": 20.216, + "render": { + "#": 8199 + }, + "id": 391, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2992 + }, + "bodyB": { + "#": 3023 + }, + "stiffness": 0.4, + "pointA": { + "#": 8201 + }, + "pointB": { + "#": 8202 + }, + "length": 20.216, + "render": { + "#": 8203 + }, + "id": 392, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3023 + }, + "bodyB": { + "#": 3054 + }, + "stiffness": 0.4, + "pointA": { + "#": 8205 + }, + "pointB": { + "#": 8206 + }, + "length": 20.216, + "render": { + "#": 8207 + }, + "id": 393, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3054 + }, + "bodyB": { + "#": 3085 + }, + "stiffness": 0.4, + "pointA": { + "#": 8209 + }, + "pointB": { + "#": 8210 + }, + "length": 20.216, + "render": { + "#": 8211 + }, + "id": 394, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3085 + }, + "bodyB": { + "#": 3116 + }, + "stiffness": 0.4, + "pointA": { + "#": 8213 + }, + "pointB": { + "#": 8214 + }, + "length": 20.216, + "render": { + "#": 8215 + }, + "id": 395, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3116 + }, + "bodyB": { + "#": 3147 + }, + "stiffness": 0.4, + "pointA": { + "#": 8217 + }, + "pointB": { + "#": 8218 + }, + "length": 20.216, + "render": { + "#": 8219 + }, + "id": 396, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3147 + }, + "bodyB": { + "#": 3178 + }, + "stiffness": 0.4, + "pointA": { + "#": 8221 + }, + "pointB": { + "#": 8222 + }, + "length": 20.216, + "render": { + "#": 8223 + }, + "id": 397, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3178 + }, + "bodyB": { + "#": 3209 + }, + "stiffness": 0.4, + "pointA": { + "#": 8225 + }, + "pointB": { + "#": 8226 + }, + "length": 20.216, + "render": { + "#": 8227 + }, + "id": 398, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3209 + }, + "bodyB": { + "#": 3240 + }, + "stiffness": 0.4, + "pointA": { + "#": 8229 + }, + "pointB": { + "#": 8230 + }, + "length": 20.216, + "render": { + "#": 8231 + }, + "id": 399, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2031 + }, + "bodyB": { + "#": 2651 + }, + "stiffness": 0.4, + "pointA": { + "#": 8233 + }, + "pointB": { + "#": 8234 + }, + "length": 21, + "render": { + "#": 8235 + }, + "id": 400, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2062 + }, + "bodyB": { + "#": 2682 + }, + "stiffness": 0.4, + "pointA": { + "#": 8237 + }, + "pointB": { + "#": 8238 + }, + "length": 21, + "render": { + "#": 8239 + }, + "id": 401, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2093 + }, + "bodyB": { + "#": 2713 + }, + "stiffness": 0.4, + "pointA": { + "#": 8241 + }, + "pointB": { + "#": 8242 + }, + "length": 21, + "render": { + "#": 8243 + }, + "id": 402, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2124 + }, + "bodyB": { + "#": 2744 + }, + "stiffness": 0.4, + "pointA": { + "#": 8245 + }, + "pointB": { + "#": 8246 + }, + "length": 21, + "render": { + "#": 8247 + }, + "id": 403, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2155 + }, + "bodyB": { + "#": 2775 + }, + "stiffness": 0.4, + "pointA": { + "#": 8249 + }, + "pointB": { + "#": 8250 + }, + "length": 21, + "render": { + "#": 8251 + }, + "id": 404, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2186 + }, + "bodyB": { + "#": 2806 + }, + "stiffness": 0.4, + "pointA": { + "#": 8253 + }, + "pointB": { + "#": 8254 + }, + "length": 21, + "render": { + "#": 8255 + }, + "id": 405, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2217 + }, + "bodyB": { + "#": 2837 + }, + "stiffness": 0.4, + "pointA": { + "#": 8257 + }, + "pointB": { + "#": 8258 + }, + "length": 21, + "render": { + "#": 8259 + }, + "id": 406, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2248 + }, + "bodyB": { + "#": 2868 + }, + "stiffness": 0.4, + "pointA": { + "#": 8261 + }, + "pointB": { + "#": 8262 + }, + "length": 21, + "render": { + "#": 8263 + }, + "id": 407, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2279 + }, + "bodyB": { + "#": 2899 + }, + "stiffness": 0.4, + "pointA": { + "#": 8265 + }, + "pointB": { + "#": 8266 + }, + "length": 21, + "render": { + "#": 8267 + }, + "id": 408, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2310 + }, + "bodyB": { + "#": 2930 + }, + "stiffness": 0.4, + "pointA": { + "#": 8269 + }, + "pointB": { + "#": 8270 + }, + "length": 21, + "render": { + "#": 8271 + }, + "id": 409, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2341 + }, + "bodyB": { + "#": 2961 + }, + "stiffness": 0.4, + "pointA": { + "#": 8273 + }, + "pointB": { + "#": 8274 + }, + "length": 21, + "render": { + "#": 8275 + }, + "id": 410, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2372 + }, + "bodyB": { + "#": 2992 + }, + "stiffness": 0.4, + "pointA": { + "#": 8277 + }, + "pointB": { + "#": 8278 + }, + "length": 21, + "render": { + "#": 8279 + }, + "id": 411, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2403 + }, + "bodyB": { + "#": 3023 + }, + "stiffness": 0.4, + "pointA": { + "#": 8281 + }, + "pointB": { + "#": 8282 + }, + "length": 21, + "render": { + "#": 8283 + }, + "id": 412, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2434 + }, + "bodyB": { + "#": 3054 + }, + "stiffness": 0.4, + "pointA": { + "#": 8285 + }, + "pointB": { + "#": 8286 + }, + "length": 21, + "render": { + "#": 8287 + }, + "id": 413, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2465 + }, + "bodyB": { + "#": 3085 + }, + "stiffness": 0.4, + "pointA": { + "#": 8289 + }, + "pointB": { + "#": 8290 + }, + "length": 21, + "render": { + "#": 8291 + }, + "id": 414, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2496 + }, + "bodyB": { + "#": 3116 + }, + "stiffness": 0.4, + "pointA": { + "#": 8293 + }, + "pointB": { + "#": 8294 + }, + "length": 21, + "render": { + "#": 8295 + }, + "id": 415, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2527 + }, + "bodyB": { + "#": 3147 + }, + "stiffness": 0.4, + "pointA": { + "#": 8297 + }, + "pointB": { + "#": 8298 + }, + "length": 21, + "render": { + "#": 8299 + }, + "id": 416, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2558 + }, + "bodyB": { + "#": 3178 + }, + "stiffness": 0.4, + "pointA": { + "#": 8301 + }, + "pointB": { + "#": 8302 + }, + "length": 21, + "render": { + "#": 8303 + }, + "id": 417, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2589 + }, + "bodyB": { + "#": 3209 + }, + "stiffness": 0.4, + "pointA": { + "#": 8305 + }, + "pointB": { + "#": 8306 + }, + "length": 21, + "render": { + "#": 8307 + }, + "id": 418, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2620 + }, + "bodyB": { + "#": 3240 + }, + "stiffness": 0.4, + "pointA": { + "#": 8309 + }, + "pointB": { + "#": 8310 + }, + "length": 21, + "render": { + "#": 8311 + }, + "id": 419, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3271 + }, + "bodyB": { + "#": 3302 + }, + "stiffness": 0.4, + "pointA": { + "#": 8313 + }, + "pointB": { + "#": 8314 + }, + "length": 20.216, + "render": { + "#": 8315 + }, + "id": 420, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3302 + }, + "bodyB": { + "#": 3333 + }, + "stiffness": 0.4, + "pointA": { + "#": 8317 + }, + "pointB": { + "#": 8318 + }, + "length": 20.216, + "render": { + "#": 8319 + }, + "id": 421, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3333 + }, + "bodyB": { + "#": 3364 + }, + "stiffness": 0.4, + "pointA": { + "#": 8321 + }, + "pointB": { + "#": 8322 + }, + "length": 20.216, + "render": { + "#": 8323 + }, + "id": 422, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3364 + }, + "bodyB": { + "#": 3395 + }, + "stiffness": 0.4, + "pointA": { + "#": 8325 + }, + "pointB": { + "#": 8326 + }, + "length": 20.216, + "render": { + "#": 8327 + }, + "id": 423, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3395 + }, + "bodyB": { + "#": 3426 + }, + "stiffness": 0.4, + "pointA": { + "#": 8329 + }, + "pointB": { + "#": 8330 + }, + "length": 20.216, + "render": { + "#": 8331 + }, + "id": 424, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3426 + }, + "bodyB": { + "#": 3457 + }, + "stiffness": 0.4, + "pointA": { + "#": 8333 + }, + "pointB": { + "#": 8334 + }, + "length": 20.216, + "render": { + "#": 8335 + }, + "id": 425, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3457 + }, + "bodyB": { + "#": 3488 + }, + "stiffness": 0.4, + "pointA": { + "#": 8337 + }, + "pointB": { + "#": 8338 + }, + "length": 20.216, + "render": { + "#": 8339 + }, + "id": 426, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3488 + }, + "bodyB": { + "#": 3519 + }, + "stiffness": 0.4, + "pointA": { + "#": 8341 + }, + "pointB": { + "#": 8342 + }, + "length": 20.216, + "render": { + "#": 8343 + }, + "id": 427, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3519 + }, + "bodyB": { + "#": 3550 + }, + "stiffness": 0.4, + "pointA": { + "#": 8345 + }, + "pointB": { + "#": 8346 + }, + "length": 20.216, + "render": { + "#": 8347 + }, + "id": 428, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3550 + }, + "bodyB": { + "#": 3581 + }, + "stiffness": 0.4, + "pointA": { + "#": 8349 + }, + "pointB": { + "#": 8350 + }, + "length": 20.216, + "render": { + "#": 8351 + }, + "id": 429, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3581 + }, + "bodyB": { + "#": 3612 + }, + "stiffness": 0.4, + "pointA": { + "#": 8353 + }, + "pointB": { + "#": 8354 + }, + "length": 20.216, + "render": { + "#": 8355 + }, + "id": 430, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3612 + }, + "bodyB": { + "#": 3643 + }, + "stiffness": 0.4, + "pointA": { + "#": 8357 + }, + "pointB": { + "#": 8358 + }, + "length": 20.216, + "render": { + "#": 8359 + }, + "id": 431, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3643 + }, + "bodyB": { + "#": 3674 + }, + "stiffness": 0.4, + "pointA": { + "#": 8361 + }, + "pointB": { + "#": 8362 + }, + "length": 20.216, + "render": { + "#": 8363 + }, + "id": 432, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3674 + }, + "bodyB": { + "#": 3705 + }, + "stiffness": 0.4, + "pointA": { + "#": 8365 + }, + "pointB": { + "#": 8366 + }, + "length": 20.216, + "render": { + "#": 8367 + }, + "id": 433, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3705 + }, + "bodyB": { + "#": 3736 + }, + "stiffness": 0.4, + "pointA": { + "#": 8369 + }, + "pointB": { + "#": 8370 + }, + "length": 20.216, + "render": { + "#": 8371 + }, + "id": 434, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3736 + }, + "bodyB": { + "#": 3767 + }, + "stiffness": 0.4, + "pointA": { + "#": 8373 + }, + "pointB": { + "#": 8374 + }, + "length": 20.216, + "render": { + "#": 8375 + }, + "id": 435, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3767 + }, + "bodyB": { + "#": 3798 + }, + "stiffness": 0.4, + "pointA": { + "#": 8377 + }, + "pointB": { + "#": 8378 + }, + "length": 20.216, + "render": { + "#": 8379 + }, + "id": 436, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3798 + }, + "bodyB": { + "#": 3829 + }, + "stiffness": 0.4, + "pointA": { + "#": 8381 + }, + "pointB": { + "#": 8382 + }, + "length": 20.216, + "render": { + "#": 8383 + }, + "id": 437, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3829 + }, + "bodyB": { + "#": 3860 + }, + "stiffness": 0.4, + "pointA": { + "#": 8385 + }, + "pointB": { + "#": 8386 + }, + "length": 20.216, + "render": { + "#": 8387 + }, + "id": 438, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2651 + }, + "bodyB": { + "#": 3271 + }, + "stiffness": 0.4, + "pointA": { + "#": 8389 + }, + "pointB": { + "#": 8390 + }, + "length": 21, + "render": { + "#": 8391 + }, + "id": 439, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2682 + }, + "bodyB": { + "#": 3302 + }, + "stiffness": 0.4, + "pointA": { + "#": 8393 + }, + "pointB": { + "#": 8394 + }, + "length": 21, + "render": { + "#": 8395 + }, + "id": 440, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2713 + }, + "bodyB": { + "#": 3333 + }, + "stiffness": 0.4, + "pointA": { + "#": 8397 + }, + "pointB": { + "#": 8398 + }, + "length": 21, + "render": { + "#": 8399 + }, + "id": 441, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2744 + }, + "bodyB": { + "#": 3364 + }, + "stiffness": 0.4, + "pointA": { + "#": 8401 + }, + "pointB": { + "#": 8402 + }, + "length": 21, + "render": { + "#": 8403 + }, + "id": 442, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2775 + }, + "bodyB": { + "#": 3395 + }, + "stiffness": 0.4, + "pointA": { + "#": 8405 + }, + "pointB": { + "#": 8406 + }, + "length": 21, + "render": { + "#": 8407 + }, + "id": 443, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2806 + }, + "bodyB": { + "#": 3426 + }, + "stiffness": 0.4, + "pointA": { + "#": 8409 + }, + "pointB": { + "#": 8410 + }, + "length": 21, + "render": { + "#": 8411 + }, + "id": 444, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2837 + }, + "bodyB": { + "#": 3457 + }, + "stiffness": 0.4, + "pointA": { + "#": 8413 + }, + "pointB": { + "#": 8414 + }, + "length": 21, + "render": { + "#": 8415 + }, + "id": 445, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2868 + }, + "bodyB": { + "#": 3488 + }, + "stiffness": 0.4, + "pointA": { + "#": 8417 + }, + "pointB": { + "#": 8418 + }, + "length": 21, + "render": { + "#": 8419 + }, + "id": 446, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2899 + }, + "bodyB": { + "#": 3519 + }, + "stiffness": 0.4, + "pointA": { + "#": 8421 + }, + "pointB": { + "#": 8422 + }, + "length": 21, + "render": { + "#": 8423 + }, + "id": 447, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2930 + }, + "bodyB": { + "#": 3550 + }, + "stiffness": 0.4, + "pointA": { + "#": 8425 + }, + "pointB": { + "#": 8426 + }, + "length": 21, + "render": { + "#": 8427 + }, + "id": 448, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2961 + }, + "bodyB": { + "#": 3581 + }, + "stiffness": 0.4, + "pointA": { + "#": 8429 + }, + "pointB": { + "#": 8430 + }, + "length": 21, + "render": { + "#": 8431 + }, + "id": 449, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2992 + }, + "bodyB": { + "#": 3612 + }, + "stiffness": 0.4, + "pointA": { + "#": 8433 + }, + "pointB": { + "#": 8434 + }, + "length": 21, + "render": { + "#": 8435 + }, + "id": 450, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3023 + }, + "bodyB": { + "#": 3643 + }, + "stiffness": 0.4, + "pointA": { + "#": 8437 + }, + "pointB": { + "#": 8438 + }, + "length": 21, + "render": { + "#": 8439 + }, + "id": 451, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3054 + }, + "bodyB": { + "#": 3674 + }, + "stiffness": 0.4, + "pointA": { + "#": 8441 + }, + "pointB": { + "#": 8442 + }, + "length": 21, + "render": { + "#": 8443 + }, + "id": 452, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3085 + }, + "bodyB": { + "#": 3705 + }, + "stiffness": 0.4, + "pointA": { + "#": 8445 + }, + "pointB": { + "#": 8446 + }, + "length": 21, + "render": { + "#": 8447 + }, + "id": 453, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3116 + }, + "bodyB": { + "#": 3736 + }, + "stiffness": 0.4, + "pointA": { + "#": 8449 + }, + "pointB": { + "#": 8450 + }, + "length": 21, + "render": { + "#": 8451 + }, + "id": 454, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3147 + }, + "bodyB": { + "#": 3767 + }, + "stiffness": 0.4, + "pointA": { + "#": 8453 + }, + "pointB": { + "#": 8454 + }, + "length": 21, + "render": { + "#": 8455 + }, + "id": 455, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3178 + }, + "bodyB": { + "#": 3798 + }, + "stiffness": 0.4, + "pointA": { + "#": 8457 + }, + "pointB": { + "#": 8458 + }, + "length": 21, + "render": { + "#": 8459 + }, + "id": 456, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3209 + }, + "bodyB": { + "#": 3829 + }, + "stiffness": 0.4, + "pointA": { + "#": 8461 + }, + "pointB": { + "#": 8462 + }, + "length": 21, + "render": { + "#": 8463 + }, + "id": 457, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3240 + }, + "bodyB": { + "#": 3860 + }, + "stiffness": 0.4, + "pointA": { + "#": 8465 + }, + "pointB": { + "#": 8466 + }, + "length": 21, + "render": { + "#": 8467 + }, + "id": 458, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3891 + }, + "bodyB": { + "#": 3922 + }, + "stiffness": 0.4, + "pointA": { + "#": 8469 + }, + "pointB": { + "#": 8470 + }, + "length": 20.216, + "render": { + "#": 8471 + }, + "id": 459, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3922 + }, + "bodyB": { + "#": 3953 + }, + "stiffness": 0.4, + "pointA": { + "#": 8473 + }, + "pointB": { + "#": 8474 + }, + "length": 20.216, + "render": { + "#": 8475 + }, + "id": 460, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3953 + }, + "bodyB": { + "#": 3984 + }, + "stiffness": 0.4, + "pointA": { + "#": 8477 + }, + "pointB": { + "#": 8478 + }, + "length": 20.216, + "render": { + "#": 8479 + }, + "id": 461, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3984 + }, + "bodyB": { + "#": 4015 + }, + "stiffness": 0.4, + "pointA": { + "#": 8481 + }, + "pointB": { + "#": 8482 + }, + "length": 20.216, + "render": { + "#": 8483 + }, + "id": 462, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4015 + }, + "bodyB": { + "#": 4046 + }, + "stiffness": 0.4, + "pointA": { + "#": 8485 + }, + "pointB": { + "#": 8486 + }, + "length": 20.216, + "render": { + "#": 8487 + }, + "id": 463, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4046 + }, + "bodyB": { + "#": 4077 + }, + "stiffness": 0.4, + "pointA": { + "#": 8489 + }, + "pointB": { + "#": 8490 + }, + "length": 20.216, + "render": { + "#": 8491 + }, + "id": 464, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4077 + }, + "bodyB": { + "#": 4108 + }, + "stiffness": 0.4, + "pointA": { + "#": 8493 + }, + "pointB": { + "#": 8494 + }, + "length": 20.216, + "render": { + "#": 8495 + }, + "id": 465, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4108 + }, + "bodyB": { + "#": 4139 + }, + "stiffness": 0.4, + "pointA": { + "#": 8497 + }, + "pointB": { + "#": 8498 + }, + "length": 20.216, + "render": { + "#": 8499 + }, + "id": 466, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4139 + }, + "bodyB": { + "#": 4170 + }, + "stiffness": 0.4, + "pointA": { + "#": 8501 + }, + "pointB": { + "#": 8502 + }, + "length": 20.216, + "render": { + "#": 8503 + }, + "id": 467, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4170 + }, + "bodyB": { + "#": 4201 + }, + "stiffness": 0.4, + "pointA": { + "#": 8505 + }, + "pointB": { + "#": 8506 + }, + "length": 20.216, + "render": { + "#": 8507 + }, + "id": 468, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4201 + }, + "bodyB": { + "#": 4232 + }, + "stiffness": 0.4, + "pointA": { + "#": 8509 + }, + "pointB": { + "#": 8510 + }, + "length": 20.216, + "render": { + "#": 8511 + }, + "id": 469, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4232 + }, + "bodyB": { + "#": 4263 + }, + "stiffness": 0.4, + "pointA": { + "#": 8513 + }, + "pointB": { + "#": 8514 + }, + "length": 20.216, + "render": { + "#": 8515 + }, + "id": 470, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4263 + }, + "bodyB": { + "#": 4294 + }, + "stiffness": 0.4, + "pointA": { + "#": 8517 + }, + "pointB": { + "#": 8518 + }, + "length": 20.216, + "render": { + "#": 8519 + }, + "id": 471, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4294 + }, + "bodyB": { + "#": 4325 + }, + "stiffness": 0.4, + "pointA": { + "#": 8521 + }, + "pointB": { + "#": 8522 + }, + "length": 20.216, + "render": { + "#": 8523 + }, + "id": 472, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4325 + }, + "bodyB": { + "#": 4356 + }, + "stiffness": 0.4, + "pointA": { + "#": 8525 + }, + "pointB": { + "#": 8526 + }, + "length": 20.216, + "render": { + "#": 8527 + }, + "id": 473, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4356 + }, + "bodyB": { + "#": 4387 + }, + "stiffness": 0.4, + "pointA": { + "#": 8529 + }, + "pointB": { + "#": 8530 + }, + "length": 20.216, + "render": { + "#": 8531 + }, + "id": 474, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4387 + }, + "bodyB": { + "#": 4418 + }, + "stiffness": 0.4, + "pointA": { + "#": 8533 + }, + "pointB": { + "#": 8534 + }, + "length": 20.216, + "render": { + "#": 8535 + }, + "id": 475, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4418 + }, + "bodyB": { + "#": 4449 + }, + "stiffness": 0.4, + "pointA": { + "#": 8537 + }, + "pointB": { + "#": 8538 + }, + "length": 20.216, + "render": { + "#": 8539 + }, + "id": 476, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4449 + }, + "bodyB": { + "#": 4480 + }, + "stiffness": 0.4, + "pointA": { + "#": 8541 + }, + "pointB": { + "#": 8542 + }, + "length": 20.216, + "render": { + "#": 8543 + }, + "id": 477, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3271 + }, + "bodyB": { + "#": 3891 + }, + "stiffness": 0.4, + "pointA": { + "#": 8545 + }, + "pointB": { + "#": 8546 + }, + "length": 21, + "render": { + "#": 8547 + }, + "id": 478, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3302 + }, + "bodyB": { + "#": 3922 + }, + "stiffness": 0.4, + "pointA": { + "#": 8549 + }, + "pointB": { + "#": 8550 + }, + "length": 21, + "render": { + "#": 8551 + }, + "id": 479, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3333 + }, + "bodyB": { + "#": 3953 + }, + "stiffness": 0.4, + "pointA": { + "#": 8553 + }, + "pointB": { + "#": 8554 + }, + "length": 21, + "render": { + "#": 8555 + }, + "id": 480, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3364 + }, + "bodyB": { + "#": 3984 + }, + "stiffness": 0.4, + "pointA": { + "#": 8557 + }, + "pointB": { + "#": 8558 + }, + "length": 21, + "render": { + "#": 8559 + }, + "id": 481, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3395 + }, + "bodyB": { + "#": 4015 + }, + "stiffness": 0.4, + "pointA": { + "#": 8561 + }, + "pointB": { + "#": 8562 + }, + "length": 21, + "render": { + "#": 8563 + }, + "id": 482, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3426 + }, + "bodyB": { + "#": 4046 + }, + "stiffness": 0.4, + "pointA": { + "#": 8565 + }, + "pointB": { + "#": 8566 + }, + "length": 21, + "render": { + "#": 8567 + }, + "id": 483, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3457 + }, + "bodyB": { + "#": 4077 + }, + "stiffness": 0.4, + "pointA": { + "#": 8569 + }, + "pointB": { + "#": 8570 + }, + "length": 21, + "render": { + "#": 8571 + }, + "id": 484, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3488 + }, + "bodyB": { + "#": 4108 + }, + "stiffness": 0.4, + "pointA": { + "#": 8573 + }, + "pointB": { + "#": 8574 + }, + "length": 21, + "render": { + "#": 8575 + }, + "id": 485, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3519 + }, + "bodyB": { + "#": 4139 + }, + "stiffness": 0.4, + "pointA": { + "#": 8577 + }, + "pointB": { + "#": 8578 + }, + "length": 21, + "render": { + "#": 8579 + }, + "id": 486, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3550 + }, + "bodyB": { + "#": 4170 + }, + "stiffness": 0.4, + "pointA": { + "#": 8581 + }, + "pointB": { + "#": 8582 + }, + "length": 21, + "render": { + "#": 8583 + }, + "id": 487, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3581 + }, + "bodyB": { + "#": 4201 + }, + "stiffness": 0.4, + "pointA": { + "#": 8585 + }, + "pointB": { + "#": 8586 + }, + "length": 21, + "render": { + "#": 8587 + }, + "id": 488, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3612 + }, + "bodyB": { + "#": 4232 + }, + "stiffness": 0.4, + "pointA": { + "#": 8589 + }, + "pointB": { + "#": 8590 + }, + "length": 21, + "render": { + "#": 8591 + }, + "id": 489, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3643 + }, + "bodyB": { + "#": 4263 + }, + "stiffness": 0.4, + "pointA": { + "#": 8593 + }, + "pointB": { + "#": 8594 + }, + "length": 21, + "render": { + "#": 8595 + }, + "id": 490, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3674 + }, + "bodyB": { + "#": 4294 + }, + "stiffness": 0.4, + "pointA": { + "#": 8597 + }, + "pointB": { + "#": 8598 + }, + "length": 21, + "render": { + "#": 8599 + }, + "id": 491, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3705 + }, + "bodyB": { + "#": 4325 + }, + "stiffness": 0.4, + "pointA": { + "#": 8601 + }, + "pointB": { + "#": 8602 + }, + "length": 21, + "render": { + "#": 8603 + }, + "id": 492, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3736 + }, + "bodyB": { + "#": 4356 + }, + "stiffness": 0.4, + "pointA": { + "#": 8605 + }, + "pointB": { + "#": 8606 + }, + "length": 21, + "render": { + "#": 8607 + }, + "id": 493, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3767 + }, + "bodyB": { + "#": 4387 + }, + "stiffness": 0.4, + "pointA": { + "#": 8609 + }, + "pointB": { + "#": 8610 + }, + "length": 21, + "render": { + "#": 8611 + }, + "id": 494, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3798 + }, + "bodyB": { + "#": 4418 + }, + "stiffness": 0.4, + "pointA": { + "#": 8613 + }, + "pointB": { + "#": 8614 + }, + "length": 21, + "render": { + "#": 8615 + }, + "id": 495, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3829 + }, + "bodyB": { + "#": 4449 + }, + "stiffness": 0.4, + "pointA": { + "#": 8617 + }, + "pointB": { + "#": 8618 + }, + "length": 21, + "render": { + "#": 8619 + }, + "id": 496, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3860 + }, + "bodyB": { + "#": 4480 + }, + "stiffness": 0.4, + "pointA": { + "#": 8621 + }, + "pointB": { + "#": 8622 + }, + "length": 21, + "render": { + "#": 8623 + }, + "id": 497, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4511 + }, + "bodyB": { + "#": 4542 + }, + "stiffness": 0.4, + "pointA": { + "#": 8625 + }, + "pointB": { + "#": 8626 + }, + "length": 20.216, + "render": { + "#": 8627 + }, + "id": 498, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4542 + }, + "bodyB": { + "#": 4573 + }, + "stiffness": 0.4, + "pointA": { + "#": 8629 + }, + "pointB": { + "#": 8630 + }, + "length": 20.216, + "render": { + "#": 8631 + }, + "id": 499, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4573 + }, + "bodyB": { + "#": 4604 + }, + "stiffness": 0.4, + "pointA": { + "#": 8633 + }, + "pointB": { + "#": 8634 + }, + "length": 20.216, + "render": { + "#": 8635 + }, + "id": 500, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4604 + }, + "bodyB": { + "#": 4635 + }, + "stiffness": 0.4, + "pointA": { + "#": 8637 + }, + "pointB": { + "#": 8638 + }, + "length": 20.216, + "render": { + "#": 8639 + }, + "id": 501, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4635 + }, + "bodyB": { + "#": 4666 + }, + "stiffness": 0.4, + "pointA": { + "#": 8641 + }, + "pointB": { + "#": 8642 + }, + "length": 20.216, + "render": { + "#": 8643 + }, + "id": 502, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4666 + }, + "bodyB": { + "#": 4697 + }, + "stiffness": 0.4, + "pointA": { + "#": 8645 + }, + "pointB": { + "#": 8646 + }, + "length": 20.216, + "render": { + "#": 8647 + }, + "id": 503, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4697 + }, + "bodyB": { + "#": 4728 + }, + "stiffness": 0.4, + "pointA": { + "#": 8649 + }, + "pointB": { + "#": 8650 + }, + "length": 20.216, + "render": { + "#": 8651 + }, + "id": 504, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4728 + }, + "bodyB": { + "#": 4759 + }, + "stiffness": 0.4, + "pointA": { + "#": 8653 + }, + "pointB": { + "#": 8654 + }, + "length": 20.216, + "render": { + "#": 8655 + }, + "id": 505, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4759 + }, + "bodyB": { + "#": 4790 + }, + "stiffness": 0.4, + "pointA": { + "#": 8657 + }, + "pointB": { + "#": 8658 + }, + "length": 20.216, + "render": { + "#": 8659 + }, + "id": 506, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4790 + }, + "bodyB": { + "#": 4821 + }, + "stiffness": 0.4, + "pointA": { + "#": 8661 + }, + "pointB": { + "#": 8662 + }, + "length": 20.216, + "render": { + "#": 8663 + }, + "id": 507, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4821 + }, + "bodyB": { + "#": 4852 + }, + "stiffness": 0.4, + "pointA": { + "#": 8665 + }, + "pointB": { + "#": 8666 + }, + "length": 20.216, + "render": { + "#": 8667 + }, + "id": 508, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4852 + }, + "bodyB": { + "#": 4883 + }, + "stiffness": 0.4, + "pointA": { + "#": 8669 + }, + "pointB": { + "#": 8670 + }, + "length": 20.216, + "render": { + "#": 8671 + }, + "id": 509, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4883 + }, + "bodyB": { + "#": 4914 + }, + "stiffness": 0.4, + "pointA": { + "#": 8673 + }, + "pointB": { + "#": 8674 + }, + "length": 20.216, + "render": { + "#": 8675 + }, + "id": 510, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4914 + }, + "bodyB": { + "#": 4945 + }, + "stiffness": 0.4, + "pointA": { + "#": 8677 + }, + "pointB": { + "#": 8678 + }, + "length": 20.216, + "render": { + "#": 8679 + }, + "id": 511, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4945 + }, + "bodyB": { + "#": 4976 + }, + "stiffness": 0.4, + "pointA": { + "#": 8681 + }, + "pointB": { + "#": 8682 + }, + "length": 20.216, + "render": { + "#": 8683 + }, + "id": 512, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4976 + }, + "bodyB": { + "#": 5007 + }, + "stiffness": 0.4, + "pointA": { + "#": 8685 + }, + "pointB": { + "#": 8686 + }, + "length": 20.216, + "render": { + "#": 8687 + }, + "id": 513, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5007 + }, + "bodyB": { + "#": 5038 + }, + "stiffness": 0.4, + "pointA": { + "#": 8689 + }, + "pointB": { + "#": 8690 + }, + "length": 20.216, + "render": { + "#": 8691 + }, + "id": 514, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5038 + }, + "bodyB": { + "#": 5069 + }, + "stiffness": 0.4, + "pointA": { + "#": 8693 + }, + "pointB": { + "#": 8694 + }, + "length": 20.216, + "render": { + "#": 8695 + }, + "id": 515, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5069 + }, + "bodyB": { + "#": 5100 + }, + "stiffness": 0.4, + "pointA": { + "#": 8697 + }, + "pointB": { + "#": 8698 + }, + "length": 20.216, + "render": { + "#": 8699 + }, + "id": 516, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3891 + }, + "bodyB": { + "#": 4511 + }, + "stiffness": 0.4, + "pointA": { + "#": 8701 + }, + "pointB": { + "#": 8702 + }, + "length": 21, + "render": { + "#": 8703 + }, + "id": 517, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3922 + }, + "bodyB": { + "#": 4542 + }, + "stiffness": 0.4, + "pointA": { + "#": 8705 + }, + "pointB": { + "#": 8706 + }, + "length": 21, + "render": { + "#": 8707 + }, + "id": 518, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3953 + }, + "bodyB": { + "#": 4573 + }, + "stiffness": 0.4, + "pointA": { + "#": 8709 + }, + "pointB": { + "#": 8710 + }, + "length": 21, + "render": { + "#": 8711 + }, + "id": 519, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3984 + }, + "bodyB": { + "#": 4604 + }, + "stiffness": 0.4, + "pointA": { + "#": 8713 + }, + "pointB": { + "#": 8714 + }, + "length": 21, + "render": { + "#": 8715 + }, + "id": 520, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4015 + }, + "bodyB": { + "#": 4635 + }, + "stiffness": 0.4, + "pointA": { + "#": 8717 + }, + "pointB": { + "#": 8718 + }, + "length": 21, + "render": { + "#": 8719 + }, + "id": 521, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4046 + }, + "bodyB": { + "#": 4666 + }, + "stiffness": 0.4, + "pointA": { + "#": 8721 + }, + "pointB": { + "#": 8722 + }, + "length": 21, + "render": { + "#": 8723 + }, + "id": 522, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4077 + }, + "bodyB": { + "#": 4697 + }, + "stiffness": 0.4, + "pointA": { + "#": 8725 + }, + "pointB": { + "#": 8726 + }, + "length": 21, + "render": { + "#": 8727 + }, + "id": 523, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4108 + }, + "bodyB": { + "#": 4728 + }, + "stiffness": 0.4, + "pointA": { + "#": 8729 + }, + "pointB": { + "#": 8730 + }, + "length": 21, + "render": { + "#": 8731 + }, + "id": 524, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4139 + }, + "bodyB": { + "#": 4759 + }, + "stiffness": 0.4, + "pointA": { + "#": 8733 + }, + "pointB": { + "#": 8734 + }, + "length": 21, + "render": { + "#": 8735 + }, + "id": 525, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4170 + }, + "bodyB": { + "#": 4790 + }, + "stiffness": 0.4, + "pointA": { + "#": 8737 + }, + "pointB": { + "#": 8738 + }, + "length": 21, + "render": { + "#": 8739 + }, + "id": 526, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4201 + }, + "bodyB": { + "#": 4821 + }, + "stiffness": 0.4, + "pointA": { + "#": 8741 + }, + "pointB": { + "#": 8742 + }, + "length": 21, + "render": { + "#": 8743 + }, + "id": 527, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4232 + }, + "bodyB": { + "#": 4852 + }, + "stiffness": 0.4, + "pointA": { + "#": 8745 + }, + "pointB": { + "#": 8746 + }, + "length": 21, + "render": { + "#": 8747 + }, + "id": 528, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4263 + }, + "bodyB": { + "#": 4883 + }, + "stiffness": 0.4, + "pointA": { + "#": 8749 + }, + "pointB": { + "#": 8750 + }, + "length": 21, + "render": { + "#": 8751 + }, + "id": 529, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4294 + }, + "bodyB": { + "#": 4914 + }, + "stiffness": 0.4, + "pointA": { + "#": 8753 + }, + "pointB": { + "#": 8754 + }, + "length": 21, + "render": { + "#": 8755 + }, + "id": 530, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4325 + }, + "bodyB": { + "#": 4945 + }, + "stiffness": 0.4, + "pointA": { + "#": 8757 + }, + "pointB": { + "#": 8758 + }, + "length": 21, + "render": { + "#": 8759 + }, + "id": 531, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4356 + }, + "bodyB": { + "#": 4976 + }, + "stiffness": 0.4, + "pointA": { + "#": 8761 + }, + "pointB": { + "#": 8762 + }, + "length": 21, + "render": { + "#": 8763 + }, + "id": 532, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4387 + }, + "bodyB": { + "#": 5007 + }, + "stiffness": 0.4, + "pointA": { + "#": 8765 + }, + "pointB": { + "#": 8766 + }, + "length": 21, + "render": { + "#": 8767 + }, + "id": 533, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4418 + }, + "bodyB": { + "#": 5038 + }, + "stiffness": 0.4, + "pointA": { + "#": 8769 + }, + "pointB": { + "#": 8770 + }, + "length": 21, + "render": { + "#": 8771 + }, + "id": 534, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4449 + }, + "bodyB": { + "#": 5069 + }, + "stiffness": 0.4, + "pointA": { + "#": 8773 + }, + "pointB": { + "#": 8774 + }, + "length": 21, + "render": { + "#": 8775 + }, + "id": 535, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4480 + }, + "bodyB": { + "#": 5100 + }, + "stiffness": 0.4, + "pointA": { + "#": 8777 + }, + "pointB": { + "#": 8778 + }, + "length": 21, + "render": { + "#": 8779 + }, + "id": 536, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5131 + }, + "bodyB": { + "#": 5162 + }, + "stiffness": 0.4, + "pointA": { + "#": 8781 + }, + "pointB": { + "#": 8782 + }, + "length": 20.216, + "render": { + "#": 8783 + }, + "id": 537, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5162 + }, + "bodyB": { + "#": 5193 + }, + "stiffness": 0.4, + "pointA": { + "#": 8785 + }, + "pointB": { + "#": 8786 + }, + "length": 20.216, + "render": { + "#": 8787 + }, + "id": 538, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5193 + }, + "bodyB": { + "#": 5224 + }, + "stiffness": 0.4, + "pointA": { + "#": 8789 + }, + "pointB": { + "#": 8790 + }, + "length": 20.216, + "render": { + "#": 8791 + }, + "id": 539, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5224 + }, + "bodyB": { + "#": 5255 + }, + "stiffness": 0.4, + "pointA": { + "#": 8793 + }, + "pointB": { + "#": 8794 + }, + "length": 20.216, + "render": { + "#": 8795 + }, + "id": 540, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5255 + }, + "bodyB": { + "#": 5286 + }, + "stiffness": 0.4, + "pointA": { + "#": 8797 + }, + "pointB": { + "#": 8798 + }, + "length": 20.216, + "render": { + "#": 8799 + }, + "id": 541, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5286 + }, + "bodyB": { + "#": 5317 + }, + "stiffness": 0.4, + "pointA": { + "#": 8801 + }, + "pointB": { + "#": 8802 + }, + "length": 20.216, + "render": { + "#": 8803 + }, + "id": 542, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5317 + }, + "bodyB": { + "#": 5348 + }, + "stiffness": 0.4, + "pointA": { + "#": 8805 + }, + "pointB": { + "#": 8806 + }, + "length": 20.216, + "render": { + "#": 8807 + }, + "id": 543, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5348 + }, + "bodyB": { + "#": 5379 + }, + "stiffness": 0.4, + "pointA": { + "#": 8809 + }, + "pointB": { + "#": 8810 + }, + "length": 20.216, + "render": { + "#": 8811 + }, + "id": 544, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5379 + }, + "bodyB": { + "#": 5410 + }, + "stiffness": 0.4, + "pointA": { + "#": 8813 + }, + "pointB": { + "#": 8814 + }, + "length": 20.216, + "render": { + "#": 8815 + }, + "id": 545, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5410 + }, + "bodyB": { + "#": 5441 + }, + "stiffness": 0.4, + "pointA": { + "#": 8817 + }, + "pointB": { + "#": 8818 + }, + "length": 20.216, + "render": { + "#": 8819 + }, + "id": 546, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5441 + }, + "bodyB": { + "#": 5472 + }, + "stiffness": 0.4, + "pointA": { + "#": 8821 + }, + "pointB": { + "#": 8822 + }, + "length": 20.216, + "render": { + "#": 8823 + }, + "id": 547, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5472 + }, + "bodyB": { + "#": 5503 + }, + "stiffness": 0.4, + "pointA": { + "#": 8825 + }, + "pointB": { + "#": 8826 + }, + "length": 20.216, + "render": { + "#": 8827 + }, + "id": 548, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5503 + }, + "bodyB": { + "#": 5534 + }, + "stiffness": 0.4, + "pointA": { + "#": 8829 + }, + "pointB": { + "#": 8830 + }, + "length": 20.216, + "render": { + "#": 8831 + }, + "id": 549, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5534 + }, + "bodyB": { + "#": 5565 + }, + "stiffness": 0.4, + "pointA": { + "#": 8833 + }, + "pointB": { + "#": 8834 + }, + "length": 20.216, + "render": { + "#": 8835 + }, + "id": 550, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5565 + }, + "bodyB": { + "#": 5596 + }, + "stiffness": 0.4, + "pointA": { + "#": 8837 + }, + "pointB": { + "#": 8838 + }, + "length": 20.216, + "render": { + "#": 8839 + }, + "id": 551, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5596 + }, + "bodyB": { + "#": 5627 + }, + "stiffness": 0.4, + "pointA": { + "#": 8841 + }, + "pointB": { + "#": 8842 + }, + "length": 20.216, + "render": { + "#": 8843 + }, + "id": 552, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5627 + }, + "bodyB": { + "#": 5658 + }, + "stiffness": 0.4, + "pointA": { + "#": 8845 + }, + "pointB": { + "#": 8846 + }, + "length": 20.216, + "render": { + "#": 8847 + }, + "id": 553, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5658 + }, + "bodyB": { + "#": 5689 + }, + "stiffness": 0.4, + "pointA": { + "#": 8849 + }, + "pointB": { + "#": 8850 + }, + "length": 20.216, + "render": { + "#": 8851 + }, + "id": 554, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5689 + }, + "bodyB": { + "#": 5720 + }, + "stiffness": 0.4, + "pointA": { + "#": 8853 + }, + "pointB": { + "#": 8854 + }, + "length": 20.216, + "render": { + "#": 8855 + }, + "id": 555, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4511 + }, + "bodyB": { + "#": 5131 + }, + "stiffness": 0.4, + "pointA": { + "#": 8857 + }, + "pointB": { + "#": 8858 + }, + "length": 21, + "render": { + "#": 8859 + }, + "id": 556, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4542 + }, + "bodyB": { + "#": 5162 + }, + "stiffness": 0.4, + "pointA": { + "#": 8861 + }, + "pointB": { + "#": 8862 + }, + "length": 21, + "render": { + "#": 8863 + }, + "id": 557, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4573 + }, + "bodyB": { + "#": 5193 + }, + "stiffness": 0.4, + "pointA": { + "#": 8865 + }, + "pointB": { + "#": 8866 + }, + "length": 21, + "render": { + "#": 8867 + }, + "id": 558, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4604 + }, + "bodyB": { + "#": 5224 + }, + "stiffness": 0.4, + "pointA": { + "#": 8869 + }, + "pointB": { + "#": 8870 + }, + "length": 21, + "render": { + "#": 8871 + }, + "id": 559, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4635 + }, + "bodyB": { + "#": 5255 + }, + "stiffness": 0.4, + "pointA": { + "#": 8873 + }, + "pointB": { + "#": 8874 + }, + "length": 21, + "render": { + "#": 8875 + }, + "id": 560, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4666 + }, + "bodyB": { + "#": 5286 + }, + "stiffness": 0.4, + "pointA": { + "#": 8877 + }, + "pointB": { + "#": 8878 + }, + "length": 21, + "render": { + "#": 8879 + }, + "id": 561, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4697 + }, + "bodyB": { + "#": 5317 + }, + "stiffness": 0.4, + "pointA": { + "#": 8881 + }, + "pointB": { + "#": 8882 + }, + "length": 21, + "render": { + "#": 8883 + }, + "id": 562, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4728 + }, + "bodyB": { + "#": 5348 + }, + "stiffness": 0.4, + "pointA": { + "#": 8885 + }, + "pointB": { + "#": 8886 + }, + "length": 21, + "render": { + "#": 8887 + }, + "id": 563, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4759 + }, + "bodyB": { + "#": 5379 + }, + "stiffness": 0.4, + "pointA": { + "#": 8889 + }, + "pointB": { + "#": 8890 + }, + "length": 21, + "render": { + "#": 8891 + }, + "id": 564, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4790 + }, + "bodyB": { + "#": 5410 + }, + "stiffness": 0.4, + "pointA": { + "#": 8893 + }, + "pointB": { + "#": 8894 + }, + "length": 21, + "render": { + "#": 8895 + }, + "id": 565, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4821 + }, + "bodyB": { + "#": 5441 + }, + "stiffness": 0.4, + "pointA": { + "#": 8897 + }, + "pointB": { + "#": 8898 + }, + "length": 21, + "render": { + "#": 8899 + }, + "id": 566, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4852 + }, + "bodyB": { + "#": 5472 + }, + "stiffness": 0.4, + "pointA": { + "#": 8901 + }, + "pointB": { + "#": 8902 + }, + "length": 21, + "render": { + "#": 8903 + }, + "id": 567, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4883 + }, + "bodyB": { + "#": 5503 + }, + "stiffness": 0.4, + "pointA": { + "#": 8905 + }, + "pointB": { + "#": 8906 + }, + "length": 21, + "render": { + "#": 8907 + }, + "id": 568, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4914 + }, + "bodyB": { + "#": 5534 + }, + "stiffness": 0.4, + "pointA": { + "#": 8909 + }, + "pointB": { + "#": 8910 + }, + "length": 21, + "render": { + "#": 8911 + }, + "id": 569, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4945 + }, + "bodyB": { + "#": 5565 + }, + "stiffness": 0.4, + "pointA": { + "#": 8913 + }, + "pointB": { + "#": 8914 + }, + "length": 21, + "render": { + "#": 8915 + }, + "id": 570, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4976 + }, + "bodyB": { + "#": 5596 + }, + "stiffness": 0.4, + "pointA": { + "#": 8917 + }, + "pointB": { + "#": 8918 + }, + "length": 21, + "render": { + "#": 8919 + }, + "id": 571, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5007 + }, + "bodyB": { + "#": 5627 + }, + "stiffness": 0.4, + "pointA": { + "#": 8921 + }, + "pointB": { + "#": 8922 + }, + "length": 21, + "render": { + "#": 8923 + }, + "id": 572, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5038 + }, + "bodyB": { + "#": 5658 + }, + "stiffness": 0.4, + "pointA": { + "#": 8925 + }, + "pointB": { + "#": 8926 + }, + "length": 21, + "render": { + "#": 8927 + }, + "id": 573, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5069 + }, + "bodyB": { + "#": 5689 + }, + "stiffness": 0.4, + "pointA": { + "#": 8929 + }, + "pointB": { + "#": 8930 + }, + "length": 21, + "render": { + "#": 8931 + }, + "id": 574, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5100 + }, + "bodyB": { + "#": 5720 + }, + "stiffness": 0.4, + "pointA": { + "#": 8933 + }, + "pointB": { + "#": 8934 + }, + "length": 21, + "render": { + "#": 8935 + }, + "id": 575, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5751 + }, + "bodyB": { + "#": 5782 + }, + "stiffness": 0.4, + "pointA": { + "#": 8937 + }, + "pointB": { + "#": 8938 + }, + "length": 20.216, + "render": { + "#": 8939 + }, + "id": 576, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5782 + }, + "bodyB": { + "#": 5813 + }, + "stiffness": 0.4, + "pointA": { + "#": 8941 + }, + "pointB": { + "#": 8942 + }, + "length": 20.216, + "render": { + "#": 8943 + }, + "id": 577, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5813 + }, + "bodyB": { + "#": 5844 + }, + "stiffness": 0.4, + "pointA": { + "#": 8945 + }, + "pointB": { + "#": 8946 + }, + "length": 20.216, + "render": { + "#": 8947 + }, + "id": 578, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5844 + }, + "bodyB": { + "#": 5875 + }, + "stiffness": 0.4, + "pointA": { + "#": 8949 + }, + "pointB": { + "#": 8950 + }, + "length": 20.216, + "render": { + "#": 8951 + }, + "id": 579, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5875 + }, + "bodyB": { + "#": 5906 + }, + "stiffness": 0.4, + "pointA": { + "#": 8953 + }, + "pointB": { + "#": 8954 + }, + "length": 20.216, + "render": { + "#": 8955 + }, + "id": 580, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5906 + }, + "bodyB": { + "#": 5937 + }, + "stiffness": 0.4, + "pointA": { + "#": 8957 + }, + "pointB": { + "#": 8958 + }, + "length": 20.216, + "render": { + "#": 8959 + }, + "id": 581, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5937 + }, + "bodyB": { + "#": 5968 + }, + "stiffness": 0.4, + "pointA": { + "#": 8961 + }, + "pointB": { + "#": 8962 + }, + "length": 20.216, + "render": { + "#": 8963 + }, + "id": 582, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5968 + }, + "bodyB": { + "#": 5999 + }, + "stiffness": 0.4, + "pointA": { + "#": 8965 + }, + "pointB": { + "#": 8966 + }, + "length": 20.216, + "render": { + "#": 8967 + }, + "id": 583, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5999 + }, + "bodyB": { + "#": 6030 + }, + "stiffness": 0.4, + "pointA": { + "#": 8969 + }, + "pointB": { + "#": 8970 + }, + "length": 20.216, + "render": { + "#": 8971 + }, + "id": 584, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6030 + }, + "bodyB": { + "#": 6061 + }, + "stiffness": 0.4, + "pointA": { + "#": 8973 + }, + "pointB": { + "#": 8974 + }, + "length": 20.216, + "render": { + "#": 8975 + }, + "id": 585, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6061 + }, + "bodyB": { + "#": 6092 + }, + "stiffness": 0.4, + "pointA": { + "#": 8977 + }, + "pointB": { + "#": 8978 + }, + "length": 20.216, + "render": { + "#": 8979 + }, + "id": 586, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6092 + }, + "bodyB": { + "#": 6123 + }, + "stiffness": 0.4, + "pointA": { + "#": 8981 + }, + "pointB": { + "#": 8982 + }, + "length": 20.216, + "render": { + "#": 8983 + }, + "id": 587, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6123 + }, + "bodyB": { + "#": 6154 + }, + "stiffness": 0.4, + "pointA": { + "#": 8985 + }, + "pointB": { + "#": 8986 + }, + "length": 20.216, + "render": { + "#": 8987 + }, + "id": 588, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6154 + }, + "bodyB": { + "#": 6185 + }, + "stiffness": 0.4, + "pointA": { + "#": 8989 + }, + "pointB": { + "#": 8990 + }, + "length": 20.216, + "render": { + "#": 8991 + }, + "id": 589, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6185 + }, + "bodyB": { + "#": 6216 + }, + "stiffness": 0.4, + "pointA": { + "#": 8993 + }, + "pointB": { + "#": 8994 + }, + "length": 20.216, + "render": { + "#": 8995 + }, + "id": 590, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6216 + }, + "bodyB": { + "#": 6247 + }, + "stiffness": 0.4, + "pointA": { + "#": 8997 + }, + "pointB": { + "#": 8998 + }, + "length": 20.216, + "render": { + "#": 8999 + }, + "id": 591, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6247 + }, + "bodyB": { + "#": 6278 + }, + "stiffness": 0.4, + "pointA": { + "#": 9001 + }, + "pointB": { + "#": 9002 + }, + "length": 20.216, + "render": { + "#": 9003 + }, + "id": 592, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6278 + }, + "bodyB": { + "#": 6309 + }, + "stiffness": 0.4, + "pointA": { + "#": 9005 + }, + "pointB": { + "#": 9006 + }, + "length": 20.216, + "render": { + "#": 9007 + }, + "id": 593, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6309 + }, + "bodyB": { + "#": 6340 + }, + "stiffness": 0.4, + "pointA": { + "#": 9009 + }, + "pointB": { + "#": 9010 + }, + "length": 20.216, + "render": { + "#": 9011 + }, + "id": 594, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5131 + }, + "bodyB": { + "#": 5751 + }, + "stiffness": 0.4, + "pointA": { + "#": 9013 + }, + "pointB": { + "#": 9014 + }, + "length": 21, + "render": { + "#": 9015 + }, + "id": 595, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5162 + }, + "bodyB": { + "#": 5782 + }, + "stiffness": 0.4, + "pointA": { + "#": 9017 + }, + "pointB": { + "#": 9018 + }, + "length": 21, + "render": { + "#": 9019 + }, + "id": 596, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5193 + }, + "bodyB": { + "#": 5813 + }, + "stiffness": 0.4, + "pointA": { + "#": 9021 + }, + "pointB": { + "#": 9022 + }, + "length": 21, + "render": { + "#": 9023 + }, + "id": 597, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5224 + }, + "bodyB": { + "#": 5844 + }, + "stiffness": 0.4, + "pointA": { + "#": 9025 + }, + "pointB": { + "#": 9026 + }, + "length": 21, + "render": { + "#": 9027 + }, + "id": 598, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5255 + }, + "bodyB": { + "#": 5875 + }, + "stiffness": 0.4, + "pointA": { + "#": 9029 + }, + "pointB": { + "#": 9030 + }, + "length": 21, + "render": { + "#": 9031 + }, + "id": 599, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5286 + }, + "bodyB": { + "#": 5906 + }, + "stiffness": 0.4, + "pointA": { + "#": 9033 + }, + "pointB": { + "#": 9034 + }, + "length": 21, + "render": { + "#": 9035 + }, + "id": 600, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5317 + }, + "bodyB": { + "#": 5937 + }, + "stiffness": 0.4, + "pointA": { + "#": 9037 + }, + "pointB": { + "#": 9038 + }, + "length": 21, + "render": { + "#": 9039 + }, + "id": 601, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5348 + }, + "bodyB": { + "#": 5968 + }, + "stiffness": 0.4, + "pointA": { + "#": 9041 + }, + "pointB": { + "#": 9042 + }, + "length": 21, + "render": { + "#": 9043 + }, + "id": 602, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5379 + }, + "bodyB": { + "#": 5999 + }, + "stiffness": 0.4, + "pointA": { + "#": 9045 + }, + "pointB": { + "#": 9046 + }, + "length": 21, + "render": { + "#": 9047 + }, + "id": 603, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5410 + }, + "bodyB": { + "#": 6030 + }, + "stiffness": 0.4, + "pointA": { + "#": 9049 + }, + "pointB": { + "#": 9050 + }, + "length": 21, + "render": { + "#": 9051 + }, + "id": 604, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5441 + }, + "bodyB": { + "#": 6061 + }, + "stiffness": 0.4, + "pointA": { + "#": 9053 + }, + "pointB": { + "#": 9054 + }, + "length": 21, + "render": { + "#": 9055 + }, + "id": 605, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5472 + }, + "bodyB": { + "#": 6092 + }, + "stiffness": 0.4, + "pointA": { + "#": 9057 + }, + "pointB": { + "#": 9058 + }, + "length": 21, + "render": { + "#": 9059 + }, + "id": 606, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5503 + }, + "bodyB": { + "#": 6123 + }, + "stiffness": 0.4, + "pointA": { + "#": 9061 + }, + "pointB": { + "#": 9062 + }, + "length": 21, + "render": { + "#": 9063 + }, + "id": 607, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5534 + }, + "bodyB": { + "#": 6154 + }, + "stiffness": 0.4, + "pointA": { + "#": 9065 + }, + "pointB": { + "#": 9066 + }, + "length": 21, + "render": { + "#": 9067 + }, + "id": 608, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5565 + }, + "bodyB": { + "#": 6185 + }, + "stiffness": 0.4, + "pointA": { + "#": 9069 + }, + "pointB": { + "#": 9070 + }, + "length": 21, + "render": { + "#": 9071 + }, + "id": 609, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5596 + }, + "bodyB": { + "#": 6216 + }, + "stiffness": 0.4, + "pointA": { + "#": 9073 + }, + "pointB": { + "#": 9074 + }, + "length": 21, + "render": { + "#": 9075 + }, + "id": 610, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5627 + }, + "bodyB": { + "#": 6247 + }, + "stiffness": 0.4, + "pointA": { + "#": 9077 + }, + "pointB": { + "#": 9078 + }, + "length": 21, + "render": { + "#": 9079 + }, + "id": 611, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5658 + }, + "bodyB": { + "#": 6278 + }, + "stiffness": 0.4, + "pointA": { + "#": 9081 + }, + "pointB": { + "#": 9082 + }, + "length": 21, + "render": { + "#": 9083 + }, + "id": 612, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5689 + }, + "bodyB": { + "#": 6309 + }, + "stiffness": 0.4, + "pointA": { + "#": 9085 + }, + "pointB": { + "#": 9086 + }, + "length": 21, + "render": { + "#": 9087 + }, + "id": 613, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5720 + }, + "bodyB": { + "#": 6340 + }, + "stiffness": 0.4, + "pointA": { + "#": 9089 + }, + "pointB": { + "#": 9090 + }, + "length": 21, + "render": { + "#": 9091 + }, + "id": 614, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6371 + }, + "bodyB": { + "#": 6402 + }, + "stiffness": 0.4, + "pointA": { + "#": 9093 + }, + "pointB": { + "#": 9094 + }, + "length": 20.216, + "render": { + "#": 9095 + }, + "id": 615, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6402 + }, + "bodyB": { + "#": 6433 + }, + "stiffness": 0.4, + "pointA": { + "#": 9097 + }, + "pointB": { + "#": 9098 + }, + "length": 20.216, + "render": { + "#": 9099 + }, + "id": 616, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6433 + }, + "bodyB": { + "#": 6464 + }, + "stiffness": 0.4, + "pointA": { + "#": 9101 + }, + "pointB": { + "#": 9102 + }, + "length": 20.216, + "render": { + "#": 9103 + }, + "id": 617, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6464 + }, + "bodyB": { + "#": 6495 + }, + "stiffness": 0.4, + "pointA": { + "#": 9105 + }, + "pointB": { + "#": 9106 + }, + "length": 20.216, + "render": { + "#": 9107 + }, + "id": 618, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6495 + }, + "bodyB": { + "#": 6526 + }, + "stiffness": 0.4, + "pointA": { + "#": 9109 + }, + "pointB": { + "#": 9110 + }, + "length": 20.216, + "render": { + "#": 9111 + }, + "id": 619, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6526 + }, + "bodyB": { + "#": 6557 + }, + "stiffness": 0.4, + "pointA": { + "#": 9113 + }, + "pointB": { + "#": 9114 + }, + "length": 20.216, + "render": { + "#": 9115 + }, + "id": 620, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6557 + }, + "bodyB": { + "#": 6588 + }, + "stiffness": 0.4, + "pointA": { + "#": 9117 + }, + "pointB": { + "#": 9118 + }, + "length": 20.216, + "render": { + "#": 9119 + }, + "id": 621, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6588 + }, + "bodyB": { + "#": 6619 + }, + "stiffness": 0.4, + "pointA": { + "#": 9121 + }, + "pointB": { + "#": 9122 + }, + "length": 20.216, + "render": { + "#": 9123 + }, + "id": 622, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6619 + }, + "bodyB": { + "#": 6650 + }, + "stiffness": 0.4, + "pointA": { + "#": 9125 + }, + "pointB": { + "#": 9126 + }, + "length": 20.216, + "render": { + "#": 9127 + }, + "id": 623, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6650 + }, + "bodyB": { + "#": 6681 + }, + "stiffness": 0.4, + "pointA": { + "#": 9129 + }, + "pointB": { + "#": 9130 + }, + "length": 20.216, + "render": { + "#": 9131 + }, + "id": 624, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6681 + }, + "bodyB": { + "#": 6712 + }, + "stiffness": 0.4, + "pointA": { + "#": 9133 + }, + "pointB": { + "#": 9134 + }, + "length": 20.216, + "render": { + "#": 9135 + }, + "id": 625, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6712 + }, + "bodyB": { + "#": 6743 + }, + "stiffness": 0.4, + "pointA": { + "#": 9137 + }, + "pointB": { + "#": 9138 + }, + "length": 20.216, + "render": { + "#": 9139 + }, + "id": 626, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6743 + }, + "bodyB": { + "#": 6774 + }, + "stiffness": 0.4, + "pointA": { + "#": 9141 + }, + "pointB": { + "#": 9142 + }, + "length": 20.216, + "render": { + "#": 9143 + }, + "id": 627, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6774 + }, + "bodyB": { + "#": 6805 + }, + "stiffness": 0.4, + "pointA": { + "#": 9145 + }, + "pointB": { + "#": 9146 + }, + "length": 20.216, + "render": { + "#": 9147 + }, + "id": 628, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6805 + }, + "bodyB": { + "#": 6836 + }, + "stiffness": 0.4, + "pointA": { + "#": 9149 + }, + "pointB": { + "#": 9150 + }, + "length": 20.216, + "render": { + "#": 9151 + }, + "id": 629, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6836 + }, + "bodyB": { + "#": 6867 + }, + "stiffness": 0.4, + "pointA": { + "#": 9153 + }, + "pointB": { + "#": 9154 + }, + "length": 20.216, + "render": { + "#": 9155 + }, + "id": 630, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6867 + }, + "bodyB": { + "#": 6898 + }, + "stiffness": 0.4, + "pointA": { + "#": 9157 + }, + "pointB": { + "#": 9158 + }, + "length": 20.216, + "render": { + "#": 9159 + }, + "id": 631, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6898 + }, + "bodyB": { + "#": 6929 + }, + "stiffness": 0.4, + "pointA": { + "#": 9161 + }, + "pointB": { + "#": 9162 + }, + "length": 20.216, + "render": { + "#": 9163 + }, + "id": 632, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6929 + }, + "bodyB": { + "#": 6960 + }, + "stiffness": 0.4, + "pointA": { + "#": 9165 + }, + "pointB": { + "#": 9166 + }, + "length": 20.216, + "render": { + "#": 9167 + }, + "id": 633, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5751 + }, + "bodyB": { + "#": 6371 + }, + "stiffness": 0.4, + "pointA": { + "#": 9169 + }, + "pointB": { + "#": 9170 + }, + "length": 21, + "render": { + "#": 9171 + }, + "id": 634, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5782 + }, + "bodyB": { + "#": 6402 + }, + "stiffness": 0.4, + "pointA": { + "#": 9173 + }, + "pointB": { + "#": 9174 + }, + "length": 21, + "render": { + "#": 9175 + }, + "id": 635, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5813 + }, + "bodyB": { + "#": 6433 + }, + "stiffness": 0.4, + "pointA": { + "#": 9177 + }, + "pointB": { + "#": 9178 + }, + "length": 21, + "render": { + "#": 9179 + }, + "id": 636, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5844 + }, + "bodyB": { + "#": 6464 + }, + "stiffness": 0.4, + "pointA": { + "#": 9181 + }, + "pointB": { + "#": 9182 + }, + "length": 21, + "render": { + "#": 9183 + }, + "id": 637, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5875 + }, + "bodyB": { + "#": 6495 + }, + "stiffness": 0.4, + "pointA": { + "#": 9185 + }, + "pointB": { + "#": 9186 + }, + "length": 21, + "render": { + "#": 9187 + }, + "id": 638, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5906 + }, + "bodyB": { + "#": 6526 + }, + "stiffness": 0.4, + "pointA": { + "#": 9189 + }, + "pointB": { + "#": 9190 + }, + "length": 21, + "render": { + "#": 9191 + }, + "id": 639, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5937 + }, + "bodyB": { + "#": 6557 + }, + "stiffness": 0.4, + "pointA": { + "#": 9193 + }, + "pointB": { + "#": 9194 + }, + "length": 21, + "render": { + "#": 9195 + }, + "id": 640, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5968 + }, + "bodyB": { + "#": 6588 + }, + "stiffness": 0.4, + "pointA": { + "#": 9197 + }, + "pointB": { + "#": 9198 + }, + "length": 21, + "render": { + "#": 9199 + }, + "id": 641, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5999 + }, + "bodyB": { + "#": 6619 + }, + "stiffness": 0.4, + "pointA": { + "#": 9201 + }, + "pointB": { + "#": 9202 + }, + "length": 21, + "render": { + "#": 9203 + }, + "id": 642, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6030 + }, + "bodyB": { + "#": 6650 + }, + "stiffness": 0.4, + "pointA": { + "#": 9205 + }, + "pointB": { + "#": 9206 + }, + "length": 21, + "render": { + "#": 9207 + }, + "id": 643, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6061 + }, + "bodyB": { + "#": 6681 + }, + "stiffness": 0.4, + "pointA": { + "#": 9209 + }, + "pointB": { + "#": 9210 + }, + "length": 21, + "render": { + "#": 9211 + }, + "id": 644, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6092 + }, + "bodyB": { + "#": 6712 + }, + "stiffness": 0.4, + "pointA": { + "#": 9213 + }, + "pointB": { + "#": 9214 + }, + "length": 21, + "render": { + "#": 9215 + }, + "id": 645, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6123 + }, + "bodyB": { + "#": 6743 + }, + "stiffness": 0.4, + "pointA": { + "#": 9217 + }, + "pointB": { + "#": 9218 + }, + "length": 21, + "render": { + "#": 9219 + }, + "id": 646, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6154 + }, + "bodyB": { + "#": 6774 + }, + "stiffness": 0.4, + "pointA": { + "#": 9221 + }, + "pointB": { + "#": 9222 + }, + "length": 21, + "render": { + "#": 9223 + }, + "id": 647, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6185 + }, + "bodyB": { + "#": 6805 + }, + "stiffness": 0.4, + "pointA": { + "#": 9225 + }, + "pointB": { + "#": 9226 + }, + "length": 21, + "render": { + "#": 9227 + }, + "id": 648, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6216 + }, + "bodyB": { + "#": 6836 + }, + "stiffness": 0.4, + "pointA": { + "#": 9229 + }, + "pointB": { + "#": 9230 + }, + "length": 21, + "render": { + "#": 9231 + }, + "id": 649, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6247 + }, + "bodyB": { + "#": 6867 + }, + "stiffness": 0.4, + "pointA": { + "#": 9233 + }, + "pointB": { + "#": 9234 + }, + "length": 21, + "render": { + "#": 9235 + }, + "id": 650, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6278 + }, + "bodyB": { + "#": 6898 + }, + "stiffness": 0.4, + "pointA": { + "#": 9237 + }, + "pointB": { + "#": 9238 + }, + "length": 21, + "render": { + "#": 9239 + }, + "id": 651, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6309 + }, + "bodyB": { + "#": 6929 + }, + "stiffness": 0.4, + "pointA": { + "#": 9241 + }, + "pointB": { + "#": 9242 + }, + "length": 21, + "render": { + "#": 9243 + }, + "id": 652, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6340 + }, + "bodyB": { + "#": 6960 + }, + "stiffness": 0.4, + "pointA": { + "#": 9245 + }, + "pointB": { + "#": 9246 + }, + "length": 21, + "render": { + "#": 9247 + }, + "id": 653, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6991 + }, + "bodyB": { + "#": 7022 + }, + "stiffness": 0.4, + "pointA": { + "#": 9249 + }, + "pointB": { + "#": 9250 + }, + "length": 20.216, + "render": { + "#": 9251 + }, + "id": 654, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7022 + }, + "bodyB": { + "#": 7053 + }, + "stiffness": 0.4, + "pointA": { + "#": 9253 + }, + "pointB": { + "#": 9254 + }, + "length": 20.216, + "render": { + "#": 9255 + }, + "id": 655, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7053 + }, + "bodyB": { + "#": 7084 + }, + "stiffness": 0.4, + "pointA": { + "#": 9257 + }, + "pointB": { + "#": 9258 + }, + "length": 20.216, + "render": { + "#": 9259 + }, + "id": 656, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7084 + }, + "bodyB": { + "#": 7115 + }, + "stiffness": 0.4, + "pointA": { + "#": 9261 + }, + "pointB": { + "#": 9262 + }, + "length": 20.216, + "render": { + "#": 9263 + }, + "id": 657, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7115 + }, + "bodyB": { + "#": 7146 + }, + "stiffness": 0.4, + "pointA": { + "#": 9265 + }, + "pointB": { + "#": 9266 + }, + "length": 20.216, + "render": { + "#": 9267 + }, + "id": 658, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7146 + }, + "bodyB": { + "#": 7177 + }, + "stiffness": 0.4, + "pointA": { + "#": 9269 + }, + "pointB": { + "#": 9270 + }, + "length": 20.216, + "render": { + "#": 9271 + }, + "id": 659, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7177 + }, + "bodyB": { + "#": 7208 + }, + "stiffness": 0.4, + "pointA": { + "#": 9273 + }, + "pointB": { + "#": 9274 + }, + "length": 20.216, + "render": { + "#": 9275 + }, + "id": 660, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7208 + }, + "bodyB": { + "#": 7239 + }, + "stiffness": 0.4, + "pointA": { + "#": 9277 + }, + "pointB": { + "#": 9278 + }, + "length": 20.216, + "render": { + "#": 9279 + }, + "id": 661, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7239 + }, + "bodyB": { + "#": 7270 + }, + "stiffness": 0.4, + "pointA": { + "#": 9281 + }, + "pointB": { + "#": 9282 + }, + "length": 20.216, + "render": { + "#": 9283 + }, + "id": 662, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7270 + }, + "bodyB": { + "#": 7301 + }, + "stiffness": 0.4, + "pointA": { + "#": 9285 + }, + "pointB": { + "#": 9286 + }, + "length": 20.216, + "render": { + "#": 9287 + }, + "id": 663, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7301 + }, + "bodyB": { + "#": 7332 + }, + "stiffness": 0.4, + "pointA": { + "#": 9289 + }, + "pointB": { + "#": 9290 + }, + "length": 20.216, + "render": { + "#": 9291 + }, + "id": 664, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7332 + }, + "bodyB": { + "#": 7363 + }, + "stiffness": 0.4, + "pointA": { + "#": 9293 + }, + "pointB": { + "#": 9294 + }, + "length": 20.216, + "render": { + "#": 9295 + }, + "id": 665, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7363 + }, + "bodyB": { + "#": 7394 + }, + "stiffness": 0.4, + "pointA": { + "#": 9297 + }, + "pointB": { + "#": 9298 + }, + "length": 20.216, + "render": { + "#": 9299 + }, + "id": 666, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7394 + }, + "bodyB": { + "#": 7425 + }, + "stiffness": 0.4, + "pointA": { + "#": 9301 + }, + "pointB": { + "#": 9302 + }, + "length": 20.216, + "render": { + "#": 9303 + }, + "id": 667, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7425 + }, + "bodyB": { + "#": 7456 + }, + "stiffness": 0.4, + "pointA": { + "#": 9305 + }, + "pointB": { + "#": 9306 + }, + "length": 20.216, + "render": { + "#": 9307 + }, + "id": 668, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7456 + }, + "bodyB": { + "#": 7487 + }, + "stiffness": 0.4, + "pointA": { + "#": 9309 + }, + "pointB": { + "#": 9310 + }, + "length": 20.216, + "render": { + "#": 9311 + }, + "id": 669, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7487 + }, + "bodyB": { + "#": 7518 + }, + "stiffness": 0.4, + "pointA": { + "#": 9313 + }, + "pointB": { + "#": 9314 + }, + "length": 20.216, + "render": { + "#": 9315 + }, + "id": 670, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7518 + }, + "bodyB": { + "#": 7549 + }, + "stiffness": 0.4, + "pointA": { + "#": 9317 + }, + "pointB": { + "#": 9318 + }, + "length": 20.216, + "render": { + "#": 9319 + }, + "id": 671, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7549 + }, + "bodyB": { + "#": 7580 + }, + "stiffness": 0.4, + "pointA": { + "#": 9321 + }, + "pointB": { + "#": 9322 + }, + "length": 20.216, + "render": { + "#": 9323 + }, + "id": 672, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6371 + }, + "bodyB": { + "#": 6991 + }, + "stiffness": 0.4, + "pointA": { + "#": 9325 + }, + "pointB": { + "#": 9326 + }, + "length": 21, + "render": { + "#": 9327 + }, + "id": 673, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6402 + }, + "bodyB": { + "#": 7022 + }, + "stiffness": 0.4, + "pointA": { + "#": 9329 + }, + "pointB": { + "#": 9330 + }, + "length": 21, + "render": { + "#": 9331 + }, + "id": 674, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6433 + }, + "bodyB": { + "#": 7053 + }, + "stiffness": 0.4, + "pointA": { + "#": 9333 + }, + "pointB": { + "#": 9334 + }, + "length": 21, + "render": { + "#": 9335 + }, + "id": 675, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6464 + }, + "bodyB": { + "#": 7084 + }, + "stiffness": 0.4, + "pointA": { + "#": 9337 + }, + "pointB": { + "#": 9338 + }, + "length": 21, + "render": { + "#": 9339 + }, + "id": 676, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6495 + }, + "bodyB": { + "#": 7115 + }, + "stiffness": 0.4, + "pointA": { + "#": 9341 + }, + "pointB": { + "#": 9342 + }, + "length": 21, + "render": { + "#": 9343 + }, + "id": 677, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6526 + }, + "bodyB": { + "#": 7146 + }, + "stiffness": 0.4, + "pointA": { + "#": 9345 + }, + "pointB": { + "#": 9346 + }, + "length": 21, + "render": { + "#": 9347 + }, + "id": 678, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6557 + }, + "bodyB": { + "#": 7177 + }, + "stiffness": 0.4, + "pointA": { + "#": 9349 + }, + "pointB": { + "#": 9350 + }, + "length": 21, + "render": { + "#": 9351 + }, + "id": 679, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6588 + }, + "bodyB": { + "#": 7208 + }, + "stiffness": 0.4, + "pointA": { + "#": 9353 + }, + "pointB": { + "#": 9354 + }, + "length": 21, + "render": { + "#": 9355 + }, + "id": 680, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6619 + }, + "bodyB": { + "#": 7239 + }, + "stiffness": 0.4, + "pointA": { + "#": 9357 + }, + "pointB": { + "#": 9358 + }, + "length": 21, + "render": { + "#": 9359 + }, + "id": 681, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6650 + }, + "bodyB": { + "#": 7270 + }, + "stiffness": 0.4, + "pointA": { + "#": 9361 + }, + "pointB": { + "#": 9362 + }, + "length": 21, + "render": { + "#": 9363 + }, + "id": 682, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6681 + }, + "bodyB": { + "#": 7301 + }, + "stiffness": 0.4, + "pointA": { + "#": 9365 + }, + "pointB": { + "#": 9366 + }, + "length": 21, + "render": { + "#": 9367 + }, + "id": 683, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6712 + }, + "bodyB": { + "#": 7332 + }, + "stiffness": 0.4, + "pointA": { + "#": 9369 + }, + "pointB": { + "#": 9370 + }, + "length": 21, + "render": { + "#": 9371 + }, + "id": 684, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6743 + }, + "bodyB": { + "#": 7363 + }, + "stiffness": 0.4, + "pointA": { + "#": 9373 + }, + "pointB": { + "#": 9374 + }, + "length": 21, + "render": { + "#": 9375 + }, + "id": 685, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6774 + }, + "bodyB": { + "#": 7394 + }, + "stiffness": 0.4, + "pointA": { + "#": 9377 + }, + "pointB": { + "#": 9378 + }, + "length": 21, + "render": { + "#": 9379 + }, + "id": 686, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6805 + }, + "bodyB": { + "#": 7425 + }, + "stiffness": 0.4, + "pointA": { + "#": 9381 + }, + "pointB": { + "#": 9382 + }, + "length": 21, + "render": { + "#": 9383 + }, + "id": 687, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6836 + }, + "bodyB": { + "#": 7456 + }, + "stiffness": 0.4, + "pointA": { + "#": 9385 + }, + "pointB": { + "#": 9386 + }, + "length": 21, + "render": { + "#": 9387 + }, + "id": 688, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6867 + }, + "bodyB": { + "#": 7487 + }, + "stiffness": 0.4, + "pointA": { + "#": 9389 + }, + "pointB": { + "#": 9390 + }, + "length": 21, + "render": { + "#": 9391 + }, + "id": 689, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6898 + }, + "bodyB": { + "#": 7518 + }, + "stiffness": 0.4, + "pointA": { + "#": 9393 + }, + "pointB": { + "#": 9394 + }, + "length": 21, + "render": { + "#": 9395 + }, + "id": 690, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6929 + }, + "bodyB": { + "#": 7549 + }, + "stiffness": 0.4, + "pointA": { + "#": 9397 + }, + "pointB": { + "#": 9398 + }, + "length": 21, + "render": { + "#": 9399 + }, + "id": 691, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6960 + }, + "bodyB": { + "#": 7580 + }, + "stiffness": 0.4, + "pointA": { + "#": 9401 + }, + "pointB": { + "#": 9402 + }, + "length": 21, + "render": { + "#": 9403 + }, + "id": 692, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 9407 + }, + "max": { + "#": 9408 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/cloth/cloth-10.json b/test/node/refs/cloth/cloth-10.json new file mode 100644 index 00000000..48e9e74c --- /dev/null +++ b/test/node/refs/cloth/cloth-10.json @@ -0,0 +1,94561 @@ +[ + { + "id": 251, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 173 + }, + "composites": { + "#": 174 + }, + "label": "World", + "gravity": { + "#": 9651 + }, + "bounds": { + "#": 9652 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + }, + { + "#": 94 + }, + { + "#": 150 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + { + "id": 693, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 96 + }, + "position": { + "#": 123 + }, + "force": { + "#": 124 + }, + "torque": 0, + "positionImpulse": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 127 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 128 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 129 + }, + "circleRadius": 80, + "bounds": { + "#": 131 + }, + "positionPrev": { + "#": 134 + }, + "anglePrev": 0, + "axes": { + "#": 135 + }, + "area": 19911.02412, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 94 + }, + "sleepCounter": 0, + "region": { + "#": 149 + } + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + } + ], + { + "x": 379.417, + "y": 509.643, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 374.801, + "y": 528.368, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 365.839, + "y": 545.445, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 353.05, + "y": 559.881, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 337.178, + "y": 570.836, + "index": 4, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 319.145, + "y": 577.675, + "index": 5, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 300, + "y": 580, + "index": 6, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 280.855, + "y": 577.675, + "index": 7, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 262.822, + "y": 570.836, + "index": 8, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 246.95, + "y": 559.881, + "index": 9, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 234.161, + "y": 545.445, + "index": 10, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 225.199, + "y": 528.368, + "index": 11, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 220.583, + "y": 509.643, + "index": 12, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 220.583, + "y": 490.357, + "index": 13, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 225.199, + "y": 471.632, + "index": 14, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 234.161, + "y": 454.555, + "index": 15, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 246.95, + "y": 440.119, + "index": 16, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 262.822, + "y": 429.164, + "index": 17, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 280.855, + "y": 422.325, + "index": 18, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 300, + "y": 420, + "index": 19, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 319.145, + "y": 422.325, + "index": 20, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 337.178, + "y": 429.164, + "index": 21, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 353.05, + "y": 440.119, + "index": 22, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 365.839, + "y": 454.555, + "index": 23, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 374.801, + "y": 471.632, + "index": 24, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 379.417, + "y": 490.357, + "index": 25, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 300, + "y": 500 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 130 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 132 + }, + "max": { + "#": 133 + } + }, + { + "x": 220.583, + "y": 420 + }, + { + "x": 379.417, + "y": 580 + }, + { + "x": 300, + "y": 500 + }, + [ + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88547, + "y": -0.46469 + }, + { + "x": -0.74852, + "y": -0.66312 + }, + { + "x": -0.56804, + "y": -0.823 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56804, + "y": -0.823 + }, + { + "x": 0.74852, + "y": -0.66312 + }, + { + "x": 0.88547, + "y": -0.46469 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,7,8,12", + "startCol": 4, + "endCol": 7, + "startRow": 8, + "endRow": 12 + }, + { + "id": 694, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 151 + }, + "angle": 0, + "vertices": { + "#": 152 + }, + "position": { + "#": 157 + }, + "force": { + "#": 158 + }, + "torque": 0, + "positionImpulse": { + "#": 159 + }, + "constraintImpulse": { + "#": 160 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 161 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 162 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 163 + }, + "bounds": { + "#": 165 + }, + "positionPrev": { + "#": 168 + }, + "anglePrev": 0, + "axes": { + "#": 169 + }, + "area": 6400, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 150 + }, + "sleepCounter": 0, + "region": { + "#": 172 + } + }, + [ + { + "#": 150 + } + ], + [ + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + }, + { + "#": 156 + } + ], + { + "x": 460, + "y": 440, + "index": 0, + "body": { + "#": 150 + }, + "isInternal": false + }, + { + "x": 540, + "y": 440, + "index": 1, + "body": { + "#": 150 + }, + "isInternal": false + }, + { + "x": 540, + "y": 520, + "index": 2, + "body": { + "#": 150 + }, + "isInternal": false + }, + { + "x": 460, + "y": 520, + "index": 3, + "body": { + "#": 150 + }, + "isInternal": false + }, + { + "x": 500, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 164 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 166 + }, + "max": { + "#": 167 + } + }, + { + "x": 460, + "y": 440 + }, + { + "x": 540, + "y": 520 + }, + { + "x": 500, + "y": 480 + }, + [ + { + "#": 170 + }, + { + "#": 171 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,11,9,10", + "startCol": 9, + "endCol": 11, + "startRow": 9, + "endRow": 10 + }, + [], + [ + { + "#": 175 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 176 + }, + "constraints": { + "#": 7857 + }, + "composites": { + "#": 9650 + }, + "label": "Soft Body" + }, + [ + { + "#": 177 + }, + { + "#": 209 + }, + { + "#": 241 + }, + { + "#": 273 + }, + { + "#": 305 + }, + { + "#": 337 + }, + { + "#": 369 + }, + { + "#": 401 + }, + { + "#": 433 + }, + { + "#": 465 + }, + { + "#": 497 + }, + { + "#": 529 + }, + { + "#": 561 + }, + { + "#": 593 + }, + { + "#": 625 + }, + { + "#": 657 + }, + { + "#": 689 + }, + { + "#": 721 + }, + { + "#": 753 + }, + { + "#": 785 + }, + { + "#": 817 + }, + { + "#": 849 + }, + { + "#": 881 + }, + { + "#": 913 + }, + { + "#": 945 + }, + { + "#": 977 + }, + { + "#": 1009 + }, + { + "#": 1041 + }, + { + "#": 1073 + }, + { + "#": 1105 + }, + { + "#": 1137 + }, + { + "#": 1169 + }, + { + "#": 1201 + }, + { + "#": 1233 + }, + { + "#": 1265 + }, + { + "#": 1297 + }, + { + "#": 1329 + }, + { + "#": 1361 + }, + { + "#": 1393 + }, + { + "#": 1425 + }, + { + "#": 1457 + }, + { + "#": 1489 + }, + { + "#": 1521 + }, + { + "#": 1553 + }, + { + "#": 1585 + }, + { + "#": 1617 + }, + { + "#": 1649 + }, + { + "#": 1681 + }, + { + "#": 1713 + }, + { + "#": 1745 + }, + { + "#": 1777 + }, + { + "#": 1809 + }, + { + "#": 1841 + }, + { + "#": 1873 + }, + { + "#": 1905 + }, + { + "#": 1937 + }, + { + "#": 1969 + }, + { + "#": 2001 + }, + { + "#": 2033 + }, + { + "#": 2065 + }, + { + "#": 2097 + }, + { + "#": 2129 + }, + { + "#": 2161 + }, + { + "#": 2193 + }, + { + "#": 2225 + }, + { + "#": 2257 + }, + { + "#": 2289 + }, + { + "#": 2321 + }, + { + "#": 2353 + }, + { + "#": 2385 + }, + { + "#": 2417 + }, + { + "#": 2449 + }, + { + "#": 2481 + }, + { + "#": 2513 + }, + { + "#": 2545 + }, + { + "#": 2577 + }, + { + "#": 2609 + }, + { + "#": 2641 + }, + { + "#": 2673 + }, + { + "#": 2705 + }, + { + "#": 2737 + }, + { + "#": 2769 + }, + { + "#": 2801 + }, + { + "#": 2833 + }, + { + "#": 2865 + }, + { + "#": 2897 + }, + { + "#": 2929 + }, + { + "#": 2961 + }, + { + "#": 2993 + }, + { + "#": 3025 + }, + { + "#": 3057 + }, + { + "#": 3089 + }, + { + "#": 3121 + }, + { + "#": 3153 + }, + { + "#": 3185 + }, + { + "#": 3217 + }, + { + "#": 3249 + }, + { + "#": 3281 + }, + { + "#": 3313 + }, + { + "#": 3345 + }, + { + "#": 3377 + }, + { + "#": 3409 + }, + { + "#": 3441 + }, + { + "#": 3473 + }, + { + "#": 3505 + }, + { + "#": 3537 + }, + { + "#": 3569 + }, + { + "#": 3601 + }, + { + "#": 3633 + }, + { + "#": 3665 + }, + { + "#": 3697 + }, + { + "#": 3729 + }, + { + "#": 3761 + }, + { + "#": 3793 + }, + { + "#": 3825 + }, + { + "#": 3857 + }, + { + "#": 3889 + }, + { + "#": 3921 + }, + { + "#": 3953 + }, + { + "#": 3985 + }, + { + "#": 4017 + }, + { + "#": 4049 + }, + { + "#": 4081 + }, + { + "#": 4113 + }, + { + "#": 4145 + }, + { + "#": 4177 + }, + { + "#": 4209 + }, + { + "#": 4241 + }, + { + "#": 4273 + }, + { + "#": 4305 + }, + { + "#": 4337 + }, + { + "#": 4369 + }, + { + "#": 4401 + }, + { + "#": 4433 + }, + { + "#": 4465 + }, + { + "#": 4497 + }, + { + "#": 4529 + }, + { + "#": 4561 + }, + { + "#": 4593 + }, + { + "#": 4625 + }, + { + "#": 4657 + }, + { + "#": 4689 + }, + { + "#": 4721 + }, + { + "#": 4753 + }, + { + "#": 4785 + }, + { + "#": 4817 + }, + { + "#": 4849 + }, + { + "#": 4881 + }, + { + "#": 4913 + }, + { + "#": 4945 + }, + { + "#": 4977 + }, + { + "#": 5009 + }, + { + "#": 5041 + }, + { + "#": 5073 + }, + { + "#": 5105 + }, + { + "#": 5137 + }, + { + "#": 5169 + }, + { + "#": 5201 + }, + { + "#": 5233 + }, + { + "#": 5265 + }, + { + "#": 5297 + }, + { + "#": 5329 + }, + { + "#": 5361 + }, + { + "#": 5393 + }, + { + "#": 5425 + }, + { + "#": 5457 + }, + { + "#": 5489 + }, + { + "#": 5521 + }, + { + "#": 5553 + }, + { + "#": 5585 + }, + { + "#": 5617 + }, + { + "#": 5649 + }, + { + "#": 5681 + }, + { + "#": 5713 + }, + { + "#": 5745 + }, + { + "#": 5777 + }, + { + "#": 5809 + }, + { + "#": 5841 + }, + { + "#": 5873 + }, + { + "#": 5905 + }, + { + "#": 5937 + }, + { + "#": 5969 + }, + { + "#": 6001 + }, + { + "#": 6033 + }, + { + "#": 6065 + }, + { + "#": 6097 + }, + { + "#": 6129 + }, + { + "#": 6161 + }, + { + "#": 6193 + }, + { + "#": 6225 + }, + { + "#": 6257 + }, + { + "#": 6289 + }, + { + "#": 6321 + }, + { + "#": 6353 + }, + { + "#": 6385 + }, + { + "#": 6417 + }, + { + "#": 6449 + }, + { + "#": 6481 + }, + { + "#": 6513 + }, + { + "#": 6545 + }, + { + "#": 6577 + }, + { + "#": 6609 + }, + { + "#": 6641 + }, + { + "#": 6673 + }, + { + "#": 6705 + }, + { + "#": 6737 + }, + { + "#": 6769 + }, + { + "#": 6801 + }, + { + "#": 6833 + }, + { + "#": 6865 + }, + { + "#": 6897 + }, + { + "#": 6929 + }, + { + "#": 6961 + }, + { + "#": 6993 + }, + { + "#": 7025 + }, + { + "#": 7057 + }, + { + "#": 7089 + }, + { + "#": 7121 + }, + { + "#": 7153 + }, + { + "#": 7185 + }, + { + "#": 7217 + }, + { + "#": 7249 + }, + { + "#": 7281 + }, + { + "#": 7313 + }, + { + "#": 7345 + }, + { + "#": 7377 + }, + { + "#": 7409 + }, + { + "#": 7441 + }, + { + "#": 7473 + }, + { + "#": 7505 + }, + { + "#": 7537 + }, + { + "#": 7569 + }, + { + "#": 7601 + }, + { + "#": 7633 + }, + { + "#": 7665 + }, + { + "#": 7697 + }, + { + "#": 7729 + }, + { + "#": 7761 + }, + { + "#": 7793 + }, + { + "#": 7825 + } + ], + { + "id": 5, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 178 + }, + "angle": 0, + "vertices": { + "#": 179 + }, + "position": { + "#": 190 + }, + "force": { + "#": 191 + }, + "torque": 0, + "positionImpulse": { + "#": 192 + }, + "constraintImpulse": { + "#": 193 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 194 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 195 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 196 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 198 + }, + "positionPrev": { + "#": 201 + }, + "anglePrev": 0, + "axes": { + "#": 202 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 177 + }, + "sleepCounter": 0, + "region": { + "#": 208 + } + }, + [ + { + "#": 177 + } + ], + [ + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + } + ], + { + "x": 215.216, + "y": 210.472, + "index": 0, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 214.472, + "index": 1, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 216, + "index": 2, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 214.472, + "index": 3, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 200, + "y": 210.472, + "index": 4, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 200, + "y": 205.528, + "index": 5, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 201.528, + "index": 6, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 200, + "index": 7, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 201.528, + "index": 8, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 215.216, + "y": 205.528, + "index": 9, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 197 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 199 + }, + "max": { + "#": 200 + } + }, + { + "x": 200, + "y": 200 + }, + { + "x": 215.216, + "y": 216 + }, + { + "x": 207.608, + "y": 208 + }, + [ + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,4,4", + "startCol": 4, + "endCol": 4, + "startRow": 4, + "endRow": 4 + }, + { + "id": 6, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 210 + }, + "angle": 0, + "vertices": { + "#": 211 + }, + "position": { + "#": 222 + }, + "force": { + "#": 223 + }, + "torque": 0, + "positionImpulse": { + "#": 224 + }, + "constraintImpulse": { + "#": 225 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 226 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 227 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 228 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 230 + }, + "positionPrev": { + "#": 233 + }, + "anglePrev": 0, + "axes": { + "#": 234 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 209 + }, + "sleepCounter": 0, + "region": { + "#": 240 + } + }, + [ + { + "#": 209 + } + ], + [ + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + } + ], + { + "x": 235.432, + "y": 210.472, + "index": 0, + "body": { + "#": 209 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 214.472, + "index": 1, + "body": { + "#": 209 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 216, + "index": 2, + "body": { + "#": 209 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 214.472, + "index": 3, + "body": { + "#": 209 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 210.472, + "index": 4, + "body": { + "#": 209 + }, + "isInternal": false + }, + { + "x": 220.216, + "y": 205.528, + "index": 5, + "body": { + "#": 209 + }, + "isInternal": false + }, + { + "x": 223.122, + "y": 201.528, + "index": 6, + "body": { + "#": 209 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 200, + "index": 7, + "body": { + "#": 209 + }, + "isInternal": false + }, + { + "x": 232.526, + "y": 201.528, + "index": 8, + "body": { + "#": 209 + }, + "isInternal": false + }, + { + "x": 235.432, + "y": 205.528, + "index": 9, + "body": { + "#": 209 + }, + "isInternal": false + }, + { + "x": 227.824, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 229 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 231 + }, + "max": { + "#": 232 + } + }, + { + "x": 220.216, + "y": 200 + }, + { + "x": 235.432, + "y": 216 + }, + { + "x": 227.824, + "y": 208 + }, + [ + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,4,4", + "startCol": 4, + "endCol": 4, + "startRow": 4, + "endRow": 4 + }, + { + "id": 7, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 242 + }, + "angle": 0, + "vertices": { + "#": 243 + }, + "position": { + "#": 254 + }, + "force": { + "#": 255 + }, + "torque": 0, + "positionImpulse": { + "#": 256 + }, + "constraintImpulse": { + "#": 257 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 258 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 259 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 260 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 262 + }, + "positionPrev": { + "#": 265 + }, + "anglePrev": 0, + "axes": { + "#": 266 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 241 + }, + "sleepCounter": 0, + "region": { + "#": 272 + } + }, + [ + { + "#": 241 + } + ], + [ + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + } + ], + { + "x": 255.648, + "y": 210.472, + "index": 0, + "body": { + "#": 241 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 214.472, + "index": 1, + "body": { + "#": 241 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 216, + "index": 2, + "body": { + "#": 241 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 214.472, + "index": 3, + "body": { + "#": 241 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 210.472, + "index": 4, + "body": { + "#": 241 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 205.528, + "index": 5, + "body": { + "#": 241 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 201.528, + "index": 6, + "body": { + "#": 241 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 200, + "index": 7, + "body": { + "#": 241 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 201.528, + "index": 8, + "body": { + "#": 241 + }, + "isInternal": false + }, + { + "x": 255.648, + "y": 205.528, + "index": 9, + "body": { + "#": 241 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 261 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 263 + }, + "max": { + "#": 264 + } + }, + { + "x": 240.432, + "y": 200 + }, + { + "x": 255.648, + "y": 216 + }, + { + "x": 248.04, + "y": 208 + }, + [ + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,4,4", + "startCol": 5, + "endCol": 5, + "startRow": 4, + "endRow": 4 + }, + { + "id": 8, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 274 + }, + "angle": 0, + "vertices": { + "#": 275 + }, + "position": { + "#": 286 + }, + "force": { + "#": 287 + }, + "torque": 0, + "positionImpulse": { + "#": 288 + }, + "constraintImpulse": { + "#": 289 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 290 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 291 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 292 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 294 + }, + "positionPrev": { + "#": 297 + }, + "anglePrev": 0, + "axes": { + "#": 298 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 273 + }, + "sleepCounter": 0, + "region": { + "#": 304 + } + }, + [ + { + "#": 273 + } + ], + [ + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + } + ], + { + "x": 275.864, + "y": 210.472, + "index": 0, + "body": { + "#": 273 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 214.472, + "index": 1, + "body": { + "#": 273 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 216, + "index": 2, + "body": { + "#": 273 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 214.472, + "index": 3, + "body": { + "#": 273 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 210.472, + "index": 4, + "body": { + "#": 273 + }, + "isInternal": false + }, + { + "x": 260.648, + "y": 205.528, + "index": 5, + "body": { + "#": 273 + }, + "isInternal": false + }, + { + "x": 263.554, + "y": 201.528, + "index": 6, + "body": { + "#": 273 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 200, + "index": 7, + "body": { + "#": 273 + }, + "isInternal": false + }, + { + "x": 272.958, + "y": 201.528, + "index": 8, + "body": { + "#": 273 + }, + "isInternal": false + }, + { + "x": 275.864, + "y": 205.528, + "index": 9, + "body": { + "#": 273 + }, + "isInternal": false + }, + { + "x": 268.256, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 293 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 295 + }, + "max": { + "#": 296 + } + }, + { + "x": 260.648, + "y": 200 + }, + { + "x": 275.864, + "y": 216 + }, + { + "x": 268.256, + "y": 208 + }, + [ + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,4,4", + "startCol": 5, + "endCol": 5, + "startRow": 4, + "endRow": 4 + }, + { + "id": 9, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 306 + }, + "angle": 0, + "vertices": { + "#": 307 + }, + "position": { + "#": 318 + }, + "force": { + "#": 319 + }, + "torque": 0, + "positionImpulse": { + "#": 320 + }, + "constraintImpulse": { + "#": 321 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 322 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 323 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 324 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 326 + }, + "positionPrev": { + "#": 329 + }, + "anglePrev": 0, + "axes": { + "#": 330 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 305 + }, + "sleepCounter": 0, + "region": { + "#": 336 + } + }, + [ + { + "#": 305 + } + ], + [ + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + } + ], + { + "x": 296.08, + "y": 210.472, + "index": 0, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 214.472, + "index": 1, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 216, + "index": 2, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 214.472, + "index": 3, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 210.472, + "index": 4, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 280.864, + "y": 205.528, + "index": 5, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 283.77, + "y": 201.528, + "index": 6, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 200, + "index": 7, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 293.174, + "y": 201.528, + "index": 8, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 296.08, + "y": 205.528, + "index": 9, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 288.472, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 325 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 327 + }, + "max": { + "#": 328 + } + }, + { + "x": 280.864, + "y": 200 + }, + { + "x": 296.08, + "y": 216 + }, + { + "x": 288.472, + "y": 208 + }, + [ + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,4,4", + "startCol": 5, + "endCol": 6, + "startRow": 4, + "endRow": 4 + }, + { + "id": 10, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 338 + }, + "angle": 0, + "vertices": { + "#": 339 + }, + "position": { + "#": 350 + }, + "force": { + "#": 351 + }, + "torque": 0, + "positionImpulse": { + "#": 352 + }, + "constraintImpulse": { + "#": 353 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 354 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 355 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 356 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 358 + }, + "positionPrev": { + "#": 361 + }, + "anglePrev": 0, + "axes": { + "#": 362 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 337 + }, + "sleepCounter": 0, + "region": { + "#": 368 + } + }, + [ + { + "#": 337 + } + ], + [ + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + } + ], + { + "x": 316.296, + "y": 210.472, + "index": 0, + "body": { + "#": 337 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 214.472, + "index": 1, + "body": { + "#": 337 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 216, + "index": 2, + "body": { + "#": 337 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 214.472, + "index": 3, + "body": { + "#": 337 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 210.472, + "index": 4, + "body": { + "#": 337 + }, + "isInternal": false + }, + { + "x": 301.08, + "y": 205.528, + "index": 5, + "body": { + "#": 337 + }, + "isInternal": false + }, + { + "x": 303.986, + "y": 201.528, + "index": 6, + "body": { + "#": 337 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 200, + "index": 7, + "body": { + "#": 337 + }, + "isInternal": false + }, + { + "x": 313.39, + "y": 201.528, + "index": 8, + "body": { + "#": 337 + }, + "isInternal": false + }, + { + "x": 316.296, + "y": 205.528, + "index": 9, + "body": { + "#": 337 + }, + "isInternal": false + }, + { + "x": 308.688, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 357 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 359 + }, + "max": { + "#": 360 + } + }, + { + "x": 301.08, + "y": 200 + }, + { + "x": 316.296, + "y": 216 + }, + { + "x": 308.688, + "y": 208 + }, + [ + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,6,4,4", + "startCol": 6, + "endCol": 6, + "startRow": 4, + "endRow": 4 + }, + { + "id": 11, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 370 + }, + "angle": 0, + "vertices": { + "#": 371 + }, + "position": { + "#": 382 + }, + "force": { + "#": 383 + }, + "torque": 0, + "positionImpulse": { + "#": 384 + }, + "constraintImpulse": { + "#": 385 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 386 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 387 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 388 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 390 + }, + "positionPrev": { + "#": 393 + }, + "anglePrev": 0, + "axes": { + "#": 394 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 369 + }, + "sleepCounter": 0, + "region": { + "#": 400 + } + }, + [ + { + "#": 369 + } + ], + [ + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + } + ], + { + "x": 336.512, + "y": 210.472, + "index": 0, + "body": { + "#": 369 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 214.472, + "index": 1, + "body": { + "#": 369 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 216, + "index": 2, + "body": { + "#": 369 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 214.472, + "index": 3, + "body": { + "#": 369 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 210.472, + "index": 4, + "body": { + "#": 369 + }, + "isInternal": false + }, + { + "x": 321.296, + "y": 205.528, + "index": 5, + "body": { + "#": 369 + }, + "isInternal": false + }, + { + "x": 324.202, + "y": 201.528, + "index": 6, + "body": { + "#": 369 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 200, + "index": 7, + "body": { + "#": 369 + }, + "isInternal": false + }, + { + "x": 333.606, + "y": 201.528, + "index": 8, + "body": { + "#": 369 + }, + "isInternal": false + }, + { + "x": 336.512, + "y": 205.528, + "index": 9, + "body": { + "#": 369 + }, + "isInternal": false + }, + { + "x": 328.904, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 389 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 391 + }, + "max": { + "#": 392 + } + }, + { + "x": 321.296, + "y": 200 + }, + { + "x": 336.512, + "y": 216 + }, + { + "x": 328.904, + "y": 208 + }, + [ + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,4,4", + "startCol": 6, + "endCol": 7, + "startRow": 4, + "endRow": 4 + }, + { + "id": 12, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 402 + }, + "angle": 0, + "vertices": { + "#": 403 + }, + "position": { + "#": 414 + }, + "force": { + "#": 415 + }, + "torque": 0, + "positionImpulse": { + "#": 416 + }, + "constraintImpulse": { + "#": 417 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 418 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 419 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 420 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 422 + }, + "positionPrev": { + "#": 425 + }, + "anglePrev": 0, + "axes": { + "#": 426 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 401 + }, + "sleepCounter": 0, + "region": { + "#": 432 + } + }, + [ + { + "#": 401 + } + ], + [ + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + } + ], + { + "x": 356.728, + "y": 210.472, + "index": 0, + "body": { + "#": 401 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 214.472, + "index": 1, + "body": { + "#": 401 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 216, + "index": 2, + "body": { + "#": 401 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 214.472, + "index": 3, + "body": { + "#": 401 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 210.472, + "index": 4, + "body": { + "#": 401 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 205.528, + "index": 5, + "body": { + "#": 401 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 201.528, + "index": 6, + "body": { + "#": 401 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 200, + "index": 7, + "body": { + "#": 401 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 201.528, + "index": 8, + "body": { + "#": 401 + }, + "isInternal": false + }, + { + "x": 356.728, + "y": 205.528, + "index": 9, + "body": { + "#": 401 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 421 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 423 + }, + "max": { + "#": 424 + } + }, + { + "x": 341.512, + "y": 200 + }, + { + "x": 356.728, + "y": 216 + }, + { + "x": 349.12, + "y": 208 + }, + [ + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,4,4", + "startCol": 7, + "endCol": 7, + "startRow": 4, + "endRow": 4 + }, + { + "id": 13, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 434 + }, + "angle": 0, + "vertices": { + "#": 435 + }, + "position": { + "#": 446 + }, + "force": { + "#": 447 + }, + "torque": 0, + "positionImpulse": { + "#": 448 + }, + "constraintImpulse": { + "#": 449 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 450 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 451 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 452 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 454 + }, + "positionPrev": { + "#": 457 + }, + "anglePrev": 0, + "axes": { + "#": 458 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 433 + }, + "sleepCounter": 0, + "region": { + "#": 464 + } + }, + [ + { + "#": 433 + } + ], + [ + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + } + ], + { + "x": 376.944, + "y": 210.472, + "index": 0, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 214.472, + "index": 1, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 216, + "index": 2, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 214.472, + "index": 3, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 210.472, + "index": 4, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 361.728, + "y": 205.528, + "index": 5, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 364.634, + "y": 201.528, + "index": 6, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 200, + "index": 7, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 374.038, + "y": 201.528, + "index": 8, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 376.944, + "y": 205.528, + "index": 9, + "body": { + "#": 433 + }, + "isInternal": false + }, + { + "x": 369.336, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 453 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 455 + }, + "max": { + "#": 456 + } + }, + { + "x": 361.728, + "y": 200 + }, + { + "x": 376.944, + "y": 216 + }, + { + "x": 369.336, + "y": 208 + }, + [ + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,4,4", + "startCol": 7, + "endCol": 7, + "startRow": 4, + "endRow": 4 + }, + { + "id": 14, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 466 + }, + "angle": 0, + "vertices": { + "#": 467 + }, + "position": { + "#": 478 + }, + "force": { + "#": 479 + }, + "torque": 0, + "positionImpulse": { + "#": 480 + }, + "constraintImpulse": { + "#": 481 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 482 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 483 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 484 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 486 + }, + "positionPrev": { + "#": 489 + }, + "anglePrev": 0, + "axes": { + "#": 490 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 465 + }, + "sleepCounter": 0, + "region": { + "#": 496 + } + }, + [ + { + "#": 465 + } + ], + [ + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + } + ], + { + "x": 397.16, + "y": 210.472, + "index": 0, + "body": { + "#": 465 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 214.472, + "index": 1, + "body": { + "#": 465 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 216, + "index": 2, + "body": { + "#": 465 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 214.472, + "index": 3, + "body": { + "#": 465 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 210.472, + "index": 4, + "body": { + "#": 465 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 205.528, + "index": 5, + "body": { + "#": 465 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 201.528, + "index": 6, + "body": { + "#": 465 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 200, + "index": 7, + "body": { + "#": 465 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 201.528, + "index": 8, + "body": { + "#": 465 + }, + "isInternal": false + }, + { + "x": 397.16, + "y": 205.528, + "index": 9, + "body": { + "#": 465 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 485 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 487 + }, + "max": { + "#": 488 + } + }, + { + "x": 381.944, + "y": 200 + }, + { + "x": 397.16, + "y": 216 + }, + { + "x": 389.552, + "y": 208 + }, + [ + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,4,4", + "startCol": 7, + "endCol": 8, + "startRow": 4, + "endRow": 4 + }, + { + "id": 15, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 498 + }, + "angle": 0, + "vertices": { + "#": 499 + }, + "position": { + "#": 510 + }, + "force": { + "#": 511 + }, + "torque": 0, + "positionImpulse": { + "#": 512 + }, + "constraintImpulse": { + "#": 513 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 514 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 515 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 516 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 518 + }, + "positionPrev": { + "#": 521 + }, + "anglePrev": 0, + "axes": { + "#": 522 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 497 + }, + "sleepCounter": 0, + "region": { + "#": 528 + } + }, + [ + { + "#": 497 + } + ], + [ + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + } + ], + { + "x": 417.376, + "y": 210.472, + "index": 0, + "body": { + "#": 497 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 214.472, + "index": 1, + "body": { + "#": 497 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 216, + "index": 2, + "body": { + "#": 497 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 214.472, + "index": 3, + "body": { + "#": 497 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 210.472, + "index": 4, + "body": { + "#": 497 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 205.528, + "index": 5, + "body": { + "#": 497 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 201.528, + "index": 6, + "body": { + "#": 497 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 200, + "index": 7, + "body": { + "#": 497 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 201.528, + "index": 8, + "body": { + "#": 497 + }, + "isInternal": false + }, + { + "x": 417.376, + "y": 205.528, + "index": 9, + "body": { + "#": 497 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 517 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 519 + }, + "max": { + "#": 520 + } + }, + { + "x": 402.16, + "y": 200 + }, + { + "x": 417.376, + "y": 216 + }, + { + "x": 409.768, + "y": 208 + }, + [ + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,4,4", + "startCol": 8, + "endCol": 8, + "startRow": 4, + "endRow": 4 + }, + { + "id": 16, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 530 + }, + "angle": 0, + "vertices": { + "#": 531 + }, + "position": { + "#": 542 + }, + "force": { + "#": 543 + }, + "torque": 0, + "positionImpulse": { + "#": 544 + }, + "constraintImpulse": { + "#": 545 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 546 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 547 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 548 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 550 + }, + "positionPrev": { + "#": 553 + }, + "anglePrev": 0, + "axes": { + "#": 554 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 529 + }, + "sleepCounter": 0, + "region": { + "#": 560 + } + }, + [ + { + "#": 529 + } + ], + [ + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + } + ], + { + "x": 437.592, + "y": 210.472, + "index": 0, + "body": { + "#": 529 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 214.472, + "index": 1, + "body": { + "#": 529 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 216, + "index": 2, + "body": { + "#": 529 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 214.472, + "index": 3, + "body": { + "#": 529 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 210.472, + "index": 4, + "body": { + "#": 529 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 205.528, + "index": 5, + "body": { + "#": 529 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 201.528, + "index": 6, + "body": { + "#": 529 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 200, + "index": 7, + "body": { + "#": 529 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 201.528, + "index": 8, + "body": { + "#": 529 + }, + "isInternal": false + }, + { + "x": 437.592, + "y": 205.528, + "index": 9, + "body": { + "#": 529 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 549 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 551 + }, + "max": { + "#": 552 + } + }, + { + "x": 422.376, + "y": 200 + }, + { + "x": 437.592, + "y": 216 + }, + { + "x": 429.984, + "y": 208 + }, + [ + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,4,4", + "startCol": 8, + "endCol": 9, + "startRow": 4, + "endRow": 4 + }, + { + "id": 17, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 562 + }, + "angle": 0, + "vertices": { + "#": 563 + }, + "position": { + "#": 574 + }, + "force": { + "#": 575 + }, + "torque": 0, + "positionImpulse": { + "#": 576 + }, + "constraintImpulse": { + "#": 577 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 578 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 579 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 580 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 582 + }, + "positionPrev": { + "#": 585 + }, + "anglePrev": 0, + "axes": { + "#": 586 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 561 + }, + "sleepCounter": 0, + "region": { + "#": 592 + } + }, + [ + { + "#": 561 + } + ], + [ + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + } + ], + { + "x": 457.808, + "y": 210.472, + "index": 0, + "body": { + "#": 561 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 214.472, + "index": 1, + "body": { + "#": 561 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 216, + "index": 2, + "body": { + "#": 561 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 214.472, + "index": 3, + "body": { + "#": 561 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 210.472, + "index": 4, + "body": { + "#": 561 + }, + "isInternal": false + }, + { + "x": 442.592, + "y": 205.528, + "index": 5, + "body": { + "#": 561 + }, + "isInternal": false + }, + { + "x": 445.498, + "y": 201.528, + "index": 6, + "body": { + "#": 561 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 200, + "index": 7, + "body": { + "#": 561 + }, + "isInternal": false + }, + { + "x": 454.902, + "y": 201.528, + "index": 8, + "body": { + "#": 561 + }, + "isInternal": false + }, + { + "x": 457.808, + "y": 205.528, + "index": 9, + "body": { + "#": 561 + }, + "isInternal": false + }, + { + "x": 450.2, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 581 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 583 + }, + "max": { + "#": 584 + } + }, + { + "x": 442.592, + "y": 200 + }, + { + "x": 457.808, + "y": 216 + }, + { + "x": 450.2, + "y": 208 + }, + [ + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,4,4", + "startCol": 9, + "endCol": 9, + "startRow": 4, + "endRow": 4 + }, + { + "id": 18, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 594 + }, + "angle": 0, + "vertices": { + "#": 595 + }, + "position": { + "#": 606 + }, + "force": { + "#": 607 + }, + "torque": 0, + "positionImpulse": { + "#": 608 + }, + "constraintImpulse": { + "#": 609 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 610 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 611 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 612 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 614 + }, + "positionPrev": { + "#": 617 + }, + "anglePrev": 0, + "axes": { + "#": 618 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 593 + }, + "sleepCounter": 0, + "region": { + "#": 624 + } + }, + [ + { + "#": 593 + } + ], + [ + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + } + ], + { + "x": 478.024, + "y": 210.472, + "index": 0, + "body": { + "#": 593 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 214.472, + "index": 1, + "body": { + "#": 593 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 216, + "index": 2, + "body": { + "#": 593 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 214.472, + "index": 3, + "body": { + "#": 593 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 210.472, + "index": 4, + "body": { + "#": 593 + }, + "isInternal": false + }, + { + "x": 462.808, + "y": 205.528, + "index": 5, + "body": { + "#": 593 + }, + "isInternal": false + }, + { + "x": 465.714, + "y": 201.528, + "index": 6, + "body": { + "#": 593 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 200, + "index": 7, + "body": { + "#": 593 + }, + "isInternal": false + }, + { + "x": 475.118, + "y": 201.528, + "index": 8, + "body": { + "#": 593 + }, + "isInternal": false + }, + { + "x": 478.024, + "y": 205.528, + "index": 9, + "body": { + "#": 593 + }, + "isInternal": false + }, + { + "x": 470.416, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 613 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 615 + }, + "max": { + "#": 616 + } + }, + { + "x": 462.808, + "y": 200 + }, + { + "x": 478.024, + "y": 216 + }, + { + "x": 470.416, + "y": 208 + }, + [ + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,4,4", + "startCol": 9, + "endCol": 9, + "startRow": 4, + "endRow": 4 + }, + { + "id": 19, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 626 + }, + "angle": 0, + "vertices": { + "#": 627 + }, + "position": { + "#": 638 + }, + "force": { + "#": 639 + }, + "torque": 0, + "positionImpulse": { + "#": 640 + }, + "constraintImpulse": { + "#": 641 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 642 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 643 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 644 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 646 + }, + "positionPrev": { + "#": 649 + }, + "anglePrev": 0, + "axes": { + "#": 650 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 625 + }, + "sleepCounter": 0, + "region": { + "#": 656 + } + }, + [ + { + "#": 625 + } + ], + [ + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + } + ], + { + "x": 498.24, + "y": 210.472, + "index": 0, + "body": { + "#": 625 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 214.472, + "index": 1, + "body": { + "#": 625 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 216, + "index": 2, + "body": { + "#": 625 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 214.472, + "index": 3, + "body": { + "#": 625 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 210.472, + "index": 4, + "body": { + "#": 625 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 205.528, + "index": 5, + "body": { + "#": 625 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 201.528, + "index": 6, + "body": { + "#": 625 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 200, + "index": 7, + "body": { + "#": 625 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 201.528, + "index": 8, + "body": { + "#": 625 + }, + "isInternal": false + }, + { + "x": 498.24, + "y": 205.528, + "index": 9, + "body": { + "#": 625 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 645 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 647 + }, + "max": { + "#": 648 + } + }, + { + "x": 483.024, + "y": 200 + }, + { + "x": 498.24, + "y": 216 + }, + { + "x": 490.632, + "y": 208 + }, + [ + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,4,4", + "startCol": 10, + "endCol": 10, + "startRow": 4, + "endRow": 4 + }, + { + "id": 20, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 658 + }, + "angle": 0, + "vertices": { + "#": 659 + }, + "position": { + "#": 670 + }, + "force": { + "#": 671 + }, + "torque": 0, + "positionImpulse": { + "#": 672 + }, + "constraintImpulse": { + "#": 673 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 674 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 675 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 676 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 678 + }, + "positionPrev": { + "#": 681 + }, + "anglePrev": 0, + "axes": { + "#": 682 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 657 + }, + "sleepCounter": 0, + "region": { + "#": 688 + } + }, + [ + { + "#": 657 + } + ], + [ + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + } + ], + { + "x": 518.456, + "y": 210.472, + "index": 0, + "body": { + "#": 657 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 214.472, + "index": 1, + "body": { + "#": 657 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 216, + "index": 2, + "body": { + "#": 657 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 214.472, + "index": 3, + "body": { + "#": 657 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 210.472, + "index": 4, + "body": { + "#": 657 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 205.528, + "index": 5, + "body": { + "#": 657 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 201.528, + "index": 6, + "body": { + "#": 657 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 200, + "index": 7, + "body": { + "#": 657 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 201.528, + "index": 8, + "body": { + "#": 657 + }, + "isInternal": false + }, + { + "x": 518.456, + "y": 205.528, + "index": 9, + "body": { + "#": 657 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 677 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 679 + }, + "max": { + "#": 680 + } + }, + { + "x": 503.24, + "y": 200 + }, + { + "x": 518.456, + "y": 216 + }, + { + "x": 510.848, + "y": 208 + }, + [ + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,4,4", + "startCol": 10, + "endCol": 10, + "startRow": 4, + "endRow": 4 + }, + { + "id": 21, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 690 + }, + "angle": 0, + "vertices": { + "#": 691 + }, + "position": { + "#": 702 + }, + "force": { + "#": 703 + }, + "torque": 0, + "positionImpulse": { + "#": 704 + }, + "constraintImpulse": { + "#": 705 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 706 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 707 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 708 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 710 + }, + "positionPrev": { + "#": 713 + }, + "anglePrev": 0, + "axes": { + "#": 714 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 689 + }, + "sleepCounter": 0, + "region": { + "#": 720 + } + }, + [ + { + "#": 689 + } + ], + [ + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + } + ], + { + "x": 538.672, + "y": 210.472, + "index": 0, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 214.472, + "index": 1, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 216, + "index": 2, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 214.472, + "index": 3, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 210.472, + "index": 4, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 523.456, + "y": 205.528, + "index": 5, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 526.362, + "y": 201.528, + "index": 6, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 200, + "index": 7, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 535.766, + "y": 201.528, + "index": 8, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 538.672, + "y": 205.528, + "index": 9, + "body": { + "#": 689 + }, + "isInternal": false + }, + { + "x": 531.064, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 709 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 711 + }, + "max": { + "#": 712 + } + }, + { + "x": 523.456, + "y": 200 + }, + { + "x": 538.672, + "y": 216 + }, + { + "x": 531.064, + "y": 208 + }, + [ + { + "#": 715 + }, + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,4,4", + "startCol": 10, + "endCol": 11, + "startRow": 4, + "endRow": 4 + }, + { + "id": 22, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 722 + }, + "angle": 0, + "vertices": { + "#": 723 + }, + "position": { + "#": 734 + }, + "force": { + "#": 735 + }, + "torque": 0, + "positionImpulse": { + "#": 736 + }, + "constraintImpulse": { + "#": 737 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 738 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 739 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 740 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 742 + }, + "positionPrev": { + "#": 745 + }, + "anglePrev": 0, + "axes": { + "#": 746 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 721 + }, + "sleepCounter": 0, + "region": { + "#": 752 + } + }, + [ + { + "#": 721 + } + ], + [ + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + } + ], + { + "x": 558.888, + "y": 210.472, + "index": 0, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 214.472, + "index": 1, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 216, + "index": 2, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 214.472, + "index": 3, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 210.472, + "index": 4, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 543.672, + "y": 205.528, + "index": 5, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 546.578, + "y": 201.528, + "index": 6, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 200, + "index": 7, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 555.982, + "y": 201.528, + "index": 8, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 558.888, + "y": 205.528, + "index": 9, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 551.28, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 741 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 743 + }, + "max": { + "#": 744 + } + }, + { + "x": 543.672, + "y": 200 + }, + { + "x": 558.888, + "y": 216 + }, + { + "x": 551.28, + "y": 208 + }, + [ + { + "#": 747 + }, + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,11,4,4", + "startCol": 11, + "endCol": 11, + "startRow": 4, + "endRow": 4 + }, + { + "id": 23, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 754 + }, + "angle": 0, + "vertices": { + "#": 755 + }, + "position": { + "#": 766 + }, + "force": { + "#": 767 + }, + "torque": 0, + "positionImpulse": { + "#": 768 + }, + "constraintImpulse": { + "#": 769 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 770 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 771 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 772 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 774 + }, + "positionPrev": { + "#": 777 + }, + "anglePrev": 0, + "axes": { + "#": 778 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 753 + }, + "sleepCounter": 0, + "region": { + "#": 784 + } + }, + [ + { + "#": 753 + } + ], + [ + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + } + ], + { + "x": 579.104, + "y": 210.472, + "index": 0, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 214.472, + "index": 1, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 216, + "index": 2, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 214.472, + "index": 3, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 210.472, + "index": 4, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 563.888, + "y": 205.528, + "index": 5, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 566.794, + "y": 201.528, + "index": 6, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 200, + "index": 7, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 576.198, + "y": 201.528, + "index": 8, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 579.104, + "y": 205.528, + "index": 9, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 571.496, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 773 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 775 + }, + "max": { + "#": 776 + } + }, + { + "x": 563.888, + "y": 200 + }, + { + "x": 579.104, + "y": 216 + }, + { + "x": 571.496, + "y": 208 + }, + [ + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + }, + { + "#": 783 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,4,4", + "startCol": 11, + "endCol": 12, + "startRow": 4, + "endRow": 4 + }, + { + "id": 24, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 786 + }, + "angle": 0, + "vertices": { + "#": 787 + }, + "position": { + "#": 798 + }, + "force": { + "#": 799 + }, + "torque": 0, + "positionImpulse": { + "#": 800 + }, + "constraintImpulse": { + "#": 801 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 802 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 803 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 804 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 806 + }, + "positionPrev": { + "#": 809 + }, + "anglePrev": 0, + "axes": { + "#": 810 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 785 + }, + "sleepCounter": 0, + "region": { + "#": 816 + } + }, + [ + { + "#": 785 + } + ], + [ + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + } + ], + { + "x": 599.32, + "y": 210.472, + "index": 0, + "body": { + "#": 785 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 214.472, + "index": 1, + "body": { + "#": 785 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 216, + "index": 2, + "body": { + "#": 785 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 214.472, + "index": 3, + "body": { + "#": 785 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 210.472, + "index": 4, + "body": { + "#": 785 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 205.528, + "index": 5, + "body": { + "#": 785 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 201.528, + "index": 6, + "body": { + "#": 785 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 200, + "index": 7, + "body": { + "#": 785 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 201.528, + "index": 8, + "body": { + "#": 785 + }, + "isInternal": false + }, + { + "x": 599.32, + "y": 205.528, + "index": 9, + "body": { + "#": 785 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 805 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 807 + }, + "max": { + "#": 808 + } + }, + { + "x": 584.104, + "y": 200 + }, + { + "x": 599.32, + "y": 216 + }, + { + "x": 591.712, + "y": 208 + }, + [ + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + }, + { + "#": 814 + }, + { + "#": 815 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,4,4", + "startCol": 12, + "endCol": 12, + "startRow": 4, + "endRow": 4 + }, + { + "id": 25, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 818 + }, + "angle": 0, + "vertices": { + "#": 819 + }, + "position": { + "#": 830 + }, + "force": { + "#": 831 + }, + "torque": 0, + "positionImpulse": { + "#": 832 + }, + "constraintImpulse": { + "#": 833 + }, + "totalContacts": 0, + "speed": 0.74256, + "angularSpeed": 0, + "velocity": { + "#": 834 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 835 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 836 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 838 + }, + "positionPrev": { + "#": 841 + }, + "anglePrev": 0, + "axes": { + "#": 842 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 817 + }, + "sleepCounter": 0, + "region": { + "#": 848 + } + }, + [ + { + "#": 817 + } + ], + [ + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + }, + { + "#": 827 + }, + { + "#": 828 + }, + { + "#": 829 + } + ], + { + "x": 215.216, + "y": 236.11337, + "index": 0, + "body": { + "#": 817 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 240.11337, + "index": 1, + "body": { + "#": 817 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 241.64137, + "index": 2, + "body": { + "#": 817 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 240.11337, + "index": 3, + "body": { + "#": 817 + }, + "isInternal": false + }, + { + "x": 200, + "y": 236.11337, + "index": 4, + "body": { + "#": 817 + }, + "isInternal": false + }, + { + "x": 200, + "y": 231.16937, + "index": 5, + "body": { + "#": 817 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 227.16937, + "index": 6, + "body": { + "#": 817 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 225.64137, + "index": 7, + "body": { + "#": 817 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 227.16937, + "index": 8, + "body": { + "#": 817 + }, + "isInternal": false + }, + { + "x": 215.216, + "y": 231.16937, + "index": 9, + "body": { + "#": 817 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 233.64137 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.36021 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 837 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 839 + }, + "max": { + "#": 840 + } + }, + { + "x": 200, + "y": 225.64137 + }, + { + "x": 215.216, + "y": 241.64137 + }, + { + "x": 207.608, + "y": 233.17137 + }, + [ + { + "#": 843 + }, + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,4,5", + "startCol": 4, + "endCol": 4, + "startRow": 4, + "endRow": 5 + }, + { + "id": 26, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 850 + }, + "angle": 0, + "vertices": { + "#": 851 + }, + "position": { + "#": 862 + }, + "force": { + "#": 863 + }, + "torque": 0, + "positionImpulse": { + "#": 864 + }, + "constraintImpulse": { + "#": 865 + }, + "totalContacts": 0, + "speed": 0.74932, + "angularSpeed": 0, + "velocity": { + "#": 866 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 867 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 868 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 870 + }, + "positionPrev": { + "#": 873 + }, + "anglePrev": 0, + "axes": { + "#": 874 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 849 + }, + "sleepCounter": 0, + "region": { + "#": 880 + } + }, + [ + { + "#": 849 + } + ], + [ + { + "#": 852 + }, + { + "#": 853 + }, + { + "#": 854 + }, + { + "#": 855 + }, + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + }, + { + "#": 860 + }, + { + "#": 861 + } + ], + { + "x": 235.43201, + "y": 236.14147, + "index": 0, + "body": { + "#": 849 + }, + "isInternal": false + }, + { + "x": 232.52601, + "y": 240.14147, + "index": 1, + "body": { + "#": 849 + }, + "isInternal": false + }, + { + "x": 227.82401, + "y": 241.66947, + "index": 2, + "body": { + "#": 849 + }, + "isInternal": false + }, + { + "x": 223.12201, + "y": 240.14147, + "index": 3, + "body": { + "#": 849 + }, + "isInternal": false + }, + { + "x": 220.21601, + "y": 236.14147, + "index": 4, + "body": { + "#": 849 + }, + "isInternal": false + }, + { + "x": 220.21601, + "y": 231.19747, + "index": 5, + "body": { + "#": 849 + }, + "isInternal": false + }, + { + "x": 223.12201, + "y": 227.19747, + "index": 6, + "body": { + "#": 849 + }, + "isInternal": false + }, + { + "x": 227.82401, + "y": 225.66947, + "index": 7, + "body": { + "#": 849 + }, + "isInternal": false + }, + { + "x": 232.52601, + "y": 227.19747, + "index": 8, + "body": { + "#": 849 + }, + "isInternal": false + }, + { + "x": 235.43201, + "y": 231.19747, + "index": 9, + "body": { + "#": 849 + }, + "isInternal": false + }, + { + "x": 227.82401, + "y": 233.66947 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.35172 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 869 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 871 + }, + "max": { + "#": 872 + } + }, + { + "x": 220.21601, + "y": 225.66947 + }, + { + "x": 235.43201, + "y": 241.66947 + }, + { + "x": 227.824, + "y": 233.17999 + }, + [ + { + "#": 875 + }, + { + "#": 876 + }, + { + "#": 877 + }, + { + "#": 878 + }, + { + "#": 879 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,4,5", + "startCol": 4, + "endCol": 4, + "startRow": 4, + "endRow": 5 + }, + { + "id": 27, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 882 + }, + "angle": 0, + "vertices": { + "#": 883 + }, + "position": { + "#": 894 + }, + "force": { + "#": 895 + }, + "torque": 0, + "positionImpulse": { + "#": 896 + }, + "constraintImpulse": { + "#": 897 + }, + "totalContacts": 0, + "speed": 0.68349, + "angularSpeed": 0, + "velocity": { + "#": 898 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 899 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 900 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 902 + }, + "positionPrev": { + "#": 905 + }, + "anglePrev": 0, + "axes": { + "#": 906 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 881 + }, + "sleepCounter": 0, + "region": { + "#": 912 + } + }, + [ + { + "#": 881 + } + ], + [ + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + }, + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + }, + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + } + ], + { + "x": 255.648, + "y": 235.91276, + "index": 0, + "body": { + "#": 881 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 239.91276, + "index": 1, + "body": { + "#": 881 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 241.44076, + "index": 2, + "body": { + "#": 881 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 239.91276, + "index": 3, + "body": { + "#": 881 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 235.91276, + "index": 4, + "body": { + "#": 881 + }, + "isInternal": false + }, + { + "x": 240.432, + "y": 230.96876, + "index": 5, + "body": { + "#": 881 + }, + "isInternal": false + }, + { + "x": 243.338, + "y": 226.96876, + "index": 6, + "body": { + "#": 881 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 225.44076, + "index": 7, + "body": { + "#": 881 + }, + "isInternal": false + }, + { + "x": 252.742, + "y": 226.96876, + "index": 8, + "body": { + "#": 881 + }, + "isInternal": false + }, + { + "x": 255.648, + "y": 230.96876, + "index": 9, + "body": { + "#": 881 + }, + "isInternal": false + }, + { + "x": 248.04, + "y": 233.44076 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.41268 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 901 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 903 + }, + "max": { + "#": 904 + } + }, + { + "x": 240.432, + "y": 225.44076 + }, + { + "x": 255.648, + "y": 241.44076 + }, + { + "x": 248.04, + "y": 233.08438 + }, + [ + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,4,5", + "startCol": 5, + "endCol": 5, + "startRow": 4, + "endRow": 5 + }, + { + "id": 28, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 914 + }, + "angle": 0, + "vertices": { + "#": 915 + }, + "position": { + "#": 926 + }, + "force": { + "#": 927 + }, + "torque": 0, + "positionImpulse": { + "#": 928 + }, + "constraintImpulse": { + "#": 929 + }, + "totalContacts": 0, + "speed": 0.69259, + "angularSpeed": 0, + "velocity": { + "#": 930 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 931 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 932 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 934 + }, + "positionPrev": { + "#": 937 + }, + "anglePrev": 0, + "axes": { + "#": 938 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 913 + }, + "sleepCounter": 0, + "region": { + "#": 944 + } + }, + [ + { + "#": 913 + } + ], + [ + { + "#": 916 + }, + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + }, + { + "#": 920 + }, + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + }, + { + "#": 924 + }, + { + "#": 925 + } + ], + { + "x": 275.86402, + "y": 235.93023, + "index": 0, + "body": { + "#": 913 + }, + "isInternal": false + }, + { + "x": 272.95802, + "y": 239.93023, + "index": 1, + "body": { + "#": 913 + }, + "isInternal": false + }, + { + "x": 268.25602, + "y": 241.45823, + "index": 2, + "body": { + "#": 913 + }, + "isInternal": false + }, + { + "x": 263.55402, + "y": 239.93023, + "index": 3, + "body": { + "#": 913 + }, + "isInternal": false + }, + { + "x": 260.64802, + "y": 235.93023, + "index": 4, + "body": { + "#": 913 + }, + "isInternal": false + }, + { + "x": 260.64802, + "y": 230.98623, + "index": 5, + "body": { + "#": 913 + }, + "isInternal": false + }, + { + "x": 263.55402, + "y": 226.98623, + "index": 6, + "body": { + "#": 913 + }, + "isInternal": false + }, + { + "x": 268.25602, + "y": 225.45823, + "index": 7, + "body": { + "#": 913 + }, + "isInternal": false + }, + { + "x": 272.95802, + "y": 226.98623, + "index": 8, + "body": { + "#": 913 + }, + "isInternal": false + }, + { + "x": 275.86402, + "y": 230.98623, + "index": 9, + "body": { + "#": 913 + }, + "isInternal": false + }, + { + "x": 268.25602, + "y": 233.45823 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00001, + "y": -0.41019 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 933 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 935 + }, + "max": { + "#": 936 + } + }, + { + "x": 260.64802, + "y": 225.45823 + }, + { + "x": 275.86402, + "y": 241.45823 + }, + { + "x": 268.256, + "y": 233.10015 + }, + [ + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + }, + { + "#": 943 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,4,5", + "startCol": 5, + "endCol": 5, + "startRow": 4, + "endRow": 5 + }, + { + "id": 29, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 946 + }, + "angle": 0, + "vertices": { + "#": 947 + }, + "position": { + "#": 958 + }, + "force": { + "#": 959 + }, + "torque": 0, + "positionImpulse": { + "#": 960 + }, + "constraintImpulse": { + "#": 961 + }, + "totalContacts": 0, + "speed": 0.57292, + "angularSpeed": 0, + "velocity": { + "#": 962 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 963 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 964 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 966 + }, + "positionPrev": { + "#": 969 + }, + "anglePrev": 0, + "axes": { + "#": 970 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 945 + }, + "sleepCounter": 0, + "region": { + "#": 976 + } + }, + [ + { + "#": 945 + } + ], + [ + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + } + ], + { + "x": 296.07999, + "y": 235.54675, + "index": 0, + "body": { + "#": 945 + }, + "isInternal": false + }, + { + "x": 293.17399, + "y": 239.54675, + "index": 1, + "body": { + "#": 945 + }, + "isInternal": false + }, + { + "x": 288.47199, + "y": 241.07475, + "index": 2, + "body": { + "#": 945 + }, + "isInternal": false + }, + { + "x": 283.76999, + "y": 239.54675, + "index": 3, + "body": { + "#": 945 + }, + "isInternal": false + }, + { + "x": 280.86399, + "y": 235.54675, + "index": 4, + "body": { + "#": 945 + }, + "isInternal": false + }, + { + "x": 280.86399, + "y": 230.60275, + "index": 5, + "body": { + "#": 945 + }, + "isInternal": false + }, + { + "x": 283.76999, + "y": 226.60275, + "index": 6, + "body": { + "#": 945 + }, + "isInternal": false + }, + { + "x": 288.47199, + "y": 225.07475, + "index": 7, + "body": { + "#": 945 + }, + "isInternal": false + }, + { + "x": 293.17399, + "y": 226.60275, + "index": 8, + "body": { + "#": 945 + }, + "isInternal": false + }, + { + "x": 296.07999, + "y": 230.60275, + "index": 9, + "body": { + "#": 945 + }, + "isInternal": false + }, + { + "x": 288.47199, + "y": 233.07475 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.49174 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 965 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 967 + }, + "max": { + "#": 968 + } + }, + { + "x": 280.86399, + "y": 225.07475 + }, + { + "x": 296.07999, + "y": 241.07475 + }, + { + "x": 288.472, + "y": 232.89653 + }, + [ + { + "#": 971 + }, + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,4,5", + "startCol": 5, + "endCol": 6, + "startRow": 4, + "endRow": 5 + }, + { + "id": 30, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 978 + }, + "angle": 0, + "vertices": { + "#": 979 + }, + "position": { + "#": 990 + }, + "force": { + "#": 991 + }, + "torque": 0, + "positionImpulse": { + "#": 992 + }, + "constraintImpulse": { + "#": 993 + }, + "totalContacts": 0, + "speed": 0.52846, + "angularSpeed": 0, + "velocity": { + "#": 994 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 995 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 996 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 998 + }, + "positionPrev": { + "#": 1001 + }, + "anglePrev": 0, + "axes": { + "#": 1002 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 977 + }, + "sleepCounter": 0, + "region": { + "#": 1008 + } + }, + [ + { + "#": 977 + } + ], + [ + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + }, + { + "#": 985 + }, + { + "#": 986 + }, + { + "#": 987 + }, + { + "#": 988 + }, + { + "#": 989 + } + ], + { + "x": 316.29615, + "y": 235.37889, + "index": 0, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 313.39015, + "y": 239.37889, + "index": 1, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 308.68815, + "y": 240.90689, + "index": 2, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 303.98615, + "y": 239.37889, + "index": 3, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 301.08015, + "y": 235.37889, + "index": 4, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 301.08015, + "y": 230.43489, + "index": 5, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 303.98615, + "y": 226.43489, + "index": 6, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 308.68815, + "y": 224.90689, + "index": 7, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 313.39015, + "y": 226.43489, + "index": 8, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 316.29615, + "y": 230.43489, + "index": 9, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 308.68815, + "y": 232.90689 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00002, + "y": -0.53888 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 997 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 999 + }, + "max": { + "#": 1000 + } + }, + { + "x": 301.08015, + "y": 224.90689 + }, + { + "x": 316.29615, + "y": 240.90689 + }, + { + "x": 308.688, + "y": 232.83439 + }, + [ + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + }, + { + "#": 1007 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,6,4,5", + "startCol": 6, + "endCol": 6, + "startRow": 4, + "endRow": 5 + }, + { + "id": 31, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1010 + }, + "angle": 0, + "vertices": { + "#": 1011 + }, + "position": { + "#": 1022 + }, + "force": { + "#": 1023 + }, + "torque": 0, + "positionImpulse": { + "#": 1024 + }, + "constraintImpulse": { + "#": 1025 + }, + "totalContacts": 0, + "speed": 0.66603, + "angularSpeed": 0, + "velocity": { + "#": 1026 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1027 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1028 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1030 + }, + "positionPrev": { + "#": 1033 + }, + "anglePrev": 0, + "axes": { + "#": 1034 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1009 + }, + "sleepCounter": 0, + "region": { + "#": 1040 + } + }, + [ + { + "#": 1009 + } + ], + [ + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + }, + { + "#": 1016 + }, + { + "#": 1017 + }, + { + "#": 1018 + }, + { + "#": 1019 + }, + { + "#": 1020 + }, + { + "#": 1021 + } + ], + { + "x": 336.5118, + "y": 235.84431, + "index": 0, + "body": { + "#": 1009 + }, + "isInternal": false + }, + { + "x": 333.6058, + "y": 239.84431, + "index": 1, + "body": { + "#": 1009 + }, + "isInternal": false + }, + { + "x": 328.9038, + "y": 241.37231, + "index": 2, + "body": { + "#": 1009 + }, + "isInternal": false + }, + { + "x": 324.2018, + "y": 239.84431, + "index": 3, + "body": { + "#": 1009 + }, + "isInternal": false + }, + { + "x": 321.2958, + "y": 235.84431, + "index": 4, + "body": { + "#": 1009 + }, + "isInternal": false + }, + { + "x": 321.2958, + "y": 230.90031, + "index": 5, + "body": { + "#": 1009 + }, + "isInternal": false + }, + { + "x": 324.2018, + "y": 226.90031, + "index": 6, + "body": { + "#": 1009 + }, + "isInternal": false + }, + { + "x": 328.9038, + "y": 225.37231, + "index": 7, + "body": { + "#": 1009 + }, + "isInternal": false + }, + { + "x": 333.6058, + "y": 226.90031, + "index": 8, + "body": { + "#": 1009 + }, + "isInternal": false + }, + { + "x": 336.5118, + "y": 230.90031, + "index": 9, + "body": { + "#": 1009 + }, + "isInternal": false + }, + { + "x": 328.9038, + "y": 233.37231 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00003, + "y": -0.43025 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1029 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1031 + }, + "max": { + "#": 1032 + } + }, + { + "x": 321.2958, + "y": 225.37231 + }, + { + "x": 336.5118, + "y": 241.37231 + }, + { + "x": 328.904, + "y": 233.05753 + }, + [ + { + "#": 1035 + }, + { + "#": 1036 + }, + { + "#": 1037 + }, + { + "#": 1038 + }, + { + "#": 1039 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,4,5", + "startCol": 6, + "endCol": 7, + "startRow": 4, + "endRow": 5 + }, + { + "id": 32, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1042 + }, + "angle": 0, + "vertices": { + "#": 1043 + }, + "position": { + "#": 1054 + }, + "force": { + "#": 1055 + }, + "torque": 0, + "positionImpulse": { + "#": 1056 + }, + "constraintImpulse": { + "#": 1057 + }, + "totalContacts": 0, + "speed": 0.66415, + "angularSpeed": 0, + "velocity": { + "#": 1058 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1059 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1060 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1062 + }, + "positionPrev": { + "#": 1065 + }, + "anglePrev": 0, + "axes": { + "#": 1066 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1041 + }, + "sleepCounter": 0, + "region": { + "#": 1072 + } + }, + [ + { + "#": 1041 + } + ], + [ + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + } + ], + { + "x": 356.728, + "y": 235.84107, + "index": 0, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 239.84107, + "index": 1, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 241.36907, + "index": 2, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 239.84107, + "index": 3, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 235.84107, + "index": 4, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 341.512, + "y": 230.89707, + "index": 5, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 344.418, + "y": 226.89707, + "index": 6, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 225.36907, + "index": 7, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 353.822, + "y": 226.89707, + "index": 8, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 356.728, + "y": 230.89707, + "index": 9, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 349.12, + "y": 233.36907 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.43339 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1061 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1063 + }, + "max": { + "#": 1064 + } + }, + { + "x": 341.512, + "y": 225.36907 + }, + { + "x": 356.728, + "y": 241.36907 + }, + { + "x": 349.12, + "y": 233.05839 + }, + [ + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,4,5", + "startCol": 7, + "endCol": 7, + "startRow": 4, + "endRow": 5 + }, + { + "id": 33, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1074 + }, + "angle": 0, + "vertices": { + "#": 1075 + }, + "position": { + "#": 1086 + }, + "force": { + "#": 1087 + }, + "torque": 0, + "positionImpulse": { + "#": 1088 + }, + "constraintImpulse": { + "#": 1089 + }, + "totalContacts": 0, + "speed": 0.74866, + "angularSpeed": 0, + "velocity": { + "#": 1090 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1091 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1092 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1094 + }, + "positionPrev": { + "#": 1097 + }, + "anglePrev": 0, + "axes": { + "#": 1098 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1073 + }, + "sleepCounter": 0, + "region": { + "#": 1104 + } + }, + [ + { + "#": 1073 + } + ], + [ + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + }, + { + "#": 1085 + } + ], + { + "x": 376.94399, + "y": 236.13786, + "index": 0, + "body": { + "#": 1073 + }, + "isInternal": false + }, + { + "x": 374.03799, + "y": 240.13786, + "index": 1, + "body": { + "#": 1073 + }, + "isInternal": false + }, + { + "x": 369.33599, + "y": 241.66586, + "index": 2, + "body": { + "#": 1073 + }, + "isInternal": false + }, + { + "x": 364.63399, + "y": 240.13786, + "index": 3, + "body": { + "#": 1073 + }, + "isInternal": false + }, + { + "x": 361.72799, + "y": 236.13786, + "index": 4, + "body": { + "#": 1073 + }, + "isInternal": false + }, + { + "x": 361.72799, + "y": 231.19386, + "index": 5, + "body": { + "#": 1073 + }, + "isInternal": false + }, + { + "x": 364.63399, + "y": 227.19386, + "index": 6, + "body": { + "#": 1073 + }, + "isInternal": false + }, + { + "x": 369.33599, + "y": 225.66586, + "index": 7, + "body": { + "#": 1073 + }, + "isInternal": false + }, + { + "x": 374.03799, + "y": 227.19386, + "index": 8, + "body": { + "#": 1073 + }, + "isInternal": false + }, + { + "x": 376.94399, + "y": 231.19386, + "index": 9, + "body": { + "#": 1073 + }, + "isInternal": false + }, + { + "x": 369.33599, + "y": 233.66586 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.35282 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1093 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1095 + }, + "max": { + "#": 1096 + } + }, + { + "x": 361.72799, + "y": 225.66586 + }, + { + "x": 376.94399, + "y": 241.66586 + }, + { + "x": 369.336, + "y": 233.17921 + }, + [ + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,4,5", + "startCol": 7, + "endCol": 7, + "startRow": 4, + "endRow": 5 + }, + { + "id": 34, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1106 + }, + "angle": 0, + "vertices": { + "#": 1107 + }, + "position": { + "#": 1118 + }, + "force": { + "#": 1119 + }, + "torque": 0, + "positionImpulse": { + "#": 1120 + }, + "constraintImpulse": { + "#": 1121 + }, + "totalContacts": 0, + "speed": 0.74241, + "angularSpeed": 0, + "velocity": { + "#": 1122 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1123 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1124 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1126 + }, + "positionPrev": { + "#": 1129 + }, + "anglePrev": 0, + "axes": { + "#": 1130 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1105 + }, + "sleepCounter": 0, + "region": { + "#": 1136 + } + }, + [ + { + "#": 1105 + } + ], + [ + { + "#": 1108 + }, + { + "#": 1109 + }, + { + "#": 1110 + }, + { + "#": 1111 + }, + { + "#": 1112 + }, + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + } + ], + { + "x": 397.16, + "y": 236.11204, + "index": 0, + "body": { + "#": 1105 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 240.11204, + "index": 1, + "body": { + "#": 1105 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 241.64004, + "index": 2, + "body": { + "#": 1105 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 240.11204, + "index": 3, + "body": { + "#": 1105 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 236.11204, + "index": 4, + "body": { + "#": 1105 + }, + "isInternal": false + }, + { + "x": 381.944, + "y": 231.16804, + "index": 5, + "body": { + "#": 1105 + }, + "isInternal": false + }, + { + "x": 384.85, + "y": 227.16804, + "index": 6, + "body": { + "#": 1105 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 225.64004, + "index": 7, + "body": { + "#": 1105 + }, + "isInternal": false + }, + { + "x": 394.254, + "y": 227.16804, + "index": 8, + "body": { + "#": 1105 + }, + "isInternal": false + }, + { + "x": 397.16, + "y": 231.16804, + "index": 9, + "body": { + "#": 1105 + }, + "isInternal": false + }, + { + "x": 389.552, + "y": 233.64004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.36059 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1125 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1127 + }, + "max": { + "#": 1128 + } + }, + { + "x": 381.944, + "y": 225.64004 + }, + { + "x": 397.16, + "y": 241.64004 + }, + { + "x": 389.552, + "y": 233.17122 + }, + [ + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,4,5", + "startCol": 7, + "endCol": 8, + "startRow": 4, + "endRow": 5 + }, + { + "id": 35, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1138 + }, + "angle": 0, + "vertices": { + "#": 1139 + }, + "position": { + "#": 1150 + }, + "force": { + "#": 1151 + }, + "torque": 0, + "positionImpulse": { + "#": 1152 + }, + "constraintImpulse": { + "#": 1153 + }, + "totalContacts": 0, + "speed": 0.74213, + "angularSpeed": 0, + "velocity": { + "#": 1154 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1155 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1156 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1158 + }, + "positionPrev": { + "#": 1161 + }, + "anglePrev": 0, + "axes": { + "#": 1162 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1137 + }, + "sleepCounter": 0, + "region": { + "#": 1168 + } + }, + [ + { + "#": 1137 + } + ], + [ + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + } + ], + { + "x": 417.376, + "y": 236.11033, + "index": 0, + "body": { + "#": 1137 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 240.11033, + "index": 1, + "body": { + "#": 1137 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 241.63833, + "index": 2, + "body": { + "#": 1137 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 240.11033, + "index": 3, + "body": { + "#": 1137 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 236.11033, + "index": 4, + "body": { + "#": 1137 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 231.16633, + "index": 5, + "body": { + "#": 1137 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 227.16633, + "index": 6, + "body": { + "#": 1137 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 225.63833, + "index": 7, + "body": { + "#": 1137 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 227.16633, + "index": 8, + "body": { + "#": 1137 + }, + "isInternal": false + }, + { + "x": 417.376, + "y": 231.16633, + "index": 9, + "body": { + "#": 1137 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 233.63833 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.36113 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1157 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1159 + }, + "max": { + "#": 1160 + } + }, + { + "x": 402.16, + "y": 225.63833 + }, + { + "x": 417.376, + "y": 241.63833 + }, + { + "x": 409.768, + "y": 233.1709 + }, + [ + { + "#": 1163 + }, + { + "#": 1164 + }, + { + "#": 1165 + }, + { + "#": 1166 + }, + { + "#": 1167 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,4,5", + "startCol": 8, + "endCol": 8, + "startRow": 4, + "endRow": 5 + }, + { + "id": 36, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1170 + }, + "angle": 0, + "vertices": { + "#": 1171 + }, + "position": { + "#": 1182 + }, + "force": { + "#": 1183 + }, + "torque": 0, + "positionImpulse": { + "#": 1184 + }, + "constraintImpulse": { + "#": 1185 + }, + "totalContacts": 0, + "speed": 0.74208, + "angularSpeed": 0, + "velocity": { + "#": 1186 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1187 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1188 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1190 + }, + "positionPrev": { + "#": 1193 + }, + "anglePrev": 0, + "axes": { + "#": 1194 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1169 + }, + "sleepCounter": 0, + "region": { + "#": 1200 + } + }, + [ + { + "#": 1169 + } + ], + [ + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + }, + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + }, + { + "#": 1179 + }, + { + "#": 1180 + }, + { + "#": 1181 + } + ], + { + "x": 437.592, + "y": 236.10984, + "index": 0, + "body": { + "#": 1169 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 240.10984, + "index": 1, + "body": { + "#": 1169 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 241.63784, + "index": 2, + "body": { + "#": 1169 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 240.10984, + "index": 3, + "body": { + "#": 1169 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 236.10984, + "index": 4, + "body": { + "#": 1169 + }, + "isInternal": false + }, + { + "x": 422.376, + "y": 231.16584, + "index": 5, + "body": { + "#": 1169 + }, + "isInternal": false + }, + { + "x": 425.282, + "y": 227.16584, + "index": 6, + "body": { + "#": 1169 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 225.63784, + "index": 7, + "body": { + "#": 1169 + }, + "isInternal": false + }, + { + "x": 434.686, + "y": 227.16584, + "index": 8, + "body": { + "#": 1169 + }, + "isInternal": false + }, + { + "x": 437.592, + "y": 231.16584, + "index": 9, + "body": { + "#": 1169 + }, + "isInternal": false + }, + { + "x": 429.984, + "y": 233.63784 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.36128 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1189 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1191 + }, + "max": { + "#": 1192 + } + }, + { + "x": 422.376, + "y": 225.63784 + }, + { + "x": 437.592, + "y": 241.63784 + }, + { + "x": 429.984, + "y": 233.17085 + }, + [ + { + "#": 1195 + }, + { + "#": 1196 + }, + { + "#": 1197 + }, + { + "#": 1198 + }, + { + "#": 1199 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,4,5", + "startCol": 8, + "endCol": 9, + "startRow": 4, + "endRow": 5 + }, + { + "id": 37, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1202 + }, + "angle": 0, + "vertices": { + "#": 1203 + }, + "position": { + "#": 1214 + }, + "force": { + "#": 1215 + }, + "torque": 0, + "positionImpulse": { + "#": 1216 + }, + "constraintImpulse": { + "#": 1217 + }, + "totalContacts": 0, + "speed": 0.73916, + "angularSpeed": 0, + "velocity": { + "#": 1218 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1219 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1220 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1222 + }, + "positionPrev": { + "#": 1225 + }, + "anglePrev": 0, + "axes": { + "#": 1226 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1201 + }, + "sleepCounter": 0, + "region": { + "#": 1232 + } + }, + [ + { + "#": 1201 + } + ], + [ + { + "#": 1204 + }, + { + "#": 1205 + }, + { + "#": 1206 + }, + { + "#": 1207 + }, + { + "#": 1208 + }, + { + "#": 1209 + }, + { + "#": 1210 + }, + { + "#": 1211 + }, + { + "#": 1212 + }, + { + "#": 1213 + } + ], + { + "x": 457.80804, + "y": 236.09603, + "index": 0, + "body": { + "#": 1201 + }, + "isInternal": false + }, + { + "x": 454.90204, + "y": 240.09603, + "index": 1, + "body": { + "#": 1201 + }, + "isInternal": false + }, + { + "x": 450.20004, + "y": 241.62403, + "index": 2, + "body": { + "#": 1201 + }, + "isInternal": false + }, + { + "x": 445.49804, + "y": 240.09603, + "index": 3, + "body": { + "#": 1201 + }, + "isInternal": false + }, + { + "x": 442.59204, + "y": 236.09603, + "index": 4, + "body": { + "#": 1201 + }, + "isInternal": false + }, + { + "x": 442.59204, + "y": 231.15203, + "index": 5, + "body": { + "#": 1201 + }, + "isInternal": false + }, + { + "x": 445.49804, + "y": 227.15203, + "index": 6, + "body": { + "#": 1201 + }, + "isInternal": false + }, + { + "x": 450.20004, + "y": 225.62403, + "index": 7, + "body": { + "#": 1201 + }, + "isInternal": false + }, + { + "x": 454.90204, + "y": 227.15203, + "index": 8, + "body": { + "#": 1201 + }, + "isInternal": false + }, + { + "x": 457.80804, + "y": 231.15203, + "index": 9, + "body": { + "#": 1201 + }, + "isInternal": false + }, + { + "x": 450.20004, + "y": 233.62403 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00001, + "y": -0.36557 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1221 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1223 + }, + "max": { + "#": 1224 + } + }, + { + "x": 442.59204, + "y": 225.62403 + }, + { + "x": 457.80804, + "y": 241.62403 + }, + { + "x": 450.2, + "y": 233.16735 + }, + [ + { + "#": 1227 + }, + { + "#": 1228 + }, + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,4,5", + "startCol": 9, + "endCol": 9, + "startRow": 4, + "endRow": 5 + }, + { + "id": 38, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1234 + }, + "angle": 0, + "vertices": { + "#": 1235 + }, + "position": { + "#": 1246 + }, + "force": { + "#": 1247 + }, + "torque": 0, + "positionImpulse": { + "#": 1248 + }, + "constraintImpulse": { + "#": 1249 + }, + "totalContacts": 0, + "speed": 0.64129, + "angularSpeed": 0, + "velocity": { + "#": 1250 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1251 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1252 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1254 + }, + "positionPrev": { + "#": 1257 + }, + "anglePrev": 0, + "axes": { + "#": 1258 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1233 + }, + "sleepCounter": 0, + "region": { + "#": 1264 + } + }, + [ + { + "#": 1233 + } + ], + [ + { + "#": 1236 + }, + { + "#": 1237 + }, + { + "#": 1238 + }, + { + "#": 1239 + }, + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + } + ], + { + "x": 478.02398, + "y": 235.74127, + "index": 0, + "body": { + "#": 1233 + }, + "isInternal": false + }, + { + "x": 475.11798, + "y": 239.74127, + "index": 1, + "body": { + "#": 1233 + }, + "isInternal": false + }, + { + "x": 470.41598, + "y": 241.26927, + "index": 2, + "body": { + "#": 1233 + }, + "isInternal": false + }, + { + "x": 465.71398, + "y": 239.74127, + "index": 3, + "body": { + "#": 1233 + }, + "isInternal": false + }, + { + "x": 462.80798, + "y": 235.74127, + "index": 4, + "body": { + "#": 1233 + }, + "isInternal": false + }, + { + "x": 462.80798, + "y": 230.79727, + "index": 5, + "body": { + "#": 1233 + }, + "isInternal": false + }, + { + "x": 465.71398, + "y": 226.79727, + "index": 6, + "body": { + "#": 1233 + }, + "isInternal": false + }, + { + "x": 470.41598, + "y": 225.26927, + "index": 7, + "body": { + "#": 1233 + }, + "isInternal": false + }, + { + "x": 475.11798, + "y": 226.79727, + "index": 8, + "body": { + "#": 1233 + }, + "isInternal": false + }, + { + "x": 478.02398, + "y": 230.79727, + "index": 9, + "body": { + "#": 1233 + }, + "isInternal": false + }, + { + "x": 470.41598, + "y": 233.26927 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00001, + "y": -0.46338 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1253 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1255 + }, + "max": { + "#": 1256 + } + }, + { + "x": 462.80798, + "y": 225.26927 + }, + { + "x": 478.02398, + "y": 241.26927 + }, + { + "x": 470.416, + "y": 233.02912 + }, + [ + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + }, + { + "#": 1263 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,4,5", + "startCol": 9, + "endCol": 9, + "startRow": 4, + "endRow": 5 + }, + { + "id": 39, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1266 + }, + "angle": 0, + "vertices": { + "#": 1267 + }, + "position": { + "#": 1278 + }, + "force": { + "#": 1279 + }, + "torque": 0, + "positionImpulse": { + "#": 1280 + }, + "constraintImpulse": { + "#": 1281 + }, + "totalContacts": 0, + "speed": 0.63785, + "angularSpeed": 0, + "velocity": { + "#": 1282 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1283 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1284 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1286 + }, + "positionPrev": { + "#": 1289 + }, + "anglePrev": 0, + "axes": { + "#": 1290 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1265 + }, + "sleepCounter": 0, + "region": { + "#": 1296 + } + }, + [ + { + "#": 1265 + } + ], + [ + { + "#": 1268 + }, + { + "#": 1269 + }, + { + "#": 1270 + }, + { + "#": 1271 + }, + { + "#": 1272 + }, + { + "#": 1273 + }, + { + "#": 1274 + }, + { + "#": 1275 + }, + { + "#": 1276 + }, + { + "#": 1277 + } + ], + { + "x": 498.24, + "y": 235.72739, + "index": 0, + "body": { + "#": 1265 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 239.72739, + "index": 1, + "body": { + "#": 1265 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 241.25539, + "index": 2, + "body": { + "#": 1265 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 239.72739, + "index": 3, + "body": { + "#": 1265 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 235.72739, + "index": 4, + "body": { + "#": 1265 + }, + "isInternal": false + }, + { + "x": 483.024, + "y": 230.78339, + "index": 5, + "body": { + "#": 1265 + }, + "isInternal": false + }, + { + "x": 485.93, + "y": 226.78339, + "index": 6, + "body": { + "#": 1265 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 225.25539, + "index": 7, + "body": { + "#": 1265 + }, + "isInternal": false + }, + { + "x": 495.334, + "y": 226.78339, + "index": 8, + "body": { + "#": 1265 + }, + "isInternal": false + }, + { + "x": 498.24, + "y": 230.78339, + "index": 9, + "body": { + "#": 1265 + }, + "isInternal": false + }, + { + "x": 490.632, + "y": 233.25539 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.46749 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1285 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1287 + }, + "max": { + "#": 1288 + } + }, + { + "x": 483.024, + "y": 225.25539 + }, + { + "x": 498.24, + "y": 241.25539 + }, + { + "x": 490.632, + "y": 233.02471 + }, + [ + { + "#": 1291 + }, + { + "#": 1292 + }, + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,4,5", + "startCol": 10, + "endCol": 10, + "startRow": 4, + "endRow": 5 + }, + { + "id": 40, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1298 + }, + "angle": 0, + "vertices": { + "#": 1299 + }, + "position": { + "#": 1310 + }, + "force": { + "#": 1311 + }, + "torque": 0, + "positionImpulse": { + "#": 1312 + }, + "constraintImpulse": { + "#": 1313 + }, + "totalContacts": 0, + "speed": 0.63784, + "angularSpeed": 0, + "velocity": { + "#": 1314 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1315 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1316 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1318 + }, + "positionPrev": { + "#": 1321 + }, + "anglePrev": 0, + "axes": { + "#": 1322 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1297 + }, + "sleepCounter": 0, + "region": { + "#": 1328 + } + }, + [ + { + "#": 1297 + } + ], + [ + { + "#": 1300 + }, + { + "#": 1301 + }, + { + "#": 1302 + }, + { + "#": 1303 + }, + { + "#": 1304 + }, + { + "#": 1305 + }, + { + "#": 1306 + }, + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + } + ], + { + "x": 518.456, + "y": 235.72735, + "index": 0, + "body": { + "#": 1297 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 239.72735, + "index": 1, + "body": { + "#": 1297 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 241.25535, + "index": 2, + "body": { + "#": 1297 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 239.72735, + "index": 3, + "body": { + "#": 1297 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 235.72735, + "index": 4, + "body": { + "#": 1297 + }, + "isInternal": false + }, + { + "x": 503.24, + "y": 230.78335, + "index": 5, + "body": { + "#": 1297 + }, + "isInternal": false + }, + { + "x": 506.146, + "y": 226.78335, + "index": 6, + "body": { + "#": 1297 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 225.25535, + "index": 7, + "body": { + "#": 1297 + }, + "isInternal": false + }, + { + "x": 515.55, + "y": 226.78335, + "index": 8, + "body": { + "#": 1297 + }, + "isInternal": false + }, + { + "x": 518.456, + "y": 230.78335, + "index": 9, + "body": { + "#": 1297 + }, + "isInternal": false + }, + { + "x": 510.848, + "y": 233.25535 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.46751 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1317 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1319 + }, + "max": { + "#": 1320 + } + }, + { + "x": 503.24, + "y": 225.25535 + }, + { + "x": 518.456, + "y": 241.25535 + }, + { + "x": 510.848, + "y": 233.0247 + }, + [ + { + "#": 1323 + }, + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + }, + { + "#": 1327 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,4,5", + "startCol": 10, + "endCol": 10, + "startRow": 4, + "endRow": 5 + }, + { + "id": 41, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1330 + }, + "angle": 0, + "vertices": { + "#": 1331 + }, + "position": { + "#": 1342 + }, + "force": { + "#": 1343 + }, + "torque": 0, + "positionImpulse": { + "#": 1344 + }, + "constraintImpulse": { + "#": 1345 + }, + "totalContacts": 0, + "speed": 0.64131, + "angularSpeed": 0, + "velocity": { + "#": 1346 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1347 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1348 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1350 + }, + "positionPrev": { + "#": 1353 + }, + "anglePrev": 0, + "axes": { + "#": 1354 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1329 + }, + "sleepCounter": 0, + "region": { + "#": 1360 + } + }, + [ + { + "#": 1329 + } + ], + [ + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + }, + { + "#": 1335 + }, + { + "#": 1336 + }, + { + "#": 1337 + }, + { + "#": 1338 + }, + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + } + ], + { + "x": 538.67202, + "y": 235.74136, + "index": 0, + "body": { + "#": 1329 + }, + "isInternal": false + }, + { + "x": 535.76602, + "y": 239.74136, + "index": 1, + "body": { + "#": 1329 + }, + "isInternal": false + }, + { + "x": 531.06402, + "y": 241.26936, + "index": 2, + "body": { + "#": 1329 + }, + "isInternal": false + }, + { + "x": 526.36202, + "y": 239.74136, + "index": 3, + "body": { + "#": 1329 + }, + "isInternal": false + }, + { + "x": 523.45602, + "y": 235.74136, + "index": 4, + "body": { + "#": 1329 + }, + "isInternal": false + }, + { + "x": 523.45602, + "y": 230.79736, + "index": 5, + "body": { + "#": 1329 + }, + "isInternal": false + }, + { + "x": 526.36202, + "y": 226.79736, + "index": 6, + "body": { + "#": 1329 + }, + "isInternal": false + }, + { + "x": 531.06402, + "y": 225.26936, + "index": 7, + "body": { + "#": 1329 + }, + "isInternal": false + }, + { + "x": 535.76602, + "y": 226.79736, + "index": 8, + "body": { + "#": 1329 + }, + "isInternal": false + }, + { + "x": 538.67202, + "y": 230.79736, + "index": 9, + "body": { + "#": 1329 + }, + "isInternal": false + }, + { + "x": 531.06402, + "y": 233.26936 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00001, + "y": -0.46335 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1349 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1351 + }, + "max": { + "#": 1352 + } + }, + { + "x": 523.45602, + "y": 225.26936 + }, + { + "x": 538.67202, + "y": 241.26936 + }, + { + "x": 531.064, + "y": 233.02915 + }, + [ + { + "#": 1355 + }, + { + "#": 1356 + }, + { + "#": 1357 + }, + { + "#": 1358 + }, + { + "#": 1359 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,4,5", + "startCol": 10, + "endCol": 11, + "startRow": 4, + "endRow": 5 + }, + { + "id": 42, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1362 + }, + "angle": 0, + "vertices": { + "#": 1363 + }, + "position": { + "#": 1374 + }, + "force": { + "#": 1375 + }, + "torque": 0, + "positionImpulse": { + "#": 1376 + }, + "constraintImpulse": { + "#": 1377 + }, + "totalContacts": 0, + "speed": 0.73914, + "angularSpeed": 0, + "velocity": { + "#": 1378 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1379 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1380 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1382 + }, + "positionPrev": { + "#": 1385 + }, + "anglePrev": 0, + "axes": { + "#": 1386 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1361 + }, + "sleepCounter": 0, + "region": { + "#": 1392 + } + }, + [ + { + "#": 1361 + } + ], + [ + { + "#": 1364 + }, + { + "#": 1365 + }, + { + "#": 1366 + }, + { + "#": 1367 + }, + { + "#": 1368 + }, + { + "#": 1369 + }, + { + "#": 1370 + }, + { + "#": 1371 + }, + { + "#": 1372 + }, + { + "#": 1373 + } + ], + { + "x": 558.88796, + "y": 236.09591, + "index": 0, + "body": { + "#": 1361 + }, + "isInternal": false + }, + { + "x": 555.98196, + "y": 240.09591, + "index": 1, + "body": { + "#": 1361 + }, + "isInternal": false + }, + { + "x": 551.27996, + "y": 241.62391, + "index": 2, + "body": { + "#": 1361 + }, + "isInternal": false + }, + { + "x": 546.57796, + "y": 240.09591, + "index": 3, + "body": { + "#": 1361 + }, + "isInternal": false + }, + { + "x": 543.67196, + "y": 236.09591, + "index": 4, + "body": { + "#": 1361 + }, + "isInternal": false + }, + { + "x": 543.67196, + "y": 231.15191, + "index": 5, + "body": { + "#": 1361 + }, + "isInternal": false + }, + { + "x": 546.57796, + "y": 227.15191, + "index": 6, + "body": { + "#": 1361 + }, + "isInternal": false + }, + { + "x": 551.27996, + "y": 225.62391, + "index": 7, + "body": { + "#": 1361 + }, + "isInternal": false + }, + { + "x": 555.98196, + "y": 227.15191, + "index": 8, + "body": { + "#": 1361 + }, + "isInternal": false + }, + { + "x": 558.88796, + "y": 231.15191, + "index": 9, + "body": { + "#": 1361 + }, + "isInternal": false + }, + { + "x": 551.27996, + "y": 233.62391 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00001, + "y": -0.3656 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1381 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1383 + }, + "max": { + "#": 1384 + } + }, + { + "x": 543.67196, + "y": 225.62391 + }, + { + "x": 558.88796, + "y": 241.62391 + }, + { + "x": 551.28, + "y": 233.16733 + }, + [ + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + }, + { + "#": 1390 + }, + { + "#": 1391 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,11,4,5", + "startCol": 11, + "endCol": 11, + "startRow": 4, + "endRow": 5 + }, + { + "id": 43, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1394 + }, + "angle": 0, + "vertices": { + "#": 1395 + }, + "position": { + "#": 1406 + }, + "force": { + "#": 1407 + }, + "torque": 0, + "positionImpulse": { + "#": 1408 + }, + "constraintImpulse": { + "#": 1409 + }, + "totalContacts": 0, + "speed": 0.74208, + "angularSpeed": 0, + "velocity": { + "#": 1410 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1411 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1412 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1414 + }, + "positionPrev": { + "#": 1417 + }, + "anglePrev": 0, + "axes": { + "#": 1418 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1393 + }, + "sleepCounter": 0, + "region": { + "#": 1424 + } + }, + [ + { + "#": 1393 + } + ], + [ + { + "#": 1396 + }, + { + "#": 1397 + }, + { + "#": 1398 + }, + { + "#": 1399 + }, + { + "#": 1400 + }, + { + "#": 1401 + }, + { + "#": 1402 + }, + { + "#": 1403 + }, + { + "#": 1404 + }, + { + "#": 1405 + } + ], + { + "x": 579.10399, + "y": 236.10979, + "index": 0, + "body": { + "#": 1393 + }, + "isInternal": false + }, + { + "x": 576.19799, + "y": 240.10979, + "index": 1, + "body": { + "#": 1393 + }, + "isInternal": false + }, + { + "x": 571.49599, + "y": 241.63779, + "index": 2, + "body": { + "#": 1393 + }, + "isInternal": false + }, + { + "x": 566.79399, + "y": 240.10979, + "index": 3, + "body": { + "#": 1393 + }, + "isInternal": false + }, + { + "x": 563.88799, + "y": 236.10979, + "index": 4, + "body": { + "#": 1393 + }, + "isInternal": false + }, + { + "x": 563.88799, + "y": 231.16579, + "index": 5, + "body": { + "#": 1393 + }, + "isInternal": false + }, + { + "x": 566.79399, + "y": 227.16579, + "index": 6, + "body": { + "#": 1393 + }, + "isInternal": false + }, + { + "x": 571.49599, + "y": 225.63779, + "index": 7, + "body": { + "#": 1393 + }, + "isInternal": false + }, + { + "x": 576.19799, + "y": 227.16579, + "index": 8, + "body": { + "#": 1393 + }, + "isInternal": false + }, + { + "x": 579.10399, + "y": 231.16579, + "index": 9, + "body": { + "#": 1393 + }, + "isInternal": false + }, + { + "x": 571.49599, + "y": 233.63779 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.36129 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1413 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1415 + }, + "max": { + "#": 1416 + } + }, + { + "x": 563.88799, + "y": 225.63779 + }, + { + "x": 579.10399, + "y": 241.63779 + }, + { + "x": 571.496, + "y": 233.17084 + }, + [ + { + "#": 1419 + }, + { + "#": 1420 + }, + { + "#": 1421 + }, + { + "#": 1422 + }, + { + "#": 1423 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,4,5", + "startCol": 11, + "endCol": 12, + "startRow": 4, + "endRow": 5 + }, + { + "id": 44, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1426 + }, + "angle": 0, + "vertices": { + "#": 1427 + }, + "position": { + "#": 1438 + }, + "force": { + "#": 1439 + }, + "torque": 0, + "positionImpulse": { + "#": 1440 + }, + "constraintImpulse": { + "#": 1441 + }, + "totalContacts": 0, + "speed": 0.74209, + "angularSpeed": 0, + "velocity": { + "#": 1442 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1443 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1444 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1446 + }, + "positionPrev": { + "#": 1449 + }, + "anglePrev": 0, + "axes": { + "#": 1450 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1425 + }, + "sleepCounter": 0, + "region": { + "#": 1456 + } + }, + [ + { + "#": 1425 + } + ], + [ + { + "#": 1428 + }, + { + "#": 1429 + }, + { + "#": 1430 + }, + { + "#": 1431 + }, + { + "#": 1432 + }, + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + } + ], + { + "x": 599.32, + "y": 236.10993, + "index": 0, + "body": { + "#": 1425 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 240.10993, + "index": 1, + "body": { + "#": 1425 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 241.63793, + "index": 2, + "body": { + "#": 1425 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 240.10993, + "index": 3, + "body": { + "#": 1425 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 236.10993, + "index": 4, + "body": { + "#": 1425 + }, + "isInternal": false + }, + { + "x": 584.104, + "y": 231.16593, + "index": 5, + "body": { + "#": 1425 + }, + "isInternal": false + }, + { + "x": 587.01, + "y": 227.16593, + "index": 6, + "body": { + "#": 1425 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 225.63793, + "index": 7, + "body": { + "#": 1425 + }, + "isInternal": false + }, + { + "x": 596.414, + "y": 227.16593, + "index": 8, + "body": { + "#": 1425 + }, + "isInternal": false + }, + { + "x": 599.32, + "y": 231.16593, + "index": 9, + "body": { + "#": 1425 + }, + "isInternal": false + }, + { + "x": 591.712, + "y": 233.63793 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.36125 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1445 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1447 + }, + "max": { + "#": 1448 + } + }, + { + "x": 584.104, + "y": 225.63793 + }, + { + "x": 599.32, + "y": 241.63793 + }, + { + "x": 591.712, + "y": 233.17086 + }, + [ + { + "#": 1451 + }, + { + "#": 1452 + }, + { + "#": 1453 + }, + { + "#": 1454 + }, + { + "#": 1455 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,4,5", + "startCol": 12, + "endCol": 12, + "startRow": 4, + "endRow": 5 + }, + { + "id": 45, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1458 + }, + "angle": 0, + "vertices": { + "#": 1459 + }, + "position": { + "#": 1470 + }, + "force": { + "#": 1471 + }, + "torque": 0, + "positionImpulse": { + "#": 1472 + }, + "constraintImpulse": { + "#": 1473 + }, + "totalContacts": 0, + "speed": 1.11299, + "angularSpeed": 0, + "velocity": { + "#": 1474 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1475 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1476 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1478 + }, + "positionPrev": { + "#": 1481 + }, + "anglePrev": 0, + "axes": { + "#": 1482 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1457 + }, + "sleepCounter": 0, + "region": { + "#": 1488 + } + }, + [ + { + "#": 1457 + } + ], + [ + { + "#": 1460 + }, + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + } + ], + { + "x": 215.216, + "y": 260.30651, + "index": 0, + "body": { + "#": 1457 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 264.30651, + "index": 1, + "body": { + "#": 1457 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 265.83451, + "index": 2, + "body": { + "#": 1457 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 264.30651, + "index": 3, + "body": { + "#": 1457 + }, + "isInternal": false + }, + { + "x": 200, + "y": 260.30651, + "index": 4, + "body": { + "#": 1457 + }, + "isInternal": false + }, + { + "x": 200, + "y": 255.36251, + "index": 5, + "body": { + "#": 1457 + }, + "isInternal": false + }, + { + "x": 202.906, + "y": 251.36251, + "index": 6, + "body": { + "#": 1457 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 249.83451, + "index": 7, + "body": { + "#": 1457 + }, + "isInternal": false + }, + { + "x": 212.31, + "y": 251.36251, + "index": 8, + "body": { + "#": 1457 + }, + "isInternal": false + }, + { + "x": 215.216, + "y": 255.36251, + "index": 9, + "body": { + "#": 1457 + }, + "isInternal": false + }, + { + "x": 207.608, + "y": 257.83451 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.14978 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1477 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1479 + }, + "max": { + "#": 1480 + } + }, + { + "x": 200, + "y": 249.83451 + }, + { + "x": 215.216, + "y": 265.83451 + }, + { + "x": 207.608, + "y": 256.98222 + }, + [ + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + }, + { + "#": 1487 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,5,5", + "startCol": 4, + "endCol": 4, + "startRow": 5, + "endRow": 5 + }, + { + "id": 46, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1490 + }, + "angle": 0, + "vertices": { + "#": 1491 + }, + "position": { + "#": 1502 + }, + "force": { + "#": 1503 + }, + "torque": 0, + "positionImpulse": { + "#": 1504 + }, + "constraintImpulse": { + "#": 1505 + }, + "totalContacts": 0, + "speed": 1.13689, + "angularSpeed": 0, + "velocity": { + "#": 1506 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1507 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1508 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1510 + }, + "positionPrev": { + "#": 1513 + }, + "anglePrev": 0, + "axes": { + "#": 1514 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1489 + }, + "sleepCounter": 0, + "region": { + "#": 1520 + } + }, + [ + { + "#": 1489 + } + ], + [ + { + "#": 1492 + }, + { + "#": 1493 + }, + { + "#": 1494 + }, + { + "#": 1495 + }, + { + "#": 1496 + }, + { + "#": 1497 + }, + { + "#": 1498 + }, + { + "#": 1499 + }, + { + "#": 1500 + }, + { + "#": 1501 + } + ], + { + "x": 235.43234, + "y": 260.39303, + "index": 0, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 232.52634, + "y": 264.39303, + "index": 1, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 227.82434, + "y": 265.92103, + "index": 2, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 223.12234, + "y": 264.39303, + "index": 3, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 220.21634, + "y": 260.39303, + "index": 4, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 220.21634, + "y": 255.44903, + "index": 5, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 223.12234, + "y": 251.44903, + "index": 6, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 227.82434, + "y": 249.92103, + "index": 7, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 232.52634, + "y": 251.44903, + "index": 8, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 235.43234, + "y": 255.44903, + "index": 9, + "body": { + "#": 1489 + }, + "isInternal": false + }, + { + "x": 227.82434, + "y": 257.92103 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00016, + "y": 0.17708 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1509 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1511 + }, + "max": { + "#": 1512 + } + }, + { + "x": 220.21634, + "y": 249.92103 + }, + { + "x": 235.43234, + "y": 265.92103 + }, + { + "x": 227.824, + "y": 257.01599 + }, + [ + { + "#": 1515 + }, + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,5,5", + "startCol": 4, + "endCol": 4, + "startRow": 5, + "endRow": 5 + }, + { + "id": 47, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1522 + }, + "angle": 0, + "vertices": { + "#": 1523 + }, + "position": { + "#": 1534 + }, + "force": { + "#": 1535 + }, + "torque": 0, + "positionImpulse": { + "#": 1536 + }, + "constraintImpulse": { + "#": 1537 + }, + "totalContacts": 0, + "speed": 0.96453, + "angularSpeed": 0, + "velocity": { + "#": 1538 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1539 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1540 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1542 + }, + "positionPrev": { + "#": 1545 + }, + "anglePrev": 0, + "axes": { + "#": 1546 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1521 + }, + "sleepCounter": 0, + "region": { + "#": 1552 + } + }, + [ + { + "#": 1521 + } + ], + [ + { + "#": 1524 + }, + { + "#": 1525 + }, + { + "#": 1526 + }, + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + }, + { + "#": 1533 + } + ], + { + "x": 255.64775, + "y": 259.82567, + "index": 0, + "body": { + "#": 1521 + }, + "isInternal": false + }, + { + "x": 252.74175, + "y": 263.82567, + "index": 1, + "body": { + "#": 1521 + }, + "isInternal": false + }, + { + "x": 248.03975, + "y": 265.35367, + "index": 2, + "body": { + "#": 1521 + }, + "isInternal": false + }, + { + "x": 243.33775, + "y": 263.82567, + "index": 3, + "body": { + "#": 1521 + }, + "isInternal": false + }, + { + "x": 240.43175, + "y": 259.82567, + "index": 4, + "body": { + "#": 1521 + }, + "isInternal": false + }, + { + "x": 240.43175, + "y": 254.88167, + "index": 5, + "body": { + "#": 1521 + }, + "isInternal": false + }, + { + "x": 243.33775, + "y": 250.88167, + "index": 6, + "body": { + "#": 1521 + }, + "isInternal": false + }, + { + "x": 248.03975, + "y": 249.35367, + "index": 7, + "body": { + "#": 1521 + }, + "isInternal": false + }, + { + "x": 252.74175, + "y": 250.88167, + "index": 8, + "body": { + "#": 1521 + }, + "isInternal": false + }, + { + "x": 255.64775, + "y": 254.88167, + "index": 9, + "body": { + "#": 1521 + }, + "isInternal": false + }, + { + "x": 248.03975, + "y": 257.35367 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00013, + "y": 0.02148 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1541 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1543 + }, + "max": { + "#": 1544 + } + }, + { + "x": 240.43175, + "y": 249.35367 + }, + { + "x": 255.64775, + "y": 265.35367 + }, + { + "x": 248.04, + "y": 256.72644 + }, + [ + { + "#": 1547 + }, + { + "#": 1548 + }, + { + "#": 1549 + }, + { + "#": 1550 + }, + { + "#": 1551 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,5,5", + "startCol": 5, + "endCol": 5, + "startRow": 5, + "endRow": 5 + }, + { + "id": 48, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1554 + }, + "angle": 0, + "vertices": { + "#": 1555 + }, + "position": { + "#": 1566 + }, + "force": { + "#": 1567 + }, + "torque": 0, + "positionImpulse": { + "#": 1568 + }, + "constraintImpulse": { + "#": 1569 + }, + "totalContacts": 0, + "speed": 0.97124, + "angularSpeed": 0, + "velocity": { + "#": 1570 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1571 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1572 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1574 + }, + "positionPrev": { + "#": 1577 + }, + "anglePrev": 0, + "axes": { + "#": 1578 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1553 + }, + "sleepCounter": 0, + "region": { + "#": 1584 + } + }, + [ + { + "#": 1553 + } + ], + [ + { + "#": 1556 + }, + { + "#": 1557 + }, + { + "#": 1558 + }, + { + "#": 1559 + }, + { + "#": 1560 + }, + { + "#": 1561 + }, + { + "#": 1562 + }, + { + "#": 1563 + }, + { + "#": 1564 + }, + { + "#": 1565 + } + ], + { + "x": 275.86499, + "y": 259.81431, + "index": 0, + "body": { + "#": 1553 + }, + "isInternal": false + }, + { + "x": 272.95899, + "y": 263.81431, + "index": 1, + "body": { + "#": 1553 + }, + "isInternal": false + }, + { + "x": 268.25699, + "y": 265.34231, + "index": 2, + "body": { + "#": 1553 + }, + "isInternal": false + }, + { + "x": 263.55499, + "y": 263.81431, + "index": 3, + "body": { + "#": 1553 + }, + "isInternal": false + }, + { + "x": 260.64899, + "y": 259.81431, + "index": 4, + "body": { + "#": 1553 + }, + "isInternal": false + }, + { + "x": 260.64899, + "y": 254.87031, + "index": 5, + "body": { + "#": 1553 + }, + "isInternal": false + }, + { + "x": 263.55499, + "y": 250.87031, + "index": 6, + "body": { + "#": 1553 + }, + "isInternal": false + }, + { + "x": 268.25699, + "y": 249.34231, + "index": 7, + "body": { + "#": 1553 + }, + "isInternal": false + }, + { + "x": 272.95899, + "y": 250.87031, + "index": 8, + "body": { + "#": 1553 + }, + "isInternal": false + }, + { + "x": 275.86499, + "y": 254.87031, + "index": 9, + "body": { + "#": 1553 + }, + "isInternal": false + }, + { + "x": 268.25699, + "y": 257.34231 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00043, + "y": 0.00881 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1573 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1575 + }, + "max": { + "#": 1576 + } + }, + { + "x": 260.64899, + "y": 249.34231 + }, + { + "x": 275.86499, + "y": 265.34231 + }, + { + "x": 268.25612, + "y": 256.75423 + }, + [ + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + }, + { + "#": 1583 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,5,5", + "startCol": 5, + "endCol": 5, + "startRow": 5, + "endRow": 5 + }, + { + "id": 49, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1586 + }, + "angle": 0, + "vertices": { + "#": 1587 + }, + "position": { + "#": 1598 + }, + "force": { + "#": 1599 + }, + "torque": 0, + "positionImpulse": { + "#": 1600 + }, + "constraintImpulse": { + "#": 1601 + }, + "totalContacts": 0, + "speed": 0.72742, + "angularSpeed": 0, + "velocity": { + "#": 1602 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1603 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1604 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1606 + }, + "positionPrev": { + "#": 1609 + }, + "anglePrev": 0, + "axes": { + "#": 1610 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1585 + }, + "sleepCounter": 0, + "region": { + "#": 1616 + } + }, + [ + { + "#": 1585 + } + ], + [ + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + }, + { + "#": 1592 + }, + { + "#": 1593 + }, + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + }, + { + "#": 1597 + } + ], + { + "x": 296.07986, + "y": 259.01747, + "index": 0, + "body": { + "#": 1585 + }, + "isInternal": false + }, + { + "x": 293.17386, + "y": 263.01747, + "index": 1, + "body": { + "#": 1585 + }, + "isInternal": false + }, + { + "x": 288.47186, + "y": 264.54547, + "index": 2, + "body": { + "#": 1585 + }, + "isInternal": false + }, + { + "x": 283.76986, + "y": 263.01747, + "index": 3, + "body": { + "#": 1585 + }, + "isInternal": false + }, + { + "x": 280.86386, + "y": 259.01747, + "index": 4, + "body": { + "#": 1585 + }, + "isInternal": false + }, + { + "x": 280.86386, + "y": 254.07347, + "index": 5, + "body": { + "#": 1585 + }, + "isInternal": false + }, + { + "x": 283.76986, + "y": 250.07347, + "index": 6, + "body": { + "#": 1585 + }, + "isInternal": false + }, + { + "x": 288.47186, + "y": 248.54547, + "index": 7, + "body": { + "#": 1585 + }, + "isInternal": false + }, + { + "x": 293.17386, + "y": 250.07347, + "index": 8, + "body": { + "#": 1585 + }, + "isInternal": false + }, + { + "x": 296.07986, + "y": 254.07347, + "index": 9, + "body": { + "#": 1585 + }, + "isInternal": false + }, + { + "x": 288.47186, + "y": 256.54547 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00011, + "y": -0.16565 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1605 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1607 + }, + "max": { + "#": 1608 + } + }, + { + "x": 280.86386, + "y": 248.54547 + }, + { + "x": 296.07986, + "y": 264.54547 + }, + { + "x": 288.47192, + "y": 256.25028 + }, + [ + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + }, + { + "#": 1614 + }, + { + "#": 1615 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,5,5", + "startCol": 5, + "endCol": 6, + "startRow": 5, + "endRow": 5 + }, + { + "id": 50, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1618 + }, + "angle": 0, + "vertices": { + "#": 1619 + }, + "position": { + "#": 1630 + }, + "force": { + "#": 1631 + }, + "torque": 0, + "positionImpulse": { + "#": 1632 + }, + "constraintImpulse": { + "#": 1633 + }, + "totalContacts": 0, + "speed": 0.59363, + "angularSpeed": 0, + "velocity": { + "#": 1634 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1635 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1636 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1638 + }, + "positionPrev": { + "#": 1641 + }, + "anglePrev": 0, + "axes": { + "#": 1642 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1617 + }, + "sleepCounter": 0, + "region": { + "#": 1648 + } + }, + [ + { + "#": 1617 + } + ], + [ + { + "#": 1620 + }, + { + "#": 1621 + }, + { + "#": 1622 + }, + { + "#": 1623 + }, + { + "#": 1624 + }, + { + "#": 1625 + }, + { + "#": 1626 + }, + { + "#": 1627 + }, + { + "#": 1628 + }, + { + "#": 1629 + } + ], + { + "x": 316.30143, + "y": 258.55901, + "index": 0, + "body": { + "#": 1617 + }, + "isInternal": false + }, + { + "x": 313.39543, + "y": 262.55901, + "index": 1, + "body": { + "#": 1617 + }, + "isInternal": false + }, + { + "x": 308.69343, + "y": 264.08701, + "index": 2, + "body": { + "#": 1617 + }, + "isInternal": false + }, + { + "x": 303.99143, + "y": 262.55901, + "index": 3, + "body": { + "#": 1617 + }, + "isInternal": false + }, + { + "x": 301.08543, + "y": 258.55901, + "index": 4, + "body": { + "#": 1617 + }, + "isInternal": false + }, + { + "x": 301.08543, + "y": 253.61501, + "index": 5, + "body": { + "#": 1617 + }, + "isInternal": false + }, + { + "x": 303.99143, + "y": 249.61501, + "index": 6, + "body": { + "#": 1617 + }, + "isInternal": false + }, + { + "x": 308.69343, + "y": 248.08701, + "index": 7, + "body": { + "#": 1617 + }, + "isInternal": false + }, + { + "x": 313.39543, + "y": 249.61501, + "index": 8, + "body": { + "#": 1617 + }, + "isInternal": false + }, + { + "x": 316.30143, + "y": 253.61501, + "index": 9, + "body": { + "#": 1617 + }, + "isInternal": false + }, + { + "x": 308.69343, + "y": 256.08701 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00493, + "y": -0.30109 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1637 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1639 + }, + "max": { + "#": 1640 + } + }, + { + "x": 301.08543, + "y": 248.08701 + }, + { + "x": 316.30143, + "y": 264.08701 + }, + { + "x": 308.68826, + "y": 256.04214 + }, + [ + { + "#": 1643 + }, + { + "#": 1644 + }, + { + "#": 1645 + }, + { + "#": 1646 + }, + { + "#": 1647 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,6,5,5", + "startCol": 6, + "endCol": 6, + "startRow": 5, + "endRow": 5 + }, + { + "id": 51, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1650 + }, + "angle": 0, + "vertices": { + "#": 1651 + }, + "position": { + "#": 1662 + }, + "force": { + "#": 1663 + }, + "torque": 0, + "positionImpulse": { + "#": 1664 + }, + "constraintImpulse": { + "#": 1665 + }, + "totalContacts": 0, + "speed": 0.91296, + "angularSpeed": 0, + "velocity": { + "#": 1666 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1667 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1668 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1670 + }, + "positionPrev": { + "#": 1673 + }, + "anglePrev": 0, + "axes": { + "#": 1674 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1649 + }, + "sleepCounter": 0, + "region": { + "#": 1680 + } + }, + [ + { + "#": 1649 + } + ], + [ + { + "#": 1652 + }, + { + "#": 1653 + }, + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + }, + { + "#": 1661 + } + ], + { + "x": 336.50582, + "y": 259.63108, + "index": 0, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 333.59982, + "y": 263.63108, + "index": 1, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 328.89782, + "y": 265.15908, + "index": 2, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 324.19582, + "y": 263.63108, + "index": 3, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 321.28982, + "y": 259.63108, + "index": 4, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 321.28982, + "y": 254.68708, + "index": 5, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 324.19582, + "y": 250.68708, + "index": 6, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 328.89782, + "y": 249.15908, + "index": 7, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 333.59982, + "y": 250.68708, + "index": 8, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 336.50582, + "y": 254.68708, + "index": 9, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 328.89782, + "y": 257.15908 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00527, + "y": -0.03482 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1669 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1671 + }, + "max": { + "#": 1672 + } + }, + { + "x": 321.28982, + "y": 249.15908 + }, + { + "x": 336.50582, + "y": 265.15908 + }, + { + "x": 328.90362, + "y": 256.64218 + }, + [ + { + "#": 1675 + }, + { + "#": 1676 + }, + { + "#": 1677 + }, + { + "#": 1678 + }, + { + "#": 1679 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,5,5", + "startCol": 6, + "endCol": 7, + "startRow": 5, + "endRow": 5 + }, + { + "id": 52, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1682 + }, + "angle": 0, + "vertices": { + "#": 1683 + }, + "position": { + "#": 1694 + }, + "force": { + "#": 1695 + }, + "torque": 0, + "positionImpulse": { + "#": 1696 + }, + "constraintImpulse": { + "#": 1697 + }, + "totalContacts": 0, + "speed": 0.90656, + "angularSpeed": 0, + "velocity": { + "#": 1698 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1699 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1700 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1702 + }, + "positionPrev": { + "#": 1705 + }, + "anglePrev": 0, + "axes": { + "#": 1706 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1681 + }, + "sleepCounter": 0, + "region": { + "#": 1712 + } + }, + [ + { + "#": 1681 + } + ], + [ + { + "#": 1684 + }, + { + "#": 1685 + }, + { + "#": 1686 + }, + { + "#": 1687 + }, + { + "#": 1688 + }, + { + "#": 1689 + }, + { + "#": 1690 + }, + { + "#": 1691 + }, + { + "#": 1692 + }, + { + "#": 1693 + } + ], + { + "x": 356.72818, + "y": 259.63117, + "index": 0, + "body": { + "#": 1681 + }, + "isInternal": false + }, + { + "x": 353.82218, + "y": 263.63117, + "index": 1, + "body": { + "#": 1681 + }, + "isInternal": false + }, + { + "x": 349.12018, + "y": 265.15917, + "index": 2, + "body": { + "#": 1681 + }, + "isInternal": false + }, + { + "x": 344.41818, + "y": 263.63117, + "index": 3, + "body": { + "#": 1681 + }, + "isInternal": false + }, + { + "x": 341.51218, + "y": 259.63117, + "index": 4, + "body": { + "#": 1681 + }, + "isInternal": false + }, + { + "x": 341.51218, + "y": 254.68717, + "index": 5, + "body": { + "#": 1681 + }, + "isInternal": false + }, + { + "x": 344.41818, + "y": 250.68717, + "index": 6, + "body": { + "#": 1681 + }, + "isInternal": false + }, + { + "x": 349.12018, + "y": 249.15917, + "index": 7, + "body": { + "#": 1681 + }, + "isInternal": false + }, + { + "x": 353.82218, + "y": 250.68717, + "index": 8, + "body": { + "#": 1681 + }, + "isInternal": false + }, + { + "x": 356.72818, + "y": 254.68717, + "index": 9, + "body": { + "#": 1681 + }, + "isInternal": false + }, + { + "x": 349.12018, + "y": 257.15917 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00009, + "y": -0.03626 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1701 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1703 + }, + "max": { + "#": 1704 + } + }, + { + "x": 341.51218, + "y": 249.15917 + }, + { + "x": 356.72818, + "y": 265.15917 + }, + { + "x": 349.12001, + "y": 256.63753 + }, + [ + { + "#": 1707 + }, + { + "#": 1708 + }, + { + "#": 1709 + }, + { + "#": 1710 + }, + { + "#": 1711 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,5,5", + "startCol": 7, + "endCol": 7, + "startRow": 5, + "endRow": 5 + }, + { + "id": 53, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1714 + }, + "angle": 0, + "vertices": { + "#": 1715 + }, + "position": { + "#": 1726 + }, + "force": { + "#": 1727 + }, + "torque": 0, + "positionImpulse": { + "#": 1728 + }, + "constraintImpulse": { + "#": 1729 + }, + "totalContacts": 0, + "speed": 1.13373, + "angularSpeed": 0, + "velocity": { + "#": 1730 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1731 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1732 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1734 + }, + "positionPrev": { + "#": 1737 + }, + "anglePrev": 0, + "axes": { + "#": 1738 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1713 + }, + "sleepCounter": 0, + "region": { + "#": 1744 + } + }, + [ + { + "#": 1713 + } + ], + [ + { + "#": 1716 + }, + { + "#": 1717 + }, + { + "#": 1718 + }, + { + "#": 1719 + }, + { + "#": 1720 + }, + { + "#": 1721 + }, + { + "#": 1722 + }, + { + "#": 1723 + }, + { + "#": 1724 + }, + { + "#": 1725 + } + ], + { + "x": 376.94305, + "y": 260.37832, + "index": 0, + "body": { + "#": 1713 + }, + "isInternal": false + }, + { + "x": 374.03705, + "y": 264.37832, + "index": 1, + "body": { + "#": 1713 + }, + "isInternal": false + }, + { + "x": 369.33505, + "y": 265.90632, + "index": 2, + "body": { + "#": 1713 + }, + "isInternal": false + }, + { + "x": 364.63305, + "y": 264.37832, + "index": 3, + "body": { + "#": 1713 + }, + "isInternal": false + }, + { + "x": 361.72705, + "y": 260.37832, + "index": 4, + "body": { + "#": 1713 + }, + "isInternal": false + }, + { + "x": 361.72705, + "y": 255.43432, + "index": 5, + "body": { + "#": 1713 + }, + "isInternal": false + }, + { + "x": 364.63305, + "y": 251.43432, + "index": 6, + "body": { + "#": 1713 + }, + "isInternal": false + }, + { + "x": 369.33505, + "y": 249.90632, + "index": 7, + "body": { + "#": 1713 + }, + "isInternal": false + }, + { + "x": 374.03705, + "y": 251.43432, + "index": 8, + "body": { + "#": 1713 + }, + "isInternal": false + }, + { + "x": 376.94305, + "y": 255.43432, + "index": 9, + "body": { + "#": 1713 + }, + "isInternal": false + }, + { + "x": 369.33505, + "y": 257.90632 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00034, + "y": 0.17225 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1733 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1735 + }, + "max": { + "#": 1736 + } + }, + { + "x": 361.72705, + "y": 249.90632 + }, + { + "x": 376.94305, + "y": 265.90632 + }, + { + "x": 369.33598, + "y": 257.01202 + }, + [ + { + "#": 1739 + }, + { + "#": 1740 + }, + { + "#": 1741 + }, + { + "#": 1742 + }, + { + "#": 1743 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,5,5", + "startCol": 7, + "endCol": 7, + "startRow": 5, + "endRow": 5 + }, + { + "id": 54, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1746 + }, + "angle": 0, + "vertices": { + "#": 1747 + }, + "position": { + "#": 1758 + }, + "force": { + "#": 1759 + }, + "torque": 0, + "positionImpulse": { + "#": 1760 + }, + "constraintImpulse": { + "#": 1761 + }, + "totalContacts": 0, + "speed": 1.11183, + "angularSpeed": 0, + "velocity": { + "#": 1762 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1763 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1764 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1766 + }, + "positionPrev": { + "#": 1769 + }, + "anglePrev": 0, + "axes": { + "#": 1770 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1745 + }, + "sleepCounter": 0, + "region": { + "#": 1776 + } + }, + [ + { + "#": 1745 + } + ], + [ + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + }, + { + "#": 1751 + }, + { + "#": 1752 + }, + { + "#": 1753 + }, + { + "#": 1754 + }, + { + "#": 1755 + }, + { + "#": 1756 + }, + { + "#": 1757 + } + ], + { + "x": 397.15995, + "y": 260.29908, + "index": 0, + "body": { + "#": 1745 + }, + "isInternal": false + }, + { + "x": 394.25395, + "y": 264.29908, + "index": 1, + "body": { + "#": 1745 + }, + "isInternal": false + }, + { + "x": 389.55195, + "y": 265.82708, + "index": 2, + "body": { + "#": 1745 + }, + "isInternal": false + }, + { + "x": 384.84995, + "y": 264.29908, + "index": 3, + "body": { + "#": 1745 + }, + "isInternal": false + }, + { + "x": 381.94395, + "y": 260.29908, + "index": 4, + "body": { + "#": 1745 + }, + "isInternal": false + }, + { + "x": 381.94395, + "y": 255.35508, + "index": 5, + "body": { + "#": 1745 + }, + "isInternal": false + }, + { + "x": 384.84995, + "y": 251.35508, + "index": 6, + "body": { + "#": 1745 + }, + "isInternal": false + }, + { + "x": 389.55195, + "y": 249.82708, + "index": 7, + "body": { + "#": 1745 + }, + "isInternal": false + }, + { + "x": 394.25395, + "y": 251.35508, + "index": 8, + "body": { + "#": 1745 + }, + "isInternal": false + }, + { + "x": 397.15995, + "y": 255.35508, + "index": 9, + "body": { + "#": 1745 + }, + "isInternal": false + }, + { + "x": 389.55195, + "y": 257.82708 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00002, + "y": 0.14737 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1765 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1767 + }, + "max": { + "#": 1768 + } + }, + { + "x": 381.94395, + "y": 249.82708 + }, + { + "x": 397.15995, + "y": 265.82708 + }, + { + "x": 389.552, + "y": 256.98094 + }, + [ + { + "#": 1771 + }, + { + "#": 1772 + }, + { + "#": 1773 + }, + { + "#": 1774 + }, + { + "#": 1775 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,5,5", + "startCol": 7, + "endCol": 8, + "startRow": 5, + "endRow": 5 + }, + { + "id": 55, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1778 + }, + "angle": 0, + "vertices": { + "#": 1779 + }, + "position": { + "#": 1790 + }, + "force": { + "#": 1791 + }, + "torque": 0, + "positionImpulse": { + "#": 1792 + }, + "constraintImpulse": { + "#": 1793 + }, + "totalContacts": 0, + "speed": 1.11029, + "angularSpeed": 0, + "velocity": { + "#": 1794 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1795 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1796 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1798 + }, + "positionPrev": { + "#": 1801 + }, + "anglePrev": 0, + "axes": { + "#": 1802 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1777 + }, + "sleepCounter": 0, + "region": { + "#": 1808 + } + }, + [ + { + "#": 1777 + } + ], + [ + { + "#": 1780 + }, + { + "#": 1781 + }, + { + "#": 1782 + }, + { + "#": 1783 + }, + { + "#": 1784 + }, + { + "#": 1785 + }, + { + "#": 1786 + }, + { + "#": 1787 + }, + { + "#": 1788 + }, + { + "#": 1789 + } + ], + { + "x": 417.376, + "y": 260.29178, + "index": 0, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 264.29178, + "index": 1, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 265.81978, + "index": 2, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 264.29178, + "index": 3, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 260.29178, + "index": 4, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 402.16, + "y": 255.34778, + "index": 5, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 405.066, + "y": 251.34778, + "index": 6, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 249.81978, + "index": 7, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 414.47, + "y": 251.34778, + "index": 8, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 417.376, + "y": 255.34778, + "index": 9, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 409.768, + "y": 257.81978 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.14493 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1797 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1799 + }, + "max": { + "#": 1800 + } + }, + { + "x": 402.16, + "y": 249.81978 + }, + { + "x": 417.376, + "y": 265.81978 + }, + { + "x": 409.768, + "y": 256.97909 + }, + [ + { + "#": 1803 + }, + { + "#": 1804 + }, + { + "#": 1805 + }, + { + "#": 1806 + }, + { + "#": 1807 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,5,5", + "startCol": 8, + "endCol": 8, + "startRow": 5, + "endRow": 5 + }, + { + "id": 56, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1810 + }, + "angle": 0, + "vertices": { + "#": 1811 + }, + "position": { + "#": 1822 + }, + "force": { + "#": 1823 + }, + "torque": 0, + "positionImpulse": { + "#": 1824 + }, + "constraintImpulse": { + "#": 1825 + }, + "totalContacts": 0, + "speed": 1.10985, + "angularSpeed": 0, + "velocity": { + "#": 1826 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1827 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1828 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1830 + }, + "positionPrev": { + "#": 1833 + }, + "anglePrev": 0, + "axes": { + "#": 1834 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1809 + }, + "sleepCounter": 0, + "region": { + "#": 1840 + } + }, + [ + { + "#": 1809 + } + ], + [ + { + "#": 1812 + }, + { + "#": 1813 + }, + { + "#": 1814 + }, + { + "#": 1815 + }, + { + "#": 1816 + }, + { + "#": 1817 + }, + { + "#": 1818 + }, + { + "#": 1819 + }, + { + "#": 1820 + }, + { + "#": 1821 + } + ], + { + "x": 437.59218, + "y": 260.28908, + "index": 0, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 434.68618, + "y": 264.28908, + "index": 1, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 429.98418, + "y": 265.81708, + "index": 2, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 425.28218, + "y": 264.28908, + "index": 3, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 422.37618, + "y": 260.28908, + "index": 4, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 422.37618, + "y": 255.34508, + "index": 5, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 425.28218, + "y": 251.34508, + "index": 6, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 429.98418, + "y": 249.81708, + "index": 7, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 434.68618, + "y": 251.34508, + "index": 8, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 437.59218, + "y": 255.34508, + "index": 9, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 429.98418, + "y": 257.81708 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00002, + "y": 0.14403 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1829 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1831 + }, + "max": { + "#": 1832 + } + }, + { + "x": 422.37618, + "y": 249.81708 + }, + { + "x": 437.59218, + "y": 265.81708 + }, + { + "x": 429.984, + "y": 256.97861 + }, + [ + { + "#": 1835 + }, + { + "#": 1836 + }, + { + "#": 1837 + }, + { + "#": 1838 + }, + { + "#": 1839 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,5,5", + "startCol": 8, + "endCol": 9, + "startRow": 5, + "endRow": 5 + }, + { + "id": 57, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1842 + }, + "angle": 0, + "vertices": { + "#": 1843 + }, + "position": { + "#": 1854 + }, + "force": { + "#": 1855 + }, + "torque": 0, + "positionImpulse": { + "#": 1856 + }, + "constraintImpulse": { + "#": 1857 + }, + "totalContacts": 0, + "speed": 1.09769, + "angularSpeed": 0, + "velocity": { + "#": 1858 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1859 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1860 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1862 + }, + "positionPrev": { + "#": 1865 + }, + "anglePrev": 0, + "axes": { + "#": 1866 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1841 + }, + "sleepCounter": 0, + "region": { + "#": 1872 + } + }, + [ + { + "#": 1841 + } + ], + [ + { + "#": 1844 + }, + { + "#": 1845 + }, + { + "#": 1846 + }, + { + "#": 1847 + }, + { + "#": 1848 + }, + { + "#": 1849 + }, + { + "#": 1850 + }, + { + "#": 1851 + }, + { + "#": 1852 + }, + { + "#": 1853 + } + ], + { + "x": 457.80959, + "y": 260.24021, + "index": 0, + "body": { + "#": 1841 + }, + "isInternal": false + }, + { + "x": 454.90359, + "y": 264.24021, + "index": 1, + "body": { + "#": 1841 + }, + "isInternal": false + }, + { + "x": 450.20159, + "y": 265.76821, + "index": 2, + "body": { + "#": 1841 + }, + "isInternal": false + }, + { + "x": 445.49959, + "y": 264.24021, + "index": 3, + "body": { + "#": 1841 + }, + "isInternal": false + }, + { + "x": 442.59359, + "y": 260.24021, + "index": 4, + "body": { + "#": 1841 + }, + "isInternal": false + }, + { + "x": 442.59359, + "y": 255.29621, + "index": 5, + "body": { + "#": 1841 + }, + "isInternal": false + }, + { + "x": 445.49959, + "y": 251.29621, + "index": 6, + "body": { + "#": 1841 + }, + "isInternal": false + }, + { + "x": 450.20159, + "y": 249.76821, + "index": 7, + "body": { + "#": 1841 + }, + "isInternal": false + }, + { + "x": 454.90359, + "y": 251.29621, + "index": 8, + "body": { + "#": 1841 + }, + "isInternal": false + }, + { + "x": 457.80959, + "y": 255.29621, + "index": 9, + "body": { + "#": 1841 + }, + "isInternal": false + }, + { + "x": 450.20159, + "y": 257.76821 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00071, + "y": 0.12813 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1861 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1863 + }, + "max": { + "#": 1864 + } + }, + { + "x": 442.59359, + "y": 249.76821 + }, + { + "x": 457.80959, + "y": 265.76821 + }, + { + "x": 450.20016, + "y": 256.96263 + }, + [ + { + "#": 1867 + }, + { + "#": 1868 + }, + { + "#": 1869 + }, + { + "#": 1870 + }, + { + "#": 1871 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,5,5", + "startCol": 9, + "endCol": 9, + "startRow": 5, + "endRow": 5 + }, + { + "id": 58, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1874 + }, + "angle": 0, + "vertices": { + "#": 1875 + }, + "position": { + "#": 1886 + }, + "force": { + "#": 1887 + }, + "torque": 0, + "positionImpulse": { + "#": 1888 + }, + "constraintImpulse": { + "#": 1889 + }, + "totalContacts": 0, + "speed": 0.82142, + "angularSpeed": 0, + "velocity": { + "#": 1890 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1891 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1892 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1894 + }, + "positionPrev": { + "#": 1897 + }, + "anglePrev": 0, + "axes": { + "#": 1898 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1873 + }, + "sleepCounter": 0, + "region": { + "#": 1904 + } + }, + [ + { + "#": 1873 + } + ], + [ + { + "#": 1876 + }, + { + "#": 1877 + }, + { + "#": 1878 + }, + { + "#": 1879 + }, + { + "#": 1880 + }, + { + "#": 1881 + }, + { + "#": 1882 + }, + { + "#": 1883 + }, + { + "#": 1884 + }, + { + "#": 1885 + } + ], + { + "x": 478.02298, + "y": 259.30718, + "index": 0, + "body": { + "#": 1873 + }, + "isInternal": false + }, + { + "x": 475.11698, + "y": 263.30718, + "index": 1, + "body": { + "#": 1873 + }, + "isInternal": false + }, + { + "x": 470.41498, + "y": 264.83518, + "index": 2, + "body": { + "#": 1873 + }, + "isInternal": false + }, + { + "x": 465.71298, + "y": 263.30718, + "index": 3, + "body": { + "#": 1873 + }, + "isInternal": false + }, + { + "x": 462.80698, + "y": 259.30718, + "index": 4, + "body": { + "#": 1873 + }, + "isInternal": false + }, + { + "x": 462.80698, + "y": 254.36318, + "index": 5, + "body": { + "#": 1873 + }, + "isInternal": false + }, + { + "x": 465.71298, + "y": 250.36318, + "index": 6, + "body": { + "#": 1873 + }, + "isInternal": false + }, + { + "x": 470.41498, + "y": 248.83518, + "index": 7, + "body": { + "#": 1873 + }, + "isInternal": false + }, + { + "x": 475.11698, + "y": 250.36318, + "index": 8, + "body": { + "#": 1873 + }, + "isInternal": false + }, + { + "x": 478.02298, + "y": 254.36318, + "index": 9, + "body": { + "#": 1873 + }, + "isInternal": false + }, + { + "x": 470.41498, + "y": 256.83518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00047, + "y": -0.13932 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1893 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1895 + }, + "max": { + "#": 1896 + } + }, + { + "x": 462.80698, + "y": 248.83518 + }, + { + "x": 478.02298, + "y": 264.83518 + }, + { + "x": 470.41589, + "y": 256.51917 + }, + [ + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + }, + { + "#": 1902 + }, + { + "#": 1903 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,5,5", + "startCol": 9, + "endCol": 9, + "startRow": 5, + "endRow": 5 + }, + { + "id": 59, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1906 + }, + "angle": 0, + "vertices": { + "#": 1907 + }, + "position": { + "#": 1918 + }, + "force": { + "#": 1919 + }, + "torque": 0, + "positionImpulse": { + "#": 1920 + }, + "constraintImpulse": { + "#": 1921 + }, + "totalContacts": 0, + "speed": 0.80989, + "angularSpeed": 0, + "velocity": { + "#": 1922 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1923 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1924 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1926 + }, + "positionPrev": { + "#": 1929 + }, + "anglePrev": 0, + "axes": { + "#": 1930 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1905 + }, + "sleepCounter": 0, + "region": { + "#": 1936 + } + }, + [ + { + "#": 1905 + } + ], + [ + { + "#": 1908 + }, + { + "#": 1909 + }, + { + "#": 1910 + }, + { + "#": 1911 + }, + { + "#": 1912 + }, + { + "#": 1913 + }, + { + "#": 1914 + }, + { + "#": 1915 + }, + { + "#": 1916 + }, + { + "#": 1917 + } + ], + { + "x": 498.23987, + "y": 259.26354, + "index": 0, + "body": { + "#": 1905 + }, + "isInternal": false + }, + { + "x": 495.33387, + "y": 263.26354, + "index": 1, + "body": { + "#": 1905 + }, + "isInternal": false + }, + { + "x": 490.63187, + "y": 264.79154, + "index": 2, + "body": { + "#": 1905 + }, + "isInternal": false + }, + { + "x": 485.92987, + "y": 263.26354, + "index": 3, + "body": { + "#": 1905 + }, + "isInternal": false + }, + { + "x": 483.02387, + "y": 259.26354, + "index": 4, + "body": { + "#": 1905 + }, + "isInternal": false + }, + { + "x": 483.02387, + "y": 254.31954, + "index": 5, + "body": { + "#": 1905 + }, + "isInternal": false + }, + { + "x": 485.92987, + "y": 250.31954, + "index": 6, + "body": { + "#": 1905 + }, + "isInternal": false + }, + { + "x": 490.63187, + "y": 248.79154, + "index": 7, + "body": { + "#": 1905 + }, + "isInternal": false + }, + { + "x": 495.33387, + "y": 250.31954, + "index": 8, + "body": { + "#": 1905 + }, + "isInternal": false + }, + { + "x": 498.23987, + "y": 254.31954, + "index": 9, + "body": { + "#": 1905 + }, + "isInternal": false + }, + { + "x": 490.63187, + "y": 256.79154 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00001, + "y": -0.1526 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1925 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1927 + }, + "max": { + "#": 1928 + } + }, + { + "x": 483.02387, + "y": 248.79154 + }, + { + "x": 498.23987, + "y": 264.79154 + }, + { + "x": 490.632, + "y": 256.50251 + }, + [ + { + "#": 1931 + }, + { + "#": 1932 + }, + { + "#": 1933 + }, + { + "#": 1934 + }, + { + "#": 1935 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,5,5", + "startCol": 10, + "endCol": 10, + "startRow": 5, + "endRow": 5 + }, + { + "id": 60, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1938 + }, + "angle": 0, + "vertices": { + "#": 1939 + }, + "position": { + "#": 1950 + }, + "force": { + "#": 1951 + }, + "torque": 0, + "positionImpulse": { + "#": 1952 + }, + "constraintImpulse": { + "#": 1953 + }, + "totalContacts": 0, + "speed": 0.80986, + "angularSpeed": 0, + "velocity": { + "#": 1954 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1955 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1956 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1958 + }, + "positionPrev": { + "#": 1961 + }, + "anglePrev": 0, + "axes": { + "#": 1962 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1937 + }, + "sleepCounter": 0, + "region": { + "#": 1968 + } + }, + [ + { + "#": 1937 + } + ], + [ + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + }, + { + "#": 1944 + }, + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + }, + { + "#": 1948 + }, + { + "#": 1949 + } + ], + { + "x": 518.45608, + "y": 259.26342, + "index": 0, + "body": { + "#": 1937 + }, + "isInternal": false + }, + { + "x": 515.55008, + "y": 263.26342, + "index": 1, + "body": { + "#": 1937 + }, + "isInternal": false + }, + { + "x": 510.84808, + "y": 264.79142, + "index": 2, + "body": { + "#": 1937 + }, + "isInternal": false + }, + { + "x": 506.14608, + "y": 263.26342, + "index": 3, + "body": { + "#": 1937 + }, + "isInternal": false + }, + { + "x": 503.24008, + "y": 259.26342, + "index": 4, + "body": { + "#": 1937 + }, + "isInternal": false + }, + { + "x": 503.24008, + "y": 254.31942, + "index": 5, + "body": { + "#": 1937 + }, + "isInternal": false + }, + { + "x": 506.14608, + "y": 250.31942, + "index": 6, + "body": { + "#": 1937 + }, + "isInternal": false + }, + { + "x": 510.84808, + "y": 248.79142, + "index": 7, + "body": { + "#": 1937 + }, + "isInternal": false + }, + { + "x": 515.55008, + "y": 250.31942, + "index": 8, + "body": { + "#": 1937 + }, + "isInternal": false + }, + { + "x": 518.45608, + "y": 254.31942, + "index": 9, + "body": { + "#": 1937 + }, + "isInternal": false + }, + { + "x": 510.84808, + "y": 256.79142 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.15264 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1957 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1959 + }, + "max": { + "#": 1960 + } + }, + { + "x": 503.24008, + "y": 248.79142 + }, + { + "x": 518.45608, + "y": 264.79142 + }, + { + "x": 510.848, + "y": 256.50247 + }, + [ + { + "#": 1963 + }, + { + "#": 1964 + }, + { + "#": 1965 + }, + { + "#": 1966 + }, + { + "#": 1967 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,5,5", + "startCol": 10, + "endCol": 10, + "startRow": 5, + "endRow": 5 + }, + { + "id": 61, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1970 + }, + "angle": 0, + "vertices": { + "#": 1971 + }, + "position": { + "#": 1982 + }, + "force": { + "#": 1983 + }, + "torque": 0, + "positionImpulse": { + "#": 1984 + }, + "constraintImpulse": { + "#": 1985 + }, + "totalContacts": 0, + "speed": 0.8215, + "angularSpeed": 0, + "velocity": { + "#": 1986 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1987 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1988 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 1990 + }, + "positionPrev": { + "#": 1993 + }, + "anglePrev": 0, + "axes": { + "#": 1994 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 1969 + }, + "sleepCounter": 0, + "region": { + "#": 2000 + } + }, + [ + { + "#": 1969 + } + ], + [ + { + "#": 1972 + }, + { + "#": 1973 + }, + { + "#": 1974 + }, + { + "#": 1975 + }, + { + "#": 1976 + }, + { + "#": 1977 + }, + { + "#": 1978 + }, + { + "#": 1979 + }, + { + "#": 1980 + }, + { + "#": 1981 + } + ], + { + "x": 538.67308, + "y": 259.30737, + "index": 0, + "body": { + "#": 1969 + }, + "isInternal": false + }, + { + "x": 535.76708, + "y": 263.30737, + "index": 1, + "body": { + "#": 1969 + }, + "isInternal": false + }, + { + "x": 531.06508, + "y": 264.83537, + "index": 2, + "body": { + "#": 1969 + }, + "isInternal": false + }, + { + "x": 526.36308, + "y": 263.30737, + "index": 3, + "body": { + "#": 1969 + }, + "isInternal": false + }, + { + "x": 523.45708, + "y": 259.30737, + "index": 4, + "body": { + "#": 1969 + }, + "isInternal": false + }, + { + "x": 523.45708, + "y": 254.36337, + "index": 5, + "body": { + "#": 1969 + }, + "isInternal": false + }, + { + "x": 526.36308, + "y": 250.36337, + "index": 6, + "body": { + "#": 1969 + }, + "isInternal": false + }, + { + "x": 531.06508, + "y": 248.83537, + "index": 7, + "body": { + "#": 1969 + }, + "isInternal": false + }, + { + "x": 535.76708, + "y": 250.36337, + "index": 8, + "body": { + "#": 1969 + }, + "isInternal": false + }, + { + "x": 538.67308, + "y": 254.36337, + "index": 9, + "body": { + "#": 1969 + }, + "isInternal": false + }, + { + "x": 531.06508, + "y": 256.83537 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00048, + "y": -0.13927 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 1989 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1991 + }, + "max": { + "#": 1992 + } + }, + { + "x": 523.45708, + "y": 248.83537 + }, + { + "x": 538.67308, + "y": 264.83537 + }, + { + "x": 531.06411, + "y": 256.51929 + }, + [ + { + "#": 1995 + }, + { + "#": 1996 + }, + { + "#": 1997 + }, + { + "#": 1998 + }, + { + "#": 1999 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,5,5", + "startCol": 10, + "endCol": 11, + "startRow": 5, + "endRow": 5 + }, + { + "id": 62, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2002 + }, + "angle": 0, + "vertices": { + "#": 2003 + }, + "position": { + "#": 2014 + }, + "force": { + "#": 2015 + }, + "torque": 0, + "positionImpulse": { + "#": 2016 + }, + "constraintImpulse": { + "#": 2017 + }, + "totalContacts": 0, + "speed": 1.09759, + "angularSpeed": 0, + "velocity": { + "#": 2018 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2019 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2020 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2022 + }, + "positionPrev": { + "#": 2025 + }, + "anglePrev": 0, + "axes": { + "#": 2026 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2001 + }, + "sleepCounter": 0, + "region": { + "#": 2032 + } + }, + [ + { + "#": 2001 + } + ], + [ + { + "#": 2004 + }, + { + "#": 2005 + }, + { + "#": 2006 + }, + { + "#": 2007 + }, + { + "#": 2008 + }, + { + "#": 2009 + }, + { + "#": 2010 + }, + { + "#": 2011 + }, + { + "#": 2012 + }, + { + "#": 2013 + } + ], + { + "x": 558.88664, + "y": 260.23969, + "index": 0, + "body": { + "#": 2001 + }, + "isInternal": false + }, + { + "x": 555.98064, + "y": 264.23969, + "index": 1, + "body": { + "#": 2001 + }, + "isInternal": false + }, + { + "x": 551.27864, + "y": 265.76769, + "index": 2, + "body": { + "#": 2001 + }, + "isInternal": false + }, + { + "x": 546.57664, + "y": 264.23969, + "index": 3, + "body": { + "#": 2001 + }, + "isInternal": false + }, + { + "x": 543.67064, + "y": 260.23969, + "index": 4, + "body": { + "#": 2001 + }, + "isInternal": false + }, + { + "x": 543.67064, + "y": 255.29569, + "index": 5, + "body": { + "#": 2001 + }, + "isInternal": false + }, + { + "x": 546.57664, + "y": 251.29569, + "index": 6, + "body": { + "#": 2001 + }, + "isInternal": false + }, + { + "x": 551.27864, + "y": 249.76769, + "index": 7, + "body": { + "#": 2001 + }, + "isInternal": false + }, + { + "x": 555.98064, + "y": 251.29569, + "index": 8, + "body": { + "#": 2001 + }, + "isInternal": false + }, + { + "x": 558.88664, + "y": 255.29569, + "index": 9, + "body": { + "#": 2001 + }, + "isInternal": false + }, + { + "x": 551.27864, + "y": 257.76769 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00059, + "y": 0.12797 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2021 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2023 + }, + "max": { + "#": 2024 + } + }, + { + "x": 543.67064, + "y": 249.76769 + }, + { + "x": 558.88664, + "y": 265.76769 + }, + { + "x": 551.27985, + "y": 256.96251 + }, + [ + { + "#": 2027 + }, + { + "#": 2028 + }, + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,11,5,5", + "startCol": 11, + "endCol": 11, + "startRow": 5, + "endRow": 5 + }, + { + "id": 63, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2034 + }, + "angle": 0, + "vertices": { + "#": 2035 + }, + "position": { + "#": 2046 + }, + "force": { + "#": 2047 + }, + "torque": 0, + "positionImpulse": { + "#": 2048 + }, + "constraintImpulse": { + "#": 2049 + }, + "totalContacts": 0, + "speed": 1.10981, + "angularSpeed": 0, + "velocity": { + "#": 2050 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2051 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2052 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2054 + }, + "positionPrev": { + "#": 2057 + }, + "anglePrev": 0, + "axes": { + "#": 2058 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2033 + }, + "sleepCounter": 0, + "region": { + "#": 2064 + } + }, + [ + { + "#": 2033 + } + ], + [ + { + "#": 2036 + }, + { + "#": 2037 + }, + { + "#": 2038 + }, + { + "#": 2039 + }, + { + "#": 2040 + }, + { + "#": 2041 + }, + { + "#": 2042 + }, + { + "#": 2043 + }, + { + "#": 2044 + }, + { + "#": 2045 + } + ], + { + "x": 579.10358, + "y": 260.28871, + "index": 0, + "body": { + "#": 2033 + }, + "isInternal": false + }, + { + "x": 576.19758, + "y": 264.28871, + "index": 1, + "body": { + "#": 2033 + }, + "isInternal": false + }, + { + "x": 571.49558, + "y": 265.81671, + "index": 2, + "body": { + "#": 2033 + }, + "isInternal": false + }, + { + "x": 566.79358, + "y": 264.28871, + "index": 3, + "body": { + "#": 2033 + }, + "isInternal": false + }, + { + "x": 563.88758, + "y": 260.28871, + "index": 4, + "body": { + "#": 2033 + }, + "isInternal": false + }, + { + "x": 563.88758, + "y": 255.34471, + "index": 5, + "body": { + "#": 2033 + }, + "isInternal": false + }, + { + "x": 566.79358, + "y": 251.34471, + "index": 6, + "body": { + "#": 2033 + }, + "isInternal": false + }, + { + "x": 571.49558, + "y": 249.81671, + "index": 7, + "body": { + "#": 2033 + }, + "isInternal": false + }, + { + "x": 576.19758, + "y": 251.34471, + "index": 8, + "body": { + "#": 2033 + }, + "isInternal": false + }, + { + "x": 579.10358, + "y": 255.34471, + "index": 9, + "body": { + "#": 2033 + }, + "isInternal": false + }, + { + "x": 571.49558, + "y": 257.81671 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00014, + "y": 0.14392 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2053 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2055 + }, + "max": { + "#": 2056 + } + }, + { + "x": 563.88758, + "y": 249.81671 + }, + { + "x": 579.10358, + "y": 265.81671 + }, + { + "x": 571.496, + "y": 256.97857 + }, + [ + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + }, + { + "#": 2062 + }, + { + "#": 2063 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,5,5", + "startCol": 11, + "endCol": 12, + "startRow": 5, + "endRow": 5 + }, + { + "id": 64, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2066 + }, + "angle": 0, + "vertices": { + "#": 2067 + }, + "position": { + "#": 2078 + }, + "force": { + "#": 2079 + }, + "torque": 0, + "positionImpulse": { + "#": 2080 + }, + "constraintImpulse": { + "#": 2081 + }, + "totalContacts": 0, + "speed": 1.10994, + "angularSpeed": 0, + "velocity": { + "#": 2082 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2083 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2084 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2086 + }, + "positionPrev": { + "#": 2089 + }, + "anglePrev": 0, + "axes": { + "#": 2090 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2065 + }, + "sleepCounter": 0, + "region": { + "#": 2096 + } + }, + [ + { + "#": 2065 + } + ], + [ + { + "#": 2068 + }, + { + "#": 2069 + }, + { + "#": 2070 + }, + { + "#": 2071 + }, + { + "#": 2072 + }, + { + "#": 2073 + }, + { + "#": 2074 + }, + { + "#": 2075 + }, + { + "#": 2076 + }, + { + "#": 2077 + } + ], + { + "x": 599.31999, + "y": 260.28939, + "index": 0, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 596.41399, + "y": 264.28939, + "index": 1, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 591.71199, + "y": 265.81739, + "index": 2, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 587.00999, + "y": 264.28939, + "index": 3, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 584.10399, + "y": 260.28939, + "index": 4, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 584.10399, + "y": 255.34539, + "index": 5, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 587.00999, + "y": 251.34539, + "index": 6, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 591.71199, + "y": 249.81739, + "index": 7, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 596.41399, + "y": 251.34539, + "index": 8, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 599.31999, + "y": 255.34539, + "index": 9, + "body": { + "#": 2065 + }, + "isInternal": false + }, + { + "x": 591.71199, + "y": 257.81739 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.14415 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2085 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2087 + }, + "max": { + "#": 2088 + } + }, + { + "x": 584.10399, + "y": 249.81739 + }, + { + "x": 599.31999, + "y": 265.81739 + }, + { + "x": 591.712, + "y": 256.97871 + }, + [ + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + }, + { + "#": 2094 + }, + { + "#": 2095 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,5,5", + "startCol": 12, + "endCol": 12, + "startRow": 5, + "endRow": 5 + }, + { + "id": 65, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2098 + }, + "angle": 0, + "vertices": { + "#": 2099 + }, + "position": { + "#": 2110 + }, + "force": { + "#": 2111 + }, + "torque": 0, + "positionImpulse": { + "#": 2112 + }, + "constraintImpulse": { + "#": 2113 + }, + "totalContacts": 0, + "speed": 1.48292, + "angularSpeed": 0, + "velocity": { + "#": 2114 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2115 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2116 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2118 + }, + "positionPrev": { + "#": 2121 + }, + "anglePrev": 0, + "axes": { + "#": 2122 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2097 + }, + "sleepCounter": 0, + "region": { + "#": 2128 + } + }, + [ + { + "#": 2097 + } + ], + [ + { + "#": 2100 + }, + { + "#": 2101 + }, + { + "#": 2102 + }, + { + "#": 2103 + }, + { + "#": 2104 + }, + { + "#": 2105 + }, + { + "#": 2106 + }, + { + "#": 2107 + }, + { + "#": 2108 + }, + { + "#": 2109 + } + ], + { + "x": 215.21647, + "y": 284.00368, + "index": 0, + "body": { + "#": 2097 + }, + "isInternal": false + }, + { + "x": 212.31047, + "y": 288.00368, + "index": 1, + "body": { + "#": 2097 + }, + "isInternal": false + }, + { + "x": 207.60847, + "y": 289.53168, + "index": 2, + "body": { + "#": 2097 + }, + "isInternal": false + }, + { + "x": 202.90647, + "y": 288.00368, + "index": 3, + "body": { + "#": 2097 + }, + "isInternal": false + }, + { + "x": 200.00047, + "y": 284.00368, + "index": 4, + "body": { + "#": 2097 + }, + "isInternal": false + }, + { + "x": 200.00047, + "y": 279.05968, + "index": 5, + "body": { + "#": 2097 + }, + "isInternal": false + }, + { + "x": 202.90647, + "y": 275.05968, + "index": 6, + "body": { + "#": 2097 + }, + "isInternal": false + }, + { + "x": 207.60847, + "y": 273.53168, + "index": 7, + "body": { + "#": 2097 + }, + "isInternal": false + }, + { + "x": 212.31047, + "y": 275.05968, + "index": 8, + "body": { + "#": 2097 + }, + "isInternal": false + }, + { + "x": 215.21647, + "y": 279.05968, + "index": 9, + "body": { + "#": 2097 + }, + "isInternal": false + }, + { + "x": 207.60847, + "y": 281.53168 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00016, + "y": 0.6635 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2117 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2119 + }, + "max": { + "#": 2120 + } + }, + { + "x": 200.00047, + "y": 273.53168 + }, + { + "x": 215.21647, + "y": 289.53168 + }, + { + "x": 207.608, + "y": 280.27855 + }, + [ + { + "#": 2123 + }, + { + "#": 2124 + }, + { + "#": 2125 + }, + { + "#": 2126 + }, + { + "#": 2127 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,5,6", + "startCol": 4, + "endCol": 4, + "startRow": 5, + "endRow": 6 + }, + { + "id": 66, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2130 + }, + "angle": 0, + "vertices": { + "#": 2131 + }, + "position": { + "#": 2142 + }, + "force": { + "#": 2143 + }, + "torque": 0, + "positionImpulse": { + "#": 2144 + }, + "constraintImpulse": { + "#": 2145 + }, + "totalContacts": 0, + "speed": 1.5462, + "angularSpeed": 0, + "velocity": { + "#": 2146 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2147 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2148 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2150 + }, + "positionPrev": { + "#": 2153 + }, + "anglePrev": 0, + "axes": { + "#": 2154 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2129 + }, + "sleepCounter": 0, + "region": { + "#": 2160 + } + }, + [ + { + "#": 2129 + } + ], + [ + { + "#": 2132 + }, + { + "#": 2133 + }, + { + "#": 2134 + }, + { + "#": 2135 + }, + { + "#": 2136 + }, + { + "#": 2137 + }, + { + "#": 2138 + }, + { + "#": 2139 + }, + { + "#": 2140 + }, + { + "#": 2141 + } + ], + { + "x": 235.43863, + "y": 284.21127, + "index": 0, + "body": { + "#": 2129 + }, + "isInternal": false + }, + { + "x": 232.53263, + "y": 288.21127, + "index": 1, + "body": { + "#": 2129 + }, + "isInternal": false + }, + { + "x": 227.83063, + "y": 289.73927, + "index": 2, + "body": { + "#": 2129 + }, + "isInternal": false + }, + { + "x": 223.12863, + "y": 288.21127, + "index": 3, + "body": { + "#": 2129 + }, + "isInternal": false + }, + { + "x": 220.22263, + "y": 284.21127, + "index": 4, + "body": { + "#": 2129 + }, + "isInternal": false + }, + { + "x": 220.22263, + "y": 279.26727, + "index": 5, + "body": { + "#": 2129 + }, + "isInternal": false + }, + { + "x": 223.12863, + "y": 275.26727, + "index": 6, + "body": { + "#": 2129 + }, + "isInternal": false + }, + { + "x": 227.83063, + "y": 273.73927, + "index": 7, + "body": { + "#": 2129 + }, + "isInternal": false + }, + { + "x": 232.53263, + "y": 275.26727, + "index": 8, + "body": { + "#": 2129 + }, + "isInternal": false + }, + { + "x": 235.43863, + "y": 279.26727, + "index": 9, + "body": { + "#": 2129 + }, + "isInternal": false + }, + { + "x": 227.83063, + "y": 281.73927 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00546, + "y": 0.72348 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2149 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2151 + }, + "max": { + "#": 2152 + } + }, + { + "x": 220.22263, + "y": 273.73927 + }, + { + "x": 235.43863, + "y": 289.73927 + }, + { + "x": 227.82444, + "y": 280.38145 + }, + [ + { + "#": 2155 + }, + { + "#": 2156 + }, + { + "#": 2157 + }, + { + "#": 2158 + }, + { + "#": 2159 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,5,6", + "startCol": 4, + "endCol": 4, + "startRow": 5, + "endRow": 6 + }, + { + "id": 67, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2162 + }, + "angle": 0, + "vertices": { + "#": 2163 + }, + "position": { + "#": 2174 + }, + "force": { + "#": 2175 + }, + "torque": 0, + "positionImpulse": { + "#": 2176 + }, + "constraintImpulse": { + "#": 2177 + }, + "totalContacts": 0, + "speed": 1.21786, + "angularSpeed": 0, + "velocity": { + "#": 2178 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2179 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2180 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2182 + }, + "positionPrev": { + "#": 2185 + }, + "anglePrev": 0, + "axes": { + "#": 2186 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2161 + }, + "sleepCounter": 0, + "region": { + "#": 2192 + } + }, + [ + { + "#": 2161 + } + ], + [ + { + "#": 2164 + }, + { + "#": 2165 + }, + { + "#": 2166 + }, + { + "#": 2167 + }, + { + "#": 2168 + }, + { + "#": 2169 + }, + { + "#": 2170 + }, + { + "#": 2171 + }, + { + "#": 2172 + }, + { + "#": 2173 + } + ], + { + "x": 255.64311, + "y": 283.11066, + "index": 0, + "body": { + "#": 2161 + }, + "isInternal": false + }, + { + "x": 252.73711, + "y": 287.11066, + "index": 1, + "body": { + "#": 2161 + }, + "isInternal": false + }, + { + "x": 248.03511, + "y": 288.63866, + "index": 2, + "body": { + "#": 2161 + }, + "isInternal": false + }, + { + "x": 243.33311, + "y": 287.11066, + "index": 3, + "body": { + "#": 2161 + }, + "isInternal": false + }, + { + "x": 240.42711, + "y": 283.11066, + "index": 4, + "body": { + "#": 2161 + }, + "isInternal": false + }, + { + "x": 240.42711, + "y": 278.16666, + "index": 5, + "body": { + "#": 2161 + }, + "isInternal": false + }, + { + "x": 243.33311, + "y": 274.16666, + "index": 6, + "body": { + "#": 2161 + }, + "isInternal": false + }, + { + "x": 248.03511, + "y": 272.63866, + "index": 7, + "body": { + "#": 2161 + }, + "isInternal": false + }, + { + "x": 252.73711, + "y": 274.16666, + "index": 8, + "body": { + "#": 2161 + }, + "isInternal": false + }, + { + "x": 255.64311, + "y": 278.16666, + "index": 9, + "body": { + "#": 2161 + }, + "isInternal": false + }, + { + "x": 248.03511, + "y": 280.63866 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00472, + "y": 0.46668 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2181 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2183 + }, + "max": { + "#": 2184 + } + }, + { + "x": 240.42711, + "y": 272.63866 + }, + { + "x": 255.64311, + "y": 288.63866 + }, + { + "x": 248.03981, + "y": 279.70424 + }, + [ + { + "#": 2187 + }, + { + "#": 2188 + }, + { + "#": 2189 + }, + { + "#": 2190 + }, + { + "#": 2191 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,5,6", + "startCol": 5, + "endCol": 5, + "startRow": 5, + "endRow": 6 + }, + { + "id": 68, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2194 + }, + "angle": 0, + "vertices": { + "#": 2195 + }, + "position": { + "#": 2206 + }, + "force": { + "#": 2207 + }, + "torque": 0, + "positionImpulse": { + "#": 2208 + }, + "constraintImpulse": { + "#": 2209 + }, + "totalContacts": 0, + "speed": 1.1721, + "angularSpeed": 0, + "velocity": { + "#": 2210 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2211 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2212 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2214 + }, + "positionPrev": { + "#": 2217 + }, + "anglePrev": 0, + "axes": { + "#": 2218 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2193 + }, + "sleepCounter": 0, + "region": { + "#": 2224 + } + }, + [ + { + "#": 2193 + } + ], + [ + { + "#": 2196 + }, + { + "#": 2197 + }, + { + "#": 2198 + }, + { + "#": 2199 + }, + { + "#": 2200 + }, + { + "#": 2201 + }, + { + "#": 2202 + }, + { + "#": 2203 + }, + { + "#": 2204 + }, + { + "#": 2205 + } + ], + { + "x": 275.88276, + "y": 282.92955, + "index": 0, + "body": { + "#": 2193 + }, + "isInternal": false + }, + { + "x": 272.97676, + "y": 286.92955, + "index": 1, + "body": { + "#": 2193 + }, + "isInternal": false + }, + { + "x": 268.27476, + "y": 288.45755, + "index": 2, + "body": { + "#": 2193 + }, + "isInternal": false + }, + { + "x": 263.57276, + "y": 286.92955, + "index": 3, + "body": { + "#": 2193 + }, + "isInternal": false + }, + { + "x": 260.66676, + "y": 282.92955, + "index": 4, + "body": { + "#": 2193 + }, + "isInternal": false + }, + { + "x": 260.66676, + "y": 277.98555, + "index": 5, + "body": { + "#": 2193 + }, + "isInternal": false + }, + { + "x": 263.57276, + "y": 273.98555, + "index": 6, + "body": { + "#": 2193 + }, + "isInternal": false + }, + { + "x": 268.27476, + "y": 272.45755, + "index": 7, + "body": { + "#": 2193 + }, + "isInternal": false + }, + { + "x": 272.97676, + "y": 273.98555, + "index": 8, + "body": { + "#": 2193 + }, + "isInternal": false + }, + { + "x": 275.88276, + "y": 277.98555, + "index": 9, + "body": { + "#": 2193 + }, + "isInternal": false + }, + { + "x": 268.27476, + "y": 280.45755 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.0136, + "y": 0.38425 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2213 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2215 + }, + "max": { + "#": 2216 + } + }, + { + "x": 260.66676, + "y": 272.45755 + }, + { + "x": 275.88276, + "y": 288.45755 + }, + { + "x": 268.26085, + "y": 279.69587 + }, + [ + { + "#": 2219 + }, + { + "#": 2220 + }, + { + "#": 2221 + }, + { + "#": 2222 + }, + { + "#": 2223 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,5,6", + "startCol": 5, + "endCol": 5, + "startRow": 5, + "endRow": 6 + }, + { + "id": 69, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2226 + }, + "angle": 0, + "vertices": { + "#": 2227 + }, + "position": { + "#": 2238 + }, + "force": { + "#": 2239 + }, + "torque": 0, + "positionImpulse": { + "#": 2240 + }, + "constraintImpulse": { + "#": 2241 + }, + "totalContacts": 0, + "speed": 0.83431, + "angularSpeed": 0, + "velocity": { + "#": 2242 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2243 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2244 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2246 + }, + "positionPrev": { + "#": 2249 + }, + "anglePrev": 0, + "axes": { + "#": 2250 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2225 + }, + "sleepCounter": 0, + "region": { + "#": 2256 + } + }, + [ + { + "#": 2225 + } + ], + [ + { + "#": 2228 + }, + { + "#": 2229 + }, + { + "#": 2230 + }, + { + "#": 2231 + }, + { + "#": 2232 + }, + { + "#": 2233 + }, + { + "#": 2234 + }, + { + "#": 2235 + }, + { + "#": 2236 + }, + { + "#": 2237 + } + ], + { + "x": 296.083, + "y": 281.6745, + "index": 0, + "body": { + "#": 2225 + }, + "isInternal": false + }, + { + "x": 293.177, + "y": 285.6745, + "index": 1, + "body": { + "#": 2225 + }, + "isInternal": false + }, + { + "x": 288.475, + "y": 287.2025, + "index": 2, + "body": { + "#": 2225 + }, + "isInternal": false + }, + { + "x": 283.773, + "y": 285.6745, + "index": 3, + "body": { + "#": 2225 + }, + "isInternal": false + }, + { + "x": 280.867, + "y": 281.6745, + "index": 4, + "body": { + "#": 2225 + }, + "isInternal": false + }, + { + "x": 280.867, + "y": 276.7305, + "index": 5, + "body": { + "#": 2225 + }, + "isInternal": false + }, + { + "x": 283.773, + "y": 272.7305, + "index": 6, + "body": { + "#": 2225 + }, + "isInternal": false + }, + { + "x": 288.475, + "y": 271.2025, + "index": 7, + "body": { + "#": 2225 + }, + "isInternal": false + }, + { + "x": 293.177, + "y": 272.7305, + "index": 8, + "body": { + "#": 2225 + }, + "isInternal": false + }, + { + "x": 296.083, + "y": 276.7305, + "index": 9, + "body": { + "#": 2225 + }, + "isInternal": false + }, + { + "x": 288.475, + "y": 279.2025 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00671, + "y": 0.17832 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2245 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2247 + }, + "max": { + "#": 2248 + } + }, + { + "x": 280.867, + "y": 271.2025 + }, + { + "x": 296.083, + "y": 287.2025 + }, + { + "x": 288.46796, + "y": 278.74967 + }, + [ + { + "#": 2251 + }, + { + "#": 2252 + }, + { + "#": 2253 + }, + { + "#": 2254 + }, + { + "#": 2255 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,5,5", + "startCol": 5, + "endCol": 6, + "startRow": 5, + "endRow": 5 + }, + { + "id": 70, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2258 + }, + "angle": 0, + "vertices": { + "#": 2259 + }, + "position": { + "#": 2270 + }, + "force": { + "#": 2271 + }, + "torque": 0, + "positionImpulse": { + "#": 2272 + }, + "constraintImpulse": { + "#": 2273 + }, + "totalContacts": 0, + "speed": 0.53286, + "angularSpeed": 0, + "velocity": { + "#": 2274 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2275 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2276 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2278 + }, + "positionPrev": { + "#": 2281 + }, + "anglePrev": 0, + "axes": { + "#": 2282 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2257 + }, + "sleepCounter": 0, + "region": { + "#": 2288 + } + }, + [ + { + "#": 2257 + } + ], + [ + { + "#": 2260 + }, + { + "#": 2261 + }, + { + "#": 2262 + }, + { + "#": 2263 + }, + { + "#": 2264 + }, + { + "#": 2265 + }, + { + "#": 2266 + }, + { + "#": 2267 + }, + { + "#": 2268 + }, + { + "#": 2269 + } + ], + { + "x": 316.31697, + "y": 280.70159, + "index": 0, + "body": { + "#": 2257 + }, + "isInternal": false + }, + { + "x": 313.41097, + "y": 284.70159, + "index": 1, + "body": { + "#": 2257 + }, + "isInternal": false + }, + { + "x": 308.70897, + "y": 286.22959, + "index": 2, + "body": { + "#": 2257 + }, + "isInternal": false + }, + { + "x": 304.00697, + "y": 284.70159, + "index": 3, + "body": { + "#": 2257 + }, + "isInternal": false + }, + { + "x": 301.10097, + "y": 280.70159, + "index": 4, + "body": { + "#": 2257 + }, + "isInternal": false + }, + { + "x": 301.10097, + "y": 275.75759, + "index": 5, + "body": { + "#": 2257 + }, + "isInternal": false + }, + { + "x": 304.00697, + "y": 271.75759, + "index": 6, + "body": { + "#": 2257 + }, + "isInternal": false + }, + { + "x": 308.70897, + "y": 270.22959, + "index": 7, + "body": { + "#": 2257 + }, + "isInternal": false + }, + { + "x": 313.41097, + "y": 271.75759, + "index": 8, + "body": { + "#": 2257 + }, + "isInternal": false + }, + { + "x": 316.31697, + "y": 275.75759, + "index": 9, + "body": { + "#": 2257 + }, + "isInternal": false + }, + { + "x": 308.70897, + "y": 278.22959 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01048, + "y": -0.07542 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2277 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2279 + }, + "max": { + "#": 2280 + } + }, + { + "x": 301.10097, + "y": 270.22959 + }, + { + "x": 316.31697, + "y": 286.22959 + }, + { + "x": 308.69834, + "y": 278.20029 + }, + [ + { + "#": 2283 + }, + { + "#": 2284 + }, + { + "#": 2285 + }, + { + "#": 2286 + }, + { + "#": 2287 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,6,5,5", + "startCol": 6, + "endCol": 6, + "startRow": 5, + "endRow": 5 + }, + { + "id": 71, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2290 + }, + "angle": 0, + "vertices": { + "#": 2291 + }, + "position": { + "#": 2302 + }, + "force": { + "#": 2303 + }, + "torque": 0, + "positionImpulse": { + "#": 2304 + }, + "constraintImpulse": { + "#": 2305 + }, + "totalContacts": 0, + "speed": 1.08824, + "angularSpeed": 0, + "velocity": { + "#": 2306 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2307 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2308 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2310 + }, + "positionPrev": { + "#": 2313 + }, + "anglePrev": 0, + "axes": { + "#": 2314 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2289 + }, + "sleepCounter": 0, + "region": { + "#": 2320 + } + }, + [ + { + "#": 2289 + } + ], + [ + { + "#": 2292 + }, + { + "#": 2293 + }, + { + "#": 2294 + }, + { + "#": 2295 + }, + { + "#": 2296 + }, + { + "#": 2297 + }, + { + "#": 2298 + }, + { + "#": 2299 + }, + { + "#": 2300 + }, + { + "#": 2301 + } + ], + { + "x": 336.48355, + "y": 282.65279, + "index": 0, + "body": { + "#": 2289 + }, + "isInternal": false + }, + { + "x": 333.57755, + "y": 286.65279, + "index": 1, + "body": { + "#": 2289 + }, + "isInternal": false + }, + { + "x": 328.87555, + "y": 288.18079, + "index": 2, + "body": { + "#": 2289 + }, + "isInternal": false + }, + { + "x": 324.17355, + "y": 286.65279, + "index": 3, + "body": { + "#": 2289 + }, + "isInternal": false + }, + { + "x": 321.26755, + "y": 282.65279, + "index": 4, + "body": { + "#": 2289 + }, + "isInternal": false + }, + { + "x": 321.26755, + "y": 277.70879, + "index": 5, + "body": { + "#": 2289 + }, + "isInternal": false + }, + { + "x": 324.17355, + "y": 273.70879, + "index": 6, + "body": { + "#": 2289 + }, + "isInternal": false + }, + { + "x": 328.87555, + "y": 272.18079, + "index": 7, + "body": { + "#": 2289 + }, + "isInternal": false + }, + { + "x": 333.57755, + "y": 273.70879, + "index": 8, + "body": { + "#": 2289 + }, + "isInternal": false + }, + { + "x": 336.48355, + "y": 277.70879, + "index": 9, + "body": { + "#": 2289 + }, + "isInternal": false + }, + { + "x": 328.87555, + "y": 280.18079 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01644, + "y": 0.33799 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2309 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2311 + }, + "max": { + "#": 2312 + } + }, + { + "x": 321.26755, + "y": 272.18079 + }, + { + "x": 336.48355, + "y": 288.18079 + }, + { + "x": 328.89271, + "y": 279.47623 + }, + [ + { + "#": 2315 + }, + { + "#": 2316 + }, + { + "#": 2317 + }, + { + "#": 2318 + }, + { + "#": 2319 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,5,6", + "startCol": 6, + "endCol": 7, + "startRow": 5, + "endRow": 6 + }, + { + "id": 72, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2322 + }, + "angle": 0, + "vertices": { + "#": 2323 + }, + "position": { + "#": 2334 + }, + "force": { + "#": 2335 + }, + "torque": 0, + "positionImpulse": { + "#": 2336 + }, + "constraintImpulse": { + "#": 2337 + }, + "totalContacts": 0, + "speed": 1.09136, + "angularSpeed": 0, + "velocity": { + "#": 2338 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2339 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2340 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2342 + }, + "positionPrev": { + "#": 2345 + }, + "anglePrev": 0, + "axes": { + "#": 2346 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2321 + }, + "sleepCounter": 0, + "region": { + "#": 2352 + } + }, + [ + { + "#": 2321 + } + ], + [ + { + "#": 2324 + }, + { + "#": 2325 + }, + { + "#": 2326 + }, + { + "#": 2327 + }, + { + "#": 2328 + }, + { + "#": 2329 + }, + { + "#": 2330 + }, + { + "#": 2331 + }, + { + "#": 2332 + }, + { + "#": 2333 + } + ], + { + "x": 356.7318, + "y": 282.70344, + "index": 0, + "body": { + "#": 2321 + }, + "isInternal": false + }, + { + "x": 353.8258, + "y": 286.70344, + "index": 1, + "body": { + "#": 2321 + }, + "isInternal": false + }, + { + "x": 349.1238, + "y": 288.23144, + "index": 2, + "body": { + "#": 2321 + }, + "isInternal": false + }, + { + "x": 344.4218, + "y": 286.70344, + "index": 3, + "body": { + "#": 2321 + }, + "isInternal": false + }, + { + "x": 341.5158, + "y": 282.70344, + "index": 4, + "body": { + "#": 2321 + }, + "isInternal": false + }, + { + "x": 341.5158, + "y": 277.75944, + "index": 5, + "body": { + "#": 2321 + }, + "isInternal": false + }, + { + "x": 344.4218, + "y": 273.75944, + "index": 6, + "body": { + "#": 2321 + }, + "isInternal": false + }, + { + "x": 349.1238, + "y": 272.23144, + "index": 7, + "body": { + "#": 2321 + }, + "isInternal": false + }, + { + "x": 353.8258, + "y": 273.75944, + "index": 8, + "body": { + "#": 2321 + }, + "isInternal": false + }, + { + "x": 356.7318, + "y": 277.75944, + "index": 9, + "body": { + "#": 2321 + }, + "isInternal": false + }, + { + "x": 349.1238, + "y": 280.23144 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00341, + "y": 0.36167 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2341 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2343 + }, + "max": { + "#": 2344 + } + }, + { + "x": 341.5158, + "y": 272.23144 + }, + { + "x": 356.7318, + "y": 288.23144 + }, + { + "x": 349.12032, + "y": 279.47119 + }, + [ + { + "#": 2347 + }, + { + "#": 2348 + }, + { + "#": 2349 + }, + { + "#": 2350 + }, + { + "#": 2351 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,5,6", + "startCol": 7, + "endCol": 7, + "startRow": 5, + "endRow": 6 + }, + { + "id": 73, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2354 + }, + "angle": 0, + "vertices": { + "#": 2355 + }, + "position": { + "#": 2366 + }, + "force": { + "#": 2367 + }, + "torque": 0, + "positionImpulse": { + "#": 2368 + }, + "constraintImpulse": { + "#": 2369 + }, + "totalContacts": 0, + "speed": 1.5341, + "angularSpeed": 0, + "velocity": { + "#": 2370 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2371 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2372 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2374 + }, + "positionPrev": { + "#": 2377 + }, + "anglePrev": 0, + "axes": { + "#": 2378 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2353 + }, + "sleepCounter": 0, + "region": { + "#": 2384 + } + }, + [ + { + "#": 2353 + } + ], + [ + { + "#": 2356 + }, + { + "#": 2357 + }, + { + "#": 2358 + }, + { + "#": 2359 + }, + { + "#": 2360 + }, + { + "#": 2361 + }, + { + "#": 2362 + }, + { + "#": 2363 + }, + { + "#": 2364 + }, + { + "#": 2365 + } + ], + { + "x": 376.92302, + "y": 284.16354, + "index": 0, + "body": { + "#": 2353 + }, + "isInternal": false + }, + { + "x": 374.01702, + "y": 288.16354, + "index": 1, + "body": { + "#": 2353 + }, + "isInternal": false + }, + { + "x": 369.31502, + "y": 289.69154, + "index": 2, + "body": { + "#": 2353 + }, + "isInternal": false + }, + { + "x": 364.61302, + "y": 288.16354, + "index": 3, + "body": { + "#": 2353 + }, + "isInternal": false + }, + { + "x": 361.70702, + "y": 284.16354, + "index": 4, + "body": { + "#": 2353 + }, + "isInternal": false + }, + { + "x": 361.70702, + "y": 279.21954, + "index": 5, + "body": { + "#": 2353 + }, + "isInternal": false + }, + { + "x": 364.61302, + "y": 275.21954, + "index": 6, + "body": { + "#": 2353 + }, + "isInternal": false + }, + { + "x": 369.31502, + "y": 273.69154, + "index": 7, + "body": { + "#": 2353 + }, + "isInternal": false + }, + { + "x": 374.01702, + "y": 275.21954, + "index": 8, + "body": { + "#": 2353 + }, + "isInternal": false + }, + { + "x": 376.92302, + "y": 279.21954, + "index": 9, + "body": { + "#": 2353 + }, + "isInternal": false + }, + { + "x": 369.31502, + "y": 281.69154 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01883, + "y": 0.70746 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2373 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2375 + }, + "max": { + "#": 2376 + } + }, + { + "x": 361.70702, + "y": 273.69154 + }, + { + "x": 376.92302, + "y": 289.69154 + }, + { + "x": 369.33496, + "y": 280.365 + }, + [ + { + "#": 2379 + }, + { + "#": 2380 + }, + { + "#": 2381 + }, + { + "#": 2382 + }, + { + "#": 2383 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,5,6", + "startCol": 7, + "endCol": 7, + "startRow": 5, + "endRow": 6 + }, + { + "id": 74, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2386 + }, + "angle": 0, + "vertices": { + "#": 2387 + }, + "position": { + "#": 2398 + }, + "force": { + "#": 2399 + }, + "torque": 0, + "positionImpulse": { + "#": 2400 + }, + "constraintImpulse": { + "#": 2401 + }, + "totalContacts": 0, + "speed": 1.47631, + "angularSpeed": 0, + "velocity": { + "#": 2402 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2403 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2404 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2406 + }, + "positionPrev": { + "#": 2409 + }, + "anglePrev": 0, + "axes": { + "#": 2410 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2385 + }, + "sleepCounter": 0, + "region": { + "#": 2416 + } + }, + [ + { + "#": 2385 + } + ], + [ + { + "#": 2388 + }, + { + "#": 2389 + }, + { + "#": 2390 + }, + { + "#": 2391 + }, + { + "#": 2392 + }, + { + "#": 2393 + }, + { + "#": 2394 + }, + { + "#": 2395 + }, + { + "#": 2396 + }, + { + "#": 2397 + } + ], + { + "x": 397.15824, + "y": 283.97169, + "index": 0, + "body": { + "#": 2385 + }, + "isInternal": false + }, + { + "x": 394.25224, + "y": 287.97169, + "index": 1, + "body": { + "#": 2385 + }, + "isInternal": false + }, + { + "x": 389.55024, + "y": 289.49969, + "index": 2, + "body": { + "#": 2385 + }, + "isInternal": false + }, + { + "x": 384.84824, + "y": 287.97169, + "index": 3, + "body": { + "#": 2385 + }, + "isInternal": false + }, + { + "x": 381.94224, + "y": 283.97169, + "index": 4, + "body": { + "#": 2385 + }, + "isInternal": false + }, + { + "x": 381.94224, + "y": 279.02769, + "index": 5, + "body": { + "#": 2385 + }, + "isInternal": false + }, + { + "x": 384.84824, + "y": 275.02769, + "index": 6, + "body": { + "#": 2385 + }, + "isInternal": false + }, + { + "x": 389.55024, + "y": 273.49969, + "index": 7, + "body": { + "#": 2385 + }, + "isInternal": false + }, + { + "x": 394.25224, + "y": 275.02769, + "index": 8, + "body": { + "#": 2385 + }, + "isInternal": false + }, + { + "x": 397.15824, + "y": 279.02769, + "index": 9, + "body": { + "#": 2385 + }, + "isInternal": false + }, + { + "x": 389.55024, + "y": 281.49969 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00081, + "y": 0.6527 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2405 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2407 + }, + "max": { + "#": 2408 + } + }, + { + "x": 381.94224, + "y": 273.49969 + }, + { + "x": 397.15824, + "y": 289.49969 + }, + { + "x": 389.55169, + "y": 280.27072 + }, + [ + { + "#": 2411 + }, + { + "#": 2412 + }, + { + "#": 2413 + }, + { + "#": 2414 + }, + { + "#": 2415 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,5,6", + "startCol": 7, + "endCol": 8, + "startRow": 5, + "endRow": 6 + }, + { + "id": 75, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2418 + }, + "angle": 0, + "vertices": { + "#": 2419 + }, + "position": { + "#": 2430 + }, + "force": { + "#": 2431 + }, + "torque": 0, + "positionImpulse": { + "#": 2432 + }, + "constraintImpulse": { + "#": 2433 + }, + "totalContacts": 0, + "speed": 1.47006, + "angularSpeed": 0, + "velocity": { + "#": 2434 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2435 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2436 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2438 + }, + "positionPrev": { + "#": 2441 + }, + "anglePrev": 0, + "axes": { + "#": 2442 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2417 + }, + "sleepCounter": 0, + "region": { + "#": 2448 + } + }, + [ + { + "#": 2417 + } + ], + [ + { + "#": 2420 + }, + { + "#": 2421 + }, + { + "#": 2422 + }, + { + "#": 2423 + }, + { + "#": 2424 + }, + { + "#": 2425 + }, + { + "#": 2426 + }, + { + "#": 2427 + }, + { + "#": 2428 + }, + { + "#": 2429 + } + ], + { + "x": 417.37597, + "y": 283.94704, + "index": 0, + "body": { + "#": 2417 + }, + "isInternal": false + }, + { + "x": 414.46997, + "y": 287.94704, + "index": 1, + "body": { + "#": 2417 + }, + "isInternal": false + }, + { + "x": 409.76797, + "y": 289.47504, + "index": 2, + "body": { + "#": 2417 + }, + "isInternal": false + }, + { + "x": 405.06597, + "y": 287.94704, + "index": 3, + "body": { + "#": 2417 + }, + "isInternal": false + }, + { + "x": 402.15997, + "y": 283.94704, + "index": 4, + "body": { + "#": 2417 + }, + "isInternal": false + }, + { + "x": 402.15997, + "y": 279.00304, + "index": 5, + "body": { + "#": 2417 + }, + "isInternal": false + }, + { + "x": 405.06597, + "y": 275.00304, + "index": 6, + "body": { + "#": 2417 + }, + "isInternal": false + }, + { + "x": 409.76797, + "y": 273.47504, + "index": 7, + "body": { + "#": 2417 + }, + "isInternal": false + }, + { + "x": 414.46997, + "y": 275.00304, + "index": 8, + "body": { + "#": 2417 + }, + "isInternal": false + }, + { + "x": 417.37597, + "y": 279.00304, + "index": 9, + "body": { + "#": 2417 + }, + "isInternal": false + }, + { + "x": 409.76797, + "y": 281.47504 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00001, + "y": 0.64462 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2437 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2439 + }, + "max": { + "#": 2440 + } + }, + { + "x": 402.15997, + "y": 273.47504 + }, + { + "x": 417.37597, + "y": 289.47504 + }, + { + "x": 409.768, + "y": 280.26246 + }, + [ + { + "#": 2443 + }, + { + "#": 2444 + }, + { + "#": 2445 + }, + { + "#": 2446 + }, + { + "#": 2447 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,5,6", + "startCol": 8, + "endCol": 8, + "startRow": 5, + "endRow": 6 + }, + { + "id": 76, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2450 + }, + "angle": 0, + "vertices": { + "#": 2451 + }, + "position": { + "#": 2462 + }, + "force": { + "#": 2463 + }, + "torque": 0, + "positionImpulse": { + "#": 2464 + }, + "constraintImpulse": { + "#": 2465 + }, + "totalContacts": 0, + "speed": 1.46763, + "angularSpeed": 0, + "velocity": { + "#": 2466 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2467 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2468 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2470 + }, + "positionPrev": { + "#": 2473 + }, + "anglePrev": 0, + "axes": { + "#": 2474 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2449 + }, + "sleepCounter": 0, + "region": { + "#": 2480 + } + }, + [ + { + "#": 2449 + } + ], + [ + { + "#": 2452 + }, + { + "#": 2453 + }, + { + "#": 2454 + }, + { + "#": 2455 + }, + { + "#": 2456 + }, + { + "#": 2457 + }, + { + "#": 2458 + }, + { + "#": 2459 + }, + { + "#": 2460 + }, + { + "#": 2461 + } + ], + { + "x": 437.59803, + "y": 283.93577, + "index": 0, + "body": { + "#": 2449 + }, + "isInternal": false + }, + { + "x": 434.69203, + "y": 287.93577, + "index": 1, + "body": { + "#": 2449 + }, + "isInternal": false + }, + { + "x": 429.99003, + "y": 289.46377, + "index": 2, + "body": { + "#": 2449 + }, + "isInternal": false + }, + { + "x": 425.28803, + "y": 287.93577, + "index": 3, + "body": { + "#": 2449 + }, + "isInternal": false + }, + { + "x": 422.38203, + "y": 283.93577, + "index": 4, + "body": { + "#": 2449 + }, + "isInternal": false + }, + { + "x": 422.38203, + "y": 278.99177, + "index": 5, + "body": { + "#": 2449 + }, + "isInternal": false + }, + { + "x": 425.28803, + "y": 274.99177, + "index": 6, + "body": { + "#": 2449 + }, + "isInternal": false + }, + { + "x": 429.99003, + "y": 273.46377, + "index": 7, + "body": { + "#": 2449 + }, + "isInternal": false + }, + { + "x": 434.69203, + "y": 274.99177, + "index": 8, + "body": { + "#": 2449 + }, + "isInternal": false + }, + { + "x": 437.59803, + "y": 278.99177, + "index": 9, + "body": { + "#": 2449 + }, + "isInternal": false + }, + { + "x": 429.99003, + "y": 281.46377 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00506, + "y": 0.64081 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2469 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2471 + }, + "max": { + "#": 2472 + } + }, + { + "x": 422.38203, + "y": 273.46377 + }, + { + "x": 437.59803, + "y": 289.46377 + }, + { + "x": 429.9843, + "y": 280.25957 + }, + [ + { + "#": 2475 + }, + { + "#": 2476 + }, + { + "#": 2477 + }, + { + "#": 2478 + }, + { + "#": 2479 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,5,6", + "startCol": 8, + "endCol": 9, + "startRow": 5, + "endRow": 6 + }, + { + "id": 77, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2482 + }, + "angle": 0, + "vertices": { + "#": 2483 + }, + "position": { + "#": 2494 + }, + "force": { + "#": 2495 + }, + "torque": 0, + "positionImpulse": { + "#": 2496 + }, + "constraintImpulse": { + "#": 2497 + }, + "totalContacts": 0, + "speed": 1.42949, + "angularSpeed": 0, + "velocity": { + "#": 2498 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2499 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2500 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2502 + }, + "positionPrev": { + "#": 2505 + }, + "anglePrev": 0, + "axes": { + "#": 2506 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2481 + }, + "sleepCounter": 0, + "region": { + "#": 2512 + } + }, + [ + { + "#": 2481 + } + ], + [ + { + "#": 2484 + }, + { + "#": 2485 + }, + { + "#": 2486 + }, + { + "#": 2487 + }, + { + "#": 2488 + }, + { + "#": 2489 + }, + { + "#": 2490 + }, + { + "#": 2491 + }, + { + "#": 2492 + }, + { + "#": 2493 + } + ], + { + "x": 457.83582, + "y": 283.79758, + "index": 0, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 454.92982, + "y": 287.79758, + "index": 1, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 450.22782, + "y": 289.32558, + "index": 2, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 445.52582, + "y": 287.79758, + "index": 3, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 442.61982, + "y": 283.79758, + "index": 4, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 442.61982, + "y": 278.85358, + "index": 5, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 445.52582, + "y": 274.85358, + "index": 6, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 450.22782, + "y": 273.32558, + "index": 7, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 454.92982, + "y": 274.85358, + "index": 8, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 457.83582, + "y": 278.85358, + "index": 9, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 450.22782, + "y": 281.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02012, + "y": 0.5974 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2501 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2503 + }, + "max": { + "#": 2504 + } + }, + { + "x": 442.61982, + "y": 273.32558 + }, + { + "x": 457.83582, + "y": 289.32558 + }, + { + "x": 450.20612, + "y": 280.20316 + }, + [ + { + "#": 2507 + }, + { + "#": 2508 + }, + { + "#": 2509 + }, + { + "#": 2510 + }, + { + "#": 2511 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,5,6", + "startCol": 9, + "endCol": 9, + "startRow": 5, + "endRow": 6 + }, + { + "id": 78, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2514 + }, + "angle": 0, + "vertices": { + "#": 2515 + }, + "position": { + "#": 2526 + }, + "force": { + "#": 2527 + }, + "torque": 0, + "positionImpulse": { + "#": 2528 + }, + "constraintImpulse": { + "#": 2529 + }, + "totalContacts": 0, + "speed": 0.84724, + "angularSpeed": 0, + "velocity": { + "#": 2530 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2531 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2532 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2534 + }, + "positionPrev": { + "#": 2537 + }, + "anglePrev": 0, + "axes": { + "#": 2538 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2513 + }, + "sleepCounter": 0, + "region": { + "#": 2544 + } + }, + [ + { + "#": 2513 + } + ], + [ + { + "#": 2516 + }, + { + "#": 2517 + }, + { + "#": 2518 + }, + { + "#": 2519 + }, + { + "#": 2520 + }, + { + "#": 2521 + }, + { + "#": 2522 + }, + { + "#": 2523 + }, + { + "#": 2524 + }, + { + "#": 2525 + } + ], + { + "x": 478.00093, + "y": 281.86223, + "index": 0, + "body": { + "#": 2513 + }, + "isInternal": false + }, + { + "x": 475.09493, + "y": 285.86223, + "index": 1, + "body": { + "#": 2513 + }, + "isInternal": false + }, + { + "x": 470.39293, + "y": 287.39023, + "index": 2, + "body": { + "#": 2513 + }, + "isInternal": false + }, + { + "x": 465.69093, + "y": 285.86223, + "index": 3, + "body": { + "#": 2513 + }, + "isInternal": false + }, + { + "x": 462.78493, + "y": 281.86223, + "index": 4, + "body": { + "#": 2513 + }, + "isInternal": false + }, + { + "x": 462.78493, + "y": 276.91823, + "index": 5, + "body": { + "#": 2513 + }, + "isInternal": false + }, + { + "x": 465.69093, + "y": 272.91823, + "index": 6, + "body": { + "#": 2513 + }, + "isInternal": false + }, + { + "x": 470.39293, + "y": 271.39023, + "index": 7, + "body": { + "#": 2513 + }, + "isInternal": false + }, + { + "x": 475.09493, + "y": 272.91823, + "index": 8, + "body": { + "#": 2513 + }, + "isInternal": false + }, + { + "x": 478.00093, + "y": 276.91823, + "index": 9, + "body": { + "#": 2513 + }, + "isInternal": false + }, + { + "x": 470.39293, + "y": 279.39023 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01741, + "y": 0.11132 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2533 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2535 + }, + "max": { + "#": 2536 + } + }, + { + "x": 462.78493, + "y": 271.39023 + }, + { + "x": 478.00093, + "y": 287.39023 + }, + { + "x": 470.41083, + "y": 279.08985 + }, + [ + { + "#": 2539 + }, + { + "#": 2540 + }, + { + "#": 2541 + }, + { + "#": 2542 + }, + { + "#": 2543 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,5,5", + "startCol": 9, + "endCol": 9, + "startRow": 5, + "endRow": 5 + }, + { + "id": 79, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2546 + }, + "angle": 0, + "vertices": { + "#": 2547 + }, + "position": { + "#": 2558 + }, + "force": { + "#": 2559 + }, + "torque": 0, + "positionImpulse": { + "#": 2560 + }, + "constraintImpulse": { + "#": 2561 + }, + "totalContacts": 0, + "speed": 0.81688, + "angularSpeed": 0, + "velocity": { + "#": 2562 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2563 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2564 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2566 + }, + "positionPrev": { + "#": 2569 + }, + "anglePrev": 0, + "axes": { + "#": 2570 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2545 + }, + "sleepCounter": 0, + "region": { + "#": 2576 + } + }, + [ + { + "#": 2545 + } + ], + [ + { + "#": 2548 + }, + { + "#": 2549 + }, + { + "#": 2550 + }, + { + "#": 2551 + }, + { + "#": 2552 + }, + { + "#": 2553 + }, + { + "#": 2554 + }, + { + "#": 2555 + }, + { + "#": 2556 + }, + { + "#": 2557 + } + ], + { + "x": 498.23377, + "y": 281.7457, + "index": 0, + "body": { + "#": 2545 + }, + "isInternal": false + }, + { + "x": 495.32777, + "y": 285.7457, + "index": 1, + "body": { + "#": 2545 + }, + "isInternal": false + }, + { + "x": 490.62577, + "y": 287.2737, + "index": 2, + "body": { + "#": 2545 + }, + "isInternal": false + }, + { + "x": 485.92377, + "y": 285.7457, + "index": 3, + "body": { + "#": 2545 + }, + "isInternal": false + }, + { + "x": 483.01777, + "y": 281.7457, + "index": 4, + "body": { + "#": 2545 + }, + "isInternal": false + }, + { + "x": 483.01777, + "y": 276.8017, + "index": 5, + "body": { + "#": 2545 + }, + "isInternal": false + }, + { + "x": 485.92377, + "y": 272.8017, + "index": 6, + "body": { + "#": 2545 + }, + "isInternal": false + }, + { + "x": 490.62577, + "y": 271.2737, + "index": 7, + "body": { + "#": 2545 + }, + "isInternal": false + }, + { + "x": 495.32777, + "y": 272.8017, + "index": 8, + "body": { + "#": 2545 + }, + "isInternal": false + }, + { + "x": 498.23377, + "y": 276.8017, + "index": 9, + "body": { + "#": 2545 + }, + "isInternal": false + }, + { + "x": 490.62577, + "y": 279.2737 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00591, + "y": 0.07662 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2565 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2567 + }, + "max": { + "#": 2568 + } + }, + { + "x": 483.01777, + "y": 271.2737 + }, + { + "x": 498.23377, + "y": 287.2737 + }, + { + "x": 490.63185, + "y": 279.0398 + }, + [ + { + "#": 2571 + }, + { + "#": 2572 + }, + { + "#": 2573 + }, + { + "#": 2574 + }, + { + "#": 2575 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,5,5", + "startCol": 10, + "endCol": 10, + "startRow": 5, + "endRow": 5 + }, + { + "id": 80, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2578 + }, + "angle": 0, + "vertices": { + "#": 2579 + }, + "position": { + "#": 2590 + }, + "force": { + "#": 2591 + }, + "torque": 0, + "positionImpulse": { + "#": 2592 + }, + "constraintImpulse": { + "#": 2593 + }, + "totalContacts": 0, + "speed": 0.8168, + "angularSpeed": 0, + "velocity": { + "#": 2594 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2595 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2596 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2598 + }, + "positionPrev": { + "#": 2601 + }, + "anglePrev": 0, + "axes": { + "#": 2602 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2577 + }, + "sleepCounter": 0, + "region": { + "#": 2608 + } + }, + [ + { + "#": 2577 + } + ], + [ + { + "#": 2580 + }, + { + "#": 2581 + }, + { + "#": 2582 + }, + { + "#": 2583 + }, + { + "#": 2584 + }, + { + "#": 2585 + }, + { + "#": 2586 + }, + { + "#": 2587 + }, + { + "#": 2588 + }, + { + "#": 2589 + } + ], + { + "x": 518.46027, + "y": 281.74544, + "index": 0, + "body": { + "#": 2577 + }, + "isInternal": false + }, + { + "x": 515.55427, + "y": 285.74544, + "index": 1, + "body": { + "#": 2577 + }, + "isInternal": false + }, + { + "x": 510.85227, + "y": 287.27344, + "index": 2, + "body": { + "#": 2577 + }, + "isInternal": false + }, + { + "x": 506.15027, + "y": 285.74544, + "index": 3, + "body": { + "#": 2577 + }, + "isInternal": false + }, + { + "x": 503.24427, + "y": 281.74544, + "index": 4, + "body": { + "#": 2577 + }, + "isInternal": false + }, + { + "x": 503.24427, + "y": 276.80144, + "index": 5, + "body": { + "#": 2577 + }, + "isInternal": false + }, + { + "x": 506.15027, + "y": 272.80144, + "index": 6, + "body": { + "#": 2577 + }, + "isInternal": false + }, + { + "x": 510.85227, + "y": 271.27344, + "index": 7, + "body": { + "#": 2577 + }, + "isInternal": false + }, + { + "x": 515.55427, + "y": 272.80144, + "index": 8, + "body": { + "#": 2577 + }, + "isInternal": false + }, + { + "x": 518.46027, + "y": 276.80144, + "index": 9, + "body": { + "#": 2577 + }, + "isInternal": false + }, + { + "x": 510.85227, + "y": 279.27344 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00412, + "y": 0.07655 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2597 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2599 + }, + "max": { + "#": 2600 + } + }, + { + "x": 503.24427, + "y": 271.27344 + }, + { + "x": 518.46027, + "y": 287.27344 + }, + { + "x": 510.84805, + "y": 279.03966 + }, + [ + { + "#": 2603 + }, + { + "#": 2604 + }, + { + "#": 2605 + }, + { + "#": 2606 + }, + { + "#": 2607 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,5,5", + "startCol": 10, + "endCol": 10, + "startRow": 5, + "endRow": 5 + }, + { + "id": 81, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2610 + }, + "angle": 0, + "vertices": { + "#": 2611 + }, + "position": { + "#": 2622 + }, + "force": { + "#": 2623 + }, + "torque": 0, + "positionImpulse": { + "#": 2624 + }, + "constraintImpulse": { + "#": 2625 + }, + "totalContacts": 0, + "speed": 0.84736, + "angularSpeed": 0, + "velocity": { + "#": 2626 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2627 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2628 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2630 + }, + "positionPrev": { + "#": 2633 + }, + "anglePrev": 0, + "axes": { + "#": 2634 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2609 + }, + "sleepCounter": 0, + "region": { + "#": 2640 + } + }, + [ + { + "#": 2609 + } + ], + [ + { + "#": 2612 + }, + { + "#": 2613 + }, + { + "#": 2614 + }, + { + "#": 2615 + }, + { + "#": 2616 + }, + { + "#": 2617 + }, + { + "#": 2618 + }, + { + "#": 2619 + }, + { + "#": 2620 + }, + { + "#": 2621 + } + ], + { + "x": 538.69774, + "y": 281.86214, + "index": 0, + "body": { + "#": 2609 + }, + "isInternal": false + }, + { + "x": 535.79174, + "y": 285.86214, + "index": 1, + "body": { + "#": 2609 + }, + "isInternal": false + }, + { + "x": 531.08974, + "y": 287.39014, + "index": 2, + "body": { + "#": 2609 + }, + "isInternal": false + }, + { + "x": 526.38774, + "y": 285.86214, + "index": 3, + "body": { + "#": 2609 + }, + "isInternal": false + }, + { + "x": 523.48174, + "y": 281.86214, + "index": 4, + "body": { + "#": 2609 + }, + "isInternal": false + }, + { + "x": 523.48174, + "y": 276.91814, + "index": 5, + "body": { + "#": 2609 + }, + "isInternal": false + }, + { + "x": 526.38774, + "y": 272.91814, + "index": 6, + "body": { + "#": 2609 + }, + "isInternal": false + }, + { + "x": 531.08974, + "y": 271.39014, + "index": 7, + "body": { + "#": 2609 + }, + "isInternal": false + }, + { + "x": 535.79174, + "y": 272.91814, + "index": 8, + "body": { + "#": 2609 + }, + "isInternal": false + }, + { + "x": 538.69774, + "y": 276.91814, + "index": 9, + "body": { + "#": 2609 + }, + "isInternal": false + }, + { + "x": 531.08974, + "y": 279.39014 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01993, + "y": 0.11131 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2629 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2631 + }, + "max": { + "#": 2632 + } + }, + { + "x": 523.48174, + "y": 271.39014 + }, + { + "x": 538.69774, + "y": 287.39014 + }, + { + "x": 531.06927, + "y": 279.09011 + }, + [ + { + "#": 2635 + }, + { + "#": 2636 + }, + { + "#": 2637 + }, + { + "#": 2638 + }, + { + "#": 2639 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,5,5", + "startCol": 10, + "endCol": 11, + "startRow": 5, + "endRow": 5 + }, + { + "id": 82, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2642 + }, + "angle": 0, + "vertices": { + "#": 2643 + }, + "position": { + "#": 2654 + }, + "force": { + "#": 2655 + }, + "torque": 0, + "positionImpulse": { + "#": 2656 + }, + "constraintImpulse": { + "#": 2657 + }, + "totalContacts": 0, + "speed": 1.42907, + "angularSpeed": 0, + "velocity": { + "#": 2658 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2659 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2660 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2662 + }, + "positionPrev": { + "#": 2665 + }, + "anglePrev": 0, + "axes": { + "#": 2666 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2641 + }, + "sleepCounter": 0, + "region": { + "#": 2672 + } + }, + [ + { + "#": 2641 + } + ], + [ + { + "#": 2644 + }, + { + "#": 2645 + }, + { + "#": 2646 + }, + { + "#": 2647 + }, + { + "#": 2648 + }, + { + "#": 2649 + }, + { + "#": 2650 + }, + { + "#": 2651 + }, + { + "#": 2652 + }, + { + "#": 2653 + } + ], + { + "x": 558.86412, + "y": 283.79554, + "index": 0, + "body": { + "#": 2641 + }, + "isInternal": false + }, + { + "x": 555.95812, + "y": 287.79554, + "index": 1, + "body": { + "#": 2641 + }, + "isInternal": false + }, + { + "x": 551.25612, + "y": 289.32354, + "index": 2, + "body": { + "#": 2641 + }, + "isInternal": false + }, + { + "x": 546.55412, + "y": 287.79554, + "index": 3, + "body": { + "#": 2641 + }, + "isInternal": false + }, + { + "x": 543.64812, + "y": 283.79554, + "index": 4, + "body": { + "#": 2641 + }, + "isInternal": false + }, + { + "x": 543.64812, + "y": 278.85154, + "index": 5, + "body": { + "#": 2641 + }, + "isInternal": false + }, + { + "x": 546.55412, + "y": 274.85154, + "index": 6, + "body": { + "#": 2641 + }, + "isInternal": false + }, + { + "x": 551.25612, + "y": 273.32354, + "index": 7, + "body": { + "#": 2641 + }, + "isInternal": false + }, + { + "x": 555.95812, + "y": 274.85154, + "index": 8, + "body": { + "#": 2641 + }, + "isInternal": false + }, + { + "x": 558.86412, + "y": 278.85154, + "index": 9, + "body": { + "#": 2641 + }, + "isInternal": false + }, + { + "x": 551.25612, + "y": 281.32354 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.0165, + "y": 0.59672 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2661 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2663 + }, + "max": { + "#": 2664 + } + }, + { + "x": 543.64812, + "y": 273.32354 + }, + { + "x": 558.86412, + "y": 289.32354 + }, + { + "x": 551.27405, + "y": 280.20261 + }, + [ + { + "#": 2667 + }, + { + "#": 2668 + }, + { + "#": 2669 + }, + { + "#": 2670 + }, + { + "#": 2671 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,11,5,6", + "startCol": 11, + "endCol": 11, + "startRow": 5, + "endRow": 6 + }, + { + "id": 83, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2674 + }, + "angle": 0, + "vertices": { + "#": 2675 + }, + "position": { + "#": 2686 + }, + "force": { + "#": 2687 + }, + "torque": 0, + "positionImpulse": { + "#": 2688 + }, + "constraintImpulse": { + "#": 2689 + }, + "totalContacts": 0, + "speed": 1.46732, + "angularSpeed": 0, + "velocity": { + "#": 2690 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2691 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2692 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2694 + }, + "positionPrev": { + "#": 2697 + }, + "anglePrev": 0, + "axes": { + "#": 2698 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2673 + }, + "sleepCounter": 0, + "region": { + "#": 2704 + } + }, + [ + { + "#": 2673 + } + ], + [ + { + "#": 2676 + }, + { + "#": 2677 + }, + { + "#": 2678 + }, + { + "#": 2679 + }, + { + "#": 2680 + }, + { + "#": 2681 + }, + { + "#": 2682 + }, + { + "#": 2683 + }, + { + "#": 2684 + }, + { + "#": 2685 + } + ], + { + "x": 579.09358, + "y": 283.93373, + "index": 0, + "body": { + "#": 2673 + }, + "isInternal": false + }, + { + "x": 576.18758, + "y": 287.93373, + "index": 1, + "body": { + "#": 2673 + }, + "isInternal": false + }, + { + "x": 571.48558, + "y": 289.46173, + "index": 2, + "body": { + "#": 2673 + }, + "isInternal": false + }, + { + "x": 566.78358, + "y": 287.93373, + "index": 3, + "body": { + "#": 2673 + }, + "isInternal": false + }, + { + "x": 563.87758, + "y": 283.93373, + "index": 4, + "body": { + "#": 2673 + }, + "isInternal": false + }, + { + "x": 563.87758, + "y": 278.98973, + "index": 5, + "body": { + "#": 2673 + }, + "isInternal": false + }, + { + "x": 566.78358, + "y": 274.98973, + "index": 6, + "body": { + "#": 2673 + }, + "isInternal": false + }, + { + "x": 571.48558, + "y": 273.46173, + "index": 7, + "body": { + "#": 2673 + }, + "isInternal": false + }, + { + "x": 576.18758, + "y": 274.98973, + "index": 8, + "body": { + "#": 2673 + }, + "isInternal": false + }, + { + "x": 579.09358, + "y": 278.98973, + "index": 9, + "body": { + "#": 2673 + }, + "isInternal": false + }, + { + "x": 571.48558, + "y": 281.46173 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00928, + "y": 0.64014 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2693 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2695 + }, + "max": { + "#": 2696 + } + }, + { + "x": 563.87758, + "y": 273.46173 + }, + { + "x": 579.09358, + "y": 289.46173 + }, + { + "x": 571.49557, + "y": 280.25923 + }, + [ + { + "#": 2699 + }, + { + "#": 2700 + }, + { + "#": 2701 + }, + { + "#": 2702 + }, + { + "#": 2703 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,5,6", + "startCol": 11, + "endCol": 12, + "startRow": 5, + "endRow": 6 + }, + { + "id": 84, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2706 + }, + "angle": 0, + "vertices": { + "#": 2707 + }, + "position": { + "#": 2718 + }, + "force": { + "#": 2719 + }, + "torque": 0, + "positionImpulse": { + "#": 2720 + }, + "constraintImpulse": { + "#": 2721 + }, + "totalContacts": 0, + "speed": 1.46791, + "angularSpeed": 0, + "velocity": { + "#": 2722 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2723 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2724 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2726 + }, + "positionPrev": { + "#": 2729 + }, + "anglePrev": 0, + "axes": { + "#": 2730 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2705 + }, + "sleepCounter": 0, + "region": { + "#": 2736 + } + }, + [ + { + "#": 2705 + } + ], + [ + { + "#": 2708 + }, + { + "#": 2709 + }, + { + "#": 2710 + }, + { + "#": 2711 + }, + { + "#": 2712 + }, + { + "#": 2713 + }, + { + "#": 2714 + }, + { + "#": 2715 + }, + { + "#": 2716 + }, + { + "#": 2717 + } + ], + { + "x": 599.31938, + "y": 283.93638, + "index": 0, + "body": { + "#": 2705 + }, + "isInternal": false + }, + { + "x": 596.41338, + "y": 287.93638, + "index": 1, + "body": { + "#": 2705 + }, + "isInternal": false + }, + { + "x": 591.71138, + "y": 289.46438, + "index": 2, + "body": { + "#": 2705 + }, + "isInternal": false + }, + { + "x": 587.00938, + "y": 287.93638, + "index": 3, + "body": { + "#": 2705 + }, + "isInternal": false + }, + { + "x": 584.10338, + "y": 283.93638, + "index": 4, + "body": { + "#": 2705 + }, + "isInternal": false + }, + { + "x": 584.10338, + "y": 278.99238, + "index": 5, + "body": { + "#": 2705 + }, + "isInternal": false + }, + { + "x": 587.00938, + "y": 274.99238, + "index": 6, + "body": { + "#": 2705 + }, + "isInternal": false + }, + { + "x": 591.71138, + "y": 273.46438, + "index": 7, + "body": { + "#": 2705 + }, + "isInternal": false + }, + { + "x": 596.41338, + "y": 274.99238, + "index": 8, + "body": { + "#": 2705 + }, + "isInternal": false + }, + { + "x": 599.31938, + "y": 278.99238, + "index": 9, + "body": { + "#": 2705 + }, + "isInternal": false + }, + { + "x": 591.71138, + "y": 281.46438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00021, + "y": 0.64102 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2725 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2727 + }, + "max": { + "#": 2728 + } + }, + { + "x": 584.10338, + "y": 273.46438 + }, + { + "x": 599.31938, + "y": 289.46438 + }, + { + "x": 591.712, + "y": 280.25996 + }, + [ + { + "#": 2731 + }, + { + "#": 2732 + }, + { + "#": 2733 + }, + { + "#": 2734 + }, + { + "#": 2735 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,5,6", + "startCol": 12, + "endCol": 12, + "startRow": 5, + "endRow": 6 + }, + { + "id": 85, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2738 + }, + "angle": 0, + "vertices": { + "#": 2739 + }, + "position": { + "#": 2750 + }, + "force": { + "#": 2751 + }, + "torque": 0, + "positionImpulse": { + "#": 2752 + }, + "constraintImpulse": { + "#": 2753 + }, + "totalContacts": 0, + "speed": 1.86084, + "angularSpeed": 0, + "velocity": { + "#": 2754 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2755 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2756 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2758 + }, + "positionPrev": { + "#": 2761 + }, + "anglePrev": 0, + "axes": { + "#": 2762 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2737 + }, + "sleepCounter": 0, + "region": { + "#": 2768 + } + }, + [ + { + "#": 2737 + } + ], + [ + { + "#": 2740 + }, + { + "#": 2741 + }, + { + "#": 2742 + }, + { + "#": 2743 + }, + { + "#": 2744 + }, + { + "#": 2745 + }, + { + "#": 2746 + }, + { + "#": 2747 + }, + { + "#": 2748 + }, + { + "#": 2749 + } + ], + { + "x": 215.22916, + "y": 307.27904, + "index": 0, + "body": { + "#": 2737 + }, + "isInternal": false + }, + { + "x": 212.32316, + "y": 311.27904, + "index": 1, + "body": { + "#": 2737 + }, + "isInternal": false + }, + { + "x": 207.62116, + "y": 312.80704, + "index": 2, + "body": { + "#": 2737 + }, + "isInternal": false + }, + { + "x": 202.91916, + "y": 311.27904, + "index": 3, + "body": { + "#": 2737 + }, + "isInternal": false + }, + { + "x": 200.01316, + "y": 307.27904, + "index": 4, + "body": { + "#": 2737 + }, + "isInternal": false + }, + { + "x": 200.01316, + "y": 302.33504, + "index": 5, + "body": { + "#": 2737 + }, + "isInternal": false + }, + { + "x": 202.91916, + "y": 298.33504, + "index": 6, + "body": { + "#": 2737 + }, + "isInternal": false + }, + { + "x": 207.62116, + "y": 296.80704, + "index": 7, + "body": { + "#": 2737 + }, + "isInternal": false + }, + { + "x": 212.32316, + "y": 298.33504, + "index": 8, + "body": { + "#": 2737 + }, + "isInternal": false + }, + { + "x": 215.22916, + "y": 302.33504, + "index": 9, + "body": { + "#": 2737 + }, + "isInternal": false + }, + { + "x": 207.62116, + "y": 304.80704 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01174, + "y": 1.18532 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2757 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2759 + }, + "max": { + "#": 2760 + } + }, + { + "x": 200.01316, + "y": 296.80704 + }, + { + "x": 215.22916, + "y": 312.80704 + }, + { + "x": 207.60845, + "y": 303.11525 + }, + [ + { + "#": 2763 + }, + { + "#": 2764 + }, + { + "#": 2765 + }, + { + "#": 2766 + }, + { + "#": 2767 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,6,6", + "startCol": 4, + "endCol": 4, + "startRow": 6, + "endRow": 6 + }, + { + "id": 86, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2770 + }, + "angle": 0, + "vertices": { + "#": 2771 + }, + "position": { + "#": 2782 + }, + "force": { + "#": 2783 + }, + "torque": 0, + "positionImpulse": { + "#": 2784 + }, + "constraintImpulse": { + "#": 2785 + }, + "totalContacts": 0, + "speed": 1.98548, + "angularSpeed": 0, + "velocity": { + "#": 2786 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2787 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2788 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2790 + }, + "positionPrev": { + "#": 2793 + }, + "anglePrev": 0, + "axes": { + "#": 2794 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2769 + }, + "sleepCounter": 0, + "region": { + "#": 2800 + } + }, + [ + { + "#": 2769 + } + ], + [ + { + "#": 2772 + }, + { + "#": 2773 + }, + { + "#": 2774 + }, + { + "#": 2775 + }, + { + "#": 2776 + }, + { + "#": 2777 + }, + { + "#": 2778 + }, + { + "#": 2779 + }, + { + "#": 2780 + }, + { + "#": 2781 + } + ], + { + "x": 235.46649, + "y": 307.67441, + "index": 0, + "body": { + "#": 2769 + }, + "isInternal": false + }, + { + "x": 232.56049, + "y": 311.67441, + "index": 1, + "body": { + "#": 2769 + }, + "isInternal": false + }, + { + "x": 227.85849, + "y": 313.20241, + "index": 2, + "body": { + "#": 2769 + }, + "isInternal": false + }, + { + "x": 223.15649, + "y": 311.67441, + "index": 3, + "body": { + "#": 2769 + }, + "isInternal": false + }, + { + "x": 220.25049, + "y": 307.67441, + "index": 4, + "body": { + "#": 2769 + }, + "isInternal": false + }, + { + "x": 220.25049, + "y": 302.73041, + "index": 5, + "body": { + "#": 2769 + }, + "isInternal": false + }, + { + "x": 223.15649, + "y": 298.73041, + "index": 6, + "body": { + "#": 2769 + }, + "isInternal": false + }, + { + "x": 227.85849, + "y": 297.20241, + "index": 7, + "body": { + "#": 2769 + }, + "isInternal": false + }, + { + "x": 232.56049, + "y": 298.73041, + "index": 8, + "body": { + "#": 2769 + }, + "isInternal": false + }, + { + "x": 235.46649, + "y": 302.73041, + "index": 9, + "body": { + "#": 2769 + }, + "isInternal": false + }, + { + "x": 227.85849, + "y": 305.20241 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01993, + "y": 1.27888 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2789 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2791 + }, + "max": { + "#": 2792 + } + }, + { + "x": 220.25049, + "y": 297.20241 + }, + { + "x": 235.46649, + "y": 313.20241 + }, + { + "x": 227.83713, + "y": 303.36339 + }, + [ + { + "#": 2795 + }, + { + "#": 2796 + }, + { + "#": 2797 + }, + { + "#": 2798 + }, + { + "#": 2799 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,6,6", + "startCol": 4, + "endCol": 4, + "startRow": 6, + "endRow": 6 + }, + { + "id": 87, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2802 + }, + "angle": 0, + "vertices": { + "#": 2803 + }, + "position": { + "#": 2814 + }, + "force": { + "#": 2815 + }, + "torque": 0, + "positionImpulse": { + "#": 2816 + }, + "constraintImpulse": { + "#": 2817 + }, + "totalContacts": 0, + "speed": 1.5147, + "angularSpeed": 0, + "velocity": { + "#": 2818 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2819 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2820 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2822 + }, + "positionPrev": { + "#": 2825 + }, + "anglePrev": 0, + "axes": { + "#": 2826 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2801 + }, + "sleepCounter": 0, + "region": { + "#": 2832 + } + }, + [ + { + "#": 2801 + } + ], + [ + { + "#": 2804 + }, + { + "#": 2805 + }, + { + "#": 2806 + }, + { + "#": 2807 + }, + { + "#": 2808 + }, + { + "#": 2809 + }, + { + "#": 2810 + }, + { + "#": 2811 + }, + { + "#": 2812 + }, + { + "#": 2813 + } + ], + { + "x": 255.64425, + "y": 305.88796, + "index": 0, + "body": { + "#": 2801 + }, + "isInternal": false + }, + { + "x": 252.73825, + "y": 309.88796, + "index": 1, + "body": { + "#": 2801 + }, + "isInternal": false + }, + { + "x": 248.03625, + "y": 311.41596, + "index": 2, + "body": { + "#": 2801 + }, + "isInternal": false + }, + { + "x": 243.33425, + "y": 309.88796, + "index": 3, + "body": { + "#": 2801 + }, + "isInternal": false + }, + { + "x": 240.42825, + "y": 305.88796, + "index": 4, + "body": { + "#": 2801 + }, + "isInternal": false + }, + { + "x": 240.42825, + "y": 300.94396, + "index": 5, + "body": { + "#": 2801 + }, + "isInternal": false + }, + { + "x": 243.33425, + "y": 296.94396, + "index": 6, + "body": { + "#": 2801 + }, + "isInternal": false + }, + { + "x": 248.03625, + "y": 295.41596, + "index": 7, + "body": { + "#": 2801 + }, + "isInternal": false + }, + { + "x": 252.73825, + "y": 296.94396, + "index": 8, + "body": { + "#": 2801 + }, + "isInternal": false + }, + { + "x": 255.64425, + "y": 300.94396, + "index": 9, + "body": { + "#": 2801 + }, + "isInternal": false + }, + { + "x": 248.03625, + "y": 303.41596 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00089, + "y": 0.95778 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2821 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2823 + }, + "max": { + "#": 2824 + } + }, + { + "x": 240.42825, + "y": 295.41596 + }, + { + "x": 255.64425, + "y": 311.41596 + }, + { + "x": 248.03508, + "y": 302.08411 + }, + [ + { + "#": 2827 + }, + { + "#": 2828 + }, + { + "#": 2829 + }, + { + "#": 2830 + }, + { + "#": 2831 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,6,6", + "startCol": 5, + "endCol": 5, + "startRow": 6, + "endRow": 6 + }, + { + "id": 88, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2834 + }, + "angle": 0, + "vertices": { + "#": 2835 + }, + "position": { + "#": 2846 + }, + "force": { + "#": 2847 + }, + "torque": 0, + "positionImpulse": { + "#": 2848 + }, + "constraintImpulse": { + "#": 2849 + }, + "totalContacts": 0, + "speed": 1.30113, + "angularSpeed": 0, + "velocity": { + "#": 2850 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2851 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2852 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2854 + }, + "positionPrev": { + "#": 2857 + }, + "anglePrev": 0, + "axes": { + "#": 2858 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2833 + }, + "sleepCounter": 0, + "region": { + "#": 2864 + } + }, + [ + { + "#": 2833 + } + ], + [ + { + "#": 2836 + }, + { + "#": 2837 + }, + { + "#": 2838 + }, + { + "#": 2839 + }, + { + "#": 2840 + }, + { + "#": 2841 + }, + { + "#": 2842 + }, + { + "#": 2843 + }, + { + "#": 2844 + }, + { + "#": 2845 + } + ], + { + "x": 275.90139, + "y": 305.25035, + "index": 0, + "body": { + "#": 2833 + }, + "isInternal": false + }, + { + "x": 272.99539, + "y": 309.25035, + "index": 1, + "body": { + "#": 2833 + }, + "isInternal": false + }, + { + "x": 268.29339, + "y": 310.77835, + "index": 2, + "body": { + "#": 2833 + }, + "isInternal": false + }, + { + "x": 263.59139, + "y": 309.25035, + "index": 3, + "body": { + "#": 2833 + }, + "isInternal": false + }, + { + "x": 260.68539, + "y": 305.25035, + "index": 4, + "body": { + "#": 2833 + }, + "isInternal": false + }, + { + "x": 260.68539, + "y": 300.30635, + "index": 5, + "body": { + "#": 2833 + }, + "isInternal": false + }, + { + "x": 263.59139, + "y": 296.30635, + "index": 6, + "body": { + "#": 2833 + }, + "isInternal": false + }, + { + "x": 268.29339, + "y": 294.77835, + "index": 7, + "body": { + "#": 2833 + }, + "isInternal": false + }, + { + "x": 272.99539, + "y": 296.30635, + "index": 8, + "body": { + "#": 2833 + }, + "isInternal": false + }, + { + "x": 275.90139, + "y": 300.30635, + "index": 9, + "body": { + "#": 2833 + }, + "isInternal": false + }, + { + "x": 268.29339, + "y": 302.77835 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01602, + "y": 0.72593 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2853 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2855 + }, + "max": { + "#": 2856 + } + }, + { + "x": 260.68539, + "y": 294.77835 + }, + { + "x": 275.90139, + "y": 310.77835 + }, + { + "x": 268.2771, + "y": 301.86389 + }, + [ + { + "#": 2859 + }, + { + "#": 2860 + }, + { + "#": 2861 + }, + { + "#": 2862 + }, + { + "#": 2863 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,6,6", + "startCol": 5, + "endCol": 5, + "startRow": 6, + "endRow": 6 + }, + { + "id": 89, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2866 + }, + "angle": 0, + "vertices": { + "#": 2867 + }, + "position": { + "#": 2878 + }, + "force": { + "#": 2879 + }, + "torque": 0, + "positionImpulse": { + "#": 2880 + }, + "constraintImpulse": { + "#": 2881 + }, + "totalContacts": 0, + "speed": 0.99151, + "angularSpeed": 0, + "velocity": { + "#": 2882 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2883 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2884 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2886 + }, + "positionPrev": { + "#": 2889 + }, + "anglePrev": 0, + "axes": { + "#": 2890 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2865 + }, + "sleepCounter": 0, + "region": { + "#": 2896 + } + }, + [ + { + "#": 2865 + } + ], + [ + { + "#": 2868 + }, + { + "#": 2869 + }, + { + "#": 2870 + }, + { + "#": 2871 + }, + { + "#": 2872 + }, + { + "#": 2873 + }, + { + "#": 2874 + }, + { + "#": 2875 + }, + { + "#": 2876 + }, + { + "#": 2877 + } + ], + { + "x": 296.10978, + "y": 303.63173, + "index": 0, + "body": { + "#": 2865 + }, + "isInternal": false + }, + { + "x": 293.20378, + "y": 307.63173, + "index": 1, + "body": { + "#": 2865 + }, + "isInternal": false + }, + { + "x": 288.50178, + "y": 309.15973, + "index": 2, + "body": { + "#": 2865 + }, + "isInternal": false + }, + { + "x": 283.79978, + "y": 307.63173, + "index": 3, + "body": { + "#": 2865 + }, + "isInternal": false + }, + { + "x": 280.89378, + "y": 303.63173, + "index": 4, + "body": { + "#": 2865 + }, + "isInternal": false + }, + { + "x": 280.89378, + "y": 298.68773, + "index": 5, + "body": { + "#": 2865 + }, + "isInternal": false + }, + { + "x": 283.79978, + "y": 294.68773, + "index": 6, + "body": { + "#": 2865 + }, + "isInternal": false + }, + { + "x": 288.50178, + "y": 293.15973, + "index": 7, + "body": { + "#": 2865 + }, + "isInternal": false + }, + { + "x": 293.20378, + "y": 294.68773, + "index": 8, + "body": { + "#": 2865 + }, + "isInternal": false + }, + { + "x": 296.10978, + "y": 298.68773, + "index": 9, + "body": { + "#": 2865 + }, + "isInternal": false + }, + { + "x": 288.50178, + "y": 301.15973 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02411, + "y": 0.57798 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2885 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2887 + }, + "max": { + "#": 2888 + } + }, + { + "x": 280.89378, + "y": 293.15973 + }, + { + "x": 296.10978, + "y": 309.15973 + }, + { + "x": 288.47724, + "y": 300.448 + }, + [ + { + "#": 2891 + }, + { + "#": 2892 + }, + { + "#": 2893 + }, + { + "#": 2894 + }, + { + "#": 2895 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,6,6", + "startCol": 5, + "endCol": 6, + "startRow": 6, + "endRow": 6 + }, + { + "id": 90, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2898 + }, + "angle": 0, + "vertices": { + "#": 2899 + }, + "position": { + "#": 2910 + }, + "force": { + "#": 2911 + }, + "torque": 0, + "positionImpulse": { + "#": 2912 + }, + "constraintImpulse": { + "#": 2913 + }, + "totalContacts": 0, + "speed": 0.49544, + "angularSpeed": 0, + "velocity": { + "#": 2914 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2915 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2916 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2918 + }, + "positionPrev": { + "#": 2921 + }, + "anglePrev": 0, + "axes": { + "#": 2922 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2897 + }, + "sleepCounter": 0, + "region": { + "#": 2928 + } + }, + [ + { + "#": 2897 + } + ], + [ + { + "#": 2900 + }, + { + "#": 2901 + }, + { + "#": 2902 + }, + { + "#": 2903 + }, + { + "#": 2904 + }, + { + "#": 2905 + }, + { + "#": 2906 + }, + { + "#": 2907 + }, + { + "#": 2908 + }, + { + "#": 2909 + } + ], + { + "x": 316.34746, + "y": 301.98532, + "index": 0, + "body": { + "#": 2897 + }, + "isInternal": false + }, + { + "x": 313.44146, + "y": 305.98532, + "index": 1, + "body": { + "#": 2897 + }, + "isInternal": false + }, + { + "x": 308.73946, + "y": 307.51332, + "index": 2, + "body": { + "#": 2897 + }, + "isInternal": false + }, + { + "x": 304.03746, + "y": 305.98532, + "index": 3, + "body": { + "#": 2897 + }, + "isInternal": false + }, + { + "x": 301.13146, + "y": 301.98532, + "index": 4, + "body": { + "#": 2897 + }, + "isInternal": false + }, + { + "x": 301.13146, + "y": 297.04132, + "index": 5, + "body": { + "#": 2897 + }, + "isInternal": false + }, + { + "x": 304.03746, + "y": 293.04132, + "index": 6, + "body": { + "#": 2897 + }, + "isInternal": false + }, + { + "x": 308.73946, + "y": 291.51332, + "index": 7, + "body": { + "#": 2897 + }, + "isInternal": false + }, + { + "x": 313.44146, + "y": 293.04132, + "index": 8, + "body": { + "#": 2897 + }, + "isInternal": false + }, + { + "x": 316.34746, + "y": 297.04132, + "index": 9, + "body": { + "#": 2897 + }, + "isInternal": false + }, + { + "x": 308.73946, + "y": 299.51332 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02559, + "y": 0.25337 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2917 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2919 + }, + "max": { + "#": 2920 + } + }, + { + "x": 301.13146, + "y": 291.51332 + }, + { + "x": 316.34746, + "y": 307.51332 + }, + { + "x": 308.71396, + "y": 299.29038 + }, + [ + { + "#": 2923 + }, + { + "#": 2924 + }, + { + "#": 2925 + }, + { + "#": 2926 + }, + { + "#": 2927 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,6,6,6", + "startCol": 6, + "endCol": 6, + "startRow": 6, + "endRow": 6 + }, + { + "id": 91, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2930 + }, + "angle": 0, + "vertices": { + "#": 2931 + }, + "position": { + "#": 2942 + }, + "force": { + "#": 2943 + }, + "torque": 0, + "positionImpulse": { + "#": 2944 + }, + "constraintImpulse": { + "#": 2945 + }, + "totalContacts": 0, + "speed": 1.24673, + "angularSpeed": 0, + "velocity": { + "#": 2946 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2947 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2948 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2950 + }, + "positionPrev": { + "#": 2953 + }, + "anglePrev": 0, + "axes": { + "#": 2954 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2929 + }, + "sleepCounter": 0, + "region": { + "#": 2960 + } + }, + [ + { + "#": 2929 + } + ], + [ + { + "#": 2932 + }, + { + "#": 2933 + }, + { + "#": 2934 + }, + { + "#": 2935 + }, + { + "#": 2936 + }, + { + "#": 2937 + }, + { + "#": 2938 + }, + { + "#": 2939 + }, + { + "#": 2940 + }, + { + "#": 2941 + } + ], + { + "x": 336.43902, + "y": 304.98665, + "index": 0, + "body": { + "#": 2929 + }, + "isInternal": false + }, + { + "x": 333.53302, + "y": 308.98665, + "index": 1, + "body": { + "#": 2929 + }, + "isInternal": false + }, + { + "x": 328.83102, + "y": 310.51465, + "index": 2, + "body": { + "#": 2929 + }, + "isInternal": false + }, + { + "x": 324.12902, + "y": 308.98665, + "index": 3, + "body": { + "#": 2929 + }, + "isInternal": false + }, + { + "x": 321.22302, + "y": 304.98665, + "index": 4, + "body": { + "#": 2929 + }, + "isInternal": false + }, + { + "x": 321.22302, + "y": 300.04265, + "index": 5, + "body": { + "#": 2929 + }, + "isInternal": false + }, + { + "x": 324.12902, + "y": 296.04265, + "index": 6, + "body": { + "#": 2929 + }, + "isInternal": false + }, + { + "x": 328.83102, + "y": 294.51465, + "index": 7, + "body": { + "#": 2929 + }, + "isInternal": false + }, + { + "x": 333.53302, + "y": 296.04265, + "index": 8, + "body": { + "#": 2929 + }, + "isInternal": false + }, + { + "x": 336.43902, + "y": 300.04265, + "index": 9, + "body": { + "#": 2929 + }, + "isInternal": false + }, + { + "x": 328.83102, + "y": 302.51465 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.03421, + "y": 0.73147 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2949 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2951 + }, + "max": { + "#": 2952 + } + }, + { + "x": 321.22302, + "y": 294.51465 + }, + { + "x": 336.43902, + "y": 310.51465 + }, + { + "x": 328.866, + "y": 301.549 + }, + [ + { + "#": 2955 + }, + { + "#": 2956 + }, + { + "#": 2957 + }, + { + "#": 2958 + }, + { + "#": 2959 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,6,6", + "startCol": 6, + "endCol": 7, + "startRow": 6, + "endRow": 6 + }, + { + "id": 92, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2962 + }, + "angle": 0, + "vertices": { + "#": 2963 + }, + "position": { + "#": 2974 + }, + "force": { + "#": 2975 + }, + "torque": 0, + "positionImpulse": { + "#": 2976 + }, + "constraintImpulse": { + "#": 2977 + }, + "totalContacts": 0, + "speed": 1.31233, + "angularSpeed": 0, + "velocity": { + "#": 2978 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2979 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2980 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 2982 + }, + "positionPrev": { + "#": 2985 + }, + "anglePrev": 0, + "axes": { + "#": 2986 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2961 + }, + "sleepCounter": 0, + "region": { + "#": 2992 + } + }, + [ + { + "#": 2961 + } + ], + [ + { + "#": 2964 + }, + { + "#": 2965 + }, + { + "#": 2966 + }, + { + "#": 2967 + }, + { + "#": 2968 + }, + { + "#": 2969 + }, + { + "#": 2970 + }, + { + "#": 2971 + }, + { + "#": 2972 + }, + { + "#": 2973 + } + ], + { + "x": 356.73538, + "y": 305.20806, + "index": 0, + "body": { + "#": 2961 + }, + "isInternal": false + }, + { + "x": 353.82938, + "y": 309.20806, + "index": 1, + "body": { + "#": 2961 + }, + "isInternal": false + }, + { + "x": 349.12738, + "y": 310.73606, + "index": 2, + "body": { + "#": 2961 + }, + "isInternal": false + }, + { + "x": 344.42538, + "y": 309.20806, + "index": 3, + "body": { + "#": 2961 + }, + "isInternal": false + }, + { + "x": 341.51938, + "y": 305.20806, + "index": 4, + "body": { + "#": 2961 + }, + "isInternal": false + }, + { + "x": 341.51938, + "y": 300.26406, + "index": 5, + "body": { + "#": 2961 + }, + "isInternal": false + }, + { + "x": 344.42538, + "y": 296.26406, + "index": 6, + "body": { + "#": 2961 + }, + "isInternal": false + }, + { + "x": 349.12738, + "y": 294.73606, + "index": 7, + "body": { + "#": 2961 + }, + "isInternal": false + }, + { + "x": 353.82938, + "y": 296.26406, + "index": 8, + "body": { + "#": 2961 + }, + "isInternal": false + }, + { + "x": 356.73538, + "y": 300.26406, + "index": 9, + "body": { + "#": 2961 + }, + "isInternal": false + }, + { + "x": 349.12738, + "y": 302.73606 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.0002, + "y": 0.82561 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 2981 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2983 + }, + "max": { + "#": 2984 + } + }, + { + "x": 341.51938, + "y": 294.73606 + }, + { + "x": 356.73538, + "y": 310.73606 + }, + { + "x": 349.12739, + "y": 301.60155 + }, + [ + { + "#": 2987 + }, + { + "#": 2988 + }, + { + "#": 2989 + }, + { + "#": 2990 + }, + { + "#": 2991 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,6,6", + "startCol": 7, + "endCol": 7, + "startRow": 6, + "endRow": 6 + }, + { + "id": 93, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2994 + }, + "angle": 0, + "vertices": { + "#": 2995 + }, + "position": { + "#": 3006 + }, + "force": { + "#": 3007 + }, + "torque": 0, + "positionImpulse": { + "#": 3008 + }, + "constraintImpulse": { + "#": 3009 + }, + "totalContacts": 0, + "speed": 1.94977, + "angularSpeed": 0, + "velocity": { + "#": 3010 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3011 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3012 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3014 + }, + "positionPrev": { + "#": 3017 + }, + "anglePrev": 0, + "axes": { + "#": 3018 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 2993 + }, + "sleepCounter": 0, + "region": { + "#": 3024 + } + }, + [ + { + "#": 2993 + } + ], + [ + { + "#": 2996 + }, + { + "#": 2997 + }, + { + "#": 2998 + }, + { + "#": 2999 + }, + { + "#": 3000 + }, + { + "#": 3001 + }, + { + "#": 3002 + }, + { + "#": 3003 + }, + { + "#": 3004 + }, + { + "#": 3005 + } + ], + { + "x": 376.88031, + "y": 307.55101, + "index": 0, + "body": { + "#": 2993 + }, + "isInternal": false + }, + { + "x": 373.97431, + "y": 311.55101, + "index": 1, + "body": { + "#": 2993 + }, + "isInternal": false + }, + { + "x": 369.27231, + "y": 313.07901, + "index": 2, + "body": { + "#": 2993 + }, + "isInternal": false + }, + { + "x": 364.57031, + "y": 311.55101, + "index": 3, + "body": { + "#": 2993 + }, + "isInternal": false + }, + { + "x": 361.66431, + "y": 307.55101, + "index": 4, + "body": { + "#": 2993 + }, + "isInternal": false + }, + { + "x": 361.66431, + "y": 302.60701, + "index": 5, + "body": { + "#": 2993 + }, + "isInternal": false + }, + { + "x": 364.57031, + "y": 298.60701, + "index": 6, + "body": { + "#": 2993 + }, + "isInternal": false + }, + { + "x": 369.27231, + "y": 297.07901, + "index": 7, + "body": { + "#": 2993 + }, + "isInternal": false + }, + { + "x": 373.97431, + "y": 298.60701, + "index": 8, + "body": { + "#": 2993 + }, + "isInternal": false + }, + { + "x": 376.88031, + "y": 302.60701, + "index": 9, + "body": { + "#": 2993 + }, + "isInternal": false + }, + { + "x": 369.27231, + "y": 305.07901 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.03734, + "y": 1.23977 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3013 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3015 + }, + "max": { + "#": 3016 + } + }, + { + "x": 361.66431, + "y": 297.07901 + }, + { + "x": 376.88031, + "y": 313.07901 + }, + { + "x": 369.31169, + "y": 303.309 + }, + [ + { + "#": 3019 + }, + { + "#": 3020 + }, + { + "#": 3021 + }, + { + "#": 3022 + }, + { + "#": 3023 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,6,6", + "startCol": 7, + "endCol": 7, + "startRow": 6, + "endRow": 6 + }, + { + "id": 94, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3026 + }, + "angle": 0, + "vertices": { + "#": 3027 + }, + "position": { + "#": 3038 + }, + "force": { + "#": 3039 + }, + "torque": 0, + "positionImpulse": { + "#": 3040 + }, + "constraintImpulse": { + "#": 3041 + }, + "totalContacts": 0, + "speed": 1.83301, + "angularSpeed": 0, + "velocity": { + "#": 3042 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3043 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3044 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3046 + }, + "positionPrev": { + "#": 3049 + }, + "anglePrev": 0, + "axes": { + "#": 3050 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3025 + }, + "sleepCounter": 0, + "region": { + "#": 3056 + } + }, + [ + { + "#": 3025 + } + ], + [ + { + "#": 3028 + }, + { + "#": 3029 + }, + { + "#": 3030 + }, + { + "#": 3031 + }, + { + "#": 3032 + }, + { + "#": 3033 + }, + { + "#": 3034 + }, + { + "#": 3035 + }, + { + "#": 3036 + }, + { + "#": 3037 + } + ], + { + "x": 397.13193, + "y": 307.17112, + "index": 0, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 394.22593, + "y": 311.17112, + "index": 1, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 389.52393, + "y": 312.69912, + "index": 2, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 384.82193, + "y": 311.17112, + "index": 3, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 381.91593, + "y": 307.17112, + "index": 4, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 381.91593, + "y": 302.22712, + "index": 5, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 384.82193, + "y": 298.22712, + "index": 6, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 389.52393, + "y": 296.69912, + "index": 7, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 394.22593, + "y": 298.22712, + "index": 8, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 397.13193, + "y": 302.22712, + "index": 9, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 389.52393, + "y": 304.69912 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01666, + "y": 1.14945 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3045 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3047 + }, + "max": { + "#": 3048 + } + }, + { + "x": 381.91593, + "y": 296.69912 + }, + { + "x": 397.13193, + "y": 312.69912 + }, + { + "x": 389.54154, + "y": 303.07904 + }, + [ + { + "#": 3051 + }, + { + "#": 3052 + }, + { + "#": 3053 + }, + { + "#": 3054 + }, + { + "#": 3055 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,6,6", + "startCol": 7, + "endCol": 8, + "startRow": 6, + "endRow": 6 + }, + { + "id": 95, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3058 + }, + "angle": 0, + "vertices": { + "#": 3059 + }, + "position": { + "#": 3070 + }, + "force": { + "#": 3071 + }, + "torque": 0, + "positionImpulse": { + "#": 3072 + }, + "constraintImpulse": { + "#": 3073 + }, + "totalContacts": 0, + "speed": 1.81373, + "angularSpeed": 0, + "velocity": { + "#": 3074 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3075 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3076 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3078 + }, + "positionPrev": { + "#": 3081 + }, + "anglePrev": 0, + "axes": { + "#": 3082 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3057 + }, + "sleepCounter": 0, + "region": { + "#": 3088 + } + }, + [ + { + "#": 3057 + } + ], + [ + { + "#": 3060 + }, + { + "#": 3061 + }, + { + "#": 3062 + }, + { + "#": 3063 + }, + { + "#": 3064 + }, + { + "#": 3065 + }, + { + "#": 3066 + }, + { + "#": 3067 + }, + { + "#": 3068 + }, + { + "#": 3069 + } + ], + { + "x": 417.37551, + "y": 307.10371, + "index": 0, + "body": { + "#": 3057 + }, + "isInternal": false + }, + { + "x": 414.46951, + "y": 311.10371, + "index": 1, + "body": { + "#": 3057 + }, + "isInternal": false + }, + { + "x": 409.76751, + "y": 312.63171, + "index": 2, + "body": { + "#": 3057 + }, + "isInternal": false + }, + { + "x": 405.06551, + "y": 311.10371, + "index": 3, + "body": { + "#": 3057 + }, + "isInternal": false + }, + { + "x": 402.15951, + "y": 307.10371, + "index": 4, + "body": { + "#": 3057 + }, + "isInternal": false + }, + { + "x": 402.15951, + "y": 302.15971, + "index": 5, + "body": { + "#": 3057 + }, + "isInternal": false + }, + { + "x": 405.06551, + "y": 298.15971, + "index": 6, + "body": { + "#": 3057 + }, + "isInternal": false + }, + { + "x": 409.76751, + "y": 296.63171, + "index": 7, + "body": { + "#": 3057 + }, + "isInternal": false + }, + { + "x": 414.46951, + "y": 298.15971, + "index": 8, + "body": { + "#": 3057 + }, + "isInternal": false + }, + { + "x": 417.37551, + "y": 302.15971, + "index": 9, + "body": { + "#": 3057 + }, + "isInternal": false + }, + { + "x": 409.76751, + "y": 304.63171 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00051, + "y": 1.12855 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3077 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3079 + }, + "max": { + "#": 3080 + } + }, + { + "x": 402.15951, + "y": 296.63171 + }, + { + "x": 417.37551, + "y": 312.63171 + }, + { + "x": 409.76795, + "y": 303.05035 + }, + [ + { + "#": 3083 + }, + { + "#": 3084 + }, + { + "#": 3085 + }, + { + "#": 3086 + }, + { + "#": 3087 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,6,6", + "startCol": 8, + "endCol": 8, + "startRow": 6, + "endRow": 6 + }, + { + "id": 96, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3090 + }, + "angle": 0, + "vertices": { + "#": 3091 + }, + "position": { + "#": 3102 + }, + "force": { + "#": 3103 + }, + "torque": 0, + "positionImpulse": { + "#": 3104 + }, + "constraintImpulse": { + "#": 3105 + }, + "totalContacts": 0, + "speed": 1.80418, + "angularSpeed": 0, + "velocity": { + "#": 3106 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3107 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3108 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3110 + }, + "positionPrev": { + "#": 3113 + }, + "anglePrev": 0, + "axes": { + "#": 3114 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3089 + }, + "sleepCounter": 0, + "region": { + "#": 3120 + } + }, + [ + { + "#": 3089 + } + ], + [ + { + "#": 3092 + }, + { + "#": 3093 + }, + { + "#": 3094 + }, + { + "#": 3095 + }, + { + "#": 3096 + }, + { + "#": 3097 + }, + { + "#": 3098 + }, + { + "#": 3099 + }, + { + "#": 3100 + }, + { + "#": 3101 + } + ], + { + "x": 437.62625, + "y": 307.06674, + "index": 0, + "body": { + "#": 3089 + }, + "isInternal": false + }, + { + "x": 434.72025, + "y": 311.06674, + "index": 1, + "body": { + "#": 3089 + }, + "isInternal": false + }, + { + "x": 430.01825, + "y": 312.59474, + "index": 2, + "body": { + "#": 3089 + }, + "isInternal": false + }, + { + "x": 425.31625, + "y": 311.06674, + "index": 3, + "body": { + "#": 3089 + }, + "isInternal": false + }, + { + "x": 422.41025, + "y": 307.06674, + "index": 4, + "body": { + "#": 3089 + }, + "isInternal": false + }, + { + "x": 422.41025, + "y": 302.12274, + "index": 5, + "body": { + "#": 3089 + }, + "isInternal": false + }, + { + "x": 425.31625, + "y": 298.12274, + "index": 6, + "body": { + "#": 3089 + }, + "isInternal": false + }, + { + "x": 430.01825, + "y": 296.59474, + "index": 7, + "body": { + "#": 3089 + }, + "isInternal": false + }, + { + "x": 434.72025, + "y": 298.12274, + "index": 8, + "body": { + "#": 3089 + }, + "isInternal": false + }, + { + "x": 437.62625, + "y": 302.12274, + "index": 9, + "body": { + "#": 3089 + }, + "isInternal": false + }, + { + "x": 430.01825, + "y": 304.59474 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02224, + "y": 1.1163 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3109 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3111 + }, + "max": { + "#": 3112 + } + }, + { + "x": 422.41025, + "y": 296.59474 + }, + { + "x": 437.62625, + "y": 312.59474 + }, + { + "x": 429.99467, + "y": 303.03764 + }, + [ + { + "#": 3115 + }, + { + "#": 3116 + }, + { + "#": 3117 + }, + { + "#": 3118 + }, + { + "#": 3119 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,6,6", + "startCol": 8, + "endCol": 9, + "startRow": 6, + "endRow": 6 + }, + { + "id": 97, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3122 + }, + "angle": 0, + "vertices": { + "#": 3123 + }, + "position": { + "#": 3134 + }, + "force": { + "#": 3135 + }, + "torque": 0, + "positionImpulse": { + "#": 3136 + }, + "constraintImpulse": { + "#": 3137 + }, + "totalContacts": 0, + "speed": 1.7113, + "angularSpeed": 0, + "velocity": { + "#": 3138 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3139 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3140 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3142 + }, + "positionPrev": { + "#": 3145 + }, + "anglePrev": 0, + "axes": { + "#": 3146 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3121 + }, + "sleepCounter": 0, + "region": { + "#": 3152 + } + }, + [ + { + "#": 3121 + } + ], + [ + { + "#": 3124 + }, + { + "#": 3125 + }, + { + "#": 3126 + }, + { + "#": 3127 + }, + { + "#": 3128 + }, + { + "#": 3129 + }, + { + "#": 3130 + }, + { + "#": 3131 + }, + { + "#": 3132 + }, + { + "#": 3133 + } + ], + { + "x": 457.90629, + "y": 306.74372, + "index": 0, + "body": { + "#": 3121 + }, + "isInternal": false + }, + { + "x": 455.00029, + "y": 310.74372, + "index": 1, + "body": { + "#": 3121 + }, + "isInternal": false + }, + { + "x": 450.29829, + "y": 312.27172, + "index": 2, + "body": { + "#": 3121 + }, + "isInternal": false + }, + { + "x": 445.59629, + "y": 310.74372, + "index": 3, + "body": { + "#": 3121 + }, + "isInternal": false + }, + { + "x": 442.69029, + "y": 306.74372, + "index": 4, + "body": { + "#": 3121 + }, + "isInternal": false + }, + { + "x": 442.69029, + "y": 301.79972, + "index": 5, + "body": { + "#": 3121 + }, + "isInternal": false + }, + { + "x": 445.59629, + "y": 297.79972, + "index": 6, + "body": { + "#": 3121 + }, + "isInternal": false + }, + { + "x": 450.29829, + "y": 296.27172, + "index": 7, + "body": { + "#": 3121 + }, + "isInternal": false + }, + { + "x": 455.00029, + "y": 297.79972, + "index": 8, + "body": { + "#": 3121 + }, + "isInternal": false + }, + { + "x": 457.90629, + "y": 301.79972, + "index": 9, + "body": { + "#": 3121 + }, + "isInternal": false + }, + { + "x": 450.29829, + "y": 304.27172 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.05689, + "y": 1.0217 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3141 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3143 + }, + "max": { + "#": 3144 + } + }, + { + "x": 442.69029, + "y": 296.27172 + }, + { + "x": 457.90629, + "y": 312.27172 + }, + { + "x": 450.23898, + "y": 302.87882 + }, + [ + { + "#": 3147 + }, + { + "#": 3148 + }, + { + "#": 3149 + }, + { + "#": 3150 + }, + { + "#": 3151 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,6,6", + "startCol": 9, + "endCol": 9, + "startRow": 6, + "endRow": 6 + }, + { + "id": 98, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3154 + }, + "angle": 0, + "vertices": { + "#": 3155 + }, + "position": { + "#": 3166 + }, + "force": { + "#": 3167 + }, + "torque": 0, + "positionImpulse": { + "#": 3168 + }, + "constraintImpulse": { + "#": 3169 + }, + "totalContacts": 0, + "speed": 0.77142, + "angularSpeed": 0, + "velocity": { + "#": 3170 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3171 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3172 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3174 + }, + "positionPrev": { + "#": 3177 + }, + "anglePrev": 0, + "axes": { + "#": 3178 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3153 + }, + "sleepCounter": 0, + "region": { + "#": 3184 + } + }, + [ + { + "#": 3153 + } + ], + [ + { + "#": 3156 + }, + { + "#": 3157 + }, + { + "#": 3158 + }, + { + "#": 3159 + }, + { + "#": 3160 + }, + { + "#": 3161 + }, + { + "#": 3162 + }, + { + "#": 3163 + }, + { + "#": 3164 + }, + { + "#": 3165 + } + ], + { + "x": 477.94491, + "y": 303.39258, + "index": 0, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 475.03891, + "y": 307.39258, + "index": 1, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 470.33691, + "y": 308.92058, + "index": 2, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 465.63491, + "y": 307.39258, + "index": 3, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 462.72891, + "y": 303.39258, + "index": 4, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 462.72891, + "y": 298.44858, + "index": 5, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 465.63491, + "y": 294.44858, + "index": 6, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 470.33691, + "y": 292.92058, + "index": 7, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 475.03891, + "y": 294.44858, + "index": 8, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 477.94491, + "y": 298.44858, + "index": 9, + "body": { + "#": 3153 + }, + "isInternal": false + }, + { + "x": 470.33691, + "y": 300.92058 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.04846, + "y": 0.35145 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3173 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3175 + }, + "max": { + "#": 3176 + } + }, + { + "x": 462.72891, + "y": 292.92058 + }, + { + "x": 477.94491, + "y": 308.92058 + }, + { + "x": 470.38517, + "y": 300.60591 + }, + [ + { + "#": 3179 + }, + { + "#": 3180 + }, + { + "#": 3181 + }, + { + "#": 3182 + }, + { + "#": 3183 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,6,6", + "startCol": 9, + "endCol": 9, + "startRow": 6, + "endRow": 6 + }, + { + "id": 99, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3186 + }, + "angle": 0, + "vertices": { + "#": 3187 + }, + "position": { + "#": 3198 + }, + "force": { + "#": 3199 + }, + "torque": 0, + "positionImpulse": { + "#": 3200 + }, + "constraintImpulse": { + "#": 3201 + }, + "totalContacts": 0, + "speed": 0.69727, + "angularSpeed": 0, + "velocity": { + "#": 3202 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3203 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3204 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3206 + }, + "positionPrev": { + "#": 3209 + }, + "anglePrev": 0, + "axes": { + "#": 3210 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3185 + }, + "sleepCounter": 0, + "region": { + "#": 3216 + } + }, + [ + { + "#": 3185 + } + ], + [ + { + "#": 3188 + }, + { + "#": 3189 + }, + { + "#": 3190 + }, + { + "#": 3191 + }, + { + "#": 3192 + }, + { + "#": 3193 + }, + { + "#": 3194 + }, + { + "#": 3195 + }, + { + "#": 3196 + }, + { + "#": 3197 + } + ], + { + "x": 498.21131, + "y": 303.11939, + "index": 0, + "body": { + "#": 3185 + }, + "isInternal": false + }, + { + "x": 495.30531, + "y": 307.11939, + "index": 1, + "body": { + "#": 3185 + }, + "isInternal": false + }, + { + "x": 490.60331, + "y": 308.64739, + "index": 2, + "body": { + "#": 3185 + }, + "isInternal": false + }, + { + "x": 485.90131, + "y": 307.11939, + "index": 3, + "body": { + "#": 3185 + }, + "isInternal": false + }, + { + "x": 482.99531, + "y": 303.11939, + "index": 4, + "body": { + "#": 3185 + }, + "isInternal": false + }, + { + "x": 482.99531, + "y": 298.17539, + "index": 5, + "body": { + "#": 3185 + }, + "isInternal": false + }, + { + "x": 485.90131, + "y": 294.17539, + "index": 6, + "body": { + "#": 3185 + }, + "isInternal": false + }, + { + "x": 490.60331, + "y": 292.64739, + "index": 7, + "body": { + "#": 3185 + }, + "isInternal": false + }, + { + "x": 495.30531, + "y": 294.17539, + "index": 8, + "body": { + "#": 3185 + }, + "isInternal": false + }, + { + "x": 498.21131, + "y": 298.17539, + "index": 9, + "body": { + "#": 3185 + }, + "isInternal": false + }, + { + "x": 490.60331, + "y": 300.64739 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01663, + "y": 0.27082 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3205 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3207 + }, + "max": { + "#": 3208 + } + }, + { + "x": 482.99531, + "y": 292.64739 + }, + { + "x": 498.21131, + "y": 308.64739 + }, + { + "x": 490.61974, + "y": 300.47469 + }, + [ + { + "#": 3211 + }, + { + "#": 3212 + }, + { + "#": 3213 + }, + { + "#": 3214 + }, + { + "#": 3215 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,6,6", + "startCol": 10, + "endCol": 10, + "startRow": 6, + "endRow": 6 + }, + { + "id": 100, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3218 + }, + "angle": 0, + "vertices": { + "#": 3219 + }, + "position": { + "#": 3230 + }, + "force": { + "#": 3231 + }, + "torque": 0, + "positionImpulse": { + "#": 3232 + }, + "constraintImpulse": { + "#": 3233 + }, + "totalContacts": 0, + "speed": 0.69706, + "angularSpeed": 0, + "velocity": { + "#": 3234 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3235 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3236 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3238 + }, + "positionPrev": { + "#": 3241 + }, + "anglePrev": 0, + "axes": { + "#": 3242 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3217 + }, + "sleepCounter": 0, + "region": { + "#": 3248 + } + }, + [ + { + "#": 3217 + } + ], + [ + { + "#": 3220 + }, + { + "#": 3221 + }, + { + "#": 3222 + }, + { + "#": 3223 + }, + { + "#": 3224 + }, + { + "#": 3225 + }, + { + "#": 3226 + }, + { + "#": 3227 + }, + { + "#": 3228 + }, + { + "#": 3229 + } + ], + { + "x": 518.47439, + "y": 303.1188, + "index": 0, + "body": { + "#": 3217 + }, + "isInternal": false + }, + { + "x": 515.56839, + "y": 307.1188, + "index": 1, + "body": { + "#": 3217 + }, + "isInternal": false + }, + { + "x": 510.86639, + "y": 308.6468, + "index": 2, + "body": { + "#": 3217 + }, + "isInternal": false + }, + { + "x": 506.16439, + "y": 307.1188, + "index": 3, + "body": { + "#": 3217 + }, + "isInternal": false + }, + { + "x": 503.25839, + "y": 303.1188, + "index": 4, + "body": { + "#": 3217 + }, + "isInternal": false + }, + { + "x": 503.25839, + "y": 298.1748, + "index": 5, + "body": { + "#": 3217 + }, + "isInternal": false + }, + { + "x": 506.16439, + "y": 294.1748, + "index": 6, + "body": { + "#": 3217 + }, + "isInternal": false + }, + { + "x": 510.86639, + "y": 292.6468, + "index": 7, + "body": { + "#": 3217 + }, + "isInternal": false + }, + { + "x": 515.56839, + "y": 294.1748, + "index": 8, + "body": { + "#": 3217 + }, + "isInternal": false + }, + { + "x": 518.47439, + "y": 298.1748, + "index": 9, + "body": { + "#": 3217 + }, + "isInternal": false + }, + { + "x": 510.86639, + "y": 300.6468 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01273, + "y": 0.27071 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3237 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3239 + }, + "max": { + "#": 3240 + } + }, + { + "x": 503.25839, + "y": 292.6468 + }, + { + "x": 518.47439, + "y": 308.6468 + }, + { + "x": 510.85384, + "y": 300.4744 + }, + [ + { + "#": 3243 + }, + { + "#": 3244 + }, + { + "#": 3245 + }, + { + "#": 3246 + }, + { + "#": 3247 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,6,6", + "startCol": 10, + "endCol": 10, + "startRow": 6, + "endRow": 6 + }, + { + "id": 101, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3250 + }, + "angle": 0, + "vertices": { + "#": 3251 + }, + "position": { + "#": 3262 + }, + "force": { + "#": 3263 + }, + "torque": 0, + "positionImpulse": { + "#": 3264 + }, + "constraintImpulse": { + "#": 3265 + }, + "totalContacts": 0, + "speed": 0.77121, + "angularSpeed": 0, + "velocity": { + "#": 3266 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3267 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3268 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3270 + }, + "positionPrev": { + "#": 3273 + }, + "anglePrev": 0, + "axes": { + "#": 3274 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3249 + }, + "sleepCounter": 0, + "region": { + "#": 3280 + } + }, + [ + { + "#": 3249 + } + ], + [ + { + "#": 3252 + }, + { + "#": 3253 + }, + { + "#": 3254 + }, + { + "#": 3255 + }, + { + "#": 3256 + }, + { + "#": 3257 + }, + { + "#": 3258 + }, + { + "#": 3259 + }, + { + "#": 3260 + }, + { + "#": 3261 + } + ], + { + "x": 538.75979, + "y": 303.38947, + "index": 0, + "body": { + "#": 3249 + }, + "isInternal": false + }, + { + "x": 535.85379, + "y": 307.38947, + "index": 1, + "body": { + "#": 3249 + }, + "isInternal": false + }, + { + "x": 531.15179, + "y": 308.91747, + "index": 2, + "body": { + "#": 3249 + }, + "isInternal": false + }, + { + "x": 526.44979, + "y": 307.38947, + "index": 3, + "body": { + "#": 3249 + }, + "isInternal": false + }, + { + "x": 523.54379, + "y": 303.38947, + "index": 4, + "body": { + "#": 3249 + }, + "isInternal": false + }, + { + "x": 523.54379, + "y": 298.44547, + "index": 5, + "body": { + "#": 3249 + }, + "isInternal": false + }, + { + "x": 526.44979, + "y": 294.44547, + "index": 6, + "body": { + "#": 3249 + }, + "isInternal": false + }, + { + "x": 531.15179, + "y": 292.91747, + "index": 7, + "body": { + "#": 3249 + }, + "isInternal": false + }, + { + "x": 535.85379, + "y": 294.44547, + "index": 8, + "body": { + "#": 3249 + }, + "isInternal": false + }, + { + "x": 538.75979, + "y": 298.44547, + "index": 9, + "body": { + "#": 3249 + }, + "isInternal": false + }, + { + "x": 531.15179, + "y": 300.91747 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.05182, + "y": 0.35032 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3269 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3271 + }, + "max": { + "#": 3272 + } + }, + { + "x": 523.54379, + "y": 292.91747 + }, + { + "x": 538.75979, + "y": 308.91747 + }, + { + "x": 531.1002, + "y": 300.6059 + }, + [ + { + "#": 3275 + }, + { + "#": 3276 + }, + { + "#": 3277 + }, + { + "#": 3278 + }, + { + "#": 3279 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,6,6", + "startCol": 10, + "endCol": 11, + "startRow": 6, + "endRow": 6 + }, + { + "id": 102, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3282 + }, + "angle": 0, + "vertices": { + "#": 3283 + }, + "position": { + "#": 3294 + }, + "force": { + "#": 3295 + }, + "torque": 0, + "positionImpulse": { + "#": 3296 + }, + "constraintImpulse": { + "#": 3297 + }, + "totalContacts": 0, + "speed": 1.70963, + "angularSpeed": 0, + "velocity": { + "#": 3298 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3299 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3300 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3302 + }, + "positionPrev": { + "#": 3305 + }, + "anglePrev": 0, + "axes": { + "#": 3306 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3281 + }, + "sleepCounter": 0, + "region": { + "#": 3312 + } + }, + [ + { + "#": 3281 + } + ], + [ + { + "#": 3284 + }, + { + "#": 3285 + }, + { + "#": 3286 + }, + { + "#": 3287 + }, + { + "#": 3288 + }, + { + "#": 3289 + }, + { + "#": 3290 + }, + { + "#": 3291 + }, + { + "#": 3292 + }, + { + "#": 3293 + } + ], + { + "x": 558.80045, + "y": 306.73701, + "index": 0, + "body": { + "#": 3281 + }, + "isInternal": false + }, + { + "x": 555.89445, + "y": 310.73701, + "index": 1, + "body": { + "#": 3281 + }, + "isInternal": false + }, + { + "x": 551.19245, + "y": 312.26501, + "index": 2, + "body": { + "#": 3281 + }, + "isInternal": false + }, + { + "x": 546.49045, + "y": 310.73701, + "index": 3, + "body": { + "#": 3281 + }, + "isInternal": false + }, + { + "x": 543.58445, + "y": 306.73701, + "index": 4, + "body": { + "#": 3281 + }, + "isInternal": false + }, + { + "x": 543.58445, + "y": 301.79301, + "index": 5, + "body": { + "#": 3281 + }, + "isInternal": false + }, + { + "x": 546.49045, + "y": 297.79301, + "index": 6, + "body": { + "#": 3281 + }, + "isInternal": false + }, + { + "x": 551.19245, + "y": 296.26501, + "index": 7, + "body": { + "#": 3281 + }, + "isInternal": false + }, + { + "x": 555.89445, + "y": 297.79301, + "index": 8, + "body": { + "#": 3281 + }, + "isInternal": false + }, + { + "x": 558.80045, + "y": 301.79301, + "index": 9, + "body": { + "#": 3281 + }, + "isInternal": false + }, + { + "x": 551.19245, + "y": 304.26501 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.05128, + "y": 1.01952 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3301 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3303 + }, + "max": { + "#": 3304 + } + }, + { + "x": 543.58445, + "y": 296.26501 + }, + { + "x": 558.80045, + "y": 312.26501 + }, + { + "x": 551.24604, + "y": 302.87658 + }, + [ + { + "#": 3307 + }, + { + "#": 3308 + }, + { + "#": 3309 + }, + { + "#": 3310 + }, + { + "#": 3311 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,11,6,6", + "startCol": 11, + "endCol": 11, + "startRow": 6, + "endRow": 6 + }, + { + "id": 103, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3314 + }, + "angle": 0, + "vertices": { + "#": 3315 + }, + "position": { + "#": 3326 + }, + "force": { + "#": 3327 + }, + "torque": 0, + "positionImpulse": { + "#": 3328 + }, + "constraintImpulse": { + "#": 3329 + }, + "totalContacts": 0, + "speed": 1.80241, + "angularSpeed": 0, + "velocity": { + "#": 3330 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3331 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3332 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3334 + }, + "positionPrev": { + "#": 3337 + }, + "anglePrev": 0, + "axes": { + "#": 3338 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3313 + }, + "sleepCounter": 0, + "region": { + "#": 3344 + } + }, + [ + { + "#": 3313 + } + ], + [ + { + "#": 3316 + }, + { + "#": 3317 + }, + { + "#": 3318 + }, + { + "#": 3319 + }, + { + "#": 3320 + }, + { + "#": 3321 + }, + { + "#": 3322 + }, + { + "#": 3323 + }, + { + "#": 3324 + }, + { + "#": 3325 + } + ], + { + "x": 579.06337, + "y": 307.05781, + "index": 0, + "body": { + "#": 3313 + }, + "isInternal": false + }, + { + "x": 576.15737, + "y": 311.05781, + "index": 1, + "body": { + "#": 3313 + }, + "isInternal": false + }, + { + "x": 571.45537, + "y": 312.58581, + "index": 2, + "body": { + "#": 3313 + }, + "isInternal": false + }, + { + "x": 566.75337, + "y": 311.05781, + "index": 3, + "body": { + "#": 3313 + }, + "isInternal": false + }, + { + "x": 563.84737, + "y": 307.05781, + "index": 4, + "body": { + "#": 3313 + }, + "isInternal": false + }, + { + "x": 563.84737, + "y": 302.11381, + "index": 5, + "body": { + "#": 3313 + }, + "isInternal": false + }, + { + "x": 566.75337, + "y": 298.11381, + "index": 6, + "body": { + "#": 3313 + }, + "isInternal": false + }, + { + "x": 571.45537, + "y": 296.58581, + "index": 7, + "body": { + "#": 3313 + }, + "isInternal": false + }, + { + "x": 576.15737, + "y": 298.11381, + "index": 8, + "body": { + "#": 3313 + }, + "isInternal": false + }, + { + "x": 579.06337, + "y": 302.11381, + "index": 9, + "body": { + "#": 3313 + }, + "isInternal": false + }, + { + "x": 571.45537, + "y": 304.58581 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.02441, + "y": 1.11328 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3333 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3335 + }, + "max": { + "#": 3336 + } + }, + { + "x": 563.84737, + "y": 296.58581 + }, + { + "x": 579.06337, + "y": 312.58581 + }, + { + "x": 571.4814, + "y": 303.03553 + }, + [ + { + "#": 3339 + }, + { + "#": 3340 + }, + { + "#": 3341 + }, + { + "#": 3342 + }, + { + "#": 3343 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,6,6", + "startCol": 11, + "endCol": 12, + "startRow": 6, + "endRow": 6 + }, + { + "id": 104, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3346 + }, + "angle": 0, + "vertices": { + "#": 3347 + }, + "position": { + "#": 3358 + }, + "force": { + "#": 3359 + }, + "torque": 0, + "positionImpulse": { + "#": 3360 + }, + "constraintImpulse": { + "#": 3361 + }, + "totalContacts": 0, + "speed": 1.80442, + "angularSpeed": 0, + "velocity": { + "#": 3362 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3363 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3364 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3366 + }, + "positionPrev": { + "#": 3369 + }, + "anglePrev": 0, + "axes": { + "#": 3370 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3345 + }, + "sleepCounter": 0, + "region": { + "#": 3376 + } + }, + [ + { + "#": 3345 + } + ], + [ + { + "#": 3348 + }, + { + "#": 3349 + }, + { + "#": 3350 + }, + { + "#": 3351 + }, + { + "#": 3352 + }, + { + "#": 3353 + }, + { + "#": 3354 + }, + { + "#": 3355 + }, + { + "#": 3356 + }, + { + "#": 3357 + } + ], + { + "x": 599.30198, + "y": 307.06635, + "index": 0, + "body": { + "#": 3345 + }, + "isInternal": false + }, + { + "x": 596.39598, + "y": 311.06635, + "index": 1, + "body": { + "#": 3345 + }, + "isInternal": false + }, + { + "x": 591.69398, + "y": 312.59435, + "index": 2, + "body": { + "#": 3345 + }, + "isInternal": false + }, + { + "x": 586.99198, + "y": 311.06635, + "index": 3, + "body": { + "#": 3345 + }, + "isInternal": false + }, + { + "x": 584.08598, + "y": 307.06635, + "index": 4, + "body": { + "#": 3345 + }, + "isInternal": false + }, + { + "x": 584.08598, + "y": 302.12235, + "index": 5, + "body": { + "#": 3345 + }, + "isInternal": false + }, + { + "x": 586.99198, + "y": 298.12235, + "index": 6, + "body": { + "#": 3345 + }, + "isInternal": false + }, + { + "x": 591.69398, + "y": 296.59435, + "index": 7, + "body": { + "#": 3345 + }, + "isInternal": false + }, + { + "x": 596.39598, + "y": 298.12235, + "index": 8, + "body": { + "#": 3345 + }, + "isInternal": false + }, + { + "x": 599.30198, + "y": 302.12235, + "index": 9, + "body": { + "#": 3345 + }, + "isInternal": false + }, + { + "x": 591.69398, + "y": 304.59435 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.0163, + "y": 1.11616 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3365 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3367 + }, + "max": { + "#": 3368 + } + }, + { + "x": 584.08598, + "y": 296.59435 + }, + { + "x": 599.30198, + "y": 312.59435 + }, + { + "x": 591.71145, + "y": 303.0384 + }, + [ + { + "#": 3371 + }, + { + "#": 3372 + }, + { + "#": 3373 + }, + { + "#": 3374 + }, + { + "#": 3375 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,6,6", + "startCol": 12, + "endCol": 12, + "startRow": 6, + "endRow": 6 + }, + { + "id": 105, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3378 + }, + "angle": 0, + "vertices": { + "#": 3379 + }, + "position": { + "#": 3390 + }, + "force": { + "#": 3391 + }, + "torque": 0, + "positionImpulse": { + "#": 3392 + }, + "constraintImpulse": { + "#": 3393 + }, + "totalContacts": 0, + "speed": 2.26548, + "angularSpeed": 0, + "velocity": { + "#": 3394 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3395 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3396 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3398 + }, + "positionPrev": { + "#": 3401 + }, + "anglePrev": 0, + "axes": { + "#": 3402 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3377 + }, + "sleepCounter": 0, + "region": { + "#": 3408 + } + }, + [ + { + "#": 3377 + } + ], + [ + { + "#": 3380 + }, + { + "#": 3381 + }, + { + "#": 3382 + }, + { + "#": 3383 + }, + { + "#": 3384 + }, + { + "#": 3385 + }, + { + "#": 3386 + }, + { + "#": 3387 + }, + { + "#": 3388 + }, + { + "#": 3389 + } + ], + { + "x": 215.27364, + "y": 330.25688, + "index": 0, + "body": { + "#": 3377 + }, + "isInternal": false + }, + { + "x": 212.36764, + "y": 334.25688, + "index": 1, + "body": { + "#": 3377 + }, + "isInternal": false + }, + { + "x": 207.66564, + "y": 335.78488, + "index": 2, + "body": { + "#": 3377 + }, + "isInternal": false + }, + { + "x": 202.96364, + "y": 334.25688, + "index": 3, + "body": { + "#": 3377 + }, + "isInternal": false + }, + { + "x": 200.05764, + "y": 330.25688, + "index": 4, + "body": { + "#": 3377 + }, + "isInternal": false + }, + { + "x": 200.05764, + "y": 325.31288, + "index": 5, + "body": { + "#": 3377 + }, + "isInternal": false + }, + { + "x": 202.96364, + "y": 321.31288, + "index": 6, + "body": { + "#": 3377 + }, + "isInternal": false + }, + { + "x": 207.66564, + "y": 319.78488, + "index": 7, + "body": { + "#": 3377 + }, + "isInternal": false + }, + { + "x": 212.36764, + "y": 321.31288, + "index": 8, + "body": { + "#": 3377 + }, + "isInternal": false + }, + { + "x": 215.27364, + "y": 325.31288, + "index": 9, + "body": { + "#": 3377 + }, + "isInternal": false + }, + { + "x": 207.66564, + "y": 327.78488 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.03742, + "y": 1.71477 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3397 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3399 + }, + "max": { + "#": 3400 + } + }, + { + "x": 200.05764, + "y": 319.78488 + }, + { + "x": 215.27364, + "y": 335.78488 + }, + { + "x": 207.62625, + "y": 325.61161 + }, + [ + { + "#": 3403 + }, + { + "#": 3404 + }, + { + "#": 3405 + }, + { + "#": 3406 + }, + { + "#": 3407 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,6,6", + "startCol": 4, + "endCol": 4, + "startRow": 6, + "endRow": 6 + }, + { + "id": 106, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3410 + }, + "angle": 0, + "vertices": { + "#": 3411 + }, + "position": { + "#": 3422 + }, + "force": { + "#": 3423 + }, + "torque": 0, + "positionImpulse": { + "#": 3424 + }, + "constraintImpulse": { + "#": 3425 + }, + "totalContacts": 0, + "speed": 2.43384, + "angularSpeed": 0, + "velocity": { + "#": 3426 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3427 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3428 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3430 + }, + "positionPrev": { + "#": 3433 + }, + "anglePrev": 0, + "axes": { + "#": 3434 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3409 + }, + "sleepCounter": 0, + "region": { + "#": 3440 + } + }, + [ + { + "#": 3409 + } + ], + [ + { + "#": 3412 + }, + { + "#": 3413 + }, + { + "#": 3414 + }, + { + "#": 3415 + }, + { + "#": 3416 + }, + { + "#": 3417 + }, + { + "#": 3418 + }, + { + "#": 3419 + }, + { + "#": 3420 + }, + { + "#": 3421 + } + ], + { + "x": 235.52707, + "y": 330.84203, + "index": 0, + "body": { + "#": 3409 + }, + "isInternal": false + }, + { + "x": 232.62107, + "y": 334.84203, + "index": 1, + "body": { + "#": 3409 + }, + "isInternal": false + }, + { + "x": 227.91907, + "y": 336.37003, + "index": 2, + "body": { + "#": 3409 + }, + "isInternal": false + }, + { + "x": 223.21707, + "y": 334.84203, + "index": 3, + "body": { + "#": 3409 + }, + "isInternal": false + }, + { + "x": 220.31107, + "y": 330.84203, + "index": 4, + "body": { + "#": 3409 + }, + "isInternal": false + }, + { + "x": 220.31107, + "y": 325.89803, + "index": 5, + "body": { + "#": 3409 + }, + "isInternal": false + }, + { + "x": 223.21707, + "y": 321.89803, + "index": 6, + "body": { + "#": 3409 + }, + "isInternal": false + }, + { + "x": 227.91907, + "y": 320.37003, + "index": 7, + "body": { + "#": 3409 + }, + "isInternal": false + }, + { + "x": 232.62107, + "y": 321.89803, + "index": 8, + "body": { + "#": 3409 + }, + "isInternal": false + }, + { + "x": 235.52707, + "y": 325.89803, + "index": 9, + "body": { + "#": 3409 + }, + "isInternal": false + }, + { + "x": 227.91907, + "y": 328.37003 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.04461, + "y": 1.80292 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3429 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3431 + }, + "max": { + "#": 3432 + } + }, + { + "x": 220.31107, + "y": 320.37003 + }, + { + "x": 235.52707, + "y": 336.37003 + }, + { + "x": 227.87203, + "y": 326.07985 + }, + [ + { + "#": 3435 + }, + { + "#": 3436 + }, + { + "#": 3437 + }, + { + "#": 3438 + }, + { + "#": 3439 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,6,7", + "startCol": 4, + "endCol": 4, + "startRow": 6, + "endRow": 7 + }, + { + "id": 107, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3442 + }, + "angle": 0, + "vertices": { + "#": 3443 + }, + "position": { + "#": 3454 + }, + "force": { + "#": 3455 + }, + "torque": 0, + "positionImpulse": { + "#": 3456 + }, + "constraintImpulse": { + "#": 3457 + }, + "totalContacts": 0, + "speed": 1.90646, + "angularSpeed": 0, + "velocity": { + "#": 3458 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3459 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3460 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3462 + }, + "positionPrev": { + "#": 3465 + }, + "anglePrev": 0, + "axes": { + "#": 3466 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3441 + }, + "sleepCounter": 0, + "region": { + "#": 3472 + } + }, + [ + { + "#": 3441 + } + ], + [ + { + "#": 3444 + }, + { + "#": 3445 + }, + { + "#": 3446 + }, + { + "#": 3447 + }, + { + "#": 3448 + }, + { + "#": 3449 + }, + { + "#": 3450 + }, + { + "#": 3451 + }, + { + "#": 3452 + }, + { + "#": 3453 + } + ], + { + "x": 255.66217, + "y": 328.31059, + "index": 0, + "body": { + "#": 3441 + }, + "isInternal": false + }, + { + "x": 252.75617, + "y": 332.31059, + "index": 1, + "body": { + "#": 3441 + }, + "isInternal": false + }, + { + "x": 248.05417, + "y": 333.83859, + "index": 2, + "body": { + "#": 3441 + }, + "isInternal": false + }, + { + "x": 243.35217, + "y": 332.31059, + "index": 3, + "body": { + "#": 3441 + }, + "isInternal": false + }, + { + "x": 240.44617, + "y": 328.31059, + "index": 4, + "body": { + "#": 3441 + }, + "isInternal": false + }, + { + "x": 240.44617, + "y": 323.36659, + "index": 5, + "body": { + "#": 3441 + }, + "isInternal": false + }, + { + "x": 243.35217, + "y": 319.36659, + "index": 6, + "body": { + "#": 3441 + }, + "isInternal": false + }, + { + "x": 248.05417, + "y": 317.83859, + "index": 7, + "body": { + "#": 3441 + }, + "isInternal": false + }, + { + "x": 252.75617, + "y": 319.36659, + "index": 8, + "body": { + "#": 3441 + }, + "isInternal": false + }, + { + "x": 255.66217, + "y": 323.36659, + "index": 9, + "body": { + "#": 3441 + }, + "isInternal": false + }, + { + "x": 248.05417, + "y": 325.83859 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01417, + "y": 1.47435 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3461 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3463 + }, + "max": { + "#": 3464 + } + }, + { + "x": 240.44617, + "y": 317.83859 + }, + { + "x": 255.66217, + "y": 333.83859 + }, + { + "x": 248.03925, + "y": 324.0638 + }, + [ + { + "#": 3467 + }, + { + "#": 3468 + }, + { + "#": 3469 + }, + { + "#": 3470 + }, + { + "#": 3471 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,6,6", + "startCol": 5, + "endCol": 5, + "startRow": 6, + "endRow": 6 + }, + { + "id": 108, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3474 + }, + "angle": 0, + "vertices": { + "#": 3475 + }, + "position": { + "#": 3486 + }, + "force": { + "#": 3487 + }, + "torque": 0, + "positionImpulse": { + "#": 3488 + }, + "constraintImpulse": { + "#": 3489 + }, + "totalContacts": 0, + "speed": 1.40363, + "angularSpeed": 0, + "velocity": { + "#": 3490 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3491 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3492 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3494 + }, + "positionPrev": { + "#": 3497 + }, + "anglePrev": 0, + "axes": { + "#": 3498 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3473 + }, + "sleepCounter": 0, + "region": { + "#": 3504 + } + }, + [ + { + "#": 3473 + } + ], + [ + { + "#": 3476 + }, + { + "#": 3477 + }, + { + "#": 3478 + }, + { + "#": 3479 + }, + { + "#": 3480 + }, + { + "#": 3481 + }, + { + "#": 3482 + }, + { + "#": 3483 + }, + { + "#": 3484 + }, + { + "#": 3485 + } + ], + { + "x": 275.93123, + "y": 326.85291, + "index": 0, + "body": { + "#": 3473 + }, + "isInternal": false + }, + { + "x": 273.02523, + "y": 330.85291, + "index": 1, + "body": { + "#": 3473 + }, + "isInternal": false + }, + { + "x": 268.32323, + "y": 332.38091, + "index": 2, + "body": { + "#": 3473 + }, + "isInternal": false + }, + { + "x": 263.62123, + "y": 330.85291, + "index": 3, + "body": { + "#": 3473 + }, + "isInternal": false + }, + { + "x": 260.71523, + "y": 326.85291, + "index": 4, + "body": { + "#": 3473 + }, + "isInternal": false + }, + { + "x": 260.71523, + "y": 321.90891, + "index": 5, + "body": { + "#": 3473 + }, + "isInternal": false + }, + { + "x": 263.62123, + "y": 317.90891, + "index": 6, + "body": { + "#": 3473 + }, + "isInternal": false + }, + { + "x": 268.32323, + "y": 316.38091, + "index": 7, + "body": { + "#": 3473 + }, + "isInternal": false + }, + { + "x": 273.02523, + "y": 317.90891, + "index": 8, + "body": { + "#": 3473 + }, + "isInternal": false + }, + { + "x": 275.93123, + "y": 321.90891, + "index": 9, + "body": { + "#": 3473 + }, + "isInternal": false + }, + { + "x": 268.32323, + "y": 324.38091 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01998, + "y": 1.05872 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3493 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3495 + }, + "max": { + "#": 3496 + } + }, + { + "x": 260.71523, + "y": 316.38091 + }, + { + "x": 275.93123, + "y": 332.38091 + }, + { + "x": 268.30322, + "y": 323.28519 + }, + [ + { + "#": 3499 + }, + { + "#": 3500 + }, + { + "#": 3501 + }, + { + "#": 3502 + }, + { + "#": 3503 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,6,6", + "startCol": 5, + "endCol": 5, + "startRow": 6, + "endRow": 6 + }, + { + "id": 109, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3506 + }, + "angle": 0, + "vertices": { + "#": 3507 + }, + "position": { + "#": 3518 + }, + "force": { + "#": 3519 + }, + "torque": 0, + "positionImpulse": { + "#": 3520 + }, + "constraintImpulse": { + "#": 3521 + }, + "totalContacts": 0, + "speed": 1.25102, + "angularSpeed": 0, + "velocity": { + "#": 3522 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3523 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3524 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3526 + }, + "positionPrev": { + "#": 3529 + }, + "anglePrev": 0, + "axes": { + "#": 3530 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3505 + }, + "sleepCounter": 0, + "region": { + "#": 3536 + } + }, + [ + { + "#": 3505 + } + ], + [ + { + "#": 3508 + }, + { + "#": 3509 + }, + { + "#": 3510 + }, + { + "#": 3511 + }, + { + "#": 3512 + }, + { + "#": 3513 + }, + { + "#": 3514 + }, + { + "#": 3515 + }, + { + "#": 3516 + }, + { + "#": 3517 + } + ], + { + "x": 296.17908, + "y": 325.05241, + "index": 0, + "body": { + "#": 3505 + }, + "isInternal": false + }, + { + "x": 293.27308, + "y": 329.05241, + "index": 1, + "body": { + "#": 3505 + }, + "isInternal": false + }, + { + "x": 288.57108, + "y": 330.58041, + "index": 2, + "body": { + "#": 3505 + }, + "isInternal": false + }, + { + "x": 283.86908, + "y": 329.05241, + "index": 3, + "body": { + "#": 3505 + }, + "isInternal": false + }, + { + "x": 280.96308, + "y": 325.05241, + "index": 4, + "body": { + "#": 3505 + }, + "isInternal": false + }, + { + "x": 280.96308, + "y": 320.10841, + "index": 5, + "body": { + "#": 3505 + }, + "isInternal": false + }, + { + "x": 283.86908, + "y": 316.10841, + "index": 6, + "body": { + "#": 3505 + }, + "isInternal": false + }, + { + "x": 288.57108, + "y": 314.58041, + "index": 7, + "body": { + "#": 3505 + }, + "isInternal": false + }, + { + "x": 293.27308, + "y": 316.10841, + "index": 8, + "body": { + "#": 3505 + }, + "isInternal": false + }, + { + "x": 296.17908, + "y": 320.10841, + "index": 9, + "body": { + "#": 3505 + }, + "isInternal": false + }, + { + "x": 288.57108, + "y": 322.58041 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.05509, + "y": 1.00876 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3525 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3527 + }, + "max": { + "#": 3528 + } + }, + { + "x": 280.96308, + "y": 314.58041 + }, + { + "x": 296.17908, + "y": 330.58041 + }, + { + "x": 288.51593, + "y": 321.55213 + }, + [ + { + "#": 3531 + }, + { + "#": 3532 + }, + { + "#": 3533 + }, + { + "#": 3534 + }, + { + "#": 3535 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,6,6", + "startCol": 5, + "endCol": 6, + "startRow": 6, + "endRow": 6 + }, + { + "id": 110, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3538 + }, + "angle": 0, + "vertices": { + "#": 3539 + }, + "position": { + "#": 3550 + }, + "force": { + "#": 3551 + }, + "torque": 0, + "positionImpulse": { + "#": 3552 + }, + "constraintImpulse": { + "#": 3553 + }, + "totalContacts": 0, + "speed": 0.72261, + "angularSpeed": 0, + "velocity": { + "#": 3554 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3555 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3556 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3558 + }, + "positionPrev": { + "#": 3561 + }, + "anglePrev": 0, + "axes": { + "#": 3562 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3537 + }, + "sleepCounter": 0, + "region": { + "#": 3568 + } + }, + [ + { + "#": 3537 + } + ], + [ + { + "#": 3540 + }, + { + "#": 3541 + }, + { + "#": 3542 + }, + { + "#": 3543 + }, + { + "#": 3544 + }, + { + "#": 3545 + }, + { + "#": 3546 + }, + { + "#": 3547 + }, + { + "#": 3548 + }, + { + "#": 3549 + } + ], + { + "x": 316.40497, + "y": 322.85941, + "index": 0, + "body": { + "#": 3537 + }, + "isInternal": false + }, + { + "x": 313.49897, + "y": 326.85941, + "index": 1, + "body": { + "#": 3537 + }, + "isInternal": false + }, + { + "x": 308.79697, + "y": 328.38741, + "index": 2, + "body": { + "#": 3537 + }, + "isInternal": false + }, + { + "x": 304.09497, + "y": 326.85941, + "index": 3, + "body": { + "#": 3537 + }, + "isInternal": false + }, + { + "x": 301.18897, + "y": 322.85941, + "index": 4, + "body": { + "#": 3537 + }, + "isInternal": false + }, + { + "x": 301.18897, + "y": 317.91541, + "index": 5, + "body": { + "#": 3537 + }, + "isInternal": false + }, + { + "x": 304.09497, + "y": 313.91541, + "index": 6, + "body": { + "#": 3537 + }, + "isInternal": false + }, + { + "x": 308.79697, + "y": 312.38741, + "index": 7, + "body": { + "#": 3537 + }, + "isInternal": false + }, + { + "x": 313.49897, + "y": 313.91541, + "index": 8, + "body": { + "#": 3537 + }, + "isInternal": false + }, + { + "x": 316.40497, + "y": 317.91541, + "index": 9, + "body": { + "#": 3537 + }, + "isInternal": false + }, + { + "x": 308.79697, + "y": 320.38741 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.04258, + "y": 0.78746 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3557 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3559 + }, + "max": { + "#": 3560 + } + }, + { + "x": 301.18897, + "y": 312.38741 + }, + { + "x": 316.40497, + "y": 328.38741 + }, + { + "x": 308.75449, + "y": 319.63452 + }, + [ + { + "#": 3563 + }, + { + "#": 3564 + }, + { + "#": 3565 + }, + { + "#": 3566 + }, + { + "#": 3567 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,6,6,6", + "startCol": 6, + "endCol": 6, + "startRow": 6, + "endRow": 6 + }, + { + "id": 111, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3570 + }, + "angle": 0, + "vertices": { + "#": 3571 + }, + "position": { + "#": 3582 + }, + "force": { + "#": 3583 + }, + "torque": 0, + "positionImpulse": { + "#": 3584 + }, + "constraintImpulse": { + "#": 3585 + }, + "totalContacts": 0, + "speed": 1.49674, + "angularSpeed": 0, + "velocity": { + "#": 3586 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3587 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3588 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3590 + }, + "positionPrev": { + "#": 3593 + }, + "anglePrev": 0, + "axes": { + "#": 3594 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3569 + }, + "sleepCounter": 0, + "region": { + "#": 3600 + } + }, + [ + { + "#": 3569 + } + ], + [ + { + "#": 3572 + }, + { + "#": 3573 + }, + { + "#": 3574 + }, + { + "#": 3575 + }, + { + "#": 3576 + }, + { + "#": 3577 + }, + { + "#": 3578 + }, + { + "#": 3579 + }, + { + "#": 3580 + }, + { + "#": 3581 + } + ], + { + "x": 336.36707, + "y": 326.86358, + "index": 0, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 333.46107, + "y": 330.86358, + "index": 1, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 328.75907, + "y": 332.39158, + "index": 2, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 324.05707, + "y": 330.86358, + "index": 3, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 321.15107, + "y": 326.86358, + "index": 4, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 321.15107, + "y": 321.91958, + "index": 5, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 324.05707, + "y": 317.91958, + "index": 6, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 328.75907, + "y": 316.39158, + "index": 7, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 333.46107, + "y": 317.91958, + "index": 8, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 336.36707, + "y": 321.91958, + "index": 9, + "body": { + "#": 3569 + }, + "isInternal": false + }, + { + "x": 328.75907, + "y": 324.39158 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.04934, + "y": 1.19273 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3589 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3591 + }, + "max": { + "#": 3592 + } + }, + { + "x": 321.15107, + "y": 316.39158 + }, + { + "x": 336.36707, + "y": 332.39158 + }, + { + "x": 328.80918, + "y": 323.02435 + }, + [ + { + "#": 3595 + }, + { + "#": 3596 + }, + { + "#": 3597 + }, + { + "#": 3598 + }, + { + "#": 3599 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,6,6", + "startCol": 6, + "endCol": 7, + "startRow": 6, + "endRow": 6 + }, + { + "id": 112, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3602 + }, + "angle": 0, + "vertices": { + "#": 3603 + }, + "position": { + "#": 3614 + }, + "force": { + "#": 3615 + }, + "torque": 0, + "positionImpulse": { + "#": 3616 + }, + "constraintImpulse": { + "#": 3617 + }, + "totalContacts": 0, + "speed": 1.69751, + "angularSpeed": 0, + "velocity": { + "#": 3618 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3619 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3620 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3622 + }, + "positionPrev": { + "#": 3625 + }, + "anglePrev": 0, + "axes": { + "#": 3626 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3601 + }, + "sleepCounter": 0, + "region": { + "#": 3632 + } + }, + [ + { + "#": 3601 + } + ], + [ + { + "#": 3604 + }, + { + "#": 3605 + }, + { + "#": 3606 + }, + { + "#": 3607 + }, + { + "#": 3608 + }, + { + "#": 3609 + }, + { + "#": 3610 + }, + { + "#": 3611 + }, + { + "#": 3612 + }, + { + "#": 3613 + } + ], + { + "x": 356.71992, + "y": 327.41886, + "index": 0, + "body": { + "#": 3601 + }, + "isInternal": false + }, + { + "x": 353.81392, + "y": 331.41886, + "index": 1, + "body": { + "#": 3601 + }, + "isInternal": false + }, + { + "x": 349.11192, + "y": 332.94686, + "index": 2, + "body": { + "#": 3601 + }, + "isInternal": false + }, + { + "x": 344.40992, + "y": 331.41886, + "index": 3, + "body": { + "#": 3601 + }, + "isInternal": false + }, + { + "x": 341.50392, + "y": 327.41886, + "index": 4, + "body": { + "#": 3601 + }, + "isInternal": false + }, + { + "x": 341.50392, + "y": 322.47486, + "index": 5, + "body": { + "#": 3601 + }, + "isInternal": false + }, + { + "x": 344.40992, + "y": 318.47486, + "index": 6, + "body": { + "#": 3601 + }, + "isInternal": false + }, + { + "x": 349.11192, + "y": 316.94686, + "index": 7, + "body": { + "#": 3601 + }, + "isInternal": false + }, + { + "x": 353.81392, + "y": 318.47486, + "index": 8, + "body": { + "#": 3601 + }, + "isInternal": false + }, + { + "x": 356.71992, + "y": 322.47486, + "index": 9, + "body": { + "#": 3601 + }, + "isInternal": false + }, + { + "x": 349.11192, + "y": 324.94686 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01565, + "y": 1.38444 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3621 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3623 + }, + "max": { + "#": 3624 + } + }, + { + "x": 341.50392, + "y": 316.94686 + }, + { + "x": 356.71992, + "y": 332.94686 + }, + { + "x": 349.12842, + "y": 323.27835 + }, + [ + { + "#": 3627 + }, + { + "#": 3628 + }, + { + "#": 3629 + }, + { + "#": 3630 + }, + { + "#": 3631 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,6,6", + "startCol": 7, + "endCol": 7, + "startRow": 6, + "endRow": 6 + }, + { + "id": 113, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3634 + }, + "angle": 0, + "vertices": { + "#": 3635 + }, + "position": { + "#": 3646 + }, + "force": { + "#": 3647 + }, + "torque": 0, + "positionImpulse": { + "#": 3648 + }, + "constraintImpulse": { + "#": 3649 + }, + "totalContacts": 0, + "speed": 2.35529, + "angularSpeed": 0, + "velocity": { + "#": 3650 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3651 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3652 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3654 + }, + "positionPrev": { + "#": 3657 + }, + "anglePrev": 0, + "axes": { + "#": 3658 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3633 + }, + "sleepCounter": 0, + "region": { + "#": 3664 + } + }, + [ + { + "#": 3633 + } + ], + [ + { + "#": 3636 + }, + { + "#": 3637 + }, + { + "#": 3638 + }, + { + "#": 3639 + }, + { + "#": 3640 + }, + { + "#": 3641 + }, + { + "#": 3642 + }, + { + "#": 3643 + }, + { + "#": 3644 + }, + { + "#": 3645 + } + ], + { + "x": 376.79083, + "y": 330.5854, + "index": 0, + "body": { + "#": 3633 + }, + "isInternal": false + }, + { + "x": 373.88483, + "y": 334.5854, + "index": 1, + "body": { + "#": 3633 + }, + "isInternal": false + }, + { + "x": 369.18283, + "y": 336.1134, + "index": 2, + "body": { + "#": 3633 + }, + "isInternal": false + }, + { + "x": 364.48083, + "y": 334.5854, + "index": 3, + "body": { + "#": 3633 + }, + "isInternal": false + }, + { + "x": 361.57483, + "y": 330.5854, + "index": 4, + "body": { + "#": 3633 + }, + "isInternal": false + }, + { + "x": 361.57483, + "y": 325.6414, + "index": 5, + "body": { + "#": 3633 + }, + "isInternal": false + }, + { + "x": 364.48083, + "y": 321.6414, + "index": 6, + "body": { + "#": 3633 + }, + "isInternal": false + }, + { + "x": 369.18283, + "y": 320.1134, + "index": 7, + "body": { + "#": 3633 + }, + "isInternal": false + }, + { + "x": 373.88483, + "y": 321.6414, + "index": 8, + "body": { + "#": 3633 + }, + "isInternal": false + }, + { + "x": 376.79083, + "y": 325.6414, + "index": 9, + "body": { + "#": 3633 + }, + "isInternal": false + }, + { + "x": 369.18283, + "y": 328.1134 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.06417, + "y": 1.73107 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3653 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3655 + }, + "max": { + "#": 3656 + } + }, + { + "x": 361.57483, + "y": 320.1134 + }, + { + "x": 376.79083, + "y": 336.1134 + }, + { + "x": 369.24942, + "y": 325.93851 + }, + [ + { + "#": 3659 + }, + { + "#": 3660 + }, + { + "#": 3661 + }, + { + "#": 3662 + }, + { + "#": 3663 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,6,7", + "startCol": 7, + "endCol": 7, + "startRow": 6, + "endRow": 7 + }, + { + "id": 114, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3666 + }, + "angle": 0, + "vertices": { + "#": 3667 + }, + "position": { + "#": 3678 + }, + "force": { + "#": 3679 + }, + "torque": 0, + "positionImpulse": { + "#": 3680 + }, + "constraintImpulse": { + "#": 3681 + }, + "totalContacts": 0, + "speed": 2.17967, + "angularSpeed": 0, + "velocity": { + "#": 3682 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3683 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3684 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3686 + }, + "positionPrev": { + "#": 3689 + }, + "anglePrev": 0, + "axes": { + "#": 3690 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3665 + }, + "sleepCounter": 0, + "region": { + "#": 3696 + } + }, + [ + { + "#": 3665 + } + ], + [ + { + "#": 3668 + }, + { + "#": 3669 + }, + { + "#": 3670 + }, + { + "#": 3671 + }, + { + "#": 3672 + }, + { + "#": 3673 + }, + { + "#": 3674 + }, + { + "#": 3675 + }, + { + "#": 3676 + }, + { + "#": 3677 + } + ], + { + "x": 397.08549, + "y": 329.97038, + "index": 0, + "body": { + "#": 3665 + }, + "isInternal": false + }, + { + "x": 394.17949, + "y": 333.97038, + "index": 1, + "body": { + "#": 3665 + }, + "isInternal": false + }, + { + "x": 389.47749, + "y": 335.49838, + "index": 2, + "body": { + "#": 3665 + }, + "isInternal": false + }, + { + "x": 384.77549, + "y": 333.97038, + "index": 3, + "body": { + "#": 3665 + }, + "isInternal": false + }, + { + "x": 381.86949, + "y": 329.97038, + "index": 4, + "body": { + "#": 3665 + }, + "isInternal": false + }, + { + "x": 381.86949, + "y": 325.02638, + "index": 5, + "body": { + "#": 3665 + }, + "isInternal": false + }, + { + "x": 384.77549, + "y": 321.02638, + "index": 6, + "body": { + "#": 3665 + }, + "isInternal": false + }, + { + "x": 389.47749, + "y": 319.49838, + "index": 7, + "body": { + "#": 3665 + }, + "isInternal": false + }, + { + "x": 394.17949, + "y": 321.02638, + "index": 8, + "body": { + "#": 3665 + }, + "isInternal": false + }, + { + "x": 397.08549, + "y": 325.02638, + "index": 9, + "body": { + "#": 3665 + }, + "isInternal": false + }, + { + "x": 389.47749, + "y": 327.49838 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.03353, + "y": 1.62681 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3685 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3687 + }, + "max": { + "#": 3688 + } + }, + { + "x": 381.86949, + "y": 319.49838 + }, + { + "x": 397.08549, + "y": 335.49838 + }, + { + "x": 389.51214, + "y": 325.48414 + }, + [ + { + "#": 3691 + }, + { + "#": 3692 + }, + { + "#": 3693 + }, + { + "#": 3694 + }, + { + "#": 3695 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,6,6", + "startCol": 7, + "endCol": 8, + "startRow": 6, + "endRow": 6 + }, + { + "id": 115, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3698 + }, + "angle": 0, + "vertices": { + "#": 3699 + }, + "position": { + "#": 3710 + }, + "force": { + "#": 3711 + }, + "torque": 0, + "positionImpulse": { + "#": 3712 + }, + "constraintImpulse": { + "#": 3713 + }, + "totalContacts": 0, + "speed": 2.13413, + "angularSpeed": 0, + "velocity": { + "#": 3714 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3715 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3716 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3718 + }, + "positionPrev": { + "#": 3721 + }, + "anglePrev": 0, + "axes": { + "#": 3722 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3697 + }, + "sleepCounter": 0, + "region": { + "#": 3728 + } + }, + [ + { + "#": 3697 + } + ], + [ + { + "#": 3700 + }, + { + "#": 3701 + }, + { + "#": 3702 + }, + { + "#": 3703 + }, + { + "#": 3704 + }, + { + "#": 3705 + }, + { + "#": 3706 + }, + { + "#": 3707 + }, + { + "#": 3708 + }, + { + "#": 3709 + } + ], + { + "x": 417.37945, + "y": 329.82038, + "index": 0, + "body": { + "#": 3697 + }, + "isInternal": false + }, + { + "x": 414.47345, + "y": 333.82038, + "index": 1, + "body": { + "#": 3697 + }, + "isInternal": false + }, + { + "x": 409.77145, + "y": 335.34838, + "index": 2, + "body": { + "#": 3697 + }, + "isInternal": false + }, + { + "x": 405.06945, + "y": 333.82038, + "index": 3, + "body": { + "#": 3697 + }, + "isInternal": false + }, + { + "x": 402.16345, + "y": 329.82038, + "index": 4, + "body": { + "#": 3697 + }, + "isInternal": false + }, + { + "x": 402.16345, + "y": 324.87638, + "index": 5, + "body": { + "#": 3697 + }, + "isInternal": false + }, + { + "x": 405.06945, + "y": 320.87638, + "index": 6, + "body": { + "#": 3697 + }, + "isInternal": false + }, + { + "x": 409.77145, + "y": 319.34838, + "index": 7, + "body": { + "#": 3697 + }, + "isInternal": false + }, + { + "x": 414.47345, + "y": 320.87638, + "index": 8, + "body": { + "#": 3697 + }, + "isInternal": false + }, + { + "x": 417.37945, + "y": 324.87638, + "index": 9, + "body": { + "#": 3697 + }, + "isInternal": false + }, + { + "x": 409.77145, + "y": 327.34838 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00456, + "y": 1.58518 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3717 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3719 + }, + "max": { + "#": 3720 + } + }, + { + "x": 402.16345, + "y": 319.34838 + }, + { + "x": 417.37945, + "y": 335.34838 + }, + { + "x": 409.76647, + "y": 325.40494 + }, + [ + { + "#": 3723 + }, + { + "#": 3724 + }, + { + "#": 3725 + }, + { + "#": 3726 + }, + { + "#": 3727 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,6,6", + "startCol": 8, + "endCol": 8, + "startRow": 6, + "endRow": 6 + }, + { + "id": 116, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3730 + }, + "angle": 0, + "vertices": { + "#": 3731 + }, + "position": { + "#": 3742 + }, + "force": { + "#": 3743 + }, + "torque": 0, + "positionImpulse": { + "#": 3744 + }, + "constraintImpulse": { + "#": 3745 + }, + "totalContacts": 0, + "speed": 2.10636, + "angularSpeed": 0, + "velocity": { + "#": 3746 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3747 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3748 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3750 + }, + "positionPrev": { + "#": 3753 + }, + "anglePrev": 0, + "axes": { + "#": 3754 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3729 + }, + "sleepCounter": 0, + "region": { + "#": 3760 + } + }, + [ + { + "#": 3729 + } + ], + [ + { + "#": 3732 + }, + { + "#": 3733 + }, + { + "#": 3734 + }, + { + "#": 3735 + }, + { + "#": 3736 + }, + { + "#": 3737 + }, + { + "#": 3738 + }, + { + "#": 3739 + }, + { + "#": 3740 + }, + { + "#": 3741 + } + ], + { + "x": 437.69567, + "y": 329.72266, + "index": 0, + "body": { + "#": 3729 + }, + "isInternal": false + }, + { + "x": 434.78967, + "y": 333.72266, + "index": 1, + "body": { + "#": 3729 + }, + "isInternal": false + }, + { + "x": 430.08767, + "y": 335.25066, + "index": 2, + "body": { + "#": 3729 + }, + "isInternal": false + }, + { + "x": 425.38567, + "y": 333.72266, + "index": 3, + "body": { + "#": 3729 + }, + "isInternal": false + }, + { + "x": 422.47967, + "y": 329.72266, + "index": 4, + "body": { + "#": 3729 + }, + "isInternal": false + }, + { + "x": 422.47967, + "y": 324.77866, + "index": 5, + "body": { + "#": 3729 + }, + "isInternal": false + }, + { + "x": 425.38567, + "y": 320.77866, + "index": 6, + "body": { + "#": 3729 + }, + "isInternal": false + }, + { + "x": 430.08767, + "y": 319.25066, + "index": 7, + "body": { + "#": 3729 + }, + "isInternal": false + }, + { + "x": 434.78967, + "y": 320.77866, + "index": 8, + "body": { + "#": 3729 + }, + "isInternal": false + }, + { + "x": 437.69567, + "y": 324.77866, + "index": 9, + "body": { + "#": 3729 + }, + "isInternal": false + }, + { + "x": 430.08767, + "y": 327.25066 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.05585, + "y": 1.55467 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3749 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3751 + }, + "max": { + "#": 3752 + } + }, + { + "x": 422.47967, + "y": 319.25066 + }, + { + "x": 437.69567, + "y": 335.25066 + }, + { + "x": 430.0298, + "y": 325.36237 + }, + [ + { + "#": 3755 + }, + { + "#": 3756 + }, + { + "#": 3757 + }, + { + "#": 3758 + }, + { + "#": 3759 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,6,6", + "startCol": 8, + "endCol": 9, + "startRow": 6, + "endRow": 6 + }, + { + "id": 117, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3762 + }, + "angle": 0, + "vertices": { + "#": 3763 + }, + "position": { + "#": 3774 + }, + "force": { + "#": 3775 + }, + "torque": 0, + "positionImpulse": { + "#": 3776 + }, + "constraintImpulse": { + "#": 3777 + }, + "totalContacts": 0, + "speed": 1.92749, + "angularSpeed": 0, + "velocity": { + "#": 3778 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3779 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3780 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3782 + }, + "positionPrev": { + "#": 3785 + }, + "anglePrev": 0, + "axes": { + "#": 3786 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3761 + }, + "sleepCounter": 0, + "region": { + "#": 3792 + } + }, + [ + { + "#": 3761 + } + ], + [ + { + "#": 3764 + }, + { + "#": 3765 + }, + { + "#": 3766 + }, + { + "#": 3767 + }, + { + "#": 3768 + }, + { + "#": 3769 + }, + { + "#": 3770 + }, + { + "#": 3771 + }, + { + "#": 3772 + }, + { + "#": 3773 + } + ], + { + "x": 458.05273, + "y": 329.08494, + "index": 0, + "body": { + "#": 3761 + }, + "isInternal": false + }, + { + "x": 455.14673, + "y": 333.08494, + "index": 1, + "body": { + "#": 3761 + }, + "isInternal": false + }, + { + "x": 450.44473, + "y": 334.61294, + "index": 2, + "body": { + "#": 3761 + }, + "isInternal": false + }, + { + "x": 445.74273, + "y": 333.08494, + "index": 3, + "body": { + "#": 3761 + }, + "isInternal": false + }, + { + "x": 442.83673, + "y": 329.08494, + "index": 4, + "body": { + "#": 3761 + }, + "isInternal": false + }, + { + "x": 442.83673, + "y": 324.14094, + "index": 5, + "body": { + "#": 3761 + }, + "isInternal": false + }, + { + "x": 445.74273, + "y": 320.14094, + "index": 6, + "body": { + "#": 3761 + }, + "isInternal": false + }, + { + "x": 450.44473, + "y": 318.61294, + "index": 7, + "body": { + "#": 3761 + }, + "isInternal": false + }, + { + "x": 455.14673, + "y": 320.14094, + "index": 8, + "body": { + "#": 3761 + }, + "isInternal": false + }, + { + "x": 458.05273, + "y": 324.14094, + "index": 9, + "body": { + "#": 3761 + }, + "isInternal": false + }, + { + "x": 450.44473, + "y": 326.61294 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.11023, + "y": 1.38591 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3781 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3783 + }, + "max": { + "#": 3784 + } + }, + { + "x": 442.83673, + "y": 318.61294 + }, + { + "x": 458.05273, + "y": 334.61294 + }, + { + "x": 450.33219, + "y": 324.99896 + }, + [ + { + "#": 3787 + }, + { + "#": 3788 + }, + { + "#": 3789 + }, + { + "#": 3790 + }, + { + "#": 3791 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,6,6", + "startCol": 9, + "endCol": 9, + "startRow": 6, + "endRow": 6 + }, + { + "id": 118, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3794 + }, + "angle": 0, + "vertices": { + "#": 3795 + }, + "position": { + "#": 3806 + }, + "force": { + "#": 3807 + }, + "torque": 0, + "positionImpulse": { + "#": 3808 + }, + "constraintImpulse": { + "#": 3809 + }, + "totalContacts": 0, + "speed": 0.75741, + "angularSpeed": 0, + "velocity": { + "#": 3810 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3811 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3812 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3814 + }, + "positionPrev": { + "#": 3817 + }, + "anglePrev": 0, + "axes": { + "#": 3818 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3793 + }, + "sleepCounter": 0, + "region": { + "#": 3824 + } + }, + [ + { + "#": 3793 + } + ], + [ + { + "#": 3796 + }, + { + "#": 3797 + }, + { + "#": 3798 + }, + { + "#": 3799 + }, + { + "#": 3800 + }, + { + "#": 3801 + }, + { + "#": 3802 + }, + { + "#": 3803 + }, + { + "#": 3804 + }, + { + "#": 3805 + } + ], + { + "x": 477.83007, + "y": 324.09452, + "index": 0, + "body": { + "#": 3793 + }, + "isInternal": false + }, + { + "x": 474.92407, + "y": 328.09452, + "index": 1, + "body": { + "#": 3793 + }, + "isInternal": false + }, + { + "x": 470.22207, + "y": 329.62252, + "index": 2, + "body": { + "#": 3793 + }, + "isInternal": false + }, + { + "x": 465.52007, + "y": 328.09452, + "index": 3, + "body": { + "#": 3793 + }, + "isInternal": false + }, + { + "x": 462.61407, + "y": 324.09452, + "index": 4, + "body": { + "#": 3793 + }, + "isInternal": false + }, + { + "x": 462.61407, + "y": 319.15052, + "index": 5, + "body": { + "#": 3793 + }, + "isInternal": false + }, + { + "x": 465.52007, + "y": 315.15052, + "index": 6, + "body": { + "#": 3793 + }, + "isInternal": false + }, + { + "x": 470.22207, + "y": 313.62252, + "index": 7, + "body": { + "#": 3793 + }, + "isInternal": false + }, + { + "x": 474.92407, + "y": 315.15052, + "index": 8, + "body": { + "#": 3793 + }, + "isInternal": false + }, + { + "x": 477.83007, + "y": 319.15052, + "index": 9, + "body": { + "#": 3793 + }, + "isInternal": false + }, + { + "x": 470.22207, + "y": 321.62252 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.09268, + "y": 0.66629 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3813 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3815 + }, + "max": { + "#": 3816 + } + }, + { + "x": 462.61407, + "y": 313.62252 + }, + { + "x": 477.83007, + "y": 329.62252 + }, + { + "x": 470.31311, + "y": 321.14366 + }, + [ + { + "#": 3819 + }, + { + "#": 3820 + }, + { + "#": 3821 + }, + { + "#": 3822 + }, + { + "#": 3823 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,6,6", + "startCol": 9, + "endCol": 9, + "startRow": 6, + "endRow": 6 + }, + { + "id": 119, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3826 + }, + "angle": 0, + "vertices": { + "#": 3827 + }, + "position": { + "#": 3838 + }, + "force": { + "#": 3839 + }, + "torque": 0, + "positionImpulse": { + "#": 3840 + }, + "constraintImpulse": { + "#": 3841 + }, + "totalContacts": 0, + "speed": 0.59798, + "angularSpeed": 0, + "velocity": { + "#": 3842 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3843 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3844 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3846 + }, + "positionPrev": { + "#": 3849 + }, + "anglePrev": 0, + "axes": { + "#": 3850 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3825 + }, + "sleepCounter": 0, + "region": { + "#": 3856 + } + }, + [ + { + "#": 3825 + } + ], + [ + { + "#": 3828 + }, + { + "#": 3829 + }, + { + "#": 3830 + }, + { + "#": 3831 + }, + { + "#": 3832 + }, + { + "#": 3833 + }, + { + "#": 3834 + }, + { + "#": 3835 + }, + { + "#": 3836 + }, + { + "#": 3837 + } + ], + { + "x": 498.17185, + "y": 323.5425, + "index": 0, + "body": { + "#": 3825 + }, + "isInternal": false + }, + { + "x": 495.26585, + "y": 327.5425, + "index": 1, + "body": { + "#": 3825 + }, + "isInternal": false + }, + { + "x": 490.56385, + "y": 329.0705, + "index": 2, + "body": { + "#": 3825 + }, + "isInternal": false + }, + { + "x": 485.86185, + "y": 327.5425, + "index": 3, + "body": { + "#": 3825 + }, + "isInternal": false + }, + { + "x": 482.95585, + "y": 323.5425, + "index": 4, + "body": { + "#": 3825 + }, + "isInternal": false + }, + { + "x": 482.95585, + "y": 318.5985, + "index": 5, + "body": { + "#": 3825 + }, + "isInternal": false + }, + { + "x": 485.86185, + "y": 314.5985, + "index": 6, + "body": { + "#": 3825 + }, + "isInternal": false + }, + { + "x": 490.56385, + "y": 313.0705, + "index": 7, + "body": { + "#": 3825 + }, + "isInternal": false + }, + { + "x": 495.26585, + "y": 314.5985, + "index": 8, + "body": { + "#": 3825 + }, + "isInternal": false + }, + { + "x": 498.17185, + "y": 318.5985, + "index": 9, + "body": { + "#": 3825 + }, + "isInternal": false + }, + { + "x": 490.56385, + "y": 321.0705 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.0345, + "y": 0.51219 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3845 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3847 + }, + "max": { + "#": 3848 + } + }, + { + "x": 482.95585, + "y": 313.0705 + }, + { + "x": 498.17185, + "y": 329.0705 + }, + { + "x": 490.59741, + "y": 320.84079 + }, + [ + { + "#": 3851 + }, + { + "#": 3852 + }, + { + "#": 3853 + }, + { + "#": 3854 + }, + { + "#": 3855 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,6,6", + "startCol": 10, + "endCol": 10, + "startRow": 6, + "endRow": 6 + }, + { + "id": 120, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3858 + }, + "angle": 0, + "vertices": { + "#": 3859 + }, + "position": { + "#": 3870 + }, + "force": { + "#": 3871 + }, + "torque": 0, + "positionImpulse": { + "#": 3872 + }, + "constraintImpulse": { + "#": 3873 + }, + "totalContacts": 0, + "speed": 0.59753, + "angularSpeed": 0, + "velocity": { + "#": 3874 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3875 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3876 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3878 + }, + "positionPrev": { + "#": 3881 + }, + "anglePrev": 0, + "axes": { + "#": 3882 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3857 + }, + "sleepCounter": 0, + "region": { + "#": 3888 + } + }, + [ + { + "#": 3857 + } + ], + [ + { + "#": 3860 + }, + { + "#": 3861 + }, + { + "#": 3862 + }, + { + "#": 3863 + }, + { + "#": 3864 + }, + { + "#": 3865 + }, + { + "#": 3866 + }, + { + "#": 3867 + }, + { + "#": 3868 + }, + { + "#": 3869 + } + ], + { + "x": 518.51124, + "y": 323.54022, + "index": 0, + "body": { + "#": 3857 + }, + "isInternal": false + }, + { + "x": 515.60524, + "y": 327.54022, + "index": 1, + "body": { + "#": 3857 + }, + "isInternal": false + }, + { + "x": 510.90324, + "y": 329.06822, + "index": 2, + "body": { + "#": 3857 + }, + "isInternal": false + }, + { + "x": 506.20124, + "y": 327.54022, + "index": 3, + "body": { + "#": 3857 + }, + "isInternal": false + }, + { + "x": 503.29524, + "y": 323.54022, + "index": 4, + "body": { + "#": 3857 + }, + "isInternal": false + }, + { + "x": 503.29524, + "y": 318.59622, + "index": 5, + "body": { + "#": 3857 + }, + "isInternal": false + }, + { + "x": 506.20124, + "y": 314.59622, + "index": 6, + "body": { + "#": 3857 + }, + "isInternal": false + }, + { + "x": 510.90324, + "y": 313.06822, + "index": 7, + "body": { + "#": 3857 + }, + "isInternal": false + }, + { + "x": 515.60524, + "y": 314.59622, + "index": 8, + "body": { + "#": 3857 + }, + "isInternal": false + }, + { + "x": 518.51124, + "y": 318.59622, + "index": 9, + "body": { + "#": 3857 + }, + "isInternal": false + }, + { + "x": 510.90324, + "y": 321.06822 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.0324, + "y": 0.51161 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3877 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3879 + }, + "max": { + "#": 3880 + } + }, + { + "x": 503.29524, + "y": 313.06822 + }, + { + "x": 518.51124, + "y": 329.06822 + }, + { + "x": 510.87186, + "y": 320.84022 + }, + [ + { + "#": 3883 + }, + { + "#": 3884 + }, + { + "#": 3885 + }, + { + "#": 3886 + }, + { + "#": 3887 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,6,6", + "startCol": 10, + "endCol": 10, + "startRow": 6, + "endRow": 6 + }, + { + "id": 121, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3890 + }, + "angle": 0, + "vertices": { + "#": 3891 + }, + "position": { + "#": 3902 + }, + "force": { + "#": 3903 + }, + "torque": 0, + "positionImpulse": { + "#": 3904 + }, + "constraintImpulse": { + "#": 3905 + }, + "totalContacts": 0, + "speed": 0.75446, + "angularSpeed": 0, + "velocity": { + "#": 3906 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3907 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3908 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3910 + }, + "positionPrev": { + "#": 3913 + }, + "anglePrev": 0, + "axes": { + "#": 3914 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3889 + }, + "sleepCounter": 0, + "region": { + "#": 3920 + } + }, + [ + { + "#": 3889 + } + ], + [ + { + "#": 3892 + }, + { + "#": 3893 + }, + { + "#": 3894 + }, + { + "#": 3895 + }, + { + "#": 3896 + }, + { + "#": 3897 + }, + { + "#": 3898 + }, + { + "#": 3899 + }, + { + "#": 3900 + }, + { + "#": 3901 + } + ], + { + "x": 538.88094, + "y": 324.07756, + "index": 0, + "body": { + "#": 3889 + }, + "isInternal": false + }, + { + "x": 535.97494, + "y": 328.07756, + "index": 1, + "body": { + "#": 3889 + }, + "isInternal": false + }, + { + "x": 531.27294, + "y": 329.60556, + "index": 2, + "body": { + "#": 3889 + }, + "isInternal": false + }, + { + "x": 526.57094, + "y": 328.07756, + "index": 3, + "body": { + "#": 3889 + }, + "isInternal": false + }, + { + "x": 523.66494, + "y": 324.07756, + "index": 4, + "body": { + "#": 3889 + }, + "isInternal": false + }, + { + "x": 523.66494, + "y": 319.13356, + "index": 5, + "body": { + "#": 3889 + }, + "isInternal": false + }, + { + "x": 526.57094, + "y": 315.13356, + "index": 6, + "body": { + "#": 3889 + }, + "isInternal": false + }, + { + "x": 531.27294, + "y": 313.60556, + "index": 7, + "body": { + "#": 3889 + }, + "isInternal": false + }, + { + "x": 535.97494, + "y": 315.13356, + "index": 8, + "body": { + "#": 3889 + }, + "isInternal": false + }, + { + "x": 538.88094, + "y": 319.13356, + "index": 9, + "body": { + "#": 3889 + }, + "isInternal": false + }, + { + "x": 531.27294, + "y": 321.60556 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.09665, + "y": 0.66049 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3909 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3911 + }, + "max": { + "#": 3912 + } + }, + { + "x": 523.66494, + "y": 313.60556 + }, + { + "x": 538.88094, + "y": 329.60556 + }, + { + "x": 531.178, + "y": 321.14035 + }, + [ + { + "#": 3915 + }, + { + "#": 3916 + }, + { + "#": 3917 + }, + { + "#": 3918 + }, + { + "#": 3919 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,6,6", + "startCol": 10, + "endCol": 11, + "startRow": 6, + "endRow": 6 + }, + { + "id": 122, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3922 + }, + "angle": 0, + "vertices": { + "#": 3923 + }, + "position": { + "#": 3934 + }, + "force": { + "#": 3935 + }, + "torque": 0, + "positionImpulse": { + "#": 3936 + }, + "constraintImpulse": { + "#": 3937 + }, + "totalContacts": 0, + "speed": 1.92215, + "angularSpeed": 0, + "velocity": { + "#": 3938 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3939 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3940 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3942 + }, + "positionPrev": { + "#": 3945 + }, + "anglePrev": 0, + "axes": { + "#": 3946 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3921 + }, + "sleepCounter": 0, + "region": { + "#": 3952 + } + }, + [ + { + "#": 3921 + } + ], + [ + { + "#": 3924 + }, + { + "#": 3925 + }, + { + "#": 3926 + }, + { + "#": 3927 + }, + { + "#": 3928 + }, + { + "#": 3929 + }, + { + "#": 3930 + }, + { + "#": 3931 + }, + { + "#": 3932 + }, + { + "#": 3933 + } + ], + { + "x": 558.65958, + "y": 329.06652, + "index": 0, + "body": { + "#": 3921 + }, + "isInternal": false + }, + { + "x": 555.75358, + "y": 333.06652, + "index": 1, + "body": { + "#": 3921 + }, + "isInternal": false + }, + { + "x": 551.05158, + "y": 334.59452, + "index": 2, + "body": { + "#": 3921 + }, + "isInternal": false + }, + { + "x": 546.34958, + "y": 333.06652, + "index": 3, + "body": { + "#": 3921 + }, + "isInternal": false + }, + { + "x": 543.44358, + "y": 329.06652, + "index": 4, + "body": { + "#": 3921 + }, + "isInternal": false + }, + { + "x": 543.44358, + "y": 324.12252, + "index": 5, + "body": { + "#": 3921 + }, + "isInternal": false + }, + { + "x": 546.34958, + "y": 320.12252, + "index": 6, + "body": { + "#": 3921 + }, + "isInternal": false + }, + { + "x": 551.05158, + "y": 318.59452, + "index": 7, + "body": { + "#": 3921 + }, + "isInternal": false + }, + { + "x": 555.75358, + "y": 320.12252, + "index": 8, + "body": { + "#": 3921 + }, + "isInternal": false + }, + { + "x": 558.65958, + "y": 324.12252, + "index": 9, + "body": { + "#": 3921 + }, + "isInternal": false + }, + { + "x": 551.05158, + "y": 326.59452 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.10673, + "y": 1.38004 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3941 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3943 + }, + "max": { + "#": 3944 + } + }, + { + "x": 543.44358, + "y": 318.59452 + }, + { + "x": 558.65958, + "y": 334.59452 + }, + { + "x": 551.16073, + "y": 324.99126 + }, + [ + { + "#": 3947 + }, + { + "#": 3948 + }, + { + "#": 3949 + }, + { + "#": 3950 + }, + { + "#": 3951 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,11,6,6", + "startCol": 11, + "endCol": 11, + "startRow": 6, + "endRow": 6 + }, + { + "id": 123, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3954 + }, + "angle": 0, + "vertices": { + "#": 3955 + }, + "position": { + "#": 3966 + }, + "force": { + "#": 3967 + }, + "torque": 0, + "positionImpulse": { + "#": 3968 + }, + "constraintImpulse": { + "#": 3969 + }, + "totalContacts": 0, + "speed": 2.09865, + "angularSpeed": 0, + "velocity": { + "#": 3970 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3971 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3972 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 3974 + }, + "positionPrev": { + "#": 3977 + }, + "anglePrev": 0, + "axes": { + "#": 3978 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3953 + }, + "sleepCounter": 0, + "region": { + "#": 3984 + } + }, + [ + { + "#": 3953 + } + ], + [ + { + "#": 3956 + }, + { + "#": 3957 + }, + { + "#": 3958 + }, + { + "#": 3959 + }, + { + "#": 3960 + }, + { + "#": 3961 + }, + { + "#": 3962 + }, + { + "#": 3963 + }, + { + "#": 3964 + }, + { + "#": 3965 + } + ], + { + "x": 578.97793, + "y": 329.69152, + "index": 0, + "body": { + "#": 3953 + }, + "isInternal": false + }, + { + "x": 576.07193, + "y": 333.69152, + "index": 1, + "body": { + "#": 3953 + }, + "isInternal": false + }, + { + "x": 571.36993, + "y": 335.21952, + "index": 2, + "body": { + "#": 3953 + }, + "isInternal": false + }, + { + "x": 566.66793, + "y": 333.69152, + "index": 3, + "body": { + "#": 3953 + }, + "isInternal": false + }, + { + "x": 563.76193, + "y": 329.69152, + "index": 4, + "body": { + "#": 3953 + }, + "isInternal": false + }, + { + "x": 563.76193, + "y": 324.74752, + "index": 5, + "body": { + "#": 3953 + }, + "isInternal": false + }, + { + "x": 566.66793, + "y": 320.74752, + "index": 6, + "body": { + "#": 3953 + }, + "isInternal": false + }, + { + "x": 571.36993, + "y": 319.21952, + "index": 7, + "body": { + "#": 3953 + }, + "isInternal": false + }, + { + "x": 576.07193, + "y": 320.74752, + "index": 8, + "body": { + "#": 3953 + }, + "isInternal": false + }, + { + "x": 578.97793, + "y": 324.74752, + "index": 9, + "body": { + "#": 3953 + }, + "isInternal": false + }, + { + "x": 571.36993, + "y": 327.21952 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.06827, + "y": 1.54426 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 3973 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3975 + }, + "max": { + "#": 3976 + } + }, + { + "x": 563.76193, + "y": 319.21952 + }, + { + "x": 578.97793, + "y": 335.21952 + }, + { + "x": 571.44087, + "y": 325.35242 + }, + [ + { + "#": 3979 + }, + { + "#": 3980 + }, + { + "#": 3981 + }, + { + "#": 3982 + }, + { + "#": 3983 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,6,6", + "startCol": 11, + "endCol": 12, + "startRow": 6, + "endRow": 6 + }, + { + "id": 124, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3986 + }, + "angle": 0, + "vertices": { + "#": 3987 + }, + "position": { + "#": 3998 + }, + "force": { + "#": 3999 + }, + "torque": 0, + "positionImpulse": { + "#": 4000 + }, + "constraintImpulse": { + "#": 4001 + }, + "totalContacts": 0, + "speed": 2.10444, + "angularSpeed": 0, + "velocity": { + "#": 4002 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4003 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4004 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4006 + }, + "positionPrev": { + "#": 4009 + }, + "anglePrev": 0, + "axes": { + "#": 4010 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 3985 + }, + "sleepCounter": 0, + "region": { + "#": 4016 + } + }, + [ + { + "#": 3985 + } + ], + [ + { + "#": 3988 + }, + { + "#": 3989 + }, + { + "#": 3990 + }, + { + "#": 3991 + }, + { + "#": 3992 + }, + { + "#": 3993 + }, + { + "#": 3994 + }, + { + "#": 3995 + }, + { + "#": 3996 + }, + { + "#": 3997 + } + ], + { + "x": 599.24037, + "y": 329.71431, + "index": 0, + "body": { + "#": 3985 + }, + "isInternal": false + }, + { + "x": 596.33437, + "y": 333.71431, + "index": 1, + "body": { + "#": 3985 + }, + "isInternal": false + }, + { + "x": 591.63237, + "y": 335.24231, + "index": 2, + "body": { + "#": 3985 + }, + "isInternal": false + }, + { + "x": 586.93037, + "y": 333.71431, + "index": 3, + "body": { + "#": 3985 + }, + "isInternal": false + }, + { + "x": 584.02437, + "y": 329.71431, + "index": 4, + "body": { + "#": 3985 + }, + "isInternal": false + }, + { + "x": 584.02437, + "y": 324.77031, + "index": 5, + "body": { + "#": 3985 + }, + "isInternal": false + }, + { + "x": 586.93037, + "y": 320.77031, + "index": 6, + "body": { + "#": 3985 + }, + "isInternal": false + }, + { + "x": 591.63237, + "y": 319.24231, + "index": 7, + "body": { + "#": 3985 + }, + "isInternal": false + }, + { + "x": 596.33437, + "y": 320.77031, + "index": 8, + "body": { + "#": 3985 + }, + "isInternal": false + }, + { + "x": 599.24037, + "y": 324.77031, + "index": 9, + "body": { + "#": 3985 + }, + "isInternal": false + }, + { + "x": 591.63237, + "y": 327.24231 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.0535, + "y": 1.55214 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4005 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4007 + }, + "max": { + "#": 4008 + } + }, + { + "x": 584.02437, + "y": 319.24231 + }, + { + "x": 599.24037, + "y": 335.24231 + }, + { + "x": 591.68812, + "y": 325.36149 + }, + [ + { + "#": 4011 + }, + { + "#": 4012 + }, + { + "#": 4013 + }, + { + "#": 4014 + }, + { + "#": 4015 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,6,6", + "startCol": 12, + "endCol": 12, + "startRow": 6, + "endRow": 6 + }, + { + "id": 125, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4018 + }, + "angle": 0, + "vertices": { + "#": 4019 + }, + "position": { + "#": 4030 + }, + "force": { + "#": 4031 + }, + "torque": 0, + "positionImpulse": { + "#": 4032 + }, + "constraintImpulse": { + "#": 4033 + }, + "totalContacts": 0, + "speed": 2.70018, + "angularSpeed": 0, + "velocity": { + "#": 4034 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4035 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4036 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4038 + }, + "positionPrev": { + "#": 4041 + }, + "anglePrev": 0, + "axes": { + "#": 4042 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4017 + }, + "sleepCounter": 0, + "region": { + "#": 4048 + } + }, + [ + { + "#": 4017 + } + ], + [ + { + "#": 4020 + }, + { + "#": 4021 + }, + { + "#": 4022 + }, + { + "#": 4023 + }, + { + "#": 4024 + }, + { + "#": 4025 + }, + { + "#": 4026 + }, + { + "#": 4027 + }, + { + "#": 4028 + }, + { + "#": 4029 + } + ], + { + "x": 215.37321, + "y": 353.05818, + "index": 0, + "body": { + "#": 4017 + }, + "isInternal": false + }, + { + "x": 212.46721, + "y": 357.05818, + "index": 1, + "body": { + "#": 4017 + }, + "isInternal": false + }, + { + "x": 207.76521, + "y": 358.58618, + "index": 2, + "body": { + "#": 4017 + }, + "isInternal": false + }, + { + "x": 203.06321, + "y": 357.05818, + "index": 3, + "body": { + "#": 4017 + }, + "isInternal": false + }, + { + "x": 200.15721, + "y": 353.05818, + "index": 4, + "body": { + "#": 4017 + }, + "isInternal": false + }, + { + "x": 200.15721, + "y": 348.11418, + "index": 5, + "body": { + "#": 4017 + }, + "isInternal": false + }, + { + "x": 203.06321, + "y": 344.11418, + "index": 6, + "body": { + "#": 4017 + }, + "isInternal": false + }, + { + "x": 207.76521, + "y": 342.58618, + "index": 7, + "body": { + "#": 4017 + }, + "isInternal": false + }, + { + "x": 212.46721, + "y": 344.11418, + "index": 8, + "body": { + "#": 4017 + }, + "isInternal": false + }, + { + "x": 215.37321, + "y": 348.11418, + "index": 9, + "body": { + "#": 4017 + }, + "isInternal": false + }, + { + "x": 207.76521, + "y": 350.58618 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.07407, + "y": 2.21989 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4037 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4039 + }, + "max": { + "#": 4040 + } + }, + { + "x": 200.15721, + "y": 342.58618 + }, + { + "x": 215.37321, + "y": 358.58618 + }, + { + "x": 207.68738, + "y": 347.94026 + }, + [ + { + "#": 4043 + }, + { + "#": 4044 + }, + { + "#": 4045 + }, + { + "#": 4046 + }, + { + "#": 4047 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,7,7", + "startCol": 4, + "endCol": 4, + "startRow": 7, + "endRow": 7 + }, + { + "id": 126, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4050 + }, + "angle": 0, + "vertices": { + "#": 4051 + }, + "position": { + "#": 4062 + }, + "force": { + "#": 4063 + }, + "torque": 0, + "positionImpulse": { + "#": 4064 + }, + "constraintImpulse": { + "#": 4065 + }, + "totalContacts": 0, + "speed": 2.81223, + "angularSpeed": 0, + "velocity": { + "#": 4066 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4067 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4068 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4070 + }, + "positionPrev": { + "#": 4073 + }, + "anglePrev": 0, + "axes": { + "#": 4074 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4049 + }, + "sleepCounter": 0, + "region": { + "#": 4080 + } + }, + [ + { + "#": 4049 + } + ], + [ + { + "#": 4052 + }, + { + "#": 4053 + }, + { + "#": 4054 + }, + { + "#": 4055 + }, + { + "#": 4056 + }, + { + "#": 4057 + }, + { + "#": 4058 + }, + { + "#": 4059 + }, + { + "#": 4060 + }, + { + "#": 4061 + } + ], + { + "x": 235.64407, + "y": 353.69487, + "index": 0, + "body": { + "#": 4049 + }, + "isInternal": false + }, + { + "x": 232.73807, + "y": 357.69487, + "index": 1, + "body": { + "#": 4049 + }, + "isInternal": false + }, + { + "x": 228.03607, + "y": 359.22287, + "index": 2, + "body": { + "#": 4049 + }, + "isInternal": false + }, + { + "x": 223.33407, + "y": 357.69487, + "index": 3, + "body": { + "#": 4049 + }, + "isInternal": false + }, + { + "x": 220.42807, + "y": 353.69487, + "index": 4, + "body": { + "#": 4049 + }, + "isInternal": false + }, + { + "x": 220.42807, + "y": 348.75087, + "index": 5, + "body": { + "#": 4049 + }, + "isInternal": false + }, + { + "x": 223.33407, + "y": 344.75087, + "index": 6, + "body": { + "#": 4049 + }, + "isInternal": false + }, + { + "x": 228.03607, + "y": 343.22287, + "index": 7, + "body": { + "#": 4049 + }, + "isInternal": false + }, + { + "x": 232.73807, + "y": 344.75087, + "index": 8, + "body": { + "#": 4049 + }, + "isInternal": false + }, + { + "x": 235.64407, + "y": 348.75087, + "index": 9, + "body": { + "#": 4049 + }, + "isInternal": false + }, + { + "x": 228.03607, + "y": 351.22287 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.08658, + "y": 2.22131 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4069 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4071 + }, + "max": { + "#": 4072 + } + }, + { + "x": 220.42807, + "y": 343.22287 + }, + { + "x": 235.64407, + "y": 359.22287 + }, + { + "x": 227.94454, + "y": 348.61025 + }, + [ + { + "#": 4075 + }, + { + "#": 4076 + }, + { + "#": 4077 + }, + { + "#": 4078 + }, + { + "#": 4079 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,7,7", + "startCol": 4, + "endCol": 4, + "startRow": 7, + "endRow": 7 + }, + { + "id": 127, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4082 + }, + "angle": 0, + "vertices": { + "#": 4083 + }, + "position": { + "#": 4094 + }, + "force": { + "#": 4095 + }, + "torque": 0, + "positionImpulse": { + "#": 4096 + }, + "constraintImpulse": { + "#": 4097 + }, + "totalContacts": 0, + "speed": 2.30269, + "angularSpeed": 0, + "velocity": { + "#": 4098 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4099 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4100 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4102 + }, + "positionPrev": { + "#": 4105 + }, + "anglePrev": 0, + "axes": { + "#": 4106 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4081 + }, + "sleepCounter": 0, + "region": { + "#": 4112 + } + }, + [ + { + "#": 4081 + } + ], + [ + { + "#": 4084 + }, + { + "#": 4085 + }, + { + "#": 4086 + }, + { + "#": 4087 + }, + { + "#": 4088 + }, + { + "#": 4089 + }, + { + "#": 4090 + }, + { + "#": 4091 + }, + { + "#": 4092 + }, + { + "#": 4093 + } + ], + { + "x": 255.71959, + "y": 350.40318, + "index": 0, + "body": { + "#": 4081 + }, + "isInternal": false + }, + { + "x": 252.81359, + "y": 354.40318, + "index": 1, + "body": { + "#": 4081 + }, + "isInternal": false + }, + { + "x": 248.11159, + "y": 355.93118, + "index": 2, + "body": { + "#": 4081 + }, + "isInternal": false + }, + { + "x": 243.40959, + "y": 354.40318, + "index": 3, + "body": { + "#": 4081 + }, + "isInternal": false + }, + { + "x": 240.50359, + "y": 350.40318, + "index": 4, + "body": { + "#": 4081 + }, + "isInternal": false + }, + { + "x": 240.50359, + "y": 345.45918, + "index": 5, + "body": { + "#": 4081 + }, + "isInternal": false + }, + { + "x": 243.40959, + "y": 341.45918, + "index": 6, + "body": { + "#": 4081 + }, + "isInternal": false + }, + { + "x": 248.11159, + "y": 339.93118, + "index": 7, + "body": { + "#": 4081 + }, + "isInternal": false + }, + { + "x": 252.81359, + "y": 341.45918, + "index": 8, + "body": { + "#": 4081 + }, + "isInternal": false + }, + { + "x": 255.71959, + "y": 345.45918, + "index": 9, + "body": { + "#": 4081 + }, + "isInternal": false + }, + { + "x": 248.11159, + "y": 347.93118 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.05066, + "y": 1.90557 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4101 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4103 + }, + "max": { + "#": 4104 + } + }, + { + "x": 240.50359, + "y": 339.93118 + }, + { + "x": 255.71959, + "y": 355.93118 + }, + { + "x": 248.05811, + "y": 345.83428 + }, + [ + { + "#": 4107 + }, + { + "#": 4108 + }, + { + "#": 4109 + }, + { + "#": 4110 + }, + { + "#": 4111 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,7,7", + "startCol": 5, + "endCol": 5, + "startRow": 7, + "endRow": 7 + }, + { + "id": 128, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4114 + }, + "angle": 0, + "vertices": { + "#": 4115 + }, + "position": { + "#": 4126 + }, + "force": { + "#": 4127 + }, + "torque": 0, + "positionImpulse": { + "#": 4128 + }, + "constraintImpulse": { + "#": 4129 + }, + "totalContacts": 0, + "speed": 1.53349, + "angularSpeed": 0, + "velocity": { + "#": 4130 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4131 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4132 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4134 + }, + "positionPrev": { + "#": 4137 + }, + "anglePrev": 0, + "axes": { + "#": 4138 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4113 + }, + "sleepCounter": 0, + "region": { + "#": 4144 + } + }, + [ + { + "#": 4113 + } + ], + [ + { + "#": 4116 + }, + { + "#": 4117 + }, + { + "#": 4118 + }, + { + "#": 4119 + }, + { + "#": 4120 + }, + { + "#": 4121 + }, + { + "#": 4122 + }, + { + "#": 4123 + }, + { + "#": 4124 + }, + { + "#": 4125 + } + ], + { + "x": 275.9419, + "y": 347.88781, + "index": 0, + "body": { + "#": 4113 + }, + "isInternal": false + }, + { + "x": 273.0359, + "y": 351.88781, + "index": 1, + "body": { + "#": 4113 + }, + "isInternal": false + }, + { + "x": 268.3339, + "y": 353.41581, + "index": 2, + "body": { + "#": 4113 + }, + "isInternal": false + }, + { + "x": 263.6319, + "y": 351.88781, + "index": 3, + "body": { + "#": 4113 + }, + "isInternal": false + }, + { + "x": 260.7259, + "y": 347.88781, + "index": 4, + "body": { + "#": 4113 + }, + "isInternal": false + }, + { + "x": 260.7259, + "y": 342.94381, + "index": 5, + "body": { + "#": 4113 + }, + "isInternal": false + }, + { + "x": 263.6319, + "y": 338.94381, + "index": 6, + "body": { + "#": 4113 + }, + "isInternal": false + }, + { + "x": 268.3339, + "y": 337.41581, + "index": 7, + "body": { + "#": 4113 + }, + "isInternal": false + }, + { + "x": 273.0359, + "y": 338.94381, + "index": 8, + "body": { + "#": 4113 + }, + "isInternal": false + }, + { + "x": 275.9419, + "y": 342.94381, + "index": 9, + "body": { + "#": 4113 + }, + "isInternal": false + }, + { + "x": 268.3339, + "y": 345.41581 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01514, + "y": 1.39245 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4133 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4135 + }, + "max": { + "#": 4136 + } + }, + { + "x": 260.7259, + "y": 337.41581 + }, + { + "x": 275.9419, + "y": 353.41581 + }, + { + "x": 268.32006, + "y": 344.09946 + }, + [ + { + "#": 4139 + }, + { + "#": 4140 + }, + { + "#": 4141 + }, + { + "#": 4142 + }, + { + "#": 4143 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,7,7", + "startCol": 5, + "endCol": 5, + "startRow": 7, + "endRow": 7 + }, + { + "id": 129, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4146 + }, + "angle": 0, + "vertices": { + "#": 4147 + }, + "position": { + "#": 4158 + }, + "force": { + "#": 4159 + }, + "torque": 0, + "positionImpulse": { + "#": 4160 + }, + "constraintImpulse": { + "#": 4161 + }, + "totalContacts": 0, + "speed": 1.51932, + "angularSpeed": 0, + "velocity": { + "#": 4162 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4163 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4164 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4166 + }, + "positionPrev": { + "#": 4169 + }, + "anglePrev": 0, + "axes": { + "#": 4170 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4145 + }, + "sleepCounter": 0, + "region": { + "#": 4176 + } + }, + [ + { + "#": 4145 + } + ], + [ + { + "#": 4148 + }, + { + "#": 4149 + }, + { + "#": 4150 + }, + { + "#": 4151 + }, + { + "#": 4152 + }, + { + "#": 4153 + }, + { + "#": 4154 + }, + { + "#": 4155 + }, + { + "#": 4156 + }, + { + "#": 4157 + } + ], + { + "x": 296.23571, + "y": 346.00885, + "index": 0, + "body": { + "#": 4145 + }, + "isInternal": false + }, + { + "x": 293.32971, + "y": 350.00885, + "index": 1, + "body": { + "#": 4145 + }, + "isInternal": false + }, + { + "x": 288.62771, + "y": 351.53685, + "index": 2, + "body": { + "#": 4145 + }, + "isInternal": false + }, + { + "x": 283.92571, + "y": 350.00885, + "index": 3, + "body": { + "#": 4145 + }, + "isInternal": false + }, + { + "x": 281.01971, + "y": 346.00885, + "index": 4, + "body": { + "#": 4145 + }, + "isInternal": false + }, + { + "x": 281.01971, + "y": 341.06485, + "index": 5, + "body": { + "#": 4145 + }, + "isInternal": false + }, + { + "x": 283.92571, + "y": 337.06485, + "index": 6, + "body": { + "#": 4145 + }, + "isInternal": false + }, + { + "x": 288.62771, + "y": 335.53685, + "index": 7, + "body": { + "#": 4145 + }, + "isInternal": false + }, + { + "x": 293.32971, + "y": 337.06485, + "index": 8, + "body": { + "#": 4145 + }, + "isInternal": false + }, + { + "x": 296.23571, + "y": 341.06485, + "index": 9, + "body": { + "#": 4145 + }, + "isInternal": false + }, + { + "x": 288.62771, + "y": 343.53685 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.04644, + "y": 1.37781 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4165 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4167 + }, + "max": { + "#": 4168 + } + }, + { + "x": 281.01971, + "y": 335.53685 + }, + { + "x": 296.23571, + "y": 351.53685 + }, + { + "x": 288.58329, + "y": 342.26108 + }, + [ + { + "#": 4171 + }, + { + "#": 4172 + }, + { + "#": 4173 + }, + { + "#": 4174 + }, + { + "#": 4175 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,6,7", + "startCol": 5, + "endCol": 6, + "startRow": 6, + "endRow": 7 + }, + { + "id": 130, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4178 + }, + "angle": 0, + "vertices": { + "#": 4179 + }, + "position": { + "#": 4190 + }, + "force": { + "#": 4191 + }, + "torque": 0, + "positionImpulse": { + "#": 4192 + }, + "constraintImpulse": { + "#": 4193 + }, + "totalContacts": 0, + "speed": 1.31346, + "angularSpeed": 0, + "velocity": { + "#": 4194 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4195 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4196 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4198 + }, + "positionPrev": { + "#": 4201 + }, + "anglePrev": 0, + "axes": { + "#": 4202 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4177 + }, + "sleepCounter": 0, + "region": { + "#": 4208 + } + }, + [ + { + "#": 4177 + } + ], + [ + { + "#": 4180 + }, + { + "#": 4181 + }, + { + "#": 4182 + }, + { + "#": 4183 + }, + { + "#": 4184 + }, + { + "#": 4185 + }, + { + "#": 4186 + }, + { + "#": 4187 + }, + { + "#": 4188 + }, + { + "#": 4189 + } + ], + { + "x": 316.46124, + "y": 343.78231, + "index": 0, + "body": { + "#": 4177 + }, + "isInternal": false + }, + { + "x": 313.55524, + "y": 347.78231, + "index": 1, + "body": { + "#": 4177 + }, + "isInternal": false + }, + { + "x": 308.85324, + "y": 349.31031, + "index": 2, + "body": { + "#": 4177 + }, + "isInternal": false + }, + { + "x": 304.15124, + "y": 347.78231, + "index": 3, + "body": { + "#": 4177 + }, + "isInternal": false + }, + { + "x": 301.24524, + "y": 343.78231, + "index": 4, + "body": { + "#": 4177 + }, + "isInternal": false + }, + { + "x": 301.24524, + "y": 338.83831, + "index": 5, + "body": { + "#": 4177 + }, + "isInternal": false + }, + { + "x": 304.15124, + "y": 334.83831, + "index": 6, + "body": { + "#": 4177 + }, + "isInternal": false + }, + { + "x": 308.85324, + "y": 333.31031, + "index": 7, + "body": { + "#": 4177 + }, + "isInternal": false + }, + { + "x": 313.55524, + "y": 334.83831, + "index": 8, + "body": { + "#": 4177 + }, + "isInternal": false + }, + { + "x": 316.46124, + "y": 338.83831, + "index": 9, + "body": { + "#": 4177 + }, + "isInternal": false + }, + { + "x": 308.85324, + "y": 341.31031 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.05786, + "y": 1.46796 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4197 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4199 + }, + "max": { + "#": 4200 + } + }, + { + "x": 301.24524, + "y": 333.31031 + }, + { + "x": 316.46124, + "y": 349.31031 + }, + { + "x": 308.79491, + "y": 339.81568 + }, + [ + { + "#": 4203 + }, + { + "#": 4204 + }, + { + "#": 4205 + }, + { + "#": 4206 + }, + { + "#": 4207 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,6,6,7", + "startCol": 6, + "endCol": 6, + "startRow": 6, + "endRow": 7 + }, + { + "id": 131, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4210 + }, + "angle": 0, + "vertices": { + "#": 4211 + }, + "position": { + "#": 4222 + }, + "force": { + "#": 4223 + }, + "torque": 0, + "positionImpulse": { + "#": 4224 + }, + "constraintImpulse": { + "#": 4225 + }, + "totalContacts": 0, + "speed": 1.89214, + "angularSpeed": 0, + "velocity": { + "#": 4226 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4227 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4228 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4230 + }, + "positionPrev": { + "#": 4233 + }, + "anglePrev": 0, + "axes": { + "#": 4234 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4209 + }, + "sleepCounter": 0, + "region": { + "#": 4240 + } + }, + [ + { + "#": 4209 + } + ], + [ + { + "#": 4212 + }, + { + "#": 4213 + }, + { + "#": 4214 + }, + { + "#": 4215 + }, + { + "#": 4216 + }, + { + "#": 4217 + }, + { + "#": 4218 + }, + { + "#": 4219 + }, + { + "#": 4220 + }, + { + "#": 4221 + } + ], + { + "x": 336.27389, + "y": 348.53811, + "index": 0, + "body": { + "#": 4209 + }, + "isInternal": false + }, + { + "x": 333.36789, + "y": 352.53811, + "index": 1, + "body": { + "#": 4209 + }, + "isInternal": false + }, + { + "x": 328.66589, + "y": 354.06611, + "index": 2, + "body": { + "#": 4209 + }, + "isInternal": false + }, + { + "x": 323.96389, + "y": 352.53811, + "index": 3, + "body": { + "#": 4209 + }, + "isInternal": false + }, + { + "x": 321.05789, + "y": 348.53811, + "index": 4, + "body": { + "#": 4209 + }, + "isInternal": false + }, + { + "x": 321.05789, + "y": 343.59411, + "index": 5, + "body": { + "#": 4209 + }, + "isInternal": false + }, + { + "x": 323.96389, + "y": 339.59411, + "index": 6, + "body": { + "#": 4209 + }, + "isInternal": false + }, + { + "x": 328.66589, + "y": 338.06611, + "index": 7, + "body": { + "#": 4209 + }, + "isInternal": false + }, + { + "x": 333.36789, + "y": 339.59411, + "index": 8, + "body": { + "#": 4209 + }, + "isInternal": false + }, + { + "x": 336.27389, + "y": 343.59411, + "index": 9, + "body": { + "#": 4209 + }, + "isInternal": false + }, + { + "x": 328.66589, + "y": 346.06611 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.04246, + "y": 1.69311 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4229 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4231 + }, + "max": { + "#": 4232 + } + }, + { + "x": 321.05789, + "y": 338.06611 + }, + { + "x": 336.27389, + "y": 354.06611 + }, + { + "x": 328.70741, + "y": 344.22174 + }, + [ + { + "#": 4235 + }, + { + "#": 4236 + }, + { + "#": 4237 + }, + { + "#": 4238 + }, + { + "#": 4239 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,7,7", + "startCol": 6, + "endCol": 7, + "startRow": 7, + "endRow": 7 + }, + { + "id": 132, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4242 + }, + "angle": 0, + "vertices": { + "#": 4243 + }, + "position": { + "#": 4254 + }, + "force": { + "#": 4255 + }, + "torque": 0, + "positionImpulse": { + "#": 4256 + }, + "constraintImpulse": { + "#": 4257 + }, + "totalContacts": 0, + "speed": 2.22002, + "angularSpeed": 0, + "velocity": { + "#": 4258 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4259 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4260 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4262 + }, + "positionPrev": { + "#": 4265 + }, + "anglePrev": 0, + "axes": { + "#": 4266 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4241 + }, + "sleepCounter": 0, + "region": { + "#": 4272 + } + }, + [ + { + "#": 4241 + } + ], + [ + { + "#": 4244 + }, + { + "#": 4245 + }, + { + "#": 4246 + }, + { + "#": 4247 + }, + { + "#": 4248 + }, + { + "#": 4249 + }, + { + "#": 4250 + }, + { + "#": 4251 + }, + { + "#": 4252 + }, + { + "#": 4253 + } + ], + { + "x": 356.65495, + "y": 349.54319, + "index": 0, + "body": { + "#": 4241 + }, + "isInternal": false + }, + { + "x": 353.74895, + "y": 353.54319, + "index": 1, + "body": { + "#": 4241 + }, + "isInternal": false + }, + { + "x": 349.04695, + "y": 355.07119, + "index": 2, + "body": { + "#": 4241 + }, + "isInternal": false + }, + { + "x": 344.34495, + "y": 353.54319, + "index": 3, + "body": { + "#": 4241 + }, + "isInternal": false + }, + { + "x": 341.43895, + "y": 349.54319, + "index": 4, + "body": { + "#": 4241 + }, + "isInternal": false + }, + { + "x": 341.43895, + "y": 344.59919, + "index": 5, + "body": { + "#": 4241 + }, + "isInternal": false + }, + { + "x": 344.34495, + "y": 340.59919, + "index": 6, + "body": { + "#": 4241 + }, + "isInternal": false + }, + { + "x": 349.04695, + "y": 339.07119, + "index": 7, + "body": { + "#": 4241 + }, + "isInternal": false + }, + { + "x": 353.74895, + "y": 340.59919, + "index": 8, + "body": { + "#": 4241 + }, + "isInternal": false + }, + { + "x": 356.65495, + "y": 344.59919, + "index": 9, + "body": { + "#": 4241 + }, + "isInternal": false + }, + { + "x": 349.04695, + "y": 347.07119 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.05082, + "y": 1.95005 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4261 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4263 + }, + "max": { + "#": 4264 + } + }, + { + "x": 341.43895, + "y": 339.07119 + }, + { + "x": 356.65495, + "y": 355.07119 + }, + { + "x": 349.09766, + "y": 344.84893 + }, + [ + { + "#": 4267 + }, + { + "#": 4268 + }, + { + "#": 4269 + }, + { + "#": 4270 + }, + { + "#": 4271 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,7,7", + "startCol": 7, + "endCol": 7, + "startRow": 7, + "endRow": 7 + }, + { + "id": 133, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4274 + }, + "angle": 0, + "vertices": { + "#": 4275 + }, + "position": { + "#": 4286 + }, + "force": { + "#": 4287 + }, + "torque": 0, + "positionImpulse": { + "#": 4288 + }, + "constraintImpulse": { + "#": 4289 + }, + "totalContacts": 0, + "speed": 2.68523, + "angularSpeed": 0, + "velocity": { + "#": 4290 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4291 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4292 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4294 + }, + "positionPrev": { + "#": 4297 + }, + "anglePrev": 0, + "axes": { + "#": 4298 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4273 + }, + "sleepCounter": 0, + "region": { + "#": 4304 + } + }, + [ + { + "#": 4273 + } + ], + [ + { + "#": 4276 + }, + { + "#": 4277 + }, + { + "#": 4278 + }, + { + "#": 4279 + }, + { + "#": 4280 + }, + { + "#": 4281 + }, + { + "#": 4282 + }, + { + "#": 4283 + }, + { + "#": 4284 + }, + { + "#": 4285 + } + ], + { + "x": 376.66833, + "y": 353.26164, + "index": 0, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 373.76233, + "y": 357.26164, + "index": 1, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 369.06033, + "y": 358.78964, + "index": 2, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 364.35833, + "y": 357.26164, + "index": 3, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 361.45233, + "y": 353.26164, + "index": 4, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 361.45233, + "y": 348.31764, + "index": 5, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 364.35833, + "y": 344.31764, + "index": 6, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 369.06033, + "y": 342.78964, + "index": 7, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 373.76233, + "y": 344.31764, + "index": 8, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 376.66833, + "y": 348.31764, + "index": 9, + "body": { + "#": 4273 + }, + "isInternal": false + }, + { + "x": 369.06033, + "y": 350.78964 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.07876, + "y": 2.12395 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4293 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4295 + }, + "max": { + "#": 4296 + } + }, + { + "x": 361.45233, + "y": 342.78964 + }, + { + "x": 376.66833, + "y": 358.78964 + }, + { + "x": 369.13997, + "y": 348.3206 + }, + [ + { + "#": 4299 + }, + { + "#": 4300 + }, + { + "#": 4301 + }, + { + "#": 4302 + }, + { + "#": 4303 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,7,7", + "startCol": 7, + "endCol": 7, + "startRow": 7, + "endRow": 7 + }, + { + "id": 134, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4306 + }, + "angle": 0, + "vertices": { + "#": 4307 + }, + "position": { + "#": 4318 + }, + "force": { + "#": 4319 + }, + "torque": 0, + "positionImpulse": { + "#": 4320 + }, + "constraintImpulse": { + "#": 4321 + }, + "totalContacts": 0, + "speed": 2.5098, + "angularSpeed": 0, + "velocity": { + "#": 4322 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4323 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4324 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4326 + }, + "positionPrev": { + "#": 4329 + }, + "anglePrev": 0, + "axes": { + "#": 4330 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4305 + }, + "sleepCounter": 0, + "region": { + "#": 4336 + } + }, + [ + { + "#": 4305 + } + ], + [ + { + "#": 4308 + }, + { + "#": 4309 + }, + { + "#": 4310 + }, + { + "#": 4311 + }, + { + "#": 4312 + }, + { + "#": 4313 + }, + { + "#": 4314 + }, + { + "#": 4315 + }, + { + "#": 4316 + }, + { + "#": 4317 + } + ], + { + "x": 397.02171, + "y": 352.45693, + "index": 0, + "body": { + "#": 4305 + }, + "isInternal": false + }, + { + "x": 394.11571, + "y": 356.45693, + "index": 1, + "body": { + "#": 4305 + }, + "isInternal": false + }, + { + "x": 389.41371, + "y": 357.98493, + "index": 2, + "body": { + "#": 4305 + }, + "isInternal": false + }, + { + "x": 384.71171, + "y": 356.45693, + "index": 3, + "body": { + "#": 4305 + }, + "isInternal": false + }, + { + "x": 381.80571, + "y": 352.45693, + "index": 4, + "body": { + "#": 4305 + }, + "isInternal": false + }, + { + "x": 381.80571, + "y": 347.51293, + "index": 5, + "body": { + "#": 4305 + }, + "isInternal": false + }, + { + "x": 384.71171, + "y": 343.51293, + "index": 6, + "body": { + "#": 4305 + }, + "isInternal": false + }, + { + "x": 389.41371, + "y": 341.98493, + "index": 7, + "body": { + "#": 4305 + }, + "isInternal": false + }, + { + "x": 394.11571, + "y": 343.51293, + "index": 8, + "body": { + "#": 4305 + }, + "isInternal": false + }, + { + "x": 397.02171, + "y": 347.51293, + "index": 9, + "body": { + "#": 4305 + }, + "isInternal": false + }, + { + "x": 389.41371, + "y": 349.98493 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.03947, + "y": 2.06369 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4325 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4327 + }, + "max": { + "#": 4328 + } + }, + { + "x": 381.80571, + "y": 341.98493 + }, + { + "x": 397.02171, + "y": 357.98493 + }, + { + "x": 389.45334, + "y": 347.59689 + }, + [ + { + "#": 4331 + }, + { + "#": 4332 + }, + { + "#": 4333 + }, + { + "#": 4334 + }, + { + "#": 4335 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,7,7", + "startCol": 7, + "endCol": 8, + "startRow": 7, + "endRow": 7 + }, + { + "id": 135, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4338 + }, + "angle": 0, + "vertices": { + "#": 4339 + }, + "position": { + "#": 4350 + }, + "force": { + "#": 4351 + }, + "torque": 0, + "positionImpulse": { + "#": 4352 + }, + "constraintImpulse": { + "#": 4353 + }, + "totalContacts": 0, + "speed": 2.42832, + "angularSpeed": 0, + "velocity": { + "#": 4354 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4355 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4356 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4358 + }, + "positionPrev": { + "#": 4361 + }, + "anglePrev": 0, + "axes": { + "#": 4362 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4337 + }, + "sleepCounter": 0, + "region": { + "#": 4368 + } + }, + [ + { + "#": 4337 + } + ], + [ + { + "#": 4340 + }, + { + "#": 4341 + }, + { + "#": 4342 + }, + { + "#": 4343 + }, + { + "#": 4344 + }, + { + "#": 4345 + }, + { + "#": 4346 + }, + { + "#": 4347 + }, + { + "#": 4348 + }, + { + "#": 4349 + } + ], + { + "x": 417.40656, + "y": 352.1843, + "index": 0, + "body": { + "#": 4337 + }, + "isInternal": false + }, + { + "x": 414.50056, + "y": 356.1843, + "index": 1, + "body": { + "#": 4337 + }, + "isInternal": false + }, + { + "x": 409.79856, + "y": 357.7123, + "index": 2, + "body": { + "#": 4337 + }, + "isInternal": false + }, + { + "x": 405.09656, + "y": 356.1843, + "index": 3, + "body": { + "#": 4337 + }, + "isInternal": false + }, + { + "x": 402.19056, + "y": 352.1843, + "index": 4, + "body": { + "#": 4337 + }, + "isInternal": false + }, + { + "x": 402.19056, + "y": 347.2403, + "index": 5, + "body": { + "#": 4337 + }, + "isInternal": false + }, + { + "x": 405.09656, + "y": 343.2403, + "index": 6, + "body": { + "#": 4337 + }, + "isInternal": false + }, + { + "x": 409.79856, + "y": 341.7123, + "index": 7, + "body": { + "#": 4337 + }, + "isInternal": false + }, + { + "x": 414.50056, + "y": 343.2403, + "index": 8, + "body": { + "#": 4337 + }, + "isInternal": false + }, + { + "x": 417.40656, + "y": 347.2403, + "index": 9, + "body": { + "#": 4337 + }, + "isInternal": false + }, + { + "x": 409.79856, + "y": 349.7123 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02563, + "y": 2.00131 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4357 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4359 + }, + "max": { + "#": 4360 + } + }, + { + "x": 402.19056, + "y": 341.7123 + }, + { + "x": 417.40656, + "y": 357.7123 + }, + { + "x": 409.77172, + "y": 347.42186 + }, + [ + { + "#": 4363 + }, + { + "#": 4364 + }, + { + "#": 4365 + }, + { + "#": 4366 + }, + { + "#": 4367 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,7,7", + "startCol": 8, + "endCol": 8, + "startRow": 7, + "endRow": 7 + }, + { + "id": 136, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4370 + }, + "angle": 0, + "vertices": { + "#": 4371 + }, + "position": { + "#": 4382 + }, + "force": { + "#": 4383 + }, + "torque": 0, + "positionImpulse": { + "#": 4384 + }, + "constraintImpulse": { + "#": 4385 + }, + "totalContacts": 0, + "speed": 2.36686, + "angularSpeed": 0, + "velocity": { + "#": 4386 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4387 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4388 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4390 + }, + "positionPrev": { + "#": 4393 + }, + "anglePrev": 0, + "axes": { + "#": 4394 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4369 + }, + "sleepCounter": 0, + "region": { + "#": 4400 + } + }, + [ + { + "#": 4369 + } + ], + [ + { + "#": 4372 + }, + { + "#": 4373 + }, + { + "#": 4374 + }, + { + "#": 4375 + }, + { + "#": 4376 + }, + { + "#": 4377 + }, + { + "#": 4378 + }, + { + "#": 4379 + }, + { + "#": 4380 + }, + { + "#": 4381 + } + ], + { + "x": 437.83101, + "y": 351.97237, + "index": 0, + "body": { + "#": 4369 + }, + "isInternal": false + }, + { + "x": 434.92501, + "y": 355.97237, + "index": 1, + "body": { + "#": 4369 + }, + "isInternal": false + }, + { + "x": 430.22301, + "y": 357.50037, + "index": 2, + "body": { + "#": 4369 + }, + "isInternal": false + }, + { + "x": 425.52101, + "y": 355.97237, + "index": 3, + "body": { + "#": 4369 + }, + "isInternal": false + }, + { + "x": 422.61501, + "y": 351.97237, + "index": 4, + "body": { + "#": 4369 + }, + "isInternal": false + }, + { + "x": 422.61501, + "y": 347.02837, + "index": 5, + "body": { + "#": 4369 + }, + "isInternal": false + }, + { + "x": 425.52101, + "y": 343.02837, + "index": 6, + "body": { + "#": 4369 + }, + "isInternal": false + }, + { + "x": 430.22301, + "y": 341.50037, + "index": 7, + "body": { + "#": 4369 + }, + "isInternal": false + }, + { + "x": 434.92501, + "y": 343.02837, + "index": 8, + "body": { + "#": 4369 + }, + "isInternal": false + }, + { + "x": 437.83101, + "y": 347.02837, + "index": 9, + "body": { + "#": 4369 + }, + "isInternal": false + }, + { + "x": 430.22301, + "y": 349.50037 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.1009, + "y": 1.94147 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4389 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4391 + }, + "max": { + "#": 4392 + } + }, + { + "x": 422.61501, + "y": 341.50037 + }, + { + "x": 437.83101, + "y": 357.50037 + }, + { + "x": 430.11968, + "y": 347.30967 + }, + [ + { + "#": 4395 + }, + { + "#": 4396 + }, + { + "#": 4397 + }, + { + "#": 4398 + }, + { + "#": 4399 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,7,7", + "startCol": 8, + "endCol": 9, + "startRow": 7, + "endRow": 7 + }, + { + "id": 137, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4402 + }, + "angle": 0, + "vertices": { + "#": 4403 + }, + "position": { + "#": 4414 + }, + "force": { + "#": 4415 + }, + "torque": 0, + "positionImpulse": { + "#": 4416 + }, + "constraintImpulse": { + "#": 4417 + }, + "totalContacts": 0, + "speed": 2.0814, + "angularSpeed": 0, + "velocity": { + "#": 4418 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4419 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4420 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4422 + }, + "positionPrev": { + "#": 4425 + }, + "anglePrev": 0, + "axes": { + "#": 4426 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4401 + }, + "sleepCounter": 0, + "region": { + "#": 4432 + } + }, + [ + { + "#": 4401 + } + ], + [ + { + "#": 4404 + }, + { + "#": 4405 + }, + { + "#": 4406 + }, + { + "#": 4407 + }, + { + "#": 4408 + }, + { + "#": 4409 + }, + { + "#": 4410 + }, + { + "#": 4411 + }, + { + "#": 4412 + }, + { + "#": 4413 + } + ], + { + "x": 458.27364, + "y": 350.87022, + "index": 0, + "body": { + "#": 4401 + }, + "isInternal": false + }, + { + "x": 455.36764, + "y": 354.87022, + "index": 1, + "body": { + "#": 4401 + }, + "isInternal": false + }, + { + "x": 450.66564, + "y": 356.39822, + "index": 2, + "body": { + "#": 4401 + }, + "isInternal": false + }, + { + "x": 445.96364, + "y": 354.87022, + "index": 3, + "body": { + "#": 4401 + }, + "isInternal": false + }, + { + "x": 443.05764, + "y": 350.87022, + "index": 4, + "body": { + "#": 4401 + }, + "isInternal": false + }, + { + "x": 443.05764, + "y": 345.92622, + "index": 5, + "body": { + "#": 4401 + }, + "isInternal": false + }, + { + "x": 445.96364, + "y": 341.92622, + "index": 6, + "body": { + "#": 4401 + }, + "isInternal": false + }, + { + "x": 450.66564, + "y": 340.39822, + "index": 7, + "body": { + "#": 4401 + }, + "isInternal": false + }, + { + "x": 455.36764, + "y": 341.92622, + "index": 8, + "body": { + "#": 4401 + }, + "isInternal": false + }, + { + "x": 458.27364, + "y": 345.92622, + "index": 9, + "body": { + "#": 4401 + }, + "isInternal": false + }, + { + "x": 450.66564, + "y": 348.39822 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.14845, + "y": 1.68122 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4421 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4423 + }, + "max": { + "#": 4424 + } + }, + { + "x": 443.05764, + "y": 340.39822 + }, + { + "x": 458.27364, + "y": 356.39822 + }, + { + "x": 450.51585, + "y": 346.61488 + }, + [ + { + "#": 4427 + }, + { + "#": 4428 + }, + { + "#": 4429 + }, + { + "#": 4430 + }, + { + "#": 4431 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,7,7", + "startCol": 9, + "endCol": 9, + "startRow": 7, + "endRow": 7 + }, + { + "id": 138, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4434 + }, + "angle": 0, + "vertices": { + "#": 4435 + }, + "position": { + "#": 4446 + }, + "force": { + "#": 4447 + }, + "torque": 0, + "positionImpulse": { + "#": 4448 + }, + "constraintImpulse": { + "#": 4449 + }, + "totalContacts": 0, + "speed": 0.91437, + "angularSpeed": 0, + "velocity": { + "#": 4450 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4451 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4452 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4454 + }, + "positionPrev": { + "#": 4457 + }, + "anglePrev": 0, + "axes": { + "#": 4458 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4433 + }, + "sleepCounter": 0, + "region": { + "#": 4464 + } + }, + [ + { + "#": 4433 + } + ], + [ + { + "#": 4436 + }, + { + "#": 4437 + }, + { + "#": 4438 + }, + { + "#": 4439 + }, + { + "#": 4440 + }, + { + "#": 4441 + }, + { + "#": 4442 + }, + { + "#": 4443 + }, + { + "#": 4444 + }, + { + "#": 4445 + } + ], + { + "x": 477.65316, + "y": 344.25268, + "index": 0, + "body": { + "#": 4433 + }, + "isInternal": false + }, + { + "x": 474.74716, + "y": 348.25268, + "index": 1, + "body": { + "#": 4433 + }, + "isInternal": false + }, + { + "x": 470.04516, + "y": 349.78068, + "index": 2, + "body": { + "#": 4433 + }, + "isInternal": false + }, + { + "x": 465.34316, + "y": 348.25268, + "index": 3, + "body": { + "#": 4433 + }, + "isInternal": false + }, + { + "x": 462.43716, + "y": 344.25268, + "index": 4, + "body": { + "#": 4433 + }, + "isInternal": false + }, + { + "x": 462.43716, + "y": 339.30868, + "index": 5, + "body": { + "#": 4433 + }, + "isInternal": false + }, + { + "x": 465.34316, + "y": 335.30868, + "index": 6, + "body": { + "#": 4433 + }, + "isInternal": false + }, + { + "x": 470.04516, + "y": 333.78068, + "index": 7, + "body": { + "#": 4433 + }, + "isInternal": false + }, + { + "x": 474.74716, + "y": 335.30868, + "index": 8, + "body": { + "#": 4433 + }, + "isInternal": false + }, + { + "x": 477.65316, + "y": 339.30868, + "index": 9, + "body": { + "#": 4433 + }, + "isInternal": false + }, + { + "x": 470.04516, + "y": 341.78068 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.12317, + "y": 1.05756 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4453 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4455 + }, + "max": { + "#": 4456 + } + }, + { + "x": 462.43716, + "y": 333.78068 + }, + { + "x": 477.65316, + "y": 349.78068 + }, + { + "x": 470.16589, + "y": 341.00188 + }, + [ + { + "#": 4459 + }, + { + "#": 4460 + }, + { + "#": 4461 + }, + { + "#": 4462 + }, + { + "#": 4463 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,6,7", + "startCol": 9, + "endCol": 9, + "startRow": 6, + "endRow": 7 + }, + { + "id": 139, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4466 + }, + "angle": 0, + "vertices": { + "#": 4467 + }, + "position": { + "#": 4478 + }, + "force": { + "#": 4479 + }, + "torque": 0, + "positionImpulse": { + "#": 4480 + }, + "constraintImpulse": { + "#": 4481 + }, + "totalContacts": 0, + "speed": 0.6438, + "angularSpeed": 0, + "velocity": { + "#": 4482 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4483 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4484 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4486 + }, + "positionPrev": { + "#": 4489 + }, + "anglePrev": 0, + "axes": { + "#": 4490 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4465 + }, + "sleepCounter": 0, + "region": { + "#": 4496 + } + }, + [ + { + "#": 4465 + } + ], + [ + { + "#": 4468 + }, + { + "#": 4469 + }, + { + "#": 4470 + }, + { + "#": 4471 + }, + { + "#": 4472 + }, + { + "#": 4473 + }, + { + "#": 4474 + }, + { + "#": 4475 + }, + { + "#": 4476 + }, + { + "#": 4477 + } + ], + { + "x": 498.10579, + "y": 343.29181, + "index": 0, + "body": { + "#": 4465 + }, + "isInternal": false + }, + { + "x": 495.19979, + "y": 347.29181, + "index": 1, + "body": { + "#": 4465 + }, + "isInternal": false + }, + { + "x": 490.49779, + "y": 348.81981, + "index": 2, + "body": { + "#": 4465 + }, + "isInternal": false + }, + { + "x": 485.79579, + "y": 347.29181, + "index": 3, + "body": { + "#": 4465 + }, + "isInternal": false + }, + { + "x": 482.88979, + "y": 343.29181, + "index": 4, + "body": { + "#": 4465 + }, + "isInternal": false + }, + { + "x": 482.88979, + "y": 338.34781, + "index": 5, + "body": { + "#": 4465 + }, + "isInternal": false + }, + { + "x": 485.79579, + "y": 334.34781, + "index": 6, + "body": { + "#": 4465 + }, + "isInternal": false + }, + { + "x": 490.49779, + "y": 332.81981, + "index": 7, + "body": { + "#": 4465 + }, + "isInternal": false + }, + { + "x": 495.19979, + "y": 334.34781, + "index": 8, + "body": { + "#": 4465 + }, + "isInternal": false + }, + { + "x": 498.10579, + "y": 338.34781, + "index": 9, + "body": { + "#": 4465 + }, + "isInternal": false + }, + { + "x": 490.49779, + "y": 340.81981 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.04709, + "y": 0.81839 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4485 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4487 + }, + "max": { + "#": 4488 + } + }, + { + "x": 482.88979, + "y": 332.81981 + }, + { + "x": 498.10579, + "y": 348.81981 + }, + { + "x": 490.54394, + "y": 340.40456 + }, + [ + { + "#": 4491 + }, + { + "#": 4492 + }, + { + "#": 4493 + }, + { + "#": 4494 + }, + { + "#": 4495 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,6,7", + "startCol": 10, + "endCol": 10, + "startRow": 6, + "endRow": 7 + }, + { + "id": 140, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4498 + }, + "angle": 0, + "vertices": { + "#": 4499 + }, + "position": { + "#": 4510 + }, + "force": { + "#": 4511 + }, + "torque": 0, + "positionImpulse": { + "#": 4512 + }, + "constraintImpulse": { + "#": 4513 + }, + "totalContacts": 0, + "speed": 0.64196, + "angularSpeed": 0, + "velocity": { + "#": 4514 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4515 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4516 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4518 + }, + "positionPrev": { + "#": 4521 + }, + "anglePrev": 0, + "axes": { + "#": 4522 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4497 + }, + "sleepCounter": 0, + "region": { + "#": 4528 + } + }, + [ + { + "#": 4497 + } + ], + [ + { + "#": 4500 + }, + { + "#": 4501 + }, + { + "#": 4502 + }, + { + "#": 4503 + }, + { + "#": 4504 + }, + { + "#": 4505 + }, + { + "#": 4506 + }, + { + "#": 4507 + }, + { + "#": 4508 + }, + { + "#": 4509 + } + ], + { + "x": 518.58176, + "y": 343.28105, + "index": 0, + "body": { + "#": 4497 + }, + "isInternal": false + }, + { + "x": 515.67576, + "y": 347.28105, + "index": 1, + "body": { + "#": 4497 + }, + "isInternal": false + }, + { + "x": 510.97376, + "y": 348.80905, + "index": 2, + "body": { + "#": 4497 + }, + "isInternal": false + }, + { + "x": 506.27176, + "y": 347.28105, + "index": 3, + "body": { + "#": 4497 + }, + "isInternal": false + }, + { + "x": 503.36576, + "y": 343.28105, + "index": 4, + "body": { + "#": 4497 + }, + "isInternal": false + }, + { + "x": 503.36576, + "y": 338.33705, + "index": 5, + "body": { + "#": 4497 + }, + "isInternal": false + }, + { + "x": 506.27176, + "y": 334.33705, + "index": 6, + "body": { + "#": 4497 + }, + "isInternal": false + }, + { + "x": 510.97376, + "y": 332.80905, + "index": 7, + "body": { + "#": 4497 + }, + "isInternal": false + }, + { + "x": 515.67576, + "y": 334.33705, + "index": 8, + "body": { + "#": 4497 + }, + "isInternal": false + }, + { + "x": 518.58176, + "y": 338.33705, + "index": 9, + "body": { + "#": 4497 + }, + "isInternal": false + }, + { + "x": 510.97376, + "y": 340.80905 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.05442, + "y": 0.81495 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4517 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4519 + }, + "max": { + "#": 4520 + } + }, + { + "x": 503.36576, + "y": 332.80905 + }, + { + "x": 518.58176, + "y": 348.80905 + }, + { + "x": 510.92172, + "y": 340.4023 + }, + [ + { + "#": 4523 + }, + { + "#": 4524 + }, + { + "#": 4525 + }, + { + "#": 4526 + }, + { + "#": 4527 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,6,7", + "startCol": 10, + "endCol": 10, + "startRow": 6, + "endRow": 7 + }, + { + "id": 141, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4530 + }, + "angle": 0, + "vertices": { + "#": 4531 + }, + "position": { + "#": 4542 + }, + "force": { + "#": 4543 + }, + "torque": 0, + "positionImpulse": { + "#": 4544 + }, + "constraintImpulse": { + "#": 4545 + }, + "totalContacts": 0, + "speed": 0.89917, + "angularSpeed": 0, + "velocity": { + "#": 4546 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4547 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4548 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4550 + }, + "positionPrev": { + "#": 4553 + }, + "anglePrev": 0, + "axes": { + "#": 4554 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4529 + }, + "sleepCounter": 0, + "region": { + "#": 4560 + } + }, + [ + { + "#": 4529 + } + ], + [ + { + "#": 4532 + }, + { + "#": 4533 + }, + { + "#": 4534 + }, + { + "#": 4535 + }, + { + "#": 4536 + }, + { + "#": 4537 + }, + { + "#": 4538 + }, + { + "#": 4539 + }, + { + "#": 4540 + }, + { + "#": 4541 + } + ], + { + "x": 539.05733, + "y": 344.18808, + "index": 0, + "body": { + "#": 4529 + }, + "isInternal": false + }, + { + "x": 536.15133, + "y": 348.18808, + "index": 1, + "body": { + "#": 4529 + }, + "isInternal": false + }, + { + "x": 531.44933, + "y": 349.71608, + "index": 2, + "body": { + "#": 4529 + }, + "isInternal": false + }, + { + "x": 526.74733, + "y": 348.18808, + "index": 3, + "body": { + "#": 4529 + }, + "isInternal": false + }, + { + "x": 523.84133, + "y": 344.18808, + "index": 4, + "body": { + "#": 4529 + }, + "isInternal": false + }, + { + "x": 523.84133, + "y": 339.24408, + "index": 5, + "body": { + "#": 4529 + }, + "isInternal": false + }, + { + "x": 526.74733, + "y": 335.24408, + "index": 6, + "body": { + "#": 4529 + }, + "isInternal": false + }, + { + "x": 531.44933, + "y": 333.71608, + "index": 7, + "body": { + "#": 4529 + }, + "isInternal": false + }, + { + "x": 536.15133, + "y": 335.24408, + "index": 8, + "body": { + "#": 4529 + }, + "isInternal": false + }, + { + "x": 539.05733, + "y": 339.24408, + "index": 9, + "body": { + "#": 4529 + }, + "isInternal": false + }, + { + "x": 531.44933, + "y": 341.71608 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.11816, + "y": 1.0365 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4549 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4551 + }, + "max": { + "#": 4552 + } + }, + { + "x": 523.84133, + "y": 333.71608 + }, + { + "x": 539.05733, + "y": 349.71608 + }, + { + "x": 531.33416, + "y": 340.9824 + }, + [ + { + "#": 4555 + }, + { + "#": 4556 + }, + { + "#": 4557 + }, + { + "#": 4558 + }, + { + "#": 4559 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,6,7", + "startCol": 10, + "endCol": 11, + "startRow": 6, + "endRow": 7 + }, + { + "id": 142, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4562 + }, + "angle": 0, + "vertices": { + "#": 4563 + }, + "position": { + "#": 4574 + }, + "force": { + "#": 4575 + }, + "torque": 0, + "positionImpulse": { + "#": 4576 + }, + "constraintImpulse": { + "#": 4577 + }, + "totalContacts": 0, + "speed": 2.069, + "angularSpeed": 0, + "velocity": { + "#": 4578 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4579 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4580 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4582 + }, + "positionPrev": { + "#": 4585 + }, + "anglePrev": 0, + "axes": { + "#": 4586 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4561 + }, + "sleepCounter": 0, + "region": { + "#": 4592 + } + }, + [ + { + "#": 4561 + } + ], + [ + { + "#": 4564 + }, + { + "#": 4565 + }, + { + "#": 4566 + }, + { + "#": 4567 + }, + { + "#": 4568 + }, + { + "#": 4569 + }, + { + "#": 4570 + }, + { + "#": 4571 + }, + { + "#": 4572 + }, + { + "#": 4573 + } + ], + { + "x": 558.42298, + "y": 350.83004, + "index": 0, + "body": { + "#": 4561 + }, + "isInternal": false + }, + { + "x": 555.51698, + "y": 354.83004, + "index": 1, + "body": { + "#": 4561 + }, + "isInternal": false + }, + { + "x": 550.81498, + "y": 356.35804, + "index": 2, + "body": { + "#": 4561 + }, + "isInternal": false + }, + { + "x": 546.11298, + "y": 354.83004, + "index": 3, + "body": { + "#": 4561 + }, + "isInternal": false + }, + { + "x": 543.20698, + "y": 350.83004, + "index": 4, + "body": { + "#": 4561 + }, + "isInternal": false + }, + { + "x": 543.20698, + "y": 345.88604, + "index": 5, + "body": { + "#": 4561 + }, + "isInternal": false + }, + { + "x": 546.11298, + "y": 341.88604, + "index": 6, + "body": { + "#": 4561 + }, + "isInternal": false + }, + { + "x": 550.81498, + "y": 340.35804, + "index": 7, + "body": { + "#": 4561 + }, + "isInternal": false + }, + { + "x": 555.51698, + "y": 341.88604, + "index": 8, + "body": { + "#": 4561 + }, + "isInternal": false + }, + { + "x": 558.42298, + "y": 345.88604, + "index": 9, + "body": { + "#": 4561 + }, + "isInternal": false + }, + { + "x": 550.81498, + "y": 348.35804 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.16843, + "y": 1.66922 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4581 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4583 + }, + "max": { + "#": 4584 + } + }, + { + "x": 543.20698, + "y": 340.35804 + }, + { + "x": 558.42298, + "y": 356.35804 + }, + { + "x": 550.98494, + "y": 346.59373 + }, + [ + { + "#": 4587 + }, + { + "#": 4588 + }, + { + "#": 4589 + }, + { + "#": 4590 + }, + { + "#": 4591 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,11,7,7", + "startCol": 11, + "endCol": 11, + "startRow": 7, + "endRow": 7 + }, + { + "id": 143, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4594 + }, + "angle": 0, + "vertices": { + "#": 4595 + }, + "position": { + "#": 4606 + }, + "force": { + "#": 4607 + }, + "torque": 0, + "positionImpulse": { + "#": 4608 + }, + "constraintImpulse": { + "#": 4609 + }, + "totalContacts": 0, + "speed": 2.34241, + "angularSpeed": 0, + "velocity": { + "#": 4610 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4611 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4612 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4614 + }, + "positionPrev": { + "#": 4617 + }, + "anglePrev": 0, + "axes": { + "#": 4618 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4593 + }, + "sleepCounter": 0, + "region": { + "#": 4624 + } + }, + [ + { + "#": 4593 + } + ], + [ + { + "#": 4596 + }, + { + "#": 4597 + }, + { + "#": 4598 + }, + { + "#": 4599 + }, + { + "#": 4600 + }, + { + "#": 4601 + }, + { + "#": 4602 + }, + { + "#": 4603 + }, + { + "#": 4604 + }, + { + "#": 4605 + } + ], + { + "x": 578.79256, + "y": 351.88406, + "index": 0, + "body": { + "#": 4593 + }, + "isInternal": false + }, + { + "x": 575.88656, + "y": 355.88406, + "index": 1, + "body": { + "#": 4593 + }, + "isInternal": false + }, + { + "x": 571.18456, + "y": 357.41206, + "index": 2, + "body": { + "#": 4593 + }, + "isInternal": false + }, + { + "x": 566.48256, + "y": 355.88406, + "index": 3, + "body": { + "#": 4593 + }, + "isInternal": false + }, + { + "x": 563.57656, + "y": 351.88406, + "index": 4, + "body": { + "#": 4593 + }, + "isInternal": false + }, + { + "x": 563.57656, + "y": 346.94006, + "index": 5, + "body": { + "#": 4593 + }, + "isInternal": false + }, + { + "x": 566.48256, + "y": 342.94006, + "index": 6, + "body": { + "#": 4593 + }, + "isInternal": false + }, + { + "x": 571.18456, + "y": 341.41206, + "index": 7, + "body": { + "#": 4593 + }, + "isInternal": false + }, + { + "x": 575.88656, + "y": 342.94006, + "index": 8, + "body": { + "#": 4593 + }, + "isInternal": false + }, + { + "x": 578.79256, + "y": 346.94006, + "index": 9, + "body": { + "#": 4593 + }, + "isInternal": false + }, + { + "x": 571.18456, + "y": 349.41206 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.14185, + "y": 1.91396 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4613 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4615 + }, + "max": { + "#": 4616 + } + }, + { + "x": 563.57656, + "y": 341.41206 + }, + { + "x": 578.79256, + "y": 357.41206 + }, + { + "x": 571.32977, + "y": 347.27334 + }, + [ + { + "#": 4619 + }, + { + "#": 4620 + }, + { + "#": 4621 + }, + { + "#": 4622 + }, + { + "#": 4623 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,7,7", + "startCol": 11, + "endCol": 12, + "startRow": 7, + "endRow": 7 + }, + { + "id": 144, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4626 + }, + "angle": 0, + "vertices": { + "#": 4627 + }, + "position": { + "#": 4638 + }, + "force": { + "#": 4639 + }, + "torque": 0, + "positionImpulse": { + "#": 4640 + }, + "constraintImpulse": { + "#": 4641 + }, + "totalContacts": 0, + "speed": 2.35569, + "angularSpeed": 0, + "velocity": { + "#": 4642 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4643 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4644 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4646 + }, + "positionPrev": { + "#": 4649 + }, + "anglePrev": 0, + "axes": { + "#": 4650 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4625 + }, + "sleepCounter": 0, + "region": { + "#": 4656 + } + }, + [ + { + "#": 4625 + } + ], + [ + { + "#": 4628 + }, + { + "#": 4629 + }, + { + "#": 4630 + }, + { + "#": 4631 + }, + { + "#": 4632 + }, + { + "#": 4633 + }, + { + "#": 4634 + }, + { + "#": 4635 + }, + { + "#": 4636 + }, + { + "#": 4637 + } + ], + { + "x": 599.08732, + "y": 351.9345, + "index": 0, + "body": { + "#": 4625 + }, + "isInternal": false + }, + { + "x": 596.18132, + "y": 355.9345, + "index": 1, + "body": { + "#": 4625 + }, + "isInternal": false + }, + { + "x": 591.47932, + "y": 357.4625, + "index": 2, + "body": { + "#": 4625 + }, + "isInternal": false + }, + { + "x": 586.77732, + "y": 355.9345, + "index": 3, + "body": { + "#": 4625 + }, + "isInternal": false + }, + { + "x": 583.87132, + "y": 351.9345, + "index": 4, + "body": { + "#": 4625 + }, + "isInternal": false + }, + { + "x": 583.87132, + "y": 346.9905, + "index": 5, + "body": { + "#": 4625 + }, + "isInternal": false + }, + { + "x": 586.77732, + "y": 342.9905, + "index": 6, + "body": { + "#": 4625 + }, + "isInternal": false + }, + { + "x": 591.47932, + "y": 341.4625, + "index": 7, + "body": { + "#": 4625 + }, + "isInternal": false + }, + { + "x": 596.18132, + "y": 342.9905, + "index": 8, + "body": { + "#": 4625 + }, + "isInternal": false + }, + { + "x": 599.08732, + "y": 346.9905, + "index": 9, + "body": { + "#": 4625 + }, + "isInternal": false + }, + { + "x": 591.47932, + "y": 349.4625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.12161, + "y": 1.93107 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4645 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4647 + }, + "max": { + "#": 4648 + } + }, + { + "x": 583.87132, + "y": 341.4625 + }, + { + "x": 599.08732, + "y": 357.4625 + }, + { + "x": 591.60414, + "y": 347.29681 + }, + [ + { + "#": 4651 + }, + { + "#": 4652 + }, + { + "#": 4653 + }, + { + "#": 4654 + }, + { + "#": 4655 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,7,7", + "startCol": 12, + "endCol": 12, + "startRow": 7, + "endRow": 7 + }, + { + "id": 145, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4658 + }, + "angle": 0, + "vertices": { + "#": 4659 + }, + "position": { + "#": 4670 + }, + "force": { + "#": 4671 + }, + "torque": 0, + "positionImpulse": { + "#": 4672 + }, + "constraintImpulse": { + "#": 4673 + }, + "totalContacts": 0, + "speed": 3.09581, + "angularSpeed": 0, + "velocity": { + "#": 4674 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4675 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4676 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4678 + }, + "positionPrev": { + "#": 4681 + }, + "anglePrev": 0, + "axes": { + "#": 4682 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4657 + }, + "sleepCounter": 0, + "region": { + "#": 4688 + } + }, + [ + { + "#": 4657 + } + ], + [ + { + "#": 4660 + }, + { + "#": 4661 + }, + { + "#": 4662 + }, + { + "#": 4663 + }, + { + "#": 4664 + }, + { + "#": 4665 + }, + { + "#": 4666 + }, + { + "#": 4667 + }, + { + "#": 4668 + }, + { + "#": 4669 + } + ], + { + "x": 215.57079, + "y": 375.70898, + "index": 0, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 212.66479, + "y": 379.70898, + "index": 1, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 207.96279, + "y": 381.23698, + "index": 2, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 203.26079, + "y": 379.70898, + "index": 3, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 200.35479, + "y": 375.70898, + "index": 4, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 200.35479, + "y": 370.76498, + "index": 5, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 203.26079, + "y": 366.76498, + "index": 6, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 207.96279, + "y": 365.23698, + "index": 7, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 212.66479, + "y": 366.76498, + "index": 8, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 215.57079, + "y": 370.76498, + "index": 9, + "body": { + "#": 4657 + }, + "isInternal": false + }, + { + "x": 207.96279, + "y": 373.23698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.14022, + "y": 2.62199 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4677 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4679 + }, + "max": { + "#": 4680 + } + }, + { + "x": 200.35479, + "y": 365.23698 + }, + { + "x": 215.57079, + "y": 381.23698 + }, + { + "x": 207.82138, + "y": 370.24143 + }, + [ + { + "#": 4683 + }, + { + "#": 4684 + }, + { + "#": 4685 + }, + { + "#": 4686 + }, + { + "#": 4687 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,7,7", + "startCol": 4, + "endCol": 4, + "startRow": 7, + "endRow": 7 + }, + { + "id": 146, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4690 + }, + "angle": 0, + "vertices": { + "#": 4691 + }, + "position": { + "#": 4702 + }, + "force": { + "#": 4703 + }, + "torque": 0, + "positionImpulse": { + "#": 4704 + }, + "constraintImpulse": { + "#": 4705 + }, + "totalContacts": 0, + "speed": 3.01504, + "angularSpeed": 0, + "velocity": { + "#": 4706 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4707 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4708 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4710 + }, + "positionPrev": { + "#": 4713 + }, + "anglePrev": 0, + "axes": { + "#": 4714 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4689 + }, + "sleepCounter": 0, + "region": { + "#": 4720 + } + }, + [ + { + "#": 4689 + } + ], + [ + { + "#": 4692 + }, + { + "#": 4693 + }, + { + "#": 4694 + }, + { + "#": 4695 + }, + { + "#": 4696 + }, + { + "#": 4697 + }, + { + "#": 4698 + }, + { + "#": 4699 + }, + { + "#": 4700 + }, + { + "#": 4701 + } + ], + { + "x": 235.92162, + "y": 376.14636, + "index": 0, + "body": { + "#": 4689 + }, + "isInternal": false + }, + { + "x": 233.01562, + "y": 380.14636, + "index": 1, + "body": { + "#": 4689 + }, + "isInternal": false + }, + { + "x": 228.31362, + "y": 381.67436, + "index": 2, + "body": { + "#": 4689 + }, + "isInternal": false + }, + { + "x": 223.61162, + "y": 380.14636, + "index": 3, + "body": { + "#": 4689 + }, + "isInternal": false + }, + { + "x": 220.70562, + "y": 376.14636, + "index": 4, + "body": { + "#": 4689 + }, + "isInternal": false + }, + { + "x": 220.70562, + "y": 371.20236, + "index": 5, + "body": { + "#": 4689 + }, + "isInternal": false + }, + { + "x": 223.61162, + "y": 367.20236, + "index": 6, + "body": { + "#": 4689 + }, + "isInternal": false + }, + { + "x": 228.31362, + "y": 365.67436, + "index": 7, + "body": { + "#": 4689 + }, + "isInternal": false + }, + { + "x": 233.01562, + "y": 367.20236, + "index": 8, + "body": { + "#": 4689 + }, + "isInternal": false + }, + { + "x": 235.92162, + "y": 371.20236, + "index": 9, + "body": { + "#": 4689 + }, + "isInternal": false + }, + { + "x": 228.31362, + "y": 373.67436 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.20053, + "y": 2.47126 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4709 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4711 + }, + "max": { + "#": 4712 + } + }, + { + "x": 220.70562, + "y": 365.67436 + }, + { + "x": 235.92162, + "y": 381.67436 + }, + { + "x": 228.11658, + "y": 370.92385 + }, + [ + { + "#": 4715 + }, + { + "#": 4716 + }, + { + "#": 4717 + }, + { + "#": 4718 + }, + { + "#": 4719 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,7,7", + "startCol": 4, + "endCol": 4, + "startRow": 7, + "endRow": 7 + }, + { + "id": 147, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4722 + }, + "angle": 0, + "vertices": { + "#": 4723 + }, + "position": { + "#": 4734 + }, + "force": { + "#": 4735 + }, + "torque": 0, + "positionImpulse": { + "#": 4736 + }, + "constraintImpulse": { + "#": 4737 + }, + "totalContacts": 0, + "speed": 2.50548, + "angularSpeed": 0, + "velocity": { + "#": 4738 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4739 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4740 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4742 + }, + "positionPrev": { + "#": 4745 + }, + "anglePrev": 0, + "axes": { + "#": 4746 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4721 + }, + "sleepCounter": 0, + "region": { + "#": 4752 + } + }, + [ + { + "#": 4721 + } + ], + [ + { + "#": 4724 + }, + { + "#": 4725 + }, + { + "#": 4726 + }, + { + "#": 4727 + }, + { + "#": 4728 + }, + { + "#": 4729 + }, + { + "#": 4730 + }, + { + "#": 4731 + }, + { + "#": 4732 + }, + { + "#": 4733 + } + ], + { + "x": 256.0362, + "y": 371.98755, + "index": 0, + "body": { + "#": 4721 + }, + "isInternal": false + }, + { + "x": 253.1302, + "y": 375.98755, + "index": 1, + "body": { + "#": 4721 + }, + "isInternal": false + }, + { + "x": 248.4282, + "y": 377.51555, + "index": 2, + "body": { + "#": 4721 + }, + "isInternal": false + }, + { + "x": 243.7262, + "y": 375.98755, + "index": 3, + "body": { + "#": 4721 + }, + "isInternal": false + }, + { + "x": 240.8202, + "y": 371.98755, + "index": 4, + "body": { + "#": 4721 + }, + "isInternal": false + }, + { + "x": 240.8202, + "y": 367.04355, + "index": 5, + "body": { + "#": 4721 + }, + "isInternal": false + }, + { + "x": 243.7262, + "y": 363.04355, + "index": 6, + "body": { + "#": 4721 + }, + "isInternal": false + }, + { + "x": 248.4282, + "y": 361.51555, + "index": 7, + "body": { + "#": 4721 + }, + "isInternal": false + }, + { + "x": 253.1302, + "y": 363.04355, + "index": 8, + "body": { + "#": 4721 + }, + "isInternal": false + }, + { + "x": 256.0362, + "y": 367.04355, + "index": 9, + "body": { + "#": 4721 + }, + "isInternal": false + }, + { + "x": 248.4282, + "y": 369.51555 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.17912, + "y": 2.11807 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4741 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4743 + }, + "max": { + "#": 4744 + } + }, + { + "x": 240.8202, + "y": 361.51555 + }, + { + "x": 256.0362, + "y": 377.51555 + }, + { + "x": 248.24982, + "y": 367.38485 + }, + [ + { + "#": 4747 + }, + { + "#": 4748 + }, + { + "#": 4749 + }, + { + "#": 4750 + }, + { + "#": 4751 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,7,7", + "startCol": 5, + "endCol": 5, + "startRow": 7, + "endRow": 7 + }, + { + "id": 148, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4754 + }, + "angle": 0, + "vertices": { + "#": 4755 + }, + "position": { + "#": 4766 + }, + "force": { + "#": 4767 + }, + "torque": 0, + "positionImpulse": { + "#": 4768 + }, + "constraintImpulse": { + "#": 4769 + }, + "totalContacts": 0, + "speed": 1.695, + "angularSpeed": 0, + "velocity": { + "#": 4770 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4771 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4772 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4774 + }, + "positionPrev": { + "#": 4777 + }, + "anglePrev": 0, + "axes": { + "#": 4778 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4753 + }, + "sleepCounter": 0, + "region": { + "#": 4784 + } + }, + [ + { + "#": 4753 + } + ], + [ + { + "#": 4756 + }, + { + "#": 4757 + }, + { + "#": 4758 + }, + { + "#": 4759 + }, + { + "#": 4760 + }, + { + "#": 4761 + }, + { + "#": 4762 + }, + { + "#": 4763 + }, + { + "#": 4764 + }, + { + "#": 4765 + } + ], + { + "x": 276.31401, + "y": 368.47186, + "index": 0, + "body": { + "#": 4753 + }, + "isInternal": false + }, + { + "x": 273.40801, + "y": 372.47186, + "index": 1, + "body": { + "#": 4753 + }, + "isInternal": false + }, + { + "x": 268.70601, + "y": 373.99986, + "index": 2, + "body": { + "#": 4753 + }, + "isInternal": false + }, + { + "x": 264.00401, + "y": 372.47186, + "index": 3, + "body": { + "#": 4753 + }, + "isInternal": false + }, + { + "x": 261.09801, + "y": 368.47186, + "index": 4, + "body": { + "#": 4753 + }, + "isInternal": false + }, + { + "x": 261.09801, + "y": 363.52786, + "index": 5, + "body": { + "#": 4753 + }, + "isInternal": false + }, + { + "x": 264.00401, + "y": 359.52786, + "index": 6, + "body": { + "#": 4753 + }, + "isInternal": false + }, + { + "x": 268.70601, + "y": 357.99986, + "index": 7, + "body": { + "#": 4753 + }, + "isInternal": false + }, + { + "x": 273.40801, + "y": 359.52786, + "index": 8, + "body": { + "#": 4753 + }, + "isInternal": false + }, + { + "x": 276.31401, + "y": 363.52786, + "index": 9, + "body": { + "#": 4753 + }, + "isInternal": false + }, + { + "x": 268.70601, + "y": 365.99986 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.09228, + "y": 1.68693 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4773 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4775 + }, + "max": { + "#": 4776 + } + }, + { + "x": 261.09801, + "y": 357.99986 + }, + { + "x": 276.31401, + "y": 373.99986 + }, + { + "x": 268.59482, + "y": 364.49756 + }, + [ + { + "#": 4779 + }, + { + "#": 4780 + }, + { + "#": 4781 + }, + { + "#": 4782 + }, + { + "#": 4783 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,7,7", + "startCol": 5, + "endCol": 5, + "startRow": 7, + "endRow": 7 + }, + { + "id": 149, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4786 + }, + "angle": 0, + "vertices": { + "#": 4787 + }, + "position": { + "#": 4798 + }, + "force": { + "#": 4799 + }, + "torque": 0, + "positionImpulse": { + "#": 4800 + }, + "constraintImpulse": { + "#": 4801 + }, + "totalContacts": 0, + "speed": 1.65123, + "angularSpeed": 0, + "velocity": { + "#": 4802 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4803 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4804 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4806 + }, + "positionPrev": { + "#": 4809 + }, + "anglePrev": 0, + "axes": { + "#": 4810 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4785 + }, + "sleepCounter": 0, + "region": { + "#": 4816 + } + }, + [ + { + "#": 4785 + } + ], + [ + { + "#": 4788 + }, + { + "#": 4789 + }, + { + "#": 4790 + }, + { + "#": 4791 + }, + { + "#": 4792 + }, + { + "#": 4793 + }, + { + "#": 4794 + }, + { + "#": 4795 + }, + { + "#": 4796 + }, + { + "#": 4797 + } + ], + { + "x": 296.66884, + "y": 366.46937, + "index": 0, + "body": { + "#": 4785 + }, + "isInternal": false + }, + { + "x": 293.76284, + "y": 370.46937, + "index": 1, + "body": { + "#": 4785 + }, + "isInternal": false + }, + { + "x": 289.06084, + "y": 371.99737, + "index": 2, + "body": { + "#": 4785 + }, + "isInternal": false + }, + { + "x": 284.35884, + "y": 370.46937, + "index": 3, + "body": { + "#": 4785 + }, + "isInternal": false + }, + { + "x": 281.45284, + "y": 366.46937, + "index": 4, + "body": { + "#": 4785 + }, + "isInternal": false + }, + { + "x": 281.45284, + "y": 361.52537, + "index": 5, + "body": { + "#": 4785 + }, + "isInternal": false + }, + { + "x": 284.35884, + "y": 357.52537, + "index": 6, + "body": { + "#": 4785 + }, + "isInternal": false + }, + { + "x": 289.06084, + "y": 355.99737, + "index": 7, + "body": { + "#": 4785 + }, + "isInternal": false + }, + { + "x": 293.76284, + "y": 357.52537, + "index": 8, + "body": { + "#": 4785 + }, + "isInternal": false + }, + { + "x": 296.66884, + "y": 361.52537, + "index": 9, + "body": { + "#": 4785 + }, + "isInternal": false + }, + { + "x": 289.06084, + "y": 363.99737 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.04958, + "y": 1.61877 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4805 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4807 + }, + "max": { + "#": 4808 + } + }, + { + "x": 281.45284, + "y": 355.99737 + }, + { + "x": 296.66884, + "y": 371.99737 + }, + { + "x": 288.98605, + "y": 362.60787 + }, + [ + { + "#": 4811 + }, + { + "#": 4812 + }, + { + "#": 4813 + }, + { + "#": 4814 + }, + { + "#": 4815 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,7,7", + "startCol": 5, + "endCol": 6, + "startRow": 7, + "endRow": 7 + }, + { + "id": 150, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4818 + }, + "angle": 0, + "vertices": { + "#": 4819 + }, + "position": { + "#": 4830 + }, + "force": { + "#": 4831 + }, + "torque": 0, + "positionImpulse": { + "#": 4832 + }, + "constraintImpulse": { + "#": 4833 + }, + "totalContacts": 0, + "speed": 2.04392, + "angularSpeed": 0, + "velocity": { + "#": 4834 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4835 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4836 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4838 + }, + "positionPrev": { + "#": 4841 + }, + "anglePrev": 0, + "axes": { + "#": 4842 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4817 + }, + "sleepCounter": 0, + "region": { + "#": 4848 + } + }, + [ + { + "#": 4817 + } + ], + [ + { + "#": 4820 + }, + { + "#": 4821 + }, + { + "#": 4822 + }, + { + "#": 4823 + }, + { + "#": 4824 + }, + { + "#": 4825 + }, + { + "#": 4826 + }, + { + "#": 4827 + }, + { + "#": 4828 + }, + { + "#": 4829 + } + ], + { + "x": 316.83189, + "y": 364.93446, + "index": 0, + "body": { + "#": 4817 + }, + "isInternal": false + }, + { + "x": 313.92589, + "y": 368.93446, + "index": 1, + "body": { + "#": 4817 + }, + "isInternal": false + }, + { + "x": 309.22389, + "y": 370.46246, + "index": 2, + "body": { + "#": 4817 + }, + "isInternal": false + }, + { + "x": 304.52189, + "y": 368.93446, + "index": 3, + "body": { + "#": 4817 + }, + "isInternal": false + }, + { + "x": 301.61589, + "y": 364.93446, + "index": 4, + "body": { + "#": 4817 + }, + "isInternal": false + }, + { + "x": 301.61589, + "y": 359.99046, + "index": 5, + "body": { + "#": 4817 + }, + "isInternal": false + }, + { + "x": 304.52189, + "y": 355.99046, + "index": 6, + "body": { + "#": 4817 + }, + "isInternal": false + }, + { + "x": 309.22389, + "y": 354.46246, + "index": 7, + "body": { + "#": 4817 + }, + "isInternal": false + }, + { + "x": 313.92589, + "y": 355.99046, + "index": 8, + "body": { + "#": 4817 + }, + "isInternal": false + }, + { + "x": 316.83189, + "y": 359.99046, + "index": 9, + "body": { + "#": 4817 + }, + "isInternal": false + }, + { + "x": 309.22389, + "y": 362.46246 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.08043, + "y": 2.08014 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4837 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4839 + }, + "max": { + "#": 4840 + } + }, + { + "x": 301.61589, + "y": 354.46246 + }, + { + "x": 316.83189, + "y": 370.46246 + }, + { + "x": 309.14929, + "y": 360.30682 + }, + [ + { + "#": 4843 + }, + { + "#": 4844 + }, + { + "#": 4845 + }, + { + "#": 4846 + }, + { + "#": 4847 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,6,7,7", + "startCol": 6, + "endCol": 6, + "startRow": 7, + "endRow": 7 + }, + { + "id": 151, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4850 + }, + "angle": 0, + "vertices": { + "#": 4851 + }, + "position": { + "#": 4862 + }, + "force": { + "#": 4863 + }, + "torque": 0, + "positionImpulse": { + "#": 4864 + }, + "constraintImpulse": { + "#": 4865 + }, + "totalContacts": 0, + "speed": 2.30994, + "angularSpeed": 0, + "velocity": { + "#": 4866 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4867 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4868 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4870 + }, + "positionPrev": { + "#": 4873 + }, + "anglePrev": 0, + "axes": { + "#": 4874 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4849 + }, + "sleepCounter": 0, + "region": { + "#": 4880 + } + }, + [ + { + "#": 4849 + } + ], + [ + { + "#": 4852 + }, + { + "#": 4853 + }, + { + "#": 4854 + }, + { + "#": 4855 + }, + { + "#": 4856 + }, + { + "#": 4857 + }, + { + "#": 4858 + }, + { + "#": 4859 + }, + { + "#": 4860 + }, + { + "#": 4861 + } + ], + { + "x": 336.40159, + "y": 370.09135, + "index": 0, + "body": { + "#": 4849 + }, + "isInternal": false + }, + { + "x": 333.49559, + "y": 374.09135, + "index": 1, + "body": { + "#": 4849 + }, + "isInternal": false + }, + { + "x": 328.79359, + "y": 375.61935, + "index": 2, + "body": { + "#": 4849 + }, + "isInternal": false + }, + { + "x": 324.09159, + "y": 374.09135, + "index": 3, + "body": { + "#": 4849 + }, + "isInternal": false + }, + { + "x": 321.18559, + "y": 370.09135, + "index": 4, + "body": { + "#": 4849 + }, + "isInternal": false + }, + { + "x": 321.18559, + "y": 365.14735, + "index": 5, + "body": { + "#": 4849 + }, + "isInternal": false + }, + { + "x": 324.09159, + "y": 361.14735, + "index": 6, + "body": { + "#": 4849 + }, + "isInternal": false + }, + { + "x": 328.79359, + "y": 359.61935, + "index": 7, + "body": { + "#": 4849 + }, + "isInternal": false + }, + { + "x": 333.49559, + "y": 361.14735, + "index": 8, + "body": { + "#": 4849 + }, + "isInternal": false + }, + { + "x": 336.40159, + "y": 365.14735, + "index": 9, + "body": { + "#": 4849 + }, + "isInternal": false + }, + { + "x": 328.79359, + "y": 367.61935 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01167, + "y": 2.11181 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4869 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4871 + }, + "max": { + "#": 4872 + } + }, + { + "x": 321.18559, + "y": 359.61935 + }, + { + "x": 336.40159, + "y": 375.61935 + }, + { + "x": 328.78774, + "y": 365.40768 + }, + [ + { + "#": 4875 + }, + { + "#": 4876 + }, + { + "#": 4877 + }, + { + "#": 4878 + }, + { + "#": 4879 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,7,7", + "startCol": 6, + "endCol": 7, + "startRow": 7, + "endRow": 7 + }, + { + "id": 152, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4882 + }, + "angle": 0, + "vertices": { + "#": 4883 + }, + "position": { + "#": 4894 + }, + "force": { + "#": 4895 + }, + "torque": 0, + "positionImpulse": { + "#": 4896 + }, + "constraintImpulse": { + "#": 4897 + }, + "totalContacts": 0, + "speed": 2.69831, + "angularSpeed": 0, + "velocity": { + "#": 4898 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4899 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4900 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4902 + }, + "positionPrev": { + "#": 4905 + }, + "anglePrev": 0, + "axes": { + "#": 4906 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4881 + }, + "sleepCounter": 0, + "region": { + "#": 4912 + } + }, + [ + { + "#": 4881 + } + ], + [ + { + "#": 4884 + }, + { + "#": 4885 + }, + { + "#": 4886 + }, + { + "#": 4887 + }, + { + "#": 4888 + }, + { + "#": 4889 + }, + { + "#": 4890 + }, + { + "#": 4891 + }, + { + "#": 4892 + }, + { + "#": 4893 + } + ], + { + "x": 356.65473, + "y": 371.58355, + "index": 0, + "body": { + "#": 4881 + }, + "isInternal": false + }, + { + "x": 353.74873, + "y": 375.58355, + "index": 1, + "body": { + "#": 4881 + }, + "isInternal": false + }, + { + "x": 349.04673, + "y": 377.11155, + "index": 2, + "body": { + "#": 4881 + }, + "isInternal": false + }, + { + "x": 344.34473, + "y": 375.58355, + "index": 3, + "body": { + "#": 4881 + }, + "isInternal": false + }, + { + "x": 341.43873, + "y": 371.58355, + "index": 4, + "body": { + "#": 4881 + }, + "isInternal": false + }, + { + "x": 341.43873, + "y": 366.63955, + "index": 5, + "body": { + "#": 4881 + }, + "isInternal": false + }, + { + "x": 344.34473, + "y": 362.63955, + "index": 6, + "body": { + "#": 4881 + }, + "isInternal": false + }, + { + "x": 349.04673, + "y": 361.11155, + "index": 7, + "body": { + "#": 4881 + }, + "isInternal": false + }, + { + "x": 353.74873, + "y": 362.63955, + "index": 8, + "body": { + "#": 4881 + }, + "isInternal": false + }, + { + "x": 356.65473, + "y": 366.63955, + "index": 9, + "body": { + "#": 4881 + }, + "isInternal": false + }, + { + "x": 349.04673, + "y": 369.11155 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.04815, + "y": 2.38998 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4901 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4903 + }, + "max": { + "#": 4904 + } + }, + { + "x": 341.43873, + "y": 361.11155 + }, + { + "x": 356.65473, + "y": 377.11155 + }, + { + "x": 349.10426, + "y": 366.49783 + }, + [ + { + "#": 4907 + }, + { + "#": 4908 + }, + { + "#": 4909 + }, + { + "#": 4910 + }, + { + "#": 4911 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,7,7", + "startCol": 7, + "endCol": 7, + "startRow": 7, + "endRow": 7 + }, + { + "id": 153, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4914 + }, + "angle": 0, + "vertices": { + "#": 4915 + }, + "position": { + "#": 4926 + }, + "force": { + "#": 4927 + }, + "torque": 0, + "positionImpulse": { + "#": 4928 + }, + "constraintImpulse": { + "#": 4929 + }, + "totalContacts": 0, + "speed": 2.86216, + "angularSpeed": 0, + "velocity": { + "#": 4930 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4931 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4932 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4934 + }, + "positionPrev": { + "#": 4937 + }, + "anglePrev": 0, + "axes": { + "#": 4938 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4913 + }, + "sleepCounter": 0, + "region": { + "#": 4944 + } + }, + [ + { + "#": 4913 + } + ], + [ + { + "#": 4916 + }, + { + "#": 4917 + }, + { + "#": 4918 + }, + { + "#": 4919 + }, + { + "#": 4920 + }, + { + "#": 4921 + }, + { + "#": 4922 + }, + { + "#": 4923 + }, + { + "#": 4924 + }, + { + "#": 4925 + } + ], + { + "x": 376.60601, + "y": 375.52577, + "index": 0, + "body": { + "#": 4913 + }, + "isInternal": false + }, + { + "x": 373.70001, + "y": 379.52577, + "index": 1, + "body": { + "#": 4913 + }, + "isInternal": false + }, + { + "x": 368.99801, + "y": 381.05377, + "index": 2, + "body": { + "#": 4913 + }, + "isInternal": false + }, + { + "x": 364.29601, + "y": 379.52577, + "index": 3, + "body": { + "#": 4913 + }, + "isInternal": false + }, + { + "x": 361.39001, + "y": 375.52577, + "index": 4, + "body": { + "#": 4913 + }, + "isInternal": false + }, + { + "x": 361.39001, + "y": 370.58177, + "index": 5, + "body": { + "#": 4913 + }, + "isInternal": false + }, + { + "x": 364.29601, + "y": 366.58177, + "index": 6, + "body": { + "#": 4913 + }, + "isInternal": false + }, + { + "x": 368.99801, + "y": 365.05377, + "index": 7, + "body": { + "#": 4913 + }, + "isInternal": false + }, + { + "x": 373.70001, + "y": 366.58177, + "index": 8, + "body": { + "#": 4913 + }, + "isInternal": false + }, + { + "x": 376.60601, + "y": 370.58177, + "index": 9, + "body": { + "#": 4913 + }, + "isInternal": false + }, + { + "x": 368.99801, + "y": 373.05377 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.03896, + "y": 2.38084 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4933 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4935 + }, + "max": { + "#": 4936 + } + }, + { + "x": 361.39001, + "y": 365.05377 + }, + { + "x": 376.60601, + "y": 381.05377 + }, + { + "x": 369.043, + "y": 370.44401 + }, + [ + { + "#": 4939 + }, + { + "#": 4940 + }, + { + "#": 4941 + }, + { + "#": 4942 + }, + { + "#": 4943 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,7,7", + "startCol": 7, + "endCol": 7, + "startRow": 7, + "endRow": 7 + }, + { + "id": 154, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4946 + }, + "angle": 0, + "vertices": { + "#": 4947 + }, + "position": { + "#": 4958 + }, + "force": { + "#": 4959 + }, + "torque": 0, + "positionImpulse": { + "#": 4960 + }, + "constraintImpulse": { + "#": 4961 + }, + "totalContacts": 0, + "speed": 2.80057, + "angularSpeed": 0, + "velocity": { + "#": 4962 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4963 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4964 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4966 + }, + "positionPrev": { + "#": 4969 + }, + "anglePrev": 0, + "axes": { + "#": 4970 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4945 + }, + "sleepCounter": 0, + "region": { + "#": 4976 + } + }, + [ + { + "#": 4945 + } + ], + [ + { + "#": 4948 + }, + { + "#": 4949 + }, + { + "#": 4950 + }, + { + "#": 4951 + }, + { + "#": 4952 + }, + { + "#": 4953 + }, + { + "#": 4954 + }, + { + "#": 4955 + }, + { + "#": 4956 + }, + { + "#": 4957 + } + ], + { + "x": 397.00785, + "y": 374.70006, + "index": 0, + "body": { + "#": 4945 + }, + "isInternal": false + }, + { + "x": 394.10185, + "y": 378.70006, + "index": 1, + "body": { + "#": 4945 + }, + "isInternal": false + }, + { + "x": 389.39985, + "y": 380.22806, + "index": 2, + "body": { + "#": 4945 + }, + "isInternal": false + }, + { + "x": 384.69785, + "y": 378.70006, + "index": 3, + "body": { + "#": 4945 + }, + "isInternal": false + }, + { + "x": 381.79185, + "y": 374.70006, + "index": 4, + "body": { + "#": 4945 + }, + "isInternal": false + }, + { + "x": 381.79185, + "y": 369.75606, + "index": 5, + "body": { + "#": 4945 + }, + "isInternal": false + }, + { + "x": 384.69785, + "y": 365.75606, + "index": 6, + "body": { + "#": 4945 + }, + "isInternal": false + }, + { + "x": 389.39985, + "y": 364.22806, + "index": 7, + "body": { + "#": 4945 + }, + "isInternal": false + }, + { + "x": 394.10185, + "y": 365.75606, + "index": 8, + "body": { + "#": 4945 + }, + "isInternal": false + }, + { + "x": 397.00785, + "y": 369.75606, + "index": 9, + "body": { + "#": 4945 + }, + "isInternal": false + }, + { + "x": 389.39985, + "y": 372.22806 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00208, + "y": 2.42779 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4965 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4967 + }, + "max": { + "#": 4968 + } + }, + { + "x": 381.79185, + "y": 364.22806 + }, + { + "x": 397.00785, + "y": 380.22806 + }, + { + "x": 389.40112, + "y": 369.53022 + }, + [ + { + "#": 4971 + }, + { + "#": 4972 + }, + { + "#": 4973 + }, + { + "#": 4974 + }, + { + "#": 4975 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,7,7", + "startCol": 7, + "endCol": 8, + "startRow": 7, + "endRow": 7 + }, + { + "id": 155, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 4978 + }, + "angle": 0, + "vertices": { + "#": 4979 + }, + "position": { + "#": 4990 + }, + "force": { + "#": 4991 + }, + "torque": 0, + "positionImpulse": { + "#": 4992 + }, + "constraintImpulse": { + "#": 4993 + }, + "totalContacts": 0, + "speed": 2.69461, + "angularSpeed": 0, + "velocity": { + "#": 4994 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4995 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4996 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 4998 + }, + "positionPrev": { + "#": 5001 + }, + "anglePrev": 0, + "axes": { + "#": 5002 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 4977 + }, + "sleepCounter": 0, + "region": { + "#": 5008 + } + }, + [ + { + "#": 4977 + } + ], + [ + { + "#": 4980 + }, + { + "#": 4981 + }, + { + "#": 4982 + }, + { + "#": 4983 + }, + { + "#": 4984 + }, + { + "#": 4985 + }, + { + "#": 4986 + }, + { + "#": 4987 + }, + { + "#": 4988 + }, + { + "#": 4989 + } + ], + { + "x": 417.49776, + "y": 374.2932, + "index": 0, + "body": { + "#": 4977 + }, + "isInternal": false + }, + { + "x": 414.59176, + "y": 378.2932, + "index": 1, + "body": { + "#": 4977 + }, + "isInternal": false + }, + { + "x": 409.88976, + "y": 379.8212, + "index": 2, + "body": { + "#": 4977 + }, + "isInternal": false + }, + { + "x": 405.18776, + "y": 378.2932, + "index": 3, + "body": { + "#": 4977 + }, + "isInternal": false + }, + { + "x": 402.28176, + "y": 374.2932, + "index": 4, + "body": { + "#": 4977 + }, + "isInternal": false + }, + { + "x": 402.28176, + "y": 369.3492, + "index": 5, + "body": { + "#": 4977 + }, + "isInternal": false + }, + { + "x": 405.18776, + "y": 365.3492, + "index": 6, + "body": { + "#": 4977 + }, + "isInternal": false + }, + { + "x": 409.88976, + "y": 363.8212, + "index": 7, + "body": { + "#": 4977 + }, + "isInternal": false + }, + { + "x": 414.59176, + "y": 365.3492, + "index": 8, + "body": { + "#": 4977 + }, + "isInternal": false + }, + { + "x": 417.49776, + "y": 369.3492, + "index": 9, + "body": { + "#": 4977 + }, + "isInternal": false + }, + { + "x": 409.88976, + "y": 371.8212 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.06937, + "y": 2.36075 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 4997 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4999 + }, + "max": { + "#": 5000 + } + }, + { + "x": 402.28176, + "y": 363.8212 + }, + { + "x": 417.49776, + "y": 379.8212 + }, + { + "x": 409.82082, + "y": 369.21877 + }, + [ + { + "#": 5003 + }, + { + "#": 5004 + }, + { + "#": 5005 + }, + { + "#": 5006 + }, + { + "#": 5007 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,7,7", + "startCol": 8, + "endCol": 8, + "startRow": 7, + "endRow": 7 + }, + { + "id": 156, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5010 + }, + "angle": 0, + "vertices": { + "#": 5011 + }, + "position": { + "#": 5022 + }, + "force": { + "#": 5023 + }, + "torque": 0, + "positionImpulse": { + "#": 5024 + }, + "constraintImpulse": { + "#": 5025 + }, + "totalContacts": 0, + "speed": 2.58829, + "angularSpeed": 0, + "velocity": { + "#": 5026 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5027 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5028 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5030 + }, + "positionPrev": { + "#": 5033 + }, + "anglePrev": 0, + "axes": { + "#": 5034 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5009 + }, + "sleepCounter": 0, + "region": { + "#": 5040 + } + }, + [ + { + "#": 5009 + } + ], + [ + { + "#": 5012 + }, + { + "#": 5013 + }, + { + "#": 5014 + }, + { + "#": 5015 + }, + { + "#": 5016 + }, + { + "#": 5017 + }, + { + "#": 5018 + }, + { + "#": 5019 + }, + { + "#": 5020 + }, + { + "#": 5021 + } + ], + { + "x": 438.04382, + "y": 373.90973, + "index": 0, + "body": { + "#": 5009 + }, + "isInternal": false + }, + { + "x": 435.13782, + "y": 377.90973, + "index": 1, + "body": { + "#": 5009 + }, + "isInternal": false + }, + { + "x": 430.43582, + "y": 379.43773, + "index": 2, + "body": { + "#": 5009 + }, + "isInternal": false + }, + { + "x": 425.73382, + "y": 377.90973, + "index": 3, + "body": { + "#": 5009 + }, + "isInternal": false + }, + { + "x": 422.82782, + "y": 373.90973, + "index": 4, + "body": { + "#": 5009 + }, + "isInternal": false + }, + { + "x": 422.82782, + "y": 368.96573, + "index": 5, + "body": { + "#": 5009 + }, + "isInternal": false + }, + { + "x": 425.73382, + "y": 364.96573, + "index": 6, + "body": { + "#": 5009 + }, + "isInternal": false + }, + { + "x": 430.43582, + "y": 363.43773, + "index": 7, + "body": { + "#": 5009 + }, + "isInternal": false + }, + { + "x": 435.13782, + "y": 364.96573, + "index": 8, + "body": { + "#": 5009 + }, + "isInternal": false + }, + { + "x": 438.04382, + "y": 368.96573, + "index": 9, + "body": { + "#": 5009 + }, + "isInternal": false + }, + { + "x": 430.43582, + "y": 371.43773 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.14147, + "y": 2.26702 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5029 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5031 + }, + "max": { + "#": 5032 + } + }, + { + "x": 422.82782, + "y": 363.43773 + }, + { + "x": 438.04382, + "y": 379.43773 + }, + { + "x": 430.29323, + "y": 368.98005 + }, + [ + { + "#": 5035 + }, + { + "#": 5036 + }, + { + "#": 5037 + }, + { + "#": 5038 + }, + { + "#": 5039 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,7,7", + "startCol": 8, + "endCol": 9, + "startRow": 7, + "endRow": 7 + }, + { + "id": 157, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5042 + }, + "angle": 0, + "vertices": { + "#": 5043 + }, + "position": { + "#": 5054 + }, + "force": { + "#": 5055 + }, + "torque": 0, + "positionImpulse": { + "#": 5056 + }, + "constraintImpulse": { + "#": 5057 + }, + "totalContacts": 0, + "speed": 2.17107, + "angularSpeed": 0, + "velocity": { + "#": 5058 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5059 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5060 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5062 + }, + "positionPrev": { + "#": 5065 + }, + "anglePrev": 0, + "axes": { + "#": 5066 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5041 + }, + "sleepCounter": 0, + "region": { + "#": 5072 + } + }, + [ + { + "#": 5041 + } + ], + [ + { + "#": 5044 + }, + { + "#": 5045 + }, + { + "#": 5046 + }, + { + "#": 5047 + }, + { + "#": 5048 + }, + { + "#": 5049 + }, + { + "#": 5050 + }, + { + "#": 5051 + }, + { + "#": 5052 + }, + { + "#": 5053 + } + ], + { + "x": 458.55448, + "y": 372.16726, + "index": 0, + "body": { + "#": 5041 + }, + "isInternal": false + }, + { + "x": 455.64848, + "y": 376.16726, + "index": 1, + "body": { + "#": 5041 + }, + "isInternal": false + }, + { + "x": 450.94648, + "y": 377.69526, + "index": 2, + "body": { + "#": 5041 + }, + "isInternal": false + }, + { + "x": 446.24448, + "y": 376.16726, + "index": 3, + "body": { + "#": 5041 + }, + "isInternal": false + }, + { + "x": 443.33848, + "y": 372.16726, + "index": 4, + "body": { + "#": 5041 + }, + "isInternal": false + }, + { + "x": 443.33848, + "y": 367.22326, + "index": 5, + "body": { + "#": 5041 + }, + "isInternal": false + }, + { + "x": 446.24448, + "y": 363.22326, + "index": 6, + "body": { + "#": 5041 + }, + "isInternal": false + }, + { + "x": 450.94648, + "y": 361.69526, + "index": 7, + "body": { + "#": 5041 + }, + "isInternal": false + }, + { + "x": 455.64848, + "y": 363.22326, + "index": 8, + "body": { + "#": 5041 + }, + "isInternal": false + }, + { + "x": 458.55448, + "y": 367.22326, + "index": 9, + "body": { + "#": 5041 + }, + "isInternal": false + }, + { + "x": 450.94648, + "y": 369.69526 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.16504, + "y": 1.88856 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5061 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5063 + }, + "max": { + "#": 5064 + } + }, + { + "x": 443.33848, + "y": 361.69526 + }, + { + "x": 458.55448, + "y": 377.69526 + }, + { + "x": 450.78149, + "y": 367.8142 + }, + [ + { + "#": 5067 + }, + { + "#": 5068 + }, + { + "#": 5069 + }, + { + "#": 5070 + }, + { + "#": 5071 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,7,7", + "startCol": 9, + "endCol": 9, + "startRow": 7, + "endRow": 7 + }, + { + "id": 158, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5074 + }, + "angle": 0, + "vertices": { + "#": 5075 + }, + "position": { + "#": 5086 + }, + "force": { + "#": 5087 + }, + "torque": 0, + "positionImpulse": { + "#": 5088 + }, + "constraintImpulse": { + "#": 5089 + }, + "totalContacts": 0, + "speed": 1.17143, + "angularSpeed": 0, + "velocity": { + "#": 5090 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5091 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5092 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5094 + }, + "positionPrev": { + "#": 5097 + }, + "anglePrev": 0, + "axes": { + "#": 5098 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5073 + }, + "sleepCounter": 0, + "region": { + "#": 5104 + } + }, + [ + { + "#": 5073 + } + ], + [ + { + "#": 5076 + }, + { + "#": 5077 + }, + { + "#": 5078 + }, + { + "#": 5079 + }, + { + "#": 5080 + }, + { + "#": 5081 + }, + { + "#": 5082 + }, + { + "#": 5083 + }, + { + "#": 5084 + }, + { + "#": 5085 + } + ], + { + "x": 477.48436, + "y": 364.06635, + "index": 0, + "body": { + "#": 5073 + }, + "isInternal": false + }, + { + "x": 474.57836, + "y": 368.06635, + "index": 1, + "body": { + "#": 5073 + }, + "isInternal": false + }, + { + "x": 469.87636, + "y": 369.59435, + "index": 2, + "body": { + "#": 5073 + }, + "isInternal": false + }, + { + "x": 465.17436, + "y": 368.06635, + "index": 3, + "body": { + "#": 5073 + }, + "isInternal": false + }, + { + "x": 462.26836, + "y": 364.06635, + "index": 4, + "body": { + "#": 5073 + }, + "isInternal": false + }, + { + "x": 462.26836, + "y": 359.12235, + "index": 5, + "body": { + "#": 5073 + }, + "isInternal": false + }, + { + "x": 465.17436, + "y": 355.12235, + "index": 6, + "body": { + "#": 5073 + }, + "isInternal": false + }, + { + "x": 469.87636, + "y": 353.59435, + "index": 7, + "body": { + "#": 5073 + }, + "isInternal": false + }, + { + "x": 474.57836, + "y": 355.12235, + "index": 8, + "body": { + "#": 5073 + }, + "isInternal": false + }, + { + "x": 477.48436, + "y": 359.12235, + "index": 9, + "body": { + "#": 5073 + }, + "isInternal": false + }, + { + "x": 469.87636, + "y": 361.59435 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.09705, + "y": 1.44103 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5093 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5095 + }, + "max": { + "#": 5096 + } + }, + { + "x": 462.26836, + "y": 353.59435 + }, + { + "x": 477.48436, + "y": 369.59435 + }, + { + "x": 469.9659, + "y": 360.50255 + }, + [ + { + "#": 5099 + }, + { + "#": 5100 + }, + { + "#": 5101 + }, + { + "#": 5102 + }, + { + "#": 5103 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,7,7", + "startCol": 9, + "endCol": 9, + "startRow": 7, + "endRow": 7 + }, + { + "id": 159, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5106 + }, + "angle": 0, + "vertices": { + "#": 5107 + }, + "position": { + "#": 5118 + }, + "force": { + "#": 5119 + }, + "torque": 0, + "positionImpulse": { + "#": 5120 + }, + "constraintImpulse": { + "#": 5121 + }, + "totalContacts": 0, + "speed": 0.78968, + "angularSpeed": 0, + "velocity": { + "#": 5122 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5123 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5124 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5126 + }, + "positionPrev": { + "#": 5129 + }, + "anglePrev": 0, + "axes": { + "#": 5130 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5105 + }, + "sleepCounter": 0, + "region": { + "#": 5136 + } + }, + [ + { + "#": 5105 + } + ], + [ + { + "#": 5108 + }, + { + "#": 5109 + }, + { + "#": 5110 + }, + { + "#": 5111 + }, + { + "#": 5112 + }, + { + "#": 5113 + }, + { + "#": 5114 + }, + { + "#": 5115 + }, + { + "#": 5116 + }, + { + "#": 5117 + } + ], + { + "x": 498.06805, + "y": 362.59138, + "index": 0, + "body": { + "#": 5105 + }, + "isInternal": false + }, + { + "x": 495.16205, + "y": 366.59138, + "index": 1, + "body": { + "#": 5105 + }, + "isInternal": false + }, + { + "x": 490.46005, + "y": 368.11938, + "index": 2, + "body": { + "#": 5105 + }, + "isInternal": false + }, + { + "x": 485.75805, + "y": 366.59138, + "index": 3, + "body": { + "#": 5105 + }, + "isInternal": false + }, + { + "x": 482.85205, + "y": 362.59138, + "index": 4, + "body": { + "#": 5105 + }, + "isInternal": false + }, + { + "x": 482.85205, + "y": 357.64738, + "index": 5, + "body": { + "#": 5105 + }, + "isInternal": false + }, + { + "x": 485.75805, + "y": 353.64738, + "index": 6, + "body": { + "#": 5105 + }, + "isInternal": false + }, + { + "x": 490.46005, + "y": 352.11938, + "index": 7, + "body": { + "#": 5105 + }, + "isInternal": false + }, + { + "x": 495.16205, + "y": 353.64738, + "index": 8, + "body": { + "#": 5105 + }, + "isInternal": false + }, + { + "x": 498.06805, + "y": 357.64738, + "index": 9, + "body": { + "#": 5105 + }, + "isInternal": false + }, + { + "x": 490.46005, + "y": 360.11938 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.02928, + "y": 1.12177 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5125 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5127 + }, + "max": { + "#": 5128 + } + }, + { + "x": 482.85205, + "y": 352.11938 + }, + { + "x": 498.06805, + "y": 368.11938 + }, + { + "x": 490.48043, + "y": 359.48855 + }, + [ + { + "#": 5131 + }, + { + "#": 5132 + }, + { + "#": 5133 + }, + { + "#": 5134 + }, + { + "#": 5135 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,7,7", + "startCol": 10, + "endCol": 10, + "startRow": 7, + "endRow": 7 + }, + { + "id": 160, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5138 + }, + "angle": 0, + "vertices": { + "#": 5139 + }, + "position": { + "#": 5150 + }, + "force": { + "#": 5151 + }, + "torque": 0, + "positionImpulse": { + "#": 5152 + }, + "constraintImpulse": { + "#": 5153 + }, + "totalContacts": 0, + "speed": 0.7824, + "angularSpeed": 0, + "velocity": { + "#": 5154 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5155 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5156 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5158 + }, + "positionPrev": { + "#": 5161 + }, + "anglePrev": 0, + "axes": { + "#": 5162 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5137 + }, + "sleepCounter": 0, + "region": { + "#": 5168 + } + }, + [ + { + "#": 5137 + } + ], + [ + { + "#": 5140 + }, + { + "#": 5141 + }, + { + "#": 5142 + }, + { + "#": 5143 + }, + { + "#": 5144 + }, + { + "#": 5145 + }, + { + "#": 5146 + }, + { + "#": 5147 + }, + { + "#": 5148 + }, + { + "#": 5149 + } + ], + { + "x": 518.70125, + "y": 362.54906, + "index": 0, + "body": { + "#": 5137 + }, + "isInternal": false + }, + { + "x": 515.79525, + "y": 366.54906, + "index": 1, + "body": { + "#": 5137 + }, + "isInternal": false + }, + { + "x": 511.09325, + "y": 368.07706, + "index": 2, + "body": { + "#": 5137 + }, + "isInternal": false + }, + { + "x": 506.39125, + "y": 366.54906, + "index": 3, + "body": { + "#": 5137 + }, + "isInternal": false + }, + { + "x": 503.48525, + "y": 362.54906, + "index": 4, + "body": { + "#": 5137 + }, + "isInternal": false + }, + { + "x": 503.48525, + "y": 357.60506, + "index": 5, + "body": { + "#": 5137 + }, + "isInternal": false + }, + { + "x": 506.39125, + "y": 353.60506, + "index": 6, + "body": { + "#": 5137 + }, + "isInternal": false + }, + { + "x": 511.09325, + "y": 352.07706, + "index": 7, + "body": { + "#": 5137 + }, + "isInternal": false + }, + { + "x": 515.79525, + "y": 353.60506, + "index": 8, + "body": { + "#": 5137 + }, + "isInternal": false + }, + { + "x": 518.70125, + "y": 357.60506, + "index": 9, + "body": { + "#": 5137 + }, + "isInternal": false + }, + { + "x": 511.09325, + "y": 360.07706 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.06755, + "y": 1.1072 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5157 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5159 + }, + "max": { + "#": 5160 + } + }, + { + "x": 503.48525, + "y": 352.07706 + }, + { + "x": 518.70125, + "y": 368.07706 + }, + { + "x": 511.02126, + "y": 359.47691 + }, + [ + { + "#": 5163 + }, + { + "#": 5164 + }, + { + "#": 5165 + }, + { + "#": 5166 + }, + { + "#": 5167 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,7,7", + "startCol": 10, + "endCol": 10, + "startRow": 7, + "endRow": 7 + }, + { + "id": 161, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5170 + }, + "angle": 0, + "vertices": { + "#": 5171 + }, + "position": { + "#": 5182 + }, + "force": { + "#": 5183 + }, + "torque": 0, + "positionImpulse": { + "#": 5184 + }, + "constraintImpulse": { + "#": 5185 + }, + "totalContacts": 0, + "speed": 1.11968, + "angularSpeed": 0, + "velocity": { + "#": 5186 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5187 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5188 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5190 + }, + "positionPrev": { + "#": 5193 + }, + "anglePrev": 0, + "axes": { + "#": 5194 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5169 + }, + "sleepCounter": 0, + "region": { + "#": 5200 + } + }, + [ + { + "#": 5169 + } + ], + [ + { + "#": 5172 + }, + { + "#": 5173 + }, + { + "#": 5174 + }, + { + "#": 5175 + }, + { + "#": 5176 + }, + { + "#": 5177 + }, + { + "#": 5178 + }, + { + "#": 5179 + }, + { + "#": 5180 + }, + { + "#": 5181 + } + ], + { + "x": 539.25616, + "y": 363.87068, + "index": 0, + "body": { + "#": 5169 + }, + "isInternal": false + }, + { + "x": 536.35016, + "y": 367.87068, + "index": 1, + "body": { + "#": 5169 + }, + "isInternal": false + }, + { + "x": 531.64816, + "y": 369.39868, + "index": 2, + "body": { + "#": 5169 + }, + "isInternal": false + }, + { + "x": 526.94616, + "y": 367.87068, + "index": 3, + "body": { + "#": 5169 + }, + "isInternal": false + }, + { + "x": 524.04016, + "y": 363.87068, + "index": 4, + "body": { + "#": 5169 + }, + "isInternal": false + }, + { + "x": 524.04016, + "y": 358.92668, + "index": 5, + "body": { + "#": 5169 + }, + "isInternal": false + }, + { + "x": 526.94616, + "y": 354.92668, + "index": 6, + "body": { + "#": 5169 + }, + "isInternal": false + }, + { + "x": 531.64816, + "y": 353.39868, + "index": 7, + "body": { + "#": 5169 + }, + "isInternal": false + }, + { + "x": 536.35016, + "y": 354.92668, + "index": 8, + "body": { + "#": 5169 + }, + "isInternal": false + }, + { + "x": 539.25616, + "y": 358.92668, + "index": 9, + "body": { + "#": 5169 + }, + "isInternal": false + }, + { + "x": 531.64816, + "y": 361.39868 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.1017, + "y": 1.37917 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5189 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5191 + }, + "max": { + "#": 5192 + } + }, + { + "x": 524.04016, + "y": 353.39868 + }, + { + "x": 539.25616, + "y": 369.39868 + }, + { + "x": 531.54622, + "y": 360.42741 + }, + [ + { + "#": 5195 + }, + { + "#": 5196 + }, + { + "#": 5197 + }, + { + "#": 5198 + }, + { + "#": 5199 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,7,7", + "startCol": 10, + "endCol": 11, + "startRow": 7, + "endRow": 7 + }, + { + "id": 162, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5202 + }, + "angle": 0, + "vertices": { + "#": 5203 + }, + "position": { + "#": 5214 + }, + "force": { + "#": 5215 + }, + "torque": 0, + "positionImpulse": { + "#": 5216 + }, + "constraintImpulse": { + "#": 5217 + }, + "totalContacts": 0, + "speed": 2.15214, + "angularSpeed": 0, + "velocity": { + "#": 5218 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5219 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5220 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5222 + }, + "positionPrev": { + "#": 5225 + }, + "anglePrev": 0, + "axes": { + "#": 5226 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5201 + }, + "sleepCounter": 0, + "region": { + "#": 5232 + } + }, + [ + { + "#": 5201 + } + ], + [ + { + "#": 5204 + }, + { + "#": 5205 + }, + { + "#": 5206 + }, + { + "#": 5207 + }, + { + "#": 5208 + }, + { + "#": 5209 + }, + { + "#": 5210 + }, + { + "#": 5211 + }, + { + "#": 5212 + }, + { + "#": 5213 + } + ], + { + "x": 558.07801, + "y": 372.09503, + "index": 0, + "body": { + "#": 5201 + }, + "isInternal": false + }, + { + "x": 555.17201, + "y": 376.09503, + "index": 1, + "body": { + "#": 5201 + }, + "isInternal": false + }, + { + "x": 550.47001, + "y": 377.62303, + "index": 2, + "body": { + "#": 5201 + }, + "isInternal": false + }, + { + "x": 545.76801, + "y": 376.09503, + "index": 3, + "body": { + "#": 5201 + }, + "isInternal": false + }, + { + "x": 542.86201, + "y": 372.09503, + "index": 4, + "body": { + "#": 5201 + }, + "isInternal": false + }, + { + "x": 542.86201, + "y": 367.15103, + "index": 5, + "body": { + "#": 5201 + }, + "isInternal": false + }, + { + "x": 545.76801, + "y": 363.15103, + "index": 6, + "body": { + "#": 5201 + }, + "isInternal": false + }, + { + "x": 550.47001, + "y": 361.62303, + "index": 7, + "body": { + "#": 5201 + }, + "isInternal": false + }, + { + "x": 555.17201, + "y": 363.15103, + "index": 8, + "body": { + "#": 5201 + }, + "isInternal": false + }, + { + "x": 558.07801, + "y": 367.15103, + "index": 9, + "body": { + "#": 5201 + }, + "isInternal": false + }, + { + "x": 550.47001, + "y": 369.62303 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.22817, + "y": 1.87224 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5221 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5223 + }, + "max": { + "#": 5224 + } + }, + { + "x": 542.86201, + "y": 361.62303 + }, + { + "x": 558.07801, + "y": 377.62303 + }, + { + "x": 550.6977, + "y": 367.76829 + }, + [ + { + "#": 5227 + }, + { + "#": 5228 + }, + { + "#": 5229 + }, + { + "#": 5230 + }, + { + "#": 5231 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,11,7,7", + "startCol": 11, + "endCol": 11, + "startRow": 7, + "endRow": 7 + }, + { + "id": 163, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5234 + }, + "angle": 0, + "vertices": { + "#": 5235 + }, + "position": { + "#": 5246 + }, + "force": { + "#": 5247 + }, + "torque": 0, + "positionImpulse": { + "#": 5248 + }, + "constraintImpulse": { + "#": 5249 + }, + "totalContacts": 0, + "speed": 2.52924, + "angularSpeed": 0, + "velocity": { + "#": 5250 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5251 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5252 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5254 + }, + "positionPrev": { + "#": 5257 + }, + "anglePrev": 0, + "axes": { + "#": 5258 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5233 + }, + "sleepCounter": 0, + "region": { + "#": 5264 + } + }, + [ + { + "#": 5233 + } + ], + [ + { + "#": 5236 + }, + { + "#": 5237 + }, + { + "#": 5238 + }, + { + "#": 5239 + }, + { + "#": 5240 + }, + { + "#": 5241 + }, + { + "#": 5242 + }, + { + "#": 5243 + }, + { + "#": 5244 + }, + { + "#": 5245 + } + ], + { + "x": 578.46393, + "y": 373.70146, + "index": 0, + "body": { + "#": 5233 + }, + "isInternal": false + }, + { + "x": 575.55793, + "y": 377.70146, + "index": 1, + "body": { + "#": 5233 + }, + "isInternal": false + }, + { + "x": 570.85593, + "y": 379.22946, + "index": 2, + "body": { + "#": 5233 + }, + "isInternal": false + }, + { + "x": 566.15393, + "y": 377.70146, + "index": 3, + "body": { + "#": 5233 + }, + "isInternal": false + }, + { + "x": 563.24793, + "y": 373.70146, + "index": 4, + "body": { + "#": 5233 + }, + "isInternal": false + }, + { + "x": 563.24793, + "y": 368.75746, + "index": 5, + "body": { + "#": 5233 + }, + "isInternal": false + }, + { + "x": 566.15393, + "y": 364.75746, + "index": 6, + "body": { + "#": 5233 + }, + "isInternal": false + }, + { + "x": 570.85593, + "y": 363.22946, + "index": 7, + "body": { + "#": 5233 + }, + "isInternal": false + }, + { + "x": 575.55793, + "y": 364.75746, + "index": 8, + "body": { + "#": 5233 + }, + "isInternal": false + }, + { + "x": 578.46393, + "y": 368.75746, + "index": 9, + "body": { + "#": 5233 + }, + "isInternal": false + }, + { + "x": 570.85593, + "y": 371.22946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.23604, + "y": 2.2093 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5253 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5255 + }, + "max": { + "#": 5256 + } + }, + { + "x": 563.24793, + "y": 363.22946 + }, + { + "x": 578.46393, + "y": 379.22946 + }, + { + "x": 571.09576, + "y": 368.87472 + }, + [ + { + "#": 5259 + }, + { + "#": 5260 + }, + { + "#": 5261 + }, + { + "#": 5262 + }, + { + "#": 5263 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,7,7", + "startCol": 11, + "endCol": 12, + "startRow": 7, + "endRow": 7 + }, + { + "id": 164, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5266 + }, + "angle": 0, + "vertices": { + "#": 5267 + }, + "position": { + "#": 5278 + }, + "force": { + "#": 5279 + }, + "torque": 0, + "positionImpulse": { + "#": 5280 + }, + "constraintImpulse": { + "#": 5281 + }, + "totalContacts": 0, + "speed": 2.55424, + "angularSpeed": 0, + "velocity": { + "#": 5282 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5283 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5284 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5286 + }, + "positionPrev": { + "#": 5289 + }, + "anglePrev": 0, + "axes": { + "#": 5290 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5265 + }, + "sleepCounter": 0, + "region": { + "#": 5296 + } + }, + [ + { + "#": 5265 + } + ], + [ + { + "#": 5268 + }, + { + "#": 5269 + }, + { + "#": 5270 + }, + { + "#": 5271 + }, + { + "#": 5272 + }, + { + "#": 5273 + }, + { + "#": 5274 + }, + { + "#": 5275 + }, + { + "#": 5276 + }, + { + "#": 5277 + } + ], + { + "x": 598.78542, + "y": 373.79615, + "index": 0, + "body": { + "#": 5265 + }, + "isInternal": false + }, + { + "x": 595.87942, + "y": 377.79615, + "index": 1, + "body": { + "#": 5265 + }, + "isInternal": false + }, + { + "x": 591.17742, + "y": 379.32415, + "index": 2, + "body": { + "#": 5265 + }, + "isInternal": false + }, + { + "x": 586.47542, + "y": 377.79615, + "index": 3, + "body": { + "#": 5265 + }, + "isInternal": false + }, + { + "x": 583.56942, + "y": 373.79615, + "index": 4, + "body": { + "#": 5265 + }, + "isInternal": false + }, + { + "x": 583.56942, + "y": 368.85215, + "index": 5, + "body": { + "#": 5265 + }, + "isInternal": false + }, + { + "x": 586.47542, + "y": 364.85215, + "index": 6, + "body": { + "#": 5265 + }, + "isInternal": false + }, + { + "x": 591.17742, + "y": 363.32415, + "index": 7, + "body": { + "#": 5265 + }, + "isInternal": false + }, + { + "x": 595.87942, + "y": 364.85215, + "index": 8, + "body": { + "#": 5265 + }, + "isInternal": false + }, + { + "x": 598.78542, + "y": 368.85215, + "index": 9, + "body": { + "#": 5265 + }, + "isInternal": false + }, + { + "x": 591.17742, + "y": 371.32415 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.22536, + "y": 2.23977 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5285 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5287 + }, + "max": { + "#": 5288 + } + }, + { + "x": 583.56942, + "y": 363.32415 + }, + { + "x": 598.78542, + "y": 379.32415 + }, + { + "x": 591.40674, + "y": 368.92463 + }, + [ + { + "#": 5291 + }, + { + "#": 5292 + }, + { + "#": 5293 + }, + { + "#": 5294 + }, + { + "#": 5295 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,7,7", + "startCol": 12, + "endCol": 12, + "startRow": 7, + "endRow": 7 + }, + { + "id": 165, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5298 + }, + "angle": 0, + "vertices": { + "#": 5299 + }, + "position": { + "#": 5310 + }, + "force": { + "#": 5311 + }, + "torque": 0, + "positionImpulse": { + "#": 5312 + }, + "constraintImpulse": { + "#": 5313 + }, + "totalContacts": 0, + "speed": 3.3159, + "angularSpeed": 0, + "velocity": { + "#": 5314 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5315 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5316 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5318 + }, + "positionPrev": { + "#": 5321 + }, + "anglePrev": 0, + "axes": { + "#": 5322 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5297 + }, + "sleepCounter": 0, + "region": { + "#": 5328 + } + }, + [ + { + "#": 5297 + } + ], + [ + { + "#": 5300 + }, + { + "#": 5301 + }, + { + "#": 5302 + }, + { + "#": 5303 + }, + { + "#": 5304 + }, + { + "#": 5305 + }, + { + "#": 5306 + }, + { + "#": 5307 + }, + { + "#": 5308 + }, + { + "#": 5309 + } + ], + { + "x": 215.68245, + "y": 398.12395, + "index": 0, + "body": { + "#": 5297 + }, + "isInternal": false + }, + { + "x": 212.77645, + "y": 402.12395, + "index": 1, + "body": { + "#": 5297 + }, + "isInternal": false + }, + { + "x": 208.07445, + "y": 403.65195, + "index": 2, + "body": { + "#": 5297 + }, + "isInternal": false + }, + { + "x": 203.37245, + "y": 402.12395, + "index": 3, + "body": { + "#": 5297 + }, + "isInternal": false + }, + { + "x": 200.46645, + "y": 398.12395, + "index": 4, + "body": { + "#": 5297 + }, + "isInternal": false + }, + { + "x": 200.46645, + "y": 393.17995, + "index": 5, + "body": { + "#": 5297 + }, + "isInternal": false + }, + { + "x": 203.37245, + "y": 389.17995, + "index": 6, + "body": { + "#": 5297 + }, + "isInternal": false + }, + { + "x": 208.07445, + "y": 387.65195, + "index": 7, + "body": { + "#": 5297 + }, + "isInternal": false + }, + { + "x": 212.77645, + "y": 389.17995, + "index": 8, + "body": { + "#": 5297 + }, + "isInternal": false + }, + { + "x": 215.68245, + "y": 393.17995, + "index": 9, + "body": { + "#": 5297 + }, + "isInternal": false + }, + { + "x": 208.07445, + "y": 395.65195 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.05215, + "y": 2.85476 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5317 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5319 + }, + "max": { + "#": 5320 + } + }, + { + "x": 200.46645, + "y": 387.65195 + }, + { + "x": 215.68245, + "y": 403.65195 + }, + { + "x": 207.98156, + "y": 392.5028 + }, + [ + { + "#": 5323 + }, + { + "#": 5324 + }, + { + "#": 5325 + }, + { + "#": 5326 + }, + { + "#": 5327 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,8,8", + "startCol": 4, + "endCol": 4, + "startRow": 8, + "endRow": 8 + }, + { + "id": 166, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5330 + }, + "angle": 0, + "vertices": { + "#": 5331 + }, + "position": { + "#": 5342 + }, + "force": { + "#": 5343 + }, + "torque": 0, + "positionImpulse": { + "#": 5344 + }, + "constraintImpulse": { + "#": 5345 + }, + "totalContacts": 0, + "speed": 3.00365, + "angularSpeed": 0, + "velocity": { + "#": 5346 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5347 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5348 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5350 + }, + "positionPrev": { + "#": 5353 + }, + "anglePrev": 0, + "axes": { + "#": 5354 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5329 + }, + "sleepCounter": 0, + "region": { + "#": 5360 + } + }, + [ + { + "#": 5329 + } + ], + [ + { + "#": 5332 + }, + { + "#": 5333 + }, + { + "#": 5334 + }, + { + "#": 5335 + }, + { + "#": 5336 + }, + { + "#": 5337 + }, + { + "#": 5338 + }, + { + "#": 5339 + }, + { + "#": 5340 + }, + { + "#": 5341 + } + ], + { + "x": 235.6698, + "y": 398.12376, + "index": 0, + "body": { + "#": 5329 + }, + "isInternal": false + }, + { + "x": 232.7638, + "y": 402.12376, + "index": 1, + "body": { + "#": 5329 + }, + "isInternal": false + }, + { + "x": 228.0618, + "y": 403.65176, + "index": 2, + "body": { + "#": 5329 + }, + "isInternal": false + }, + { + "x": 223.3598, + "y": 402.12376, + "index": 3, + "body": { + "#": 5329 + }, + "isInternal": false + }, + { + "x": 220.4538, + "y": 398.12376, + "index": 4, + "body": { + "#": 5329 + }, + "isInternal": false + }, + { + "x": 220.4538, + "y": 393.17976, + "index": 5, + "body": { + "#": 5329 + }, + "isInternal": false + }, + { + "x": 223.3598, + "y": 389.17976, + "index": 6, + "body": { + "#": 5329 + }, + "isInternal": false + }, + { + "x": 228.0618, + "y": 387.65176, + "index": 7, + "body": { + "#": 5329 + }, + "isInternal": false + }, + { + "x": 232.7638, + "y": 389.17976, + "index": 8, + "body": { + "#": 5329 + }, + "isInternal": false + }, + { + "x": 235.6698, + "y": 393.17976, + "index": 9, + "body": { + "#": 5329 + }, + "isInternal": false + }, + { + "x": 228.0618, + "y": 395.65176 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.02822, + "y": 2.61899 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5349 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5351 + }, + "max": { + "#": 5352 + } + }, + { + "x": 220.4538, + "y": 387.65176 + }, + { + "x": 235.6698, + "y": 403.65176 + }, + { + "x": 228.0691, + "y": 392.89149 + }, + [ + { + "#": 5355 + }, + { + "#": 5356 + }, + { + "#": 5357 + }, + { + "#": 5358 + }, + { + "#": 5359 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,8,8", + "startCol": 4, + "endCol": 4, + "startRow": 8, + "endRow": 8 + }, + { + "id": 167, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5362 + }, + "angle": 0, + "vertices": { + "#": 5363 + }, + "position": { + "#": 5374 + }, + "force": { + "#": 5375 + }, + "torque": 0, + "positionImpulse": { + "#": 5376 + }, + "constraintImpulse": { + "#": 5377 + }, + "totalContacts": 0, + "speed": 2.34934, + "angularSpeed": 0, + "velocity": { + "#": 5378 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5379 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5380 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5382 + }, + "positionPrev": { + "#": 5385 + }, + "anglePrev": 0, + "axes": { + "#": 5386 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5361 + }, + "sleepCounter": 0, + "region": { + "#": 5392 + } + }, + [ + { + "#": 5361 + } + ], + [ + { + "#": 5364 + }, + { + "#": 5365 + }, + { + "#": 5366 + }, + { + "#": 5367 + }, + { + "#": 5368 + }, + { + "#": 5369 + }, + { + "#": 5370 + }, + { + "#": 5371 + }, + { + "#": 5372 + }, + { + "#": 5373 + } + ], + { + "x": 254.77784, + "y": 392.79628, + "index": 0, + "body": { + "#": 5361 + }, + "isInternal": false + }, + { + "x": 251.87184, + "y": 396.79628, + "index": 1, + "body": { + "#": 5361 + }, + "isInternal": false + }, + { + "x": 247.16984, + "y": 398.32428, + "index": 2, + "body": { + "#": 5361 + }, + "isInternal": false + }, + { + "x": 242.46784, + "y": 396.79628, + "index": 3, + "body": { + "#": 5361 + }, + "isInternal": false + }, + { + "x": 239.56184, + "y": 392.79628, + "index": 4, + "body": { + "#": 5361 + }, + "isInternal": false + }, + { + "x": 239.56184, + "y": 387.85228, + "index": 5, + "body": { + "#": 5361 + }, + "isInternal": false + }, + { + "x": 242.46784, + "y": 383.85228, + "index": 6, + "body": { + "#": 5361 + }, + "isInternal": false + }, + { + "x": 247.16984, + "y": 382.32428, + "index": 7, + "body": { + "#": 5361 + }, + "isInternal": false + }, + { + "x": 251.87184, + "y": 383.85228, + "index": 8, + "body": { + "#": 5361 + }, + "isInternal": false + }, + { + "x": 254.77784, + "y": 387.85228, + "index": 9, + "body": { + "#": 5361 + }, + "isInternal": false + }, + { + "x": 247.16984, + "y": 390.32428 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.32516, + "y": 2.0882 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5381 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5383 + }, + "max": { + "#": 5384 + } + }, + { + "x": 239.56184, + "y": 382.32428 + }, + { + "x": 254.77784, + "y": 398.32428 + }, + { + "x": 247.52386, + "y": 388.42936 + }, + [ + { + "#": 5387 + }, + { + "#": 5388 + }, + { + "#": 5389 + }, + { + "#": 5390 + }, + { + "#": 5391 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,7,8", + "startCol": 4, + "endCol": 5, + "startRow": 7, + "endRow": 8 + }, + { + "id": 168, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5394 + }, + "angle": 0, + "vertices": { + "#": 5395 + }, + "position": { + "#": 5406 + }, + "force": { + "#": 5407 + }, + "torque": 0, + "positionImpulse": { + "#": 5408 + }, + "constraintImpulse": { + "#": 5409 + }, + "totalContacts": 0, + "speed": 1.80481, + "angularSpeed": 0, + "velocity": { + "#": 5410 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5411 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5412 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5414 + }, + "positionPrev": { + "#": 5417 + }, + "anglePrev": 0, + "axes": { + "#": 5418 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5393 + }, + "sleepCounter": 0, + "region": { + "#": 5424 + } + }, + [ + { + "#": 5393 + } + ], + [ + { + "#": 5396 + }, + { + "#": 5397 + }, + { + "#": 5398 + }, + { + "#": 5399 + }, + { + "#": 5400 + }, + { + "#": 5401 + }, + { + "#": 5402 + }, + { + "#": 5403 + }, + { + "#": 5404 + }, + { + "#": 5405 + } + ], + { + "x": 274.18289, + "y": 388.55242, + "index": 0, + "body": { + "#": 5393 + }, + "isInternal": false + }, + { + "x": 271.27689, + "y": 392.55242, + "index": 1, + "body": { + "#": 5393 + }, + "isInternal": false + }, + { + "x": 266.57489, + "y": 394.08042, + "index": 2, + "body": { + "#": 5393 + }, + "isInternal": false + }, + { + "x": 261.87289, + "y": 392.55242, + "index": 3, + "body": { + "#": 5393 + }, + "isInternal": false + }, + { + "x": 258.96689, + "y": 388.55242, + "index": 4, + "body": { + "#": 5393 + }, + "isInternal": false + }, + { + "x": 258.96689, + "y": 383.60842, + "index": 5, + "body": { + "#": 5393 + }, + "isInternal": false + }, + { + "x": 261.87289, + "y": 379.60842, + "index": 6, + "body": { + "#": 5393 + }, + "isInternal": false + }, + { + "x": 266.57489, + "y": 378.08042, + "index": 7, + "body": { + "#": 5393 + }, + "isInternal": false + }, + { + "x": 271.27689, + "y": 379.60842, + "index": 8, + "body": { + "#": 5393 + }, + "isInternal": false + }, + { + "x": 274.18289, + "y": 383.60842, + "index": 9, + "body": { + "#": 5393 + }, + "isInternal": false + }, + { + "x": 266.57489, + "y": 386.08042 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.35544, + "y": 1.80363 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5413 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5415 + }, + "max": { + "#": 5416 + } + }, + { + "x": 258.96689, + "y": 378.08042 + }, + { + "x": 274.18289, + "y": 394.08042 + }, + { + "x": 266.97982, + "y": 384.5332 + }, + [ + { + "#": 5419 + }, + { + "#": 5420 + }, + { + "#": 5421 + }, + { + "#": 5422 + }, + { + "#": 5423 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,7,8", + "startCol": 5, + "endCol": 5, + "startRow": 7, + "endRow": 8 + }, + { + "id": 169, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5426 + }, + "angle": 0, + "vertices": { + "#": 5427 + }, + "position": { + "#": 5438 + }, + "force": { + "#": 5439 + }, + "torque": 0, + "positionImpulse": { + "#": 5440 + }, + "constraintImpulse": { + "#": 5441 + }, + "totalContacts": 0, + "speed": 1.62075, + "angularSpeed": 0, + "velocity": { + "#": 5442 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5443 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5444 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5446 + }, + "positionPrev": { + "#": 5449 + }, + "anglePrev": 0, + "axes": { + "#": 5450 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5425 + }, + "sleepCounter": 0, + "region": { + "#": 5456 + } + }, + [ + { + "#": 5425 + } + ], + [ + { + "#": 5428 + }, + { + "#": 5429 + }, + { + "#": 5430 + }, + { + "#": 5431 + }, + { + "#": 5432 + }, + { + "#": 5433 + }, + { + "#": 5434 + }, + { + "#": 5435 + }, + { + "#": 5436 + }, + { + "#": 5437 + } + ], + { + "x": 294.37787, + "y": 386.36863, + "index": 0, + "body": { + "#": 5425 + }, + "isInternal": false + }, + { + "x": 291.47187, + "y": 390.36863, + "index": 1, + "body": { + "#": 5425 + }, + "isInternal": false + }, + { + "x": 286.76987, + "y": 391.89663, + "index": 2, + "body": { + "#": 5425 + }, + "isInternal": false + }, + { + "x": 282.06787, + "y": 390.36863, + "index": 3, + "body": { + "#": 5425 + }, + "isInternal": false + }, + { + "x": 279.16187, + "y": 386.36863, + "index": 4, + "body": { + "#": 5425 + }, + "isInternal": false + }, + { + "x": 279.16187, + "y": 381.42463, + "index": 5, + "body": { + "#": 5425 + }, + "isInternal": false + }, + { + "x": 282.06787, + "y": 377.42463, + "index": 6, + "body": { + "#": 5425 + }, + "isInternal": false + }, + { + "x": 286.76987, + "y": 375.89663, + "index": 7, + "body": { + "#": 5425 + }, + "isInternal": false + }, + { + "x": 291.47187, + "y": 377.42463, + "index": 8, + "body": { + "#": 5425 + }, + "isInternal": false + }, + { + "x": 294.37787, + "y": 381.42463, + "index": 9, + "body": { + "#": 5425 + }, + "isInternal": false + }, + { + "x": 286.76987, + "y": 383.89663 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.20414, + "y": 1.73212 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5445 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5447 + }, + "max": { + "#": 5448 + } + }, + { + "x": 279.16187, + "y": 375.89663 + }, + { + "x": 294.37787, + "y": 391.89663 + }, + { + "x": 287.04549, + "y": 382.45165 + }, + [ + { + "#": 5451 + }, + { + "#": 5452 + }, + { + "#": 5453 + }, + { + "#": 5454 + }, + { + "#": 5455 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,7,8", + "startCol": 5, + "endCol": 6, + "startRow": 7, + "endRow": 8 + }, + { + "id": 170, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5458 + }, + "angle": 0, + "vertices": { + "#": 5459 + }, + "position": { + "#": 5470 + }, + "force": { + "#": 5471 + }, + "torque": 0, + "positionImpulse": { + "#": 5472 + }, + "constraintImpulse": { + "#": 5473 + }, + "totalContacts": 0, + "speed": 2.56224, + "angularSpeed": 0, + "velocity": { + "#": 5474 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5475 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5476 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5478 + }, + "positionPrev": { + "#": 5481 + }, + "anglePrev": 0, + "axes": { + "#": 5482 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5457 + }, + "sleepCounter": 0, + "region": { + "#": 5488 + } + }, + [ + { + "#": 5457 + } + ], + [ + { + "#": 5460 + }, + { + "#": 5461 + }, + { + "#": 5462 + }, + { + "#": 5463 + }, + { + "#": 5464 + }, + { + "#": 5465 + }, + { + "#": 5466 + }, + { + "#": 5467 + }, + { + "#": 5468 + }, + { + "#": 5469 + } + ], + { + "x": 315.2116, + "y": 386.15085, + "index": 0, + "body": { + "#": 5457 + }, + "isInternal": false + }, + { + "x": 312.3056, + "y": 390.15085, + "index": 1, + "body": { + "#": 5457 + }, + "isInternal": false + }, + { + "x": 307.6036, + "y": 391.67885, + "index": 2, + "body": { + "#": 5457 + }, + "isInternal": false + }, + { + "x": 302.9016, + "y": 390.15085, + "index": 3, + "body": { + "#": 5457 + }, + "isInternal": false + }, + { + "x": 299.9956, + "y": 386.15085, + "index": 4, + "body": { + "#": 5457 + }, + "isInternal": false + }, + { + "x": 299.9956, + "y": 381.20685, + "index": 5, + "body": { + "#": 5457 + }, + "isInternal": false + }, + { + "x": 302.9016, + "y": 377.20685, + "index": 6, + "body": { + "#": 5457 + }, + "isInternal": false + }, + { + "x": 307.6036, + "y": 375.67885, + "index": 7, + "body": { + "#": 5457 + }, + "isInternal": false + }, + { + "x": 312.3056, + "y": 377.20685, + "index": 8, + "body": { + "#": 5457 + }, + "isInternal": false + }, + { + "x": 315.2116, + "y": 381.20685, + "index": 9, + "body": { + "#": 5457 + }, + "isInternal": false + }, + { + "x": 307.6036, + "y": 383.67885 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.09938, + "y": 2.5187 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5477 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5479 + }, + "max": { + "#": 5480 + } + }, + { + "x": 299.9956, + "y": 375.67885 + }, + { + "x": 315.2116, + "y": 391.67885 + }, + { + "x": 307.68935, + "y": 381.10797 + }, + [ + { + "#": 5483 + }, + { + "#": 5484 + }, + { + "#": 5485 + }, + { + "#": 5486 + }, + { + "#": 5487 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,6,7,8", + "startCol": 6, + "endCol": 6, + "startRow": 7, + "endRow": 8 + }, + { + "id": 171, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5490 + }, + "angle": 0, + "vertices": { + "#": 5491 + }, + "position": { + "#": 5502 + }, + "force": { + "#": 5503 + }, + "torque": 0, + "positionImpulse": { + "#": 5504 + }, + "constraintImpulse": { + "#": 5505 + }, + "totalContacts": 0, + "speed": 2.53362, + "angularSpeed": 0, + "velocity": { + "#": 5506 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5507 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5508 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5510 + }, + "positionPrev": { + "#": 5513 + }, + "anglePrev": 0, + "axes": { + "#": 5514 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5489 + }, + "sleepCounter": 0, + "region": { + "#": 5520 + } + }, + [ + { + "#": 5489 + } + ], + [ + { + "#": 5492 + }, + { + "#": 5493 + }, + { + "#": 5494 + }, + { + "#": 5495 + }, + { + "#": 5496 + }, + { + "#": 5497 + }, + { + "#": 5498 + }, + { + "#": 5499 + }, + { + "#": 5500 + }, + { + "#": 5501 + } + ], + { + "x": 335.17054, + "y": 391.38853, + "index": 0, + "body": { + "#": 5489 + }, + "isInternal": false + }, + { + "x": 332.26454, + "y": 395.38853, + "index": 1, + "body": { + "#": 5489 + }, + "isInternal": false + }, + { + "x": 327.56254, + "y": 396.91653, + "index": 2, + "body": { + "#": 5489 + }, + "isInternal": false + }, + { + "x": 322.86054, + "y": 395.38853, + "index": 3, + "body": { + "#": 5489 + }, + "isInternal": false + }, + { + "x": 319.95454, + "y": 391.38853, + "index": 4, + "body": { + "#": 5489 + }, + "isInternal": false + }, + { + "x": 319.95454, + "y": 386.44453, + "index": 5, + "body": { + "#": 5489 + }, + "isInternal": false + }, + { + "x": 322.86054, + "y": 382.44453, + "index": 6, + "body": { + "#": 5489 + }, + "isInternal": false + }, + { + "x": 327.56254, + "y": 380.91653, + "index": 7, + "body": { + "#": 5489 + }, + "isInternal": false + }, + { + "x": 332.26454, + "y": 382.44453, + "index": 8, + "body": { + "#": 5489 + }, + "isInternal": false + }, + { + "x": 335.17054, + "y": 386.44453, + "index": 9, + "body": { + "#": 5489 + }, + "isInternal": false + }, + { + "x": 327.56254, + "y": 388.91653 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.05685, + "y": 2.32482 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5509 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5511 + }, + "max": { + "#": 5512 + } + }, + { + "x": 319.95454, + "y": 380.91653 + }, + { + "x": 335.17054, + "y": 396.91653 + }, + { + "x": 327.61148, + "y": 386.55854 + }, + [ + { + "#": 5515 + }, + { + "#": 5516 + }, + { + "#": 5517 + }, + { + "#": 5518 + }, + { + "#": 5519 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,6,7,8", + "startCol": 6, + "endCol": 6, + "startRow": 7, + "endRow": 8 + }, + { + "id": 172, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5522 + }, + "angle": 0, + "vertices": { + "#": 5523 + }, + "position": { + "#": 5534 + }, + "force": { + "#": 5535 + }, + "torque": 0, + "positionImpulse": { + "#": 5536 + }, + "constraintImpulse": { + "#": 5537 + }, + "totalContacts": 0, + "speed": 2.94418, + "angularSpeed": 0, + "velocity": { + "#": 5538 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5539 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5540 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5542 + }, + "positionPrev": { + "#": 5545 + }, + "anglePrev": 0, + "axes": { + "#": 5546 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5521 + }, + "sleepCounter": 0, + "region": { + "#": 5552 + } + }, + [ + { + "#": 5521 + } + ], + [ + { + "#": 5524 + }, + { + "#": 5525 + }, + { + "#": 5526 + }, + { + "#": 5527 + }, + { + "#": 5528 + }, + { + "#": 5529 + }, + { + "#": 5530 + }, + { + "#": 5531 + }, + { + "#": 5532 + }, + { + "#": 5533 + } + ], + { + "x": 355.7688, + "y": 393.36168, + "index": 0, + "body": { + "#": 5521 + }, + "isInternal": false + }, + { + "x": 352.8628, + "y": 397.36168, + "index": 1, + "body": { + "#": 5521 + }, + "isInternal": false + }, + { + "x": 348.1608, + "y": 398.88968, + "index": 2, + "body": { + "#": 5521 + }, + "isInternal": false + }, + { + "x": 343.4588, + "y": 397.36168, + "index": 3, + "body": { + "#": 5521 + }, + "isInternal": false + }, + { + "x": 340.5528, + "y": 393.36168, + "index": 4, + "body": { + "#": 5521 + }, + "isInternal": false + }, + { + "x": 340.5528, + "y": 388.41768, + "index": 5, + "body": { + "#": 5521 + }, + "isInternal": false + }, + { + "x": 343.4588, + "y": 384.41768, + "index": 6, + "body": { + "#": 5521 + }, + "isInternal": false + }, + { + "x": 348.1608, + "y": 382.88968, + "index": 7, + "body": { + "#": 5521 + }, + "isInternal": false + }, + { + "x": 352.8628, + "y": 384.41768, + "index": 8, + "body": { + "#": 5521 + }, + "isInternal": false + }, + { + "x": 355.7688, + "y": 388.41768, + "index": 9, + "body": { + "#": 5521 + }, + "isInternal": false + }, + { + "x": 348.1608, + "y": 390.88968 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.13615, + "y": 2.63147 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5541 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5543 + }, + "max": { + "#": 5544 + } + }, + { + "x": 340.5528, + "y": 382.88968 + }, + { + "x": 355.7688, + "y": 398.88968 + }, + { + "x": 348.27432, + "y": 388.13286 + }, + [ + { + "#": 5547 + }, + { + "#": 5548 + }, + { + "#": 5549 + }, + { + "#": 5550 + }, + { + "#": 5551 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,7,8", + "startCol": 7, + "endCol": 7, + "startRow": 7, + "endRow": 8 + }, + { + "id": 173, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5554 + }, + "angle": 0, + "vertices": { + "#": 5555 + }, + "position": { + "#": 5566 + }, + "force": { + "#": 5567 + }, + "torque": 0, + "positionImpulse": { + "#": 5568 + }, + "constraintImpulse": { + "#": 5569 + }, + "totalContacts": 0, + "speed": 2.87301, + "angularSpeed": 0, + "velocity": { + "#": 5570 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5571 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5572 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5574 + }, + "positionPrev": { + "#": 5577 + }, + "anglePrev": 0, + "axes": { + "#": 5578 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5553 + }, + "sleepCounter": 0, + "region": { + "#": 5584 + } + }, + [ + { + "#": 5553 + } + ], + [ + { + "#": 5556 + }, + { + "#": 5557 + }, + { + "#": 5558 + }, + { + "#": 5559 + }, + { + "#": 5560 + }, + { + "#": 5561 + }, + { + "#": 5562 + }, + { + "#": 5563 + }, + { + "#": 5564 + }, + { + "#": 5565 + } + ], + { + "x": 376.05364, + "y": 397.33611, + "index": 0, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 373.14764, + "y": 401.33611, + "index": 1, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 368.44564, + "y": 402.86411, + "index": 2, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 363.74364, + "y": 401.33611, + "index": 3, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 360.83764, + "y": 397.33611, + "index": 4, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 360.83764, + "y": 392.39211, + "index": 5, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 363.74364, + "y": 388.39211, + "index": 6, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 368.44564, + "y": 386.86411, + "index": 7, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 373.14764, + "y": 388.39211, + "index": 8, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 376.05364, + "y": 392.39211, + "index": 9, + "body": { + "#": 5553 + }, + "isInternal": false + }, + { + "x": 368.44564, + "y": 394.86411 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.08691, + "y": 2.48532 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5573 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5575 + }, + "max": { + "#": 5576 + } + }, + { + "x": 360.83764, + "y": 386.86411 + }, + { + "x": 376.05364, + "y": 402.86411 + }, + { + "x": 368.5146, + "y": 392.24793 + }, + [ + { + "#": 5579 + }, + { + "#": 5580 + }, + { + "#": 5581 + }, + { + "#": 5582 + }, + { + "#": 5583 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,8,8", + "startCol": 7, + "endCol": 7, + "startRow": 8, + "endRow": 8 + }, + { + "id": 174, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5586 + }, + "angle": 0, + "vertices": { + "#": 5587 + }, + "position": { + "#": 5598 + }, + "force": { + "#": 5599 + }, + "torque": 0, + "positionImpulse": { + "#": 5600 + }, + "constraintImpulse": { + "#": 5601 + }, + "totalContacts": 0, + "speed": 3.01369, + "angularSpeed": 0, + "velocity": { + "#": 5602 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5603 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5604 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5606 + }, + "positionPrev": { + "#": 5609 + }, + "anglePrev": 0, + "axes": { + "#": 5610 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5585 + }, + "sleepCounter": 0, + "region": { + "#": 5616 + } + }, + [ + { + "#": 5585 + } + ], + [ + { + "#": 5588 + }, + { + "#": 5589 + }, + { + "#": 5590 + }, + { + "#": 5591 + }, + { + "#": 5592 + }, + { + "#": 5593 + }, + { + "#": 5594 + }, + { + "#": 5595 + }, + { + "#": 5596 + }, + { + "#": 5597 + } + ], + { + "x": 396.7575, + "y": 396.71728, + "index": 0, + "body": { + "#": 5585 + }, + "isInternal": false + }, + { + "x": 393.8515, + "y": 400.71728, + "index": 1, + "body": { + "#": 5585 + }, + "isInternal": false + }, + { + "x": 389.1495, + "y": 402.24528, + "index": 2, + "body": { + "#": 5585 + }, + "isInternal": false + }, + { + "x": 384.4475, + "y": 400.71728, + "index": 3, + "body": { + "#": 5585 + }, + "isInternal": false + }, + { + "x": 381.5415, + "y": 396.71728, + "index": 4, + "body": { + "#": 5585 + }, + "isInternal": false + }, + { + "x": 381.5415, + "y": 391.77328, + "index": 5, + "body": { + "#": 5585 + }, + "isInternal": false + }, + { + "x": 384.4475, + "y": 387.77328, + "index": 6, + "body": { + "#": 5585 + }, + "isInternal": false + }, + { + "x": 389.1495, + "y": 386.24528, + "index": 7, + "body": { + "#": 5585 + }, + "isInternal": false + }, + { + "x": 393.8515, + "y": 387.77328, + "index": 8, + "body": { + "#": 5585 + }, + "isInternal": false + }, + { + "x": 396.7575, + "y": 391.77328, + "index": 9, + "body": { + "#": 5585 + }, + "isInternal": false + }, + { + "x": 389.1495, + "y": 394.24528 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.0146, + "y": 2.6853 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5605 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5607 + }, + "max": { + "#": 5608 + } + }, + { + "x": 381.5415, + "y": 386.24528 + }, + { + "x": 396.7575, + "y": 402.24528 + }, + { + "x": 389.14434, + "y": 391.35132 + }, + [ + { + "#": 5611 + }, + { + "#": 5612 + }, + { + "#": 5613 + }, + { + "#": 5614 + }, + { + "#": 5615 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,8,8", + "startCol": 7, + "endCol": 8, + "startRow": 8, + "endRow": 8 + }, + { + "id": 175, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5618 + }, + "angle": 0, + "vertices": { + "#": 5619 + }, + "position": { + "#": 5630 + }, + "force": { + "#": 5631 + }, + "torque": 0, + "positionImpulse": { + "#": 5632 + }, + "constraintImpulse": { + "#": 5633 + }, + "totalContacts": 0, + "speed": 2.91954, + "angularSpeed": 0, + "velocity": { + "#": 5634 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5635 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5636 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5638 + }, + "positionPrev": { + "#": 5641 + }, + "anglePrev": 0, + "axes": { + "#": 5642 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5617 + }, + "sleepCounter": 0, + "region": { + "#": 5648 + } + }, + [ + { + "#": 5617 + } + ], + [ + { + "#": 5620 + }, + { + "#": 5621 + }, + { + "#": 5622 + }, + { + "#": 5623 + }, + { + "#": 5624 + }, + { + "#": 5625 + }, + { + "#": 5626 + }, + { + "#": 5627 + }, + { + "#": 5628 + }, + { + "#": 5629 + } + ], + { + "x": 417.47412, + "y": 396.22247, + "index": 0, + "body": { + "#": 5617 + }, + "isInternal": false + }, + { + "x": 414.56812, + "y": 400.22247, + "index": 1, + "body": { + "#": 5617 + }, + "isInternal": false + }, + { + "x": 409.86612, + "y": 401.75047, + "index": 2, + "body": { + "#": 5617 + }, + "isInternal": false + }, + { + "x": 405.16412, + "y": 400.22247, + "index": 3, + "body": { + "#": 5617 + }, + "isInternal": false + }, + { + "x": 402.25812, + "y": 396.22247, + "index": 4, + "body": { + "#": 5617 + }, + "isInternal": false + }, + { + "x": 402.25812, + "y": 391.27847, + "index": 5, + "body": { + "#": 5617 + }, + "isInternal": false + }, + { + "x": 405.16412, + "y": 387.27847, + "index": 6, + "body": { + "#": 5617 + }, + "isInternal": false + }, + { + "x": 409.86612, + "y": 385.75047, + "index": 7, + "body": { + "#": 5617 + }, + "isInternal": false + }, + { + "x": 414.56812, + "y": 387.27847, + "index": 8, + "body": { + "#": 5617 + }, + "isInternal": false + }, + { + "x": 417.47412, + "y": 391.27847, + "index": 9, + "body": { + "#": 5617 + }, + "isInternal": false + }, + { + "x": 409.86612, + "y": 393.75047 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.05501, + "y": 2.64175 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5637 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5639 + }, + "max": { + "#": 5640 + } + }, + { + "x": 402.25812, + "y": 385.75047 + }, + { + "x": 417.47412, + "y": 401.75047 + }, + { + "x": 409.79614, + "y": 390.90443 + }, + [ + { + "#": 5643 + }, + { + "#": 5644 + }, + { + "#": 5645 + }, + { + "#": 5646 + }, + { + "#": 5647 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,8,8", + "startCol": 8, + "endCol": 8, + "startRow": 8, + "endRow": 8 + }, + { + "id": 176, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5650 + }, + "angle": 0, + "vertices": { + "#": 5651 + }, + "position": { + "#": 5662 + }, + "force": { + "#": 5663 + }, + "torque": 0, + "positionImpulse": { + "#": 5664 + }, + "constraintImpulse": { + "#": 5665 + }, + "totalContacts": 0, + "speed": 2.77247, + "angularSpeed": 0, + "velocity": { + "#": 5666 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5667 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5668 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5670 + }, + "positionPrev": { + "#": 5673 + }, + "anglePrev": 0, + "axes": { + "#": 5674 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5649 + }, + "sleepCounter": 0, + "region": { + "#": 5680 + } + }, + [ + { + "#": 5649 + } + ], + [ + { + "#": 5652 + }, + { + "#": 5653 + }, + { + "#": 5654 + }, + { + "#": 5655 + }, + { + "#": 5656 + }, + { + "#": 5657 + }, + { + "#": 5658 + }, + { + "#": 5659 + }, + { + "#": 5660 + }, + { + "#": 5661 + } + ], + { + "x": 438.18198, + "y": 395.63774, + "index": 0, + "body": { + "#": 5649 + }, + "isInternal": false + }, + { + "x": 435.27598, + "y": 399.63774, + "index": 1, + "body": { + "#": 5649 + }, + "isInternal": false + }, + { + "x": 430.57398, + "y": 401.16574, + "index": 2, + "body": { + "#": 5649 + }, + "isInternal": false + }, + { + "x": 425.87198, + "y": 399.63774, + "index": 3, + "body": { + "#": 5649 + }, + "isInternal": false + }, + { + "x": 422.96598, + "y": 395.63774, + "index": 4, + "body": { + "#": 5649 + }, + "isInternal": false + }, + { + "x": 422.96598, + "y": 390.69374, + "index": 5, + "body": { + "#": 5649 + }, + "isInternal": false + }, + { + "x": 425.87198, + "y": 386.69374, + "index": 6, + "body": { + "#": 5649 + }, + "isInternal": false + }, + { + "x": 430.57398, + "y": 385.16574, + "index": 7, + "body": { + "#": 5649 + }, + "isInternal": false + }, + { + "x": 435.27598, + "y": 386.69374, + "index": 8, + "body": { + "#": 5649 + }, + "isInternal": false + }, + { + "x": 438.18198, + "y": 390.69374, + "index": 9, + "body": { + "#": 5649 + }, + "isInternal": false + }, + { + "x": 430.57398, + "y": 393.16574 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.11019, + "y": 2.52304 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5669 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5671 + }, + "max": { + "#": 5672 + } + }, + { + "x": 422.96598, + "y": 385.16574 + }, + { + "x": 438.18198, + "y": 401.16574 + }, + { + "x": 430.45248, + "y": 390.48631 + }, + [ + { + "#": 5675 + }, + { + "#": 5676 + }, + { + "#": 5677 + }, + { + "#": 5678 + }, + { + "#": 5679 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,8,8", + "startCol": 8, + "endCol": 9, + "startRow": 8, + "endRow": 8 + }, + { + "id": 177, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5682 + }, + "angle": 0, + "vertices": { + "#": 5683 + }, + "position": { + "#": 5694 + }, + "force": { + "#": 5695 + }, + "torque": 0, + "positionImpulse": { + "#": 5696 + }, + "constraintImpulse": { + "#": 5697 + }, + "totalContacts": 0, + "speed": 2.16997, + "angularSpeed": 0, + "velocity": { + "#": 5698 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5699 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5700 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5702 + }, + "positionPrev": { + "#": 5705 + }, + "anglePrev": 0, + "axes": { + "#": 5706 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5681 + }, + "sleepCounter": 0, + "region": { + "#": 5712 + } + }, + [ + { + "#": 5681 + } + ], + [ + { + "#": 5684 + }, + { + "#": 5685 + }, + { + "#": 5686 + }, + { + "#": 5687 + }, + { + "#": 5688 + }, + { + "#": 5689 + }, + { + "#": 5690 + }, + { + "#": 5691 + }, + { + "#": 5692 + }, + { + "#": 5693 + } + ], + { + "x": 458.68612, + "y": 393.04877, + "index": 0, + "body": { + "#": 5681 + }, + "isInternal": false + }, + { + "x": 455.78012, + "y": 397.04877, + "index": 1, + "body": { + "#": 5681 + }, + "isInternal": false + }, + { + "x": 451.07812, + "y": 398.57677, + "index": 2, + "body": { + "#": 5681 + }, + "isInternal": false + }, + { + "x": 446.37612, + "y": 397.04877, + "index": 3, + "body": { + "#": 5681 + }, + "isInternal": false + }, + { + "x": 443.47012, + "y": 393.04877, + "index": 4, + "body": { + "#": 5681 + }, + "isInternal": false + }, + { + "x": 443.47012, + "y": 388.10477, + "index": 5, + "body": { + "#": 5681 + }, + "isInternal": false + }, + { + "x": 446.37612, + "y": 384.10477, + "index": 6, + "body": { + "#": 5681 + }, + "isInternal": false + }, + { + "x": 451.07812, + "y": 382.57677, + "index": 7, + "body": { + "#": 5681 + }, + "isInternal": false + }, + { + "x": 455.78012, + "y": 384.10477, + "index": 8, + "body": { + "#": 5681 + }, + "isInternal": false + }, + { + "x": 458.68612, + "y": 388.10477, + "index": 9, + "body": { + "#": 5681 + }, + "isInternal": false + }, + { + "x": 451.07812, + "y": 390.57677 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.07722, + "y": 1.99918 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5701 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5703 + }, + "max": { + "#": 5704 + } + }, + { + "x": 443.47012, + "y": 382.57677 + }, + { + "x": 458.68612, + "y": 398.57677 + }, + { + "x": 451.00925, + "y": 388.6731 + }, + [ + { + "#": 5707 + }, + { + "#": 5708 + }, + { + "#": 5709 + }, + { + "#": 5710 + }, + { + "#": 5711 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,7,8", + "startCol": 9, + "endCol": 9, + "startRow": 7, + "endRow": 8 + }, + { + "id": 178, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5714 + }, + "angle": 0, + "vertices": { + "#": 5715 + }, + "position": { + "#": 5726 + }, + "force": { + "#": 5727 + }, + "torque": 0, + "positionImpulse": { + "#": 5728 + }, + "constraintImpulse": { + "#": 5729 + }, + "totalContacts": 0, + "speed": 1.38982, + "angularSpeed": 0, + "velocity": { + "#": 5730 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5731 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5732 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5734 + }, + "positionPrev": { + "#": 5737 + }, + "anglePrev": 0, + "axes": { + "#": 5738 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5713 + }, + "sleepCounter": 0, + "region": { + "#": 5744 + } + }, + [ + { + "#": 5713 + } + ], + [ + { + "#": 5716 + }, + { + "#": 5717 + }, + { + "#": 5718 + }, + { + "#": 5719 + }, + { + "#": 5720 + }, + { + "#": 5721 + }, + { + "#": 5722 + }, + { + "#": 5723 + }, + { + "#": 5724 + }, + { + "#": 5725 + } + ], + { + "x": 477.0207, + "y": 383.62518, + "index": 0, + "body": { + "#": 5713 + }, + "isInternal": false + }, + { + "x": 474.1147, + "y": 387.62518, + "index": 1, + "body": { + "#": 5713 + }, + "isInternal": false + }, + { + "x": 469.4127, + "y": 389.15318, + "index": 2, + "body": { + "#": 5713 + }, + "isInternal": false + }, + { + "x": 464.7107, + "y": 387.62518, + "index": 3, + "body": { + "#": 5713 + }, + "isInternal": false + }, + { + "x": 461.8047, + "y": 383.62518, + "index": 4, + "body": { + "#": 5713 + }, + "isInternal": false + }, + { + "x": 461.8047, + "y": 378.68118, + "index": 5, + "body": { + "#": 5713 + }, + "isInternal": false + }, + { + "x": 464.7107, + "y": 374.68118, + "index": 6, + "body": { + "#": 5713 + }, + "isInternal": false + }, + { + "x": 469.4127, + "y": 373.15318, + "index": 7, + "body": { + "#": 5713 + }, + "isInternal": false + }, + { + "x": 474.1147, + "y": 374.68118, + "index": 8, + "body": { + "#": 5713 + }, + "isInternal": false + }, + { + "x": 477.0207, + "y": 378.68118, + "index": 9, + "body": { + "#": 5713 + }, + "isInternal": false + }, + { + "x": 469.4127, + "y": 381.15318 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.16169, + "y": 1.74559 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5733 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5735 + }, + "max": { + "#": 5736 + } + }, + { + "x": 461.8047, + "y": 373.15318 + }, + { + "x": 477.0207, + "y": 389.15318 + }, + { + "x": 469.60899, + "y": 379.79619 + }, + [ + { + "#": 5739 + }, + { + "#": 5740 + }, + { + "#": 5741 + }, + { + "#": 5742 + }, + { + "#": 5743 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,7,8", + "startCol": 9, + "endCol": 9, + "startRow": 7, + "endRow": 8 + }, + { + "id": 179, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5746 + }, + "angle": 0, + "vertices": { + "#": 5747 + }, + "position": { + "#": 5758 + }, + "force": { + "#": 5759 + }, + "torque": 0, + "positionImpulse": { + "#": 5760 + }, + "constraintImpulse": { + "#": 5761 + }, + "totalContacts": 0, + "speed": 0.92087, + "angularSpeed": 0, + "velocity": { + "#": 5762 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5763 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5764 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5766 + }, + "positionPrev": { + "#": 5769 + }, + "anglePrev": 0, + "axes": { + "#": 5770 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5745 + }, + "sleepCounter": 0, + "region": { + "#": 5776 + } + }, + [ + { + "#": 5745 + } + ], + [ + { + "#": 5748 + }, + { + "#": 5749 + }, + { + "#": 5750 + }, + { + "#": 5751 + }, + { + "#": 5752 + }, + { + "#": 5753 + }, + { + "#": 5754 + }, + { + "#": 5755 + }, + { + "#": 5756 + }, + { + "#": 5757 + } + ], + { + "x": 497.66417, + "y": 381.57615, + "index": 0, + "body": { + "#": 5745 + }, + "isInternal": false + }, + { + "x": 494.75817, + "y": 385.57615, + "index": 1, + "body": { + "#": 5745 + }, + "isInternal": false + }, + { + "x": 490.05617, + "y": 387.10415, + "index": 2, + "body": { + "#": 5745 + }, + "isInternal": false + }, + { + "x": 485.35417, + "y": 385.57615, + "index": 3, + "body": { + "#": 5745 + }, + "isInternal": false + }, + { + "x": 482.44817, + "y": 381.57615, + "index": 4, + "body": { + "#": 5745 + }, + "isInternal": false + }, + { + "x": 482.44817, + "y": 376.63215, + "index": 5, + "body": { + "#": 5745 + }, + "isInternal": false + }, + { + "x": 485.35417, + "y": 372.63215, + "index": 6, + "body": { + "#": 5745 + }, + "isInternal": false + }, + { + "x": 490.05617, + "y": 371.10415, + "index": 7, + "body": { + "#": 5745 + }, + "isInternal": false + }, + { + "x": 494.75817, + "y": 372.63215, + "index": 8, + "body": { + "#": 5745 + }, + "isInternal": false + }, + { + "x": 497.66417, + "y": 376.63215, + "index": 9, + "body": { + "#": 5745 + }, + "isInternal": false + }, + { + "x": 490.05617, + "y": 379.10415 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.14746, + "y": 1.36182 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5765 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5767 + }, + "max": { + "#": 5768 + } + }, + { + "x": 482.44817, + "y": 371.10415 + }, + { + "x": 497.66417, + "y": 387.10415 + }, + { + "x": 490.25378, + "y": 378.28129 + }, + [ + { + "#": 5771 + }, + { + "#": 5772 + }, + { + "#": 5773 + }, + { + "#": 5774 + }, + { + "#": 5775 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,7,8", + "startCol": 10, + "endCol": 10, + "startRow": 7, + "endRow": 8 + }, + { + "id": 180, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5778 + }, + "angle": 0, + "vertices": { + "#": 5779 + }, + "position": { + "#": 5790 + }, + "force": { + "#": 5791 + }, + "torque": 0, + "positionImpulse": { + "#": 5792 + }, + "constraintImpulse": { + "#": 5793 + }, + "totalContacts": 0, + "speed": 0.87982, + "angularSpeed": 0, + "velocity": { + "#": 5794 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5795 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5796 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5798 + }, + "positionPrev": { + "#": 5801 + }, + "anglePrev": 0, + "axes": { + "#": 5802 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5777 + }, + "sleepCounter": 0, + "region": { + "#": 5808 + } + }, + [ + { + "#": 5777 + } + ], + [ + { + "#": 5780 + }, + { + "#": 5781 + }, + { + "#": 5782 + }, + { + "#": 5783 + }, + { + "#": 5784 + }, + { + "#": 5785 + }, + { + "#": 5786 + }, + { + "#": 5787 + }, + { + "#": 5788 + }, + { + "#": 5789 + } + ], + { + "x": 518.48285, + "y": 381.44344, + "index": 0, + "body": { + "#": 5777 + }, + "isInternal": false + }, + { + "x": 515.57685, + "y": 385.44344, + "index": 1, + "body": { + "#": 5777 + }, + "isInternal": false + }, + { + "x": 510.87485, + "y": 386.97144, + "index": 2, + "body": { + "#": 5777 + }, + "isInternal": false + }, + { + "x": 506.17285, + "y": 385.44344, + "index": 3, + "body": { + "#": 5777 + }, + "isInternal": false + }, + { + "x": 503.26685, + "y": 381.44344, + "index": 4, + "body": { + "#": 5777 + }, + "isInternal": false + }, + { + "x": 503.26685, + "y": 376.49944, + "index": 5, + "body": { + "#": 5777 + }, + "isInternal": false + }, + { + "x": 506.17285, + "y": 372.49944, + "index": 6, + "body": { + "#": 5777 + }, + "isInternal": false + }, + { + "x": 510.87485, + "y": 370.97144, + "index": 7, + "body": { + "#": 5777 + }, + "isInternal": false + }, + { + "x": 515.57685, + "y": 372.49944, + "index": 8, + "body": { + "#": 5777 + }, + "isInternal": false + }, + { + "x": 518.48285, + "y": 376.49944, + "index": 9, + "body": { + "#": 5777 + }, + "isInternal": false + }, + { + "x": 510.87485, + "y": 378.97144 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.07413, + "y": 1.3193 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5797 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5799 + }, + "max": { + "#": 5800 + } + }, + { + "x": 503.26685, + "y": 370.97144 + }, + { + "x": 518.48285, + "y": 386.97144 + }, + { + "x": 510.99681, + "y": 378.23585 + }, + [ + { + "#": 5803 + }, + { + "#": 5804 + }, + { + "#": 5805 + }, + { + "#": 5806 + }, + { + "#": 5807 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,7,8", + "startCol": 10, + "endCol": 10, + "startRow": 7, + "endRow": 8 + }, + { + "id": 181, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5810 + }, + "angle": 0, + "vertices": { + "#": 5811 + }, + "position": { + "#": 5822 + }, + "force": { + "#": 5823 + }, + "torque": 0, + "positionImpulse": { + "#": 5824 + }, + "constraintImpulse": { + "#": 5825 + }, + "totalContacts": 0, + "speed": 1.23617, + "angularSpeed": 0, + "velocity": { + "#": 5826 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5827 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5828 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5830 + }, + "positionPrev": { + "#": 5833 + }, + "anglePrev": 0, + "axes": { + "#": 5834 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5809 + }, + "sleepCounter": 0, + "region": { + "#": 5840 + } + }, + [ + { + "#": 5809 + } + ], + [ + { + "#": 5812 + }, + { + "#": 5813 + }, + { + "#": 5814 + }, + { + "#": 5815 + }, + { + "#": 5816 + }, + { + "#": 5817 + }, + { + "#": 5818 + }, + { + "#": 5819 + }, + { + "#": 5820 + }, + { + "#": 5821 + } + ], + { + "x": 539.21203, + "y": 383.11134, + "index": 0, + "body": { + "#": 5809 + }, + "isInternal": false + }, + { + "x": 536.30603, + "y": 387.11134, + "index": 1, + "body": { + "#": 5809 + }, + "isInternal": false + }, + { + "x": 531.60403, + "y": 388.63934, + "index": 2, + "body": { + "#": 5809 + }, + "isInternal": false + }, + { + "x": 526.90203, + "y": 387.11134, + "index": 3, + "body": { + "#": 5809 + }, + "isInternal": false + }, + { + "x": 523.99603, + "y": 383.11134, + "index": 4, + "body": { + "#": 5809 + }, + "isInternal": false + }, + { + "x": 523.99603, + "y": 378.16734, + "index": 5, + "body": { + "#": 5809 + }, + "isInternal": false + }, + { + "x": 526.90203, + "y": 374.16734, + "index": 6, + "body": { + "#": 5809 + }, + "isInternal": false + }, + { + "x": 531.60403, + "y": 372.63934, + "index": 7, + "body": { + "#": 5809 + }, + "isInternal": false + }, + { + "x": 536.30603, + "y": 374.16734, + "index": 8, + "body": { + "#": 5809 + }, + "isInternal": false + }, + { + "x": 539.21203, + "y": 378.16734, + "index": 9, + "body": { + "#": 5809 + }, + "isInternal": false + }, + { + "x": 531.60403, + "y": 380.63934 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.02759, + "y": 1.61151 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5829 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5831 + }, + "max": { + "#": 5832 + } + }, + { + "x": 523.99603, + "y": 372.63934 + }, + { + "x": 539.21203, + "y": 388.63934 + }, + { + "x": 531.66413, + "y": 379.56348 + }, + [ + { + "#": 5835 + }, + { + "#": 5836 + }, + { + "#": 5837 + }, + { + "#": 5838 + }, + { + "#": 5839 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,7,8", + "startCol": 10, + "endCol": 11, + "startRow": 7, + "endRow": 8 + }, + { + "id": 182, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5842 + }, + "angle": 0, + "vertices": { + "#": 5843 + }, + "position": { + "#": 5854 + }, + "force": { + "#": 5855 + }, + "torque": 0, + "positionImpulse": { + "#": 5856 + }, + "constraintImpulse": { + "#": 5857 + }, + "totalContacts": 0, + "speed": 2.16315, + "angularSpeed": 0, + "velocity": { + "#": 5858 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5859 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5860 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5862 + }, + "positionPrev": { + "#": 5865 + }, + "anglePrev": 0, + "axes": { + "#": 5866 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5841 + }, + "sleepCounter": 0, + "region": { + "#": 5872 + } + }, + [ + { + "#": 5841 + } + ], + [ + { + "#": 5844 + }, + { + "#": 5845 + }, + { + "#": 5846 + }, + { + "#": 5847 + }, + { + "#": 5848 + }, + { + "#": 5849 + }, + { + "#": 5850 + }, + { + "#": 5851 + }, + { + "#": 5852 + }, + { + "#": 5853 + } + ], + { + "x": 557.5025, + "y": 392.93447, + "index": 0, + "body": { + "#": 5841 + }, + "isInternal": false + }, + { + "x": 554.5965, + "y": 396.93447, + "index": 1, + "body": { + "#": 5841 + }, + "isInternal": false + }, + { + "x": 549.8945, + "y": 398.46247, + "index": 2, + "body": { + "#": 5841 + }, + "isInternal": false + }, + { + "x": 545.1925, + "y": 396.93447, + "index": 3, + "body": { + "#": 5841 + }, + "isInternal": false + }, + { + "x": 542.2865, + "y": 392.93447, + "index": 4, + "body": { + "#": 5841 + }, + "isInternal": false + }, + { + "x": 542.2865, + "y": 387.99047, + "index": 5, + "body": { + "#": 5841 + }, + "isInternal": false + }, + { + "x": 545.1925, + "y": 383.99047, + "index": 6, + "body": { + "#": 5841 + }, + "isInternal": false + }, + { + "x": 549.8945, + "y": 382.46247, + "index": 7, + "body": { + "#": 5841 + }, + "isInternal": false + }, + { + "x": 554.5965, + "y": 383.99047, + "index": 8, + "body": { + "#": 5841 + }, + "isInternal": false + }, + { + "x": 557.5025, + "y": 387.99047, + "index": 9, + "body": { + "#": 5841 + }, + "isInternal": false + }, + { + "x": 549.8945, + "y": 390.46247 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.34981, + "y": 1.96291 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5861 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5863 + }, + "max": { + "#": 5864 + } + }, + { + "x": 542.2865, + "y": 382.46247 + }, + { + "x": 557.5025, + "y": 398.46247 + }, + { + "x": 550.24241, + "y": 388.59967 + }, + [ + { + "#": 5867 + }, + { + "#": 5868 + }, + { + "#": 5869 + }, + { + "#": 5870 + }, + { + "#": 5871 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,11,7,8", + "startCol": 11, + "endCol": 11, + "startRow": 7, + "endRow": 8 + }, + { + "id": 183, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5874 + }, + "angle": 0, + "vertices": { + "#": 5875 + }, + "position": { + "#": 5886 + }, + "force": { + "#": 5887 + }, + "torque": 0, + "positionImpulse": { + "#": 5888 + }, + "constraintImpulse": { + "#": 5889 + }, + "totalContacts": 0, + "speed": 2.66325, + "angularSpeed": 0, + "velocity": { + "#": 5890 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5891 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5892 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5894 + }, + "positionPrev": { + "#": 5897 + }, + "anglePrev": 0, + "axes": { + "#": 5898 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5873 + }, + "sleepCounter": 0, + "region": { + "#": 5904 + } + }, + [ + { + "#": 5873 + } + ], + [ + { + "#": 5876 + }, + { + "#": 5877 + }, + { + "#": 5878 + }, + { + "#": 5879 + }, + { + "#": 5880 + }, + { + "#": 5881 + }, + { + "#": 5882 + }, + { + "#": 5883 + }, + { + "#": 5884 + }, + { + "#": 5885 + } + ], + { + "x": 577.90251, + "y": 395.21638, + "index": 0, + "body": { + "#": 5873 + }, + "isInternal": false + }, + { + "x": 574.99651, + "y": 399.21638, + "index": 1, + "body": { + "#": 5873 + }, + "isInternal": false + }, + { + "x": 570.29451, + "y": 400.74438, + "index": 2, + "body": { + "#": 5873 + }, + "isInternal": false + }, + { + "x": 565.59251, + "y": 399.21638, + "index": 3, + "body": { + "#": 5873 + }, + "isInternal": false + }, + { + "x": 562.68651, + "y": 395.21638, + "index": 4, + "body": { + "#": 5873 + }, + "isInternal": false + }, + { + "x": 562.68651, + "y": 390.27238, + "index": 5, + "body": { + "#": 5873 + }, + "isInternal": false + }, + { + "x": 565.59251, + "y": 386.27238, + "index": 6, + "body": { + "#": 5873 + }, + "isInternal": false + }, + { + "x": 570.29451, + "y": 384.74438, + "index": 7, + "body": { + "#": 5873 + }, + "isInternal": false + }, + { + "x": 574.99651, + "y": 386.27238, + "index": 8, + "body": { + "#": 5873 + }, + "isInternal": false + }, + { + "x": 577.90251, + "y": 390.27238, + "index": 9, + "body": { + "#": 5873 + }, + "isInternal": false + }, + { + "x": 570.29451, + "y": 392.74438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.37507, + "y": 2.42361 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5893 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5895 + }, + "max": { + "#": 5896 + } + }, + { + "x": 562.68651, + "y": 384.74438 + }, + { + "x": 577.90251, + "y": 400.74438 + }, + { + "x": 570.67215, + "y": 390.23503 + }, + [ + { + "#": 5899 + }, + { + "#": 5900 + }, + { + "#": 5901 + }, + { + "#": 5902 + }, + { + "#": 5903 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,8,8", + "startCol": 11, + "endCol": 12, + "startRow": 8, + "endRow": 8 + }, + { + "id": 184, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5906 + }, + "angle": 0, + "vertices": { + "#": 5907 + }, + "position": { + "#": 5918 + }, + "force": { + "#": 5919 + }, + "torque": 0, + "positionImpulse": { + "#": 5920 + }, + "constraintImpulse": { + "#": 5921 + }, + "totalContacts": 0, + "speed": 2.70385, + "angularSpeed": 0, + "velocity": { + "#": 5922 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5923 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5924 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5926 + }, + "positionPrev": { + "#": 5929 + }, + "anglePrev": 0, + "axes": { + "#": 5930 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5905 + }, + "sleepCounter": 0, + "region": { + "#": 5936 + } + }, + [ + { + "#": 5905 + } + ], + [ + { + "#": 5908 + }, + { + "#": 5909 + }, + { + "#": 5910 + }, + { + "#": 5911 + }, + { + "#": 5912 + }, + { + "#": 5913 + }, + { + "#": 5914 + }, + { + "#": 5915 + }, + { + "#": 5916 + }, + { + "#": 5917 + } + ], + { + "x": 598.25007, + "y": 395.37239, + "index": 0, + "body": { + "#": 5905 + }, + "isInternal": false + }, + { + "x": 595.34407, + "y": 399.37239, + "index": 1, + "body": { + "#": 5905 + }, + "isInternal": false + }, + { + "x": 590.64207, + "y": 400.90039, + "index": 2, + "body": { + "#": 5905 + }, + "isInternal": false + }, + { + "x": 585.94007, + "y": 399.37239, + "index": 3, + "body": { + "#": 5905 + }, + "isInternal": false + }, + { + "x": 583.03407, + "y": 395.37239, + "index": 4, + "body": { + "#": 5905 + }, + "isInternal": false + }, + { + "x": 583.03407, + "y": 390.42839, + "index": 5, + "body": { + "#": 5905 + }, + "isInternal": false + }, + { + "x": 585.94007, + "y": 386.42839, + "index": 6, + "body": { + "#": 5905 + }, + "isInternal": false + }, + { + "x": 590.64207, + "y": 384.90039, + "index": 7, + "body": { + "#": 5905 + }, + "isInternal": false + }, + { + "x": 595.34407, + "y": 386.42839, + "index": 8, + "body": { + "#": 5905 + }, + "isInternal": false + }, + { + "x": 598.25007, + "y": 390.42839, + "index": 9, + "body": { + "#": 5905 + }, + "isInternal": false + }, + { + "x": 590.64207, + "y": 392.90039 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.36709, + "y": 2.47275 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5925 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5927 + }, + "max": { + "#": 5928 + } + }, + { + "x": 583.03407, + "y": 384.90039 + }, + { + "x": 598.25007, + "y": 400.90039 + }, + { + "x": 591.01249, + "y": 390.32421 + }, + [ + { + "#": 5931 + }, + { + "#": 5932 + }, + { + "#": 5933 + }, + { + "#": 5934 + }, + { + "#": 5935 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,8,8", + "startCol": 12, + "endCol": 12, + "startRow": 8, + "endRow": 8 + }, + { + "id": 185, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5938 + }, + "angle": 0, + "vertices": { + "#": 5939 + }, + "position": { + "#": 5950 + }, + "force": { + "#": 5951 + }, + "torque": 0, + "positionImpulse": { + "#": 5952 + }, + "constraintImpulse": { + "#": 5953 + }, + "totalContacts": 0, + "speed": 3.41043, + "angularSpeed": 0, + "velocity": { + "#": 5954 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5955 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5956 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5958 + }, + "positionPrev": { + "#": 5961 + }, + "anglePrev": 0, + "axes": { + "#": 5962 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5937 + }, + "sleepCounter": 0, + "region": { + "#": 5968 + } + }, + [ + { + "#": 5937 + } + ], + [ + { + "#": 5940 + }, + { + "#": 5941 + }, + { + "#": 5942 + }, + { + "#": 5943 + }, + { + "#": 5944 + }, + { + "#": 5945 + }, + { + "#": 5946 + }, + { + "#": 5947 + }, + { + "#": 5948 + }, + { + "#": 5949 + } + ], + { + "x": 218.83384, + "y": 419.99883, + "index": 0, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 215.92784, + "y": 423.99883, + "index": 1, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 211.22584, + "y": 425.52683, + "index": 2, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 206.52384, + "y": 423.99883, + "index": 3, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 203.61784, + "y": 419.99883, + "index": 4, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 203.61784, + "y": 415.05483, + "index": 5, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 206.52384, + "y": 411.05483, + "index": 6, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 211.22584, + "y": 409.52683, + "index": 7, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 215.92784, + "y": 411.05483, + "index": 8, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 218.83384, + "y": 415.05483, + "index": 9, + "body": { + "#": 5937 + }, + "isInternal": false + }, + { + "x": 211.22584, + "y": 417.52683 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 1.10442, + "y": 2.85864 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5957 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5959 + }, + "max": { + "#": 5960 + } + }, + { + "x": 203.61784, + "y": 409.52683 + }, + { + "x": 218.83384, + "y": 425.52683 + }, + { + "x": 209.97109, + "y": 414.47822 + }, + [ + { + "#": 5963 + }, + { + "#": 5964 + }, + { + "#": 5965 + }, + { + "#": 5966 + }, + { + "#": 5967 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,8,8", + "startCol": 4, + "endCol": 4, + "startRow": 8, + "endRow": 8 + }, + { + "id": 186, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 5970 + }, + "angle": 0, + "vertices": { + "#": 5971 + }, + "position": { + "#": 5982 + }, + "force": { + "#": 5983 + }, + "torque": 0, + "positionImpulse": { + "#": 5984 + }, + "constraintImpulse": { + "#": 5985 + }, + "totalContacts": 0, + "speed": 2.94592, + "angularSpeed": 0, + "velocity": { + "#": 5986 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5987 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5988 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 5990 + }, + "positionPrev": { + "#": 5993 + }, + "anglePrev": 0, + "axes": { + "#": 5994 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 5969 + }, + "sleepCounter": 0, + "region": { + "#": 6000 + } + }, + [ + { + "#": 5969 + } + ], + [ + { + "#": 5972 + }, + { + "#": 5973 + }, + { + "#": 5974 + }, + { + "#": 5975 + }, + { + "#": 5976 + }, + { + "#": 5977 + }, + { + "#": 5978 + }, + { + "#": 5979 + }, + { + "#": 5980 + }, + { + "#": 5981 + } + ], + { + "x": 238.84232, + "y": 419.35086, + "index": 0, + "body": { + "#": 5969 + }, + "isInternal": false + }, + { + "x": 235.93632, + "y": 423.35086, + "index": 1, + "body": { + "#": 5969 + }, + "isInternal": false + }, + { + "x": 231.23432, + "y": 424.87886, + "index": 2, + "body": { + "#": 5969 + }, + "isInternal": false + }, + { + "x": 226.53232, + "y": 423.35086, + "index": 3, + "body": { + "#": 5969 + }, + "isInternal": false + }, + { + "x": 223.62632, + "y": 419.35086, + "index": 4, + "body": { + "#": 5969 + }, + "isInternal": false + }, + { + "x": 223.62632, + "y": 414.40686, + "index": 5, + "body": { + "#": 5969 + }, + "isInternal": false + }, + { + "x": 226.53232, + "y": 410.40686, + "index": 6, + "body": { + "#": 5969 + }, + "isInternal": false + }, + { + "x": 231.23432, + "y": 408.87886, + "index": 7, + "body": { + "#": 5969 + }, + "isInternal": false + }, + { + "x": 235.93632, + "y": 410.40686, + "index": 8, + "body": { + "#": 5969 + }, + "isInternal": false + }, + { + "x": 238.84232, + "y": 414.40686, + "index": 9, + "body": { + "#": 5969 + }, + "isInternal": false + }, + { + "x": 231.23432, + "y": 416.87886 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.87593, + "y": 2.57799 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 5989 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5991 + }, + "max": { + "#": 5992 + } + }, + { + "x": 223.62632, + "y": 408.87886 + }, + { + "x": 238.84232, + "y": 424.87886 + }, + { + "x": 230.32646, + "y": 414.27085 + }, + [ + { + "#": 5995 + }, + { + "#": 5996 + }, + { + "#": 5997 + }, + { + "#": 5998 + }, + { + "#": 5999 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,8,8", + "startCol": 4, + "endCol": 4, + "startRow": 8, + "endRow": 8 + }, + { + "id": 187, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6002 + }, + "angle": 0, + "vertices": { + "#": 6003 + }, + "position": { + "#": 6014 + }, + "force": { + "#": 6015 + }, + "torque": 0, + "positionImpulse": { + "#": 6016 + }, + "constraintImpulse": { + "#": 6017 + }, + "totalContacts": 0, + "speed": 1.91627, + "angularSpeed": 0, + "velocity": { + "#": 6018 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6019 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6020 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6022 + }, + "positionPrev": { + "#": 6025 + }, + "anglePrev": 0, + "axes": { + "#": 6026 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6001 + }, + "sleepCounter": 0, + "region": { + "#": 6032 + } + }, + [ + { + "#": 6001 + } + ], + [ + { + "#": 6004 + }, + { + "#": 6005 + }, + { + "#": 6006 + }, + { + "#": 6007 + }, + { + "#": 6008 + }, + { + "#": 6009 + }, + { + "#": 6010 + }, + { + "#": 6011 + }, + { + "#": 6012 + }, + { + "#": 6013 + } + ], + { + "x": 257.46904, + "y": 412.78402, + "index": 0, + "body": { + "#": 6001 + }, + "isInternal": false + }, + { + "x": 254.56304, + "y": 416.78402, + "index": 1, + "body": { + "#": 6001 + }, + "isInternal": false + }, + { + "x": 249.86104, + "y": 418.31202, + "index": 2, + "body": { + "#": 6001 + }, + "isInternal": false + }, + { + "x": 245.15904, + "y": 416.78402, + "index": 3, + "body": { + "#": 6001 + }, + "isInternal": false + }, + { + "x": 242.25304, + "y": 412.78402, + "index": 4, + "body": { + "#": 6001 + }, + "isInternal": false + }, + { + "x": 242.25304, + "y": 407.84002, + "index": 5, + "body": { + "#": 6001 + }, + "isInternal": false + }, + { + "x": 245.15904, + "y": 403.84002, + "index": 6, + "body": { + "#": 6001 + }, + "isInternal": false + }, + { + "x": 249.86104, + "y": 402.31202, + "index": 7, + "body": { + "#": 6001 + }, + "isInternal": false + }, + { + "x": 254.56304, + "y": 403.84002, + "index": 8, + "body": { + "#": 6001 + }, + "isInternal": false + }, + { + "x": 257.46904, + "y": 407.84002, + "index": 9, + "body": { + "#": 6001 + }, + "isInternal": false + }, + { + "x": 249.86104, + "y": 410.31202 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.27731, + "y": 1.93244 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6021 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6023 + }, + "max": { + "#": 6024 + } + }, + { + "x": 242.25304, + "y": 402.31202 + }, + { + "x": 257.46904, + "y": 418.31202 + }, + { + "x": 249.90696, + "y": 408.58177 + }, + [ + { + "#": 6027 + }, + { + "#": 6028 + }, + { + "#": 6029 + }, + { + "#": 6030 + }, + { + "#": 6031 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,8,8", + "startCol": 5, + "endCol": 5, + "startRow": 8, + "endRow": 8 + }, + { + "id": 188, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6034 + }, + "angle": 0, + "vertices": { + "#": 6035 + }, + "position": { + "#": 6046 + }, + "force": { + "#": 6047 + }, + "torque": 0, + "positionImpulse": { + "#": 6048 + }, + "constraintImpulse": { + "#": 6049 + }, + "totalContacts": 0, + "speed": 1.68218, + "angularSpeed": 0, + "velocity": { + "#": 6050 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6051 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6052 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6054 + }, + "positionPrev": { + "#": 6057 + }, + "anglePrev": 0, + "axes": { + "#": 6058 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6033 + }, + "sleepCounter": 0, + "region": { + "#": 6064 + } + }, + [ + { + "#": 6033 + } + ], + [ + { + "#": 6036 + }, + { + "#": 6037 + }, + { + "#": 6038 + }, + { + "#": 6039 + }, + { + "#": 6040 + }, + { + "#": 6041 + }, + { + "#": 6042 + }, + { + "#": 6043 + }, + { + "#": 6044 + }, + { + "#": 6045 + } + ], + { + "x": 277.61513, + "y": 408.20098, + "index": 0, + "body": { + "#": 6033 + }, + "isInternal": false + }, + { + "x": 274.70913, + "y": 412.20098, + "index": 1, + "body": { + "#": 6033 + }, + "isInternal": false + }, + { + "x": 270.00713, + "y": 413.72898, + "index": 2, + "body": { + "#": 6033 + }, + "isInternal": false + }, + { + "x": 265.30513, + "y": 412.20098, + "index": 3, + "body": { + "#": 6033 + }, + "isInternal": false + }, + { + "x": 262.39913, + "y": 408.20098, + "index": 4, + "body": { + "#": 6033 + }, + "isInternal": false + }, + { + "x": 262.39913, + "y": 403.25698, + "index": 5, + "body": { + "#": 6033 + }, + "isInternal": false + }, + { + "x": 265.30513, + "y": 399.25698, + "index": 6, + "body": { + "#": 6033 + }, + "isInternal": false + }, + { + "x": 270.00713, + "y": 397.72898, + "index": 7, + "body": { + "#": 6033 + }, + "isInternal": false + }, + { + "x": 274.70913, + "y": 399.25698, + "index": 8, + "body": { + "#": 6033 + }, + "isInternal": false + }, + { + "x": 277.61513, + "y": 403.25698, + "index": 9, + "body": { + "#": 6033 + }, + "isInternal": false + }, + { + "x": 270.00713, + "y": 405.72898 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.12405, + "y": 1.95291 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6053 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6055 + }, + "max": { + "#": 6056 + } + }, + { + "x": 262.39913, + "y": 397.72898 + }, + { + "x": 277.61513, + "y": 413.72898 + }, + { + "x": 270.53024, + "y": 403.97773 + }, + [ + { + "#": 6059 + }, + { + "#": 6060 + }, + { + "#": 6061 + }, + { + "#": 6062 + }, + { + "#": 6063 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,8,8", + "startCol": 5, + "endCol": 5, + "startRow": 8, + "endRow": 8 + }, + { + "id": 189, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6066 + }, + "angle": 0, + "vertices": { + "#": 6067 + }, + "position": { + "#": 6078 + }, + "force": { + "#": 6079 + }, + "torque": 0, + "positionImpulse": { + "#": 6080 + }, + "constraintImpulse": { + "#": 6081 + }, + "totalContacts": 0, + "speed": 1.71924, + "angularSpeed": 0, + "velocity": { + "#": 6082 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6083 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6084 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6086 + }, + "positionPrev": { + "#": 6089 + }, + "anglePrev": 0, + "axes": { + "#": 6090 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6065 + }, + "sleepCounter": 0, + "region": { + "#": 6096 + } + }, + [ + { + "#": 6065 + } + ], + [ + { + "#": 6068 + }, + { + "#": 6069 + }, + { + "#": 6070 + }, + { + "#": 6071 + }, + { + "#": 6072 + }, + { + "#": 6073 + }, + { + "#": 6074 + }, + { + "#": 6075 + }, + { + "#": 6076 + }, + { + "#": 6077 + } + ], + { + "x": 298.85806, + "y": 405.66015, + "index": 0, + "body": { + "#": 6065 + }, + "isInternal": false + }, + { + "x": 295.95206, + "y": 409.66015, + "index": 1, + "body": { + "#": 6065 + }, + "isInternal": false + }, + { + "x": 291.25006, + "y": 411.18815, + "index": 2, + "body": { + "#": 6065 + }, + "isInternal": false + }, + { + "x": 286.54806, + "y": 409.66015, + "index": 3, + "body": { + "#": 6065 + }, + "isInternal": false + }, + { + "x": 283.64206, + "y": 405.66015, + "index": 4, + "body": { + "#": 6065 + }, + "isInternal": false + }, + { + "x": 283.64206, + "y": 400.71615, + "index": 5, + "body": { + "#": 6065 + }, + "isInternal": false + }, + { + "x": 286.54806, + "y": 396.71615, + "index": 6, + "body": { + "#": 6065 + }, + "isInternal": false + }, + { + "x": 291.25006, + "y": 395.18815, + "index": 7, + "body": { + "#": 6065 + }, + "isInternal": false + }, + { + "x": 295.95206, + "y": 396.71615, + "index": 8, + "body": { + "#": 6065 + }, + "isInternal": false + }, + { + "x": 298.85806, + "y": 400.71615, + "index": 9, + "body": { + "#": 6065 + }, + "isInternal": false + }, + { + "x": 291.25006, + "y": 403.18815 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.44975, + "y": 2.09994 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6085 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6087 + }, + "max": { + "#": 6088 + } + }, + { + "x": 283.64206, + "y": 395.18815 + }, + { + "x": 298.85806, + "y": 411.18815 + }, + { + "x": 292.07843, + "y": 401.31327 + }, + [ + { + "#": 6091 + }, + { + "#": 6092 + }, + { + "#": 6093 + }, + { + "#": 6094 + }, + { + "#": 6095 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,8,8", + "startCol": 5, + "endCol": 6, + "startRow": 8, + "endRow": 8 + }, + { + "id": 190, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6098 + }, + "angle": 0, + "vertices": { + "#": 6099 + }, + "position": { + "#": 6110 + }, + "force": { + "#": 6111 + }, + "torque": 0, + "positionImpulse": { + "#": 6112 + }, + "constraintImpulse": { + "#": 6113 + }, + "totalContacts": 0, + "speed": 3.04355, + "angularSpeed": 0, + "velocity": { + "#": 6114 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6115 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6116 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6118 + }, + "positionPrev": { + "#": 6121 + }, + "anglePrev": 0, + "axes": { + "#": 6122 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6097 + }, + "sleepCounter": 0, + "region": { + "#": 6128 + } + }, + [ + { + "#": 6097 + } + ], + [ + { + "#": 6100 + }, + { + "#": 6101 + }, + { + "#": 6102 + }, + { + "#": 6103 + }, + { + "#": 6104 + }, + { + "#": 6105 + }, + { + "#": 6106 + }, + { + "#": 6107 + }, + { + "#": 6108 + }, + { + "#": 6109 + } + ], + { + "x": 320.79825, + "y": 406.71149, + "index": 0, + "body": { + "#": 6097 + }, + "isInternal": false + }, + { + "x": 317.89225, + "y": 410.71149, + "index": 1, + "body": { + "#": 6097 + }, + "isInternal": false + }, + { + "x": 313.19025, + "y": 412.23949, + "index": 2, + "body": { + "#": 6097 + }, + "isInternal": false + }, + { + "x": 308.48825, + "y": 410.71149, + "index": 3, + "body": { + "#": 6097 + }, + "isInternal": false + }, + { + "x": 305.58225, + "y": 406.71149, + "index": 4, + "body": { + "#": 6097 + }, + "isInternal": false + }, + { + "x": 305.58225, + "y": 401.76749, + "index": 5, + "body": { + "#": 6097 + }, + "isInternal": false + }, + { + "x": 308.48825, + "y": 397.76749, + "index": 6, + "body": { + "#": 6097 + }, + "isInternal": false + }, + { + "x": 313.19025, + "y": 396.23949, + "index": 7, + "body": { + "#": 6097 + }, + "isInternal": false + }, + { + "x": 317.89225, + "y": 397.76749, + "index": 8, + "body": { + "#": 6097 + }, + "isInternal": false + }, + { + "x": 320.79825, + "y": 401.76749, + "index": 9, + "body": { + "#": 6097 + }, + "isInternal": false + }, + { + "x": 313.19025, + "y": 404.23949 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -1.12267, + "y": 2.92548 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6117 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6119 + }, + "max": { + "#": 6120 + } + }, + { + "x": 305.58225, + "y": 396.23949 + }, + { + "x": 320.79825, + "y": 412.23949 + }, + { + "x": 314.07527, + "y": 401.228 + }, + [ + { + "#": 6123 + }, + { + "#": 6124 + }, + { + "#": 6125 + }, + { + "#": 6126 + }, + { + "#": 6127 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,6,8,8", + "startCol": 6, + "endCol": 6, + "startRow": 8, + "endRow": 8 + }, + { + "id": 191, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6130 + }, + "angle": 0, + "vertices": { + "#": 6131 + }, + "position": { + "#": 6142 + }, + "force": { + "#": 6143 + }, + "torque": 0, + "positionImpulse": { + "#": 6144 + }, + "constraintImpulse": { + "#": 6145 + }, + "totalContacts": 0, + "speed": 2.55363, + "angularSpeed": 0, + "velocity": { + "#": 6146 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6147 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6148 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6150 + }, + "positionPrev": { + "#": 6153 + }, + "anglePrev": 0, + "axes": { + "#": 6154 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6129 + }, + "sleepCounter": 0, + "region": { + "#": 6160 + } + }, + [ + { + "#": 6129 + } + ], + [ + { + "#": 6132 + }, + { + "#": 6133 + }, + { + "#": 6134 + }, + { + "#": 6135 + }, + { + "#": 6136 + }, + { + "#": 6137 + }, + { + "#": 6138 + }, + { + "#": 6139 + }, + { + "#": 6140 + }, + { + "#": 6141 + } + ], + { + "x": 340.21303, + "y": 411.92037, + "index": 0, + "body": { + "#": 6129 + }, + "isInternal": false + }, + { + "x": 337.30703, + "y": 415.92037, + "index": 1, + "body": { + "#": 6129 + }, + "isInternal": false + }, + { + "x": 332.60503, + "y": 417.44837, + "index": 2, + "body": { + "#": 6129 + }, + "isInternal": false + }, + { + "x": 327.90303, + "y": 415.92037, + "index": 3, + "body": { + "#": 6129 + }, + "isInternal": false + }, + { + "x": 324.99703, + "y": 411.92037, + "index": 4, + "body": { + "#": 6129 + }, + "isInternal": false + }, + { + "x": 324.99703, + "y": 406.97637, + "index": 5, + "body": { + "#": 6129 + }, + "isInternal": false + }, + { + "x": 327.90303, + "y": 402.97637, + "index": 6, + "body": { + "#": 6129 + }, + "isInternal": false + }, + { + "x": 332.60503, + "y": 401.44837, + "index": 7, + "body": { + "#": 6129 + }, + "isInternal": false + }, + { + "x": 337.30703, + "y": 402.97637, + "index": 8, + "body": { + "#": 6129 + }, + "isInternal": false + }, + { + "x": 340.21303, + "y": 406.97637, + "index": 9, + "body": { + "#": 6129 + }, + "isInternal": false + }, + { + "x": 332.60503, + "y": 409.44837 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.34186, + "y": 2.42845 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6149 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6151 + }, + "max": { + "#": 6152 + } + }, + { + "x": 324.99703, + "y": 401.44837 + }, + { + "x": 340.21303, + "y": 417.44837 + }, + { + "x": 332.80376, + "y": 407.01378 + }, + [ + { + "#": 6155 + }, + { + "#": 6156 + }, + { + "#": 6157 + }, + { + "#": 6158 + }, + { + "#": 6159 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,8,8", + "startCol": 6, + "endCol": 7, + "startRow": 8, + "endRow": 8 + }, + { + "id": 192, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6162 + }, + "angle": 0, + "vertices": { + "#": 6163 + }, + "position": { + "#": 6174 + }, + "force": { + "#": 6175 + }, + "torque": 0, + "positionImpulse": { + "#": 6176 + }, + "constraintImpulse": { + "#": 6177 + }, + "totalContacts": 0, + "speed": 2.89423, + "angularSpeed": 0, + "velocity": { + "#": 6178 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6179 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6180 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6182 + }, + "positionPrev": { + "#": 6185 + }, + "anglePrev": 0, + "axes": { + "#": 6186 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6161 + }, + "sleepCounter": 0, + "region": { + "#": 6192 + } + }, + [ + { + "#": 6161 + } + ], + [ + { + "#": 6164 + }, + { + "#": 6165 + }, + { + "#": 6166 + }, + { + "#": 6167 + }, + { + "#": 6168 + }, + { + "#": 6169 + }, + { + "#": 6170 + }, + { + "#": 6171 + }, + { + "#": 6172 + }, + { + "#": 6173 + } + ], + { + "x": 359.51753, + "y": 414.42162, + "index": 0, + "body": { + "#": 6161 + }, + "isInternal": false + }, + { + "x": 356.61153, + "y": 418.42162, + "index": 1, + "body": { + "#": 6161 + }, + "isInternal": false + }, + { + "x": 351.90953, + "y": 419.94962, + "index": 2, + "body": { + "#": 6161 + }, + "isInternal": false + }, + { + "x": 347.20753, + "y": 418.42162, + "index": 3, + "body": { + "#": 6161 + }, + "isInternal": false + }, + { + "x": 344.30153, + "y": 414.42162, + "index": 4, + "body": { + "#": 6161 + }, + "isInternal": false + }, + { + "x": 344.30153, + "y": 409.47762, + "index": 5, + "body": { + "#": 6161 + }, + "isInternal": false + }, + { + "x": 347.20753, + "y": 405.47762, + "index": 6, + "body": { + "#": 6161 + }, + "isInternal": false + }, + { + "x": 351.90953, + "y": 403.94962, + "index": 7, + "body": { + "#": 6161 + }, + "isInternal": false + }, + { + "x": 356.61153, + "y": 405.47762, + "index": 8, + "body": { + "#": 6161 + }, + "isInternal": false + }, + { + "x": 359.51753, + "y": 409.47762, + "index": 9, + "body": { + "#": 6161 + }, + "isInternal": false + }, + { + "x": 351.90953, + "y": 411.94962 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.09675, + "y": 2.67622 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6181 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6183 + }, + "max": { + "#": 6184 + } + }, + { + "x": 344.30153, + "y": 403.94962 + }, + { + "x": 359.51753, + "y": 419.94962 + }, + { + "x": 351.8621, + "y": 409.25553 + }, + [ + { + "#": 6187 + }, + { + "#": 6188 + }, + { + "#": 6189 + }, + { + "#": 6190 + }, + { + "#": 6191 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,8,8", + "startCol": 7, + "endCol": 7, + "startRow": 8, + "endRow": 8 + }, + { + "id": 193, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6194 + }, + "angle": 0, + "vertices": { + "#": 6195 + }, + "position": { + "#": 6206 + }, + "force": { + "#": 6207 + }, + "torque": 0, + "positionImpulse": { + "#": 6208 + }, + "constraintImpulse": { + "#": 6209 + }, + "totalContacts": 0, + "speed": 2.765, + "angularSpeed": 0, + "velocity": { + "#": 6210 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6211 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6212 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6214 + }, + "positionPrev": { + "#": 6217 + }, + "anglePrev": 0, + "axes": { + "#": 6218 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6193 + }, + "sleepCounter": 0, + "region": { + "#": 6224 + } + }, + [ + { + "#": 6193 + } + ], + [ + { + "#": 6196 + }, + { + "#": 6197 + }, + { + "#": 6198 + }, + { + "#": 6199 + }, + { + "#": 6200 + }, + { + "#": 6201 + }, + { + "#": 6202 + }, + { + "#": 6203 + }, + { + "#": 6204 + }, + { + "#": 6205 + } + ], + { + "x": 378.98843, + "y": 418.51647, + "index": 0, + "body": { + "#": 6193 + }, + "isInternal": false + }, + { + "x": 376.08243, + "y": 422.51647, + "index": 1, + "body": { + "#": 6193 + }, + "isInternal": false + }, + { + "x": 371.38043, + "y": 424.04447, + "index": 2, + "body": { + "#": 6193 + }, + "isInternal": false + }, + { + "x": 366.67843, + "y": 422.51647, + "index": 3, + "body": { + "#": 6193 + }, + "isInternal": false + }, + { + "x": 363.77243, + "y": 418.51647, + "index": 4, + "body": { + "#": 6193 + }, + "isInternal": false + }, + { + "x": 363.77243, + "y": 413.57247, + "index": 5, + "body": { + "#": 6193 + }, + "isInternal": false + }, + { + "x": 366.67843, + "y": 409.57247, + "index": 6, + "body": { + "#": 6193 + }, + "isInternal": false + }, + { + "x": 371.38043, + "y": 408.04447, + "index": 7, + "body": { + "#": 6193 + }, + "isInternal": false + }, + { + "x": 376.08243, + "y": 409.57247, + "index": 8, + "body": { + "#": 6193 + }, + "isInternal": false + }, + { + "x": 378.98843, + "y": 413.57247, + "index": 9, + "body": { + "#": 6193 + }, + "isInternal": false + }, + { + "x": 371.38043, + "y": 416.04447 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.19998, + "y": 2.53796 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6213 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6215 + }, + "max": { + "#": 6216 + } + }, + { + "x": 363.77243, + "y": 408.04447 + }, + { + "x": 378.98843, + "y": 424.04447 + }, + { + "x": 371.1541, + "y": 413.52381 + }, + [ + { + "#": 6219 + }, + { + "#": 6220 + }, + { + "#": 6221 + }, + { + "#": 6222 + }, + { + "#": 6223 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,8,8", + "startCol": 7, + "endCol": 7, + "startRow": 8, + "endRow": 8 + }, + { + "id": 194, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6226 + }, + "angle": 0, + "vertices": { + "#": 6227 + }, + "position": { + "#": 6238 + }, + "force": { + "#": 6239 + }, + "torque": 0, + "positionImpulse": { + "#": 6240 + }, + "constraintImpulse": { + "#": 6241 + }, + "totalContacts": 0, + "speed": 3.09476, + "angularSpeed": 0, + "velocity": { + "#": 6242 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6243 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6244 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6246 + }, + "positionPrev": { + "#": 6249 + }, + "anglePrev": 0, + "axes": { + "#": 6250 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6225 + }, + "sleepCounter": 0, + "region": { + "#": 6256 + } + }, + [ + { + "#": 6225 + } + ], + [ + { + "#": 6228 + }, + { + "#": 6229 + }, + { + "#": 6230 + }, + { + "#": 6231 + }, + { + "#": 6232 + }, + { + "#": 6233 + }, + { + "#": 6234 + }, + { + "#": 6235 + }, + { + "#": 6236 + }, + { + "#": 6237 + } + ], + { + "x": 398.70494, + "y": 418.36331, + "index": 0, + "body": { + "#": 6225 + }, + "isInternal": false + }, + { + "x": 395.79894, + "y": 422.36331, + "index": 1, + "body": { + "#": 6225 + }, + "isInternal": false + }, + { + "x": 391.09694, + "y": 423.89131, + "index": 2, + "body": { + "#": 6225 + }, + "isInternal": false + }, + { + "x": 386.39494, + "y": 422.36331, + "index": 3, + "body": { + "#": 6225 + }, + "isInternal": false + }, + { + "x": 383.48894, + "y": 418.36331, + "index": 4, + "body": { + "#": 6225 + }, + "isInternal": false + }, + { + "x": 383.48894, + "y": 413.41931, + "index": 5, + "body": { + "#": 6225 + }, + "isInternal": false + }, + { + "x": 386.39494, + "y": 409.41931, + "index": 6, + "body": { + "#": 6225 + }, + "isInternal": false + }, + { + "x": 391.09694, + "y": 407.89131, + "index": 7, + "body": { + "#": 6225 + }, + "isInternal": false + }, + { + "x": 395.79894, + "y": 409.41931, + "index": 8, + "body": { + "#": 6225 + }, + "isInternal": false + }, + { + "x": 398.70494, + "y": 413.41931, + "index": 9, + "body": { + "#": 6225 + }, + "isInternal": false + }, + { + "x": 391.09694, + "y": 415.89131 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.38426, + "y": 2.79919 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6245 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6247 + }, + "max": { + "#": 6248 + } + }, + { + "x": 383.48894, + "y": 407.89131 + }, + { + "x": 398.70494, + "y": 423.89131 + }, + { + "x": 390.80481, + "y": 412.97852 + }, + [ + { + "#": 6251 + }, + { + "#": 6252 + }, + { + "#": 6253 + }, + { + "#": 6254 + }, + { + "#": 6255 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,8,8", + "startCol": 7, + "endCol": 8, + "startRow": 8, + "endRow": 8 + }, + { + "id": 195, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6258 + }, + "angle": 0, + "vertices": { + "#": 6259 + }, + "position": { + "#": 6270 + }, + "force": { + "#": 6271 + }, + "torque": 0, + "positionImpulse": { + "#": 6272 + }, + "constraintImpulse": { + "#": 6273 + }, + "totalContacts": 0, + "speed": 3.07511, + "angularSpeed": 0, + "velocity": { + "#": 6274 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6275 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6276 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6278 + }, + "positionPrev": { + "#": 6281 + }, + "anglePrev": 0, + "axes": { + "#": 6282 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6257 + }, + "sleepCounter": 0, + "region": { + "#": 6288 + } + }, + [ + { + "#": 6257 + } + ], + [ + { + "#": 6260 + }, + { + "#": 6261 + }, + { + "#": 6262 + }, + { + "#": 6263 + }, + { + "#": 6264 + }, + { + "#": 6265 + }, + { + "#": 6266 + }, + { + "#": 6267 + }, + { + "#": 6268 + }, + { + "#": 6269 + } + ], + { + "x": 418.97007, + "y": 417.93424, + "index": 0, + "body": { + "#": 6257 + }, + "isInternal": false + }, + { + "x": 416.06407, + "y": 421.93424, + "index": 1, + "body": { + "#": 6257 + }, + "isInternal": false + }, + { + "x": 411.36207, + "y": 423.46224, + "index": 2, + "body": { + "#": 6257 + }, + "isInternal": false + }, + { + "x": 406.66007, + "y": 421.93424, + "index": 3, + "body": { + "#": 6257 + }, + "isInternal": false + }, + { + "x": 403.75407, + "y": 417.93424, + "index": 4, + "body": { + "#": 6257 + }, + "isInternal": false + }, + { + "x": 403.75407, + "y": 412.99024, + "index": 5, + "body": { + "#": 6257 + }, + "isInternal": false + }, + { + "x": 406.66007, + "y": 408.99024, + "index": 6, + "body": { + "#": 6257 + }, + "isInternal": false + }, + { + "x": 411.36207, + "y": 407.46224, + "index": 7, + "body": { + "#": 6257 + }, + "isInternal": false + }, + { + "x": 416.06407, + "y": 408.99024, + "index": 8, + "body": { + "#": 6257 + }, + "isInternal": false + }, + { + "x": 418.97007, + "y": 412.99024, + "index": 9, + "body": { + "#": 6257 + }, + "isInternal": false + }, + { + "x": 411.36207, + "y": 415.46224 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.43589, + "y": 2.81469 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6277 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6279 + }, + "max": { + "#": 6280 + } + }, + { + "x": 403.75407, + "y": 407.46224 + }, + { + "x": 418.97007, + "y": 423.46224 + }, + { + "x": 411.00986, + "y": 412.49249 + }, + [ + { + "#": 6283 + }, + { + "#": 6284 + }, + { + "#": 6285 + }, + { + "#": 6286 + }, + { + "#": 6287 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,8,8", + "startCol": 8, + "endCol": 8, + "startRow": 8, + "endRow": 8 + }, + { + "id": 196, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6290 + }, + "angle": 0, + "vertices": { + "#": 6291 + }, + "position": { + "#": 6302 + }, + "force": { + "#": 6303 + }, + "torque": 0, + "positionImpulse": { + "#": 6304 + }, + "constraintImpulse": { + "#": 6305 + }, + "totalContacts": 0, + "speed": 2.93373, + "angularSpeed": 0, + "velocity": { + "#": 6306 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6307 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6308 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6310 + }, + "positionPrev": { + "#": 6313 + }, + "anglePrev": 0, + "axes": { + "#": 6314 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6289 + }, + "sleepCounter": 0, + "region": { + "#": 6320 + } + }, + [ + { + "#": 6289 + } + ], + [ + { + "#": 6292 + }, + { + "#": 6293 + }, + { + "#": 6294 + }, + { + "#": 6295 + }, + { + "#": 6296 + }, + { + "#": 6297 + }, + { + "#": 6298 + }, + { + "#": 6299 + }, + { + "#": 6300 + }, + { + "#": 6301 + } + ], + { + "x": 439.67174, + "y": 417.19718, + "index": 0, + "body": { + "#": 6289 + }, + "isInternal": false + }, + { + "x": 436.76574, + "y": 421.19718, + "index": 1, + "body": { + "#": 6289 + }, + "isInternal": false + }, + { + "x": 432.06374, + "y": 422.72518, + "index": 2, + "body": { + "#": 6289 + }, + "isInternal": false + }, + { + "x": 427.36174, + "y": 421.19718, + "index": 3, + "body": { + "#": 6289 + }, + "isInternal": false + }, + { + "x": 424.45574, + "y": 417.19718, + "index": 4, + "body": { + "#": 6289 + }, + "isInternal": false + }, + { + "x": 424.45574, + "y": 412.25318, + "index": 5, + "body": { + "#": 6289 + }, + "isInternal": false + }, + { + "x": 427.36174, + "y": 408.25318, + "index": 6, + "body": { + "#": 6289 + }, + "isInternal": false + }, + { + "x": 432.06374, + "y": 406.72518, + "index": 7, + "body": { + "#": 6289 + }, + "isInternal": false + }, + { + "x": 436.76574, + "y": 408.25318, + "index": 8, + "body": { + "#": 6289 + }, + "isInternal": false + }, + { + "x": 439.67174, + "y": 412.25318, + "index": 9, + "body": { + "#": 6289 + }, + "isInternal": false + }, + { + "x": 432.06374, + "y": 414.72518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.56665, + "y": 2.68864 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6309 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6311 + }, + "max": { + "#": 6312 + } + }, + { + "x": 424.45574, + "y": 406.72518 + }, + { + "x": 439.67174, + "y": 422.72518 + }, + { + "x": 431.55607, + "y": 411.89159 + }, + [ + { + "#": 6315 + }, + { + "#": 6316 + }, + { + "#": 6317 + }, + { + "#": 6318 + }, + { + "#": 6319 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,8,8", + "startCol": 8, + "endCol": 9, + "startRow": 8, + "endRow": 8 + }, + { + "id": 197, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6322 + }, + "angle": 0, + "vertices": { + "#": 6323 + }, + "position": { + "#": 6334 + }, + "force": { + "#": 6335 + }, + "torque": 0, + "positionImpulse": { + "#": 6336 + }, + "constraintImpulse": { + "#": 6337 + }, + "totalContacts": 0, + "speed": 2.14286, + "angularSpeed": 0, + "velocity": { + "#": 6338 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6339 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6340 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6342 + }, + "positionPrev": { + "#": 6345 + }, + "anglePrev": 0, + "axes": { + "#": 6346 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6321 + }, + "sleepCounter": 0, + "region": { + "#": 6352 + } + }, + [ + { + "#": 6321 + } + ], + [ + { + "#": 6324 + }, + { + "#": 6325 + }, + { + "#": 6326 + }, + { + "#": 6327 + }, + { + "#": 6328 + }, + { + "#": 6329 + }, + { + "#": 6330 + }, + { + "#": 6331 + }, + { + "#": 6332 + }, + { + "#": 6333 + } + ], + { + "x": 460.52922, + "y": 413.58188, + "index": 0, + "body": { + "#": 6321 + }, + "isInternal": false + }, + { + "x": 457.62322, + "y": 417.58188, + "index": 1, + "body": { + "#": 6321 + }, + "isInternal": false + }, + { + "x": 452.92122, + "y": 419.10988, + "index": 2, + "body": { + "#": 6321 + }, + "isInternal": false + }, + { + "x": 448.21922, + "y": 417.58188, + "index": 3, + "body": { + "#": 6321 + }, + "isInternal": false + }, + { + "x": 445.31322, + "y": 413.58188, + "index": 4, + "body": { + "#": 6321 + }, + "isInternal": false + }, + { + "x": 445.31322, + "y": 408.63788, + "index": 5, + "body": { + "#": 6321 + }, + "isInternal": false + }, + { + "x": 448.21922, + "y": 404.63788, + "index": 6, + "body": { + "#": 6321 + }, + "isInternal": false + }, + { + "x": 452.92122, + "y": 403.10988, + "index": 7, + "body": { + "#": 6321 + }, + "isInternal": false + }, + { + "x": 457.62322, + "y": 404.63788, + "index": 8, + "body": { + "#": 6321 + }, + "isInternal": false + }, + { + "x": 460.52922, + "y": 408.63788, + "index": 9, + "body": { + "#": 6321 + }, + "isInternal": false + }, + { + "x": 452.92122, + "y": 411.10988 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.6273, + "y": 1.99236 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6341 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6343 + }, + "max": { + "#": 6344 + } + }, + { + "x": 445.31322, + "y": 403.10988 + }, + { + "x": 460.52922, + "y": 419.10988 + }, + { + "x": 452.25483, + "y": 409.21808 + }, + [ + { + "#": 6347 + }, + { + "#": 6348 + }, + { + "#": 6349 + }, + { + "#": 6350 + }, + { + "#": 6351 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,8,8", + "startCol": 9, + "endCol": 9, + "startRow": 8, + "endRow": 8 + }, + { + "id": 198, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6354 + }, + "angle": 0, + "vertices": { + "#": 6355 + }, + "position": { + "#": 6366 + }, + "force": { + "#": 6367 + }, + "torque": 0, + "positionImpulse": { + "#": 6368 + }, + "constraintImpulse": { + "#": 6369 + }, + "totalContacts": 0, + "speed": 1.55635, + "angularSpeed": 0, + "velocity": { + "#": 6370 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6371 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6372 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6374 + }, + "positionPrev": { + "#": 6377 + }, + "anglePrev": 0, + "axes": { + "#": 6378 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6353 + }, + "sleepCounter": 0, + "region": { + "#": 6384 + } + }, + [ + { + "#": 6353 + } + ], + [ + { + "#": 6356 + }, + { + "#": 6357 + }, + { + "#": 6358 + }, + { + "#": 6359 + }, + { + "#": 6360 + }, + { + "#": 6361 + }, + { + "#": 6362 + }, + { + "#": 6363 + }, + { + "#": 6364 + }, + { + "#": 6365 + } + ], + { + "x": 478.98711, + "y": 402.94119, + "index": 0, + "body": { + "#": 6353 + }, + "isInternal": false + }, + { + "x": 476.08111, + "y": 406.94119, + "index": 1, + "body": { + "#": 6353 + }, + "isInternal": false + }, + { + "x": 471.37911, + "y": 408.46919, + "index": 2, + "body": { + "#": 6353 + }, + "isInternal": false + }, + { + "x": 466.67711, + "y": 406.94119, + "index": 3, + "body": { + "#": 6353 + }, + "isInternal": false + }, + { + "x": 463.77111, + "y": 402.94119, + "index": 4, + "body": { + "#": 6353 + }, + "isInternal": false + }, + { + "x": 463.77111, + "y": 397.99719, + "index": 5, + "body": { + "#": 6353 + }, + "isInternal": false + }, + { + "x": 466.67711, + "y": 393.99719, + "index": 6, + "body": { + "#": 6353 + }, + "isInternal": false + }, + { + "x": 471.37911, + "y": 392.46919, + "index": 7, + "body": { + "#": 6353 + }, + "isInternal": false + }, + { + "x": 476.08111, + "y": 393.99719, + "index": 8, + "body": { + "#": 6353 + }, + "isInternal": false + }, + { + "x": 478.98711, + "y": 397.99719, + "index": 9, + "body": { + "#": 6353 + }, + "isInternal": false + }, + { + "x": 471.37911, + "y": 400.46919 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.62339, + "y": 2.06261 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6373 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6375 + }, + "max": { + "#": 6376 + } + }, + { + "x": 463.77111, + "y": 392.46919 + }, + { + "x": 478.98711, + "y": 408.46919 + }, + { + "x": 470.5478, + "y": 398.84204 + }, + [ + { + "#": 6379 + }, + { + "#": 6380 + }, + { + "#": 6381 + }, + { + "#": 6382 + }, + { + "#": 6383 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,8,8", + "startCol": 9, + "endCol": 9, + "startRow": 8, + "endRow": 8 + }, + { + "id": 199, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6386 + }, + "angle": 0, + "vertices": { + "#": 6387 + }, + "position": { + "#": 6398 + }, + "force": { + "#": 6399 + }, + "torque": 0, + "positionImpulse": { + "#": 6400 + }, + "constraintImpulse": { + "#": 6401 + }, + "totalContacts": 0, + "speed": 1.0743, + "angularSpeed": 0, + "velocity": { + "#": 6402 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6403 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6404 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6406 + }, + "positionPrev": { + "#": 6409 + }, + "anglePrev": 0, + "axes": { + "#": 6410 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6385 + }, + "sleepCounter": 0, + "region": { + "#": 6416 + } + }, + [ + { + "#": 6385 + } + ], + [ + { + "#": 6388 + }, + { + "#": 6389 + }, + { + "#": 6390 + }, + { + "#": 6391 + }, + { + "#": 6392 + }, + { + "#": 6393 + }, + { + "#": 6394 + }, + { + "#": 6395 + }, + { + "#": 6396 + }, + { + "#": 6397 + } + ], + { + "x": 499.66817, + "y": 400.35026, + "index": 0, + "body": { + "#": 6385 + }, + "isInternal": false + }, + { + "x": 496.76217, + "y": 404.35026, + "index": 1, + "body": { + "#": 6385 + }, + "isInternal": false + }, + { + "x": 492.06017, + "y": 405.87826, + "index": 2, + "body": { + "#": 6385 + }, + "isInternal": false + }, + { + "x": 487.35817, + "y": 404.35026, + "index": 3, + "body": { + "#": 6385 + }, + "isInternal": false + }, + { + "x": 484.45217, + "y": 400.35026, + "index": 4, + "body": { + "#": 6385 + }, + "isInternal": false + }, + { + "x": 484.45217, + "y": 395.40626, + "index": 5, + "body": { + "#": 6385 + }, + "isInternal": false + }, + { + "x": 487.35817, + "y": 391.40626, + "index": 6, + "body": { + "#": 6385 + }, + "isInternal": false + }, + { + "x": 492.06017, + "y": 389.87826, + "index": 7, + "body": { + "#": 6385 + }, + "isInternal": false + }, + { + "x": 496.76217, + "y": 391.40626, + "index": 8, + "body": { + "#": 6385 + }, + "isInternal": false + }, + { + "x": 499.66817, + "y": 395.40626, + "index": 9, + "body": { + "#": 6385 + }, + "isInternal": false + }, + { + "x": 492.06017, + "y": 397.87826 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.62995, + "y": 1.57663 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6405 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6407 + }, + "max": { + "#": 6408 + } + }, + { + "x": 484.45217, + "y": 389.87826 + }, + { + "x": 499.66817, + "y": 405.87826 + }, + { + "x": 491.22144, + "y": 396.82033 + }, + [ + { + "#": 6411 + }, + { + "#": 6412 + }, + { + "#": 6413 + }, + { + "#": 6414 + }, + { + "#": 6415 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,8,8", + "startCol": 10, + "endCol": 10, + "startRow": 8, + "endRow": 8 + }, + { + "id": 200, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6418 + }, + "angle": 0, + "vertices": { + "#": 6419 + }, + "position": { + "#": 6430 + }, + "force": { + "#": 6431 + }, + "torque": 0, + "positionImpulse": { + "#": 6432 + }, + "constraintImpulse": { + "#": 6433 + }, + "totalContacts": 0, + "speed": 0.97365, + "angularSpeed": 0, + "velocity": { + "#": 6434 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6435 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6436 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6438 + }, + "positionPrev": { + "#": 6441 + }, + "anglePrev": 0, + "axes": { + "#": 6442 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6417 + }, + "sleepCounter": 0, + "region": { + "#": 6448 + } + }, + [ + { + "#": 6417 + } + ], + [ + { + "#": 6420 + }, + { + "#": 6421 + }, + { + "#": 6422 + }, + { + "#": 6423 + }, + { + "#": 6424 + }, + { + "#": 6425 + }, + { + "#": 6426 + }, + { + "#": 6427 + }, + { + "#": 6428 + }, + { + "#": 6429 + } + ], + { + "x": 520.24047, + "y": 400.02464, + "index": 0, + "body": { + "#": 6417 + }, + "isInternal": false + }, + { + "x": 517.33447, + "y": 404.02464, + "index": 1, + "body": { + "#": 6417 + }, + "isInternal": false + }, + { + "x": 512.63247, + "y": 405.55264, + "index": 2, + "body": { + "#": 6417 + }, + "isInternal": false + }, + { + "x": 507.93047, + "y": 404.02464, + "index": 3, + "body": { + "#": 6417 + }, + "isInternal": false + }, + { + "x": 505.02447, + "y": 400.02464, + "index": 4, + "body": { + "#": 6417 + }, + "isInternal": false + }, + { + "x": 505.02447, + "y": 395.08064, + "index": 5, + "body": { + "#": 6417 + }, + "isInternal": false + }, + { + "x": 507.93047, + "y": 391.08064, + "index": 6, + "body": { + "#": 6417 + }, + "isInternal": false + }, + { + "x": 512.63247, + "y": 389.55264, + "index": 7, + "body": { + "#": 6417 + }, + "isInternal": false + }, + { + "x": 517.33447, + "y": 391.08064, + "index": 8, + "body": { + "#": 6417 + }, + "isInternal": false + }, + { + "x": 520.24047, + "y": 395.08064, + "index": 9, + "body": { + "#": 6417 + }, + "isInternal": false + }, + { + "x": 512.63247, + "y": 397.55264 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.58345, + "y": 1.4678 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6437 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6439 + }, + "max": { + "#": 6440 + } + }, + { + "x": 505.02447, + "y": 389.55264 + }, + { + "x": 520.24047, + "y": 405.55264 + }, + { + "x": 511.86298, + "y": 396.68236 + }, + [ + { + "#": 6443 + }, + { + "#": 6444 + }, + { + "#": 6445 + }, + { + "#": 6446 + }, + { + "#": 6447 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,8,8", + "startCol": 10, + "endCol": 10, + "startRow": 8, + "endRow": 8 + }, + { + "id": 201, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6450 + }, + "angle": 0, + "vertices": { + "#": 6451 + }, + "position": { + "#": 6462 + }, + "force": { + "#": 6463 + }, + "torque": 0, + "positionImpulse": { + "#": 6464 + }, + "constraintImpulse": { + "#": 6465 + }, + "totalContacts": 0, + "speed": 1.23296, + "angularSpeed": 0, + "velocity": { + "#": 6466 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6467 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6468 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6470 + }, + "positionPrev": { + "#": 6473 + }, + "anglePrev": 0, + "axes": { + "#": 6474 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6449 + }, + "sleepCounter": 0, + "region": { + "#": 6480 + } + }, + [ + { + "#": 6449 + } + ], + [ + { + "#": 6452 + }, + { + "#": 6453 + }, + { + "#": 6454 + }, + { + "#": 6455 + }, + { + "#": 6456 + }, + { + "#": 6457 + }, + { + "#": 6458 + }, + { + "#": 6459 + }, + { + "#": 6460 + }, + { + "#": 6461 + } + ], + { + "x": 540.51347, + "y": 401.87068, + "index": 0, + "body": { + "#": 6449 + }, + "isInternal": false + }, + { + "x": 537.60747, + "y": 405.87068, + "index": 1, + "body": { + "#": 6449 + }, + "isInternal": false + }, + { + "x": 532.90547, + "y": 407.39868, + "index": 2, + "body": { + "#": 6449 + }, + "isInternal": false + }, + { + "x": 528.20347, + "y": 405.87068, + "index": 3, + "body": { + "#": 6449 + }, + "isInternal": false + }, + { + "x": 525.29747, + "y": 401.87068, + "index": 4, + "body": { + "#": 6449 + }, + "isInternal": false + }, + { + "x": 525.29747, + "y": 396.92668, + "index": 5, + "body": { + "#": 6449 + }, + "isInternal": false + }, + { + "x": 528.20347, + "y": 392.92668, + "index": 6, + "body": { + "#": 6449 + }, + "isInternal": false + }, + { + "x": 532.90547, + "y": 391.39868, + "index": 7, + "body": { + "#": 6449 + }, + "isInternal": false + }, + { + "x": 537.60747, + "y": 392.92668, + "index": 8, + "body": { + "#": 6449 + }, + "isInternal": false + }, + { + "x": 540.51347, + "y": 396.92668, + "index": 9, + "body": { + "#": 6449 + }, + "isInternal": false + }, + { + "x": 532.90547, + "y": 399.39868 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.43384, + "y": 1.71623 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6469 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6471 + }, + "max": { + "#": 6472 + } + }, + { + "x": 525.29747, + "y": 391.39868 + }, + { + "x": 540.51347, + "y": 407.39868 + }, + { + "x": 532.34512, + "y": 398.27755 + }, + [ + { + "#": 6475 + }, + { + "#": 6476 + }, + { + "#": 6477 + }, + { + "#": 6478 + }, + { + "#": 6479 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,8,8", + "startCol": 10, + "endCol": 11, + "startRow": 8, + "endRow": 8 + }, + { + "id": 202, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6482 + }, + "angle": 0, + "vertices": { + "#": 6483 + }, + "position": { + "#": 6494 + }, + "force": { + "#": 6495 + }, + "torque": 0, + "positionImpulse": { + "#": 6496 + }, + "constraintImpulse": { + "#": 6497 + }, + "totalContacts": 0, + "speed": 2.08539, + "angularSpeed": 0, + "velocity": { + "#": 6498 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6499 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6500 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6502 + }, + "positionPrev": { + "#": 6505 + }, + "anglePrev": 0, + "axes": { + "#": 6506 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6481 + }, + "sleepCounter": 0, + "region": { + "#": 6512 + } + }, + [ + { + "#": 6481 + } + ], + [ + { + "#": 6484 + }, + { + "#": 6485 + }, + { + "#": 6486 + }, + { + "#": 6487 + }, + { + "#": 6488 + }, + { + "#": 6489 + }, + { + "#": 6490 + }, + { + "#": 6491 + }, + { + "#": 6492 + }, + { + "#": 6493 + } + ], + { + "x": 557.13918, + "y": 413.40607, + "index": 0, + "body": { + "#": 6481 + }, + "isInternal": false + }, + { + "x": 554.23318, + "y": 417.40607, + "index": 1, + "body": { + "#": 6481 + }, + "isInternal": false + }, + { + "x": 549.53118, + "y": 418.93407, + "index": 2, + "body": { + "#": 6481 + }, + "isInternal": false + }, + { + "x": 544.82918, + "y": 417.40607, + "index": 3, + "body": { + "#": 6481 + }, + "isInternal": false + }, + { + "x": 541.92318, + "y": 413.40607, + "index": 4, + "body": { + "#": 6481 + }, + "isInternal": false + }, + { + "x": 541.92318, + "y": 408.46207, + "index": 5, + "body": { + "#": 6481 + }, + "isInternal": false + }, + { + "x": 544.82918, + "y": 404.46207, + "index": 6, + "body": { + "#": 6481 + }, + "isInternal": false + }, + { + "x": 549.53118, + "y": 402.93407, + "index": 7, + "body": { + "#": 6481 + }, + "isInternal": false + }, + { + "x": 554.23318, + "y": 404.46207, + "index": 8, + "body": { + "#": 6481 + }, + "isInternal": false + }, + { + "x": 557.13918, + "y": 408.46207, + "index": 9, + "body": { + "#": 6481 + }, + "isInternal": false + }, + { + "x": 549.53118, + "y": 410.93407 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.26778, + "y": 2.01342 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6501 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6503 + }, + "max": { + "#": 6504 + } + }, + { + "x": 541.92318, + "y": 402.93407 + }, + { + "x": 557.13918, + "y": 418.93407 + }, + { + "x": 549.76793, + "y": 409.14492 + }, + [ + { + "#": 6507 + }, + { + "#": 6508 + }, + { + "#": 6509 + }, + { + "#": 6510 + }, + { + "#": 6511 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,11,8,8", + "startCol": 11, + "endCol": 11, + "startRow": 8, + "endRow": 8 + }, + { + "id": 203, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6514 + }, + "angle": 0, + "vertices": { + "#": 6515 + }, + "position": { + "#": 6526 + }, + "force": { + "#": 6527 + }, + "torque": 0, + "positionImpulse": { + "#": 6528 + }, + "constraintImpulse": { + "#": 6529 + }, + "totalContacts": 0, + "speed": 2.74642, + "angularSpeed": 0, + "velocity": { + "#": 6530 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6531 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6532 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6534 + }, + "positionPrev": { + "#": 6537 + }, + "anglePrev": 0, + "axes": { + "#": 6538 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6513 + }, + "sleepCounter": 0, + "region": { + "#": 6544 + } + }, + [ + { + "#": 6513 + } + ], + [ + { + "#": 6516 + }, + { + "#": 6517 + }, + { + "#": 6518 + }, + { + "#": 6519 + }, + { + "#": 6520 + }, + { + "#": 6521 + }, + { + "#": 6522 + }, + { + "#": 6523 + }, + { + "#": 6524 + }, + { + "#": 6525 + } + ], + { + "x": 577.26298, + "y": 416.50046, + "index": 0, + "body": { + "#": 6513 + }, + "isInternal": false + }, + { + "x": 574.35698, + "y": 420.50046, + "index": 1, + "body": { + "#": 6513 + }, + "isInternal": false + }, + { + "x": 569.65498, + "y": 422.02846, + "index": 2, + "body": { + "#": 6513 + }, + "isInternal": false + }, + { + "x": 564.95298, + "y": 420.50046, + "index": 3, + "body": { + "#": 6513 + }, + "isInternal": false + }, + { + "x": 562.04698, + "y": 416.50046, + "index": 4, + "body": { + "#": 6513 + }, + "isInternal": false + }, + { + "x": 562.04698, + "y": 411.55646, + "index": 5, + "body": { + "#": 6513 + }, + "isInternal": false + }, + { + "x": 564.95298, + "y": 407.55646, + "index": 6, + "body": { + "#": 6513 + }, + "isInternal": false + }, + { + "x": 569.65498, + "y": 406.02846, + "index": 7, + "body": { + "#": 6513 + }, + "isInternal": false + }, + { + "x": 574.35698, + "y": 407.55646, + "index": 8, + "body": { + "#": 6513 + }, + "isInternal": false + }, + { + "x": 577.26298, + "y": 411.55646, + "index": 9, + "body": { + "#": 6513 + }, + "isInternal": false + }, + { + "x": 569.65498, + "y": 414.02846 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.43446, + "y": 2.57074 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6533 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6535 + }, + "max": { + "#": 6536 + } + }, + { + "x": 562.04698, + "y": 406.02846 + }, + { + "x": 577.26298, + "y": 422.02846 + }, + { + "x": 570.09304, + "y": 411.42146 + }, + [ + { + "#": 6539 + }, + { + "#": 6540 + }, + { + "#": 6541 + }, + { + "#": 6542 + }, + { + "#": 6543 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,8,8", + "startCol": 11, + "endCol": 12, + "startRow": 8, + "endRow": 8 + }, + { + "id": 204, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6546 + }, + "angle": 0, + "vertices": { + "#": 6547 + }, + "position": { + "#": 6558 + }, + "force": { + "#": 6559 + }, + "torque": 0, + "positionImpulse": { + "#": 6560 + }, + "constraintImpulse": { + "#": 6561 + }, + "totalContacts": 0, + "speed": 2.8093, + "angularSpeed": 0, + "velocity": { + "#": 6562 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6563 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6564 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6566 + }, + "positionPrev": { + "#": 6569 + }, + "anglePrev": 0, + "axes": { + "#": 6570 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6545 + }, + "sleepCounter": 0, + "region": { + "#": 6576 + } + }, + [ + { + "#": 6545 + } + ], + [ + { + "#": 6548 + }, + { + "#": 6549 + }, + { + "#": 6550 + }, + { + "#": 6551 + }, + { + "#": 6552 + }, + { + "#": 6553 + }, + { + "#": 6554 + }, + { + "#": 6555 + }, + { + "#": 6556 + }, + { + "#": 6557 + } + ], + { + "x": 597.5594, + "y": 416.73532, + "index": 0, + "body": { + "#": 6545 + }, + "isInternal": false + }, + { + "x": 594.6534, + "y": 420.73532, + "index": 1, + "body": { + "#": 6545 + }, + "isInternal": false + }, + { + "x": 589.9514, + "y": 422.26332, + "index": 2, + "body": { + "#": 6545 + }, + "isInternal": false + }, + { + "x": 585.2494, + "y": 420.73532, + "index": 3, + "body": { + "#": 6545 + }, + "isInternal": false + }, + { + "x": 582.3434, + "y": 416.73532, + "index": 4, + "body": { + "#": 6545 + }, + "isInternal": false + }, + { + "x": 582.3434, + "y": 411.79132, + "index": 5, + "body": { + "#": 6545 + }, + "isInternal": false + }, + { + "x": 585.2494, + "y": 407.79132, + "index": 6, + "body": { + "#": 6545 + }, + "isInternal": false + }, + { + "x": 589.9514, + "y": 406.26332, + "index": 7, + "body": { + "#": 6545 + }, + "isInternal": false + }, + { + "x": 594.6534, + "y": 407.79132, + "index": 8, + "body": { + "#": 6545 + }, + "isInternal": false + }, + { + "x": 597.5594, + "y": 411.79132, + "index": 9, + "body": { + "#": 6545 + }, + "isInternal": false + }, + { + "x": 589.9514, + "y": 414.26332 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.46309, + "y": 2.63712 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6565 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6567 + }, + "max": { + "#": 6568 + } + }, + { + "x": 582.3434, + "y": 406.26332 + }, + { + "x": 597.5594, + "y": 422.26332 + }, + { + "x": 590.41986, + "y": 411.5627 + }, + [ + { + "#": 6571 + }, + { + "#": 6572 + }, + { + "#": 6573 + }, + { + "#": 6574 + }, + { + "#": 6575 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,8,8", + "startCol": 12, + "endCol": 12, + "startRow": 8, + "endRow": 8 + }, + { + "id": 205, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6578 + }, + "angle": 0, + "vertices": { + "#": 6579 + }, + "position": { + "#": 6590 + }, + "force": { + "#": 6591 + }, + "torque": 0, + "positionImpulse": { + "#": 6592 + }, + "constraintImpulse": { + "#": 6593 + }, + "totalContacts": 0, + "speed": 3.41145, + "angularSpeed": 0, + "velocity": { + "#": 6594 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6595 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6596 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6598 + }, + "positionPrev": { + "#": 6601 + }, + "anglePrev": 0, + "axes": { + "#": 6602 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6577 + }, + "sleepCounter": 0, + "region": { + "#": 6608 + } + }, + [ + { + "#": 6577 + } + ], + [ + { + "#": 6580 + }, + { + "#": 6581 + }, + { + "#": 6582 + }, + { + "#": 6583 + }, + { + "#": 6584 + }, + { + "#": 6585 + }, + { + "#": 6586 + }, + { + "#": 6587 + }, + { + "#": 6588 + }, + { + "#": 6589 + } + ], + { + "x": 232.26336, + "y": 437.07305, + "index": 0, + "body": { + "#": 6577 + }, + "isInternal": false + }, + { + "x": 229.35736, + "y": 441.07305, + "index": 1, + "body": { + "#": 6577 + }, + "isInternal": false + }, + { + "x": 224.65536, + "y": 442.60105, + "index": 2, + "body": { + "#": 6577 + }, + "isInternal": false + }, + { + "x": 219.95336, + "y": 441.07305, + "index": 3, + "body": { + "#": 6577 + }, + "isInternal": false + }, + { + "x": 217.04736, + "y": 437.07305, + "index": 4, + "body": { + "#": 6577 + }, + "isInternal": false + }, + { + "x": 217.04736, + "y": 432.12905, + "index": 5, + "body": { + "#": 6577 + }, + "isInternal": false + }, + { + "x": 219.95336, + "y": 428.12905, + "index": 6, + "body": { + "#": 6577 + }, + "isInternal": false + }, + { + "x": 224.65536, + "y": 426.60105, + "index": 7, + "body": { + "#": 6577 + }, + "isInternal": false + }, + { + "x": 229.35736, + "y": 428.12905, + "index": 8, + "body": { + "#": 6577 + }, + "isInternal": false + }, + { + "x": 232.26336, + "y": 432.12905, + "index": 9, + "body": { + "#": 6577 + }, + "isInternal": false + }, + { + "x": 224.65536, + "y": 434.60105 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 3.06025, + "y": 1.80501 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6597 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6599 + }, + "max": { + "#": 6600 + } + }, + { + "x": 217.04736, + "y": 426.60105 + }, + { + "x": 232.26336, + "y": 442.60105 + }, + { + "x": 221.64792, + "y": 432.75939 + }, + [ + { + "#": 6603 + }, + { + "#": 6604 + }, + { + "#": 6605 + }, + { + "#": 6606 + }, + { + "#": 6607 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,8,9", + "startCol": 4, + "endCol": 4, + "startRow": 8, + "endRow": 9 + }, + { + "id": 206, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6610 + }, + "angle": 0, + "vertices": { + "#": 6611 + }, + "position": { + "#": 6622 + }, + "force": { + "#": 6623 + }, + "torque": 0, + "positionImpulse": { + "#": 6624 + }, + "constraintImpulse": { + "#": 6625 + }, + "totalContacts": 0, + "speed": 3.04782, + "angularSpeed": 0, + "velocity": { + "#": 6626 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6627 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6628 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6630 + }, + "positionPrev": { + "#": 6633 + }, + "anglePrev": 0, + "axes": { + "#": 6634 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6609 + }, + "sleepCounter": 0, + "region": { + "#": 6640 + } + }, + [ + { + "#": 6609 + } + ], + [ + { + "#": 6612 + }, + { + "#": 6613 + }, + { + "#": 6614 + }, + { + "#": 6615 + }, + { + "#": 6616 + }, + { + "#": 6617 + }, + { + "#": 6618 + }, + { + "#": 6619 + }, + { + "#": 6620 + }, + { + "#": 6621 + } + ], + { + "x": 253.66198, + "y": 433.01817, + "index": 0, + "body": { + "#": 6609 + }, + "isInternal": false + }, + { + "x": 250.75598, + "y": 437.01817, + "index": 1, + "body": { + "#": 6609 + }, + "isInternal": false + }, + { + "x": 246.05398, + "y": 438.54617, + "index": 2, + "body": { + "#": 6609 + }, + "isInternal": false + }, + { + "x": 241.35198, + "y": 437.01817, + "index": 3, + "body": { + "#": 6609 + }, + "isInternal": false + }, + { + "x": 238.44598, + "y": 433.01817, + "index": 4, + "body": { + "#": 6609 + }, + "isInternal": false + }, + { + "x": 238.44598, + "y": 428.07417, + "index": 5, + "body": { + "#": 6609 + }, + "isInternal": false + }, + { + "x": 241.35198, + "y": 424.07417, + "index": 6, + "body": { + "#": 6609 + }, + "isInternal": false + }, + { + "x": 246.05398, + "y": 422.54617, + "index": 7, + "body": { + "#": 6609 + }, + "isInternal": false + }, + { + "x": 250.75598, + "y": 424.07417, + "index": 8, + "body": { + "#": 6609 + }, + "isInternal": false + }, + { + "x": 253.66198, + "y": 428.07417, + "index": 9, + "body": { + "#": 6609 + }, + "isInternal": false + }, + { + "x": 246.05398, + "y": 430.54617 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 1.60353, + "y": -1.10677 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6629 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6631 + }, + "max": { + "#": 6632 + } + }, + { + "x": 238.44598, + "y": 422.54617 + }, + { + "x": 256.54673, + "y": 439.26913 + }, + { + "x": 244.45046, + "y": 431.65294 + }, + [ + { + "#": 6635 + }, + { + "#": 6636 + }, + { + "#": 6637 + }, + { + "#": 6638 + }, + { + "#": 6639 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,8,9", + "startCol": 4, + "endCol": 5, + "startRow": 8, + "endRow": 9 + }, + { + "id": 207, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6642 + }, + "angle": 0, + "vertices": { + "#": 6643 + }, + "position": { + "#": 6654 + }, + "force": { + "#": 6655 + }, + "torque": 0, + "positionImpulse": { + "#": 6656 + }, + "constraintImpulse": { + "#": 6657 + }, + "totalContacts": 0, + "speed": 1.92725, + "angularSpeed": 0, + "velocity": { + "#": 6658 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6659 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6660 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6662 + }, + "positionPrev": { + "#": 6665 + }, + "anglePrev": 0, + "axes": { + "#": 6666 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6641 + }, + "sleepCounter": 0, + "region": { + "#": 6672 + } + }, + [ + { + "#": 6641 + } + ], + [ + { + "#": 6644 + }, + { + "#": 6645 + }, + { + "#": 6646 + }, + { + "#": 6647 + }, + { + "#": 6648 + }, + { + "#": 6649 + }, + { + "#": 6650 + }, + { + "#": 6651 + }, + { + "#": 6652 + }, + { + "#": 6653 + } + ], + { + "x": 273.74101, + "y": 422.17855, + "index": 0, + "body": { + "#": 6641 + }, + "isInternal": false + }, + { + "x": 270.83501, + "y": 426.17855, + "index": 1, + "body": { + "#": 6641 + }, + "isInternal": false + }, + { + "x": 266.13301, + "y": 427.70655, + "index": 2, + "body": { + "#": 6641 + }, + "isInternal": false + }, + { + "x": 261.43101, + "y": 426.17855, + "index": 3, + "body": { + "#": 6641 + }, + "isInternal": false + }, + { + "x": 258.52501, + "y": 422.17855, + "index": 4, + "body": { + "#": 6641 + }, + "isInternal": false + }, + { + "x": 258.52501, + "y": 417.23455, + "index": 5, + "body": { + "#": 6641 + }, + "isInternal": false + }, + { + "x": 261.43101, + "y": 413.23455, + "index": 6, + "body": { + "#": 6641 + }, + "isInternal": false + }, + { + "x": 266.13301, + "y": 411.70655, + "index": 7, + "body": { + "#": 6641 + }, + "isInternal": false + }, + { + "x": 270.83501, + "y": 413.23455, + "index": 8, + "body": { + "#": 6641 + }, + "isInternal": false + }, + { + "x": 273.74101, + "y": 417.23455, + "index": 9, + "body": { + "#": 6641 + }, + "isInternal": false + }, + { + "x": 266.13301, + "y": 419.70655 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 1.70193, + "y": -0.64546 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6661 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6663 + }, + "max": { + "#": 6664 + } + }, + { + "x": 258.52501, + "y": 411.70655 + }, + { + "x": 276.00524, + "y": 428.19651 + }, + { + "x": 264.43109, + "y": 420.352 + }, + [ + { + "#": 6667 + }, + { + "#": 6668 + }, + { + "#": 6669 + }, + { + "#": 6670 + }, + { + "#": 6671 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,8,8", + "startCol": 5, + "endCol": 5, + "startRow": 8, + "endRow": 8 + }, + { + "id": 208, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6674 + }, + "angle": 0, + "vertices": { + "#": 6675 + }, + "position": { + "#": 6686 + }, + "force": { + "#": 6687 + }, + "torque": 0, + "positionImpulse": { + "#": 6688 + }, + "constraintImpulse": { + "#": 6689 + }, + "totalContacts": 0, + "speed": 1.22764, + "angularSpeed": 0, + "velocity": { + "#": 6690 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6691 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6692 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6694 + }, + "positionPrev": { + "#": 6697 + }, + "anglePrev": 0, + "axes": { + "#": 6698 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6673 + }, + "sleepCounter": 0, + "region": { + "#": 6704 + } + }, + [ + { + "#": 6673 + } + ], + [ + { + "#": 6676 + }, + { + "#": 6677 + }, + { + "#": 6678 + }, + { + "#": 6679 + }, + { + "#": 6680 + }, + { + "#": 6681 + }, + { + "#": 6682 + }, + { + "#": 6683 + }, + { + "#": 6684 + }, + { + "#": 6685 + } + ], + { + "x": 294.86984, + "y": 416.06931, + "index": 0, + "body": { + "#": 6673 + }, + "isInternal": false + }, + { + "x": 291.96384, + "y": 420.06931, + "index": 1, + "body": { + "#": 6673 + }, + "isInternal": false + }, + { + "x": 287.26184, + "y": 421.59731, + "index": 2, + "body": { + "#": 6673 + }, + "isInternal": false + }, + { + "x": 282.55984, + "y": 420.06931, + "index": 3, + "body": { + "#": 6673 + }, + "isInternal": false + }, + { + "x": 279.65384, + "y": 416.06931, + "index": 4, + "body": { + "#": 6673 + }, + "isInternal": false + }, + { + "x": 279.65384, + "y": 411.12531, + "index": 5, + "body": { + "#": 6673 + }, + "isInternal": false + }, + { + "x": 282.55984, + "y": 407.12531, + "index": 6, + "body": { + "#": 6673 + }, + "isInternal": false + }, + { + "x": 287.26184, + "y": 405.59731, + "index": 7, + "body": { + "#": 6673 + }, + "isInternal": false + }, + { + "x": 291.96384, + "y": 407.12531, + "index": 8, + "body": { + "#": 6673 + }, + "isInternal": false + }, + { + "x": 294.86984, + "y": 411.12531, + "index": 9, + "body": { + "#": 6673 + }, + "isInternal": false + }, + { + "x": 287.26184, + "y": 413.59731 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 1.10388, + "y": -0.13406 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6693 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6695 + }, + "max": { + "#": 6696 + } + }, + { + "x": 279.65384, + "y": 405.59731 + }, + { + "x": 296.26498, + "y": 422.46112 + }, + { + "x": 286.15797, + "y": 413.73137 + }, + [ + { + "#": 6699 + }, + { + "#": 6700 + }, + { + "#": 6701 + }, + { + "#": 6702 + }, + { + "#": 6703 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,8,8", + "startCol": 5, + "endCol": 6, + "startRow": 8, + "endRow": 8 + }, + { + "id": 209, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6706 + }, + "angle": 0, + "vertices": { + "#": 6707 + }, + "position": { + "#": 6718 + }, + "force": { + "#": 6719 + }, + "torque": 0, + "positionImpulse": { + "#": 6720 + }, + "constraintImpulse": { + "#": 6721 + }, + "totalContacts": 0, + "speed": 0.78202, + "angularSpeed": 0, + "velocity": { + "#": 6722 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6723 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6724 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6726 + }, + "positionPrev": { + "#": 6729 + }, + "anglePrev": 0, + "axes": { + "#": 6730 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6705 + }, + "sleepCounter": 0, + "region": { + "#": 6736 + } + }, + [ + { + "#": 6705 + } + ], + [ + { + "#": 6708 + }, + { + "#": 6709 + }, + { + "#": 6710 + }, + { + "#": 6711 + }, + { + "#": 6712 + }, + { + "#": 6713 + }, + { + "#": 6714 + }, + { + "#": 6715 + }, + { + "#": 6716 + }, + { + "#": 6717 + } + ], + { + "x": 315.73552, + "y": 415.33821, + "index": 0, + "body": { + "#": 6705 + }, + "isInternal": false + }, + { + "x": 312.82952, + "y": 419.33821, + "index": 1, + "body": { + "#": 6705 + }, + "isInternal": false + }, + { + "x": 308.12752, + "y": 420.86621, + "index": 2, + "body": { + "#": 6705 + }, + "isInternal": false + }, + { + "x": 303.42552, + "y": 419.33821, + "index": 3, + "body": { + "#": 6705 + }, + "isInternal": false + }, + { + "x": 300.51952, + "y": 415.33821, + "index": 4, + "body": { + "#": 6705 + }, + "isInternal": false + }, + { + "x": 300.51952, + "y": 410.39421, + "index": 5, + "body": { + "#": 6705 + }, + "isInternal": false + }, + { + "x": 303.42552, + "y": 406.39421, + "index": 6, + "body": { + "#": 6705 + }, + "isInternal": false + }, + { + "x": 308.12752, + "y": 404.86621, + "index": 7, + "body": { + "#": 6705 + }, + "isInternal": false + }, + { + "x": 312.82952, + "y": 406.39421, + "index": 8, + "body": { + "#": 6705 + }, + "isInternal": false + }, + { + "x": 315.73552, + "y": 410.39421, + "index": 9, + "body": { + "#": 6705 + }, + "isInternal": false + }, + { + "x": 308.12752, + "y": 412.86621 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.836, + "y": 0.10152 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6725 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6727 + }, + "max": { + "#": 6728 + } + }, + { + "x": 300.51952, + "y": 404.86621 + }, + { + "x": 316.58668, + "y": 421.5382 + }, + { + "x": 307.29153, + "y": 412.76469 + }, + [ + { + "#": 6731 + }, + { + "#": 6732 + }, + { + "#": 6733 + }, + { + "#": 6734 + }, + { + "#": 6735 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,6,8,8", + "startCol": 6, + "endCol": 6, + "startRow": 8, + "endRow": 8 + }, + { + "id": 210, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6738 + }, + "angle": 0, + "vertices": { + "#": 6739 + }, + "position": { + "#": 6750 + }, + "force": { + "#": 6751 + }, + "torque": 0, + "positionImpulse": { + "#": 6752 + }, + "constraintImpulse": { + "#": 6753 + }, + "totalContacts": 0, + "speed": 1.00207, + "angularSpeed": 0, + "velocity": { + "#": 6754 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6755 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6756 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6758 + }, + "positionPrev": { + "#": 6761 + }, + "anglePrev": 0, + "axes": { + "#": 6762 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6737 + }, + "sleepCounter": 0, + "region": { + "#": 6768 + } + }, + [ + { + "#": 6737 + } + ], + [ + { + "#": 6740 + }, + { + "#": 6741 + }, + { + "#": 6742 + }, + { + "#": 6743 + }, + { + "#": 6744 + }, + { + "#": 6745 + }, + { + "#": 6746 + }, + { + "#": 6747 + }, + { + "#": 6748 + }, + { + "#": 6749 + } + ], + { + "x": 301.80444, + "y": 399.86772, + "index": 0, + "body": { + "#": 6737 + }, + "isInternal": false + }, + { + "x": 298.89844, + "y": 403.86772, + "index": 1, + "body": { + "#": 6737 + }, + "isInternal": false + }, + { + "x": 294.19644, + "y": 405.39572, + "index": 2, + "body": { + "#": 6737 + }, + "isInternal": false + }, + { + "x": 289.49444, + "y": 403.86772, + "index": 3, + "body": { + "#": 6737 + }, + "isInternal": false + }, + { + "x": 286.58844, + "y": 399.86772, + "index": 4, + "body": { + "#": 6737 + }, + "isInternal": false + }, + { + "x": 286.58844, + "y": 394.92372, + "index": 5, + "body": { + "#": 6737 + }, + "isInternal": false + }, + { + "x": 289.49444, + "y": 390.92372, + "index": 6, + "body": { + "#": 6737 + }, + "isInternal": false + }, + { + "x": 294.19644, + "y": 389.39572, + "index": 7, + "body": { + "#": 6737 + }, + "isInternal": false + }, + { + "x": 298.89844, + "y": 390.92372, + "index": 8, + "body": { + "#": 6737 + }, + "isInternal": false + }, + { + "x": 301.80444, + "y": 394.92372, + "index": 9, + "body": { + "#": 6737 + }, + "isInternal": false + }, + { + "x": 294.19644, + "y": 397.39572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.49615, + "y": 1.06905 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6757 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6759 + }, + "max": { + "#": 6760 + } + }, + { + "x": 286.58844, + "y": 389.39572 + }, + { + "x": 301.80444, + "y": 405.39572 + }, + { + "x": 294.65293, + "y": 396.28159 + }, + [ + { + "#": 6763 + }, + { + "#": 6764 + }, + { + "#": 6765 + }, + { + "#": 6766 + }, + { + "#": 6767 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,8,8", + "startCol": 5, + "endCol": 6, + "startRow": 8, + "endRow": 8 + }, + { + "id": 211, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6770 + }, + "angle": 0, + "vertices": { + "#": 6771 + }, + "position": { + "#": 6782 + }, + "force": { + "#": 6783 + }, + "torque": 0, + "positionImpulse": { + "#": 6784 + }, + "constraintImpulse": { + "#": 6785 + }, + "totalContacts": 0, + "speed": 0.44589, + "angularSpeed": 0, + "velocity": { + "#": 6786 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6787 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6788 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6790 + }, + "positionPrev": { + "#": 6793 + }, + "anglePrev": 0, + "axes": { + "#": 6794 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6769 + }, + "sleepCounter": 0, + "region": { + "#": 6800 + } + }, + [ + { + "#": 6769 + } + ], + [ + { + "#": 6772 + }, + { + "#": 6773 + }, + { + "#": 6774 + }, + { + "#": 6775 + }, + { + "#": 6776 + }, + { + "#": 6777 + }, + { + "#": 6778 + }, + { + "#": 6779 + }, + { + "#": 6780 + }, + { + "#": 6781 + } + ], + { + "x": 319.5597, + "y": 410.98033, + "index": 0, + "body": { + "#": 6769 + }, + "isInternal": false + }, + { + "x": 316.6537, + "y": 414.98033, + "index": 1, + "body": { + "#": 6769 + }, + "isInternal": false + }, + { + "x": 311.9517, + "y": 416.50833, + "index": 2, + "body": { + "#": 6769 + }, + "isInternal": false + }, + { + "x": 307.2497, + "y": 414.98033, + "index": 3, + "body": { + "#": 6769 + }, + "isInternal": false + }, + { + "x": 304.3437, + "y": 410.98033, + "index": 4, + "body": { + "#": 6769 + }, + "isInternal": false + }, + { + "x": 304.3437, + "y": 406.03633, + "index": 5, + "body": { + "#": 6769 + }, + "isInternal": false + }, + { + "x": 307.2497, + "y": 402.03633, + "index": 6, + "body": { + "#": 6769 + }, + "isInternal": false + }, + { + "x": 311.9517, + "y": 400.50833, + "index": 7, + "body": { + "#": 6769 + }, + "isInternal": false + }, + { + "x": 316.6537, + "y": 402.03633, + "index": 8, + "body": { + "#": 6769 + }, + "isInternal": false + }, + { + "x": 319.5597, + "y": 406.03633, + "index": 9, + "body": { + "#": 6769 + }, + "isInternal": false + }, + { + "x": 311.9517, + "y": 408.50833 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00683, + "y": -0.00273 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6789 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6791 + }, + "max": { + "#": 6792 + } + }, + { + "x": 304.3437, + "y": 400.50833 + }, + { + "x": 319.5597, + "y": 416.50833 + }, + { + "x": 312.04692, + "y": 408.56936 + }, + [ + { + "#": 6795 + }, + { + "#": 6796 + }, + { + "#": 6797 + }, + { + "#": 6798 + }, + { + "#": 6799 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,6,8,8", + "startCol": 6, + "endCol": 6, + "startRow": 8, + "endRow": 8 + }, + { + "id": 212, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6802 + }, + "angle": 0, + "vertices": { + "#": 6803 + }, + "position": { + "#": 6814 + }, + "force": { + "#": 6815 + }, + "torque": 0, + "positionImpulse": { + "#": 6816 + }, + "constraintImpulse": { + "#": 6817 + }, + "totalContacts": 0, + "speed": 1.37619, + "angularSpeed": 0, + "velocity": { + "#": 6818 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6819 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6820 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6822 + }, + "positionPrev": { + "#": 6825 + }, + "anglePrev": 0, + "axes": { + "#": 6826 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6801 + }, + "sleepCounter": 0, + "region": { + "#": 6832 + } + }, + [ + { + "#": 6801 + } + ], + [ + { + "#": 6804 + }, + { + "#": 6805 + }, + { + "#": 6806 + }, + { + "#": 6807 + }, + { + "#": 6808 + }, + { + "#": 6809 + }, + { + "#": 6810 + }, + { + "#": 6811 + }, + { + "#": 6812 + }, + { + "#": 6813 + } + ], + { + "x": 339.5882, + "y": 421.35372, + "index": 0, + "body": { + "#": 6801 + }, + "isInternal": false + }, + { + "x": 336.6822, + "y": 425.35372, + "index": 1, + "body": { + "#": 6801 + }, + "isInternal": false + }, + { + "x": 331.9802, + "y": 426.88172, + "index": 2, + "body": { + "#": 6801 + }, + "isInternal": false + }, + { + "x": 327.2782, + "y": 425.35372, + "index": 3, + "body": { + "#": 6801 + }, + "isInternal": false + }, + { + "x": 324.3722, + "y": 421.35372, + "index": 4, + "body": { + "#": 6801 + }, + "isInternal": false + }, + { + "x": 324.3722, + "y": 416.40972, + "index": 5, + "body": { + "#": 6801 + }, + "isInternal": false + }, + { + "x": 327.2782, + "y": 412.40972, + "index": 6, + "body": { + "#": 6801 + }, + "isInternal": false + }, + { + "x": 331.9802, + "y": 410.88172, + "index": 7, + "body": { + "#": 6801 + }, + "isInternal": false + }, + { + "x": 336.6822, + "y": 412.40972, + "index": 8, + "body": { + "#": 6801 + }, + "isInternal": false + }, + { + "x": 339.5882, + "y": 416.40972, + "index": 9, + "body": { + "#": 6801 + }, + "isInternal": false + }, + { + "x": 331.9802, + "y": 418.88172 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.71526, + "y": -0.27126 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6821 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6823 + }, + "max": { + "#": 6824 + } + }, + { + "x": 323.62551, + "y": 410.88172 + }, + { + "x": 339.5882, + "y": 427.07275 + }, + { + "x": 332.69545, + "y": 419.15298 + }, + [ + { + "#": 6827 + }, + { + "#": 6828 + }, + { + "#": 6829 + }, + { + "#": 6830 + }, + { + "#": 6831 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,8,8", + "startCol": 6, + "endCol": 7, + "startRow": 8, + "endRow": 8 + }, + { + "id": 213, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6834 + }, + "angle": 0, + "vertices": { + "#": 6835 + }, + "position": { + "#": 6846 + }, + "force": { + "#": 6847 + }, + "torque": 0, + "positionImpulse": { + "#": 6848 + }, + "constraintImpulse": { + "#": 6849 + }, + "totalContacts": 0, + "speed": 1.90184, + "angularSpeed": 0, + "velocity": { + "#": 6850 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6851 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6852 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6854 + }, + "positionPrev": { + "#": 6857 + }, + "anglePrev": 0, + "axes": { + "#": 6858 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6833 + }, + "sleepCounter": 0, + "region": { + "#": 6864 + } + }, + [ + { + "#": 6833 + } + ], + [ + { + "#": 6836 + }, + { + "#": 6837 + }, + { + "#": 6838 + }, + { + "#": 6839 + }, + { + "#": 6840 + }, + { + "#": 6841 + }, + { + "#": 6842 + }, + { + "#": 6843 + }, + { + "#": 6844 + }, + { + "#": 6845 + } + ], + { + "x": 361.42407, + "y": 429.89907, + "index": 0, + "body": { + "#": 6833 + }, + "isInternal": false + }, + { + "x": 358.51807, + "y": 433.89907, + "index": 1, + "body": { + "#": 6833 + }, + "isInternal": false + }, + { + "x": 353.81607, + "y": 435.42707, + "index": 2, + "body": { + "#": 6833 + }, + "isInternal": false + }, + { + "x": 349.11407, + "y": 433.89907, + "index": 3, + "body": { + "#": 6833 + }, + "isInternal": false + }, + { + "x": 346.20807, + "y": 429.89907, + "index": 4, + "body": { + "#": 6833 + }, + "isInternal": false + }, + { + "x": 346.20807, + "y": 424.95507, + "index": 5, + "body": { + "#": 6833 + }, + "isInternal": false + }, + { + "x": 349.11407, + "y": 420.95507, + "index": 6, + "body": { + "#": 6833 + }, + "isInternal": false + }, + { + "x": 353.81607, + "y": 419.42707, + "index": 7, + "body": { + "#": 6833 + }, + "isInternal": false + }, + { + "x": 358.51807, + "y": 420.95507, + "index": 8, + "body": { + "#": 6833 + }, + "isInternal": false + }, + { + "x": 361.42407, + "y": 424.95507, + "index": 9, + "body": { + "#": 6833 + }, + "isInternal": false + }, + { + "x": 353.81607, + "y": 427.42707 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -1.33715, + "y": 0.34524 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6853 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6855 + }, + "max": { + "#": 6856 + } + }, + { + "x": 346.20807, + "y": 419.42707 + }, + { + "x": 361.42407, + "y": 435.42707 + }, + { + "x": 355.2419, + "y": 427.17254 + }, + [ + { + "#": 6859 + }, + { + "#": 6860 + }, + { + "#": 6861 + }, + { + "#": 6862 + }, + { + "#": 6863 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,8,9", + "startCol": 7, + "endCol": 7, + "startRow": 8, + "endRow": 9 + }, + { + "id": 214, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6866 + }, + "angle": 0, + "vertices": { + "#": 6867 + }, + "position": { + "#": 6878 + }, + "force": { + "#": 6879 + }, + "torque": 0, + "positionImpulse": { + "#": 6880 + }, + "constraintImpulse": { + "#": 6881 + }, + "totalContacts": 0, + "speed": 2.59182, + "angularSpeed": 0, + "velocity": { + "#": 6882 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6883 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6884 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6886 + }, + "positionPrev": { + "#": 6889 + }, + "anglePrev": 0, + "axes": { + "#": 6890 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6865 + }, + "sleepCounter": 0, + "region": { + "#": 6896 + } + }, + [ + { + "#": 6865 + } + ], + [ + { + "#": 6868 + }, + { + "#": 6869 + }, + { + "#": 6870 + }, + { + "#": 6871 + }, + { + "#": 6872 + }, + { + "#": 6873 + }, + { + "#": 6874 + }, + { + "#": 6875 + }, + { + "#": 6876 + }, + { + "#": 6877 + } + ], + { + "x": 385.2233, + "y": 435.05088, + "index": 0, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 382.3173, + "y": 439.05088, + "index": 1, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 377.6153, + "y": 440.57888, + "index": 2, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 372.9133, + "y": 439.05088, + "index": 3, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 370.0073, + "y": 435.05088, + "index": 4, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 370.0073, + "y": 430.10688, + "index": 5, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 372.9133, + "y": 426.10688, + "index": 6, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 377.6153, + "y": 424.57888, + "index": 7, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 382.3173, + "y": 426.10688, + "index": 8, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 385.2233, + "y": 430.10688, + "index": 9, + "body": { + "#": 6865 + }, + "isInternal": false + }, + { + "x": 377.6153, + "y": 432.57888 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -1.72231, + "y": 1.37853 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6885 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6887 + }, + "max": { + "#": 6888 + } + }, + { + "x": 370.0073, + "y": 424.57888 + }, + { + "x": 385.2233, + "y": 440.57888 + }, + { + "x": 379.31526, + "y": 431.16405 + }, + [ + { + "#": 6891 + }, + { + "#": 6892 + }, + { + "#": 6893 + }, + { + "#": 6894 + }, + { + "#": 6895 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,8,9", + "startCol": 7, + "endCol": 8, + "startRow": 8, + "endRow": 9 + }, + { + "id": 215, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6898 + }, + "angle": 0, + "vertices": { + "#": 6899 + }, + "position": { + "#": 6910 + }, + "force": { + "#": 6911 + }, + "torque": 0, + "positionImpulse": { + "#": 6912 + }, + "constraintImpulse": { + "#": 6913 + }, + "totalContacts": 0, + "speed": 2.88143, + "angularSpeed": 0, + "velocity": { + "#": 6914 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6915 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6916 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6918 + }, + "positionPrev": { + "#": 6921 + }, + "anglePrev": 0, + "axes": { + "#": 6922 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6897 + }, + "sleepCounter": 0, + "region": { + "#": 6928 + } + }, + [ + { + "#": 6897 + } + ], + [ + { + "#": 6900 + }, + { + "#": 6901 + }, + { + "#": 6902 + }, + { + "#": 6903 + }, + { + "#": 6904 + }, + { + "#": 6905 + }, + { + "#": 6906 + }, + { + "#": 6907 + }, + { + "#": 6908 + }, + { + "#": 6909 + } + ], + { + "x": 408.77549, + "y": 436.94139, + "index": 0, + "body": { + "#": 6897 + }, + "isInternal": false + }, + { + "x": 405.86949, + "y": 440.94139, + "index": 1, + "body": { + "#": 6897 + }, + "isInternal": false + }, + { + "x": 401.16749, + "y": 442.46939, + "index": 2, + "body": { + "#": 6897 + }, + "isInternal": false + }, + { + "x": 396.46549, + "y": 440.94139, + "index": 3, + "body": { + "#": 6897 + }, + "isInternal": false + }, + { + "x": 393.55949, + "y": 436.94139, + "index": 4, + "body": { + "#": 6897 + }, + "isInternal": false + }, + { + "x": 393.55949, + "y": 431.99739, + "index": 5, + "body": { + "#": 6897 + }, + "isInternal": false + }, + { + "x": 396.46549, + "y": 427.99739, + "index": 6, + "body": { + "#": 6897 + }, + "isInternal": false + }, + { + "x": 401.16749, + "y": 426.46939, + "index": 7, + "body": { + "#": 6897 + }, + "isInternal": false + }, + { + "x": 405.86949, + "y": 427.99739, + "index": 8, + "body": { + "#": 6897 + }, + "isInternal": false + }, + { + "x": 408.77549, + "y": 431.99739, + "index": 9, + "body": { + "#": 6897 + }, + "isInternal": false + }, + { + "x": 401.16749, + "y": 434.46939 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -1.65322, + "y": 2.05483 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6917 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6919 + }, + "max": { + "#": 6920 + } + }, + { + "x": 393.55949, + "y": 426.46939 + }, + { + "x": 408.77549, + "y": 442.46939 + }, + { + "x": 402.79117, + "y": 432.35332 + }, + [ + { + "#": 6923 + }, + { + "#": 6924 + }, + { + "#": 6925 + }, + { + "#": 6926 + }, + { + "#": 6927 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,8,9", + "startCol": 8, + "endCol": 8, + "startRow": 8, + "endRow": 9 + }, + { + "id": 216, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6930 + }, + "angle": 0, + "vertices": { + "#": 6931 + }, + "position": { + "#": 6942 + }, + "force": { + "#": 6943 + }, + "torque": 0, + "positionImpulse": { + "#": 6944 + }, + "constraintImpulse": { + "#": 6945 + }, + "totalContacts": 0, + "speed": 2.8992, + "angularSpeed": 0, + "velocity": { + "#": 6946 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6947 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6948 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6950 + }, + "positionPrev": { + "#": 6953 + }, + "anglePrev": 0, + "axes": { + "#": 6954 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6929 + }, + "sleepCounter": 0, + "region": { + "#": 6960 + } + }, + [ + { + "#": 6929 + } + ], + [ + { + "#": 6932 + }, + { + "#": 6933 + }, + { + "#": 6934 + }, + { + "#": 6935 + }, + { + "#": 6936 + }, + { + "#": 6937 + }, + { + "#": 6938 + }, + { + "#": 6939 + }, + { + "#": 6940 + }, + { + "#": 6941 + } + ], + { + "x": 431.62131, + "y": 437.18498, + "index": 0, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 428.71531, + "y": 441.18498, + "index": 1, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 424.01331, + "y": 442.71298, + "index": 2, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 419.31131, + "y": 441.18498, + "index": 3, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 416.40531, + "y": 437.18498, + "index": 4, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 416.40531, + "y": 432.24098, + "index": 5, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 419.31131, + "y": 428.24098, + "index": 6, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 424.01331, + "y": 426.71298, + "index": 7, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 428.71531, + "y": 428.24098, + "index": 8, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 431.62131, + "y": 432.24098, + "index": 9, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 424.01331, + "y": 434.71298 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -1.63111, + "y": 2.17569 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6949 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6951 + }, + "max": { + "#": 6952 + } + }, + { + "x": 416.40531, + "y": 426.71298 + }, + { + "x": 431.62131, + "y": 442.71298 + }, + { + "x": 425.60404, + "y": 432.43609 + }, + [ + { + "#": 6955 + }, + { + "#": 6956 + }, + { + "#": 6957 + }, + { + "#": 6958 + }, + { + "#": 6959 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,8,9", + "startCol": 8, + "endCol": 8, + "startRow": 8, + "endRow": 9 + }, + { + "id": 217, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6962 + }, + "angle": 0, + "vertices": { + "#": 6963 + }, + "position": { + "#": 6974 + }, + "force": { + "#": 6975 + }, + "torque": 0, + "positionImpulse": { + "#": 6976 + }, + "constraintImpulse": { + "#": 6977 + }, + "totalContacts": 0, + "speed": 2.13308, + "angularSpeed": 0, + "velocity": { + "#": 6978 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6979 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6980 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 6982 + }, + "positionPrev": { + "#": 6985 + }, + "anglePrev": 0, + "axes": { + "#": 6986 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6961 + }, + "sleepCounter": 0, + "region": { + "#": 6992 + } + }, + [ + { + "#": 6961 + } + ], + [ + { + "#": 6964 + }, + { + "#": 6965 + }, + { + "#": 6966 + }, + { + "#": 6967 + }, + { + "#": 6968 + }, + { + "#": 6969 + }, + { + "#": 6970 + }, + { + "#": 6971 + }, + { + "#": 6972 + }, + { + "#": 6973 + } + ], + { + "x": 452.9706, + "y": 432.69475, + "index": 0, + "body": { + "#": 6961 + }, + "isInternal": false + }, + { + "x": 450.0646, + "y": 436.69475, + "index": 1, + "body": { + "#": 6961 + }, + "isInternal": false + }, + { + "x": 445.3626, + "y": 438.22275, + "index": 2, + "body": { + "#": 6961 + }, + "isInternal": false + }, + { + "x": 440.6606, + "y": 436.69475, + "index": 3, + "body": { + "#": 6961 + }, + "isInternal": false + }, + { + "x": 437.7546, + "y": 432.69475, + "index": 4, + "body": { + "#": 6961 + }, + "isInternal": false + }, + { + "x": 437.7546, + "y": 427.75075, + "index": 5, + "body": { + "#": 6961 + }, + "isInternal": false + }, + { + "x": 440.6606, + "y": 423.75075, + "index": 6, + "body": { + "#": 6961 + }, + "isInternal": false + }, + { + "x": 445.3626, + "y": 422.22275, + "index": 7, + "body": { + "#": 6961 + }, + "isInternal": false + }, + { + "x": 450.0646, + "y": 423.75075, + "index": 8, + "body": { + "#": 6961 + }, + "isInternal": false + }, + { + "x": 452.9706, + "y": 427.75075, + "index": 9, + "body": { + "#": 6961 + }, + "isInternal": false + }, + { + "x": 445.3626, + "y": 430.22275 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -1.93018, + "y": 1.32577 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 6981 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6983 + }, + "max": { + "#": 6984 + } + }, + { + "x": 437.7546, + "y": 422.22275 + }, + { + "x": 452.9706, + "y": 438.22275 + }, + { + "x": 447.359, + "y": 429.05518 + }, + [ + { + "#": 6987 + }, + { + "#": 6988 + }, + { + "#": 6989 + }, + { + "#": 6990 + }, + { + "#": 6991 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,8,9", + "startCol": 9, + "endCol": 9, + "startRow": 8, + "endRow": 9 + }, + { + "id": 218, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 6994 + }, + "angle": 0, + "vertices": { + "#": 6995 + }, + "position": { + "#": 7006 + }, + "force": { + "#": 7007 + }, + "torque": 0, + "positionImpulse": { + "#": 7008 + }, + "constraintImpulse": { + "#": 7009 + }, + "totalContacts": 0, + "speed": 2.05599, + "angularSpeed": 0, + "velocity": { + "#": 7010 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7011 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7012 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7014 + }, + "positionPrev": { + "#": 7017 + }, + "anglePrev": 0, + "axes": { + "#": 7018 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 6993 + }, + "sleepCounter": 0, + "region": { + "#": 7024 + } + }, + [ + { + "#": 6993 + } + ], + [ + { + "#": 6996 + }, + { + "#": 6997 + }, + { + "#": 6998 + }, + { + "#": 6999 + }, + { + "#": 7000 + }, + { + "#": 7001 + }, + { + "#": 7002 + }, + { + "#": 7003 + }, + { + "#": 7004 + }, + { + "#": 7005 + } + ], + { + "x": 470.29828, + "y": 420.01989, + "index": 0, + "body": { + "#": 6993 + }, + "isInternal": false + }, + { + "x": 467.39228, + "y": 424.01989, + "index": 1, + "body": { + "#": 6993 + }, + "isInternal": false + }, + { + "x": 462.69028, + "y": 425.54789, + "index": 2, + "body": { + "#": 6993 + }, + "isInternal": false + }, + { + "x": 457.98828, + "y": 424.01989, + "index": 3, + "body": { + "#": 6993 + }, + "isInternal": false + }, + { + "x": 455.08228, + "y": 420.01989, + "index": 4, + "body": { + "#": 6993 + }, + "isInternal": false + }, + { + "x": 455.08228, + "y": 415.07589, + "index": 5, + "body": { + "#": 6993 + }, + "isInternal": false + }, + { + "x": 457.98828, + "y": 411.07589, + "index": 6, + "body": { + "#": 6993 + }, + "isInternal": false + }, + { + "x": 462.69028, + "y": 409.54789, + "index": 7, + "body": { + "#": 6993 + }, + "isInternal": false + }, + { + "x": 467.39228, + "y": 411.07589, + "index": 8, + "body": { + "#": 6993 + }, + "isInternal": false + }, + { + "x": 470.29828, + "y": 415.07589, + "index": 9, + "body": { + "#": 6993 + }, + "isInternal": false + }, + { + "x": 462.69028, + "y": 417.54789 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -2.3141, + "y": 1.37685 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7013 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7015 + }, + "max": { + "#": 7016 + } + }, + { + "x": 455.08228, + "y": 409.54789 + }, + { + "x": 470.29828, + "y": 425.54789 + }, + { + "x": 465.26867, + "y": 416.73667 + }, + [ + { + "#": 7019 + }, + { + "#": 7020 + }, + { + "#": 7021 + }, + { + "#": 7022 + }, + { + "#": 7023 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,8,8", + "startCol": 9, + "endCol": 9, + "startRow": 8, + "endRow": 8 + }, + { + "id": 219, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7026 + }, + "angle": 0, + "vertices": { + "#": 7027 + }, + "position": { + "#": 7038 + }, + "force": { + "#": 7039 + }, + "torque": 0, + "positionImpulse": { + "#": 7040 + }, + "constraintImpulse": { + "#": 7041 + }, + "totalContacts": 0, + "speed": 1.69607, + "angularSpeed": 0, + "velocity": { + "#": 7042 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7043 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7044 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7046 + }, + "positionPrev": { + "#": 7049 + }, + "anglePrev": 0, + "axes": { + "#": 7050 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7025 + }, + "sleepCounter": 0, + "region": { + "#": 7056 + } + }, + [ + { + "#": 7025 + } + ], + [ + { + "#": 7028 + }, + { + "#": 7029 + }, + { + "#": 7030 + }, + { + "#": 7031 + }, + { + "#": 7032 + }, + { + "#": 7033 + }, + { + "#": 7034 + }, + { + "#": 7035 + }, + { + "#": 7036 + }, + { + "#": 7037 + } + ], + { + "x": 492.21577, + "y": 417.74625, + "index": 0, + "body": { + "#": 7025 + }, + "isInternal": false + }, + { + "x": 489.30977, + "y": 421.74625, + "index": 1, + "body": { + "#": 7025 + }, + "isInternal": false + }, + { + "x": 484.60777, + "y": 423.27425, + "index": 2, + "body": { + "#": 7025 + }, + "isInternal": false + }, + { + "x": 479.90577, + "y": 421.74625, + "index": 3, + "body": { + "#": 7025 + }, + "isInternal": false + }, + { + "x": 476.99977, + "y": 417.74625, + "index": 4, + "body": { + "#": 7025 + }, + "isInternal": false + }, + { + "x": 476.99977, + "y": 412.80225, + "index": 5, + "body": { + "#": 7025 + }, + "isInternal": false + }, + { + "x": 479.90577, + "y": 408.80225, + "index": 6, + "body": { + "#": 7025 + }, + "isInternal": false + }, + { + "x": 484.60777, + "y": 407.27425, + "index": 7, + "body": { + "#": 7025 + }, + "isInternal": false + }, + { + "x": 489.30977, + "y": 408.80225, + "index": 8, + "body": { + "#": 7025 + }, + "isInternal": false + }, + { + "x": 492.21577, + "y": 412.80225, + "index": 9, + "body": { + "#": 7025 + }, + "isInternal": false + }, + { + "x": 484.60777, + "y": 415.27425 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -2.22071, + "y": 1.08911 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7045 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7047 + }, + "max": { + "#": 7048 + } + }, + { + "x": 476.99977, + "y": 407.27425 + }, + { + "x": 492.21577, + "y": 423.27425 + }, + { + "x": 487.06604, + "y": 414.71425 + }, + [ + { + "#": 7051 + }, + { + "#": 7052 + }, + { + "#": 7053 + }, + { + "#": 7054 + }, + { + "#": 7055 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,8,8", + "startCol": 9, + "endCol": 10, + "startRow": 8, + "endRow": 8 + }, + { + "id": 220, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7058 + }, + "angle": 0, + "vertices": { + "#": 7059 + }, + "position": { + "#": 7070 + }, + "force": { + "#": 7071 + }, + "torque": 0, + "positionImpulse": { + "#": 7072 + }, + "constraintImpulse": { + "#": 7073 + }, + "totalContacts": 0, + "speed": 1.38394, + "angularSpeed": 0, + "velocity": { + "#": 7074 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7075 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7076 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7078 + }, + "positionPrev": { + "#": 7081 + }, + "anglePrev": 0, + "axes": { + "#": 7082 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7057 + }, + "sleepCounter": 0, + "region": { + "#": 7088 + } + }, + [ + { + "#": 7057 + } + ], + [ + { + "#": 7060 + }, + { + "#": 7061 + }, + { + "#": 7062 + }, + { + "#": 7063 + }, + { + "#": 7064 + }, + { + "#": 7065 + }, + { + "#": 7066 + }, + { + "#": 7067 + }, + { + "#": 7068 + }, + { + "#": 7069 + } + ], + { + "x": 514.31695, + "y": 417.70375, + "index": 0, + "body": { + "#": 7057 + }, + "isInternal": false + }, + { + "x": 511.41095, + "y": 421.70375, + "index": 1, + "body": { + "#": 7057 + }, + "isInternal": false + }, + { + "x": 506.70895, + "y": 423.23175, + "index": 2, + "body": { + "#": 7057 + }, + "isInternal": false + }, + { + "x": 502.00695, + "y": 421.70375, + "index": 3, + "body": { + "#": 7057 + }, + "isInternal": false + }, + { + "x": 499.10095, + "y": 417.70375, + "index": 4, + "body": { + "#": 7057 + }, + "isInternal": false + }, + { + "x": 499.10095, + "y": 412.75975, + "index": 5, + "body": { + "#": 7057 + }, + "isInternal": false + }, + { + "x": 502.00695, + "y": 408.75975, + "index": 6, + "body": { + "#": 7057 + }, + "isInternal": false + }, + { + "x": 506.70895, + "y": 407.23175, + "index": 7, + "body": { + "#": 7057 + }, + "isInternal": false + }, + { + "x": 511.41095, + "y": 408.75975, + "index": 8, + "body": { + "#": 7057 + }, + "isInternal": false + }, + { + "x": 514.31695, + "y": 412.75975, + "index": 9, + "body": { + "#": 7057 + }, + "isInternal": false + }, + { + "x": 506.70895, + "y": 415.23175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -1.9382, + "y": 1.14921 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7077 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7079 + }, + "max": { + "#": 7080 + } + }, + { + "x": 499.10095, + "y": 407.23175 + }, + { + "x": 514.31695, + "y": 423.23175 + }, + { + "x": 508.8861, + "y": 414.66157 + }, + [ + { + "#": 7083 + }, + { + "#": 7084 + }, + { + "#": 7085 + }, + { + "#": 7086 + }, + { + "#": 7087 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,8,8", + "startCol": 10, + "endCol": 10, + "startRow": 8, + "endRow": 8 + }, + { + "id": 221, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7090 + }, + "angle": 0, + "vertices": { + "#": 7091 + }, + "position": { + "#": 7102 + }, + "force": { + "#": 7103 + }, + "torque": 0, + "positionImpulse": { + "#": 7104 + }, + "constraintImpulse": { + "#": 7105 + }, + "totalContacts": 0, + "speed": 1.32191, + "angularSpeed": 0, + "velocity": { + "#": 7106 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7107 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7108 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7110 + }, + "positionPrev": { + "#": 7113 + }, + "anglePrev": 0, + "axes": { + "#": 7114 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7089 + }, + "sleepCounter": 0, + "region": { + "#": 7120 + } + }, + [ + { + "#": 7089 + } + ], + [ + { + "#": 7092 + }, + { + "#": 7093 + }, + { + "#": 7094 + }, + { + "#": 7095 + }, + { + "#": 7096 + }, + { + "#": 7097 + }, + { + "#": 7098 + }, + { + "#": 7099 + }, + { + "#": 7100 + }, + { + "#": 7101 + } + ], + { + "x": 536.24688, + "y": 419.89326, + "index": 0, + "body": { + "#": 7089 + }, + "isInternal": false + }, + { + "x": 533.34088, + "y": 423.89326, + "index": 1, + "body": { + "#": 7089 + }, + "isInternal": false + }, + { + "x": 528.63888, + "y": 425.42126, + "index": 2, + "body": { + "#": 7089 + }, + "isInternal": false + }, + { + "x": 523.93688, + "y": 423.89326, + "index": 3, + "body": { + "#": 7089 + }, + "isInternal": false + }, + { + "x": 521.03088, + "y": 419.89326, + "index": 4, + "body": { + "#": 7089 + }, + "isInternal": false + }, + { + "x": 521.03088, + "y": 414.94926, + "index": 5, + "body": { + "#": 7089 + }, + "isInternal": false + }, + { + "x": 523.93688, + "y": 410.94926, + "index": 6, + "body": { + "#": 7089 + }, + "isInternal": false + }, + { + "x": 528.63888, + "y": 409.42126, + "index": 7, + "body": { + "#": 7089 + }, + "isInternal": false + }, + { + "x": 533.34088, + "y": 410.94926, + "index": 8, + "body": { + "#": 7089 + }, + "isInternal": false + }, + { + "x": 536.24688, + "y": 414.94926, + "index": 9, + "body": { + "#": 7089 + }, + "isInternal": false + }, + { + "x": 528.63888, + "y": 417.42126 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -1.53095, + "y": 1.7444 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7109 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7111 + }, + "max": { + "#": 7112 + } + }, + { + "x": 521.03088, + "y": 409.42126 + }, + { + "x": 536.24688, + "y": 425.42126 + }, + { + "x": 530.44922, + "y": 416.40995 + }, + [ + { + "#": 7115 + }, + { + "#": 7116 + }, + { + "#": 7117 + }, + { + "#": 7118 + }, + { + "#": 7119 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,8,8", + "startCol": 10, + "endCol": 11, + "startRow": 8, + "endRow": 8 + }, + { + "id": 222, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7122 + }, + "angle": 0, + "vertices": { + "#": 7123 + }, + "position": { + "#": 7134 + }, + "force": { + "#": 7135 + }, + "torque": 0, + "positionImpulse": { + "#": 7136 + }, + "constraintImpulse": { + "#": 7137 + }, + "totalContacts": 0, + "speed": 2.08082, + "angularSpeed": 0, + "velocity": { + "#": 7138 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7139 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7140 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7142 + }, + "positionPrev": { + "#": 7145 + }, + "anglePrev": 0, + "axes": { + "#": 7146 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7121 + }, + "sleepCounter": 0, + "region": { + "#": 7152 + } + }, + [ + { + "#": 7121 + } + ], + [ + { + "#": 7124 + }, + { + "#": 7125 + }, + { + "#": 7126 + }, + { + "#": 7127 + }, + { + "#": 7128 + }, + { + "#": 7129 + }, + { + "#": 7130 + }, + { + "#": 7131 + }, + { + "#": 7132 + }, + { + "#": 7133 + } + ], + { + "x": 554.35265, + "y": 433.39953, + "index": 0, + "body": { + "#": 7121 + }, + "isInternal": false + }, + { + "x": 551.44665, + "y": 437.39953, + "index": 1, + "body": { + "#": 7121 + }, + "isInternal": false + }, + { + "x": 546.74465, + "y": 438.92753, + "index": 2, + "body": { + "#": 7121 + }, + "isInternal": false + }, + { + "x": 542.04265, + "y": 437.39953, + "index": 3, + "body": { + "#": 7121 + }, + "isInternal": false + }, + { + "x": 539.13665, + "y": 433.39953, + "index": 4, + "body": { + "#": 7121 + }, + "isInternal": false + }, + { + "x": 539.13665, + "y": 428.45553, + "index": 5, + "body": { + "#": 7121 + }, + "isInternal": false + }, + { + "x": 542.04265, + "y": 424.45553, + "index": 6, + "body": { + "#": 7121 + }, + "isInternal": false + }, + { + "x": 546.74465, + "y": 422.92753, + "index": 7, + "body": { + "#": 7121 + }, + "isInternal": false + }, + { + "x": 551.44665, + "y": 424.45553, + "index": 8, + "body": { + "#": 7121 + }, + "isInternal": false + }, + { + "x": 554.35265, + "y": 428.45553, + "index": 9, + "body": { + "#": 7121 + }, + "isInternal": false + }, + { + "x": 546.74465, + "y": 430.92753 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -1.23634, + "y": 1.6034 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7141 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7143 + }, + "max": { + "#": 7144 + } + }, + { + "x": 539.13665, + "y": 422.92753 + }, + { + "x": 554.35265, + "y": 438.92753 + }, + { + "x": 547.98252, + "y": 429.45971 + }, + [ + { + "#": 7147 + }, + { + "#": 7148 + }, + { + "#": 7149 + }, + { + "#": 7150 + }, + { + "#": 7151 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,11,8,9", + "startCol": 11, + "endCol": 11, + "startRow": 8, + "endRow": 9 + }, + { + "id": 223, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7154 + }, + "angle": 0, + "vertices": { + "#": 7155 + }, + "position": { + "#": 7166 + }, + "force": { + "#": 7167 + }, + "torque": 0, + "positionImpulse": { + "#": 7168 + }, + "constraintImpulse": { + "#": 7169 + }, + "totalContacts": 0, + "speed": 2.84295, + "angularSpeed": 0, + "velocity": { + "#": 7170 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7171 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7172 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7174 + }, + "positionPrev": { + "#": 7177 + }, + "anglePrev": 0, + "axes": { + "#": 7178 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7153 + }, + "sleepCounter": 0, + "region": { + "#": 7184 + } + }, + [ + { + "#": 7153 + } + ], + [ + { + "#": 7156 + }, + { + "#": 7157 + }, + { + "#": 7158 + }, + { + "#": 7159 + }, + { + "#": 7160 + }, + { + "#": 7161 + }, + { + "#": 7162 + }, + { + "#": 7163 + }, + { + "#": 7164 + }, + { + "#": 7165 + } + ], + { + "x": 575.17256, + "y": 437.53911, + "index": 0, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 572.26656, + "y": 441.53911, + "index": 1, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 567.56456, + "y": 443.06711, + "index": 2, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 562.86256, + "y": 441.53911, + "index": 3, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 559.95656, + "y": 437.53911, + "index": 4, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 559.95656, + "y": 432.59511, + "index": 5, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 562.86256, + "y": 428.59511, + "index": 6, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 567.56456, + "y": 427.06711, + "index": 7, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 572.26656, + "y": 428.59511, + "index": 8, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 575.17256, + "y": 432.59511, + "index": 9, + "body": { + "#": 7153 + }, + "isInternal": false + }, + { + "x": 567.56456, + "y": 435.06711 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -1.08932, + "y": 2.58029 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7173 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7175 + }, + "max": { + "#": 7176 + } + }, + { + "x": 559.95656, + "y": 427.06711 + }, + { + "x": 575.17256, + "y": 443.06711 + }, + { + "x": 568.65529, + "y": 432.45384 + }, + [ + { + "#": 7179 + }, + { + "#": 7180 + }, + { + "#": 7181 + }, + { + "#": 7182 + }, + { + "#": 7183 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,11,8,9", + "startCol": 11, + "endCol": 11, + "startRow": 8, + "endRow": 9 + }, + { + "id": 224, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7186 + }, + "angle": 0, + "vertices": { + "#": 7187 + }, + "position": { + "#": 7198 + }, + "force": { + "#": 7199 + }, + "torque": 0, + "positionImpulse": { + "#": 7200 + }, + "constraintImpulse": { + "#": 7201 + }, + "totalContacts": 0, + "speed": 2.91039, + "angularSpeed": 0, + "velocity": { + "#": 7202 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7203 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7204 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7206 + }, + "positionPrev": { + "#": 7209 + }, + "anglePrev": 0, + "axes": { + "#": 7210 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7185 + }, + "sleepCounter": 0, + "region": { + "#": 7216 + } + }, + [ + { + "#": 7185 + } + ], + [ + { + "#": 7188 + }, + { + "#": 7189 + }, + { + "#": 7190 + }, + { + "#": 7191 + }, + { + "#": 7192 + }, + { + "#": 7193 + }, + { + "#": 7194 + }, + { + "#": 7195 + }, + { + "#": 7196 + }, + { + "#": 7197 + } + ], + { + "x": 595.77294, + "y": 437.87932, + "index": 0, + "body": { + "#": 7185 + }, + "isInternal": false + }, + { + "x": 592.86694, + "y": 441.87932, + "index": 1, + "body": { + "#": 7185 + }, + "isInternal": false + }, + { + "x": 588.16494, + "y": 443.40732, + "index": 2, + "body": { + "#": 7185 + }, + "isInternal": false + }, + { + "x": 583.46294, + "y": 441.87932, + "index": 3, + "body": { + "#": 7185 + }, + "isInternal": false + }, + { + "x": 580.55694, + "y": 437.87932, + "index": 4, + "body": { + "#": 7185 + }, + "isInternal": false + }, + { + "x": 580.55694, + "y": 432.93532, + "index": 5, + "body": { + "#": 7185 + }, + "isInternal": false + }, + { + "x": 583.46294, + "y": 428.93532, + "index": 6, + "body": { + "#": 7185 + }, + "isInternal": false + }, + { + "x": 588.16494, + "y": 427.40732, + "index": 7, + "body": { + "#": 7185 + }, + "isInternal": false + }, + { + "x": 592.86694, + "y": 428.93532, + "index": 8, + "body": { + "#": 7185 + }, + "isInternal": false + }, + { + "x": 595.77294, + "y": 432.93532, + "index": 9, + "body": { + "#": 7185 + }, + "isInternal": false + }, + { + "x": 588.16494, + "y": 435.40732 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.96695, + "y": 2.71664 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7205 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7207 + }, + "max": { + "#": 7208 + } + }, + { + "x": 580.55694, + "y": 427.40732 + }, + { + "x": 595.77294, + "y": 443.40732 + }, + { + "x": 589.13349, + "y": 432.66259 + }, + [ + { + "#": 7211 + }, + { + "#": 7212 + }, + { + "#": 7213 + }, + { + "#": 7214 + }, + { + "#": 7215 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,8,9", + "startCol": 12, + "endCol": 12, + "startRow": 8, + "endRow": 9 + }, + { + "id": 225, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7218 + }, + "angle": 0, + "vertices": { + "#": 7219 + }, + "position": { + "#": 7230 + }, + "force": { + "#": 7231 + }, + "torque": 0, + "positionImpulse": { + "#": 7232 + }, + "constraintImpulse": { + "#": 7233 + }, + "totalContacts": 0, + "speed": 1.82915, + "angularSpeed": 0, + "velocity": { + "#": 7234 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7235 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7236 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7238 + }, + "positionPrev": { + "#": 7241 + }, + "anglePrev": 0, + "axes": { + "#": 7242 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7217 + }, + "sleepCounter": 0, + "region": { + "#": 7248 + } + }, + [ + { + "#": 7217 + } + ], + [ + { + "#": 7220 + }, + { + "#": 7221 + }, + { + "#": 7222 + }, + { + "#": 7223 + }, + { + "#": 7224 + }, + { + "#": 7225 + }, + { + "#": 7226 + }, + { + "#": 7227 + }, + { + "#": 7228 + }, + { + "#": 7229 + } + ], + { + "x": 214.85208, + "y": 449.15546, + "index": 0, + "body": { + "#": 7217 + }, + "isInternal": false + }, + { + "x": 211.94608, + "y": 453.15546, + "index": 1, + "body": { + "#": 7217 + }, + "isInternal": false + }, + { + "x": 207.24408, + "y": 454.68346, + "index": 2, + "body": { + "#": 7217 + }, + "isInternal": false + }, + { + "x": 202.54208, + "y": 453.15546, + "index": 3, + "body": { + "#": 7217 + }, + "isInternal": false + }, + { + "x": 199.63608, + "y": 449.15546, + "index": 4, + "body": { + "#": 7217 + }, + "isInternal": false + }, + { + "x": 199.63608, + "y": 444.21146, + "index": 5, + "body": { + "#": 7217 + }, + "isInternal": false + }, + { + "x": 202.54208, + "y": 440.21146, + "index": 6, + "body": { + "#": 7217 + }, + "isInternal": false + }, + { + "x": 207.24408, + "y": 438.68346, + "index": 7, + "body": { + "#": 7217 + }, + "isInternal": false + }, + { + "x": 211.94608, + "y": 440.21146, + "index": 8, + "body": { + "#": 7217 + }, + "isInternal": false + }, + { + "x": 214.85208, + "y": 444.21146, + "index": 9, + "body": { + "#": 7217 + }, + "isInternal": false + }, + { + "x": 207.24408, + "y": 446.68346 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 2.23048, + "y": 0.77422 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7237 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7239 + }, + "max": { + "#": 7240 + } + }, + { + "x": 199.63608, + "y": 438.68346 + }, + { + "x": 214.85208, + "y": 454.68346 + }, + { + "x": 204.96078, + "y": 445.9459 + }, + [ + { + "#": 7243 + }, + { + "#": 7244 + }, + { + "#": 7245 + }, + { + "#": 7246 + }, + { + "#": 7247 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,9,9", + "startCol": 4, + "endCol": 4, + "startRow": 9, + "endRow": 9 + }, + { + "id": 226, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7250 + }, + "angle": 0, + "vertices": { + "#": 7251 + }, + "position": { + "#": 7262 + }, + "force": { + "#": 7263 + }, + "torque": 0, + "positionImpulse": { + "#": 7264 + }, + "constraintImpulse": { + "#": 7265 + }, + "totalContacts": 0, + "speed": 1.71178, + "angularSpeed": 0, + "velocity": { + "#": 7266 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7267 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7268 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7270 + }, + "positionPrev": { + "#": 7273 + }, + "anglePrev": 0, + "axes": { + "#": 7274 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7249 + }, + "sleepCounter": 0, + "region": { + "#": 7280 + } + }, + [ + { + "#": 7249 + } + ], + [ + { + "#": 7252 + }, + { + "#": 7253 + }, + { + "#": 7254 + }, + { + "#": 7255 + }, + { + "#": 7256 + }, + { + "#": 7257 + }, + { + "#": 7258 + }, + { + "#": 7259 + }, + { + "#": 7260 + }, + { + "#": 7261 + } + ], + { + "x": 235.75007, + "y": 443.91319, + "index": 0, + "body": { + "#": 7249 + }, + "isInternal": false + }, + { + "x": 232.84407, + "y": 447.91319, + "index": 1, + "body": { + "#": 7249 + }, + "isInternal": false + }, + { + "x": 228.14207, + "y": 449.44119, + "index": 2, + "body": { + "#": 7249 + }, + "isInternal": false + }, + { + "x": 223.44007, + "y": 447.91319, + "index": 3, + "body": { + "#": 7249 + }, + "isInternal": false + }, + { + "x": 220.53407, + "y": 443.91319, + "index": 4, + "body": { + "#": 7249 + }, + "isInternal": false + }, + { + "x": 220.53407, + "y": 438.96919, + "index": 5, + "body": { + "#": 7249 + }, + "isInternal": false + }, + { + "x": 223.44007, + "y": 434.96919, + "index": 6, + "body": { + "#": 7249 + }, + "isInternal": false + }, + { + "x": 228.14207, + "y": 433.44119, + "index": 7, + "body": { + "#": 7249 + }, + "isInternal": false + }, + { + "x": 232.84407, + "y": 434.96919, + "index": 8, + "body": { + "#": 7249 + }, + "isInternal": false + }, + { + "x": 235.75007, + "y": 438.96919, + "index": 9, + "body": { + "#": 7249 + }, + "isInternal": false + }, + { + "x": 228.14207, + "y": 441.44119 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 1.96665, + "y": -0.89463 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7269 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7271 + }, + "max": { + "#": 7272 + } + }, + { + "x": 220.53407, + "y": 433.44119 + }, + { + "x": 235.75007, + "y": 449.44119 + }, + { + "x": 226.16212, + "y": 442.34307 + }, + [ + { + "#": 7275 + }, + { + "#": 7276 + }, + { + "#": 7277 + }, + { + "#": 7278 + }, + { + "#": 7279 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,9,9", + "startCol": 4, + "endCol": 4, + "startRow": 9, + "endRow": 9 + }, + { + "id": 227, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7282 + }, + "angle": 0, + "vertices": { + "#": 7283 + }, + "position": { + "#": 7294 + }, + "force": { + "#": 7295 + }, + "torque": 0, + "positionImpulse": { + "#": 7296 + }, + "constraintImpulse": { + "#": 7297 + }, + "totalContacts": 0, + "speed": 1.76997, + "angularSpeed": 0, + "velocity": { + "#": 7298 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7299 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7300 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7302 + }, + "positionPrev": { + "#": 7305 + }, + "anglePrev": 0, + "axes": { + "#": 7306 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7281 + }, + "sleepCounter": 0, + "region": { + "#": 7312 + } + }, + [ + { + "#": 7281 + } + ], + [ + { + "#": 7284 + }, + { + "#": 7285 + }, + { + "#": 7286 + }, + { + "#": 7287 + }, + { + "#": 7288 + }, + { + "#": 7289 + }, + { + "#": 7290 + }, + { + "#": 7291 + }, + { + "#": 7292 + }, + { + "#": 7293 + } + ], + { + "x": 254.88257, + "y": 432.59859, + "index": 0, + "body": { + "#": 7281 + }, + "isInternal": false + }, + { + "x": 251.97657, + "y": 436.59859, + "index": 1, + "body": { + "#": 7281 + }, + "isInternal": false + }, + { + "x": 247.27457, + "y": 438.12659, + "index": 2, + "body": { + "#": 7281 + }, + "isInternal": false + }, + { + "x": 242.57257, + "y": 436.59859, + "index": 3, + "body": { + "#": 7281 + }, + "isInternal": false + }, + { + "x": 239.66657, + "y": 432.59859, + "index": 4, + "body": { + "#": 7281 + }, + "isInternal": false + }, + { + "x": 239.66657, + "y": 427.65459, + "index": 5, + "body": { + "#": 7281 + }, + "isInternal": false + }, + { + "x": 242.57257, + "y": 423.65459, + "index": 6, + "body": { + "#": 7281 + }, + "isInternal": false + }, + { + "x": 247.27457, + "y": 422.12659, + "index": 7, + "body": { + "#": 7281 + }, + "isInternal": false + }, + { + "x": 251.97657, + "y": 423.65459, + "index": 8, + "body": { + "#": 7281 + }, + "isInternal": false + }, + { + "x": 254.88257, + "y": 427.65459, + "index": 9, + "body": { + "#": 7281 + }, + "isInternal": false + }, + { + "x": 247.27457, + "y": 430.12659 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 1.5083, + "y": -1.04104 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7301 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7303 + }, + "max": { + "#": 7304 + } + }, + { + "x": 239.66657, + "y": 421.36887 + }, + { + "x": 256.438, + "y": 438.12659 + }, + { + "x": 245.76628, + "y": 431.16763 + }, + [ + { + "#": 7307 + }, + { + "#": 7308 + }, + { + "#": 7309 + }, + { + "#": 7310 + }, + { + "#": 7311 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,8,9", + "startCol": 4, + "endCol": 5, + "startRow": 8, + "endRow": 9 + }, + { + "id": 228, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7314 + }, + "angle": 0, + "vertices": { + "#": 7315 + }, + "position": { + "#": 7326 + }, + "force": { + "#": 7327 + }, + "torque": 0, + "positionImpulse": { + "#": 7328 + }, + "constraintImpulse": { + "#": 7329 + }, + "totalContacts": 0, + "speed": 1.21729, + "angularSpeed": 0, + "velocity": { + "#": 7330 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7331 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7332 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7334 + }, + "positionPrev": { + "#": 7337 + }, + "anglePrev": 0, + "axes": { + "#": 7338 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7313 + }, + "sleepCounter": 0, + "region": { + "#": 7344 + } + }, + [ + { + "#": 7313 + } + ], + [ + { + "#": 7316 + }, + { + "#": 7317 + }, + { + "#": 7318 + }, + { + "#": 7319 + }, + { + "#": 7320 + }, + { + "#": 7321 + }, + { + "#": 7322 + }, + { + "#": 7323 + }, + { + "#": 7324 + }, + { + "#": 7325 + } + ], + { + "x": 274.01204, + "y": 422.07576, + "index": 0, + "body": { + "#": 7313 + }, + "isInternal": false + }, + { + "x": 271.10604, + "y": 426.07576, + "index": 1, + "body": { + "#": 7313 + }, + "isInternal": false + }, + { + "x": 266.40404, + "y": 427.60376, + "index": 2, + "body": { + "#": 7313 + }, + "isInternal": false + }, + { + "x": 261.70204, + "y": 426.07576, + "index": 3, + "body": { + "#": 7313 + }, + "isInternal": false + }, + { + "x": 258.79604, + "y": 422.07576, + "index": 4, + "body": { + "#": 7313 + }, + "isInternal": false + }, + { + "x": 258.79604, + "y": 417.13176, + "index": 5, + "body": { + "#": 7313 + }, + "isInternal": false + }, + { + "x": 261.70204, + "y": 413.13176, + "index": 6, + "body": { + "#": 7313 + }, + "isInternal": false + }, + { + "x": 266.40404, + "y": 411.60376, + "index": 7, + "body": { + "#": 7313 + }, + "isInternal": false + }, + { + "x": 271.10604, + "y": 413.13176, + "index": 8, + "body": { + "#": 7313 + }, + "isInternal": false + }, + { + "x": 274.01204, + "y": 417.13176, + "index": 9, + "body": { + "#": 7313 + }, + "isInternal": false + }, + { + "x": 266.40404, + "y": 419.60376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 1.147, + "y": -0.435 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7333 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7335 + }, + "max": { + "#": 7336 + } + }, + { + "x": 258.79604, + "y": 411.60376 + }, + { + "x": 275.15298, + "y": 427.62927 + }, + { + "x": 265.25705, + "y": 420.03876 + }, + [ + { + "#": 7339 + }, + { + "#": 7340 + }, + { + "#": 7341 + }, + { + "#": 7342 + }, + { + "#": 7343 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,8,8", + "startCol": 5, + "endCol": 5, + "startRow": 8, + "endRow": 8 + }, + { + "id": 229, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7346 + }, + "angle": 0, + "vertices": { + "#": 7347 + }, + "position": { + "#": 7358 + }, + "force": { + "#": 7359 + }, + "torque": 0, + "positionImpulse": { + "#": 7360 + }, + "constraintImpulse": { + "#": 7361 + }, + "totalContacts": 0, + "speed": 0.77808, + "angularSpeed": 0, + "velocity": { + "#": 7362 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7363 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7364 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7366 + }, + "positionPrev": { + "#": 7369 + }, + "anglePrev": 0, + "axes": { + "#": 7370 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7345 + }, + "sleepCounter": 0, + "region": { + "#": 7376 + } + }, + [ + { + "#": 7345 + } + ], + [ + { + "#": 7348 + }, + { + "#": 7349 + }, + { + "#": 7350 + }, + { + "#": 7351 + }, + { + "#": 7352 + }, + { + "#": 7353 + }, + { + "#": 7354 + }, + { + "#": 7355 + }, + { + "#": 7356 + }, + { + "#": 7357 + } + ], + { + "x": 294.37705, + "y": 415.86569, + "index": 0, + "body": { + "#": 7345 + }, + "isInternal": false + }, + { + "x": 291.47105, + "y": 419.86569, + "index": 1, + "body": { + "#": 7345 + }, + "isInternal": false + }, + { + "x": 286.76905, + "y": 421.39369, + "index": 2, + "body": { + "#": 7345 + }, + "isInternal": false + }, + { + "x": 282.06705, + "y": 419.86569, + "index": 3, + "body": { + "#": 7345 + }, + "isInternal": false + }, + { + "x": 279.16105, + "y": 415.86569, + "index": 4, + "body": { + "#": 7345 + }, + "isInternal": false + }, + { + "x": 279.16105, + "y": 410.92169, + "index": 5, + "body": { + "#": 7345 + }, + "isInternal": false + }, + { + "x": 282.06705, + "y": 406.92169, + "index": 6, + "body": { + "#": 7345 + }, + "isInternal": false + }, + { + "x": 286.76905, + "y": 405.39369, + "index": 7, + "body": { + "#": 7345 + }, + "isInternal": false + }, + { + "x": 291.47105, + "y": 406.92169, + "index": 8, + "body": { + "#": 7345 + }, + "isInternal": false + }, + { + "x": 294.37705, + "y": 410.92169, + "index": 9, + "body": { + "#": 7345 + }, + "isInternal": false + }, + { + "x": 286.76905, + "y": 413.39369 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.95525, + "y": -0.11601 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7365 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7367 + }, + "max": { + "#": 7368 + } + }, + { + "x": 279.16105, + "y": 405.39369 + }, + { + "x": 295.29882, + "y": 421.70054 + }, + { + "x": 285.81381, + "y": 413.50969 + }, + [ + { + "#": 7371 + }, + { + "#": 7372 + }, + { + "#": 7373 + }, + { + "#": 7374 + }, + { + "#": 7375 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,8,8", + "startCol": 5, + "endCol": 6, + "startRow": 8, + "endRow": 8 + }, + { + "id": 230, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7378 + }, + "angle": 0, + "vertices": { + "#": 7379 + }, + "position": { + "#": 7390 + }, + "force": { + "#": 7391 + }, + "torque": 0, + "positionImpulse": { + "#": 7392 + }, + "constraintImpulse": { + "#": 7393 + }, + "totalContacts": 0, + "speed": 0.52218, + "angularSpeed": 0, + "velocity": { + "#": 7394 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7395 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7396 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7398 + }, + "positionPrev": { + "#": 7401 + }, + "anglePrev": 0, + "axes": { + "#": 7402 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7377 + }, + "sleepCounter": 0, + "region": { + "#": 7408 + } + }, + [ + { + "#": 7377 + } + ], + [ + { + "#": 7380 + }, + { + "#": 7381 + }, + { + "#": 7382 + }, + { + "#": 7383 + }, + { + "#": 7384 + }, + { + "#": 7385 + }, + { + "#": 7386 + }, + { + "#": 7387 + }, + { + "#": 7388 + }, + { + "#": 7389 + } + ], + { + "x": 315.8499, + "y": 415.32151, + "index": 0, + "body": { + "#": 7377 + }, + "isInternal": false + }, + { + "x": 312.9439, + "y": 419.32151, + "index": 1, + "body": { + "#": 7377 + }, + "isInternal": false + }, + { + "x": 308.2419, + "y": 420.84951, + "index": 2, + "body": { + "#": 7377 + }, + "isInternal": false + }, + { + "x": 303.5399, + "y": 419.32151, + "index": 3, + "body": { + "#": 7377 + }, + "isInternal": false + }, + { + "x": 300.6339, + "y": 415.32151, + "index": 4, + "body": { + "#": 7377 + }, + "isInternal": false + }, + { + "x": 300.6339, + "y": 410.37751, + "index": 5, + "body": { + "#": 7377 + }, + "isInternal": false + }, + { + "x": 303.5399, + "y": 406.37751, + "index": 6, + "body": { + "#": 7377 + }, + "isInternal": false + }, + { + "x": 308.2419, + "y": 404.84951, + "index": 7, + "body": { + "#": 7377 + }, + "isInternal": false + }, + { + "x": 312.9439, + "y": 406.37751, + "index": 8, + "body": { + "#": 7377 + }, + "isInternal": false + }, + { + "x": 315.8499, + "y": 410.37751, + "index": 9, + "body": { + "#": 7377 + }, + "isInternal": false + }, + { + "x": 308.2419, + "y": 412.84951 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.78054, + "y": 0.09479 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7397 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7399 + }, + "max": { + "#": 7400 + } + }, + { + "x": 300.6339, + "y": 404.84951 + }, + { + "x": 316.62122, + "y": 421.39165 + }, + { + "x": 307.46137, + "y": 412.75472 + }, + [ + { + "#": 7403 + }, + { + "#": 7404 + }, + { + "#": 7405 + }, + { + "#": 7406 + }, + { + "#": 7407 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,6,8,8", + "startCol": 6, + "endCol": 6, + "startRow": 8, + "endRow": 8 + }, + { + "id": 231, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7410 + }, + "angle": 0, + "vertices": { + "#": 7411 + }, + "position": { + "#": 7422 + }, + "force": { + "#": 7423 + }, + "torque": 0, + "positionImpulse": { + "#": 7424 + }, + "constraintImpulse": { + "#": 7425 + }, + "totalContacts": 0, + "speed": 0.47709, + "angularSpeed": 0, + "velocity": { + "#": 7426 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7427 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7428 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7430 + }, + "positionPrev": { + "#": 7433 + }, + "anglePrev": 0, + "axes": { + "#": 7434 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7409 + }, + "sleepCounter": 0, + "region": { + "#": 7440 + } + }, + [ + { + "#": 7409 + } + ], + [ + { + "#": 7412 + }, + { + "#": 7413 + }, + { + "#": 7414 + }, + { + "#": 7415 + }, + { + "#": 7416 + }, + { + "#": 7417 + }, + { + "#": 7418 + }, + { + "#": 7419 + }, + { + "#": 7420 + }, + { + "#": 7421 + } + ], + { + "x": 337.67192, + "y": 420.73624, + "index": 0, + "body": { + "#": 7409 + }, + "isInternal": false + }, + { + "x": 334.76592, + "y": 424.73624, + "index": 1, + "body": { + "#": 7409 + }, + "isInternal": false + }, + { + "x": 330.06392, + "y": 426.26424, + "index": 2, + "body": { + "#": 7409 + }, + "isInternal": false + }, + { + "x": 325.36192, + "y": 424.73624, + "index": 3, + "body": { + "#": 7409 + }, + "isInternal": false + }, + { + "x": 322.45592, + "y": 420.73624, + "index": 4, + "body": { + "#": 7409 + }, + "isInternal": false + }, + { + "x": 322.45592, + "y": 415.79224, + "index": 5, + "body": { + "#": 7409 + }, + "isInternal": false + }, + { + "x": 325.36192, + "y": 411.79224, + "index": 6, + "body": { + "#": 7409 + }, + "isInternal": false + }, + { + "x": 330.06392, + "y": 410.26424, + "index": 7, + "body": { + "#": 7409 + }, + "isInternal": false + }, + { + "x": 334.76592, + "y": 411.79224, + "index": 8, + "body": { + "#": 7409 + }, + "isInternal": false + }, + { + "x": 337.67192, + "y": 415.79224, + "index": 9, + "body": { + "#": 7409 + }, + "isInternal": false + }, + { + "x": 330.06392, + "y": 418.26424 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.07219, + "y": 0.02738 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7429 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7431 + }, + "max": { + "#": 7432 + } + }, + { + "x": 322.24116, + "y": 410.26424 + }, + { + "x": 337.67192, + "y": 426.72056 + }, + { + "x": 329.99174, + "y": 418.23686 + }, + [ + { + "#": 7435 + }, + { + "#": 7436 + }, + { + "#": 7437 + }, + { + "#": 7438 + }, + { + "#": 7439 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,8,8", + "startCol": 6, + "endCol": 7, + "startRow": 8, + "endRow": 8 + }, + { + "id": 232, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7442 + }, + "angle": 0, + "vertices": { + "#": 7443 + }, + "position": { + "#": 7454 + }, + "force": { + "#": 7455 + }, + "torque": 0, + "positionImpulse": { + "#": 7456 + }, + "constraintImpulse": { + "#": 7457 + }, + "totalContacts": 0, + "speed": 1.00268, + "angularSpeed": 0, + "velocity": { + "#": 7458 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7459 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7460 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7462 + }, + "positionPrev": { + "#": 7465 + }, + "anglePrev": 0, + "axes": { + "#": 7466 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7441 + }, + "sleepCounter": 0, + "region": { + "#": 7472 + } + }, + [ + { + "#": 7441 + } + ], + [ + { + "#": 7444 + }, + { + "#": 7445 + }, + { + "#": 7446 + }, + { + "#": 7447 + }, + { + "#": 7448 + }, + { + "#": 7449 + }, + { + "#": 7450 + }, + { + "#": 7451 + }, + { + "#": 7452 + }, + { + "#": 7453 + } + ], + { + "x": 357.93748, + "y": 430.85942, + "index": 0, + "body": { + "#": 7441 + }, + "isInternal": false + }, + { + "x": 355.03148, + "y": 434.85942, + "index": 1, + "body": { + "#": 7441 + }, + "isInternal": false + }, + { + "x": 350.32948, + "y": 436.38742, + "index": 2, + "body": { + "#": 7441 + }, + "isInternal": false + }, + { + "x": 345.62748, + "y": 434.85942, + "index": 3, + "body": { + "#": 7441 + }, + "isInternal": false + }, + { + "x": 342.72148, + "y": 430.85942, + "index": 4, + "body": { + "#": 7441 + }, + "isInternal": false + }, + { + "x": 342.72148, + "y": 425.91542, + "index": 5, + "body": { + "#": 7441 + }, + "isInternal": false + }, + { + "x": 345.62748, + "y": 421.91542, + "index": 6, + "body": { + "#": 7441 + }, + "isInternal": false + }, + { + "x": 350.32948, + "y": 420.38742, + "index": 7, + "body": { + "#": 7441 + }, + "isInternal": false + }, + { + "x": 355.03148, + "y": 421.91542, + "index": 8, + "body": { + "#": 7441 + }, + "isInternal": false + }, + { + "x": 357.93748, + "y": 425.91542, + "index": 9, + "body": { + "#": 7441 + }, + "isInternal": false + }, + { + "x": 350.32948, + "y": 428.38742 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.47714, + "y": -0.32933 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7461 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7463 + }, + "max": { + "#": 7464 + } + }, + { + "x": 341.88142, + "y": 420.34669 + }, + { + "x": 357.93748, + "y": 436.38742 + }, + { + "x": 350.80661, + "y": 428.71675 + }, + [ + { + "#": 7467 + }, + { + "#": 7468 + }, + { + "#": 7469 + }, + { + "#": 7470 + }, + { + "#": 7471 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,8,9", + "startCol": 7, + "endCol": 7, + "startRow": 8, + "endRow": 9 + }, + { + "id": 233, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7474 + }, + "angle": 0, + "vertices": { + "#": 7475 + }, + "position": { + "#": 7486 + }, + "force": { + "#": 7487 + }, + "torque": 0, + "positionImpulse": { + "#": 7488 + }, + "constraintImpulse": { + "#": 7489 + }, + "totalContacts": 0, + "speed": 0.91284, + "angularSpeed": 0, + "velocity": { + "#": 7490 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7491 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7492 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7494 + }, + "positionPrev": { + "#": 7497 + }, + "anglePrev": 0, + "axes": { + "#": 7498 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7473 + }, + "sleepCounter": 0, + "region": { + "#": 7504 + } + }, + [ + { + "#": 7473 + } + ], + [ + { + "#": 7476 + }, + { + "#": 7477 + }, + { + "#": 7478 + }, + { + "#": 7479 + }, + { + "#": 7480 + }, + { + "#": 7481 + }, + { + "#": 7482 + }, + { + "#": 7483 + }, + { + "#": 7484 + }, + { + "#": 7485 + } + ], + { + "x": 375.8385, + "y": 444.64306, + "index": 0, + "body": { + "#": 7473 + }, + "isInternal": false + }, + { + "x": 372.9325, + "y": 448.64306, + "index": 1, + "body": { + "#": 7473 + }, + "isInternal": false + }, + { + "x": 368.2305, + "y": 450.17106, + "index": 2, + "body": { + "#": 7473 + }, + "isInternal": false + }, + { + "x": 363.5285, + "y": 448.64306, + "index": 3, + "body": { + "#": 7473 + }, + "isInternal": false + }, + { + "x": 360.6225, + "y": 444.64306, + "index": 4, + "body": { + "#": 7473 + }, + "isInternal": false + }, + { + "x": 360.6225, + "y": 439.69906, + "index": 5, + "body": { + "#": 7473 + }, + "isInternal": false + }, + { + "x": 363.5285, + "y": 435.69906, + "index": 6, + "body": { + "#": 7473 + }, + "isInternal": false + }, + { + "x": 368.2305, + "y": 434.17106, + "index": 7, + "body": { + "#": 7473 + }, + "isInternal": false + }, + { + "x": 372.9325, + "y": 435.69906, + "index": 8, + "body": { + "#": 7473 + }, + "isInternal": false + }, + { + "x": 375.8385, + "y": 439.69906, + "index": 9, + "body": { + "#": 7473 + }, + "isInternal": false + }, + { + "x": 368.2305, + "y": 442.17106 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.66343, + "y": -0.69967 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7493 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7495 + }, + "max": { + "#": 7496 + } + }, + { + "x": 360.6225, + "y": 434.17106 + }, + { + "x": 375.8385, + "y": 450.17106 + }, + { + "x": 368.80526, + "y": 442.78002 + }, + [ + { + "#": 7499 + }, + { + "#": 7500 + }, + { + "#": 7501 + }, + { + "#": 7502 + }, + { + "#": 7503 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,9,9", + "startCol": 7, + "endCol": 7, + "startRow": 9, + "endRow": 9 + }, + { + "id": 234, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7506 + }, + "angle": 0, + "vertices": { + "#": 7507 + }, + "position": { + "#": 7518 + }, + "force": { + "#": 7519 + }, + "torque": 0, + "positionImpulse": { + "#": 7520 + }, + "constraintImpulse": { + "#": 7521 + }, + "totalContacts": 0, + "speed": 1.86625, + "angularSpeed": 0, + "velocity": { + "#": 7522 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7523 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7524 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7526 + }, + "positionPrev": { + "#": 7529 + }, + "anglePrev": 0, + "axes": { + "#": 7530 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7505 + }, + "sleepCounter": 0, + "region": { + "#": 7536 + } + }, + [ + { + "#": 7505 + } + ], + [ + { + "#": 7508 + }, + { + "#": 7509 + }, + { + "#": 7510 + }, + { + "#": 7511 + }, + { + "#": 7512 + }, + { + "#": 7513 + }, + { + "#": 7514 + }, + { + "#": 7515 + }, + { + "#": 7516 + }, + { + "#": 7517 + } + ], + { + "x": 396.29969, + "y": 453.04257, + "index": 0, + "body": { + "#": 7505 + }, + "isInternal": false + }, + { + "x": 393.39369, + "y": 457.04257, + "index": 1, + "body": { + "#": 7505 + }, + "isInternal": false + }, + { + "x": 388.69169, + "y": 458.57057, + "index": 2, + "body": { + "#": 7505 + }, + "isInternal": false + }, + { + "x": 383.98969, + "y": 457.04257, + "index": 3, + "body": { + "#": 7505 + }, + "isInternal": false + }, + { + "x": 381.08369, + "y": 453.04257, + "index": 4, + "body": { + "#": 7505 + }, + "isInternal": false + }, + { + "x": 381.08369, + "y": 448.09857, + "index": 5, + "body": { + "#": 7505 + }, + "isInternal": false + }, + { + "x": 383.98969, + "y": 444.09857, + "index": 6, + "body": { + "#": 7505 + }, + "isInternal": false + }, + { + "x": 388.69169, + "y": 442.57057, + "index": 7, + "body": { + "#": 7505 + }, + "isInternal": false + }, + { + "x": 393.39369, + "y": 444.09857, + "index": 8, + "body": { + "#": 7505 + }, + "isInternal": false + }, + { + "x": 396.29969, + "y": 448.09857, + "index": 9, + "body": { + "#": 7505 + }, + "isInternal": false + }, + { + "x": 388.69169, + "y": 450.57057 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -1.26714, + "y": 1.14202 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7525 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7527 + }, + "max": { + "#": 7528 + } + }, + { + "x": 381.08369, + "y": 442.57057 + }, + { + "x": 396.29969, + "y": 458.57057 + }, + { + "x": 389.98118, + "y": 449.46485 + }, + [ + { + "#": 7531 + }, + { + "#": 7532 + }, + { + "#": 7533 + }, + { + "#": 7534 + }, + { + "#": 7535 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,9,9", + "startCol": 7, + "endCol": 8, + "startRow": 9, + "endRow": 9 + }, + { + "id": 235, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7538 + }, + "angle": 0, + "vertices": { + "#": 7539 + }, + "position": { + "#": 7550 + }, + "force": { + "#": 7551 + }, + "torque": 0, + "positionImpulse": { + "#": 7552 + }, + "constraintImpulse": { + "#": 7553 + }, + "totalContacts": 0, + "speed": 2.33287, + "angularSpeed": 0, + "velocity": { + "#": 7554 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7555 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7556 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7558 + }, + "positionPrev": { + "#": 7561 + }, + "anglePrev": 0, + "axes": { + "#": 7562 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7537 + }, + "sleepCounter": 0, + "region": { + "#": 7568 + } + }, + [ + { + "#": 7537 + } + ], + [ + { + "#": 7540 + }, + { + "#": 7541 + }, + { + "#": 7542 + }, + { + "#": 7543 + }, + { + "#": 7544 + }, + { + "#": 7545 + }, + { + "#": 7546 + }, + { + "#": 7547 + }, + { + "#": 7548 + }, + { + "#": 7549 + } + ], + { + "x": 417.98783, + "y": 456.03958, + "index": 0, + "body": { + "#": 7537 + }, + "isInternal": false + }, + { + "x": 415.08183, + "y": 460.03958, + "index": 1, + "body": { + "#": 7537 + }, + "isInternal": false + }, + { + "x": 410.37983, + "y": 461.56758, + "index": 2, + "body": { + "#": 7537 + }, + "isInternal": false + }, + { + "x": 405.67783, + "y": 460.03958, + "index": 3, + "body": { + "#": 7537 + }, + "isInternal": false + }, + { + "x": 402.77183, + "y": 456.03958, + "index": 4, + "body": { + "#": 7537 + }, + "isInternal": false + }, + { + "x": 402.77183, + "y": 451.09558, + "index": 5, + "body": { + "#": 7537 + }, + "isInternal": false + }, + { + "x": 405.67783, + "y": 447.09558, + "index": 6, + "body": { + "#": 7537 + }, + "isInternal": false + }, + { + "x": 410.37983, + "y": 445.56758, + "index": 7, + "body": { + "#": 7537 + }, + "isInternal": false + }, + { + "x": 415.08183, + "y": 447.09558, + "index": 8, + "body": { + "#": 7537 + }, + "isInternal": false + }, + { + "x": 417.98783, + "y": 451.09558, + "index": 9, + "body": { + "#": 7537 + }, + "isInternal": false + }, + { + "x": 410.37983, + "y": 453.56758 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -1.15771, + "y": 2.01262 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7557 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7559 + }, + "max": { + "#": 7560 + } + }, + { + "x": 402.77183, + "y": 445.56758 + }, + { + "x": 417.98783, + "y": 461.56758 + }, + { + "x": 411.56707, + "y": 451.61619 + }, + [ + { + "#": 7563 + }, + { + "#": 7564 + }, + { + "#": 7565 + }, + { + "#": 7566 + }, + { + "#": 7567 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,9,9", + "startCol": 8, + "endCol": 8, + "startRow": 9, + "endRow": 9 + }, + { + "id": 236, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7570 + }, + "angle": 0, + "vertices": { + "#": 7571 + }, + "position": { + "#": 7582 + }, + "force": { + "#": 7583 + }, + "torque": 0, + "positionImpulse": { + "#": 7584 + }, + "constraintImpulse": { + "#": 7585 + }, + "totalContacts": 0, + "speed": 2.4181, + "angularSpeed": 0, + "velocity": { + "#": 7586 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7587 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7588 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7590 + }, + "positionPrev": { + "#": 7593 + }, + "anglePrev": 0, + "axes": { + "#": 7594 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7569 + }, + "sleepCounter": 0, + "region": { + "#": 7600 + } + }, + [ + { + "#": 7569 + } + ], + [ + { + "#": 7572 + }, + { + "#": 7573 + }, + { + "#": 7574 + }, + { + "#": 7575 + }, + { + "#": 7576 + }, + { + "#": 7577 + }, + { + "#": 7578 + }, + { + "#": 7579 + }, + { + "#": 7580 + }, + { + "#": 7581 + } + ], + { + "x": 439.52426, + "y": 456.99355, + "index": 0, + "body": { + "#": 7569 + }, + "isInternal": false + }, + { + "x": 436.61826, + "y": 460.99355, + "index": 1, + "body": { + "#": 7569 + }, + "isInternal": false + }, + { + "x": 431.91626, + "y": 462.52155, + "index": 2, + "body": { + "#": 7569 + }, + "isInternal": false + }, + { + "x": 427.21426, + "y": 460.99355, + "index": 3, + "body": { + "#": 7569 + }, + "isInternal": false + }, + { + "x": 424.30826, + "y": 456.99355, + "index": 4, + "body": { + "#": 7569 + }, + "isInternal": false + }, + { + "x": 424.30826, + "y": 452.04955, + "index": 5, + "body": { + "#": 7569 + }, + "isInternal": false + }, + { + "x": 427.21426, + "y": 448.04955, + "index": 6, + "body": { + "#": 7569 + }, + "isInternal": false + }, + { + "x": 431.91626, + "y": 446.52155, + "index": 7, + "body": { + "#": 7569 + }, + "isInternal": false + }, + { + "x": 436.61826, + "y": 448.04955, + "index": 8, + "body": { + "#": 7569 + }, + "isInternal": false + }, + { + "x": 439.52426, + "y": 452.04955, + "index": 9, + "body": { + "#": 7569 + }, + "isInternal": false + }, + { + "x": 431.91626, + "y": 454.52155 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.5769, + "y": 2.0899 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7589 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7591 + }, + "max": { + "#": 7592 + } + }, + { + "x": 424.30826, + "y": 446.52155 + }, + { + "x": 439.52426, + "y": 462.52155 + }, + { + "x": 432.53355, + "y": 452.53286 + }, + [ + { + "#": 7595 + }, + { + "#": 7596 + }, + { + "#": 7597 + }, + { + "#": 7598 + }, + { + "#": 7599 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,9,9", + "startCol": 8, + "endCol": 9, + "startRow": 9, + "endRow": 9 + }, + { + "id": 237, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7602 + }, + "angle": 0, + "vertices": { + "#": 7603 + }, + "position": { + "#": 7614 + }, + "force": { + "#": 7615 + }, + "torque": 0, + "positionImpulse": { + "#": 7616 + }, + "constraintImpulse": { + "#": 7617 + }, + "totalContacts": 0, + "speed": 1.0741, + "angularSpeed": 0, + "velocity": { + "#": 7618 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7619 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7620 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7622 + }, + "positionPrev": { + "#": 7625 + }, + "anglePrev": 0, + "axes": { + "#": 7626 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7601 + }, + "sleepCounter": 0, + "region": { + "#": 7632 + } + }, + [ + { + "#": 7601 + } + ], + [ + { + "#": 7604 + }, + { + "#": 7605 + }, + { + "#": 7606 + }, + { + "#": 7607 + }, + { + "#": 7608 + }, + { + "#": 7609 + }, + { + "#": 7610 + }, + { + "#": 7611 + }, + { + "#": 7612 + }, + { + "#": 7613 + } + ], + { + "x": 460.05, + "y": 451.59098, + "index": 0, + "body": { + "#": 7601 + }, + "isInternal": false + }, + { + "x": 457.144, + "y": 455.59098, + "index": 1, + "body": { + "#": 7601 + }, + "isInternal": false + }, + { + "x": 452.442, + "y": 457.11898, + "index": 2, + "body": { + "#": 7601 + }, + "isInternal": false + }, + { + "x": 447.74, + "y": 455.59098, + "index": 3, + "body": { + "#": 7601 + }, + "isInternal": false + }, + { + "x": 444.834, + "y": 451.59098, + "index": 4, + "body": { + "#": 7601 + }, + "isInternal": false + }, + { + "x": 444.834, + "y": 446.64698, + "index": 5, + "body": { + "#": 7601 + }, + "isInternal": false + }, + { + "x": 447.74, + "y": 442.64698, + "index": 6, + "body": { + "#": 7601 + }, + "isInternal": false + }, + { + "x": 452.442, + "y": 441.11898, + "index": 7, + "body": { + "#": 7601 + }, + "isInternal": false + }, + { + "x": 457.144, + "y": 442.64698, + "index": 8, + "body": { + "#": 7601 + }, + "isInternal": false + }, + { + "x": 460.05, + "y": 446.64698, + "index": 9, + "body": { + "#": 7601 + }, + "isInternal": false + }, + { + "x": 452.442, + "y": 449.11898 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42424 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7621 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7623 + }, + "max": { + "#": 7624 + } + }, + { + "x": 444.834, + "y": 441.11898 + }, + { + "x": 460.8157, + "y": 457.3852 + }, + { + "x": 452.442, + "y": 448.69475 + }, + [ + { + "#": 7627 + }, + { + "#": 7628 + }, + { + "#": 7629 + }, + { + "#": 7630 + }, + { + "#": 7631 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,9,9", + "startCol": 9, + "endCol": 9, + "startRow": 9, + "endRow": 9 + }, + { + "id": 238, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7634 + }, + "angle": 0, + "vertices": { + "#": 7635 + }, + "position": { + "#": 7646 + }, + "force": { + "#": 7647 + }, + "torque": 0, + "positionImpulse": { + "#": 7648 + }, + "constraintImpulse": { + "#": 7649 + }, + "totalContacts": 0, + "speed": 0.37084, + "angularSpeed": 0, + "velocity": { + "#": 7650 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7651 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7652 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7654 + }, + "positionPrev": { + "#": 7657 + }, + "anglePrev": 0, + "axes": { + "#": 7658 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7633 + }, + "sleepCounter": 0, + "region": { + "#": 7664 + } + }, + [ + { + "#": 7633 + } + ], + [ + { + "#": 7636 + }, + { + "#": 7637 + }, + { + "#": 7638 + }, + { + "#": 7639 + }, + { + "#": 7640 + }, + { + "#": 7641 + }, + { + "#": 7642 + }, + { + "#": 7643 + }, + { + "#": 7644 + }, + { + "#": 7645 + } + ], + { + "x": 478.39529, + "y": 434.522, + "index": 0, + "body": { + "#": 7633 + }, + "isInternal": false + }, + { + "x": 475.48929, + "y": 438.522, + "index": 1, + "body": { + "#": 7633 + }, + "isInternal": false + }, + { + "x": 470.78729, + "y": 440.05, + "index": 2, + "body": { + "#": 7633 + }, + "isInternal": false + }, + { + "x": 466.08529, + "y": 438.522, + "index": 3, + "body": { + "#": 7633 + }, + "isInternal": false + }, + { + "x": 463.17929, + "y": 434.522, + "index": 4, + "body": { + "#": 7633 + }, + "isInternal": false + }, + { + "x": 463.17929, + "y": 429.578, + "index": 5, + "body": { + "#": 7633 + }, + "isInternal": false + }, + { + "x": 466.08529, + "y": 425.578, + "index": 6, + "body": { + "#": 7633 + }, + "isInternal": false + }, + { + "x": 470.78729, + "y": 424.05, + "index": 7, + "body": { + "#": 7633 + }, + "isInternal": false + }, + { + "x": 475.48929, + "y": 425.578, + "index": 8, + "body": { + "#": 7633 + }, + "isInternal": false + }, + { + "x": 478.39529, + "y": 429.578, + "index": 9, + "body": { + "#": 7633 + }, + "isInternal": false + }, + { + "x": 470.78729, + "y": 432.05 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.52247, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7653 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7655 + }, + "max": { + "#": 7656 + } + }, + { + "x": 463.17929, + "y": 424.05 + }, + { + "x": 478.65356, + "y": 442.31087 + }, + { + "x": 470.26483, + "y": 432.05 + }, + [ + { + "#": 7659 + }, + { + "#": 7660 + }, + { + "#": 7661 + }, + { + "#": 7662 + }, + { + "#": 7663 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,8,9", + "startCol": 9, + "endCol": 9, + "startRow": 8, + "endRow": 9 + }, + { + "id": 239, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7666 + }, + "angle": 0, + "vertices": { + "#": 7667 + }, + "position": { + "#": 7678 + }, + "force": { + "#": 7679 + }, + "torque": 0, + "positionImpulse": { + "#": 7680 + }, + "constraintImpulse": { + "#": 7681 + }, + "totalContacts": 0, + "speed": 0.5792, + "angularSpeed": 0, + "velocity": { + "#": 7682 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7683 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7684 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7686 + }, + "positionPrev": { + "#": 7689 + }, + "anglePrev": 0, + "axes": { + "#": 7690 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7665 + }, + "sleepCounter": 0, + "region": { + "#": 7696 + } + }, + [ + { + "#": 7665 + } + ], + [ + { + "#": 7668 + }, + { + "#": 7669 + }, + { + "#": 7670 + }, + { + "#": 7671 + }, + { + "#": 7672 + }, + { + "#": 7673 + }, + { + "#": 7674 + }, + { + "#": 7675 + }, + { + "#": 7676 + }, + { + "#": 7677 + } + ], + { + "x": 500.1045, + "y": 433.88634, + "index": 0, + "body": { + "#": 7665 + }, + "isInternal": false + }, + { + "x": 497.1985, + "y": 437.88634, + "index": 1, + "body": { + "#": 7665 + }, + "isInternal": false + }, + { + "x": 492.4965, + "y": 439.41434, + "index": 2, + "body": { + "#": 7665 + }, + "isInternal": false + }, + { + "x": 487.7945, + "y": 437.88634, + "index": 3, + "body": { + "#": 7665 + }, + "isInternal": false + }, + { + "x": 484.8885, + "y": 433.88634, + "index": 4, + "body": { + "#": 7665 + }, + "isInternal": false + }, + { + "x": 484.8885, + "y": 428.94234, + "index": 5, + "body": { + "#": 7665 + }, + "isInternal": false + }, + { + "x": 487.7945, + "y": 424.94234, + "index": 6, + "body": { + "#": 7665 + }, + "isInternal": false + }, + { + "x": 492.4965, + "y": 423.41434, + "index": 7, + "body": { + "#": 7665 + }, + "isInternal": false + }, + { + "x": 497.1985, + "y": 424.94234, + "index": 8, + "body": { + "#": 7665 + }, + "isInternal": false + }, + { + "x": 500.1045, + "y": 428.94234, + "index": 9, + "body": { + "#": 7665 + }, + "isInternal": false + }, + { + "x": 492.4965, + "y": 431.41434 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.85114, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7685 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7687 + }, + "max": { + "#": 7688 + } + }, + { + "x": 484.8885, + "y": 423.41434 + }, + { + "x": 500.71826, + "y": 440.51147 + }, + { + "x": 491.64537, + "y": 431.41434 + }, + [ + { + "#": 7691 + }, + { + "#": 7692 + }, + { + "#": 7693 + }, + { + "#": 7694 + }, + { + "#": 7695 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,8,9", + "startCol": 10, + "endCol": 10, + "startRow": 8, + "endRow": 9 + }, + { + "id": 240, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7698 + }, + "angle": 0, + "vertices": { + "#": 7699 + }, + "position": { + "#": 7710 + }, + "force": { + "#": 7711 + }, + "torque": 0, + "positionImpulse": { + "#": 7712 + }, + "constraintImpulse": { + "#": 7713 + }, + "totalContacts": 0, + "speed": 0.73428, + "angularSpeed": 0, + "velocity": { + "#": 7714 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7715 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7716 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7718 + }, + "positionPrev": { + "#": 7721 + }, + "anglePrev": 0, + "axes": { + "#": 7722 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7697 + }, + "sleepCounter": 0, + "region": { + "#": 7728 + } + }, + [ + { + "#": 7697 + } + ], + [ + { + "#": 7700 + }, + { + "#": 7701 + }, + { + "#": 7702 + }, + { + "#": 7703 + }, + { + "#": 7704 + }, + { + "#": 7705 + }, + { + "#": 7706 + }, + { + "#": 7707 + }, + { + "#": 7708 + }, + { + "#": 7709 + } + ], + { + "x": 521.61109, + "y": 433.83671, + "index": 0, + "body": { + "#": 7697 + }, + "isInternal": false + }, + { + "x": 518.70509, + "y": 437.83671, + "index": 1, + "body": { + "#": 7697 + }, + "isInternal": false + }, + { + "x": 514.00309, + "y": 439.36471, + "index": 2, + "body": { + "#": 7697 + }, + "isInternal": false + }, + { + "x": 509.30109, + "y": 437.83671, + "index": 3, + "body": { + "#": 7697 + }, + "isInternal": false + }, + { + "x": 506.39509, + "y": 433.83671, + "index": 4, + "body": { + "#": 7697 + }, + "isInternal": false + }, + { + "x": 506.39509, + "y": 428.89271, + "index": 5, + "body": { + "#": 7697 + }, + "isInternal": false + }, + { + "x": 509.30109, + "y": 424.89271, + "index": 6, + "body": { + "#": 7697 + }, + "isInternal": false + }, + { + "x": 514.00309, + "y": 423.36471, + "index": 7, + "body": { + "#": 7697 + }, + "isInternal": false + }, + { + "x": 518.70509, + "y": 424.89271, + "index": 8, + "body": { + "#": 7697 + }, + "isInternal": false + }, + { + "x": 521.61109, + "y": 428.89271, + "index": 9, + "body": { + "#": 7697 + }, + "isInternal": false + }, + { + "x": 514.00309, + "y": 431.36471 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 1.13407, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7717 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7719 + }, + "max": { + "#": 7720 + } + }, + { + "x": 506.39509, + "y": 423.36471 + }, + { + "x": 522.50647, + "y": 440.49348 + }, + { + "x": 512.86902, + "y": 431.36471 + }, + [ + { + "#": 7723 + }, + { + "#": 7724 + }, + { + "#": 7725 + }, + { + "#": 7726 + }, + { + "#": 7727 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,10,8,9", + "startCol": 10, + "endCol": 10, + "startRow": 8, + "endRow": 9 + }, + { + "id": 241, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7730 + }, + "angle": 0, + "vertices": { + "#": 7731 + }, + "position": { + "#": 7742 + }, + "force": { + "#": 7743 + }, + "torque": 0, + "positionImpulse": { + "#": 7744 + }, + "constraintImpulse": { + "#": 7745 + }, + "totalContacts": 0, + "speed": 0.78828, + "angularSpeed": 0, + "velocity": { + "#": 7746 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7747 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7748 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7750 + }, + "positionPrev": { + "#": 7753 + }, + "anglePrev": 0, + "axes": { + "#": 7754 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7729 + }, + "sleepCounter": 0, + "region": { + "#": 7760 + } + }, + [ + { + "#": 7729 + } + ], + [ + { + "#": 7732 + }, + { + "#": 7733 + }, + { + "#": 7734 + }, + { + "#": 7735 + }, + { + "#": 7736 + }, + { + "#": 7737 + }, + { + "#": 7738 + }, + { + "#": 7739 + }, + { + "#": 7740 + }, + { + "#": 7741 + } + ], + { + "x": 542.88737, + "y": 434.522, + "index": 0, + "body": { + "#": 7729 + }, + "isInternal": false + }, + { + "x": 539.98137, + "y": 438.522, + "index": 1, + "body": { + "#": 7729 + }, + "isInternal": false + }, + { + "x": 535.27937, + "y": 440.05, + "index": 2, + "body": { + "#": 7729 + }, + "isInternal": false + }, + { + "x": 530.57737, + "y": 438.522, + "index": 3, + "body": { + "#": 7729 + }, + "isInternal": false + }, + { + "x": 527.67137, + "y": 434.522, + "index": 4, + "body": { + "#": 7729 + }, + "isInternal": false + }, + { + "x": 527.67137, + "y": 429.578, + "index": 5, + "body": { + "#": 7729 + }, + "isInternal": false + }, + { + "x": 530.57737, + "y": 425.578, + "index": 6, + "body": { + "#": 7729 + }, + "isInternal": false + }, + { + "x": 535.27937, + "y": 424.05, + "index": 7, + "body": { + "#": 7729 + }, + "isInternal": false + }, + { + "x": 539.98137, + "y": 425.578, + "index": 8, + "body": { + "#": 7729 + }, + "isInternal": false + }, + { + "x": 542.88737, + "y": 429.578, + "index": 9, + "body": { + "#": 7729 + }, + "isInternal": false + }, + { + "x": 535.27937, + "y": 432.05 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 1.37801, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7749 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7751 + }, + "max": { + "#": 7752 + } + }, + { + "x": 527.67137, + "y": 424.05 + }, + { + "x": 543.98615, + "y": 442.11213 + }, + { + "x": 533.90136, + "y": 432.05 + }, + [ + { + "#": 7755 + }, + { + "#": 7756 + }, + { + "#": 7757 + }, + { + "#": 7758 + }, + { + "#": 7759 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,8,9", + "startCol": 10, + "endCol": 11, + "startRow": 8, + "endRow": 9 + }, + { + "id": 242, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7762 + }, + "angle": 0, + "vertices": { + "#": 7763 + }, + "position": { + "#": 7774 + }, + "force": { + "#": 7775 + }, + "torque": 0, + "positionImpulse": { + "#": 7776 + }, + "constraintImpulse": { + "#": 7777 + }, + "totalContacts": 0, + "speed": 1.86395, + "angularSpeed": 0, + "velocity": { + "#": 7778 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7779 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7780 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7782 + }, + "positionPrev": { + "#": 7785 + }, + "anglePrev": 0, + "axes": { + "#": 7786 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7761 + }, + "sleepCounter": 0, + "region": { + "#": 7792 + } + }, + [ + { + "#": 7761 + } + ], + [ + { + "#": 7764 + }, + { + "#": 7765 + }, + { + "#": 7766 + }, + { + "#": 7767 + }, + { + "#": 7768 + }, + { + "#": 7769 + }, + { + "#": 7770 + }, + { + "#": 7771 + }, + { + "#": 7772 + }, + { + "#": 7773 + } + ], + { + "x": 555.166, + "y": 453.99144, + "index": 0, + "body": { + "#": 7761 + }, + "isInternal": false + }, + { + "x": 552.26, + "y": 457.99144, + "index": 1, + "body": { + "#": 7761 + }, + "isInternal": false + }, + { + "x": 547.558, + "y": 459.51944, + "index": 2, + "body": { + "#": 7761 + }, + "isInternal": false + }, + { + "x": 542.856, + "y": 457.99144, + "index": 3, + "body": { + "#": 7761 + }, + "isInternal": false + }, + { + "x": 539.95, + "y": 453.99144, + "index": 4, + "body": { + "#": 7761 + }, + "isInternal": false + }, + { + "x": 539.95, + "y": 449.04744, + "index": 5, + "body": { + "#": 7761 + }, + "isInternal": false + }, + { + "x": 542.856, + "y": 445.04744, + "index": 6, + "body": { + "#": 7761 + }, + "isInternal": false + }, + { + "x": 547.558, + "y": 443.51944, + "index": 7, + "body": { + "#": 7761 + }, + "isInternal": false + }, + { + "x": 552.26, + "y": 445.04744, + "index": 8, + "body": { + "#": 7761 + }, + "isInternal": false + }, + { + "x": 555.166, + "y": 449.04744, + "index": 9, + "body": { + "#": 7761 + }, + "isInternal": false + }, + { + "x": 547.558, + "y": 451.51944 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.3639 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7781 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7783 + }, + "max": { + "#": 7784 + } + }, + { + "x": 539.36775, + "y": 443.51944 + }, + { + "x": 555.166, + "y": 460.74782 + }, + { + "x": 547.558, + "y": 450.15555 + }, + [ + { + "#": 7787 + }, + { + "#": 7788 + }, + { + "#": 7789 + }, + { + "#": 7790 + }, + { + "#": 7791 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,11,9,9", + "startCol": 11, + "endCol": 11, + "startRow": 9, + "endRow": 9 + }, + { + "id": 243, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7794 + }, + "angle": 0, + "vertices": { + "#": 7795 + }, + "position": { + "#": 7806 + }, + "force": { + "#": 7807 + }, + "torque": 0, + "positionImpulse": { + "#": 7808 + }, + "constraintImpulse": { + "#": 7809 + }, + "totalContacts": 0, + "speed": 2.89638, + "angularSpeed": 0, + "velocity": { + "#": 7810 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7811 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7812 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7814 + }, + "positionPrev": { + "#": 7817 + }, + "anglePrev": 0, + "axes": { + "#": 7818 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7793 + }, + "sleepCounter": 0, + "region": { + "#": 7824 + } + }, + [ + { + "#": 7793 + } + ], + [ + { + "#": 7796 + }, + { + "#": 7797 + }, + { + "#": 7798 + }, + { + "#": 7799 + }, + { + "#": 7800 + }, + { + "#": 7801 + }, + { + "#": 7802 + }, + { + "#": 7803 + }, + { + "#": 7804 + }, + { + "#": 7805 + } + ], + { + "x": 574.27325, + "y": 458.61899, + "index": 0, + "body": { + "#": 7793 + }, + "isInternal": false + }, + { + "x": 571.36725, + "y": 462.61899, + "index": 1, + "body": { + "#": 7793 + }, + "isInternal": false + }, + { + "x": 566.66525, + "y": 464.14699, + "index": 2, + "body": { + "#": 7793 + }, + "isInternal": false + }, + { + "x": 561.96325, + "y": 462.61899, + "index": 3, + "body": { + "#": 7793 + }, + "isInternal": false + }, + { + "x": 559.05725, + "y": 458.61899, + "index": 4, + "body": { + "#": 7793 + }, + "isInternal": false + }, + { + "x": 559.05725, + "y": 453.67499, + "index": 5, + "body": { + "#": 7793 + }, + "isInternal": false + }, + { + "x": 561.96325, + "y": 449.67499, + "index": 6, + "body": { + "#": 7793 + }, + "isInternal": false + }, + { + "x": 566.66525, + "y": 448.14699, + "index": 7, + "body": { + "#": 7793 + }, + "isInternal": false + }, + { + "x": 571.36725, + "y": 449.67499, + "index": 8, + "body": { + "#": 7793 + }, + "isInternal": false + }, + { + "x": 574.27325, + "y": 453.67499, + "index": 9, + "body": { + "#": 7793 + }, + "isInternal": false + }, + { + "x": 566.66525, + "y": 456.14699 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.81506, + "y": 2.72566 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7813 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7815 + }, + "max": { + "#": 7816 + } + }, + { + "x": 559.05725, + "y": 448.14699 + }, + { + "x": 574.27325, + "y": 464.14699 + }, + { + "x": 567.4789, + "y": 453.45432 + }, + [ + { + "#": 7819 + }, + { + "#": 7820 + }, + { + "#": 7821 + }, + { + "#": 7822 + }, + { + "#": 7823 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,11,9,9", + "startCol": 11, + "endCol": 11, + "startRow": 9, + "endRow": 9 + }, + { + "id": 244, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 7826 + }, + "angle": 0, + "vertices": { + "#": 7827 + }, + "position": { + "#": 7838 + }, + "force": { + "#": 7839 + }, + "torque": 0, + "positionImpulse": { + "#": 7840 + }, + "constraintImpulse": { + "#": 7841 + }, + "totalContacts": 0, + "speed": 2.97307, + "angularSpeed": 0, + "velocity": { + "#": 7842 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.00001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7843 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7844 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 8, + "bounds": { + "#": 7846 + }, + "positionPrev": { + "#": 7849 + }, + "anglePrev": 0, + "axes": { + "#": 7850 + }, + "area": 188.07722, + "mass": 0.18808, + "inverseMass": 5.31697, + "inverseInertia": 0, + "parent": { + "#": 7825 + }, + "sleepCounter": 0, + "region": { + "#": 7856 + } + }, + [ + { + "#": 7825 + } + ], + [ + { + "#": 7828 + }, + { + "#": 7829 + }, + { + "#": 7830 + }, + { + "#": 7831 + }, + { + "#": 7832 + }, + { + "#": 7833 + }, + { + "#": 7834 + }, + { + "#": 7835 + }, + { + "#": 7836 + }, + { + "#": 7837 + } + ], + { + "x": 594.5733, + "y": 458.92957, + "index": 0, + "body": { + "#": 7825 + }, + "isInternal": false + }, + { + "x": 591.6673, + "y": 462.92957, + "index": 1, + "body": { + "#": 7825 + }, + "isInternal": false + }, + { + "x": 586.9653, + "y": 464.45757, + "index": 2, + "body": { + "#": 7825 + }, + "isInternal": false + }, + { + "x": 582.2633, + "y": 462.92957, + "index": 3, + "body": { + "#": 7825 + }, + "isInternal": false + }, + { + "x": 579.3573, + "y": 458.92957, + "index": 4, + "body": { + "#": 7825 + }, + "isInternal": false + }, + { + "x": 579.3573, + "y": 453.98557, + "index": 5, + "body": { + "#": 7825 + }, + "isInternal": false + }, + { + "x": 582.2633, + "y": 449.98557, + "index": 6, + "body": { + "#": 7825 + }, + "isInternal": false + }, + { + "x": 586.9653, + "y": 448.45757, + "index": 7, + "body": { + "#": 7825 + }, + "isInternal": false + }, + { + "x": 591.6673, + "y": 449.98557, + "index": 8, + "body": { + "#": 7825 + }, + "isInternal": false + }, + { + "x": 594.5733, + "y": 453.98557, + "index": 9, + "body": { + "#": 7825 + }, + "isInternal": false + }, + { + "x": 586.9653, + "y": 456.45757 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.9842, + "y": 2.80182 + }, + { + "category": 1, + "mask": 4294967295, + "group": -4 + }, + { + "visible": false, + "sprite": { + "#": 7845 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7847 + }, + "max": { + "#": 7848 + } + }, + { + "x": 579.3573, + "y": 448.45757 + }, + { + "x": 594.5733, + "y": 464.45757 + }, + { + "x": 587.9479, + "y": 453.68384 + }, + [ + { + "#": 7851 + }, + { + "#": 7852 + }, + { + "#": 7853 + }, + { + "#": 7854 + }, + { + "#": 7855 + } + ], + { + "x": -0.80903, + "y": -0.58776 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.80903, + "y": -0.58776 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,9,9", + "startCol": 12, + "endCol": 12, + "startRow": 9, + "endRow": 9 + }, + [ + { + "#": 7858 + }, + { + "#": 7862 + }, + { + "#": 7866 + }, + { + "#": 7870 + }, + { + "#": 7874 + }, + { + "#": 7878 + }, + { + "#": 7882 + }, + { + "#": 7886 + }, + { + "#": 7890 + }, + { + "#": 7894 + }, + { + "#": 7898 + }, + { + "#": 7902 + }, + { + "#": 7906 + }, + { + "#": 7910 + }, + { + "#": 7914 + }, + { + "#": 7918 + }, + { + "#": 7922 + }, + { + "#": 7926 + }, + { + "#": 7930 + }, + { + "#": 7934 + }, + { + "#": 7938 + }, + { + "#": 7942 + }, + { + "#": 7946 + }, + { + "#": 7950 + }, + { + "#": 7954 + }, + { + "#": 7958 + }, + { + "#": 7962 + }, + { + "#": 7966 + }, + { + "#": 7970 + }, + { + "#": 7974 + }, + { + "#": 7978 + }, + { + "#": 7982 + }, + { + "#": 7986 + }, + { + "#": 7990 + }, + { + "#": 7994 + }, + { + "#": 7998 + }, + { + "#": 8002 + }, + { + "#": 8006 + }, + { + "#": 8010 + }, + { + "#": 8014 + }, + { + "#": 8018 + }, + { + "#": 8022 + }, + { + "#": 8026 + }, + { + "#": 8030 + }, + { + "#": 8034 + }, + { + "#": 8038 + }, + { + "#": 8042 + }, + { + "#": 8046 + }, + { + "#": 8050 + }, + { + "#": 8054 + }, + { + "#": 8058 + }, + { + "#": 8062 + }, + { + "#": 8066 + }, + { + "#": 8070 + }, + { + "#": 8074 + }, + { + "#": 8078 + }, + { + "#": 8082 + }, + { + "#": 8086 + }, + { + "#": 8090 + }, + { + "#": 8094 + }, + { + "#": 8098 + }, + { + "#": 8102 + }, + { + "#": 8106 + }, + { + "#": 8110 + }, + { + "#": 8114 + }, + { + "#": 8118 + }, + { + "#": 8122 + }, + { + "#": 8126 + }, + { + "#": 8130 + }, + { + "#": 8134 + }, + { + "#": 8138 + }, + { + "#": 8142 + }, + { + "#": 8146 + }, + { + "#": 8150 + }, + { + "#": 8154 + }, + { + "#": 8158 + }, + { + "#": 8162 + }, + { + "#": 8166 + }, + { + "#": 8170 + }, + { + "#": 8174 + }, + { + "#": 8178 + }, + { + "#": 8182 + }, + { + "#": 8186 + }, + { + "#": 8190 + }, + { + "#": 8194 + }, + { + "#": 8198 + }, + { + "#": 8202 + }, + { + "#": 8206 + }, + { + "#": 8210 + }, + { + "#": 8214 + }, + { + "#": 8218 + }, + { + "#": 8222 + }, + { + "#": 8226 + }, + { + "#": 8230 + }, + { + "#": 8234 + }, + { + "#": 8238 + }, + { + "#": 8242 + }, + { + "#": 8246 + }, + { + "#": 8250 + }, + { + "#": 8254 + }, + { + "#": 8258 + }, + { + "#": 8262 + }, + { + "#": 8266 + }, + { + "#": 8270 + }, + { + "#": 8274 + }, + { + "#": 8278 + }, + { + "#": 8282 + }, + { + "#": 8286 + }, + { + "#": 8290 + }, + { + "#": 8294 + }, + { + "#": 8298 + }, + { + "#": 8302 + }, + { + "#": 8306 + }, + { + "#": 8310 + }, + { + "#": 8314 + }, + { + "#": 8318 + }, + { + "#": 8322 + }, + { + "#": 8326 + }, + { + "#": 8330 + }, + { + "#": 8334 + }, + { + "#": 8338 + }, + { + "#": 8342 + }, + { + "#": 8346 + }, + { + "#": 8350 + }, + { + "#": 8354 + }, + { + "#": 8358 + }, + { + "#": 8362 + }, + { + "#": 8366 + }, + { + "#": 8370 + }, + { + "#": 8374 + }, + { + "#": 8378 + }, + { + "#": 8382 + }, + { + "#": 8386 + }, + { + "#": 8390 + }, + { + "#": 8394 + }, + { + "#": 8398 + }, + { + "#": 8402 + }, + { + "#": 8406 + }, + { + "#": 8410 + }, + { + "#": 8414 + }, + { + "#": 8418 + }, + { + "#": 8422 + }, + { + "#": 8426 + }, + { + "#": 8430 + }, + { + "#": 8434 + }, + { + "#": 8438 + }, + { + "#": 8442 + }, + { + "#": 8446 + }, + { + "#": 8450 + }, + { + "#": 8454 + }, + { + "#": 8458 + }, + { + "#": 8462 + }, + { + "#": 8466 + }, + { + "#": 8470 + }, + { + "#": 8474 + }, + { + "#": 8478 + }, + { + "#": 8482 + }, + { + "#": 8486 + }, + { + "#": 8490 + }, + { + "#": 8494 + }, + { + "#": 8498 + }, + { + "#": 8502 + }, + { + "#": 8506 + }, + { + "#": 8510 + }, + { + "#": 8514 + }, + { + "#": 8518 + }, + { + "#": 8522 + }, + { + "#": 8526 + }, + { + "#": 8530 + }, + { + "#": 8534 + }, + { + "#": 8538 + }, + { + "#": 8542 + }, + { + "#": 8546 + }, + { + "#": 8550 + }, + { + "#": 8554 + }, + { + "#": 8558 + }, + { + "#": 8562 + }, + { + "#": 8566 + }, + { + "#": 8570 + }, + { + "#": 8574 + }, + { + "#": 8578 + }, + { + "#": 8582 + }, + { + "#": 8586 + }, + { + "#": 8590 + }, + { + "#": 8594 + }, + { + "#": 8598 + }, + { + "#": 8602 + }, + { + "#": 8606 + }, + { + "#": 8610 + }, + { + "#": 8614 + }, + { + "#": 8618 + }, + { + "#": 8622 + }, + { + "#": 8626 + }, + { + "#": 8630 + }, + { + "#": 8634 + }, + { + "#": 8638 + }, + { + "#": 8642 + }, + { + "#": 8646 + }, + { + "#": 8650 + }, + { + "#": 8654 + }, + { + "#": 8658 + }, + { + "#": 8662 + }, + { + "#": 8666 + }, + { + "#": 8670 + }, + { + "#": 8674 + }, + { + "#": 8678 + }, + { + "#": 8682 + }, + { + "#": 8686 + }, + { + "#": 8690 + }, + { + "#": 8694 + }, + { + "#": 8698 + }, + { + "#": 8702 + }, + { + "#": 8706 + }, + { + "#": 8710 + }, + { + "#": 8714 + }, + { + "#": 8718 + }, + { + "#": 8722 + }, + { + "#": 8726 + }, + { + "#": 8730 + }, + { + "#": 8734 + }, + { + "#": 8738 + }, + { + "#": 8742 + }, + { + "#": 8746 + }, + { + "#": 8750 + }, + { + "#": 8754 + }, + { + "#": 8758 + }, + { + "#": 8762 + }, + { + "#": 8766 + }, + { + "#": 8770 + }, + { + "#": 8774 + }, + { + "#": 8778 + }, + { + "#": 8782 + }, + { + "#": 8786 + }, + { + "#": 8790 + }, + { + "#": 8794 + }, + { + "#": 8798 + }, + { + "#": 8802 + }, + { + "#": 8806 + }, + { + "#": 8810 + }, + { + "#": 8814 + }, + { + "#": 8818 + }, + { + "#": 8822 + }, + { + "#": 8826 + }, + { + "#": 8830 + }, + { + "#": 8834 + }, + { + "#": 8838 + }, + { + "#": 8842 + }, + { + "#": 8846 + }, + { + "#": 8850 + }, + { + "#": 8854 + }, + { + "#": 8858 + }, + { + "#": 8862 + }, + { + "#": 8866 + }, + { + "#": 8870 + }, + { + "#": 8874 + }, + { + "#": 8878 + }, + { + "#": 8882 + }, + { + "#": 8886 + }, + { + "#": 8890 + }, + { + "#": 8894 + }, + { + "#": 8898 + }, + { + "#": 8902 + }, + { + "#": 8906 + }, + { + "#": 8910 + }, + { + "#": 8914 + }, + { + "#": 8918 + }, + { + "#": 8922 + }, + { + "#": 8926 + }, + { + "#": 8930 + }, + { + "#": 8934 + }, + { + "#": 8938 + }, + { + "#": 8942 + }, + { + "#": 8946 + }, + { + "#": 8950 + }, + { + "#": 8954 + }, + { + "#": 8958 + }, + { + "#": 8962 + }, + { + "#": 8966 + }, + { + "#": 8970 + }, + { + "#": 8974 + }, + { + "#": 8978 + }, + { + "#": 8982 + }, + { + "#": 8986 + }, + { + "#": 8990 + }, + { + "#": 8994 + }, + { + "#": 8998 + }, + { + "#": 9002 + }, + { + "#": 9006 + }, + { + "#": 9010 + }, + { + "#": 9014 + }, + { + "#": 9018 + }, + { + "#": 9022 + }, + { + "#": 9026 + }, + { + "#": 9030 + }, + { + "#": 9034 + }, + { + "#": 9038 + }, + { + "#": 9042 + }, + { + "#": 9046 + }, + { + "#": 9050 + }, + { + "#": 9054 + }, + { + "#": 9058 + }, + { + "#": 9062 + }, + { + "#": 9066 + }, + { + "#": 9070 + }, + { + "#": 9074 + }, + { + "#": 9078 + }, + { + "#": 9082 + }, + { + "#": 9086 + }, + { + "#": 9090 + }, + { + "#": 9094 + }, + { + "#": 9098 + }, + { + "#": 9102 + }, + { + "#": 9106 + }, + { + "#": 9110 + }, + { + "#": 9114 + }, + { + "#": 9118 + }, + { + "#": 9122 + }, + { + "#": 9126 + }, + { + "#": 9130 + }, + { + "#": 9134 + }, + { + "#": 9138 + }, + { + "#": 9142 + }, + { + "#": 9146 + }, + { + "#": 9150 + }, + { + "#": 9154 + }, + { + "#": 9158 + }, + { + "#": 9162 + }, + { + "#": 9166 + }, + { + "#": 9170 + }, + { + "#": 9174 + }, + { + "#": 9178 + }, + { + "#": 9182 + }, + { + "#": 9186 + }, + { + "#": 9190 + }, + { + "#": 9194 + }, + { + "#": 9198 + }, + { + "#": 9202 + }, + { + "#": 9206 + }, + { + "#": 9210 + }, + { + "#": 9214 + }, + { + "#": 9218 + }, + { + "#": 9222 + }, + { + "#": 9226 + }, + { + "#": 9230 + }, + { + "#": 9234 + }, + { + "#": 9238 + }, + { + "#": 9242 + }, + { + "#": 9246 + }, + { + "#": 9250 + }, + { + "#": 9254 + }, + { + "#": 9258 + }, + { + "#": 9262 + }, + { + "#": 9266 + }, + { + "#": 9270 + }, + { + "#": 9274 + }, + { + "#": 9278 + }, + { + "#": 9282 + }, + { + "#": 9286 + }, + { + "#": 9290 + }, + { + "#": 9294 + }, + { + "#": 9298 + }, + { + "#": 9302 + }, + { + "#": 9306 + }, + { + "#": 9310 + }, + { + "#": 9314 + }, + { + "#": 9318 + }, + { + "#": 9322 + }, + { + "#": 9326 + }, + { + "#": 9330 + }, + { + "#": 9334 + }, + { + "#": 9338 + }, + { + "#": 9342 + }, + { + "#": 9346 + }, + { + "#": 9350 + }, + { + "#": 9354 + }, + { + "#": 9358 + }, + { + "#": 9362 + }, + { + "#": 9366 + }, + { + "#": 9370 + }, + { + "#": 9374 + }, + { + "#": 9378 + }, + { + "#": 9382 + }, + { + "#": 9386 + }, + { + "#": 9390 + }, + { + "#": 9394 + }, + { + "#": 9398 + }, + { + "#": 9402 + }, + { + "#": 9406 + }, + { + "#": 9410 + }, + { + "#": 9414 + }, + { + "#": 9418 + }, + { + "#": 9422 + }, + { + "#": 9426 + }, + { + "#": 9430 + }, + { + "#": 9434 + }, + { + "#": 9438 + }, + { + "#": 9442 + }, + { + "#": 9446 + }, + { + "#": 9450 + }, + { + "#": 9454 + }, + { + "#": 9458 + }, + { + "#": 9462 + }, + { + "#": 9466 + }, + { + "#": 9470 + }, + { + "#": 9474 + }, + { + "#": 9478 + }, + { + "#": 9482 + }, + { + "#": 9486 + }, + { + "#": 9490 + }, + { + "#": 9494 + }, + { + "#": 9498 + }, + { + "#": 9502 + }, + { + "#": 9506 + }, + { + "#": 9510 + }, + { + "#": 9514 + }, + { + "#": 9518 + }, + { + "#": 9522 + }, + { + "#": 9526 + }, + { + "#": 9530 + }, + { + "#": 9534 + }, + { + "#": 9538 + }, + { + "#": 9542 + }, + { + "#": 9546 + }, + { + "#": 9550 + }, + { + "#": 9554 + }, + { + "#": 9558 + }, + { + "#": 9562 + }, + { + "#": 9566 + }, + { + "#": 9570 + }, + { + "#": 9574 + }, + { + "#": 9578 + }, + { + "#": 9582 + }, + { + "#": 9586 + }, + { + "#": 9590 + }, + { + "#": 9594 + }, + { + "#": 9598 + }, + { + "#": 9602 + }, + { + "#": 9606 + }, + { + "#": 9610 + }, + { + "#": 9614 + }, + { + "#": 9618 + }, + { + "#": 9622 + }, + { + "#": 9626 + }, + { + "#": 9630 + }, + { + "#": 9634 + }, + { + "#": 9638 + }, + { + "#": 9642 + }, + { + "#": 9646 + } + ], + { + "bodyA": { + "#": 177 + }, + "bodyB": { + "#": 209 + }, + "stiffness": 0.4, + "pointA": { + "#": 7859 + }, + "pointB": { + "#": 7860 + }, + "length": 20.216, + "render": { + "#": 7861 + }, + "id": 245, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 209 + }, + "bodyB": { + "#": 241 + }, + "stiffness": 0.4, + "pointA": { + "#": 7863 + }, + "pointB": { + "#": 7864 + }, + "length": 20.216, + "render": { + "#": 7865 + }, + "id": 246, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 241 + }, + "bodyB": { + "#": 273 + }, + "stiffness": 0.4, + "pointA": { + "#": 7867 + }, + "pointB": { + "#": 7868 + }, + "length": 20.216, + "render": { + "#": 7869 + }, + "id": 247, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 273 + }, + "bodyB": { + "#": 305 + }, + "stiffness": 0.4, + "pointA": { + "#": 7871 + }, + "pointB": { + "#": 7872 + }, + "length": 20.216, + "render": { + "#": 7873 + }, + "id": 248, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 305 + }, + "bodyB": { + "#": 337 + }, + "stiffness": 0.4, + "pointA": { + "#": 7875 + }, + "pointB": { + "#": 7876 + }, + "length": 20.216, + "render": { + "#": 7877 + }, + "id": 249, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 337 + }, + "bodyB": { + "#": 369 + }, + "stiffness": 0.4, + "pointA": { + "#": 7879 + }, + "pointB": { + "#": 7880 + }, + "length": 20.216, + "render": { + "#": 7881 + }, + "id": 250, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 369 + }, + "bodyB": { + "#": 401 + }, + "stiffness": 0.4, + "pointA": { + "#": 7883 + }, + "pointB": { + "#": 7884 + }, + "length": 20.216, + "render": { + "#": 7885 + }, + "id": 251, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 401 + }, + "bodyB": { + "#": 433 + }, + "stiffness": 0.4, + "pointA": { + "#": 7887 + }, + "pointB": { + "#": 7888 + }, + "length": 20.216, + "render": { + "#": 7889 + }, + "id": 252, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 433 + }, + "bodyB": { + "#": 465 + }, + "stiffness": 0.4, + "pointA": { + "#": 7891 + }, + "pointB": { + "#": 7892 + }, + "length": 20.216, + "render": { + "#": 7893 + }, + "id": 253, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 465 + }, + "bodyB": { + "#": 497 + }, + "stiffness": 0.4, + "pointA": { + "#": 7895 + }, + "pointB": { + "#": 7896 + }, + "length": 20.216, + "render": { + "#": 7897 + }, + "id": 254, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 497 + }, + "bodyB": { + "#": 529 + }, + "stiffness": 0.4, + "pointA": { + "#": 7899 + }, + "pointB": { + "#": 7900 + }, + "length": 20.216, + "render": { + "#": 7901 + }, + "id": 255, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 529 + }, + "bodyB": { + "#": 561 + }, + "stiffness": 0.4, + "pointA": { + "#": 7903 + }, + "pointB": { + "#": 7904 + }, + "length": 20.216, + "render": { + "#": 7905 + }, + "id": 256, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 561 + }, + "bodyB": { + "#": 593 + }, + "stiffness": 0.4, + "pointA": { + "#": 7907 + }, + "pointB": { + "#": 7908 + }, + "length": 20.216, + "render": { + "#": 7909 + }, + "id": 257, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 593 + }, + "bodyB": { + "#": 625 + }, + "stiffness": 0.4, + "pointA": { + "#": 7911 + }, + "pointB": { + "#": 7912 + }, + "length": 20.216, + "render": { + "#": 7913 + }, + "id": 258, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 625 + }, + "bodyB": { + "#": 657 + }, + "stiffness": 0.4, + "pointA": { + "#": 7915 + }, + "pointB": { + "#": 7916 + }, + "length": 20.216, + "render": { + "#": 7917 + }, + "id": 259, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 657 + }, + "bodyB": { + "#": 689 + }, + "stiffness": 0.4, + "pointA": { + "#": 7919 + }, + "pointB": { + "#": 7920 + }, + "length": 20.216, + "render": { + "#": 7921 + }, + "id": 260, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 689 + }, + "bodyB": { + "#": 721 + }, + "stiffness": 0.4, + "pointA": { + "#": 7923 + }, + "pointB": { + "#": 7924 + }, + "length": 20.216, + "render": { + "#": 7925 + }, + "id": 261, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 721 + }, + "bodyB": { + "#": 753 + }, + "stiffness": 0.4, + "pointA": { + "#": 7927 + }, + "pointB": { + "#": 7928 + }, + "length": 20.216, + "render": { + "#": 7929 + }, + "id": 262, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 753 + }, + "bodyB": { + "#": 785 + }, + "stiffness": 0.4, + "pointA": { + "#": 7931 + }, + "pointB": { + "#": 7932 + }, + "length": 20.216, + "render": { + "#": 7933 + }, + "id": 263, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 817 + }, + "bodyB": { + "#": 849 + }, + "stiffness": 0.4, + "pointA": { + "#": 7935 + }, + "pointB": { + "#": 7936 + }, + "length": 20.216, + "render": { + "#": 7937 + }, + "id": 264, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 849 + }, + "bodyB": { + "#": 881 + }, + "stiffness": 0.4, + "pointA": { + "#": 7939 + }, + "pointB": { + "#": 7940 + }, + "length": 20.216, + "render": { + "#": 7941 + }, + "id": 265, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 881 + }, + "bodyB": { + "#": 913 + }, + "stiffness": 0.4, + "pointA": { + "#": 7943 + }, + "pointB": { + "#": 7944 + }, + "length": 20.216, + "render": { + "#": 7945 + }, + "id": 266, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 913 + }, + "bodyB": { + "#": 945 + }, + "stiffness": 0.4, + "pointA": { + "#": 7947 + }, + "pointB": { + "#": 7948 + }, + "length": 20.216, + "render": { + "#": 7949 + }, + "id": 267, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 945 + }, + "bodyB": { + "#": 977 + }, + "stiffness": 0.4, + "pointA": { + "#": 7951 + }, + "pointB": { + "#": 7952 + }, + "length": 20.216, + "render": { + "#": 7953 + }, + "id": 268, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 977 + }, + "bodyB": { + "#": 1009 + }, + "stiffness": 0.4, + "pointA": { + "#": 7955 + }, + "pointB": { + "#": 7956 + }, + "length": 20.216, + "render": { + "#": 7957 + }, + "id": 269, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1009 + }, + "bodyB": { + "#": 1041 + }, + "stiffness": 0.4, + "pointA": { + "#": 7959 + }, + "pointB": { + "#": 7960 + }, + "length": 20.216, + "render": { + "#": 7961 + }, + "id": 270, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1041 + }, + "bodyB": { + "#": 1073 + }, + "stiffness": 0.4, + "pointA": { + "#": 7963 + }, + "pointB": { + "#": 7964 + }, + "length": 20.216, + "render": { + "#": 7965 + }, + "id": 271, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1073 + }, + "bodyB": { + "#": 1105 + }, + "stiffness": 0.4, + "pointA": { + "#": 7967 + }, + "pointB": { + "#": 7968 + }, + "length": 20.216, + "render": { + "#": 7969 + }, + "id": 272, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1105 + }, + "bodyB": { + "#": 1137 + }, + "stiffness": 0.4, + "pointA": { + "#": 7971 + }, + "pointB": { + "#": 7972 + }, + "length": 20.216, + "render": { + "#": 7973 + }, + "id": 273, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1137 + }, + "bodyB": { + "#": 1169 + }, + "stiffness": 0.4, + "pointA": { + "#": 7975 + }, + "pointB": { + "#": 7976 + }, + "length": 20.216, + "render": { + "#": 7977 + }, + "id": 274, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1169 + }, + "bodyB": { + "#": 1201 + }, + "stiffness": 0.4, + "pointA": { + "#": 7979 + }, + "pointB": { + "#": 7980 + }, + "length": 20.216, + "render": { + "#": 7981 + }, + "id": 275, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1201 + }, + "bodyB": { + "#": 1233 + }, + "stiffness": 0.4, + "pointA": { + "#": 7983 + }, + "pointB": { + "#": 7984 + }, + "length": 20.216, + "render": { + "#": 7985 + }, + "id": 276, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1233 + }, + "bodyB": { + "#": 1265 + }, + "stiffness": 0.4, + "pointA": { + "#": 7987 + }, + "pointB": { + "#": 7988 + }, + "length": 20.216, + "render": { + "#": 7989 + }, + "id": 277, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1265 + }, + "bodyB": { + "#": 1297 + }, + "stiffness": 0.4, + "pointA": { + "#": 7991 + }, + "pointB": { + "#": 7992 + }, + "length": 20.216, + "render": { + "#": 7993 + }, + "id": 278, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1297 + }, + "bodyB": { + "#": 1329 + }, + "stiffness": 0.4, + "pointA": { + "#": 7995 + }, + "pointB": { + "#": 7996 + }, + "length": 20.216, + "render": { + "#": 7997 + }, + "id": 279, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1329 + }, + "bodyB": { + "#": 1361 + }, + "stiffness": 0.4, + "pointA": { + "#": 7999 + }, + "pointB": { + "#": 8000 + }, + "length": 20.216, + "render": { + "#": 8001 + }, + "id": 280, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1361 + }, + "bodyB": { + "#": 1393 + }, + "stiffness": 0.4, + "pointA": { + "#": 8003 + }, + "pointB": { + "#": 8004 + }, + "length": 20.216, + "render": { + "#": 8005 + }, + "id": 281, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1393 + }, + "bodyB": { + "#": 1425 + }, + "stiffness": 0.4, + "pointA": { + "#": 8007 + }, + "pointB": { + "#": 8008 + }, + "length": 20.216, + "render": { + "#": 8009 + }, + "id": 282, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 177 + }, + "bodyB": { + "#": 817 + }, + "stiffness": 0.4, + "pointA": { + "#": 8011 + }, + "pointB": { + "#": 8012 + }, + "length": 21, + "render": { + "#": 8013 + }, + "id": 283, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 209 + }, + "bodyB": { + "#": 849 + }, + "stiffness": 0.4, + "pointA": { + "#": 8015 + }, + "pointB": { + "#": 8016 + }, + "length": 21, + "render": { + "#": 8017 + }, + "id": 284, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 241 + }, + "bodyB": { + "#": 881 + }, + "stiffness": 0.4, + "pointA": { + "#": 8019 + }, + "pointB": { + "#": 8020 + }, + "length": 21, + "render": { + "#": 8021 + }, + "id": 285, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 273 + }, + "bodyB": { + "#": 913 + }, + "stiffness": 0.4, + "pointA": { + "#": 8023 + }, + "pointB": { + "#": 8024 + }, + "length": 21, + "render": { + "#": 8025 + }, + "id": 286, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 305 + }, + "bodyB": { + "#": 945 + }, + "stiffness": 0.4, + "pointA": { + "#": 8027 + }, + "pointB": { + "#": 8028 + }, + "length": 21, + "render": { + "#": 8029 + }, + "id": 287, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 337 + }, + "bodyB": { + "#": 977 + }, + "stiffness": 0.4, + "pointA": { + "#": 8031 + }, + "pointB": { + "#": 8032 + }, + "length": 21, + "render": { + "#": 8033 + }, + "id": 288, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 369 + }, + "bodyB": { + "#": 1009 + }, + "stiffness": 0.4, + "pointA": { + "#": 8035 + }, + "pointB": { + "#": 8036 + }, + "length": 21, + "render": { + "#": 8037 + }, + "id": 289, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 401 + }, + "bodyB": { + "#": 1041 + }, + "stiffness": 0.4, + "pointA": { + "#": 8039 + }, + "pointB": { + "#": 8040 + }, + "length": 21, + "render": { + "#": 8041 + }, + "id": 290, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 433 + }, + "bodyB": { + "#": 1073 + }, + "stiffness": 0.4, + "pointA": { + "#": 8043 + }, + "pointB": { + "#": 8044 + }, + "length": 21, + "render": { + "#": 8045 + }, + "id": 291, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 465 + }, + "bodyB": { + "#": 1105 + }, + "stiffness": 0.4, + "pointA": { + "#": 8047 + }, + "pointB": { + "#": 8048 + }, + "length": 21, + "render": { + "#": 8049 + }, + "id": 292, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 497 + }, + "bodyB": { + "#": 1137 + }, + "stiffness": 0.4, + "pointA": { + "#": 8051 + }, + "pointB": { + "#": 8052 + }, + "length": 21, + "render": { + "#": 8053 + }, + "id": 293, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 529 + }, + "bodyB": { + "#": 1169 + }, + "stiffness": 0.4, + "pointA": { + "#": 8055 + }, + "pointB": { + "#": 8056 + }, + "length": 21, + "render": { + "#": 8057 + }, + "id": 294, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 561 + }, + "bodyB": { + "#": 1201 + }, + "stiffness": 0.4, + "pointA": { + "#": 8059 + }, + "pointB": { + "#": 8060 + }, + "length": 21, + "render": { + "#": 8061 + }, + "id": 295, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 593 + }, + "bodyB": { + "#": 1233 + }, + "stiffness": 0.4, + "pointA": { + "#": 8063 + }, + "pointB": { + "#": 8064 + }, + "length": 21, + "render": { + "#": 8065 + }, + "id": 296, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 625 + }, + "bodyB": { + "#": 1265 + }, + "stiffness": 0.4, + "pointA": { + "#": 8067 + }, + "pointB": { + "#": 8068 + }, + "length": 21, + "render": { + "#": 8069 + }, + "id": 297, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 657 + }, + "bodyB": { + "#": 1297 + }, + "stiffness": 0.4, + "pointA": { + "#": 8071 + }, + "pointB": { + "#": 8072 + }, + "length": 21, + "render": { + "#": 8073 + }, + "id": 298, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 689 + }, + "bodyB": { + "#": 1329 + }, + "stiffness": 0.4, + "pointA": { + "#": 8075 + }, + "pointB": { + "#": 8076 + }, + "length": 21, + "render": { + "#": 8077 + }, + "id": 299, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 721 + }, + "bodyB": { + "#": 1361 + }, + "stiffness": 0.4, + "pointA": { + "#": 8079 + }, + "pointB": { + "#": 8080 + }, + "length": 21, + "render": { + "#": 8081 + }, + "id": 300, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 753 + }, + "bodyB": { + "#": 1393 + }, + "stiffness": 0.4, + "pointA": { + "#": 8083 + }, + "pointB": { + "#": 8084 + }, + "length": 21, + "render": { + "#": 8085 + }, + "id": 301, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 785 + }, + "bodyB": { + "#": 1425 + }, + "stiffness": 0.4, + "pointA": { + "#": 8087 + }, + "pointB": { + "#": 8088 + }, + "length": 21, + "render": { + "#": 8089 + }, + "id": 302, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1457 + }, + "bodyB": { + "#": 1489 + }, + "stiffness": 0.4, + "pointA": { + "#": 8091 + }, + "pointB": { + "#": 8092 + }, + "length": 20.216, + "render": { + "#": 8093 + }, + "id": 303, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1489 + }, + "bodyB": { + "#": 1521 + }, + "stiffness": 0.4, + "pointA": { + "#": 8095 + }, + "pointB": { + "#": 8096 + }, + "length": 20.216, + "render": { + "#": 8097 + }, + "id": 304, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1521 + }, + "bodyB": { + "#": 1553 + }, + "stiffness": 0.4, + "pointA": { + "#": 8099 + }, + "pointB": { + "#": 8100 + }, + "length": 20.216, + "render": { + "#": 8101 + }, + "id": 305, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1553 + }, + "bodyB": { + "#": 1585 + }, + "stiffness": 0.4, + "pointA": { + "#": 8103 + }, + "pointB": { + "#": 8104 + }, + "length": 20.216, + "render": { + "#": 8105 + }, + "id": 306, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1585 + }, + "bodyB": { + "#": 1617 + }, + "stiffness": 0.4, + "pointA": { + "#": 8107 + }, + "pointB": { + "#": 8108 + }, + "length": 20.216, + "render": { + "#": 8109 + }, + "id": 307, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1617 + }, + "bodyB": { + "#": 1649 + }, + "stiffness": 0.4, + "pointA": { + "#": 8111 + }, + "pointB": { + "#": 8112 + }, + "length": 20.216, + "render": { + "#": 8113 + }, + "id": 308, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1649 + }, + "bodyB": { + "#": 1681 + }, + "stiffness": 0.4, + "pointA": { + "#": 8115 + }, + "pointB": { + "#": 8116 + }, + "length": 20.216, + "render": { + "#": 8117 + }, + "id": 309, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1681 + }, + "bodyB": { + "#": 1713 + }, + "stiffness": 0.4, + "pointA": { + "#": 8119 + }, + "pointB": { + "#": 8120 + }, + "length": 20.216, + "render": { + "#": 8121 + }, + "id": 310, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1713 + }, + "bodyB": { + "#": 1745 + }, + "stiffness": 0.4, + "pointA": { + "#": 8123 + }, + "pointB": { + "#": 8124 + }, + "length": 20.216, + "render": { + "#": 8125 + }, + "id": 311, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1745 + }, + "bodyB": { + "#": 1777 + }, + "stiffness": 0.4, + "pointA": { + "#": 8127 + }, + "pointB": { + "#": 8128 + }, + "length": 20.216, + "render": { + "#": 8129 + }, + "id": 312, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1777 + }, + "bodyB": { + "#": 1809 + }, + "stiffness": 0.4, + "pointA": { + "#": 8131 + }, + "pointB": { + "#": 8132 + }, + "length": 20.216, + "render": { + "#": 8133 + }, + "id": 313, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1809 + }, + "bodyB": { + "#": 1841 + }, + "stiffness": 0.4, + "pointA": { + "#": 8135 + }, + "pointB": { + "#": 8136 + }, + "length": 20.216, + "render": { + "#": 8137 + }, + "id": 314, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1841 + }, + "bodyB": { + "#": 1873 + }, + "stiffness": 0.4, + "pointA": { + "#": 8139 + }, + "pointB": { + "#": 8140 + }, + "length": 20.216, + "render": { + "#": 8141 + }, + "id": 315, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1873 + }, + "bodyB": { + "#": 1905 + }, + "stiffness": 0.4, + "pointA": { + "#": 8143 + }, + "pointB": { + "#": 8144 + }, + "length": 20.216, + "render": { + "#": 8145 + }, + "id": 316, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1905 + }, + "bodyB": { + "#": 1937 + }, + "stiffness": 0.4, + "pointA": { + "#": 8147 + }, + "pointB": { + "#": 8148 + }, + "length": 20.216, + "render": { + "#": 8149 + }, + "id": 317, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1937 + }, + "bodyB": { + "#": 1969 + }, + "stiffness": 0.4, + "pointA": { + "#": 8151 + }, + "pointB": { + "#": 8152 + }, + "length": 20.216, + "render": { + "#": 8153 + }, + "id": 318, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1969 + }, + "bodyB": { + "#": 2001 + }, + "stiffness": 0.4, + "pointA": { + "#": 8155 + }, + "pointB": { + "#": 8156 + }, + "length": 20.216, + "render": { + "#": 8157 + }, + "id": 319, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2001 + }, + "bodyB": { + "#": 2033 + }, + "stiffness": 0.4, + "pointA": { + "#": 8159 + }, + "pointB": { + "#": 8160 + }, + "length": 20.216, + "render": { + "#": 8161 + }, + "id": 320, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2033 + }, + "bodyB": { + "#": 2065 + }, + "stiffness": 0.4, + "pointA": { + "#": 8163 + }, + "pointB": { + "#": 8164 + }, + "length": 20.216, + "render": { + "#": 8165 + }, + "id": 321, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 817 + }, + "bodyB": { + "#": 1457 + }, + "stiffness": 0.4, + "pointA": { + "#": 8167 + }, + "pointB": { + "#": 8168 + }, + "length": 21, + "render": { + "#": 8169 + }, + "id": 322, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 849 + }, + "bodyB": { + "#": 1489 + }, + "stiffness": 0.4, + "pointA": { + "#": 8171 + }, + "pointB": { + "#": 8172 + }, + "length": 21, + "render": { + "#": 8173 + }, + "id": 323, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 881 + }, + "bodyB": { + "#": 1521 + }, + "stiffness": 0.4, + "pointA": { + "#": 8175 + }, + "pointB": { + "#": 8176 + }, + "length": 21, + "render": { + "#": 8177 + }, + "id": 324, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 913 + }, + "bodyB": { + "#": 1553 + }, + "stiffness": 0.4, + "pointA": { + "#": 8179 + }, + "pointB": { + "#": 8180 + }, + "length": 21, + "render": { + "#": 8181 + }, + "id": 325, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 945 + }, + "bodyB": { + "#": 1585 + }, + "stiffness": 0.4, + "pointA": { + "#": 8183 + }, + "pointB": { + "#": 8184 + }, + "length": 21, + "render": { + "#": 8185 + }, + "id": 326, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 977 + }, + "bodyB": { + "#": 1617 + }, + "stiffness": 0.4, + "pointA": { + "#": 8187 + }, + "pointB": { + "#": 8188 + }, + "length": 21, + "render": { + "#": 8189 + }, + "id": 327, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1009 + }, + "bodyB": { + "#": 1649 + }, + "stiffness": 0.4, + "pointA": { + "#": 8191 + }, + "pointB": { + "#": 8192 + }, + "length": 21, + "render": { + "#": 8193 + }, + "id": 328, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1041 + }, + "bodyB": { + "#": 1681 + }, + "stiffness": 0.4, + "pointA": { + "#": 8195 + }, + "pointB": { + "#": 8196 + }, + "length": 21, + "render": { + "#": 8197 + }, + "id": 329, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1073 + }, + "bodyB": { + "#": 1713 + }, + "stiffness": 0.4, + "pointA": { + "#": 8199 + }, + "pointB": { + "#": 8200 + }, + "length": 21, + "render": { + "#": 8201 + }, + "id": 330, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1105 + }, + "bodyB": { + "#": 1745 + }, + "stiffness": 0.4, + "pointA": { + "#": 8203 + }, + "pointB": { + "#": 8204 + }, + "length": 21, + "render": { + "#": 8205 + }, + "id": 331, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1137 + }, + "bodyB": { + "#": 1777 + }, + "stiffness": 0.4, + "pointA": { + "#": 8207 + }, + "pointB": { + "#": 8208 + }, + "length": 21, + "render": { + "#": 8209 + }, + "id": 332, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1169 + }, + "bodyB": { + "#": 1809 + }, + "stiffness": 0.4, + "pointA": { + "#": 8211 + }, + "pointB": { + "#": 8212 + }, + "length": 21, + "render": { + "#": 8213 + }, + "id": 333, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1201 + }, + "bodyB": { + "#": 1841 + }, + "stiffness": 0.4, + "pointA": { + "#": 8215 + }, + "pointB": { + "#": 8216 + }, + "length": 21, + "render": { + "#": 8217 + }, + "id": 334, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1233 + }, + "bodyB": { + "#": 1873 + }, + "stiffness": 0.4, + "pointA": { + "#": 8219 + }, + "pointB": { + "#": 8220 + }, + "length": 21, + "render": { + "#": 8221 + }, + "id": 335, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1265 + }, + "bodyB": { + "#": 1905 + }, + "stiffness": 0.4, + "pointA": { + "#": 8223 + }, + "pointB": { + "#": 8224 + }, + "length": 21, + "render": { + "#": 8225 + }, + "id": 336, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1297 + }, + "bodyB": { + "#": 1937 + }, + "stiffness": 0.4, + "pointA": { + "#": 8227 + }, + "pointB": { + "#": 8228 + }, + "length": 21, + "render": { + "#": 8229 + }, + "id": 337, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1329 + }, + "bodyB": { + "#": 1969 + }, + "stiffness": 0.4, + "pointA": { + "#": 8231 + }, + "pointB": { + "#": 8232 + }, + "length": 21, + "render": { + "#": 8233 + }, + "id": 338, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1361 + }, + "bodyB": { + "#": 2001 + }, + "stiffness": 0.4, + "pointA": { + "#": 8235 + }, + "pointB": { + "#": 8236 + }, + "length": 21, + "render": { + "#": 8237 + }, + "id": 339, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1393 + }, + "bodyB": { + "#": 2033 + }, + "stiffness": 0.4, + "pointA": { + "#": 8239 + }, + "pointB": { + "#": 8240 + }, + "length": 21, + "render": { + "#": 8241 + }, + "id": 340, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1425 + }, + "bodyB": { + "#": 2065 + }, + "stiffness": 0.4, + "pointA": { + "#": 8243 + }, + "pointB": { + "#": 8244 + }, + "length": 21, + "render": { + "#": 8245 + }, + "id": 341, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2097 + }, + "bodyB": { + "#": 2129 + }, + "stiffness": 0.4, + "pointA": { + "#": 8247 + }, + "pointB": { + "#": 8248 + }, + "length": 20.216, + "render": { + "#": 8249 + }, + "id": 342, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2129 + }, + "bodyB": { + "#": 2161 + }, + "stiffness": 0.4, + "pointA": { + "#": 8251 + }, + "pointB": { + "#": 8252 + }, + "length": 20.216, + "render": { + "#": 8253 + }, + "id": 343, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2161 + }, + "bodyB": { + "#": 2193 + }, + "stiffness": 0.4, + "pointA": { + "#": 8255 + }, + "pointB": { + "#": 8256 + }, + "length": 20.216, + "render": { + "#": 8257 + }, + "id": 344, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2193 + }, + "bodyB": { + "#": 2225 + }, + "stiffness": 0.4, + "pointA": { + "#": 8259 + }, + "pointB": { + "#": 8260 + }, + "length": 20.216, + "render": { + "#": 8261 + }, + "id": 345, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2225 + }, + "bodyB": { + "#": 2257 + }, + "stiffness": 0.4, + "pointA": { + "#": 8263 + }, + "pointB": { + "#": 8264 + }, + "length": 20.216, + "render": { + "#": 8265 + }, + "id": 346, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2257 + }, + "bodyB": { + "#": 2289 + }, + "stiffness": 0.4, + "pointA": { + "#": 8267 + }, + "pointB": { + "#": 8268 + }, + "length": 20.216, + "render": { + "#": 8269 + }, + "id": 347, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2289 + }, + "bodyB": { + "#": 2321 + }, + "stiffness": 0.4, + "pointA": { + "#": 8271 + }, + "pointB": { + "#": 8272 + }, + "length": 20.216, + "render": { + "#": 8273 + }, + "id": 348, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2321 + }, + "bodyB": { + "#": 2353 + }, + "stiffness": 0.4, + "pointA": { + "#": 8275 + }, + "pointB": { + "#": 8276 + }, + "length": 20.216, + "render": { + "#": 8277 + }, + "id": 349, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2353 + }, + "bodyB": { + "#": 2385 + }, + "stiffness": 0.4, + "pointA": { + "#": 8279 + }, + "pointB": { + "#": 8280 + }, + "length": 20.216, + "render": { + "#": 8281 + }, + "id": 350, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2385 + }, + "bodyB": { + "#": 2417 + }, + "stiffness": 0.4, + "pointA": { + "#": 8283 + }, + "pointB": { + "#": 8284 + }, + "length": 20.216, + "render": { + "#": 8285 + }, + "id": 351, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2417 + }, + "bodyB": { + "#": 2449 + }, + "stiffness": 0.4, + "pointA": { + "#": 8287 + }, + "pointB": { + "#": 8288 + }, + "length": 20.216, + "render": { + "#": 8289 + }, + "id": 352, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2449 + }, + "bodyB": { + "#": 2481 + }, + "stiffness": 0.4, + "pointA": { + "#": 8291 + }, + "pointB": { + "#": 8292 + }, + "length": 20.216, + "render": { + "#": 8293 + }, + "id": 353, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2481 + }, + "bodyB": { + "#": 2513 + }, + "stiffness": 0.4, + "pointA": { + "#": 8295 + }, + "pointB": { + "#": 8296 + }, + "length": 20.216, + "render": { + "#": 8297 + }, + "id": 354, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2513 + }, + "bodyB": { + "#": 2545 + }, + "stiffness": 0.4, + "pointA": { + "#": 8299 + }, + "pointB": { + "#": 8300 + }, + "length": 20.216, + "render": { + "#": 8301 + }, + "id": 355, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2545 + }, + "bodyB": { + "#": 2577 + }, + "stiffness": 0.4, + "pointA": { + "#": 8303 + }, + "pointB": { + "#": 8304 + }, + "length": 20.216, + "render": { + "#": 8305 + }, + "id": 356, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2577 + }, + "bodyB": { + "#": 2609 + }, + "stiffness": 0.4, + "pointA": { + "#": 8307 + }, + "pointB": { + "#": 8308 + }, + "length": 20.216, + "render": { + "#": 8309 + }, + "id": 357, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2609 + }, + "bodyB": { + "#": 2641 + }, + "stiffness": 0.4, + "pointA": { + "#": 8311 + }, + "pointB": { + "#": 8312 + }, + "length": 20.216, + "render": { + "#": 8313 + }, + "id": 358, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2641 + }, + "bodyB": { + "#": 2673 + }, + "stiffness": 0.4, + "pointA": { + "#": 8315 + }, + "pointB": { + "#": 8316 + }, + "length": 20.216, + "render": { + "#": 8317 + }, + "id": 359, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2673 + }, + "bodyB": { + "#": 2705 + }, + "stiffness": 0.4, + "pointA": { + "#": 8319 + }, + "pointB": { + "#": 8320 + }, + "length": 20.216, + "render": { + "#": 8321 + }, + "id": 360, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1457 + }, + "bodyB": { + "#": 2097 + }, + "stiffness": 0.4, + "pointA": { + "#": 8323 + }, + "pointB": { + "#": 8324 + }, + "length": 21, + "render": { + "#": 8325 + }, + "id": 361, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1489 + }, + "bodyB": { + "#": 2129 + }, + "stiffness": 0.4, + "pointA": { + "#": 8327 + }, + "pointB": { + "#": 8328 + }, + "length": 21, + "render": { + "#": 8329 + }, + "id": 362, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1521 + }, + "bodyB": { + "#": 2161 + }, + "stiffness": 0.4, + "pointA": { + "#": 8331 + }, + "pointB": { + "#": 8332 + }, + "length": 21, + "render": { + "#": 8333 + }, + "id": 363, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1553 + }, + "bodyB": { + "#": 2193 + }, + "stiffness": 0.4, + "pointA": { + "#": 8335 + }, + "pointB": { + "#": 8336 + }, + "length": 21, + "render": { + "#": 8337 + }, + "id": 364, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1585 + }, + "bodyB": { + "#": 2225 + }, + "stiffness": 0.4, + "pointA": { + "#": 8339 + }, + "pointB": { + "#": 8340 + }, + "length": 21, + "render": { + "#": 8341 + }, + "id": 365, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1617 + }, + "bodyB": { + "#": 2257 + }, + "stiffness": 0.4, + "pointA": { + "#": 8343 + }, + "pointB": { + "#": 8344 + }, + "length": 21, + "render": { + "#": 8345 + }, + "id": 366, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1649 + }, + "bodyB": { + "#": 2289 + }, + "stiffness": 0.4, + "pointA": { + "#": 8347 + }, + "pointB": { + "#": 8348 + }, + "length": 21, + "render": { + "#": 8349 + }, + "id": 367, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1681 + }, + "bodyB": { + "#": 2321 + }, + "stiffness": 0.4, + "pointA": { + "#": 8351 + }, + "pointB": { + "#": 8352 + }, + "length": 21, + "render": { + "#": 8353 + }, + "id": 368, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1713 + }, + "bodyB": { + "#": 2353 + }, + "stiffness": 0.4, + "pointA": { + "#": 8355 + }, + "pointB": { + "#": 8356 + }, + "length": 21, + "render": { + "#": 8357 + }, + "id": 369, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1745 + }, + "bodyB": { + "#": 2385 + }, + "stiffness": 0.4, + "pointA": { + "#": 8359 + }, + "pointB": { + "#": 8360 + }, + "length": 21, + "render": { + "#": 8361 + }, + "id": 370, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1777 + }, + "bodyB": { + "#": 2417 + }, + "stiffness": 0.4, + "pointA": { + "#": 8363 + }, + "pointB": { + "#": 8364 + }, + "length": 21, + "render": { + "#": 8365 + }, + "id": 371, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1809 + }, + "bodyB": { + "#": 2449 + }, + "stiffness": 0.4, + "pointA": { + "#": 8367 + }, + "pointB": { + "#": 8368 + }, + "length": 21, + "render": { + "#": 8369 + }, + "id": 372, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1841 + }, + "bodyB": { + "#": 2481 + }, + "stiffness": 0.4, + "pointA": { + "#": 8371 + }, + "pointB": { + "#": 8372 + }, + "length": 21, + "render": { + "#": 8373 + }, + "id": 373, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1873 + }, + "bodyB": { + "#": 2513 + }, + "stiffness": 0.4, + "pointA": { + "#": 8375 + }, + "pointB": { + "#": 8376 + }, + "length": 21, + "render": { + "#": 8377 + }, + "id": 374, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1905 + }, + "bodyB": { + "#": 2545 + }, + "stiffness": 0.4, + "pointA": { + "#": 8379 + }, + "pointB": { + "#": 8380 + }, + "length": 21, + "render": { + "#": 8381 + }, + "id": 375, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1937 + }, + "bodyB": { + "#": 2577 + }, + "stiffness": 0.4, + "pointA": { + "#": 8383 + }, + "pointB": { + "#": 8384 + }, + "length": 21, + "render": { + "#": 8385 + }, + "id": 376, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1969 + }, + "bodyB": { + "#": 2609 + }, + "stiffness": 0.4, + "pointA": { + "#": 8387 + }, + "pointB": { + "#": 8388 + }, + "length": 21, + "render": { + "#": 8389 + }, + "id": 377, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2001 + }, + "bodyB": { + "#": 2641 + }, + "stiffness": 0.4, + "pointA": { + "#": 8391 + }, + "pointB": { + "#": 8392 + }, + "length": 21, + "render": { + "#": 8393 + }, + "id": 378, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2033 + }, + "bodyB": { + "#": 2673 + }, + "stiffness": 0.4, + "pointA": { + "#": 8395 + }, + "pointB": { + "#": 8396 + }, + "length": 21, + "render": { + "#": 8397 + }, + "id": 379, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2065 + }, + "bodyB": { + "#": 2705 + }, + "stiffness": 0.4, + "pointA": { + "#": 8399 + }, + "pointB": { + "#": 8400 + }, + "length": 21, + "render": { + "#": 8401 + }, + "id": 380, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2737 + }, + "bodyB": { + "#": 2769 + }, + "stiffness": 0.4, + "pointA": { + "#": 8403 + }, + "pointB": { + "#": 8404 + }, + "length": 20.216, + "render": { + "#": 8405 + }, + "id": 381, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2769 + }, + "bodyB": { + "#": 2801 + }, + "stiffness": 0.4, + "pointA": { + "#": 8407 + }, + "pointB": { + "#": 8408 + }, + "length": 20.216, + "render": { + "#": 8409 + }, + "id": 382, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2801 + }, + "bodyB": { + "#": 2833 + }, + "stiffness": 0.4, + "pointA": { + "#": 8411 + }, + "pointB": { + "#": 8412 + }, + "length": 20.216, + "render": { + "#": 8413 + }, + "id": 383, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2833 + }, + "bodyB": { + "#": 2865 + }, + "stiffness": 0.4, + "pointA": { + "#": 8415 + }, + "pointB": { + "#": 8416 + }, + "length": 20.216, + "render": { + "#": 8417 + }, + "id": 384, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2865 + }, + "bodyB": { + "#": 2897 + }, + "stiffness": 0.4, + "pointA": { + "#": 8419 + }, + "pointB": { + "#": 8420 + }, + "length": 20.216, + "render": { + "#": 8421 + }, + "id": 385, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2897 + }, + "bodyB": { + "#": 2929 + }, + "stiffness": 0.4, + "pointA": { + "#": 8423 + }, + "pointB": { + "#": 8424 + }, + "length": 20.216, + "render": { + "#": 8425 + }, + "id": 386, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2929 + }, + "bodyB": { + "#": 2961 + }, + "stiffness": 0.4, + "pointA": { + "#": 8427 + }, + "pointB": { + "#": 8428 + }, + "length": 20.216, + "render": { + "#": 8429 + }, + "id": 387, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2961 + }, + "bodyB": { + "#": 2993 + }, + "stiffness": 0.4, + "pointA": { + "#": 8431 + }, + "pointB": { + "#": 8432 + }, + "length": 20.216, + "render": { + "#": 8433 + }, + "id": 388, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2993 + }, + "bodyB": { + "#": 3025 + }, + "stiffness": 0.4, + "pointA": { + "#": 8435 + }, + "pointB": { + "#": 8436 + }, + "length": 20.216, + "render": { + "#": 8437 + }, + "id": 389, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3025 + }, + "bodyB": { + "#": 3057 + }, + "stiffness": 0.4, + "pointA": { + "#": 8439 + }, + "pointB": { + "#": 8440 + }, + "length": 20.216, + "render": { + "#": 8441 + }, + "id": 390, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3057 + }, + "bodyB": { + "#": 3089 + }, + "stiffness": 0.4, + "pointA": { + "#": 8443 + }, + "pointB": { + "#": 8444 + }, + "length": 20.216, + "render": { + "#": 8445 + }, + "id": 391, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3089 + }, + "bodyB": { + "#": 3121 + }, + "stiffness": 0.4, + "pointA": { + "#": 8447 + }, + "pointB": { + "#": 8448 + }, + "length": 20.216, + "render": { + "#": 8449 + }, + "id": 392, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3121 + }, + "bodyB": { + "#": 3153 + }, + "stiffness": 0.4, + "pointA": { + "#": 8451 + }, + "pointB": { + "#": 8452 + }, + "length": 20.216, + "render": { + "#": 8453 + }, + "id": 393, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3153 + }, + "bodyB": { + "#": 3185 + }, + "stiffness": 0.4, + "pointA": { + "#": 8455 + }, + "pointB": { + "#": 8456 + }, + "length": 20.216, + "render": { + "#": 8457 + }, + "id": 394, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3185 + }, + "bodyB": { + "#": 3217 + }, + "stiffness": 0.4, + "pointA": { + "#": 8459 + }, + "pointB": { + "#": 8460 + }, + "length": 20.216, + "render": { + "#": 8461 + }, + "id": 395, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3217 + }, + "bodyB": { + "#": 3249 + }, + "stiffness": 0.4, + "pointA": { + "#": 8463 + }, + "pointB": { + "#": 8464 + }, + "length": 20.216, + "render": { + "#": 8465 + }, + "id": 396, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3249 + }, + "bodyB": { + "#": 3281 + }, + "stiffness": 0.4, + "pointA": { + "#": 8467 + }, + "pointB": { + "#": 8468 + }, + "length": 20.216, + "render": { + "#": 8469 + }, + "id": 397, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3281 + }, + "bodyB": { + "#": 3313 + }, + "stiffness": 0.4, + "pointA": { + "#": 8471 + }, + "pointB": { + "#": 8472 + }, + "length": 20.216, + "render": { + "#": 8473 + }, + "id": 398, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3313 + }, + "bodyB": { + "#": 3345 + }, + "stiffness": 0.4, + "pointA": { + "#": 8475 + }, + "pointB": { + "#": 8476 + }, + "length": 20.216, + "render": { + "#": 8477 + }, + "id": 399, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2097 + }, + "bodyB": { + "#": 2737 + }, + "stiffness": 0.4, + "pointA": { + "#": 8479 + }, + "pointB": { + "#": 8480 + }, + "length": 21, + "render": { + "#": 8481 + }, + "id": 400, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2129 + }, + "bodyB": { + "#": 2769 + }, + "stiffness": 0.4, + "pointA": { + "#": 8483 + }, + "pointB": { + "#": 8484 + }, + "length": 21, + "render": { + "#": 8485 + }, + "id": 401, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2161 + }, + "bodyB": { + "#": 2801 + }, + "stiffness": 0.4, + "pointA": { + "#": 8487 + }, + "pointB": { + "#": 8488 + }, + "length": 21, + "render": { + "#": 8489 + }, + "id": 402, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2193 + }, + "bodyB": { + "#": 2833 + }, + "stiffness": 0.4, + "pointA": { + "#": 8491 + }, + "pointB": { + "#": 8492 + }, + "length": 21, + "render": { + "#": 8493 + }, + "id": 403, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2225 + }, + "bodyB": { + "#": 2865 + }, + "stiffness": 0.4, + "pointA": { + "#": 8495 + }, + "pointB": { + "#": 8496 + }, + "length": 21, + "render": { + "#": 8497 + }, + "id": 404, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2257 + }, + "bodyB": { + "#": 2897 + }, + "stiffness": 0.4, + "pointA": { + "#": 8499 + }, + "pointB": { + "#": 8500 + }, + "length": 21, + "render": { + "#": 8501 + }, + "id": 405, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2289 + }, + "bodyB": { + "#": 2929 + }, + "stiffness": 0.4, + "pointA": { + "#": 8503 + }, + "pointB": { + "#": 8504 + }, + "length": 21, + "render": { + "#": 8505 + }, + "id": 406, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2321 + }, + "bodyB": { + "#": 2961 + }, + "stiffness": 0.4, + "pointA": { + "#": 8507 + }, + "pointB": { + "#": 8508 + }, + "length": 21, + "render": { + "#": 8509 + }, + "id": 407, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2353 + }, + "bodyB": { + "#": 2993 + }, + "stiffness": 0.4, + "pointA": { + "#": 8511 + }, + "pointB": { + "#": 8512 + }, + "length": 21, + "render": { + "#": 8513 + }, + "id": 408, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2385 + }, + "bodyB": { + "#": 3025 + }, + "stiffness": 0.4, + "pointA": { + "#": 8515 + }, + "pointB": { + "#": 8516 + }, + "length": 21, + "render": { + "#": 8517 + }, + "id": 409, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2417 + }, + "bodyB": { + "#": 3057 + }, + "stiffness": 0.4, + "pointA": { + "#": 8519 + }, + "pointB": { + "#": 8520 + }, + "length": 21, + "render": { + "#": 8521 + }, + "id": 410, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2449 + }, + "bodyB": { + "#": 3089 + }, + "stiffness": 0.4, + "pointA": { + "#": 8523 + }, + "pointB": { + "#": 8524 + }, + "length": 21, + "render": { + "#": 8525 + }, + "id": 411, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2481 + }, + "bodyB": { + "#": 3121 + }, + "stiffness": 0.4, + "pointA": { + "#": 8527 + }, + "pointB": { + "#": 8528 + }, + "length": 21, + "render": { + "#": 8529 + }, + "id": 412, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2513 + }, + "bodyB": { + "#": 3153 + }, + "stiffness": 0.4, + "pointA": { + "#": 8531 + }, + "pointB": { + "#": 8532 + }, + "length": 21, + "render": { + "#": 8533 + }, + "id": 413, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2545 + }, + "bodyB": { + "#": 3185 + }, + "stiffness": 0.4, + "pointA": { + "#": 8535 + }, + "pointB": { + "#": 8536 + }, + "length": 21, + "render": { + "#": 8537 + }, + "id": 414, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2577 + }, + "bodyB": { + "#": 3217 + }, + "stiffness": 0.4, + "pointA": { + "#": 8539 + }, + "pointB": { + "#": 8540 + }, + "length": 21, + "render": { + "#": 8541 + }, + "id": 415, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2609 + }, + "bodyB": { + "#": 3249 + }, + "stiffness": 0.4, + "pointA": { + "#": 8543 + }, + "pointB": { + "#": 8544 + }, + "length": 21, + "render": { + "#": 8545 + }, + "id": 416, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2641 + }, + "bodyB": { + "#": 3281 + }, + "stiffness": 0.4, + "pointA": { + "#": 8547 + }, + "pointB": { + "#": 8548 + }, + "length": 21, + "render": { + "#": 8549 + }, + "id": 417, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2673 + }, + "bodyB": { + "#": 3313 + }, + "stiffness": 0.4, + "pointA": { + "#": 8551 + }, + "pointB": { + "#": 8552 + }, + "length": 21, + "render": { + "#": 8553 + }, + "id": 418, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2705 + }, + "bodyB": { + "#": 3345 + }, + "stiffness": 0.4, + "pointA": { + "#": 8555 + }, + "pointB": { + "#": 8556 + }, + "length": 21, + "render": { + "#": 8557 + }, + "id": 419, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3377 + }, + "bodyB": { + "#": 3409 + }, + "stiffness": 0.4, + "pointA": { + "#": 8559 + }, + "pointB": { + "#": 8560 + }, + "length": 20.216, + "render": { + "#": 8561 + }, + "id": 420, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3409 + }, + "bodyB": { + "#": 3441 + }, + "stiffness": 0.4, + "pointA": { + "#": 8563 + }, + "pointB": { + "#": 8564 + }, + "length": 20.216, + "render": { + "#": 8565 + }, + "id": 421, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3441 + }, + "bodyB": { + "#": 3473 + }, + "stiffness": 0.4, + "pointA": { + "#": 8567 + }, + "pointB": { + "#": 8568 + }, + "length": 20.216, + "render": { + "#": 8569 + }, + "id": 422, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3473 + }, + "bodyB": { + "#": 3505 + }, + "stiffness": 0.4, + "pointA": { + "#": 8571 + }, + "pointB": { + "#": 8572 + }, + "length": 20.216, + "render": { + "#": 8573 + }, + "id": 423, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3505 + }, + "bodyB": { + "#": 3537 + }, + "stiffness": 0.4, + "pointA": { + "#": 8575 + }, + "pointB": { + "#": 8576 + }, + "length": 20.216, + "render": { + "#": 8577 + }, + "id": 424, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3537 + }, + "bodyB": { + "#": 3569 + }, + "stiffness": 0.4, + "pointA": { + "#": 8579 + }, + "pointB": { + "#": 8580 + }, + "length": 20.216, + "render": { + "#": 8581 + }, + "id": 425, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3569 + }, + "bodyB": { + "#": 3601 + }, + "stiffness": 0.4, + "pointA": { + "#": 8583 + }, + "pointB": { + "#": 8584 + }, + "length": 20.216, + "render": { + "#": 8585 + }, + "id": 426, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3601 + }, + "bodyB": { + "#": 3633 + }, + "stiffness": 0.4, + "pointA": { + "#": 8587 + }, + "pointB": { + "#": 8588 + }, + "length": 20.216, + "render": { + "#": 8589 + }, + "id": 427, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3633 + }, + "bodyB": { + "#": 3665 + }, + "stiffness": 0.4, + "pointA": { + "#": 8591 + }, + "pointB": { + "#": 8592 + }, + "length": 20.216, + "render": { + "#": 8593 + }, + "id": 428, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3665 + }, + "bodyB": { + "#": 3697 + }, + "stiffness": 0.4, + "pointA": { + "#": 8595 + }, + "pointB": { + "#": 8596 + }, + "length": 20.216, + "render": { + "#": 8597 + }, + "id": 429, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3697 + }, + "bodyB": { + "#": 3729 + }, + "stiffness": 0.4, + "pointA": { + "#": 8599 + }, + "pointB": { + "#": 8600 + }, + "length": 20.216, + "render": { + "#": 8601 + }, + "id": 430, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3729 + }, + "bodyB": { + "#": 3761 + }, + "stiffness": 0.4, + "pointA": { + "#": 8603 + }, + "pointB": { + "#": 8604 + }, + "length": 20.216, + "render": { + "#": 8605 + }, + "id": 431, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3761 + }, + "bodyB": { + "#": 3793 + }, + "stiffness": 0.4, + "pointA": { + "#": 8607 + }, + "pointB": { + "#": 8608 + }, + "length": 20.216, + "render": { + "#": 8609 + }, + "id": 432, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3793 + }, + "bodyB": { + "#": 3825 + }, + "stiffness": 0.4, + "pointA": { + "#": 8611 + }, + "pointB": { + "#": 8612 + }, + "length": 20.216, + "render": { + "#": 8613 + }, + "id": 433, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3825 + }, + "bodyB": { + "#": 3857 + }, + "stiffness": 0.4, + "pointA": { + "#": 8615 + }, + "pointB": { + "#": 8616 + }, + "length": 20.216, + "render": { + "#": 8617 + }, + "id": 434, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3857 + }, + "bodyB": { + "#": 3889 + }, + "stiffness": 0.4, + "pointA": { + "#": 8619 + }, + "pointB": { + "#": 8620 + }, + "length": 20.216, + "render": { + "#": 8621 + }, + "id": 435, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3889 + }, + "bodyB": { + "#": 3921 + }, + "stiffness": 0.4, + "pointA": { + "#": 8623 + }, + "pointB": { + "#": 8624 + }, + "length": 20.216, + "render": { + "#": 8625 + }, + "id": 436, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3921 + }, + "bodyB": { + "#": 3953 + }, + "stiffness": 0.4, + "pointA": { + "#": 8627 + }, + "pointB": { + "#": 8628 + }, + "length": 20.216, + "render": { + "#": 8629 + }, + "id": 437, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3953 + }, + "bodyB": { + "#": 3985 + }, + "stiffness": 0.4, + "pointA": { + "#": 8631 + }, + "pointB": { + "#": 8632 + }, + "length": 20.216, + "render": { + "#": 8633 + }, + "id": 438, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2737 + }, + "bodyB": { + "#": 3377 + }, + "stiffness": 0.4, + "pointA": { + "#": 8635 + }, + "pointB": { + "#": 8636 + }, + "length": 21, + "render": { + "#": 8637 + }, + "id": 439, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2769 + }, + "bodyB": { + "#": 3409 + }, + "stiffness": 0.4, + "pointA": { + "#": 8639 + }, + "pointB": { + "#": 8640 + }, + "length": 21, + "render": { + "#": 8641 + }, + "id": 440, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2801 + }, + "bodyB": { + "#": 3441 + }, + "stiffness": 0.4, + "pointA": { + "#": 8643 + }, + "pointB": { + "#": 8644 + }, + "length": 21, + "render": { + "#": 8645 + }, + "id": 441, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2833 + }, + "bodyB": { + "#": 3473 + }, + "stiffness": 0.4, + "pointA": { + "#": 8647 + }, + "pointB": { + "#": 8648 + }, + "length": 21, + "render": { + "#": 8649 + }, + "id": 442, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2865 + }, + "bodyB": { + "#": 3505 + }, + "stiffness": 0.4, + "pointA": { + "#": 8651 + }, + "pointB": { + "#": 8652 + }, + "length": 21, + "render": { + "#": 8653 + }, + "id": 443, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2897 + }, + "bodyB": { + "#": 3537 + }, + "stiffness": 0.4, + "pointA": { + "#": 8655 + }, + "pointB": { + "#": 8656 + }, + "length": 21, + "render": { + "#": 8657 + }, + "id": 444, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2929 + }, + "bodyB": { + "#": 3569 + }, + "stiffness": 0.4, + "pointA": { + "#": 8659 + }, + "pointB": { + "#": 8660 + }, + "length": 21, + "render": { + "#": 8661 + }, + "id": 445, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2961 + }, + "bodyB": { + "#": 3601 + }, + "stiffness": 0.4, + "pointA": { + "#": 8663 + }, + "pointB": { + "#": 8664 + }, + "length": 21, + "render": { + "#": 8665 + }, + "id": 446, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2993 + }, + "bodyB": { + "#": 3633 + }, + "stiffness": 0.4, + "pointA": { + "#": 8667 + }, + "pointB": { + "#": 8668 + }, + "length": 21, + "render": { + "#": 8669 + }, + "id": 447, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3025 + }, + "bodyB": { + "#": 3665 + }, + "stiffness": 0.4, + "pointA": { + "#": 8671 + }, + "pointB": { + "#": 8672 + }, + "length": 21, + "render": { + "#": 8673 + }, + "id": 448, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3057 + }, + "bodyB": { + "#": 3697 + }, + "stiffness": 0.4, + "pointA": { + "#": 8675 + }, + "pointB": { + "#": 8676 + }, + "length": 21, + "render": { + "#": 8677 + }, + "id": 449, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3089 + }, + "bodyB": { + "#": 3729 + }, + "stiffness": 0.4, + "pointA": { + "#": 8679 + }, + "pointB": { + "#": 8680 + }, + "length": 21, + "render": { + "#": 8681 + }, + "id": 450, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3121 + }, + "bodyB": { + "#": 3761 + }, + "stiffness": 0.4, + "pointA": { + "#": 8683 + }, + "pointB": { + "#": 8684 + }, + "length": 21, + "render": { + "#": 8685 + }, + "id": 451, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3153 + }, + "bodyB": { + "#": 3793 + }, + "stiffness": 0.4, + "pointA": { + "#": 8687 + }, + "pointB": { + "#": 8688 + }, + "length": 21, + "render": { + "#": 8689 + }, + "id": 452, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3185 + }, + "bodyB": { + "#": 3825 + }, + "stiffness": 0.4, + "pointA": { + "#": 8691 + }, + "pointB": { + "#": 8692 + }, + "length": 21, + "render": { + "#": 8693 + }, + "id": 453, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3217 + }, + "bodyB": { + "#": 3857 + }, + "stiffness": 0.4, + "pointA": { + "#": 8695 + }, + "pointB": { + "#": 8696 + }, + "length": 21, + "render": { + "#": 8697 + }, + "id": 454, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3249 + }, + "bodyB": { + "#": 3889 + }, + "stiffness": 0.4, + "pointA": { + "#": 8699 + }, + "pointB": { + "#": 8700 + }, + "length": 21, + "render": { + "#": 8701 + }, + "id": 455, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3281 + }, + "bodyB": { + "#": 3921 + }, + "stiffness": 0.4, + "pointA": { + "#": 8703 + }, + "pointB": { + "#": 8704 + }, + "length": 21, + "render": { + "#": 8705 + }, + "id": 456, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3313 + }, + "bodyB": { + "#": 3953 + }, + "stiffness": 0.4, + "pointA": { + "#": 8707 + }, + "pointB": { + "#": 8708 + }, + "length": 21, + "render": { + "#": 8709 + }, + "id": 457, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3345 + }, + "bodyB": { + "#": 3985 + }, + "stiffness": 0.4, + "pointA": { + "#": 8711 + }, + "pointB": { + "#": 8712 + }, + "length": 21, + "render": { + "#": 8713 + }, + "id": 458, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4017 + }, + "bodyB": { + "#": 4049 + }, + "stiffness": 0.4, + "pointA": { + "#": 8715 + }, + "pointB": { + "#": 8716 + }, + "length": 20.216, + "render": { + "#": 8717 + }, + "id": 459, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4049 + }, + "bodyB": { + "#": 4081 + }, + "stiffness": 0.4, + "pointA": { + "#": 8719 + }, + "pointB": { + "#": 8720 + }, + "length": 20.216, + "render": { + "#": 8721 + }, + "id": 460, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4081 + }, + "bodyB": { + "#": 4113 + }, + "stiffness": 0.4, + "pointA": { + "#": 8723 + }, + "pointB": { + "#": 8724 + }, + "length": 20.216, + "render": { + "#": 8725 + }, + "id": 461, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4113 + }, + "bodyB": { + "#": 4145 + }, + "stiffness": 0.4, + "pointA": { + "#": 8727 + }, + "pointB": { + "#": 8728 + }, + "length": 20.216, + "render": { + "#": 8729 + }, + "id": 462, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4145 + }, + "bodyB": { + "#": 4177 + }, + "stiffness": 0.4, + "pointA": { + "#": 8731 + }, + "pointB": { + "#": 8732 + }, + "length": 20.216, + "render": { + "#": 8733 + }, + "id": 463, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4177 + }, + "bodyB": { + "#": 4209 + }, + "stiffness": 0.4, + "pointA": { + "#": 8735 + }, + "pointB": { + "#": 8736 + }, + "length": 20.216, + "render": { + "#": 8737 + }, + "id": 464, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4209 + }, + "bodyB": { + "#": 4241 + }, + "stiffness": 0.4, + "pointA": { + "#": 8739 + }, + "pointB": { + "#": 8740 + }, + "length": 20.216, + "render": { + "#": 8741 + }, + "id": 465, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4241 + }, + "bodyB": { + "#": 4273 + }, + "stiffness": 0.4, + "pointA": { + "#": 8743 + }, + "pointB": { + "#": 8744 + }, + "length": 20.216, + "render": { + "#": 8745 + }, + "id": 466, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4273 + }, + "bodyB": { + "#": 4305 + }, + "stiffness": 0.4, + "pointA": { + "#": 8747 + }, + "pointB": { + "#": 8748 + }, + "length": 20.216, + "render": { + "#": 8749 + }, + "id": 467, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4305 + }, + "bodyB": { + "#": 4337 + }, + "stiffness": 0.4, + "pointA": { + "#": 8751 + }, + "pointB": { + "#": 8752 + }, + "length": 20.216, + "render": { + "#": 8753 + }, + "id": 468, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4337 + }, + "bodyB": { + "#": 4369 + }, + "stiffness": 0.4, + "pointA": { + "#": 8755 + }, + "pointB": { + "#": 8756 + }, + "length": 20.216, + "render": { + "#": 8757 + }, + "id": 469, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4369 + }, + "bodyB": { + "#": 4401 + }, + "stiffness": 0.4, + "pointA": { + "#": 8759 + }, + "pointB": { + "#": 8760 + }, + "length": 20.216, + "render": { + "#": 8761 + }, + "id": 470, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4401 + }, + "bodyB": { + "#": 4433 + }, + "stiffness": 0.4, + "pointA": { + "#": 8763 + }, + "pointB": { + "#": 8764 + }, + "length": 20.216, + "render": { + "#": 8765 + }, + "id": 471, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4433 + }, + "bodyB": { + "#": 4465 + }, + "stiffness": 0.4, + "pointA": { + "#": 8767 + }, + "pointB": { + "#": 8768 + }, + "length": 20.216, + "render": { + "#": 8769 + }, + "id": 472, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4465 + }, + "bodyB": { + "#": 4497 + }, + "stiffness": 0.4, + "pointA": { + "#": 8771 + }, + "pointB": { + "#": 8772 + }, + "length": 20.216, + "render": { + "#": 8773 + }, + "id": 473, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4497 + }, + "bodyB": { + "#": 4529 + }, + "stiffness": 0.4, + "pointA": { + "#": 8775 + }, + "pointB": { + "#": 8776 + }, + "length": 20.216, + "render": { + "#": 8777 + }, + "id": 474, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4529 + }, + "bodyB": { + "#": 4561 + }, + "stiffness": 0.4, + "pointA": { + "#": 8779 + }, + "pointB": { + "#": 8780 + }, + "length": 20.216, + "render": { + "#": 8781 + }, + "id": 475, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4561 + }, + "bodyB": { + "#": 4593 + }, + "stiffness": 0.4, + "pointA": { + "#": 8783 + }, + "pointB": { + "#": 8784 + }, + "length": 20.216, + "render": { + "#": 8785 + }, + "id": 476, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4593 + }, + "bodyB": { + "#": 4625 + }, + "stiffness": 0.4, + "pointA": { + "#": 8787 + }, + "pointB": { + "#": 8788 + }, + "length": 20.216, + "render": { + "#": 8789 + }, + "id": 477, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3377 + }, + "bodyB": { + "#": 4017 + }, + "stiffness": 0.4, + "pointA": { + "#": 8791 + }, + "pointB": { + "#": 8792 + }, + "length": 21, + "render": { + "#": 8793 + }, + "id": 478, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3409 + }, + "bodyB": { + "#": 4049 + }, + "stiffness": 0.4, + "pointA": { + "#": 8795 + }, + "pointB": { + "#": 8796 + }, + "length": 21, + "render": { + "#": 8797 + }, + "id": 479, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3441 + }, + "bodyB": { + "#": 4081 + }, + "stiffness": 0.4, + "pointA": { + "#": 8799 + }, + "pointB": { + "#": 8800 + }, + "length": 21, + "render": { + "#": 8801 + }, + "id": 480, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3473 + }, + "bodyB": { + "#": 4113 + }, + "stiffness": 0.4, + "pointA": { + "#": 8803 + }, + "pointB": { + "#": 8804 + }, + "length": 21, + "render": { + "#": 8805 + }, + "id": 481, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3505 + }, + "bodyB": { + "#": 4145 + }, + "stiffness": 0.4, + "pointA": { + "#": 8807 + }, + "pointB": { + "#": 8808 + }, + "length": 21, + "render": { + "#": 8809 + }, + "id": 482, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3537 + }, + "bodyB": { + "#": 4177 + }, + "stiffness": 0.4, + "pointA": { + "#": 8811 + }, + "pointB": { + "#": 8812 + }, + "length": 21, + "render": { + "#": 8813 + }, + "id": 483, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3569 + }, + "bodyB": { + "#": 4209 + }, + "stiffness": 0.4, + "pointA": { + "#": 8815 + }, + "pointB": { + "#": 8816 + }, + "length": 21, + "render": { + "#": 8817 + }, + "id": 484, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3601 + }, + "bodyB": { + "#": 4241 + }, + "stiffness": 0.4, + "pointA": { + "#": 8819 + }, + "pointB": { + "#": 8820 + }, + "length": 21, + "render": { + "#": 8821 + }, + "id": 485, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3633 + }, + "bodyB": { + "#": 4273 + }, + "stiffness": 0.4, + "pointA": { + "#": 8823 + }, + "pointB": { + "#": 8824 + }, + "length": 21, + "render": { + "#": 8825 + }, + "id": 486, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3665 + }, + "bodyB": { + "#": 4305 + }, + "stiffness": 0.4, + "pointA": { + "#": 8827 + }, + "pointB": { + "#": 8828 + }, + "length": 21, + "render": { + "#": 8829 + }, + "id": 487, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3697 + }, + "bodyB": { + "#": 4337 + }, + "stiffness": 0.4, + "pointA": { + "#": 8831 + }, + "pointB": { + "#": 8832 + }, + "length": 21, + "render": { + "#": 8833 + }, + "id": 488, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3729 + }, + "bodyB": { + "#": 4369 + }, + "stiffness": 0.4, + "pointA": { + "#": 8835 + }, + "pointB": { + "#": 8836 + }, + "length": 21, + "render": { + "#": 8837 + }, + "id": 489, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3761 + }, + "bodyB": { + "#": 4401 + }, + "stiffness": 0.4, + "pointA": { + "#": 8839 + }, + "pointB": { + "#": 8840 + }, + "length": 21, + "render": { + "#": 8841 + }, + "id": 490, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3793 + }, + "bodyB": { + "#": 4433 + }, + "stiffness": 0.4, + "pointA": { + "#": 8843 + }, + "pointB": { + "#": 8844 + }, + "length": 21, + "render": { + "#": 8845 + }, + "id": 491, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3825 + }, + "bodyB": { + "#": 4465 + }, + "stiffness": 0.4, + "pointA": { + "#": 8847 + }, + "pointB": { + "#": 8848 + }, + "length": 21, + "render": { + "#": 8849 + }, + "id": 492, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3857 + }, + "bodyB": { + "#": 4497 + }, + "stiffness": 0.4, + "pointA": { + "#": 8851 + }, + "pointB": { + "#": 8852 + }, + "length": 21, + "render": { + "#": 8853 + }, + "id": 493, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3889 + }, + "bodyB": { + "#": 4529 + }, + "stiffness": 0.4, + "pointA": { + "#": 8855 + }, + "pointB": { + "#": 8856 + }, + "length": 21, + "render": { + "#": 8857 + }, + "id": 494, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3921 + }, + "bodyB": { + "#": 4561 + }, + "stiffness": 0.4, + "pointA": { + "#": 8859 + }, + "pointB": { + "#": 8860 + }, + "length": 21, + "render": { + "#": 8861 + }, + "id": 495, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3953 + }, + "bodyB": { + "#": 4593 + }, + "stiffness": 0.4, + "pointA": { + "#": 8863 + }, + "pointB": { + "#": 8864 + }, + "length": 21, + "render": { + "#": 8865 + }, + "id": 496, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3985 + }, + "bodyB": { + "#": 4625 + }, + "stiffness": 0.4, + "pointA": { + "#": 8867 + }, + "pointB": { + "#": 8868 + }, + "length": 21, + "render": { + "#": 8869 + }, + "id": 497, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4657 + }, + "bodyB": { + "#": 4689 + }, + "stiffness": 0.4, + "pointA": { + "#": 8871 + }, + "pointB": { + "#": 8872 + }, + "length": 20.216, + "render": { + "#": 8873 + }, + "id": 498, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4689 + }, + "bodyB": { + "#": 4721 + }, + "stiffness": 0.4, + "pointA": { + "#": 8875 + }, + "pointB": { + "#": 8876 + }, + "length": 20.216, + "render": { + "#": 8877 + }, + "id": 499, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4721 + }, + "bodyB": { + "#": 4753 + }, + "stiffness": 0.4, + "pointA": { + "#": 8879 + }, + "pointB": { + "#": 8880 + }, + "length": 20.216, + "render": { + "#": 8881 + }, + "id": 500, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4753 + }, + "bodyB": { + "#": 4785 + }, + "stiffness": 0.4, + "pointA": { + "#": 8883 + }, + "pointB": { + "#": 8884 + }, + "length": 20.216, + "render": { + "#": 8885 + }, + "id": 501, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4785 + }, + "bodyB": { + "#": 4817 + }, + "stiffness": 0.4, + "pointA": { + "#": 8887 + }, + "pointB": { + "#": 8888 + }, + "length": 20.216, + "render": { + "#": 8889 + }, + "id": 502, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4817 + }, + "bodyB": { + "#": 4849 + }, + "stiffness": 0.4, + "pointA": { + "#": 8891 + }, + "pointB": { + "#": 8892 + }, + "length": 20.216, + "render": { + "#": 8893 + }, + "id": 503, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4849 + }, + "bodyB": { + "#": 4881 + }, + "stiffness": 0.4, + "pointA": { + "#": 8895 + }, + "pointB": { + "#": 8896 + }, + "length": 20.216, + "render": { + "#": 8897 + }, + "id": 504, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4881 + }, + "bodyB": { + "#": 4913 + }, + "stiffness": 0.4, + "pointA": { + "#": 8899 + }, + "pointB": { + "#": 8900 + }, + "length": 20.216, + "render": { + "#": 8901 + }, + "id": 505, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4913 + }, + "bodyB": { + "#": 4945 + }, + "stiffness": 0.4, + "pointA": { + "#": 8903 + }, + "pointB": { + "#": 8904 + }, + "length": 20.216, + "render": { + "#": 8905 + }, + "id": 506, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4945 + }, + "bodyB": { + "#": 4977 + }, + "stiffness": 0.4, + "pointA": { + "#": 8907 + }, + "pointB": { + "#": 8908 + }, + "length": 20.216, + "render": { + "#": 8909 + }, + "id": 507, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4977 + }, + "bodyB": { + "#": 5009 + }, + "stiffness": 0.4, + "pointA": { + "#": 8911 + }, + "pointB": { + "#": 8912 + }, + "length": 20.216, + "render": { + "#": 8913 + }, + "id": 508, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5009 + }, + "bodyB": { + "#": 5041 + }, + "stiffness": 0.4, + "pointA": { + "#": 8915 + }, + "pointB": { + "#": 8916 + }, + "length": 20.216, + "render": { + "#": 8917 + }, + "id": 509, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5041 + }, + "bodyB": { + "#": 5073 + }, + "stiffness": 0.4, + "pointA": { + "#": 8919 + }, + "pointB": { + "#": 8920 + }, + "length": 20.216, + "render": { + "#": 8921 + }, + "id": 510, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5073 + }, + "bodyB": { + "#": 5105 + }, + "stiffness": 0.4, + "pointA": { + "#": 8923 + }, + "pointB": { + "#": 8924 + }, + "length": 20.216, + "render": { + "#": 8925 + }, + "id": 511, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5105 + }, + "bodyB": { + "#": 5137 + }, + "stiffness": 0.4, + "pointA": { + "#": 8927 + }, + "pointB": { + "#": 8928 + }, + "length": 20.216, + "render": { + "#": 8929 + }, + "id": 512, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5137 + }, + "bodyB": { + "#": 5169 + }, + "stiffness": 0.4, + "pointA": { + "#": 8931 + }, + "pointB": { + "#": 8932 + }, + "length": 20.216, + "render": { + "#": 8933 + }, + "id": 513, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5169 + }, + "bodyB": { + "#": 5201 + }, + "stiffness": 0.4, + "pointA": { + "#": 8935 + }, + "pointB": { + "#": 8936 + }, + "length": 20.216, + "render": { + "#": 8937 + }, + "id": 514, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5201 + }, + "bodyB": { + "#": 5233 + }, + "stiffness": 0.4, + "pointA": { + "#": 8939 + }, + "pointB": { + "#": 8940 + }, + "length": 20.216, + "render": { + "#": 8941 + }, + "id": 515, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5233 + }, + "bodyB": { + "#": 5265 + }, + "stiffness": 0.4, + "pointA": { + "#": 8943 + }, + "pointB": { + "#": 8944 + }, + "length": 20.216, + "render": { + "#": 8945 + }, + "id": 516, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4017 + }, + "bodyB": { + "#": 4657 + }, + "stiffness": 0.4, + "pointA": { + "#": 8947 + }, + "pointB": { + "#": 8948 + }, + "length": 21, + "render": { + "#": 8949 + }, + "id": 517, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4049 + }, + "bodyB": { + "#": 4689 + }, + "stiffness": 0.4, + "pointA": { + "#": 8951 + }, + "pointB": { + "#": 8952 + }, + "length": 21, + "render": { + "#": 8953 + }, + "id": 518, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4081 + }, + "bodyB": { + "#": 4721 + }, + "stiffness": 0.4, + "pointA": { + "#": 8955 + }, + "pointB": { + "#": 8956 + }, + "length": 21, + "render": { + "#": 8957 + }, + "id": 519, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4113 + }, + "bodyB": { + "#": 4753 + }, + "stiffness": 0.4, + "pointA": { + "#": 8959 + }, + "pointB": { + "#": 8960 + }, + "length": 21, + "render": { + "#": 8961 + }, + "id": 520, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4145 + }, + "bodyB": { + "#": 4785 + }, + "stiffness": 0.4, + "pointA": { + "#": 8963 + }, + "pointB": { + "#": 8964 + }, + "length": 21, + "render": { + "#": 8965 + }, + "id": 521, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4177 + }, + "bodyB": { + "#": 4817 + }, + "stiffness": 0.4, + "pointA": { + "#": 8967 + }, + "pointB": { + "#": 8968 + }, + "length": 21, + "render": { + "#": 8969 + }, + "id": 522, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4209 + }, + "bodyB": { + "#": 4849 + }, + "stiffness": 0.4, + "pointA": { + "#": 8971 + }, + "pointB": { + "#": 8972 + }, + "length": 21, + "render": { + "#": 8973 + }, + "id": 523, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4241 + }, + "bodyB": { + "#": 4881 + }, + "stiffness": 0.4, + "pointA": { + "#": 8975 + }, + "pointB": { + "#": 8976 + }, + "length": 21, + "render": { + "#": 8977 + }, + "id": 524, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4273 + }, + "bodyB": { + "#": 4913 + }, + "stiffness": 0.4, + "pointA": { + "#": 8979 + }, + "pointB": { + "#": 8980 + }, + "length": 21, + "render": { + "#": 8981 + }, + "id": 525, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4305 + }, + "bodyB": { + "#": 4945 + }, + "stiffness": 0.4, + "pointA": { + "#": 8983 + }, + "pointB": { + "#": 8984 + }, + "length": 21, + "render": { + "#": 8985 + }, + "id": 526, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4337 + }, + "bodyB": { + "#": 4977 + }, + "stiffness": 0.4, + "pointA": { + "#": 8987 + }, + "pointB": { + "#": 8988 + }, + "length": 21, + "render": { + "#": 8989 + }, + "id": 527, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4369 + }, + "bodyB": { + "#": 5009 + }, + "stiffness": 0.4, + "pointA": { + "#": 8991 + }, + "pointB": { + "#": 8992 + }, + "length": 21, + "render": { + "#": 8993 + }, + "id": 528, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4401 + }, + "bodyB": { + "#": 5041 + }, + "stiffness": 0.4, + "pointA": { + "#": 8995 + }, + "pointB": { + "#": 8996 + }, + "length": 21, + "render": { + "#": 8997 + }, + "id": 529, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4433 + }, + "bodyB": { + "#": 5073 + }, + "stiffness": 0.4, + "pointA": { + "#": 8999 + }, + "pointB": { + "#": 9000 + }, + "length": 21, + "render": { + "#": 9001 + }, + "id": 530, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4465 + }, + "bodyB": { + "#": 5105 + }, + "stiffness": 0.4, + "pointA": { + "#": 9003 + }, + "pointB": { + "#": 9004 + }, + "length": 21, + "render": { + "#": 9005 + }, + "id": 531, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4497 + }, + "bodyB": { + "#": 5137 + }, + "stiffness": 0.4, + "pointA": { + "#": 9007 + }, + "pointB": { + "#": 9008 + }, + "length": 21, + "render": { + "#": 9009 + }, + "id": 532, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4529 + }, + "bodyB": { + "#": 5169 + }, + "stiffness": 0.4, + "pointA": { + "#": 9011 + }, + "pointB": { + "#": 9012 + }, + "length": 21, + "render": { + "#": 9013 + }, + "id": 533, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4561 + }, + "bodyB": { + "#": 5201 + }, + "stiffness": 0.4, + "pointA": { + "#": 9015 + }, + "pointB": { + "#": 9016 + }, + "length": 21, + "render": { + "#": 9017 + }, + "id": 534, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4593 + }, + "bodyB": { + "#": 5233 + }, + "stiffness": 0.4, + "pointA": { + "#": 9019 + }, + "pointB": { + "#": 9020 + }, + "length": 21, + "render": { + "#": 9021 + }, + "id": 535, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4625 + }, + "bodyB": { + "#": 5265 + }, + "stiffness": 0.4, + "pointA": { + "#": 9023 + }, + "pointB": { + "#": 9024 + }, + "length": 21, + "render": { + "#": 9025 + }, + "id": 536, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5297 + }, + "bodyB": { + "#": 5329 + }, + "stiffness": 0.4, + "pointA": { + "#": 9027 + }, + "pointB": { + "#": 9028 + }, + "length": 20.216, + "render": { + "#": 9029 + }, + "id": 537, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5329 + }, + "bodyB": { + "#": 5361 + }, + "stiffness": 0.4, + "pointA": { + "#": 9031 + }, + "pointB": { + "#": 9032 + }, + "length": 20.216, + "render": { + "#": 9033 + }, + "id": 538, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5361 + }, + "bodyB": { + "#": 5393 + }, + "stiffness": 0.4, + "pointA": { + "#": 9035 + }, + "pointB": { + "#": 9036 + }, + "length": 20.216, + "render": { + "#": 9037 + }, + "id": 539, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5393 + }, + "bodyB": { + "#": 5425 + }, + "stiffness": 0.4, + "pointA": { + "#": 9039 + }, + "pointB": { + "#": 9040 + }, + "length": 20.216, + "render": { + "#": 9041 + }, + "id": 540, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5425 + }, + "bodyB": { + "#": 5457 + }, + "stiffness": 0.4, + "pointA": { + "#": 9043 + }, + "pointB": { + "#": 9044 + }, + "length": 20.216, + "render": { + "#": 9045 + }, + "id": 541, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5457 + }, + "bodyB": { + "#": 5489 + }, + "stiffness": 0.4, + "pointA": { + "#": 9047 + }, + "pointB": { + "#": 9048 + }, + "length": 20.216, + "render": { + "#": 9049 + }, + "id": 542, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5489 + }, + "bodyB": { + "#": 5521 + }, + "stiffness": 0.4, + "pointA": { + "#": 9051 + }, + "pointB": { + "#": 9052 + }, + "length": 20.216, + "render": { + "#": 9053 + }, + "id": 543, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5521 + }, + "bodyB": { + "#": 5553 + }, + "stiffness": 0.4, + "pointA": { + "#": 9055 + }, + "pointB": { + "#": 9056 + }, + "length": 20.216, + "render": { + "#": 9057 + }, + "id": 544, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5553 + }, + "bodyB": { + "#": 5585 + }, + "stiffness": 0.4, + "pointA": { + "#": 9059 + }, + "pointB": { + "#": 9060 + }, + "length": 20.216, + "render": { + "#": 9061 + }, + "id": 545, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5585 + }, + "bodyB": { + "#": 5617 + }, + "stiffness": 0.4, + "pointA": { + "#": 9063 + }, + "pointB": { + "#": 9064 + }, + "length": 20.216, + "render": { + "#": 9065 + }, + "id": 546, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5617 + }, + "bodyB": { + "#": 5649 + }, + "stiffness": 0.4, + "pointA": { + "#": 9067 + }, + "pointB": { + "#": 9068 + }, + "length": 20.216, + "render": { + "#": 9069 + }, + "id": 547, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5649 + }, + "bodyB": { + "#": 5681 + }, + "stiffness": 0.4, + "pointA": { + "#": 9071 + }, + "pointB": { + "#": 9072 + }, + "length": 20.216, + "render": { + "#": 9073 + }, + "id": 548, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5681 + }, + "bodyB": { + "#": 5713 + }, + "stiffness": 0.4, + "pointA": { + "#": 9075 + }, + "pointB": { + "#": 9076 + }, + "length": 20.216, + "render": { + "#": 9077 + }, + "id": 549, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5713 + }, + "bodyB": { + "#": 5745 + }, + "stiffness": 0.4, + "pointA": { + "#": 9079 + }, + "pointB": { + "#": 9080 + }, + "length": 20.216, + "render": { + "#": 9081 + }, + "id": 550, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5745 + }, + "bodyB": { + "#": 5777 + }, + "stiffness": 0.4, + "pointA": { + "#": 9083 + }, + "pointB": { + "#": 9084 + }, + "length": 20.216, + "render": { + "#": 9085 + }, + "id": 551, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5777 + }, + "bodyB": { + "#": 5809 + }, + "stiffness": 0.4, + "pointA": { + "#": 9087 + }, + "pointB": { + "#": 9088 + }, + "length": 20.216, + "render": { + "#": 9089 + }, + "id": 552, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5809 + }, + "bodyB": { + "#": 5841 + }, + "stiffness": 0.4, + "pointA": { + "#": 9091 + }, + "pointB": { + "#": 9092 + }, + "length": 20.216, + "render": { + "#": 9093 + }, + "id": 553, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5841 + }, + "bodyB": { + "#": 5873 + }, + "stiffness": 0.4, + "pointA": { + "#": 9095 + }, + "pointB": { + "#": 9096 + }, + "length": 20.216, + "render": { + "#": 9097 + }, + "id": 554, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5873 + }, + "bodyB": { + "#": 5905 + }, + "stiffness": 0.4, + "pointA": { + "#": 9099 + }, + "pointB": { + "#": 9100 + }, + "length": 20.216, + "render": { + "#": 9101 + }, + "id": 555, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4657 + }, + "bodyB": { + "#": 5297 + }, + "stiffness": 0.4, + "pointA": { + "#": 9103 + }, + "pointB": { + "#": 9104 + }, + "length": 21, + "render": { + "#": 9105 + }, + "id": 556, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4689 + }, + "bodyB": { + "#": 5329 + }, + "stiffness": 0.4, + "pointA": { + "#": 9107 + }, + "pointB": { + "#": 9108 + }, + "length": 21, + "render": { + "#": 9109 + }, + "id": 557, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4721 + }, + "bodyB": { + "#": 5361 + }, + "stiffness": 0.4, + "pointA": { + "#": 9111 + }, + "pointB": { + "#": 9112 + }, + "length": 21, + "render": { + "#": 9113 + }, + "id": 558, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4753 + }, + "bodyB": { + "#": 5393 + }, + "stiffness": 0.4, + "pointA": { + "#": 9115 + }, + "pointB": { + "#": 9116 + }, + "length": 21, + "render": { + "#": 9117 + }, + "id": 559, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4785 + }, + "bodyB": { + "#": 5425 + }, + "stiffness": 0.4, + "pointA": { + "#": 9119 + }, + "pointB": { + "#": 9120 + }, + "length": 21, + "render": { + "#": 9121 + }, + "id": 560, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4817 + }, + "bodyB": { + "#": 5457 + }, + "stiffness": 0.4, + "pointA": { + "#": 9123 + }, + "pointB": { + "#": 9124 + }, + "length": 21, + "render": { + "#": 9125 + }, + "id": 561, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4849 + }, + "bodyB": { + "#": 5489 + }, + "stiffness": 0.4, + "pointA": { + "#": 9127 + }, + "pointB": { + "#": 9128 + }, + "length": 21, + "render": { + "#": 9129 + }, + "id": 562, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4881 + }, + "bodyB": { + "#": 5521 + }, + "stiffness": 0.4, + "pointA": { + "#": 9131 + }, + "pointB": { + "#": 9132 + }, + "length": 21, + "render": { + "#": 9133 + }, + "id": 563, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4913 + }, + "bodyB": { + "#": 5553 + }, + "stiffness": 0.4, + "pointA": { + "#": 9135 + }, + "pointB": { + "#": 9136 + }, + "length": 21, + "render": { + "#": 9137 + }, + "id": 564, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4945 + }, + "bodyB": { + "#": 5585 + }, + "stiffness": 0.4, + "pointA": { + "#": 9139 + }, + "pointB": { + "#": 9140 + }, + "length": 21, + "render": { + "#": 9141 + }, + "id": 565, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 4977 + }, + "bodyB": { + "#": 5617 + }, + "stiffness": 0.4, + "pointA": { + "#": 9143 + }, + "pointB": { + "#": 9144 + }, + "length": 21, + "render": { + "#": 9145 + }, + "id": 566, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5009 + }, + "bodyB": { + "#": 5649 + }, + "stiffness": 0.4, + "pointA": { + "#": 9147 + }, + "pointB": { + "#": 9148 + }, + "length": 21, + "render": { + "#": 9149 + }, + "id": 567, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5041 + }, + "bodyB": { + "#": 5681 + }, + "stiffness": 0.4, + "pointA": { + "#": 9151 + }, + "pointB": { + "#": 9152 + }, + "length": 21, + "render": { + "#": 9153 + }, + "id": 568, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5073 + }, + "bodyB": { + "#": 5713 + }, + "stiffness": 0.4, + "pointA": { + "#": 9155 + }, + "pointB": { + "#": 9156 + }, + "length": 21, + "render": { + "#": 9157 + }, + "id": 569, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5105 + }, + "bodyB": { + "#": 5745 + }, + "stiffness": 0.4, + "pointA": { + "#": 9159 + }, + "pointB": { + "#": 9160 + }, + "length": 21, + "render": { + "#": 9161 + }, + "id": 570, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5137 + }, + "bodyB": { + "#": 5777 + }, + "stiffness": 0.4, + "pointA": { + "#": 9163 + }, + "pointB": { + "#": 9164 + }, + "length": 21, + "render": { + "#": 9165 + }, + "id": 571, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5169 + }, + "bodyB": { + "#": 5809 + }, + "stiffness": 0.4, + "pointA": { + "#": 9167 + }, + "pointB": { + "#": 9168 + }, + "length": 21, + "render": { + "#": 9169 + }, + "id": 572, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5201 + }, + "bodyB": { + "#": 5841 + }, + "stiffness": 0.4, + "pointA": { + "#": 9171 + }, + "pointB": { + "#": 9172 + }, + "length": 21, + "render": { + "#": 9173 + }, + "id": 573, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5233 + }, + "bodyB": { + "#": 5873 + }, + "stiffness": 0.4, + "pointA": { + "#": 9175 + }, + "pointB": { + "#": 9176 + }, + "length": 21, + "render": { + "#": 9177 + }, + "id": 574, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5265 + }, + "bodyB": { + "#": 5905 + }, + "stiffness": 0.4, + "pointA": { + "#": 9179 + }, + "pointB": { + "#": 9180 + }, + "length": 21, + "render": { + "#": 9181 + }, + "id": 575, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5937 + }, + "bodyB": { + "#": 5969 + }, + "stiffness": 0.4, + "pointA": { + "#": 9183 + }, + "pointB": { + "#": 9184 + }, + "length": 20.216, + "render": { + "#": 9185 + }, + "id": 576, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5969 + }, + "bodyB": { + "#": 6001 + }, + "stiffness": 0.4, + "pointA": { + "#": 9187 + }, + "pointB": { + "#": 9188 + }, + "length": 20.216, + "render": { + "#": 9189 + }, + "id": 577, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6001 + }, + "bodyB": { + "#": 6033 + }, + "stiffness": 0.4, + "pointA": { + "#": 9191 + }, + "pointB": { + "#": 9192 + }, + "length": 20.216, + "render": { + "#": 9193 + }, + "id": 578, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6033 + }, + "bodyB": { + "#": 6065 + }, + "stiffness": 0.4, + "pointA": { + "#": 9195 + }, + "pointB": { + "#": 9196 + }, + "length": 20.216, + "render": { + "#": 9197 + }, + "id": 579, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6065 + }, + "bodyB": { + "#": 6097 + }, + "stiffness": 0.4, + "pointA": { + "#": 9199 + }, + "pointB": { + "#": 9200 + }, + "length": 20.216, + "render": { + "#": 9201 + }, + "id": 580, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6097 + }, + "bodyB": { + "#": 6129 + }, + "stiffness": 0.4, + "pointA": { + "#": 9203 + }, + "pointB": { + "#": 9204 + }, + "length": 20.216, + "render": { + "#": 9205 + }, + "id": 581, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6129 + }, + "bodyB": { + "#": 6161 + }, + "stiffness": 0.4, + "pointA": { + "#": 9207 + }, + "pointB": { + "#": 9208 + }, + "length": 20.216, + "render": { + "#": 9209 + }, + "id": 582, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6161 + }, + "bodyB": { + "#": 6193 + }, + "stiffness": 0.4, + "pointA": { + "#": 9211 + }, + "pointB": { + "#": 9212 + }, + "length": 20.216, + "render": { + "#": 9213 + }, + "id": 583, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6193 + }, + "bodyB": { + "#": 6225 + }, + "stiffness": 0.4, + "pointA": { + "#": 9215 + }, + "pointB": { + "#": 9216 + }, + "length": 20.216, + "render": { + "#": 9217 + }, + "id": 584, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6225 + }, + "bodyB": { + "#": 6257 + }, + "stiffness": 0.4, + "pointA": { + "#": 9219 + }, + "pointB": { + "#": 9220 + }, + "length": 20.216, + "render": { + "#": 9221 + }, + "id": 585, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6257 + }, + "bodyB": { + "#": 6289 + }, + "stiffness": 0.4, + "pointA": { + "#": 9223 + }, + "pointB": { + "#": 9224 + }, + "length": 20.216, + "render": { + "#": 9225 + }, + "id": 586, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6289 + }, + "bodyB": { + "#": 6321 + }, + "stiffness": 0.4, + "pointA": { + "#": 9227 + }, + "pointB": { + "#": 9228 + }, + "length": 20.216, + "render": { + "#": 9229 + }, + "id": 587, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6321 + }, + "bodyB": { + "#": 6353 + }, + "stiffness": 0.4, + "pointA": { + "#": 9231 + }, + "pointB": { + "#": 9232 + }, + "length": 20.216, + "render": { + "#": 9233 + }, + "id": 588, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6353 + }, + "bodyB": { + "#": 6385 + }, + "stiffness": 0.4, + "pointA": { + "#": 9235 + }, + "pointB": { + "#": 9236 + }, + "length": 20.216, + "render": { + "#": 9237 + }, + "id": 589, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6385 + }, + "bodyB": { + "#": 6417 + }, + "stiffness": 0.4, + "pointA": { + "#": 9239 + }, + "pointB": { + "#": 9240 + }, + "length": 20.216, + "render": { + "#": 9241 + }, + "id": 590, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6417 + }, + "bodyB": { + "#": 6449 + }, + "stiffness": 0.4, + "pointA": { + "#": 9243 + }, + "pointB": { + "#": 9244 + }, + "length": 20.216, + "render": { + "#": 9245 + }, + "id": 591, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6449 + }, + "bodyB": { + "#": 6481 + }, + "stiffness": 0.4, + "pointA": { + "#": 9247 + }, + "pointB": { + "#": 9248 + }, + "length": 20.216, + "render": { + "#": 9249 + }, + "id": 592, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6481 + }, + "bodyB": { + "#": 6513 + }, + "stiffness": 0.4, + "pointA": { + "#": 9251 + }, + "pointB": { + "#": 9252 + }, + "length": 20.216, + "render": { + "#": 9253 + }, + "id": 593, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6513 + }, + "bodyB": { + "#": 6545 + }, + "stiffness": 0.4, + "pointA": { + "#": 9255 + }, + "pointB": { + "#": 9256 + }, + "length": 20.216, + "render": { + "#": 9257 + }, + "id": 594, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5297 + }, + "bodyB": { + "#": 5937 + }, + "stiffness": 0.4, + "pointA": { + "#": 9259 + }, + "pointB": { + "#": 9260 + }, + "length": 21, + "render": { + "#": 9261 + }, + "id": 595, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5329 + }, + "bodyB": { + "#": 5969 + }, + "stiffness": 0.4, + "pointA": { + "#": 9263 + }, + "pointB": { + "#": 9264 + }, + "length": 21, + "render": { + "#": 9265 + }, + "id": 596, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5361 + }, + "bodyB": { + "#": 6001 + }, + "stiffness": 0.4, + "pointA": { + "#": 9267 + }, + "pointB": { + "#": 9268 + }, + "length": 21, + "render": { + "#": 9269 + }, + "id": 597, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5393 + }, + "bodyB": { + "#": 6033 + }, + "stiffness": 0.4, + "pointA": { + "#": 9271 + }, + "pointB": { + "#": 9272 + }, + "length": 21, + "render": { + "#": 9273 + }, + "id": 598, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5425 + }, + "bodyB": { + "#": 6065 + }, + "stiffness": 0.4, + "pointA": { + "#": 9275 + }, + "pointB": { + "#": 9276 + }, + "length": 21, + "render": { + "#": 9277 + }, + "id": 599, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5457 + }, + "bodyB": { + "#": 6097 + }, + "stiffness": 0.4, + "pointA": { + "#": 9279 + }, + "pointB": { + "#": 9280 + }, + "length": 21, + "render": { + "#": 9281 + }, + "id": 600, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5489 + }, + "bodyB": { + "#": 6129 + }, + "stiffness": 0.4, + "pointA": { + "#": 9283 + }, + "pointB": { + "#": 9284 + }, + "length": 21, + "render": { + "#": 9285 + }, + "id": 601, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5521 + }, + "bodyB": { + "#": 6161 + }, + "stiffness": 0.4, + "pointA": { + "#": 9287 + }, + "pointB": { + "#": 9288 + }, + "length": 21, + "render": { + "#": 9289 + }, + "id": 602, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5553 + }, + "bodyB": { + "#": 6193 + }, + "stiffness": 0.4, + "pointA": { + "#": 9291 + }, + "pointB": { + "#": 9292 + }, + "length": 21, + "render": { + "#": 9293 + }, + "id": 603, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5585 + }, + "bodyB": { + "#": 6225 + }, + "stiffness": 0.4, + "pointA": { + "#": 9295 + }, + "pointB": { + "#": 9296 + }, + "length": 21, + "render": { + "#": 9297 + }, + "id": 604, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5617 + }, + "bodyB": { + "#": 6257 + }, + "stiffness": 0.4, + "pointA": { + "#": 9299 + }, + "pointB": { + "#": 9300 + }, + "length": 21, + "render": { + "#": 9301 + }, + "id": 605, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5649 + }, + "bodyB": { + "#": 6289 + }, + "stiffness": 0.4, + "pointA": { + "#": 9303 + }, + "pointB": { + "#": 9304 + }, + "length": 21, + "render": { + "#": 9305 + }, + "id": 606, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5681 + }, + "bodyB": { + "#": 6321 + }, + "stiffness": 0.4, + "pointA": { + "#": 9307 + }, + "pointB": { + "#": 9308 + }, + "length": 21, + "render": { + "#": 9309 + }, + "id": 607, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5713 + }, + "bodyB": { + "#": 6353 + }, + "stiffness": 0.4, + "pointA": { + "#": 9311 + }, + "pointB": { + "#": 9312 + }, + "length": 21, + "render": { + "#": 9313 + }, + "id": 608, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5745 + }, + "bodyB": { + "#": 6385 + }, + "stiffness": 0.4, + "pointA": { + "#": 9315 + }, + "pointB": { + "#": 9316 + }, + "length": 21, + "render": { + "#": 9317 + }, + "id": 609, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5777 + }, + "bodyB": { + "#": 6417 + }, + "stiffness": 0.4, + "pointA": { + "#": 9319 + }, + "pointB": { + "#": 9320 + }, + "length": 21, + "render": { + "#": 9321 + }, + "id": 610, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5809 + }, + "bodyB": { + "#": 6449 + }, + "stiffness": 0.4, + "pointA": { + "#": 9323 + }, + "pointB": { + "#": 9324 + }, + "length": 21, + "render": { + "#": 9325 + }, + "id": 611, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5841 + }, + "bodyB": { + "#": 6481 + }, + "stiffness": 0.4, + "pointA": { + "#": 9327 + }, + "pointB": { + "#": 9328 + }, + "length": 21, + "render": { + "#": 9329 + }, + "id": 612, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5873 + }, + "bodyB": { + "#": 6513 + }, + "stiffness": 0.4, + "pointA": { + "#": 9331 + }, + "pointB": { + "#": 9332 + }, + "length": 21, + "render": { + "#": 9333 + }, + "id": 613, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5905 + }, + "bodyB": { + "#": 6545 + }, + "stiffness": 0.4, + "pointA": { + "#": 9335 + }, + "pointB": { + "#": 9336 + }, + "length": 21, + "render": { + "#": 9337 + }, + "id": 614, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6577 + }, + "bodyB": { + "#": 6609 + }, + "stiffness": 0.4, + "pointA": { + "#": 9339 + }, + "pointB": { + "#": 9340 + }, + "length": 20.216, + "render": { + "#": 9341 + }, + "id": 615, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6609 + }, + "bodyB": { + "#": 6641 + }, + "stiffness": 0.4, + "pointA": { + "#": 9343 + }, + "pointB": { + "#": 9344 + }, + "length": 20.216, + "render": { + "#": 9345 + }, + "id": 616, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6641 + }, + "bodyB": { + "#": 6673 + }, + "stiffness": 0.4, + "pointA": { + "#": 9347 + }, + "pointB": { + "#": 9348 + }, + "length": 20.216, + "render": { + "#": 9349 + }, + "id": 617, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6673 + }, + "bodyB": { + "#": 6705 + }, + "stiffness": 0.4, + "pointA": { + "#": 9351 + }, + "pointB": { + "#": 9352 + }, + "length": 20.216, + "render": { + "#": 9353 + }, + "id": 618, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6705 + }, + "bodyB": { + "#": 6737 + }, + "stiffness": 0.4, + "pointA": { + "#": 9355 + }, + "pointB": { + "#": 9356 + }, + "length": 20.216, + "render": { + "#": 9357 + }, + "id": 619, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6737 + }, + "bodyB": { + "#": 6769 + }, + "stiffness": 0.4, + "pointA": { + "#": 9359 + }, + "pointB": { + "#": 9360 + }, + "length": 20.216, + "render": { + "#": 9361 + }, + "id": 620, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6769 + }, + "bodyB": { + "#": 6801 + }, + "stiffness": 0.4, + "pointA": { + "#": 9363 + }, + "pointB": { + "#": 9364 + }, + "length": 20.216, + "render": { + "#": 9365 + }, + "id": 621, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6801 + }, + "bodyB": { + "#": 6833 + }, + "stiffness": 0.4, + "pointA": { + "#": 9367 + }, + "pointB": { + "#": 9368 + }, + "length": 20.216, + "render": { + "#": 9369 + }, + "id": 622, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6833 + }, + "bodyB": { + "#": 6865 + }, + "stiffness": 0.4, + "pointA": { + "#": 9371 + }, + "pointB": { + "#": 9372 + }, + "length": 20.216, + "render": { + "#": 9373 + }, + "id": 623, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6865 + }, + "bodyB": { + "#": 6897 + }, + "stiffness": 0.4, + "pointA": { + "#": 9375 + }, + "pointB": { + "#": 9376 + }, + "length": 20.216, + "render": { + "#": 9377 + }, + "id": 624, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6897 + }, + "bodyB": { + "#": 6929 + }, + "stiffness": 0.4, + "pointA": { + "#": 9379 + }, + "pointB": { + "#": 9380 + }, + "length": 20.216, + "render": { + "#": 9381 + }, + "id": 625, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6929 + }, + "bodyB": { + "#": 6961 + }, + "stiffness": 0.4, + "pointA": { + "#": 9383 + }, + "pointB": { + "#": 9384 + }, + "length": 20.216, + "render": { + "#": 9385 + }, + "id": 626, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6961 + }, + "bodyB": { + "#": 6993 + }, + "stiffness": 0.4, + "pointA": { + "#": 9387 + }, + "pointB": { + "#": 9388 + }, + "length": 20.216, + "render": { + "#": 9389 + }, + "id": 627, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6993 + }, + "bodyB": { + "#": 7025 + }, + "stiffness": 0.4, + "pointA": { + "#": 9391 + }, + "pointB": { + "#": 9392 + }, + "length": 20.216, + "render": { + "#": 9393 + }, + "id": 628, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7025 + }, + "bodyB": { + "#": 7057 + }, + "stiffness": 0.4, + "pointA": { + "#": 9395 + }, + "pointB": { + "#": 9396 + }, + "length": 20.216, + "render": { + "#": 9397 + }, + "id": 629, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7057 + }, + "bodyB": { + "#": 7089 + }, + "stiffness": 0.4, + "pointA": { + "#": 9399 + }, + "pointB": { + "#": 9400 + }, + "length": 20.216, + "render": { + "#": 9401 + }, + "id": 630, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7089 + }, + "bodyB": { + "#": 7121 + }, + "stiffness": 0.4, + "pointA": { + "#": 9403 + }, + "pointB": { + "#": 9404 + }, + "length": 20.216, + "render": { + "#": 9405 + }, + "id": 631, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7121 + }, + "bodyB": { + "#": 7153 + }, + "stiffness": 0.4, + "pointA": { + "#": 9407 + }, + "pointB": { + "#": 9408 + }, + "length": 20.216, + "render": { + "#": 9409 + }, + "id": 632, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7153 + }, + "bodyB": { + "#": 7185 + }, + "stiffness": 0.4, + "pointA": { + "#": 9411 + }, + "pointB": { + "#": 9412 + }, + "length": 20.216, + "render": { + "#": 9413 + }, + "id": 633, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5937 + }, + "bodyB": { + "#": 6577 + }, + "stiffness": 0.4, + "pointA": { + "#": 9415 + }, + "pointB": { + "#": 9416 + }, + "length": 21, + "render": { + "#": 9417 + }, + "id": 634, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 5969 + }, + "bodyB": { + "#": 6609 + }, + "stiffness": 0.4, + "pointA": { + "#": 9419 + }, + "pointB": { + "#": 9420 + }, + "length": 21, + "render": { + "#": 9421 + }, + "id": 635, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6001 + }, + "bodyB": { + "#": 6641 + }, + "stiffness": 0.4, + "pointA": { + "#": 9423 + }, + "pointB": { + "#": 9424 + }, + "length": 21, + "render": { + "#": 9425 + }, + "id": 636, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6033 + }, + "bodyB": { + "#": 6673 + }, + "stiffness": 0.4, + "pointA": { + "#": 9427 + }, + "pointB": { + "#": 9428 + }, + "length": 21, + "render": { + "#": 9429 + }, + "id": 637, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6065 + }, + "bodyB": { + "#": 6705 + }, + "stiffness": 0.4, + "pointA": { + "#": 9431 + }, + "pointB": { + "#": 9432 + }, + "length": 21, + "render": { + "#": 9433 + }, + "id": 638, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6097 + }, + "bodyB": { + "#": 6737 + }, + "stiffness": 0.4, + "pointA": { + "#": 9435 + }, + "pointB": { + "#": 9436 + }, + "length": 21, + "render": { + "#": 9437 + }, + "id": 639, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6129 + }, + "bodyB": { + "#": 6769 + }, + "stiffness": 0.4, + "pointA": { + "#": 9439 + }, + "pointB": { + "#": 9440 + }, + "length": 21, + "render": { + "#": 9441 + }, + "id": 640, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6161 + }, + "bodyB": { + "#": 6801 + }, + "stiffness": 0.4, + "pointA": { + "#": 9443 + }, + "pointB": { + "#": 9444 + }, + "length": 21, + "render": { + "#": 9445 + }, + "id": 641, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6193 + }, + "bodyB": { + "#": 6833 + }, + "stiffness": 0.4, + "pointA": { + "#": 9447 + }, + "pointB": { + "#": 9448 + }, + "length": 21, + "render": { + "#": 9449 + }, + "id": 642, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6225 + }, + "bodyB": { + "#": 6865 + }, + "stiffness": 0.4, + "pointA": { + "#": 9451 + }, + "pointB": { + "#": 9452 + }, + "length": 21, + "render": { + "#": 9453 + }, + "id": 643, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6257 + }, + "bodyB": { + "#": 6897 + }, + "stiffness": 0.4, + "pointA": { + "#": 9455 + }, + "pointB": { + "#": 9456 + }, + "length": 21, + "render": { + "#": 9457 + }, + "id": 644, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6289 + }, + "bodyB": { + "#": 6929 + }, + "stiffness": 0.4, + "pointA": { + "#": 9459 + }, + "pointB": { + "#": 9460 + }, + "length": 21, + "render": { + "#": 9461 + }, + "id": 645, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6321 + }, + "bodyB": { + "#": 6961 + }, + "stiffness": 0.4, + "pointA": { + "#": 9463 + }, + "pointB": { + "#": 9464 + }, + "length": 21, + "render": { + "#": 9465 + }, + "id": 646, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6353 + }, + "bodyB": { + "#": 6993 + }, + "stiffness": 0.4, + "pointA": { + "#": 9467 + }, + "pointB": { + "#": 9468 + }, + "length": 21, + "render": { + "#": 9469 + }, + "id": 647, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6385 + }, + "bodyB": { + "#": 7025 + }, + "stiffness": 0.4, + "pointA": { + "#": 9471 + }, + "pointB": { + "#": 9472 + }, + "length": 21, + "render": { + "#": 9473 + }, + "id": 648, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6417 + }, + "bodyB": { + "#": 7057 + }, + "stiffness": 0.4, + "pointA": { + "#": 9475 + }, + "pointB": { + "#": 9476 + }, + "length": 21, + "render": { + "#": 9477 + }, + "id": 649, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6449 + }, + "bodyB": { + "#": 7089 + }, + "stiffness": 0.4, + "pointA": { + "#": 9479 + }, + "pointB": { + "#": 9480 + }, + "length": 21, + "render": { + "#": 9481 + }, + "id": 650, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6481 + }, + "bodyB": { + "#": 7121 + }, + "stiffness": 0.4, + "pointA": { + "#": 9483 + }, + "pointB": { + "#": 9484 + }, + "length": 21, + "render": { + "#": 9485 + }, + "id": 651, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6513 + }, + "bodyB": { + "#": 7153 + }, + "stiffness": 0.4, + "pointA": { + "#": 9487 + }, + "pointB": { + "#": 9488 + }, + "length": 21, + "render": { + "#": 9489 + }, + "id": 652, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6545 + }, + "bodyB": { + "#": 7185 + }, + "stiffness": 0.4, + "pointA": { + "#": 9491 + }, + "pointB": { + "#": 9492 + }, + "length": 21, + "render": { + "#": 9493 + }, + "id": 653, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7217 + }, + "bodyB": { + "#": 7249 + }, + "stiffness": 0.4, + "pointA": { + "#": 9495 + }, + "pointB": { + "#": 9496 + }, + "length": 20.216, + "render": { + "#": 9497 + }, + "id": 654, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7249 + }, + "bodyB": { + "#": 7281 + }, + "stiffness": 0.4, + "pointA": { + "#": 9499 + }, + "pointB": { + "#": 9500 + }, + "length": 20.216, + "render": { + "#": 9501 + }, + "id": 655, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7281 + }, + "bodyB": { + "#": 7313 + }, + "stiffness": 0.4, + "pointA": { + "#": 9503 + }, + "pointB": { + "#": 9504 + }, + "length": 20.216, + "render": { + "#": 9505 + }, + "id": 656, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7313 + }, + "bodyB": { + "#": 7345 + }, + "stiffness": 0.4, + "pointA": { + "#": 9507 + }, + "pointB": { + "#": 9508 + }, + "length": 20.216, + "render": { + "#": 9509 + }, + "id": 657, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7345 + }, + "bodyB": { + "#": 7377 + }, + "stiffness": 0.4, + "pointA": { + "#": 9511 + }, + "pointB": { + "#": 9512 + }, + "length": 20.216, + "render": { + "#": 9513 + }, + "id": 658, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7377 + }, + "bodyB": { + "#": 7409 + }, + "stiffness": 0.4, + "pointA": { + "#": 9515 + }, + "pointB": { + "#": 9516 + }, + "length": 20.216, + "render": { + "#": 9517 + }, + "id": 659, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7409 + }, + "bodyB": { + "#": 7441 + }, + "stiffness": 0.4, + "pointA": { + "#": 9519 + }, + "pointB": { + "#": 9520 + }, + "length": 20.216, + "render": { + "#": 9521 + }, + "id": 660, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7441 + }, + "bodyB": { + "#": 7473 + }, + "stiffness": 0.4, + "pointA": { + "#": 9523 + }, + "pointB": { + "#": 9524 + }, + "length": 20.216, + "render": { + "#": 9525 + }, + "id": 661, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7473 + }, + "bodyB": { + "#": 7505 + }, + "stiffness": 0.4, + "pointA": { + "#": 9527 + }, + "pointB": { + "#": 9528 + }, + "length": 20.216, + "render": { + "#": 9529 + }, + "id": 662, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7505 + }, + "bodyB": { + "#": 7537 + }, + "stiffness": 0.4, + "pointA": { + "#": 9531 + }, + "pointB": { + "#": 9532 + }, + "length": 20.216, + "render": { + "#": 9533 + }, + "id": 663, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7537 + }, + "bodyB": { + "#": 7569 + }, + "stiffness": 0.4, + "pointA": { + "#": 9535 + }, + "pointB": { + "#": 9536 + }, + "length": 20.216, + "render": { + "#": 9537 + }, + "id": 664, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7569 + }, + "bodyB": { + "#": 7601 + }, + "stiffness": 0.4, + "pointA": { + "#": 9539 + }, + "pointB": { + "#": 9540 + }, + "length": 20.216, + "render": { + "#": 9541 + }, + "id": 665, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7601 + }, + "bodyB": { + "#": 7633 + }, + "stiffness": 0.4, + "pointA": { + "#": 9543 + }, + "pointB": { + "#": 9544 + }, + "length": 20.216, + "render": { + "#": 9545 + }, + "id": 666, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7633 + }, + "bodyB": { + "#": 7665 + }, + "stiffness": 0.4, + "pointA": { + "#": 9547 + }, + "pointB": { + "#": 9548 + }, + "length": 20.216, + "render": { + "#": 9549 + }, + "id": 667, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7665 + }, + "bodyB": { + "#": 7697 + }, + "stiffness": 0.4, + "pointA": { + "#": 9551 + }, + "pointB": { + "#": 9552 + }, + "length": 20.216, + "render": { + "#": 9553 + }, + "id": 668, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7697 + }, + "bodyB": { + "#": 7729 + }, + "stiffness": 0.4, + "pointA": { + "#": 9555 + }, + "pointB": { + "#": 9556 + }, + "length": 20.216, + "render": { + "#": 9557 + }, + "id": 669, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7729 + }, + "bodyB": { + "#": 7761 + }, + "stiffness": 0.4, + "pointA": { + "#": 9559 + }, + "pointB": { + "#": 9560 + }, + "length": 20.216, + "render": { + "#": 9561 + }, + "id": 670, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7761 + }, + "bodyB": { + "#": 7793 + }, + "stiffness": 0.4, + "pointA": { + "#": 9563 + }, + "pointB": { + "#": 9564 + }, + "length": 20.216, + "render": { + "#": 9565 + }, + "id": 671, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7793 + }, + "bodyB": { + "#": 7825 + }, + "stiffness": 0.4, + "pointA": { + "#": 9567 + }, + "pointB": { + "#": 9568 + }, + "length": 20.216, + "render": { + "#": 9569 + }, + "id": 672, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6577 + }, + "bodyB": { + "#": 7217 + }, + "stiffness": 0.4, + "pointA": { + "#": 9571 + }, + "pointB": { + "#": 9572 + }, + "length": 21, + "render": { + "#": 9573 + }, + "id": 673, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6609 + }, + "bodyB": { + "#": 7249 + }, + "stiffness": 0.4, + "pointA": { + "#": 9575 + }, + "pointB": { + "#": 9576 + }, + "length": 21, + "render": { + "#": 9577 + }, + "id": 674, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6641 + }, + "bodyB": { + "#": 7281 + }, + "stiffness": 0.4, + "pointA": { + "#": 9579 + }, + "pointB": { + "#": 9580 + }, + "length": 21, + "render": { + "#": 9581 + }, + "id": 675, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6673 + }, + "bodyB": { + "#": 7313 + }, + "stiffness": 0.4, + "pointA": { + "#": 9583 + }, + "pointB": { + "#": 9584 + }, + "length": 21, + "render": { + "#": 9585 + }, + "id": 676, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6705 + }, + "bodyB": { + "#": 7345 + }, + "stiffness": 0.4, + "pointA": { + "#": 9587 + }, + "pointB": { + "#": 9588 + }, + "length": 21, + "render": { + "#": 9589 + }, + "id": 677, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6737 + }, + "bodyB": { + "#": 7377 + }, + "stiffness": 0.4, + "pointA": { + "#": 9591 + }, + "pointB": { + "#": 9592 + }, + "length": 21, + "render": { + "#": 9593 + }, + "id": 678, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6769 + }, + "bodyB": { + "#": 7409 + }, + "stiffness": 0.4, + "pointA": { + "#": 9595 + }, + "pointB": { + "#": 9596 + }, + "length": 21, + "render": { + "#": 9597 + }, + "id": 679, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6801 + }, + "bodyB": { + "#": 7441 + }, + "stiffness": 0.4, + "pointA": { + "#": 9599 + }, + "pointB": { + "#": 9600 + }, + "length": 21, + "render": { + "#": 9601 + }, + "id": 680, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6833 + }, + "bodyB": { + "#": 7473 + }, + "stiffness": 0.4, + "pointA": { + "#": 9603 + }, + "pointB": { + "#": 9604 + }, + "length": 21, + "render": { + "#": 9605 + }, + "id": 681, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6865 + }, + "bodyB": { + "#": 7505 + }, + "stiffness": 0.4, + "pointA": { + "#": 9607 + }, + "pointB": { + "#": 9608 + }, + "length": 21, + "render": { + "#": 9609 + }, + "id": 682, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6897 + }, + "bodyB": { + "#": 7537 + }, + "stiffness": 0.4, + "pointA": { + "#": 9611 + }, + "pointB": { + "#": 9612 + }, + "length": 21, + "render": { + "#": 9613 + }, + "id": 683, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6929 + }, + "bodyB": { + "#": 7569 + }, + "stiffness": 0.4, + "pointA": { + "#": 9615 + }, + "pointB": { + "#": 9616 + }, + "length": 21, + "render": { + "#": 9617 + }, + "id": 684, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6961 + }, + "bodyB": { + "#": 7601 + }, + "stiffness": 0.4, + "pointA": { + "#": 9619 + }, + "pointB": { + "#": 9620 + }, + "length": 21, + "render": { + "#": 9621 + }, + "id": 685, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 6993 + }, + "bodyB": { + "#": 7633 + }, + "stiffness": 0.4, + "pointA": { + "#": 9623 + }, + "pointB": { + "#": 9624 + }, + "length": 21, + "render": { + "#": 9625 + }, + "id": 686, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7025 + }, + "bodyB": { + "#": 7665 + }, + "stiffness": 0.4, + "pointA": { + "#": 9627 + }, + "pointB": { + "#": 9628 + }, + "length": 21, + "render": { + "#": 9629 + }, + "id": 687, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7057 + }, + "bodyB": { + "#": 7697 + }, + "stiffness": 0.4, + "pointA": { + "#": 9631 + }, + "pointB": { + "#": 9632 + }, + "length": 21, + "render": { + "#": 9633 + }, + "id": 688, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7089 + }, + "bodyB": { + "#": 7729 + }, + "stiffness": 0.4, + "pointA": { + "#": 9635 + }, + "pointB": { + "#": 9636 + }, + "length": 21, + "render": { + "#": 9637 + }, + "id": 689, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7121 + }, + "bodyB": { + "#": 7761 + }, + "stiffness": 0.4, + "pointA": { + "#": 9639 + }, + "pointB": { + "#": 9640 + }, + "length": 21, + "render": { + "#": 9641 + }, + "id": 690, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7153 + }, + "bodyB": { + "#": 7793 + }, + "stiffness": 0.4, + "pointA": { + "#": 9643 + }, + "pointB": { + "#": 9644 + }, + "length": 21, + "render": { + "#": 9645 + }, + "id": 691, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 7185 + }, + "bodyB": { + "#": 7825 + }, + "stiffness": 0.4, + "pointA": { + "#": 9647 + }, + "pointB": { + "#": 9648 + }, + "length": 21, + "render": { + "#": 9649 + }, + "id": 692, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 9653 + }, + "max": { + "#": 9654 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/compositeManipulation/compositeManipulation-0.json b/test/node/refs/compositeManipulation/compositeManipulation-0.json new file mode 100644 index 00000000..3c7c8bba --- /dev/null +++ b/test/node/refs/compositeManipulation/compositeManipulation-0.json @@ -0,0 +1,4174 @@ +[ + { + "id": 14, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 90 + }, + "composites": { + "#": 91 + }, + "label": "World", + "gravity": { + "#": 448 + }, + "bounds": { + "#": 449 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [ + { + "#": 92 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 93 + }, + "constraints": { + "#": 446 + }, + "composites": { + "#": 447 + }, + "label": "Stack" + }, + [ + { + "#": 94 + }, + { + "#": 116 + }, + { + "#": 138 + }, + { + "#": 160 + }, + { + "#": 182 + }, + { + "#": 204 + }, + { + "#": 226 + }, + { + "#": 248 + }, + { + "#": 270 + }, + { + "#": 292 + }, + { + "#": 314 + }, + { + "#": 336 + }, + { + "#": 358 + }, + { + "#": 380 + }, + { + "#": 402 + }, + { + "#": 424 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 96 + }, + "position": { + "#": 101 + }, + "force": { + "#": 102 + }, + "torque": 0, + "positionImpulse": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 105 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 106 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 107 + }, + "bounds": { + "#": 109 + }, + "positionPrev": { + "#": 112 + }, + "anglePrev": 0, + "axes": { + "#": 113 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 94 + }, + "sleepCounter": 0 + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + } + ], + { + "x": 200, + "y": 200, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 240, + "y": 200, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 240, + "y": 240, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 200, + "y": 240, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 220, + "y": 220 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 108 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 110 + }, + "max": { + "#": 111 + } + }, + { + "x": 200, + "y": 200 + }, + { + "x": 240, + "y": 240 + }, + { + "x": 220, + "y": 220 + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 117 + }, + "angle": 0, + "vertices": { + "#": 118 + }, + "position": { + "#": 123 + }, + "force": { + "#": 124 + }, + "torque": 0, + "positionImpulse": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 127 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 128 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 129 + }, + "bounds": { + "#": 131 + }, + "positionPrev": { + "#": 134 + }, + "anglePrev": 0, + "axes": { + "#": 135 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 116 + }, + "sleepCounter": 0 + }, + [ + { + "#": 116 + } + ], + [ + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + } + ], + { + "x": 240, + "y": 200, + "index": 0, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 280, + "y": 200, + "index": 1, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 280, + "y": 240, + "index": 2, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 240, + "y": 240, + "index": 3, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 260, + "y": 220 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 130 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 132 + }, + "max": { + "#": 133 + } + }, + { + "x": 240, + "y": 200 + }, + { + "x": 280, + "y": 240 + }, + { + "x": 260, + "y": 220 + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 139 + }, + "angle": 0, + "vertices": { + "#": 140 + }, + "position": { + "#": 145 + }, + "force": { + "#": 146 + }, + "torque": 0, + "positionImpulse": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 149 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 150 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 151 + }, + "bounds": { + "#": 153 + }, + "positionPrev": { + "#": 156 + }, + "anglePrev": 0, + "axes": { + "#": 157 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 138 + }, + "sleepCounter": 0 + }, + [ + { + "#": 138 + } + ], + [ + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + } + ], + { + "x": 280, + "y": 200, + "index": 0, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 320, + "y": 200, + "index": 1, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 320, + "y": 240, + "index": 2, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 280, + "y": 240, + "index": 3, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 300, + "y": 220 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 152 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 154 + }, + "max": { + "#": 155 + } + }, + { + "x": 280, + "y": 200 + }, + { + "x": 320, + "y": 240 + }, + { + "x": 300, + "y": 220 + }, + [ + { + "#": 158 + }, + { + "#": 159 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 161 + }, + "angle": 0, + "vertices": { + "#": 162 + }, + "position": { + "#": 167 + }, + "force": { + "#": 168 + }, + "torque": 0, + "positionImpulse": { + "#": 169 + }, + "constraintImpulse": { + "#": 170 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 171 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 172 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 173 + }, + "bounds": { + "#": 175 + }, + "positionPrev": { + "#": 178 + }, + "anglePrev": 0, + "axes": { + "#": 179 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 160 + }, + "sleepCounter": 0 + }, + [ + { + "#": 160 + } + ], + [ + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + } + ], + { + "x": 320, + "y": 200, + "index": 0, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 360, + "y": 200, + "index": 1, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 360, + "y": 240, + "index": 2, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 320, + "y": 240, + "index": 3, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 340, + "y": 220 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 174 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 176 + }, + "max": { + "#": 177 + } + }, + { + "x": 320, + "y": 200 + }, + { + "x": 360, + "y": 240 + }, + { + "x": 340, + "y": 220 + }, + [ + { + "#": 180 + }, + { + "#": 181 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 183 + }, + "angle": 0, + "vertices": { + "#": 184 + }, + "position": { + "#": 189 + }, + "force": { + "#": 190 + }, + "torque": 0, + "positionImpulse": { + "#": 191 + }, + "constraintImpulse": { + "#": 192 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 193 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 194 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 195 + }, + "bounds": { + "#": 197 + }, + "positionPrev": { + "#": 200 + }, + "anglePrev": 0, + "axes": { + "#": 201 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 182 + }, + "sleepCounter": 0 + }, + [ + { + "#": 182 + } + ], + [ + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + } + ], + { + "x": 200, + "y": 240, + "index": 0, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 240, + "y": 240, + "index": 1, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 240, + "y": 280, + "index": 2, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 200, + "y": 280, + "index": 3, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 220, + "y": 260 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 196 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 198 + }, + "max": { + "#": 199 + } + }, + { + "x": 200, + "y": 240 + }, + { + "x": 240, + "y": 280 + }, + { + "x": 220, + "y": 260 + }, + [ + { + "#": 202 + }, + { + "#": 203 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 205 + }, + "angle": 0, + "vertices": { + "#": 206 + }, + "position": { + "#": 211 + }, + "force": { + "#": 212 + }, + "torque": 0, + "positionImpulse": { + "#": 213 + }, + "constraintImpulse": { + "#": 214 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 215 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 216 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 217 + }, + "bounds": { + "#": 219 + }, + "positionPrev": { + "#": 222 + }, + "anglePrev": 0, + "axes": { + "#": 223 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 204 + }, + "sleepCounter": 0 + }, + [ + { + "#": 204 + } + ], + [ + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + } + ], + { + "x": 240, + "y": 240, + "index": 0, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 280, + "y": 240, + "index": 1, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 280, + "y": 280, + "index": 2, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 240, + "y": 280, + "index": 3, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 260, + "y": 260 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 218 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 220 + }, + "max": { + "#": 221 + } + }, + { + "x": 240, + "y": 240 + }, + { + "x": 280, + "y": 280 + }, + { + "x": 260, + "y": 260 + }, + [ + { + "#": 224 + }, + { + "#": 225 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 227 + }, + "angle": 0, + "vertices": { + "#": 228 + }, + "position": { + "#": 233 + }, + "force": { + "#": 234 + }, + "torque": 0, + "positionImpulse": { + "#": 235 + }, + "constraintImpulse": { + "#": 236 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 237 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 238 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 239 + }, + "bounds": { + "#": 241 + }, + "positionPrev": { + "#": 244 + }, + "anglePrev": 0, + "axes": { + "#": 245 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 226 + }, + "sleepCounter": 0 + }, + [ + { + "#": 226 + } + ], + [ + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + } + ], + { + "x": 280, + "y": 240, + "index": 0, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 320, + "y": 240, + "index": 1, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 320, + "y": 280, + "index": 2, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 280, + "y": 280, + "index": 3, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 300, + "y": 260 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 240 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 242 + }, + "max": { + "#": 243 + } + }, + { + "x": 280, + "y": 240 + }, + { + "x": 320, + "y": 280 + }, + { + "x": 300, + "y": 260 + }, + [ + { + "#": 246 + }, + { + "#": 247 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 249 + }, + "angle": 0, + "vertices": { + "#": 250 + }, + "position": { + "#": 255 + }, + "force": { + "#": 256 + }, + "torque": 0, + "positionImpulse": { + "#": 257 + }, + "constraintImpulse": { + "#": 258 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 259 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 260 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 261 + }, + "bounds": { + "#": 263 + }, + "positionPrev": { + "#": 266 + }, + "anglePrev": 0, + "axes": { + "#": 267 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 248 + }, + "sleepCounter": 0 + }, + [ + { + "#": 248 + } + ], + [ + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + } + ], + { + "x": 320, + "y": 240, + "index": 0, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 360, + "y": 240, + "index": 1, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 360, + "y": 280, + "index": 2, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 320, + "y": 280, + "index": 3, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 340, + "y": 260 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 262 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 264 + }, + "max": { + "#": 265 + } + }, + { + "x": 320, + "y": 240 + }, + { + "x": 360, + "y": 280 + }, + { + "x": 340, + "y": 260 + }, + [ + { + "#": 268 + }, + { + "#": 269 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 271 + }, + "angle": 0, + "vertices": { + "#": 272 + }, + "position": { + "#": 277 + }, + "force": { + "#": 278 + }, + "torque": 0, + "positionImpulse": { + "#": 279 + }, + "constraintImpulse": { + "#": 280 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 281 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 282 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 283 + }, + "bounds": { + "#": 285 + }, + "positionPrev": { + "#": 288 + }, + "anglePrev": 0, + "axes": { + "#": 289 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 270 + }, + "sleepCounter": 0 + }, + [ + { + "#": 270 + } + ], + [ + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + } + ], + { + "x": 200, + "y": 280, + "index": 0, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 240, + "y": 280, + "index": 1, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 240, + "y": 320, + "index": 2, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 200, + "y": 320, + "index": 3, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 220, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 284 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 286 + }, + "max": { + "#": 287 + } + }, + { + "x": 200, + "y": 280 + }, + { + "x": 240, + "y": 320 + }, + { + "x": 220, + "y": 300 + }, + [ + { + "#": 290 + }, + { + "#": 291 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 293 + }, + "angle": 0, + "vertices": { + "#": 294 + }, + "position": { + "#": 299 + }, + "force": { + "#": 300 + }, + "torque": 0, + "positionImpulse": { + "#": 301 + }, + "constraintImpulse": { + "#": 302 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 303 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 304 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 305 + }, + "bounds": { + "#": 307 + }, + "positionPrev": { + "#": 310 + }, + "anglePrev": 0, + "axes": { + "#": 311 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 292 + }, + "sleepCounter": 0 + }, + [ + { + "#": 292 + } + ], + [ + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + } + ], + { + "x": 240, + "y": 280, + "index": 0, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 280, + "y": 280, + "index": 1, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 280, + "y": 320, + "index": 2, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 240, + "y": 320, + "index": 3, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 260, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 306 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 308 + }, + "max": { + "#": 309 + } + }, + { + "x": 240, + "y": 280 + }, + { + "x": 280, + "y": 320 + }, + { + "x": 260, + "y": 300 + }, + [ + { + "#": 312 + }, + { + "#": 313 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 15, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 315 + }, + "angle": 0, + "vertices": { + "#": 316 + }, + "position": { + "#": 321 + }, + "force": { + "#": 322 + }, + "torque": 0, + "positionImpulse": { + "#": 323 + }, + "constraintImpulse": { + "#": 324 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 325 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 326 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 327 + }, + "bounds": { + "#": 329 + }, + "positionPrev": { + "#": 332 + }, + "anglePrev": 0, + "axes": { + "#": 333 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 314 + }, + "sleepCounter": 0 + }, + [ + { + "#": 314 + } + ], + [ + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + } + ], + { + "x": 280, + "y": 280, + "index": 0, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 320, + "y": 280, + "index": 1, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 320, + "y": 320, + "index": 2, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 280, + "y": 320, + "index": 3, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 300, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 328 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 330 + }, + "max": { + "#": 331 + } + }, + { + "x": 280, + "y": 280 + }, + { + "x": 320, + "y": 320 + }, + { + "x": 300, + "y": 300 + }, + [ + { + "#": 334 + }, + { + "#": 335 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 16, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 337 + }, + "angle": 0, + "vertices": { + "#": 338 + }, + "position": { + "#": 343 + }, + "force": { + "#": 344 + }, + "torque": 0, + "positionImpulse": { + "#": 345 + }, + "constraintImpulse": { + "#": 346 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 347 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 348 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 349 + }, + "bounds": { + "#": 351 + }, + "positionPrev": { + "#": 354 + }, + "anglePrev": 0, + "axes": { + "#": 355 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 336 + }, + "sleepCounter": 0 + }, + [ + { + "#": 336 + } + ], + [ + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + } + ], + { + "x": 320, + "y": 280, + "index": 0, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 360, + "y": 280, + "index": 1, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 360, + "y": 320, + "index": 2, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 320, + "y": 320, + "index": 3, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 340, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 350 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 352 + }, + "max": { + "#": 353 + } + }, + { + "x": 320, + "y": 280 + }, + { + "x": 360, + "y": 320 + }, + { + "x": 340, + "y": 300 + }, + [ + { + "#": 356 + }, + { + "#": 357 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 17, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 359 + }, + "angle": 0, + "vertices": { + "#": 360 + }, + "position": { + "#": 365 + }, + "force": { + "#": 366 + }, + "torque": 0, + "positionImpulse": { + "#": 367 + }, + "constraintImpulse": { + "#": 368 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 369 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 370 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 371 + }, + "bounds": { + "#": 373 + }, + "positionPrev": { + "#": 376 + }, + "anglePrev": 0, + "axes": { + "#": 377 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 358 + }, + "sleepCounter": 0 + }, + [ + { + "#": 358 + } + ], + [ + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + } + ], + { + "x": 200, + "y": 320, + "index": 0, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 240, + "y": 320, + "index": 1, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 240, + "y": 360, + "index": 2, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 200, + "y": 360, + "index": 3, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 220, + "y": 340 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 372 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 374 + }, + "max": { + "#": 375 + } + }, + { + "x": 200, + "y": 320 + }, + { + "x": 240, + "y": 360 + }, + { + "x": 220, + "y": 340 + }, + [ + { + "#": 378 + }, + { + "#": 379 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 18, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 381 + }, + "angle": 0, + "vertices": { + "#": 382 + }, + "position": { + "#": 387 + }, + "force": { + "#": 388 + }, + "torque": 0, + "positionImpulse": { + "#": 389 + }, + "constraintImpulse": { + "#": 390 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 391 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 392 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 393 + }, + "bounds": { + "#": 395 + }, + "positionPrev": { + "#": 398 + }, + "anglePrev": 0, + "axes": { + "#": 399 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 380 + }, + "sleepCounter": 0 + }, + [ + { + "#": 380 + } + ], + [ + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + } + ], + { + "x": 240, + "y": 320, + "index": 0, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 280, + "y": 320, + "index": 1, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 280, + "y": 360, + "index": 2, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 240, + "y": 360, + "index": 3, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 260, + "y": 340 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 394 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 396 + }, + "max": { + "#": 397 + } + }, + { + "x": 240, + "y": 320 + }, + { + "x": 280, + "y": 360 + }, + { + "x": 260, + "y": 340 + }, + [ + { + "#": 400 + }, + { + "#": 401 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 19, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 403 + }, + "angle": 0, + "vertices": { + "#": 404 + }, + "position": { + "#": 409 + }, + "force": { + "#": 410 + }, + "torque": 0, + "positionImpulse": { + "#": 411 + }, + "constraintImpulse": { + "#": 412 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 413 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 414 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 415 + }, + "bounds": { + "#": 417 + }, + "positionPrev": { + "#": 420 + }, + "anglePrev": 0, + "axes": { + "#": 421 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 402 + }, + "sleepCounter": 0 + }, + [ + { + "#": 402 + } + ], + [ + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + } + ], + { + "x": 280, + "y": 320, + "index": 0, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 320, + "y": 320, + "index": 1, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 320, + "y": 360, + "index": 2, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 280, + "y": 360, + "index": 3, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 300, + "y": 340 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 416 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 418 + }, + "max": { + "#": 419 + } + }, + { + "x": 280, + "y": 320 + }, + { + "x": 320, + "y": 360 + }, + { + "x": 300, + "y": 340 + }, + [ + { + "#": 422 + }, + { + "#": 423 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 20, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 425 + }, + "angle": 0, + "vertices": { + "#": 426 + }, + "position": { + "#": 431 + }, + "force": { + "#": 432 + }, + "torque": 0, + "positionImpulse": { + "#": 433 + }, + "constraintImpulse": { + "#": 434 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 435 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 436 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 437 + }, + "bounds": { + "#": 439 + }, + "positionPrev": { + "#": 442 + }, + "anglePrev": 0, + "axes": { + "#": 443 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 424 + }, + "sleepCounter": 0 + }, + [ + { + "#": 424 + } + ], + [ + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + } + ], + { + "x": 320, + "y": 320, + "index": 0, + "body": { + "#": 424 + }, + "isInternal": false + }, + { + "x": 360, + "y": 320, + "index": 1, + "body": { + "#": 424 + }, + "isInternal": false + }, + { + "x": 360, + "y": 360, + "index": 2, + "body": { + "#": 424 + }, + "isInternal": false + }, + { + "x": 320, + "y": 360, + "index": 3, + "body": { + "#": 424 + }, + "isInternal": false + }, + { + "x": 340, + "y": 340 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 438 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 440 + }, + "max": { + "#": 441 + } + }, + { + "x": 320, + "y": 320 + }, + { + "x": 360, + "y": 360 + }, + { + "x": 340, + "y": 340 + }, + [ + { + "#": 444 + }, + { + "#": 445 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [], + { + "x": 0, + "y": 0 + }, + { + "min": { + "#": 450 + }, + "max": { + "#": 451 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/compositeManipulation/compositeManipulation-10.json b/test/node/refs/compositeManipulation/compositeManipulation-10.json new file mode 100644 index 00000000..c14e4d08 --- /dev/null +++ b/test/node/refs/compositeManipulation/compositeManipulation-10.json @@ -0,0 +1,4374 @@ +[ + { + "id": 14, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 94 + }, + "composites": { + "#": 95 + }, + "label": "World", + "gravity": { + "#": 468 + }, + "bounds": { + "#": 469 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + [], + [ + { + "#": 96 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 97 + }, + "constraints": { + "#": 466 + }, + "composites": { + "#": 467 + }, + "label": "Stack" + }, + [ + { + "#": 98 + }, + { + "#": 121 + }, + { + "#": 144 + }, + { + "#": 167 + }, + { + "#": 190 + }, + { + "#": 213 + }, + { + "#": 236 + }, + { + "#": 259 + }, + { + "#": 282 + }, + { + "#": 305 + }, + { + "#": 328 + }, + { + "#": 351 + }, + { + "#": 374 + }, + { + "#": 397 + }, + { + "#": 420 + }, + { + "#": 443 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 99 + }, + "angle": 0.01097, + "vertices": { + "#": 100 + }, + "position": { + "#": 105 + }, + "force": { + "#": 106 + }, + "torque": 0, + "positionImpulse": { + "#": 107 + }, + "constraintImpulse": { + "#": 108 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 109 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 110 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 111 + }, + "bounds": { + "#": 113 + }, + "positionPrev": { + "#": 116 + }, + "anglePrev": 0.01097, + "axes": { + "#": 117 + }, + "area": 1635.45745, + "mass": 1.63546, + "inverseMass": 0.61145, + "inertia": 445.78684, + "inverseInertia": 0.00224, + "parent": { + "#": 98 + }, + "sleepCounter": 0, + "region": { + "#": 120 + } + }, + [ + { + "#": 98 + } + ], + [ + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + } + ], + { + "x": 202.21951, + "y": 197.80892, + "index": 0, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 242.65787, + "y": 198.25241, + "index": 1, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 242.21438, + "y": 238.69076, + "index": 2, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 201.77603, + "y": 238.24728, + "index": 3, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 222.21695, + "y": 218.24984 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 112 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 114 + }, + "max": { + "#": 115 + } + }, + { + "x": 201.77603, + "y": 197.80892 + }, + { + "x": 242.65787, + "y": 238.69076 + }, + { + "x": 222.21695, + "y": 218.24984 + }, + [ + { + "#": 118 + }, + { + "#": 119 + } + ], + { + "x": -0.01097, + "y": 0.99994 + }, + { + "x": -0.99994, + "y": -0.01097 + }, + { + "id": "4,5,4,4", + "startCol": 4, + "endCol": 5, + "startRow": 4, + "endRow": 4 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 122 + }, + "angle": 0.01097, + "vertices": { + "#": 123 + }, + "position": { + "#": 128 + }, + "force": { + "#": 129 + }, + "torque": 0, + "positionImpulse": { + "#": 130 + }, + "constraintImpulse": { + "#": 131 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 132 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 133 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 134 + }, + "bounds": { + "#": 136 + }, + "positionPrev": { + "#": 139 + }, + "anglePrev": 0.01097, + "axes": { + "#": 140 + }, + "area": 1635.45745, + "mass": 1.63546, + "inverseMass": 0.61145, + "inertia": 445.78684, + "inverseInertia": 0.00224, + "parent": { + "#": 121 + }, + "sleepCounter": 0, + "region": { + "#": 143 + } + }, + [ + { + "#": 121 + } + ], + [ + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + } + ], + { + "x": 242.71305, + "y": 198.27349, + "index": 0, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 283.15141, + "y": 198.71698, + "index": 1, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 282.70792, + "y": 239.15533, + "index": 2, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 242.26957, + "y": 238.71185, + "index": 3, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 262.71049, + "y": 218.71441 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00008, + "y": -0.00009 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 135 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 137 + }, + "max": { + "#": 138 + } + }, + { + "x": 242.26957, + "y": 198.27349 + }, + { + "x": 283.15141, + "y": 239.15533 + }, + { + "x": 262.71049, + "y": 218.71441 + }, + [ + { + "#": 141 + }, + { + "#": 142 + } + ], + { + "x": -0.01097, + "y": 0.99994 + }, + { + "x": -0.99994, + "y": -0.01097 + }, + { + "id": "5,5,4,4", + "startCol": 5, + "endCol": 5, + "startRow": 4, + "endRow": 4 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 145 + }, + "angle": 0.01097, + "vertices": { + "#": 146 + }, + "position": { + "#": 151 + }, + "force": { + "#": 152 + }, + "torque": 0, + "positionImpulse": { + "#": 153 + }, + "constraintImpulse": { + "#": 154 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 155 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 156 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 157 + }, + "bounds": { + "#": 159 + }, + "positionPrev": { + "#": 162 + }, + "anglePrev": 0.01097, + "axes": { + "#": 163 + }, + "area": 1635.45745, + "mass": 1.63546, + "inverseMass": 0.61145, + "inertia": 445.78684, + "inverseInertia": 0.00224, + "parent": { + "#": 144 + }, + "sleepCounter": 0, + "region": { + "#": 166 + } + }, + [ + { + "#": 144 + } + ], + [ + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + } + ], + { + "x": 283.10166, + "y": 198.71651, + "index": 0, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 323.54002, + "y": 199.15999, + "index": 1, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 323.09654, + "y": 239.59835, + "index": 2, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 282.65818, + "y": 239.15487, + "index": 3, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 303.0991, + "y": 219.15743 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00009, + "y": -0.00007 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 158 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 160 + }, + "max": { + "#": 161 + } + }, + { + "x": 282.65818, + "y": 198.71651 + }, + { + "x": 323.54002, + "y": 239.59835 + }, + { + "x": 303.0991, + "y": 219.15743 + }, + [ + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": -0.01097, + "y": 0.99994 + }, + { + "x": -0.99994, + "y": -0.01097 + }, + { + "id": "5,6,4,4", + "startCol": 5, + "endCol": 6, + "startRow": 4, + "endRow": 4 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 168 + }, + "angle": 0.01097, + "vertices": { + "#": 169 + }, + "position": { + "#": 174 + }, + "force": { + "#": 175 + }, + "torque": 0, + "positionImpulse": { + "#": 176 + }, + "constraintImpulse": { + "#": 177 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 178 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 179 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 180 + }, + "bounds": { + "#": 182 + }, + "positionPrev": { + "#": 185 + }, + "anglePrev": 0.01097, + "axes": { + "#": 186 + }, + "area": 1635.45745, + "mass": 1.63546, + "inverseMass": 0.61145, + "inertia": 445.78684, + "inverseInertia": 0.00224, + "parent": { + "#": 167 + }, + "sleepCounter": 0, + "region": { + "#": 189 + } + }, + [ + { + "#": 167 + } + ], + [ + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + } + ], + { + "x": 323.49041, + "y": 199.14344, + "index": 0, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 363.92877, + "y": 199.58692, + "index": 1, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 363.48529, + "y": 240.02528, + "index": 2, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 323.04693, + "y": 239.58179, + "index": 3, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 343.48785, + "y": 219.58436 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00008, + "y": -0.00052 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 181 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 183 + }, + "max": { + "#": 184 + } + }, + { + "x": 323.04693, + "y": 199.14344 + }, + { + "x": 363.92877, + "y": 240.02528 + }, + { + "x": 343.48785, + "y": 219.58436 + }, + [ + { + "#": 187 + }, + { + "#": 188 + } + ], + { + "x": -0.01097, + "y": 0.99994 + }, + { + "x": -0.99994, + "y": -0.01097 + }, + { + "id": "6,7,4,5", + "startCol": 6, + "endCol": 7, + "startRow": 4, + "endRow": 5 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 191 + }, + "angle": 0.01097, + "vertices": { + "#": 192 + }, + "position": { + "#": 197 + }, + "force": { + "#": 198 + }, + "torque": 0, + "positionImpulse": { + "#": 199 + }, + "constraintImpulse": { + "#": 200 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 201 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 202 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 203 + }, + "bounds": { + "#": 205 + }, + "positionPrev": { + "#": 208 + }, + "anglePrev": 0.01097, + "axes": { + "#": 209 + }, + "area": 1635.45745, + "mass": 1.63546, + "inverseMass": 0.61145, + "inertia": 445.78684, + "inverseInertia": 0.00224, + "parent": { + "#": 190 + }, + "sleepCounter": 0, + "region": { + "#": 212 + } + }, + [ + { + "#": 190 + } + ], + [ + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + } + ], + { + "x": 201.81082, + "y": 238.31409, + "index": 0, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 242.24917, + "y": 238.75758, + "index": 1, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 241.80569, + "y": 279.19593, + "index": 2, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 201.36733, + "y": 278.75245, + "index": 3, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 221.80825, + "y": 258.75501 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00226, + "y": -0.00018 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 204 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 206 + }, + "max": { + "#": 207 + } + }, + { + "x": 201.36733, + "y": 238.31409 + }, + { + "x": 242.24917, + "y": 279.19593 + }, + { + "x": 221.80825, + "y": 258.75501 + }, + [ + { + "#": 210 + }, + { + "#": 211 + } + ], + { + "x": -0.01097, + "y": 0.99994 + }, + { + "x": -0.99994, + "y": -0.01097 + }, + { + "id": "4,5,4,5", + "startCol": 4, + "endCol": 5, + "startRow": 4, + "endRow": 5 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 214 + }, + "angle": 0.01097, + "vertices": { + "#": 215 + }, + "position": { + "#": 220 + }, + "force": { + "#": 221 + }, + "torque": 0, + "positionImpulse": { + "#": 222 + }, + "constraintImpulse": { + "#": 223 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 224 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 225 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 226 + }, + "bounds": { + "#": 228 + }, + "positionPrev": { + "#": 231 + }, + "anglePrev": 0.01097, + "axes": { + "#": 232 + }, + "area": 1635.45745, + "mass": 1.63546, + "inverseMass": 0.61145, + "inertia": 445.78684, + "inverseInertia": 0.00224, + "parent": { + "#": 213 + }, + "sleepCounter": 0, + "region": { + "#": 235 + } + }, + [ + { + "#": 213 + } + ], + [ + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + } + ], + { + "x": 242.19958, + "y": 238.75712, + "index": 0, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 282.63793, + "y": 239.2006, + "index": 1, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 282.19445, + "y": 279.63896, + "index": 2, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 241.75609, + "y": 279.19548, + "index": 3, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 262.19701, + "y": 259.19804 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.0021, + "y": -0.0002 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 227 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 229 + }, + "max": { + "#": 230 + } + }, + { + "x": 241.75609, + "y": 238.75712 + }, + { + "x": 282.63793, + "y": 279.63896 + }, + { + "x": 262.19701, + "y": 259.19804 + }, + [ + { + "#": 233 + }, + { + "#": 234 + } + ], + { + "x": -0.01097, + "y": 0.99994 + }, + { + "x": -0.99994, + "y": -0.01097 + }, + { + "id": "5,5,4,5", + "startCol": 5, + "endCol": 5, + "startRow": 4, + "endRow": 5 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 237 + }, + "angle": 0.01097, + "vertices": { + "#": 238 + }, + "position": { + "#": 243 + }, + "force": { + "#": 244 + }, + "torque": 0, + "positionImpulse": { + "#": 245 + }, + "constraintImpulse": { + "#": 246 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 247 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 248 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 249 + }, + "bounds": { + "#": 251 + }, + "positionPrev": { + "#": 254 + }, + "anglePrev": 0.01097, + "axes": { + "#": 255 + }, + "area": 1635.45745, + "mass": 1.63546, + "inverseMass": 0.61145, + "inertia": 445.78684, + "inverseInertia": 0.00224, + "parent": { + "#": 236 + }, + "sleepCounter": 0, + "region": { + "#": 258 + } + }, + [ + { + "#": 236 + } + ], + [ + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + } + ], + { + "x": 282.65923, + "y": 239.10473, + "index": 0, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 323.09758, + "y": 239.54822, + "index": 1, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 322.6541, + "y": 279.98657, + "index": 2, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 282.21574, + "y": 279.54309, + "index": 3, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 302.65666, + "y": 259.54565 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.0002, + "y": -0.00001 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 250 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 252 + }, + "max": { + "#": 253 + } + }, + { + "x": 282.21574, + "y": 239.10473 + }, + { + "x": 323.09758, + "y": 279.98657 + }, + { + "x": 302.65666, + "y": 259.54565 + }, + [ + { + "#": 256 + }, + { + "#": 257 + } + ], + { + "x": -0.01097, + "y": 0.99994 + }, + { + "x": -0.99994, + "y": -0.01097 + }, + { + "id": "5,6,4,5", + "startCol": 5, + "endCol": 6, + "startRow": 4, + "endRow": 5 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 260 + }, + "angle": 0.01097, + "vertices": { + "#": 261 + }, + "position": { + "#": 266 + }, + "force": { + "#": 267 + }, + "torque": 0, + "positionImpulse": { + "#": 268 + }, + "constraintImpulse": { + "#": 269 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 270 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 271 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 272 + }, + "bounds": { + "#": 274 + }, + "positionPrev": { + "#": 277 + }, + "anglePrev": 0.01097, + "axes": { + "#": 278 + }, + "area": 1635.45745, + "mass": 1.63546, + "inverseMass": 0.61145, + "inertia": 445.78684, + "inverseInertia": 0.00224, + "parent": { + "#": 259 + }, + "sleepCounter": 0, + "region": { + "#": 281 + } + }, + [ + { + "#": 259 + } + ], + [ + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + } + ], + { + "x": 323.04747, + "y": 239.5317, + "index": 0, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 363.48583, + "y": 239.97518, + "index": 1, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 363.04235, + "y": 280.41354, + "index": 2, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 322.60399, + "y": 279.97006, + "index": 3, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 343.04491, + "y": 259.97262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00009, + "y": -0.00045 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 273 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 275 + }, + "max": { + "#": 276 + } + }, + { + "x": 322.60399, + "y": 239.5317 + }, + { + "x": 363.48583, + "y": 280.41354 + }, + { + "x": 343.04491, + "y": 259.97262 + }, + [ + { + "#": 279 + }, + { + "#": 280 + } + ], + { + "x": -0.01097, + "y": 0.99994 + }, + { + "x": -0.99994, + "y": -0.01097 + }, + { + "id": "6,7,4,5", + "startCol": 6, + "endCol": 7, + "startRow": 4, + "endRow": 5 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 283 + }, + "angle": 0.01097, + "vertices": { + "#": 284 + }, + "position": { + "#": 289 + }, + "force": { + "#": 290 + }, + "torque": 0, + "positionImpulse": { + "#": 291 + }, + "constraintImpulse": { + "#": 292 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 293 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 294 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 295 + }, + "bounds": { + "#": 297 + }, + "positionPrev": { + "#": 300 + }, + "anglePrev": 0.01097, + "axes": { + "#": 301 + }, + "area": 1635.45745, + "mass": 1.63546, + "inverseMass": 0.61145, + "inertia": 445.78684, + "inverseInertia": 0.00224, + "parent": { + "#": 282 + }, + "sleepCounter": 0, + "region": { + "#": 304 + } + }, + [ + { + "#": 282 + } + ], + [ + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + } + ], + { + "x": 201.37231, + "y": 278.70272, + "index": 0, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 241.81066, + "y": 279.1462, + "index": 1, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 241.36718, + "y": 319.58456, + "index": 2, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 200.92882, + "y": 319.14108, + "index": 3, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 221.36974, + "y": 299.14364 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00106, + "y": -0.00019 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 296 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 298 + }, + "max": { + "#": 299 + } + }, + { + "x": 200.92882, + "y": 278.70272 + }, + { + "x": 241.81066, + "y": 319.58456 + }, + { + "x": 221.36974, + "y": 299.14364 + }, + [ + { + "#": 302 + }, + { + "#": 303 + } + ], + { + "x": -0.01097, + "y": 0.99994 + }, + { + "x": -0.99994, + "y": -0.01097 + }, + { + "id": "4,5,5,6", + "startCol": 4, + "endCol": 5, + "startRow": 5, + "endRow": 6 + }, + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 306 + }, + "angle": 0.01097, + "vertices": { + "#": 307 + }, + "position": { + "#": 312 + }, + "force": { + "#": 313 + }, + "torque": 0, + "positionImpulse": { + "#": 314 + }, + "constraintImpulse": { + "#": 315 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 316 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 317 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 318 + }, + "bounds": { + "#": 320 + }, + "positionPrev": { + "#": 323 + }, + "anglePrev": 0.01097, + "axes": { + "#": 324 + }, + "area": 1635.45745, + "mass": 1.63546, + "inverseMass": 0.61145, + "inertia": 445.78684, + "inverseInertia": 0.00224, + "parent": { + "#": 305 + }, + "sleepCounter": 0, + "region": { + "#": 327 + } + }, + [ + { + "#": 305 + } + ], + [ + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + } + ], + { + "x": 241.75885, + "y": 279.14457, + "index": 0, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 282.19721, + "y": 279.58805, + "index": 1, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 281.75373, + "y": 320.02641, + "index": 2, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 241.31537, + "y": 319.58293, + "index": 3, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 261.75629, + "y": 299.58549 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00057, + "y": -0.00003 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 319 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 321 + }, + "max": { + "#": 322 + } + }, + { + "x": 241.31537, + "y": 279.14457 + }, + { + "x": 282.19721, + "y": 320.02641 + }, + { + "x": 261.75629, + "y": 299.58549 + }, + [ + { + "#": 325 + }, + { + "#": 326 + } + ], + { + "x": -0.01097, + "y": 0.99994 + }, + { + "x": -0.99994, + "y": -0.01097 + }, + { + "id": "5,5,5,6", + "startCol": 5, + "endCol": 5, + "startRow": 5, + "endRow": 6 + }, + { + "id": 15, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 329 + }, + "angle": 0.01097, + "vertices": { + "#": 330 + }, + "position": { + "#": 335 + }, + "force": { + "#": 336 + }, + "torque": 0, + "positionImpulse": { + "#": 337 + }, + "constraintImpulse": { + "#": 338 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 339 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 340 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 341 + }, + "bounds": { + "#": 343 + }, + "positionPrev": { + "#": 346 + }, + "anglePrev": 0.01097, + "axes": { + "#": 347 + }, + "area": 1635.45745, + "mass": 1.63546, + "inverseMass": 0.61145, + "inertia": 445.78684, + "inverseInertia": 0.00224, + "parent": { + "#": 328 + }, + "sleepCounter": 0, + "region": { + "#": 350 + } + }, + [ + { + "#": 328 + } + ], + [ + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + } + ], + { + "x": 282.14592, + "y": 279.58196, + "index": 0, + "body": { + "#": 328 + }, + "isInternal": false + }, + { + "x": 322.58428, + "y": 280.02545, + "index": 1, + "body": { + "#": 328 + }, + "isInternal": false + }, + { + "x": 322.1408, + "y": 320.4638, + "index": 2, + "body": { + "#": 328 + }, + "isInternal": false + }, + { + "x": 281.70244, + "y": 320.02032, + "index": 3, + "body": { + "#": 328 + }, + "isInternal": false + }, + { + "x": 302.14336, + "y": 300.02288 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00162, + "y": 0.00065 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 342 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 344 + }, + "max": { + "#": 345 + } + }, + { + "x": 281.70244, + "y": 279.58196 + }, + { + "x": 322.58428, + "y": 320.4638 + }, + { + "x": 302.14336, + "y": 300.02288 + }, + [ + { + "#": 348 + }, + { + "#": 349 + } + ], + { + "x": -0.01097, + "y": 0.99994 + }, + { + "x": -0.99994, + "y": -0.01097 + }, + { + "id": "5,6,5,6", + "startCol": 5, + "endCol": 6, + "startRow": 5, + "endRow": 6 + }, + { + "id": 16, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 352 + }, + "angle": 0.01097, + "vertices": { + "#": 353 + }, + "position": { + "#": 358 + }, + "force": { + "#": 359 + }, + "torque": 0, + "positionImpulse": { + "#": 360 + }, + "constraintImpulse": { + "#": 361 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 362 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 363 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 364 + }, + "bounds": { + "#": 366 + }, + "positionPrev": { + "#": 369 + }, + "anglePrev": 0.01097, + "axes": { + "#": 370 + }, + "area": 1635.45745, + "mass": 1.63546, + "inverseMass": 0.61145, + "inertia": 445.78684, + "inverseInertia": 0.00224, + "parent": { + "#": 351 + }, + "sleepCounter": 0, + "region": { + "#": 373 + } + }, + [ + { + "#": 351 + } + ], + [ + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + } + ], + { + "x": 322.63048, + "y": 280.0403, + "index": 0, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 363.06883, + "y": 280.48378, + "index": 1, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 362.62535, + "y": 320.92214, + "index": 2, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 322.18699, + "y": 320.47865, + "index": 3, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 342.62791, + "y": 300.48122 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00055, + "y": 0.01945 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 365 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 367 + }, + "max": { + "#": 368 + } + }, + { + "x": 322.18699, + "y": 280.0403 + }, + { + "x": 363.06883, + "y": 320.92214 + }, + { + "x": 342.62791, + "y": 300.48122 + }, + [ + { + "#": 371 + }, + { + "#": 372 + } + ], + { + "x": -0.01097, + "y": 0.99994 + }, + { + "x": -0.99994, + "y": -0.01097 + }, + { + "id": "6,7,5,6", + "startCol": 6, + "endCol": 7, + "startRow": 5, + "endRow": 6 + }, + { + "id": 17, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 375 + }, + "angle": 0.01097, + "vertices": { + "#": 376 + }, + "position": { + "#": 381 + }, + "force": { + "#": 382 + }, + "torque": 0, + "positionImpulse": { + "#": 383 + }, + "constraintImpulse": { + "#": 384 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 385 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 386 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 387 + }, + "bounds": { + "#": 389 + }, + "positionPrev": { + "#": 392 + }, + "anglePrev": 0.01097, + "axes": { + "#": 393 + }, + "area": 1635.45745, + "mass": 1.63546, + "inverseMass": 0.61145, + "inertia": 445.78684, + "inverseInertia": 0.00224, + "parent": { + "#": 374 + }, + "sleepCounter": 0, + "region": { + "#": 396 + } + }, + [ + { + "#": 374 + } + ], + [ + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + } + ], + { + "x": 200.932, + "y": 319.0907, + "index": 0, + "body": { + "#": 374 + }, + "isInternal": false + }, + { + "x": 241.37036, + "y": 319.53419, + "index": 1, + "body": { + "#": 374 + }, + "isInternal": false + }, + { + "x": 240.92687, + "y": 359.97254, + "index": 2, + "body": { + "#": 374 + }, + "isInternal": false + }, + { + "x": 200.48852, + "y": 359.52906, + "index": 3, + "body": { + "#": 374 + }, + "isInternal": false + }, + { + "x": 220.92944, + "y": 339.53162 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00297, + "y": -0.0001 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 388 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 390 + }, + "max": { + "#": 391 + } + }, + { + "x": 200.48852, + "y": 319.0907 + }, + { + "x": 241.37036, + "y": 359.97254 + }, + { + "x": 220.92944, + "y": 339.53162 + }, + [ + { + "#": 394 + }, + { + "#": 395 + } + ], + { + "x": -0.01097, + "y": 0.99994 + }, + { + "x": -0.99994, + "y": -0.01097 + }, + { + "id": "4,5,6,7", + "startCol": 4, + "endCol": 5, + "startRow": 6, + "endRow": 7 + }, + { + "id": 18, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 398 + }, + "angle": 0.01097, + "vertices": { + "#": 399 + }, + "position": { + "#": 404 + }, + "force": { + "#": 405 + }, + "torque": 0, + "positionImpulse": { + "#": 406 + }, + "constraintImpulse": { + "#": 407 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 408 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 409 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 410 + }, + "bounds": { + "#": 412 + }, + "positionPrev": { + "#": 415 + }, + "anglePrev": 0.01097, + "axes": { + "#": 416 + }, + "area": 1635.45745, + "mass": 1.63546, + "inverseMass": 0.61145, + "inertia": 445.78684, + "inverseInertia": 0.00224, + "parent": { + "#": 397 + }, + "sleepCounter": 0, + "region": { + "#": 419 + } + }, + [ + { + "#": 397 + } + ], + [ + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + } + ], + { + "x": 241.31937, + "y": 319.5299, + "index": 0, + "body": { + "#": 397 + }, + "isInternal": false + }, + { + "x": 281.75773, + "y": 319.97338, + "index": 1, + "body": { + "#": 397 + }, + "isInternal": false + }, + { + "x": 281.31425, + "y": 360.41174, + "index": 2, + "body": { + "#": 397 + }, + "isInternal": false + }, + { + "x": 240.87589, + "y": 359.96826, + "index": 3, + "body": { + "#": 397 + }, + "isInternal": false + }, + { + "x": 261.31681, + "y": 339.97082 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00229, + "y": 0.00038 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 411 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 413 + }, + "max": { + "#": 414 + } + }, + { + "x": 240.87589, + "y": 319.5299 + }, + { + "x": 281.75773, + "y": 360.41174 + }, + { + "x": 261.31681, + "y": 339.97082 + }, + [ + { + "#": 417 + }, + { + "#": 418 + } + ], + { + "x": -0.01097, + "y": 0.99994 + }, + { + "x": -0.99994, + "y": -0.01097 + }, + { + "id": "5,5,6,7", + "startCol": 5, + "endCol": 5, + "startRow": 6, + "endRow": 7 + }, + { + "id": 19, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 421 + }, + "angle": 0.01097, + "vertices": { + "#": 422 + }, + "position": { + "#": 427 + }, + "force": { + "#": 428 + }, + "torque": 0, + "positionImpulse": { + "#": 429 + }, + "constraintImpulse": { + "#": 430 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 431 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 432 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 433 + }, + "bounds": { + "#": 435 + }, + "positionPrev": { + "#": 438 + }, + "anglePrev": 0.01097, + "axes": { + "#": 439 + }, + "area": 1635.45745, + "mass": 1.63546, + "inverseMass": 0.61145, + "inertia": 445.78684, + "inverseInertia": 0.00224, + "parent": { + "#": 420 + }, + "sleepCounter": 0, + "region": { + "#": 442 + } + }, + [ + { + "#": 420 + } + ], + [ + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + } + ], + { + "x": 281.79945, + "y": 319.96999, + "index": 0, + "body": { + "#": 420 + }, + "isInternal": false + }, + { + "x": 322.2378, + "y": 320.41347, + "index": 1, + "body": { + "#": 420 + }, + "isInternal": false + }, + { + "x": 321.79432, + "y": 360.85183, + "index": 2, + "body": { + "#": 420 + }, + "isInternal": false + }, + { + "x": 281.35596, + "y": 360.40835, + "index": 3, + "body": { + "#": 420 + }, + "isInternal": false + }, + { + "x": 301.79688, + "y": 340.41091 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00065, + "y": 0.00084 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 434 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 436 + }, + "max": { + "#": 437 + } + }, + { + "x": 281.35596, + "y": 319.96999 + }, + { + "x": 322.2378, + "y": 360.85183 + }, + { + "x": 301.79688, + "y": 340.41091 + }, + [ + { + "#": 440 + }, + { + "#": 441 + } + ], + { + "x": -0.01097, + "y": 0.99994 + }, + { + "x": -0.99994, + "y": -0.01097 + }, + { + "id": "5,6,6,7", + "startCol": 5, + "endCol": 6, + "startRow": 6, + "endRow": 7 + }, + { + "id": 20, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 444 + }, + "angle": 0.01097, + "vertices": { + "#": 445 + }, + "position": { + "#": 450 + }, + "force": { + "#": 451 + }, + "torque": 0, + "positionImpulse": { + "#": 452 + }, + "constraintImpulse": { + "#": 453 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 454 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 455 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 456 + }, + "bounds": { + "#": 458 + }, + "positionPrev": { + "#": 461 + }, + "anglePrev": 0.01097, + "axes": { + "#": 462 + }, + "area": 1635.45745, + "mass": 1.63546, + "inverseMass": 0.61145, + "inertia": 445.78684, + "inverseInertia": 0.00224, + "parent": { + "#": 443 + }, + "sleepCounter": 0, + "region": { + "#": 465 + } + }, + [ + { + "#": 443 + } + ], + [ + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + } + ], + { + "x": 322.18753, + "y": 320.42995, + "index": 0, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 362.62589, + "y": 320.87343, + "index": 1, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 362.1824, + "y": 361.31179, + "index": 2, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 321.74405, + "y": 360.86831, + "index": 3, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 342.18497, + "y": 340.87087 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00091, + "y": -0.01944 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 457 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 459 + }, + "max": { + "#": 460 + } + }, + { + "x": 321.74405, + "y": 320.42995 + }, + { + "x": 362.62589, + "y": 361.31179 + }, + { + "x": 342.18497, + "y": 340.87087 + }, + [ + { + "#": 463 + }, + { + "#": 464 + } + ], + { + "x": -0.01097, + "y": 0.99994 + }, + { + "x": -0.99994, + "y": -0.01097 + }, + { + "id": "6,7,6,7", + "startCol": 6, + "endCol": 7, + "startRow": 6, + "endRow": 7 + }, + [], + [], + { + "x": 0, + "y": 0 + }, + { + "min": { + "#": 470 + }, + "max": { + "#": 471 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/compound/compound-0.json b/test/node/refs/compound/compound-0.json new file mode 100644 index 00000000..6827aa71 --- /dev/null +++ b/test/node/refs/compound/compound-0.json @@ -0,0 +1,4383 @@ +[ + { + "id": 41, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 440 + }, + "composites": { + "#": 445 + }, + "label": "World", + "gravity": { + "#": 446 + }, + "bounds": { + "#": 447 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 162 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Body", + "parts": { + "#": 91 + }, + "angle": 0, + "vertices": { + "#": 136 + }, + "position": { + "#": 145 + }, + "force": { + "#": 146 + }, + "torque": 0, + "positionImpulse": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 149 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 150 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 151 + }, + "bounds": { + "#": 153 + }, + "positionPrev": { + "#": 156 + }, + "anglePrev": 0, + "axes": { + "#": 157 + }, + "area": 16000, + "mass": 16, + "inverseMass": 0.0625, + "inertia": 221866.66667, + "inverseInertia": 0, + "parent": { + "#": 90 + }, + "sleepCounter": 0 + }, + [ + { + "#": 90 + }, + { + "#": 92 + }, + { + "#": 114 + } + ], + { + "id": 4, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 93 + }, + "angle": 0, + "vertices": { + "#": 94 + }, + "position": { + "#": 99 + }, + "force": { + "#": 100 + }, + "torque": 0, + "positionImpulse": { + "#": 101 + }, + "constraintImpulse": { + "#": 102 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 103 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 104 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 105 + }, + "bounds": { + "#": 107 + }, + "positionPrev": { + "#": 110 + }, + "anglePrev": 0, + "axes": { + "#": 111 + }, + "area": 8000, + "mass": 8, + "inverseMass": 0.125, + "inertia": 110933.33333, + "inverseInertia": 0.00001, + "parent": { + "#": 90 + }, + "sleepCounter": 0 + }, + [ + { + "#": 92 + } + ], + [ + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + }, + { + "#": 98 + } + ], + { + "x": 100, + "y": 180, + "index": 0, + "body": { + "#": 92 + }, + "isInternal": false + }, + { + "x": 300, + "y": 180, + "index": 1, + "body": { + "#": 92 + }, + "isInternal": false + }, + { + "x": 300, + "y": 220, + "index": 2, + "body": { + "#": 92 + }, + "isInternal": false + }, + { + "x": 100, + "y": 220, + "index": 3, + "body": { + "#": 92 + }, + "isInternal": false + }, + { + "x": 200, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 106 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 108 + }, + "max": { + "#": 109 + } + }, + { + "x": 100, + "y": 180 + }, + { + "x": 300, + "y": 220 + }, + { + "x": 200, + "y": 200 + }, + [ + { + "#": 112 + }, + { + "#": 113 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 115 + }, + "angle": 0, + "vertices": { + "#": 116 + }, + "position": { + "#": 121 + }, + "force": { + "#": 122 + }, + "torque": 0, + "positionImpulse": { + "#": 123 + }, + "constraintImpulse": { + "#": 124 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 125 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 126 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 127 + }, + "bounds": { + "#": 129 + }, + "positionPrev": { + "#": 132 + }, + "anglePrev": 0, + "axes": { + "#": 133 + }, + "area": 8000, + "mass": 8, + "inverseMass": 0.125, + "inertia": 110933.33333, + "inverseInertia": 0.00001, + "parent": { + "#": 90 + }, + "sleepCounter": 0 + }, + [ + { + "#": 114 + } + ], + [ + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + } + ], + { + "x": 180, + "y": 100, + "index": 0, + "body": { + "#": 114 + }, + "isInternal": false + }, + { + "x": 220, + "y": 100, + "index": 1, + "body": { + "#": 114 + }, + "isInternal": false + }, + { + "x": 220, + "y": 300, + "index": 2, + "body": { + "#": 114 + }, + "isInternal": false + }, + { + "x": 180, + "y": 300, + "index": 3, + "body": { + "#": 114 + }, + "isInternal": false + }, + { + "x": 200, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 128 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 130 + }, + "max": { + "#": 131 + } + }, + { + "x": 180, + "y": 100 + }, + { + "x": 220, + "y": 300 + }, + { + "x": 200, + "y": 200 + }, + [ + { + "#": 134 + }, + { + "#": 135 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + } + ], + { + "x": 300, + "y": 220, + "index": 0, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 220, + "y": 300, + "index": 1, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 180, + "y": 300, + "index": 2, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 100, + "y": 220, + "index": 3, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 100, + "y": 180, + "index": 4, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 180, + "y": 100, + "index": 5, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 220, + "y": 100, + "index": 6, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 300, + "y": 180, + "index": 7, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 200, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 152 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 154 + }, + "max": { + "#": 155 + } + }, + { + "x": 100, + "y": 100 + }, + { + "x": 300, + "y": 300 + }, + { + "x": 200, + "y": 200 + }, + [ + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 11, + "type": "body", + "label": "Body", + "parts": { + "#": 163 + }, + "angle": 0, + "vertices": { + "#": 384 + }, + "position": { + "#": 413 + }, + "force": { + "#": 414 + }, + "torque": 0, + "positionImpulse": { + "#": 415 + }, + "constraintImpulse": { + "#": 416 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 417 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 418 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 419 + }, + "bounds": { + "#": 421 + }, + "positionPrev": { + "#": 424 + }, + "anglePrev": 0, + "axes": { + "#": 425 + }, + "area": 11199.93666, + "mass": 11.19994, + "inverseMass": 0.08929, + "inertia": 19964.55116, + "inverseInertia": 0.00005, + "parent": { + "#": 162 + }, + "sleepCounter": 0 + }, + [ + { + "#": 162 + }, + { + "#": 164 + }, + { + "#": 219 + }, + { + "#": 274 + }, + { + "#": 329 + } + ], + { + "id": 7, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 165 + }, + "angle": 0, + "vertices": { + "#": 166 + }, + "position": { + "#": 193 + }, + "force": { + "#": 194 + }, + "torque": 0, + "positionImpulse": { + "#": 195 + }, + "constraintImpulse": { + "#": 196 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 197 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 198 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 199 + }, + "circleRadius": 30, + "bounds": { + "#": 201 + }, + "positionPrev": { + "#": 204 + }, + "anglePrev": 0, + "axes": { + "#": 205 + }, + "area": 2799.98416, + "mass": 2.79998, + "inverseMass": 0.35714, + "inertia": 4991.13779, + "inverseInertia": 0.0002, + "parent": { + "#": 162 + }, + "sleepCounter": 0 + }, + [ + { + "#": 164 + } + ], + [ + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + } + ], + { + "x": 429.781, + "y": 303.616, + "index": 0, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 428.05, + "y": 310.638, + "index": 1, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 424.69, + "y": 317.042, + "index": 2, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 419.894, + "y": 322.455, + "index": 3, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 413.942, + "y": 326.564, + "index": 4, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 407.179, + "y": 329.128, + "index": 5, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 400, + "y": 330, + "index": 6, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 392.821, + "y": 329.128, + "index": 7, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 386.058, + "y": 326.564, + "index": 8, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 380.106, + "y": 322.455, + "index": 9, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 375.31, + "y": 317.042, + "index": 10, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 371.95, + "y": 310.638, + "index": 11, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 370.219, + "y": 303.616, + "index": 12, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 370.219, + "y": 296.384, + "index": 13, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 371.95, + "y": 289.362, + "index": 14, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 375.31, + "y": 282.958, + "index": 15, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 380.106, + "y": 277.545, + "index": 16, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 386.058, + "y": 273.436, + "index": 17, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 392.821, + "y": 270.872, + "index": 18, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 400, + "y": 270, + "index": 19, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 407.179, + "y": 270.872, + "index": 20, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 413.942, + "y": 273.436, + "index": 21, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 419.894, + "y": 277.545, + "index": 22, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 424.69, + "y": 282.958, + "index": 23, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 428.05, + "y": 289.362, + "index": 24, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 429.781, + "y": 296.384, + "index": 25, + "body": { + "#": 164 + }, + "isInternal": false + }, + { + "x": 400, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 200 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 202 + }, + "max": { + "#": 203 + } + }, + { + "x": 370.219, + "y": 270 + }, + { + "x": 429.781, + "y": 330 + }, + { + "x": 400, + "y": 300 + }, + [ + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88552, + "y": -0.46461 + }, + { + "x": -0.74848, + "y": -0.66316 + }, + { + "x": -0.56812, + "y": -0.82294 + }, + { + "x": -0.3545, + "y": -0.93506 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.3545, + "y": -0.93506 + }, + { + "x": 0.56812, + "y": -0.82294 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88552, + "y": -0.46461 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 220 + }, + "angle": 0, + "vertices": { + "#": 221 + }, + "position": { + "#": 248 + }, + "force": { + "#": 249 + }, + "torque": 0, + "positionImpulse": { + "#": 250 + }, + "constraintImpulse": { + "#": 251 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 252 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 253 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 254 + }, + "circleRadius": 30, + "bounds": { + "#": 256 + }, + "positionPrev": { + "#": 259 + }, + "anglePrev": 0, + "axes": { + "#": 260 + }, + "area": 2799.98416, + "mass": 2.79998, + "inverseMass": 0.35714, + "inertia": 4991.13779, + "inverseInertia": 0.0002, + "parent": { + "#": 162 + }, + "sleepCounter": 0 + }, + [ + { + "#": 219 + } + ], + [ + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + } + ], + { + "x": 579.781, + "y": 303.616, + "index": 0, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 578.05, + "y": 310.638, + "index": 1, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 574.69, + "y": 317.042, + "index": 2, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 569.894, + "y": 322.455, + "index": 3, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 563.942, + "y": 326.564, + "index": 4, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 557.179, + "y": 329.128, + "index": 5, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 550, + "y": 330, + "index": 6, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 542.821, + "y": 329.128, + "index": 7, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 536.058, + "y": 326.564, + "index": 8, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 530.106, + "y": 322.455, + "index": 9, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 525.31, + "y": 317.042, + "index": 10, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 521.95, + "y": 310.638, + "index": 11, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 520.219, + "y": 303.616, + "index": 12, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 520.219, + "y": 296.384, + "index": 13, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 521.95, + "y": 289.362, + "index": 14, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 525.31, + "y": 282.958, + "index": 15, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 530.106, + "y": 277.545, + "index": 16, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 536.058, + "y": 273.436, + "index": 17, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 542.821, + "y": 270.872, + "index": 18, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 550, + "y": 270, + "index": 19, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 557.179, + "y": 270.872, + "index": 20, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 563.942, + "y": 273.436, + "index": 21, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 569.894, + "y": 277.545, + "index": 22, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 574.69, + "y": 282.958, + "index": 23, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 578.05, + "y": 289.362, + "index": 24, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 579.781, + "y": 296.384, + "index": 25, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 550, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 255 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 257 + }, + "max": { + "#": 258 + } + }, + { + "x": 520.219, + "y": 270 + }, + { + "x": 579.781, + "y": 330 + }, + { + "x": 550, + "y": 300 + }, + [ + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88552, + "y": -0.46461 + }, + { + "x": -0.74848, + "y": -0.66316 + }, + { + "x": -0.56812, + "y": -0.82294 + }, + { + "x": -0.3545, + "y": -0.93506 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.3545, + "y": -0.93506 + }, + { + "x": 0.56812, + "y": -0.82294 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88552, + "y": -0.46461 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 275 + }, + "angle": 0, + "vertices": { + "#": 276 + }, + "position": { + "#": 303 + }, + "force": { + "#": 304 + }, + "torque": 0, + "positionImpulse": { + "#": 305 + }, + "constraintImpulse": { + "#": 306 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 307 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 308 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 309 + }, + "circleRadius": 30, + "bounds": { + "#": 311 + }, + "positionPrev": { + "#": 314 + }, + "anglePrev": 0, + "axes": { + "#": 315 + }, + "area": 2799.98416, + "mass": 2.79998, + "inverseMass": 0.35714, + "inertia": 4991.13779, + "inverseInertia": 0.0002, + "parent": { + "#": 162 + }, + "sleepCounter": 0 + }, + [ + { + "#": 274 + } + ], + [ + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + } + ], + { + "x": 579.781, + "y": 453.616, + "index": 0, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 578.05, + "y": 460.638, + "index": 1, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 574.69, + "y": 467.042, + "index": 2, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 569.894, + "y": 472.455, + "index": 3, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 563.942, + "y": 476.564, + "index": 4, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 557.179, + "y": 479.128, + "index": 5, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 550, + "y": 480, + "index": 6, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 542.821, + "y": 479.128, + "index": 7, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 536.058, + "y": 476.564, + "index": 8, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 530.106, + "y": 472.455, + "index": 9, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 525.31, + "y": 467.042, + "index": 10, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 521.95, + "y": 460.638, + "index": 11, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 520.219, + "y": 453.616, + "index": 12, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 520.219, + "y": 446.384, + "index": 13, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 521.95, + "y": 439.362, + "index": 14, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 525.31, + "y": 432.958, + "index": 15, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 530.106, + "y": 427.545, + "index": 16, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 536.058, + "y": 423.436, + "index": 17, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 542.821, + "y": 420.872, + "index": 18, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 550, + "y": 420, + "index": 19, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 557.179, + "y": 420.872, + "index": 20, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 563.942, + "y": 423.436, + "index": 21, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 569.894, + "y": 427.545, + "index": 22, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 574.69, + "y": 432.958, + "index": 23, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 578.05, + "y": 439.362, + "index": 24, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 579.781, + "y": 446.384, + "index": 25, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 550, + "y": 450 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 310 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 312 + }, + "max": { + "#": 313 + } + }, + { + "x": 520.219, + "y": 420 + }, + { + "x": 579.781, + "y": 480 + }, + { + "x": 550, + "y": 450 + }, + [ + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88552, + "y": -0.46461 + }, + { + "x": -0.74848, + "y": -0.66316 + }, + { + "x": -0.56812, + "y": -0.82294 + }, + { + "x": -0.3545, + "y": -0.93506 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.3545, + "y": -0.93506 + }, + { + "x": 0.56812, + "y": -0.82294 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88552, + "y": -0.46461 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 10, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 330 + }, + "angle": 0, + "vertices": { + "#": 331 + }, + "position": { + "#": 358 + }, + "force": { + "#": 359 + }, + "torque": 0, + "positionImpulse": { + "#": 360 + }, + "constraintImpulse": { + "#": 361 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 362 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 363 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 364 + }, + "circleRadius": 30, + "bounds": { + "#": 366 + }, + "positionPrev": { + "#": 369 + }, + "anglePrev": 0, + "axes": { + "#": 370 + }, + "area": 2799.98416, + "mass": 2.79998, + "inverseMass": 0.35714, + "inertia": 4991.13779, + "inverseInertia": 0.0002, + "parent": { + "#": 162 + }, + "sleepCounter": 0 + }, + [ + { + "#": 329 + } + ], + [ + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + } + ], + { + "x": 429.781, + "y": 453.616, + "index": 0, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 428.05, + "y": 460.638, + "index": 1, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 424.69, + "y": 467.042, + "index": 2, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 419.894, + "y": 472.455, + "index": 3, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 413.942, + "y": 476.564, + "index": 4, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 407.179, + "y": 479.128, + "index": 5, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 400, + "y": 480, + "index": 6, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 392.821, + "y": 479.128, + "index": 7, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 386.058, + "y": 476.564, + "index": 8, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 380.106, + "y": 472.455, + "index": 9, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 375.31, + "y": 467.042, + "index": 10, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 371.95, + "y": 460.638, + "index": 11, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 370.219, + "y": 453.616, + "index": 12, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 370.219, + "y": 446.384, + "index": 13, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 371.95, + "y": 439.362, + "index": 14, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 375.31, + "y": 432.958, + "index": 15, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 380.106, + "y": 427.545, + "index": 16, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 386.058, + "y": 423.436, + "index": 17, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 392.821, + "y": 420.872, + "index": 18, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 400, + "y": 420, + "index": 19, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 407.179, + "y": 420.872, + "index": 20, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 413.942, + "y": 423.436, + "index": 21, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 419.894, + "y": 427.545, + "index": 22, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 424.69, + "y": 432.958, + "index": 23, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 428.05, + "y": 439.362, + "index": 24, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 429.781, + "y": 446.384, + "index": 25, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 400, + "y": 450 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 365 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 367 + }, + "max": { + "#": 368 + } + }, + { + "x": 370.219, + "y": 420 + }, + { + "x": 429.781, + "y": 480 + }, + { + "x": 400, + "y": 450 + }, + [ + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88552, + "y": -0.46461 + }, + { + "x": -0.74848, + "y": -0.66316 + }, + { + "x": -0.56812, + "y": -0.82294 + }, + { + "x": -0.3545, + "y": -0.93506 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.3545, + "y": -0.93506 + }, + { + "x": 0.56812, + "y": -0.82294 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88552, + "y": -0.46461 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + [ + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + } + ], + { + "x": 579.781, + "y": 453.616, + "index": 0, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 578.05, + "y": 460.638, + "index": 1, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 574.69, + "y": 467.042, + "index": 2, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 569.894, + "y": 472.455, + "index": 3, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 563.942, + "y": 476.564, + "index": 4, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 557.179, + "y": 479.128, + "index": 5, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 550, + "y": 480, + "index": 6, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 400, + "y": 480, + "index": 7, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 392.821, + "y": 479.128, + "index": 8, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 386.058, + "y": 476.564, + "index": 9, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 380.106, + "y": 472.455, + "index": 10, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 375.31, + "y": 467.042, + "index": 11, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 371.95, + "y": 460.638, + "index": 12, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 370.219, + "y": 453.616, + "index": 13, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 370.219, + "y": 296.384, + "index": 14, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 371.95, + "y": 289.362, + "index": 15, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 375.31, + "y": 282.958, + "index": 16, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 380.106, + "y": 277.545, + "index": 17, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 386.058, + "y": 273.436, + "index": 18, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 392.821, + "y": 270.872, + "index": 19, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 400, + "y": 270, + "index": 20, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 550, + "y": 270, + "index": 21, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 557.179, + "y": 270.872, + "index": 22, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 563.942, + "y": 273.436, + "index": 23, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 569.894, + "y": 277.545, + "index": 24, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 574.69, + "y": 282.958, + "index": 25, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 578.05, + "y": 289.362, + "index": 26, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 579.781, + "y": 296.384, + "index": 27, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 475, + "y": 375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 420 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 422 + }, + "max": { + "#": 423 + } + }, + { + "x": 370.219, + "y": 270 + }, + { + "x": 579.781, + "y": 480 + }, + { + "x": 475, + "y": 375 + }, + [ + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88552, + "y": -0.46461 + }, + { + "x": -0.74848, + "y": -0.66316 + }, + { + "x": -0.56812, + "y": -0.82294 + }, + { + "x": -0.3545, + "y": -0.93506 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.3545, + "y": -0.93506 + }, + { + "x": 0.56812, + "y": -0.82294 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88552, + "y": -0.46461 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + [ + { + "#": 441 + } + ], + { + "pointA": { + "#": 442 + }, + "bodyB": { + "#": 162 + }, + "pointB": { + "#": 443 + }, + "length": 237.17082, + "render": { + "#": 444 + }, + "id": 12, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 400, + "y": 100 + }, + { + "x": 0, + "y": -50 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 448 + }, + "max": { + "#": 449 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/compound/compound-10.json b/test/node/refs/compound/compound-10.json new file mode 100644 index 00000000..5d20745d --- /dev/null +++ b/test/node/refs/compound/compound-10.json @@ -0,0 +1,4443 @@ +[ + { + "id": 41, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 446 + }, + "composites": { + "#": 451 + }, + "label": "World", + "gravity": { + "#": 452 + }, + "bounds": { + "#": 453 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + }, + { + "#": 94 + }, + { + "#": 167 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + { + "id": 6, + "type": "body", + "label": "Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 140 + }, + "position": { + "#": 149 + }, + "force": { + "#": 150 + }, + "torque": 0, + "positionImpulse": { + "#": 151 + }, + "constraintImpulse": { + "#": 152 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 153 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 154 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 155 + }, + "bounds": { + "#": 157 + }, + "positionPrev": { + "#": 160 + }, + "anglePrev": 0, + "axes": { + "#": 161 + }, + "area": 16000, + "mass": 16, + "inverseMass": 0.0625, + "inertia": 221866.66667, + "inverseInertia": 0, + "parent": { + "#": 94 + }, + "sleepCounter": 0, + "region": { + "#": 166 + } + }, + [ + { + "#": 94 + }, + { + "#": 96 + }, + { + "#": 118 + } + ], + { + "id": 4, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 97 + }, + "angle": 0, + "vertices": { + "#": 98 + }, + "position": { + "#": 103 + }, + "force": { + "#": 104 + }, + "torque": 0, + "positionImpulse": { + "#": 105 + }, + "constraintImpulse": { + "#": 106 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 107 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 108 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 109 + }, + "bounds": { + "#": 111 + }, + "positionPrev": { + "#": 114 + }, + "anglePrev": 0, + "axes": { + "#": 115 + }, + "area": 8000, + "mass": 8, + "inverseMass": 0.125, + "inertia": 110933.33333, + "inverseInertia": 0.00001, + "parent": { + "#": 94 + }, + "sleepCounter": 0 + }, + [ + { + "#": 96 + } + ], + [ + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + } + ], + { + "x": 100, + "y": 197.73575, + "index": 0, + "body": { + "#": 96 + }, + "isInternal": false + }, + { + "x": 300, + "y": 197.73575, + "index": 1, + "body": { + "#": 96 + }, + "isInternal": false + }, + { + "x": 300, + "y": 237.73575, + "index": 2, + "body": { + "#": 96 + }, + "isInternal": false + }, + { + "x": 100, + "y": 237.73575, + "index": 3, + "body": { + "#": 96 + }, + "isInternal": false + }, + { + "x": 200, + "y": 217.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 110 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 112 + }, + "max": { + "#": 113 + } + }, + { + "x": 100, + "y": 197.73575 + }, + { + "x": 300, + "y": 237.73575 + }, + { + "x": 200, + "y": 200 + }, + [ + { + "#": 116 + }, + { + "#": 117 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 119 + }, + "angle": 0, + "vertices": { + "#": 120 + }, + "position": { + "#": 125 + }, + "force": { + "#": 126 + }, + "torque": 0, + "positionImpulse": { + "#": 127 + }, + "constraintImpulse": { + "#": 128 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 129 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 130 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 131 + }, + "bounds": { + "#": 133 + }, + "positionPrev": { + "#": 136 + }, + "anglePrev": 0, + "axes": { + "#": 137 + }, + "area": 8000, + "mass": 8, + "inverseMass": 0.125, + "inertia": 110933.33333, + "inverseInertia": 0.00001, + "parent": { + "#": 94 + }, + "sleepCounter": 0 + }, + [ + { + "#": 118 + } + ], + [ + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + } + ], + { + "x": 180, + "y": 117.73575, + "index": 0, + "body": { + "#": 118 + }, + "isInternal": false + }, + { + "x": 220, + "y": 117.73575, + "index": 1, + "body": { + "#": 118 + }, + "isInternal": false + }, + { + "x": 220, + "y": 317.73575, + "index": 2, + "body": { + "#": 118 + }, + "isInternal": false + }, + { + "x": 180, + "y": 317.73575, + "index": 3, + "body": { + "#": 118 + }, + "isInternal": false + }, + { + "x": 200, + "y": 217.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 132 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 134 + }, + "max": { + "#": 135 + } + }, + { + "x": 180, + "y": 117.73575 + }, + { + "x": 220, + "y": 317.73575 + }, + { + "x": 200, + "y": 200 + }, + [ + { + "#": 138 + }, + { + "#": 139 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + } + ], + { + "x": 300, + "y": 237.73575, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 220, + "y": 317.73575, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 180, + "y": 317.73575, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 100, + "y": 237.73575, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 100, + "y": 197.73575, + "index": 4, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 180, + "y": 117.73575, + "index": 5, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 220, + "y": 117.73575, + "index": 6, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 300, + "y": 197.73575, + "index": 7, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 200, + "y": 217.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 156 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 158 + }, + "max": { + "#": 159 + } + }, + { + "x": 100, + "y": 117.73575 + }, + { + "x": 300, + "y": 317.73575 + }, + { + "x": 200, + "y": 214.82848 + }, + [ + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,6,2,6", + "startCol": 2, + "endCol": 6, + "startRow": 2, + "endRow": 6 + }, + { + "id": 11, + "type": "body", + "label": "Body", + "parts": { + "#": 168 + }, + "angle": -0.07143, + "vertices": { + "#": 389 + }, + "position": { + "#": 418 + }, + "force": { + "#": 419 + }, + "torque": 0, + "positionImpulse": { + "#": 420 + }, + "constraintImpulse": { + "#": 421 + }, + "totalContacts": 0, + "speed": 0.95861, + "angularSpeed": 0.0098, + "velocity": { + "#": 422 + }, + "angularVelocity": -0.0098, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 423 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 424 + }, + "bounds": { + "#": 426 + }, + "positionPrev": { + "#": 429 + }, + "anglePrev": -0.06087, + "axes": { + "#": 430 + }, + "area": 11199.93666, + "mass": 11.19994, + "inverseMass": 0.08929, + "inertia": 19964.55116, + "inverseInertia": 0.00005, + "parent": { + "#": 167 + }, + "sleepCounter": 0, + "region": { + "#": 445 + } + }, + [ + { + "#": 167 + }, + { + "#": 169 + }, + { + "#": 224 + }, + { + "#": 279 + }, + { + "#": 334 + } + ], + { + "id": 7, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 170 + }, + "angle": 0, + "vertices": { + "#": 171 + }, + "position": { + "#": 198 + }, + "force": { + "#": 199 + }, + "torque": 0, + "positionImpulse": { + "#": 200 + }, + "constraintImpulse": { + "#": 201 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 202 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 203 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 204 + }, + "circleRadius": 30, + "bounds": { + "#": 206 + }, + "positionPrev": { + "#": 209 + }, + "anglePrev": 0, + "axes": { + "#": 210 + }, + "area": 2799.98416, + "mass": 2.79998, + "inverseMass": 0.35714, + "inertia": 4991.13779, + "inverseInertia": 0.0002, + "parent": { + "#": 167 + }, + "sleepCounter": 0 + }, + [ + { + "#": 169 + } + ], + [ + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + } + ], + { + "x": 419.92342, + "y": 309.69603, + "index": 0, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 418.69799, + "y": 316.82367, + "index": 1, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 415.80362, + "y": 323.45114, + "index": 2, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 411.40618, + "y": 329.19263, + "index": 3, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 405.76262, + "y": 333.71595, + "index": 4, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 399.19986, + "y": 336.75608, + "index": 5, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 392.1014, + "y": 338.13823, + "index": 6, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 384.87847, + "y": 337.78082, + "index": 7, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 377.94972, + "y": 335.70604, + "index": 8, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 371.71964, + "y": 332.03231, + "index": 9, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 366.54954, + "y": 326.97541, + "index": 10, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 362.74106, + "y": 320.82754, + "index": 11, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 360.51331, + "y": 313.94699, + "index": 12, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 359.99716, + "y": 306.73343, + "index": 13, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 361.22258, + "y": 299.6058, + "index": 14, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 364.11696, + "y": 292.97832, + "index": 15, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 368.5144, + "y": 287.23684, + "index": 16, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 374.15796, + "y": 282.71352, + "index": 17, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 380.72072, + "y": 279.67338, + "index": 18, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 387.81918, + "y": 278.29124, + "index": 19, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 395.0421, + "y": 278.64864, + "index": 20, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 401.97085, + "y": 280.72343, + "index": 21, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 408.20093, + "y": 284.39715, + "index": 22, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 413.37103, + "y": 289.45406, + "index": 23, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 417.17952, + "y": 295.60192, + "index": 24, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 419.40727, + "y": 302.48247, + "index": 25, + "body": { + "#": 169 + }, + "isInternal": false + }, + { + "x": 389.96029, + "y": 308.21473 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 205 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 207 + }, + "max": { + "#": 208 + } + }, + { + "x": 359.99716, + "y": 278.29124 + }, + { + "x": 419.92342, + "y": 338.13823 + }, + { + "x": 400, + "y": 300 + }, + [ + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + } + ], + { + "x": -0.98554, + "y": -0.16944 + }, + { + "x": -0.91642, + "y": -0.40022 + }, + { + "x": -0.7939, + "y": -0.60805 + }, + { + "x": -0.62541, + "y": -0.7803 + }, + { + "x": -0.42033, + "y": -0.90737 + }, + { + "x": -0.19112, + "y": -0.98157 + }, + { + "x": 0.04942, + "y": -0.99878 + }, + { + "x": 0.28686, + "y": -0.95797 + }, + { + "x": 0.50794, + "y": -0.86139 + }, + { + "x": 0.69924, + "y": -0.71489 + }, + { + "x": 0.8501, + "y": -0.52662 + }, + { + "x": 0.95138, + "y": -0.30803 + }, + { + "x": 0.99745, + "y": -0.07137 + }, + { + "id": 8, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 225 + }, + "angle": 0, + "vertices": { + "#": 226 + }, + "position": { + "#": 253 + }, + "force": { + "#": 254 + }, + "torque": 0, + "positionImpulse": { + "#": 255 + }, + "constraintImpulse": { + "#": 256 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 257 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 258 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 259 + }, + "circleRadius": 30, + "bounds": { + "#": 261 + }, + "positionPrev": { + "#": 264 + }, + "anglePrev": 0, + "axes": { + "#": 265 + }, + "area": 2799.98416, + "mass": 2.79998, + "inverseMass": 0.35714, + "inertia": 4991.13779, + "inverseInertia": 0.0002, + "parent": { + "#": 167 + }, + "sleepCounter": 0 + }, + [ + { + "#": 224 + } + ], + [ + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + } + ], + { + "x": 569.5409, + "y": 298.99048, + "index": 0, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 568.31548, + "y": 306.11811, + "index": 1, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 565.4211, + "y": 312.74559, + "index": 2, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 561.02366, + "y": 318.48708, + "index": 3, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 555.3801, + "y": 323.01039, + "index": 4, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 548.81734, + "y": 326.05053, + "index": 5, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 541.71888, + "y": 327.43268, + "index": 6, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 534.49595, + "y": 327.07527, + "index": 7, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 527.56721, + "y": 325.00048, + "index": 8, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 521.33712, + "y": 321.32676, + "index": 9, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 516.16703, + "y": 316.26985, + "index": 10, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 512.35854, + "y": 310.12199, + "index": 11, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 510.13079, + "y": 303.24144, + "index": 12, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 509.61464, + "y": 296.02788, + "index": 13, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 510.84006, + "y": 288.90025, + "index": 14, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 513.73444, + "y": 282.27277, + "index": 15, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 518.13188, + "y": 276.53128, + "index": 16, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 523.77544, + "y": 272.00797, + "index": 17, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 530.3382, + "y": 268.96783, + "index": 18, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 537.43666, + "y": 267.58568, + "index": 19, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 544.65959, + "y": 267.94309, + "index": 20, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 551.58833, + "y": 270.01788, + "index": 21, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 557.81842, + "y": 273.6916, + "index": 22, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 562.98851, + "y": 278.74851, + "index": 23, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 566.797, + "y": 284.89637, + "index": 24, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 569.02475, + "y": 291.77692, + "index": 25, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 539.57777, + "y": 297.50918 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 260 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 262 + }, + "max": { + "#": 263 + } + }, + { + "x": 509.61464, + "y": 267.58568 + }, + { + "x": 569.5409, + "y": 327.43268 + }, + { + "x": 550, + "y": 300 + }, + [ + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + } + ], + { + "x": -0.98554, + "y": -0.16944 + }, + { + "x": -0.91642, + "y": -0.40022 + }, + { + "x": -0.7939, + "y": -0.60805 + }, + { + "x": -0.62541, + "y": -0.7803 + }, + { + "x": -0.42033, + "y": -0.90737 + }, + { + "x": -0.19112, + "y": -0.98157 + }, + { + "x": 0.04942, + "y": -0.99878 + }, + { + "x": 0.28686, + "y": -0.95797 + }, + { + "x": 0.50794, + "y": -0.86139 + }, + { + "x": 0.69924, + "y": -0.71489 + }, + { + "x": 0.8501, + "y": -0.52662 + }, + { + "x": 0.95138, + "y": -0.30803 + }, + { + "x": 0.99745, + "y": -0.07137 + }, + { + "id": 9, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 280 + }, + "angle": 0, + "vertices": { + "#": 281 + }, + "position": { + "#": 308 + }, + "force": { + "#": 309 + }, + "torque": 0, + "positionImpulse": { + "#": 310 + }, + "constraintImpulse": { + "#": 311 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 312 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 313 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 314 + }, + "circleRadius": 30, + "bounds": { + "#": 316 + }, + "positionPrev": { + "#": 319 + }, + "anglePrev": 0, + "axes": { + "#": 320 + }, + "area": 2799.98416, + "mass": 2.79998, + "inverseMass": 0.35714, + "inertia": 4991.13779, + "inverseInertia": 0.0002, + "parent": { + "#": 167 + }, + "sleepCounter": 0 + }, + [ + { + "#": 279 + } + ], + [ + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + } + ], + { + "x": 580.24645, + "y": 448.60796, + "index": 0, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 579.02103, + "y": 455.7356, + "index": 1, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 576.12665, + "y": 462.36307, + "index": 2, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 571.72921, + "y": 468.10456, + "index": 3, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 566.08565, + "y": 472.62788, + "index": 4, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 559.52289, + "y": 475.66802, + "index": 5, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 552.42443, + "y": 477.05016, + "index": 6, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 545.2015, + "y": 476.69275, + "index": 7, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 538.27276, + "y": 474.61797, + "index": 8, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 532.04268, + "y": 470.94424, + "index": 9, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 526.87258, + "y": 465.88734, + "index": 10, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 523.06409, + "y": 459.73947, + "index": 11, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 520.83634, + "y": 452.85892, + "index": 12, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 520.32019, + "y": 445.64536, + "index": 13, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 521.54561, + "y": 438.51773, + "index": 14, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 524.43999, + "y": 431.89026, + "index": 15, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 528.83743, + "y": 426.14877, + "index": 16, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 534.48099, + "y": 421.62545, + "index": 17, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 541.04375, + "y": 418.58531, + "index": 18, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 548.14221, + "y": 417.20317, + "index": 19, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 555.36514, + "y": 417.56057, + "index": 20, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 562.29389, + "y": 419.63536, + "index": 21, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 568.52397, + "y": 423.30908, + "index": 22, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 573.69407, + "y": 428.36599, + "index": 23, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 577.50255, + "y": 434.51385, + "index": 24, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 579.7303, + "y": 441.3944, + "index": 25, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 550.28332, + "y": 447.12666 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 315 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 317 + }, + "max": { + "#": 318 + } + }, + { + "x": 520.32019, + "y": 417.20317 + }, + { + "x": 580.24645, + "y": 477.05016 + }, + { + "x": 550, + "y": 450 + }, + [ + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + } + ], + { + "x": -0.98554, + "y": -0.16944 + }, + { + "x": -0.91642, + "y": -0.40022 + }, + { + "x": -0.7939, + "y": -0.60805 + }, + { + "x": -0.62541, + "y": -0.7803 + }, + { + "x": -0.42033, + "y": -0.90737 + }, + { + "x": -0.19112, + "y": -0.98157 + }, + { + "x": 0.04942, + "y": -0.99878 + }, + { + "x": 0.28686, + "y": -0.95797 + }, + { + "x": 0.50794, + "y": -0.86139 + }, + { + "x": 0.69924, + "y": -0.71489 + }, + { + "x": 0.8501, + "y": -0.52662 + }, + { + "x": 0.95138, + "y": -0.30803 + }, + { + "x": 0.99745, + "y": -0.07137 + }, + { + "id": 10, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 335 + }, + "angle": 0, + "vertices": { + "#": 336 + }, + "position": { + "#": 363 + }, + "force": { + "#": 364 + }, + "torque": 0, + "positionImpulse": { + "#": 365 + }, + "constraintImpulse": { + "#": 366 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 367 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 368 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 369 + }, + "circleRadius": 30, + "bounds": { + "#": 371 + }, + "positionPrev": { + "#": 374 + }, + "anglePrev": 0, + "axes": { + "#": 375 + }, + "area": 2799.98416, + "mass": 2.79998, + "inverseMass": 0.35714, + "inertia": 4991.13779, + "inverseInertia": 0.0002, + "parent": { + "#": 167 + }, + "sleepCounter": 0 + }, + [ + { + "#": 334 + } + ], + [ + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + } + ], + { + "x": 430.62897, + "y": 459.31351, + "index": 0, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 429.40355, + "y": 466.44115, + "index": 1, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 426.50917, + "y": 473.06862, + "index": 2, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 422.11173, + "y": 478.81011, + "index": 3, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 416.46817, + "y": 483.33343, + "index": 4, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 409.90541, + "y": 486.37357, + "index": 5, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 402.80695, + "y": 487.75571, + "index": 6, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 395.58402, + "y": 487.3983, + "index": 7, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 388.65527, + "y": 485.32352, + "index": 8, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 382.42519, + "y": 481.64979, + "index": 9, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 377.2551, + "y": 476.59289, + "index": 10, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 373.44661, + "y": 470.44502, + "index": 11, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 371.21886, + "y": 463.56447, + "index": 12, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 370.70271, + "y": 456.35092, + "index": 13, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 371.92813, + "y": 449.22328, + "index": 14, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 374.82251, + "y": 442.59581, + "index": 15, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 379.21995, + "y": 436.85432, + "index": 16, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 384.86351, + "y": 432.331, + "index": 17, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 391.42627, + "y": 429.29086, + "index": 18, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 398.52473, + "y": 427.90872, + "index": 19, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 405.74766, + "y": 428.26613, + "index": 20, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 412.6764, + "y": 430.34091, + "index": 21, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 418.90649, + "y": 434.01464, + "index": 22, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 424.07658, + "y": 439.07154, + "index": 23, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 427.88507, + "y": 445.2194, + "index": 24, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 430.11282, + "y": 452.09996, + "index": 25, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 400.66584, + "y": 457.83221 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 370 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 372 + }, + "max": { + "#": 373 + } + }, + { + "x": 370.70271, + "y": 427.90872 + }, + { + "x": 430.62897, + "y": 487.75571 + }, + { + "x": 400, + "y": 450 + }, + [ + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + } + ], + { + "x": -0.98554, + "y": -0.16944 + }, + { + "x": -0.91642, + "y": -0.40022 + }, + { + "x": -0.7939, + "y": -0.60805 + }, + { + "x": -0.62541, + "y": -0.7803 + }, + { + "x": -0.42033, + "y": -0.90737 + }, + { + "x": -0.19112, + "y": -0.98157 + }, + { + "x": 0.04942, + "y": -0.99878 + }, + { + "x": 0.28686, + "y": -0.95797 + }, + { + "x": 0.50794, + "y": -0.86139 + }, + { + "x": 0.69924, + "y": -0.71489 + }, + { + "x": 0.8501, + "y": -0.52662 + }, + { + "x": 0.95138, + "y": -0.30803 + }, + { + "x": 0.99745, + "y": -0.07137 + }, + [ + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + } + ], + { + "x": 580.24645, + "y": 448.60796, + "index": 0, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 579.02103, + "y": 455.7356, + "index": 1, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 576.12665, + "y": 462.36307, + "index": 2, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 571.72921, + "y": 468.10456, + "index": 3, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 566.08565, + "y": 472.62788, + "index": 4, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 559.52289, + "y": 475.66802, + "index": 5, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 552.42443, + "y": 477.05016, + "index": 6, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 402.80695, + "y": 487.75571, + "index": 7, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 395.58402, + "y": 487.3983, + "index": 8, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 388.65527, + "y": 485.32352, + "index": 9, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 382.42519, + "y": 481.64979, + "index": 10, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 377.2551, + "y": 476.59289, + "index": 11, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 373.44661, + "y": 470.44502, + "index": 12, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 371.21886, + "y": 463.56447, + "index": 13, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 359.99716, + "y": 306.73343, + "index": 14, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 361.22258, + "y": 299.6058, + "index": 15, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 364.11696, + "y": 292.97832, + "index": 16, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 368.5144, + "y": 287.23684, + "index": 17, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 374.15796, + "y": 282.71352, + "index": 18, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 380.72072, + "y": 279.67338, + "index": 19, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 387.81918, + "y": 278.29124, + "index": 20, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 537.43666, + "y": 267.58568, + "index": 21, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 544.65959, + "y": 267.94309, + "index": 22, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 551.58833, + "y": 270.01788, + "index": 23, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 557.81842, + "y": 273.6916, + "index": 24, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 562.98851, + "y": 278.74851, + "index": 25, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 566.797, + "y": 284.89637, + "index": 26, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 569.02475, + "y": 291.77692, + "index": 27, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 470.1218, + "y": 377.6707 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.73102, + "y": 0.62012 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 425 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 427 + }, + "max": { + "#": 428 + } + }, + { + "x": 359.99716, + "y": 267.58568 + }, + { + "x": 580.24645, + "y": 487.75571 + }, + { + "x": 470.92775, + "y": 377.30496 + }, + [ + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + } + ], + { + "x": -0.98554, + "y": -0.16944 + }, + { + "x": -0.91642, + "y": -0.40022 + }, + { + "x": -0.7939, + "y": -0.60805 + }, + { + "x": -0.62541, + "y": -0.7803 + }, + { + "x": -0.42033, + "y": -0.90737 + }, + { + "x": -0.19112, + "y": -0.98157 + }, + { + "x": -0.07137, + "y": -0.99745 + }, + { + "x": 0.04942, + "y": -0.99878 + }, + { + "x": 0.28686, + "y": -0.95797 + }, + { + "x": 0.50794, + "y": -0.86139 + }, + { + "x": 0.69924, + "y": -0.71489 + }, + { + "x": 0.8501, + "y": -0.52662 + }, + { + "x": 0.95138, + "y": -0.30803 + }, + { + "x": 0.99745, + "y": -0.07137 + }, + { + "id": "7,12,5,10", + "startCol": 7, + "endCol": 12, + "startRow": 5, + "endRow": 10 + }, + [ + { + "#": 447 + } + ], + { + "pointA": { + "#": 448 + }, + "bodyB": { + "#": 167 + }, + "pointB": { + "#": 449 + }, + "length": 237.17082, + "render": { + "#": 450 + }, + "id": 12, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": -0.07143 + }, + { + "x": 400, + "y": 100 + }, + { + "x": -3.56852, + "y": -49.87249 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 454 + }, + "max": { + "#": 455 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/compoundStack/compoundStack-0.json b/test/node/refs/compoundStack/compoundStack-0.json new file mode 100644 index 00000000..a493025f --- /dev/null +++ b/test/node/refs/compoundStack/compoundStack-0.json @@ -0,0 +1,48838 @@ +[ + { + "id": 105, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 90 + }, + "composites": { + "#": 91 + }, + "label": "World", + "gravity": { + "#": 5280 + }, + "bounds": { + "#": 5281 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [ + { + "#": 92 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 93 + }, + "constraints": { + "#": 5278 + }, + "composites": { + "#": 5279 + }, + "label": "Stack" + }, + [ + { + "#": 94 + }, + { + "#": 166 + }, + { + "#": 238 + }, + { + "#": 310 + }, + { + "#": 382 + }, + { + "#": 454 + }, + { + "#": 526 + }, + { + "#": 598 + }, + { + "#": 670 + }, + { + "#": 742 + }, + { + "#": 814 + }, + { + "#": 886 + }, + { + "#": 958 + }, + { + "#": 1030 + }, + { + "#": 1102 + }, + { + "#": 1174 + }, + { + "#": 1246 + }, + { + "#": 1318 + }, + { + "#": 1390 + }, + { + "#": 1462 + }, + { + "#": 1534 + }, + { + "#": 1606 + }, + { + "#": 1678 + }, + { + "#": 1750 + }, + { + "#": 1822 + }, + { + "#": 1894 + }, + { + "#": 1966 + }, + { + "#": 2038 + }, + { + "#": 2110 + }, + { + "#": 2182 + }, + { + "#": 2254 + }, + { + "#": 2326 + }, + { + "#": 2398 + }, + { + "#": 2470 + }, + { + "#": 2542 + }, + { + "#": 2614 + }, + { + "#": 2686 + }, + { + "#": 2758 + }, + { + "#": 2830 + }, + { + "#": 2902 + }, + { + "#": 2974 + }, + { + "#": 3046 + }, + { + "#": 3118 + }, + { + "#": 3190 + }, + { + "#": 3262 + }, + { + "#": 3334 + }, + { + "#": 3406 + }, + { + "#": 3478 + }, + { + "#": 3550 + }, + { + "#": 3622 + }, + { + "#": 3694 + }, + { + "#": 3766 + }, + { + "#": 3838 + }, + { + "#": 3910 + }, + { + "#": 3982 + }, + { + "#": 4054 + }, + { + "#": 4126 + }, + { + "#": 4198 + }, + { + "#": 4270 + }, + { + "#": 4342 + }, + { + "#": 4414 + }, + { + "#": 4486 + }, + { + "#": 4558 + }, + { + "#": 4630 + }, + { + "#": 4702 + }, + { + "#": 4774 + }, + { + "#": 4846 + }, + { + "#": 4918 + }, + { + "#": 4990 + }, + { + "#": 5062 + }, + { + "#": 5134 + }, + { + "#": 5206 + } + ], + { + "id": 7, + "type": "body", + "label": "Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 140 + }, + "position": { + "#": 149 + }, + "force": { + "#": 150 + }, + "torque": 0, + "positionImpulse": { + "#": 151 + }, + "constraintImpulse": { + "#": 152 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 153 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 154 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 155 + }, + "bounds": { + "#": 157 + }, + "positionPrev": { + "#": 160 + }, + "anglePrev": 0, + "axes": { + "#": 161 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 94 + }, + "sleepCounter": 0 + }, + [ + { + "#": 94 + }, + { + "#": 96 + }, + { + "#": 118 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 97 + }, + "angle": 0, + "vertices": { + "#": 98 + }, + "position": { + "#": 103 + }, + "force": { + "#": 104 + }, + "torque": 0, + "positionImpulse": { + "#": 105 + }, + "constraintImpulse": { + "#": 106 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 107 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 108 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 109 + }, + "bounds": { + "#": 111 + }, + "positionPrev": { + "#": 114 + }, + "anglePrev": 0, + "axes": { + "#": 115 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 94 + }, + "sleepCounter": 0 + }, + [ + { + "#": 96 + } + ], + [ + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + } + ], + { + "x": 100, + "y": 240, + "index": 0, + "body": { + "#": 96 + }, + "isInternal": false + }, + { + "x": 150, + "y": 240, + "index": 1, + "body": { + "#": 96 + }, + "isInternal": false + }, + { + "x": 150, + "y": 250, + "index": 2, + "body": { + "#": 96 + }, + "isInternal": false + }, + { + "x": 100, + "y": 250, + "index": 3, + "body": { + "#": 96 + }, + "isInternal": false + }, + { + "x": 125, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 110 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 112 + }, + "max": { + "#": 113 + } + }, + { + "x": 100, + "y": 240 + }, + { + "x": 150, + "y": 250 + }, + { + "x": 100, + "y": 220 + }, + [ + { + "#": 116 + }, + { + "#": 117 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 119 + }, + "angle": 0, + "vertices": { + "#": 120 + }, + "position": { + "#": 125 + }, + "force": { + "#": 126 + }, + "torque": 0, + "positionImpulse": { + "#": 127 + }, + "constraintImpulse": { + "#": 128 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 129 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 130 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 131 + }, + "bounds": { + "#": 133 + }, + "positionPrev": { + "#": 136 + }, + "anglePrev": 0, + "axes": { + "#": 137 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 94 + }, + "sleepCounter": 0 + }, + [ + { + "#": 118 + } + ], + [ + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + } + ], + { + "x": 120, + "y": 220, + "index": 0, + "body": { + "#": 118 + }, + "isInternal": false + }, + { + "x": 130, + "y": 220, + "index": 1, + "body": { + "#": 118 + }, + "isInternal": false + }, + { + "x": 130, + "y": 270, + "index": 2, + "body": { + "#": 118 + }, + "isInternal": false + }, + { + "x": 120, + "y": 270, + "index": 3, + "body": { + "#": 118 + }, + "isInternal": false + }, + { + "x": 125, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 132 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 134 + }, + "max": { + "#": 135 + } + }, + { + "x": 120, + "y": 220 + }, + { + "x": 130, + "y": 270 + }, + { + "x": 100, + "y": 220 + }, + [ + { + "#": 138 + }, + { + "#": 139 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + } + ], + { + "x": 150, + "y": 250, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 130, + "y": 270, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 120, + "y": 270, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 100, + "y": 250, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 100, + "y": 240, + "index": 4, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 120, + "y": 220, + "index": 5, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 130, + "y": 220, + "index": 6, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 150, + "y": 240, + "index": 7, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 125, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 156 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 158 + }, + "max": { + "#": 159 + } + }, + { + "x": 100, + "y": 220 + }, + { + "x": 150, + "y": 270 + }, + { + "x": 125, + "y": 245 + }, + [ + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 10, + "type": "body", + "label": "Body", + "parts": { + "#": 167 + }, + "angle": 0, + "vertices": { + "#": 212 + }, + "position": { + "#": 221 + }, + "force": { + "#": 222 + }, + "torque": 0, + "positionImpulse": { + "#": 223 + }, + "constraintImpulse": { + "#": 224 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 225 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 226 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 227 + }, + "bounds": { + "#": 229 + }, + "positionPrev": { + "#": 232 + }, + "anglePrev": 0, + "axes": { + "#": 233 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 166 + }, + "sleepCounter": 0 + }, + [ + { + "#": 166 + }, + { + "#": 168 + }, + { + "#": 190 + } + ], + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 169 + }, + "angle": 0, + "vertices": { + "#": 170 + }, + "position": { + "#": 175 + }, + "force": { + "#": 176 + }, + "torque": 0, + "positionImpulse": { + "#": 177 + }, + "constraintImpulse": { + "#": 178 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 179 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 180 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 181 + }, + "bounds": { + "#": 183 + }, + "positionPrev": { + "#": 186 + }, + "anglePrev": 0, + "axes": { + "#": 187 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 166 + }, + "sleepCounter": 0 + }, + [ + { + "#": 168 + } + ], + [ + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + } + ], + { + "x": 150, + "y": 240, + "index": 0, + "body": { + "#": 168 + }, + "isInternal": false + }, + { + "x": 200, + "y": 240, + "index": 1, + "body": { + "#": 168 + }, + "isInternal": false + }, + { + "x": 200, + "y": 250, + "index": 2, + "body": { + "#": 168 + }, + "isInternal": false + }, + { + "x": 150, + "y": 250, + "index": 3, + "body": { + "#": 168 + }, + "isInternal": false + }, + { + "x": 175, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 182 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 184 + }, + "max": { + "#": 185 + } + }, + { + "x": 150, + "y": 240 + }, + { + "x": 200, + "y": 250 + }, + { + "x": 150, + "y": 220 + }, + [ + { + "#": 188 + }, + { + "#": 189 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 191 + }, + "angle": 0, + "vertices": { + "#": 192 + }, + "position": { + "#": 197 + }, + "force": { + "#": 198 + }, + "torque": 0, + "positionImpulse": { + "#": 199 + }, + "constraintImpulse": { + "#": 200 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 201 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 202 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 203 + }, + "bounds": { + "#": 205 + }, + "positionPrev": { + "#": 208 + }, + "anglePrev": 0, + "axes": { + "#": 209 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 166 + }, + "sleepCounter": 0 + }, + [ + { + "#": 190 + } + ], + [ + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + } + ], + { + "x": 170, + "y": 220, + "index": 0, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 180, + "y": 220, + "index": 1, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 180, + "y": 270, + "index": 2, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 170, + "y": 270, + "index": 3, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 175, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 204 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 206 + }, + "max": { + "#": 207 + } + }, + { + "x": 170, + "y": 220 + }, + { + "x": 180, + "y": 270 + }, + { + "x": 150, + "y": 220 + }, + [ + { + "#": 210 + }, + { + "#": 211 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + } + ], + { + "x": 200, + "y": 250, + "index": 0, + "body": { + "#": 166 + }, + "isInternal": false + }, + { + "x": 180, + "y": 270, + "index": 1, + "body": { + "#": 166 + }, + "isInternal": false + }, + { + "x": 170, + "y": 270, + "index": 2, + "body": { + "#": 166 + }, + "isInternal": false + }, + { + "x": 150, + "y": 250, + "index": 3, + "body": { + "#": 166 + }, + "isInternal": false + }, + { + "x": 150, + "y": 240, + "index": 4, + "body": { + "#": 166 + }, + "isInternal": false + }, + { + "x": 170, + "y": 220, + "index": 5, + "body": { + "#": 166 + }, + "isInternal": false + }, + { + "x": 180, + "y": 220, + "index": 6, + "body": { + "#": 166 + }, + "isInternal": false + }, + { + "x": 200, + "y": 240, + "index": 7, + "body": { + "#": 166 + }, + "isInternal": false + }, + { + "x": 175, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 228 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 230 + }, + "max": { + "#": 231 + } + }, + { + "x": 150, + "y": 220 + }, + { + "x": 200, + "y": 270 + }, + { + "x": 175, + "y": 245 + }, + [ + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 13, + "type": "body", + "label": "Body", + "parts": { + "#": 239 + }, + "angle": 0, + "vertices": { + "#": 284 + }, + "position": { + "#": 293 + }, + "force": { + "#": 294 + }, + "torque": 0, + "positionImpulse": { + "#": 295 + }, + "constraintImpulse": { + "#": 296 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 297 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 298 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 299 + }, + "bounds": { + "#": 301 + }, + "positionPrev": { + "#": 304 + }, + "anglePrev": 0, + "axes": { + "#": 305 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 238 + }, + "sleepCounter": 0 + }, + [ + { + "#": 238 + }, + { + "#": 240 + }, + { + "#": 262 + } + ], + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 241 + }, + "angle": 0, + "vertices": { + "#": 242 + }, + "position": { + "#": 247 + }, + "force": { + "#": 248 + }, + "torque": 0, + "positionImpulse": { + "#": 249 + }, + "constraintImpulse": { + "#": 250 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 251 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 252 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 253 + }, + "bounds": { + "#": 255 + }, + "positionPrev": { + "#": 258 + }, + "anglePrev": 0, + "axes": { + "#": 259 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 238 + }, + "sleepCounter": 0 + }, + [ + { + "#": 240 + } + ], + [ + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + } + ], + { + "x": 200, + "y": 240, + "index": 0, + "body": { + "#": 240 + }, + "isInternal": false + }, + { + "x": 250, + "y": 240, + "index": 1, + "body": { + "#": 240 + }, + "isInternal": false + }, + { + "x": 250, + "y": 250, + "index": 2, + "body": { + "#": 240 + }, + "isInternal": false + }, + { + "x": 200, + "y": 250, + "index": 3, + "body": { + "#": 240 + }, + "isInternal": false + }, + { + "x": 225, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 254 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 256 + }, + "max": { + "#": 257 + } + }, + { + "x": 200, + "y": 240 + }, + { + "x": 250, + "y": 250 + }, + { + "x": 200, + "y": 220 + }, + [ + { + "#": 260 + }, + { + "#": 261 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 263 + }, + "angle": 0, + "vertices": { + "#": 264 + }, + "position": { + "#": 269 + }, + "force": { + "#": 270 + }, + "torque": 0, + "positionImpulse": { + "#": 271 + }, + "constraintImpulse": { + "#": 272 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 273 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 274 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 275 + }, + "bounds": { + "#": 277 + }, + "positionPrev": { + "#": 280 + }, + "anglePrev": 0, + "axes": { + "#": 281 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 238 + }, + "sleepCounter": 0 + }, + [ + { + "#": 262 + } + ], + [ + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + } + ], + { + "x": 220, + "y": 220, + "index": 0, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 230, + "y": 220, + "index": 1, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 230, + "y": 270, + "index": 2, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 220, + "y": 270, + "index": 3, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 225, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 276 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 278 + }, + "max": { + "#": 279 + } + }, + { + "x": 220, + "y": 220 + }, + { + "x": 230, + "y": 270 + }, + { + "x": 200, + "y": 220 + }, + [ + { + "#": 282 + }, + { + "#": 283 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + } + ], + { + "x": 250, + "y": 250, + "index": 0, + "body": { + "#": 238 + }, + "isInternal": false + }, + { + "x": 230, + "y": 270, + "index": 1, + "body": { + "#": 238 + }, + "isInternal": false + }, + { + "x": 220, + "y": 270, + "index": 2, + "body": { + "#": 238 + }, + "isInternal": false + }, + { + "x": 200, + "y": 250, + "index": 3, + "body": { + "#": 238 + }, + "isInternal": false + }, + { + "x": 200, + "y": 240, + "index": 4, + "body": { + "#": 238 + }, + "isInternal": false + }, + { + "x": 220, + "y": 220, + "index": 5, + "body": { + "#": 238 + }, + "isInternal": false + }, + { + "x": 230, + "y": 220, + "index": 6, + "body": { + "#": 238 + }, + "isInternal": false + }, + { + "x": 250, + "y": 240, + "index": 7, + "body": { + "#": 238 + }, + "isInternal": false + }, + { + "x": 225, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 300 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 302 + }, + "max": { + "#": 303 + } + }, + { + "x": 200, + "y": 220 + }, + { + "x": 250, + "y": 270 + }, + { + "x": 225, + "y": 245 + }, + [ + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 16, + "type": "body", + "label": "Body", + "parts": { + "#": 311 + }, + "angle": 0, + "vertices": { + "#": 356 + }, + "position": { + "#": 365 + }, + "force": { + "#": 366 + }, + "torque": 0, + "positionImpulse": { + "#": 367 + }, + "constraintImpulse": { + "#": 368 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 369 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 370 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 371 + }, + "bounds": { + "#": 373 + }, + "positionPrev": { + "#": 376 + }, + "anglePrev": 0, + "axes": { + "#": 377 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 310 + }, + "sleepCounter": 0 + }, + [ + { + "#": 310 + }, + { + "#": 312 + }, + { + "#": 334 + } + ], + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 313 + }, + "angle": 0, + "vertices": { + "#": 314 + }, + "position": { + "#": 319 + }, + "force": { + "#": 320 + }, + "torque": 0, + "positionImpulse": { + "#": 321 + }, + "constraintImpulse": { + "#": 322 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 323 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 324 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 325 + }, + "bounds": { + "#": 327 + }, + "positionPrev": { + "#": 330 + }, + "anglePrev": 0, + "axes": { + "#": 331 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 310 + }, + "sleepCounter": 0 + }, + [ + { + "#": 312 + } + ], + [ + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + } + ], + { + "x": 250, + "y": 240, + "index": 0, + "body": { + "#": 312 + }, + "isInternal": false + }, + { + "x": 300, + "y": 240, + "index": 1, + "body": { + "#": 312 + }, + "isInternal": false + }, + { + "x": 300, + "y": 250, + "index": 2, + "body": { + "#": 312 + }, + "isInternal": false + }, + { + "x": 250, + "y": 250, + "index": 3, + "body": { + "#": 312 + }, + "isInternal": false + }, + { + "x": 275, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 326 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 328 + }, + "max": { + "#": 329 + } + }, + { + "x": 250, + "y": 240 + }, + { + "x": 300, + "y": 250 + }, + { + "x": 250, + "y": 220 + }, + [ + { + "#": 332 + }, + { + "#": 333 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 15, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 335 + }, + "angle": 0, + "vertices": { + "#": 336 + }, + "position": { + "#": 341 + }, + "force": { + "#": 342 + }, + "torque": 0, + "positionImpulse": { + "#": 343 + }, + "constraintImpulse": { + "#": 344 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 345 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 346 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 347 + }, + "bounds": { + "#": 349 + }, + "positionPrev": { + "#": 352 + }, + "anglePrev": 0, + "axes": { + "#": 353 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 310 + }, + "sleepCounter": 0 + }, + [ + { + "#": 334 + } + ], + [ + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + } + ], + { + "x": 270, + "y": 220, + "index": 0, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 280, + "y": 220, + "index": 1, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 280, + "y": 270, + "index": 2, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 270, + "y": 270, + "index": 3, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 275, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 348 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 350 + }, + "max": { + "#": 351 + } + }, + { + "x": 270, + "y": 220 + }, + { + "x": 280, + "y": 270 + }, + { + "x": 250, + "y": 220 + }, + [ + { + "#": 354 + }, + { + "#": 355 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + } + ], + { + "x": 300, + "y": 250, + "index": 0, + "body": { + "#": 310 + }, + "isInternal": false + }, + { + "x": 280, + "y": 270, + "index": 1, + "body": { + "#": 310 + }, + "isInternal": false + }, + { + "x": 270, + "y": 270, + "index": 2, + "body": { + "#": 310 + }, + "isInternal": false + }, + { + "x": 250, + "y": 250, + "index": 3, + "body": { + "#": 310 + }, + "isInternal": false + }, + { + "x": 250, + "y": 240, + "index": 4, + "body": { + "#": 310 + }, + "isInternal": false + }, + { + "x": 270, + "y": 220, + "index": 5, + "body": { + "#": 310 + }, + "isInternal": false + }, + { + "x": 280, + "y": 220, + "index": 6, + "body": { + "#": 310 + }, + "isInternal": false + }, + { + "x": 300, + "y": 240, + "index": 7, + "body": { + "#": 310 + }, + "isInternal": false + }, + { + "x": 275, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 372 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 374 + }, + "max": { + "#": 375 + } + }, + { + "x": 250, + "y": 220 + }, + { + "x": 300, + "y": 270 + }, + { + "x": 275, + "y": 245 + }, + [ + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 19, + "type": "body", + "label": "Body", + "parts": { + "#": 383 + }, + "angle": 0, + "vertices": { + "#": 428 + }, + "position": { + "#": 437 + }, + "force": { + "#": 438 + }, + "torque": 0, + "positionImpulse": { + "#": 439 + }, + "constraintImpulse": { + "#": 440 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 441 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 442 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 443 + }, + "bounds": { + "#": 445 + }, + "positionPrev": { + "#": 448 + }, + "anglePrev": 0, + "axes": { + "#": 449 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 382 + }, + "sleepCounter": 0 + }, + [ + { + "#": 382 + }, + { + "#": 384 + }, + { + "#": 406 + } + ], + { + "id": 17, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 385 + }, + "angle": 0, + "vertices": { + "#": 386 + }, + "position": { + "#": 391 + }, + "force": { + "#": 392 + }, + "torque": 0, + "positionImpulse": { + "#": 393 + }, + "constraintImpulse": { + "#": 394 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 395 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 396 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 397 + }, + "bounds": { + "#": 399 + }, + "positionPrev": { + "#": 402 + }, + "anglePrev": 0, + "axes": { + "#": 403 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 382 + }, + "sleepCounter": 0 + }, + [ + { + "#": 384 + } + ], + [ + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + } + ], + { + "x": 300, + "y": 240, + "index": 0, + "body": { + "#": 384 + }, + "isInternal": false + }, + { + "x": 350, + "y": 240, + "index": 1, + "body": { + "#": 384 + }, + "isInternal": false + }, + { + "x": 350, + "y": 250, + "index": 2, + "body": { + "#": 384 + }, + "isInternal": false + }, + { + "x": 300, + "y": 250, + "index": 3, + "body": { + "#": 384 + }, + "isInternal": false + }, + { + "x": 325, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 398 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 400 + }, + "max": { + "#": 401 + } + }, + { + "x": 300, + "y": 240 + }, + { + "x": 350, + "y": 250 + }, + { + "x": 300, + "y": 220 + }, + [ + { + "#": 404 + }, + { + "#": 405 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 18, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 407 + }, + "angle": 0, + "vertices": { + "#": 408 + }, + "position": { + "#": 413 + }, + "force": { + "#": 414 + }, + "torque": 0, + "positionImpulse": { + "#": 415 + }, + "constraintImpulse": { + "#": 416 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 417 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 418 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 419 + }, + "bounds": { + "#": 421 + }, + "positionPrev": { + "#": 424 + }, + "anglePrev": 0, + "axes": { + "#": 425 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 382 + }, + "sleepCounter": 0 + }, + [ + { + "#": 406 + } + ], + [ + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + } + ], + { + "x": 320, + "y": 220, + "index": 0, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 330, + "y": 220, + "index": 1, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 330, + "y": 270, + "index": 2, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 320, + "y": 270, + "index": 3, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 325, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 420 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 422 + }, + "max": { + "#": 423 + } + }, + { + "x": 320, + "y": 220 + }, + { + "x": 330, + "y": 270 + }, + { + "x": 300, + "y": 220 + }, + [ + { + "#": 426 + }, + { + "#": 427 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + } + ], + { + "x": 350, + "y": 250, + "index": 0, + "body": { + "#": 382 + }, + "isInternal": false + }, + { + "x": 330, + "y": 270, + "index": 1, + "body": { + "#": 382 + }, + "isInternal": false + }, + { + "x": 320, + "y": 270, + "index": 2, + "body": { + "#": 382 + }, + "isInternal": false + }, + { + "x": 300, + "y": 250, + "index": 3, + "body": { + "#": 382 + }, + "isInternal": false + }, + { + "x": 300, + "y": 240, + "index": 4, + "body": { + "#": 382 + }, + "isInternal": false + }, + { + "x": 320, + "y": 220, + "index": 5, + "body": { + "#": 382 + }, + "isInternal": false + }, + { + "x": 330, + "y": 220, + "index": 6, + "body": { + "#": 382 + }, + "isInternal": false + }, + { + "x": 350, + "y": 240, + "index": 7, + "body": { + "#": 382 + }, + "isInternal": false + }, + { + "x": 325, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 444 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 446 + }, + "max": { + "#": 447 + } + }, + { + "x": 300, + "y": 220 + }, + { + "x": 350, + "y": 270 + }, + { + "x": 325, + "y": 245 + }, + [ + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 22, + "type": "body", + "label": "Body", + "parts": { + "#": 455 + }, + "angle": 0, + "vertices": { + "#": 500 + }, + "position": { + "#": 509 + }, + "force": { + "#": 510 + }, + "torque": 0, + "positionImpulse": { + "#": 511 + }, + "constraintImpulse": { + "#": 512 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 513 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 514 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 515 + }, + "bounds": { + "#": 517 + }, + "positionPrev": { + "#": 520 + }, + "anglePrev": 0, + "axes": { + "#": 521 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 454 + }, + "sleepCounter": 0 + }, + [ + { + "#": 454 + }, + { + "#": 456 + }, + { + "#": 478 + } + ], + { + "id": 20, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 457 + }, + "angle": 0, + "vertices": { + "#": 458 + }, + "position": { + "#": 463 + }, + "force": { + "#": 464 + }, + "torque": 0, + "positionImpulse": { + "#": 465 + }, + "constraintImpulse": { + "#": 466 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 467 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 468 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 469 + }, + "bounds": { + "#": 471 + }, + "positionPrev": { + "#": 474 + }, + "anglePrev": 0, + "axes": { + "#": 475 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 454 + }, + "sleepCounter": 0 + }, + [ + { + "#": 456 + } + ], + [ + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + } + ], + { + "x": 350, + "y": 240, + "index": 0, + "body": { + "#": 456 + }, + "isInternal": false + }, + { + "x": 400, + "y": 240, + "index": 1, + "body": { + "#": 456 + }, + "isInternal": false + }, + { + "x": 400, + "y": 250, + "index": 2, + "body": { + "#": 456 + }, + "isInternal": false + }, + { + "x": 350, + "y": 250, + "index": 3, + "body": { + "#": 456 + }, + "isInternal": false + }, + { + "x": 375, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 470 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 472 + }, + "max": { + "#": 473 + } + }, + { + "x": 350, + "y": 240 + }, + { + "x": 400, + "y": 250 + }, + { + "x": 350, + "y": 220 + }, + [ + { + "#": 476 + }, + { + "#": 477 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 21, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 479 + }, + "angle": 0, + "vertices": { + "#": 480 + }, + "position": { + "#": 485 + }, + "force": { + "#": 486 + }, + "torque": 0, + "positionImpulse": { + "#": 487 + }, + "constraintImpulse": { + "#": 488 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 489 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 490 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 491 + }, + "bounds": { + "#": 493 + }, + "positionPrev": { + "#": 496 + }, + "anglePrev": 0, + "axes": { + "#": 497 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 454 + }, + "sleepCounter": 0 + }, + [ + { + "#": 478 + } + ], + [ + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + } + ], + { + "x": 370, + "y": 220, + "index": 0, + "body": { + "#": 478 + }, + "isInternal": false + }, + { + "x": 380, + "y": 220, + "index": 1, + "body": { + "#": 478 + }, + "isInternal": false + }, + { + "x": 380, + "y": 270, + "index": 2, + "body": { + "#": 478 + }, + "isInternal": false + }, + { + "x": 370, + "y": 270, + "index": 3, + "body": { + "#": 478 + }, + "isInternal": false + }, + { + "x": 375, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 492 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 494 + }, + "max": { + "#": 495 + } + }, + { + "x": 370, + "y": 220 + }, + { + "x": 380, + "y": 270 + }, + { + "x": 350, + "y": 220 + }, + [ + { + "#": 498 + }, + { + "#": 499 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + } + ], + { + "x": 400, + "y": 250, + "index": 0, + "body": { + "#": 454 + }, + "isInternal": false + }, + { + "x": 380, + "y": 270, + "index": 1, + "body": { + "#": 454 + }, + "isInternal": false + }, + { + "x": 370, + "y": 270, + "index": 2, + "body": { + "#": 454 + }, + "isInternal": false + }, + { + "x": 350, + "y": 250, + "index": 3, + "body": { + "#": 454 + }, + "isInternal": false + }, + { + "x": 350, + "y": 240, + "index": 4, + "body": { + "#": 454 + }, + "isInternal": false + }, + { + "x": 370, + "y": 220, + "index": 5, + "body": { + "#": 454 + }, + "isInternal": false + }, + { + "x": 380, + "y": 220, + "index": 6, + "body": { + "#": 454 + }, + "isInternal": false + }, + { + "x": 400, + "y": 240, + "index": 7, + "body": { + "#": 454 + }, + "isInternal": false + }, + { + "x": 375, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 516 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 518 + }, + "max": { + "#": 519 + } + }, + { + "x": 350, + "y": 220 + }, + { + "x": 400, + "y": 270 + }, + { + "x": 375, + "y": 245 + }, + [ + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 25, + "type": "body", + "label": "Body", + "parts": { + "#": 527 + }, + "angle": 0, + "vertices": { + "#": 572 + }, + "position": { + "#": 581 + }, + "force": { + "#": 582 + }, + "torque": 0, + "positionImpulse": { + "#": 583 + }, + "constraintImpulse": { + "#": 584 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 585 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 586 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 587 + }, + "bounds": { + "#": 589 + }, + "positionPrev": { + "#": 592 + }, + "anglePrev": 0, + "axes": { + "#": 593 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 526 + }, + "sleepCounter": 0 + }, + [ + { + "#": 526 + }, + { + "#": 528 + }, + { + "#": 550 + } + ], + { + "id": 23, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 529 + }, + "angle": 0, + "vertices": { + "#": 530 + }, + "position": { + "#": 535 + }, + "force": { + "#": 536 + }, + "torque": 0, + "positionImpulse": { + "#": 537 + }, + "constraintImpulse": { + "#": 538 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 539 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 540 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 541 + }, + "bounds": { + "#": 543 + }, + "positionPrev": { + "#": 546 + }, + "anglePrev": 0, + "axes": { + "#": 547 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 526 + }, + "sleepCounter": 0 + }, + [ + { + "#": 528 + } + ], + [ + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + } + ], + { + "x": 400, + "y": 240, + "index": 0, + "body": { + "#": 528 + }, + "isInternal": false + }, + { + "x": 450, + "y": 240, + "index": 1, + "body": { + "#": 528 + }, + "isInternal": false + }, + { + "x": 450, + "y": 250, + "index": 2, + "body": { + "#": 528 + }, + "isInternal": false + }, + { + "x": 400, + "y": 250, + "index": 3, + "body": { + "#": 528 + }, + "isInternal": false + }, + { + "x": 425, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 542 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 544 + }, + "max": { + "#": 545 + } + }, + { + "x": 400, + "y": 240 + }, + { + "x": 450, + "y": 250 + }, + { + "x": 400, + "y": 220 + }, + [ + { + "#": 548 + }, + { + "#": 549 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 24, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 551 + }, + "angle": 0, + "vertices": { + "#": 552 + }, + "position": { + "#": 557 + }, + "force": { + "#": 558 + }, + "torque": 0, + "positionImpulse": { + "#": 559 + }, + "constraintImpulse": { + "#": 560 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 561 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 562 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 563 + }, + "bounds": { + "#": 565 + }, + "positionPrev": { + "#": 568 + }, + "anglePrev": 0, + "axes": { + "#": 569 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 526 + }, + "sleepCounter": 0 + }, + [ + { + "#": 550 + } + ], + [ + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + } + ], + { + "x": 420, + "y": 220, + "index": 0, + "body": { + "#": 550 + }, + "isInternal": false + }, + { + "x": 430, + "y": 220, + "index": 1, + "body": { + "#": 550 + }, + "isInternal": false + }, + { + "x": 430, + "y": 270, + "index": 2, + "body": { + "#": 550 + }, + "isInternal": false + }, + { + "x": 420, + "y": 270, + "index": 3, + "body": { + "#": 550 + }, + "isInternal": false + }, + { + "x": 425, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 564 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 566 + }, + "max": { + "#": 567 + } + }, + { + "x": 420, + "y": 220 + }, + { + "x": 430, + "y": 270 + }, + { + "x": 400, + "y": 220 + }, + [ + { + "#": 570 + }, + { + "#": 571 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + } + ], + { + "x": 450, + "y": 250, + "index": 0, + "body": { + "#": 526 + }, + "isInternal": false + }, + { + "x": 430, + "y": 270, + "index": 1, + "body": { + "#": 526 + }, + "isInternal": false + }, + { + "x": 420, + "y": 270, + "index": 2, + "body": { + "#": 526 + }, + "isInternal": false + }, + { + "x": 400, + "y": 250, + "index": 3, + "body": { + "#": 526 + }, + "isInternal": false + }, + { + "x": 400, + "y": 240, + "index": 4, + "body": { + "#": 526 + }, + "isInternal": false + }, + { + "x": 420, + "y": 220, + "index": 5, + "body": { + "#": 526 + }, + "isInternal": false + }, + { + "x": 430, + "y": 220, + "index": 6, + "body": { + "#": 526 + }, + "isInternal": false + }, + { + "x": 450, + "y": 240, + "index": 7, + "body": { + "#": 526 + }, + "isInternal": false + }, + { + "x": 425, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 588 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 590 + }, + "max": { + "#": 591 + } + }, + { + "x": 400, + "y": 220 + }, + { + "x": 450, + "y": 270 + }, + { + "x": 425, + "y": 245 + }, + [ + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 28, + "type": "body", + "label": "Body", + "parts": { + "#": 599 + }, + "angle": 0, + "vertices": { + "#": 644 + }, + "position": { + "#": 653 + }, + "force": { + "#": 654 + }, + "torque": 0, + "positionImpulse": { + "#": 655 + }, + "constraintImpulse": { + "#": 656 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 657 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 658 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 659 + }, + "bounds": { + "#": 661 + }, + "positionPrev": { + "#": 664 + }, + "anglePrev": 0, + "axes": { + "#": 665 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 598 + }, + "sleepCounter": 0 + }, + [ + { + "#": 598 + }, + { + "#": 600 + }, + { + "#": 622 + } + ], + { + "id": 26, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 601 + }, + "angle": 0, + "vertices": { + "#": 602 + }, + "position": { + "#": 607 + }, + "force": { + "#": 608 + }, + "torque": 0, + "positionImpulse": { + "#": 609 + }, + "constraintImpulse": { + "#": 610 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 611 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 612 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 613 + }, + "bounds": { + "#": 615 + }, + "positionPrev": { + "#": 618 + }, + "anglePrev": 0, + "axes": { + "#": 619 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 598 + }, + "sleepCounter": 0 + }, + [ + { + "#": 600 + } + ], + [ + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + } + ], + { + "x": 450, + "y": 240, + "index": 0, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 500, + "y": 240, + "index": 1, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 500, + "y": 250, + "index": 2, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 450, + "y": 250, + "index": 3, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 475, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 614 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 616 + }, + "max": { + "#": 617 + } + }, + { + "x": 450, + "y": 240 + }, + { + "x": 500, + "y": 250 + }, + { + "x": 450, + "y": 220 + }, + [ + { + "#": 620 + }, + { + "#": 621 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 27, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 623 + }, + "angle": 0, + "vertices": { + "#": 624 + }, + "position": { + "#": 629 + }, + "force": { + "#": 630 + }, + "torque": 0, + "positionImpulse": { + "#": 631 + }, + "constraintImpulse": { + "#": 632 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 633 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 634 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 635 + }, + "bounds": { + "#": 637 + }, + "positionPrev": { + "#": 640 + }, + "anglePrev": 0, + "axes": { + "#": 641 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 598 + }, + "sleepCounter": 0 + }, + [ + { + "#": 622 + } + ], + [ + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + } + ], + { + "x": 470, + "y": 220, + "index": 0, + "body": { + "#": 622 + }, + "isInternal": false + }, + { + "x": 480, + "y": 220, + "index": 1, + "body": { + "#": 622 + }, + "isInternal": false + }, + { + "x": 480, + "y": 270, + "index": 2, + "body": { + "#": 622 + }, + "isInternal": false + }, + { + "x": 470, + "y": 270, + "index": 3, + "body": { + "#": 622 + }, + "isInternal": false + }, + { + "x": 475, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 636 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 638 + }, + "max": { + "#": 639 + } + }, + { + "x": 470, + "y": 220 + }, + { + "x": 480, + "y": 270 + }, + { + "x": 450, + "y": 220 + }, + [ + { + "#": 642 + }, + { + "#": 643 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + } + ], + { + "x": 500, + "y": 250, + "index": 0, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 480, + "y": 270, + "index": 1, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 470, + "y": 270, + "index": 2, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 450, + "y": 250, + "index": 3, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 450, + "y": 240, + "index": 4, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 470, + "y": 220, + "index": 5, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 480, + "y": 220, + "index": 6, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 500, + "y": 240, + "index": 7, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 475, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 660 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 662 + }, + "max": { + "#": 663 + } + }, + { + "x": 450, + "y": 220 + }, + { + "x": 500, + "y": 270 + }, + { + "x": 475, + "y": 245 + }, + [ + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 31, + "type": "body", + "label": "Body", + "parts": { + "#": 671 + }, + "angle": 0, + "vertices": { + "#": 716 + }, + "position": { + "#": 725 + }, + "force": { + "#": 726 + }, + "torque": 0, + "positionImpulse": { + "#": 727 + }, + "constraintImpulse": { + "#": 728 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 729 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 730 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 731 + }, + "bounds": { + "#": 733 + }, + "positionPrev": { + "#": 736 + }, + "anglePrev": 0, + "axes": { + "#": 737 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 670 + }, + "sleepCounter": 0 + }, + [ + { + "#": 670 + }, + { + "#": 672 + }, + { + "#": 694 + } + ], + { + "id": 29, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 673 + }, + "angle": 0, + "vertices": { + "#": 674 + }, + "position": { + "#": 679 + }, + "force": { + "#": 680 + }, + "torque": 0, + "positionImpulse": { + "#": 681 + }, + "constraintImpulse": { + "#": 682 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 683 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 684 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 685 + }, + "bounds": { + "#": 687 + }, + "positionPrev": { + "#": 690 + }, + "anglePrev": 0, + "axes": { + "#": 691 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 670 + }, + "sleepCounter": 0 + }, + [ + { + "#": 672 + } + ], + [ + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + } + ], + { + "x": 500, + "y": 240, + "index": 0, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 550, + "y": 240, + "index": 1, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 550, + "y": 250, + "index": 2, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 500, + "y": 250, + "index": 3, + "body": { + "#": 672 + }, + "isInternal": false + }, + { + "x": 525, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 686 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 688 + }, + "max": { + "#": 689 + } + }, + { + "x": 500, + "y": 240 + }, + { + "x": 550, + "y": 250 + }, + { + "x": 500, + "y": 220 + }, + [ + { + "#": 692 + }, + { + "#": 693 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 30, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 695 + }, + "angle": 0, + "vertices": { + "#": 696 + }, + "position": { + "#": 701 + }, + "force": { + "#": 702 + }, + "torque": 0, + "positionImpulse": { + "#": 703 + }, + "constraintImpulse": { + "#": 704 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 705 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 706 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 707 + }, + "bounds": { + "#": 709 + }, + "positionPrev": { + "#": 712 + }, + "anglePrev": 0, + "axes": { + "#": 713 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 670 + }, + "sleepCounter": 0 + }, + [ + { + "#": 694 + } + ], + [ + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + } + ], + { + "x": 520, + "y": 220, + "index": 0, + "body": { + "#": 694 + }, + "isInternal": false + }, + { + "x": 530, + "y": 220, + "index": 1, + "body": { + "#": 694 + }, + "isInternal": false + }, + { + "x": 530, + "y": 270, + "index": 2, + "body": { + "#": 694 + }, + "isInternal": false + }, + { + "x": 520, + "y": 270, + "index": 3, + "body": { + "#": 694 + }, + "isInternal": false + }, + { + "x": 525, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 708 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 710 + }, + "max": { + "#": 711 + } + }, + { + "x": 520, + "y": 220 + }, + { + "x": 530, + "y": 270 + }, + { + "x": 500, + "y": 220 + }, + [ + { + "#": 714 + }, + { + "#": 715 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + } + ], + { + "x": 550, + "y": 250, + "index": 0, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 530, + "y": 270, + "index": 1, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 520, + "y": 270, + "index": 2, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 500, + "y": 250, + "index": 3, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 500, + "y": 240, + "index": 4, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 520, + "y": 220, + "index": 5, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 530, + "y": 220, + "index": 6, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 550, + "y": 240, + "index": 7, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 525, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 732 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 734 + }, + "max": { + "#": 735 + } + }, + { + "x": 500, + "y": 220 + }, + { + "x": 550, + "y": 270 + }, + { + "x": 525, + "y": 245 + }, + [ + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 34, + "type": "body", + "label": "Body", + "parts": { + "#": 743 + }, + "angle": 0, + "vertices": { + "#": 788 + }, + "position": { + "#": 797 + }, + "force": { + "#": 798 + }, + "torque": 0, + "positionImpulse": { + "#": 799 + }, + "constraintImpulse": { + "#": 800 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 801 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 802 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 803 + }, + "bounds": { + "#": 805 + }, + "positionPrev": { + "#": 808 + }, + "anglePrev": 0, + "axes": { + "#": 809 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 742 + }, + "sleepCounter": 0 + }, + [ + { + "#": 742 + }, + { + "#": 744 + }, + { + "#": 766 + } + ], + { + "id": 32, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 745 + }, + "angle": 0, + "vertices": { + "#": 746 + }, + "position": { + "#": 751 + }, + "force": { + "#": 752 + }, + "torque": 0, + "positionImpulse": { + "#": 753 + }, + "constraintImpulse": { + "#": 754 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 755 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 756 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 757 + }, + "bounds": { + "#": 759 + }, + "positionPrev": { + "#": 762 + }, + "anglePrev": 0, + "axes": { + "#": 763 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 742 + }, + "sleepCounter": 0 + }, + [ + { + "#": 744 + } + ], + [ + { + "#": 747 + }, + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + } + ], + { + "x": 550, + "y": 240, + "index": 0, + "body": { + "#": 744 + }, + "isInternal": false + }, + { + "x": 600, + "y": 240, + "index": 1, + "body": { + "#": 744 + }, + "isInternal": false + }, + { + "x": 600, + "y": 250, + "index": 2, + "body": { + "#": 744 + }, + "isInternal": false + }, + { + "x": 550, + "y": 250, + "index": 3, + "body": { + "#": 744 + }, + "isInternal": false + }, + { + "x": 575, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 758 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 760 + }, + "max": { + "#": 761 + } + }, + { + "x": 550, + "y": 240 + }, + { + "x": 600, + "y": 250 + }, + { + "x": 550, + "y": 220 + }, + [ + { + "#": 764 + }, + { + "#": 765 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 33, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 767 + }, + "angle": 0, + "vertices": { + "#": 768 + }, + "position": { + "#": 773 + }, + "force": { + "#": 774 + }, + "torque": 0, + "positionImpulse": { + "#": 775 + }, + "constraintImpulse": { + "#": 776 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 777 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 778 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 779 + }, + "bounds": { + "#": 781 + }, + "positionPrev": { + "#": 784 + }, + "anglePrev": 0, + "axes": { + "#": 785 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 742 + }, + "sleepCounter": 0 + }, + [ + { + "#": 766 + } + ], + [ + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + } + ], + { + "x": 570, + "y": 220, + "index": 0, + "body": { + "#": 766 + }, + "isInternal": false + }, + { + "x": 580, + "y": 220, + "index": 1, + "body": { + "#": 766 + }, + "isInternal": false + }, + { + "x": 580, + "y": 270, + "index": 2, + "body": { + "#": 766 + }, + "isInternal": false + }, + { + "x": 570, + "y": 270, + "index": 3, + "body": { + "#": 766 + }, + "isInternal": false + }, + { + "x": 575, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 780 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 782 + }, + "max": { + "#": 783 + } + }, + { + "x": 570, + "y": 220 + }, + { + "x": 580, + "y": 270 + }, + { + "x": 550, + "y": 220 + }, + [ + { + "#": 786 + }, + { + "#": 787 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + } + ], + { + "x": 600, + "y": 250, + "index": 0, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 580, + "y": 270, + "index": 1, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 570, + "y": 270, + "index": 2, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 550, + "y": 250, + "index": 3, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 550, + "y": 240, + "index": 4, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 570, + "y": 220, + "index": 5, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 580, + "y": 220, + "index": 6, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 600, + "y": 240, + "index": 7, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 575, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 804 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 806 + }, + "max": { + "#": 807 + } + }, + { + "x": 550, + "y": 220 + }, + { + "x": 600, + "y": 270 + }, + { + "x": 575, + "y": 245 + }, + [ + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 37, + "type": "body", + "label": "Body", + "parts": { + "#": 815 + }, + "angle": 0, + "vertices": { + "#": 860 + }, + "position": { + "#": 869 + }, + "force": { + "#": 870 + }, + "torque": 0, + "positionImpulse": { + "#": 871 + }, + "constraintImpulse": { + "#": 872 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 873 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 874 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 875 + }, + "bounds": { + "#": 877 + }, + "positionPrev": { + "#": 880 + }, + "anglePrev": 0, + "axes": { + "#": 881 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 814 + }, + "sleepCounter": 0 + }, + [ + { + "#": 814 + }, + { + "#": 816 + }, + { + "#": 838 + } + ], + { + "id": 35, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 817 + }, + "angle": 0, + "vertices": { + "#": 818 + }, + "position": { + "#": 823 + }, + "force": { + "#": 824 + }, + "torque": 0, + "positionImpulse": { + "#": 825 + }, + "constraintImpulse": { + "#": 826 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 827 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 828 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 829 + }, + "bounds": { + "#": 831 + }, + "positionPrev": { + "#": 834 + }, + "anglePrev": 0, + "axes": { + "#": 835 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 814 + }, + "sleepCounter": 0 + }, + [ + { + "#": 816 + } + ], + [ + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + } + ], + { + "x": 600, + "y": 240, + "index": 0, + "body": { + "#": 816 + }, + "isInternal": false + }, + { + "x": 650, + "y": 240, + "index": 1, + "body": { + "#": 816 + }, + "isInternal": false + }, + { + "x": 650, + "y": 250, + "index": 2, + "body": { + "#": 816 + }, + "isInternal": false + }, + { + "x": 600, + "y": 250, + "index": 3, + "body": { + "#": 816 + }, + "isInternal": false + }, + { + "x": 625, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 830 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 832 + }, + "max": { + "#": 833 + } + }, + { + "x": 600, + "y": 240 + }, + { + "x": 650, + "y": 250 + }, + { + "x": 600, + "y": 220 + }, + [ + { + "#": 836 + }, + { + "#": 837 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 36, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 839 + }, + "angle": 0, + "vertices": { + "#": 840 + }, + "position": { + "#": 845 + }, + "force": { + "#": 846 + }, + "torque": 0, + "positionImpulse": { + "#": 847 + }, + "constraintImpulse": { + "#": 848 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 849 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 850 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 851 + }, + "bounds": { + "#": 853 + }, + "positionPrev": { + "#": 856 + }, + "anglePrev": 0, + "axes": { + "#": 857 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 814 + }, + "sleepCounter": 0 + }, + [ + { + "#": 838 + } + ], + [ + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + } + ], + { + "x": 620, + "y": 220, + "index": 0, + "body": { + "#": 838 + }, + "isInternal": false + }, + { + "x": 630, + "y": 220, + "index": 1, + "body": { + "#": 838 + }, + "isInternal": false + }, + { + "x": 630, + "y": 270, + "index": 2, + "body": { + "#": 838 + }, + "isInternal": false + }, + { + "x": 620, + "y": 270, + "index": 3, + "body": { + "#": 838 + }, + "isInternal": false + }, + { + "x": 625, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 852 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 854 + }, + "max": { + "#": 855 + } + }, + { + "x": 620, + "y": 220 + }, + { + "x": 630, + "y": 270 + }, + { + "x": 600, + "y": 220 + }, + [ + { + "#": 858 + }, + { + "#": 859 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + } + ], + { + "x": 650, + "y": 250, + "index": 0, + "body": { + "#": 814 + }, + "isInternal": false + }, + { + "x": 630, + "y": 270, + "index": 1, + "body": { + "#": 814 + }, + "isInternal": false + }, + { + "x": 620, + "y": 270, + "index": 2, + "body": { + "#": 814 + }, + "isInternal": false + }, + { + "x": 600, + "y": 250, + "index": 3, + "body": { + "#": 814 + }, + "isInternal": false + }, + { + "x": 600, + "y": 240, + "index": 4, + "body": { + "#": 814 + }, + "isInternal": false + }, + { + "x": 620, + "y": 220, + "index": 5, + "body": { + "#": 814 + }, + "isInternal": false + }, + { + "x": 630, + "y": 220, + "index": 6, + "body": { + "#": 814 + }, + "isInternal": false + }, + { + "x": 650, + "y": 240, + "index": 7, + "body": { + "#": 814 + }, + "isInternal": false + }, + { + "x": 625, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 876 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 878 + }, + "max": { + "#": 879 + } + }, + { + "x": 600, + "y": 220 + }, + { + "x": 650, + "y": 270 + }, + { + "x": 625, + "y": 245 + }, + [ + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 40, + "type": "body", + "label": "Body", + "parts": { + "#": 887 + }, + "angle": 0, + "vertices": { + "#": 932 + }, + "position": { + "#": 941 + }, + "force": { + "#": 942 + }, + "torque": 0, + "positionImpulse": { + "#": 943 + }, + "constraintImpulse": { + "#": 944 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 945 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 946 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 947 + }, + "bounds": { + "#": 949 + }, + "positionPrev": { + "#": 952 + }, + "anglePrev": 0, + "axes": { + "#": 953 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 886 + }, + "sleepCounter": 0 + }, + [ + { + "#": 886 + }, + { + "#": 888 + }, + { + "#": 910 + } + ], + { + "id": 38, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 889 + }, + "angle": 0, + "vertices": { + "#": 890 + }, + "position": { + "#": 895 + }, + "force": { + "#": 896 + }, + "torque": 0, + "positionImpulse": { + "#": 897 + }, + "constraintImpulse": { + "#": 898 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 899 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 900 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 901 + }, + "bounds": { + "#": 903 + }, + "positionPrev": { + "#": 906 + }, + "anglePrev": 0, + "axes": { + "#": 907 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 886 + }, + "sleepCounter": 0 + }, + [ + { + "#": 888 + } + ], + [ + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + }, + { + "#": 894 + } + ], + { + "x": 650, + "y": 240, + "index": 0, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 700, + "y": 240, + "index": 1, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 700, + "y": 250, + "index": 2, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 650, + "y": 250, + "index": 3, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 675, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 902 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 904 + }, + "max": { + "#": 905 + } + }, + { + "x": 650, + "y": 240 + }, + { + "x": 700, + "y": 250 + }, + { + "x": 650, + "y": 220 + }, + [ + { + "#": 908 + }, + { + "#": 909 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 39, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 911 + }, + "angle": 0, + "vertices": { + "#": 912 + }, + "position": { + "#": 917 + }, + "force": { + "#": 918 + }, + "torque": 0, + "positionImpulse": { + "#": 919 + }, + "constraintImpulse": { + "#": 920 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 921 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 922 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 923 + }, + "bounds": { + "#": 925 + }, + "positionPrev": { + "#": 928 + }, + "anglePrev": 0, + "axes": { + "#": 929 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 886 + }, + "sleepCounter": 0 + }, + [ + { + "#": 910 + } + ], + [ + { + "#": 913 + }, + { + "#": 914 + }, + { + "#": 915 + }, + { + "#": 916 + } + ], + { + "x": 670, + "y": 220, + "index": 0, + "body": { + "#": 910 + }, + "isInternal": false + }, + { + "x": 680, + "y": 220, + "index": 1, + "body": { + "#": 910 + }, + "isInternal": false + }, + { + "x": 680, + "y": 270, + "index": 2, + "body": { + "#": 910 + }, + "isInternal": false + }, + { + "x": 670, + "y": 270, + "index": 3, + "body": { + "#": 910 + }, + "isInternal": false + }, + { + "x": 675, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 924 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 926 + }, + "max": { + "#": 927 + } + }, + { + "x": 670, + "y": 220 + }, + { + "x": 680, + "y": 270 + }, + { + "x": 650, + "y": 220 + }, + [ + { + "#": 930 + }, + { + "#": 931 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + } + ], + { + "x": 700, + "y": 250, + "index": 0, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 680, + "y": 270, + "index": 1, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 670, + "y": 270, + "index": 2, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 650, + "y": 250, + "index": 3, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 650, + "y": 240, + "index": 4, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 670, + "y": 220, + "index": 5, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 680, + "y": 220, + "index": 6, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 700, + "y": 240, + "index": 7, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 675, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 948 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 950 + }, + "max": { + "#": 951 + } + }, + { + "x": 650, + "y": 220 + }, + { + "x": 700, + "y": 270 + }, + { + "x": 675, + "y": 245 + }, + [ + { + "#": 954 + }, + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 43, + "type": "body", + "label": "Body", + "parts": { + "#": 959 + }, + "angle": 0, + "vertices": { + "#": 1004 + }, + "position": { + "#": 1013 + }, + "force": { + "#": 1014 + }, + "torque": 0, + "positionImpulse": { + "#": 1015 + }, + "constraintImpulse": { + "#": 1016 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1017 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1018 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1019 + }, + "bounds": { + "#": 1021 + }, + "positionPrev": { + "#": 1024 + }, + "anglePrev": 0, + "axes": { + "#": 1025 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 958 + }, + "sleepCounter": 0 + }, + [ + { + "#": 958 + }, + { + "#": 960 + }, + { + "#": 982 + } + ], + { + "id": 41, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 961 + }, + "angle": 0, + "vertices": { + "#": 962 + }, + "position": { + "#": 967 + }, + "force": { + "#": 968 + }, + "torque": 0, + "positionImpulse": { + "#": 969 + }, + "constraintImpulse": { + "#": 970 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 971 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 972 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 973 + }, + "bounds": { + "#": 975 + }, + "positionPrev": { + "#": 978 + }, + "anglePrev": 0, + "axes": { + "#": 979 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 958 + }, + "sleepCounter": 0 + }, + [ + { + "#": 960 + } + ], + [ + { + "#": 963 + }, + { + "#": 964 + }, + { + "#": 965 + }, + { + "#": 966 + } + ], + { + "x": 100, + "y": 290, + "index": 0, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 150, + "y": 290, + "index": 1, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 150, + "y": 300, + "index": 2, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 100, + "y": 300, + "index": 3, + "body": { + "#": 960 + }, + "isInternal": false + }, + { + "x": 125, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 974 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 976 + }, + "max": { + "#": 977 + } + }, + { + "x": 100, + "y": 290 + }, + { + "x": 150, + "y": 300 + }, + { + "x": 100, + "y": 270 + }, + [ + { + "#": 980 + }, + { + "#": 981 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 42, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 983 + }, + "angle": 0, + "vertices": { + "#": 984 + }, + "position": { + "#": 989 + }, + "force": { + "#": 990 + }, + "torque": 0, + "positionImpulse": { + "#": 991 + }, + "constraintImpulse": { + "#": 992 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 993 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 994 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 995 + }, + "bounds": { + "#": 997 + }, + "positionPrev": { + "#": 1000 + }, + "anglePrev": 0, + "axes": { + "#": 1001 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 958 + }, + "sleepCounter": 0 + }, + [ + { + "#": 982 + } + ], + [ + { + "#": 985 + }, + { + "#": 986 + }, + { + "#": 987 + }, + { + "#": 988 + } + ], + { + "x": 120, + "y": 270, + "index": 0, + "body": { + "#": 982 + }, + "isInternal": false + }, + { + "x": 130, + "y": 270, + "index": 1, + "body": { + "#": 982 + }, + "isInternal": false + }, + { + "x": 130, + "y": 320, + "index": 2, + "body": { + "#": 982 + }, + "isInternal": false + }, + { + "x": 120, + "y": 320, + "index": 3, + "body": { + "#": 982 + }, + "isInternal": false + }, + { + "x": 125, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 996 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 998 + }, + "max": { + "#": 999 + } + }, + { + "x": 120, + "y": 270 + }, + { + "x": 130, + "y": 320 + }, + { + "x": 100, + "y": 270 + }, + [ + { + "#": 1002 + }, + { + "#": 1003 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1005 + }, + { + "#": 1006 + }, + { + "#": 1007 + }, + { + "#": 1008 + }, + { + "#": 1009 + }, + { + "#": 1010 + }, + { + "#": 1011 + }, + { + "#": 1012 + } + ], + { + "x": 150, + "y": 300, + "index": 0, + "body": { + "#": 958 + }, + "isInternal": false + }, + { + "x": 130, + "y": 320, + "index": 1, + "body": { + "#": 958 + }, + "isInternal": false + }, + { + "x": 120, + "y": 320, + "index": 2, + "body": { + "#": 958 + }, + "isInternal": false + }, + { + "x": 100, + "y": 300, + "index": 3, + "body": { + "#": 958 + }, + "isInternal": false + }, + { + "x": 100, + "y": 290, + "index": 4, + "body": { + "#": 958 + }, + "isInternal": false + }, + { + "x": 120, + "y": 270, + "index": 5, + "body": { + "#": 958 + }, + "isInternal": false + }, + { + "x": 130, + "y": 270, + "index": 6, + "body": { + "#": 958 + }, + "isInternal": false + }, + { + "x": 150, + "y": 290, + "index": 7, + "body": { + "#": 958 + }, + "isInternal": false + }, + { + "x": 125, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1020 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1022 + }, + "max": { + "#": 1023 + } + }, + { + "x": 100, + "y": 270 + }, + { + "x": 150, + "y": 320 + }, + { + "x": 125, + "y": 295 + }, + [ + { + "#": 1026 + }, + { + "#": 1027 + }, + { + "#": 1028 + }, + { + "#": 1029 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 46, + "type": "body", + "label": "Body", + "parts": { + "#": 1031 + }, + "angle": 0, + "vertices": { + "#": 1076 + }, + "position": { + "#": 1085 + }, + "force": { + "#": 1086 + }, + "torque": 0, + "positionImpulse": { + "#": 1087 + }, + "constraintImpulse": { + "#": 1088 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1089 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1090 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1091 + }, + "bounds": { + "#": 1093 + }, + "positionPrev": { + "#": 1096 + }, + "anglePrev": 0, + "axes": { + "#": 1097 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1030 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1030 + }, + { + "#": 1032 + }, + { + "#": 1054 + } + ], + { + "id": 44, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1033 + }, + "angle": 0, + "vertices": { + "#": 1034 + }, + "position": { + "#": 1039 + }, + "force": { + "#": 1040 + }, + "torque": 0, + "positionImpulse": { + "#": 1041 + }, + "constraintImpulse": { + "#": 1042 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1043 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1044 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1045 + }, + "bounds": { + "#": 1047 + }, + "positionPrev": { + "#": 1050 + }, + "anglePrev": 0, + "axes": { + "#": 1051 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1030 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1032 + } + ], + [ + { + "#": 1035 + }, + { + "#": 1036 + }, + { + "#": 1037 + }, + { + "#": 1038 + } + ], + { + "x": 150, + "y": 290, + "index": 0, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 200, + "y": 290, + "index": 1, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 200, + "y": 300, + "index": 2, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 150, + "y": 300, + "index": 3, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 175, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1046 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1048 + }, + "max": { + "#": 1049 + } + }, + { + "x": 150, + "y": 290 + }, + { + "x": 200, + "y": 300 + }, + { + "x": 150, + "y": 270 + }, + [ + { + "#": 1052 + }, + { + "#": 1053 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 45, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1055 + }, + "angle": 0, + "vertices": { + "#": 1056 + }, + "position": { + "#": 1061 + }, + "force": { + "#": 1062 + }, + "torque": 0, + "positionImpulse": { + "#": 1063 + }, + "constraintImpulse": { + "#": 1064 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1065 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1066 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1067 + }, + "bounds": { + "#": 1069 + }, + "positionPrev": { + "#": 1072 + }, + "anglePrev": 0, + "axes": { + "#": 1073 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1030 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1054 + } + ], + [ + { + "#": 1057 + }, + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + } + ], + { + "x": 170, + "y": 270, + "index": 0, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 180, + "y": 270, + "index": 1, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 180, + "y": 320, + "index": 2, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 170, + "y": 320, + "index": 3, + "body": { + "#": 1054 + }, + "isInternal": false + }, + { + "x": 175, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1068 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1070 + }, + "max": { + "#": 1071 + } + }, + { + "x": 170, + "y": 270 + }, + { + "x": 180, + "y": 320 + }, + { + "x": 150, + "y": 270 + }, + [ + { + "#": 1074 + }, + { + "#": 1075 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1077 + }, + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + } + ], + { + "x": 200, + "y": 300, + "index": 0, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 180, + "y": 320, + "index": 1, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 170, + "y": 320, + "index": 2, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 150, + "y": 300, + "index": 3, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 150, + "y": 290, + "index": 4, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 170, + "y": 270, + "index": 5, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 180, + "y": 270, + "index": 6, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 200, + "y": 290, + "index": 7, + "body": { + "#": 1030 + }, + "isInternal": false + }, + { + "x": 175, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1092 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1094 + }, + "max": { + "#": 1095 + } + }, + { + "x": 150, + "y": 270 + }, + { + "x": 200, + "y": 320 + }, + { + "x": 175, + "y": 295 + }, + [ + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 49, + "type": "body", + "label": "Body", + "parts": { + "#": 1103 + }, + "angle": 0, + "vertices": { + "#": 1148 + }, + "position": { + "#": 1157 + }, + "force": { + "#": 1158 + }, + "torque": 0, + "positionImpulse": { + "#": 1159 + }, + "constraintImpulse": { + "#": 1160 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1161 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1162 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1163 + }, + "bounds": { + "#": 1165 + }, + "positionPrev": { + "#": 1168 + }, + "anglePrev": 0, + "axes": { + "#": 1169 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1102 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1102 + }, + { + "#": 1104 + }, + { + "#": 1126 + } + ], + { + "id": 47, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1105 + }, + "angle": 0, + "vertices": { + "#": 1106 + }, + "position": { + "#": 1111 + }, + "force": { + "#": 1112 + }, + "torque": 0, + "positionImpulse": { + "#": 1113 + }, + "constraintImpulse": { + "#": 1114 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1115 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1116 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1117 + }, + "bounds": { + "#": 1119 + }, + "positionPrev": { + "#": 1122 + }, + "anglePrev": 0, + "axes": { + "#": 1123 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1102 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1104 + } + ], + [ + { + "#": 1107 + }, + { + "#": 1108 + }, + { + "#": 1109 + }, + { + "#": 1110 + } + ], + { + "x": 200, + "y": 290, + "index": 0, + "body": { + "#": 1104 + }, + "isInternal": false + }, + { + "x": 250, + "y": 290, + "index": 1, + "body": { + "#": 1104 + }, + "isInternal": false + }, + { + "x": 250, + "y": 300, + "index": 2, + "body": { + "#": 1104 + }, + "isInternal": false + }, + { + "x": 200, + "y": 300, + "index": 3, + "body": { + "#": 1104 + }, + "isInternal": false + }, + { + "x": 225, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1118 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1120 + }, + "max": { + "#": 1121 + } + }, + { + "x": 200, + "y": 290 + }, + { + "x": 250, + "y": 300 + }, + { + "x": 200, + "y": 270 + }, + [ + { + "#": 1124 + }, + { + "#": 1125 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 48, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1127 + }, + "angle": 0, + "vertices": { + "#": 1128 + }, + "position": { + "#": 1133 + }, + "force": { + "#": 1134 + }, + "torque": 0, + "positionImpulse": { + "#": 1135 + }, + "constraintImpulse": { + "#": 1136 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1137 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1138 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1139 + }, + "bounds": { + "#": 1141 + }, + "positionPrev": { + "#": 1144 + }, + "anglePrev": 0, + "axes": { + "#": 1145 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1102 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1126 + } + ], + [ + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + } + ], + { + "x": 220, + "y": 270, + "index": 0, + "body": { + "#": 1126 + }, + "isInternal": false + }, + { + "x": 230, + "y": 270, + "index": 1, + "body": { + "#": 1126 + }, + "isInternal": false + }, + { + "x": 230, + "y": 320, + "index": 2, + "body": { + "#": 1126 + }, + "isInternal": false + }, + { + "x": 220, + "y": 320, + "index": 3, + "body": { + "#": 1126 + }, + "isInternal": false + }, + { + "x": 225, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1140 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1142 + }, + "max": { + "#": 1143 + } + }, + { + "x": 220, + "y": 270 + }, + { + "x": 230, + "y": 320 + }, + { + "x": 200, + "y": 270 + }, + [ + { + "#": 1146 + }, + { + "#": 1147 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + }, + { + "#": 1152 + }, + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + }, + { + "#": 1156 + } + ], + { + "x": 250, + "y": 300, + "index": 0, + "body": { + "#": 1102 + }, + "isInternal": false + }, + { + "x": 230, + "y": 320, + "index": 1, + "body": { + "#": 1102 + }, + "isInternal": false + }, + { + "x": 220, + "y": 320, + "index": 2, + "body": { + "#": 1102 + }, + "isInternal": false + }, + { + "x": 200, + "y": 300, + "index": 3, + "body": { + "#": 1102 + }, + "isInternal": false + }, + { + "x": 200, + "y": 290, + "index": 4, + "body": { + "#": 1102 + }, + "isInternal": false + }, + { + "x": 220, + "y": 270, + "index": 5, + "body": { + "#": 1102 + }, + "isInternal": false + }, + { + "x": 230, + "y": 270, + "index": 6, + "body": { + "#": 1102 + }, + "isInternal": false + }, + { + "x": 250, + "y": 290, + "index": 7, + "body": { + "#": 1102 + }, + "isInternal": false + }, + { + "x": 225, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1164 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1166 + }, + "max": { + "#": 1167 + } + }, + { + "x": 200, + "y": 270 + }, + { + "x": 250, + "y": 320 + }, + { + "x": 225, + "y": 295 + }, + [ + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 52, + "type": "body", + "label": "Body", + "parts": { + "#": 1175 + }, + "angle": 0, + "vertices": { + "#": 1220 + }, + "position": { + "#": 1229 + }, + "force": { + "#": 1230 + }, + "torque": 0, + "positionImpulse": { + "#": 1231 + }, + "constraintImpulse": { + "#": 1232 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1233 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1234 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1235 + }, + "bounds": { + "#": 1237 + }, + "positionPrev": { + "#": 1240 + }, + "anglePrev": 0, + "axes": { + "#": 1241 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1174 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1174 + }, + { + "#": 1176 + }, + { + "#": 1198 + } + ], + { + "id": 50, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1177 + }, + "angle": 0, + "vertices": { + "#": 1178 + }, + "position": { + "#": 1183 + }, + "force": { + "#": 1184 + }, + "torque": 0, + "positionImpulse": { + "#": 1185 + }, + "constraintImpulse": { + "#": 1186 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1187 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1188 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1189 + }, + "bounds": { + "#": 1191 + }, + "positionPrev": { + "#": 1194 + }, + "anglePrev": 0, + "axes": { + "#": 1195 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1174 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1176 + } + ], + [ + { + "#": 1179 + }, + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + } + ], + { + "x": 250, + "y": 290, + "index": 0, + "body": { + "#": 1176 + }, + "isInternal": false + }, + { + "x": 300, + "y": 290, + "index": 1, + "body": { + "#": 1176 + }, + "isInternal": false + }, + { + "x": 300, + "y": 300, + "index": 2, + "body": { + "#": 1176 + }, + "isInternal": false + }, + { + "x": 250, + "y": 300, + "index": 3, + "body": { + "#": 1176 + }, + "isInternal": false + }, + { + "x": 275, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1190 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1192 + }, + "max": { + "#": 1193 + } + }, + { + "x": 250, + "y": 290 + }, + { + "x": 300, + "y": 300 + }, + { + "x": 250, + "y": 270 + }, + [ + { + "#": 1196 + }, + { + "#": 1197 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 51, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1199 + }, + "angle": 0, + "vertices": { + "#": 1200 + }, + "position": { + "#": 1205 + }, + "force": { + "#": 1206 + }, + "torque": 0, + "positionImpulse": { + "#": 1207 + }, + "constraintImpulse": { + "#": 1208 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1209 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1210 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1211 + }, + "bounds": { + "#": 1213 + }, + "positionPrev": { + "#": 1216 + }, + "anglePrev": 0, + "axes": { + "#": 1217 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1174 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1198 + } + ], + [ + { + "#": 1201 + }, + { + "#": 1202 + }, + { + "#": 1203 + }, + { + "#": 1204 + } + ], + { + "x": 270, + "y": 270, + "index": 0, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 280, + "y": 270, + "index": 1, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 280, + "y": 320, + "index": 2, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 270, + "y": 320, + "index": 3, + "body": { + "#": 1198 + }, + "isInternal": false + }, + { + "x": 275, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1212 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1214 + }, + "max": { + "#": 1215 + } + }, + { + "x": 270, + "y": 270 + }, + { + "x": 280, + "y": 320 + }, + { + "x": 250, + "y": 270 + }, + [ + { + "#": 1218 + }, + { + "#": 1219 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + }, + { + "#": 1226 + }, + { + "#": 1227 + }, + { + "#": 1228 + } + ], + { + "x": 300, + "y": 300, + "index": 0, + "body": { + "#": 1174 + }, + "isInternal": false + }, + { + "x": 280, + "y": 320, + "index": 1, + "body": { + "#": 1174 + }, + "isInternal": false + }, + { + "x": 270, + "y": 320, + "index": 2, + "body": { + "#": 1174 + }, + "isInternal": false + }, + { + "x": 250, + "y": 300, + "index": 3, + "body": { + "#": 1174 + }, + "isInternal": false + }, + { + "x": 250, + "y": 290, + "index": 4, + "body": { + "#": 1174 + }, + "isInternal": false + }, + { + "x": 270, + "y": 270, + "index": 5, + "body": { + "#": 1174 + }, + "isInternal": false + }, + { + "x": 280, + "y": 270, + "index": 6, + "body": { + "#": 1174 + }, + "isInternal": false + }, + { + "x": 300, + "y": 290, + "index": 7, + "body": { + "#": 1174 + }, + "isInternal": false + }, + { + "x": 275, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1236 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1238 + }, + "max": { + "#": 1239 + } + }, + { + "x": 250, + "y": 270 + }, + { + "x": 300, + "y": 320 + }, + { + "x": 275, + "y": 295 + }, + [ + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 55, + "type": "body", + "label": "Body", + "parts": { + "#": 1247 + }, + "angle": 0, + "vertices": { + "#": 1292 + }, + "position": { + "#": 1301 + }, + "force": { + "#": 1302 + }, + "torque": 0, + "positionImpulse": { + "#": 1303 + }, + "constraintImpulse": { + "#": 1304 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1305 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1306 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1307 + }, + "bounds": { + "#": 1309 + }, + "positionPrev": { + "#": 1312 + }, + "anglePrev": 0, + "axes": { + "#": 1313 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1246 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1246 + }, + { + "#": 1248 + }, + { + "#": 1270 + } + ], + { + "id": 53, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1249 + }, + "angle": 0, + "vertices": { + "#": 1250 + }, + "position": { + "#": 1255 + }, + "force": { + "#": 1256 + }, + "torque": 0, + "positionImpulse": { + "#": 1257 + }, + "constraintImpulse": { + "#": 1258 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1259 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1260 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1261 + }, + "bounds": { + "#": 1263 + }, + "positionPrev": { + "#": 1266 + }, + "anglePrev": 0, + "axes": { + "#": 1267 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1246 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1248 + } + ], + [ + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + }, + { + "#": 1254 + } + ], + { + "x": 300, + "y": 290, + "index": 0, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 350, + "y": 290, + "index": 1, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 350, + "y": 300, + "index": 2, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 300, + "y": 300, + "index": 3, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 325, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1262 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1264 + }, + "max": { + "#": 1265 + } + }, + { + "x": 300, + "y": 290 + }, + { + "x": 350, + "y": 300 + }, + { + "x": 300, + "y": 270 + }, + [ + { + "#": 1268 + }, + { + "#": 1269 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 54, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1271 + }, + "angle": 0, + "vertices": { + "#": 1272 + }, + "position": { + "#": 1277 + }, + "force": { + "#": 1278 + }, + "torque": 0, + "positionImpulse": { + "#": 1279 + }, + "constraintImpulse": { + "#": 1280 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1281 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1282 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1283 + }, + "bounds": { + "#": 1285 + }, + "positionPrev": { + "#": 1288 + }, + "anglePrev": 0, + "axes": { + "#": 1289 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1246 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1270 + } + ], + [ + { + "#": 1273 + }, + { + "#": 1274 + }, + { + "#": 1275 + }, + { + "#": 1276 + } + ], + { + "x": 320, + "y": 270, + "index": 0, + "body": { + "#": 1270 + }, + "isInternal": false + }, + { + "x": 330, + "y": 270, + "index": 1, + "body": { + "#": 1270 + }, + "isInternal": false + }, + { + "x": 330, + "y": 320, + "index": 2, + "body": { + "#": 1270 + }, + "isInternal": false + }, + { + "x": 320, + "y": 320, + "index": 3, + "body": { + "#": 1270 + }, + "isInternal": false + }, + { + "x": 325, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1284 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1286 + }, + "max": { + "#": 1287 + } + }, + { + "x": 320, + "y": 270 + }, + { + "x": 330, + "y": 320 + }, + { + "x": 300, + "y": 270 + }, + [ + { + "#": 1290 + }, + { + "#": 1291 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + }, + { + "#": 1296 + }, + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + } + ], + { + "x": 350, + "y": 300, + "index": 0, + "body": { + "#": 1246 + }, + "isInternal": false + }, + { + "x": 330, + "y": 320, + "index": 1, + "body": { + "#": 1246 + }, + "isInternal": false + }, + { + "x": 320, + "y": 320, + "index": 2, + "body": { + "#": 1246 + }, + "isInternal": false + }, + { + "x": 300, + "y": 300, + "index": 3, + "body": { + "#": 1246 + }, + "isInternal": false + }, + { + "x": 300, + "y": 290, + "index": 4, + "body": { + "#": 1246 + }, + "isInternal": false + }, + { + "x": 320, + "y": 270, + "index": 5, + "body": { + "#": 1246 + }, + "isInternal": false + }, + { + "x": 330, + "y": 270, + "index": 6, + "body": { + "#": 1246 + }, + "isInternal": false + }, + { + "x": 350, + "y": 290, + "index": 7, + "body": { + "#": 1246 + }, + "isInternal": false + }, + { + "x": 325, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1308 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1310 + }, + "max": { + "#": 1311 + } + }, + { + "x": 300, + "y": 270 + }, + { + "x": 350, + "y": 320 + }, + { + "x": 325, + "y": 295 + }, + [ + { + "#": 1314 + }, + { + "#": 1315 + }, + { + "#": 1316 + }, + { + "#": 1317 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 58, + "type": "body", + "label": "Body", + "parts": { + "#": 1319 + }, + "angle": 0, + "vertices": { + "#": 1364 + }, + "position": { + "#": 1373 + }, + "force": { + "#": 1374 + }, + "torque": 0, + "positionImpulse": { + "#": 1375 + }, + "constraintImpulse": { + "#": 1376 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1377 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1378 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1379 + }, + "bounds": { + "#": 1381 + }, + "positionPrev": { + "#": 1384 + }, + "anglePrev": 0, + "axes": { + "#": 1385 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1318 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1318 + }, + { + "#": 1320 + }, + { + "#": 1342 + } + ], + { + "id": 56, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1321 + }, + "angle": 0, + "vertices": { + "#": 1322 + }, + "position": { + "#": 1327 + }, + "force": { + "#": 1328 + }, + "torque": 0, + "positionImpulse": { + "#": 1329 + }, + "constraintImpulse": { + "#": 1330 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1331 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1332 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1333 + }, + "bounds": { + "#": 1335 + }, + "positionPrev": { + "#": 1338 + }, + "anglePrev": 0, + "axes": { + "#": 1339 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1318 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1320 + } + ], + [ + { + "#": 1323 + }, + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + } + ], + { + "x": 350, + "y": 290, + "index": 0, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 400, + "y": 290, + "index": 1, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 400, + "y": 300, + "index": 2, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 350, + "y": 300, + "index": 3, + "body": { + "#": 1320 + }, + "isInternal": false + }, + { + "x": 375, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1334 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1336 + }, + "max": { + "#": 1337 + } + }, + { + "x": 350, + "y": 290 + }, + { + "x": 400, + "y": 300 + }, + { + "x": 350, + "y": 270 + }, + [ + { + "#": 1340 + }, + { + "#": 1341 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 57, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1343 + }, + "angle": 0, + "vertices": { + "#": 1344 + }, + "position": { + "#": 1349 + }, + "force": { + "#": 1350 + }, + "torque": 0, + "positionImpulse": { + "#": 1351 + }, + "constraintImpulse": { + "#": 1352 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1353 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1354 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1355 + }, + "bounds": { + "#": 1357 + }, + "positionPrev": { + "#": 1360 + }, + "anglePrev": 0, + "axes": { + "#": 1361 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1318 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1342 + } + ], + [ + { + "#": 1345 + }, + { + "#": 1346 + }, + { + "#": 1347 + }, + { + "#": 1348 + } + ], + { + "x": 370, + "y": 270, + "index": 0, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 380, + "y": 270, + "index": 1, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 380, + "y": 320, + "index": 2, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 370, + "y": 320, + "index": 3, + "body": { + "#": 1342 + }, + "isInternal": false + }, + { + "x": 375, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1356 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1358 + }, + "max": { + "#": 1359 + } + }, + { + "x": 370, + "y": 270 + }, + { + "x": 380, + "y": 320 + }, + { + "x": 350, + "y": 270 + }, + [ + { + "#": 1362 + }, + { + "#": 1363 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1365 + }, + { + "#": 1366 + }, + { + "#": 1367 + }, + { + "#": 1368 + }, + { + "#": 1369 + }, + { + "#": 1370 + }, + { + "#": 1371 + }, + { + "#": 1372 + } + ], + { + "x": 400, + "y": 300, + "index": 0, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 380, + "y": 320, + "index": 1, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 370, + "y": 320, + "index": 2, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 350, + "y": 300, + "index": 3, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 350, + "y": 290, + "index": 4, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 370, + "y": 270, + "index": 5, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 380, + "y": 270, + "index": 6, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 400, + "y": 290, + "index": 7, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 375, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1380 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1382 + }, + "max": { + "#": 1383 + } + }, + { + "x": 350, + "y": 270 + }, + { + "x": 400, + "y": 320 + }, + { + "x": 375, + "y": 295 + }, + [ + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 61, + "type": "body", + "label": "Body", + "parts": { + "#": 1391 + }, + "angle": 0, + "vertices": { + "#": 1436 + }, + "position": { + "#": 1445 + }, + "force": { + "#": 1446 + }, + "torque": 0, + "positionImpulse": { + "#": 1447 + }, + "constraintImpulse": { + "#": 1448 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1449 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1450 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1451 + }, + "bounds": { + "#": 1453 + }, + "positionPrev": { + "#": 1456 + }, + "anglePrev": 0, + "axes": { + "#": 1457 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1390 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1390 + }, + { + "#": 1392 + }, + { + "#": 1414 + } + ], + { + "id": 59, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1393 + }, + "angle": 0, + "vertices": { + "#": 1394 + }, + "position": { + "#": 1399 + }, + "force": { + "#": 1400 + }, + "torque": 0, + "positionImpulse": { + "#": 1401 + }, + "constraintImpulse": { + "#": 1402 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1403 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1404 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1405 + }, + "bounds": { + "#": 1407 + }, + "positionPrev": { + "#": 1410 + }, + "anglePrev": 0, + "axes": { + "#": 1411 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1390 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1392 + } + ], + [ + { + "#": 1395 + }, + { + "#": 1396 + }, + { + "#": 1397 + }, + { + "#": 1398 + } + ], + { + "x": 400, + "y": 290, + "index": 0, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 450, + "y": 290, + "index": 1, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 450, + "y": 300, + "index": 2, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 400, + "y": 300, + "index": 3, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 425, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1406 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1408 + }, + "max": { + "#": 1409 + } + }, + { + "x": 400, + "y": 290 + }, + { + "x": 450, + "y": 300 + }, + { + "x": 400, + "y": 270 + }, + [ + { + "#": 1412 + }, + { + "#": 1413 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 60, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1415 + }, + "angle": 0, + "vertices": { + "#": 1416 + }, + "position": { + "#": 1421 + }, + "force": { + "#": 1422 + }, + "torque": 0, + "positionImpulse": { + "#": 1423 + }, + "constraintImpulse": { + "#": 1424 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1425 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1426 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1427 + }, + "bounds": { + "#": 1429 + }, + "positionPrev": { + "#": 1432 + }, + "anglePrev": 0, + "axes": { + "#": 1433 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1390 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1414 + } + ], + [ + { + "#": 1417 + }, + { + "#": 1418 + }, + { + "#": 1419 + }, + { + "#": 1420 + } + ], + { + "x": 420, + "y": 270, + "index": 0, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 430, + "y": 270, + "index": 1, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 430, + "y": 320, + "index": 2, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 420, + "y": 320, + "index": 3, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 425, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1428 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1430 + }, + "max": { + "#": 1431 + } + }, + { + "x": 420, + "y": 270 + }, + { + "x": 430, + "y": 320 + }, + { + "x": 400, + "y": 270 + }, + [ + { + "#": 1434 + }, + { + "#": 1435 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1437 + }, + { + "#": 1438 + }, + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + }, + { + "#": 1442 + }, + { + "#": 1443 + }, + { + "#": 1444 + } + ], + { + "x": 450, + "y": 300, + "index": 0, + "body": { + "#": 1390 + }, + "isInternal": false + }, + { + "x": 430, + "y": 320, + "index": 1, + "body": { + "#": 1390 + }, + "isInternal": false + }, + { + "x": 420, + "y": 320, + "index": 2, + "body": { + "#": 1390 + }, + "isInternal": false + }, + { + "x": 400, + "y": 300, + "index": 3, + "body": { + "#": 1390 + }, + "isInternal": false + }, + { + "x": 400, + "y": 290, + "index": 4, + "body": { + "#": 1390 + }, + "isInternal": false + }, + { + "x": 420, + "y": 270, + "index": 5, + "body": { + "#": 1390 + }, + "isInternal": false + }, + { + "x": 430, + "y": 270, + "index": 6, + "body": { + "#": 1390 + }, + "isInternal": false + }, + { + "x": 450, + "y": 290, + "index": 7, + "body": { + "#": 1390 + }, + "isInternal": false + }, + { + "x": 425, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1452 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1454 + }, + "max": { + "#": 1455 + } + }, + { + "x": 400, + "y": 270 + }, + { + "x": 450, + "y": 320 + }, + { + "x": 425, + "y": 295 + }, + [ + { + "#": 1458 + }, + { + "#": 1459 + }, + { + "#": 1460 + }, + { + "#": 1461 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 64, + "type": "body", + "label": "Body", + "parts": { + "#": 1463 + }, + "angle": 0, + "vertices": { + "#": 1508 + }, + "position": { + "#": 1517 + }, + "force": { + "#": 1518 + }, + "torque": 0, + "positionImpulse": { + "#": 1519 + }, + "constraintImpulse": { + "#": 1520 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1521 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1522 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1523 + }, + "bounds": { + "#": 1525 + }, + "positionPrev": { + "#": 1528 + }, + "anglePrev": 0, + "axes": { + "#": 1529 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1462 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1462 + }, + { + "#": 1464 + }, + { + "#": 1486 + } + ], + { + "id": 62, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1465 + }, + "angle": 0, + "vertices": { + "#": 1466 + }, + "position": { + "#": 1471 + }, + "force": { + "#": 1472 + }, + "torque": 0, + "positionImpulse": { + "#": 1473 + }, + "constraintImpulse": { + "#": 1474 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1475 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1476 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1477 + }, + "bounds": { + "#": 1479 + }, + "positionPrev": { + "#": 1482 + }, + "anglePrev": 0, + "axes": { + "#": 1483 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1462 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1464 + } + ], + [ + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + }, + { + "#": 1470 + } + ], + { + "x": 450, + "y": 290, + "index": 0, + "body": { + "#": 1464 + }, + "isInternal": false + }, + { + "x": 500, + "y": 290, + "index": 1, + "body": { + "#": 1464 + }, + "isInternal": false + }, + { + "x": 500, + "y": 300, + "index": 2, + "body": { + "#": 1464 + }, + "isInternal": false + }, + { + "x": 450, + "y": 300, + "index": 3, + "body": { + "#": 1464 + }, + "isInternal": false + }, + { + "x": 475, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1478 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1480 + }, + "max": { + "#": 1481 + } + }, + { + "x": 450, + "y": 290 + }, + { + "x": 500, + "y": 300 + }, + { + "x": 450, + "y": 270 + }, + [ + { + "#": 1484 + }, + { + "#": 1485 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 63, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1487 + }, + "angle": 0, + "vertices": { + "#": 1488 + }, + "position": { + "#": 1493 + }, + "force": { + "#": 1494 + }, + "torque": 0, + "positionImpulse": { + "#": 1495 + }, + "constraintImpulse": { + "#": 1496 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1497 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1498 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1499 + }, + "bounds": { + "#": 1501 + }, + "positionPrev": { + "#": 1504 + }, + "anglePrev": 0, + "axes": { + "#": 1505 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1462 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1486 + } + ], + [ + { + "#": 1489 + }, + { + "#": 1490 + }, + { + "#": 1491 + }, + { + "#": 1492 + } + ], + { + "x": 470, + "y": 270, + "index": 0, + "body": { + "#": 1486 + }, + "isInternal": false + }, + { + "x": 480, + "y": 270, + "index": 1, + "body": { + "#": 1486 + }, + "isInternal": false + }, + { + "x": 480, + "y": 320, + "index": 2, + "body": { + "#": 1486 + }, + "isInternal": false + }, + { + "x": 470, + "y": 320, + "index": 3, + "body": { + "#": 1486 + }, + "isInternal": false + }, + { + "x": 475, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1500 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1502 + }, + "max": { + "#": 1503 + } + }, + { + "x": 470, + "y": 270 + }, + { + "x": 480, + "y": 320 + }, + { + "x": 450, + "y": 270 + }, + [ + { + "#": 1506 + }, + { + "#": 1507 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1509 + }, + { + "#": 1510 + }, + { + "#": 1511 + }, + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + }, + { + "#": 1515 + }, + { + "#": 1516 + } + ], + { + "x": 500, + "y": 300, + "index": 0, + "body": { + "#": 1462 + }, + "isInternal": false + }, + { + "x": 480, + "y": 320, + "index": 1, + "body": { + "#": 1462 + }, + "isInternal": false + }, + { + "x": 470, + "y": 320, + "index": 2, + "body": { + "#": 1462 + }, + "isInternal": false + }, + { + "x": 450, + "y": 300, + "index": 3, + "body": { + "#": 1462 + }, + "isInternal": false + }, + { + "x": 450, + "y": 290, + "index": 4, + "body": { + "#": 1462 + }, + "isInternal": false + }, + { + "x": 470, + "y": 270, + "index": 5, + "body": { + "#": 1462 + }, + "isInternal": false + }, + { + "x": 480, + "y": 270, + "index": 6, + "body": { + "#": 1462 + }, + "isInternal": false + }, + { + "x": 500, + "y": 290, + "index": 7, + "body": { + "#": 1462 + }, + "isInternal": false + }, + { + "x": 475, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1524 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1526 + }, + "max": { + "#": 1527 + } + }, + { + "x": 450, + "y": 270 + }, + { + "x": 500, + "y": 320 + }, + { + "x": 475, + "y": 295 + }, + [ + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + }, + { + "#": 1533 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 67, + "type": "body", + "label": "Body", + "parts": { + "#": 1535 + }, + "angle": 0, + "vertices": { + "#": 1580 + }, + "position": { + "#": 1589 + }, + "force": { + "#": 1590 + }, + "torque": 0, + "positionImpulse": { + "#": 1591 + }, + "constraintImpulse": { + "#": 1592 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1593 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1594 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1595 + }, + "bounds": { + "#": 1597 + }, + "positionPrev": { + "#": 1600 + }, + "anglePrev": 0, + "axes": { + "#": 1601 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1534 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1534 + }, + { + "#": 1536 + }, + { + "#": 1558 + } + ], + { + "id": 65, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1537 + }, + "angle": 0, + "vertices": { + "#": 1538 + }, + "position": { + "#": 1543 + }, + "force": { + "#": 1544 + }, + "torque": 0, + "positionImpulse": { + "#": 1545 + }, + "constraintImpulse": { + "#": 1546 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1547 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1548 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1549 + }, + "bounds": { + "#": 1551 + }, + "positionPrev": { + "#": 1554 + }, + "anglePrev": 0, + "axes": { + "#": 1555 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1534 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1536 + } + ], + [ + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + } + ], + { + "x": 500, + "y": 290, + "index": 0, + "body": { + "#": 1536 + }, + "isInternal": false + }, + { + "x": 550, + "y": 290, + "index": 1, + "body": { + "#": 1536 + }, + "isInternal": false + }, + { + "x": 550, + "y": 300, + "index": 2, + "body": { + "#": 1536 + }, + "isInternal": false + }, + { + "x": 500, + "y": 300, + "index": 3, + "body": { + "#": 1536 + }, + "isInternal": false + }, + { + "x": 525, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1550 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1552 + }, + "max": { + "#": 1553 + } + }, + { + "x": 500, + "y": 290 + }, + { + "x": 550, + "y": 300 + }, + { + "x": 500, + "y": 270 + }, + [ + { + "#": 1556 + }, + { + "#": 1557 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 66, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1559 + }, + "angle": 0, + "vertices": { + "#": 1560 + }, + "position": { + "#": 1565 + }, + "force": { + "#": 1566 + }, + "torque": 0, + "positionImpulse": { + "#": 1567 + }, + "constraintImpulse": { + "#": 1568 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1569 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1570 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1571 + }, + "bounds": { + "#": 1573 + }, + "positionPrev": { + "#": 1576 + }, + "anglePrev": 0, + "axes": { + "#": 1577 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1534 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1558 + } + ], + [ + { + "#": 1561 + }, + { + "#": 1562 + }, + { + "#": 1563 + }, + { + "#": 1564 + } + ], + { + "x": 520, + "y": 270, + "index": 0, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 530, + "y": 270, + "index": 1, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 530, + "y": 320, + "index": 2, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 520, + "y": 320, + "index": 3, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 525, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1572 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1574 + }, + "max": { + "#": 1575 + } + }, + { + "x": 520, + "y": 270 + }, + { + "x": 530, + "y": 320 + }, + { + "x": 500, + "y": 270 + }, + [ + { + "#": 1578 + }, + { + "#": 1579 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1581 + }, + { + "#": 1582 + }, + { + "#": 1583 + }, + { + "#": 1584 + }, + { + "#": 1585 + }, + { + "#": 1586 + }, + { + "#": 1587 + }, + { + "#": 1588 + } + ], + { + "x": 550, + "y": 300, + "index": 0, + "body": { + "#": 1534 + }, + "isInternal": false + }, + { + "x": 530, + "y": 320, + "index": 1, + "body": { + "#": 1534 + }, + "isInternal": false + }, + { + "x": 520, + "y": 320, + "index": 2, + "body": { + "#": 1534 + }, + "isInternal": false + }, + { + "x": 500, + "y": 300, + "index": 3, + "body": { + "#": 1534 + }, + "isInternal": false + }, + { + "x": 500, + "y": 290, + "index": 4, + "body": { + "#": 1534 + }, + "isInternal": false + }, + { + "x": 520, + "y": 270, + "index": 5, + "body": { + "#": 1534 + }, + "isInternal": false + }, + { + "x": 530, + "y": 270, + "index": 6, + "body": { + "#": 1534 + }, + "isInternal": false + }, + { + "x": 550, + "y": 290, + "index": 7, + "body": { + "#": 1534 + }, + "isInternal": false + }, + { + "x": 525, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1596 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1598 + }, + "max": { + "#": 1599 + } + }, + { + "x": 500, + "y": 270 + }, + { + "x": 550, + "y": 320 + }, + { + "x": 525, + "y": 295 + }, + [ + { + "#": 1602 + }, + { + "#": 1603 + }, + { + "#": 1604 + }, + { + "#": 1605 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 70, + "type": "body", + "label": "Body", + "parts": { + "#": 1607 + }, + "angle": 0, + "vertices": { + "#": 1652 + }, + "position": { + "#": 1661 + }, + "force": { + "#": 1662 + }, + "torque": 0, + "positionImpulse": { + "#": 1663 + }, + "constraintImpulse": { + "#": 1664 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1665 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1666 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1667 + }, + "bounds": { + "#": 1669 + }, + "positionPrev": { + "#": 1672 + }, + "anglePrev": 0, + "axes": { + "#": 1673 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1606 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1606 + }, + { + "#": 1608 + }, + { + "#": 1630 + } + ], + { + "id": 68, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1609 + }, + "angle": 0, + "vertices": { + "#": 1610 + }, + "position": { + "#": 1615 + }, + "force": { + "#": 1616 + }, + "torque": 0, + "positionImpulse": { + "#": 1617 + }, + "constraintImpulse": { + "#": 1618 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1619 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1620 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1621 + }, + "bounds": { + "#": 1623 + }, + "positionPrev": { + "#": 1626 + }, + "anglePrev": 0, + "axes": { + "#": 1627 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1606 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1608 + } + ], + [ + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + }, + { + "#": 1614 + } + ], + { + "x": 550, + "y": 290, + "index": 0, + "body": { + "#": 1608 + }, + "isInternal": false + }, + { + "x": 600, + "y": 290, + "index": 1, + "body": { + "#": 1608 + }, + "isInternal": false + }, + { + "x": 600, + "y": 300, + "index": 2, + "body": { + "#": 1608 + }, + "isInternal": false + }, + { + "x": 550, + "y": 300, + "index": 3, + "body": { + "#": 1608 + }, + "isInternal": false + }, + { + "x": 575, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1622 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1624 + }, + "max": { + "#": 1625 + } + }, + { + "x": 550, + "y": 290 + }, + { + "x": 600, + "y": 300 + }, + { + "x": 550, + "y": 270 + }, + [ + { + "#": 1628 + }, + { + "#": 1629 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 69, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1631 + }, + "angle": 0, + "vertices": { + "#": 1632 + }, + "position": { + "#": 1637 + }, + "force": { + "#": 1638 + }, + "torque": 0, + "positionImpulse": { + "#": 1639 + }, + "constraintImpulse": { + "#": 1640 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1641 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1642 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1643 + }, + "bounds": { + "#": 1645 + }, + "positionPrev": { + "#": 1648 + }, + "anglePrev": 0, + "axes": { + "#": 1649 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1606 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1630 + } + ], + [ + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + } + ], + { + "x": 570, + "y": 270, + "index": 0, + "body": { + "#": 1630 + }, + "isInternal": false + }, + { + "x": 580, + "y": 270, + "index": 1, + "body": { + "#": 1630 + }, + "isInternal": false + }, + { + "x": 580, + "y": 320, + "index": 2, + "body": { + "#": 1630 + }, + "isInternal": false + }, + { + "x": 570, + "y": 320, + "index": 3, + "body": { + "#": 1630 + }, + "isInternal": false + }, + { + "x": 575, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1644 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1646 + }, + "max": { + "#": 1647 + } + }, + { + "x": 570, + "y": 270 + }, + { + "x": 580, + "y": 320 + }, + { + "x": 550, + "y": 270 + }, + [ + { + "#": 1650 + }, + { + "#": 1651 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1653 + }, + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + } + ], + { + "x": 600, + "y": 300, + "index": 0, + "body": { + "#": 1606 + }, + "isInternal": false + }, + { + "x": 580, + "y": 320, + "index": 1, + "body": { + "#": 1606 + }, + "isInternal": false + }, + { + "x": 570, + "y": 320, + "index": 2, + "body": { + "#": 1606 + }, + "isInternal": false + }, + { + "x": 550, + "y": 300, + "index": 3, + "body": { + "#": 1606 + }, + "isInternal": false + }, + { + "x": 550, + "y": 290, + "index": 4, + "body": { + "#": 1606 + }, + "isInternal": false + }, + { + "x": 570, + "y": 270, + "index": 5, + "body": { + "#": 1606 + }, + "isInternal": false + }, + { + "x": 580, + "y": 270, + "index": 6, + "body": { + "#": 1606 + }, + "isInternal": false + }, + { + "x": 600, + "y": 290, + "index": 7, + "body": { + "#": 1606 + }, + "isInternal": false + }, + { + "x": 575, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1668 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1670 + }, + "max": { + "#": 1671 + } + }, + { + "x": 550, + "y": 270 + }, + { + "x": 600, + "y": 320 + }, + { + "x": 575, + "y": 295 + }, + [ + { + "#": 1674 + }, + { + "#": 1675 + }, + { + "#": 1676 + }, + { + "#": 1677 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 73, + "type": "body", + "label": "Body", + "parts": { + "#": 1679 + }, + "angle": 0, + "vertices": { + "#": 1724 + }, + "position": { + "#": 1733 + }, + "force": { + "#": 1734 + }, + "torque": 0, + "positionImpulse": { + "#": 1735 + }, + "constraintImpulse": { + "#": 1736 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1737 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1738 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1739 + }, + "bounds": { + "#": 1741 + }, + "positionPrev": { + "#": 1744 + }, + "anglePrev": 0, + "axes": { + "#": 1745 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1678 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1678 + }, + { + "#": 1680 + }, + { + "#": 1702 + } + ], + { + "id": 71, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1681 + }, + "angle": 0, + "vertices": { + "#": 1682 + }, + "position": { + "#": 1687 + }, + "force": { + "#": 1688 + }, + "torque": 0, + "positionImpulse": { + "#": 1689 + }, + "constraintImpulse": { + "#": 1690 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1691 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1692 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1693 + }, + "bounds": { + "#": 1695 + }, + "positionPrev": { + "#": 1698 + }, + "anglePrev": 0, + "axes": { + "#": 1699 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1678 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1680 + } + ], + [ + { + "#": 1683 + }, + { + "#": 1684 + }, + { + "#": 1685 + }, + { + "#": 1686 + } + ], + { + "x": 600, + "y": 290, + "index": 0, + "body": { + "#": 1680 + }, + "isInternal": false + }, + { + "x": 650, + "y": 290, + "index": 1, + "body": { + "#": 1680 + }, + "isInternal": false + }, + { + "x": 650, + "y": 300, + "index": 2, + "body": { + "#": 1680 + }, + "isInternal": false + }, + { + "x": 600, + "y": 300, + "index": 3, + "body": { + "#": 1680 + }, + "isInternal": false + }, + { + "x": 625, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1694 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1696 + }, + "max": { + "#": 1697 + } + }, + { + "x": 600, + "y": 290 + }, + { + "x": 650, + "y": 300 + }, + { + "x": 600, + "y": 270 + }, + [ + { + "#": 1700 + }, + { + "#": 1701 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 72, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1703 + }, + "angle": 0, + "vertices": { + "#": 1704 + }, + "position": { + "#": 1709 + }, + "force": { + "#": 1710 + }, + "torque": 0, + "positionImpulse": { + "#": 1711 + }, + "constraintImpulse": { + "#": 1712 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1713 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1714 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1715 + }, + "bounds": { + "#": 1717 + }, + "positionPrev": { + "#": 1720 + }, + "anglePrev": 0, + "axes": { + "#": 1721 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1678 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1702 + } + ], + [ + { + "#": 1705 + }, + { + "#": 1706 + }, + { + "#": 1707 + }, + { + "#": 1708 + } + ], + { + "x": 620, + "y": 270, + "index": 0, + "body": { + "#": 1702 + }, + "isInternal": false + }, + { + "x": 630, + "y": 270, + "index": 1, + "body": { + "#": 1702 + }, + "isInternal": false + }, + { + "x": 630, + "y": 320, + "index": 2, + "body": { + "#": 1702 + }, + "isInternal": false + }, + { + "x": 620, + "y": 320, + "index": 3, + "body": { + "#": 1702 + }, + "isInternal": false + }, + { + "x": 625, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1716 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1718 + }, + "max": { + "#": 1719 + } + }, + { + "x": 620, + "y": 270 + }, + { + "x": 630, + "y": 320 + }, + { + "x": 600, + "y": 270 + }, + [ + { + "#": 1722 + }, + { + "#": 1723 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1725 + }, + { + "#": 1726 + }, + { + "#": 1727 + }, + { + "#": 1728 + }, + { + "#": 1729 + }, + { + "#": 1730 + }, + { + "#": 1731 + }, + { + "#": 1732 + } + ], + { + "x": 650, + "y": 300, + "index": 0, + "body": { + "#": 1678 + }, + "isInternal": false + }, + { + "x": 630, + "y": 320, + "index": 1, + "body": { + "#": 1678 + }, + "isInternal": false + }, + { + "x": 620, + "y": 320, + "index": 2, + "body": { + "#": 1678 + }, + "isInternal": false + }, + { + "x": 600, + "y": 300, + "index": 3, + "body": { + "#": 1678 + }, + "isInternal": false + }, + { + "x": 600, + "y": 290, + "index": 4, + "body": { + "#": 1678 + }, + "isInternal": false + }, + { + "x": 620, + "y": 270, + "index": 5, + "body": { + "#": 1678 + }, + "isInternal": false + }, + { + "x": 630, + "y": 270, + "index": 6, + "body": { + "#": 1678 + }, + "isInternal": false + }, + { + "x": 650, + "y": 290, + "index": 7, + "body": { + "#": 1678 + }, + "isInternal": false + }, + { + "x": 625, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1740 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1742 + }, + "max": { + "#": 1743 + } + }, + { + "x": 600, + "y": 270 + }, + { + "x": 650, + "y": 320 + }, + { + "x": 625, + "y": 295 + }, + [ + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 76, + "type": "body", + "label": "Body", + "parts": { + "#": 1751 + }, + "angle": 0, + "vertices": { + "#": 1796 + }, + "position": { + "#": 1805 + }, + "force": { + "#": 1806 + }, + "torque": 0, + "positionImpulse": { + "#": 1807 + }, + "constraintImpulse": { + "#": 1808 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1809 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1810 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1811 + }, + "bounds": { + "#": 1813 + }, + "positionPrev": { + "#": 1816 + }, + "anglePrev": 0, + "axes": { + "#": 1817 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1750 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1750 + }, + { + "#": 1752 + }, + { + "#": 1774 + } + ], + { + "id": 74, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1753 + }, + "angle": 0, + "vertices": { + "#": 1754 + }, + "position": { + "#": 1759 + }, + "force": { + "#": 1760 + }, + "torque": 0, + "positionImpulse": { + "#": 1761 + }, + "constraintImpulse": { + "#": 1762 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1763 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1764 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1765 + }, + "bounds": { + "#": 1767 + }, + "positionPrev": { + "#": 1770 + }, + "anglePrev": 0, + "axes": { + "#": 1771 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1750 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1752 + } + ], + [ + { + "#": 1755 + }, + { + "#": 1756 + }, + { + "#": 1757 + }, + { + "#": 1758 + } + ], + { + "x": 650, + "y": 290, + "index": 0, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 700, + "y": 290, + "index": 1, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 700, + "y": 300, + "index": 2, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 650, + "y": 300, + "index": 3, + "body": { + "#": 1752 + }, + "isInternal": false + }, + { + "x": 675, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1766 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1768 + }, + "max": { + "#": 1769 + } + }, + { + "x": 650, + "y": 290 + }, + { + "x": 700, + "y": 300 + }, + { + "x": 650, + "y": 270 + }, + [ + { + "#": 1772 + }, + { + "#": 1773 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 75, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1775 + }, + "angle": 0, + "vertices": { + "#": 1776 + }, + "position": { + "#": 1781 + }, + "force": { + "#": 1782 + }, + "torque": 0, + "positionImpulse": { + "#": 1783 + }, + "constraintImpulse": { + "#": 1784 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1785 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1786 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1787 + }, + "bounds": { + "#": 1789 + }, + "positionPrev": { + "#": 1792 + }, + "anglePrev": 0, + "axes": { + "#": 1793 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1750 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1774 + } + ], + [ + { + "#": 1777 + }, + { + "#": 1778 + }, + { + "#": 1779 + }, + { + "#": 1780 + } + ], + { + "x": 670, + "y": 270, + "index": 0, + "body": { + "#": 1774 + }, + "isInternal": false + }, + { + "x": 680, + "y": 270, + "index": 1, + "body": { + "#": 1774 + }, + "isInternal": false + }, + { + "x": 680, + "y": 320, + "index": 2, + "body": { + "#": 1774 + }, + "isInternal": false + }, + { + "x": 670, + "y": 320, + "index": 3, + "body": { + "#": 1774 + }, + "isInternal": false + }, + { + "x": 675, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1788 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1790 + }, + "max": { + "#": 1791 + } + }, + { + "x": 670, + "y": 270 + }, + { + "x": 680, + "y": 320 + }, + { + "x": 650, + "y": 270 + }, + [ + { + "#": 1794 + }, + { + "#": 1795 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1797 + }, + { + "#": 1798 + }, + { + "#": 1799 + }, + { + "#": 1800 + }, + { + "#": 1801 + }, + { + "#": 1802 + }, + { + "#": 1803 + }, + { + "#": 1804 + } + ], + { + "x": 700, + "y": 300, + "index": 0, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 680, + "y": 320, + "index": 1, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 670, + "y": 320, + "index": 2, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 650, + "y": 300, + "index": 3, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 650, + "y": 290, + "index": 4, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 670, + "y": 270, + "index": 5, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 680, + "y": 270, + "index": 6, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 700, + "y": 290, + "index": 7, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 675, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1812 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1814 + }, + "max": { + "#": 1815 + } + }, + { + "x": 650, + "y": 270 + }, + { + "x": 700, + "y": 320 + }, + { + "x": 675, + "y": 295 + }, + [ + { + "#": 1818 + }, + { + "#": 1819 + }, + { + "#": 1820 + }, + { + "#": 1821 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 79, + "type": "body", + "label": "Body", + "parts": { + "#": 1823 + }, + "angle": 0, + "vertices": { + "#": 1868 + }, + "position": { + "#": 1877 + }, + "force": { + "#": 1878 + }, + "torque": 0, + "positionImpulse": { + "#": 1879 + }, + "constraintImpulse": { + "#": 1880 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1881 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1882 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1883 + }, + "bounds": { + "#": 1885 + }, + "positionPrev": { + "#": 1888 + }, + "anglePrev": 0, + "axes": { + "#": 1889 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1822 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1822 + }, + { + "#": 1824 + }, + { + "#": 1846 + } + ], + { + "id": 77, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1825 + }, + "angle": 0, + "vertices": { + "#": 1826 + }, + "position": { + "#": 1831 + }, + "force": { + "#": 1832 + }, + "torque": 0, + "positionImpulse": { + "#": 1833 + }, + "constraintImpulse": { + "#": 1834 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1835 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1836 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1837 + }, + "bounds": { + "#": 1839 + }, + "positionPrev": { + "#": 1842 + }, + "anglePrev": 0, + "axes": { + "#": 1843 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1822 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1824 + } + ], + [ + { + "#": 1827 + }, + { + "#": 1828 + }, + { + "#": 1829 + }, + { + "#": 1830 + } + ], + { + "x": 100, + "y": 340, + "index": 0, + "body": { + "#": 1824 + }, + "isInternal": false + }, + { + "x": 150, + "y": 340, + "index": 1, + "body": { + "#": 1824 + }, + "isInternal": false + }, + { + "x": 150, + "y": 350, + "index": 2, + "body": { + "#": 1824 + }, + "isInternal": false + }, + { + "x": 100, + "y": 350, + "index": 3, + "body": { + "#": 1824 + }, + "isInternal": false + }, + { + "x": 125, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1838 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1840 + }, + "max": { + "#": 1841 + } + }, + { + "x": 100, + "y": 340 + }, + { + "x": 150, + "y": 350 + }, + { + "x": 100, + "y": 320 + }, + [ + { + "#": 1844 + }, + { + "#": 1845 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 78, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1847 + }, + "angle": 0, + "vertices": { + "#": 1848 + }, + "position": { + "#": 1853 + }, + "force": { + "#": 1854 + }, + "torque": 0, + "positionImpulse": { + "#": 1855 + }, + "constraintImpulse": { + "#": 1856 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1857 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1858 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1859 + }, + "bounds": { + "#": 1861 + }, + "positionPrev": { + "#": 1864 + }, + "anglePrev": 0, + "axes": { + "#": 1865 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1822 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1846 + } + ], + [ + { + "#": 1849 + }, + { + "#": 1850 + }, + { + "#": 1851 + }, + { + "#": 1852 + } + ], + { + "x": 120, + "y": 320, + "index": 0, + "body": { + "#": 1846 + }, + "isInternal": false + }, + { + "x": 130, + "y": 320, + "index": 1, + "body": { + "#": 1846 + }, + "isInternal": false + }, + { + "x": 130, + "y": 370, + "index": 2, + "body": { + "#": 1846 + }, + "isInternal": false + }, + { + "x": 120, + "y": 370, + "index": 3, + "body": { + "#": 1846 + }, + "isInternal": false + }, + { + "x": 125, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1860 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1862 + }, + "max": { + "#": 1863 + } + }, + { + "x": 120, + "y": 320 + }, + { + "x": 130, + "y": 370 + }, + { + "x": 100, + "y": 320 + }, + [ + { + "#": 1866 + }, + { + "#": 1867 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1869 + }, + { + "#": 1870 + }, + { + "#": 1871 + }, + { + "#": 1872 + }, + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + } + ], + { + "x": 150, + "y": 350, + "index": 0, + "body": { + "#": 1822 + }, + "isInternal": false + }, + { + "x": 130, + "y": 370, + "index": 1, + "body": { + "#": 1822 + }, + "isInternal": false + }, + { + "x": 120, + "y": 370, + "index": 2, + "body": { + "#": 1822 + }, + "isInternal": false + }, + { + "x": 100, + "y": 350, + "index": 3, + "body": { + "#": 1822 + }, + "isInternal": false + }, + { + "x": 100, + "y": 340, + "index": 4, + "body": { + "#": 1822 + }, + "isInternal": false + }, + { + "x": 120, + "y": 320, + "index": 5, + "body": { + "#": 1822 + }, + "isInternal": false + }, + { + "x": 130, + "y": 320, + "index": 6, + "body": { + "#": 1822 + }, + "isInternal": false + }, + { + "x": 150, + "y": 340, + "index": 7, + "body": { + "#": 1822 + }, + "isInternal": false + }, + { + "x": 125, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1884 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1886 + }, + "max": { + "#": 1887 + } + }, + { + "x": 100, + "y": 320 + }, + { + "x": 150, + "y": 370 + }, + { + "x": 125, + "y": 345 + }, + [ + { + "#": 1890 + }, + { + "#": 1891 + }, + { + "#": 1892 + }, + { + "#": 1893 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 82, + "type": "body", + "label": "Body", + "parts": { + "#": 1895 + }, + "angle": 0, + "vertices": { + "#": 1940 + }, + "position": { + "#": 1949 + }, + "force": { + "#": 1950 + }, + "torque": 0, + "positionImpulse": { + "#": 1951 + }, + "constraintImpulse": { + "#": 1952 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1953 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1954 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1955 + }, + "bounds": { + "#": 1957 + }, + "positionPrev": { + "#": 1960 + }, + "anglePrev": 0, + "axes": { + "#": 1961 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1894 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1894 + }, + { + "#": 1896 + }, + { + "#": 1918 + } + ], + { + "id": 80, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1897 + }, + "angle": 0, + "vertices": { + "#": 1898 + }, + "position": { + "#": 1903 + }, + "force": { + "#": 1904 + }, + "torque": 0, + "positionImpulse": { + "#": 1905 + }, + "constraintImpulse": { + "#": 1906 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1907 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1908 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1909 + }, + "bounds": { + "#": 1911 + }, + "positionPrev": { + "#": 1914 + }, + "anglePrev": 0, + "axes": { + "#": 1915 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1894 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1896 + } + ], + [ + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + }, + { + "#": 1902 + } + ], + { + "x": 150, + "y": 340, + "index": 0, + "body": { + "#": 1896 + }, + "isInternal": false + }, + { + "x": 200, + "y": 340, + "index": 1, + "body": { + "#": 1896 + }, + "isInternal": false + }, + { + "x": 200, + "y": 350, + "index": 2, + "body": { + "#": 1896 + }, + "isInternal": false + }, + { + "x": 150, + "y": 350, + "index": 3, + "body": { + "#": 1896 + }, + "isInternal": false + }, + { + "x": 175, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1910 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1912 + }, + "max": { + "#": 1913 + } + }, + { + "x": 150, + "y": 340 + }, + { + "x": 200, + "y": 350 + }, + { + "x": 150, + "y": 320 + }, + [ + { + "#": 1916 + }, + { + "#": 1917 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 81, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1919 + }, + "angle": 0, + "vertices": { + "#": 1920 + }, + "position": { + "#": 1925 + }, + "force": { + "#": 1926 + }, + "torque": 0, + "positionImpulse": { + "#": 1927 + }, + "constraintImpulse": { + "#": 1928 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1929 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1930 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1931 + }, + "bounds": { + "#": 1933 + }, + "positionPrev": { + "#": 1936 + }, + "anglePrev": 0, + "axes": { + "#": 1937 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1894 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1918 + } + ], + [ + { + "#": 1921 + }, + { + "#": 1922 + }, + { + "#": 1923 + }, + { + "#": 1924 + } + ], + { + "x": 170, + "y": 320, + "index": 0, + "body": { + "#": 1918 + }, + "isInternal": false + }, + { + "x": 180, + "y": 320, + "index": 1, + "body": { + "#": 1918 + }, + "isInternal": false + }, + { + "x": 180, + "y": 370, + "index": 2, + "body": { + "#": 1918 + }, + "isInternal": false + }, + { + "x": 170, + "y": 370, + "index": 3, + "body": { + "#": 1918 + }, + "isInternal": false + }, + { + "x": 175, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1932 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1934 + }, + "max": { + "#": 1935 + } + }, + { + "x": 170, + "y": 320 + }, + { + "x": 180, + "y": 370 + }, + { + "x": 150, + "y": 320 + }, + [ + { + "#": 1938 + }, + { + "#": 1939 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + }, + { + "#": 1944 + }, + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + }, + { + "#": 1948 + } + ], + { + "x": 200, + "y": 350, + "index": 0, + "body": { + "#": 1894 + }, + "isInternal": false + }, + { + "x": 180, + "y": 370, + "index": 1, + "body": { + "#": 1894 + }, + "isInternal": false + }, + { + "x": 170, + "y": 370, + "index": 2, + "body": { + "#": 1894 + }, + "isInternal": false + }, + { + "x": 150, + "y": 350, + "index": 3, + "body": { + "#": 1894 + }, + "isInternal": false + }, + { + "x": 150, + "y": 340, + "index": 4, + "body": { + "#": 1894 + }, + "isInternal": false + }, + { + "x": 170, + "y": 320, + "index": 5, + "body": { + "#": 1894 + }, + "isInternal": false + }, + { + "x": 180, + "y": 320, + "index": 6, + "body": { + "#": 1894 + }, + "isInternal": false + }, + { + "x": 200, + "y": 340, + "index": 7, + "body": { + "#": 1894 + }, + "isInternal": false + }, + { + "x": 175, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1956 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1958 + }, + "max": { + "#": 1959 + } + }, + { + "x": 150, + "y": 320 + }, + { + "x": 200, + "y": 370 + }, + { + "x": 175, + "y": 345 + }, + [ + { + "#": 1962 + }, + { + "#": 1963 + }, + { + "#": 1964 + }, + { + "#": 1965 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 85, + "type": "body", + "label": "Body", + "parts": { + "#": 1967 + }, + "angle": 0, + "vertices": { + "#": 2012 + }, + "position": { + "#": 2021 + }, + "force": { + "#": 2022 + }, + "torque": 0, + "positionImpulse": { + "#": 2023 + }, + "constraintImpulse": { + "#": 2024 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2025 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2026 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2027 + }, + "bounds": { + "#": 2029 + }, + "positionPrev": { + "#": 2032 + }, + "anglePrev": 0, + "axes": { + "#": 2033 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1966 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1966 + }, + { + "#": 1968 + }, + { + "#": 1990 + } + ], + { + "id": 83, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1969 + }, + "angle": 0, + "vertices": { + "#": 1970 + }, + "position": { + "#": 1975 + }, + "force": { + "#": 1976 + }, + "torque": 0, + "positionImpulse": { + "#": 1977 + }, + "constraintImpulse": { + "#": 1978 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1979 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1980 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1981 + }, + "bounds": { + "#": 1983 + }, + "positionPrev": { + "#": 1986 + }, + "anglePrev": 0, + "axes": { + "#": 1987 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1966 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1968 + } + ], + [ + { + "#": 1971 + }, + { + "#": 1972 + }, + { + "#": 1973 + }, + { + "#": 1974 + } + ], + { + "x": 200, + "y": 340, + "index": 0, + "body": { + "#": 1968 + }, + "isInternal": false + }, + { + "x": 250, + "y": 340, + "index": 1, + "body": { + "#": 1968 + }, + "isInternal": false + }, + { + "x": 250, + "y": 350, + "index": 2, + "body": { + "#": 1968 + }, + "isInternal": false + }, + { + "x": 200, + "y": 350, + "index": 3, + "body": { + "#": 1968 + }, + "isInternal": false + }, + { + "x": 225, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1982 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1984 + }, + "max": { + "#": 1985 + } + }, + { + "x": 200, + "y": 340 + }, + { + "x": 250, + "y": 350 + }, + { + "x": 200, + "y": 320 + }, + [ + { + "#": 1988 + }, + { + "#": 1989 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 84, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1991 + }, + "angle": 0, + "vertices": { + "#": 1992 + }, + "position": { + "#": 1997 + }, + "force": { + "#": 1998 + }, + "torque": 0, + "positionImpulse": { + "#": 1999 + }, + "constraintImpulse": { + "#": 2000 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2001 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2002 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2003 + }, + "bounds": { + "#": 2005 + }, + "positionPrev": { + "#": 2008 + }, + "anglePrev": 0, + "axes": { + "#": 2009 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1966 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1990 + } + ], + [ + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + }, + { + "#": 1996 + } + ], + { + "x": 220, + "y": 320, + "index": 0, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 230, + "y": 320, + "index": 1, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 230, + "y": 370, + "index": 2, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 220, + "y": 370, + "index": 3, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 225, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2004 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2006 + }, + "max": { + "#": 2007 + } + }, + { + "x": 220, + "y": 320 + }, + { + "x": 230, + "y": 370 + }, + { + "x": 200, + "y": 320 + }, + [ + { + "#": 2010 + }, + { + "#": 2011 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2013 + }, + { + "#": 2014 + }, + { + "#": 2015 + }, + { + "#": 2016 + }, + { + "#": 2017 + }, + { + "#": 2018 + }, + { + "#": 2019 + }, + { + "#": 2020 + } + ], + { + "x": 250, + "y": 350, + "index": 0, + "body": { + "#": 1966 + }, + "isInternal": false + }, + { + "x": 230, + "y": 370, + "index": 1, + "body": { + "#": 1966 + }, + "isInternal": false + }, + { + "x": 220, + "y": 370, + "index": 2, + "body": { + "#": 1966 + }, + "isInternal": false + }, + { + "x": 200, + "y": 350, + "index": 3, + "body": { + "#": 1966 + }, + "isInternal": false + }, + { + "x": 200, + "y": 340, + "index": 4, + "body": { + "#": 1966 + }, + "isInternal": false + }, + { + "x": 220, + "y": 320, + "index": 5, + "body": { + "#": 1966 + }, + "isInternal": false + }, + { + "x": 230, + "y": 320, + "index": 6, + "body": { + "#": 1966 + }, + "isInternal": false + }, + { + "x": 250, + "y": 340, + "index": 7, + "body": { + "#": 1966 + }, + "isInternal": false + }, + { + "x": 225, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2028 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2030 + }, + "max": { + "#": 2031 + } + }, + { + "x": 200, + "y": 320 + }, + { + "x": 250, + "y": 370 + }, + { + "x": 225, + "y": 345 + }, + [ + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 88, + "type": "body", + "label": "Body", + "parts": { + "#": 2039 + }, + "angle": 0, + "vertices": { + "#": 2084 + }, + "position": { + "#": 2093 + }, + "force": { + "#": 2094 + }, + "torque": 0, + "positionImpulse": { + "#": 2095 + }, + "constraintImpulse": { + "#": 2096 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2097 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2098 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2099 + }, + "bounds": { + "#": 2101 + }, + "positionPrev": { + "#": 2104 + }, + "anglePrev": 0, + "axes": { + "#": 2105 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2038 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2038 + }, + { + "#": 2040 + }, + { + "#": 2062 + } + ], + { + "id": 86, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2041 + }, + "angle": 0, + "vertices": { + "#": 2042 + }, + "position": { + "#": 2047 + }, + "force": { + "#": 2048 + }, + "torque": 0, + "positionImpulse": { + "#": 2049 + }, + "constraintImpulse": { + "#": 2050 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2051 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2052 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2053 + }, + "bounds": { + "#": 2055 + }, + "positionPrev": { + "#": 2058 + }, + "anglePrev": 0, + "axes": { + "#": 2059 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2038 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2040 + } + ], + [ + { + "#": 2043 + }, + { + "#": 2044 + }, + { + "#": 2045 + }, + { + "#": 2046 + } + ], + { + "x": 250, + "y": 340, + "index": 0, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 300, + "y": 340, + "index": 1, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 300, + "y": 350, + "index": 2, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 250, + "y": 350, + "index": 3, + "body": { + "#": 2040 + }, + "isInternal": false + }, + { + "x": 275, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2054 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2056 + }, + "max": { + "#": 2057 + } + }, + { + "x": 250, + "y": 340 + }, + { + "x": 300, + "y": 350 + }, + { + "x": 250, + "y": 320 + }, + [ + { + "#": 2060 + }, + { + "#": 2061 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 87, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2063 + }, + "angle": 0, + "vertices": { + "#": 2064 + }, + "position": { + "#": 2069 + }, + "force": { + "#": 2070 + }, + "torque": 0, + "positionImpulse": { + "#": 2071 + }, + "constraintImpulse": { + "#": 2072 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2073 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2074 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2075 + }, + "bounds": { + "#": 2077 + }, + "positionPrev": { + "#": 2080 + }, + "anglePrev": 0, + "axes": { + "#": 2081 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2038 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2062 + } + ], + [ + { + "#": 2065 + }, + { + "#": 2066 + }, + { + "#": 2067 + }, + { + "#": 2068 + } + ], + { + "x": 270, + "y": 320, + "index": 0, + "body": { + "#": 2062 + }, + "isInternal": false + }, + { + "x": 280, + "y": 320, + "index": 1, + "body": { + "#": 2062 + }, + "isInternal": false + }, + { + "x": 280, + "y": 370, + "index": 2, + "body": { + "#": 2062 + }, + "isInternal": false + }, + { + "x": 270, + "y": 370, + "index": 3, + "body": { + "#": 2062 + }, + "isInternal": false + }, + { + "x": 275, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2076 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2078 + }, + "max": { + "#": 2079 + } + }, + { + "x": 270, + "y": 320 + }, + { + "x": 280, + "y": 370 + }, + { + "x": 250, + "y": 320 + }, + [ + { + "#": 2082 + }, + { + "#": 2083 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2085 + }, + { + "#": 2086 + }, + { + "#": 2087 + }, + { + "#": 2088 + }, + { + "#": 2089 + }, + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + } + ], + { + "x": 300, + "y": 350, + "index": 0, + "body": { + "#": 2038 + }, + "isInternal": false + }, + { + "x": 280, + "y": 370, + "index": 1, + "body": { + "#": 2038 + }, + "isInternal": false + }, + { + "x": 270, + "y": 370, + "index": 2, + "body": { + "#": 2038 + }, + "isInternal": false + }, + { + "x": 250, + "y": 350, + "index": 3, + "body": { + "#": 2038 + }, + "isInternal": false + }, + { + "x": 250, + "y": 340, + "index": 4, + "body": { + "#": 2038 + }, + "isInternal": false + }, + { + "x": 270, + "y": 320, + "index": 5, + "body": { + "#": 2038 + }, + "isInternal": false + }, + { + "x": 280, + "y": 320, + "index": 6, + "body": { + "#": 2038 + }, + "isInternal": false + }, + { + "x": 300, + "y": 340, + "index": 7, + "body": { + "#": 2038 + }, + "isInternal": false + }, + { + "x": 275, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2100 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2102 + }, + "max": { + "#": 2103 + } + }, + { + "x": 250, + "y": 320 + }, + { + "x": 300, + "y": 370 + }, + { + "x": 275, + "y": 345 + }, + [ + { + "#": 2106 + }, + { + "#": 2107 + }, + { + "#": 2108 + }, + { + "#": 2109 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 91, + "type": "body", + "label": "Body", + "parts": { + "#": 2111 + }, + "angle": 0, + "vertices": { + "#": 2156 + }, + "position": { + "#": 2165 + }, + "force": { + "#": 2166 + }, + "torque": 0, + "positionImpulse": { + "#": 2167 + }, + "constraintImpulse": { + "#": 2168 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2169 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2170 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2171 + }, + "bounds": { + "#": 2173 + }, + "positionPrev": { + "#": 2176 + }, + "anglePrev": 0, + "axes": { + "#": 2177 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2110 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2110 + }, + { + "#": 2112 + }, + { + "#": 2134 + } + ], + { + "id": 89, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2113 + }, + "angle": 0, + "vertices": { + "#": 2114 + }, + "position": { + "#": 2119 + }, + "force": { + "#": 2120 + }, + "torque": 0, + "positionImpulse": { + "#": 2121 + }, + "constraintImpulse": { + "#": 2122 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2123 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2124 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2125 + }, + "bounds": { + "#": 2127 + }, + "positionPrev": { + "#": 2130 + }, + "anglePrev": 0, + "axes": { + "#": 2131 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2110 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2112 + } + ], + [ + { + "#": 2115 + }, + { + "#": 2116 + }, + { + "#": 2117 + }, + { + "#": 2118 + } + ], + { + "x": 300, + "y": 340, + "index": 0, + "body": { + "#": 2112 + }, + "isInternal": false + }, + { + "x": 350, + "y": 340, + "index": 1, + "body": { + "#": 2112 + }, + "isInternal": false + }, + { + "x": 350, + "y": 350, + "index": 2, + "body": { + "#": 2112 + }, + "isInternal": false + }, + { + "x": 300, + "y": 350, + "index": 3, + "body": { + "#": 2112 + }, + "isInternal": false + }, + { + "x": 325, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2126 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2128 + }, + "max": { + "#": 2129 + } + }, + { + "x": 300, + "y": 340 + }, + { + "x": 350, + "y": 350 + }, + { + "x": 300, + "y": 320 + }, + [ + { + "#": 2132 + }, + { + "#": 2133 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 90, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2135 + }, + "angle": 0, + "vertices": { + "#": 2136 + }, + "position": { + "#": 2141 + }, + "force": { + "#": 2142 + }, + "torque": 0, + "positionImpulse": { + "#": 2143 + }, + "constraintImpulse": { + "#": 2144 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2145 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2146 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2147 + }, + "bounds": { + "#": 2149 + }, + "positionPrev": { + "#": 2152 + }, + "anglePrev": 0, + "axes": { + "#": 2153 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2110 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2134 + } + ], + [ + { + "#": 2137 + }, + { + "#": 2138 + }, + { + "#": 2139 + }, + { + "#": 2140 + } + ], + { + "x": 320, + "y": 320, + "index": 0, + "body": { + "#": 2134 + }, + "isInternal": false + }, + { + "x": 330, + "y": 320, + "index": 1, + "body": { + "#": 2134 + }, + "isInternal": false + }, + { + "x": 330, + "y": 370, + "index": 2, + "body": { + "#": 2134 + }, + "isInternal": false + }, + { + "x": 320, + "y": 370, + "index": 3, + "body": { + "#": 2134 + }, + "isInternal": false + }, + { + "x": 325, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2148 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2150 + }, + "max": { + "#": 2151 + } + }, + { + "x": 320, + "y": 320 + }, + { + "x": 330, + "y": 370 + }, + { + "x": 300, + "y": 320 + }, + [ + { + "#": 2154 + }, + { + "#": 2155 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2157 + }, + { + "#": 2158 + }, + { + "#": 2159 + }, + { + "#": 2160 + }, + { + "#": 2161 + }, + { + "#": 2162 + }, + { + "#": 2163 + }, + { + "#": 2164 + } + ], + { + "x": 350, + "y": 350, + "index": 0, + "body": { + "#": 2110 + }, + "isInternal": false + }, + { + "x": 330, + "y": 370, + "index": 1, + "body": { + "#": 2110 + }, + "isInternal": false + }, + { + "x": 320, + "y": 370, + "index": 2, + "body": { + "#": 2110 + }, + "isInternal": false + }, + { + "x": 300, + "y": 350, + "index": 3, + "body": { + "#": 2110 + }, + "isInternal": false + }, + { + "x": 300, + "y": 340, + "index": 4, + "body": { + "#": 2110 + }, + "isInternal": false + }, + { + "x": 320, + "y": 320, + "index": 5, + "body": { + "#": 2110 + }, + "isInternal": false + }, + { + "x": 330, + "y": 320, + "index": 6, + "body": { + "#": 2110 + }, + "isInternal": false + }, + { + "x": 350, + "y": 340, + "index": 7, + "body": { + "#": 2110 + }, + "isInternal": false + }, + { + "x": 325, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2172 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2174 + }, + "max": { + "#": 2175 + } + }, + { + "x": 300, + "y": 320 + }, + { + "x": 350, + "y": 370 + }, + { + "x": 325, + "y": 345 + }, + [ + { + "#": 2178 + }, + { + "#": 2179 + }, + { + "#": 2180 + }, + { + "#": 2181 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 94, + "type": "body", + "label": "Body", + "parts": { + "#": 2183 + }, + "angle": 0, + "vertices": { + "#": 2228 + }, + "position": { + "#": 2237 + }, + "force": { + "#": 2238 + }, + "torque": 0, + "positionImpulse": { + "#": 2239 + }, + "constraintImpulse": { + "#": 2240 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2241 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2242 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2243 + }, + "bounds": { + "#": 2245 + }, + "positionPrev": { + "#": 2248 + }, + "anglePrev": 0, + "axes": { + "#": 2249 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2182 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2182 + }, + { + "#": 2184 + }, + { + "#": 2206 + } + ], + { + "id": 92, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2185 + }, + "angle": 0, + "vertices": { + "#": 2186 + }, + "position": { + "#": 2191 + }, + "force": { + "#": 2192 + }, + "torque": 0, + "positionImpulse": { + "#": 2193 + }, + "constraintImpulse": { + "#": 2194 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2195 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2196 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2197 + }, + "bounds": { + "#": 2199 + }, + "positionPrev": { + "#": 2202 + }, + "anglePrev": 0, + "axes": { + "#": 2203 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2182 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2184 + } + ], + [ + { + "#": 2187 + }, + { + "#": 2188 + }, + { + "#": 2189 + }, + { + "#": 2190 + } + ], + { + "x": 350, + "y": 340, + "index": 0, + "body": { + "#": 2184 + }, + "isInternal": false + }, + { + "x": 400, + "y": 340, + "index": 1, + "body": { + "#": 2184 + }, + "isInternal": false + }, + { + "x": 400, + "y": 350, + "index": 2, + "body": { + "#": 2184 + }, + "isInternal": false + }, + { + "x": 350, + "y": 350, + "index": 3, + "body": { + "#": 2184 + }, + "isInternal": false + }, + { + "x": 375, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2198 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2200 + }, + "max": { + "#": 2201 + } + }, + { + "x": 350, + "y": 340 + }, + { + "x": 400, + "y": 350 + }, + { + "x": 350, + "y": 320 + }, + [ + { + "#": 2204 + }, + { + "#": 2205 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 93, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2207 + }, + "angle": 0, + "vertices": { + "#": 2208 + }, + "position": { + "#": 2213 + }, + "force": { + "#": 2214 + }, + "torque": 0, + "positionImpulse": { + "#": 2215 + }, + "constraintImpulse": { + "#": 2216 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2217 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2218 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2219 + }, + "bounds": { + "#": 2221 + }, + "positionPrev": { + "#": 2224 + }, + "anglePrev": 0, + "axes": { + "#": 2225 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2182 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2206 + } + ], + [ + { + "#": 2209 + }, + { + "#": 2210 + }, + { + "#": 2211 + }, + { + "#": 2212 + } + ], + { + "x": 370, + "y": 320, + "index": 0, + "body": { + "#": 2206 + }, + "isInternal": false + }, + { + "x": 380, + "y": 320, + "index": 1, + "body": { + "#": 2206 + }, + "isInternal": false + }, + { + "x": 380, + "y": 370, + "index": 2, + "body": { + "#": 2206 + }, + "isInternal": false + }, + { + "x": 370, + "y": 370, + "index": 3, + "body": { + "#": 2206 + }, + "isInternal": false + }, + { + "x": 375, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2220 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2222 + }, + "max": { + "#": 2223 + } + }, + { + "x": 370, + "y": 320 + }, + { + "x": 380, + "y": 370 + }, + { + "x": 350, + "y": 320 + }, + [ + { + "#": 2226 + }, + { + "#": 2227 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2229 + }, + { + "#": 2230 + }, + { + "#": 2231 + }, + { + "#": 2232 + }, + { + "#": 2233 + }, + { + "#": 2234 + }, + { + "#": 2235 + }, + { + "#": 2236 + } + ], + { + "x": 400, + "y": 350, + "index": 0, + "body": { + "#": 2182 + }, + "isInternal": false + }, + { + "x": 380, + "y": 370, + "index": 1, + "body": { + "#": 2182 + }, + "isInternal": false + }, + { + "x": 370, + "y": 370, + "index": 2, + "body": { + "#": 2182 + }, + "isInternal": false + }, + { + "x": 350, + "y": 350, + "index": 3, + "body": { + "#": 2182 + }, + "isInternal": false + }, + { + "x": 350, + "y": 340, + "index": 4, + "body": { + "#": 2182 + }, + "isInternal": false + }, + { + "x": 370, + "y": 320, + "index": 5, + "body": { + "#": 2182 + }, + "isInternal": false + }, + { + "x": 380, + "y": 320, + "index": 6, + "body": { + "#": 2182 + }, + "isInternal": false + }, + { + "x": 400, + "y": 340, + "index": 7, + "body": { + "#": 2182 + }, + "isInternal": false + }, + { + "x": 375, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2244 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2246 + }, + "max": { + "#": 2247 + } + }, + { + "x": 350, + "y": 320 + }, + { + "x": 400, + "y": 370 + }, + { + "x": 375, + "y": 345 + }, + [ + { + "#": 2250 + }, + { + "#": 2251 + }, + { + "#": 2252 + }, + { + "#": 2253 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 97, + "type": "body", + "label": "Body", + "parts": { + "#": 2255 + }, + "angle": 0, + "vertices": { + "#": 2300 + }, + "position": { + "#": 2309 + }, + "force": { + "#": 2310 + }, + "torque": 0, + "positionImpulse": { + "#": 2311 + }, + "constraintImpulse": { + "#": 2312 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2313 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2314 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2315 + }, + "bounds": { + "#": 2317 + }, + "positionPrev": { + "#": 2320 + }, + "anglePrev": 0, + "axes": { + "#": 2321 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2254 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2254 + }, + { + "#": 2256 + }, + { + "#": 2278 + } + ], + { + "id": 95, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2257 + }, + "angle": 0, + "vertices": { + "#": 2258 + }, + "position": { + "#": 2263 + }, + "force": { + "#": 2264 + }, + "torque": 0, + "positionImpulse": { + "#": 2265 + }, + "constraintImpulse": { + "#": 2266 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2267 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2268 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2269 + }, + "bounds": { + "#": 2271 + }, + "positionPrev": { + "#": 2274 + }, + "anglePrev": 0, + "axes": { + "#": 2275 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2254 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2256 + } + ], + [ + { + "#": 2259 + }, + { + "#": 2260 + }, + { + "#": 2261 + }, + { + "#": 2262 + } + ], + { + "x": 400, + "y": 340, + "index": 0, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 450, + "y": 340, + "index": 1, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 450, + "y": 350, + "index": 2, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 400, + "y": 350, + "index": 3, + "body": { + "#": 2256 + }, + "isInternal": false + }, + { + "x": 425, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2270 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2272 + }, + "max": { + "#": 2273 + } + }, + { + "x": 400, + "y": 340 + }, + { + "x": 450, + "y": 350 + }, + { + "x": 400, + "y": 320 + }, + [ + { + "#": 2276 + }, + { + "#": 2277 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 96, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2279 + }, + "angle": 0, + "vertices": { + "#": 2280 + }, + "position": { + "#": 2285 + }, + "force": { + "#": 2286 + }, + "torque": 0, + "positionImpulse": { + "#": 2287 + }, + "constraintImpulse": { + "#": 2288 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2289 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2290 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2291 + }, + "bounds": { + "#": 2293 + }, + "positionPrev": { + "#": 2296 + }, + "anglePrev": 0, + "axes": { + "#": 2297 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2254 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2278 + } + ], + [ + { + "#": 2281 + }, + { + "#": 2282 + }, + { + "#": 2283 + }, + { + "#": 2284 + } + ], + { + "x": 420, + "y": 320, + "index": 0, + "body": { + "#": 2278 + }, + "isInternal": false + }, + { + "x": 430, + "y": 320, + "index": 1, + "body": { + "#": 2278 + }, + "isInternal": false + }, + { + "x": 430, + "y": 370, + "index": 2, + "body": { + "#": 2278 + }, + "isInternal": false + }, + { + "x": 420, + "y": 370, + "index": 3, + "body": { + "#": 2278 + }, + "isInternal": false + }, + { + "x": 425, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2292 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2294 + }, + "max": { + "#": 2295 + } + }, + { + "x": 420, + "y": 320 + }, + { + "x": 430, + "y": 370 + }, + { + "x": 400, + "y": 320 + }, + [ + { + "#": 2298 + }, + { + "#": 2299 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2301 + }, + { + "#": 2302 + }, + { + "#": 2303 + }, + { + "#": 2304 + }, + { + "#": 2305 + }, + { + "#": 2306 + }, + { + "#": 2307 + }, + { + "#": 2308 + } + ], + { + "x": 450, + "y": 350, + "index": 0, + "body": { + "#": 2254 + }, + "isInternal": false + }, + { + "x": 430, + "y": 370, + "index": 1, + "body": { + "#": 2254 + }, + "isInternal": false + }, + { + "x": 420, + "y": 370, + "index": 2, + "body": { + "#": 2254 + }, + "isInternal": false + }, + { + "x": 400, + "y": 350, + "index": 3, + "body": { + "#": 2254 + }, + "isInternal": false + }, + { + "x": 400, + "y": 340, + "index": 4, + "body": { + "#": 2254 + }, + "isInternal": false + }, + { + "x": 420, + "y": 320, + "index": 5, + "body": { + "#": 2254 + }, + "isInternal": false + }, + { + "x": 430, + "y": 320, + "index": 6, + "body": { + "#": 2254 + }, + "isInternal": false + }, + { + "x": 450, + "y": 340, + "index": 7, + "body": { + "#": 2254 + }, + "isInternal": false + }, + { + "x": 425, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2316 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2318 + }, + "max": { + "#": 2319 + } + }, + { + "x": 400, + "y": 320 + }, + { + "x": 450, + "y": 370 + }, + { + "x": 425, + "y": 345 + }, + [ + { + "#": 2322 + }, + { + "#": 2323 + }, + { + "#": 2324 + }, + { + "#": 2325 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 100, + "type": "body", + "label": "Body", + "parts": { + "#": 2327 + }, + "angle": 0, + "vertices": { + "#": 2372 + }, + "position": { + "#": 2381 + }, + "force": { + "#": 2382 + }, + "torque": 0, + "positionImpulse": { + "#": 2383 + }, + "constraintImpulse": { + "#": 2384 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2385 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2386 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2387 + }, + "bounds": { + "#": 2389 + }, + "positionPrev": { + "#": 2392 + }, + "anglePrev": 0, + "axes": { + "#": 2393 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2326 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2326 + }, + { + "#": 2328 + }, + { + "#": 2350 + } + ], + { + "id": 98, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2329 + }, + "angle": 0, + "vertices": { + "#": 2330 + }, + "position": { + "#": 2335 + }, + "force": { + "#": 2336 + }, + "torque": 0, + "positionImpulse": { + "#": 2337 + }, + "constraintImpulse": { + "#": 2338 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2339 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2340 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2341 + }, + "bounds": { + "#": 2343 + }, + "positionPrev": { + "#": 2346 + }, + "anglePrev": 0, + "axes": { + "#": 2347 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2326 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2328 + } + ], + [ + { + "#": 2331 + }, + { + "#": 2332 + }, + { + "#": 2333 + }, + { + "#": 2334 + } + ], + { + "x": 450, + "y": 340, + "index": 0, + "body": { + "#": 2328 + }, + "isInternal": false + }, + { + "x": 500, + "y": 340, + "index": 1, + "body": { + "#": 2328 + }, + "isInternal": false + }, + { + "x": 500, + "y": 350, + "index": 2, + "body": { + "#": 2328 + }, + "isInternal": false + }, + { + "x": 450, + "y": 350, + "index": 3, + "body": { + "#": 2328 + }, + "isInternal": false + }, + { + "x": 475, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2342 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2344 + }, + "max": { + "#": 2345 + } + }, + { + "x": 450, + "y": 340 + }, + { + "x": 500, + "y": 350 + }, + { + "x": 450, + "y": 320 + }, + [ + { + "#": 2348 + }, + { + "#": 2349 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 99, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2351 + }, + "angle": 0, + "vertices": { + "#": 2352 + }, + "position": { + "#": 2357 + }, + "force": { + "#": 2358 + }, + "torque": 0, + "positionImpulse": { + "#": 2359 + }, + "constraintImpulse": { + "#": 2360 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2361 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2362 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2363 + }, + "bounds": { + "#": 2365 + }, + "positionPrev": { + "#": 2368 + }, + "anglePrev": 0, + "axes": { + "#": 2369 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2326 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2350 + } + ], + [ + { + "#": 2353 + }, + { + "#": 2354 + }, + { + "#": 2355 + }, + { + "#": 2356 + } + ], + { + "x": 470, + "y": 320, + "index": 0, + "body": { + "#": 2350 + }, + "isInternal": false + }, + { + "x": 480, + "y": 320, + "index": 1, + "body": { + "#": 2350 + }, + "isInternal": false + }, + { + "x": 480, + "y": 370, + "index": 2, + "body": { + "#": 2350 + }, + "isInternal": false + }, + { + "x": 470, + "y": 370, + "index": 3, + "body": { + "#": 2350 + }, + "isInternal": false + }, + { + "x": 475, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2364 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2366 + }, + "max": { + "#": 2367 + } + }, + { + "x": 470, + "y": 320 + }, + { + "x": 480, + "y": 370 + }, + { + "x": 450, + "y": 320 + }, + [ + { + "#": 2370 + }, + { + "#": 2371 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2373 + }, + { + "#": 2374 + }, + { + "#": 2375 + }, + { + "#": 2376 + }, + { + "#": 2377 + }, + { + "#": 2378 + }, + { + "#": 2379 + }, + { + "#": 2380 + } + ], + { + "x": 500, + "y": 350, + "index": 0, + "body": { + "#": 2326 + }, + "isInternal": false + }, + { + "x": 480, + "y": 370, + "index": 1, + "body": { + "#": 2326 + }, + "isInternal": false + }, + { + "x": 470, + "y": 370, + "index": 2, + "body": { + "#": 2326 + }, + "isInternal": false + }, + { + "x": 450, + "y": 350, + "index": 3, + "body": { + "#": 2326 + }, + "isInternal": false + }, + { + "x": 450, + "y": 340, + "index": 4, + "body": { + "#": 2326 + }, + "isInternal": false + }, + { + "x": 470, + "y": 320, + "index": 5, + "body": { + "#": 2326 + }, + "isInternal": false + }, + { + "x": 480, + "y": 320, + "index": 6, + "body": { + "#": 2326 + }, + "isInternal": false + }, + { + "x": 500, + "y": 340, + "index": 7, + "body": { + "#": 2326 + }, + "isInternal": false + }, + { + "x": 475, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2388 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2390 + }, + "max": { + "#": 2391 + } + }, + { + "x": 450, + "y": 320 + }, + { + "x": 500, + "y": 370 + }, + { + "x": 475, + "y": 345 + }, + [ + { + "#": 2394 + }, + { + "#": 2395 + }, + { + "#": 2396 + }, + { + "#": 2397 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 103, + "type": "body", + "label": "Body", + "parts": { + "#": 2399 + }, + "angle": 0, + "vertices": { + "#": 2444 + }, + "position": { + "#": 2453 + }, + "force": { + "#": 2454 + }, + "torque": 0, + "positionImpulse": { + "#": 2455 + }, + "constraintImpulse": { + "#": 2456 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2457 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2458 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2459 + }, + "bounds": { + "#": 2461 + }, + "positionPrev": { + "#": 2464 + }, + "anglePrev": 0, + "axes": { + "#": 2465 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2398 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2398 + }, + { + "#": 2400 + }, + { + "#": 2422 + } + ], + { + "id": 101, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2401 + }, + "angle": 0, + "vertices": { + "#": 2402 + }, + "position": { + "#": 2407 + }, + "force": { + "#": 2408 + }, + "torque": 0, + "positionImpulse": { + "#": 2409 + }, + "constraintImpulse": { + "#": 2410 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2411 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2412 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2413 + }, + "bounds": { + "#": 2415 + }, + "positionPrev": { + "#": 2418 + }, + "anglePrev": 0, + "axes": { + "#": 2419 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2398 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2400 + } + ], + [ + { + "#": 2403 + }, + { + "#": 2404 + }, + { + "#": 2405 + }, + { + "#": 2406 + } + ], + { + "x": 500, + "y": 340, + "index": 0, + "body": { + "#": 2400 + }, + "isInternal": false + }, + { + "x": 550, + "y": 340, + "index": 1, + "body": { + "#": 2400 + }, + "isInternal": false + }, + { + "x": 550, + "y": 350, + "index": 2, + "body": { + "#": 2400 + }, + "isInternal": false + }, + { + "x": 500, + "y": 350, + "index": 3, + "body": { + "#": 2400 + }, + "isInternal": false + }, + { + "x": 525, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2414 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2416 + }, + "max": { + "#": 2417 + } + }, + { + "x": 500, + "y": 340 + }, + { + "x": 550, + "y": 350 + }, + { + "x": 500, + "y": 320 + }, + [ + { + "#": 2420 + }, + { + "#": 2421 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 102, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2423 + }, + "angle": 0, + "vertices": { + "#": 2424 + }, + "position": { + "#": 2429 + }, + "force": { + "#": 2430 + }, + "torque": 0, + "positionImpulse": { + "#": 2431 + }, + "constraintImpulse": { + "#": 2432 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2433 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2434 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2435 + }, + "bounds": { + "#": 2437 + }, + "positionPrev": { + "#": 2440 + }, + "anglePrev": 0, + "axes": { + "#": 2441 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2398 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2422 + } + ], + [ + { + "#": 2425 + }, + { + "#": 2426 + }, + { + "#": 2427 + }, + { + "#": 2428 + } + ], + { + "x": 520, + "y": 320, + "index": 0, + "body": { + "#": 2422 + }, + "isInternal": false + }, + { + "x": 530, + "y": 320, + "index": 1, + "body": { + "#": 2422 + }, + "isInternal": false + }, + { + "x": 530, + "y": 370, + "index": 2, + "body": { + "#": 2422 + }, + "isInternal": false + }, + { + "x": 520, + "y": 370, + "index": 3, + "body": { + "#": 2422 + }, + "isInternal": false + }, + { + "x": 525, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2436 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2438 + }, + "max": { + "#": 2439 + } + }, + { + "x": 520, + "y": 320 + }, + { + "x": 530, + "y": 370 + }, + { + "x": 500, + "y": 320 + }, + [ + { + "#": 2442 + }, + { + "#": 2443 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2445 + }, + { + "#": 2446 + }, + { + "#": 2447 + }, + { + "#": 2448 + }, + { + "#": 2449 + }, + { + "#": 2450 + }, + { + "#": 2451 + }, + { + "#": 2452 + } + ], + { + "x": 550, + "y": 350, + "index": 0, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 530, + "y": 370, + "index": 1, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 520, + "y": 370, + "index": 2, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 500, + "y": 350, + "index": 3, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 500, + "y": 340, + "index": 4, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 520, + "y": 320, + "index": 5, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 530, + "y": 320, + "index": 6, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 550, + "y": 340, + "index": 7, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 525, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2460 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2462 + }, + "max": { + "#": 2463 + } + }, + { + "x": 500, + "y": 320 + }, + { + "x": 550, + "y": 370 + }, + { + "x": 525, + "y": 345 + }, + [ + { + "#": 2466 + }, + { + "#": 2467 + }, + { + "#": 2468 + }, + { + "#": 2469 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 106, + "type": "body", + "label": "Body", + "parts": { + "#": 2471 + }, + "angle": 0, + "vertices": { + "#": 2516 + }, + "position": { + "#": 2525 + }, + "force": { + "#": 2526 + }, + "torque": 0, + "positionImpulse": { + "#": 2527 + }, + "constraintImpulse": { + "#": 2528 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2529 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2530 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2531 + }, + "bounds": { + "#": 2533 + }, + "positionPrev": { + "#": 2536 + }, + "anglePrev": 0, + "axes": { + "#": 2537 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2470 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2470 + }, + { + "#": 2472 + }, + { + "#": 2494 + } + ], + { + "id": 104, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2473 + }, + "angle": 0, + "vertices": { + "#": 2474 + }, + "position": { + "#": 2479 + }, + "force": { + "#": 2480 + }, + "torque": 0, + "positionImpulse": { + "#": 2481 + }, + "constraintImpulse": { + "#": 2482 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2483 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2484 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2485 + }, + "bounds": { + "#": 2487 + }, + "positionPrev": { + "#": 2490 + }, + "anglePrev": 0, + "axes": { + "#": 2491 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2470 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2472 + } + ], + [ + { + "#": 2475 + }, + { + "#": 2476 + }, + { + "#": 2477 + }, + { + "#": 2478 + } + ], + { + "x": 550, + "y": 340, + "index": 0, + "body": { + "#": 2472 + }, + "isInternal": false + }, + { + "x": 600, + "y": 340, + "index": 1, + "body": { + "#": 2472 + }, + "isInternal": false + }, + { + "x": 600, + "y": 350, + "index": 2, + "body": { + "#": 2472 + }, + "isInternal": false + }, + { + "x": 550, + "y": 350, + "index": 3, + "body": { + "#": 2472 + }, + "isInternal": false + }, + { + "x": 575, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2486 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2488 + }, + "max": { + "#": 2489 + } + }, + { + "x": 550, + "y": 340 + }, + { + "x": 600, + "y": 350 + }, + { + "x": 550, + "y": 320 + }, + [ + { + "#": 2492 + }, + { + "#": 2493 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 105, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2495 + }, + "angle": 0, + "vertices": { + "#": 2496 + }, + "position": { + "#": 2501 + }, + "force": { + "#": 2502 + }, + "torque": 0, + "positionImpulse": { + "#": 2503 + }, + "constraintImpulse": { + "#": 2504 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2505 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2506 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2507 + }, + "bounds": { + "#": 2509 + }, + "positionPrev": { + "#": 2512 + }, + "anglePrev": 0, + "axes": { + "#": 2513 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2470 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2494 + } + ], + [ + { + "#": 2497 + }, + { + "#": 2498 + }, + { + "#": 2499 + }, + { + "#": 2500 + } + ], + { + "x": 570, + "y": 320, + "index": 0, + "body": { + "#": 2494 + }, + "isInternal": false + }, + { + "x": 580, + "y": 320, + "index": 1, + "body": { + "#": 2494 + }, + "isInternal": false + }, + { + "x": 580, + "y": 370, + "index": 2, + "body": { + "#": 2494 + }, + "isInternal": false + }, + { + "x": 570, + "y": 370, + "index": 3, + "body": { + "#": 2494 + }, + "isInternal": false + }, + { + "x": 575, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2508 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2510 + }, + "max": { + "#": 2511 + } + }, + { + "x": 570, + "y": 320 + }, + { + "x": 580, + "y": 370 + }, + { + "x": 550, + "y": 320 + }, + [ + { + "#": 2514 + }, + { + "#": 2515 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2517 + }, + { + "#": 2518 + }, + { + "#": 2519 + }, + { + "#": 2520 + }, + { + "#": 2521 + }, + { + "#": 2522 + }, + { + "#": 2523 + }, + { + "#": 2524 + } + ], + { + "x": 600, + "y": 350, + "index": 0, + "body": { + "#": 2470 + }, + "isInternal": false + }, + { + "x": 580, + "y": 370, + "index": 1, + "body": { + "#": 2470 + }, + "isInternal": false + }, + { + "x": 570, + "y": 370, + "index": 2, + "body": { + "#": 2470 + }, + "isInternal": false + }, + { + "x": 550, + "y": 350, + "index": 3, + "body": { + "#": 2470 + }, + "isInternal": false + }, + { + "x": 550, + "y": 340, + "index": 4, + "body": { + "#": 2470 + }, + "isInternal": false + }, + { + "x": 570, + "y": 320, + "index": 5, + "body": { + "#": 2470 + }, + "isInternal": false + }, + { + "x": 580, + "y": 320, + "index": 6, + "body": { + "#": 2470 + }, + "isInternal": false + }, + { + "x": 600, + "y": 340, + "index": 7, + "body": { + "#": 2470 + }, + "isInternal": false + }, + { + "x": 575, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2532 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2534 + }, + "max": { + "#": 2535 + } + }, + { + "x": 550, + "y": 320 + }, + { + "x": 600, + "y": 370 + }, + { + "x": 575, + "y": 345 + }, + [ + { + "#": 2538 + }, + { + "#": 2539 + }, + { + "#": 2540 + }, + { + "#": 2541 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 109, + "type": "body", + "label": "Body", + "parts": { + "#": 2543 + }, + "angle": 0, + "vertices": { + "#": 2588 + }, + "position": { + "#": 2597 + }, + "force": { + "#": 2598 + }, + "torque": 0, + "positionImpulse": { + "#": 2599 + }, + "constraintImpulse": { + "#": 2600 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2601 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2602 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2603 + }, + "bounds": { + "#": 2605 + }, + "positionPrev": { + "#": 2608 + }, + "anglePrev": 0, + "axes": { + "#": 2609 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2542 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2542 + }, + { + "#": 2544 + }, + { + "#": 2566 + } + ], + { + "id": 107, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2545 + }, + "angle": 0, + "vertices": { + "#": 2546 + }, + "position": { + "#": 2551 + }, + "force": { + "#": 2552 + }, + "torque": 0, + "positionImpulse": { + "#": 2553 + }, + "constraintImpulse": { + "#": 2554 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2555 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2556 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2557 + }, + "bounds": { + "#": 2559 + }, + "positionPrev": { + "#": 2562 + }, + "anglePrev": 0, + "axes": { + "#": 2563 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2542 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2544 + } + ], + [ + { + "#": 2547 + }, + { + "#": 2548 + }, + { + "#": 2549 + }, + { + "#": 2550 + } + ], + { + "x": 600, + "y": 340, + "index": 0, + "body": { + "#": 2544 + }, + "isInternal": false + }, + { + "x": 650, + "y": 340, + "index": 1, + "body": { + "#": 2544 + }, + "isInternal": false + }, + { + "x": 650, + "y": 350, + "index": 2, + "body": { + "#": 2544 + }, + "isInternal": false + }, + { + "x": 600, + "y": 350, + "index": 3, + "body": { + "#": 2544 + }, + "isInternal": false + }, + { + "x": 625, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2558 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2560 + }, + "max": { + "#": 2561 + } + }, + { + "x": 600, + "y": 340 + }, + { + "x": 650, + "y": 350 + }, + { + "x": 600, + "y": 320 + }, + [ + { + "#": 2564 + }, + { + "#": 2565 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 108, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2567 + }, + "angle": 0, + "vertices": { + "#": 2568 + }, + "position": { + "#": 2573 + }, + "force": { + "#": 2574 + }, + "torque": 0, + "positionImpulse": { + "#": 2575 + }, + "constraintImpulse": { + "#": 2576 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2577 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2578 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2579 + }, + "bounds": { + "#": 2581 + }, + "positionPrev": { + "#": 2584 + }, + "anglePrev": 0, + "axes": { + "#": 2585 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2542 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2566 + } + ], + [ + { + "#": 2569 + }, + { + "#": 2570 + }, + { + "#": 2571 + }, + { + "#": 2572 + } + ], + { + "x": 620, + "y": 320, + "index": 0, + "body": { + "#": 2566 + }, + "isInternal": false + }, + { + "x": 630, + "y": 320, + "index": 1, + "body": { + "#": 2566 + }, + "isInternal": false + }, + { + "x": 630, + "y": 370, + "index": 2, + "body": { + "#": 2566 + }, + "isInternal": false + }, + { + "x": 620, + "y": 370, + "index": 3, + "body": { + "#": 2566 + }, + "isInternal": false + }, + { + "x": 625, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2580 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2582 + }, + "max": { + "#": 2583 + } + }, + { + "x": 620, + "y": 320 + }, + { + "x": 630, + "y": 370 + }, + { + "x": 600, + "y": 320 + }, + [ + { + "#": 2586 + }, + { + "#": 2587 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2589 + }, + { + "#": 2590 + }, + { + "#": 2591 + }, + { + "#": 2592 + }, + { + "#": 2593 + }, + { + "#": 2594 + }, + { + "#": 2595 + }, + { + "#": 2596 + } + ], + { + "x": 650, + "y": 350, + "index": 0, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 630, + "y": 370, + "index": 1, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 620, + "y": 370, + "index": 2, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 600, + "y": 350, + "index": 3, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 600, + "y": 340, + "index": 4, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 620, + "y": 320, + "index": 5, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 630, + "y": 320, + "index": 6, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 650, + "y": 340, + "index": 7, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 625, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2604 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2606 + }, + "max": { + "#": 2607 + } + }, + { + "x": 600, + "y": 320 + }, + { + "x": 650, + "y": 370 + }, + { + "x": 625, + "y": 345 + }, + [ + { + "#": 2610 + }, + { + "#": 2611 + }, + { + "#": 2612 + }, + { + "#": 2613 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 112, + "type": "body", + "label": "Body", + "parts": { + "#": 2615 + }, + "angle": 0, + "vertices": { + "#": 2660 + }, + "position": { + "#": 2669 + }, + "force": { + "#": 2670 + }, + "torque": 0, + "positionImpulse": { + "#": 2671 + }, + "constraintImpulse": { + "#": 2672 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2673 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2674 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2675 + }, + "bounds": { + "#": 2677 + }, + "positionPrev": { + "#": 2680 + }, + "anglePrev": 0, + "axes": { + "#": 2681 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2614 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2614 + }, + { + "#": 2616 + }, + { + "#": 2638 + } + ], + { + "id": 110, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2617 + }, + "angle": 0, + "vertices": { + "#": 2618 + }, + "position": { + "#": 2623 + }, + "force": { + "#": 2624 + }, + "torque": 0, + "positionImpulse": { + "#": 2625 + }, + "constraintImpulse": { + "#": 2626 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2627 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2628 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2629 + }, + "bounds": { + "#": 2631 + }, + "positionPrev": { + "#": 2634 + }, + "anglePrev": 0, + "axes": { + "#": 2635 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2614 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2616 + } + ], + [ + { + "#": 2619 + }, + { + "#": 2620 + }, + { + "#": 2621 + }, + { + "#": 2622 + } + ], + { + "x": 650, + "y": 340, + "index": 0, + "body": { + "#": 2616 + }, + "isInternal": false + }, + { + "x": 700, + "y": 340, + "index": 1, + "body": { + "#": 2616 + }, + "isInternal": false + }, + { + "x": 700, + "y": 350, + "index": 2, + "body": { + "#": 2616 + }, + "isInternal": false + }, + { + "x": 650, + "y": 350, + "index": 3, + "body": { + "#": 2616 + }, + "isInternal": false + }, + { + "x": 675, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2630 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2632 + }, + "max": { + "#": 2633 + } + }, + { + "x": 650, + "y": 340 + }, + { + "x": 700, + "y": 350 + }, + { + "x": 650, + "y": 320 + }, + [ + { + "#": 2636 + }, + { + "#": 2637 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 111, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2639 + }, + "angle": 0, + "vertices": { + "#": 2640 + }, + "position": { + "#": 2645 + }, + "force": { + "#": 2646 + }, + "torque": 0, + "positionImpulse": { + "#": 2647 + }, + "constraintImpulse": { + "#": 2648 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2649 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2650 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2651 + }, + "bounds": { + "#": 2653 + }, + "positionPrev": { + "#": 2656 + }, + "anglePrev": 0, + "axes": { + "#": 2657 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2614 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2638 + } + ], + [ + { + "#": 2641 + }, + { + "#": 2642 + }, + { + "#": 2643 + }, + { + "#": 2644 + } + ], + { + "x": 670, + "y": 320, + "index": 0, + "body": { + "#": 2638 + }, + "isInternal": false + }, + { + "x": 680, + "y": 320, + "index": 1, + "body": { + "#": 2638 + }, + "isInternal": false + }, + { + "x": 680, + "y": 370, + "index": 2, + "body": { + "#": 2638 + }, + "isInternal": false + }, + { + "x": 670, + "y": 370, + "index": 3, + "body": { + "#": 2638 + }, + "isInternal": false + }, + { + "x": 675, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2652 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2654 + }, + "max": { + "#": 2655 + } + }, + { + "x": 670, + "y": 320 + }, + { + "x": 680, + "y": 370 + }, + { + "x": 650, + "y": 320 + }, + [ + { + "#": 2658 + }, + { + "#": 2659 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2661 + }, + { + "#": 2662 + }, + { + "#": 2663 + }, + { + "#": 2664 + }, + { + "#": 2665 + }, + { + "#": 2666 + }, + { + "#": 2667 + }, + { + "#": 2668 + } + ], + { + "x": 700, + "y": 350, + "index": 0, + "body": { + "#": 2614 + }, + "isInternal": false + }, + { + "x": 680, + "y": 370, + "index": 1, + "body": { + "#": 2614 + }, + "isInternal": false + }, + { + "x": 670, + "y": 370, + "index": 2, + "body": { + "#": 2614 + }, + "isInternal": false + }, + { + "x": 650, + "y": 350, + "index": 3, + "body": { + "#": 2614 + }, + "isInternal": false + }, + { + "x": 650, + "y": 340, + "index": 4, + "body": { + "#": 2614 + }, + "isInternal": false + }, + { + "x": 670, + "y": 320, + "index": 5, + "body": { + "#": 2614 + }, + "isInternal": false + }, + { + "x": 680, + "y": 320, + "index": 6, + "body": { + "#": 2614 + }, + "isInternal": false + }, + { + "x": 700, + "y": 340, + "index": 7, + "body": { + "#": 2614 + }, + "isInternal": false + }, + { + "x": 675, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2676 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2678 + }, + "max": { + "#": 2679 + } + }, + { + "x": 650, + "y": 320 + }, + { + "x": 700, + "y": 370 + }, + { + "x": 675, + "y": 345 + }, + [ + { + "#": 2682 + }, + { + "#": 2683 + }, + { + "#": 2684 + }, + { + "#": 2685 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 115, + "type": "body", + "label": "Body", + "parts": { + "#": 2687 + }, + "angle": 0, + "vertices": { + "#": 2732 + }, + "position": { + "#": 2741 + }, + "force": { + "#": 2742 + }, + "torque": 0, + "positionImpulse": { + "#": 2743 + }, + "constraintImpulse": { + "#": 2744 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2745 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2746 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2747 + }, + "bounds": { + "#": 2749 + }, + "positionPrev": { + "#": 2752 + }, + "anglePrev": 0, + "axes": { + "#": 2753 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2686 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2686 + }, + { + "#": 2688 + }, + { + "#": 2710 + } + ], + { + "id": 113, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2689 + }, + "angle": 0, + "vertices": { + "#": 2690 + }, + "position": { + "#": 2695 + }, + "force": { + "#": 2696 + }, + "torque": 0, + "positionImpulse": { + "#": 2697 + }, + "constraintImpulse": { + "#": 2698 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2699 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2700 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2701 + }, + "bounds": { + "#": 2703 + }, + "positionPrev": { + "#": 2706 + }, + "anglePrev": 0, + "axes": { + "#": 2707 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2686 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2688 + } + ], + [ + { + "#": 2691 + }, + { + "#": 2692 + }, + { + "#": 2693 + }, + { + "#": 2694 + } + ], + { + "x": 100, + "y": 390, + "index": 0, + "body": { + "#": 2688 + }, + "isInternal": false + }, + { + "x": 150, + "y": 390, + "index": 1, + "body": { + "#": 2688 + }, + "isInternal": false + }, + { + "x": 150, + "y": 400, + "index": 2, + "body": { + "#": 2688 + }, + "isInternal": false + }, + { + "x": 100, + "y": 400, + "index": 3, + "body": { + "#": 2688 + }, + "isInternal": false + }, + { + "x": 125, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2702 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2704 + }, + "max": { + "#": 2705 + } + }, + { + "x": 100, + "y": 390 + }, + { + "x": 150, + "y": 400 + }, + { + "x": 100, + "y": 370 + }, + [ + { + "#": 2708 + }, + { + "#": 2709 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 114, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2711 + }, + "angle": 0, + "vertices": { + "#": 2712 + }, + "position": { + "#": 2717 + }, + "force": { + "#": 2718 + }, + "torque": 0, + "positionImpulse": { + "#": 2719 + }, + "constraintImpulse": { + "#": 2720 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2721 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2722 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2723 + }, + "bounds": { + "#": 2725 + }, + "positionPrev": { + "#": 2728 + }, + "anglePrev": 0, + "axes": { + "#": 2729 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2686 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2710 + } + ], + [ + { + "#": 2713 + }, + { + "#": 2714 + }, + { + "#": 2715 + }, + { + "#": 2716 + } + ], + { + "x": 120, + "y": 370, + "index": 0, + "body": { + "#": 2710 + }, + "isInternal": false + }, + { + "x": 130, + "y": 370, + "index": 1, + "body": { + "#": 2710 + }, + "isInternal": false + }, + { + "x": 130, + "y": 420, + "index": 2, + "body": { + "#": 2710 + }, + "isInternal": false + }, + { + "x": 120, + "y": 420, + "index": 3, + "body": { + "#": 2710 + }, + "isInternal": false + }, + { + "x": 125, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2724 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2726 + }, + "max": { + "#": 2727 + } + }, + { + "x": 120, + "y": 370 + }, + { + "x": 130, + "y": 420 + }, + { + "x": 100, + "y": 370 + }, + [ + { + "#": 2730 + }, + { + "#": 2731 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2733 + }, + { + "#": 2734 + }, + { + "#": 2735 + }, + { + "#": 2736 + }, + { + "#": 2737 + }, + { + "#": 2738 + }, + { + "#": 2739 + }, + { + "#": 2740 + } + ], + { + "x": 150, + "y": 400, + "index": 0, + "body": { + "#": 2686 + }, + "isInternal": false + }, + { + "x": 130, + "y": 420, + "index": 1, + "body": { + "#": 2686 + }, + "isInternal": false + }, + { + "x": 120, + "y": 420, + "index": 2, + "body": { + "#": 2686 + }, + "isInternal": false + }, + { + "x": 100, + "y": 400, + "index": 3, + "body": { + "#": 2686 + }, + "isInternal": false + }, + { + "x": 100, + "y": 390, + "index": 4, + "body": { + "#": 2686 + }, + "isInternal": false + }, + { + "x": 120, + "y": 370, + "index": 5, + "body": { + "#": 2686 + }, + "isInternal": false + }, + { + "x": 130, + "y": 370, + "index": 6, + "body": { + "#": 2686 + }, + "isInternal": false + }, + { + "x": 150, + "y": 390, + "index": 7, + "body": { + "#": 2686 + }, + "isInternal": false + }, + { + "x": 125, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2748 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2750 + }, + "max": { + "#": 2751 + } + }, + { + "x": 100, + "y": 370 + }, + { + "x": 150, + "y": 420 + }, + { + "x": 125, + "y": 395 + }, + [ + { + "#": 2754 + }, + { + "#": 2755 + }, + { + "#": 2756 + }, + { + "#": 2757 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 118, + "type": "body", + "label": "Body", + "parts": { + "#": 2759 + }, + "angle": 0, + "vertices": { + "#": 2804 + }, + "position": { + "#": 2813 + }, + "force": { + "#": 2814 + }, + "torque": 0, + "positionImpulse": { + "#": 2815 + }, + "constraintImpulse": { + "#": 2816 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2817 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2818 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2819 + }, + "bounds": { + "#": 2821 + }, + "positionPrev": { + "#": 2824 + }, + "anglePrev": 0, + "axes": { + "#": 2825 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2758 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2758 + }, + { + "#": 2760 + }, + { + "#": 2782 + } + ], + { + "id": 116, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2761 + }, + "angle": 0, + "vertices": { + "#": 2762 + }, + "position": { + "#": 2767 + }, + "force": { + "#": 2768 + }, + "torque": 0, + "positionImpulse": { + "#": 2769 + }, + "constraintImpulse": { + "#": 2770 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2771 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2772 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2773 + }, + "bounds": { + "#": 2775 + }, + "positionPrev": { + "#": 2778 + }, + "anglePrev": 0, + "axes": { + "#": 2779 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2758 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2760 + } + ], + [ + { + "#": 2763 + }, + { + "#": 2764 + }, + { + "#": 2765 + }, + { + "#": 2766 + } + ], + { + "x": 150, + "y": 390, + "index": 0, + "body": { + "#": 2760 + }, + "isInternal": false + }, + { + "x": 200, + "y": 390, + "index": 1, + "body": { + "#": 2760 + }, + "isInternal": false + }, + { + "x": 200, + "y": 400, + "index": 2, + "body": { + "#": 2760 + }, + "isInternal": false + }, + { + "x": 150, + "y": 400, + "index": 3, + "body": { + "#": 2760 + }, + "isInternal": false + }, + { + "x": 175, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2774 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2776 + }, + "max": { + "#": 2777 + } + }, + { + "x": 150, + "y": 390 + }, + { + "x": 200, + "y": 400 + }, + { + "x": 150, + "y": 370 + }, + [ + { + "#": 2780 + }, + { + "#": 2781 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 117, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2783 + }, + "angle": 0, + "vertices": { + "#": 2784 + }, + "position": { + "#": 2789 + }, + "force": { + "#": 2790 + }, + "torque": 0, + "positionImpulse": { + "#": 2791 + }, + "constraintImpulse": { + "#": 2792 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2793 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2794 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2795 + }, + "bounds": { + "#": 2797 + }, + "positionPrev": { + "#": 2800 + }, + "anglePrev": 0, + "axes": { + "#": 2801 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2758 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2782 + } + ], + [ + { + "#": 2785 + }, + { + "#": 2786 + }, + { + "#": 2787 + }, + { + "#": 2788 + } + ], + { + "x": 170, + "y": 370, + "index": 0, + "body": { + "#": 2782 + }, + "isInternal": false + }, + { + "x": 180, + "y": 370, + "index": 1, + "body": { + "#": 2782 + }, + "isInternal": false + }, + { + "x": 180, + "y": 420, + "index": 2, + "body": { + "#": 2782 + }, + "isInternal": false + }, + { + "x": 170, + "y": 420, + "index": 3, + "body": { + "#": 2782 + }, + "isInternal": false + }, + { + "x": 175, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2796 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2798 + }, + "max": { + "#": 2799 + } + }, + { + "x": 170, + "y": 370 + }, + { + "x": 180, + "y": 420 + }, + { + "x": 150, + "y": 370 + }, + [ + { + "#": 2802 + }, + { + "#": 2803 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2805 + }, + { + "#": 2806 + }, + { + "#": 2807 + }, + { + "#": 2808 + }, + { + "#": 2809 + }, + { + "#": 2810 + }, + { + "#": 2811 + }, + { + "#": 2812 + } + ], + { + "x": 200, + "y": 400, + "index": 0, + "body": { + "#": 2758 + }, + "isInternal": false + }, + { + "x": 180, + "y": 420, + "index": 1, + "body": { + "#": 2758 + }, + "isInternal": false + }, + { + "x": 170, + "y": 420, + "index": 2, + "body": { + "#": 2758 + }, + "isInternal": false + }, + { + "x": 150, + "y": 400, + "index": 3, + "body": { + "#": 2758 + }, + "isInternal": false + }, + { + "x": 150, + "y": 390, + "index": 4, + "body": { + "#": 2758 + }, + "isInternal": false + }, + { + "x": 170, + "y": 370, + "index": 5, + "body": { + "#": 2758 + }, + "isInternal": false + }, + { + "x": 180, + "y": 370, + "index": 6, + "body": { + "#": 2758 + }, + "isInternal": false + }, + { + "x": 200, + "y": 390, + "index": 7, + "body": { + "#": 2758 + }, + "isInternal": false + }, + { + "x": 175, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2820 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2822 + }, + "max": { + "#": 2823 + } + }, + { + "x": 150, + "y": 370 + }, + { + "x": 200, + "y": 420 + }, + { + "x": 175, + "y": 395 + }, + [ + { + "#": 2826 + }, + { + "#": 2827 + }, + { + "#": 2828 + }, + { + "#": 2829 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 121, + "type": "body", + "label": "Body", + "parts": { + "#": 2831 + }, + "angle": 0, + "vertices": { + "#": 2876 + }, + "position": { + "#": 2885 + }, + "force": { + "#": 2886 + }, + "torque": 0, + "positionImpulse": { + "#": 2887 + }, + "constraintImpulse": { + "#": 2888 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2889 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2890 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2891 + }, + "bounds": { + "#": 2893 + }, + "positionPrev": { + "#": 2896 + }, + "anglePrev": 0, + "axes": { + "#": 2897 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2830 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2830 + }, + { + "#": 2832 + }, + { + "#": 2854 + } + ], + { + "id": 119, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2833 + }, + "angle": 0, + "vertices": { + "#": 2834 + }, + "position": { + "#": 2839 + }, + "force": { + "#": 2840 + }, + "torque": 0, + "positionImpulse": { + "#": 2841 + }, + "constraintImpulse": { + "#": 2842 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2843 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2844 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2845 + }, + "bounds": { + "#": 2847 + }, + "positionPrev": { + "#": 2850 + }, + "anglePrev": 0, + "axes": { + "#": 2851 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2830 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2832 + } + ], + [ + { + "#": 2835 + }, + { + "#": 2836 + }, + { + "#": 2837 + }, + { + "#": 2838 + } + ], + { + "x": 200, + "y": 390, + "index": 0, + "body": { + "#": 2832 + }, + "isInternal": false + }, + { + "x": 250, + "y": 390, + "index": 1, + "body": { + "#": 2832 + }, + "isInternal": false + }, + { + "x": 250, + "y": 400, + "index": 2, + "body": { + "#": 2832 + }, + "isInternal": false + }, + { + "x": 200, + "y": 400, + "index": 3, + "body": { + "#": 2832 + }, + "isInternal": false + }, + { + "x": 225, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2846 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2848 + }, + "max": { + "#": 2849 + } + }, + { + "x": 200, + "y": 390 + }, + { + "x": 250, + "y": 400 + }, + { + "x": 200, + "y": 370 + }, + [ + { + "#": 2852 + }, + { + "#": 2853 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 120, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2855 + }, + "angle": 0, + "vertices": { + "#": 2856 + }, + "position": { + "#": 2861 + }, + "force": { + "#": 2862 + }, + "torque": 0, + "positionImpulse": { + "#": 2863 + }, + "constraintImpulse": { + "#": 2864 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2865 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2866 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2867 + }, + "bounds": { + "#": 2869 + }, + "positionPrev": { + "#": 2872 + }, + "anglePrev": 0, + "axes": { + "#": 2873 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2830 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2854 + } + ], + [ + { + "#": 2857 + }, + { + "#": 2858 + }, + { + "#": 2859 + }, + { + "#": 2860 + } + ], + { + "x": 220, + "y": 370, + "index": 0, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 230, + "y": 370, + "index": 1, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 230, + "y": 420, + "index": 2, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 220, + "y": 420, + "index": 3, + "body": { + "#": 2854 + }, + "isInternal": false + }, + { + "x": 225, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2868 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2870 + }, + "max": { + "#": 2871 + } + }, + { + "x": 220, + "y": 370 + }, + { + "x": 230, + "y": 420 + }, + { + "x": 200, + "y": 370 + }, + [ + { + "#": 2874 + }, + { + "#": 2875 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2877 + }, + { + "#": 2878 + }, + { + "#": 2879 + }, + { + "#": 2880 + }, + { + "#": 2881 + }, + { + "#": 2882 + }, + { + "#": 2883 + }, + { + "#": 2884 + } + ], + { + "x": 250, + "y": 400, + "index": 0, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 230, + "y": 420, + "index": 1, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 220, + "y": 420, + "index": 2, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 200, + "y": 400, + "index": 3, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 200, + "y": 390, + "index": 4, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 220, + "y": 370, + "index": 5, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 230, + "y": 370, + "index": 6, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 250, + "y": 390, + "index": 7, + "body": { + "#": 2830 + }, + "isInternal": false + }, + { + "x": 225, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2892 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2894 + }, + "max": { + "#": 2895 + } + }, + { + "x": 200, + "y": 370 + }, + { + "x": 250, + "y": 420 + }, + { + "x": 225, + "y": 395 + }, + [ + { + "#": 2898 + }, + { + "#": 2899 + }, + { + "#": 2900 + }, + { + "#": 2901 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 124, + "type": "body", + "label": "Body", + "parts": { + "#": 2903 + }, + "angle": 0, + "vertices": { + "#": 2948 + }, + "position": { + "#": 2957 + }, + "force": { + "#": 2958 + }, + "torque": 0, + "positionImpulse": { + "#": 2959 + }, + "constraintImpulse": { + "#": 2960 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2961 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2962 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2963 + }, + "bounds": { + "#": 2965 + }, + "positionPrev": { + "#": 2968 + }, + "anglePrev": 0, + "axes": { + "#": 2969 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2902 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2902 + }, + { + "#": 2904 + }, + { + "#": 2926 + } + ], + { + "id": 122, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2905 + }, + "angle": 0, + "vertices": { + "#": 2906 + }, + "position": { + "#": 2911 + }, + "force": { + "#": 2912 + }, + "torque": 0, + "positionImpulse": { + "#": 2913 + }, + "constraintImpulse": { + "#": 2914 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2915 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2916 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2917 + }, + "bounds": { + "#": 2919 + }, + "positionPrev": { + "#": 2922 + }, + "anglePrev": 0, + "axes": { + "#": 2923 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2902 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2904 + } + ], + [ + { + "#": 2907 + }, + { + "#": 2908 + }, + { + "#": 2909 + }, + { + "#": 2910 + } + ], + { + "x": 250, + "y": 390, + "index": 0, + "body": { + "#": 2904 + }, + "isInternal": false + }, + { + "x": 300, + "y": 390, + "index": 1, + "body": { + "#": 2904 + }, + "isInternal": false + }, + { + "x": 300, + "y": 400, + "index": 2, + "body": { + "#": 2904 + }, + "isInternal": false + }, + { + "x": 250, + "y": 400, + "index": 3, + "body": { + "#": 2904 + }, + "isInternal": false + }, + { + "x": 275, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2918 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2920 + }, + "max": { + "#": 2921 + } + }, + { + "x": 250, + "y": 390 + }, + { + "x": 300, + "y": 400 + }, + { + "x": 250, + "y": 370 + }, + [ + { + "#": 2924 + }, + { + "#": 2925 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 123, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2927 + }, + "angle": 0, + "vertices": { + "#": 2928 + }, + "position": { + "#": 2933 + }, + "force": { + "#": 2934 + }, + "torque": 0, + "positionImpulse": { + "#": 2935 + }, + "constraintImpulse": { + "#": 2936 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2937 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2938 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2939 + }, + "bounds": { + "#": 2941 + }, + "positionPrev": { + "#": 2944 + }, + "anglePrev": 0, + "axes": { + "#": 2945 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2902 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2926 + } + ], + [ + { + "#": 2929 + }, + { + "#": 2930 + }, + { + "#": 2931 + }, + { + "#": 2932 + } + ], + { + "x": 270, + "y": 370, + "index": 0, + "body": { + "#": 2926 + }, + "isInternal": false + }, + { + "x": 280, + "y": 370, + "index": 1, + "body": { + "#": 2926 + }, + "isInternal": false + }, + { + "x": 280, + "y": 420, + "index": 2, + "body": { + "#": 2926 + }, + "isInternal": false + }, + { + "x": 270, + "y": 420, + "index": 3, + "body": { + "#": 2926 + }, + "isInternal": false + }, + { + "x": 275, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2940 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2942 + }, + "max": { + "#": 2943 + } + }, + { + "x": 270, + "y": 370 + }, + { + "x": 280, + "y": 420 + }, + { + "x": 250, + "y": 370 + }, + [ + { + "#": 2946 + }, + { + "#": 2947 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2949 + }, + { + "#": 2950 + }, + { + "#": 2951 + }, + { + "#": 2952 + }, + { + "#": 2953 + }, + { + "#": 2954 + }, + { + "#": 2955 + }, + { + "#": 2956 + } + ], + { + "x": 300, + "y": 400, + "index": 0, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 280, + "y": 420, + "index": 1, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 270, + "y": 420, + "index": 2, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 250, + "y": 400, + "index": 3, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 250, + "y": 390, + "index": 4, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 270, + "y": 370, + "index": 5, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 280, + "y": 370, + "index": 6, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 300, + "y": 390, + "index": 7, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 275, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2964 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2966 + }, + "max": { + "#": 2967 + } + }, + { + "x": 250, + "y": 370 + }, + { + "x": 300, + "y": 420 + }, + { + "x": 275, + "y": 395 + }, + [ + { + "#": 2970 + }, + { + "#": 2971 + }, + { + "#": 2972 + }, + { + "#": 2973 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 127, + "type": "body", + "label": "Body", + "parts": { + "#": 2975 + }, + "angle": 0, + "vertices": { + "#": 3020 + }, + "position": { + "#": 3029 + }, + "force": { + "#": 3030 + }, + "torque": 0, + "positionImpulse": { + "#": 3031 + }, + "constraintImpulse": { + "#": 3032 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3033 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3034 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3035 + }, + "bounds": { + "#": 3037 + }, + "positionPrev": { + "#": 3040 + }, + "anglePrev": 0, + "axes": { + "#": 3041 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2974 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2974 + }, + { + "#": 2976 + }, + { + "#": 2998 + } + ], + { + "id": 125, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2977 + }, + "angle": 0, + "vertices": { + "#": 2978 + }, + "position": { + "#": 2983 + }, + "force": { + "#": 2984 + }, + "torque": 0, + "positionImpulse": { + "#": 2985 + }, + "constraintImpulse": { + "#": 2986 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2987 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2988 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2989 + }, + "bounds": { + "#": 2991 + }, + "positionPrev": { + "#": 2994 + }, + "anglePrev": 0, + "axes": { + "#": 2995 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2974 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2976 + } + ], + [ + { + "#": 2979 + }, + { + "#": 2980 + }, + { + "#": 2981 + }, + { + "#": 2982 + } + ], + { + "x": 300, + "y": 390, + "index": 0, + "body": { + "#": 2976 + }, + "isInternal": false + }, + { + "x": 350, + "y": 390, + "index": 1, + "body": { + "#": 2976 + }, + "isInternal": false + }, + { + "x": 350, + "y": 400, + "index": 2, + "body": { + "#": 2976 + }, + "isInternal": false + }, + { + "x": 300, + "y": 400, + "index": 3, + "body": { + "#": 2976 + }, + "isInternal": false + }, + { + "x": 325, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2990 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2992 + }, + "max": { + "#": 2993 + } + }, + { + "x": 300, + "y": 390 + }, + { + "x": 350, + "y": 400 + }, + { + "x": 300, + "y": 370 + }, + [ + { + "#": 2996 + }, + { + "#": 2997 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 126, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2999 + }, + "angle": 0, + "vertices": { + "#": 3000 + }, + "position": { + "#": 3005 + }, + "force": { + "#": 3006 + }, + "torque": 0, + "positionImpulse": { + "#": 3007 + }, + "constraintImpulse": { + "#": 3008 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3009 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3010 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3011 + }, + "bounds": { + "#": 3013 + }, + "positionPrev": { + "#": 3016 + }, + "anglePrev": 0, + "axes": { + "#": 3017 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2974 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2998 + } + ], + [ + { + "#": 3001 + }, + { + "#": 3002 + }, + { + "#": 3003 + }, + { + "#": 3004 + } + ], + { + "x": 320, + "y": 370, + "index": 0, + "body": { + "#": 2998 + }, + "isInternal": false + }, + { + "x": 330, + "y": 370, + "index": 1, + "body": { + "#": 2998 + }, + "isInternal": false + }, + { + "x": 330, + "y": 420, + "index": 2, + "body": { + "#": 2998 + }, + "isInternal": false + }, + { + "x": 320, + "y": 420, + "index": 3, + "body": { + "#": 2998 + }, + "isInternal": false + }, + { + "x": 325, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3012 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3014 + }, + "max": { + "#": 3015 + } + }, + { + "x": 320, + "y": 370 + }, + { + "x": 330, + "y": 420 + }, + { + "x": 300, + "y": 370 + }, + [ + { + "#": 3018 + }, + { + "#": 3019 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3021 + }, + { + "#": 3022 + }, + { + "#": 3023 + }, + { + "#": 3024 + }, + { + "#": 3025 + }, + { + "#": 3026 + }, + { + "#": 3027 + }, + { + "#": 3028 + } + ], + { + "x": 350, + "y": 400, + "index": 0, + "body": { + "#": 2974 + }, + "isInternal": false + }, + { + "x": 330, + "y": 420, + "index": 1, + "body": { + "#": 2974 + }, + "isInternal": false + }, + { + "x": 320, + "y": 420, + "index": 2, + "body": { + "#": 2974 + }, + "isInternal": false + }, + { + "x": 300, + "y": 400, + "index": 3, + "body": { + "#": 2974 + }, + "isInternal": false + }, + { + "x": 300, + "y": 390, + "index": 4, + "body": { + "#": 2974 + }, + "isInternal": false + }, + { + "x": 320, + "y": 370, + "index": 5, + "body": { + "#": 2974 + }, + "isInternal": false + }, + { + "x": 330, + "y": 370, + "index": 6, + "body": { + "#": 2974 + }, + "isInternal": false + }, + { + "x": 350, + "y": 390, + "index": 7, + "body": { + "#": 2974 + }, + "isInternal": false + }, + { + "x": 325, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3036 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3038 + }, + "max": { + "#": 3039 + } + }, + { + "x": 300, + "y": 370 + }, + { + "x": 350, + "y": 420 + }, + { + "x": 325, + "y": 395 + }, + [ + { + "#": 3042 + }, + { + "#": 3043 + }, + { + "#": 3044 + }, + { + "#": 3045 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 130, + "type": "body", + "label": "Body", + "parts": { + "#": 3047 + }, + "angle": 0, + "vertices": { + "#": 3092 + }, + "position": { + "#": 3101 + }, + "force": { + "#": 3102 + }, + "torque": 0, + "positionImpulse": { + "#": 3103 + }, + "constraintImpulse": { + "#": 3104 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3105 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3106 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3107 + }, + "bounds": { + "#": 3109 + }, + "positionPrev": { + "#": 3112 + }, + "anglePrev": 0, + "axes": { + "#": 3113 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3046 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3046 + }, + { + "#": 3048 + }, + { + "#": 3070 + } + ], + { + "id": 128, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3049 + }, + "angle": 0, + "vertices": { + "#": 3050 + }, + "position": { + "#": 3055 + }, + "force": { + "#": 3056 + }, + "torque": 0, + "positionImpulse": { + "#": 3057 + }, + "constraintImpulse": { + "#": 3058 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3059 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3060 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3061 + }, + "bounds": { + "#": 3063 + }, + "positionPrev": { + "#": 3066 + }, + "anglePrev": 0, + "axes": { + "#": 3067 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3046 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3048 + } + ], + [ + { + "#": 3051 + }, + { + "#": 3052 + }, + { + "#": 3053 + }, + { + "#": 3054 + } + ], + { + "x": 350, + "y": 390, + "index": 0, + "body": { + "#": 3048 + }, + "isInternal": false + }, + { + "x": 400, + "y": 390, + "index": 1, + "body": { + "#": 3048 + }, + "isInternal": false + }, + { + "x": 400, + "y": 400, + "index": 2, + "body": { + "#": 3048 + }, + "isInternal": false + }, + { + "x": 350, + "y": 400, + "index": 3, + "body": { + "#": 3048 + }, + "isInternal": false + }, + { + "x": 375, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3062 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3064 + }, + "max": { + "#": 3065 + } + }, + { + "x": 350, + "y": 390 + }, + { + "x": 400, + "y": 400 + }, + { + "x": 350, + "y": 370 + }, + [ + { + "#": 3068 + }, + { + "#": 3069 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 129, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3071 + }, + "angle": 0, + "vertices": { + "#": 3072 + }, + "position": { + "#": 3077 + }, + "force": { + "#": 3078 + }, + "torque": 0, + "positionImpulse": { + "#": 3079 + }, + "constraintImpulse": { + "#": 3080 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3081 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3082 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3083 + }, + "bounds": { + "#": 3085 + }, + "positionPrev": { + "#": 3088 + }, + "anglePrev": 0, + "axes": { + "#": 3089 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3046 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3070 + } + ], + [ + { + "#": 3073 + }, + { + "#": 3074 + }, + { + "#": 3075 + }, + { + "#": 3076 + } + ], + { + "x": 370, + "y": 370, + "index": 0, + "body": { + "#": 3070 + }, + "isInternal": false + }, + { + "x": 380, + "y": 370, + "index": 1, + "body": { + "#": 3070 + }, + "isInternal": false + }, + { + "x": 380, + "y": 420, + "index": 2, + "body": { + "#": 3070 + }, + "isInternal": false + }, + { + "x": 370, + "y": 420, + "index": 3, + "body": { + "#": 3070 + }, + "isInternal": false + }, + { + "x": 375, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3084 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3086 + }, + "max": { + "#": 3087 + } + }, + { + "x": 370, + "y": 370 + }, + { + "x": 380, + "y": 420 + }, + { + "x": 350, + "y": 370 + }, + [ + { + "#": 3090 + }, + { + "#": 3091 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3093 + }, + { + "#": 3094 + }, + { + "#": 3095 + }, + { + "#": 3096 + }, + { + "#": 3097 + }, + { + "#": 3098 + }, + { + "#": 3099 + }, + { + "#": 3100 + } + ], + { + "x": 400, + "y": 400, + "index": 0, + "body": { + "#": 3046 + }, + "isInternal": false + }, + { + "x": 380, + "y": 420, + "index": 1, + "body": { + "#": 3046 + }, + "isInternal": false + }, + { + "x": 370, + "y": 420, + "index": 2, + "body": { + "#": 3046 + }, + "isInternal": false + }, + { + "x": 350, + "y": 400, + "index": 3, + "body": { + "#": 3046 + }, + "isInternal": false + }, + { + "x": 350, + "y": 390, + "index": 4, + "body": { + "#": 3046 + }, + "isInternal": false + }, + { + "x": 370, + "y": 370, + "index": 5, + "body": { + "#": 3046 + }, + "isInternal": false + }, + { + "x": 380, + "y": 370, + "index": 6, + "body": { + "#": 3046 + }, + "isInternal": false + }, + { + "x": 400, + "y": 390, + "index": 7, + "body": { + "#": 3046 + }, + "isInternal": false + }, + { + "x": 375, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3108 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3110 + }, + "max": { + "#": 3111 + } + }, + { + "x": 350, + "y": 370 + }, + { + "x": 400, + "y": 420 + }, + { + "x": 375, + "y": 395 + }, + [ + { + "#": 3114 + }, + { + "#": 3115 + }, + { + "#": 3116 + }, + { + "#": 3117 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 133, + "type": "body", + "label": "Body", + "parts": { + "#": 3119 + }, + "angle": 0, + "vertices": { + "#": 3164 + }, + "position": { + "#": 3173 + }, + "force": { + "#": 3174 + }, + "torque": 0, + "positionImpulse": { + "#": 3175 + }, + "constraintImpulse": { + "#": 3176 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3177 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3178 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3179 + }, + "bounds": { + "#": 3181 + }, + "positionPrev": { + "#": 3184 + }, + "anglePrev": 0, + "axes": { + "#": 3185 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3118 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3118 + }, + { + "#": 3120 + }, + { + "#": 3142 + } + ], + { + "id": 131, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3121 + }, + "angle": 0, + "vertices": { + "#": 3122 + }, + "position": { + "#": 3127 + }, + "force": { + "#": 3128 + }, + "torque": 0, + "positionImpulse": { + "#": 3129 + }, + "constraintImpulse": { + "#": 3130 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3131 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3132 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3133 + }, + "bounds": { + "#": 3135 + }, + "positionPrev": { + "#": 3138 + }, + "anglePrev": 0, + "axes": { + "#": 3139 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3118 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3120 + } + ], + [ + { + "#": 3123 + }, + { + "#": 3124 + }, + { + "#": 3125 + }, + { + "#": 3126 + } + ], + { + "x": 400, + "y": 390, + "index": 0, + "body": { + "#": 3120 + }, + "isInternal": false + }, + { + "x": 450, + "y": 390, + "index": 1, + "body": { + "#": 3120 + }, + "isInternal": false + }, + { + "x": 450, + "y": 400, + "index": 2, + "body": { + "#": 3120 + }, + "isInternal": false + }, + { + "x": 400, + "y": 400, + "index": 3, + "body": { + "#": 3120 + }, + "isInternal": false + }, + { + "x": 425, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3134 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3136 + }, + "max": { + "#": 3137 + } + }, + { + "x": 400, + "y": 390 + }, + { + "x": 450, + "y": 400 + }, + { + "x": 400, + "y": 370 + }, + [ + { + "#": 3140 + }, + { + "#": 3141 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 132, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3143 + }, + "angle": 0, + "vertices": { + "#": 3144 + }, + "position": { + "#": 3149 + }, + "force": { + "#": 3150 + }, + "torque": 0, + "positionImpulse": { + "#": 3151 + }, + "constraintImpulse": { + "#": 3152 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3153 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3154 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3155 + }, + "bounds": { + "#": 3157 + }, + "positionPrev": { + "#": 3160 + }, + "anglePrev": 0, + "axes": { + "#": 3161 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3118 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3142 + } + ], + [ + { + "#": 3145 + }, + { + "#": 3146 + }, + { + "#": 3147 + }, + { + "#": 3148 + } + ], + { + "x": 420, + "y": 370, + "index": 0, + "body": { + "#": 3142 + }, + "isInternal": false + }, + { + "x": 430, + "y": 370, + "index": 1, + "body": { + "#": 3142 + }, + "isInternal": false + }, + { + "x": 430, + "y": 420, + "index": 2, + "body": { + "#": 3142 + }, + "isInternal": false + }, + { + "x": 420, + "y": 420, + "index": 3, + "body": { + "#": 3142 + }, + "isInternal": false + }, + { + "x": 425, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3156 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3158 + }, + "max": { + "#": 3159 + } + }, + { + "x": 420, + "y": 370 + }, + { + "x": 430, + "y": 420 + }, + { + "x": 400, + "y": 370 + }, + [ + { + "#": 3162 + }, + { + "#": 3163 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3165 + }, + { + "#": 3166 + }, + { + "#": 3167 + }, + { + "#": 3168 + }, + { + "#": 3169 + }, + { + "#": 3170 + }, + { + "#": 3171 + }, + { + "#": 3172 + } + ], + { + "x": 450, + "y": 400, + "index": 0, + "body": { + "#": 3118 + }, + "isInternal": false + }, + { + "x": 430, + "y": 420, + "index": 1, + "body": { + "#": 3118 + }, + "isInternal": false + }, + { + "x": 420, + "y": 420, + "index": 2, + "body": { + "#": 3118 + }, + "isInternal": false + }, + { + "x": 400, + "y": 400, + "index": 3, + "body": { + "#": 3118 + }, + "isInternal": false + }, + { + "x": 400, + "y": 390, + "index": 4, + "body": { + "#": 3118 + }, + "isInternal": false + }, + { + "x": 420, + "y": 370, + "index": 5, + "body": { + "#": 3118 + }, + "isInternal": false + }, + { + "x": 430, + "y": 370, + "index": 6, + "body": { + "#": 3118 + }, + "isInternal": false + }, + { + "x": 450, + "y": 390, + "index": 7, + "body": { + "#": 3118 + }, + "isInternal": false + }, + { + "x": 425, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3180 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3182 + }, + "max": { + "#": 3183 + } + }, + { + "x": 400, + "y": 370 + }, + { + "x": 450, + "y": 420 + }, + { + "x": 425, + "y": 395 + }, + [ + { + "#": 3186 + }, + { + "#": 3187 + }, + { + "#": 3188 + }, + { + "#": 3189 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 136, + "type": "body", + "label": "Body", + "parts": { + "#": 3191 + }, + "angle": 0, + "vertices": { + "#": 3236 + }, + "position": { + "#": 3245 + }, + "force": { + "#": 3246 + }, + "torque": 0, + "positionImpulse": { + "#": 3247 + }, + "constraintImpulse": { + "#": 3248 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3249 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3250 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3251 + }, + "bounds": { + "#": 3253 + }, + "positionPrev": { + "#": 3256 + }, + "anglePrev": 0, + "axes": { + "#": 3257 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3190 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3190 + }, + { + "#": 3192 + }, + { + "#": 3214 + } + ], + { + "id": 134, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3193 + }, + "angle": 0, + "vertices": { + "#": 3194 + }, + "position": { + "#": 3199 + }, + "force": { + "#": 3200 + }, + "torque": 0, + "positionImpulse": { + "#": 3201 + }, + "constraintImpulse": { + "#": 3202 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3203 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3204 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3205 + }, + "bounds": { + "#": 3207 + }, + "positionPrev": { + "#": 3210 + }, + "anglePrev": 0, + "axes": { + "#": 3211 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3190 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3192 + } + ], + [ + { + "#": 3195 + }, + { + "#": 3196 + }, + { + "#": 3197 + }, + { + "#": 3198 + } + ], + { + "x": 450, + "y": 390, + "index": 0, + "body": { + "#": 3192 + }, + "isInternal": false + }, + { + "x": 500, + "y": 390, + "index": 1, + "body": { + "#": 3192 + }, + "isInternal": false + }, + { + "x": 500, + "y": 400, + "index": 2, + "body": { + "#": 3192 + }, + "isInternal": false + }, + { + "x": 450, + "y": 400, + "index": 3, + "body": { + "#": 3192 + }, + "isInternal": false + }, + { + "x": 475, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3206 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3208 + }, + "max": { + "#": 3209 + } + }, + { + "x": 450, + "y": 390 + }, + { + "x": 500, + "y": 400 + }, + { + "x": 450, + "y": 370 + }, + [ + { + "#": 3212 + }, + { + "#": 3213 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 135, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3215 + }, + "angle": 0, + "vertices": { + "#": 3216 + }, + "position": { + "#": 3221 + }, + "force": { + "#": 3222 + }, + "torque": 0, + "positionImpulse": { + "#": 3223 + }, + "constraintImpulse": { + "#": 3224 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3225 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3226 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3227 + }, + "bounds": { + "#": 3229 + }, + "positionPrev": { + "#": 3232 + }, + "anglePrev": 0, + "axes": { + "#": 3233 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3190 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3214 + } + ], + [ + { + "#": 3217 + }, + { + "#": 3218 + }, + { + "#": 3219 + }, + { + "#": 3220 + } + ], + { + "x": 470, + "y": 370, + "index": 0, + "body": { + "#": 3214 + }, + "isInternal": false + }, + { + "x": 480, + "y": 370, + "index": 1, + "body": { + "#": 3214 + }, + "isInternal": false + }, + { + "x": 480, + "y": 420, + "index": 2, + "body": { + "#": 3214 + }, + "isInternal": false + }, + { + "x": 470, + "y": 420, + "index": 3, + "body": { + "#": 3214 + }, + "isInternal": false + }, + { + "x": 475, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3228 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3230 + }, + "max": { + "#": 3231 + } + }, + { + "x": 470, + "y": 370 + }, + { + "x": 480, + "y": 420 + }, + { + "x": 450, + "y": 370 + }, + [ + { + "#": 3234 + }, + { + "#": 3235 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3237 + }, + { + "#": 3238 + }, + { + "#": 3239 + }, + { + "#": 3240 + }, + { + "#": 3241 + }, + { + "#": 3242 + }, + { + "#": 3243 + }, + { + "#": 3244 + } + ], + { + "x": 500, + "y": 400, + "index": 0, + "body": { + "#": 3190 + }, + "isInternal": false + }, + { + "x": 480, + "y": 420, + "index": 1, + "body": { + "#": 3190 + }, + "isInternal": false + }, + { + "x": 470, + "y": 420, + "index": 2, + "body": { + "#": 3190 + }, + "isInternal": false + }, + { + "x": 450, + "y": 400, + "index": 3, + "body": { + "#": 3190 + }, + "isInternal": false + }, + { + "x": 450, + "y": 390, + "index": 4, + "body": { + "#": 3190 + }, + "isInternal": false + }, + { + "x": 470, + "y": 370, + "index": 5, + "body": { + "#": 3190 + }, + "isInternal": false + }, + { + "x": 480, + "y": 370, + "index": 6, + "body": { + "#": 3190 + }, + "isInternal": false + }, + { + "x": 500, + "y": 390, + "index": 7, + "body": { + "#": 3190 + }, + "isInternal": false + }, + { + "x": 475, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3252 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3254 + }, + "max": { + "#": 3255 + } + }, + { + "x": 450, + "y": 370 + }, + { + "x": 500, + "y": 420 + }, + { + "x": 475, + "y": 395 + }, + [ + { + "#": 3258 + }, + { + "#": 3259 + }, + { + "#": 3260 + }, + { + "#": 3261 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 139, + "type": "body", + "label": "Body", + "parts": { + "#": 3263 + }, + "angle": 0, + "vertices": { + "#": 3308 + }, + "position": { + "#": 3317 + }, + "force": { + "#": 3318 + }, + "torque": 0, + "positionImpulse": { + "#": 3319 + }, + "constraintImpulse": { + "#": 3320 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3321 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3322 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3323 + }, + "bounds": { + "#": 3325 + }, + "positionPrev": { + "#": 3328 + }, + "anglePrev": 0, + "axes": { + "#": 3329 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3262 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3262 + }, + { + "#": 3264 + }, + { + "#": 3286 + } + ], + { + "id": 137, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3265 + }, + "angle": 0, + "vertices": { + "#": 3266 + }, + "position": { + "#": 3271 + }, + "force": { + "#": 3272 + }, + "torque": 0, + "positionImpulse": { + "#": 3273 + }, + "constraintImpulse": { + "#": 3274 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3275 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3276 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3277 + }, + "bounds": { + "#": 3279 + }, + "positionPrev": { + "#": 3282 + }, + "anglePrev": 0, + "axes": { + "#": 3283 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3262 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3264 + } + ], + [ + { + "#": 3267 + }, + { + "#": 3268 + }, + { + "#": 3269 + }, + { + "#": 3270 + } + ], + { + "x": 500, + "y": 390, + "index": 0, + "body": { + "#": 3264 + }, + "isInternal": false + }, + { + "x": 550, + "y": 390, + "index": 1, + "body": { + "#": 3264 + }, + "isInternal": false + }, + { + "x": 550, + "y": 400, + "index": 2, + "body": { + "#": 3264 + }, + "isInternal": false + }, + { + "x": 500, + "y": 400, + "index": 3, + "body": { + "#": 3264 + }, + "isInternal": false + }, + { + "x": 525, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3278 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3280 + }, + "max": { + "#": 3281 + } + }, + { + "x": 500, + "y": 390 + }, + { + "x": 550, + "y": 400 + }, + { + "x": 500, + "y": 370 + }, + [ + { + "#": 3284 + }, + { + "#": 3285 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 138, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3287 + }, + "angle": 0, + "vertices": { + "#": 3288 + }, + "position": { + "#": 3293 + }, + "force": { + "#": 3294 + }, + "torque": 0, + "positionImpulse": { + "#": 3295 + }, + "constraintImpulse": { + "#": 3296 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3297 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3298 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3299 + }, + "bounds": { + "#": 3301 + }, + "positionPrev": { + "#": 3304 + }, + "anglePrev": 0, + "axes": { + "#": 3305 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3262 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3286 + } + ], + [ + { + "#": 3289 + }, + { + "#": 3290 + }, + { + "#": 3291 + }, + { + "#": 3292 + } + ], + { + "x": 520, + "y": 370, + "index": 0, + "body": { + "#": 3286 + }, + "isInternal": false + }, + { + "x": 530, + "y": 370, + "index": 1, + "body": { + "#": 3286 + }, + "isInternal": false + }, + { + "x": 530, + "y": 420, + "index": 2, + "body": { + "#": 3286 + }, + "isInternal": false + }, + { + "x": 520, + "y": 420, + "index": 3, + "body": { + "#": 3286 + }, + "isInternal": false + }, + { + "x": 525, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3300 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3302 + }, + "max": { + "#": 3303 + } + }, + { + "x": 520, + "y": 370 + }, + { + "x": 530, + "y": 420 + }, + { + "x": 500, + "y": 370 + }, + [ + { + "#": 3306 + }, + { + "#": 3307 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3309 + }, + { + "#": 3310 + }, + { + "#": 3311 + }, + { + "#": 3312 + }, + { + "#": 3313 + }, + { + "#": 3314 + }, + { + "#": 3315 + }, + { + "#": 3316 + } + ], + { + "x": 550, + "y": 400, + "index": 0, + "body": { + "#": 3262 + }, + "isInternal": false + }, + { + "x": 530, + "y": 420, + "index": 1, + "body": { + "#": 3262 + }, + "isInternal": false + }, + { + "x": 520, + "y": 420, + "index": 2, + "body": { + "#": 3262 + }, + "isInternal": false + }, + { + "x": 500, + "y": 400, + "index": 3, + "body": { + "#": 3262 + }, + "isInternal": false + }, + { + "x": 500, + "y": 390, + "index": 4, + "body": { + "#": 3262 + }, + "isInternal": false + }, + { + "x": 520, + "y": 370, + "index": 5, + "body": { + "#": 3262 + }, + "isInternal": false + }, + { + "x": 530, + "y": 370, + "index": 6, + "body": { + "#": 3262 + }, + "isInternal": false + }, + { + "x": 550, + "y": 390, + "index": 7, + "body": { + "#": 3262 + }, + "isInternal": false + }, + { + "x": 525, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3324 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3326 + }, + "max": { + "#": 3327 + } + }, + { + "x": 500, + "y": 370 + }, + { + "x": 550, + "y": 420 + }, + { + "x": 525, + "y": 395 + }, + [ + { + "#": 3330 + }, + { + "#": 3331 + }, + { + "#": 3332 + }, + { + "#": 3333 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 142, + "type": "body", + "label": "Body", + "parts": { + "#": 3335 + }, + "angle": 0, + "vertices": { + "#": 3380 + }, + "position": { + "#": 3389 + }, + "force": { + "#": 3390 + }, + "torque": 0, + "positionImpulse": { + "#": 3391 + }, + "constraintImpulse": { + "#": 3392 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3393 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3394 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3395 + }, + "bounds": { + "#": 3397 + }, + "positionPrev": { + "#": 3400 + }, + "anglePrev": 0, + "axes": { + "#": 3401 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3334 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3334 + }, + { + "#": 3336 + }, + { + "#": 3358 + } + ], + { + "id": 140, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3337 + }, + "angle": 0, + "vertices": { + "#": 3338 + }, + "position": { + "#": 3343 + }, + "force": { + "#": 3344 + }, + "torque": 0, + "positionImpulse": { + "#": 3345 + }, + "constraintImpulse": { + "#": 3346 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3347 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3348 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3349 + }, + "bounds": { + "#": 3351 + }, + "positionPrev": { + "#": 3354 + }, + "anglePrev": 0, + "axes": { + "#": 3355 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3334 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3336 + } + ], + [ + { + "#": 3339 + }, + { + "#": 3340 + }, + { + "#": 3341 + }, + { + "#": 3342 + } + ], + { + "x": 550, + "y": 390, + "index": 0, + "body": { + "#": 3336 + }, + "isInternal": false + }, + { + "x": 600, + "y": 390, + "index": 1, + "body": { + "#": 3336 + }, + "isInternal": false + }, + { + "x": 600, + "y": 400, + "index": 2, + "body": { + "#": 3336 + }, + "isInternal": false + }, + { + "x": 550, + "y": 400, + "index": 3, + "body": { + "#": 3336 + }, + "isInternal": false + }, + { + "x": 575, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3350 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3352 + }, + "max": { + "#": 3353 + } + }, + { + "x": 550, + "y": 390 + }, + { + "x": 600, + "y": 400 + }, + { + "x": 550, + "y": 370 + }, + [ + { + "#": 3356 + }, + { + "#": 3357 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 141, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3359 + }, + "angle": 0, + "vertices": { + "#": 3360 + }, + "position": { + "#": 3365 + }, + "force": { + "#": 3366 + }, + "torque": 0, + "positionImpulse": { + "#": 3367 + }, + "constraintImpulse": { + "#": 3368 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3369 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3370 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3371 + }, + "bounds": { + "#": 3373 + }, + "positionPrev": { + "#": 3376 + }, + "anglePrev": 0, + "axes": { + "#": 3377 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3334 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3358 + } + ], + [ + { + "#": 3361 + }, + { + "#": 3362 + }, + { + "#": 3363 + }, + { + "#": 3364 + } + ], + { + "x": 570, + "y": 370, + "index": 0, + "body": { + "#": 3358 + }, + "isInternal": false + }, + { + "x": 580, + "y": 370, + "index": 1, + "body": { + "#": 3358 + }, + "isInternal": false + }, + { + "x": 580, + "y": 420, + "index": 2, + "body": { + "#": 3358 + }, + "isInternal": false + }, + { + "x": 570, + "y": 420, + "index": 3, + "body": { + "#": 3358 + }, + "isInternal": false + }, + { + "x": 575, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3372 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3374 + }, + "max": { + "#": 3375 + } + }, + { + "x": 570, + "y": 370 + }, + { + "x": 580, + "y": 420 + }, + { + "x": 550, + "y": 370 + }, + [ + { + "#": 3378 + }, + { + "#": 3379 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3381 + }, + { + "#": 3382 + }, + { + "#": 3383 + }, + { + "#": 3384 + }, + { + "#": 3385 + }, + { + "#": 3386 + }, + { + "#": 3387 + }, + { + "#": 3388 + } + ], + { + "x": 600, + "y": 400, + "index": 0, + "body": { + "#": 3334 + }, + "isInternal": false + }, + { + "x": 580, + "y": 420, + "index": 1, + "body": { + "#": 3334 + }, + "isInternal": false + }, + { + "x": 570, + "y": 420, + "index": 2, + "body": { + "#": 3334 + }, + "isInternal": false + }, + { + "x": 550, + "y": 400, + "index": 3, + "body": { + "#": 3334 + }, + "isInternal": false + }, + { + "x": 550, + "y": 390, + "index": 4, + "body": { + "#": 3334 + }, + "isInternal": false + }, + { + "x": 570, + "y": 370, + "index": 5, + "body": { + "#": 3334 + }, + "isInternal": false + }, + { + "x": 580, + "y": 370, + "index": 6, + "body": { + "#": 3334 + }, + "isInternal": false + }, + { + "x": 600, + "y": 390, + "index": 7, + "body": { + "#": 3334 + }, + "isInternal": false + }, + { + "x": 575, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3396 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3398 + }, + "max": { + "#": 3399 + } + }, + { + "x": 550, + "y": 370 + }, + { + "x": 600, + "y": 420 + }, + { + "x": 575, + "y": 395 + }, + [ + { + "#": 3402 + }, + { + "#": 3403 + }, + { + "#": 3404 + }, + { + "#": 3405 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 145, + "type": "body", + "label": "Body", + "parts": { + "#": 3407 + }, + "angle": 0, + "vertices": { + "#": 3452 + }, + "position": { + "#": 3461 + }, + "force": { + "#": 3462 + }, + "torque": 0, + "positionImpulse": { + "#": 3463 + }, + "constraintImpulse": { + "#": 3464 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3465 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3466 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3467 + }, + "bounds": { + "#": 3469 + }, + "positionPrev": { + "#": 3472 + }, + "anglePrev": 0, + "axes": { + "#": 3473 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3406 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3406 + }, + { + "#": 3408 + }, + { + "#": 3430 + } + ], + { + "id": 143, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3409 + }, + "angle": 0, + "vertices": { + "#": 3410 + }, + "position": { + "#": 3415 + }, + "force": { + "#": 3416 + }, + "torque": 0, + "positionImpulse": { + "#": 3417 + }, + "constraintImpulse": { + "#": 3418 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3419 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3420 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3421 + }, + "bounds": { + "#": 3423 + }, + "positionPrev": { + "#": 3426 + }, + "anglePrev": 0, + "axes": { + "#": 3427 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3406 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3408 + } + ], + [ + { + "#": 3411 + }, + { + "#": 3412 + }, + { + "#": 3413 + }, + { + "#": 3414 + } + ], + { + "x": 600, + "y": 390, + "index": 0, + "body": { + "#": 3408 + }, + "isInternal": false + }, + { + "x": 650, + "y": 390, + "index": 1, + "body": { + "#": 3408 + }, + "isInternal": false + }, + { + "x": 650, + "y": 400, + "index": 2, + "body": { + "#": 3408 + }, + "isInternal": false + }, + { + "x": 600, + "y": 400, + "index": 3, + "body": { + "#": 3408 + }, + "isInternal": false + }, + { + "x": 625, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3422 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3424 + }, + "max": { + "#": 3425 + } + }, + { + "x": 600, + "y": 390 + }, + { + "x": 650, + "y": 400 + }, + { + "x": 600, + "y": 370 + }, + [ + { + "#": 3428 + }, + { + "#": 3429 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 144, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3431 + }, + "angle": 0, + "vertices": { + "#": 3432 + }, + "position": { + "#": 3437 + }, + "force": { + "#": 3438 + }, + "torque": 0, + "positionImpulse": { + "#": 3439 + }, + "constraintImpulse": { + "#": 3440 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3441 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3442 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3443 + }, + "bounds": { + "#": 3445 + }, + "positionPrev": { + "#": 3448 + }, + "anglePrev": 0, + "axes": { + "#": 3449 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3406 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3430 + } + ], + [ + { + "#": 3433 + }, + { + "#": 3434 + }, + { + "#": 3435 + }, + { + "#": 3436 + } + ], + { + "x": 620, + "y": 370, + "index": 0, + "body": { + "#": 3430 + }, + "isInternal": false + }, + { + "x": 630, + "y": 370, + "index": 1, + "body": { + "#": 3430 + }, + "isInternal": false + }, + { + "x": 630, + "y": 420, + "index": 2, + "body": { + "#": 3430 + }, + "isInternal": false + }, + { + "x": 620, + "y": 420, + "index": 3, + "body": { + "#": 3430 + }, + "isInternal": false + }, + { + "x": 625, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3444 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3446 + }, + "max": { + "#": 3447 + } + }, + { + "x": 620, + "y": 370 + }, + { + "x": 630, + "y": 420 + }, + { + "x": 600, + "y": 370 + }, + [ + { + "#": 3450 + }, + { + "#": 3451 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3453 + }, + { + "#": 3454 + }, + { + "#": 3455 + }, + { + "#": 3456 + }, + { + "#": 3457 + }, + { + "#": 3458 + }, + { + "#": 3459 + }, + { + "#": 3460 + } + ], + { + "x": 650, + "y": 400, + "index": 0, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 630, + "y": 420, + "index": 1, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 620, + "y": 420, + "index": 2, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 600, + "y": 400, + "index": 3, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 600, + "y": 390, + "index": 4, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 620, + "y": 370, + "index": 5, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 630, + "y": 370, + "index": 6, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 650, + "y": 390, + "index": 7, + "body": { + "#": 3406 + }, + "isInternal": false + }, + { + "x": 625, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3468 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3470 + }, + "max": { + "#": 3471 + } + }, + { + "x": 600, + "y": 370 + }, + { + "x": 650, + "y": 420 + }, + { + "x": 625, + "y": 395 + }, + [ + { + "#": 3474 + }, + { + "#": 3475 + }, + { + "#": 3476 + }, + { + "#": 3477 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 148, + "type": "body", + "label": "Body", + "parts": { + "#": 3479 + }, + "angle": 0, + "vertices": { + "#": 3524 + }, + "position": { + "#": 3533 + }, + "force": { + "#": 3534 + }, + "torque": 0, + "positionImpulse": { + "#": 3535 + }, + "constraintImpulse": { + "#": 3536 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3537 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3538 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3539 + }, + "bounds": { + "#": 3541 + }, + "positionPrev": { + "#": 3544 + }, + "anglePrev": 0, + "axes": { + "#": 3545 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3478 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3478 + }, + { + "#": 3480 + }, + { + "#": 3502 + } + ], + { + "id": 146, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3481 + }, + "angle": 0, + "vertices": { + "#": 3482 + }, + "position": { + "#": 3487 + }, + "force": { + "#": 3488 + }, + "torque": 0, + "positionImpulse": { + "#": 3489 + }, + "constraintImpulse": { + "#": 3490 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3491 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3492 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3493 + }, + "bounds": { + "#": 3495 + }, + "positionPrev": { + "#": 3498 + }, + "anglePrev": 0, + "axes": { + "#": 3499 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3478 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3480 + } + ], + [ + { + "#": 3483 + }, + { + "#": 3484 + }, + { + "#": 3485 + }, + { + "#": 3486 + } + ], + { + "x": 650, + "y": 390, + "index": 0, + "body": { + "#": 3480 + }, + "isInternal": false + }, + { + "x": 700, + "y": 390, + "index": 1, + "body": { + "#": 3480 + }, + "isInternal": false + }, + { + "x": 700, + "y": 400, + "index": 2, + "body": { + "#": 3480 + }, + "isInternal": false + }, + { + "x": 650, + "y": 400, + "index": 3, + "body": { + "#": 3480 + }, + "isInternal": false + }, + { + "x": 675, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3494 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3496 + }, + "max": { + "#": 3497 + } + }, + { + "x": 650, + "y": 390 + }, + { + "x": 700, + "y": 400 + }, + { + "x": 650, + "y": 370 + }, + [ + { + "#": 3500 + }, + { + "#": 3501 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 147, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3503 + }, + "angle": 0, + "vertices": { + "#": 3504 + }, + "position": { + "#": 3509 + }, + "force": { + "#": 3510 + }, + "torque": 0, + "positionImpulse": { + "#": 3511 + }, + "constraintImpulse": { + "#": 3512 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3513 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3514 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3515 + }, + "bounds": { + "#": 3517 + }, + "positionPrev": { + "#": 3520 + }, + "anglePrev": 0, + "axes": { + "#": 3521 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3478 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3502 + } + ], + [ + { + "#": 3505 + }, + { + "#": 3506 + }, + { + "#": 3507 + }, + { + "#": 3508 + } + ], + { + "x": 670, + "y": 370, + "index": 0, + "body": { + "#": 3502 + }, + "isInternal": false + }, + { + "x": 680, + "y": 370, + "index": 1, + "body": { + "#": 3502 + }, + "isInternal": false + }, + { + "x": 680, + "y": 420, + "index": 2, + "body": { + "#": 3502 + }, + "isInternal": false + }, + { + "x": 670, + "y": 420, + "index": 3, + "body": { + "#": 3502 + }, + "isInternal": false + }, + { + "x": 675, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3516 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3518 + }, + "max": { + "#": 3519 + } + }, + { + "x": 670, + "y": 370 + }, + { + "x": 680, + "y": 420 + }, + { + "x": 650, + "y": 370 + }, + [ + { + "#": 3522 + }, + { + "#": 3523 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3525 + }, + { + "#": 3526 + }, + { + "#": 3527 + }, + { + "#": 3528 + }, + { + "#": 3529 + }, + { + "#": 3530 + }, + { + "#": 3531 + }, + { + "#": 3532 + } + ], + { + "x": 700, + "y": 400, + "index": 0, + "body": { + "#": 3478 + }, + "isInternal": false + }, + { + "x": 680, + "y": 420, + "index": 1, + "body": { + "#": 3478 + }, + "isInternal": false + }, + { + "x": 670, + "y": 420, + "index": 2, + "body": { + "#": 3478 + }, + "isInternal": false + }, + { + "x": 650, + "y": 400, + "index": 3, + "body": { + "#": 3478 + }, + "isInternal": false + }, + { + "x": 650, + "y": 390, + "index": 4, + "body": { + "#": 3478 + }, + "isInternal": false + }, + { + "x": 670, + "y": 370, + "index": 5, + "body": { + "#": 3478 + }, + "isInternal": false + }, + { + "x": 680, + "y": 370, + "index": 6, + "body": { + "#": 3478 + }, + "isInternal": false + }, + { + "x": 700, + "y": 390, + "index": 7, + "body": { + "#": 3478 + }, + "isInternal": false + }, + { + "x": 675, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3540 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3542 + }, + "max": { + "#": 3543 + } + }, + { + "x": 650, + "y": 370 + }, + { + "x": 700, + "y": 420 + }, + { + "x": 675, + "y": 395 + }, + [ + { + "#": 3546 + }, + { + "#": 3547 + }, + { + "#": 3548 + }, + { + "#": 3549 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 151, + "type": "body", + "label": "Body", + "parts": { + "#": 3551 + }, + "angle": 0, + "vertices": { + "#": 3596 + }, + "position": { + "#": 3605 + }, + "force": { + "#": 3606 + }, + "torque": 0, + "positionImpulse": { + "#": 3607 + }, + "constraintImpulse": { + "#": 3608 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3609 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3610 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3611 + }, + "bounds": { + "#": 3613 + }, + "positionPrev": { + "#": 3616 + }, + "anglePrev": 0, + "axes": { + "#": 3617 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3550 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3550 + }, + { + "#": 3552 + }, + { + "#": 3574 + } + ], + { + "id": 149, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3553 + }, + "angle": 0, + "vertices": { + "#": 3554 + }, + "position": { + "#": 3559 + }, + "force": { + "#": 3560 + }, + "torque": 0, + "positionImpulse": { + "#": 3561 + }, + "constraintImpulse": { + "#": 3562 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3563 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3564 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3565 + }, + "bounds": { + "#": 3567 + }, + "positionPrev": { + "#": 3570 + }, + "anglePrev": 0, + "axes": { + "#": 3571 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3550 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3552 + } + ], + [ + { + "#": 3555 + }, + { + "#": 3556 + }, + { + "#": 3557 + }, + { + "#": 3558 + } + ], + { + "x": 100, + "y": 440, + "index": 0, + "body": { + "#": 3552 + }, + "isInternal": false + }, + { + "x": 150, + "y": 440, + "index": 1, + "body": { + "#": 3552 + }, + "isInternal": false + }, + { + "x": 150, + "y": 450, + "index": 2, + "body": { + "#": 3552 + }, + "isInternal": false + }, + { + "x": 100, + "y": 450, + "index": 3, + "body": { + "#": 3552 + }, + "isInternal": false + }, + { + "x": 125, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3566 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3568 + }, + "max": { + "#": 3569 + } + }, + { + "x": 100, + "y": 440 + }, + { + "x": 150, + "y": 450 + }, + { + "x": 100, + "y": 420 + }, + [ + { + "#": 3572 + }, + { + "#": 3573 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 150, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3575 + }, + "angle": 0, + "vertices": { + "#": 3576 + }, + "position": { + "#": 3581 + }, + "force": { + "#": 3582 + }, + "torque": 0, + "positionImpulse": { + "#": 3583 + }, + "constraintImpulse": { + "#": 3584 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3585 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3586 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3587 + }, + "bounds": { + "#": 3589 + }, + "positionPrev": { + "#": 3592 + }, + "anglePrev": 0, + "axes": { + "#": 3593 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3550 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3574 + } + ], + [ + { + "#": 3577 + }, + { + "#": 3578 + }, + { + "#": 3579 + }, + { + "#": 3580 + } + ], + { + "x": 120, + "y": 420, + "index": 0, + "body": { + "#": 3574 + }, + "isInternal": false + }, + { + "x": 130, + "y": 420, + "index": 1, + "body": { + "#": 3574 + }, + "isInternal": false + }, + { + "x": 130, + "y": 470, + "index": 2, + "body": { + "#": 3574 + }, + "isInternal": false + }, + { + "x": 120, + "y": 470, + "index": 3, + "body": { + "#": 3574 + }, + "isInternal": false + }, + { + "x": 125, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3588 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3590 + }, + "max": { + "#": 3591 + } + }, + { + "x": 120, + "y": 420 + }, + { + "x": 130, + "y": 470 + }, + { + "x": 100, + "y": 420 + }, + [ + { + "#": 3594 + }, + { + "#": 3595 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3597 + }, + { + "#": 3598 + }, + { + "#": 3599 + }, + { + "#": 3600 + }, + { + "#": 3601 + }, + { + "#": 3602 + }, + { + "#": 3603 + }, + { + "#": 3604 + } + ], + { + "x": 150, + "y": 450, + "index": 0, + "body": { + "#": 3550 + }, + "isInternal": false + }, + { + "x": 130, + "y": 470, + "index": 1, + "body": { + "#": 3550 + }, + "isInternal": false + }, + { + "x": 120, + "y": 470, + "index": 2, + "body": { + "#": 3550 + }, + "isInternal": false + }, + { + "x": 100, + "y": 450, + "index": 3, + "body": { + "#": 3550 + }, + "isInternal": false + }, + { + "x": 100, + "y": 440, + "index": 4, + "body": { + "#": 3550 + }, + "isInternal": false + }, + { + "x": 120, + "y": 420, + "index": 5, + "body": { + "#": 3550 + }, + "isInternal": false + }, + { + "x": 130, + "y": 420, + "index": 6, + "body": { + "#": 3550 + }, + "isInternal": false + }, + { + "x": 150, + "y": 440, + "index": 7, + "body": { + "#": 3550 + }, + "isInternal": false + }, + { + "x": 125, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3612 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3614 + }, + "max": { + "#": 3615 + } + }, + { + "x": 100, + "y": 420 + }, + { + "x": 150, + "y": 470 + }, + { + "x": 125, + "y": 445 + }, + [ + { + "#": 3618 + }, + { + "#": 3619 + }, + { + "#": 3620 + }, + { + "#": 3621 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 154, + "type": "body", + "label": "Body", + "parts": { + "#": 3623 + }, + "angle": 0, + "vertices": { + "#": 3668 + }, + "position": { + "#": 3677 + }, + "force": { + "#": 3678 + }, + "torque": 0, + "positionImpulse": { + "#": 3679 + }, + "constraintImpulse": { + "#": 3680 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3681 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3682 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3683 + }, + "bounds": { + "#": 3685 + }, + "positionPrev": { + "#": 3688 + }, + "anglePrev": 0, + "axes": { + "#": 3689 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3622 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3622 + }, + { + "#": 3624 + }, + { + "#": 3646 + } + ], + { + "id": 152, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3625 + }, + "angle": 0, + "vertices": { + "#": 3626 + }, + "position": { + "#": 3631 + }, + "force": { + "#": 3632 + }, + "torque": 0, + "positionImpulse": { + "#": 3633 + }, + "constraintImpulse": { + "#": 3634 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3635 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3636 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3637 + }, + "bounds": { + "#": 3639 + }, + "positionPrev": { + "#": 3642 + }, + "anglePrev": 0, + "axes": { + "#": 3643 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3622 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3624 + } + ], + [ + { + "#": 3627 + }, + { + "#": 3628 + }, + { + "#": 3629 + }, + { + "#": 3630 + } + ], + { + "x": 150, + "y": 440, + "index": 0, + "body": { + "#": 3624 + }, + "isInternal": false + }, + { + "x": 200, + "y": 440, + "index": 1, + "body": { + "#": 3624 + }, + "isInternal": false + }, + { + "x": 200, + "y": 450, + "index": 2, + "body": { + "#": 3624 + }, + "isInternal": false + }, + { + "x": 150, + "y": 450, + "index": 3, + "body": { + "#": 3624 + }, + "isInternal": false + }, + { + "x": 175, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3638 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3640 + }, + "max": { + "#": 3641 + } + }, + { + "x": 150, + "y": 440 + }, + { + "x": 200, + "y": 450 + }, + { + "x": 150, + "y": 420 + }, + [ + { + "#": 3644 + }, + { + "#": 3645 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 153, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3647 + }, + "angle": 0, + "vertices": { + "#": 3648 + }, + "position": { + "#": 3653 + }, + "force": { + "#": 3654 + }, + "torque": 0, + "positionImpulse": { + "#": 3655 + }, + "constraintImpulse": { + "#": 3656 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3657 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3658 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3659 + }, + "bounds": { + "#": 3661 + }, + "positionPrev": { + "#": 3664 + }, + "anglePrev": 0, + "axes": { + "#": 3665 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3622 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3646 + } + ], + [ + { + "#": 3649 + }, + { + "#": 3650 + }, + { + "#": 3651 + }, + { + "#": 3652 + } + ], + { + "x": 170, + "y": 420, + "index": 0, + "body": { + "#": 3646 + }, + "isInternal": false + }, + { + "x": 180, + "y": 420, + "index": 1, + "body": { + "#": 3646 + }, + "isInternal": false + }, + { + "x": 180, + "y": 470, + "index": 2, + "body": { + "#": 3646 + }, + "isInternal": false + }, + { + "x": 170, + "y": 470, + "index": 3, + "body": { + "#": 3646 + }, + "isInternal": false + }, + { + "x": 175, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3660 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3662 + }, + "max": { + "#": 3663 + } + }, + { + "x": 170, + "y": 420 + }, + { + "x": 180, + "y": 470 + }, + { + "x": 150, + "y": 420 + }, + [ + { + "#": 3666 + }, + { + "#": 3667 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3669 + }, + { + "#": 3670 + }, + { + "#": 3671 + }, + { + "#": 3672 + }, + { + "#": 3673 + }, + { + "#": 3674 + }, + { + "#": 3675 + }, + { + "#": 3676 + } + ], + { + "x": 200, + "y": 450, + "index": 0, + "body": { + "#": 3622 + }, + "isInternal": false + }, + { + "x": 180, + "y": 470, + "index": 1, + "body": { + "#": 3622 + }, + "isInternal": false + }, + { + "x": 170, + "y": 470, + "index": 2, + "body": { + "#": 3622 + }, + "isInternal": false + }, + { + "x": 150, + "y": 450, + "index": 3, + "body": { + "#": 3622 + }, + "isInternal": false + }, + { + "x": 150, + "y": 440, + "index": 4, + "body": { + "#": 3622 + }, + "isInternal": false + }, + { + "x": 170, + "y": 420, + "index": 5, + "body": { + "#": 3622 + }, + "isInternal": false + }, + { + "x": 180, + "y": 420, + "index": 6, + "body": { + "#": 3622 + }, + "isInternal": false + }, + { + "x": 200, + "y": 440, + "index": 7, + "body": { + "#": 3622 + }, + "isInternal": false + }, + { + "x": 175, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3684 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3686 + }, + "max": { + "#": 3687 + } + }, + { + "x": 150, + "y": 420 + }, + { + "x": 200, + "y": 470 + }, + { + "x": 175, + "y": 445 + }, + [ + { + "#": 3690 + }, + { + "#": 3691 + }, + { + "#": 3692 + }, + { + "#": 3693 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 157, + "type": "body", + "label": "Body", + "parts": { + "#": 3695 + }, + "angle": 0, + "vertices": { + "#": 3740 + }, + "position": { + "#": 3749 + }, + "force": { + "#": 3750 + }, + "torque": 0, + "positionImpulse": { + "#": 3751 + }, + "constraintImpulse": { + "#": 3752 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3753 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3754 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3755 + }, + "bounds": { + "#": 3757 + }, + "positionPrev": { + "#": 3760 + }, + "anglePrev": 0, + "axes": { + "#": 3761 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3694 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3694 + }, + { + "#": 3696 + }, + { + "#": 3718 + } + ], + { + "id": 155, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3697 + }, + "angle": 0, + "vertices": { + "#": 3698 + }, + "position": { + "#": 3703 + }, + "force": { + "#": 3704 + }, + "torque": 0, + "positionImpulse": { + "#": 3705 + }, + "constraintImpulse": { + "#": 3706 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3707 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3708 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3709 + }, + "bounds": { + "#": 3711 + }, + "positionPrev": { + "#": 3714 + }, + "anglePrev": 0, + "axes": { + "#": 3715 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3694 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3696 + } + ], + [ + { + "#": 3699 + }, + { + "#": 3700 + }, + { + "#": 3701 + }, + { + "#": 3702 + } + ], + { + "x": 200, + "y": 440, + "index": 0, + "body": { + "#": 3696 + }, + "isInternal": false + }, + { + "x": 250, + "y": 440, + "index": 1, + "body": { + "#": 3696 + }, + "isInternal": false + }, + { + "x": 250, + "y": 450, + "index": 2, + "body": { + "#": 3696 + }, + "isInternal": false + }, + { + "x": 200, + "y": 450, + "index": 3, + "body": { + "#": 3696 + }, + "isInternal": false + }, + { + "x": 225, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3710 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3712 + }, + "max": { + "#": 3713 + } + }, + { + "x": 200, + "y": 440 + }, + { + "x": 250, + "y": 450 + }, + { + "x": 200, + "y": 420 + }, + [ + { + "#": 3716 + }, + { + "#": 3717 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 156, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3719 + }, + "angle": 0, + "vertices": { + "#": 3720 + }, + "position": { + "#": 3725 + }, + "force": { + "#": 3726 + }, + "torque": 0, + "positionImpulse": { + "#": 3727 + }, + "constraintImpulse": { + "#": 3728 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3729 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3730 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3731 + }, + "bounds": { + "#": 3733 + }, + "positionPrev": { + "#": 3736 + }, + "anglePrev": 0, + "axes": { + "#": 3737 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3694 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3718 + } + ], + [ + { + "#": 3721 + }, + { + "#": 3722 + }, + { + "#": 3723 + }, + { + "#": 3724 + } + ], + { + "x": 220, + "y": 420, + "index": 0, + "body": { + "#": 3718 + }, + "isInternal": false + }, + { + "x": 230, + "y": 420, + "index": 1, + "body": { + "#": 3718 + }, + "isInternal": false + }, + { + "x": 230, + "y": 470, + "index": 2, + "body": { + "#": 3718 + }, + "isInternal": false + }, + { + "x": 220, + "y": 470, + "index": 3, + "body": { + "#": 3718 + }, + "isInternal": false + }, + { + "x": 225, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3732 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3734 + }, + "max": { + "#": 3735 + } + }, + { + "x": 220, + "y": 420 + }, + { + "x": 230, + "y": 470 + }, + { + "x": 200, + "y": 420 + }, + [ + { + "#": 3738 + }, + { + "#": 3739 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3741 + }, + { + "#": 3742 + }, + { + "#": 3743 + }, + { + "#": 3744 + }, + { + "#": 3745 + }, + { + "#": 3746 + }, + { + "#": 3747 + }, + { + "#": 3748 + } + ], + { + "x": 250, + "y": 450, + "index": 0, + "body": { + "#": 3694 + }, + "isInternal": false + }, + { + "x": 230, + "y": 470, + "index": 1, + "body": { + "#": 3694 + }, + "isInternal": false + }, + { + "x": 220, + "y": 470, + "index": 2, + "body": { + "#": 3694 + }, + "isInternal": false + }, + { + "x": 200, + "y": 450, + "index": 3, + "body": { + "#": 3694 + }, + "isInternal": false + }, + { + "x": 200, + "y": 440, + "index": 4, + "body": { + "#": 3694 + }, + "isInternal": false + }, + { + "x": 220, + "y": 420, + "index": 5, + "body": { + "#": 3694 + }, + "isInternal": false + }, + { + "x": 230, + "y": 420, + "index": 6, + "body": { + "#": 3694 + }, + "isInternal": false + }, + { + "x": 250, + "y": 440, + "index": 7, + "body": { + "#": 3694 + }, + "isInternal": false + }, + { + "x": 225, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3756 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3758 + }, + "max": { + "#": 3759 + } + }, + { + "x": 200, + "y": 420 + }, + { + "x": 250, + "y": 470 + }, + { + "x": 225, + "y": 445 + }, + [ + { + "#": 3762 + }, + { + "#": 3763 + }, + { + "#": 3764 + }, + { + "#": 3765 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 160, + "type": "body", + "label": "Body", + "parts": { + "#": 3767 + }, + "angle": 0, + "vertices": { + "#": 3812 + }, + "position": { + "#": 3821 + }, + "force": { + "#": 3822 + }, + "torque": 0, + "positionImpulse": { + "#": 3823 + }, + "constraintImpulse": { + "#": 3824 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3825 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3826 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3827 + }, + "bounds": { + "#": 3829 + }, + "positionPrev": { + "#": 3832 + }, + "anglePrev": 0, + "axes": { + "#": 3833 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3766 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3766 + }, + { + "#": 3768 + }, + { + "#": 3790 + } + ], + { + "id": 158, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3769 + }, + "angle": 0, + "vertices": { + "#": 3770 + }, + "position": { + "#": 3775 + }, + "force": { + "#": 3776 + }, + "torque": 0, + "positionImpulse": { + "#": 3777 + }, + "constraintImpulse": { + "#": 3778 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3779 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3780 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3781 + }, + "bounds": { + "#": 3783 + }, + "positionPrev": { + "#": 3786 + }, + "anglePrev": 0, + "axes": { + "#": 3787 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3766 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3768 + } + ], + [ + { + "#": 3771 + }, + { + "#": 3772 + }, + { + "#": 3773 + }, + { + "#": 3774 + } + ], + { + "x": 250, + "y": 440, + "index": 0, + "body": { + "#": 3768 + }, + "isInternal": false + }, + { + "x": 300, + "y": 440, + "index": 1, + "body": { + "#": 3768 + }, + "isInternal": false + }, + { + "x": 300, + "y": 450, + "index": 2, + "body": { + "#": 3768 + }, + "isInternal": false + }, + { + "x": 250, + "y": 450, + "index": 3, + "body": { + "#": 3768 + }, + "isInternal": false + }, + { + "x": 275, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3782 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3784 + }, + "max": { + "#": 3785 + } + }, + { + "x": 250, + "y": 440 + }, + { + "x": 300, + "y": 450 + }, + { + "x": 250, + "y": 420 + }, + [ + { + "#": 3788 + }, + { + "#": 3789 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 159, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3791 + }, + "angle": 0, + "vertices": { + "#": 3792 + }, + "position": { + "#": 3797 + }, + "force": { + "#": 3798 + }, + "torque": 0, + "positionImpulse": { + "#": 3799 + }, + "constraintImpulse": { + "#": 3800 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3801 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3802 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3803 + }, + "bounds": { + "#": 3805 + }, + "positionPrev": { + "#": 3808 + }, + "anglePrev": 0, + "axes": { + "#": 3809 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3766 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3790 + } + ], + [ + { + "#": 3793 + }, + { + "#": 3794 + }, + { + "#": 3795 + }, + { + "#": 3796 + } + ], + { + "x": 270, + "y": 420, + "index": 0, + "body": { + "#": 3790 + }, + "isInternal": false + }, + { + "x": 280, + "y": 420, + "index": 1, + "body": { + "#": 3790 + }, + "isInternal": false + }, + { + "x": 280, + "y": 470, + "index": 2, + "body": { + "#": 3790 + }, + "isInternal": false + }, + { + "x": 270, + "y": 470, + "index": 3, + "body": { + "#": 3790 + }, + "isInternal": false + }, + { + "x": 275, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3804 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3806 + }, + "max": { + "#": 3807 + } + }, + { + "x": 270, + "y": 420 + }, + { + "x": 280, + "y": 470 + }, + { + "x": 250, + "y": 420 + }, + [ + { + "#": 3810 + }, + { + "#": 3811 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3813 + }, + { + "#": 3814 + }, + { + "#": 3815 + }, + { + "#": 3816 + }, + { + "#": 3817 + }, + { + "#": 3818 + }, + { + "#": 3819 + }, + { + "#": 3820 + } + ], + { + "x": 300, + "y": 450, + "index": 0, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 280, + "y": 470, + "index": 1, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 270, + "y": 470, + "index": 2, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 250, + "y": 450, + "index": 3, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 250, + "y": 440, + "index": 4, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 270, + "y": 420, + "index": 5, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 280, + "y": 420, + "index": 6, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 300, + "y": 440, + "index": 7, + "body": { + "#": 3766 + }, + "isInternal": false + }, + { + "x": 275, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3828 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3830 + }, + "max": { + "#": 3831 + } + }, + { + "x": 250, + "y": 420 + }, + { + "x": 300, + "y": 470 + }, + { + "x": 275, + "y": 445 + }, + [ + { + "#": 3834 + }, + { + "#": 3835 + }, + { + "#": 3836 + }, + { + "#": 3837 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 163, + "type": "body", + "label": "Body", + "parts": { + "#": 3839 + }, + "angle": 0, + "vertices": { + "#": 3884 + }, + "position": { + "#": 3893 + }, + "force": { + "#": 3894 + }, + "torque": 0, + "positionImpulse": { + "#": 3895 + }, + "constraintImpulse": { + "#": 3896 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3897 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3898 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3899 + }, + "bounds": { + "#": 3901 + }, + "positionPrev": { + "#": 3904 + }, + "anglePrev": 0, + "axes": { + "#": 3905 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3838 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3838 + }, + { + "#": 3840 + }, + { + "#": 3862 + } + ], + { + "id": 161, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3841 + }, + "angle": 0, + "vertices": { + "#": 3842 + }, + "position": { + "#": 3847 + }, + "force": { + "#": 3848 + }, + "torque": 0, + "positionImpulse": { + "#": 3849 + }, + "constraintImpulse": { + "#": 3850 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3851 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3852 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3853 + }, + "bounds": { + "#": 3855 + }, + "positionPrev": { + "#": 3858 + }, + "anglePrev": 0, + "axes": { + "#": 3859 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3838 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3840 + } + ], + [ + { + "#": 3843 + }, + { + "#": 3844 + }, + { + "#": 3845 + }, + { + "#": 3846 + } + ], + { + "x": 300, + "y": 440, + "index": 0, + "body": { + "#": 3840 + }, + "isInternal": false + }, + { + "x": 350, + "y": 440, + "index": 1, + "body": { + "#": 3840 + }, + "isInternal": false + }, + { + "x": 350, + "y": 450, + "index": 2, + "body": { + "#": 3840 + }, + "isInternal": false + }, + { + "x": 300, + "y": 450, + "index": 3, + "body": { + "#": 3840 + }, + "isInternal": false + }, + { + "x": 325, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3854 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3856 + }, + "max": { + "#": 3857 + } + }, + { + "x": 300, + "y": 440 + }, + { + "x": 350, + "y": 450 + }, + { + "x": 300, + "y": 420 + }, + [ + { + "#": 3860 + }, + { + "#": 3861 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 162, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3863 + }, + "angle": 0, + "vertices": { + "#": 3864 + }, + "position": { + "#": 3869 + }, + "force": { + "#": 3870 + }, + "torque": 0, + "positionImpulse": { + "#": 3871 + }, + "constraintImpulse": { + "#": 3872 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3873 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3874 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3875 + }, + "bounds": { + "#": 3877 + }, + "positionPrev": { + "#": 3880 + }, + "anglePrev": 0, + "axes": { + "#": 3881 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3838 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3862 + } + ], + [ + { + "#": 3865 + }, + { + "#": 3866 + }, + { + "#": 3867 + }, + { + "#": 3868 + } + ], + { + "x": 320, + "y": 420, + "index": 0, + "body": { + "#": 3862 + }, + "isInternal": false + }, + { + "x": 330, + "y": 420, + "index": 1, + "body": { + "#": 3862 + }, + "isInternal": false + }, + { + "x": 330, + "y": 470, + "index": 2, + "body": { + "#": 3862 + }, + "isInternal": false + }, + { + "x": 320, + "y": 470, + "index": 3, + "body": { + "#": 3862 + }, + "isInternal": false + }, + { + "x": 325, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3876 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3878 + }, + "max": { + "#": 3879 + } + }, + { + "x": 320, + "y": 420 + }, + { + "x": 330, + "y": 470 + }, + { + "x": 300, + "y": 420 + }, + [ + { + "#": 3882 + }, + { + "#": 3883 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3885 + }, + { + "#": 3886 + }, + { + "#": 3887 + }, + { + "#": 3888 + }, + { + "#": 3889 + }, + { + "#": 3890 + }, + { + "#": 3891 + }, + { + "#": 3892 + } + ], + { + "x": 350, + "y": 450, + "index": 0, + "body": { + "#": 3838 + }, + "isInternal": false + }, + { + "x": 330, + "y": 470, + "index": 1, + "body": { + "#": 3838 + }, + "isInternal": false + }, + { + "x": 320, + "y": 470, + "index": 2, + "body": { + "#": 3838 + }, + "isInternal": false + }, + { + "x": 300, + "y": 450, + "index": 3, + "body": { + "#": 3838 + }, + "isInternal": false + }, + { + "x": 300, + "y": 440, + "index": 4, + "body": { + "#": 3838 + }, + "isInternal": false + }, + { + "x": 320, + "y": 420, + "index": 5, + "body": { + "#": 3838 + }, + "isInternal": false + }, + { + "x": 330, + "y": 420, + "index": 6, + "body": { + "#": 3838 + }, + "isInternal": false + }, + { + "x": 350, + "y": 440, + "index": 7, + "body": { + "#": 3838 + }, + "isInternal": false + }, + { + "x": 325, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3900 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3902 + }, + "max": { + "#": 3903 + } + }, + { + "x": 300, + "y": 420 + }, + { + "x": 350, + "y": 470 + }, + { + "x": 325, + "y": 445 + }, + [ + { + "#": 3906 + }, + { + "#": 3907 + }, + { + "#": 3908 + }, + { + "#": 3909 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 166, + "type": "body", + "label": "Body", + "parts": { + "#": 3911 + }, + "angle": 0, + "vertices": { + "#": 3956 + }, + "position": { + "#": 3965 + }, + "force": { + "#": 3966 + }, + "torque": 0, + "positionImpulse": { + "#": 3967 + }, + "constraintImpulse": { + "#": 3968 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3969 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3970 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3971 + }, + "bounds": { + "#": 3973 + }, + "positionPrev": { + "#": 3976 + }, + "anglePrev": 0, + "axes": { + "#": 3977 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3910 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3910 + }, + { + "#": 3912 + }, + { + "#": 3934 + } + ], + { + "id": 164, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3913 + }, + "angle": 0, + "vertices": { + "#": 3914 + }, + "position": { + "#": 3919 + }, + "force": { + "#": 3920 + }, + "torque": 0, + "positionImpulse": { + "#": 3921 + }, + "constraintImpulse": { + "#": 3922 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3923 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3924 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3925 + }, + "bounds": { + "#": 3927 + }, + "positionPrev": { + "#": 3930 + }, + "anglePrev": 0, + "axes": { + "#": 3931 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3910 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3912 + } + ], + [ + { + "#": 3915 + }, + { + "#": 3916 + }, + { + "#": 3917 + }, + { + "#": 3918 + } + ], + { + "x": 350, + "y": 440, + "index": 0, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 400, + "y": 440, + "index": 1, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 400, + "y": 450, + "index": 2, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 350, + "y": 450, + "index": 3, + "body": { + "#": 3912 + }, + "isInternal": false + }, + { + "x": 375, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3926 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3928 + }, + "max": { + "#": 3929 + } + }, + { + "x": 350, + "y": 440 + }, + { + "x": 400, + "y": 450 + }, + { + "x": 350, + "y": 420 + }, + [ + { + "#": 3932 + }, + { + "#": 3933 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 165, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3935 + }, + "angle": 0, + "vertices": { + "#": 3936 + }, + "position": { + "#": 3941 + }, + "force": { + "#": 3942 + }, + "torque": 0, + "positionImpulse": { + "#": 3943 + }, + "constraintImpulse": { + "#": 3944 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3945 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3946 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3947 + }, + "bounds": { + "#": 3949 + }, + "positionPrev": { + "#": 3952 + }, + "anglePrev": 0, + "axes": { + "#": 3953 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3910 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3934 + } + ], + [ + { + "#": 3937 + }, + { + "#": 3938 + }, + { + "#": 3939 + }, + { + "#": 3940 + } + ], + { + "x": 370, + "y": 420, + "index": 0, + "body": { + "#": 3934 + }, + "isInternal": false + }, + { + "x": 380, + "y": 420, + "index": 1, + "body": { + "#": 3934 + }, + "isInternal": false + }, + { + "x": 380, + "y": 470, + "index": 2, + "body": { + "#": 3934 + }, + "isInternal": false + }, + { + "x": 370, + "y": 470, + "index": 3, + "body": { + "#": 3934 + }, + "isInternal": false + }, + { + "x": 375, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3948 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3950 + }, + "max": { + "#": 3951 + } + }, + { + "x": 370, + "y": 420 + }, + { + "x": 380, + "y": 470 + }, + { + "x": 350, + "y": 420 + }, + [ + { + "#": 3954 + }, + { + "#": 3955 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3957 + }, + { + "#": 3958 + }, + { + "#": 3959 + }, + { + "#": 3960 + }, + { + "#": 3961 + }, + { + "#": 3962 + }, + { + "#": 3963 + }, + { + "#": 3964 + } + ], + { + "x": 400, + "y": 450, + "index": 0, + "body": { + "#": 3910 + }, + "isInternal": false + }, + { + "x": 380, + "y": 470, + "index": 1, + "body": { + "#": 3910 + }, + "isInternal": false + }, + { + "x": 370, + "y": 470, + "index": 2, + "body": { + "#": 3910 + }, + "isInternal": false + }, + { + "x": 350, + "y": 450, + "index": 3, + "body": { + "#": 3910 + }, + "isInternal": false + }, + { + "x": 350, + "y": 440, + "index": 4, + "body": { + "#": 3910 + }, + "isInternal": false + }, + { + "x": 370, + "y": 420, + "index": 5, + "body": { + "#": 3910 + }, + "isInternal": false + }, + { + "x": 380, + "y": 420, + "index": 6, + "body": { + "#": 3910 + }, + "isInternal": false + }, + { + "x": 400, + "y": 440, + "index": 7, + "body": { + "#": 3910 + }, + "isInternal": false + }, + { + "x": 375, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3972 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3974 + }, + "max": { + "#": 3975 + } + }, + { + "x": 350, + "y": 420 + }, + { + "x": 400, + "y": 470 + }, + { + "x": 375, + "y": 445 + }, + [ + { + "#": 3978 + }, + { + "#": 3979 + }, + { + "#": 3980 + }, + { + "#": 3981 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 169, + "type": "body", + "label": "Body", + "parts": { + "#": 3983 + }, + "angle": 0, + "vertices": { + "#": 4028 + }, + "position": { + "#": 4037 + }, + "force": { + "#": 4038 + }, + "torque": 0, + "positionImpulse": { + "#": 4039 + }, + "constraintImpulse": { + "#": 4040 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4041 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4042 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4043 + }, + "bounds": { + "#": 4045 + }, + "positionPrev": { + "#": 4048 + }, + "anglePrev": 0, + "axes": { + "#": 4049 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3982 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3982 + }, + { + "#": 3984 + }, + { + "#": 4006 + } + ], + { + "id": 167, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3985 + }, + "angle": 0, + "vertices": { + "#": 3986 + }, + "position": { + "#": 3991 + }, + "force": { + "#": 3992 + }, + "torque": 0, + "positionImpulse": { + "#": 3993 + }, + "constraintImpulse": { + "#": 3994 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3995 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3996 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3997 + }, + "bounds": { + "#": 3999 + }, + "positionPrev": { + "#": 4002 + }, + "anglePrev": 0, + "axes": { + "#": 4003 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3982 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3984 + } + ], + [ + { + "#": 3987 + }, + { + "#": 3988 + }, + { + "#": 3989 + }, + { + "#": 3990 + } + ], + { + "x": 400, + "y": 440, + "index": 0, + "body": { + "#": 3984 + }, + "isInternal": false + }, + { + "x": 450, + "y": 440, + "index": 1, + "body": { + "#": 3984 + }, + "isInternal": false + }, + { + "x": 450, + "y": 450, + "index": 2, + "body": { + "#": 3984 + }, + "isInternal": false + }, + { + "x": 400, + "y": 450, + "index": 3, + "body": { + "#": 3984 + }, + "isInternal": false + }, + { + "x": 425, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3998 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4000 + }, + "max": { + "#": 4001 + } + }, + { + "x": 400, + "y": 440 + }, + { + "x": 450, + "y": 450 + }, + { + "x": 400, + "y": 420 + }, + [ + { + "#": 4004 + }, + { + "#": 4005 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 168, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4007 + }, + "angle": 0, + "vertices": { + "#": 4008 + }, + "position": { + "#": 4013 + }, + "force": { + "#": 4014 + }, + "torque": 0, + "positionImpulse": { + "#": 4015 + }, + "constraintImpulse": { + "#": 4016 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4017 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4018 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4019 + }, + "bounds": { + "#": 4021 + }, + "positionPrev": { + "#": 4024 + }, + "anglePrev": 0, + "axes": { + "#": 4025 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3982 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4006 + } + ], + [ + { + "#": 4009 + }, + { + "#": 4010 + }, + { + "#": 4011 + }, + { + "#": 4012 + } + ], + { + "x": 420, + "y": 420, + "index": 0, + "body": { + "#": 4006 + }, + "isInternal": false + }, + { + "x": 430, + "y": 420, + "index": 1, + "body": { + "#": 4006 + }, + "isInternal": false + }, + { + "x": 430, + "y": 470, + "index": 2, + "body": { + "#": 4006 + }, + "isInternal": false + }, + { + "x": 420, + "y": 470, + "index": 3, + "body": { + "#": 4006 + }, + "isInternal": false + }, + { + "x": 425, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4020 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4022 + }, + "max": { + "#": 4023 + } + }, + { + "x": 420, + "y": 420 + }, + { + "x": 430, + "y": 470 + }, + { + "x": 400, + "y": 420 + }, + [ + { + "#": 4026 + }, + { + "#": 4027 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4029 + }, + { + "#": 4030 + }, + { + "#": 4031 + }, + { + "#": 4032 + }, + { + "#": 4033 + }, + { + "#": 4034 + }, + { + "#": 4035 + }, + { + "#": 4036 + } + ], + { + "x": 450, + "y": 450, + "index": 0, + "body": { + "#": 3982 + }, + "isInternal": false + }, + { + "x": 430, + "y": 470, + "index": 1, + "body": { + "#": 3982 + }, + "isInternal": false + }, + { + "x": 420, + "y": 470, + "index": 2, + "body": { + "#": 3982 + }, + "isInternal": false + }, + { + "x": 400, + "y": 450, + "index": 3, + "body": { + "#": 3982 + }, + "isInternal": false + }, + { + "x": 400, + "y": 440, + "index": 4, + "body": { + "#": 3982 + }, + "isInternal": false + }, + { + "x": 420, + "y": 420, + "index": 5, + "body": { + "#": 3982 + }, + "isInternal": false + }, + { + "x": 430, + "y": 420, + "index": 6, + "body": { + "#": 3982 + }, + "isInternal": false + }, + { + "x": 450, + "y": 440, + "index": 7, + "body": { + "#": 3982 + }, + "isInternal": false + }, + { + "x": 425, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4044 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4046 + }, + "max": { + "#": 4047 + } + }, + { + "x": 400, + "y": 420 + }, + { + "x": 450, + "y": 470 + }, + { + "x": 425, + "y": 445 + }, + [ + { + "#": 4050 + }, + { + "#": 4051 + }, + { + "#": 4052 + }, + { + "#": 4053 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 172, + "type": "body", + "label": "Body", + "parts": { + "#": 4055 + }, + "angle": 0, + "vertices": { + "#": 4100 + }, + "position": { + "#": 4109 + }, + "force": { + "#": 4110 + }, + "torque": 0, + "positionImpulse": { + "#": 4111 + }, + "constraintImpulse": { + "#": 4112 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4113 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4114 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4115 + }, + "bounds": { + "#": 4117 + }, + "positionPrev": { + "#": 4120 + }, + "anglePrev": 0, + "axes": { + "#": 4121 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4054 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4054 + }, + { + "#": 4056 + }, + { + "#": 4078 + } + ], + { + "id": 170, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4057 + }, + "angle": 0, + "vertices": { + "#": 4058 + }, + "position": { + "#": 4063 + }, + "force": { + "#": 4064 + }, + "torque": 0, + "positionImpulse": { + "#": 4065 + }, + "constraintImpulse": { + "#": 4066 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4067 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4068 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4069 + }, + "bounds": { + "#": 4071 + }, + "positionPrev": { + "#": 4074 + }, + "anglePrev": 0, + "axes": { + "#": 4075 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4054 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4056 + } + ], + [ + { + "#": 4059 + }, + { + "#": 4060 + }, + { + "#": 4061 + }, + { + "#": 4062 + } + ], + { + "x": 450, + "y": 440, + "index": 0, + "body": { + "#": 4056 + }, + "isInternal": false + }, + { + "x": 500, + "y": 440, + "index": 1, + "body": { + "#": 4056 + }, + "isInternal": false + }, + { + "x": 500, + "y": 450, + "index": 2, + "body": { + "#": 4056 + }, + "isInternal": false + }, + { + "x": 450, + "y": 450, + "index": 3, + "body": { + "#": 4056 + }, + "isInternal": false + }, + { + "x": 475, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4070 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4072 + }, + "max": { + "#": 4073 + } + }, + { + "x": 450, + "y": 440 + }, + { + "x": 500, + "y": 450 + }, + { + "x": 450, + "y": 420 + }, + [ + { + "#": 4076 + }, + { + "#": 4077 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 171, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4079 + }, + "angle": 0, + "vertices": { + "#": 4080 + }, + "position": { + "#": 4085 + }, + "force": { + "#": 4086 + }, + "torque": 0, + "positionImpulse": { + "#": 4087 + }, + "constraintImpulse": { + "#": 4088 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4089 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4090 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4091 + }, + "bounds": { + "#": 4093 + }, + "positionPrev": { + "#": 4096 + }, + "anglePrev": 0, + "axes": { + "#": 4097 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4054 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4078 + } + ], + [ + { + "#": 4081 + }, + { + "#": 4082 + }, + { + "#": 4083 + }, + { + "#": 4084 + } + ], + { + "x": 470, + "y": 420, + "index": 0, + "body": { + "#": 4078 + }, + "isInternal": false + }, + { + "x": 480, + "y": 420, + "index": 1, + "body": { + "#": 4078 + }, + "isInternal": false + }, + { + "x": 480, + "y": 470, + "index": 2, + "body": { + "#": 4078 + }, + "isInternal": false + }, + { + "x": 470, + "y": 470, + "index": 3, + "body": { + "#": 4078 + }, + "isInternal": false + }, + { + "x": 475, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4092 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4094 + }, + "max": { + "#": 4095 + } + }, + { + "x": 470, + "y": 420 + }, + { + "x": 480, + "y": 470 + }, + { + "x": 450, + "y": 420 + }, + [ + { + "#": 4098 + }, + { + "#": 4099 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4101 + }, + { + "#": 4102 + }, + { + "#": 4103 + }, + { + "#": 4104 + }, + { + "#": 4105 + }, + { + "#": 4106 + }, + { + "#": 4107 + }, + { + "#": 4108 + } + ], + { + "x": 500, + "y": 450, + "index": 0, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 480, + "y": 470, + "index": 1, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 470, + "y": 470, + "index": 2, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 450, + "y": 450, + "index": 3, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 450, + "y": 440, + "index": 4, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 470, + "y": 420, + "index": 5, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 480, + "y": 420, + "index": 6, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 500, + "y": 440, + "index": 7, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 475, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4116 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4118 + }, + "max": { + "#": 4119 + } + }, + { + "x": 450, + "y": 420 + }, + { + "x": 500, + "y": 470 + }, + { + "x": 475, + "y": 445 + }, + [ + { + "#": 4122 + }, + { + "#": 4123 + }, + { + "#": 4124 + }, + { + "#": 4125 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 175, + "type": "body", + "label": "Body", + "parts": { + "#": 4127 + }, + "angle": 0, + "vertices": { + "#": 4172 + }, + "position": { + "#": 4181 + }, + "force": { + "#": 4182 + }, + "torque": 0, + "positionImpulse": { + "#": 4183 + }, + "constraintImpulse": { + "#": 4184 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4185 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4186 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4187 + }, + "bounds": { + "#": 4189 + }, + "positionPrev": { + "#": 4192 + }, + "anglePrev": 0, + "axes": { + "#": 4193 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4126 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4126 + }, + { + "#": 4128 + }, + { + "#": 4150 + } + ], + { + "id": 173, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4129 + }, + "angle": 0, + "vertices": { + "#": 4130 + }, + "position": { + "#": 4135 + }, + "force": { + "#": 4136 + }, + "torque": 0, + "positionImpulse": { + "#": 4137 + }, + "constraintImpulse": { + "#": 4138 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4139 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4140 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4141 + }, + "bounds": { + "#": 4143 + }, + "positionPrev": { + "#": 4146 + }, + "anglePrev": 0, + "axes": { + "#": 4147 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4126 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4128 + } + ], + [ + { + "#": 4131 + }, + { + "#": 4132 + }, + { + "#": 4133 + }, + { + "#": 4134 + } + ], + { + "x": 500, + "y": 440, + "index": 0, + "body": { + "#": 4128 + }, + "isInternal": false + }, + { + "x": 550, + "y": 440, + "index": 1, + "body": { + "#": 4128 + }, + "isInternal": false + }, + { + "x": 550, + "y": 450, + "index": 2, + "body": { + "#": 4128 + }, + "isInternal": false + }, + { + "x": 500, + "y": 450, + "index": 3, + "body": { + "#": 4128 + }, + "isInternal": false + }, + { + "x": 525, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4142 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4144 + }, + "max": { + "#": 4145 + } + }, + { + "x": 500, + "y": 440 + }, + { + "x": 550, + "y": 450 + }, + { + "x": 500, + "y": 420 + }, + [ + { + "#": 4148 + }, + { + "#": 4149 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 174, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4151 + }, + "angle": 0, + "vertices": { + "#": 4152 + }, + "position": { + "#": 4157 + }, + "force": { + "#": 4158 + }, + "torque": 0, + "positionImpulse": { + "#": 4159 + }, + "constraintImpulse": { + "#": 4160 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4161 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4162 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4163 + }, + "bounds": { + "#": 4165 + }, + "positionPrev": { + "#": 4168 + }, + "anglePrev": 0, + "axes": { + "#": 4169 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4126 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4150 + } + ], + [ + { + "#": 4153 + }, + { + "#": 4154 + }, + { + "#": 4155 + }, + { + "#": 4156 + } + ], + { + "x": 520, + "y": 420, + "index": 0, + "body": { + "#": 4150 + }, + "isInternal": false + }, + { + "x": 530, + "y": 420, + "index": 1, + "body": { + "#": 4150 + }, + "isInternal": false + }, + { + "x": 530, + "y": 470, + "index": 2, + "body": { + "#": 4150 + }, + "isInternal": false + }, + { + "x": 520, + "y": 470, + "index": 3, + "body": { + "#": 4150 + }, + "isInternal": false + }, + { + "x": 525, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4164 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4166 + }, + "max": { + "#": 4167 + } + }, + { + "x": 520, + "y": 420 + }, + { + "x": 530, + "y": 470 + }, + { + "x": 500, + "y": 420 + }, + [ + { + "#": 4170 + }, + { + "#": 4171 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4173 + }, + { + "#": 4174 + }, + { + "#": 4175 + }, + { + "#": 4176 + }, + { + "#": 4177 + }, + { + "#": 4178 + }, + { + "#": 4179 + }, + { + "#": 4180 + } + ], + { + "x": 550, + "y": 450, + "index": 0, + "body": { + "#": 4126 + }, + "isInternal": false + }, + { + "x": 530, + "y": 470, + "index": 1, + "body": { + "#": 4126 + }, + "isInternal": false + }, + { + "x": 520, + "y": 470, + "index": 2, + "body": { + "#": 4126 + }, + "isInternal": false + }, + { + "x": 500, + "y": 450, + "index": 3, + "body": { + "#": 4126 + }, + "isInternal": false + }, + { + "x": 500, + "y": 440, + "index": 4, + "body": { + "#": 4126 + }, + "isInternal": false + }, + { + "x": 520, + "y": 420, + "index": 5, + "body": { + "#": 4126 + }, + "isInternal": false + }, + { + "x": 530, + "y": 420, + "index": 6, + "body": { + "#": 4126 + }, + "isInternal": false + }, + { + "x": 550, + "y": 440, + "index": 7, + "body": { + "#": 4126 + }, + "isInternal": false + }, + { + "x": 525, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4188 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4190 + }, + "max": { + "#": 4191 + } + }, + { + "x": 500, + "y": 420 + }, + { + "x": 550, + "y": 470 + }, + { + "x": 525, + "y": 445 + }, + [ + { + "#": 4194 + }, + { + "#": 4195 + }, + { + "#": 4196 + }, + { + "#": 4197 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 178, + "type": "body", + "label": "Body", + "parts": { + "#": 4199 + }, + "angle": 0, + "vertices": { + "#": 4244 + }, + "position": { + "#": 4253 + }, + "force": { + "#": 4254 + }, + "torque": 0, + "positionImpulse": { + "#": 4255 + }, + "constraintImpulse": { + "#": 4256 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4257 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4258 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4259 + }, + "bounds": { + "#": 4261 + }, + "positionPrev": { + "#": 4264 + }, + "anglePrev": 0, + "axes": { + "#": 4265 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4198 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4198 + }, + { + "#": 4200 + }, + { + "#": 4222 + } + ], + { + "id": 176, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4201 + }, + "angle": 0, + "vertices": { + "#": 4202 + }, + "position": { + "#": 4207 + }, + "force": { + "#": 4208 + }, + "torque": 0, + "positionImpulse": { + "#": 4209 + }, + "constraintImpulse": { + "#": 4210 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4211 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4212 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4213 + }, + "bounds": { + "#": 4215 + }, + "positionPrev": { + "#": 4218 + }, + "anglePrev": 0, + "axes": { + "#": 4219 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4198 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4200 + } + ], + [ + { + "#": 4203 + }, + { + "#": 4204 + }, + { + "#": 4205 + }, + { + "#": 4206 + } + ], + { + "x": 550, + "y": 440, + "index": 0, + "body": { + "#": 4200 + }, + "isInternal": false + }, + { + "x": 600, + "y": 440, + "index": 1, + "body": { + "#": 4200 + }, + "isInternal": false + }, + { + "x": 600, + "y": 450, + "index": 2, + "body": { + "#": 4200 + }, + "isInternal": false + }, + { + "x": 550, + "y": 450, + "index": 3, + "body": { + "#": 4200 + }, + "isInternal": false + }, + { + "x": 575, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4214 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4216 + }, + "max": { + "#": 4217 + } + }, + { + "x": 550, + "y": 440 + }, + { + "x": 600, + "y": 450 + }, + { + "x": 550, + "y": 420 + }, + [ + { + "#": 4220 + }, + { + "#": 4221 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 177, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4223 + }, + "angle": 0, + "vertices": { + "#": 4224 + }, + "position": { + "#": 4229 + }, + "force": { + "#": 4230 + }, + "torque": 0, + "positionImpulse": { + "#": 4231 + }, + "constraintImpulse": { + "#": 4232 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4233 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4234 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4235 + }, + "bounds": { + "#": 4237 + }, + "positionPrev": { + "#": 4240 + }, + "anglePrev": 0, + "axes": { + "#": 4241 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4198 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4222 + } + ], + [ + { + "#": 4225 + }, + { + "#": 4226 + }, + { + "#": 4227 + }, + { + "#": 4228 + } + ], + { + "x": 570, + "y": 420, + "index": 0, + "body": { + "#": 4222 + }, + "isInternal": false + }, + { + "x": 580, + "y": 420, + "index": 1, + "body": { + "#": 4222 + }, + "isInternal": false + }, + { + "x": 580, + "y": 470, + "index": 2, + "body": { + "#": 4222 + }, + "isInternal": false + }, + { + "x": 570, + "y": 470, + "index": 3, + "body": { + "#": 4222 + }, + "isInternal": false + }, + { + "x": 575, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4236 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4238 + }, + "max": { + "#": 4239 + } + }, + { + "x": 570, + "y": 420 + }, + { + "x": 580, + "y": 470 + }, + { + "x": 550, + "y": 420 + }, + [ + { + "#": 4242 + }, + { + "#": 4243 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4245 + }, + { + "#": 4246 + }, + { + "#": 4247 + }, + { + "#": 4248 + }, + { + "#": 4249 + }, + { + "#": 4250 + }, + { + "#": 4251 + }, + { + "#": 4252 + } + ], + { + "x": 600, + "y": 450, + "index": 0, + "body": { + "#": 4198 + }, + "isInternal": false + }, + { + "x": 580, + "y": 470, + "index": 1, + "body": { + "#": 4198 + }, + "isInternal": false + }, + { + "x": 570, + "y": 470, + "index": 2, + "body": { + "#": 4198 + }, + "isInternal": false + }, + { + "x": 550, + "y": 450, + "index": 3, + "body": { + "#": 4198 + }, + "isInternal": false + }, + { + "x": 550, + "y": 440, + "index": 4, + "body": { + "#": 4198 + }, + "isInternal": false + }, + { + "x": 570, + "y": 420, + "index": 5, + "body": { + "#": 4198 + }, + "isInternal": false + }, + { + "x": 580, + "y": 420, + "index": 6, + "body": { + "#": 4198 + }, + "isInternal": false + }, + { + "x": 600, + "y": 440, + "index": 7, + "body": { + "#": 4198 + }, + "isInternal": false + }, + { + "x": 575, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4260 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4262 + }, + "max": { + "#": 4263 + } + }, + { + "x": 550, + "y": 420 + }, + { + "x": 600, + "y": 470 + }, + { + "x": 575, + "y": 445 + }, + [ + { + "#": 4266 + }, + { + "#": 4267 + }, + { + "#": 4268 + }, + { + "#": 4269 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 181, + "type": "body", + "label": "Body", + "parts": { + "#": 4271 + }, + "angle": 0, + "vertices": { + "#": 4316 + }, + "position": { + "#": 4325 + }, + "force": { + "#": 4326 + }, + "torque": 0, + "positionImpulse": { + "#": 4327 + }, + "constraintImpulse": { + "#": 4328 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4329 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4330 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4331 + }, + "bounds": { + "#": 4333 + }, + "positionPrev": { + "#": 4336 + }, + "anglePrev": 0, + "axes": { + "#": 4337 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4270 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4270 + }, + { + "#": 4272 + }, + { + "#": 4294 + } + ], + { + "id": 179, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4273 + }, + "angle": 0, + "vertices": { + "#": 4274 + }, + "position": { + "#": 4279 + }, + "force": { + "#": 4280 + }, + "torque": 0, + "positionImpulse": { + "#": 4281 + }, + "constraintImpulse": { + "#": 4282 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4283 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4284 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4285 + }, + "bounds": { + "#": 4287 + }, + "positionPrev": { + "#": 4290 + }, + "anglePrev": 0, + "axes": { + "#": 4291 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4270 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4272 + } + ], + [ + { + "#": 4275 + }, + { + "#": 4276 + }, + { + "#": 4277 + }, + { + "#": 4278 + } + ], + { + "x": 600, + "y": 440, + "index": 0, + "body": { + "#": 4272 + }, + "isInternal": false + }, + { + "x": 650, + "y": 440, + "index": 1, + "body": { + "#": 4272 + }, + "isInternal": false + }, + { + "x": 650, + "y": 450, + "index": 2, + "body": { + "#": 4272 + }, + "isInternal": false + }, + { + "x": 600, + "y": 450, + "index": 3, + "body": { + "#": 4272 + }, + "isInternal": false + }, + { + "x": 625, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4286 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4288 + }, + "max": { + "#": 4289 + } + }, + { + "x": 600, + "y": 440 + }, + { + "x": 650, + "y": 450 + }, + { + "x": 600, + "y": 420 + }, + [ + { + "#": 4292 + }, + { + "#": 4293 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 180, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4295 + }, + "angle": 0, + "vertices": { + "#": 4296 + }, + "position": { + "#": 4301 + }, + "force": { + "#": 4302 + }, + "torque": 0, + "positionImpulse": { + "#": 4303 + }, + "constraintImpulse": { + "#": 4304 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4305 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4306 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4307 + }, + "bounds": { + "#": 4309 + }, + "positionPrev": { + "#": 4312 + }, + "anglePrev": 0, + "axes": { + "#": 4313 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4270 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4294 + } + ], + [ + { + "#": 4297 + }, + { + "#": 4298 + }, + { + "#": 4299 + }, + { + "#": 4300 + } + ], + { + "x": 620, + "y": 420, + "index": 0, + "body": { + "#": 4294 + }, + "isInternal": false + }, + { + "x": 630, + "y": 420, + "index": 1, + "body": { + "#": 4294 + }, + "isInternal": false + }, + { + "x": 630, + "y": 470, + "index": 2, + "body": { + "#": 4294 + }, + "isInternal": false + }, + { + "x": 620, + "y": 470, + "index": 3, + "body": { + "#": 4294 + }, + "isInternal": false + }, + { + "x": 625, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4308 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4310 + }, + "max": { + "#": 4311 + } + }, + { + "x": 620, + "y": 420 + }, + { + "x": 630, + "y": 470 + }, + { + "x": 600, + "y": 420 + }, + [ + { + "#": 4314 + }, + { + "#": 4315 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4317 + }, + { + "#": 4318 + }, + { + "#": 4319 + }, + { + "#": 4320 + }, + { + "#": 4321 + }, + { + "#": 4322 + }, + { + "#": 4323 + }, + { + "#": 4324 + } + ], + { + "x": 650, + "y": 450, + "index": 0, + "body": { + "#": 4270 + }, + "isInternal": false + }, + { + "x": 630, + "y": 470, + "index": 1, + "body": { + "#": 4270 + }, + "isInternal": false + }, + { + "x": 620, + "y": 470, + "index": 2, + "body": { + "#": 4270 + }, + "isInternal": false + }, + { + "x": 600, + "y": 450, + "index": 3, + "body": { + "#": 4270 + }, + "isInternal": false + }, + { + "x": 600, + "y": 440, + "index": 4, + "body": { + "#": 4270 + }, + "isInternal": false + }, + { + "x": 620, + "y": 420, + "index": 5, + "body": { + "#": 4270 + }, + "isInternal": false + }, + { + "x": 630, + "y": 420, + "index": 6, + "body": { + "#": 4270 + }, + "isInternal": false + }, + { + "x": 650, + "y": 440, + "index": 7, + "body": { + "#": 4270 + }, + "isInternal": false + }, + { + "x": 625, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4332 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4334 + }, + "max": { + "#": 4335 + } + }, + { + "x": 600, + "y": 420 + }, + { + "x": 650, + "y": 470 + }, + { + "x": 625, + "y": 445 + }, + [ + { + "#": 4338 + }, + { + "#": 4339 + }, + { + "#": 4340 + }, + { + "#": 4341 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 184, + "type": "body", + "label": "Body", + "parts": { + "#": 4343 + }, + "angle": 0, + "vertices": { + "#": 4388 + }, + "position": { + "#": 4397 + }, + "force": { + "#": 4398 + }, + "torque": 0, + "positionImpulse": { + "#": 4399 + }, + "constraintImpulse": { + "#": 4400 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4401 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4402 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4403 + }, + "bounds": { + "#": 4405 + }, + "positionPrev": { + "#": 4408 + }, + "anglePrev": 0, + "axes": { + "#": 4409 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4342 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4342 + }, + { + "#": 4344 + }, + { + "#": 4366 + } + ], + { + "id": 182, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4345 + }, + "angle": 0, + "vertices": { + "#": 4346 + }, + "position": { + "#": 4351 + }, + "force": { + "#": 4352 + }, + "torque": 0, + "positionImpulse": { + "#": 4353 + }, + "constraintImpulse": { + "#": 4354 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4355 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4356 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4357 + }, + "bounds": { + "#": 4359 + }, + "positionPrev": { + "#": 4362 + }, + "anglePrev": 0, + "axes": { + "#": 4363 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4342 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4344 + } + ], + [ + { + "#": 4347 + }, + { + "#": 4348 + }, + { + "#": 4349 + }, + { + "#": 4350 + } + ], + { + "x": 650, + "y": 440, + "index": 0, + "body": { + "#": 4344 + }, + "isInternal": false + }, + { + "x": 700, + "y": 440, + "index": 1, + "body": { + "#": 4344 + }, + "isInternal": false + }, + { + "x": 700, + "y": 450, + "index": 2, + "body": { + "#": 4344 + }, + "isInternal": false + }, + { + "x": 650, + "y": 450, + "index": 3, + "body": { + "#": 4344 + }, + "isInternal": false + }, + { + "x": 675, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4358 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4360 + }, + "max": { + "#": 4361 + } + }, + { + "x": 650, + "y": 440 + }, + { + "x": 700, + "y": 450 + }, + { + "x": 650, + "y": 420 + }, + [ + { + "#": 4364 + }, + { + "#": 4365 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 183, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4367 + }, + "angle": 0, + "vertices": { + "#": 4368 + }, + "position": { + "#": 4373 + }, + "force": { + "#": 4374 + }, + "torque": 0, + "positionImpulse": { + "#": 4375 + }, + "constraintImpulse": { + "#": 4376 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4377 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4378 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4379 + }, + "bounds": { + "#": 4381 + }, + "positionPrev": { + "#": 4384 + }, + "anglePrev": 0, + "axes": { + "#": 4385 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4342 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4366 + } + ], + [ + { + "#": 4369 + }, + { + "#": 4370 + }, + { + "#": 4371 + }, + { + "#": 4372 + } + ], + { + "x": 670, + "y": 420, + "index": 0, + "body": { + "#": 4366 + }, + "isInternal": false + }, + { + "x": 680, + "y": 420, + "index": 1, + "body": { + "#": 4366 + }, + "isInternal": false + }, + { + "x": 680, + "y": 470, + "index": 2, + "body": { + "#": 4366 + }, + "isInternal": false + }, + { + "x": 670, + "y": 470, + "index": 3, + "body": { + "#": 4366 + }, + "isInternal": false + }, + { + "x": 675, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4380 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4382 + }, + "max": { + "#": 4383 + } + }, + { + "x": 670, + "y": 420 + }, + { + "x": 680, + "y": 470 + }, + { + "x": 650, + "y": 420 + }, + [ + { + "#": 4386 + }, + { + "#": 4387 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4389 + }, + { + "#": 4390 + }, + { + "#": 4391 + }, + { + "#": 4392 + }, + { + "#": 4393 + }, + { + "#": 4394 + }, + { + "#": 4395 + }, + { + "#": 4396 + } + ], + { + "x": 700, + "y": 450, + "index": 0, + "body": { + "#": 4342 + }, + "isInternal": false + }, + { + "x": 680, + "y": 470, + "index": 1, + "body": { + "#": 4342 + }, + "isInternal": false + }, + { + "x": 670, + "y": 470, + "index": 2, + "body": { + "#": 4342 + }, + "isInternal": false + }, + { + "x": 650, + "y": 450, + "index": 3, + "body": { + "#": 4342 + }, + "isInternal": false + }, + { + "x": 650, + "y": 440, + "index": 4, + "body": { + "#": 4342 + }, + "isInternal": false + }, + { + "x": 670, + "y": 420, + "index": 5, + "body": { + "#": 4342 + }, + "isInternal": false + }, + { + "x": 680, + "y": 420, + "index": 6, + "body": { + "#": 4342 + }, + "isInternal": false + }, + { + "x": 700, + "y": 440, + "index": 7, + "body": { + "#": 4342 + }, + "isInternal": false + }, + { + "x": 675, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4404 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4406 + }, + "max": { + "#": 4407 + } + }, + { + "x": 650, + "y": 420 + }, + { + "x": 700, + "y": 470 + }, + { + "x": 675, + "y": 445 + }, + [ + { + "#": 4410 + }, + { + "#": 4411 + }, + { + "#": 4412 + }, + { + "#": 4413 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 187, + "type": "body", + "label": "Body", + "parts": { + "#": 4415 + }, + "angle": 0, + "vertices": { + "#": 4460 + }, + "position": { + "#": 4469 + }, + "force": { + "#": 4470 + }, + "torque": 0, + "positionImpulse": { + "#": 4471 + }, + "constraintImpulse": { + "#": 4472 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4473 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4474 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4475 + }, + "bounds": { + "#": 4477 + }, + "positionPrev": { + "#": 4480 + }, + "anglePrev": 0, + "axes": { + "#": 4481 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4414 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4414 + }, + { + "#": 4416 + }, + { + "#": 4438 + } + ], + { + "id": 185, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4417 + }, + "angle": 0, + "vertices": { + "#": 4418 + }, + "position": { + "#": 4423 + }, + "force": { + "#": 4424 + }, + "torque": 0, + "positionImpulse": { + "#": 4425 + }, + "constraintImpulse": { + "#": 4426 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4427 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4428 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4429 + }, + "bounds": { + "#": 4431 + }, + "positionPrev": { + "#": 4434 + }, + "anglePrev": 0, + "axes": { + "#": 4435 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4414 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4416 + } + ], + [ + { + "#": 4419 + }, + { + "#": 4420 + }, + { + "#": 4421 + }, + { + "#": 4422 + } + ], + { + "x": 100, + "y": 490, + "index": 0, + "body": { + "#": 4416 + }, + "isInternal": false + }, + { + "x": 150, + "y": 490, + "index": 1, + "body": { + "#": 4416 + }, + "isInternal": false + }, + { + "x": 150, + "y": 500, + "index": 2, + "body": { + "#": 4416 + }, + "isInternal": false + }, + { + "x": 100, + "y": 500, + "index": 3, + "body": { + "#": 4416 + }, + "isInternal": false + }, + { + "x": 125, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4430 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4432 + }, + "max": { + "#": 4433 + } + }, + { + "x": 100, + "y": 490 + }, + { + "x": 150, + "y": 500 + }, + { + "x": 100, + "y": 470 + }, + [ + { + "#": 4436 + }, + { + "#": 4437 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 186, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4439 + }, + "angle": 0, + "vertices": { + "#": 4440 + }, + "position": { + "#": 4445 + }, + "force": { + "#": 4446 + }, + "torque": 0, + "positionImpulse": { + "#": 4447 + }, + "constraintImpulse": { + "#": 4448 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4449 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4450 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4451 + }, + "bounds": { + "#": 4453 + }, + "positionPrev": { + "#": 4456 + }, + "anglePrev": 0, + "axes": { + "#": 4457 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4414 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4438 + } + ], + [ + { + "#": 4441 + }, + { + "#": 4442 + }, + { + "#": 4443 + }, + { + "#": 4444 + } + ], + { + "x": 120, + "y": 470, + "index": 0, + "body": { + "#": 4438 + }, + "isInternal": false + }, + { + "x": 130, + "y": 470, + "index": 1, + "body": { + "#": 4438 + }, + "isInternal": false + }, + { + "x": 130, + "y": 520, + "index": 2, + "body": { + "#": 4438 + }, + "isInternal": false + }, + { + "x": 120, + "y": 520, + "index": 3, + "body": { + "#": 4438 + }, + "isInternal": false + }, + { + "x": 125, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4452 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4454 + }, + "max": { + "#": 4455 + } + }, + { + "x": 120, + "y": 470 + }, + { + "x": 130, + "y": 520 + }, + { + "x": 100, + "y": 470 + }, + [ + { + "#": 4458 + }, + { + "#": 4459 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4461 + }, + { + "#": 4462 + }, + { + "#": 4463 + }, + { + "#": 4464 + }, + { + "#": 4465 + }, + { + "#": 4466 + }, + { + "#": 4467 + }, + { + "#": 4468 + } + ], + { + "x": 150, + "y": 500, + "index": 0, + "body": { + "#": 4414 + }, + "isInternal": false + }, + { + "x": 130, + "y": 520, + "index": 1, + "body": { + "#": 4414 + }, + "isInternal": false + }, + { + "x": 120, + "y": 520, + "index": 2, + "body": { + "#": 4414 + }, + "isInternal": false + }, + { + "x": 100, + "y": 500, + "index": 3, + "body": { + "#": 4414 + }, + "isInternal": false + }, + { + "x": 100, + "y": 490, + "index": 4, + "body": { + "#": 4414 + }, + "isInternal": false + }, + { + "x": 120, + "y": 470, + "index": 5, + "body": { + "#": 4414 + }, + "isInternal": false + }, + { + "x": 130, + "y": 470, + "index": 6, + "body": { + "#": 4414 + }, + "isInternal": false + }, + { + "x": 150, + "y": 490, + "index": 7, + "body": { + "#": 4414 + }, + "isInternal": false + }, + { + "x": 125, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4476 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4478 + }, + "max": { + "#": 4479 + } + }, + { + "x": 100, + "y": 470 + }, + { + "x": 150, + "y": 520 + }, + { + "x": 125, + "y": 495 + }, + [ + { + "#": 4482 + }, + { + "#": 4483 + }, + { + "#": 4484 + }, + { + "#": 4485 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 190, + "type": "body", + "label": "Body", + "parts": { + "#": 4487 + }, + "angle": 0, + "vertices": { + "#": 4532 + }, + "position": { + "#": 4541 + }, + "force": { + "#": 4542 + }, + "torque": 0, + "positionImpulse": { + "#": 4543 + }, + "constraintImpulse": { + "#": 4544 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4545 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4546 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4547 + }, + "bounds": { + "#": 4549 + }, + "positionPrev": { + "#": 4552 + }, + "anglePrev": 0, + "axes": { + "#": 4553 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4486 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4486 + }, + { + "#": 4488 + }, + { + "#": 4510 + } + ], + { + "id": 188, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4489 + }, + "angle": 0, + "vertices": { + "#": 4490 + }, + "position": { + "#": 4495 + }, + "force": { + "#": 4496 + }, + "torque": 0, + "positionImpulse": { + "#": 4497 + }, + "constraintImpulse": { + "#": 4498 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4499 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4500 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4501 + }, + "bounds": { + "#": 4503 + }, + "positionPrev": { + "#": 4506 + }, + "anglePrev": 0, + "axes": { + "#": 4507 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4486 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4488 + } + ], + [ + { + "#": 4491 + }, + { + "#": 4492 + }, + { + "#": 4493 + }, + { + "#": 4494 + } + ], + { + "x": 150, + "y": 490, + "index": 0, + "body": { + "#": 4488 + }, + "isInternal": false + }, + { + "x": 200, + "y": 490, + "index": 1, + "body": { + "#": 4488 + }, + "isInternal": false + }, + { + "x": 200, + "y": 500, + "index": 2, + "body": { + "#": 4488 + }, + "isInternal": false + }, + { + "x": 150, + "y": 500, + "index": 3, + "body": { + "#": 4488 + }, + "isInternal": false + }, + { + "x": 175, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4502 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4504 + }, + "max": { + "#": 4505 + } + }, + { + "x": 150, + "y": 490 + }, + { + "x": 200, + "y": 500 + }, + { + "x": 150, + "y": 470 + }, + [ + { + "#": 4508 + }, + { + "#": 4509 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 189, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4511 + }, + "angle": 0, + "vertices": { + "#": 4512 + }, + "position": { + "#": 4517 + }, + "force": { + "#": 4518 + }, + "torque": 0, + "positionImpulse": { + "#": 4519 + }, + "constraintImpulse": { + "#": 4520 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4521 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4522 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4523 + }, + "bounds": { + "#": 4525 + }, + "positionPrev": { + "#": 4528 + }, + "anglePrev": 0, + "axes": { + "#": 4529 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4486 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4510 + } + ], + [ + { + "#": 4513 + }, + { + "#": 4514 + }, + { + "#": 4515 + }, + { + "#": 4516 + } + ], + { + "x": 170, + "y": 470, + "index": 0, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 180, + "y": 470, + "index": 1, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 180, + "y": 520, + "index": 2, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 170, + "y": 520, + "index": 3, + "body": { + "#": 4510 + }, + "isInternal": false + }, + { + "x": 175, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4524 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4526 + }, + "max": { + "#": 4527 + } + }, + { + "x": 170, + "y": 470 + }, + { + "x": 180, + "y": 520 + }, + { + "x": 150, + "y": 470 + }, + [ + { + "#": 4530 + }, + { + "#": 4531 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4533 + }, + { + "#": 4534 + }, + { + "#": 4535 + }, + { + "#": 4536 + }, + { + "#": 4537 + }, + { + "#": 4538 + }, + { + "#": 4539 + }, + { + "#": 4540 + } + ], + { + "x": 200, + "y": 500, + "index": 0, + "body": { + "#": 4486 + }, + "isInternal": false + }, + { + "x": 180, + "y": 520, + "index": 1, + "body": { + "#": 4486 + }, + "isInternal": false + }, + { + "x": 170, + "y": 520, + "index": 2, + "body": { + "#": 4486 + }, + "isInternal": false + }, + { + "x": 150, + "y": 500, + "index": 3, + "body": { + "#": 4486 + }, + "isInternal": false + }, + { + "x": 150, + "y": 490, + "index": 4, + "body": { + "#": 4486 + }, + "isInternal": false + }, + { + "x": 170, + "y": 470, + "index": 5, + "body": { + "#": 4486 + }, + "isInternal": false + }, + { + "x": 180, + "y": 470, + "index": 6, + "body": { + "#": 4486 + }, + "isInternal": false + }, + { + "x": 200, + "y": 490, + "index": 7, + "body": { + "#": 4486 + }, + "isInternal": false + }, + { + "x": 175, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4548 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4550 + }, + "max": { + "#": 4551 + } + }, + { + "x": 150, + "y": 470 + }, + { + "x": 200, + "y": 520 + }, + { + "x": 175, + "y": 495 + }, + [ + { + "#": 4554 + }, + { + "#": 4555 + }, + { + "#": 4556 + }, + { + "#": 4557 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 193, + "type": "body", + "label": "Body", + "parts": { + "#": 4559 + }, + "angle": 0, + "vertices": { + "#": 4604 + }, + "position": { + "#": 4613 + }, + "force": { + "#": 4614 + }, + "torque": 0, + "positionImpulse": { + "#": 4615 + }, + "constraintImpulse": { + "#": 4616 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4617 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4618 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4619 + }, + "bounds": { + "#": 4621 + }, + "positionPrev": { + "#": 4624 + }, + "anglePrev": 0, + "axes": { + "#": 4625 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4558 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4558 + }, + { + "#": 4560 + }, + { + "#": 4582 + } + ], + { + "id": 191, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4561 + }, + "angle": 0, + "vertices": { + "#": 4562 + }, + "position": { + "#": 4567 + }, + "force": { + "#": 4568 + }, + "torque": 0, + "positionImpulse": { + "#": 4569 + }, + "constraintImpulse": { + "#": 4570 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4571 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4572 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4573 + }, + "bounds": { + "#": 4575 + }, + "positionPrev": { + "#": 4578 + }, + "anglePrev": 0, + "axes": { + "#": 4579 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4558 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4560 + } + ], + [ + { + "#": 4563 + }, + { + "#": 4564 + }, + { + "#": 4565 + }, + { + "#": 4566 + } + ], + { + "x": 200, + "y": 490, + "index": 0, + "body": { + "#": 4560 + }, + "isInternal": false + }, + { + "x": 250, + "y": 490, + "index": 1, + "body": { + "#": 4560 + }, + "isInternal": false + }, + { + "x": 250, + "y": 500, + "index": 2, + "body": { + "#": 4560 + }, + "isInternal": false + }, + { + "x": 200, + "y": 500, + "index": 3, + "body": { + "#": 4560 + }, + "isInternal": false + }, + { + "x": 225, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4574 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4576 + }, + "max": { + "#": 4577 + } + }, + { + "x": 200, + "y": 490 + }, + { + "x": 250, + "y": 500 + }, + { + "x": 200, + "y": 470 + }, + [ + { + "#": 4580 + }, + { + "#": 4581 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 192, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4583 + }, + "angle": 0, + "vertices": { + "#": 4584 + }, + "position": { + "#": 4589 + }, + "force": { + "#": 4590 + }, + "torque": 0, + "positionImpulse": { + "#": 4591 + }, + "constraintImpulse": { + "#": 4592 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4593 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4594 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4595 + }, + "bounds": { + "#": 4597 + }, + "positionPrev": { + "#": 4600 + }, + "anglePrev": 0, + "axes": { + "#": 4601 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4558 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4582 + } + ], + [ + { + "#": 4585 + }, + { + "#": 4586 + }, + { + "#": 4587 + }, + { + "#": 4588 + } + ], + { + "x": 220, + "y": 470, + "index": 0, + "body": { + "#": 4582 + }, + "isInternal": false + }, + { + "x": 230, + "y": 470, + "index": 1, + "body": { + "#": 4582 + }, + "isInternal": false + }, + { + "x": 230, + "y": 520, + "index": 2, + "body": { + "#": 4582 + }, + "isInternal": false + }, + { + "x": 220, + "y": 520, + "index": 3, + "body": { + "#": 4582 + }, + "isInternal": false + }, + { + "x": 225, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4596 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4598 + }, + "max": { + "#": 4599 + } + }, + { + "x": 220, + "y": 470 + }, + { + "x": 230, + "y": 520 + }, + { + "x": 200, + "y": 470 + }, + [ + { + "#": 4602 + }, + { + "#": 4603 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4605 + }, + { + "#": 4606 + }, + { + "#": 4607 + }, + { + "#": 4608 + }, + { + "#": 4609 + }, + { + "#": 4610 + }, + { + "#": 4611 + }, + { + "#": 4612 + } + ], + { + "x": 250, + "y": 500, + "index": 0, + "body": { + "#": 4558 + }, + "isInternal": false + }, + { + "x": 230, + "y": 520, + "index": 1, + "body": { + "#": 4558 + }, + "isInternal": false + }, + { + "x": 220, + "y": 520, + "index": 2, + "body": { + "#": 4558 + }, + "isInternal": false + }, + { + "x": 200, + "y": 500, + "index": 3, + "body": { + "#": 4558 + }, + "isInternal": false + }, + { + "x": 200, + "y": 490, + "index": 4, + "body": { + "#": 4558 + }, + "isInternal": false + }, + { + "x": 220, + "y": 470, + "index": 5, + "body": { + "#": 4558 + }, + "isInternal": false + }, + { + "x": 230, + "y": 470, + "index": 6, + "body": { + "#": 4558 + }, + "isInternal": false + }, + { + "x": 250, + "y": 490, + "index": 7, + "body": { + "#": 4558 + }, + "isInternal": false + }, + { + "x": 225, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4620 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4622 + }, + "max": { + "#": 4623 + } + }, + { + "x": 200, + "y": 470 + }, + { + "x": 250, + "y": 520 + }, + { + "x": 225, + "y": 495 + }, + [ + { + "#": 4626 + }, + { + "#": 4627 + }, + { + "#": 4628 + }, + { + "#": 4629 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 196, + "type": "body", + "label": "Body", + "parts": { + "#": 4631 + }, + "angle": 0, + "vertices": { + "#": 4676 + }, + "position": { + "#": 4685 + }, + "force": { + "#": 4686 + }, + "torque": 0, + "positionImpulse": { + "#": 4687 + }, + "constraintImpulse": { + "#": 4688 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4689 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4690 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4691 + }, + "bounds": { + "#": 4693 + }, + "positionPrev": { + "#": 4696 + }, + "anglePrev": 0, + "axes": { + "#": 4697 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4630 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4630 + }, + { + "#": 4632 + }, + { + "#": 4654 + } + ], + { + "id": 194, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4633 + }, + "angle": 0, + "vertices": { + "#": 4634 + }, + "position": { + "#": 4639 + }, + "force": { + "#": 4640 + }, + "torque": 0, + "positionImpulse": { + "#": 4641 + }, + "constraintImpulse": { + "#": 4642 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4643 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4644 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4645 + }, + "bounds": { + "#": 4647 + }, + "positionPrev": { + "#": 4650 + }, + "anglePrev": 0, + "axes": { + "#": 4651 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4630 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4632 + } + ], + [ + { + "#": 4635 + }, + { + "#": 4636 + }, + { + "#": 4637 + }, + { + "#": 4638 + } + ], + { + "x": 250, + "y": 490, + "index": 0, + "body": { + "#": 4632 + }, + "isInternal": false + }, + { + "x": 300, + "y": 490, + "index": 1, + "body": { + "#": 4632 + }, + "isInternal": false + }, + { + "x": 300, + "y": 500, + "index": 2, + "body": { + "#": 4632 + }, + "isInternal": false + }, + { + "x": 250, + "y": 500, + "index": 3, + "body": { + "#": 4632 + }, + "isInternal": false + }, + { + "x": 275, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4646 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4648 + }, + "max": { + "#": 4649 + } + }, + { + "x": 250, + "y": 490 + }, + { + "x": 300, + "y": 500 + }, + { + "x": 250, + "y": 470 + }, + [ + { + "#": 4652 + }, + { + "#": 4653 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 195, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4655 + }, + "angle": 0, + "vertices": { + "#": 4656 + }, + "position": { + "#": 4661 + }, + "force": { + "#": 4662 + }, + "torque": 0, + "positionImpulse": { + "#": 4663 + }, + "constraintImpulse": { + "#": 4664 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4665 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4666 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4667 + }, + "bounds": { + "#": 4669 + }, + "positionPrev": { + "#": 4672 + }, + "anglePrev": 0, + "axes": { + "#": 4673 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4630 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4654 + } + ], + [ + { + "#": 4657 + }, + { + "#": 4658 + }, + { + "#": 4659 + }, + { + "#": 4660 + } + ], + { + "x": 270, + "y": 470, + "index": 0, + "body": { + "#": 4654 + }, + "isInternal": false + }, + { + "x": 280, + "y": 470, + "index": 1, + "body": { + "#": 4654 + }, + "isInternal": false + }, + { + "x": 280, + "y": 520, + "index": 2, + "body": { + "#": 4654 + }, + "isInternal": false + }, + { + "x": 270, + "y": 520, + "index": 3, + "body": { + "#": 4654 + }, + "isInternal": false + }, + { + "x": 275, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4668 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4670 + }, + "max": { + "#": 4671 + } + }, + { + "x": 270, + "y": 470 + }, + { + "x": 280, + "y": 520 + }, + { + "x": 250, + "y": 470 + }, + [ + { + "#": 4674 + }, + { + "#": 4675 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4677 + }, + { + "#": 4678 + }, + { + "#": 4679 + }, + { + "#": 4680 + }, + { + "#": 4681 + }, + { + "#": 4682 + }, + { + "#": 4683 + }, + { + "#": 4684 + } + ], + { + "x": 300, + "y": 500, + "index": 0, + "body": { + "#": 4630 + }, + "isInternal": false + }, + { + "x": 280, + "y": 520, + "index": 1, + "body": { + "#": 4630 + }, + "isInternal": false + }, + { + "x": 270, + "y": 520, + "index": 2, + "body": { + "#": 4630 + }, + "isInternal": false + }, + { + "x": 250, + "y": 500, + "index": 3, + "body": { + "#": 4630 + }, + "isInternal": false + }, + { + "x": 250, + "y": 490, + "index": 4, + "body": { + "#": 4630 + }, + "isInternal": false + }, + { + "x": 270, + "y": 470, + "index": 5, + "body": { + "#": 4630 + }, + "isInternal": false + }, + { + "x": 280, + "y": 470, + "index": 6, + "body": { + "#": 4630 + }, + "isInternal": false + }, + { + "x": 300, + "y": 490, + "index": 7, + "body": { + "#": 4630 + }, + "isInternal": false + }, + { + "x": 275, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4692 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4694 + }, + "max": { + "#": 4695 + } + }, + { + "x": 250, + "y": 470 + }, + { + "x": 300, + "y": 520 + }, + { + "x": 275, + "y": 495 + }, + [ + { + "#": 4698 + }, + { + "#": 4699 + }, + { + "#": 4700 + }, + { + "#": 4701 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 199, + "type": "body", + "label": "Body", + "parts": { + "#": 4703 + }, + "angle": 0, + "vertices": { + "#": 4748 + }, + "position": { + "#": 4757 + }, + "force": { + "#": 4758 + }, + "torque": 0, + "positionImpulse": { + "#": 4759 + }, + "constraintImpulse": { + "#": 4760 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4761 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4762 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4763 + }, + "bounds": { + "#": 4765 + }, + "positionPrev": { + "#": 4768 + }, + "anglePrev": 0, + "axes": { + "#": 4769 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4702 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4702 + }, + { + "#": 4704 + }, + { + "#": 4726 + } + ], + { + "id": 197, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4705 + }, + "angle": 0, + "vertices": { + "#": 4706 + }, + "position": { + "#": 4711 + }, + "force": { + "#": 4712 + }, + "torque": 0, + "positionImpulse": { + "#": 4713 + }, + "constraintImpulse": { + "#": 4714 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4715 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4716 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4717 + }, + "bounds": { + "#": 4719 + }, + "positionPrev": { + "#": 4722 + }, + "anglePrev": 0, + "axes": { + "#": 4723 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4702 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4704 + } + ], + [ + { + "#": 4707 + }, + { + "#": 4708 + }, + { + "#": 4709 + }, + { + "#": 4710 + } + ], + { + "x": 300, + "y": 490, + "index": 0, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 350, + "y": 490, + "index": 1, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 350, + "y": 500, + "index": 2, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 300, + "y": 500, + "index": 3, + "body": { + "#": 4704 + }, + "isInternal": false + }, + { + "x": 325, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4718 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4720 + }, + "max": { + "#": 4721 + } + }, + { + "x": 300, + "y": 490 + }, + { + "x": 350, + "y": 500 + }, + { + "x": 300, + "y": 470 + }, + [ + { + "#": 4724 + }, + { + "#": 4725 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 198, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4727 + }, + "angle": 0, + "vertices": { + "#": 4728 + }, + "position": { + "#": 4733 + }, + "force": { + "#": 4734 + }, + "torque": 0, + "positionImpulse": { + "#": 4735 + }, + "constraintImpulse": { + "#": 4736 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4737 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4738 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4739 + }, + "bounds": { + "#": 4741 + }, + "positionPrev": { + "#": 4744 + }, + "anglePrev": 0, + "axes": { + "#": 4745 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4702 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4726 + } + ], + [ + { + "#": 4729 + }, + { + "#": 4730 + }, + { + "#": 4731 + }, + { + "#": 4732 + } + ], + { + "x": 320, + "y": 470, + "index": 0, + "body": { + "#": 4726 + }, + "isInternal": false + }, + { + "x": 330, + "y": 470, + "index": 1, + "body": { + "#": 4726 + }, + "isInternal": false + }, + { + "x": 330, + "y": 520, + "index": 2, + "body": { + "#": 4726 + }, + "isInternal": false + }, + { + "x": 320, + "y": 520, + "index": 3, + "body": { + "#": 4726 + }, + "isInternal": false + }, + { + "x": 325, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4740 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4742 + }, + "max": { + "#": 4743 + } + }, + { + "x": 320, + "y": 470 + }, + { + "x": 330, + "y": 520 + }, + { + "x": 300, + "y": 470 + }, + [ + { + "#": 4746 + }, + { + "#": 4747 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4749 + }, + { + "#": 4750 + }, + { + "#": 4751 + }, + { + "#": 4752 + }, + { + "#": 4753 + }, + { + "#": 4754 + }, + { + "#": 4755 + }, + { + "#": 4756 + } + ], + { + "x": 350, + "y": 500, + "index": 0, + "body": { + "#": 4702 + }, + "isInternal": false + }, + { + "x": 330, + "y": 520, + "index": 1, + "body": { + "#": 4702 + }, + "isInternal": false + }, + { + "x": 320, + "y": 520, + "index": 2, + "body": { + "#": 4702 + }, + "isInternal": false + }, + { + "x": 300, + "y": 500, + "index": 3, + "body": { + "#": 4702 + }, + "isInternal": false + }, + { + "x": 300, + "y": 490, + "index": 4, + "body": { + "#": 4702 + }, + "isInternal": false + }, + { + "x": 320, + "y": 470, + "index": 5, + "body": { + "#": 4702 + }, + "isInternal": false + }, + { + "x": 330, + "y": 470, + "index": 6, + "body": { + "#": 4702 + }, + "isInternal": false + }, + { + "x": 350, + "y": 490, + "index": 7, + "body": { + "#": 4702 + }, + "isInternal": false + }, + { + "x": 325, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4764 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4766 + }, + "max": { + "#": 4767 + } + }, + { + "x": 300, + "y": 470 + }, + { + "x": 350, + "y": 520 + }, + { + "x": 325, + "y": 495 + }, + [ + { + "#": 4770 + }, + { + "#": 4771 + }, + { + "#": 4772 + }, + { + "#": 4773 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 202, + "type": "body", + "label": "Body", + "parts": { + "#": 4775 + }, + "angle": 0, + "vertices": { + "#": 4820 + }, + "position": { + "#": 4829 + }, + "force": { + "#": 4830 + }, + "torque": 0, + "positionImpulse": { + "#": 4831 + }, + "constraintImpulse": { + "#": 4832 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4833 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4834 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4835 + }, + "bounds": { + "#": 4837 + }, + "positionPrev": { + "#": 4840 + }, + "anglePrev": 0, + "axes": { + "#": 4841 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4774 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4774 + }, + { + "#": 4776 + }, + { + "#": 4798 + } + ], + { + "id": 200, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4777 + }, + "angle": 0, + "vertices": { + "#": 4778 + }, + "position": { + "#": 4783 + }, + "force": { + "#": 4784 + }, + "torque": 0, + "positionImpulse": { + "#": 4785 + }, + "constraintImpulse": { + "#": 4786 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4787 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4788 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4789 + }, + "bounds": { + "#": 4791 + }, + "positionPrev": { + "#": 4794 + }, + "anglePrev": 0, + "axes": { + "#": 4795 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4774 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4776 + } + ], + [ + { + "#": 4779 + }, + { + "#": 4780 + }, + { + "#": 4781 + }, + { + "#": 4782 + } + ], + { + "x": 350, + "y": 490, + "index": 0, + "body": { + "#": 4776 + }, + "isInternal": false + }, + { + "x": 400, + "y": 490, + "index": 1, + "body": { + "#": 4776 + }, + "isInternal": false + }, + { + "x": 400, + "y": 500, + "index": 2, + "body": { + "#": 4776 + }, + "isInternal": false + }, + { + "x": 350, + "y": 500, + "index": 3, + "body": { + "#": 4776 + }, + "isInternal": false + }, + { + "x": 375, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4790 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4792 + }, + "max": { + "#": 4793 + } + }, + { + "x": 350, + "y": 490 + }, + { + "x": 400, + "y": 500 + }, + { + "x": 350, + "y": 470 + }, + [ + { + "#": 4796 + }, + { + "#": 4797 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 201, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4799 + }, + "angle": 0, + "vertices": { + "#": 4800 + }, + "position": { + "#": 4805 + }, + "force": { + "#": 4806 + }, + "torque": 0, + "positionImpulse": { + "#": 4807 + }, + "constraintImpulse": { + "#": 4808 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4809 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4810 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4811 + }, + "bounds": { + "#": 4813 + }, + "positionPrev": { + "#": 4816 + }, + "anglePrev": 0, + "axes": { + "#": 4817 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4774 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4798 + } + ], + [ + { + "#": 4801 + }, + { + "#": 4802 + }, + { + "#": 4803 + }, + { + "#": 4804 + } + ], + { + "x": 370, + "y": 470, + "index": 0, + "body": { + "#": 4798 + }, + "isInternal": false + }, + { + "x": 380, + "y": 470, + "index": 1, + "body": { + "#": 4798 + }, + "isInternal": false + }, + { + "x": 380, + "y": 520, + "index": 2, + "body": { + "#": 4798 + }, + "isInternal": false + }, + { + "x": 370, + "y": 520, + "index": 3, + "body": { + "#": 4798 + }, + "isInternal": false + }, + { + "x": 375, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4812 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4814 + }, + "max": { + "#": 4815 + } + }, + { + "x": 370, + "y": 470 + }, + { + "x": 380, + "y": 520 + }, + { + "x": 350, + "y": 470 + }, + [ + { + "#": 4818 + }, + { + "#": 4819 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4821 + }, + { + "#": 4822 + }, + { + "#": 4823 + }, + { + "#": 4824 + }, + { + "#": 4825 + }, + { + "#": 4826 + }, + { + "#": 4827 + }, + { + "#": 4828 + } + ], + { + "x": 400, + "y": 500, + "index": 0, + "body": { + "#": 4774 + }, + "isInternal": false + }, + { + "x": 380, + "y": 520, + "index": 1, + "body": { + "#": 4774 + }, + "isInternal": false + }, + { + "x": 370, + "y": 520, + "index": 2, + "body": { + "#": 4774 + }, + "isInternal": false + }, + { + "x": 350, + "y": 500, + "index": 3, + "body": { + "#": 4774 + }, + "isInternal": false + }, + { + "x": 350, + "y": 490, + "index": 4, + "body": { + "#": 4774 + }, + "isInternal": false + }, + { + "x": 370, + "y": 470, + "index": 5, + "body": { + "#": 4774 + }, + "isInternal": false + }, + { + "x": 380, + "y": 470, + "index": 6, + "body": { + "#": 4774 + }, + "isInternal": false + }, + { + "x": 400, + "y": 490, + "index": 7, + "body": { + "#": 4774 + }, + "isInternal": false + }, + { + "x": 375, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4836 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4838 + }, + "max": { + "#": 4839 + } + }, + { + "x": 350, + "y": 470 + }, + { + "x": 400, + "y": 520 + }, + { + "x": 375, + "y": 495 + }, + [ + { + "#": 4842 + }, + { + "#": 4843 + }, + { + "#": 4844 + }, + { + "#": 4845 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 205, + "type": "body", + "label": "Body", + "parts": { + "#": 4847 + }, + "angle": 0, + "vertices": { + "#": 4892 + }, + "position": { + "#": 4901 + }, + "force": { + "#": 4902 + }, + "torque": 0, + "positionImpulse": { + "#": 4903 + }, + "constraintImpulse": { + "#": 4904 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4905 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4906 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4907 + }, + "bounds": { + "#": 4909 + }, + "positionPrev": { + "#": 4912 + }, + "anglePrev": 0, + "axes": { + "#": 4913 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4846 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4846 + }, + { + "#": 4848 + }, + { + "#": 4870 + } + ], + { + "id": 203, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4849 + }, + "angle": 0, + "vertices": { + "#": 4850 + }, + "position": { + "#": 4855 + }, + "force": { + "#": 4856 + }, + "torque": 0, + "positionImpulse": { + "#": 4857 + }, + "constraintImpulse": { + "#": 4858 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4859 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4860 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4861 + }, + "bounds": { + "#": 4863 + }, + "positionPrev": { + "#": 4866 + }, + "anglePrev": 0, + "axes": { + "#": 4867 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4846 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4848 + } + ], + [ + { + "#": 4851 + }, + { + "#": 4852 + }, + { + "#": 4853 + }, + { + "#": 4854 + } + ], + { + "x": 400, + "y": 490, + "index": 0, + "body": { + "#": 4848 + }, + "isInternal": false + }, + { + "x": 450, + "y": 490, + "index": 1, + "body": { + "#": 4848 + }, + "isInternal": false + }, + { + "x": 450, + "y": 500, + "index": 2, + "body": { + "#": 4848 + }, + "isInternal": false + }, + { + "x": 400, + "y": 500, + "index": 3, + "body": { + "#": 4848 + }, + "isInternal": false + }, + { + "x": 425, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4862 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4864 + }, + "max": { + "#": 4865 + } + }, + { + "x": 400, + "y": 490 + }, + { + "x": 450, + "y": 500 + }, + { + "x": 400, + "y": 470 + }, + [ + { + "#": 4868 + }, + { + "#": 4869 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 204, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4871 + }, + "angle": 0, + "vertices": { + "#": 4872 + }, + "position": { + "#": 4877 + }, + "force": { + "#": 4878 + }, + "torque": 0, + "positionImpulse": { + "#": 4879 + }, + "constraintImpulse": { + "#": 4880 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4881 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4882 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4883 + }, + "bounds": { + "#": 4885 + }, + "positionPrev": { + "#": 4888 + }, + "anglePrev": 0, + "axes": { + "#": 4889 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4846 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4870 + } + ], + [ + { + "#": 4873 + }, + { + "#": 4874 + }, + { + "#": 4875 + }, + { + "#": 4876 + } + ], + { + "x": 420, + "y": 470, + "index": 0, + "body": { + "#": 4870 + }, + "isInternal": false + }, + { + "x": 430, + "y": 470, + "index": 1, + "body": { + "#": 4870 + }, + "isInternal": false + }, + { + "x": 430, + "y": 520, + "index": 2, + "body": { + "#": 4870 + }, + "isInternal": false + }, + { + "x": 420, + "y": 520, + "index": 3, + "body": { + "#": 4870 + }, + "isInternal": false + }, + { + "x": 425, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4884 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4886 + }, + "max": { + "#": 4887 + } + }, + { + "x": 420, + "y": 470 + }, + { + "x": 430, + "y": 520 + }, + { + "x": 400, + "y": 470 + }, + [ + { + "#": 4890 + }, + { + "#": 4891 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4893 + }, + { + "#": 4894 + }, + { + "#": 4895 + }, + { + "#": 4896 + }, + { + "#": 4897 + }, + { + "#": 4898 + }, + { + "#": 4899 + }, + { + "#": 4900 + } + ], + { + "x": 450, + "y": 500, + "index": 0, + "body": { + "#": 4846 + }, + "isInternal": false + }, + { + "x": 430, + "y": 520, + "index": 1, + "body": { + "#": 4846 + }, + "isInternal": false + }, + { + "x": 420, + "y": 520, + "index": 2, + "body": { + "#": 4846 + }, + "isInternal": false + }, + { + "x": 400, + "y": 500, + "index": 3, + "body": { + "#": 4846 + }, + "isInternal": false + }, + { + "x": 400, + "y": 490, + "index": 4, + "body": { + "#": 4846 + }, + "isInternal": false + }, + { + "x": 420, + "y": 470, + "index": 5, + "body": { + "#": 4846 + }, + "isInternal": false + }, + { + "x": 430, + "y": 470, + "index": 6, + "body": { + "#": 4846 + }, + "isInternal": false + }, + { + "x": 450, + "y": 490, + "index": 7, + "body": { + "#": 4846 + }, + "isInternal": false + }, + { + "x": 425, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4908 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4910 + }, + "max": { + "#": 4911 + } + }, + { + "x": 400, + "y": 470 + }, + { + "x": 450, + "y": 520 + }, + { + "x": 425, + "y": 495 + }, + [ + { + "#": 4914 + }, + { + "#": 4915 + }, + { + "#": 4916 + }, + { + "#": 4917 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 208, + "type": "body", + "label": "Body", + "parts": { + "#": 4919 + }, + "angle": 0, + "vertices": { + "#": 4964 + }, + "position": { + "#": 4973 + }, + "force": { + "#": 4974 + }, + "torque": 0, + "positionImpulse": { + "#": 4975 + }, + "constraintImpulse": { + "#": 4976 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4977 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4978 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4979 + }, + "bounds": { + "#": 4981 + }, + "positionPrev": { + "#": 4984 + }, + "anglePrev": 0, + "axes": { + "#": 4985 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4918 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4918 + }, + { + "#": 4920 + }, + { + "#": 4942 + } + ], + { + "id": 206, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4921 + }, + "angle": 0, + "vertices": { + "#": 4922 + }, + "position": { + "#": 4927 + }, + "force": { + "#": 4928 + }, + "torque": 0, + "positionImpulse": { + "#": 4929 + }, + "constraintImpulse": { + "#": 4930 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4931 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4932 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4933 + }, + "bounds": { + "#": 4935 + }, + "positionPrev": { + "#": 4938 + }, + "anglePrev": 0, + "axes": { + "#": 4939 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4918 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4920 + } + ], + [ + { + "#": 4923 + }, + { + "#": 4924 + }, + { + "#": 4925 + }, + { + "#": 4926 + } + ], + { + "x": 450, + "y": 490, + "index": 0, + "body": { + "#": 4920 + }, + "isInternal": false + }, + { + "x": 500, + "y": 490, + "index": 1, + "body": { + "#": 4920 + }, + "isInternal": false + }, + { + "x": 500, + "y": 500, + "index": 2, + "body": { + "#": 4920 + }, + "isInternal": false + }, + { + "x": 450, + "y": 500, + "index": 3, + "body": { + "#": 4920 + }, + "isInternal": false + }, + { + "x": 475, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4934 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4936 + }, + "max": { + "#": 4937 + } + }, + { + "x": 450, + "y": 490 + }, + { + "x": 500, + "y": 500 + }, + { + "x": 450, + "y": 470 + }, + [ + { + "#": 4940 + }, + { + "#": 4941 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 207, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4943 + }, + "angle": 0, + "vertices": { + "#": 4944 + }, + "position": { + "#": 4949 + }, + "force": { + "#": 4950 + }, + "torque": 0, + "positionImpulse": { + "#": 4951 + }, + "constraintImpulse": { + "#": 4952 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4953 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4954 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4955 + }, + "bounds": { + "#": 4957 + }, + "positionPrev": { + "#": 4960 + }, + "anglePrev": 0, + "axes": { + "#": 4961 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4918 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4942 + } + ], + [ + { + "#": 4945 + }, + { + "#": 4946 + }, + { + "#": 4947 + }, + { + "#": 4948 + } + ], + { + "x": 470, + "y": 470, + "index": 0, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 480, + "y": 470, + "index": 1, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 480, + "y": 520, + "index": 2, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 470, + "y": 520, + "index": 3, + "body": { + "#": 4942 + }, + "isInternal": false + }, + { + "x": 475, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4956 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4958 + }, + "max": { + "#": 4959 + } + }, + { + "x": 470, + "y": 470 + }, + { + "x": 480, + "y": 520 + }, + { + "x": 450, + "y": 470 + }, + [ + { + "#": 4962 + }, + { + "#": 4963 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4965 + }, + { + "#": 4966 + }, + { + "#": 4967 + }, + { + "#": 4968 + }, + { + "#": 4969 + }, + { + "#": 4970 + }, + { + "#": 4971 + }, + { + "#": 4972 + } + ], + { + "x": 500, + "y": 500, + "index": 0, + "body": { + "#": 4918 + }, + "isInternal": false + }, + { + "x": 480, + "y": 520, + "index": 1, + "body": { + "#": 4918 + }, + "isInternal": false + }, + { + "x": 470, + "y": 520, + "index": 2, + "body": { + "#": 4918 + }, + "isInternal": false + }, + { + "x": 450, + "y": 500, + "index": 3, + "body": { + "#": 4918 + }, + "isInternal": false + }, + { + "x": 450, + "y": 490, + "index": 4, + "body": { + "#": 4918 + }, + "isInternal": false + }, + { + "x": 470, + "y": 470, + "index": 5, + "body": { + "#": 4918 + }, + "isInternal": false + }, + { + "x": 480, + "y": 470, + "index": 6, + "body": { + "#": 4918 + }, + "isInternal": false + }, + { + "x": 500, + "y": 490, + "index": 7, + "body": { + "#": 4918 + }, + "isInternal": false + }, + { + "x": 475, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4980 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4982 + }, + "max": { + "#": 4983 + } + }, + { + "x": 450, + "y": 470 + }, + { + "x": 500, + "y": 520 + }, + { + "x": 475, + "y": 495 + }, + [ + { + "#": 4986 + }, + { + "#": 4987 + }, + { + "#": 4988 + }, + { + "#": 4989 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 211, + "type": "body", + "label": "Body", + "parts": { + "#": 4991 + }, + "angle": 0, + "vertices": { + "#": 5036 + }, + "position": { + "#": 5045 + }, + "force": { + "#": 5046 + }, + "torque": 0, + "positionImpulse": { + "#": 5047 + }, + "constraintImpulse": { + "#": 5048 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5049 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5050 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5051 + }, + "bounds": { + "#": 5053 + }, + "positionPrev": { + "#": 5056 + }, + "anglePrev": 0, + "axes": { + "#": 5057 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4990 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4990 + }, + { + "#": 4992 + }, + { + "#": 5014 + } + ], + { + "id": 209, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4993 + }, + "angle": 0, + "vertices": { + "#": 4994 + }, + "position": { + "#": 4999 + }, + "force": { + "#": 5000 + }, + "torque": 0, + "positionImpulse": { + "#": 5001 + }, + "constraintImpulse": { + "#": 5002 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5003 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5004 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5005 + }, + "bounds": { + "#": 5007 + }, + "positionPrev": { + "#": 5010 + }, + "anglePrev": 0, + "axes": { + "#": 5011 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4990 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4992 + } + ], + [ + { + "#": 4995 + }, + { + "#": 4996 + }, + { + "#": 4997 + }, + { + "#": 4998 + } + ], + { + "x": 500, + "y": 490, + "index": 0, + "body": { + "#": 4992 + }, + "isInternal": false + }, + { + "x": 550, + "y": 490, + "index": 1, + "body": { + "#": 4992 + }, + "isInternal": false + }, + { + "x": 550, + "y": 500, + "index": 2, + "body": { + "#": 4992 + }, + "isInternal": false + }, + { + "x": 500, + "y": 500, + "index": 3, + "body": { + "#": 4992 + }, + "isInternal": false + }, + { + "x": 525, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5006 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5008 + }, + "max": { + "#": 5009 + } + }, + { + "x": 500, + "y": 490 + }, + { + "x": 550, + "y": 500 + }, + { + "x": 500, + "y": 470 + }, + [ + { + "#": 5012 + }, + { + "#": 5013 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 210, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5015 + }, + "angle": 0, + "vertices": { + "#": 5016 + }, + "position": { + "#": 5021 + }, + "force": { + "#": 5022 + }, + "torque": 0, + "positionImpulse": { + "#": 5023 + }, + "constraintImpulse": { + "#": 5024 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5025 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5026 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5027 + }, + "bounds": { + "#": 5029 + }, + "positionPrev": { + "#": 5032 + }, + "anglePrev": 0, + "axes": { + "#": 5033 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4990 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5014 + } + ], + [ + { + "#": 5017 + }, + { + "#": 5018 + }, + { + "#": 5019 + }, + { + "#": 5020 + } + ], + { + "x": 520, + "y": 470, + "index": 0, + "body": { + "#": 5014 + }, + "isInternal": false + }, + { + "x": 530, + "y": 470, + "index": 1, + "body": { + "#": 5014 + }, + "isInternal": false + }, + { + "x": 530, + "y": 520, + "index": 2, + "body": { + "#": 5014 + }, + "isInternal": false + }, + { + "x": 520, + "y": 520, + "index": 3, + "body": { + "#": 5014 + }, + "isInternal": false + }, + { + "x": 525, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5028 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5030 + }, + "max": { + "#": 5031 + } + }, + { + "x": 520, + "y": 470 + }, + { + "x": 530, + "y": 520 + }, + { + "x": 500, + "y": 470 + }, + [ + { + "#": 5034 + }, + { + "#": 5035 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 5037 + }, + { + "#": 5038 + }, + { + "#": 5039 + }, + { + "#": 5040 + }, + { + "#": 5041 + }, + { + "#": 5042 + }, + { + "#": 5043 + }, + { + "#": 5044 + } + ], + { + "x": 550, + "y": 500, + "index": 0, + "body": { + "#": 4990 + }, + "isInternal": false + }, + { + "x": 530, + "y": 520, + "index": 1, + "body": { + "#": 4990 + }, + "isInternal": false + }, + { + "x": 520, + "y": 520, + "index": 2, + "body": { + "#": 4990 + }, + "isInternal": false + }, + { + "x": 500, + "y": 500, + "index": 3, + "body": { + "#": 4990 + }, + "isInternal": false + }, + { + "x": 500, + "y": 490, + "index": 4, + "body": { + "#": 4990 + }, + "isInternal": false + }, + { + "x": 520, + "y": 470, + "index": 5, + "body": { + "#": 4990 + }, + "isInternal": false + }, + { + "x": 530, + "y": 470, + "index": 6, + "body": { + "#": 4990 + }, + "isInternal": false + }, + { + "x": 550, + "y": 490, + "index": 7, + "body": { + "#": 4990 + }, + "isInternal": false + }, + { + "x": 525, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5052 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5054 + }, + "max": { + "#": 5055 + } + }, + { + "x": 500, + "y": 470 + }, + { + "x": 550, + "y": 520 + }, + { + "x": 525, + "y": 495 + }, + [ + { + "#": 5058 + }, + { + "#": 5059 + }, + { + "#": 5060 + }, + { + "#": 5061 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 214, + "type": "body", + "label": "Body", + "parts": { + "#": 5063 + }, + "angle": 0, + "vertices": { + "#": 5108 + }, + "position": { + "#": 5117 + }, + "force": { + "#": 5118 + }, + "torque": 0, + "positionImpulse": { + "#": 5119 + }, + "constraintImpulse": { + "#": 5120 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5121 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5122 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5123 + }, + "bounds": { + "#": 5125 + }, + "positionPrev": { + "#": 5128 + }, + "anglePrev": 0, + "axes": { + "#": 5129 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 5062 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5062 + }, + { + "#": 5064 + }, + { + "#": 5086 + } + ], + { + "id": 212, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5065 + }, + "angle": 0, + "vertices": { + "#": 5066 + }, + "position": { + "#": 5071 + }, + "force": { + "#": 5072 + }, + "torque": 0, + "positionImpulse": { + "#": 5073 + }, + "constraintImpulse": { + "#": 5074 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5075 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5076 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5077 + }, + "bounds": { + "#": 5079 + }, + "positionPrev": { + "#": 5082 + }, + "anglePrev": 0, + "axes": { + "#": 5083 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 5062 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5064 + } + ], + [ + { + "#": 5067 + }, + { + "#": 5068 + }, + { + "#": 5069 + }, + { + "#": 5070 + } + ], + { + "x": 550, + "y": 490, + "index": 0, + "body": { + "#": 5064 + }, + "isInternal": false + }, + { + "x": 600, + "y": 490, + "index": 1, + "body": { + "#": 5064 + }, + "isInternal": false + }, + { + "x": 600, + "y": 500, + "index": 2, + "body": { + "#": 5064 + }, + "isInternal": false + }, + { + "x": 550, + "y": 500, + "index": 3, + "body": { + "#": 5064 + }, + "isInternal": false + }, + { + "x": 575, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5078 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5080 + }, + "max": { + "#": 5081 + } + }, + { + "x": 550, + "y": 490 + }, + { + "x": 600, + "y": 500 + }, + { + "x": 550, + "y": 470 + }, + [ + { + "#": 5084 + }, + { + "#": 5085 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 213, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5087 + }, + "angle": 0, + "vertices": { + "#": 5088 + }, + "position": { + "#": 5093 + }, + "force": { + "#": 5094 + }, + "torque": 0, + "positionImpulse": { + "#": 5095 + }, + "constraintImpulse": { + "#": 5096 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5097 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5098 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5099 + }, + "bounds": { + "#": 5101 + }, + "positionPrev": { + "#": 5104 + }, + "anglePrev": 0, + "axes": { + "#": 5105 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 5062 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5086 + } + ], + [ + { + "#": 5089 + }, + { + "#": 5090 + }, + { + "#": 5091 + }, + { + "#": 5092 + } + ], + { + "x": 570, + "y": 470, + "index": 0, + "body": { + "#": 5086 + }, + "isInternal": false + }, + { + "x": 580, + "y": 470, + "index": 1, + "body": { + "#": 5086 + }, + "isInternal": false + }, + { + "x": 580, + "y": 520, + "index": 2, + "body": { + "#": 5086 + }, + "isInternal": false + }, + { + "x": 570, + "y": 520, + "index": 3, + "body": { + "#": 5086 + }, + "isInternal": false + }, + { + "x": 575, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5100 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5102 + }, + "max": { + "#": 5103 + } + }, + { + "x": 570, + "y": 470 + }, + { + "x": 580, + "y": 520 + }, + { + "x": 550, + "y": 470 + }, + [ + { + "#": 5106 + }, + { + "#": 5107 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 5109 + }, + { + "#": 5110 + }, + { + "#": 5111 + }, + { + "#": 5112 + }, + { + "#": 5113 + }, + { + "#": 5114 + }, + { + "#": 5115 + }, + { + "#": 5116 + } + ], + { + "x": 600, + "y": 500, + "index": 0, + "body": { + "#": 5062 + }, + "isInternal": false + }, + { + "x": 580, + "y": 520, + "index": 1, + "body": { + "#": 5062 + }, + "isInternal": false + }, + { + "x": 570, + "y": 520, + "index": 2, + "body": { + "#": 5062 + }, + "isInternal": false + }, + { + "x": 550, + "y": 500, + "index": 3, + "body": { + "#": 5062 + }, + "isInternal": false + }, + { + "x": 550, + "y": 490, + "index": 4, + "body": { + "#": 5062 + }, + "isInternal": false + }, + { + "x": 570, + "y": 470, + "index": 5, + "body": { + "#": 5062 + }, + "isInternal": false + }, + { + "x": 580, + "y": 470, + "index": 6, + "body": { + "#": 5062 + }, + "isInternal": false + }, + { + "x": 600, + "y": 490, + "index": 7, + "body": { + "#": 5062 + }, + "isInternal": false + }, + { + "x": 575, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5124 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5126 + }, + "max": { + "#": 5127 + } + }, + { + "x": 550, + "y": 470 + }, + { + "x": 600, + "y": 520 + }, + { + "x": 575, + "y": 495 + }, + [ + { + "#": 5130 + }, + { + "#": 5131 + }, + { + "#": 5132 + }, + { + "#": 5133 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 217, + "type": "body", + "label": "Body", + "parts": { + "#": 5135 + }, + "angle": 0, + "vertices": { + "#": 5180 + }, + "position": { + "#": 5189 + }, + "force": { + "#": 5190 + }, + "torque": 0, + "positionImpulse": { + "#": 5191 + }, + "constraintImpulse": { + "#": 5192 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5193 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5194 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5195 + }, + "bounds": { + "#": 5197 + }, + "positionPrev": { + "#": 5200 + }, + "anglePrev": 0, + "axes": { + "#": 5201 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 5134 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5134 + }, + { + "#": 5136 + }, + { + "#": 5158 + } + ], + { + "id": 215, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5137 + }, + "angle": 0, + "vertices": { + "#": 5138 + }, + "position": { + "#": 5143 + }, + "force": { + "#": 5144 + }, + "torque": 0, + "positionImpulse": { + "#": 5145 + }, + "constraintImpulse": { + "#": 5146 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5147 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5148 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5149 + }, + "bounds": { + "#": 5151 + }, + "positionPrev": { + "#": 5154 + }, + "anglePrev": 0, + "axes": { + "#": 5155 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 5134 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5136 + } + ], + [ + { + "#": 5139 + }, + { + "#": 5140 + }, + { + "#": 5141 + }, + { + "#": 5142 + } + ], + { + "x": 600, + "y": 490, + "index": 0, + "body": { + "#": 5136 + }, + "isInternal": false + }, + { + "x": 650, + "y": 490, + "index": 1, + "body": { + "#": 5136 + }, + "isInternal": false + }, + { + "x": 650, + "y": 500, + "index": 2, + "body": { + "#": 5136 + }, + "isInternal": false + }, + { + "x": 600, + "y": 500, + "index": 3, + "body": { + "#": 5136 + }, + "isInternal": false + }, + { + "x": 625, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5150 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5152 + }, + "max": { + "#": 5153 + } + }, + { + "x": 600, + "y": 490 + }, + { + "x": 650, + "y": 500 + }, + { + "x": 600, + "y": 470 + }, + [ + { + "#": 5156 + }, + { + "#": 5157 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 216, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5159 + }, + "angle": 0, + "vertices": { + "#": 5160 + }, + "position": { + "#": 5165 + }, + "force": { + "#": 5166 + }, + "torque": 0, + "positionImpulse": { + "#": 5167 + }, + "constraintImpulse": { + "#": 5168 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5169 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5170 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5171 + }, + "bounds": { + "#": 5173 + }, + "positionPrev": { + "#": 5176 + }, + "anglePrev": 0, + "axes": { + "#": 5177 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 5134 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5158 + } + ], + [ + { + "#": 5161 + }, + { + "#": 5162 + }, + { + "#": 5163 + }, + { + "#": 5164 + } + ], + { + "x": 620, + "y": 470, + "index": 0, + "body": { + "#": 5158 + }, + "isInternal": false + }, + { + "x": 630, + "y": 470, + "index": 1, + "body": { + "#": 5158 + }, + "isInternal": false + }, + { + "x": 630, + "y": 520, + "index": 2, + "body": { + "#": 5158 + }, + "isInternal": false + }, + { + "x": 620, + "y": 520, + "index": 3, + "body": { + "#": 5158 + }, + "isInternal": false + }, + { + "x": 625, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5172 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5174 + }, + "max": { + "#": 5175 + } + }, + { + "x": 620, + "y": 470 + }, + { + "x": 630, + "y": 520 + }, + { + "x": 600, + "y": 470 + }, + [ + { + "#": 5178 + }, + { + "#": 5179 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 5181 + }, + { + "#": 5182 + }, + { + "#": 5183 + }, + { + "#": 5184 + }, + { + "#": 5185 + }, + { + "#": 5186 + }, + { + "#": 5187 + }, + { + "#": 5188 + } + ], + { + "x": 650, + "y": 500, + "index": 0, + "body": { + "#": 5134 + }, + "isInternal": false + }, + { + "x": 630, + "y": 520, + "index": 1, + "body": { + "#": 5134 + }, + "isInternal": false + }, + { + "x": 620, + "y": 520, + "index": 2, + "body": { + "#": 5134 + }, + "isInternal": false + }, + { + "x": 600, + "y": 500, + "index": 3, + "body": { + "#": 5134 + }, + "isInternal": false + }, + { + "x": 600, + "y": 490, + "index": 4, + "body": { + "#": 5134 + }, + "isInternal": false + }, + { + "x": 620, + "y": 470, + "index": 5, + "body": { + "#": 5134 + }, + "isInternal": false + }, + { + "x": 630, + "y": 470, + "index": 6, + "body": { + "#": 5134 + }, + "isInternal": false + }, + { + "x": 650, + "y": 490, + "index": 7, + "body": { + "#": 5134 + }, + "isInternal": false + }, + { + "x": 625, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5196 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5198 + }, + "max": { + "#": 5199 + } + }, + { + "x": 600, + "y": 470 + }, + { + "x": 650, + "y": 520 + }, + { + "x": 625, + "y": 495 + }, + [ + { + "#": 5202 + }, + { + "#": 5203 + }, + { + "#": 5204 + }, + { + "#": 5205 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 220, + "type": "body", + "label": "Body", + "parts": { + "#": 5207 + }, + "angle": 0, + "vertices": { + "#": 5252 + }, + "position": { + "#": 5261 + }, + "force": { + "#": 5262 + }, + "torque": 0, + "positionImpulse": { + "#": 5263 + }, + "constraintImpulse": { + "#": 5264 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5265 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5266 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5267 + }, + "bounds": { + "#": 5269 + }, + "positionPrev": { + "#": 5272 + }, + "anglePrev": 0, + "axes": { + "#": 5273 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 5206 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5206 + }, + { + "#": 5208 + }, + { + "#": 5230 + } + ], + { + "id": 218, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5209 + }, + "angle": 0, + "vertices": { + "#": 5210 + }, + "position": { + "#": 5215 + }, + "force": { + "#": 5216 + }, + "torque": 0, + "positionImpulse": { + "#": 5217 + }, + "constraintImpulse": { + "#": 5218 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5219 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5220 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5221 + }, + "bounds": { + "#": 5223 + }, + "positionPrev": { + "#": 5226 + }, + "anglePrev": 0, + "axes": { + "#": 5227 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 5206 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5208 + } + ], + [ + { + "#": 5211 + }, + { + "#": 5212 + }, + { + "#": 5213 + }, + { + "#": 5214 + } + ], + { + "x": 650, + "y": 490, + "index": 0, + "body": { + "#": 5208 + }, + "isInternal": false + }, + { + "x": 700, + "y": 490, + "index": 1, + "body": { + "#": 5208 + }, + "isInternal": false + }, + { + "x": 700, + "y": 500, + "index": 2, + "body": { + "#": 5208 + }, + "isInternal": false + }, + { + "x": 650, + "y": 500, + "index": 3, + "body": { + "#": 5208 + }, + "isInternal": false + }, + { + "x": 675, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5222 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5224 + }, + "max": { + "#": 5225 + } + }, + { + "x": 650, + "y": 490 + }, + { + "x": 700, + "y": 500 + }, + { + "x": 650, + "y": 470 + }, + [ + { + "#": 5228 + }, + { + "#": 5229 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 219, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5231 + }, + "angle": 0, + "vertices": { + "#": 5232 + }, + "position": { + "#": 5237 + }, + "force": { + "#": 5238 + }, + "torque": 0, + "positionImpulse": { + "#": 5239 + }, + "constraintImpulse": { + "#": 5240 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5241 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5242 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5243 + }, + "bounds": { + "#": 5245 + }, + "positionPrev": { + "#": 5248 + }, + "anglePrev": 0, + "axes": { + "#": 5249 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 5206 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5230 + } + ], + [ + { + "#": 5233 + }, + { + "#": 5234 + }, + { + "#": 5235 + }, + { + "#": 5236 + } + ], + { + "x": 670, + "y": 470, + "index": 0, + "body": { + "#": 5230 + }, + "isInternal": false + }, + { + "x": 680, + "y": 470, + "index": 1, + "body": { + "#": 5230 + }, + "isInternal": false + }, + { + "x": 680, + "y": 520, + "index": 2, + "body": { + "#": 5230 + }, + "isInternal": false + }, + { + "x": 670, + "y": 520, + "index": 3, + "body": { + "#": 5230 + }, + "isInternal": false + }, + { + "x": 675, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5244 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5246 + }, + "max": { + "#": 5247 + } + }, + { + "x": 670, + "y": 470 + }, + { + "x": 680, + "y": 520 + }, + { + "x": 650, + "y": 470 + }, + [ + { + "#": 5250 + }, + { + "#": 5251 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 5253 + }, + { + "#": 5254 + }, + { + "#": 5255 + }, + { + "#": 5256 + }, + { + "#": 5257 + }, + { + "#": 5258 + }, + { + "#": 5259 + }, + { + "#": 5260 + } + ], + { + "x": 700, + "y": 500, + "index": 0, + "body": { + "#": 5206 + }, + "isInternal": false + }, + { + "x": 680, + "y": 520, + "index": 1, + "body": { + "#": 5206 + }, + "isInternal": false + }, + { + "x": 670, + "y": 520, + "index": 2, + "body": { + "#": 5206 + }, + "isInternal": false + }, + { + "x": 650, + "y": 500, + "index": 3, + "body": { + "#": 5206 + }, + "isInternal": false + }, + { + "x": 650, + "y": 490, + "index": 4, + "body": { + "#": 5206 + }, + "isInternal": false + }, + { + "x": 670, + "y": 470, + "index": 5, + "body": { + "#": 5206 + }, + "isInternal": false + }, + { + "x": 680, + "y": 470, + "index": 6, + "body": { + "#": 5206 + }, + "isInternal": false + }, + { + "x": 700, + "y": 490, + "index": 7, + "body": { + "#": 5206 + }, + "isInternal": false + }, + { + "x": 675, + "y": 495 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5268 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5270 + }, + "max": { + "#": 5271 + } + }, + { + "x": 650, + "y": 470 + }, + { + "x": 700, + "y": 520 + }, + { + "x": 675, + "y": 495 + }, + [ + { + "#": 5274 + }, + { + "#": 5275 + }, + { + "#": 5276 + }, + { + "#": 5277 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 5282 + }, + "max": { + "#": 5283 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/compoundStack/compoundStack-10.json b/test/node/refs/compoundStack/compoundStack-10.json new file mode 100644 index 00000000..2f2a36be --- /dev/null +++ b/test/node/refs/compoundStack/compoundStack-10.json @@ -0,0 +1,49598 @@ +[ + { + "id": 105, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 94 + }, + "composites": { + "#": 95 + }, + "label": "World", + "gravity": { + "#": 5356 + }, + "bounds": { + "#": 5357 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + [], + [ + { + "#": 96 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 97 + }, + "constraints": { + "#": 5354 + }, + "composites": { + "#": 5355 + }, + "label": "Stack" + }, + [ + { + "#": 98 + }, + { + "#": 171 + }, + { + "#": 244 + }, + { + "#": 317 + }, + { + "#": 390 + }, + { + "#": 463 + }, + { + "#": 536 + }, + { + "#": 609 + }, + { + "#": 682 + }, + { + "#": 755 + }, + { + "#": 828 + }, + { + "#": 901 + }, + { + "#": 974 + }, + { + "#": 1047 + }, + { + "#": 1120 + }, + { + "#": 1193 + }, + { + "#": 1266 + }, + { + "#": 1339 + }, + { + "#": 1412 + }, + { + "#": 1485 + }, + { + "#": 1558 + }, + { + "#": 1631 + }, + { + "#": 1704 + }, + { + "#": 1777 + }, + { + "#": 1850 + }, + { + "#": 1923 + }, + { + "#": 1996 + }, + { + "#": 2069 + }, + { + "#": 2142 + }, + { + "#": 2215 + }, + { + "#": 2288 + }, + { + "#": 2361 + }, + { + "#": 2434 + }, + { + "#": 2507 + }, + { + "#": 2580 + }, + { + "#": 2653 + }, + { + "#": 2726 + }, + { + "#": 2799 + }, + { + "#": 2872 + }, + { + "#": 2945 + }, + { + "#": 3018 + }, + { + "#": 3091 + }, + { + "#": 3164 + }, + { + "#": 3237 + }, + { + "#": 3310 + }, + { + "#": 3383 + }, + { + "#": 3456 + }, + { + "#": 3529 + }, + { + "#": 3602 + }, + { + "#": 3675 + }, + { + "#": 3748 + }, + { + "#": 3821 + }, + { + "#": 3894 + }, + { + "#": 3967 + }, + { + "#": 4040 + }, + { + "#": 4113 + }, + { + "#": 4186 + }, + { + "#": 4259 + }, + { + "#": 4332 + }, + { + "#": 4405 + }, + { + "#": 4478 + }, + { + "#": 4551 + }, + { + "#": 4624 + }, + { + "#": 4697 + }, + { + "#": 4770 + }, + { + "#": 4843 + }, + { + "#": 4916 + }, + { + "#": 4989 + }, + { + "#": 5062 + }, + { + "#": 5135 + }, + { + "#": 5208 + }, + { + "#": 5281 + } + ], + { + "id": 7, + "type": "body", + "label": "Body", + "parts": { + "#": 99 + }, + "angle": 0, + "vertices": { + "#": 144 + }, + "position": { + "#": 153 + }, + "force": { + "#": 154 + }, + "torque": 0, + "positionImpulse": { + "#": 155 + }, + "constraintImpulse": { + "#": 156 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 157 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 158 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 159 + }, + "bounds": { + "#": 161 + }, + "positionPrev": { + "#": 164 + }, + "anglePrev": 0, + "axes": { + "#": 165 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 98 + }, + "sleepCounter": 0, + "region": { + "#": 170 + } + }, + [ + { + "#": 98 + }, + { + "#": 100 + }, + { + "#": 122 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 101 + }, + "angle": 0, + "vertices": { + "#": 102 + }, + "position": { + "#": 107 + }, + "force": { + "#": 108 + }, + "torque": 0, + "positionImpulse": { + "#": 109 + }, + "constraintImpulse": { + "#": 110 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 111 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 112 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 113 + }, + "bounds": { + "#": 115 + }, + "positionPrev": { + "#": 118 + }, + "anglePrev": 0, + "axes": { + "#": 119 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 98 + }, + "sleepCounter": 0 + }, + [ + { + "#": 100 + } + ], + [ + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + } + ], + { + "x": 100, + "y": 257.82558, + "index": 0, + "body": { + "#": 100 + }, + "isInternal": false + }, + { + "x": 150, + "y": 257.82558, + "index": 1, + "body": { + "#": 100 + }, + "isInternal": false + }, + { + "x": 150, + "y": 267.82558, + "index": 2, + "body": { + "#": 100 + }, + "isInternal": false + }, + { + "x": 100, + "y": 267.82558, + "index": 3, + "body": { + "#": 100 + }, + "isInternal": false + }, + { + "x": 125, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 114 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 116 + }, + "max": { + "#": 117 + } + }, + { + "x": 100, + "y": 257.82558 + }, + { + "x": 150, + "y": 270.73285 + }, + { + "x": 100, + "y": 220 + }, + [ + { + "#": 120 + }, + { + "#": 121 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 123 + }, + "angle": 0, + "vertices": { + "#": 124 + }, + "position": { + "#": 129 + }, + "force": { + "#": 130 + }, + "torque": 0, + "positionImpulse": { + "#": 131 + }, + "constraintImpulse": { + "#": 132 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 133 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 134 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 135 + }, + "bounds": { + "#": 137 + }, + "positionPrev": { + "#": 140 + }, + "anglePrev": 0, + "axes": { + "#": 141 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 98 + }, + "sleepCounter": 0 + }, + [ + { + "#": 122 + } + ], + [ + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + } + ], + { + "x": 120, + "y": 237.82558, + "index": 0, + "body": { + "#": 122 + }, + "isInternal": false + }, + { + "x": 130, + "y": 237.82558, + "index": 1, + "body": { + "#": 122 + }, + "isInternal": false + }, + { + "x": 130, + "y": 287.82558, + "index": 2, + "body": { + "#": 122 + }, + "isInternal": false + }, + { + "x": 120, + "y": 287.82558, + "index": 3, + "body": { + "#": 122 + }, + "isInternal": false + }, + { + "x": 125, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 136 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 138 + }, + "max": { + "#": 139 + } + }, + { + "x": 120, + "y": 237.82558 + }, + { + "x": 130, + "y": 290.73285 + }, + { + "x": 100, + "y": 220 + }, + [ + { + "#": 142 + }, + { + "#": 143 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + }, + { + "#": 152 + } + ], + { + "x": 150, + "y": 267.82558, + "index": 0, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 130, + "y": 287.82558, + "index": 1, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 120, + "y": 287.82558, + "index": 2, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 100, + "y": 267.82558, + "index": 3, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 100, + "y": 257.82558, + "index": 4, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 120, + "y": 237.82558, + "index": 5, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 130, + "y": 237.82558, + "index": 6, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 150, + "y": 257.82558, + "index": 7, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 125, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 160 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 162 + }, + "max": { + "#": 163 + } + }, + { + "x": 100, + "y": 237.82558 + }, + { + "x": 150, + "y": 290.73285 + }, + { + "x": 125, + "y": 259.91831 + }, + [ + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,3,4,5", + "startCol": 2, + "endCol": 3, + "startRow": 4, + "endRow": 5 + }, + { + "id": 10, + "type": "body", + "label": "Body", + "parts": { + "#": 172 + }, + "angle": 0, + "vertices": { + "#": 217 + }, + "position": { + "#": 226 + }, + "force": { + "#": 227 + }, + "torque": 0, + "positionImpulse": { + "#": 228 + }, + "constraintImpulse": { + "#": 229 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 230 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 231 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 232 + }, + "bounds": { + "#": 234 + }, + "positionPrev": { + "#": 237 + }, + "anglePrev": 0, + "axes": { + "#": 238 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 171 + }, + "sleepCounter": 0, + "region": { + "#": 243 + } + }, + [ + { + "#": 171 + }, + { + "#": 173 + }, + { + "#": 195 + } + ], + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 174 + }, + "angle": 0, + "vertices": { + "#": 175 + }, + "position": { + "#": 180 + }, + "force": { + "#": 181 + }, + "torque": 0, + "positionImpulse": { + "#": 182 + }, + "constraintImpulse": { + "#": 183 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 184 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 185 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 186 + }, + "bounds": { + "#": 188 + }, + "positionPrev": { + "#": 191 + }, + "anglePrev": 0, + "axes": { + "#": 192 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 171 + }, + "sleepCounter": 0 + }, + [ + { + "#": 173 + } + ], + [ + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + } + ], + { + "x": 150, + "y": 257.82558, + "index": 0, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 200, + "y": 257.82558, + "index": 1, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 200, + "y": 267.82558, + "index": 2, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 150, + "y": 267.82558, + "index": 3, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 175, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 187 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 189 + }, + "max": { + "#": 190 + } + }, + { + "x": 150, + "y": 257.82558 + }, + { + "x": 200, + "y": 270.73285 + }, + { + "x": 150, + "y": 220 + }, + [ + { + "#": 193 + }, + { + "#": 194 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 196 + }, + "angle": 0, + "vertices": { + "#": 197 + }, + "position": { + "#": 202 + }, + "force": { + "#": 203 + }, + "torque": 0, + "positionImpulse": { + "#": 204 + }, + "constraintImpulse": { + "#": 205 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 206 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 207 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 208 + }, + "bounds": { + "#": 210 + }, + "positionPrev": { + "#": 213 + }, + "anglePrev": 0, + "axes": { + "#": 214 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 171 + }, + "sleepCounter": 0 + }, + [ + { + "#": 195 + } + ], + [ + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + } + ], + { + "x": 170, + "y": 237.82558, + "index": 0, + "body": { + "#": 195 + }, + "isInternal": false + }, + { + "x": 180, + "y": 237.82558, + "index": 1, + "body": { + "#": 195 + }, + "isInternal": false + }, + { + "x": 180, + "y": 287.82558, + "index": 2, + "body": { + "#": 195 + }, + "isInternal": false + }, + { + "x": 170, + "y": 287.82558, + "index": 3, + "body": { + "#": 195 + }, + "isInternal": false + }, + { + "x": 175, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 209 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 211 + }, + "max": { + "#": 212 + } + }, + { + "x": 170, + "y": 237.82558 + }, + { + "x": 180, + "y": 290.73285 + }, + { + "x": 150, + "y": 220 + }, + [ + { + "#": 215 + }, + { + "#": 216 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + } + ], + { + "x": 200, + "y": 267.82558, + "index": 0, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 180, + "y": 287.82558, + "index": 1, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 170, + "y": 287.82558, + "index": 2, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 150, + "y": 267.82558, + "index": 3, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 150, + "y": 257.82558, + "index": 4, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 170, + "y": 237.82558, + "index": 5, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 180, + "y": 237.82558, + "index": 6, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 200, + "y": 257.82558, + "index": 7, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 175, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 233 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 235 + }, + "max": { + "#": 236 + } + }, + { + "x": 150, + "y": 237.82558 + }, + { + "x": 200, + "y": 290.73285 + }, + { + "x": 175, + "y": 259.91831 + }, + [ + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,4,5", + "startCol": 3, + "endCol": 4, + "startRow": 4, + "endRow": 5 + }, + { + "id": 13, + "type": "body", + "label": "Body", + "parts": { + "#": 245 + }, + "angle": 0, + "vertices": { + "#": 290 + }, + "position": { + "#": 299 + }, + "force": { + "#": 300 + }, + "torque": 0, + "positionImpulse": { + "#": 301 + }, + "constraintImpulse": { + "#": 302 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 303 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 304 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 305 + }, + "bounds": { + "#": 307 + }, + "positionPrev": { + "#": 310 + }, + "anglePrev": 0, + "axes": { + "#": 311 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 244 + }, + "sleepCounter": 0, + "region": { + "#": 316 + } + }, + [ + { + "#": 244 + }, + { + "#": 246 + }, + { + "#": 268 + } + ], + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 247 + }, + "angle": 0, + "vertices": { + "#": 248 + }, + "position": { + "#": 253 + }, + "force": { + "#": 254 + }, + "torque": 0, + "positionImpulse": { + "#": 255 + }, + "constraintImpulse": { + "#": 256 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 257 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 258 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 259 + }, + "bounds": { + "#": 261 + }, + "positionPrev": { + "#": 264 + }, + "anglePrev": 0, + "axes": { + "#": 265 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 244 + }, + "sleepCounter": 0 + }, + [ + { + "#": 246 + } + ], + [ + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + } + ], + { + "x": 200, + "y": 257.82558, + "index": 0, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 250, + "y": 257.82558, + "index": 1, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 250, + "y": 267.82558, + "index": 2, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 200, + "y": 267.82558, + "index": 3, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 225, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 260 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 262 + }, + "max": { + "#": 263 + } + }, + { + "x": 200, + "y": 257.82558 + }, + { + "x": 250, + "y": 270.73285 + }, + { + "x": 200, + "y": 220 + }, + [ + { + "#": 266 + }, + { + "#": 267 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 269 + }, + "angle": 0, + "vertices": { + "#": 270 + }, + "position": { + "#": 275 + }, + "force": { + "#": 276 + }, + "torque": 0, + "positionImpulse": { + "#": 277 + }, + "constraintImpulse": { + "#": 278 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 279 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 280 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 281 + }, + "bounds": { + "#": 283 + }, + "positionPrev": { + "#": 286 + }, + "anglePrev": 0, + "axes": { + "#": 287 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 244 + }, + "sleepCounter": 0 + }, + [ + { + "#": 268 + } + ], + [ + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + } + ], + { + "x": 220, + "y": 237.82558, + "index": 0, + "body": { + "#": 268 + }, + "isInternal": false + }, + { + "x": 230, + "y": 237.82558, + "index": 1, + "body": { + "#": 268 + }, + "isInternal": false + }, + { + "x": 230, + "y": 287.82558, + "index": 2, + "body": { + "#": 268 + }, + "isInternal": false + }, + { + "x": 220, + "y": 287.82558, + "index": 3, + "body": { + "#": 268 + }, + "isInternal": false + }, + { + "x": 225, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 282 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 284 + }, + "max": { + "#": 285 + } + }, + { + "x": 220, + "y": 237.82558 + }, + { + "x": 230, + "y": 290.73285 + }, + { + "x": 200, + "y": 220 + }, + [ + { + "#": 288 + }, + { + "#": 289 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + } + ], + { + "x": 250, + "y": 267.82558, + "index": 0, + "body": { + "#": 244 + }, + "isInternal": false + }, + { + "x": 230, + "y": 287.82558, + "index": 1, + "body": { + "#": 244 + }, + "isInternal": false + }, + { + "x": 220, + "y": 287.82558, + "index": 2, + "body": { + "#": 244 + }, + "isInternal": false + }, + { + "x": 200, + "y": 267.82558, + "index": 3, + "body": { + "#": 244 + }, + "isInternal": false + }, + { + "x": 200, + "y": 257.82558, + "index": 4, + "body": { + "#": 244 + }, + "isInternal": false + }, + { + "x": 220, + "y": 237.82558, + "index": 5, + "body": { + "#": 244 + }, + "isInternal": false + }, + { + "x": 230, + "y": 237.82558, + "index": 6, + "body": { + "#": 244 + }, + "isInternal": false + }, + { + "x": 250, + "y": 257.82558, + "index": 7, + "body": { + "#": 244 + }, + "isInternal": false + }, + { + "x": 225, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 306 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 308 + }, + "max": { + "#": 309 + } + }, + { + "x": 200, + "y": 237.82558 + }, + { + "x": 250, + "y": 290.73285 + }, + { + "x": 225, + "y": 259.91831 + }, + [ + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,4,5", + "startCol": 4, + "endCol": 5, + "startRow": 4, + "endRow": 5 + }, + { + "id": 16, + "type": "body", + "label": "Body", + "parts": { + "#": 318 + }, + "angle": 0, + "vertices": { + "#": 363 + }, + "position": { + "#": 372 + }, + "force": { + "#": 373 + }, + "torque": 0, + "positionImpulse": { + "#": 374 + }, + "constraintImpulse": { + "#": 375 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 376 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 377 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 378 + }, + "bounds": { + "#": 380 + }, + "positionPrev": { + "#": 383 + }, + "anglePrev": 0, + "axes": { + "#": 384 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 317 + }, + "sleepCounter": 0, + "region": { + "#": 389 + } + }, + [ + { + "#": 317 + }, + { + "#": 319 + }, + { + "#": 341 + } + ], + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 320 + }, + "angle": 0, + "vertices": { + "#": 321 + }, + "position": { + "#": 326 + }, + "force": { + "#": 327 + }, + "torque": 0, + "positionImpulse": { + "#": 328 + }, + "constraintImpulse": { + "#": 329 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 330 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 331 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 332 + }, + "bounds": { + "#": 334 + }, + "positionPrev": { + "#": 337 + }, + "anglePrev": 0, + "axes": { + "#": 338 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 317 + }, + "sleepCounter": 0 + }, + [ + { + "#": 319 + } + ], + [ + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + } + ], + { + "x": 250, + "y": 257.82558, + "index": 0, + "body": { + "#": 319 + }, + "isInternal": false + }, + { + "x": 300, + "y": 257.82558, + "index": 1, + "body": { + "#": 319 + }, + "isInternal": false + }, + { + "x": 300, + "y": 267.82558, + "index": 2, + "body": { + "#": 319 + }, + "isInternal": false + }, + { + "x": 250, + "y": 267.82558, + "index": 3, + "body": { + "#": 319 + }, + "isInternal": false + }, + { + "x": 275, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 333 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 335 + }, + "max": { + "#": 336 + } + }, + { + "x": 250, + "y": 257.82558 + }, + { + "x": 300, + "y": 270.73285 + }, + { + "x": 250, + "y": 220 + }, + [ + { + "#": 339 + }, + { + "#": 340 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 15, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 342 + }, + "angle": 0, + "vertices": { + "#": 343 + }, + "position": { + "#": 348 + }, + "force": { + "#": 349 + }, + "torque": 0, + "positionImpulse": { + "#": 350 + }, + "constraintImpulse": { + "#": 351 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 352 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 353 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 354 + }, + "bounds": { + "#": 356 + }, + "positionPrev": { + "#": 359 + }, + "anglePrev": 0, + "axes": { + "#": 360 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 317 + }, + "sleepCounter": 0 + }, + [ + { + "#": 341 + } + ], + [ + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + } + ], + { + "x": 270, + "y": 237.82558, + "index": 0, + "body": { + "#": 341 + }, + "isInternal": false + }, + { + "x": 280, + "y": 237.82558, + "index": 1, + "body": { + "#": 341 + }, + "isInternal": false + }, + { + "x": 280, + "y": 287.82558, + "index": 2, + "body": { + "#": 341 + }, + "isInternal": false + }, + { + "x": 270, + "y": 287.82558, + "index": 3, + "body": { + "#": 341 + }, + "isInternal": false + }, + { + "x": 275, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 355 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 357 + }, + "max": { + "#": 358 + } + }, + { + "x": 270, + "y": 237.82558 + }, + { + "x": 280, + "y": 290.73285 + }, + { + "x": 250, + "y": 220 + }, + [ + { + "#": 361 + }, + { + "#": 362 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + } + ], + { + "x": 300, + "y": 267.82558, + "index": 0, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 280, + "y": 287.82558, + "index": 1, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 270, + "y": 287.82558, + "index": 2, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 250, + "y": 267.82558, + "index": 3, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 250, + "y": 257.82558, + "index": 4, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 270, + "y": 237.82558, + "index": 5, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 280, + "y": 237.82558, + "index": 6, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 300, + "y": 257.82558, + "index": 7, + "body": { + "#": 317 + }, + "isInternal": false + }, + { + "x": 275, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 379 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 381 + }, + "max": { + "#": 382 + } + }, + { + "x": 250, + "y": 237.82558 + }, + { + "x": 300, + "y": 290.73285 + }, + { + "x": 275, + "y": 259.91831 + }, + [ + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,4,5", + "startCol": 5, + "endCol": 6, + "startRow": 4, + "endRow": 5 + }, + { + "id": 19, + "type": "body", + "label": "Body", + "parts": { + "#": 391 + }, + "angle": 0, + "vertices": { + "#": 436 + }, + "position": { + "#": 445 + }, + "force": { + "#": 446 + }, + "torque": 0, + "positionImpulse": { + "#": 447 + }, + "constraintImpulse": { + "#": 448 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 449 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 450 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 451 + }, + "bounds": { + "#": 453 + }, + "positionPrev": { + "#": 456 + }, + "anglePrev": 0, + "axes": { + "#": 457 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 390 + }, + "sleepCounter": 0, + "region": { + "#": 462 + } + }, + [ + { + "#": 390 + }, + { + "#": 392 + }, + { + "#": 414 + } + ], + { + "id": 17, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 393 + }, + "angle": 0, + "vertices": { + "#": 394 + }, + "position": { + "#": 399 + }, + "force": { + "#": 400 + }, + "torque": 0, + "positionImpulse": { + "#": 401 + }, + "constraintImpulse": { + "#": 402 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 403 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 404 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 405 + }, + "bounds": { + "#": 407 + }, + "positionPrev": { + "#": 410 + }, + "anglePrev": 0, + "axes": { + "#": 411 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 390 + }, + "sleepCounter": 0 + }, + [ + { + "#": 392 + } + ], + [ + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + } + ], + { + "x": 300, + "y": 257.82558, + "index": 0, + "body": { + "#": 392 + }, + "isInternal": false + }, + { + "x": 350, + "y": 257.82558, + "index": 1, + "body": { + "#": 392 + }, + "isInternal": false + }, + { + "x": 350, + "y": 267.82558, + "index": 2, + "body": { + "#": 392 + }, + "isInternal": false + }, + { + "x": 300, + "y": 267.82558, + "index": 3, + "body": { + "#": 392 + }, + "isInternal": false + }, + { + "x": 325, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 406 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 408 + }, + "max": { + "#": 409 + } + }, + { + "x": 300, + "y": 257.82558 + }, + { + "x": 350, + "y": 270.73285 + }, + { + "x": 300, + "y": 220 + }, + [ + { + "#": 412 + }, + { + "#": 413 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 18, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 415 + }, + "angle": 0, + "vertices": { + "#": 416 + }, + "position": { + "#": 421 + }, + "force": { + "#": 422 + }, + "torque": 0, + "positionImpulse": { + "#": 423 + }, + "constraintImpulse": { + "#": 424 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 425 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 426 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 427 + }, + "bounds": { + "#": 429 + }, + "positionPrev": { + "#": 432 + }, + "anglePrev": 0, + "axes": { + "#": 433 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 390 + }, + "sleepCounter": 0 + }, + [ + { + "#": 414 + } + ], + [ + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + } + ], + { + "x": 320, + "y": 237.82558, + "index": 0, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 330, + "y": 237.82558, + "index": 1, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 330, + "y": 287.82558, + "index": 2, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 320, + "y": 287.82558, + "index": 3, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 325, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 428 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 430 + }, + "max": { + "#": 431 + } + }, + { + "x": 320, + "y": 237.82558 + }, + { + "x": 330, + "y": 290.73285 + }, + { + "x": 300, + "y": 220 + }, + [ + { + "#": 434 + }, + { + "#": 435 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + } + ], + { + "x": 350, + "y": 267.82558, + "index": 0, + "body": { + "#": 390 + }, + "isInternal": false + }, + { + "x": 330, + "y": 287.82558, + "index": 1, + "body": { + "#": 390 + }, + "isInternal": false + }, + { + "x": 320, + "y": 287.82558, + "index": 2, + "body": { + "#": 390 + }, + "isInternal": false + }, + { + "x": 300, + "y": 267.82558, + "index": 3, + "body": { + "#": 390 + }, + "isInternal": false + }, + { + "x": 300, + "y": 257.82558, + "index": 4, + "body": { + "#": 390 + }, + "isInternal": false + }, + { + "x": 320, + "y": 237.82558, + "index": 5, + "body": { + "#": 390 + }, + "isInternal": false + }, + { + "x": 330, + "y": 237.82558, + "index": 6, + "body": { + "#": 390 + }, + "isInternal": false + }, + { + "x": 350, + "y": 257.82558, + "index": 7, + "body": { + "#": 390 + }, + "isInternal": false + }, + { + "x": 325, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 452 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 454 + }, + "max": { + "#": 455 + } + }, + { + "x": 300, + "y": 237.82558 + }, + { + "x": 350, + "y": 290.73285 + }, + { + "x": 325, + "y": 259.91831 + }, + [ + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,4,5", + "startCol": 6, + "endCol": 7, + "startRow": 4, + "endRow": 5 + }, + { + "id": 22, + "type": "body", + "label": "Body", + "parts": { + "#": 464 + }, + "angle": 0, + "vertices": { + "#": 509 + }, + "position": { + "#": 518 + }, + "force": { + "#": 519 + }, + "torque": 0, + "positionImpulse": { + "#": 520 + }, + "constraintImpulse": { + "#": 521 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 522 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 523 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 524 + }, + "bounds": { + "#": 526 + }, + "positionPrev": { + "#": 529 + }, + "anglePrev": 0, + "axes": { + "#": 530 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 463 + }, + "sleepCounter": 0, + "region": { + "#": 535 + } + }, + [ + { + "#": 463 + }, + { + "#": 465 + }, + { + "#": 487 + } + ], + { + "id": 20, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 466 + }, + "angle": 0, + "vertices": { + "#": 467 + }, + "position": { + "#": 472 + }, + "force": { + "#": 473 + }, + "torque": 0, + "positionImpulse": { + "#": 474 + }, + "constraintImpulse": { + "#": 475 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 476 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 477 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 478 + }, + "bounds": { + "#": 480 + }, + "positionPrev": { + "#": 483 + }, + "anglePrev": 0, + "axes": { + "#": 484 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 463 + }, + "sleepCounter": 0 + }, + [ + { + "#": 465 + } + ], + [ + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + } + ], + { + "x": 350, + "y": 257.82558, + "index": 0, + "body": { + "#": 465 + }, + "isInternal": false + }, + { + "x": 400, + "y": 257.82558, + "index": 1, + "body": { + "#": 465 + }, + "isInternal": false + }, + { + "x": 400, + "y": 267.82558, + "index": 2, + "body": { + "#": 465 + }, + "isInternal": false + }, + { + "x": 350, + "y": 267.82558, + "index": 3, + "body": { + "#": 465 + }, + "isInternal": false + }, + { + "x": 375, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 479 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 481 + }, + "max": { + "#": 482 + } + }, + { + "x": 350, + "y": 257.82558 + }, + { + "x": 400, + "y": 270.73285 + }, + { + "x": 350, + "y": 220 + }, + [ + { + "#": 485 + }, + { + "#": 486 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 21, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 488 + }, + "angle": 0, + "vertices": { + "#": 489 + }, + "position": { + "#": 494 + }, + "force": { + "#": 495 + }, + "torque": 0, + "positionImpulse": { + "#": 496 + }, + "constraintImpulse": { + "#": 497 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 498 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 499 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 500 + }, + "bounds": { + "#": 502 + }, + "positionPrev": { + "#": 505 + }, + "anglePrev": 0, + "axes": { + "#": 506 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 463 + }, + "sleepCounter": 0 + }, + [ + { + "#": 487 + } + ], + [ + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + } + ], + { + "x": 370, + "y": 237.82558, + "index": 0, + "body": { + "#": 487 + }, + "isInternal": false + }, + { + "x": 380, + "y": 237.82558, + "index": 1, + "body": { + "#": 487 + }, + "isInternal": false + }, + { + "x": 380, + "y": 287.82558, + "index": 2, + "body": { + "#": 487 + }, + "isInternal": false + }, + { + "x": 370, + "y": 287.82558, + "index": 3, + "body": { + "#": 487 + }, + "isInternal": false + }, + { + "x": 375, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 501 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 503 + }, + "max": { + "#": 504 + } + }, + { + "x": 370, + "y": 237.82558 + }, + { + "x": 380, + "y": 290.73285 + }, + { + "x": 350, + "y": 220 + }, + [ + { + "#": 507 + }, + { + "#": 508 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + } + ], + { + "x": 400, + "y": 267.82558, + "index": 0, + "body": { + "#": 463 + }, + "isInternal": false + }, + { + "x": 380, + "y": 287.82558, + "index": 1, + "body": { + "#": 463 + }, + "isInternal": false + }, + { + "x": 370, + "y": 287.82558, + "index": 2, + "body": { + "#": 463 + }, + "isInternal": false + }, + { + "x": 350, + "y": 267.82558, + "index": 3, + "body": { + "#": 463 + }, + "isInternal": false + }, + { + "x": 350, + "y": 257.82558, + "index": 4, + "body": { + "#": 463 + }, + "isInternal": false + }, + { + "x": 370, + "y": 237.82558, + "index": 5, + "body": { + "#": 463 + }, + "isInternal": false + }, + { + "x": 380, + "y": 237.82558, + "index": 6, + "body": { + "#": 463 + }, + "isInternal": false + }, + { + "x": 400, + "y": 257.82558, + "index": 7, + "body": { + "#": 463 + }, + "isInternal": false + }, + { + "x": 375, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 525 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 527 + }, + "max": { + "#": 528 + } + }, + { + "x": 350, + "y": 237.82558 + }, + { + "x": 400, + "y": 290.73285 + }, + { + "x": 375, + "y": 259.91831 + }, + [ + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,4,5", + "startCol": 7, + "endCol": 8, + "startRow": 4, + "endRow": 5 + }, + { + "id": 25, + "type": "body", + "label": "Body", + "parts": { + "#": 537 + }, + "angle": 0, + "vertices": { + "#": 582 + }, + "position": { + "#": 591 + }, + "force": { + "#": 592 + }, + "torque": 0, + "positionImpulse": { + "#": 593 + }, + "constraintImpulse": { + "#": 594 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 595 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 596 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 597 + }, + "bounds": { + "#": 599 + }, + "positionPrev": { + "#": 602 + }, + "anglePrev": 0, + "axes": { + "#": 603 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 536 + }, + "sleepCounter": 0, + "region": { + "#": 608 + } + }, + [ + { + "#": 536 + }, + { + "#": 538 + }, + { + "#": 560 + } + ], + { + "id": 23, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 539 + }, + "angle": 0, + "vertices": { + "#": 540 + }, + "position": { + "#": 545 + }, + "force": { + "#": 546 + }, + "torque": 0, + "positionImpulse": { + "#": 547 + }, + "constraintImpulse": { + "#": 548 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 549 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 550 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 551 + }, + "bounds": { + "#": 553 + }, + "positionPrev": { + "#": 556 + }, + "anglePrev": 0, + "axes": { + "#": 557 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 536 + }, + "sleepCounter": 0 + }, + [ + { + "#": 538 + } + ], + [ + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + } + ], + { + "x": 400, + "y": 257.82558, + "index": 0, + "body": { + "#": 538 + }, + "isInternal": false + }, + { + "x": 450, + "y": 257.82558, + "index": 1, + "body": { + "#": 538 + }, + "isInternal": false + }, + { + "x": 450, + "y": 267.82558, + "index": 2, + "body": { + "#": 538 + }, + "isInternal": false + }, + { + "x": 400, + "y": 267.82558, + "index": 3, + "body": { + "#": 538 + }, + "isInternal": false + }, + { + "x": 425, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 552 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 554 + }, + "max": { + "#": 555 + } + }, + { + "x": 400, + "y": 257.82558 + }, + { + "x": 450, + "y": 270.73285 + }, + { + "x": 400, + "y": 220 + }, + [ + { + "#": 558 + }, + { + "#": 559 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 24, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 561 + }, + "angle": 0, + "vertices": { + "#": 562 + }, + "position": { + "#": 567 + }, + "force": { + "#": 568 + }, + "torque": 0, + "positionImpulse": { + "#": 569 + }, + "constraintImpulse": { + "#": 570 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 571 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 572 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 573 + }, + "bounds": { + "#": 575 + }, + "positionPrev": { + "#": 578 + }, + "anglePrev": 0, + "axes": { + "#": 579 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 536 + }, + "sleepCounter": 0 + }, + [ + { + "#": 560 + } + ], + [ + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + } + ], + { + "x": 420, + "y": 237.82558, + "index": 0, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 430, + "y": 237.82558, + "index": 1, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 430, + "y": 287.82558, + "index": 2, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 420, + "y": 287.82558, + "index": 3, + "body": { + "#": 560 + }, + "isInternal": false + }, + { + "x": 425, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 574 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 576 + }, + "max": { + "#": 577 + } + }, + { + "x": 420, + "y": 237.82558 + }, + { + "x": 430, + "y": 290.73285 + }, + { + "x": 400, + "y": 220 + }, + [ + { + "#": 580 + }, + { + "#": 581 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + } + ], + { + "x": 450, + "y": 267.82558, + "index": 0, + "body": { + "#": 536 + }, + "isInternal": false + }, + { + "x": 430, + "y": 287.82558, + "index": 1, + "body": { + "#": 536 + }, + "isInternal": false + }, + { + "x": 420, + "y": 287.82558, + "index": 2, + "body": { + "#": 536 + }, + "isInternal": false + }, + { + "x": 400, + "y": 267.82558, + "index": 3, + "body": { + "#": 536 + }, + "isInternal": false + }, + { + "x": 400, + "y": 257.82558, + "index": 4, + "body": { + "#": 536 + }, + "isInternal": false + }, + { + "x": 420, + "y": 237.82558, + "index": 5, + "body": { + "#": 536 + }, + "isInternal": false + }, + { + "x": 430, + "y": 237.82558, + "index": 6, + "body": { + "#": 536 + }, + "isInternal": false + }, + { + "x": 450, + "y": 257.82558, + "index": 7, + "body": { + "#": 536 + }, + "isInternal": false + }, + { + "x": 425, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 598 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 600 + }, + "max": { + "#": 601 + } + }, + { + "x": 400, + "y": 237.82558 + }, + { + "x": 450, + "y": 290.73285 + }, + { + "x": 425, + "y": 259.91831 + }, + [ + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,4,5", + "startCol": 8, + "endCol": 9, + "startRow": 4, + "endRow": 5 + }, + { + "id": 28, + "type": "body", + "label": "Body", + "parts": { + "#": 610 + }, + "angle": 0, + "vertices": { + "#": 655 + }, + "position": { + "#": 664 + }, + "force": { + "#": 665 + }, + "torque": 0, + "positionImpulse": { + "#": 666 + }, + "constraintImpulse": { + "#": 667 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 668 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 669 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 670 + }, + "bounds": { + "#": 672 + }, + "positionPrev": { + "#": 675 + }, + "anglePrev": 0, + "axes": { + "#": 676 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 609 + }, + "sleepCounter": 0, + "region": { + "#": 681 + } + }, + [ + { + "#": 609 + }, + { + "#": 611 + }, + { + "#": 633 + } + ], + { + "id": 26, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 612 + }, + "angle": 0, + "vertices": { + "#": 613 + }, + "position": { + "#": 618 + }, + "force": { + "#": 619 + }, + "torque": 0, + "positionImpulse": { + "#": 620 + }, + "constraintImpulse": { + "#": 621 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 622 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 623 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 624 + }, + "bounds": { + "#": 626 + }, + "positionPrev": { + "#": 629 + }, + "anglePrev": 0, + "axes": { + "#": 630 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 609 + }, + "sleepCounter": 0 + }, + [ + { + "#": 611 + } + ], + [ + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + } + ], + { + "x": 450, + "y": 257.82558, + "index": 0, + "body": { + "#": 611 + }, + "isInternal": false + }, + { + "x": 500, + "y": 257.82558, + "index": 1, + "body": { + "#": 611 + }, + "isInternal": false + }, + { + "x": 500, + "y": 267.82558, + "index": 2, + "body": { + "#": 611 + }, + "isInternal": false + }, + { + "x": 450, + "y": 267.82558, + "index": 3, + "body": { + "#": 611 + }, + "isInternal": false + }, + { + "x": 475, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 625 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 627 + }, + "max": { + "#": 628 + } + }, + { + "x": 450, + "y": 257.82558 + }, + { + "x": 500, + "y": 270.73285 + }, + { + "x": 450, + "y": 220 + }, + [ + { + "#": 631 + }, + { + "#": 632 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 27, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 634 + }, + "angle": 0, + "vertices": { + "#": 635 + }, + "position": { + "#": 640 + }, + "force": { + "#": 641 + }, + "torque": 0, + "positionImpulse": { + "#": 642 + }, + "constraintImpulse": { + "#": 643 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 644 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 645 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 646 + }, + "bounds": { + "#": 648 + }, + "positionPrev": { + "#": 651 + }, + "anglePrev": 0, + "axes": { + "#": 652 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 609 + }, + "sleepCounter": 0 + }, + [ + { + "#": 633 + } + ], + [ + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + } + ], + { + "x": 470, + "y": 237.82558, + "index": 0, + "body": { + "#": 633 + }, + "isInternal": false + }, + { + "x": 480, + "y": 237.82558, + "index": 1, + "body": { + "#": 633 + }, + "isInternal": false + }, + { + "x": 480, + "y": 287.82558, + "index": 2, + "body": { + "#": 633 + }, + "isInternal": false + }, + { + "x": 470, + "y": 287.82558, + "index": 3, + "body": { + "#": 633 + }, + "isInternal": false + }, + { + "x": 475, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 647 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 649 + }, + "max": { + "#": 650 + } + }, + { + "x": 470, + "y": 237.82558 + }, + { + "x": 480, + "y": 290.73285 + }, + { + "x": 450, + "y": 220 + }, + [ + { + "#": 653 + }, + { + "#": 654 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + } + ], + { + "x": 500, + "y": 267.82558, + "index": 0, + "body": { + "#": 609 + }, + "isInternal": false + }, + { + "x": 480, + "y": 287.82558, + "index": 1, + "body": { + "#": 609 + }, + "isInternal": false + }, + { + "x": 470, + "y": 287.82558, + "index": 2, + "body": { + "#": 609 + }, + "isInternal": false + }, + { + "x": 450, + "y": 267.82558, + "index": 3, + "body": { + "#": 609 + }, + "isInternal": false + }, + { + "x": 450, + "y": 257.82558, + "index": 4, + "body": { + "#": 609 + }, + "isInternal": false + }, + { + "x": 470, + "y": 237.82558, + "index": 5, + "body": { + "#": 609 + }, + "isInternal": false + }, + { + "x": 480, + "y": 237.82558, + "index": 6, + "body": { + "#": 609 + }, + "isInternal": false + }, + { + "x": 500, + "y": 257.82558, + "index": 7, + "body": { + "#": 609 + }, + "isInternal": false + }, + { + "x": 475, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 671 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 673 + }, + "max": { + "#": 674 + } + }, + { + "x": 450, + "y": 237.82558 + }, + { + "x": 500, + "y": 290.73285 + }, + { + "x": 475, + "y": 259.91831 + }, + [ + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,4,5", + "startCol": 9, + "endCol": 10, + "startRow": 4, + "endRow": 5 + }, + { + "id": 31, + "type": "body", + "label": "Body", + "parts": { + "#": 683 + }, + "angle": 0, + "vertices": { + "#": 728 + }, + "position": { + "#": 737 + }, + "force": { + "#": 738 + }, + "torque": 0, + "positionImpulse": { + "#": 739 + }, + "constraintImpulse": { + "#": 740 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 741 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 742 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 743 + }, + "bounds": { + "#": 745 + }, + "positionPrev": { + "#": 748 + }, + "anglePrev": 0, + "axes": { + "#": 749 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 682 + }, + "sleepCounter": 0, + "region": { + "#": 754 + } + }, + [ + { + "#": 682 + }, + { + "#": 684 + }, + { + "#": 706 + } + ], + { + "id": 29, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 685 + }, + "angle": 0, + "vertices": { + "#": 686 + }, + "position": { + "#": 691 + }, + "force": { + "#": 692 + }, + "torque": 0, + "positionImpulse": { + "#": 693 + }, + "constraintImpulse": { + "#": 694 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 695 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 696 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 697 + }, + "bounds": { + "#": 699 + }, + "positionPrev": { + "#": 702 + }, + "anglePrev": 0, + "axes": { + "#": 703 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 682 + }, + "sleepCounter": 0 + }, + [ + { + "#": 684 + } + ], + [ + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + } + ], + { + "x": 500, + "y": 257.82558, + "index": 0, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 550, + "y": 257.82558, + "index": 1, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 550, + "y": 267.82558, + "index": 2, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 500, + "y": 267.82558, + "index": 3, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 525, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 698 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 700 + }, + "max": { + "#": 701 + } + }, + { + "x": 500, + "y": 257.82558 + }, + { + "x": 550, + "y": 270.73285 + }, + { + "x": 500, + "y": 220 + }, + [ + { + "#": 704 + }, + { + "#": 705 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 30, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 707 + }, + "angle": 0, + "vertices": { + "#": 708 + }, + "position": { + "#": 713 + }, + "force": { + "#": 714 + }, + "torque": 0, + "positionImpulse": { + "#": 715 + }, + "constraintImpulse": { + "#": 716 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 717 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 718 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 719 + }, + "bounds": { + "#": 721 + }, + "positionPrev": { + "#": 724 + }, + "anglePrev": 0, + "axes": { + "#": 725 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 682 + }, + "sleepCounter": 0 + }, + [ + { + "#": 706 + } + ], + [ + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + } + ], + { + "x": 520, + "y": 237.82558, + "index": 0, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 530, + "y": 237.82558, + "index": 1, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 530, + "y": 287.82558, + "index": 2, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 520, + "y": 287.82558, + "index": 3, + "body": { + "#": 706 + }, + "isInternal": false + }, + { + "x": 525, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 720 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 722 + }, + "max": { + "#": 723 + } + }, + { + "x": 520, + "y": 237.82558 + }, + { + "x": 530, + "y": 290.73285 + }, + { + "x": 500, + "y": 220 + }, + [ + { + "#": 726 + }, + { + "#": 727 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + } + ], + { + "x": 550, + "y": 267.82558, + "index": 0, + "body": { + "#": 682 + }, + "isInternal": false + }, + { + "x": 530, + "y": 287.82558, + "index": 1, + "body": { + "#": 682 + }, + "isInternal": false + }, + { + "x": 520, + "y": 287.82558, + "index": 2, + "body": { + "#": 682 + }, + "isInternal": false + }, + { + "x": 500, + "y": 267.82558, + "index": 3, + "body": { + "#": 682 + }, + "isInternal": false + }, + { + "x": 500, + "y": 257.82558, + "index": 4, + "body": { + "#": 682 + }, + "isInternal": false + }, + { + "x": 520, + "y": 237.82558, + "index": 5, + "body": { + "#": 682 + }, + "isInternal": false + }, + { + "x": 530, + "y": 237.82558, + "index": 6, + "body": { + "#": 682 + }, + "isInternal": false + }, + { + "x": 550, + "y": 257.82558, + "index": 7, + "body": { + "#": 682 + }, + "isInternal": false + }, + { + "x": 525, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 744 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 746 + }, + "max": { + "#": 747 + } + }, + { + "x": 500, + "y": 237.82558 + }, + { + "x": 550, + "y": 290.73285 + }, + { + "x": 525, + "y": 259.91831 + }, + [ + { + "#": 750 + }, + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,4,5", + "startCol": 10, + "endCol": 11, + "startRow": 4, + "endRow": 5 + }, + { + "id": 34, + "type": "body", + "label": "Body", + "parts": { + "#": 756 + }, + "angle": 0, + "vertices": { + "#": 801 + }, + "position": { + "#": 810 + }, + "force": { + "#": 811 + }, + "torque": 0, + "positionImpulse": { + "#": 812 + }, + "constraintImpulse": { + "#": 813 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 814 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 815 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 816 + }, + "bounds": { + "#": 818 + }, + "positionPrev": { + "#": 821 + }, + "anglePrev": 0, + "axes": { + "#": 822 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 755 + }, + "sleepCounter": 0, + "region": { + "#": 827 + } + }, + [ + { + "#": 755 + }, + { + "#": 757 + }, + { + "#": 779 + } + ], + { + "id": 32, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 758 + }, + "angle": 0, + "vertices": { + "#": 759 + }, + "position": { + "#": 764 + }, + "force": { + "#": 765 + }, + "torque": 0, + "positionImpulse": { + "#": 766 + }, + "constraintImpulse": { + "#": 767 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 768 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 769 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 770 + }, + "bounds": { + "#": 772 + }, + "positionPrev": { + "#": 775 + }, + "anglePrev": 0, + "axes": { + "#": 776 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 755 + }, + "sleepCounter": 0 + }, + [ + { + "#": 757 + } + ], + [ + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + } + ], + { + "x": 550, + "y": 257.82558, + "index": 0, + "body": { + "#": 757 + }, + "isInternal": false + }, + { + "x": 600, + "y": 257.82558, + "index": 1, + "body": { + "#": 757 + }, + "isInternal": false + }, + { + "x": 600, + "y": 267.82558, + "index": 2, + "body": { + "#": 757 + }, + "isInternal": false + }, + { + "x": 550, + "y": 267.82558, + "index": 3, + "body": { + "#": 757 + }, + "isInternal": false + }, + { + "x": 575, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 771 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 773 + }, + "max": { + "#": 774 + } + }, + { + "x": 550, + "y": 257.82558 + }, + { + "x": 600, + "y": 270.73285 + }, + { + "x": 550, + "y": 220 + }, + [ + { + "#": 777 + }, + { + "#": 778 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 33, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 780 + }, + "angle": 0, + "vertices": { + "#": 781 + }, + "position": { + "#": 786 + }, + "force": { + "#": 787 + }, + "torque": 0, + "positionImpulse": { + "#": 788 + }, + "constraintImpulse": { + "#": 789 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 790 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 791 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 792 + }, + "bounds": { + "#": 794 + }, + "positionPrev": { + "#": 797 + }, + "anglePrev": 0, + "axes": { + "#": 798 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 755 + }, + "sleepCounter": 0 + }, + [ + { + "#": 779 + } + ], + [ + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + }, + { + "#": 785 + } + ], + { + "x": 570, + "y": 237.82558, + "index": 0, + "body": { + "#": 779 + }, + "isInternal": false + }, + { + "x": 580, + "y": 237.82558, + "index": 1, + "body": { + "#": 779 + }, + "isInternal": false + }, + { + "x": 580, + "y": 287.82558, + "index": 2, + "body": { + "#": 779 + }, + "isInternal": false + }, + { + "x": 570, + "y": 287.82558, + "index": 3, + "body": { + "#": 779 + }, + "isInternal": false + }, + { + "x": 575, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 793 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 795 + }, + "max": { + "#": 796 + } + }, + { + "x": 570, + "y": 237.82558 + }, + { + "x": 580, + "y": 290.73285 + }, + { + "x": 550, + "y": 220 + }, + [ + { + "#": 799 + }, + { + "#": 800 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + }, + { + "#": 806 + }, + { + "#": 807 + }, + { + "#": 808 + }, + { + "#": 809 + } + ], + { + "x": 600, + "y": 267.82558, + "index": 0, + "body": { + "#": 755 + }, + "isInternal": false + }, + { + "x": 580, + "y": 287.82558, + "index": 1, + "body": { + "#": 755 + }, + "isInternal": false + }, + { + "x": 570, + "y": 287.82558, + "index": 2, + "body": { + "#": 755 + }, + "isInternal": false + }, + { + "x": 550, + "y": 267.82558, + "index": 3, + "body": { + "#": 755 + }, + "isInternal": false + }, + { + "x": 550, + "y": 257.82558, + "index": 4, + "body": { + "#": 755 + }, + "isInternal": false + }, + { + "x": 570, + "y": 237.82558, + "index": 5, + "body": { + "#": 755 + }, + "isInternal": false + }, + { + "x": 580, + "y": 237.82558, + "index": 6, + "body": { + "#": 755 + }, + "isInternal": false + }, + { + "x": 600, + "y": 257.82558, + "index": 7, + "body": { + "#": 755 + }, + "isInternal": false + }, + { + "x": 575, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 817 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 819 + }, + "max": { + "#": 820 + } + }, + { + "x": 550, + "y": 237.82558 + }, + { + "x": 600, + "y": 290.73285 + }, + { + "x": 575, + "y": 259.91831 + }, + [ + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,4,5", + "startCol": 11, + "endCol": 12, + "startRow": 4, + "endRow": 5 + }, + { + "id": 37, + "type": "body", + "label": "Body", + "parts": { + "#": 829 + }, + "angle": 0, + "vertices": { + "#": 874 + }, + "position": { + "#": 883 + }, + "force": { + "#": 884 + }, + "torque": 0, + "positionImpulse": { + "#": 885 + }, + "constraintImpulse": { + "#": 886 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 887 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 888 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 889 + }, + "bounds": { + "#": 891 + }, + "positionPrev": { + "#": 894 + }, + "anglePrev": 0, + "axes": { + "#": 895 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 828 + }, + "sleepCounter": 0, + "region": { + "#": 900 + } + }, + [ + { + "#": 828 + }, + { + "#": 830 + }, + { + "#": 852 + } + ], + { + "id": 35, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 831 + }, + "angle": 0, + "vertices": { + "#": 832 + }, + "position": { + "#": 837 + }, + "force": { + "#": 838 + }, + "torque": 0, + "positionImpulse": { + "#": 839 + }, + "constraintImpulse": { + "#": 840 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 841 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 842 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 843 + }, + "bounds": { + "#": 845 + }, + "positionPrev": { + "#": 848 + }, + "anglePrev": 0, + "axes": { + "#": 849 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 828 + }, + "sleepCounter": 0 + }, + [ + { + "#": 830 + } + ], + [ + { + "#": 833 + }, + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + } + ], + { + "x": 600, + "y": 257.82558, + "index": 0, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 650, + "y": 257.82558, + "index": 1, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 650, + "y": 267.82558, + "index": 2, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 600, + "y": 267.82558, + "index": 3, + "body": { + "#": 830 + }, + "isInternal": false + }, + { + "x": 625, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 844 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 846 + }, + "max": { + "#": 847 + } + }, + { + "x": 600, + "y": 257.82558 + }, + { + "x": 650, + "y": 270.73285 + }, + { + "x": 600, + "y": 220 + }, + [ + { + "#": 850 + }, + { + "#": 851 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 36, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 853 + }, + "angle": 0, + "vertices": { + "#": 854 + }, + "position": { + "#": 859 + }, + "force": { + "#": 860 + }, + "torque": 0, + "positionImpulse": { + "#": 861 + }, + "constraintImpulse": { + "#": 862 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 863 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 864 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 865 + }, + "bounds": { + "#": 867 + }, + "positionPrev": { + "#": 870 + }, + "anglePrev": 0, + "axes": { + "#": 871 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 828 + }, + "sleepCounter": 0 + }, + [ + { + "#": 852 + } + ], + [ + { + "#": 855 + }, + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + } + ], + { + "x": 620, + "y": 237.82558, + "index": 0, + "body": { + "#": 852 + }, + "isInternal": false + }, + { + "x": 630, + "y": 237.82558, + "index": 1, + "body": { + "#": 852 + }, + "isInternal": false + }, + { + "x": 630, + "y": 287.82558, + "index": 2, + "body": { + "#": 852 + }, + "isInternal": false + }, + { + "x": 620, + "y": 287.82558, + "index": 3, + "body": { + "#": 852 + }, + "isInternal": false + }, + { + "x": 625, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 866 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 868 + }, + "max": { + "#": 869 + } + }, + { + "x": 620, + "y": 237.82558 + }, + { + "x": 630, + "y": 290.73285 + }, + { + "x": 600, + "y": 220 + }, + [ + { + "#": 872 + }, + { + "#": 873 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 875 + }, + { + "#": 876 + }, + { + "#": 877 + }, + { + "#": 878 + }, + { + "#": 879 + }, + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + } + ], + { + "x": 650, + "y": 267.82558, + "index": 0, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 630, + "y": 287.82558, + "index": 1, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 620, + "y": 287.82558, + "index": 2, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 600, + "y": 267.82558, + "index": 3, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 600, + "y": 257.82558, + "index": 4, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 620, + "y": 237.82558, + "index": 5, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 630, + "y": 237.82558, + "index": 6, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 650, + "y": 257.82558, + "index": 7, + "body": { + "#": 828 + }, + "isInternal": false + }, + { + "x": 625, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 890 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 892 + }, + "max": { + "#": 893 + } + }, + { + "x": 600, + "y": 237.82558 + }, + { + "x": 650, + "y": 290.73285 + }, + { + "x": 625, + "y": 259.91831 + }, + [ + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,13,4,5", + "startCol": 12, + "endCol": 13, + "startRow": 4, + "endRow": 5 + }, + { + "id": 40, + "type": "body", + "label": "Body", + "parts": { + "#": 902 + }, + "angle": 0, + "vertices": { + "#": 947 + }, + "position": { + "#": 956 + }, + "force": { + "#": 957 + }, + "torque": 0, + "positionImpulse": { + "#": 958 + }, + "constraintImpulse": { + "#": 959 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 960 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 961 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 962 + }, + "bounds": { + "#": 964 + }, + "positionPrev": { + "#": 967 + }, + "anglePrev": 0, + "axes": { + "#": 968 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 901 + }, + "sleepCounter": 0, + "region": { + "#": 973 + } + }, + [ + { + "#": 901 + }, + { + "#": 903 + }, + { + "#": 925 + } + ], + { + "id": 38, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 904 + }, + "angle": 0, + "vertices": { + "#": 905 + }, + "position": { + "#": 910 + }, + "force": { + "#": 911 + }, + "torque": 0, + "positionImpulse": { + "#": 912 + }, + "constraintImpulse": { + "#": 913 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 914 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 915 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 916 + }, + "bounds": { + "#": 918 + }, + "positionPrev": { + "#": 921 + }, + "anglePrev": 0, + "axes": { + "#": 922 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 901 + }, + "sleepCounter": 0 + }, + [ + { + "#": 903 + } + ], + [ + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + } + ], + { + "x": 650, + "y": 257.82558, + "index": 0, + "body": { + "#": 903 + }, + "isInternal": false + }, + { + "x": 700, + "y": 257.82558, + "index": 1, + "body": { + "#": 903 + }, + "isInternal": false + }, + { + "x": 700, + "y": 267.82558, + "index": 2, + "body": { + "#": 903 + }, + "isInternal": false + }, + { + "x": 650, + "y": 267.82558, + "index": 3, + "body": { + "#": 903 + }, + "isInternal": false + }, + { + "x": 675, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 917 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 919 + }, + "max": { + "#": 920 + } + }, + { + "x": 650, + "y": 257.82558 + }, + { + "x": 700, + "y": 270.73285 + }, + { + "x": 650, + "y": 220 + }, + [ + { + "#": 923 + }, + { + "#": 924 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 39, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 926 + }, + "angle": 0, + "vertices": { + "#": 927 + }, + "position": { + "#": 932 + }, + "force": { + "#": 933 + }, + "torque": 0, + "positionImpulse": { + "#": 934 + }, + "constraintImpulse": { + "#": 935 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 936 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 937 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 938 + }, + "bounds": { + "#": 940 + }, + "positionPrev": { + "#": 943 + }, + "anglePrev": 0, + "axes": { + "#": 944 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 901 + }, + "sleepCounter": 0 + }, + [ + { + "#": 925 + } + ], + [ + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + } + ], + { + "x": 670, + "y": 237.82558, + "index": 0, + "body": { + "#": 925 + }, + "isInternal": false + }, + { + "x": 680, + "y": 237.82558, + "index": 1, + "body": { + "#": 925 + }, + "isInternal": false + }, + { + "x": 680, + "y": 287.82558, + "index": 2, + "body": { + "#": 925 + }, + "isInternal": false + }, + { + "x": 670, + "y": 287.82558, + "index": 3, + "body": { + "#": 925 + }, + "isInternal": false + }, + { + "x": 675, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 939 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 941 + }, + "max": { + "#": 942 + } + }, + { + "x": 670, + "y": 237.82558 + }, + { + "x": 680, + "y": 290.73285 + }, + { + "x": 650, + "y": 220 + }, + [ + { + "#": 945 + }, + { + "#": 946 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + } + ], + { + "x": 700, + "y": 267.82558, + "index": 0, + "body": { + "#": 901 + }, + "isInternal": false + }, + { + "x": 680, + "y": 287.82558, + "index": 1, + "body": { + "#": 901 + }, + "isInternal": false + }, + { + "x": 670, + "y": 287.82558, + "index": 2, + "body": { + "#": 901 + }, + "isInternal": false + }, + { + "x": 650, + "y": 267.82558, + "index": 3, + "body": { + "#": 901 + }, + "isInternal": false + }, + { + "x": 650, + "y": 257.82558, + "index": 4, + "body": { + "#": 901 + }, + "isInternal": false + }, + { + "x": 670, + "y": 237.82558, + "index": 5, + "body": { + "#": 901 + }, + "isInternal": false + }, + { + "x": 680, + "y": 237.82558, + "index": 6, + "body": { + "#": 901 + }, + "isInternal": false + }, + { + "x": 700, + "y": 257.82558, + "index": 7, + "body": { + "#": 901 + }, + "isInternal": false + }, + { + "x": 675, + "y": 262.82558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 963 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 965 + }, + "max": { + "#": 966 + } + }, + { + "x": 650, + "y": 237.82558 + }, + { + "x": 700, + "y": 290.73285 + }, + { + "x": 675, + "y": 259.91831 + }, + [ + { + "#": 969 + }, + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "13,14,4,5", + "startCol": 13, + "endCol": 14, + "startRow": 4, + "endRow": 5 + }, + { + "id": 43, + "type": "body", + "label": "Body", + "parts": { + "#": 975 + }, + "angle": 0, + "vertices": { + "#": 1020 + }, + "position": { + "#": 1029 + }, + "force": { + "#": 1030 + }, + "torque": 0, + "positionImpulse": { + "#": 1031 + }, + "constraintImpulse": { + "#": 1032 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1033 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1034 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1035 + }, + "bounds": { + "#": 1037 + }, + "positionPrev": { + "#": 1040 + }, + "anglePrev": 0, + "axes": { + "#": 1041 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 974 + }, + "sleepCounter": 0, + "region": { + "#": 1046 + } + }, + [ + { + "#": 974 + }, + { + "#": 976 + }, + { + "#": 998 + } + ], + { + "id": 41, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 977 + }, + "angle": 0, + "vertices": { + "#": 978 + }, + "position": { + "#": 983 + }, + "force": { + "#": 984 + }, + "torque": 0, + "positionImpulse": { + "#": 985 + }, + "constraintImpulse": { + "#": 986 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 987 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 988 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 989 + }, + "bounds": { + "#": 991 + }, + "positionPrev": { + "#": 994 + }, + "anglePrev": 0, + "axes": { + "#": 995 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 974 + }, + "sleepCounter": 0 + }, + [ + { + "#": 976 + } + ], + [ + { + "#": 979 + }, + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + } + ], + { + "x": 100, + "y": 307.77558, + "index": 0, + "body": { + "#": 976 + }, + "isInternal": false + }, + { + "x": 150, + "y": 307.77558, + "index": 1, + "body": { + "#": 976 + }, + "isInternal": false + }, + { + "x": 150, + "y": 317.77558, + "index": 2, + "body": { + "#": 976 + }, + "isInternal": false + }, + { + "x": 100, + "y": 317.77558, + "index": 3, + "body": { + "#": 976 + }, + "isInternal": false + }, + { + "x": 125, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 990 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 992 + }, + "max": { + "#": 993 + } + }, + { + "x": 100, + "y": 307.77558 + }, + { + "x": 150, + "y": 320.68285 + }, + { + "x": 100, + "y": 270 + }, + [ + { + "#": 996 + }, + { + "#": 997 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 42, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 999 + }, + "angle": 0, + "vertices": { + "#": 1000 + }, + "position": { + "#": 1005 + }, + "force": { + "#": 1006 + }, + "torque": 0, + "positionImpulse": { + "#": 1007 + }, + "constraintImpulse": { + "#": 1008 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1009 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1010 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1011 + }, + "bounds": { + "#": 1013 + }, + "positionPrev": { + "#": 1016 + }, + "anglePrev": 0, + "axes": { + "#": 1017 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 974 + }, + "sleepCounter": 0 + }, + [ + { + "#": 998 + } + ], + [ + { + "#": 1001 + }, + { + "#": 1002 + }, + { + "#": 1003 + }, + { + "#": 1004 + } + ], + { + "x": 120, + "y": 287.77558, + "index": 0, + "body": { + "#": 998 + }, + "isInternal": false + }, + { + "x": 130, + "y": 287.77558, + "index": 1, + "body": { + "#": 998 + }, + "isInternal": false + }, + { + "x": 130, + "y": 337.77558, + "index": 2, + "body": { + "#": 998 + }, + "isInternal": false + }, + { + "x": 120, + "y": 337.77558, + "index": 3, + "body": { + "#": 998 + }, + "isInternal": false + }, + { + "x": 125, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1012 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1014 + }, + "max": { + "#": 1015 + } + }, + { + "x": 120, + "y": 287.77558 + }, + { + "x": 130, + "y": 340.68285 + }, + { + "x": 100, + "y": 270 + }, + [ + { + "#": 1018 + }, + { + "#": 1019 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + }, + { + "#": 1026 + }, + { + "#": 1027 + }, + { + "#": 1028 + } + ], + { + "x": 150, + "y": 317.77558, + "index": 0, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 130, + "y": 337.77558, + "index": 1, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 120, + "y": 337.77558, + "index": 2, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 100, + "y": 317.77558, + "index": 3, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 100, + "y": 307.77558, + "index": 4, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 120, + "y": 287.77558, + "index": 5, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 130, + "y": 287.77558, + "index": 6, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 150, + "y": 307.77558, + "index": 7, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 125, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1036 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1038 + }, + "max": { + "#": 1039 + } + }, + { + "x": 100, + "y": 287.77558 + }, + { + "x": 150, + "y": 340.68285 + }, + { + "x": 125, + "y": 309.86831 + }, + [ + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,3,5,7", + "startCol": 2, + "endCol": 3, + "startRow": 5, + "endRow": 7 + }, + { + "id": 46, + "type": "body", + "label": "Body", + "parts": { + "#": 1048 + }, + "angle": 0, + "vertices": { + "#": 1093 + }, + "position": { + "#": 1102 + }, + "force": { + "#": 1103 + }, + "torque": 0, + "positionImpulse": { + "#": 1104 + }, + "constraintImpulse": { + "#": 1105 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1106 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1107 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1108 + }, + "bounds": { + "#": 1110 + }, + "positionPrev": { + "#": 1113 + }, + "anglePrev": 0, + "axes": { + "#": 1114 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1047 + }, + "sleepCounter": 0, + "region": { + "#": 1119 + } + }, + [ + { + "#": 1047 + }, + { + "#": 1049 + }, + { + "#": 1071 + } + ], + { + "id": 44, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1050 + }, + "angle": 0, + "vertices": { + "#": 1051 + }, + "position": { + "#": 1056 + }, + "force": { + "#": 1057 + }, + "torque": 0, + "positionImpulse": { + "#": 1058 + }, + "constraintImpulse": { + "#": 1059 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1060 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1061 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1062 + }, + "bounds": { + "#": 1064 + }, + "positionPrev": { + "#": 1067 + }, + "anglePrev": 0, + "axes": { + "#": 1068 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1047 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1049 + } + ], + [ + { + "#": 1052 + }, + { + "#": 1053 + }, + { + "#": 1054 + }, + { + "#": 1055 + } + ], + { + "x": 150, + "y": 307.77558, + "index": 0, + "body": { + "#": 1049 + }, + "isInternal": false + }, + { + "x": 200, + "y": 307.77558, + "index": 1, + "body": { + "#": 1049 + }, + "isInternal": false + }, + { + "x": 200, + "y": 317.77558, + "index": 2, + "body": { + "#": 1049 + }, + "isInternal": false + }, + { + "x": 150, + "y": 317.77558, + "index": 3, + "body": { + "#": 1049 + }, + "isInternal": false + }, + { + "x": 175, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1063 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1065 + }, + "max": { + "#": 1066 + } + }, + { + "x": 150, + "y": 307.77558 + }, + { + "x": 200, + "y": 320.68285 + }, + { + "x": 150, + "y": 270 + }, + [ + { + "#": 1069 + }, + { + "#": 1070 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 45, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1072 + }, + "angle": 0, + "vertices": { + "#": 1073 + }, + "position": { + "#": 1078 + }, + "force": { + "#": 1079 + }, + "torque": 0, + "positionImpulse": { + "#": 1080 + }, + "constraintImpulse": { + "#": 1081 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1082 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1083 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1084 + }, + "bounds": { + "#": 1086 + }, + "positionPrev": { + "#": 1089 + }, + "anglePrev": 0, + "axes": { + "#": 1090 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1047 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1071 + } + ], + [ + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + } + ], + { + "x": 170, + "y": 287.77558, + "index": 0, + "body": { + "#": 1071 + }, + "isInternal": false + }, + { + "x": 180, + "y": 287.77558, + "index": 1, + "body": { + "#": 1071 + }, + "isInternal": false + }, + { + "x": 180, + "y": 337.77558, + "index": 2, + "body": { + "#": 1071 + }, + "isInternal": false + }, + { + "x": 170, + "y": 337.77558, + "index": 3, + "body": { + "#": 1071 + }, + "isInternal": false + }, + { + "x": 175, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1085 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1087 + }, + "max": { + "#": 1088 + } + }, + { + "x": 170, + "y": 287.77558 + }, + { + "x": 180, + "y": 340.68285 + }, + { + "x": 150, + "y": 270 + }, + [ + { + "#": 1091 + }, + { + "#": 1092 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + } + ], + { + "x": 200, + "y": 317.77558, + "index": 0, + "body": { + "#": 1047 + }, + "isInternal": false + }, + { + "x": 180, + "y": 337.77558, + "index": 1, + "body": { + "#": 1047 + }, + "isInternal": false + }, + { + "x": 170, + "y": 337.77558, + "index": 2, + "body": { + "#": 1047 + }, + "isInternal": false + }, + { + "x": 150, + "y": 317.77558, + "index": 3, + "body": { + "#": 1047 + }, + "isInternal": false + }, + { + "x": 150, + "y": 307.77558, + "index": 4, + "body": { + "#": 1047 + }, + "isInternal": false + }, + { + "x": 170, + "y": 287.77558, + "index": 5, + "body": { + "#": 1047 + }, + "isInternal": false + }, + { + "x": 180, + "y": 287.77558, + "index": 6, + "body": { + "#": 1047 + }, + "isInternal": false + }, + { + "x": 200, + "y": 307.77558, + "index": 7, + "body": { + "#": 1047 + }, + "isInternal": false + }, + { + "x": 175, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1109 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1111 + }, + "max": { + "#": 1112 + } + }, + { + "x": 150, + "y": 287.77558 + }, + { + "x": 200, + "y": 340.68285 + }, + { + "x": 175, + "y": 309.86831 + }, + [ + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + }, + { + "#": 1118 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,5,7", + "startCol": 3, + "endCol": 4, + "startRow": 5, + "endRow": 7 + }, + { + "id": 49, + "type": "body", + "label": "Body", + "parts": { + "#": 1121 + }, + "angle": 0, + "vertices": { + "#": 1166 + }, + "position": { + "#": 1175 + }, + "force": { + "#": 1176 + }, + "torque": 0, + "positionImpulse": { + "#": 1177 + }, + "constraintImpulse": { + "#": 1178 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1179 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1180 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1181 + }, + "bounds": { + "#": 1183 + }, + "positionPrev": { + "#": 1186 + }, + "anglePrev": 0, + "axes": { + "#": 1187 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1120 + }, + "sleepCounter": 0, + "region": { + "#": 1192 + } + }, + [ + { + "#": 1120 + }, + { + "#": 1122 + }, + { + "#": 1144 + } + ], + { + "id": 47, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1123 + }, + "angle": 0, + "vertices": { + "#": 1124 + }, + "position": { + "#": 1129 + }, + "force": { + "#": 1130 + }, + "torque": 0, + "positionImpulse": { + "#": 1131 + }, + "constraintImpulse": { + "#": 1132 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1133 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1134 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1135 + }, + "bounds": { + "#": 1137 + }, + "positionPrev": { + "#": 1140 + }, + "anglePrev": 0, + "axes": { + "#": 1141 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1120 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1122 + } + ], + [ + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + } + ], + { + "x": 200, + "y": 307.77558, + "index": 0, + "body": { + "#": 1122 + }, + "isInternal": false + }, + { + "x": 250, + "y": 307.77558, + "index": 1, + "body": { + "#": 1122 + }, + "isInternal": false + }, + { + "x": 250, + "y": 317.77558, + "index": 2, + "body": { + "#": 1122 + }, + "isInternal": false + }, + { + "x": 200, + "y": 317.77558, + "index": 3, + "body": { + "#": 1122 + }, + "isInternal": false + }, + { + "x": 225, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1136 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1138 + }, + "max": { + "#": 1139 + } + }, + { + "x": 200, + "y": 307.77558 + }, + { + "x": 250, + "y": 320.68285 + }, + { + "x": 200, + "y": 270 + }, + [ + { + "#": 1142 + }, + { + "#": 1143 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 48, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1145 + }, + "angle": 0, + "vertices": { + "#": 1146 + }, + "position": { + "#": 1151 + }, + "force": { + "#": 1152 + }, + "torque": 0, + "positionImpulse": { + "#": 1153 + }, + "constraintImpulse": { + "#": 1154 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1155 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1156 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1157 + }, + "bounds": { + "#": 1159 + }, + "positionPrev": { + "#": 1162 + }, + "anglePrev": 0, + "axes": { + "#": 1163 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1120 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1144 + } + ], + [ + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + } + ], + { + "x": 220, + "y": 287.77558, + "index": 0, + "body": { + "#": 1144 + }, + "isInternal": false + }, + { + "x": 230, + "y": 287.77558, + "index": 1, + "body": { + "#": 1144 + }, + "isInternal": false + }, + { + "x": 230, + "y": 337.77558, + "index": 2, + "body": { + "#": 1144 + }, + "isInternal": false + }, + { + "x": 220, + "y": 337.77558, + "index": 3, + "body": { + "#": 1144 + }, + "isInternal": false + }, + { + "x": 225, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1158 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1160 + }, + "max": { + "#": 1161 + } + }, + { + "x": 220, + "y": 287.77558 + }, + { + "x": 230, + "y": 340.68285 + }, + { + "x": 200, + "y": 270 + }, + [ + { + "#": 1164 + }, + { + "#": 1165 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1167 + }, + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + } + ], + { + "x": 250, + "y": 317.77558, + "index": 0, + "body": { + "#": 1120 + }, + "isInternal": false + }, + { + "x": 230, + "y": 337.77558, + "index": 1, + "body": { + "#": 1120 + }, + "isInternal": false + }, + { + "x": 220, + "y": 337.77558, + "index": 2, + "body": { + "#": 1120 + }, + "isInternal": false + }, + { + "x": 200, + "y": 317.77558, + "index": 3, + "body": { + "#": 1120 + }, + "isInternal": false + }, + { + "x": 200, + "y": 307.77558, + "index": 4, + "body": { + "#": 1120 + }, + "isInternal": false + }, + { + "x": 220, + "y": 287.77558, + "index": 5, + "body": { + "#": 1120 + }, + "isInternal": false + }, + { + "x": 230, + "y": 287.77558, + "index": 6, + "body": { + "#": 1120 + }, + "isInternal": false + }, + { + "x": 250, + "y": 307.77558, + "index": 7, + "body": { + "#": 1120 + }, + "isInternal": false + }, + { + "x": 225, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1182 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1184 + }, + "max": { + "#": 1185 + } + }, + { + "x": 200, + "y": 287.77558 + }, + { + "x": 250, + "y": 340.68285 + }, + { + "x": 225, + "y": 309.86831 + }, + [ + { + "#": 1188 + }, + { + "#": 1189 + }, + { + "#": 1190 + }, + { + "#": 1191 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,5,7", + "startCol": 4, + "endCol": 5, + "startRow": 5, + "endRow": 7 + }, + { + "id": 52, + "type": "body", + "label": "Body", + "parts": { + "#": 1194 + }, + "angle": 0, + "vertices": { + "#": 1239 + }, + "position": { + "#": 1248 + }, + "force": { + "#": 1249 + }, + "torque": 0, + "positionImpulse": { + "#": 1250 + }, + "constraintImpulse": { + "#": 1251 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1252 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1253 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1254 + }, + "bounds": { + "#": 1256 + }, + "positionPrev": { + "#": 1259 + }, + "anglePrev": 0, + "axes": { + "#": 1260 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1193 + }, + "sleepCounter": 0, + "region": { + "#": 1265 + } + }, + [ + { + "#": 1193 + }, + { + "#": 1195 + }, + { + "#": 1217 + } + ], + { + "id": 50, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1196 + }, + "angle": 0, + "vertices": { + "#": 1197 + }, + "position": { + "#": 1202 + }, + "force": { + "#": 1203 + }, + "torque": 0, + "positionImpulse": { + "#": 1204 + }, + "constraintImpulse": { + "#": 1205 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1206 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1207 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1208 + }, + "bounds": { + "#": 1210 + }, + "positionPrev": { + "#": 1213 + }, + "anglePrev": 0, + "axes": { + "#": 1214 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1193 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1195 + } + ], + [ + { + "#": 1198 + }, + { + "#": 1199 + }, + { + "#": 1200 + }, + { + "#": 1201 + } + ], + { + "x": 250, + "y": 307.77558, + "index": 0, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 300, + "y": 307.77558, + "index": 1, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 300, + "y": 317.77558, + "index": 2, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 250, + "y": 317.77558, + "index": 3, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 275, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1209 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1211 + }, + "max": { + "#": 1212 + } + }, + { + "x": 250, + "y": 307.77558 + }, + { + "x": 300, + "y": 320.68285 + }, + { + "x": 250, + "y": 270 + }, + [ + { + "#": 1215 + }, + { + "#": 1216 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 51, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1218 + }, + "angle": 0, + "vertices": { + "#": 1219 + }, + "position": { + "#": 1224 + }, + "force": { + "#": 1225 + }, + "torque": 0, + "positionImpulse": { + "#": 1226 + }, + "constraintImpulse": { + "#": 1227 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1228 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1229 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1230 + }, + "bounds": { + "#": 1232 + }, + "positionPrev": { + "#": 1235 + }, + "anglePrev": 0, + "axes": { + "#": 1236 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1193 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1217 + } + ], + [ + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + } + ], + { + "x": 270, + "y": 287.77558, + "index": 0, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 280, + "y": 287.77558, + "index": 1, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 280, + "y": 337.77558, + "index": 2, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 270, + "y": 337.77558, + "index": 3, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 275, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1231 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1233 + }, + "max": { + "#": 1234 + } + }, + { + "x": 270, + "y": 287.77558 + }, + { + "x": 280, + "y": 340.68285 + }, + { + "x": 250, + "y": 270 + }, + [ + { + "#": 1237 + }, + { + "#": 1238 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + }, + { + "#": 1247 + } + ], + { + "x": 300, + "y": 317.77558, + "index": 0, + "body": { + "#": 1193 + }, + "isInternal": false + }, + { + "x": 280, + "y": 337.77558, + "index": 1, + "body": { + "#": 1193 + }, + "isInternal": false + }, + { + "x": 270, + "y": 337.77558, + "index": 2, + "body": { + "#": 1193 + }, + "isInternal": false + }, + { + "x": 250, + "y": 317.77558, + "index": 3, + "body": { + "#": 1193 + }, + "isInternal": false + }, + { + "x": 250, + "y": 307.77558, + "index": 4, + "body": { + "#": 1193 + }, + "isInternal": false + }, + { + "x": 270, + "y": 287.77558, + "index": 5, + "body": { + "#": 1193 + }, + "isInternal": false + }, + { + "x": 280, + "y": 287.77558, + "index": 6, + "body": { + "#": 1193 + }, + "isInternal": false + }, + { + "x": 300, + "y": 307.77558, + "index": 7, + "body": { + "#": 1193 + }, + "isInternal": false + }, + { + "x": 275, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1255 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1257 + }, + "max": { + "#": 1258 + } + }, + { + "x": 250, + "y": 287.77558 + }, + { + "x": 300, + "y": 340.68285 + }, + { + "x": 275, + "y": 309.86831 + }, + [ + { + "#": 1261 + }, + { + "#": 1262 + }, + { + "#": 1263 + }, + { + "#": 1264 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,5,7", + "startCol": 5, + "endCol": 6, + "startRow": 5, + "endRow": 7 + }, + { + "id": 55, + "type": "body", + "label": "Body", + "parts": { + "#": 1267 + }, + "angle": 0, + "vertices": { + "#": 1312 + }, + "position": { + "#": 1321 + }, + "force": { + "#": 1322 + }, + "torque": 0, + "positionImpulse": { + "#": 1323 + }, + "constraintImpulse": { + "#": 1324 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1325 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1326 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1327 + }, + "bounds": { + "#": 1329 + }, + "positionPrev": { + "#": 1332 + }, + "anglePrev": 0, + "axes": { + "#": 1333 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1266 + }, + "sleepCounter": 0, + "region": { + "#": 1338 + } + }, + [ + { + "#": 1266 + }, + { + "#": 1268 + }, + { + "#": 1290 + } + ], + { + "id": 53, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1269 + }, + "angle": 0, + "vertices": { + "#": 1270 + }, + "position": { + "#": 1275 + }, + "force": { + "#": 1276 + }, + "torque": 0, + "positionImpulse": { + "#": 1277 + }, + "constraintImpulse": { + "#": 1278 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1279 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1280 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1281 + }, + "bounds": { + "#": 1283 + }, + "positionPrev": { + "#": 1286 + }, + "anglePrev": 0, + "axes": { + "#": 1287 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1266 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1268 + } + ], + [ + { + "#": 1271 + }, + { + "#": 1272 + }, + { + "#": 1273 + }, + { + "#": 1274 + } + ], + { + "x": 300, + "y": 307.77558, + "index": 0, + "body": { + "#": 1268 + }, + "isInternal": false + }, + { + "x": 350, + "y": 307.77558, + "index": 1, + "body": { + "#": 1268 + }, + "isInternal": false + }, + { + "x": 350, + "y": 317.77558, + "index": 2, + "body": { + "#": 1268 + }, + "isInternal": false + }, + { + "x": 300, + "y": 317.77558, + "index": 3, + "body": { + "#": 1268 + }, + "isInternal": false + }, + { + "x": 325, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1282 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1284 + }, + "max": { + "#": 1285 + } + }, + { + "x": 300, + "y": 307.77558 + }, + { + "x": 350, + "y": 320.68285 + }, + { + "x": 300, + "y": 270 + }, + [ + { + "#": 1288 + }, + { + "#": 1289 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 54, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1291 + }, + "angle": 0, + "vertices": { + "#": 1292 + }, + "position": { + "#": 1297 + }, + "force": { + "#": 1298 + }, + "torque": 0, + "positionImpulse": { + "#": 1299 + }, + "constraintImpulse": { + "#": 1300 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1301 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1302 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1303 + }, + "bounds": { + "#": 1305 + }, + "positionPrev": { + "#": 1308 + }, + "anglePrev": 0, + "axes": { + "#": 1309 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1266 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1290 + } + ], + [ + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + }, + { + "#": 1296 + } + ], + { + "x": 320, + "y": 287.77558, + "index": 0, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 330, + "y": 287.77558, + "index": 1, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 330, + "y": 337.77558, + "index": 2, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 320, + "y": 337.77558, + "index": 3, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 325, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1304 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1306 + }, + "max": { + "#": 1307 + } + }, + { + "x": 320, + "y": 287.77558 + }, + { + "x": 330, + "y": 340.68285 + }, + { + "x": 300, + "y": 270 + }, + [ + { + "#": 1310 + }, + { + "#": 1311 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1313 + }, + { + "#": 1314 + }, + { + "#": 1315 + }, + { + "#": 1316 + }, + { + "#": 1317 + }, + { + "#": 1318 + }, + { + "#": 1319 + }, + { + "#": 1320 + } + ], + { + "x": 350, + "y": 317.77558, + "index": 0, + "body": { + "#": 1266 + }, + "isInternal": false + }, + { + "x": 330, + "y": 337.77558, + "index": 1, + "body": { + "#": 1266 + }, + "isInternal": false + }, + { + "x": 320, + "y": 337.77558, + "index": 2, + "body": { + "#": 1266 + }, + "isInternal": false + }, + { + "x": 300, + "y": 317.77558, + "index": 3, + "body": { + "#": 1266 + }, + "isInternal": false + }, + { + "x": 300, + "y": 307.77558, + "index": 4, + "body": { + "#": 1266 + }, + "isInternal": false + }, + { + "x": 320, + "y": 287.77558, + "index": 5, + "body": { + "#": 1266 + }, + "isInternal": false + }, + { + "x": 330, + "y": 287.77558, + "index": 6, + "body": { + "#": 1266 + }, + "isInternal": false + }, + { + "x": 350, + "y": 307.77558, + "index": 7, + "body": { + "#": 1266 + }, + "isInternal": false + }, + { + "x": 325, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1328 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1330 + }, + "max": { + "#": 1331 + } + }, + { + "x": 300, + "y": 287.77558 + }, + { + "x": 350, + "y": 340.68285 + }, + { + "x": 325, + "y": 309.86831 + }, + [ + { + "#": 1334 + }, + { + "#": 1335 + }, + { + "#": 1336 + }, + { + "#": 1337 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,5,7", + "startCol": 6, + "endCol": 7, + "startRow": 5, + "endRow": 7 + }, + { + "id": 58, + "type": "body", + "label": "Body", + "parts": { + "#": 1340 + }, + "angle": 0, + "vertices": { + "#": 1385 + }, + "position": { + "#": 1394 + }, + "force": { + "#": 1395 + }, + "torque": 0, + "positionImpulse": { + "#": 1396 + }, + "constraintImpulse": { + "#": 1397 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1398 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1399 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1400 + }, + "bounds": { + "#": 1402 + }, + "positionPrev": { + "#": 1405 + }, + "anglePrev": 0, + "axes": { + "#": 1406 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1339 + }, + "sleepCounter": 0, + "region": { + "#": 1411 + } + }, + [ + { + "#": 1339 + }, + { + "#": 1341 + }, + { + "#": 1363 + } + ], + { + "id": 56, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1342 + }, + "angle": 0, + "vertices": { + "#": 1343 + }, + "position": { + "#": 1348 + }, + "force": { + "#": 1349 + }, + "torque": 0, + "positionImpulse": { + "#": 1350 + }, + "constraintImpulse": { + "#": 1351 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1352 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1353 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1354 + }, + "bounds": { + "#": 1356 + }, + "positionPrev": { + "#": 1359 + }, + "anglePrev": 0, + "axes": { + "#": 1360 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1339 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1341 + } + ], + [ + { + "#": 1344 + }, + { + "#": 1345 + }, + { + "#": 1346 + }, + { + "#": 1347 + } + ], + { + "x": 350, + "y": 307.77558, + "index": 0, + "body": { + "#": 1341 + }, + "isInternal": false + }, + { + "x": 400, + "y": 307.77558, + "index": 1, + "body": { + "#": 1341 + }, + "isInternal": false + }, + { + "x": 400, + "y": 317.77558, + "index": 2, + "body": { + "#": 1341 + }, + "isInternal": false + }, + { + "x": 350, + "y": 317.77558, + "index": 3, + "body": { + "#": 1341 + }, + "isInternal": false + }, + { + "x": 375, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1355 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1357 + }, + "max": { + "#": 1358 + } + }, + { + "x": 350, + "y": 307.77558 + }, + { + "x": 400, + "y": 320.68285 + }, + { + "x": 350, + "y": 270 + }, + [ + { + "#": 1361 + }, + { + "#": 1362 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 57, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1364 + }, + "angle": 0, + "vertices": { + "#": 1365 + }, + "position": { + "#": 1370 + }, + "force": { + "#": 1371 + }, + "torque": 0, + "positionImpulse": { + "#": 1372 + }, + "constraintImpulse": { + "#": 1373 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1374 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1375 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1376 + }, + "bounds": { + "#": 1378 + }, + "positionPrev": { + "#": 1381 + }, + "anglePrev": 0, + "axes": { + "#": 1382 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1339 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1363 + } + ], + [ + { + "#": 1366 + }, + { + "#": 1367 + }, + { + "#": 1368 + }, + { + "#": 1369 + } + ], + { + "x": 370, + "y": 287.77558, + "index": 0, + "body": { + "#": 1363 + }, + "isInternal": false + }, + { + "x": 380, + "y": 287.77558, + "index": 1, + "body": { + "#": 1363 + }, + "isInternal": false + }, + { + "x": 380, + "y": 337.77558, + "index": 2, + "body": { + "#": 1363 + }, + "isInternal": false + }, + { + "x": 370, + "y": 337.77558, + "index": 3, + "body": { + "#": 1363 + }, + "isInternal": false + }, + { + "x": 375, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1377 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1379 + }, + "max": { + "#": 1380 + } + }, + { + "x": 370, + "y": 287.77558 + }, + { + "x": 380, + "y": 340.68285 + }, + { + "x": 350, + "y": 270 + }, + [ + { + "#": 1383 + }, + { + "#": 1384 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + }, + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + } + ], + { + "x": 400, + "y": 317.77558, + "index": 0, + "body": { + "#": 1339 + }, + "isInternal": false + }, + { + "x": 380, + "y": 337.77558, + "index": 1, + "body": { + "#": 1339 + }, + "isInternal": false + }, + { + "x": 370, + "y": 337.77558, + "index": 2, + "body": { + "#": 1339 + }, + "isInternal": false + }, + { + "x": 350, + "y": 317.77558, + "index": 3, + "body": { + "#": 1339 + }, + "isInternal": false + }, + { + "x": 350, + "y": 307.77558, + "index": 4, + "body": { + "#": 1339 + }, + "isInternal": false + }, + { + "x": 370, + "y": 287.77558, + "index": 5, + "body": { + "#": 1339 + }, + "isInternal": false + }, + { + "x": 380, + "y": 287.77558, + "index": 6, + "body": { + "#": 1339 + }, + "isInternal": false + }, + { + "x": 400, + "y": 307.77558, + "index": 7, + "body": { + "#": 1339 + }, + "isInternal": false + }, + { + "x": 375, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1401 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1403 + }, + "max": { + "#": 1404 + } + }, + { + "x": 350, + "y": 287.77558 + }, + { + "x": 400, + "y": 340.68285 + }, + { + "x": 375, + "y": 309.86831 + }, + [ + { + "#": 1407 + }, + { + "#": 1408 + }, + { + "#": 1409 + }, + { + "#": 1410 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,5,7", + "startCol": 7, + "endCol": 8, + "startRow": 5, + "endRow": 7 + }, + { + "id": 61, + "type": "body", + "label": "Body", + "parts": { + "#": 1413 + }, + "angle": 0, + "vertices": { + "#": 1458 + }, + "position": { + "#": 1467 + }, + "force": { + "#": 1468 + }, + "torque": 0, + "positionImpulse": { + "#": 1469 + }, + "constraintImpulse": { + "#": 1470 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1471 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1472 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1473 + }, + "bounds": { + "#": 1475 + }, + "positionPrev": { + "#": 1478 + }, + "anglePrev": 0, + "axes": { + "#": 1479 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1412 + }, + "sleepCounter": 0, + "region": { + "#": 1484 + } + }, + [ + { + "#": 1412 + }, + { + "#": 1414 + }, + { + "#": 1436 + } + ], + { + "id": 59, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1415 + }, + "angle": 0, + "vertices": { + "#": 1416 + }, + "position": { + "#": 1421 + }, + "force": { + "#": 1422 + }, + "torque": 0, + "positionImpulse": { + "#": 1423 + }, + "constraintImpulse": { + "#": 1424 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1425 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1426 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1427 + }, + "bounds": { + "#": 1429 + }, + "positionPrev": { + "#": 1432 + }, + "anglePrev": 0, + "axes": { + "#": 1433 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1412 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1414 + } + ], + [ + { + "#": 1417 + }, + { + "#": 1418 + }, + { + "#": 1419 + }, + { + "#": 1420 + } + ], + { + "x": 400, + "y": 307.77558, + "index": 0, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 450, + "y": 307.77558, + "index": 1, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 450, + "y": 317.77558, + "index": 2, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 400, + "y": 317.77558, + "index": 3, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 425, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1428 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1430 + }, + "max": { + "#": 1431 + } + }, + { + "x": 400, + "y": 307.77558 + }, + { + "x": 450, + "y": 320.68285 + }, + { + "x": 400, + "y": 270 + }, + [ + { + "#": 1434 + }, + { + "#": 1435 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 60, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1437 + }, + "angle": 0, + "vertices": { + "#": 1438 + }, + "position": { + "#": 1443 + }, + "force": { + "#": 1444 + }, + "torque": 0, + "positionImpulse": { + "#": 1445 + }, + "constraintImpulse": { + "#": 1446 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1447 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1448 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1449 + }, + "bounds": { + "#": 1451 + }, + "positionPrev": { + "#": 1454 + }, + "anglePrev": 0, + "axes": { + "#": 1455 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1412 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1436 + } + ], + [ + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + }, + { + "#": 1442 + } + ], + { + "x": 420, + "y": 287.77558, + "index": 0, + "body": { + "#": 1436 + }, + "isInternal": false + }, + { + "x": 430, + "y": 287.77558, + "index": 1, + "body": { + "#": 1436 + }, + "isInternal": false + }, + { + "x": 430, + "y": 337.77558, + "index": 2, + "body": { + "#": 1436 + }, + "isInternal": false + }, + { + "x": 420, + "y": 337.77558, + "index": 3, + "body": { + "#": 1436 + }, + "isInternal": false + }, + { + "x": 425, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1450 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1452 + }, + "max": { + "#": 1453 + } + }, + { + "x": 420, + "y": 287.77558 + }, + { + "x": 430, + "y": 340.68285 + }, + { + "x": 400, + "y": 270 + }, + [ + { + "#": 1456 + }, + { + "#": 1457 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1459 + }, + { + "#": 1460 + }, + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + } + ], + { + "x": 450, + "y": 317.77558, + "index": 0, + "body": { + "#": 1412 + }, + "isInternal": false + }, + { + "x": 430, + "y": 337.77558, + "index": 1, + "body": { + "#": 1412 + }, + "isInternal": false + }, + { + "x": 420, + "y": 337.77558, + "index": 2, + "body": { + "#": 1412 + }, + "isInternal": false + }, + { + "x": 400, + "y": 317.77558, + "index": 3, + "body": { + "#": 1412 + }, + "isInternal": false + }, + { + "x": 400, + "y": 307.77558, + "index": 4, + "body": { + "#": 1412 + }, + "isInternal": false + }, + { + "x": 420, + "y": 287.77558, + "index": 5, + "body": { + "#": 1412 + }, + "isInternal": false + }, + { + "x": 430, + "y": 287.77558, + "index": 6, + "body": { + "#": 1412 + }, + "isInternal": false + }, + { + "x": 450, + "y": 307.77558, + "index": 7, + "body": { + "#": 1412 + }, + "isInternal": false + }, + { + "x": 425, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1474 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1476 + }, + "max": { + "#": 1477 + } + }, + { + "x": 400, + "y": 287.77558 + }, + { + "x": 450, + "y": 340.68285 + }, + { + "x": 425, + "y": 309.86831 + }, + [ + { + "#": 1480 + }, + { + "#": 1481 + }, + { + "#": 1482 + }, + { + "#": 1483 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,5,7", + "startCol": 8, + "endCol": 9, + "startRow": 5, + "endRow": 7 + }, + { + "id": 64, + "type": "body", + "label": "Body", + "parts": { + "#": 1486 + }, + "angle": 0, + "vertices": { + "#": 1531 + }, + "position": { + "#": 1540 + }, + "force": { + "#": 1541 + }, + "torque": 0, + "positionImpulse": { + "#": 1542 + }, + "constraintImpulse": { + "#": 1543 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1544 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1545 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1546 + }, + "bounds": { + "#": 1548 + }, + "positionPrev": { + "#": 1551 + }, + "anglePrev": 0, + "axes": { + "#": 1552 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1485 + }, + "sleepCounter": 0, + "region": { + "#": 1557 + } + }, + [ + { + "#": 1485 + }, + { + "#": 1487 + }, + { + "#": 1509 + } + ], + { + "id": 62, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1488 + }, + "angle": 0, + "vertices": { + "#": 1489 + }, + "position": { + "#": 1494 + }, + "force": { + "#": 1495 + }, + "torque": 0, + "positionImpulse": { + "#": 1496 + }, + "constraintImpulse": { + "#": 1497 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1498 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1499 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1500 + }, + "bounds": { + "#": 1502 + }, + "positionPrev": { + "#": 1505 + }, + "anglePrev": 0, + "axes": { + "#": 1506 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1485 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1487 + } + ], + [ + { + "#": 1490 + }, + { + "#": 1491 + }, + { + "#": 1492 + }, + { + "#": 1493 + } + ], + { + "x": 450, + "y": 307.77558, + "index": 0, + "body": { + "#": 1487 + }, + "isInternal": false + }, + { + "x": 500, + "y": 307.77558, + "index": 1, + "body": { + "#": 1487 + }, + "isInternal": false + }, + { + "x": 500, + "y": 317.77558, + "index": 2, + "body": { + "#": 1487 + }, + "isInternal": false + }, + { + "x": 450, + "y": 317.77558, + "index": 3, + "body": { + "#": 1487 + }, + "isInternal": false + }, + { + "x": 475, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1501 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1503 + }, + "max": { + "#": 1504 + } + }, + { + "x": 450, + "y": 307.77558 + }, + { + "x": 500, + "y": 320.68285 + }, + { + "x": 450, + "y": 270 + }, + [ + { + "#": 1507 + }, + { + "#": 1508 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 63, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1510 + }, + "angle": 0, + "vertices": { + "#": 1511 + }, + "position": { + "#": 1516 + }, + "force": { + "#": 1517 + }, + "torque": 0, + "positionImpulse": { + "#": 1518 + }, + "constraintImpulse": { + "#": 1519 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1520 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1521 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1522 + }, + "bounds": { + "#": 1524 + }, + "positionPrev": { + "#": 1527 + }, + "anglePrev": 0, + "axes": { + "#": 1528 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1485 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1509 + } + ], + [ + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + }, + { + "#": 1515 + } + ], + { + "x": 470, + "y": 287.77558, + "index": 0, + "body": { + "#": 1509 + }, + "isInternal": false + }, + { + "x": 480, + "y": 287.77558, + "index": 1, + "body": { + "#": 1509 + }, + "isInternal": false + }, + { + "x": 480, + "y": 337.77558, + "index": 2, + "body": { + "#": 1509 + }, + "isInternal": false + }, + { + "x": 470, + "y": 337.77558, + "index": 3, + "body": { + "#": 1509 + }, + "isInternal": false + }, + { + "x": 475, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1523 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1525 + }, + "max": { + "#": 1526 + } + }, + { + "x": 470, + "y": 287.77558 + }, + { + "x": 480, + "y": 340.68285 + }, + { + "x": 450, + "y": 270 + }, + [ + { + "#": 1529 + }, + { + "#": 1530 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1532 + }, + { + "#": 1533 + }, + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + }, + { + "#": 1537 + }, + { + "#": 1538 + }, + { + "#": 1539 + } + ], + { + "x": 500, + "y": 317.77558, + "index": 0, + "body": { + "#": 1485 + }, + "isInternal": false + }, + { + "x": 480, + "y": 337.77558, + "index": 1, + "body": { + "#": 1485 + }, + "isInternal": false + }, + { + "x": 470, + "y": 337.77558, + "index": 2, + "body": { + "#": 1485 + }, + "isInternal": false + }, + { + "x": 450, + "y": 317.77558, + "index": 3, + "body": { + "#": 1485 + }, + "isInternal": false + }, + { + "x": 450, + "y": 307.77558, + "index": 4, + "body": { + "#": 1485 + }, + "isInternal": false + }, + { + "x": 470, + "y": 287.77558, + "index": 5, + "body": { + "#": 1485 + }, + "isInternal": false + }, + { + "x": 480, + "y": 287.77558, + "index": 6, + "body": { + "#": 1485 + }, + "isInternal": false + }, + { + "x": 500, + "y": 307.77558, + "index": 7, + "body": { + "#": 1485 + }, + "isInternal": false + }, + { + "x": 475, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1547 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1549 + }, + "max": { + "#": 1550 + } + }, + { + "x": 450, + "y": 287.77558 + }, + { + "x": 500, + "y": 340.68285 + }, + { + "x": 475, + "y": 309.86831 + }, + [ + { + "#": 1553 + }, + { + "#": 1554 + }, + { + "#": 1555 + }, + { + "#": 1556 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,5,7", + "startCol": 9, + "endCol": 10, + "startRow": 5, + "endRow": 7 + }, + { + "id": 67, + "type": "body", + "label": "Body", + "parts": { + "#": 1559 + }, + "angle": 0, + "vertices": { + "#": 1604 + }, + "position": { + "#": 1613 + }, + "force": { + "#": 1614 + }, + "torque": 0, + "positionImpulse": { + "#": 1615 + }, + "constraintImpulse": { + "#": 1616 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1617 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1618 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1619 + }, + "bounds": { + "#": 1621 + }, + "positionPrev": { + "#": 1624 + }, + "anglePrev": 0, + "axes": { + "#": 1625 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1558 + }, + "sleepCounter": 0, + "region": { + "#": 1630 + } + }, + [ + { + "#": 1558 + }, + { + "#": 1560 + }, + { + "#": 1582 + } + ], + { + "id": 65, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1561 + }, + "angle": 0, + "vertices": { + "#": 1562 + }, + "position": { + "#": 1567 + }, + "force": { + "#": 1568 + }, + "torque": 0, + "positionImpulse": { + "#": 1569 + }, + "constraintImpulse": { + "#": 1570 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1571 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1572 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1573 + }, + "bounds": { + "#": 1575 + }, + "positionPrev": { + "#": 1578 + }, + "anglePrev": 0, + "axes": { + "#": 1579 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1558 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1560 + } + ], + [ + { + "#": 1563 + }, + { + "#": 1564 + }, + { + "#": 1565 + }, + { + "#": 1566 + } + ], + { + "x": 500, + "y": 307.77558, + "index": 0, + "body": { + "#": 1560 + }, + "isInternal": false + }, + { + "x": 550, + "y": 307.77558, + "index": 1, + "body": { + "#": 1560 + }, + "isInternal": false + }, + { + "x": 550, + "y": 317.77558, + "index": 2, + "body": { + "#": 1560 + }, + "isInternal": false + }, + { + "x": 500, + "y": 317.77558, + "index": 3, + "body": { + "#": 1560 + }, + "isInternal": false + }, + { + "x": 525, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1574 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1576 + }, + "max": { + "#": 1577 + } + }, + { + "x": 500, + "y": 307.77558 + }, + { + "x": 550, + "y": 320.68285 + }, + { + "x": 500, + "y": 270 + }, + [ + { + "#": 1580 + }, + { + "#": 1581 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 66, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1583 + }, + "angle": 0, + "vertices": { + "#": 1584 + }, + "position": { + "#": 1589 + }, + "force": { + "#": 1590 + }, + "torque": 0, + "positionImpulse": { + "#": 1591 + }, + "constraintImpulse": { + "#": 1592 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1593 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1594 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1595 + }, + "bounds": { + "#": 1597 + }, + "positionPrev": { + "#": 1600 + }, + "anglePrev": 0, + "axes": { + "#": 1601 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1558 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1582 + } + ], + [ + { + "#": 1585 + }, + { + "#": 1586 + }, + { + "#": 1587 + }, + { + "#": 1588 + } + ], + { + "x": 520, + "y": 287.77558, + "index": 0, + "body": { + "#": 1582 + }, + "isInternal": false + }, + { + "x": 530, + "y": 287.77558, + "index": 1, + "body": { + "#": 1582 + }, + "isInternal": false + }, + { + "x": 530, + "y": 337.77558, + "index": 2, + "body": { + "#": 1582 + }, + "isInternal": false + }, + { + "x": 520, + "y": 337.77558, + "index": 3, + "body": { + "#": 1582 + }, + "isInternal": false + }, + { + "x": 525, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1596 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1598 + }, + "max": { + "#": 1599 + } + }, + { + "x": 520, + "y": 287.77558 + }, + { + "x": 530, + "y": 340.68285 + }, + { + "x": 500, + "y": 270 + }, + [ + { + "#": 1602 + }, + { + "#": 1603 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1605 + }, + { + "#": 1606 + }, + { + "#": 1607 + }, + { + "#": 1608 + }, + { + "#": 1609 + }, + { + "#": 1610 + }, + { + "#": 1611 + }, + { + "#": 1612 + } + ], + { + "x": 550, + "y": 317.77558, + "index": 0, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 530, + "y": 337.77558, + "index": 1, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 520, + "y": 337.77558, + "index": 2, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 500, + "y": 317.77558, + "index": 3, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 500, + "y": 307.77558, + "index": 4, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 520, + "y": 287.77558, + "index": 5, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 530, + "y": 287.77558, + "index": 6, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 550, + "y": 307.77558, + "index": 7, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 525, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1620 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1622 + }, + "max": { + "#": 1623 + } + }, + { + "x": 500, + "y": 287.77558 + }, + { + "x": 550, + "y": 340.68285 + }, + { + "x": 525, + "y": 309.86831 + }, + [ + { + "#": 1626 + }, + { + "#": 1627 + }, + { + "#": 1628 + }, + { + "#": 1629 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,5,7", + "startCol": 10, + "endCol": 11, + "startRow": 5, + "endRow": 7 + }, + { + "id": 70, + "type": "body", + "label": "Body", + "parts": { + "#": 1632 + }, + "angle": 0, + "vertices": { + "#": 1677 + }, + "position": { + "#": 1686 + }, + "force": { + "#": 1687 + }, + "torque": 0, + "positionImpulse": { + "#": 1688 + }, + "constraintImpulse": { + "#": 1689 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1690 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1691 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1692 + }, + "bounds": { + "#": 1694 + }, + "positionPrev": { + "#": 1697 + }, + "anglePrev": 0, + "axes": { + "#": 1698 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1631 + }, + "sleepCounter": 0, + "region": { + "#": 1703 + } + }, + [ + { + "#": 1631 + }, + { + "#": 1633 + }, + { + "#": 1655 + } + ], + { + "id": 68, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1634 + }, + "angle": 0, + "vertices": { + "#": 1635 + }, + "position": { + "#": 1640 + }, + "force": { + "#": 1641 + }, + "torque": 0, + "positionImpulse": { + "#": 1642 + }, + "constraintImpulse": { + "#": 1643 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1644 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1645 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1646 + }, + "bounds": { + "#": 1648 + }, + "positionPrev": { + "#": 1651 + }, + "anglePrev": 0, + "axes": { + "#": 1652 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1631 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1633 + } + ], + [ + { + "#": 1636 + }, + { + "#": 1637 + }, + { + "#": 1638 + }, + { + "#": 1639 + } + ], + { + "x": 550, + "y": 307.77558, + "index": 0, + "body": { + "#": 1633 + }, + "isInternal": false + }, + { + "x": 600, + "y": 307.77558, + "index": 1, + "body": { + "#": 1633 + }, + "isInternal": false + }, + { + "x": 600, + "y": 317.77558, + "index": 2, + "body": { + "#": 1633 + }, + "isInternal": false + }, + { + "x": 550, + "y": 317.77558, + "index": 3, + "body": { + "#": 1633 + }, + "isInternal": false + }, + { + "x": 575, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1647 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1649 + }, + "max": { + "#": 1650 + } + }, + { + "x": 550, + "y": 307.77558 + }, + { + "x": 600, + "y": 320.68285 + }, + { + "x": 550, + "y": 270 + }, + [ + { + "#": 1653 + }, + { + "#": 1654 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 69, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1656 + }, + "angle": 0, + "vertices": { + "#": 1657 + }, + "position": { + "#": 1662 + }, + "force": { + "#": 1663 + }, + "torque": 0, + "positionImpulse": { + "#": 1664 + }, + "constraintImpulse": { + "#": 1665 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1666 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1667 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1668 + }, + "bounds": { + "#": 1670 + }, + "positionPrev": { + "#": 1673 + }, + "anglePrev": 0, + "axes": { + "#": 1674 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1631 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1655 + } + ], + [ + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + }, + { + "#": 1661 + } + ], + { + "x": 570, + "y": 287.77558, + "index": 0, + "body": { + "#": 1655 + }, + "isInternal": false + }, + { + "x": 580, + "y": 287.77558, + "index": 1, + "body": { + "#": 1655 + }, + "isInternal": false + }, + { + "x": 580, + "y": 337.77558, + "index": 2, + "body": { + "#": 1655 + }, + "isInternal": false + }, + { + "x": 570, + "y": 337.77558, + "index": 3, + "body": { + "#": 1655 + }, + "isInternal": false + }, + { + "x": 575, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1669 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1671 + }, + "max": { + "#": 1672 + } + }, + { + "x": 570, + "y": 287.77558 + }, + { + "x": 580, + "y": 340.68285 + }, + { + "x": 550, + "y": 270 + }, + [ + { + "#": 1675 + }, + { + "#": 1676 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1678 + }, + { + "#": 1679 + }, + { + "#": 1680 + }, + { + "#": 1681 + }, + { + "#": 1682 + }, + { + "#": 1683 + }, + { + "#": 1684 + }, + { + "#": 1685 + } + ], + { + "x": 600, + "y": 317.77558, + "index": 0, + "body": { + "#": 1631 + }, + "isInternal": false + }, + { + "x": 580, + "y": 337.77558, + "index": 1, + "body": { + "#": 1631 + }, + "isInternal": false + }, + { + "x": 570, + "y": 337.77558, + "index": 2, + "body": { + "#": 1631 + }, + "isInternal": false + }, + { + "x": 550, + "y": 317.77558, + "index": 3, + "body": { + "#": 1631 + }, + "isInternal": false + }, + { + "x": 550, + "y": 307.77558, + "index": 4, + "body": { + "#": 1631 + }, + "isInternal": false + }, + { + "x": 570, + "y": 287.77558, + "index": 5, + "body": { + "#": 1631 + }, + "isInternal": false + }, + { + "x": 580, + "y": 287.77558, + "index": 6, + "body": { + "#": 1631 + }, + "isInternal": false + }, + { + "x": 600, + "y": 307.77558, + "index": 7, + "body": { + "#": 1631 + }, + "isInternal": false + }, + { + "x": 575, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1693 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1695 + }, + "max": { + "#": 1696 + } + }, + { + "x": 550, + "y": 287.77558 + }, + { + "x": 600, + "y": 340.68285 + }, + { + "x": 575, + "y": 309.86831 + }, + [ + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,5,7", + "startCol": 11, + "endCol": 12, + "startRow": 5, + "endRow": 7 + }, + { + "id": 73, + "type": "body", + "label": "Body", + "parts": { + "#": 1705 + }, + "angle": 0, + "vertices": { + "#": 1750 + }, + "position": { + "#": 1759 + }, + "force": { + "#": 1760 + }, + "torque": 0, + "positionImpulse": { + "#": 1761 + }, + "constraintImpulse": { + "#": 1762 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1763 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1764 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1765 + }, + "bounds": { + "#": 1767 + }, + "positionPrev": { + "#": 1770 + }, + "anglePrev": 0, + "axes": { + "#": 1771 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1704 + }, + "sleepCounter": 0, + "region": { + "#": 1776 + } + }, + [ + { + "#": 1704 + }, + { + "#": 1706 + }, + { + "#": 1728 + } + ], + { + "id": 71, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1707 + }, + "angle": 0, + "vertices": { + "#": 1708 + }, + "position": { + "#": 1713 + }, + "force": { + "#": 1714 + }, + "torque": 0, + "positionImpulse": { + "#": 1715 + }, + "constraintImpulse": { + "#": 1716 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1717 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1718 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1719 + }, + "bounds": { + "#": 1721 + }, + "positionPrev": { + "#": 1724 + }, + "anglePrev": 0, + "axes": { + "#": 1725 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1704 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1706 + } + ], + [ + { + "#": 1709 + }, + { + "#": 1710 + }, + { + "#": 1711 + }, + { + "#": 1712 + } + ], + { + "x": 600, + "y": 307.77558, + "index": 0, + "body": { + "#": 1706 + }, + "isInternal": false + }, + { + "x": 650, + "y": 307.77558, + "index": 1, + "body": { + "#": 1706 + }, + "isInternal": false + }, + { + "x": 650, + "y": 317.77558, + "index": 2, + "body": { + "#": 1706 + }, + "isInternal": false + }, + { + "x": 600, + "y": 317.77558, + "index": 3, + "body": { + "#": 1706 + }, + "isInternal": false + }, + { + "x": 625, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1720 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1722 + }, + "max": { + "#": 1723 + } + }, + { + "x": 600, + "y": 307.77558 + }, + { + "x": 650, + "y": 320.68285 + }, + { + "x": 600, + "y": 270 + }, + [ + { + "#": 1726 + }, + { + "#": 1727 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 72, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1729 + }, + "angle": 0, + "vertices": { + "#": 1730 + }, + "position": { + "#": 1735 + }, + "force": { + "#": 1736 + }, + "torque": 0, + "positionImpulse": { + "#": 1737 + }, + "constraintImpulse": { + "#": 1738 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1739 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1740 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1741 + }, + "bounds": { + "#": 1743 + }, + "positionPrev": { + "#": 1746 + }, + "anglePrev": 0, + "axes": { + "#": 1747 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1704 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1728 + } + ], + [ + { + "#": 1731 + }, + { + "#": 1732 + }, + { + "#": 1733 + }, + { + "#": 1734 + } + ], + { + "x": 620, + "y": 287.77558, + "index": 0, + "body": { + "#": 1728 + }, + "isInternal": false + }, + { + "x": 630, + "y": 287.77558, + "index": 1, + "body": { + "#": 1728 + }, + "isInternal": false + }, + { + "x": 630, + "y": 337.77558, + "index": 2, + "body": { + "#": 1728 + }, + "isInternal": false + }, + { + "x": 620, + "y": 337.77558, + "index": 3, + "body": { + "#": 1728 + }, + "isInternal": false + }, + { + "x": 625, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1742 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1744 + }, + "max": { + "#": 1745 + } + }, + { + "x": 620, + "y": 287.77558 + }, + { + "x": 630, + "y": 340.68285 + }, + { + "x": 600, + "y": 270 + }, + [ + { + "#": 1748 + }, + { + "#": 1749 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1751 + }, + { + "#": 1752 + }, + { + "#": 1753 + }, + { + "#": 1754 + }, + { + "#": 1755 + }, + { + "#": 1756 + }, + { + "#": 1757 + }, + { + "#": 1758 + } + ], + { + "x": 650, + "y": 317.77558, + "index": 0, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 630, + "y": 337.77558, + "index": 1, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 620, + "y": 337.77558, + "index": 2, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 600, + "y": 317.77558, + "index": 3, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 600, + "y": 307.77558, + "index": 4, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 620, + "y": 287.77558, + "index": 5, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 630, + "y": 287.77558, + "index": 6, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 650, + "y": 307.77558, + "index": 7, + "body": { + "#": 1704 + }, + "isInternal": false + }, + { + "x": 625, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1766 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1768 + }, + "max": { + "#": 1769 + } + }, + { + "x": 600, + "y": 287.77558 + }, + { + "x": 650, + "y": 340.68285 + }, + { + "x": 625, + "y": 309.86831 + }, + [ + { + "#": 1772 + }, + { + "#": 1773 + }, + { + "#": 1774 + }, + { + "#": 1775 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,13,5,7", + "startCol": 12, + "endCol": 13, + "startRow": 5, + "endRow": 7 + }, + { + "id": 76, + "type": "body", + "label": "Body", + "parts": { + "#": 1778 + }, + "angle": 0, + "vertices": { + "#": 1823 + }, + "position": { + "#": 1832 + }, + "force": { + "#": 1833 + }, + "torque": 0, + "positionImpulse": { + "#": 1834 + }, + "constraintImpulse": { + "#": 1835 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1836 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1837 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1838 + }, + "bounds": { + "#": 1840 + }, + "positionPrev": { + "#": 1843 + }, + "anglePrev": 0, + "axes": { + "#": 1844 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1777 + }, + "sleepCounter": 0, + "region": { + "#": 1849 + } + }, + [ + { + "#": 1777 + }, + { + "#": 1779 + }, + { + "#": 1801 + } + ], + { + "id": 74, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1780 + }, + "angle": 0, + "vertices": { + "#": 1781 + }, + "position": { + "#": 1786 + }, + "force": { + "#": 1787 + }, + "torque": 0, + "positionImpulse": { + "#": 1788 + }, + "constraintImpulse": { + "#": 1789 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1790 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1791 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1792 + }, + "bounds": { + "#": 1794 + }, + "positionPrev": { + "#": 1797 + }, + "anglePrev": 0, + "axes": { + "#": 1798 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1777 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1779 + } + ], + [ + { + "#": 1782 + }, + { + "#": 1783 + }, + { + "#": 1784 + }, + { + "#": 1785 + } + ], + { + "x": 650, + "y": 307.77558, + "index": 0, + "body": { + "#": 1779 + }, + "isInternal": false + }, + { + "x": 700, + "y": 307.77558, + "index": 1, + "body": { + "#": 1779 + }, + "isInternal": false + }, + { + "x": 700, + "y": 317.77558, + "index": 2, + "body": { + "#": 1779 + }, + "isInternal": false + }, + { + "x": 650, + "y": 317.77558, + "index": 3, + "body": { + "#": 1779 + }, + "isInternal": false + }, + { + "x": 675, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1793 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1795 + }, + "max": { + "#": 1796 + } + }, + { + "x": 650, + "y": 307.77558 + }, + { + "x": 700, + "y": 320.68285 + }, + { + "x": 650, + "y": 270 + }, + [ + { + "#": 1799 + }, + { + "#": 1800 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 75, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1802 + }, + "angle": 0, + "vertices": { + "#": 1803 + }, + "position": { + "#": 1808 + }, + "force": { + "#": 1809 + }, + "torque": 0, + "positionImpulse": { + "#": 1810 + }, + "constraintImpulse": { + "#": 1811 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1812 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1813 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1814 + }, + "bounds": { + "#": 1816 + }, + "positionPrev": { + "#": 1819 + }, + "anglePrev": 0, + "axes": { + "#": 1820 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1777 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1801 + } + ], + [ + { + "#": 1804 + }, + { + "#": 1805 + }, + { + "#": 1806 + }, + { + "#": 1807 + } + ], + { + "x": 670, + "y": 287.77558, + "index": 0, + "body": { + "#": 1801 + }, + "isInternal": false + }, + { + "x": 680, + "y": 287.77558, + "index": 1, + "body": { + "#": 1801 + }, + "isInternal": false + }, + { + "x": 680, + "y": 337.77558, + "index": 2, + "body": { + "#": 1801 + }, + "isInternal": false + }, + { + "x": 670, + "y": 337.77558, + "index": 3, + "body": { + "#": 1801 + }, + "isInternal": false + }, + { + "x": 675, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1815 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1817 + }, + "max": { + "#": 1818 + } + }, + { + "x": 670, + "y": 287.77558 + }, + { + "x": 680, + "y": 340.68285 + }, + { + "x": 650, + "y": 270 + }, + [ + { + "#": 1821 + }, + { + "#": 1822 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1824 + }, + { + "#": 1825 + }, + { + "#": 1826 + }, + { + "#": 1827 + }, + { + "#": 1828 + }, + { + "#": 1829 + }, + { + "#": 1830 + }, + { + "#": 1831 + } + ], + { + "x": 700, + "y": 317.77558, + "index": 0, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 680, + "y": 337.77558, + "index": 1, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 670, + "y": 337.77558, + "index": 2, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 650, + "y": 317.77558, + "index": 3, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 650, + "y": 307.77558, + "index": 4, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 670, + "y": 287.77558, + "index": 5, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 680, + "y": 287.77558, + "index": 6, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 700, + "y": 307.77558, + "index": 7, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 675, + "y": 312.77558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1839 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1841 + }, + "max": { + "#": 1842 + } + }, + { + "x": 650, + "y": 287.77558 + }, + { + "x": 700, + "y": 340.68285 + }, + { + "x": 675, + "y": 309.86831 + }, + [ + { + "#": 1845 + }, + { + "#": 1846 + }, + { + "#": 1847 + }, + { + "#": 1848 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "13,14,5,7", + "startCol": 13, + "endCol": 14, + "startRow": 5, + "endRow": 7 + }, + { + "id": 79, + "type": "body", + "label": "Body", + "parts": { + "#": 1851 + }, + "angle": 0, + "vertices": { + "#": 1896 + }, + "position": { + "#": 1905 + }, + "force": { + "#": 1906 + }, + "torque": 0, + "positionImpulse": { + "#": 1907 + }, + "constraintImpulse": { + "#": 1908 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1909 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1910 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1911 + }, + "bounds": { + "#": 1913 + }, + "positionPrev": { + "#": 1916 + }, + "anglePrev": 0, + "axes": { + "#": 1917 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1850 + }, + "sleepCounter": 0, + "region": { + "#": 1922 + } + }, + [ + { + "#": 1850 + }, + { + "#": 1852 + }, + { + "#": 1874 + } + ], + { + "id": 77, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1853 + }, + "angle": 0, + "vertices": { + "#": 1854 + }, + "position": { + "#": 1859 + }, + "force": { + "#": 1860 + }, + "torque": 0, + "positionImpulse": { + "#": 1861 + }, + "constraintImpulse": { + "#": 1862 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1863 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1864 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1865 + }, + "bounds": { + "#": 1867 + }, + "positionPrev": { + "#": 1870 + }, + "anglePrev": 0, + "axes": { + "#": 1871 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1850 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1852 + } + ], + [ + { + "#": 1855 + }, + { + "#": 1856 + }, + { + "#": 1857 + }, + { + "#": 1858 + } + ], + { + "x": 100, + "y": 357.72558, + "index": 0, + "body": { + "#": 1852 + }, + "isInternal": false + }, + { + "x": 150, + "y": 357.72558, + "index": 1, + "body": { + "#": 1852 + }, + "isInternal": false + }, + { + "x": 150, + "y": 367.72558, + "index": 2, + "body": { + "#": 1852 + }, + "isInternal": false + }, + { + "x": 100, + "y": 367.72558, + "index": 3, + "body": { + "#": 1852 + }, + "isInternal": false + }, + { + "x": 125, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1866 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1868 + }, + "max": { + "#": 1869 + } + }, + { + "x": 100, + "y": 357.72558 + }, + { + "x": 150, + "y": 370.63285 + }, + { + "x": 100, + "y": 320 + }, + [ + { + "#": 1872 + }, + { + "#": 1873 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 78, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1875 + }, + "angle": 0, + "vertices": { + "#": 1876 + }, + "position": { + "#": 1881 + }, + "force": { + "#": 1882 + }, + "torque": 0, + "positionImpulse": { + "#": 1883 + }, + "constraintImpulse": { + "#": 1884 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1885 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1886 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1887 + }, + "bounds": { + "#": 1889 + }, + "positionPrev": { + "#": 1892 + }, + "anglePrev": 0, + "axes": { + "#": 1893 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1850 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1874 + } + ], + [ + { + "#": 1877 + }, + { + "#": 1878 + }, + { + "#": 1879 + }, + { + "#": 1880 + } + ], + { + "x": 120, + "y": 337.72558, + "index": 0, + "body": { + "#": 1874 + }, + "isInternal": false + }, + { + "x": 130, + "y": 337.72558, + "index": 1, + "body": { + "#": 1874 + }, + "isInternal": false + }, + { + "x": 130, + "y": 387.72558, + "index": 2, + "body": { + "#": 1874 + }, + "isInternal": false + }, + { + "x": 120, + "y": 387.72558, + "index": 3, + "body": { + "#": 1874 + }, + "isInternal": false + }, + { + "x": 125, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1888 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1890 + }, + "max": { + "#": 1891 + } + }, + { + "x": 120, + "y": 337.72558 + }, + { + "x": 130, + "y": 390.63285 + }, + { + "x": 100, + "y": 320 + }, + [ + { + "#": 1894 + }, + { + "#": 1895 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + }, + { + "#": 1902 + }, + { + "#": 1903 + }, + { + "#": 1904 + } + ], + { + "x": 150, + "y": 367.72558, + "index": 0, + "body": { + "#": 1850 + }, + "isInternal": false + }, + { + "x": 130, + "y": 387.72558, + "index": 1, + "body": { + "#": 1850 + }, + "isInternal": false + }, + { + "x": 120, + "y": 387.72558, + "index": 2, + "body": { + "#": 1850 + }, + "isInternal": false + }, + { + "x": 100, + "y": 367.72558, + "index": 3, + "body": { + "#": 1850 + }, + "isInternal": false + }, + { + "x": 100, + "y": 357.72558, + "index": 4, + "body": { + "#": 1850 + }, + "isInternal": false + }, + { + "x": 120, + "y": 337.72558, + "index": 5, + "body": { + "#": 1850 + }, + "isInternal": false + }, + { + "x": 130, + "y": 337.72558, + "index": 6, + "body": { + "#": 1850 + }, + "isInternal": false + }, + { + "x": 150, + "y": 357.72558, + "index": 7, + "body": { + "#": 1850 + }, + "isInternal": false + }, + { + "x": 125, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1912 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1914 + }, + "max": { + "#": 1915 + } + }, + { + "x": 100, + "y": 337.72558 + }, + { + "x": 150, + "y": 390.63285 + }, + { + "x": 125, + "y": 359.81831 + }, + [ + { + "#": 1918 + }, + { + "#": 1919 + }, + { + "#": 1920 + }, + { + "#": 1921 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,3,7,8", + "startCol": 2, + "endCol": 3, + "startRow": 7, + "endRow": 8 + }, + { + "id": 82, + "type": "body", + "label": "Body", + "parts": { + "#": 1924 + }, + "angle": 0, + "vertices": { + "#": 1969 + }, + "position": { + "#": 1978 + }, + "force": { + "#": 1979 + }, + "torque": 0, + "positionImpulse": { + "#": 1980 + }, + "constraintImpulse": { + "#": 1981 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1982 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1983 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1984 + }, + "bounds": { + "#": 1986 + }, + "positionPrev": { + "#": 1989 + }, + "anglePrev": 0, + "axes": { + "#": 1990 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1923 + }, + "sleepCounter": 0, + "region": { + "#": 1995 + } + }, + [ + { + "#": 1923 + }, + { + "#": 1925 + }, + { + "#": 1947 + } + ], + { + "id": 80, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1926 + }, + "angle": 0, + "vertices": { + "#": 1927 + }, + "position": { + "#": 1932 + }, + "force": { + "#": 1933 + }, + "torque": 0, + "positionImpulse": { + "#": 1934 + }, + "constraintImpulse": { + "#": 1935 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1936 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1937 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1938 + }, + "bounds": { + "#": 1940 + }, + "positionPrev": { + "#": 1943 + }, + "anglePrev": 0, + "axes": { + "#": 1944 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1923 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1925 + } + ], + [ + { + "#": 1928 + }, + { + "#": 1929 + }, + { + "#": 1930 + }, + { + "#": 1931 + } + ], + { + "x": 150, + "y": 357.72558, + "index": 0, + "body": { + "#": 1925 + }, + "isInternal": false + }, + { + "x": 200, + "y": 357.72558, + "index": 1, + "body": { + "#": 1925 + }, + "isInternal": false + }, + { + "x": 200, + "y": 367.72558, + "index": 2, + "body": { + "#": 1925 + }, + "isInternal": false + }, + { + "x": 150, + "y": 367.72558, + "index": 3, + "body": { + "#": 1925 + }, + "isInternal": false + }, + { + "x": 175, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1939 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1941 + }, + "max": { + "#": 1942 + } + }, + { + "x": 150, + "y": 357.72558 + }, + { + "x": 200, + "y": 370.63285 + }, + { + "x": 150, + "y": 320 + }, + [ + { + "#": 1945 + }, + { + "#": 1946 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 81, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1948 + }, + "angle": 0, + "vertices": { + "#": 1949 + }, + "position": { + "#": 1954 + }, + "force": { + "#": 1955 + }, + "torque": 0, + "positionImpulse": { + "#": 1956 + }, + "constraintImpulse": { + "#": 1957 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1958 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1959 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1960 + }, + "bounds": { + "#": 1962 + }, + "positionPrev": { + "#": 1965 + }, + "anglePrev": 0, + "axes": { + "#": 1966 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1923 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1947 + } + ], + [ + { + "#": 1950 + }, + { + "#": 1951 + }, + { + "#": 1952 + }, + { + "#": 1953 + } + ], + { + "x": 170, + "y": 337.72558, + "index": 0, + "body": { + "#": 1947 + }, + "isInternal": false + }, + { + "x": 180, + "y": 337.72558, + "index": 1, + "body": { + "#": 1947 + }, + "isInternal": false + }, + { + "x": 180, + "y": 387.72558, + "index": 2, + "body": { + "#": 1947 + }, + "isInternal": false + }, + { + "x": 170, + "y": 387.72558, + "index": 3, + "body": { + "#": 1947 + }, + "isInternal": false + }, + { + "x": 175, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1961 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1963 + }, + "max": { + "#": 1964 + } + }, + { + "x": 170, + "y": 337.72558 + }, + { + "x": 180, + "y": 390.63285 + }, + { + "x": 150, + "y": 320 + }, + [ + { + "#": 1967 + }, + { + "#": 1968 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 1970 + }, + { + "#": 1971 + }, + { + "#": 1972 + }, + { + "#": 1973 + }, + { + "#": 1974 + }, + { + "#": 1975 + }, + { + "#": 1976 + }, + { + "#": 1977 + } + ], + { + "x": 200, + "y": 367.72558, + "index": 0, + "body": { + "#": 1923 + }, + "isInternal": false + }, + { + "x": 180, + "y": 387.72558, + "index": 1, + "body": { + "#": 1923 + }, + "isInternal": false + }, + { + "x": 170, + "y": 387.72558, + "index": 2, + "body": { + "#": 1923 + }, + "isInternal": false + }, + { + "x": 150, + "y": 367.72558, + "index": 3, + "body": { + "#": 1923 + }, + "isInternal": false + }, + { + "x": 150, + "y": 357.72558, + "index": 4, + "body": { + "#": 1923 + }, + "isInternal": false + }, + { + "x": 170, + "y": 337.72558, + "index": 5, + "body": { + "#": 1923 + }, + "isInternal": false + }, + { + "x": 180, + "y": 337.72558, + "index": 6, + "body": { + "#": 1923 + }, + "isInternal": false + }, + { + "x": 200, + "y": 357.72558, + "index": 7, + "body": { + "#": 1923 + }, + "isInternal": false + }, + { + "x": 175, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1985 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1987 + }, + "max": { + "#": 1988 + } + }, + { + "x": 150, + "y": 337.72558 + }, + { + "x": 200, + "y": 390.63285 + }, + { + "x": 175, + "y": 359.81831 + }, + [ + { + "#": 1991 + }, + { + "#": 1992 + }, + { + "#": 1993 + }, + { + "#": 1994 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,7,8", + "startCol": 3, + "endCol": 4, + "startRow": 7, + "endRow": 8 + }, + { + "id": 85, + "type": "body", + "label": "Body", + "parts": { + "#": 1997 + }, + "angle": 0, + "vertices": { + "#": 2042 + }, + "position": { + "#": 2051 + }, + "force": { + "#": 2052 + }, + "torque": 0, + "positionImpulse": { + "#": 2053 + }, + "constraintImpulse": { + "#": 2054 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2055 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2056 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2057 + }, + "bounds": { + "#": 2059 + }, + "positionPrev": { + "#": 2062 + }, + "anglePrev": 0, + "axes": { + "#": 2063 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 1996 + }, + "sleepCounter": 0, + "region": { + "#": 2068 + } + }, + [ + { + "#": 1996 + }, + { + "#": 1998 + }, + { + "#": 2020 + } + ], + { + "id": 83, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1999 + }, + "angle": 0, + "vertices": { + "#": 2000 + }, + "position": { + "#": 2005 + }, + "force": { + "#": 2006 + }, + "torque": 0, + "positionImpulse": { + "#": 2007 + }, + "constraintImpulse": { + "#": 2008 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2009 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2010 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2011 + }, + "bounds": { + "#": 2013 + }, + "positionPrev": { + "#": 2016 + }, + "anglePrev": 0, + "axes": { + "#": 2017 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1996 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1998 + } + ], + [ + { + "#": 2001 + }, + { + "#": 2002 + }, + { + "#": 2003 + }, + { + "#": 2004 + } + ], + { + "x": 200, + "y": 357.72558, + "index": 0, + "body": { + "#": 1998 + }, + "isInternal": false + }, + { + "x": 250, + "y": 357.72558, + "index": 1, + "body": { + "#": 1998 + }, + "isInternal": false + }, + { + "x": 250, + "y": 367.72558, + "index": 2, + "body": { + "#": 1998 + }, + "isInternal": false + }, + { + "x": 200, + "y": 367.72558, + "index": 3, + "body": { + "#": 1998 + }, + "isInternal": false + }, + { + "x": 225, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2012 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2014 + }, + "max": { + "#": 2015 + } + }, + { + "x": 200, + "y": 357.72558 + }, + { + "x": 250, + "y": 370.63285 + }, + { + "x": 200, + "y": 320 + }, + [ + { + "#": 2018 + }, + { + "#": 2019 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 84, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2021 + }, + "angle": 0, + "vertices": { + "#": 2022 + }, + "position": { + "#": 2027 + }, + "force": { + "#": 2028 + }, + "torque": 0, + "positionImpulse": { + "#": 2029 + }, + "constraintImpulse": { + "#": 2030 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2031 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2032 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2033 + }, + "bounds": { + "#": 2035 + }, + "positionPrev": { + "#": 2038 + }, + "anglePrev": 0, + "axes": { + "#": 2039 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 1996 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2020 + } + ], + [ + { + "#": 2023 + }, + { + "#": 2024 + }, + { + "#": 2025 + }, + { + "#": 2026 + } + ], + { + "x": 220, + "y": 337.72558, + "index": 0, + "body": { + "#": 2020 + }, + "isInternal": false + }, + { + "x": 230, + "y": 337.72558, + "index": 1, + "body": { + "#": 2020 + }, + "isInternal": false + }, + { + "x": 230, + "y": 387.72558, + "index": 2, + "body": { + "#": 2020 + }, + "isInternal": false + }, + { + "x": 220, + "y": 387.72558, + "index": 3, + "body": { + "#": 2020 + }, + "isInternal": false + }, + { + "x": 225, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2034 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2036 + }, + "max": { + "#": 2037 + } + }, + { + "x": 220, + "y": 337.72558 + }, + { + "x": 230, + "y": 390.63285 + }, + { + "x": 200, + "y": 320 + }, + [ + { + "#": 2040 + }, + { + "#": 2041 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2043 + }, + { + "#": 2044 + }, + { + "#": 2045 + }, + { + "#": 2046 + }, + { + "#": 2047 + }, + { + "#": 2048 + }, + { + "#": 2049 + }, + { + "#": 2050 + } + ], + { + "x": 250, + "y": 367.72558, + "index": 0, + "body": { + "#": 1996 + }, + "isInternal": false + }, + { + "x": 230, + "y": 387.72558, + "index": 1, + "body": { + "#": 1996 + }, + "isInternal": false + }, + { + "x": 220, + "y": 387.72558, + "index": 2, + "body": { + "#": 1996 + }, + "isInternal": false + }, + { + "x": 200, + "y": 367.72558, + "index": 3, + "body": { + "#": 1996 + }, + "isInternal": false + }, + { + "x": 200, + "y": 357.72558, + "index": 4, + "body": { + "#": 1996 + }, + "isInternal": false + }, + { + "x": 220, + "y": 337.72558, + "index": 5, + "body": { + "#": 1996 + }, + "isInternal": false + }, + { + "x": 230, + "y": 337.72558, + "index": 6, + "body": { + "#": 1996 + }, + "isInternal": false + }, + { + "x": 250, + "y": 357.72558, + "index": 7, + "body": { + "#": 1996 + }, + "isInternal": false + }, + { + "x": 225, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2058 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2060 + }, + "max": { + "#": 2061 + } + }, + { + "x": 200, + "y": 337.72558 + }, + { + "x": 250, + "y": 390.63285 + }, + { + "x": 225, + "y": 359.81831 + }, + [ + { + "#": 2064 + }, + { + "#": 2065 + }, + { + "#": 2066 + }, + { + "#": 2067 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,7,8", + "startCol": 4, + "endCol": 5, + "startRow": 7, + "endRow": 8 + }, + { + "id": 88, + "type": "body", + "label": "Body", + "parts": { + "#": 2070 + }, + "angle": 0, + "vertices": { + "#": 2115 + }, + "position": { + "#": 2124 + }, + "force": { + "#": 2125 + }, + "torque": 0, + "positionImpulse": { + "#": 2126 + }, + "constraintImpulse": { + "#": 2127 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2128 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2129 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2130 + }, + "bounds": { + "#": 2132 + }, + "positionPrev": { + "#": 2135 + }, + "anglePrev": 0, + "axes": { + "#": 2136 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2069 + }, + "sleepCounter": 0, + "region": { + "#": 2141 + } + }, + [ + { + "#": 2069 + }, + { + "#": 2071 + }, + { + "#": 2093 + } + ], + { + "id": 86, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2072 + }, + "angle": 0, + "vertices": { + "#": 2073 + }, + "position": { + "#": 2078 + }, + "force": { + "#": 2079 + }, + "torque": 0, + "positionImpulse": { + "#": 2080 + }, + "constraintImpulse": { + "#": 2081 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2082 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2083 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2084 + }, + "bounds": { + "#": 2086 + }, + "positionPrev": { + "#": 2089 + }, + "anglePrev": 0, + "axes": { + "#": 2090 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2069 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2071 + } + ], + [ + { + "#": 2074 + }, + { + "#": 2075 + }, + { + "#": 2076 + }, + { + "#": 2077 + } + ], + { + "x": 250, + "y": 357.72558, + "index": 0, + "body": { + "#": 2071 + }, + "isInternal": false + }, + { + "x": 300, + "y": 357.72558, + "index": 1, + "body": { + "#": 2071 + }, + "isInternal": false + }, + { + "x": 300, + "y": 367.72558, + "index": 2, + "body": { + "#": 2071 + }, + "isInternal": false + }, + { + "x": 250, + "y": 367.72558, + "index": 3, + "body": { + "#": 2071 + }, + "isInternal": false + }, + { + "x": 275, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2085 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2087 + }, + "max": { + "#": 2088 + } + }, + { + "x": 250, + "y": 357.72558 + }, + { + "x": 300, + "y": 370.63285 + }, + { + "x": 250, + "y": 320 + }, + [ + { + "#": 2091 + }, + { + "#": 2092 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 87, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2094 + }, + "angle": 0, + "vertices": { + "#": 2095 + }, + "position": { + "#": 2100 + }, + "force": { + "#": 2101 + }, + "torque": 0, + "positionImpulse": { + "#": 2102 + }, + "constraintImpulse": { + "#": 2103 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2104 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2105 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2106 + }, + "bounds": { + "#": 2108 + }, + "positionPrev": { + "#": 2111 + }, + "anglePrev": 0, + "axes": { + "#": 2112 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2069 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2093 + } + ], + [ + { + "#": 2096 + }, + { + "#": 2097 + }, + { + "#": 2098 + }, + { + "#": 2099 + } + ], + { + "x": 270, + "y": 337.72558, + "index": 0, + "body": { + "#": 2093 + }, + "isInternal": false + }, + { + "x": 280, + "y": 337.72558, + "index": 1, + "body": { + "#": 2093 + }, + "isInternal": false + }, + { + "x": 280, + "y": 387.72558, + "index": 2, + "body": { + "#": 2093 + }, + "isInternal": false + }, + { + "x": 270, + "y": 387.72558, + "index": 3, + "body": { + "#": 2093 + }, + "isInternal": false + }, + { + "x": 275, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2107 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2109 + }, + "max": { + "#": 2110 + } + }, + { + "x": 270, + "y": 337.72558 + }, + { + "x": 280, + "y": 390.63285 + }, + { + "x": 250, + "y": 320 + }, + [ + { + "#": 2113 + }, + { + "#": 2114 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2116 + }, + { + "#": 2117 + }, + { + "#": 2118 + }, + { + "#": 2119 + }, + { + "#": 2120 + }, + { + "#": 2121 + }, + { + "#": 2122 + }, + { + "#": 2123 + } + ], + { + "x": 300, + "y": 367.72558, + "index": 0, + "body": { + "#": 2069 + }, + "isInternal": false + }, + { + "x": 280, + "y": 387.72558, + "index": 1, + "body": { + "#": 2069 + }, + "isInternal": false + }, + { + "x": 270, + "y": 387.72558, + "index": 2, + "body": { + "#": 2069 + }, + "isInternal": false + }, + { + "x": 250, + "y": 367.72558, + "index": 3, + "body": { + "#": 2069 + }, + "isInternal": false + }, + { + "x": 250, + "y": 357.72558, + "index": 4, + "body": { + "#": 2069 + }, + "isInternal": false + }, + { + "x": 270, + "y": 337.72558, + "index": 5, + "body": { + "#": 2069 + }, + "isInternal": false + }, + { + "x": 280, + "y": 337.72558, + "index": 6, + "body": { + "#": 2069 + }, + "isInternal": false + }, + { + "x": 300, + "y": 357.72558, + "index": 7, + "body": { + "#": 2069 + }, + "isInternal": false + }, + { + "x": 275, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2131 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2133 + }, + "max": { + "#": 2134 + } + }, + { + "x": 250, + "y": 337.72558 + }, + { + "x": 300, + "y": 390.63285 + }, + { + "x": 275, + "y": 359.81831 + }, + [ + { + "#": 2137 + }, + { + "#": 2138 + }, + { + "#": 2139 + }, + { + "#": 2140 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,7,8", + "startCol": 5, + "endCol": 6, + "startRow": 7, + "endRow": 8 + }, + { + "id": 91, + "type": "body", + "label": "Body", + "parts": { + "#": 2143 + }, + "angle": 0, + "vertices": { + "#": 2188 + }, + "position": { + "#": 2197 + }, + "force": { + "#": 2198 + }, + "torque": 0, + "positionImpulse": { + "#": 2199 + }, + "constraintImpulse": { + "#": 2200 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2201 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2202 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2203 + }, + "bounds": { + "#": 2205 + }, + "positionPrev": { + "#": 2208 + }, + "anglePrev": 0, + "axes": { + "#": 2209 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2142 + }, + "sleepCounter": 0, + "region": { + "#": 2214 + } + }, + [ + { + "#": 2142 + }, + { + "#": 2144 + }, + { + "#": 2166 + } + ], + { + "id": 89, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2145 + }, + "angle": 0, + "vertices": { + "#": 2146 + }, + "position": { + "#": 2151 + }, + "force": { + "#": 2152 + }, + "torque": 0, + "positionImpulse": { + "#": 2153 + }, + "constraintImpulse": { + "#": 2154 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2155 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2156 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2157 + }, + "bounds": { + "#": 2159 + }, + "positionPrev": { + "#": 2162 + }, + "anglePrev": 0, + "axes": { + "#": 2163 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2142 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2144 + } + ], + [ + { + "#": 2147 + }, + { + "#": 2148 + }, + { + "#": 2149 + }, + { + "#": 2150 + } + ], + { + "x": 300, + "y": 357.72558, + "index": 0, + "body": { + "#": 2144 + }, + "isInternal": false + }, + { + "x": 350, + "y": 357.72558, + "index": 1, + "body": { + "#": 2144 + }, + "isInternal": false + }, + { + "x": 350, + "y": 367.72558, + "index": 2, + "body": { + "#": 2144 + }, + "isInternal": false + }, + { + "x": 300, + "y": 367.72558, + "index": 3, + "body": { + "#": 2144 + }, + "isInternal": false + }, + { + "x": 325, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2158 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2160 + }, + "max": { + "#": 2161 + } + }, + { + "x": 300, + "y": 357.72558 + }, + { + "x": 350, + "y": 370.63285 + }, + { + "x": 300, + "y": 320 + }, + [ + { + "#": 2164 + }, + { + "#": 2165 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 90, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2167 + }, + "angle": 0, + "vertices": { + "#": 2168 + }, + "position": { + "#": 2173 + }, + "force": { + "#": 2174 + }, + "torque": 0, + "positionImpulse": { + "#": 2175 + }, + "constraintImpulse": { + "#": 2176 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2177 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2178 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2179 + }, + "bounds": { + "#": 2181 + }, + "positionPrev": { + "#": 2184 + }, + "anglePrev": 0, + "axes": { + "#": 2185 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2142 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2166 + } + ], + [ + { + "#": 2169 + }, + { + "#": 2170 + }, + { + "#": 2171 + }, + { + "#": 2172 + } + ], + { + "x": 320, + "y": 337.72558, + "index": 0, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 330, + "y": 337.72558, + "index": 1, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 330, + "y": 387.72558, + "index": 2, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 320, + "y": 387.72558, + "index": 3, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 325, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2180 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2182 + }, + "max": { + "#": 2183 + } + }, + { + "x": 320, + "y": 337.72558 + }, + { + "x": 330, + "y": 390.63285 + }, + { + "x": 300, + "y": 320 + }, + [ + { + "#": 2186 + }, + { + "#": 2187 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2189 + }, + { + "#": 2190 + }, + { + "#": 2191 + }, + { + "#": 2192 + }, + { + "#": 2193 + }, + { + "#": 2194 + }, + { + "#": 2195 + }, + { + "#": 2196 + } + ], + { + "x": 350, + "y": 367.72558, + "index": 0, + "body": { + "#": 2142 + }, + "isInternal": false + }, + { + "x": 330, + "y": 387.72558, + "index": 1, + "body": { + "#": 2142 + }, + "isInternal": false + }, + { + "x": 320, + "y": 387.72558, + "index": 2, + "body": { + "#": 2142 + }, + "isInternal": false + }, + { + "x": 300, + "y": 367.72558, + "index": 3, + "body": { + "#": 2142 + }, + "isInternal": false + }, + { + "x": 300, + "y": 357.72558, + "index": 4, + "body": { + "#": 2142 + }, + "isInternal": false + }, + { + "x": 320, + "y": 337.72558, + "index": 5, + "body": { + "#": 2142 + }, + "isInternal": false + }, + { + "x": 330, + "y": 337.72558, + "index": 6, + "body": { + "#": 2142 + }, + "isInternal": false + }, + { + "x": 350, + "y": 357.72558, + "index": 7, + "body": { + "#": 2142 + }, + "isInternal": false + }, + { + "x": 325, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2204 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2206 + }, + "max": { + "#": 2207 + } + }, + { + "x": 300, + "y": 337.72558 + }, + { + "x": 350, + "y": 390.63285 + }, + { + "x": 325, + "y": 359.81831 + }, + [ + { + "#": 2210 + }, + { + "#": 2211 + }, + { + "#": 2212 + }, + { + "#": 2213 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,7,8", + "startCol": 6, + "endCol": 7, + "startRow": 7, + "endRow": 8 + }, + { + "id": 94, + "type": "body", + "label": "Body", + "parts": { + "#": 2216 + }, + "angle": 0, + "vertices": { + "#": 2261 + }, + "position": { + "#": 2270 + }, + "force": { + "#": 2271 + }, + "torque": 0, + "positionImpulse": { + "#": 2272 + }, + "constraintImpulse": { + "#": 2273 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2274 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2275 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2276 + }, + "bounds": { + "#": 2278 + }, + "positionPrev": { + "#": 2281 + }, + "anglePrev": 0, + "axes": { + "#": 2282 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2215 + }, + "sleepCounter": 0, + "region": { + "#": 2287 + } + }, + [ + { + "#": 2215 + }, + { + "#": 2217 + }, + { + "#": 2239 + } + ], + { + "id": 92, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2218 + }, + "angle": 0, + "vertices": { + "#": 2219 + }, + "position": { + "#": 2224 + }, + "force": { + "#": 2225 + }, + "torque": 0, + "positionImpulse": { + "#": 2226 + }, + "constraintImpulse": { + "#": 2227 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2228 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2229 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2230 + }, + "bounds": { + "#": 2232 + }, + "positionPrev": { + "#": 2235 + }, + "anglePrev": 0, + "axes": { + "#": 2236 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2215 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2217 + } + ], + [ + { + "#": 2220 + }, + { + "#": 2221 + }, + { + "#": 2222 + }, + { + "#": 2223 + } + ], + { + "x": 350, + "y": 357.72558, + "index": 0, + "body": { + "#": 2217 + }, + "isInternal": false + }, + { + "x": 400, + "y": 357.72558, + "index": 1, + "body": { + "#": 2217 + }, + "isInternal": false + }, + { + "x": 400, + "y": 367.72558, + "index": 2, + "body": { + "#": 2217 + }, + "isInternal": false + }, + { + "x": 350, + "y": 367.72558, + "index": 3, + "body": { + "#": 2217 + }, + "isInternal": false + }, + { + "x": 375, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2231 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2233 + }, + "max": { + "#": 2234 + } + }, + { + "x": 350, + "y": 357.72558 + }, + { + "x": 400, + "y": 370.63285 + }, + { + "x": 350, + "y": 320 + }, + [ + { + "#": 2237 + }, + { + "#": 2238 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 93, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2240 + }, + "angle": 0, + "vertices": { + "#": 2241 + }, + "position": { + "#": 2246 + }, + "force": { + "#": 2247 + }, + "torque": 0, + "positionImpulse": { + "#": 2248 + }, + "constraintImpulse": { + "#": 2249 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2250 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2251 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2252 + }, + "bounds": { + "#": 2254 + }, + "positionPrev": { + "#": 2257 + }, + "anglePrev": 0, + "axes": { + "#": 2258 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2215 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2239 + } + ], + [ + { + "#": 2242 + }, + { + "#": 2243 + }, + { + "#": 2244 + }, + { + "#": 2245 + } + ], + { + "x": 370, + "y": 337.72558, + "index": 0, + "body": { + "#": 2239 + }, + "isInternal": false + }, + { + "x": 380, + "y": 337.72558, + "index": 1, + "body": { + "#": 2239 + }, + "isInternal": false + }, + { + "x": 380, + "y": 387.72558, + "index": 2, + "body": { + "#": 2239 + }, + "isInternal": false + }, + { + "x": 370, + "y": 387.72558, + "index": 3, + "body": { + "#": 2239 + }, + "isInternal": false + }, + { + "x": 375, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2253 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2255 + }, + "max": { + "#": 2256 + } + }, + { + "x": 370, + "y": 337.72558 + }, + { + "x": 380, + "y": 390.63285 + }, + { + "x": 350, + "y": 320 + }, + [ + { + "#": 2259 + }, + { + "#": 2260 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2262 + }, + { + "#": 2263 + }, + { + "#": 2264 + }, + { + "#": 2265 + }, + { + "#": 2266 + }, + { + "#": 2267 + }, + { + "#": 2268 + }, + { + "#": 2269 + } + ], + { + "x": 400, + "y": 367.72558, + "index": 0, + "body": { + "#": 2215 + }, + "isInternal": false + }, + { + "x": 380, + "y": 387.72558, + "index": 1, + "body": { + "#": 2215 + }, + "isInternal": false + }, + { + "x": 370, + "y": 387.72558, + "index": 2, + "body": { + "#": 2215 + }, + "isInternal": false + }, + { + "x": 350, + "y": 367.72558, + "index": 3, + "body": { + "#": 2215 + }, + "isInternal": false + }, + { + "x": 350, + "y": 357.72558, + "index": 4, + "body": { + "#": 2215 + }, + "isInternal": false + }, + { + "x": 370, + "y": 337.72558, + "index": 5, + "body": { + "#": 2215 + }, + "isInternal": false + }, + { + "x": 380, + "y": 337.72558, + "index": 6, + "body": { + "#": 2215 + }, + "isInternal": false + }, + { + "x": 400, + "y": 357.72558, + "index": 7, + "body": { + "#": 2215 + }, + "isInternal": false + }, + { + "x": 375, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2277 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2279 + }, + "max": { + "#": 2280 + } + }, + { + "x": 350, + "y": 337.72558 + }, + { + "x": 400, + "y": 390.63285 + }, + { + "x": 375, + "y": 359.81831 + }, + [ + { + "#": 2283 + }, + { + "#": 2284 + }, + { + "#": 2285 + }, + { + "#": 2286 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,7,8", + "startCol": 7, + "endCol": 8, + "startRow": 7, + "endRow": 8 + }, + { + "id": 97, + "type": "body", + "label": "Body", + "parts": { + "#": 2289 + }, + "angle": 0, + "vertices": { + "#": 2334 + }, + "position": { + "#": 2343 + }, + "force": { + "#": 2344 + }, + "torque": 0, + "positionImpulse": { + "#": 2345 + }, + "constraintImpulse": { + "#": 2346 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2347 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2348 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2349 + }, + "bounds": { + "#": 2351 + }, + "positionPrev": { + "#": 2354 + }, + "anglePrev": 0, + "axes": { + "#": 2355 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2288 + }, + "sleepCounter": 0, + "region": { + "#": 2360 + } + }, + [ + { + "#": 2288 + }, + { + "#": 2290 + }, + { + "#": 2312 + } + ], + { + "id": 95, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2291 + }, + "angle": 0, + "vertices": { + "#": 2292 + }, + "position": { + "#": 2297 + }, + "force": { + "#": 2298 + }, + "torque": 0, + "positionImpulse": { + "#": 2299 + }, + "constraintImpulse": { + "#": 2300 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2301 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2302 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2303 + }, + "bounds": { + "#": 2305 + }, + "positionPrev": { + "#": 2308 + }, + "anglePrev": 0, + "axes": { + "#": 2309 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2288 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2290 + } + ], + [ + { + "#": 2293 + }, + { + "#": 2294 + }, + { + "#": 2295 + }, + { + "#": 2296 + } + ], + { + "x": 400, + "y": 357.72558, + "index": 0, + "body": { + "#": 2290 + }, + "isInternal": false + }, + { + "x": 450, + "y": 357.72558, + "index": 1, + "body": { + "#": 2290 + }, + "isInternal": false + }, + { + "x": 450, + "y": 367.72558, + "index": 2, + "body": { + "#": 2290 + }, + "isInternal": false + }, + { + "x": 400, + "y": 367.72558, + "index": 3, + "body": { + "#": 2290 + }, + "isInternal": false + }, + { + "x": 425, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2304 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2306 + }, + "max": { + "#": 2307 + } + }, + { + "x": 400, + "y": 357.72558 + }, + { + "x": 450, + "y": 370.63285 + }, + { + "x": 400, + "y": 320 + }, + [ + { + "#": 2310 + }, + { + "#": 2311 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 96, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2313 + }, + "angle": 0, + "vertices": { + "#": 2314 + }, + "position": { + "#": 2319 + }, + "force": { + "#": 2320 + }, + "torque": 0, + "positionImpulse": { + "#": 2321 + }, + "constraintImpulse": { + "#": 2322 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2323 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2324 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2325 + }, + "bounds": { + "#": 2327 + }, + "positionPrev": { + "#": 2330 + }, + "anglePrev": 0, + "axes": { + "#": 2331 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2288 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2312 + } + ], + [ + { + "#": 2315 + }, + { + "#": 2316 + }, + { + "#": 2317 + }, + { + "#": 2318 + } + ], + { + "x": 420, + "y": 337.72558, + "index": 0, + "body": { + "#": 2312 + }, + "isInternal": false + }, + { + "x": 430, + "y": 337.72558, + "index": 1, + "body": { + "#": 2312 + }, + "isInternal": false + }, + { + "x": 430, + "y": 387.72558, + "index": 2, + "body": { + "#": 2312 + }, + "isInternal": false + }, + { + "x": 420, + "y": 387.72558, + "index": 3, + "body": { + "#": 2312 + }, + "isInternal": false + }, + { + "x": 425, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2326 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2328 + }, + "max": { + "#": 2329 + } + }, + { + "x": 420, + "y": 337.72558 + }, + { + "x": 430, + "y": 390.63285 + }, + { + "x": 400, + "y": 320 + }, + [ + { + "#": 2332 + }, + { + "#": 2333 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2335 + }, + { + "#": 2336 + }, + { + "#": 2337 + }, + { + "#": 2338 + }, + { + "#": 2339 + }, + { + "#": 2340 + }, + { + "#": 2341 + }, + { + "#": 2342 + } + ], + { + "x": 450, + "y": 367.72558, + "index": 0, + "body": { + "#": 2288 + }, + "isInternal": false + }, + { + "x": 430, + "y": 387.72558, + "index": 1, + "body": { + "#": 2288 + }, + "isInternal": false + }, + { + "x": 420, + "y": 387.72558, + "index": 2, + "body": { + "#": 2288 + }, + "isInternal": false + }, + { + "x": 400, + "y": 367.72558, + "index": 3, + "body": { + "#": 2288 + }, + "isInternal": false + }, + { + "x": 400, + "y": 357.72558, + "index": 4, + "body": { + "#": 2288 + }, + "isInternal": false + }, + { + "x": 420, + "y": 337.72558, + "index": 5, + "body": { + "#": 2288 + }, + "isInternal": false + }, + { + "x": 430, + "y": 337.72558, + "index": 6, + "body": { + "#": 2288 + }, + "isInternal": false + }, + { + "x": 450, + "y": 357.72558, + "index": 7, + "body": { + "#": 2288 + }, + "isInternal": false + }, + { + "x": 425, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2350 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2352 + }, + "max": { + "#": 2353 + } + }, + { + "x": 400, + "y": 337.72558 + }, + { + "x": 450, + "y": 390.63285 + }, + { + "x": 425, + "y": 359.81831 + }, + [ + { + "#": 2356 + }, + { + "#": 2357 + }, + { + "#": 2358 + }, + { + "#": 2359 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,7,8", + "startCol": 8, + "endCol": 9, + "startRow": 7, + "endRow": 8 + }, + { + "id": 100, + "type": "body", + "label": "Body", + "parts": { + "#": 2362 + }, + "angle": 0, + "vertices": { + "#": 2407 + }, + "position": { + "#": 2416 + }, + "force": { + "#": 2417 + }, + "torque": 0, + "positionImpulse": { + "#": 2418 + }, + "constraintImpulse": { + "#": 2419 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2420 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2421 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2422 + }, + "bounds": { + "#": 2424 + }, + "positionPrev": { + "#": 2427 + }, + "anglePrev": 0, + "axes": { + "#": 2428 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2361 + }, + "sleepCounter": 0, + "region": { + "#": 2433 + } + }, + [ + { + "#": 2361 + }, + { + "#": 2363 + }, + { + "#": 2385 + } + ], + { + "id": 98, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2364 + }, + "angle": 0, + "vertices": { + "#": 2365 + }, + "position": { + "#": 2370 + }, + "force": { + "#": 2371 + }, + "torque": 0, + "positionImpulse": { + "#": 2372 + }, + "constraintImpulse": { + "#": 2373 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2374 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2375 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2376 + }, + "bounds": { + "#": 2378 + }, + "positionPrev": { + "#": 2381 + }, + "anglePrev": 0, + "axes": { + "#": 2382 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2361 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2363 + } + ], + [ + { + "#": 2366 + }, + { + "#": 2367 + }, + { + "#": 2368 + }, + { + "#": 2369 + } + ], + { + "x": 450, + "y": 357.72558, + "index": 0, + "body": { + "#": 2363 + }, + "isInternal": false + }, + { + "x": 500, + "y": 357.72558, + "index": 1, + "body": { + "#": 2363 + }, + "isInternal": false + }, + { + "x": 500, + "y": 367.72558, + "index": 2, + "body": { + "#": 2363 + }, + "isInternal": false + }, + { + "x": 450, + "y": 367.72558, + "index": 3, + "body": { + "#": 2363 + }, + "isInternal": false + }, + { + "x": 475, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2377 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2379 + }, + "max": { + "#": 2380 + } + }, + { + "x": 450, + "y": 357.72558 + }, + { + "x": 500, + "y": 370.63285 + }, + { + "x": 450, + "y": 320 + }, + [ + { + "#": 2383 + }, + { + "#": 2384 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 99, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2386 + }, + "angle": 0, + "vertices": { + "#": 2387 + }, + "position": { + "#": 2392 + }, + "force": { + "#": 2393 + }, + "torque": 0, + "positionImpulse": { + "#": 2394 + }, + "constraintImpulse": { + "#": 2395 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2396 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2397 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2398 + }, + "bounds": { + "#": 2400 + }, + "positionPrev": { + "#": 2403 + }, + "anglePrev": 0, + "axes": { + "#": 2404 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2361 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2385 + } + ], + [ + { + "#": 2388 + }, + { + "#": 2389 + }, + { + "#": 2390 + }, + { + "#": 2391 + } + ], + { + "x": 470, + "y": 337.72558, + "index": 0, + "body": { + "#": 2385 + }, + "isInternal": false + }, + { + "x": 480, + "y": 337.72558, + "index": 1, + "body": { + "#": 2385 + }, + "isInternal": false + }, + { + "x": 480, + "y": 387.72558, + "index": 2, + "body": { + "#": 2385 + }, + "isInternal": false + }, + { + "x": 470, + "y": 387.72558, + "index": 3, + "body": { + "#": 2385 + }, + "isInternal": false + }, + { + "x": 475, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2399 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2401 + }, + "max": { + "#": 2402 + } + }, + { + "x": 470, + "y": 337.72558 + }, + { + "x": 480, + "y": 390.63285 + }, + { + "x": 450, + "y": 320 + }, + [ + { + "#": 2405 + }, + { + "#": 2406 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2408 + }, + { + "#": 2409 + }, + { + "#": 2410 + }, + { + "#": 2411 + }, + { + "#": 2412 + }, + { + "#": 2413 + }, + { + "#": 2414 + }, + { + "#": 2415 + } + ], + { + "x": 500, + "y": 367.72558, + "index": 0, + "body": { + "#": 2361 + }, + "isInternal": false + }, + { + "x": 480, + "y": 387.72558, + "index": 1, + "body": { + "#": 2361 + }, + "isInternal": false + }, + { + "x": 470, + "y": 387.72558, + "index": 2, + "body": { + "#": 2361 + }, + "isInternal": false + }, + { + "x": 450, + "y": 367.72558, + "index": 3, + "body": { + "#": 2361 + }, + "isInternal": false + }, + { + "x": 450, + "y": 357.72558, + "index": 4, + "body": { + "#": 2361 + }, + "isInternal": false + }, + { + "x": 470, + "y": 337.72558, + "index": 5, + "body": { + "#": 2361 + }, + "isInternal": false + }, + { + "x": 480, + "y": 337.72558, + "index": 6, + "body": { + "#": 2361 + }, + "isInternal": false + }, + { + "x": 500, + "y": 357.72558, + "index": 7, + "body": { + "#": 2361 + }, + "isInternal": false + }, + { + "x": 475, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2423 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2425 + }, + "max": { + "#": 2426 + } + }, + { + "x": 450, + "y": 337.72558 + }, + { + "x": 500, + "y": 390.63285 + }, + { + "x": 475, + "y": 359.81831 + }, + [ + { + "#": 2429 + }, + { + "#": 2430 + }, + { + "#": 2431 + }, + { + "#": 2432 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,7,8", + "startCol": 9, + "endCol": 10, + "startRow": 7, + "endRow": 8 + }, + { + "id": 103, + "type": "body", + "label": "Body", + "parts": { + "#": 2435 + }, + "angle": 0, + "vertices": { + "#": 2480 + }, + "position": { + "#": 2489 + }, + "force": { + "#": 2490 + }, + "torque": 0, + "positionImpulse": { + "#": 2491 + }, + "constraintImpulse": { + "#": 2492 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2493 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2494 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2495 + }, + "bounds": { + "#": 2497 + }, + "positionPrev": { + "#": 2500 + }, + "anglePrev": 0, + "axes": { + "#": 2501 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2434 + }, + "sleepCounter": 0, + "region": { + "#": 2506 + } + }, + [ + { + "#": 2434 + }, + { + "#": 2436 + }, + { + "#": 2458 + } + ], + { + "id": 101, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2437 + }, + "angle": 0, + "vertices": { + "#": 2438 + }, + "position": { + "#": 2443 + }, + "force": { + "#": 2444 + }, + "torque": 0, + "positionImpulse": { + "#": 2445 + }, + "constraintImpulse": { + "#": 2446 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2447 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2448 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2449 + }, + "bounds": { + "#": 2451 + }, + "positionPrev": { + "#": 2454 + }, + "anglePrev": 0, + "axes": { + "#": 2455 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2434 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2436 + } + ], + [ + { + "#": 2439 + }, + { + "#": 2440 + }, + { + "#": 2441 + }, + { + "#": 2442 + } + ], + { + "x": 500, + "y": 357.72558, + "index": 0, + "body": { + "#": 2436 + }, + "isInternal": false + }, + { + "x": 550, + "y": 357.72558, + "index": 1, + "body": { + "#": 2436 + }, + "isInternal": false + }, + { + "x": 550, + "y": 367.72558, + "index": 2, + "body": { + "#": 2436 + }, + "isInternal": false + }, + { + "x": 500, + "y": 367.72558, + "index": 3, + "body": { + "#": 2436 + }, + "isInternal": false + }, + { + "x": 525, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2450 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2452 + }, + "max": { + "#": 2453 + } + }, + { + "x": 500, + "y": 357.72558 + }, + { + "x": 550, + "y": 370.63285 + }, + { + "x": 500, + "y": 320 + }, + [ + { + "#": 2456 + }, + { + "#": 2457 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 102, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2459 + }, + "angle": 0, + "vertices": { + "#": 2460 + }, + "position": { + "#": 2465 + }, + "force": { + "#": 2466 + }, + "torque": 0, + "positionImpulse": { + "#": 2467 + }, + "constraintImpulse": { + "#": 2468 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2469 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2470 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2471 + }, + "bounds": { + "#": 2473 + }, + "positionPrev": { + "#": 2476 + }, + "anglePrev": 0, + "axes": { + "#": 2477 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2434 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2458 + } + ], + [ + { + "#": 2461 + }, + { + "#": 2462 + }, + { + "#": 2463 + }, + { + "#": 2464 + } + ], + { + "x": 520, + "y": 337.72558, + "index": 0, + "body": { + "#": 2458 + }, + "isInternal": false + }, + { + "x": 530, + "y": 337.72558, + "index": 1, + "body": { + "#": 2458 + }, + "isInternal": false + }, + { + "x": 530, + "y": 387.72558, + "index": 2, + "body": { + "#": 2458 + }, + "isInternal": false + }, + { + "x": 520, + "y": 387.72558, + "index": 3, + "body": { + "#": 2458 + }, + "isInternal": false + }, + { + "x": 525, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2472 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2474 + }, + "max": { + "#": 2475 + } + }, + { + "x": 520, + "y": 337.72558 + }, + { + "x": 530, + "y": 390.63285 + }, + { + "x": 500, + "y": 320 + }, + [ + { + "#": 2478 + }, + { + "#": 2479 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2481 + }, + { + "#": 2482 + }, + { + "#": 2483 + }, + { + "#": 2484 + }, + { + "#": 2485 + }, + { + "#": 2486 + }, + { + "#": 2487 + }, + { + "#": 2488 + } + ], + { + "x": 550, + "y": 367.72558, + "index": 0, + "body": { + "#": 2434 + }, + "isInternal": false + }, + { + "x": 530, + "y": 387.72558, + "index": 1, + "body": { + "#": 2434 + }, + "isInternal": false + }, + { + "x": 520, + "y": 387.72558, + "index": 2, + "body": { + "#": 2434 + }, + "isInternal": false + }, + { + "x": 500, + "y": 367.72558, + "index": 3, + "body": { + "#": 2434 + }, + "isInternal": false + }, + { + "x": 500, + "y": 357.72558, + "index": 4, + "body": { + "#": 2434 + }, + "isInternal": false + }, + { + "x": 520, + "y": 337.72558, + "index": 5, + "body": { + "#": 2434 + }, + "isInternal": false + }, + { + "x": 530, + "y": 337.72558, + "index": 6, + "body": { + "#": 2434 + }, + "isInternal": false + }, + { + "x": 550, + "y": 357.72558, + "index": 7, + "body": { + "#": 2434 + }, + "isInternal": false + }, + { + "x": 525, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2496 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2498 + }, + "max": { + "#": 2499 + } + }, + { + "x": 500, + "y": 337.72558 + }, + { + "x": 550, + "y": 390.63285 + }, + { + "x": 525, + "y": 359.81831 + }, + [ + { + "#": 2502 + }, + { + "#": 2503 + }, + { + "#": 2504 + }, + { + "#": 2505 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,7,8", + "startCol": 10, + "endCol": 11, + "startRow": 7, + "endRow": 8 + }, + { + "id": 106, + "type": "body", + "label": "Body", + "parts": { + "#": 2508 + }, + "angle": 0, + "vertices": { + "#": 2553 + }, + "position": { + "#": 2562 + }, + "force": { + "#": 2563 + }, + "torque": 0, + "positionImpulse": { + "#": 2564 + }, + "constraintImpulse": { + "#": 2565 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2566 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2567 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2568 + }, + "bounds": { + "#": 2570 + }, + "positionPrev": { + "#": 2573 + }, + "anglePrev": 0, + "axes": { + "#": 2574 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2507 + }, + "sleepCounter": 0, + "region": { + "#": 2579 + } + }, + [ + { + "#": 2507 + }, + { + "#": 2509 + }, + { + "#": 2531 + } + ], + { + "id": 104, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2510 + }, + "angle": 0, + "vertices": { + "#": 2511 + }, + "position": { + "#": 2516 + }, + "force": { + "#": 2517 + }, + "torque": 0, + "positionImpulse": { + "#": 2518 + }, + "constraintImpulse": { + "#": 2519 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2520 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2521 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2522 + }, + "bounds": { + "#": 2524 + }, + "positionPrev": { + "#": 2527 + }, + "anglePrev": 0, + "axes": { + "#": 2528 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2507 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2509 + } + ], + [ + { + "#": 2512 + }, + { + "#": 2513 + }, + { + "#": 2514 + }, + { + "#": 2515 + } + ], + { + "x": 550, + "y": 357.72558, + "index": 0, + "body": { + "#": 2509 + }, + "isInternal": false + }, + { + "x": 600, + "y": 357.72558, + "index": 1, + "body": { + "#": 2509 + }, + "isInternal": false + }, + { + "x": 600, + "y": 367.72558, + "index": 2, + "body": { + "#": 2509 + }, + "isInternal": false + }, + { + "x": 550, + "y": 367.72558, + "index": 3, + "body": { + "#": 2509 + }, + "isInternal": false + }, + { + "x": 575, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2523 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2525 + }, + "max": { + "#": 2526 + } + }, + { + "x": 550, + "y": 357.72558 + }, + { + "x": 600, + "y": 370.63285 + }, + { + "x": 550, + "y": 320 + }, + [ + { + "#": 2529 + }, + { + "#": 2530 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 105, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2532 + }, + "angle": 0, + "vertices": { + "#": 2533 + }, + "position": { + "#": 2538 + }, + "force": { + "#": 2539 + }, + "torque": 0, + "positionImpulse": { + "#": 2540 + }, + "constraintImpulse": { + "#": 2541 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2542 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2543 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2544 + }, + "bounds": { + "#": 2546 + }, + "positionPrev": { + "#": 2549 + }, + "anglePrev": 0, + "axes": { + "#": 2550 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2507 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2531 + } + ], + [ + { + "#": 2534 + }, + { + "#": 2535 + }, + { + "#": 2536 + }, + { + "#": 2537 + } + ], + { + "x": 570, + "y": 337.72558, + "index": 0, + "body": { + "#": 2531 + }, + "isInternal": false + }, + { + "x": 580, + "y": 337.72558, + "index": 1, + "body": { + "#": 2531 + }, + "isInternal": false + }, + { + "x": 580, + "y": 387.72558, + "index": 2, + "body": { + "#": 2531 + }, + "isInternal": false + }, + { + "x": 570, + "y": 387.72558, + "index": 3, + "body": { + "#": 2531 + }, + "isInternal": false + }, + { + "x": 575, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2545 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2547 + }, + "max": { + "#": 2548 + } + }, + { + "x": 570, + "y": 337.72558 + }, + { + "x": 580, + "y": 390.63285 + }, + { + "x": 550, + "y": 320 + }, + [ + { + "#": 2551 + }, + { + "#": 2552 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2554 + }, + { + "#": 2555 + }, + { + "#": 2556 + }, + { + "#": 2557 + }, + { + "#": 2558 + }, + { + "#": 2559 + }, + { + "#": 2560 + }, + { + "#": 2561 + } + ], + { + "x": 600, + "y": 367.72558, + "index": 0, + "body": { + "#": 2507 + }, + "isInternal": false + }, + { + "x": 580, + "y": 387.72558, + "index": 1, + "body": { + "#": 2507 + }, + "isInternal": false + }, + { + "x": 570, + "y": 387.72558, + "index": 2, + "body": { + "#": 2507 + }, + "isInternal": false + }, + { + "x": 550, + "y": 367.72558, + "index": 3, + "body": { + "#": 2507 + }, + "isInternal": false + }, + { + "x": 550, + "y": 357.72558, + "index": 4, + "body": { + "#": 2507 + }, + "isInternal": false + }, + { + "x": 570, + "y": 337.72558, + "index": 5, + "body": { + "#": 2507 + }, + "isInternal": false + }, + { + "x": 580, + "y": 337.72558, + "index": 6, + "body": { + "#": 2507 + }, + "isInternal": false + }, + { + "x": 600, + "y": 357.72558, + "index": 7, + "body": { + "#": 2507 + }, + "isInternal": false + }, + { + "x": 575, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2569 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2571 + }, + "max": { + "#": 2572 + } + }, + { + "x": 550, + "y": 337.72558 + }, + { + "x": 600, + "y": 390.63285 + }, + { + "x": 575, + "y": 359.81831 + }, + [ + { + "#": 2575 + }, + { + "#": 2576 + }, + { + "#": 2577 + }, + { + "#": 2578 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,7,8", + "startCol": 11, + "endCol": 12, + "startRow": 7, + "endRow": 8 + }, + { + "id": 109, + "type": "body", + "label": "Body", + "parts": { + "#": 2581 + }, + "angle": 0, + "vertices": { + "#": 2626 + }, + "position": { + "#": 2635 + }, + "force": { + "#": 2636 + }, + "torque": 0, + "positionImpulse": { + "#": 2637 + }, + "constraintImpulse": { + "#": 2638 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2639 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2640 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2641 + }, + "bounds": { + "#": 2643 + }, + "positionPrev": { + "#": 2646 + }, + "anglePrev": 0, + "axes": { + "#": 2647 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2580 + }, + "sleepCounter": 0, + "region": { + "#": 2652 + } + }, + [ + { + "#": 2580 + }, + { + "#": 2582 + }, + { + "#": 2604 + } + ], + { + "id": 107, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2583 + }, + "angle": 0, + "vertices": { + "#": 2584 + }, + "position": { + "#": 2589 + }, + "force": { + "#": 2590 + }, + "torque": 0, + "positionImpulse": { + "#": 2591 + }, + "constraintImpulse": { + "#": 2592 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2593 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2594 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2595 + }, + "bounds": { + "#": 2597 + }, + "positionPrev": { + "#": 2600 + }, + "anglePrev": 0, + "axes": { + "#": 2601 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2580 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2582 + } + ], + [ + { + "#": 2585 + }, + { + "#": 2586 + }, + { + "#": 2587 + }, + { + "#": 2588 + } + ], + { + "x": 600, + "y": 357.72558, + "index": 0, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 650, + "y": 357.72558, + "index": 1, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 650, + "y": 367.72558, + "index": 2, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 600, + "y": 367.72558, + "index": 3, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 625, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2596 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2598 + }, + "max": { + "#": 2599 + } + }, + { + "x": 600, + "y": 357.72558 + }, + { + "x": 650, + "y": 370.63285 + }, + { + "x": 600, + "y": 320 + }, + [ + { + "#": 2602 + }, + { + "#": 2603 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 108, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2605 + }, + "angle": 0, + "vertices": { + "#": 2606 + }, + "position": { + "#": 2611 + }, + "force": { + "#": 2612 + }, + "torque": 0, + "positionImpulse": { + "#": 2613 + }, + "constraintImpulse": { + "#": 2614 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2615 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2616 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2617 + }, + "bounds": { + "#": 2619 + }, + "positionPrev": { + "#": 2622 + }, + "anglePrev": 0, + "axes": { + "#": 2623 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2580 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2604 + } + ], + [ + { + "#": 2607 + }, + { + "#": 2608 + }, + { + "#": 2609 + }, + { + "#": 2610 + } + ], + { + "x": 620, + "y": 337.72558, + "index": 0, + "body": { + "#": 2604 + }, + "isInternal": false + }, + { + "x": 630, + "y": 337.72558, + "index": 1, + "body": { + "#": 2604 + }, + "isInternal": false + }, + { + "x": 630, + "y": 387.72558, + "index": 2, + "body": { + "#": 2604 + }, + "isInternal": false + }, + { + "x": 620, + "y": 387.72558, + "index": 3, + "body": { + "#": 2604 + }, + "isInternal": false + }, + { + "x": 625, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2618 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2620 + }, + "max": { + "#": 2621 + } + }, + { + "x": 620, + "y": 337.72558 + }, + { + "x": 630, + "y": 390.63285 + }, + { + "x": 600, + "y": 320 + }, + [ + { + "#": 2624 + }, + { + "#": 2625 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2627 + }, + { + "#": 2628 + }, + { + "#": 2629 + }, + { + "#": 2630 + }, + { + "#": 2631 + }, + { + "#": 2632 + }, + { + "#": 2633 + }, + { + "#": 2634 + } + ], + { + "x": 650, + "y": 367.72558, + "index": 0, + "body": { + "#": 2580 + }, + "isInternal": false + }, + { + "x": 630, + "y": 387.72558, + "index": 1, + "body": { + "#": 2580 + }, + "isInternal": false + }, + { + "x": 620, + "y": 387.72558, + "index": 2, + "body": { + "#": 2580 + }, + "isInternal": false + }, + { + "x": 600, + "y": 367.72558, + "index": 3, + "body": { + "#": 2580 + }, + "isInternal": false + }, + { + "x": 600, + "y": 357.72558, + "index": 4, + "body": { + "#": 2580 + }, + "isInternal": false + }, + { + "x": 620, + "y": 337.72558, + "index": 5, + "body": { + "#": 2580 + }, + "isInternal": false + }, + { + "x": 630, + "y": 337.72558, + "index": 6, + "body": { + "#": 2580 + }, + "isInternal": false + }, + { + "x": 650, + "y": 357.72558, + "index": 7, + "body": { + "#": 2580 + }, + "isInternal": false + }, + { + "x": 625, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2642 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2644 + }, + "max": { + "#": 2645 + } + }, + { + "x": 600, + "y": 337.72558 + }, + { + "x": 650, + "y": 390.63285 + }, + { + "x": 625, + "y": 359.81831 + }, + [ + { + "#": 2648 + }, + { + "#": 2649 + }, + { + "#": 2650 + }, + { + "#": 2651 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,13,7,8", + "startCol": 12, + "endCol": 13, + "startRow": 7, + "endRow": 8 + }, + { + "id": 112, + "type": "body", + "label": "Body", + "parts": { + "#": 2654 + }, + "angle": 0, + "vertices": { + "#": 2699 + }, + "position": { + "#": 2708 + }, + "force": { + "#": 2709 + }, + "torque": 0, + "positionImpulse": { + "#": 2710 + }, + "constraintImpulse": { + "#": 2711 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2712 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2713 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2714 + }, + "bounds": { + "#": 2716 + }, + "positionPrev": { + "#": 2719 + }, + "anglePrev": 0, + "axes": { + "#": 2720 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2653 + }, + "sleepCounter": 0, + "region": { + "#": 2725 + } + }, + [ + { + "#": 2653 + }, + { + "#": 2655 + }, + { + "#": 2677 + } + ], + { + "id": 110, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2656 + }, + "angle": 0, + "vertices": { + "#": 2657 + }, + "position": { + "#": 2662 + }, + "force": { + "#": 2663 + }, + "torque": 0, + "positionImpulse": { + "#": 2664 + }, + "constraintImpulse": { + "#": 2665 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2666 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2667 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2668 + }, + "bounds": { + "#": 2670 + }, + "positionPrev": { + "#": 2673 + }, + "anglePrev": 0, + "axes": { + "#": 2674 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2653 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2655 + } + ], + [ + { + "#": 2658 + }, + { + "#": 2659 + }, + { + "#": 2660 + }, + { + "#": 2661 + } + ], + { + "x": 650, + "y": 357.72558, + "index": 0, + "body": { + "#": 2655 + }, + "isInternal": false + }, + { + "x": 700, + "y": 357.72558, + "index": 1, + "body": { + "#": 2655 + }, + "isInternal": false + }, + { + "x": 700, + "y": 367.72558, + "index": 2, + "body": { + "#": 2655 + }, + "isInternal": false + }, + { + "x": 650, + "y": 367.72558, + "index": 3, + "body": { + "#": 2655 + }, + "isInternal": false + }, + { + "x": 675, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2669 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2671 + }, + "max": { + "#": 2672 + } + }, + { + "x": 650, + "y": 357.72558 + }, + { + "x": 700, + "y": 370.63285 + }, + { + "x": 650, + "y": 320 + }, + [ + { + "#": 2675 + }, + { + "#": 2676 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 111, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2678 + }, + "angle": 0, + "vertices": { + "#": 2679 + }, + "position": { + "#": 2684 + }, + "force": { + "#": 2685 + }, + "torque": 0, + "positionImpulse": { + "#": 2686 + }, + "constraintImpulse": { + "#": 2687 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2688 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2689 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2690 + }, + "bounds": { + "#": 2692 + }, + "positionPrev": { + "#": 2695 + }, + "anglePrev": 0, + "axes": { + "#": 2696 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2653 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2677 + } + ], + [ + { + "#": 2680 + }, + { + "#": 2681 + }, + { + "#": 2682 + }, + { + "#": 2683 + } + ], + { + "x": 670, + "y": 337.72558, + "index": 0, + "body": { + "#": 2677 + }, + "isInternal": false + }, + { + "x": 680, + "y": 337.72558, + "index": 1, + "body": { + "#": 2677 + }, + "isInternal": false + }, + { + "x": 680, + "y": 387.72558, + "index": 2, + "body": { + "#": 2677 + }, + "isInternal": false + }, + { + "x": 670, + "y": 387.72558, + "index": 3, + "body": { + "#": 2677 + }, + "isInternal": false + }, + { + "x": 675, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2691 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2693 + }, + "max": { + "#": 2694 + } + }, + { + "x": 670, + "y": 337.72558 + }, + { + "x": 680, + "y": 390.63285 + }, + { + "x": 650, + "y": 320 + }, + [ + { + "#": 2697 + }, + { + "#": 2698 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2700 + }, + { + "#": 2701 + }, + { + "#": 2702 + }, + { + "#": 2703 + }, + { + "#": 2704 + }, + { + "#": 2705 + }, + { + "#": 2706 + }, + { + "#": 2707 + } + ], + { + "x": 700, + "y": 367.72558, + "index": 0, + "body": { + "#": 2653 + }, + "isInternal": false + }, + { + "x": 680, + "y": 387.72558, + "index": 1, + "body": { + "#": 2653 + }, + "isInternal": false + }, + { + "x": 670, + "y": 387.72558, + "index": 2, + "body": { + "#": 2653 + }, + "isInternal": false + }, + { + "x": 650, + "y": 367.72558, + "index": 3, + "body": { + "#": 2653 + }, + "isInternal": false + }, + { + "x": 650, + "y": 357.72558, + "index": 4, + "body": { + "#": 2653 + }, + "isInternal": false + }, + { + "x": 670, + "y": 337.72558, + "index": 5, + "body": { + "#": 2653 + }, + "isInternal": false + }, + { + "x": 680, + "y": 337.72558, + "index": 6, + "body": { + "#": 2653 + }, + "isInternal": false + }, + { + "x": 700, + "y": 357.72558, + "index": 7, + "body": { + "#": 2653 + }, + "isInternal": false + }, + { + "x": 675, + "y": 362.72558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2715 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2717 + }, + "max": { + "#": 2718 + } + }, + { + "x": 650, + "y": 337.72558 + }, + { + "x": 700, + "y": 390.63285 + }, + { + "x": 675, + "y": 359.81831 + }, + [ + { + "#": 2721 + }, + { + "#": 2722 + }, + { + "#": 2723 + }, + { + "#": 2724 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "13,14,7,8", + "startCol": 13, + "endCol": 14, + "startRow": 7, + "endRow": 8 + }, + { + "id": 115, + "type": "body", + "label": "Body", + "parts": { + "#": 2727 + }, + "angle": 0, + "vertices": { + "#": 2772 + }, + "position": { + "#": 2781 + }, + "force": { + "#": 2782 + }, + "torque": 0, + "positionImpulse": { + "#": 2783 + }, + "constraintImpulse": { + "#": 2784 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2785 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2786 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2787 + }, + "bounds": { + "#": 2789 + }, + "positionPrev": { + "#": 2792 + }, + "anglePrev": 0, + "axes": { + "#": 2793 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2726 + }, + "sleepCounter": 0, + "region": { + "#": 2798 + } + }, + [ + { + "#": 2726 + }, + { + "#": 2728 + }, + { + "#": 2750 + } + ], + { + "id": 113, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2729 + }, + "angle": 0, + "vertices": { + "#": 2730 + }, + "position": { + "#": 2735 + }, + "force": { + "#": 2736 + }, + "torque": 0, + "positionImpulse": { + "#": 2737 + }, + "constraintImpulse": { + "#": 2738 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2739 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2740 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2741 + }, + "bounds": { + "#": 2743 + }, + "positionPrev": { + "#": 2746 + }, + "anglePrev": 0, + "axes": { + "#": 2747 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2726 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2728 + } + ], + [ + { + "#": 2731 + }, + { + "#": 2732 + }, + { + "#": 2733 + }, + { + "#": 2734 + } + ], + { + "x": 100, + "y": 407.73575, + "index": 0, + "body": { + "#": 2728 + }, + "isInternal": false + }, + { + "x": 150, + "y": 407.73575, + "index": 1, + "body": { + "#": 2728 + }, + "isInternal": false + }, + { + "x": 150, + "y": 417.73575, + "index": 2, + "body": { + "#": 2728 + }, + "isInternal": false + }, + { + "x": 100, + "y": 417.73575, + "index": 3, + "body": { + "#": 2728 + }, + "isInternal": false + }, + { + "x": 125, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2742 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2744 + }, + "max": { + "#": 2745 + } + }, + { + "x": 100, + "y": 407.73575 + }, + { + "x": 150, + "y": 417.73575 + }, + { + "x": 100, + "y": 370 + }, + [ + { + "#": 2748 + }, + { + "#": 2749 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 114, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2751 + }, + "angle": 0, + "vertices": { + "#": 2752 + }, + "position": { + "#": 2757 + }, + "force": { + "#": 2758 + }, + "torque": 0, + "positionImpulse": { + "#": 2759 + }, + "constraintImpulse": { + "#": 2760 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2761 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2762 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2763 + }, + "bounds": { + "#": 2765 + }, + "positionPrev": { + "#": 2768 + }, + "anglePrev": 0, + "axes": { + "#": 2769 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2726 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2750 + } + ], + [ + { + "#": 2753 + }, + { + "#": 2754 + }, + { + "#": 2755 + }, + { + "#": 2756 + } + ], + { + "x": 120, + "y": 387.73575, + "index": 0, + "body": { + "#": 2750 + }, + "isInternal": false + }, + { + "x": 130, + "y": 387.73575, + "index": 1, + "body": { + "#": 2750 + }, + "isInternal": false + }, + { + "x": 130, + "y": 437.73575, + "index": 2, + "body": { + "#": 2750 + }, + "isInternal": false + }, + { + "x": 120, + "y": 437.73575, + "index": 3, + "body": { + "#": 2750 + }, + "isInternal": false + }, + { + "x": 125, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2764 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2766 + }, + "max": { + "#": 2767 + } + }, + { + "x": 120, + "y": 387.73575 + }, + { + "x": 130, + "y": 437.73575 + }, + { + "x": 100, + "y": 370 + }, + [ + { + "#": 2770 + }, + { + "#": 2771 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2773 + }, + { + "#": 2774 + }, + { + "#": 2775 + }, + { + "#": 2776 + }, + { + "#": 2777 + }, + { + "#": 2778 + }, + { + "#": 2779 + }, + { + "#": 2780 + } + ], + { + "x": 150, + "y": 417.73575, + "index": 0, + "body": { + "#": 2726 + }, + "isInternal": false + }, + { + "x": 130, + "y": 437.73575, + "index": 1, + "body": { + "#": 2726 + }, + "isInternal": false + }, + { + "x": 120, + "y": 437.73575, + "index": 2, + "body": { + "#": 2726 + }, + "isInternal": false + }, + { + "x": 100, + "y": 417.73575, + "index": 3, + "body": { + "#": 2726 + }, + "isInternal": false + }, + { + "x": 100, + "y": 407.73575, + "index": 4, + "body": { + "#": 2726 + }, + "isInternal": false + }, + { + "x": 120, + "y": 387.73575, + "index": 5, + "body": { + "#": 2726 + }, + "isInternal": false + }, + { + "x": 130, + "y": 387.73575, + "index": 6, + "body": { + "#": 2726 + }, + "isInternal": false + }, + { + "x": 150, + "y": 407.73575, + "index": 7, + "body": { + "#": 2726 + }, + "isInternal": false + }, + { + "x": 125, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2788 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2790 + }, + "max": { + "#": 2791 + } + }, + { + "x": 100, + "y": 387.73575 + }, + { + "x": 150, + "y": 437.73575 + }, + { + "x": 125, + "y": 409.82848 + }, + [ + { + "#": 2794 + }, + { + "#": 2795 + }, + { + "#": 2796 + }, + { + "#": 2797 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,3,8,9", + "startCol": 2, + "endCol": 3, + "startRow": 8, + "endRow": 9 + }, + { + "id": 118, + "type": "body", + "label": "Body", + "parts": { + "#": 2800 + }, + "angle": 0, + "vertices": { + "#": 2845 + }, + "position": { + "#": 2854 + }, + "force": { + "#": 2855 + }, + "torque": 0, + "positionImpulse": { + "#": 2856 + }, + "constraintImpulse": { + "#": 2857 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2858 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2859 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2860 + }, + "bounds": { + "#": 2862 + }, + "positionPrev": { + "#": 2865 + }, + "anglePrev": 0, + "axes": { + "#": 2866 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2799 + }, + "sleepCounter": 0, + "region": { + "#": 2871 + } + }, + [ + { + "#": 2799 + }, + { + "#": 2801 + }, + { + "#": 2823 + } + ], + { + "id": 116, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2802 + }, + "angle": 0, + "vertices": { + "#": 2803 + }, + "position": { + "#": 2808 + }, + "force": { + "#": 2809 + }, + "torque": 0, + "positionImpulse": { + "#": 2810 + }, + "constraintImpulse": { + "#": 2811 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2812 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2813 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2814 + }, + "bounds": { + "#": 2816 + }, + "positionPrev": { + "#": 2819 + }, + "anglePrev": 0, + "axes": { + "#": 2820 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2799 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2801 + } + ], + [ + { + "#": 2804 + }, + { + "#": 2805 + }, + { + "#": 2806 + }, + { + "#": 2807 + } + ], + { + "x": 150, + "y": 407.73575, + "index": 0, + "body": { + "#": 2801 + }, + "isInternal": false + }, + { + "x": 200, + "y": 407.73575, + "index": 1, + "body": { + "#": 2801 + }, + "isInternal": false + }, + { + "x": 200, + "y": 417.73575, + "index": 2, + "body": { + "#": 2801 + }, + "isInternal": false + }, + { + "x": 150, + "y": 417.73575, + "index": 3, + "body": { + "#": 2801 + }, + "isInternal": false + }, + { + "x": 175, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2815 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2817 + }, + "max": { + "#": 2818 + } + }, + { + "x": 150, + "y": 407.73575 + }, + { + "x": 200, + "y": 417.73575 + }, + { + "x": 150, + "y": 370 + }, + [ + { + "#": 2821 + }, + { + "#": 2822 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 117, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2824 + }, + "angle": 0, + "vertices": { + "#": 2825 + }, + "position": { + "#": 2830 + }, + "force": { + "#": 2831 + }, + "torque": 0, + "positionImpulse": { + "#": 2832 + }, + "constraintImpulse": { + "#": 2833 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2834 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2835 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2836 + }, + "bounds": { + "#": 2838 + }, + "positionPrev": { + "#": 2841 + }, + "anglePrev": 0, + "axes": { + "#": 2842 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2799 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2823 + } + ], + [ + { + "#": 2826 + }, + { + "#": 2827 + }, + { + "#": 2828 + }, + { + "#": 2829 + } + ], + { + "x": 170, + "y": 387.73575, + "index": 0, + "body": { + "#": 2823 + }, + "isInternal": false + }, + { + "x": 180, + "y": 387.73575, + "index": 1, + "body": { + "#": 2823 + }, + "isInternal": false + }, + { + "x": 180, + "y": 437.73575, + "index": 2, + "body": { + "#": 2823 + }, + "isInternal": false + }, + { + "x": 170, + "y": 437.73575, + "index": 3, + "body": { + "#": 2823 + }, + "isInternal": false + }, + { + "x": 175, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2837 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2839 + }, + "max": { + "#": 2840 + } + }, + { + "x": 170, + "y": 387.73575 + }, + { + "x": 180, + "y": 437.73575 + }, + { + "x": 150, + "y": 370 + }, + [ + { + "#": 2843 + }, + { + "#": 2844 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2846 + }, + { + "#": 2847 + }, + { + "#": 2848 + }, + { + "#": 2849 + }, + { + "#": 2850 + }, + { + "#": 2851 + }, + { + "#": 2852 + }, + { + "#": 2853 + } + ], + { + "x": 200, + "y": 417.73575, + "index": 0, + "body": { + "#": 2799 + }, + "isInternal": false + }, + { + "x": 180, + "y": 437.73575, + "index": 1, + "body": { + "#": 2799 + }, + "isInternal": false + }, + { + "x": 170, + "y": 437.73575, + "index": 2, + "body": { + "#": 2799 + }, + "isInternal": false + }, + { + "x": 150, + "y": 417.73575, + "index": 3, + "body": { + "#": 2799 + }, + "isInternal": false + }, + { + "x": 150, + "y": 407.73575, + "index": 4, + "body": { + "#": 2799 + }, + "isInternal": false + }, + { + "x": 170, + "y": 387.73575, + "index": 5, + "body": { + "#": 2799 + }, + "isInternal": false + }, + { + "x": 180, + "y": 387.73575, + "index": 6, + "body": { + "#": 2799 + }, + "isInternal": false + }, + { + "x": 200, + "y": 407.73575, + "index": 7, + "body": { + "#": 2799 + }, + "isInternal": false + }, + { + "x": 175, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2861 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2863 + }, + "max": { + "#": 2864 + } + }, + { + "x": 150, + "y": 387.73575 + }, + { + "x": 200, + "y": 437.73575 + }, + { + "x": 175, + "y": 409.82848 + }, + [ + { + "#": 2867 + }, + { + "#": 2868 + }, + { + "#": 2869 + }, + { + "#": 2870 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,8,9", + "startCol": 3, + "endCol": 4, + "startRow": 8, + "endRow": 9 + }, + { + "id": 121, + "type": "body", + "label": "Body", + "parts": { + "#": 2873 + }, + "angle": 0, + "vertices": { + "#": 2918 + }, + "position": { + "#": 2927 + }, + "force": { + "#": 2928 + }, + "torque": 0, + "positionImpulse": { + "#": 2929 + }, + "constraintImpulse": { + "#": 2930 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2931 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2932 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2933 + }, + "bounds": { + "#": 2935 + }, + "positionPrev": { + "#": 2938 + }, + "anglePrev": 0, + "axes": { + "#": 2939 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2872 + }, + "sleepCounter": 0, + "region": { + "#": 2944 + } + }, + [ + { + "#": 2872 + }, + { + "#": 2874 + }, + { + "#": 2896 + } + ], + { + "id": 119, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2875 + }, + "angle": 0, + "vertices": { + "#": 2876 + }, + "position": { + "#": 2881 + }, + "force": { + "#": 2882 + }, + "torque": 0, + "positionImpulse": { + "#": 2883 + }, + "constraintImpulse": { + "#": 2884 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2885 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2886 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2887 + }, + "bounds": { + "#": 2889 + }, + "positionPrev": { + "#": 2892 + }, + "anglePrev": 0, + "axes": { + "#": 2893 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2872 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2874 + } + ], + [ + { + "#": 2877 + }, + { + "#": 2878 + }, + { + "#": 2879 + }, + { + "#": 2880 + } + ], + { + "x": 200, + "y": 407.73575, + "index": 0, + "body": { + "#": 2874 + }, + "isInternal": false + }, + { + "x": 250, + "y": 407.73575, + "index": 1, + "body": { + "#": 2874 + }, + "isInternal": false + }, + { + "x": 250, + "y": 417.73575, + "index": 2, + "body": { + "#": 2874 + }, + "isInternal": false + }, + { + "x": 200, + "y": 417.73575, + "index": 3, + "body": { + "#": 2874 + }, + "isInternal": false + }, + { + "x": 225, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2888 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2890 + }, + "max": { + "#": 2891 + } + }, + { + "x": 200, + "y": 407.73575 + }, + { + "x": 250, + "y": 417.73575 + }, + { + "x": 200, + "y": 370 + }, + [ + { + "#": 2894 + }, + { + "#": 2895 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 120, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2897 + }, + "angle": 0, + "vertices": { + "#": 2898 + }, + "position": { + "#": 2903 + }, + "force": { + "#": 2904 + }, + "torque": 0, + "positionImpulse": { + "#": 2905 + }, + "constraintImpulse": { + "#": 2906 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2907 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2908 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2909 + }, + "bounds": { + "#": 2911 + }, + "positionPrev": { + "#": 2914 + }, + "anglePrev": 0, + "axes": { + "#": 2915 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2872 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2896 + } + ], + [ + { + "#": 2899 + }, + { + "#": 2900 + }, + { + "#": 2901 + }, + { + "#": 2902 + } + ], + { + "x": 220, + "y": 387.73575, + "index": 0, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 230, + "y": 387.73575, + "index": 1, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 230, + "y": 437.73575, + "index": 2, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 220, + "y": 437.73575, + "index": 3, + "body": { + "#": 2896 + }, + "isInternal": false + }, + { + "x": 225, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2910 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2912 + }, + "max": { + "#": 2913 + } + }, + { + "x": 220, + "y": 387.73575 + }, + { + "x": 230, + "y": 437.73575 + }, + { + "x": 200, + "y": 370 + }, + [ + { + "#": 2916 + }, + { + "#": 2917 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2919 + }, + { + "#": 2920 + }, + { + "#": 2921 + }, + { + "#": 2922 + }, + { + "#": 2923 + }, + { + "#": 2924 + }, + { + "#": 2925 + }, + { + "#": 2926 + } + ], + { + "x": 250, + "y": 417.73575, + "index": 0, + "body": { + "#": 2872 + }, + "isInternal": false + }, + { + "x": 230, + "y": 437.73575, + "index": 1, + "body": { + "#": 2872 + }, + "isInternal": false + }, + { + "x": 220, + "y": 437.73575, + "index": 2, + "body": { + "#": 2872 + }, + "isInternal": false + }, + { + "x": 200, + "y": 417.73575, + "index": 3, + "body": { + "#": 2872 + }, + "isInternal": false + }, + { + "x": 200, + "y": 407.73575, + "index": 4, + "body": { + "#": 2872 + }, + "isInternal": false + }, + { + "x": 220, + "y": 387.73575, + "index": 5, + "body": { + "#": 2872 + }, + "isInternal": false + }, + { + "x": 230, + "y": 387.73575, + "index": 6, + "body": { + "#": 2872 + }, + "isInternal": false + }, + { + "x": 250, + "y": 407.73575, + "index": 7, + "body": { + "#": 2872 + }, + "isInternal": false + }, + { + "x": 225, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2934 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2936 + }, + "max": { + "#": 2937 + } + }, + { + "x": 200, + "y": 387.73575 + }, + { + "x": 250, + "y": 437.73575 + }, + { + "x": 225, + "y": 409.82848 + }, + [ + { + "#": 2940 + }, + { + "#": 2941 + }, + { + "#": 2942 + }, + { + "#": 2943 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,8,9", + "startCol": 4, + "endCol": 5, + "startRow": 8, + "endRow": 9 + }, + { + "id": 124, + "type": "body", + "label": "Body", + "parts": { + "#": 2946 + }, + "angle": 0, + "vertices": { + "#": 2991 + }, + "position": { + "#": 3000 + }, + "force": { + "#": 3001 + }, + "torque": 0, + "positionImpulse": { + "#": 3002 + }, + "constraintImpulse": { + "#": 3003 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3004 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3005 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3006 + }, + "bounds": { + "#": 3008 + }, + "positionPrev": { + "#": 3011 + }, + "anglePrev": 0, + "axes": { + "#": 3012 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 2945 + }, + "sleepCounter": 0, + "region": { + "#": 3017 + } + }, + [ + { + "#": 2945 + }, + { + "#": 2947 + }, + { + "#": 2969 + } + ], + { + "id": 122, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2948 + }, + "angle": 0, + "vertices": { + "#": 2949 + }, + "position": { + "#": 2954 + }, + "force": { + "#": 2955 + }, + "torque": 0, + "positionImpulse": { + "#": 2956 + }, + "constraintImpulse": { + "#": 2957 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2958 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2959 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2960 + }, + "bounds": { + "#": 2962 + }, + "positionPrev": { + "#": 2965 + }, + "anglePrev": 0, + "axes": { + "#": 2966 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2945 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2947 + } + ], + [ + { + "#": 2950 + }, + { + "#": 2951 + }, + { + "#": 2952 + }, + { + "#": 2953 + } + ], + { + "x": 250, + "y": 407.73575, + "index": 0, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 300, + "y": 407.73575, + "index": 1, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 300, + "y": 417.73575, + "index": 2, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 250, + "y": 417.73575, + "index": 3, + "body": { + "#": 2947 + }, + "isInternal": false + }, + { + "x": 275, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2961 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2963 + }, + "max": { + "#": 2964 + } + }, + { + "x": 250, + "y": 407.73575 + }, + { + "x": 300, + "y": 417.73575 + }, + { + "x": 250, + "y": 370 + }, + [ + { + "#": 2967 + }, + { + "#": 2968 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 123, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2970 + }, + "angle": 0, + "vertices": { + "#": 2971 + }, + "position": { + "#": 2976 + }, + "force": { + "#": 2977 + }, + "torque": 0, + "positionImpulse": { + "#": 2978 + }, + "constraintImpulse": { + "#": 2979 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2980 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2981 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2982 + }, + "bounds": { + "#": 2984 + }, + "positionPrev": { + "#": 2987 + }, + "anglePrev": 0, + "axes": { + "#": 2988 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 2945 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2969 + } + ], + [ + { + "#": 2972 + }, + { + "#": 2973 + }, + { + "#": 2974 + }, + { + "#": 2975 + } + ], + { + "x": 270, + "y": 387.73575, + "index": 0, + "body": { + "#": 2969 + }, + "isInternal": false + }, + { + "x": 280, + "y": 387.73575, + "index": 1, + "body": { + "#": 2969 + }, + "isInternal": false + }, + { + "x": 280, + "y": 437.73575, + "index": 2, + "body": { + "#": 2969 + }, + "isInternal": false + }, + { + "x": 270, + "y": 437.73575, + "index": 3, + "body": { + "#": 2969 + }, + "isInternal": false + }, + { + "x": 275, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2983 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2985 + }, + "max": { + "#": 2986 + } + }, + { + "x": 270, + "y": 387.73575 + }, + { + "x": 280, + "y": 437.73575 + }, + { + "x": 250, + "y": 370 + }, + [ + { + "#": 2989 + }, + { + "#": 2990 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 2992 + }, + { + "#": 2993 + }, + { + "#": 2994 + }, + { + "#": 2995 + }, + { + "#": 2996 + }, + { + "#": 2997 + }, + { + "#": 2998 + }, + { + "#": 2999 + } + ], + { + "x": 300, + "y": 417.73575, + "index": 0, + "body": { + "#": 2945 + }, + "isInternal": false + }, + { + "x": 280, + "y": 437.73575, + "index": 1, + "body": { + "#": 2945 + }, + "isInternal": false + }, + { + "x": 270, + "y": 437.73575, + "index": 2, + "body": { + "#": 2945 + }, + "isInternal": false + }, + { + "x": 250, + "y": 417.73575, + "index": 3, + "body": { + "#": 2945 + }, + "isInternal": false + }, + { + "x": 250, + "y": 407.73575, + "index": 4, + "body": { + "#": 2945 + }, + "isInternal": false + }, + { + "x": 270, + "y": 387.73575, + "index": 5, + "body": { + "#": 2945 + }, + "isInternal": false + }, + { + "x": 280, + "y": 387.73575, + "index": 6, + "body": { + "#": 2945 + }, + "isInternal": false + }, + { + "x": 300, + "y": 407.73575, + "index": 7, + "body": { + "#": 2945 + }, + "isInternal": false + }, + { + "x": 275, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3007 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3009 + }, + "max": { + "#": 3010 + } + }, + { + "x": 250, + "y": 387.73575 + }, + { + "x": 300, + "y": 437.73575 + }, + { + "x": 275, + "y": 409.82848 + }, + [ + { + "#": 3013 + }, + { + "#": 3014 + }, + { + "#": 3015 + }, + { + "#": 3016 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,8,9", + "startCol": 5, + "endCol": 6, + "startRow": 8, + "endRow": 9 + }, + { + "id": 127, + "type": "body", + "label": "Body", + "parts": { + "#": 3019 + }, + "angle": 0, + "vertices": { + "#": 3064 + }, + "position": { + "#": 3073 + }, + "force": { + "#": 3074 + }, + "torque": 0, + "positionImpulse": { + "#": 3075 + }, + "constraintImpulse": { + "#": 3076 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3077 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3078 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3079 + }, + "bounds": { + "#": 3081 + }, + "positionPrev": { + "#": 3084 + }, + "anglePrev": 0, + "axes": { + "#": 3085 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3018 + }, + "sleepCounter": 0, + "region": { + "#": 3090 + } + }, + [ + { + "#": 3018 + }, + { + "#": 3020 + }, + { + "#": 3042 + } + ], + { + "id": 125, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3021 + }, + "angle": 0, + "vertices": { + "#": 3022 + }, + "position": { + "#": 3027 + }, + "force": { + "#": 3028 + }, + "torque": 0, + "positionImpulse": { + "#": 3029 + }, + "constraintImpulse": { + "#": 3030 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3031 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3032 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3033 + }, + "bounds": { + "#": 3035 + }, + "positionPrev": { + "#": 3038 + }, + "anglePrev": 0, + "axes": { + "#": 3039 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3018 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3020 + } + ], + [ + { + "#": 3023 + }, + { + "#": 3024 + }, + { + "#": 3025 + }, + { + "#": 3026 + } + ], + { + "x": 300, + "y": 407.73575, + "index": 0, + "body": { + "#": 3020 + }, + "isInternal": false + }, + { + "x": 350, + "y": 407.73575, + "index": 1, + "body": { + "#": 3020 + }, + "isInternal": false + }, + { + "x": 350, + "y": 417.73575, + "index": 2, + "body": { + "#": 3020 + }, + "isInternal": false + }, + { + "x": 300, + "y": 417.73575, + "index": 3, + "body": { + "#": 3020 + }, + "isInternal": false + }, + { + "x": 325, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3034 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3036 + }, + "max": { + "#": 3037 + } + }, + { + "x": 300, + "y": 407.73575 + }, + { + "x": 350, + "y": 417.73575 + }, + { + "x": 300, + "y": 370 + }, + [ + { + "#": 3040 + }, + { + "#": 3041 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 126, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3043 + }, + "angle": 0, + "vertices": { + "#": 3044 + }, + "position": { + "#": 3049 + }, + "force": { + "#": 3050 + }, + "torque": 0, + "positionImpulse": { + "#": 3051 + }, + "constraintImpulse": { + "#": 3052 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3053 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3054 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3055 + }, + "bounds": { + "#": 3057 + }, + "positionPrev": { + "#": 3060 + }, + "anglePrev": 0, + "axes": { + "#": 3061 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3018 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3042 + } + ], + [ + { + "#": 3045 + }, + { + "#": 3046 + }, + { + "#": 3047 + }, + { + "#": 3048 + } + ], + { + "x": 320, + "y": 387.73575, + "index": 0, + "body": { + "#": 3042 + }, + "isInternal": false + }, + { + "x": 330, + "y": 387.73575, + "index": 1, + "body": { + "#": 3042 + }, + "isInternal": false + }, + { + "x": 330, + "y": 437.73575, + "index": 2, + "body": { + "#": 3042 + }, + "isInternal": false + }, + { + "x": 320, + "y": 437.73575, + "index": 3, + "body": { + "#": 3042 + }, + "isInternal": false + }, + { + "x": 325, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3056 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3058 + }, + "max": { + "#": 3059 + } + }, + { + "x": 320, + "y": 387.73575 + }, + { + "x": 330, + "y": 437.73575 + }, + { + "x": 300, + "y": 370 + }, + [ + { + "#": 3062 + }, + { + "#": 3063 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3065 + }, + { + "#": 3066 + }, + { + "#": 3067 + }, + { + "#": 3068 + }, + { + "#": 3069 + }, + { + "#": 3070 + }, + { + "#": 3071 + }, + { + "#": 3072 + } + ], + { + "x": 350, + "y": 417.73575, + "index": 0, + "body": { + "#": 3018 + }, + "isInternal": false + }, + { + "x": 330, + "y": 437.73575, + "index": 1, + "body": { + "#": 3018 + }, + "isInternal": false + }, + { + "x": 320, + "y": 437.73575, + "index": 2, + "body": { + "#": 3018 + }, + "isInternal": false + }, + { + "x": 300, + "y": 417.73575, + "index": 3, + "body": { + "#": 3018 + }, + "isInternal": false + }, + { + "x": 300, + "y": 407.73575, + "index": 4, + "body": { + "#": 3018 + }, + "isInternal": false + }, + { + "x": 320, + "y": 387.73575, + "index": 5, + "body": { + "#": 3018 + }, + "isInternal": false + }, + { + "x": 330, + "y": 387.73575, + "index": 6, + "body": { + "#": 3018 + }, + "isInternal": false + }, + { + "x": 350, + "y": 407.73575, + "index": 7, + "body": { + "#": 3018 + }, + "isInternal": false + }, + { + "x": 325, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3080 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3082 + }, + "max": { + "#": 3083 + } + }, + { + "x": 300, + "y": 387.73575 + }, + { + "x": 350, + "y": 437.73575 + }, + { + "x": 325, + "y": 409.82848 + }, + [ + { + "#": 3086 + }, + { + "#": 3087 + }, + { + "#": 3088 + }, + { + "#": 3089 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,8,9", + "startCol": 6, + "endCol": 7, + "startRow": 8, + "endRow": 9 + }, + { + "id": 130, + "type": "body", + "label": "Body", + "parts": { + "#": 3092 + }, + "angle": 0, + "vertices": { + "#": 3137 + }, + "position": { + "#": 3146 + }, + "force": { + "#": 3147 + }, + "torque": 0, + "positionImpulse": { + "#": 3148 + }, + "constraintImpulse": { + "#": 3149 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3150 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3151 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3152 + }, + "bounds": { + "#": 3154 + }, + "positionPrev": { + "#": 3157 + }, + "anglePrev": 0, + "axes": { + "#": 3158 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3091 + }, + "sleepCounter": 0, + "region": { + "#": 3163 + } + }, + [ + { + "#": 3091 + }, + { + "#": 3093 + }, + { + "#": 3115 + } + ], + { + "id": 128, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3094 + }, + "angle": 0, + "vertices": { + "#": 3095 + }, + "position": { + "#": 3100 + }, + "force": { + "#": 3101 + }, + "torque": 0, + "positionImpulse": { + "#": 3102 + }, + "constraintImpulse": { + "#": 3103 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3104 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3105 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3106 + }, + "bounds": { + "#": 3108 + }, + "positionPrev": { + "#": 3111 + }, + "anglePrev": 0, + "axes": { + "#": 3112 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3091 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3093 + } + ], + [ + { + "#": 3096 + }, + { + "#": 3097 + }, + { + "#": 3098 + }, + { + "#": 3099 + } + ], + { + "x": 350, + "y": 407.73575, + "index": 0, + "body": { + "#": 3093 + }, + "isInternal": false + }, + { + "x": 400, + "y": 407.73575, + "index": 1, + "body": { + "#": 3093 + }, + "isInternal": false + }, + { + "x": 400, + "y": 417.73575, + "index": 2, + "body": { + "#": 3093 + }, + "isInternal": false + }, + { + "x": 350, + "y": 417.73575, + "index": 3, + "body": { + "#": 3093 + }, + "isInternal": false + }, + { + "x": 375, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3107 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3109 + }, + "max": { + "#": 3110 + } + }, + { + "x": 350, + "y": 407.73575 + }, + { + "x": 400, + "y": 417.73575 + }, + { + "x": 350, + "y": 370 + }, + [ + { + "#": 3113 + }, + { + "#": 3114 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 129, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3116 + }, + "angle": 0, + "vertices": { + "#": 3117 + }, + "position": { + "#": 3122 + }, + "force": { + "#": 3123 + }, + "torque": 0, + "positionImpulse": { + "#": 3124 + }, + "constraintImpulse": { + "#": 3125 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3126 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3127 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3128 + }, + "bounds": { + "#": 3130 + }, + "positionPrev": { + "#": 3133 + }, + "anglePrev": 0, + "axes": { + "#": 3134 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3091 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3115 + } + ], + [ + { + "#": 3118 + }, + { + "#": 3119 + }, + { + "#": 3120 + }, + { + "#": 3121 + } + ], + { + "x": 370, + "y": 387.73575, + "index": 0, + "body": { + "#": 3115 + }, + "isInternal": false + }, + { + "x": 380, + "y": 387.73575, + "index": 1, + "body": { + "#": 3115 + }, + "isInternal": false + }, + { + "x": 380, + "y": 437.73575, + "index": 2, + "body": { + "#": 3115 + }, + "isInternal": false + }, + { + "x": 370, + "y": 437.73575, + "index": 3, + "body": { + "#": 3115 + }, + "isInternal": false + }, + { + "x": 375, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3129 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3131 + }, + "max": { + "#": 3132 + } + }, + { + "x": 370, + "y": 387.73575 + }, + { + "x": 380, + "y": 437.73575 + }, + { + "x": 350, + "y": 370 + }, + [ + { + "#": 3135 + }, + { + "#": 3136 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3138 + }, + { + "#": 3139 + }, + { + "#": 3140 + }, + { + "#": 3141 + }, + { + "#": 3142 + }, + { + "#": 3143 + }, + { + "#": 3144 + }, + { + "#": 3145 + } + ], + { + "x": 400, + "y": 417.73575, + "index": 0, + "body": { + "#": 3091 + }, + "isInternal": false + }, + { + "x": 380, + "y": 437.73575, + "index": 1, + "body": { + "#": 3091 + }, + "isInternal": false + }, + { + "x": 370, + "y": 437.73575, + "index": 2, + "body": { + "#": 3091 + }, + "isInternal": false + }, + { + "x": 350, + "y": 417.73575, + "index": 3, + "body": { + "#": 3091 + }, + "isInternal": false + }, + { + "x": 350, + "y": 407.73575, + "index": 4, + "body": { + "#": 3091 + }, + "isInternal": false + }, + { + "x": 370, + "y": 387.73575, + "index": 5, + "body": { + "#": 3091 + }, + "isInternal": false + }, + { + "x": 380, + "y": 387.73575, + "index": 6, + "body": { + "#": 3091 + }, + "isInternal": false + }, + { + "x": 400, + "y": 407.73575, + "index": 7, + "body": { + "#": 3091 + }, + "isInternal": false + }, + { + "x": 375, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3153 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3155 + }, + "max": { + "#": 3156 + } + }, + { + "x": 350, + "y": 387.73575 + }, + { + "x": 400, + "y": 437.73575 + }, + { + "x": 375, + "y": 409.82848 + }, + [ + { + "#": 3159 + }, + { + "#": 3160 + }, + { + "#": 3161 + }, + { + "#": 3162 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,8,9", + "startCol": 7, + "endCol": 8, + "startRow": 8, + "endRow": 9 + }, + { + "id": 133, + "type": "body", + "label": "Body", + "parts": { + "#": 3165 + }, + "angle": 0, + "vertices": { + "#": 3210 + }, + "position": { + "#": 3219 + }, + "force": { + "#": 3220 + }, + "torque": 0, + "positionImpulse": { + "#": 3221 + }, + "constraintImpulse": { + "#": 3222 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3223 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3224 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3225 + }, + "bounds": { + "#": 3227 + }, + "positionPrev": { + "#": 3230 + }, + "anglePrev": 0, + "axes": { + "#": 3231 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3164 + }, + "sleepCounter": 0, + "region": { + "#": 3236 + } + }, + [ + { + "#": 3164 + }, + { + "#": 3166 + }, + { + "#": 3188 + } + ], + { + "id": 131, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3167 + }, + "angle": 0, + "vertices": { + "#": 3168 + }, + "position": { + "#": 3173 + }, + "force": { + "#": 3174 + }, + "torque": 0, + "positionImpulse": { + "#": 3175 + }, + "constraintImpulse": { + "#": 3176 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3177 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3178 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3179 + }, + "bounds": { + "#": 3181 + }, + "positionPrev": { + "#": 3184 + }, + "anglePrev": 0, + "axes": { + "#": 3185 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3164 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3166 + } + ], + [ + { + "#": 3169 + }, + { + "#": 3170 + }, + { + "#": 3171 + }, + { + "#": 3172 + } + ], + { + "x": 400, + "y": 407.73575, + "index": 0, + "body": { + "#": 3166 + }, + "isInternal": false + }, + { + "x": 450, + "y": 407.73575, + "index": 1, + "body": { + "#": 3166 + }, + "isInternal": false + }, + { + "x": 450, + "y": 417.73575, + "index": 2, + "body": { + "#": 3166 + }, + "isInternal": false + }, + { + "x": 400, + "y": 417.73575, + "index": 3, + "body": { + "#": 3166 + }, + "isInternal": false + }, + { + "x": 425, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3180 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3182 + }, + "max": { + "#": 3183 + } + }, + { + "x": 400, + "y": 407.73575 + }, + { + "x": 450, + "y": 417.73575 + }, + { + "x": 400, + "y": 370 + }, + [ + { + "#": 3186 + }, + { + "#": 3187 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 132, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3189 + }, + "angle": 0, + "vertices": { + "#": 3190 + }, + "position": { + "#": 3195 + }, + "force": { + "#": 3196 + }, + "torque": 0, + "positionImpulse": { + "#": 3197 + }, + "constraintImpulse": { + "#": 3198 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3199 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3200 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3201 + }, + "bounds": { + "#": 3203 + }, + "positionPrev": { + "#": 3206 + }, + "anglePrev": 0, + "axes": { + "#": 3207 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3164 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3188 + } + ], + [ + { + "#": 3191 + }, + { + "#": 3192 + }, + { + "#": 3193 + }, + { + "#": 3194 + } + ], + { + "x": 420, + "y": 387.73575, + "index": 0, + "body": { + "#": 3188 + }, + "isInternal": false + }, + { + "x": 430, + "y": 387.73575, + "index": 1, + "body": { + "#": 3188 + }, + "isInternal": false + }, + { + "x": 430, + "y": 437.73575, + "index": 2, + "body": { + "#": 3188 + }, + "isInternal": false + }, + { + "x": 420, + "y": 437.73575, + "index": 3, + "body": { + "#": 3188 + }, + "isInternal": false + }, + { + "x": 425, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3202 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3204 + }, + "max": { + "#": 3205 + } + }, + { + "x": 420, + "y": 387.73575 + }, + { + "x": 430, + "y": 437.73575 + }, + { + "x": 400, + "y": 370 + }, + [ + { + "#": 3208 + }, + { + "#": 3209 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3211 + }, + { + "#": 3212 + }, + { + "#": 3213 + }, + { + "#": 3214 + }, + { + "#": 3215 + }, + { + "#": 3216 + }, + { + "#": 3217 + }, + { + "#": 3218 + } + ], + { + "x": 450, + "y": 417.73575, + "index": 0, + "body": { + "#": 3164 + }, + "isInternal": false + }, + { + "x": 430, + "y": 437.73575, + "index": 1, + "body": { + "#": 3164 + }, + "isInternal": false + }, + { + "x": 420, + "y": 437.73575, + "index": 2, + "body": { + "#": 3164 + }, + "isInternal": false + }, + { + "x": 400, + "y": 417.73575, + "index": 3, + "body": { + "#": 3164 + }, + "isInternal": false + }, + { + "x": 400, + "y": 407.73575, + "index": 4, + "body": { + "#": 3164 + }, + "isInternal": false + }, + { + "x": 420, + "y": 387.73575, + "index": 5, + "body": { + "#": 3164 + }, + "isInternal": false + }, + { + "x": 430, + "y": 387.73575, + "index": 6, + "body": { + "#": 3164 + }, + "isInternal": false + }, + { + "x": 450, + "y": 407.73575, + "index": 7, + "body": { + "#": 3164 + }, + "isInternal": false + }, + { + "x": 425, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3226 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3228 + }, + "max": { + "#": 3229 + } + }, + { + "x": 400, + "y": 387.73575 + }, + { + "x": 450, + "y": 437.73575 + }, + { + "x": 425, + "y": 409.82848 + }, + [ + { + "#": 3232 + }, + { + "#": 3233 + }, + { + "#": 3234 + }, + { + "#": 3235 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,8,9", + "startCol": 8, + "endCol": 9, + "startRow": 8, + "endRow": 9 + }, + { + "id": 136, + "type": "body", + "label": "Body", + "parts": { + "#": 3238 + }, + "angle": 0, + "vertices": { + "#": 3283 + }, + "position": { + "#": 3292 + }, + "force": { + "#": 3293 + }, + "torque": 0, + "positionImpulse": { + "#": 3294 + }, + "constraintImpulse": { + "#": 3295 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3296 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3297 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3298 + }, + "bounds": { + "#": 3300 + }, + "positionPrev": { + "#": 3303 + }, + "anglePrev": 0, + "axes": { + "#": 3304 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3237 + }, + "sleepCounter": 0, + "region": { + "#": 3309 + } + }, + [ + { + "#": 3237 + }, + { + "#": 3239 + }, + { + "#": 3261 + } + ], + { + "id": 134, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3240 + }, + "angle": 0, + "vertices": { + "#": 3241 + }, + "position": { + "#": 3246 + }, + "force": { + "#": 3247 + }, + "torque": 0, + "positionImpulse": { + "#": 3248 + }, + "constraintImpulse": { + "#": 3249 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3250 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3251 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3252 + }, + "bounds": { + "#": 3254 + }, + "positionPrev": { + "#": 3257 + }, + "anglePrev": 0, + "axes": { + "#": 3258 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3237 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3239 + } + ], + [ + { + "#": 3242 + }, + { + "#": 3243 + }, + { + "#": 3244 + }, + { + "#": 3245 + } + ], + { + "x": 450, + "y": 407.73575, + "index": 0, + "body": { + "#": 3239 + }, + "isInternal": false + }, + { + "x": 500, + "y": 407.73575, + "index": 1, + "body": { + "#": 3239 + }, + "isInternal": false + }, + { + "x": 500, + "y": 417.73575, + "index": 2, + "body": { + "#": 3239 + }, + "isInternal": false + }, + { + "x": 450, + "y": 417.73575, + "index": 3, + "body": { + "#": 3239 + }, + "isInternal": false + }, + { + "x": 475, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3253 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3255 + }, + "max": { + "#": 3256 + } + }, + { + "x": 450, + "y": 407.73575 + }, + { + "x": 500, + "y": 417.73575 + }, + { + "x": 450, + "y": 370 + }, + [ + { + "#": 3259 + }, + { + "#": 3260 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 135, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3262 + }, + "angle": 0, + "vertices": { + "#": 3263 + }, + "position": { + "#": 3268 + }, + "force": { + "#": 3269 + }, + "torque": 0, + "positionImpulse": { + "#": 3270 + }, + "constraintImpulse": { + "#": 3271 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3272 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3273 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3274 + }, + "bounds": { + "#": 3276 + }, + "positionPrev": { + "#": 3279 + }, + "anglePrev": 0, + "axes": { + "#": 3280 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3237 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3261 + } + ], + [ + { + "#": 3264 + }, + { + "#": 3265 + }, + { + "#": 3266 + }, + { + "#": 3267 + } + ], + { + "x": 470, + "y": 387.73575, + "index": 0, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 480, + "y": 387.73575, + "index": 1, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 480, + "y": 437.73575, + "index": 2, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 470, + "y": 437.73575, + "index": 3, + "body": { + "#": 3261 + }, + "isInternal": false + }, + { + "x": 475, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3275 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3277 + }, + "max": { + "#": 3278 + } + }, + { + "x": 470, + "y": 387.73575 + }, + { + "x": 480, + "y": 437.73575 + }, + { + "x": 450, + "y": 370 + }, + [ + { + "#": 3281 + }, + { + "#": 3282 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3284 + }, + { + "#": 3285 + }, + { + "#": 3286 + }, + { + "#": 3287 + }, + { + "#": 3288 + }, + { + "#": 3289 + }, + { + "#": 3290 + }, + { + "#": 3291 + } + ], + { + "x": 500, + "y": 417.73575, + "index": 0, + "body": { + "#": 3237 + }, + "isInternal": false + }, + { + "x": 480, + "y": 437.73575, + "index": 1, + "body": { + "#": 3237 + }, + "isInternal": false + }, + { + "x": 470, + "y": 437.73575, + "index": 2, + "body": { + "#": 3237 + }, + "isInternal": false + }, + { + "x": 450, + "y": 417.73575, + "index": 3, + "body": { + "#": 3237 + }, + "isInternal": false + }, + { + "x": 450, + "y": 407.73575, + "index": 4, + "body": { + "#": 3237 + }, + "isInternal": false + }, + { + "x": 470, + "y": 387.73575, + "index": 5, + "body": { + "#": 3237 + }, + "isInternal": false + }, + { + "x": 480, + "y": 387.73575, + "index": 6, + "body": { + "#": 3237 + }, + "isInternal": false + }, + { + "x": 500, + "y": 407.73575, + "index": 7, + "body": { + "#": 3237 + }, + "isInternal": false + }, + { + "x": 475, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3299 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3301 + }, + "max": { + "#": 3302 + } + }, + { + "x": 450, + "y": 387.73575 + }, + { + "x": 500, + "y": 437.73575 + }, + { + "x": 475, + "y": 409.82848 + }, + [ + { + "#": 3305 + }, + { + "#": 3306 + }, + { + "#": 3307 + }, + { + "#": 3308 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,8,9", + "startCol": 9, + "endCol": 10, + "startRow": 8, + "endRow": 9 + }, + { + "id": 139, + "type": "body", + "label": "Body", + "parts": { + "#": 3311 + }, + "angle": 0, + "vertices": { + "#": 3356 + }, + "position": { + "#": 3365 + }, + "force": { + "#": 3366 + }, + "torque": 0, + "positionImpulse": { + "#": 3367 + }, + "constraintImpulse": { + "#": 3368 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3369 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3370 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3371 + }, + "bounds": { + "#": 3373 + }, + "positionPrev": { + "#": 3376 + }, + "anglePrev": 0, + "axes": { + "#": 3377 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3310 + }, + "sleepCounter": 0, + "region": { + "#": 3382 + } + }, + [ + { + "#": 3310 + }, + { + "#": 3312 + }, + { + "#": 3334 + } + ], + { + "id": 137, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3313 + }, + "angle": 0, + "vertices": { + "#": 3314 + }, + "position": { + "#": 3319 + }, + "force": { + "#": 3320 + }, + "torque": 0, + "positionImpulse": { + "#": 3321 + }, + "constraintImpulse": { + "#": 3322 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3323 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3324 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3325 + }, + "bounds": { + "#": 3327 + }, + "positionPrev": { + "#": 3330 + }, + "anglePrev": 0, + "axes": { + "#": 3331 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3310 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3312 + } + ], + [ + { + "#": 3315 + }, + { + "#": 3316 + }, + { + "#": 3317 + }, + { + "#": 3318 + } + ], + { + "x": 500, + "y": 407.73575, + "index": 0, + "body": { + "#": 3312 + }, + "isInternal": false + }, + { + "x": 550, + "y": 407.73575, + "index": 1, + "body": { + "#": 3312 + }, + "isInternal": false + }, + { + "x": 550, + "y": 417.73575, + "index": 2, + "body": { + "#": 3312 + }, + "isInternal": false + }, + { + "x": 500, + "y": 417.73575, + "index": 3, + "body": { + "#": 3312 + }, + "isInternal": false + }, + { + "x": 525, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3326 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3328 + }, + "max": { + "#": 3329 + } + }, + { + "x": 500, + "y": 407.73575 + }, + { + "x": 550, + "y": 417.73575 + }, + { + "x": 500, + "y": 370 + }, + [ + { + "#": 3332 + }, + { + "#": 3333 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 138, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3335 + }, + "angle": 0, + "vertices": { + "#": 3336 + }, + "position": { + "#": 3341 + }, + "force": { + "#": 3342 + }, + "torque": 0, + "positionImpulse": { + "#": 3343 + }, + "constraintImpulse": { + "#": 3344 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3345 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3346 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3347 + }, + "bounds": { + "#": 3349 + }, + "positionPrev": { + "#": 3352 + }, + "anglePrev": 0, + "axes": { + "#": 3353 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3310 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3334 + } + ], + [ + { + "#": 3337 + }, + { + "#": 3338 + }, + { + "#": 3339 + }, + { + "#": 3340 + } + ], + { + "x": 520, + "y": 387.73575, + "index": 0, + "body": { + "#": 3334 + }, + "isInternal": false + }, + { + "x": 530, + "y": 387.73575, + "index": 1, + "body": { + "#": 3334 + }, + "isInternal": false + }, + { + "x": 530, + "y": 437.73575, + "index": 2, + "body": { + "#": 3334 + }, + "isInternal": false + }, + { + "x": 520, + "y": 437.73575, + "index": 3, + "body": { + "#": 3334 + }, + "isInternal": false + }, + { + "x": 525, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3348 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3350 + }, + "max": { + "#": 3351 + } + }, + { + "x": 520, + "y": 387.73575 + }, + { + "x": 530, + "y": 437.73575 + }, + { + "x": 500, + "y": 370 + }, + [ + { + "#": 3354 + }, + { + "#": 3355 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3357 + }, + { + "#": 3358 + }, + { + "#": 3359 + }, + { + "#": 3360 + }, + { + "#": 3361 + }, + { + "#": 3362 + }, + { + "#": 3363 + }, + { + "#": 3364 + } + ], + { + "x": 550, + "y": 417.73575, + "index": 0, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 530, + "y": 437.73575, + "index": 1, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 520, + "y": 437.73575, + "index": 2, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 500, + "y": 417.73575, + "index": 3, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 500, + "y": 407.73575, + "index": 4, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 520, + "y": 387.73575, + "index": 5, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 530, + "y": 387.73575, + "index": 6, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 550, + "y": 407.73575, + "index": 7, + "body": { + "#": 3310 + }, + "isInternal": false + }, + { + "x": 525, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3372 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3374 + }, + "max": { + "#": 3375 + } + }, + { + "x": 500, + "y": 387.73575 + }, + { + "x": 550, + "y": 437.73575 + }, + { + "x": 525, + "y": 409.82848 + }, + [ + { + "#": 3378 + }, + { + "#": 3379 + }, + { + "#": 3380 + }, + { + "#": 3381 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,8,9", + "startCol": 10, + "endCol": 11, + "startRow": 8, + "endRow": 9 + }, + { + "id": 142, + "type": "body", + "label": "Body", + "parts": { + "#": 3384 + }, + "angle": 0, + "vertices": { + "#": 3429 + }, + "position": { + "#": 3438 + }, + "force": { + "#": 3439 + }, + "torque": 0, + "positionImpulse": { + "#": 3440 + }, + "constraintImpulse": { + "#": 3441 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3442 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3443 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3444 + }, + "bounds": { + "#": 3446 + }, + "positionPrev": { + "#": 3449 + }, + "anglePrev": 0, + "axes": { + "#": 3450 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3383 + }, + "sleepCounter": 0, + "region": { + "#": 3455 + } + }, + [ + { + "#": 3383 + }, + { + "#": 3385 + }, + { + "#": 3407 + } + ], + { + "id": 140, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3386 + }, + "angle": 0, + "vertices": { + "#": 3387 + }, + "position": { + "#": 3392 + }, + "force": { + "#": 3393 + }, + "torque": 0, + "positionImpulse": { + "#": 3394 + }, + "constraintImpulse": { + "#": 3395 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3396 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3397 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3398 + }, + "bounds": { + "#": 3400 + }, + "positionPrev": { + "#": 3403 + }, + "anglePrev": 0, + "axes": { + "#": 3404 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3383 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3385 + } + ], + [ + { + "#": 3388 + }, + { + "#": 3389 + }, + { + "#": 3390 + }, + { + "#": 3391 + } + ], + { + "x": 550, + "y": 407.73575, + "index": 0, + "body": { + "#": 3385 + }, + "isInternal": false + }, + { + "x": 600, + "y": 407.73575, + "index": 1, + "body": { + "#": 3385 + }, + "isInternal": false + }, + { + "x": 600, + "y": 417.73575, + "index": 2, + "body": { + "#": 3385 + }, + "isInternal": false + }, + { + "x": 550, + "y": 417.73575, + "index": 3, + "body": { + "#": 3385 + }, + "isInternal": false + }, + { + "x": 575, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3399 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3401 + }, + "max": { + "#": 3402 + } + }, + { + "x": 550, + "y": 407.73575 + }, + { + "x": 600, + "y": 417.73575 + }, + { + "x": 550, + "y": 370 + }, + [ + { + "#": 3405 + }, + { + "#": 3406 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 141, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3408 + }, + "angle": 0, + "vertices": { + "#": 3409 + }, + "position": { + "#": 3414 + }, + "force": { + "#": 3415 + }, + "torque": 0, + "positionImpulse": { + "#": 3416 + }, + "constraintImpulse": { + "#": 3417 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3418 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3419 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3420 + }, + "bounds": { + "#": 3422 + }, + "positionPrev": { + "#": 3425 + }, + "anglePrev": 0, + "axes": { + "#": 3426 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3383 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3407 + } + ], + [ + { + "#": 3410 + }, + { + "#": 3411 + }, + { + "#": 3412 + }, + { + "#": 3413 + } + ], + { + "x": 570, + "y": 387.73575, + "index": 0, + "body": { + "#": 3407 + }, + "isInternal": false + }, + { + "x": 580, + "y": 387.73575, + "index": 1, + "body": { + "#": 3407 + }, + "isInternal": false + }, + { + "x": 580, + "y": 437.73575, + "index": 2, + "body": { + "#": 3407 + }, + "isInternal": false + }, + { + "x": 570, + "y": 437.73575, + "index": 3, + "body": { + "#": 3407 + }, + "isInternal": false + }, + { + "x": 575, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3421 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3423 + }, + "max": { + "#": 3424 + } + }, + { + "x": 570, + "y": 387.73575 + }, + { + "x": 580, + "y": 437.73575 + }, + { + "x": 550, + "y": 370 + }, + [ + { + "#": 3427 + }, + { + "#": 3428 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3430 + }, + { + "#": 3431 + }, + { + "#": 3432 + }, + { + "#": 3433 + }, + { + "#": 3434 + }, + { + "#": 3435 + }, + { + "#": 3436 + }, + { + "#": 3437 + } + ], + { + "x": 600, + "y": 417.73575, + "index": 0, + "body": { + "#": 3383 + }, + "isInternal": false + }, + { + "x": 580, + "y": 437.73575, + "index": 1, + "body": { + "#": 3383 + }, + "isInternal": false + }, + { + "x": 570, + "y": 437.73575, + "index": 2, + "body": { + "#": 3383 + }, + "isInternal": false + }, + { + "x": 550, + "y": 417.73575, + "index": 3, + "body": { + "#": 3383 + }, + "isInternal": false + }, + { + "x": 550, + "y": 407.73575, + "index": 4, + "body": { + "#": 3383 + }, + "isInternal": false + }, + { + "x": 570, + "y": 387.73575, + "index": 5, + "body": { + "#": 3383 + }, + "isInternal": false + }, + { + "x": 580, + "y": 387.73575, + "index": 6, + "body": { + "#": 3383 + }, + "isInternal": false + }, + { + "x": 600, + "y": 407.73575, + "index": 7, + "body": { + "#": 3383 + }, + "isInternal": false + }, + { + "x": 575, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3445 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3447 + }, + "max": { + "#": 3448 + } + }, + { + "x": 550, + "y": 387.73575 + }, + { + "x": 600, + "y": 437.73575 + }, + { + "x": 575, + "y": 409.82848 + }, + [ + { + "#": 3451 + }, + { + "#": 3452 + }, + { + "#": 3453 + }, + { + "#": 3454 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,8,9", + "startCol": 11, + "endCol": 12, + "startRow": 8, + "endRow": 9 + }, + { + "id": 145, + "type": "body", + "label": "Body", + "parts": { + "#": 3457 + }, + "angle": 0, + "vertices": { + "#": 3502 + }, + "position": { + "#": 3511 + }, + "force": { + "#": 3512 + }, + "torque": 0, + "positionImpulse": { + "#": 3513 + }, + "constraintImpulse": { + "#": 3514 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3515 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3516 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3517 + }, + "bounds": { + "#": 3519 + }, + "positionPrev": { + "#": 3522 + }, + "anglePrev": 0, + "axes": { + "#": 3523 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3456 + }, + "sleepCounter": 0, + "region": { + "#": 3528 + } + }, + [ + { + "#": 3456 + }, + { + "#": 3458 + }, + { + "#": 3480 + } + ], + { + "id": 143, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3459 + }, + "angle": 0, + "vertices": { + "#": 3460 + }, + "position": { + "#": 3465 + }, + "force": { + "#": 3466 + }, + "torque": 0, + "positionImpulse": { + "#": 3467 + }, + "constraintImpulse": { + "#": 3468 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3469 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3470 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3471 + }, + "bounds": { + "#": 3473 + }, + "positionPrev": { + "#": 3476 + }, + "anglePrev": 0, + "axes": { + "#": 3477 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3456 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3458 + } + ], + [ + { + "#": 3461 + }, + { + "#": 3462 + }, + { + "#": 3463 + }, + { + "#": 3464 + } + ], + { + "x": 600, + "y": 407.73575, + "index": 0, + "body": { + "#": 3458 + }, + "isInternal": false + }, + { + "x": 650, + "y": 407.73575, + "index": 1, + "body": { + "#": 3458 + }, + "isInternal": false + }, + { + "x": 650, + "y": 417.73575, + "index": 2, + "body": { + "#": 3458 + }, + "isInternal": false + }, + { + "x": 600, + "y": 417.73575, + "index": 3, + "body": { + "#": 3458 + }, + "isInternal": false + }, + { + "x": 625, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3472 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3474 + }, + "max": { + "#": 3475 + } + }, + { + "x": 600, + "y": 407.73575 + }, + { + "x": 650, + "y": 417.73575 + }, + { + "x": 600, + "y": 370 + }, + [ + { + "#": 3478 + }, + { + "#": 3479 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 144, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3481 + }, + "angle": 0, + "vertices": { + "#": 3482 + }, + "position": { + "#": 3487 + }, + "force": { + "#": 3488 + }, + "torque": 0, + "positionImpulse": { + "#": 3489 + }, + "constraintImpulse": { + "#": 3490 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3491 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3492 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3493 + }, + "bounds": { + "#": 3495 + }, + "positionPrev": { + "#": 3498 + }, + "anglePrev": 0, + "axes": { + "#": 3499 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3456 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3480 + } + ], + [ + { + "#": 3483 + }, + { + "#": 3484 + }, + { + "#": 3485 + }, + { + "#": 3486 + } + ], + { + "x": 620, + "y": 387.73575, + "index": 0, + "body": { + "#": 3480 + }, + "isInternal": false + }, + { + "x": 630, + "y": 387.73575, + "index": 1, + "body": { + "#": 3480 + }, + "isInternal": false + }, + { + "x": 630, + "y": 437.73575, + "index": 2, + "body": { + "#": 3480 + }, + "isInternal": false + }, + { + "x": 620, + "y": 437.73575, + "index": 3, + "body": { + "#": 3480 + }, + "isInternal": false + }, + { + "x": 625, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3494 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3496 + }, + "max": { + "#": 3497 + } + }, + { + "x": 620, + "y": 387.73575 + }, + { + "x": 630, + "y": 437.73575 + }, + { + "x": 600, + "y": 370 + }, + [ + { + "#": 3500 + }, + { + "#": 3501 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3503 + }, + { + "#": 3504 + }, + { + "#": 3505 + }, + { + "#": 3506 + }, + { + "#": 3507 + }, + { + "#": 3508 + }, + { + "#": 3509 + }, + { + "#": 3510 + } + ], + { + "x": 650, + "y": 417.73575, + "index": 0, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 630, + "y": 437.73575, + "index": 1, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 620, + "y": 437.73575, + "index": 2, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 600, + "y": 417.73575, + "index": 3, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 600, + "y": 407.73575, + "index": 4, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 620, + "y": 387.73575, + "index": 5, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 630, + "y": 387.73575, + "index": 6, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 650, + "y": 407.73575, + "index": 7, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 625, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3518 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3520 + }, + "max": { + "#": 3521 + } + }, + { + "x": 600, + "y": 387.73575 + }, + { + "x": 650, + "y": 437.73575 + }, + { + "x": 625, + "y": 409.82848 + }, + [ + { + "#": 3524 + }, + { + "#": 3525 + }, + { + "#": 3526 + }, + { + "#": 3527 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,13,8,9", + "startCol": 12, + "endCol": 13, + "startRow": 8, + "endRow": 9 + }, + { + "id": 148, + "type": "body", + "label": "Body", + "parts": { + "#": 3530 + }, + "angle": 0, + "vertices": { + "#": 3575 + }, + "position": { + "#": 3584 + }, + "force": { + "#": 3585 + }, + "torque": 0, + "positionImpulse": { + "#": 3586 + }, + "constraintImpulse": { + "#": 3587 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3588 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3589 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3590 + }, + "bounds": { + "#": 3592 + }, + "positionPrev": { + "#": 3595 + }, + "anglePrev": 0, + "axes": { + "#": 3596 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3529 + }, + "sleepCounter": 0, + "region": { + "#": 3601 + } + }, + [ + { + "#": 3529 + }, + { + "#": 3531 + }, + { + "#": 3553 + } + ], + { + "id": 146, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3532 + }, + "angle": 0, + "vertices": { + "#": 3533 + }, + "position": { + "#": 3538 + }, + "force": { + "#": 3539 + }, + "torque": 0, + "positionImpulse": { + "#": 3540 + }, + "constraintImpulse": { + "#": 3541 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3542 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3543 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3544 + }, + "bounds": { + "#": 3546 + }, + "positionPrev": { + "#": 3549 + }, + "anglePrev": 0, + "axes": { + "#": 3550 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3529 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3531 + } + ], + [ + { + "#": 3534 + }, + { + "#": 3535 + }, + { + "#": 3536 + }, + { + "#": 3537 + } + ], + { + "x": 650, + "y": 407.73575, + "index": 0, + "body": { + "#": 3531 + }, + "isInternal": false + }, + { + "x": 700, + "y": 407.73575, + "index": 1, + "body": { + "#": 3531 + }, + "isInternal": false + }, + { + "x": 700, + "y": 417.73575, + "index": 2, + "body": { + "#": 3531 + }, + "isInternal": false + }, + { + "x": 650, + "y": 417.73575, + "index": 3, + "body": { + "#": 3531 + }, + "isInternal": false + }, + { + "x": 675, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3545 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3547 + }, + "max": { + "#": 3548 + } + }, + { + "x": 650, + "y": 407.73575 + }, + { + "x": 700, + "y": 417.73575 + }, + { + "x": 650, + "y": 370 + }, + [ + { + "#": 3551 + }, + { + "#": 3552 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 147, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3554 + }, + "angle": 0, + "vertices": { + "#": 3555 + }, + "position": { + "#": 3560 + }, + "force": { + "#": 3561 + }, + "torque": 0, + "positionImpulse": { + "#": 3562 + }, + "constraintImpulse": { + "#": 3563 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3564 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3565 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3566 + }, + "bounds": { + "#": 3568 + }, + "positionPrev": { + "#": 3571 + }, + "anglePrev": 0, + "axes": { + "#": 3572 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3529 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3553 + } + ], + [ + { + "#": 3556 + }, + { + "#": 3557 + }, + { + "#": 3558 + }, + { + "#": 3559 + } + ], + { + "x": 670, + "y": 387.73575, + "index": 0, + "body": { + "#": 3553 + }, + "isInternal": false + }, + { + "x": 680, + "y": 387.73575, + "index": 1, + "body": { + "#": 3553 + }, + "isInternal": false + }, + { + "x": 680, + "y": 437.73575, + "index": 2, + "body": { + "#": 3553 + }, + "isInternal": false + }, + { + "x": 670, + "y": 437.73575, + "index": 3, + "body": { + "#": 3553 + }, + "isInternal": false + }, + { + "x": 675, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3567 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3569 + }, + "max": { + "#": 3570 + } + }, + { + "x": 670, + "y": 387.73575 + }, + { + "x": 680, + "y": 437.73575 + }, + { + "x": 650, + "y": 370 + }, + [ + { + "#": 3573 + }, + { + "#": 3574 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3576 + }, + { + "#": 3577 + }, + { + "#": 3578 + }, + { + "#": 3579 + }, + { + "#": 3580 + }, + { + "#": 3581 + }, + { + "#": 3582 + }, + { + "#": 3583 + } + ], + { + "x": 700, + "y": 417.73575, + "index": 0, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 680, + "y": 437.73575, + "index": 1, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 670, + "y": 437.73575, + "index": 2, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 650, + "y": 417.73575, + "index": 3, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 650, + "y": 407.73575, + "index": 4, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 670, + "y": 387.73575, + "index": 5, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 680, + "y": 387.73575, + "index": 6, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 700, + "y": 407.73575, + "index": 7, + "body": { + "#": 3529 + }, + "isInternal": false + }, + { + "x": 675, + "y": 412.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3591 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3593 + }, + "max": { + "#": 3594 + } + }, + { + "x": 650, + "y": 387.73575 + }, + { + "x": 700, + "y": 437.73575 + }, + { + "x": 675, + "y": 409.82848 + }, + [ + { + "#": 3597 + }, + { + "#": 3598 + }, + { + "#": 3599 + }, + { + "#": 3600 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "13,14,8,9", + "startCol": 13, + "endCol": 14, + "startRow": 8, + "endRow": 9 + }, + { + "id": 151, + "type": "body", + "label": "Body", + "parts": { + "#": 3603 + }, + "angle": 0, + "vertices": { + "#": 3648 + }, + "position": { + "#": 3657 + }, + "force": { + "#": 3658 + }, + "torque": 0, + "positionImpulse": { + "#": 3659 + }, + "constraintImpulse": { + "#": 3660 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3661 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3662 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3663 + }, + "bounds": { + "#": 3665 + }, + "positionPrev": { + "#": 3668 + }, + "anglePrev": 0, + "axes": { + "#": 3669 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3602 + }, + "sleepCounter": 0, + "region": { + "#": 3674 + } + }, + [ + { + "#": 3602 + }, + { + "#": 3604 + }, + { + "#": 3626 + } + ], + { + "id": 149, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3605 + }, + "angle": 0, + "vertices": { + "#": 3606 + }, + "position": { + "#": 3611 + }, + "force": { + "#": 3612 + }, + "torque": 0, + "positionImpulse": { + "#": 3613 + }, + "constraintImpulse": { + "#": 3614 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3615 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3616 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3617 + }, + "bounds": { + "#": 3619 + }, + "positionPrev": { + "#": 3622 + }, + "anglePrev": 0, + "axes": { + "#": 3623 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3602 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3604 + } + ], + [ + { + "#": 3607 + }, + { + "#": 3608 + }, + { + "#": 3609 + }, + { + "#": 3610 + } + ], + { + "x": 100, + "y": 457.73575, + "index": 0, + "body": { + "#": 3604 + }, + "isInternal": false + }, + { + "x": 150, + "y": 457.73575, + "index": 1, + "body": { + "#": 3604 + }, + "isInternal": false + }, + { + "x": 150, + "y": 467.73575, + "index": 2, + "body": { + "#": 3604 + }, + "isInternal": false + }, + { + "x": 100, + "y": 467.73575, + "index": 3, + "body": { + "#": 3604 + }, + "isInternal": false + }, + { + "x": 125, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3618 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3620 + }, + "max": { + "#": 3621 + } + }, + { + "x": 100, + "y": 457.73575 + }, + { + "x": 150, + "y": 467.73575 + }, + { + "x": 100, + "y": 420 + }, + [ + { + "#": 3624 + }, + { + "#": 3625 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 150, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3627 + }, + "angle": 0, + "vertices": { + "#": 3628 + }, + "position": { + "#": 3633 + }, + "force": { + "#": 3634 + }, + "torque": 0, + "positionImpulse": { + "#": 3635 + }, + "constraintImpulse": { + "#": 3636 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3637 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3638 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3639 + }, + "bounds": { + "#": 3641 + }, + "positionPrev": { + "#": 3644 + }, + "anglePrev": 0, + "axes": { + "#": 3645 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3602 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3626 + } + ], + [ + { + "#": 3629 + }, + { + "#": 3630 + }, + { + "#": 3631 + }, + { + "#": 3632 + } + ], + { + "x": 120, + "y": 437.73575, + "index": 0, + "body": { + "#": 3626 + }, + "isInternal": false + }, + { + "x": 130, + "y": 437.73575, + "index": 1, + "body": { + "#": 3626 + }, + "isInternal": false + }, + { + "x": 130, + "y": 487.73575, + "index": 2, + "body": { + "#": 3626 + }, + "isInternal": false + }, + { + "x": 120, + "y": 487.73575, + "index": 3, + "body": { + "#": 3626 + }, + "isInternal": false + }, + { + "x": 125, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3640 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3642 + }, + "max": { + "#": 3643 + } + }, + { + "x": 120, + "y": 437.73575 + }, + { + "x": 130, + "y": 487.73575 + }, + { + "x": 100, + "y": 420 + }, + [ + { + "#": 3646 + }, + { + "#": 3647 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3649 + }, + { + "#": 3650 + }, + { + "#": 3651 + }, + { + "#": 3652 + }, + { + "#": 3653 + }, + { + "#": 3654 + }, + { + "#": 3655 + }, + { + "#": 3656 + } + ], + { + "x": 150, + "y": 467.73575, + "index": 0, + "body": { + "#": 3602 + }, + "isInternal": false + }, + { + "x": 130, + "y": 487.73575, + "index": 1, + "body": { + "#": 3602 + }, + "isInternal": false + }, + { + "x": 120, + "y": 487.73575, + "index": 2, + "body": { + "#": 3602 + }, + "isInternal": false + }, + { + "x": 100, + "y": 467.73575, + "index": 3, + "body": { + "#": 3602 + }, + "isInternal": false + }, + { + "x": 100, + "y": 457.73575, + "index": 4, + "body": { + "#": 3602 + }, + "isInternal": false + }, + { + "x": 120, + "y": 437.73575, + "index": 5, + "body": { + "#": 3602 + }, + "isInternal": false + }, + { + "x": 130, + "y": 437.73575, + "index": 6, + "body": { + "#": 3602 + }, + "isInternal": false + }, + { + "x": 150, + "y": 457.73575, + "index": 7, + "body": { + "#": 3602 + }, + "isInternal": false + }, + { + "x": 125, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3664 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3666 + }, + "max": { + "#": 3667 + } + }, + { + "x": 100, + "y": 437.73575 + }, + { + "x": 150, + "y": 487.73575 + }, + { + "x": 125, + "y": 459.82848 + }, + [ + { + "#": 3670 + }, + { + "#": 3671 + }, + { + "#": 3672 + }, + { + "#": 3673 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,3,9,10", + "startCol": 2, + "endCol": 3, + "startRow": 9, + "endRow": 10 + }, + { + "id": 154, + "type": "body", + "label": "Body", + "parts": { + "#": 3676 + }, + "angle": 0, + "vertices": { + "#": 3721 + }, + "position": { + "#": 3730 + }, + "force": { + "#": 3731 + }, + "torque": 0, + "positionImpulse": { + "#": 3732 + }, + "constraintImpulse": { + "#": 3733 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3734 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3735 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3736 + }, + "bounds": { + "#": 3738 + }, + "positionPrev": { + "#": 3741 + }, + "anglePrev": 0, + "axes": { + "#": 3742 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3675 + }, + "sleepCounter": 0, + "region": { + "#": 3747 + } + }, + [ + { + "#": 3675 + }, + { + "#": 3677 + }, + { + "#": 3699 + } + ], + { + "id": 152, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3678 + }, + "angle": 0, + "vertices": { + "#": 3679 + }, + "position": { + "#": 3684 + }, + "force": { + "#": 3685 + }, + "torque": 0, + "positionImpulse": { + "#": 3686 + }, + "constraintImpulse": { + "#": 3687 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3688 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3689 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3690 + }, + "bounds": { + "#": 3692 + }, + "positionPrev": { + "#": 3695 + }, + "anglePrev": 0, + "axes": { + "#": 3696 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3675 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3677 + } + ], + [ + { + "#": 3680 + }, + { + "#": 3681 + }, + { + "#": 3682 + }, + { + "#": 3683 + } + ], + { + "x": 150, + "y": 457.73575, + "index": 0, + "body": { + "#": 3677 + }, + "isInternal": false + }, + { + "x": 200, + "y": 457.73575, + "index": 1, + "body": { + "#": 3677 + }, + "isInternal": false + }, + { + "x": 200, + "y": 467.73575, + "index": 2, + "body": { + "#": 3677 + }, + "isInternal": false + }, + { + "x": 150, + "y": 467.73575, + "index": 3, + "body": { + "#": 3677 + }, + "isInternal": false + }, + { + "x": 175, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3691 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3693 + }, + "max": { + "#": 3694 + } + }, + { + "x": 150, + "y": 457.73575 + }, + { + "x": 200, + "y": 467.73575 + }, + { + "x": 150, + "y": 420 + }, + [ + { + "#": 3697 + }, + { + "#": 3698 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 153, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3700 + }, + "angle": 0, + "vertices": { + "#": 3701 + }, + "position": { + "#": 3706 + }, + "force": { + "#": 3707 + }, + "torque": 0, + "positionImpulse": { + "#": 3708 + }, + "constraintImpulse": { + "#": 3709 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3710 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3711 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3712 + }, + "bounds": { + "#": 3714 + }, + "positionPrev": { + "#": 3717 + }, + "anglePrev": 0, + "axes": { + "#": 3718 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3675 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3699 + } + ], + [ + { + "#": 3702 + }, + { + "#": 3703 + }, + { + "#": 3704 + }, + { + "#": 3705 + } + ], + { + "x": 170, + "y": 437.73575, + "index": 0, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 180, + "y": 437.73575, + "index": 1, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 180, + "y": 487.73575, + "index": 2, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 170, + "y": 487.73575, + "index": 3, + "body": { + "#": 3699 + }, + "isInternal": false + }, + { + "x": 175, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3713 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3715 + }, + "max": { + "#": 3716 + } + }, + { + "x": 170, + "y": 437.73575 + }, + { + "x": 180, + "y": 487.73575 + }, + { + "x": 150, + "y": 420 + }, + [ + { + "#": 3719 + }, + { + "#": 3720 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3722 + }, + { + "#": 3723 + }, + { + "#": 3724 + }, + { + "#": 3725 + }, + { + "#": 3726 + }, + { + "#": 3727 + }, + { + "#": 3728 + }, + { + "#": 3729 + } + ], + { + "x": 200, + "y": 467.73575, + "index": 0, + "body": { + "#": 3675 + }, + "isInternal": false + }, + { + "x": 180, + "y": 487.73575, + "index": 1, + "body": { + "#": 3675 + }, + "isInternal": false + }, + { + "x": 170, + "y": 487.73575, + "index": 2, + "body": { + "#": 3675 + }, + "isInternal": false + }, + { + "x": 150, + "y": 467.73575, + "index": 3, + "body": { + "#": 3675 + }, + "isInternal": false + }, + { + "x": 150, + "y": 457.73575, + "index": 4, + "body": { + "#": 3675 + }, + "isInternal": false + }, + { + "x": 170, + "y": 437.73575, + "index": 5, + "body": { + "#": 3675 + }, + "isInternal": false + }, + { + "x": 180, + "y": 437.73575, + "index": 6, + "body": { + "#": 3675 + }, + "isInternal": false + }, + { + "x": 200, + "y": 457.73575, + "index": 7, + "body": { + "#": 3675 + }, + "isInternal": false + }, + { + "x": 175, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3737 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3739 + }, + "max": { + "#": 3740 + } + }, + { + "x": 150, + "y": 437.73575 + }, + { + "x": 200, + "y": 487.73575 + }, + { + "x": 175, + "y": 459.82848 + }, + [ + { + "#": 3743 + }, + { + "#": 3744 + }, + { + "#": 3745 + }, + { + "#": 3746 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,9,10", + "startCol": 3, + "endCol": 4, + "startRow": 9, + "endRow": 10 + }, + { + "id": 157, + "type": "body", + "label": "Body", + "parts": { + "#": 3749 + }, + "angle": 0, + "vertices": { + "#": 3794 + }, + "position": { + "#": 3803 + }, + "force": { + "#": 3804 + }, + "torque": 0, + "positionImpulse": { + "#": 3805 + }, + "constraintImpulse": { + "#": 3806 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3807 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3808 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3809 + }, + "bounds": { + "#": 3811 + }, + "positionPrev": { + "#": 3814 + }, + "anglePrev": 0, + "axes": { + "#": 3815 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3748 + }, + "sleepCounter": 0, + "region": { + "#": 3820 + } + }, + [ + { + "#": 3748 + }, + { + "#": 3750 + }, + { + "#": 3772 + } + ], + { + "id": 155, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3751 + }, + "angle": 0, + "vertices": { + "#": 3752 + }, + "position": { + "#": 3757 + }, + "force": { + "#": 3758 + }, + "torque": 0, + "positionImpulse": { + "#": 3759 + }, + "constraintImpulse": { + "#": 3760 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3761 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3762 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3763 + }, + "bounds": { + "#": 3765 + }, + "positionPrev": { + "#": 3768 + }, + "anglePrev": 0, + "axes": { + "#": 3769 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3748 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3750 + } + ], + [ + { + "#": 3753 + }, + { + "#": 3754 + }, + { + "#": 3755 + }, + { + "#": 3756 + } + ], + { + "x": 200, + "y": 457.73575, + "index": 0, + "body": { + "#": 3750 + }, + "isInternal": false + }, + { + "x": 250, + "y": 457.73575, + "index": 1, + "body": { + "#": 3750 + }, + "isInternal": false + }, + { + "x": 250, + "y": 467.73575, + "index": 2, + "body": { + "#": 3750 + }, + "isInternal": false + }, + { + "x": 200, + "y": 467.73575, + "index": 3, + "body": { + "#": 3750 + }, + "isInternal": false + }, + { + "x": 225, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3764 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3766 + }, + "max": { + "#": 3767 + } + }, + { + "x": 200, + "y": 457.73575 + }, + { + "x": 250, + "y": 467.73575 + }, + { + "x": 200, + "y": 420 + }, + [ + { + "#": 3770 + }, + { + "#": 3771 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 156, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3773 + }, + "angle": 0, + "vertices": { + "#": 3774 + }, + "position": { + "#": 3779 + }, + "force": { + "#": 3780 + }, + "torque": 0, + "positionImpulse": { + "#": 3781 + }, + "constraintImpulse": { + "#": 3782 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3783 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3784 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3785 + }, + "bounds": { + "#": 3787 + }, + "positionPrev": { + "#": 3790 + }, + "anglePrev": 0, + "axes": { + "#": 3791 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3748 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3772 + } + ], + [ + { + "#": 3775 + }, + { + "#": 3776 + }, + { + "#": 3777 + }, + { + "#": 3778 + } + ], + { + "x": 220, + "y": 437.73575, + "index": 0, + "body": { + "#": 3772 + }, + "isInternal": false + }, + { + "x": 230, + "y": 437.73575, + "index": 1, + "body": { + "#": 3772 + }, + "isInternal": false + }, + { + "x": 230, + "y": 487.73575, + "index": 2, + "body": { + "#": 3772 + }, + "isInternal": false + }, + { + "x": 220, + "y": 487.73575, + "index": 3, + "body": { + "#": 3772 + }, + "isInternal": false + }, + { + "x": 225, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3786 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3788 + }, + "max": { + "#": 3789 + } + }, + { + "x": 220, + "y": 437.73575 + }, + { + "x": 230, + "y": 487.73575 + }, + { + "x": 200, + "y": 420 + }, + [ + { + "#": 3792 + }, + { + "#": 3793 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3795 + }, + { + "#": 3796 + }, + { + "#": 3797 + }, + { + "#": 3798 + }, + { + "#": 3799 + }, + { + "#": 3800 + }, + { + "#": 3801 + }, + { + "#": 3802 + } + ], + { + "x": 250, + "y": 467.73575, + "index": 0, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 230, + "y": 487.73575, + "index": 1, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 220, + "y": 487.73575, + "index": 2, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 200, + "y": 467.73575, + "index": 3, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 200, + "y": 457.73575, + "index": 4, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 220, + "y": 437.73575, + "index": 5, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 230, + "y": 437.73575, + "index": 6, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 250, + "y": 457.73575, + "index": 7, + "body": { + "#": 3748 + }, + "isInternal": false + }, + { + "x": 225, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3810 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3812 + }, + "max": { + "#": 3813 + } + }, + { + "x": 200, + "y": 437.73575 + }, + { + "x": 250, + "y": 487.73575 + }, + { + "x": 225, + "y": 459.82848 + }, + [ + { + "#": 3816 + }, + { + "#": 3817 + }, + { + "#": 3818 + }, + { + "#": 3819 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,9,10", + "startCol": 4, + "endCol": 5, + "startRow": 9, + "endRow": 10 + }, + { + "id": 160, + "type": "body", + "label": "Body", + "parts": { + "#": 3822 + }, + "angle": 0, + "vertices": { + "#": 3867 + }, + "position": { + "#": 3876 + }, + "force": { + "#": 3877 + }, + "torque": 0, + "positionImpulse": { + "#": 3878 + }, + "constraintImpulse": { + "#": 3879 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3880 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3881 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3882 + }, + "bounds": { + "#": 3884 + }, + "positionPrev": { + "#": 3887 + }, + "anglePrev": 0, + "axes": { + "#": 3888 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3821 + }, + "sleepCounter": 0, + "region": { + "#": 3893 + } + }, + [ + { + "#": 3821 + }, + { + "#": 3823 + }, + { + "#": 3845 + } + ], + { + "id": 158, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3824 + }, + "angle": 0, + "vertices": { + "#": 3825 + }, + "position": { + "#": 3830 + }, + "force": { + "#": 3831 + }, + "torque": 0, + "positionImpulse": { + "#": 3832 + }, + "constraintImpulse": { + "#": 3833 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3834 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3835 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3836 + }, + "bounds": { + "#": 3838 + }, + "positionPrev": { + "#": 3841 + }, + "anglePrev": 0, + "axes": { + "#": 3842 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3821 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3823 + } + ], + [ + { + "#": 3826 + }, + { + "#": 3827 + }, + { + "#": 3828 + }, + { + "#": 3829 + } + ], + { + "x": 250, + "y": 457.73575, + "index": 0, + "body": { + "#": 3823 + }, + "isInternal": false + }, + { + "x": 300, + "y": 457.73575, + "index": 1, + "body": { + "#": 3823 + }, + "isInternal": false + }, + { + "x": 300, + "y": 467.73575, + "index": 2, + "body": { + "#": 3823 + }, + "isInternal": false + }, + { + "x": 250, + "y": 467.73575, + "index": 3, + "body": { + "#": 3823 + }, + "isInternal": false + }, + { + "x": 275, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3837 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3839 + }, + "max": { + "#": 3840 + } + }, + { + "x": 250, + "y": 457.73575 + }, + { + "x": 300, + "y": 467.73575 + }, + { + "x": 250, + "y": 420 + }, + [ + { + "#": 3843 + }, + { + "#": 3844 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 159, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3846 + }, + "angle": 0, + "vertices": { + "#": 3847 + }, + "position": { + "#": 3852 + }, + "force": { + "#": 3853 + }, + "torque": 0, + "positionImpulse": { + "#": 3854 + }, + "constraintImpulse": { + "#": 3855 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3856 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3857 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3858 + }, + "bounds": { + "#": 3860 + }, + "positionPrev": { + "#": 3863 + }, + "anglePrev": 0, + "axes": { + "#": 3864 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3821 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3845 + } + ], + [ + { + "#": 3848 + }, + { + "#": 3849 + }, + { + "#": 3850 + }, + { + "#": 3851 + } + ], + { + "x": 270, + "y": 437.73575, + "index": 0, + "body": { + "#": 3845 + }, + "isInternal": false + }, + { + "x": 280, + "y": 437.73575, + "index": 1, + "body": { + "#": 3845 + }, + "isInternal": false + }, + { + "x": 280, + "y": 487.73575, + "index": 2, + "body": { + "#": 3845 + }, + "isInternal": false + }, + { + "x": 270, + "y": 487.73575, + "index": 3, + "body": { + "#": 3845 + }, + "isInternal": false + }, + { + "x": 275, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3859 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3861 + }, + "max": { + "#": 3862 + } + }, + { + "x": 270, + "y": 437.73575 + }, + { + "x": 280, + "y": 487.73575 + }, + { + "x": 250, + "y": 420 + }, + [ + { + "#": 3865 + }, + { + "#": 3866 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3868 + }, + { + "#": 3869 + }, + { + "#": 3870 + }, + { + "#": 3871 + }, + { + "#": 3872 + }, + { + "#": 3873 + }, + { + "#": 3874 + }, + { + "#": 3875 + } + ], + { + "x": 300, + "y": 467.73575, + "index": 0, + "body": { + "#": 3821 + }, + "isInternal": false + }, + { + "x": 280, + "y": 487.73575, + "index": 1, + "body": { + "#": 3821 + }, + "isInternal": false + }, + { + "x": 270, + "y": 487.73575, + "index": 2, + "body": { + "#": 3821 + }, + "isInternal": false + }, + { + "x": 250, + "y": 467.73575, + "index": 3, + "body": { + "#": 3821 + }, + "isInternal": false + }, + { + "x": 250, + "y": 457.73575, + "index": 4, + "body": { + "#": 3821 + }, + "isInternal": false + }, + { + "x": 270, + "y": 437.73575, + "index": 5, + "body": { + "#": 3821 + }, + "isInternal": false + }, + { + "x": 280, + "y": 437.73575, + "index": 6, + "body": { + "#": 3821 + }, + "isInternal": false + }, + { + "x": 300, + "y": 457.73575, + "index": 7, + "body": { + "#": 3821 + }, + "isInternal": false + }, + { + "x": 275, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3883 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3885 + }, + "max": { + "#": 3886 + } + }, + { + "x": 250, + "y": 437.73575 + }, + { + "x": 300, + "y": 487.73575 + }, + { + "x": 275, + "y": 459.82848 + }, + [ + { + "#": 3889 + }, + { + "#": 3890 + }, + { + "#": 3891 + }, + { + "#": 3892 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,9,10", + "startCol": 5, + "endCol": 6, + "startRow": 9, + "endRow": 10 + }, + { + "id": 163, + "type": "body", + "label": "Body", + "parts": { + "#": 3895 + }, + "angle": 0, + "vertices": { + "#": 3940 + }, + "position": { + "#": 3949 + }, + "force": { + "#": 3950 + }, + "torque": 0, + "positionImpulse": { + "#": 3951 + }, + "constraintImpulse": { + "#": 3952 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3953 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3954 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3955 + }, + "bounds": { + "#": 3957 + }, + "positionPrev": { + "#": 3960 + }, + "anglePrev": 0, + "axes": { + "#": 3961 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3894 + }, + "sleepCounter": 0, + "region": { + "#": 3966 + } + }, + [ + { + "#": 3894 + }, + { + "#": 3896 + }, + { + "#": 3918 + } + ], + { + "id": 161, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3897 + }, + "angle": 0, + "vertices": { + "#": 3898 + }, + "position": { + "#": 3903 + }, + "force": { + "#": 3904 + }, + "torque": 0, + "positionImpulse": { + "#": 3905 + }, + "constraintImpulse": { + "#": 3906 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3907 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3908 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3909 + }, + "bounds": { + "#": 3911 + }, + "positionPrev": { + "#": 3914 + }, + "anglePrev": 0, + "axes": { + "#": 3915 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3894 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3896 + } + ], + [ + { + "#": 3899 + }, + { + "#": 3900 + }, + { + "#": 3901 + }, + { + "#": 3902 + } + ], + { + "x": 300, + "y": 457.73575, + "index": 0, + "body": { + "#": 3896 + }, + "isInternal": false + }, + { + "x": 350, + "y": 457.73575, + "index": 1, + "body": { + "#": 3896 + }, + "isInternal": false + }, + { + "x": 350, + "y": 467.73575, + "index": 2, + "body": { + "#": 3896 + }, + "isInternal": false + }, + { + "x": 300, + "y": 467.73575, + "index": 3, + "body": { + "#": 3896 + }, + "isInternal": false + }, + { + "x": 325, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3910 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3912 + }, + "max": { + "#": 3913 + } + }, + { + "x": 300, + "y": 457.73575 + }, + { + "x": 350, + "y": 467.73575 + }, + { + "x": 300, + "y": 420 + }, + [ + { + "#": 3916 + }, + { + "#": 3917 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 162, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3919 + }, + "angle": 0, + "vertices": { + "#": 3920 + }, + "position": { + "#": 3925 + }, + "force": { + "#": 3926 + }, + "torque": 0, + "positionImpulse": { + "#": 3927 + }, + "constraintImpulse": { + "#": 3928 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3929 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3930 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3931 + }, + "bounds": { + "#": 3933 + }, + "positionPrev": { + "#": 3936 + }, + "anglePrev": 0, + "axes": { + "#": 3937 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3894 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3918 + } + ], + [ + { + "#": 3921 + }, + { + "#": 3922 + }, + { + "#": 3923 + }, + { + "#": 3924 + } + ], + { + "x": 320, + "y": 437.73575, + "index": 0, + "body": { + "#": 3918 + }, + "isInternal": false + }, + { + "x": 330, + "y": 437.73575, + "index": 1, + "body": { + "#": 3918 + }, + "isInternal": false + }, + { + "x": 330, + "y": 487.73575, + "index": 2, + "body": { + "#": 3918 + }, + "isInternal": false + }, + { + "x": 320, + "y": 487.73575, + "index": 3, + "body": { + "#": 3918 + }, + "isInternal": false + }, + { + "x": 325, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3932 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3934 + }, + "max": { + "#": 3935 + } + }, + { + "x": 320, + "y": 437.73575 + }, + { + "x": 330, + "y": 487.73575 + }, + { + "x": 300, + "y": 420 + }, + [ + { + "#": 3938 + }, + { + "#": 3939 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 3941 + }, + { + "#": 3942 + }, + { + "#": 3943 + }, + { + "#": 3944 + }, + { + "#": 3945 + }, + { + "#": 3946 + }, + { + "#": 3947 + }, + { + "#": 3948 + } + ], + { + "x": 350, + "y": 467.73575, + "index": 0, + "body": { + "#": 3894 + }, + "isInternal": false + }, + { + "x": 330, + "y": 487.73575, + "index": 1, + "body": { + "#": 3894 + }, + "isInternal": false + }, + { + "x": 320, + "y": 487.73575, + "index": 2, + "body": { + "#": 3894 + }, + "isInternal": false + }, + { + "x": 300, + "y": 467.73575, + "index": 3, + "body": { + "#": 3894 + }, + "isInternal": false + }, + { + "x": 300, + "y": 457.73575, + "index": 4, + "body": { + "#": 3894 + }, + "isInternal": false + }, + { + "x": 320, + "y": 437.73575, + "index": 5, + "body": { + "#": 3894 + }, + "isInternal": false + }, + { + "x": 330, + "y": 437.73575, + "index": 6, + "body": { + "#": 3894 + }, + "isInternal": false + }, + { + "x": 350, + "y": 457.73575, + "index": 7, + "body": { + "#": 3894 + }, + "isInternal": false + }, + { + "x": 325, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3956 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3958 + }, + "max": { + "#": 3959 + } + }, + { + "x": 300, + "y": 437.73575 + }, + { + "x": 350, + "y": 487.73575 + }, + { + "x": 325, + "y": 459.82848 + }, + [ + { + "#": 3962 + }, + { + "#": 3963 + }, + { + "#": 3964 + }, + { + "#": 3965 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,9,10", + "startCol": 6, + "endCol": 7, + "startRow": 9, + "endRow": 10 + }, + { + "id": 166, + "type": "body", + "label": "Body", + "parts": { + "#": 3968 + }, + "angle": 0, + "vertices": { + "#": 4013 + }, + "position": { + "#": 4022 + }, + "force": { + "#": 4023 + }, + "torque": 0, + "positionImpulse": { + "#": 4024 + }, + "constraintImpulse": { + "#": 4025 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4026 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4027 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4028 + }, + "bounds": { + "#": 4030 + }, + "positionPrev": { + "#": 4033 + }, + "anglePrev": 0, + "axes": { + "#": 4034 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 3967 + }, + "sleepCounter": 0, + "region": { + "#": 4039 + } + }, + [ + { + "#": 3967 + }, + { + "#": 3969 + }, + { + "#": 3991 + } + ], + { + "id": 164, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3970 + }, + "angle": 0, + "vertices": { + "#": 3971 + }, + "position": { + "#": 3976 + }, + "force": { + "#": 3977 + }, + "torque": 0, + "positionImpulse": { + "#": 3978 + }, + "constraintImpulse": { + "#": 3979 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3980 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3981 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3982 + }, + "bounds": { + "#": 3984 + }, + "positionPrev": { + "#": 3987 + }, + "anglePrev": 0, + "axes": { + "#": 3988 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3967 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3969 + } + ], + [ + { + "#": 3972 + }, + { + "#": 3973 + }, + { + "#": 3974 + }, + { + "#": 3975 + } + ], + { + "x": 350, + "y": 457.73575, + "index": 0, + "body": { + "#": 3969 + }, + "isInternal": false + }, + { + "x": 400, + "y": 457.73575, + "index": 1, + "body": { + "#": 3969 + }, + "isInternal": false + }, + { + "x": 400, + "y": 467.73575, + "index": 2, + "body": { + "#": 3969 + }, + "isInternal": false + }, + { + "x": 350, + "y": 467.73575, + "index": 3, + "body": { + "#": 3969 + }, + "isInternal": false + }, + { + "x": 375, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3983 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3985 + }, + "max": { + "#": 3986 + } + }, + { + "x": 350, + "y": 457.73575 + }, + { + "x": 400, + "y": 467.73575 + }, + { + "x": 350, + "y": 420 + }, + [ + { + "#": 3989 + }, + { + "#": 3990 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 165, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3992 + }, + "angle": 0, + "vertices": { + "#": 3993 + }, + "position": { + "#": 3998 + }, + "force": { + "#": 3999 + }, + "torque": 0, + "positionImpulse": { + "#": 4000 + }, + "constraintImpulse": { + "#": 4001 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4002 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4003 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4004 + }, + "bounds": { + "#": 4006 + }, + "positionPrev": { + "#": 4009 + }, + "anglePrev": 0, + "axes": { + "#": 4010 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 3967 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3991 + } + ], + [ + { + "#": 3994 + }, + { + "#": 3995 + }, + { + "#": 3996 + }, + { + "#": 3997 + } + ], + { + "x": 370, + "y": 437.73575, + "index": 0, + "body": { + "#": 3991 + }, + "isInternal": false + }, + { + "x": 380, + "y": 437.73575, + "index": 1, + "body": { + "#": 3991 + }, + "isInternal": false + }, + { + "x": 380, + "y": 487.73575, + "index": 2, + "body": { + "#": 3991 + }, + "isInternal": false + }, + { + "x": 370, + "y": 487.73575, + "index": 3, + "body": { + "#": 3991 + }, + "isInternal": false + }, + { + "x": 375, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4005 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4007 + }, + "max": { + "#": 4008 + } + }, + { + "x": 370, + "y": 437.73575 + }, + { + "x": 380, + "y": 487.73575 + }, + { + "x": 350, + "y": 420 + }, + [ + { + "#": 4011 + }, + { + "#": 4012 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4014 + }, + { + "#": 4015 + }, + { + "#": 4016 + }, + { + "#": 4017 + }, + { + "#": 4018 + }, + { + "#": 4019 + }, + { + "#": 4020 + }, + { + "#": 4021 + } + ], + { + "x": 400, + "y": 467.73575, + "index": 0, + "body": { + "#": 3967 + }, + "isInternal": false + }, + { + "x": 380, + "y": 487.73575, + "index": 1, + "body": { + "#": 3967 + }, + "isInternal": false + }, + { + "x": 370, + "y": 487.73575, + "index": 2, + "body": { + "#": 3967 + }, + "isInternal": false + }, + { + "x": 350, + "y": 467.73575, + "index": 3, + "body": { + "#": 3967 + }, + "isInternal": false + }, + { + "x": 350, + "y": 457.73575, + "index": 4, + "body": { + "#": 3967 + }, + "isInternal": false + }, + { + "x": 370, + "y": 437.73575, + "index": 5, + "body": { + "#": 3967 + }, + "isInternal": false + }, + { + "x": 380, + "y": 437.73575, + "index": 6, + "body": { + "#": 3967 + }, + "isInternal": false + }, + { + "x": 400, + "y": 457.73575, + "index": 7, + "body": { + "#": 3967 + }, + "isInternal": false + }, + { + "x": 375, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4029 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4031 + }, + "max": { + "#": 4032 + } + }, + { + "x": 350, + "y": 437.73575 + }, + { + "x": 400, + "y": 487.73575 + }, + { + "x": 375, + "y": 459.82848 + }, + [ + { + "#": 4035 + }, + { + "#": 4036 + }, + { + "#": 4037 + }, + { + "#": 4038 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,9,10", + "startCol": 7, + "endCol": 8, + "startRow": 9, + "endRow": 10 + }, + { + "id": 169, + "type": "body", + "label": "Body", + "parts": { + "#": 4041 + }, + "angle": 0, + "vertices": { + "#": 4086 + }, + "position": { + "#": 4095 + }, + "force": { + "#": 4096 + }, + "torque": 0, + "positionImpulse": { + "#": 4097 + }, + "constraintImpulse": { + "#": 4098 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4099 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4100 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4101 + }, + "bounds": { + "#": 4103 + }, + "positionPrev": { + "#": 4106 + }, + "anglePrev": 0, + "axes": { + "#": 4107 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4040 + }, + "sleepCounter": 0, + "region": { + "#": 4112 + } + }, + [ + { + "#": 4040 + }, + { + "#": 4042 + }, + { + "#": 4064 + } + ], + { + "id": 167, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4043 + }, + "angle": 0, + "vertices": { + "#": 4044 + }, + "position": { + "#": 4049 + }, + "force": { + "#": 4050 + }, + "torque": 0, + "positionImpulse": { + "#": 4051 + }, + "constraintImpulse": { + "#": 4052 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4053 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4054 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4055 + }, + "bounds": { + "#": 4057 + }, + "positionPrev": { + "#": 4060 + }, + "anglePrev": 0, + "axes": { + "#": 4061 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4040 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4042 + } + ], + [ + { + "#": 4045 + }, + { + "#": 4046 + }, + { + "#": 4047 + }, + { + "#": 4048 + } + ], + { + "x": 400, + "y": 457.73575, + "index": 0, + "body": { + "#": 4042 + }, + "isInternal": false + }, + { + "x": 450, + "y": 457.73575, + "index": 1, + "body": { + "#": 4042 + }, + "isInternal": false + }, + { + "x": 450, + "y": 467.73575, + "index": 2, + "body": { + "#": 4042 + }, + "isInternal": false + }, + { + "x": 400, + "y": 467.73575, + "index": 3, + "body": { + "#": 4042 + }, + "isInternal": false + }, + { + "x": 425, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4056 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4058 + }, + "max": { + "#": 4059 + } + }, + { + "x": 400, + "y": 457.73575 + }, + { + "x": 450, + "y": 467.73575 + }, + { + "x": 400, + "y": 420 + }, + [ + { + "#": 4062 + }, + { + "#": 4063 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 168, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4065 + }, + "angle": 0, + "vertices": { + "#": 4066 + }, + "position": { + "#": 4071 + }, + "force": { + "#": 4072 + }, + "torque": 0, + "positionImpulse": { + "#": 4073 + }, + "constraintImpulse": { + "#": 4074 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4075 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4076 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4077 + }, + "bounds": { + "#": 4079 + }, + "positionPrev": { + "#": 4082 + }, + "anglePrev": 0, + "axes": { + "#": 4083 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4040 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4064 + } + ], + [ + { + "#": 4067 + }, + { + "#": 4068 + }, + { + "#": 4069 + }, + { + "#": 4070 + } + ], + { + "x": 420, + "y": 437.73575, + "index": 0, + "body": { + "#": 4064 + }, + "isInternal": false + }, + { + "x": 430, + "y": 437.73575, + "index": 1, + "body": { + "#": 4064 + }, + "isInternal": false + }, + { + "x": 430, + "y": 487.73575, + "index": 2, + "body": { + "#": 4064 + }, + "isInternal": false + }, + { + "x": 420, + "y": 487.73575, + "index": 3, + "body": { + "#": 4064 + }, + "isInternal": false + }, + { + "x": 425, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4078 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4080 + }, + "max": { + "#": 4081 + } + }, + { + "x": 420, + "y": 437.73575 + }, + { + "x": 430, + "y": 487.73575 + }, + { + "x": 400, + "y": 420 + }, + [ + { + "#": 4084 + }, + { + "#": 4085 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4087 + }, + { + "#": 4088 + }, + { + "#": 4089 + }, + { + "#": 4090 + }, + { + "#": 4091 + }, + { + "#": 4092 + }, + { + "#": 4093 + }, + { + "#": 4094 + } + ], + { + "x": 450, + "y": 467.73575, + "index": 0, + "body": { + "#": 4040 + }, + "isInternal": false + }, + { + "x": 430, + "y": 487.73575, + "index": 1, + "body": { + "#": 4040 + }, + "isInternal": false + }, + { + "x": 420, + "y": 487.73575, + "index": 2, + "body": { + "#": 4040 + }, + "isInternal": false + }, + { + "x": 400, + "y": 467.73575, + "index": 3, + "body": { + "#": 4040 + }, + "isInternal": false + }, + { + "x": 400, + "y": 457.73575, + "index": 4, + "body": { + "#": 4040 + }, + "isInternal": false + }, + { + "x": 420, + "y": 437.73575, + "index": 5, + "body": { + "#": 4040 + }, + "isInternal": false + }, + { + "x": 430, + "y": 437.73575, + "index": 6, + "body": { + "#": 4040 + }, + "isInternal": false + }, + { + "x": 450, + "y": 457.73575, + "index": 7, + "body": { + "#": 4040 + }, + "isInternal": false + }, + { + "x": 425, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4102 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4104 + }, + "max": { + "#": 4105 + } + }, + { + "x": 400, + "y": 437.73575 + }, + { + "x": 450, + "y": 487.73575 + }, + { + "x": 425, + "y": 459.82848 + }, + [ + { + "#": 4108 + }, + { + "#": 4109 + }, + { + "#": 4110 + }, + { + "#": 4111 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,9,10", + "startCol": 8, + "endCol": 9, + "startRow": 9, + "endRow": 10 + }, + { + "id": 172, + "type": "body", + "label": "Body", + "parts": { + "#": 4114 + }, + "angle": 0, + "vertices": { + "#": 4159 + }, + "position": { + "#": 4168 + }, + "force": { + "#": 4169 + }, + "torque": 0, + "positionImpulse": { + "#": 4170 + }, + "constraintImpulse": { + "#": 4171 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4172 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4173 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4174 + }, + "bounds": { + "#": 4176 + }, + "positionPrev": { + "#": 4179 + }, + "anglePrev": 0, + "axes": { + "#": 4180 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4113 + }, + "sleepCounter": 0, + "region": { + "#": 4185 + } + }, + [ + { + "#": 4113 + }, + { + "#": 4115 + }, + { + "#": 4137 + } + ], + { + "id": 170, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4116 + }, + "angle": 0, + "vertices": { + "#": 4117 + }, + "position": { + "#": 4122 + }, + "force": { + "#": 4123 + }, + "torque": 0, + "positionImpulse": { + "#": 4124 + }, + "constraintImpulse": { + "#": 4125 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4126 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4127 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4128 + }, + "bounds": { + "#": 4130 + }, + "positionPrev": { + "#": 4133 + }, + "anglePrev": 0, + "axes": { + "#": 4134 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4113 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4115 + } + ], + [ + { + "#": 4118 + }, + { + "#": 4119 + }, + { + "#": 4120 + }, + { + "#": 4121 + } + ], + { + "x": 450, + "y": 457.73575, + "index": 0, + "body": { + "#": 4115 + }, + "isInternal": false + }, + { + "x": 500, + "y": 457.73575, + "index": 1, + "body": { + "#": 4115 + }, + "isInternal": false + }, + { + "x": 500, + "y": 467.73575, + "index": 2, + "body": { + "#": 4115 + }, + "isInternal": false + }, + { + "x": 450, + "y": 467.73575, + "index": 3, + "body": { + "#": 4115 + }, + "isInternal": false + }, + { + "x": 475, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4129 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4131 + }, + "max": { + "#": 4132 + } + }, + { + "x": 450, + "y": 457.73575 + }, + { + "x": 500, + "y": 467.73575 + }, + { + "x": 450, + "y": 420 + }, + [ + { + "#": 4135 + }, + { + "#": 4136 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 171, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4138 + }, + "angle": 0, + "vertices": { + "#": 4139 + }, + "position": { + "#": 4144 + }, + "force": { + "#": 4145 + }, + "torque": 0, + "positionImpulse": { + "#": 4146 + }, + "constraintImpulse": { + "#": 4147 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4148 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4149 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4150 + }, + "bounds": { + "#": 4152 + }, + "positionPrev": { + "#": 4155 + }, + "anglePrev": 0, + "axes": { + "#": 4156 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4113 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4137 + } + ], + [ + { + "#": 4140 + }, + { + "#": 4141 + }, + { + "#": 4142 + }, + { + "#": 4143 + } + ], + { + "x": 470, + "y": 437.73575, + "index": 0, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 480, + "y": 437.73575, + "index": 1, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 480, + "y": 487.73575, + "index": 2, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 470, + "y": 487.73575, + "index": 3, + "body": { + "#": 4137 + }, + "isInternal": false + }, + { + "x": 475, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4151 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4153 + }, + "max": { + "#": 4154 + } + }, + { + "x": 470, + "y": 437.73575 + }, + { + "x": 480, + "y": 487.73575 + }, + { + "x": 450, + "y": 420 + }, + [ + { + "#": 4157 + }, + { + "#": 4158 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4160 + }, + { + "#": 4161 + }, + { + "#": 4162 + }, + { + "#": 4163 + }, + { + "#": 4164 + }, + { + "#": 4165 + }, + { + "#": 4166 + }, + { + "#": 4167 + } + ], + { + "x": 500, + "y": 467.73575, + "index": 0, + "body": { + "#": 4113 + }, + "isInternal": false + }, + { + "x": 480, + "y": 487.73575, + "index": 1, + "body": { + "#": 4113 + }, + "isInternal": false + }, + { + "x": 470, + "y": 487.73575, + "index": 2, + "body": { + "#": 4113 + }, + "isInternal": false + }, + { + "x": 450, + "y": 467.73575, + "index": 3, + "body": { + "#": 4113 + }, + "isInternal": false + }, + { + "x": 450, + "y": 457.73575, + "index": 4, + "body": { + "#": 4113 + }, + "isInternal": false + }, + { + "x": 470, + "y": 437.73575, + "index": 5, + "body": { + "#": 4113 + }, + "isInternal": false + }, + { + "x": 480, + "y": 437.73575, + "index": 6, + "body": { + "#": 4113 + }, + "isInternal": false + }, + { + "x": 500, + "y": 457.73575, + "index": 7, + "body": { + "#": 4113 + }, + "isInternal": false + }, + { + "x": 475, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4175 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4177 + }, + "max": { + "#": 4178 + } + }, + { + "x": 450, + "y": 437.73575 + }, + { + "x": 500, + "y": 487.73575 + }, + { + "x": 475, + "y": 459.82848 + }, + [ + { + "#": 4181 + }, + { + "#": 4182 + }, + { + "#": 4183 + }, + { + "#": 4184 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,9,10", + "startCol": 9, + "endCol": 10, + "startRow": 9, + "endRow": 10 + }, + { + "id": 175, + "type": "body", + "label": "Body", + "parts": { + "#": 4187 + }, + "angle": 0, + "vertices": { + "#": 4232 + }, + "position": { + "#": 4241 + }, + "force": { + "#": 4242 + }, + "torque": 0, + "positionImpulse": { + "#": 4243 + }, + "constraintImpulse": { + "#": 4244 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4245 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4246 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4247 + }, + "bounds": { + "#": 4249 + }, + "positionPrev": { + "#": 4252 + }, + "anglePrev": 0, + "axes": { + "#": 4253 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4186 + }, + "sleepCounter": 0, + "region": { + "#": 4258 + } + }, + [ + { + "#": 4186 + }, + { + "#": 4188 + }, + { + "#": 4210 + } + ], + { + "id": 173, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4189 + }, + "angle": 0, + "vertices": { + "#": 4190 + }, + "position": { + "#": 4195 + }, + "force": { + "#": 4196 + }, + "torque": 0, + "positionImpulse": { + "#": 4197 + }, + "constraintImpulse": { + "#": 4198 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4199 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4200 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4201 + }, + "bounds": { + "#": 4203 + }, + "positionPrev": { + "#": 4206 + }, + "anglePrev": 0, + "axes": { + "#": 4207 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4186 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4188 + } + ], + [ + { + "#": 4191 + }, + { + "#": 4192 + }, + { + "#": 4193 + }, + { + "#": 4194 + } + ], + { + "x": 500, + "y": 457.73575, + "index": 0, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 550, + "y": 457.73575, + "index": 1, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 550, + "y": 467.73575, + "index": 2, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 500, + "y": 467.73575, + "index": 3, + "body": { + "#": 4188 + }, + "isInternal": false + }, + { + "x": 525, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4202 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4204 + }, + "max": { + "#": 4205 + } + }, + { + "x": 500, + "y": 457.73575 + }, + { + "x": 550, + "y": 467.73575 + }, + { + "x": 500, + "y": 420 + }, + [ + { + "#": 4208 + }, + { + "#": 4209 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 174, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4211 + }, + "angle": 0, + "vertices": { + "#": 4212 + }, + "position": { + "#": 4217 + }, + "force": { + "#": 4218 + }, + "torque": 0, + "positionImpulse": { + "#": 4219 + }, + "constraintImpulse": { + "#": 4220 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4221 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4222 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4223 + }, + "bounds": { + "#": 4225 + }, + "positionPrev": { + "#": 4228 + }, + "anglePrev": 0, + "axes": { + "#": 4229 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4186 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4210 + } + ], + [ + { + "#": 4213 + }, + { + "#": 4214 + }, + { + "#": 4215 + }, + { + "#": 4216 + } + ], + { + "x": 520, + "y": 437.73575, + "index": 0, + "body": { + "#": 4210 + }, + "isInternal": false + }, + { + "x": 530, + "y": 437.73575, + "index": 1, + "body": { + "#": 4210 + }, + "isInternal": false + }, + { + "x": 530, + "y": 487.73575, + "index": 2, + "body": { + "#": 4210 + }, + "isInternal": false + }, + { + "x": 520, + "y": 487.73575, + "index": 3, + "body": { + "#": 4210 + }, + "isInternal": false + }, + { + "x": 525, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4224 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4226 + }, + "max": { + "#": 4227 + } + }, + { + "x": 520, + "y": 437.73575 + }, + { + "x": 530, + "y": 487.73575 + }, + { + "x": 500, + "y": 420 + }, + [ + { + "#": 4230 + }, + { + "#": 4231 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4233 + }, + { + "#": 4234 + }, + { + "#": 4235 + }, + { + "#": 4236 + }, + { + "#": 4237 + }, + { + "#": 4238 + }, + { + "#": 4239 + }, + { + "#": 4240 + } + ], + { + "x": 550, + "y": 467.73575, + "index": 0, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 530, + "y": 487.73575, + "index": 1, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 520, + "y": 487.73575, + "index": 2, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 500, + "y": 467.73575, + "index": 3, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 500, + "y": 457.73575, + "index": 4, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 520, + "y": 437.73575, + "index": 5, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 530, + "y": 437.73575, + "index": 6, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 550, + "y": 457.73575, + "index": 7, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 525, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4248 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4250 + }, + "max": { + "#": 4251 + } + }, + { + "x": 500, + "y": 437.73575 + }, + { + "x": 550, + "y": 487.73575 + }, + { + "x": 525, + "y": 459.82848 + }, + [ + { + "#": 4254 + }, + { + "#": 4255 + }, + { + "#": 4256 + }, + { + "#": 4257 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,9,10", + "startCol": 10, + "endCol": 11, + "startRow": 9, + "endRow": 10 + }, + { + "id": 178, + "type": "body", + "label": "Body", + "parts": { + "#": 4260 + }, + "angle": 0, + "vertices": { + "#": 4305 + }, + "position": { + "#": 4314 + }, + "force": { + "#": 4315 + }, + "torque": 0, + "positionImpulse": { + "#": 4316 + }, + "constraintImpulse": { + "#": 4317 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4318 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4319 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4320 + }, + "bounds": { + "#": 4322 + }, + "positionPrev": { + "#": 4325 + }, + "anglePrev": 0, + "axes": { + "#": 4326 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4259 + }, + "sleepCounter": 0, + "region": { + "#": 4331 + } + }, + [ + { + "#": 4259 + }, + { + "#": 4261 + }, + { + "#": 4283 + } + ], + { + "id": 176, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4262 + }, + "angle": 0, + "vertices": { + "#": 4263 + }, + "position": { + "#": 4268 + }, + "force": { + "#": 4269 + }, + "torque": 0, + "positionImpulse": { + "#": 4270 + }, + "constraintImpulse": { + "#": 4271 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4272 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4273 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4274 + }, + "bounds": { + "#": 4276 + }, + "positionPrev": { + "#": 4279 + }, + "anglePrev": 0, + "axes": { + "#": 4280 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4259 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4261 + } + ], + [ + { + "#": 4264 + }, + { + "#": 4265 + }, + { + "#": 4266 + }, + { + "#": 4267 + } + ], + { + "x": 550, + "y": 457.73575, + "index": 0, + "body": { + "#": 4261 + }, + "isInternal": false + }, + { + "x": 600, + "y": 457.73575, + "index": 1, + "body": { + "#": 4261 + }, + "isInternal": false + }, + { + "x": 600, + "y": 467.73575, + "index": 2, + "body": { + "#": 4261 + }, + "isInternal": false + }, + { + "x": 550, + "y": 467.73575, + "index": 3, + "body": { + "#": 4261 + }, + "isInternal": false + }, + { + "x": 575, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4275 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4277 + }, + "max": { + "#": 4278 + } + }, + { + "x": 550, + "y": 457.73575 + }, + { + "x": 600, + "y": 467.73575 + }, + { + "x": 550, + "y": 420 + }, + [ + { + "#": 4281 + }, + { + "#": 4282 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 177, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4284 + }, + "angle": 0, + "vertices": { + "#": 4285 + }, + "position": { + "#": 4290 + }, + "force": { + "#": 4291 + }, + "torque": 0, + "positionImpulse": { + "#": 4292 + }, + "constraintImpulse": { + "#": 4293 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4294 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4295 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4296 + }, + "bounds": { + "#": 4298 + }, + "positionPrev": { + "#": 4301 + }, + "anglePrev": 0, + "axes": { + "#": 4302 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4259 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4283 + } + ], + [ + { + "#": 4286 + }, + { + "#": 4287 + }, + { + "#": 4288 + }, + { + "#": 4289 + } + ], + { + "x": 570, + "y": 437.73575, + "index": 0, + "body": { + "#": 4283 + }, + "isInternal": false + }, + { + "x": 580, + "y": 437.73575, + "index": 1, + "body": { + "#": 4283 + }, + "isInternal": false + }, + { + "x": 580, + "y": 487.73575, + "index": 2, + "body": { + "#": 4283 + }, + "isInternal": false + }, + { + "x": 570, + "y": 487.73575, + "index": 3, + "body": { + "#": 4283 + }, + "isInternal": false + }, + { + "x": 575, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4297 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4299 + }, + "max": { + "#": 4300 + } + }, + { + "x": 570, + "y": 437.73575 + }, + { + "x": 580, + "y": 487.73575 + }, + { + "x": 550, + "y": 420 + }, + [ + { + "#": 4303 + }, + { + "#": 4304 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4306 + }, + { + "#": 4307 + }, + { + "#": 4308 + }, + { + "#": 4309 + }, + { + "#": 4310 + }, + { + "#": 4311 + }, + { + "#": 4312 + }, + { + "#": 4313 + } + ], + { + "x": 600, + "y": 467.73575, + "index": 0, + "body": { + "#": 4259 + }, + "isInternal": false + }, + { + "x": 580, + "y": 487.73575, + "index": 1, + "body": { + "#": 4259 + }, + "isInternal": false + }, + { + "x": 570, + "y": 487.73575, + "index": 2, + "body": { + "#": 4259 + }, + "isInternal": false + }, + { + "x": 550, + "y": 467.73575, + "index": 3, + "body": { + "#": 4259 + }, + "isInternal": false + }, + { + "x": 550, + "y": 457.73575, + "index": 4, + "body": { + "#": 4259 + }, + "isInternal": false + }, + { + "x": 570, + "y": 437.73575, + "index": 5, + "body": { + "#": 4259 + }, + "isInternal": false + }, + { + "x": 580, + "y": 437.73575, + "index": 6, + "body": { + "#": 4259 + }, + "isInternal": false + }, + { + "x": 600, + "y": 457.73575, + "index": 7, + "body": { + "#": 4259 + }, + "isInternal": false + }, + { + "x": 575, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4321 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4323 + }, + "max": { + "#": 4324 + } + }, + { + "x": 550, + "y": 437.73575 + }, + { + "x": 600, + "y": 487.73575 + }, + { + "x": 575, + "y": 459.82848 + }, + [ + { + "#": 4327 + }, + { + "#": 4328 + }, + { + "#": 4329 + }, + { + "#": 4330 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,9,10", + "startCol": 11, + "endCol": 12, + "startRow": 9, + "endRow": 10 + }, + { + "id": 181, + "type": "body", + "label": "Body", + "parts": { + "#": 4333 + }, + "angle": 0, + "vertices": { + "#": 4378 + }, + "position": { + "#": 4387 + }, + "force": { + "#": 4388 + }, + "torque": 0, + "positionImpulse": { + "#": 4389 + }, + "constraintImpulse": { + "#": 4390 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4391 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4392 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4393 + }, + "bounds": { + "#": 4395 + }, + "positionPrev": { + "#": 4398 + }, + "anglePrev": 0, + "axes": { + "#": 4399 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4332 + }, + "sleepCounter": 0, + "region": { + "#": 4404 + } + }, + [ + { + "#": 4332 + }, + { + "#": 4334 + }, + { + "#": 4356 + } + ], + { + "id": 179, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4335 + }, + "angle": 0, + "vertices": { + "#": 4336 + }, + "position": { + "#": 4341 + }, + "force": { + "#": 4342 + }, + "torque": 0, + "positionImpulse": { + "#": 4343 + }, + "constraintImpulse": { + "#": 4344 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4345 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4346 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4347 + }, + "bounds": { + "#": 4349 + }, + "positionPrev": { + "#": 4352 + }, + "anglePrev": 0, + "axes": { + "#": 4353 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4332 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4334 + } + ], + [ + { + "#": 4337 + }, + { + "#": 4338 + }, + { + "#": 4339 + }, + { + "#": 4340 + } + ], + { + "x": 600, + "y": 457.73575, + "index": 0, + "body": { + "#": 4334 + }, + "isInternal": false + }, + { + "x": 650, + "y": 457.73575, + "index": 1, + "body": { + "#": 4334 + }, + "isInternal": false + }, + { + "x": 650, + "y": 467.73575, + "index": 2, + "body": { + "#": 4334 + }, + "isInternal": false + }, + { + "x": 600, + "y": 467.73575, + "index": 3, + "body": { + "#": 4334 + }, + "isInternal": false + }, + { + "x": 625, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4348 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4350 + }, + "max": { + "#": 4351 + } + }, + { + "x": 600, + "y": 457.73575 + }, + { + "x": 650, + "y": 467.73575 + }, + { + "x": 600, + "y": 420 + }, + [ + { + "#": 4354 + }, + { + "#": 4355 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 180, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4357 + }, + "angle": 0, + "vertices": { + "#": 4358 + }, + "position": { + "#": 4363 + }, + "force": { + "#": 4364 + }, + "torque": 0, + "positionImpulse": { + "#": 4365 + }, + "constraintImpulse": { + "#": 4366 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4367 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4368 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4369 + }, + "bounds": { + "#": 4371 + }, + "positionPrev": { + "#": 4374 + }, + "anglePrev": 0, + "axes": { + "#": 4375 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4332 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4356 + } + ], + [ + { + "#": 4359 + }, + { + "#": 4360 + }, + { + "#": 4361 + }, + { + "#": 4362 + } + ], + { + "x": 620, + "y": 437.73575, + "index": 0, + "body": { + "#": 4356 + }, + "isInternal": false + }, + { + "x": 630, + "y": 437.73575, + "index": 1, + "body": { + "#": 4356 + }, + "isInternal": false + }, + { + "x": 630, + "y": 487.73575, + "index": 2, + "body": { + "#": 4356 + }, + "isInternal": false + }, + { + "x": 620, + "y": 487.73575, + "index": 3, + "body": { + "#": 4356 + }, + "isInternal": false + }, + { + "x": 625, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4370 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4372 + }, + "max": { + "#": 4373 + } + }, + { + "x": 620, + "y": 437.73575 + }, + { + "x": 630, + "y": 487.73575 + }, + { + "x": 600, + "y": 420 + }, + [ + { + "#": 4376 + }, + { + "#": 4377 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4379 + }, + { + "#": 4380 + }, + { + "#": 4381 + }, + { + "#": 4382 + }, + { + "#": 4383 + }, + { + "#": 4384 + }, + { + "#": 4385 + }, + { + "#": 4386 + } + ], + { + "x": 650, + "y": 467.73575, + "index": 0, + "body": { + "#": 4332 + }, + "isInternal": false + }, + { + "x": 630, + "y": 487.73575, + "index": 1, + "body": { + "#": 4332 + }, + "isInternal": false + }, + { + "x": 620, + "y": 487.73575, + "index": 2, + "body": { + "#": 4332 + }, + "isInternal": false + }, + { + "x": 600, + "y": 467.73575, + "index": 3, + "body": { + "#": 4332 + }, + "isInternal": false + }, + { + "x": 600, + "y": 457.73575, + "index": 4, + "body": { + "#": 4332 + }, + "isInternal": false + }, + { + "x": 620, + "y": 437.73575, + "index": 5, + "body": { + "#": 4332 + }, + "isInternal": false + }, + { + "x": 630, + "y": 437.73575, + "index": 6, + "body": { + "#": 4332 + }, + "isInternal": false + }, + { + "x": 650, + "y": 457.73575, + "index": 7, + "body": { + "#": 4332 + }, + "isInternal": false + }, + { + "x": 625, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4394 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4396 + }, + "max": { + "#": 4397 + } + }, + { + "x": 600, + "y": 437.73575 + }, + { + "x": 650, + "y": 487.73575 + }, + { + "x": 625, + "y": 459.82848 + }, + [ + { + "#": 4400 + }, + { + "#": 4401 + }, + { + "#": 4402 + }, + { + "#": 4403 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,13,9,10", + "startCol": 12, + "endCol": 13, + "startRow": 9, + "endRow": 10 + }, + { + "id": 184, + "type": "body", + "label": "Body", + "parts": { + "#": 4406 + }, + "angle": 0, + "vertices": { + "#": 4451 + }, + "position": { + "#": 4460 + }, + "force": { + "#": 4461 + }, + "torque": 0, + "positionImpulse": { + "#": 4462 + }, + "constraintImpulse": { + "#": 4463 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4464 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4465 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4466 + }, + "bounds": { + "#": 4468 + }, + "positionPrev": { + "#": 4471 + }, + "anglePrev": 0, + "axes": { + "#": 4472 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4405 + }, + "sleepCounter": 0, + "region": { + "#": 4477 + } + }, + [ + { + "#": 4405 + }, + { + "#": 4407 + }, + { + "#": 4429 + } + ], + { + "id": 182, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4408 + }, + "angle": 0, + "vertices": { + "#": 4409 + }, + "position": { + "#": 4414 + }, + "force": { + "#": 4415 + }, + "torque": 0, + "positionImpulse": { + "#": 4416 + }, + "constraintImpulse": { + "#": 4417 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4418 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4419 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4420 + }, + "bounds": { + "#": 4422 + }, + "positionPrev": { + "#": 4425 + }, + "anglePrev": 0, + "axes": { + "#": 4426 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4405 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4407 + } + ], + [ + { + "#": 4410 + }, + { + "#": 4411 + }, + { + "#": 4412 + }, + { + "#": 4413 + } + ], + { + "x": 650, + "y": 457.73575, + "index": 0, + "body": { + "#": 4407 + }, + "isInternal": false + }, + { + "x": 700, + "y": 457.73575, + "index": 1, + "body": { + "#": 4407 + }, + "isInternal": false + }, + { + "x": 700, + "y": 467.73575, + "index": 2, + "body": { + "#": 4407 + }, + "isInternal": false + }, + { + "x": 650, + "y": 467.73575, + "index": 3, + "body": { + "#": 4407 + }, + "isInternal": false + }, + { + "x": 675, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4421 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4423 + }, + "max": { + "#": 4424 + } + }, + { + "x": 650, + "y": 457.73575 + }, + { + "x": 700, + "y": 467.73575 + }, + { + "x": 650, + "y": 420 + }, + [ + { + "#": 4427 + }, + { + "#": 4428 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 183, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4430 + }, + "angle": 0, + "vertices": { + "#": 4431 + }, + "position": { + "#": 4436 + }, + "force": { + "#": 4437 + }, + "torque": 0, + "positionImpulse": { + "#": 4438 + }, + "constraintImpulse": { + "#": 4439 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4440 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4441 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4442 + }, + "bounds": { + "#": 4444 + }, + "positionPrev": { + "#": 4447 + }, + "anglePrev": 0, + "axes": { + "#": 4448 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4405 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4429 + } + ], + [ + { + "#": 4432 + }, + { + "#": 4433 + }, + { + "#": 4434 + }, + { + "#": 4435 + } + ], + { + "x": 670, + "y": 437.73575, + "index": 0, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 680, + "y": 437.73575, + "index": 1, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 680, + "y": 487.73575, + "index": 2, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 670, + "y": 487.73575, + "index": 3, + "body": { + "#": 4429 + }, + "isInternal": false + }, + { + "x": 675, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4443 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4445 + }, + "max": { + "#": 4446 + } + }, + { + "x": 670, + "y": 437.73575 + }, + { + "x": 680, + "y": 487.73575 + }, + { + "x": 650, + "y": 420 + }, + [ + { + "#": 4449 + }, + { + "#": 4450 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4452 + }, + { + "#": 4453 + }, + { + "#": 4454 + }, + { + "#": 4455 + }, + { + "#": 4456 + }, + { + "#": 4457 + }, + { + "#": 4458 + }, + { + "#": 4459 + } + ], + { + "x": 700, + "y": 467.73575, + "index": 0, + "body": { + "#": 4405 + }, + "isInternal": false + }, + { + "x": 680, + "y": 487.73575, + "index": 1, + "body": { + "#": 4405 + }, + "isInternal": false + }, + { + "x": 670, + "y": 487.73575, + "index": 2, + "body": { + "#": 4405 + }, + "isInternal": false + }, + { + "x": 650, + "y": 467.73575, + "index": 3, + "body": { + "#": 4405 + }, + "isInternal": false + }, + { + "x": 650, + "y": 457.73575, + "index": 4, + "body": { + "#": 4405 + }, + "isInternal": false + }, + { + "x": 670, + "y": 437.73575, + "index": 5, + "body": { + "#": 4405 + }, + "isInternal": false + }, + { + "x": 680, + "y": 437.73575, + "index": 6, + "body": { + "#": 4405 + }, + "isInternal": false + }, + { + "x": 700, + "y": 457.73575, + "index": 7, + "body": { + "#": 4405 + }, + "isInternal": false + }, + { + "x": 675, + "y": 462.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4467 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4469 + }, + "max": { + "#": 4470 + } + }, + { + "x": 650, + "y": 437.73575 + }, + { + "x": 700, + "y": 487.73575 + }, + { + "x": 675, + "y": 459.82848 + }, + [ + { + "#": 4473 + }, + { + "#": 4474 + }, + { + "#": 4475 + }, + { + "#": 4476 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "13,14,9,10", + "startCol": 13, + "endCol": 14, + "startRow": 9, + "endRow": 10 + }, + { + "id": 187, + "type": "body", + "label": "Body", + "parts": { + "#": 4479 + }, + "angle": 0, + "vertices": { + "#": 4524 + }, + "position": { + "#": 4533 + }, + "force": { + "#": 4534 + }, + "torque": 0, + "positionImpulse": { + "#": 4535 + }, + "constraintImpulse": { + "#": 4536 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4537 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4538 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4539 + }, + "bounds": { + "#": 4541 + }, + "positionPrev": { + "#": 4544 + }, + "anglePrev": 0, + "axes": { + "#": 4545 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4478 + }, + "sleepCounter": 0, + "region": { + "#": 4550 + } + }, + [ + { + "#": 4478 + }, + { + "#": 4480 + }, + { + "#": 4502 + } + ], + { + "id": 185, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4481 + }, + "angle": 0, + "vertices": { + "#": 4482 + }, + "position": { + "#": 4487 + }, + "force": { + "#": 4488 + }, + "torque": 0, + "positionImpulse": { + "#": 4489 + }, + "constraintImpulse": { + "#": 4490 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4491 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4492 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4493 + }, + "bounds": { + "#": 4495 + }, + "positionPrev": { + "#": 4498 + }, + "anglePrev": 0, + "axes": { + "#": 4499 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4478 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4480 + } + ], + [ + { + "#": 4483 + }, + { + "#": 4484 + }, + { + "#": 4485 + }, + { + "#": 4486 + } + ], + { + "x": 100, + "y": 507.73575, + "index": 0, + "body": { + "#": 4480 + }, + "isInternal": false + }, + { + "x": 150, + "y": 507.73575, + "index": 1, + "body": { + "#": 4480 + }, + "isInternal": false + }, + { + "x": 150, + "y": 517.73575, + "index": 2, + "body": { + "#": 4480 + }, + "isInternal": false + }, + { + "x": 100, + "y": 517.73575, + "index": 3, + "body": { + "#": 4480 + }, + "isInternal": false + }, + { + "x": 125, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4494 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4496 + }, + "max": { + "#": 4497 + } + }, + { + "x": 100, + "y": 507.73575 + }, + { + "x": 150, + "y": 517.73575 + }, + { + "x": 100, + "y": 470 + }, + [ + { + "#": 4500 + }, + { + "#": 4501 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 186, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4503 + }, + "angle": 0, + "vertices": { + "#": 4504 + }, + "position": { + "#": 4509 + }, + "force": { + "#": 4510 + }, + "torque": 0, + "positionImpulse": { + "#": 4511 + }, + "constraintImpulse": { + "#": 4512 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4513 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4514 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4515 + }, + "bounds": { + "#": 4517 + }, + "positionPrev": { + "#": 4520 + }, + "anglePrev": 0, + "axes": { + "#": 4521 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4478 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4502 + } + ], + [ + { + "#": 4505 + }, + { + "#": 4506 + }, + { + "#": 4507 + }, + { + "#": 4508 + } + ], + { + "x": 120, + "y": 487.73575, + "index": 0, + "body": { + "#": 4502 + }, + "isInternal": false + }, + { + "x": 130, + "y": 487.73575, + "index": 1, + "body": { + "#": 4502 + }, + "isInternal": false + }, + { + "x": 130, + "y": 537.73575, + "index": 2, + "body": { + "#": 4502 + }, + "isInternal": false + }, + { + "x": 120, + "y": 537.73575, + "index": 3, + "body": { + "#": 4502 + }, + "isInternal": false + }, + { + "x": 125, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4516 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4518 + }, + "max": { + "#": 4519 + } + }, + { + "x": 120, + "y": 487.73575 + }, + { + "x": 130, + "y": 537.73575 + }, + { + "x": 100, + "y": 470 + }, + [ + { + "#": 4522 + }, + { + "#": 4523 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4525 + }, + { + "#": 4526 + }, + { + "#": 4527 + }, + { + "#": 4528 + }, + { + "#": 4529 + }, + { + "#": 4530 + }, + { + "#": 4531 + }, + { + "#": 4532 + } + ], + { + "x": 150, + "y": 517.73575, + "index": 0, + "body": { + "#": 4478 + }, + "isInternal": false + }, + { + "x": 130, + "y": 537.73575, + "index": 1, + "body": { + "#": 4478 + }, + "isInternal": false + }, + { + "x": 120, + "y": 537.73575, + "index": 2, + "body": { + "#": 4478 + }, + "isInternal": false + }, + { + "x": 100, + "y": 517.73575, + "index": 3, + "body": { + "#": 4478 + }, + "isInternal": false + }, + { + "x": 100, + "y": 507.73575, + "index": 4, + "body": { + "#": 4478 + }, + "isInternal": false + }, + { + "x": 120, + "y": 487.73575, + "index": 5, + "body": { + "#": 4478 + }, + "isInternal": false + }, + { + "x": 130, + "y": 487.73575, + "index": 6, + "body": { + "#": 4478 + }, + "isInternal": false + }, + { + "x": 150, + "y": 507.73575, + "index": 7, + "body": { + "#": 4478 + }, + "isInternal": false + }, + { + "x": 125, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4540 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4542 + }, + "max": { + "#": 4543 + } + }, + { + "x": 100, + "y": 487.73575 + }, + { + "x": 150, + "y": 537.73575 + }, + { + "x": 125, + "y": 509.82848 + }, + [ + { + "#": 4546 + }, + { + "#": 4547 + }, + { + "#": 4548 + }, + { + "#": 4549 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,3,10,11", + "startCol": 2, + "endCol": 3, + "startRow": 10, + "endRow": 11 + }, + { + "id": 190, + "type": "body", + "label": "Body", + "parts": { + "#": 4552 + }, + "angle": 0, + "vertices": { + "#": 4597 + }, + "position": { + "#": 4606 + }, + "force": { + "#": 4607 + }, + "torque": 0, + "positionImpulse": { + "#": 4608 + }, + "constraintImpulse": { + "#": 4609 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4610 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4611 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4612 + }, + "bounds": { + "#": 4614 + }, + "positionPrev": { + "#": 4617 + }, + "anglePrev": 0, + "axes": { + "#": 4618 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4551 + }, + "sleepCounter": 0, + "region": { + "#": 4623 + } + }, + [ + { + "#": 4551 + }, + { + "#": 4553 + }, + { + "#": 4575 + } + ], + { + "id": 188, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4554 + }, + "angle": 0, + "vertices": { + "#": 4555 + }, + "position": { + "#": 4560 + }, + "force": { + "#": 4561 + }, + "torque": 0, + "positionImpulse": { + "#": 4562 + }, + "constraintImpulse": { + "#": 4563 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4564 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4565 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4566 + }, + "bounds": { + "#": 4568 + }, + "positionPrev": { + "#": 4571 + }, + "anglePrev": 0, + "axes": { + "#": 4572 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4551 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4553 + } + ], + [ + { + "#": 4556 + }, + { + "#": 4557 + }, + { + "#": 4558 + }, + { + "#": 4559 + } + ], + { + "x": 150, + "y": 507.73575, + "index": 0, + "body": { + "#": 4553 + }, + "isInternal": false + }, + { + "x": 200, + "y": 507.73575, + "index": 1, + "body": { + "#": 4553 + }, + "isInternal": false + }, + { + "x": 200, + "y": 517.73575, + "index": 2, + "body": { + "#": 4553 + }, + "isInternal": false + }, + { + "x": 150, + "y": 517.73575, + "index": 3, + "body": { + "#": 4553 + }, + "isInternal": false + }, + { + "x": 175, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4567 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4569 + }, + "max": { + "#": 4570 + } + }, + { + "x": 150, + "y": 507.73575 + }, + { + "x": 200, + "y": 517.73575 + }, + { + "x": 150, + "y": 470 + }, + [ + { + "#": 4573 + }, + { + "#": 4574 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 189, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4576 + }, + "angle": 0, + "vertices": { + "#": 4577 + }, + "position": { + "#": 4582 + }, + "force": { + "#": 4583 + }, + "torque": 0, + "positionImpulse": { + "#": 4584 + }, + "constraintImpulse": { + "#": 4585 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4586 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4587 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4588 + }, + "bounds": { + "#": 4590 + }, + "positionPrev": { + "#": 4593 + }, + "anglePrev": 0, + "axes": { + "#": 4594 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4551 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4575 + } + ], + [ + { + "#": 4578 + }, + { + "#": 4579 + }, + { + "#": 4580 + }, + { + "#": 4581 + } + ], + { + "x": 170, + "y": 487.73575, + "index": 0, + "body": { + "#": 4575 + }, + "isInternal": false + }, + { + "x": 180, + "y": 487.73575, + "index": 1, + "body": { + "#": 4575 + }, + "isInternal": false + }, + { + "x": 180, + "y": 537.73575, + "index": 2, + "body": { + "#": 4575 + }, + "isInternal": false + }, + { + "x": 170, + "y": 537.73575, + "index": 3, + "body": { + "#": 4575 + }, + "isInternal": false + }, + { + "x": 175, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4589 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4591 + }, + "max": { + "#": 4592 + } + }, + { + "x": 170, + "y": 487.73575 + }, + { + "x": 180, + "y": 537.73575 + }, + { + "x": 150, + "y": 470 + }, + [ + { + "#": 4595 + }, + { + "#": 4596 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4598 + }, + { + "#": 4599 + }, + { + "#": 4600 + }, + { + "#": 4601 + }, + { + "#": 4602 + }, + { + "#": 4603 + }, + { + "#": 4604 + }, + { + "#": 4605 + } + ], + { + "x": 200, + "y": 517.73575, + "index": 0, + "body": { + "#": 4551 + }, + "isInternal": false + }, + { + "x": 180, + "y": 537.73575, + "index": 1, + "body": { + "#": 4551 + }, + "isInternal": false + }, + { + "x": 170, + "y": 537.73575, + "index": 2, + "body": { + "#": 4551 + }, + "isInternal": false + }, + { + "x": 150, + "y": 517.73575, + "index": 3, + "body": { + "#": 4551 + }, + "isInternal": false + }, + { + "x": 150, + "y": 507.73575, + "index": 4, + "body": { + "#": 4551 + }, + "isInternal": false + }, + { + "x": 170, + "y": 487.73575, + "index": 5, + "body": { + "#": 4551 + }, + "isInternal": false + }, + { + "x": 180, + "y": 487.73575, + "index": 6, + "body": { + "#": 4551 + }, + "isInternal": false + }, + { + "x": 200, + "y": 507.73575, + "index": 7, + "body": { + "#": 4551 + }, + "isInternal": false + }, + { + "x": 175, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4613 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4615 + }, + "max": { + "#": 4616 + } + }, + { + "x": 150, + "y": 487.73575 + }, + { + "x": 200, + "y": 537.73575 + }, + { + "x": 175, + "y": 509.82848 + }, + [ + { + "#": 4619 + }, + { + "#": 4620 + }, + { + "#": 4621 + }, + { + "#": 4622 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,10,11", + "startCol": 3, + "endCol": 4, + "startRow": 10, + "endRow": 11 + }, + { + "id": 193, + "type": "body", + "label": "Body", + "parts": { + "#": 4625 + }, + "angle": 0, + "vertices": { + "#": 4670 + }, + "position": { + "#": 4679 + }, + "force": { + "#": 4680 + }, + "torque": 0, + "positionImpulse": { + "#": 4681 + }, + "constraintImpulse": { + "#": 4682 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4683 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4684 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4685 + }, + "bounds": { + "#": 4687 + }, + "positionPrev": { + "#": 4690 + }, + "anglePrev": 0, + "axes": { + "#": 4691 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4624 + }, + "sleepCounter": 0, + "region": { + "#": 4696 + } + }, + [ + { + "#": 4624 + }, + { + "#": 4626 + }, + { + "#": 4648 + } + ], + { + "id": 191, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4627 + }, + "angle": 0, + "vertices": { + "#": 4628 + }, + "position": { + "#": 4633 + }, + "force": { + "#": 4634 + }, + "torque": 0, + "positionImpulse": { + "#": 4635 + }, + "constraintImpulse": { + "#": 4636 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4637 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4638 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4639 + }, + "bounds": { + "#": 4641 + }, + "positionPrev": { + "#": 4644 + }, + "anglePrev": 0, + "axes": { + "#": 4645 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4624 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4626 + } + ], + [ + { + "#": 4629 + }, + { + "#": 4630 + }, + { + "#": 4631 + }, + { + "#": 4632 + } + ], + { + "x": 200, + "y": 507.73575, + "index": 0, + "body": { + "#": 4626 + }, + "isInternal": false + }, + { + "x": 250, + "y": 507.73575, + "index": 1, + "body": { + "#": 4626 + }, + "isInternal": false + }, + { + "x": 250, + "y": 517.73575, + "index": 2, + "body": { + "#": 4626 + }, + "isInternal": false + }, + { + "x": 200, + "y": 517.73575, + "index": 3, + "body": { + "#": 4626 + }, + "isInternal": false + }, + { + "x": 225, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4640 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4642 + }, + "max": { + "#": 4643 + } + }, + { + "x": 200, + "y": 507.73575 + }, + { + "x": 250, + "y": 517.73575 + }, + { + "x": 200, + "y": 470 + }, + [ + { + "#": 4646 + }, + { + "#": 4647 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 192, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4649 + }, + "angle": 0, + "vertices": { + "#": 4650 + }, + "position": { + "#": 4655 + }, + "force": { + "#": 4656 + }, + "torque": 0, + "positionImpulse": { + "#": 4657 + }, + "constraintImpulse": { + "#": 4658 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4659 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4660 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4661 + }, + "bounds": { + "#": 4663 + }, + "positionPrev": { + "#": 4666 + }, + "anglePrev": 0, + "axes": { + "#": 4667 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4624 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4648 + } + ], + [ + { + "#": 4651 + }, + { + "#": 4652 + }, + { + "#": 4653 + }, + { + "#": 4654 + } + ], + { + "x": 220, + "y": 487.73575, + "index": 0, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 230, + "y": 487.73575, + "index": 1, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 230, + "y": 537.73575, + "index": 2, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 220, + "y": 537.73575, + "index": 3, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 225, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4662 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4664 + }, + "max": { + "#": 4665 + } + }, + { + "x": 220, + "y": 487.73575 + }, + { + "x": 230, + "y": 537.73575 + }, + { + "x": 200, + "y": 470 + }, + [ + { + "#": 4668 + }, + { + "#": 4669 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4671 + }, + { + "#": 4672 + }, + { + "#": 4673 + }, + { + "#": 4674 + }, + { + "#": 4675 + }, + { + "#": 4676 + }, + { + "#": 4677 + }, + { + "#": 4678 + } + ], + { + "x": 250, + "y": 517.73575, + "index": 0, + "body": { + "#": 4624 + }, + "isInternal": false + }, + { + "x": 230, + "y": 537.73575, + "index": 1, + "body": { + "#": 4624 + }, + "isInternal": false + }, + { + "x": 220, + "y": 537.73575, + "index": 2, + "body": { + "#": 4624 + }, + "isInternal": false + }, + { + "x": 200, + "y": 517.73575, + "index": 3, + "body": { + "#": 4624 + }, + "isInternal": false + }, + { + "x": 200, + "y": 507.73575, + "index": 4, + "body": { + "#": 4624 + }, + "isInternal": false + }, + { + "x": 220, + "y": 487.73575, + "index": 5, + "body": { + "#": 4624 + }, + "isInternal": false + }, + { + "x": 230, + "y": 487.73575, + "index": 6, + "body": { + "#": 4624 + }, + "isInternal": false + }, + { + "x": 250, + "y": 507.73575, + "index": 7, + "body": { + "#": 4624 + }, + "isInternal": false + }, + { + "x": 225, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4686 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4688 + }, + "max": { + "#": 4689 + } + }, + { + "x": 200, + "y": 487.73575 + }, + { + "x": 250, + "y": 537.73575 + }, + { + "x": 225, + "y": 509.82848 + }, + [ + { + "#": 4692 + }, + { + "#": 4693 + }, + { + "#": 4694 + }, + { + "#": 4695 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,10,11", + "startCol": 4, + "endCol": 5, + "startRow": 10, + "endRow": 11 + }, + { + "id": 196, + "type": "body", + "label": "Body", + "parts": { + "#": 4698 + }, + "angle": 0, + "vertices": { + "#": 4743 + }, + "position": { + "#": 4752 + }, + "force": { + "#": 4753 + }, + "torque": 0, + "positionImpulse": { + "#": 4754 + }, + "constraintImpulse": { + "#": 4755 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4756 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4757 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4758 + }, + "bounds": { + "#": 4760 + }, + "positionPrev": { + "#": 4763 + }, + "anglePrev": 0, + "axes": { + "#": 4764 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4697 + }, + "sleepCounter": 0, + "region": { + "#": 4769 + } + }, + [ + { + "#": 4697 + }, + { + "#": 4699 + }, + { + "#": 4721 + } + ], + { + "id": 194, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4700 + }, + "angle": 0, + "vertices": { + "#": 4701 + }, + "position": { + "#": 4706 + }, + "force": { + "#": 4707 + }, + "torque": 0, + "positionImpulse": { + "#": 4708 + }, + "constraintImpulse": { + "#": 4709 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4710 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4711 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4712 + }, + "bounds": { + "#": 4714 + }, + "positionPrev": { + "#": 4717 + }, + "anglePrev": 0, + "axes": { + "#": 4718 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4697 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4699 + } + ], + [ + { + "#": 4702 + }, + { + "#": 4703 + }, + { + "#": 4704 + }, + { + "#": 4705 + } + ], + { + "x": 250, + "y": 507.73575, + "index": 0, + "body": { + "#": 4699 + }, + "isInternal": false + }, + { + "x": 300, + "y": 507.73575, + "index": 1, + "body": { + "#": 4699 + }, + "isInternal": false + }, + { + "x": 300, + "y": 517.73575, + "index": 2, + "body": { + "#": 4699 + }, + "isInternal": false + }, + { + "x": 250, + "y": 517.73575, + "index": 3, + "body": { + "#": 4699 + }, + "isInternal": false + }, + { + "x": 275, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4713 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4715 + }, + "max": { + "#": 4716 + } + }, + { + "x": 250, + "y": 507.73575 + }, + { + "x": 300, + "y": 517.73575 + }, + { + "x": 250, + "y": 470 + }, + [ + { + "#": 4719 + }, + { + "#": 4720 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 195, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4722 + }, + "angle": 0, + "vertices": { + "#": 4723 + }, + "position": { + "#": 4728 + }, + "force": { + "#": 4729 + }, + "torque": 0, + "positionImpulse": { + "#": 4730 + }, + "constraintImpulse": { + "#": 4731 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4732 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4733 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4734 + }, + "bounds": { + "#": 4736 + }, + "positionPrev": { + "#": 4739 + }, + "anglePrev": 0, + "axes": { + "#": 4740 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4697 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4721 + } + ], + [ + { + "#": 4724 + }, + { + "#": 4725 + }, + { + "#": 4726 + }, + { + "#": 4727 + } + ], + { + "x": 270, + "y": 487.73575, + "index": 0, + "body": { + "#": 4721 + }, + "isInternal": false + }, + { + "x": 280, + "y": 487.73575, + "index": 1, + "body": { + "#": 4721 + }, + "isInternal": false + }, + { + "x": 280, + "y": 537.73575, + "index": 2, + "body": { + "#": 4721 + }, + "isInternal": false + }, + { + "x": 270, + "y": 537.73575, + "index": 3, + "body": { + "#": 4721 + }, + "isInternal": false + }, + { + "x": 275, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4735 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4737 + }, + "max": { + "#": 4738 + } + }, + { + "x": 270, + "y": 487.73575 + }, + { + "x": 280, + "y": 537.73575 + }, + { + "x": 250, + "y": 470 + }, + [ + { + "#": 4741 + }, + { + "#": 4742 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4744 + }, + { + "#": 4745 + }, + { + "#": 4746 + }, + { + "#": 4747 + }, + { + "#": 4748 + }, + { + "#": 4749 + }, + { + "#": 4750 + }, + { + "#": 4751 + } + ], + { + "x": 300, + "y": 517.73575, + "index": 0, + "body": { + "#": 4697 + }, + "isInternal": false + }, + { + "x": 280, + "y": 537.73575, + "index": 1, + "body": { + "#": 4697 + }, + "isInternal": false + }, + { + "x": 270, + "y": 537.73575, + "index": 2, + "body": { + "#": 4697 + }, + "isInternal": false + }, + { + "x": 250, + "y": 517.73575, + "index": 3, + "body": { + "#": 4697 + }, + "isInternal": false + }, + { + "x": 250, + "y": 507.73575, + "index": 4, + "body": { + "#": 4697 + }, + "isInternal": false + }, + { + "x": 270, + "y": 487.73575, + "index": 5, + "body": { + "#": 4697 + }, + "isInternal": false + }, + { + "x": 280, + "y": 487.73575, + "index": 6, + "body": { + "#": 4697 + }, + "isInternal": false + }, + { + "x": 300, + "y": 507.73575, + "index": 7, + "body": { + "#": 4697 + }, + "isInternal": false + }, + { + "x": 275, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4759 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4761 + }, + "max": { + "#": 4762 + } + }, + { + "x": 250, + "y": 487.73575 + }, + { + "x": 300, + "y": 537.73575 + }, + { + "x": 275, + "y": 509.82848 + }, + [ + { + "#": 4765 + }, + { + "#": 4766 + }, + { + "#": 4767 + }, + { + "#": 4768 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,10,11", + "startCol": 5, + "endCol": 6, + "startRow": 10, + "endRow": 11 + }, + { + "id": 199, + "type": "body", + "label": "Body", + "parts": { + "#": 4771 + }, + "angle": 0, + "vertices": { + "#": 4816 + }, + "position": { + "#": 4825 + }, + "force": { + "#": 4826 + }, + "torque": 0, + "positionImpulse": { + "#": 4827 + }, + "constraintImpulse": { + "#": 4828 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4829 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4830 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4831 + }, + "bounds": { + "#": 4833 + }, + "positionPrev": { + "#": 4836 + }, + "anglePrev": 0, + "axes": { + "#": 4837 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4770 + }, + "sleepCounter": 0, + "region": { + "#": 4842 + } + }, + [ + { + "#": 4770 + }, + { + "#": 4772 + }, + { + "#": 4794 + } + ], + { + "id": 197, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4773 + }, + "angle": 0, + "vertices": { + "#": 4774 + }, + "position": { + "#": 4779 + }, + "force": { + "#": 4780 + }, + "torque": 0, + "positionImpulse": { + "#": 4781 + }, + "constraintImpulse": { + "#": 4782 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4783 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4784 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4785 + }, + "bounds": { + "#": 4787 + }, + "positionPrev": { + "#": 4790 + }, + "anglePrev": 0, + "axes": { + "#": 4791 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4770 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4772 + } + ], + [ + { + "#": 4775 + }, + { + "#": 4776 + }, + { + "#": 4777 + }, + { + "#": 4778 + } + ], + { + "x": 300, + "y": 507.73575, + "index": 0, + "body": { + "#": 4772 + }, + "isInternal": false + }, + { + "x": 350, + "y": 507.73575, + "index": 1, + "body": { + "#": 4772 + }, + "isInternal": false + }, + { + "x": 350, + "y": 517.73575, + "index": 2, + "body": { + "#": 4772 + }, + "isInternal": false + }, + { + "x": 300, + "y": 517.73575, + "index": 3, + "body": { + "#": 4772 + }, + "isInternal": false + }, + { + "x": 325, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4786 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4788 + }, + "max": { + "#": 4789 + } + }, + { + "x": 300, + "y": 507.73575 + }, + { + "x": 350, + "y": 517.73575 + }, + { + "x": 300, + "y": 470 + }, + [ + { + "#": 4792 + }, + { + "#": 4793 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 198, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4795 + }, + "angle": 0, + "vertices": { + "#": 4796 + }, + "position": { + "#": 4801 + }, + "force": { + "#": 4802 + }, + "torque": 0, + "positionImpulse": { + "#": 4803 + }, + "constraintImpulse": { + "#": 4804 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4805 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4806 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4807 + }, + "bounds": { + "#": 4809 + }, + "positionPrev": { + "#": 4812 + }, + "anglePrev": 0, + "axes": { + "#": 4813 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4770 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4794 + } + ], + [ + { + "#": 4797 + }, + { + "#": 4798 + }, + { + "#": 4799 + }, + { + "#": 4800 + } + ], + { + "x": 320, + "y": 487.73575, + "index": 0, + "body": { + "#": 4794 + }, + "isInternal": false + }, + { + "x": 330, + "y": 487.73575, + "index": 1, + "body": { + "#": 4794 + }, + "isInternal": false + }, + { + "x": 330, + "y": 537.73575, + "index": 2, + "body": { + "#": 4794 + }, + "isInternal": false + }, + { + "x": 320, + "y": 537.73575, + "index": 3, + "body": { + "#": 4794 + }, + "isInternal": false + }, + { + "x": 325, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4808 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4810 + }, + "max": { + "#": 4811 + } + }, + { + "x": 320, + "y": 487.73575 + }, + { + "x": 330, + "y": 537.73575 + }, + { + "x": 300, + "y": 470 + }, + [ + { + "#": 4814 + }, + { + "#": 4815 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4817 + }, + { + "#": 4818 + }, + { + "#": 4819 + }, + { + "#": 4820 + }, + { + "#": 4821 + }, + { + "#": 4822 + }, + { + "#": 4823 + }, + { + "#": 4824 + } + ], + { + "x": 350, + "y": 517.73575, + "index": 0, + "body": { + "#": 4770 + }, + "isInternal": false + }, + { + "x": 330, + "y": 537.73575, + "index": 1, + "body": { + "#": 4770 + }, + "isInternal": false + }, + { + "x": 320, + "y": 537.73575, + "index": 2, + "body": { + "#": 4770 + }, + "isInternal": false + }, + { + "x": 300, + "y": 517.73575, + "index": 3, + "body": { + "#": 4770 + }, + "isInternal": false + }, + { + "x": 300, + "y": 507.73575, + "index": 4, + "body": { + "#": 4770 + }, + "isInternal": false + }, + { + "x": 320, + "y": 487.73575, + "index": 5, + "body": { + "#": 4770 + }, + "isInternal": false + }, + { + "x": 330, + "y": 487.73575, + "index": 6, + "body": { + "#": 4770 + }, + "isInternal": false + }, + { + "x": 350, + "y": 507.73575, + "index": 7, + "body": { + "#": 4770 + }, + "isInternal": false + }, + { + "x": 325, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4832 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4834 + }, + "max": { + "#": 4835 + } + }, + { + "x": 300, + "y": 487.73575 + }, + { + "x": 350, + "y": 537.73575 + }, + { + "x": 325, + "y": 509.82848 + }, + [ + { + "#": 4838 + }, + { + "#": 4839 + }, + { + "#": 4840 + }, + { + "#": 4841 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,10,11", + "startCol": 6, + "endCol": 7, + "startRow": 10, + "endRow": 11 + }, + { + "id": 202, + "type": "body", + "label": "Body", + "parts": { + "#": 4844 + }, + "angle": 0, + "vertices": { + "#": 4889 + }, + "position": { + "#": 4898 + }, + "force": { + "#": 4899 + }, + "torque": 0, + "positionImpulse": { + "#": 4900 + }, + "constraintImpulse": { + "#": 4901 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4902 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4903 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4904 + }, + "bounds": { + "#": 4906 + }, + "positionPrev": { + "#": 4909 + }, + "anglePrev": 0, + "axes": { + "#": 4910 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4843 + }, + "sleepCounter": 0, + "region": { + "#": 4915 + } + }, + [ + { + "#": 4843 + }, + { + "#": 4845 + }, + { + "#": 4867 + } + ], + { + "id": 200, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4846 + }, + "angle": 0, + "vertices": { + "#": 4847 + }, + "position": { + "#": 4852 + }, + "force": { + "#": 4853 + }, + "torque": 0, + "positionImpulse": { + "#": 4854 + }, + "constraintImpulse": { + "#": 4855 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4856 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4857 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4858 + }, + "bounds": { + "#": 4860 + }, + "positionPrev": { + "#": 4863 + }, + "anglePrev": 0, + "axes": { + "#": 4864 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4843 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4845 + } + ], + [ + { + "#": 4848 + }, + { + "#": 4849 + }, + { + "#": 4850 + }, + { + "#": 4851 + } + ], + { + "x": 350, + "y": 507.73575, + "index": 0, + "body": { + "#": 4845 + }, + "isInternal": false + }, + { + "x": 400, + "y": 507.73575, + "index": 1, + "body": { + "#": 4845 + }, + "isInternal": false + }, + { + "x": 400, + "y": 517.73575, + "index": 2, + "body": { + "#": 4845 + }, + "isInternal": false + }, + { + "x": 350, + "y": 517.73575, + "index": 3, + "body": { + "#": 4845 + }, + "isInternal": false + }, + { + "x": 375, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4859 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4861 + }, + "max": { + "#": 4862 + } + }, + { + "x": 350, + "y": 507.73575 + }, + { + "x": 400, + "y": 517.73575 + }, + { + "x": 350, + "y": 470 + }, + [ + { + "#": 4865 + }, + { + "#": 4866 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 201, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4868 + }, + "angle": 0, + "vertices": { + "#": 4869 + }, + "position": { + "#": 4874 + }, + "force": { + "#": 4875 + }, + "torque": 0, + "positionImpulse": { + "#": 4876 + }, + "constraintImpulse": { + "#": 4877 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4878 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4879 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4880 + }, + "bounds": { + "#": 4882 + }, + "positionPrev": { + "#": 4885 + }, + "anglePrev": 0, + "axes": { + "#": 4886 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4843 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4867 + } + ], + [ + { + "#": 4870 + }, + { + "#": 4871 + }, + { + "#": 4872 + }, + { + "#": 4873 + } + ], + { + "x": 370, + "y": 487.73575, + "index": 0, + "body": { + "#": 4867 + }, + "isInternal": false + }, + { + "x": 380, + "y": 487.73575, + "index": 1, + "body": { + "#": 4867 + }, + "isInternal": false + }, + { + "x": 380, + "y": 537.73575, + "index": 2, + "body": { + "#": 4867 + }, + "isInternal": false + }, + { + "x": 370, + "y": 537.73575, + "index": 3, + "body": { + "#": 4867 + }, + "isInternal": false + }, + { + "x": 375, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4881 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4883 + }, + "max": { + "#": 4884 + } + }, + { + "x": 370, + "y": 487.73575 + }, + { + "x": 380, + "y": 537.73575 + }, + { + "x": 350, + "y": 470 + }, + [ + { + "#": 4887 + }, + { + "#": 4888 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4890 + }, + { + "#": 4891 + }, + { + "#": 4892 + }, + { + "#": 4893 + }, + { + "#": 4894 + }, + { + "#": 4895 + }, + { + "#": 4896 + }, + { + "#": 4897 + } + ], + { + "x": 400, + "y": 517.73575, + "index": 0, + "body": { + "#": 4843 + }, + "isInternal": false + }, + { + "x": 380, + "y": 537.73575, + "index": 1, + "body": { + "#": 4843 + }, + "isInternal": false + }, + { + "x": 370, + "y": 537.73575, + "index": 2, + "body": { + "#": 4843 + }, + "isInternal": false + }, + { + "x": 350, + "y": 517.73575, + "index": 3, + "body": { + "#": 4843 + }, + "isInternal": false + }, + { + "x": 350, + "y": 507.73575, + "index": 4, + "body": { + "#": 4843 + }, + "isInternal": false + }, + { + "x": 370, + "y": 487.73575, + "index": 5, + "body": { + "#": 4843 + }, + "isInternal": false + }, + { + "x": 380, + "y": 487.73575, + "index": 6, + "body": { + "#": 4843 + }, + "isInternal": false + }, + { + "x": 400, + "y": 507.73575, + "index": 7, + "body": { + "#": 4843 + }, + "isInternal": false + }, + { + "x": 375, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4905 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4907 + }, + "max": { + "#": 4908 + } + }, + { + "x": 350, + "y": 487.73575 + }, + { + "x": 400, + "y": 537.73575 + }, + { + "x": 375, + "y": 509.82848 + }, + [ + { + "#": 4911 + }, + { + "#": 4912 + }, + { + "#": 4913 + }, + { + "#": 4914 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,10,11", + "startCol": 7, + "endCol": 8, + "startRow": 10, + "endRow": 11 + }, + { + "id": 205, + "type": "body", + "label": "Body", + "parts": { + "#": 4917 + }, + "angle": 0, + "vertices": { + "#": 4962 + }, + "position": { + "#": 4971 + }, + "force": { + "#": 4972 + }, + "torque": 0, + "positionImpulse": { + "#": 4973 + }, + "constraintImpulse": { + "#": 4974 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4975 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4976 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4977 + }, + "bounds": { + "#": 4979 + }, + "positionPrev": { + "#": 4982 + }, + "anglePrev": 0, + "axes": { + "#": 4983 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4916 + }, + "sleepCounter": 0, + "region": { + "#": 4988 + } + }, + [ + { + "#": 4916 + }, + { + "#": 4918 + }, + { + "#": 4940 + } + ], + { + "id": 203, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4919 + }, + "angle": 0, + "vertices": { + "#": 4920 + }, + "position": { + "#": 4925 + }, + "force": { + "#": 4926 + }, + "torque": 0, + "positionImpulse": { + "#": 4927 + }, + "constraintImpulse": { + "#": 4928 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4929 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4930 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4931 + }, + "bounds": { + "#": 4933 + }, + "positionPrev": { + "#": 4936 + }, + "anglePrev": 0, + "axes": { + "#": 4937 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4916 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4918 + } + ], + [ + { + "#": 4921 + }, + { + "#": 4922 + }, + { + "#": 4923 + }, + { + "#": 4924 + } + ], + { + "x": 400, + "y": 507.73575, + "index": 0, + "body": { + "#": 4918 + }, + "isInternal": false + }, + { + "x": 450, + "y": 507.73575, + "index": 1, + "body": { + "#": 4918 + }, + "isInternal": false + }, + { + "x": 450, + "y": 517.73575, + "index": 2, + "body": { + "#": 4918 + }, + "isInternal": false + }, + { + "x": 400, + "y": 517.73575, + "index": 3, + "body": { + "#": 4918 + }, + "isInternal": false + }, + { + "x": 425, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4932 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4934 + }, + "max": { + "#": 4935 + } + }, + { + "x": 400, + "y": 507.73575 + }, + { + "x": 450, + "y": 517.73575 + }, + { + "x": 400, + "y": 470 + }, + [ + { + "#": 4938 + }, + { + "#": 4939 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 204, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4941 + }, + "angle": 0, + "vertices": { + "#": 4942 + }, + "position": { + "#": 4947 + }, + "force": { + "#": 4948 + }, + "torque": 0, + "positionImpulse": { + "#": 4949 + }, + "constraintImpulse": { + "#": 4950 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4951 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4952 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4953 + }, + "bounds": { + "#": 4955 + }, + "positionPrev": { + "#": 4958 + }, + "anglePrev": 0, + "axes": { + "#": 4959 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4916 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4940 + } + ], + [ + { + "#": 4943 + }, + { + "#": 4944 + }, + { + "#": 4945 + }, + { + "#": 4946 + } + ], + { + "x": 420, + "y": 487.73575, + "index": 0, + "body": { + "#": 4940 + }, + "isInternal": false + }, + { + "x": 430, + "y": 487.73575, + "index": 1, + "body": { + "#": 4940 + }, + "isInternal": false + }, + { + "x": 430, + "y": 537.73575, + "index": 2, + "body": { + "#": 4940 + }, + "isInternal": false + }, + { + "x": 420, + "y": 537.73575, + "index": 3, + "body": { + "#": 4940 + }, + "isInternal": false + }, + { + "x": 425, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4954 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4956 + }, + "max": { + "#": 4957 + } + }, + { + "x": 420, + "y": 487.73575 + }, + { + "x": 430, + "y": 537.73575 + }, + { + "x": 400, + "y": 470 + }, + [ + { + "#": 4960 + }, + { + "#": 4961 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 4963 + }, + { + "#": 4964 + }, + { + "#": 4965 + }, + { + "#": 4966 + }, + { + "#": 4967 + }, + { + "#": 4968 + }, + { + "#": 4969 + }, + { + "#": 4970 + } + ], + { + "x": 450, + "y": 517.73575, + "index": 0, + "body": { + "#": 4916 + }, + "isInternal": false + }, + { + "x": 430, + "y": 537.73575, + "index": 1, + "body": { + "#": 4916 + }, + "isInternal": false + }, + { + "x": 420, + "y": 537.73575, + "index": 2, + "body": { + "#": 4916 + }, + "isInternal": false + }, + { + "x": 400, + "y": 517.73575, + "index": 3, + "body": { + "#": 4916 + }, + "isInternal": false + }, + { + "x": 400, + "y": 507.73575, + "index": 4, + "body": { + "#": 4916 + }, + "isInternal": false + }, + { + "x": 420, + "y": 487.73575, + "index": 5, + "body": { + "#": 4916 + }, + "isInternal": false + }, + { + "x": 430, + "y": 487.73575, + "index": 6, + "body": { + "#": 4916 + }, + "isInternal": false + }, + { + "x": 450, + "y": 507.73575, + "index": 7, + "body": { + "#": 4916 + }, + "isInternal": false + }, + { + "x": 425, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4978 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4980 + }, + "max": { + "#": 4981 + } + }, + { + "x": 400, + "y": 487.73575 + }, + { + "x": 450, + "y": 537.73575 + }, + { + "x": 425, + "y": 509.82848 + }, + [ + { + "#": 4984 + }, + { + "#": 4985 + }, + { + "#": 4986 + }, + { + "#": 4987 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,10,11", + "startCol": 8, + "endCol": 9, + "startRow": 10, + "endRow": 11 + }, + { + "id": 208, + "type": "body", + "label": "Body", + "parts": { + "#": 4990 + }, + "angle": 0, + "vertices": { + "#": 5035 + }, + "position": { + "#": 5044 + }, + "force": { + "#": 5045 + }, + "torque": 0, + "positionImpulse": { + "#": 5046 + }, + "constraintImpulse": { + "#": 5047 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5048 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5049 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5050 + }, + "bounds": { + "#": 5052 + }, + "positionPrev": { + "#": 5055 + }, + "anglePrev": 0, + "axes": { + "#": 5056 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 4989 + }, + "sleepCounter": 0, + "region": { + "#": 5061 + } + }, + [ + { + "#": 4989 + }, + { + "#": 4991 + }, + { + "#": 5013 + } + ], + { + "id": 206, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4992 + }, + "angle": 0, + "vertices": { + "#": 4993 + }, + "position": { + "#": 4998 + }, + "force": { + "#": 4999 + }, + "torque": 0, + "positionImpulse": { + "#": 5000 + }, + "constraintImpulse": { + "#": 5001 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5002 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5003 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5004 + }, + "bounds": { + "#": 5006 + }, + "positionPrev": { + "#": 5009 + }, + "anglePrev": 0, + "axes": { + "#": 5010 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4989 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4991 + } + ], + [ + { + "#": 4994 + }, + { + "#": 4995 + }, + { + "#": 4996 + }, + { + "#": 4997 + } + ], + { + "x": 450, + "y": 507.73575, + "index": 0, + "body": { + "#": 4991 + }, + "isInternal": false + }, + { + "x": 500, + "y": 507.73575, + "index": 1, + "body": { + "#": 4991 + }, + "isInternal": false + }, + { + "x": 500, + "y": 517.73575, + "index": 2, + "body": { + "#": 4991 + }, + "isInternal": false + }, + { + "x": 450, + "y": 517.73575, + "index": 3, + "body": { + "#": 4991 + }, + "isInternal": false + }, + { + "x": 475, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5005 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5007 + }, + "max": { + "#": 5008 + } + }, + { + "x": 450, + "y": 507.73575 + }, + { + "x": 500, + "y": 517.73575 + }, + { + "x": 450, + "y": 470 + }, + [ + { + "#": 5011 + }, + { + "#": 5012 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 207, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5014 + }, + "angle": 0, + "vertices": { + "#": 5015 + }, + "position": { + "#": 5020 + }, + "force": { + "#": 5021 + }, + "torque": 0, + "positionImpulse": { + "#": 5022 + }, + "constraintImpulse": { + "#": 5023 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5024 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5025 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5026 + }, + "bounds": { + "#": 5028 + }, + "positionPrev": { + "#": 5031 + }, + "anglePrev": 0, + "axes": { + "#": 5032 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 4989 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5013 + } + ], + [ + { + "#": 5016 + }, + { + "#": 5017 + }, + { + "#": 5018 + }, + { + "#": 5019 + } + ], + { + "x": 470, + "y": 487.73575, + "index": 0, + "body": { + "#": 5013 + }, + "isInternal": false + }, + { + "x": 480, + "y": 487.73575, + "index": 1, + "body": { + "#": 5013 + }, + "isInternal": false + }, + { + "x": 480, + "y": 537.73575, + "index": 2, + "body": { + "#": 5013 + }, + "isInternal": false + }, + { + "x": 470, + "y": 537.73575, + "index": 3, + "body": { + "#": 5013 + }, + "isInternal": false + }, + { + "x": 475, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5027 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5029 + }, + "max": { + "#": 5030 + } + }, + { + "x": 470, + "y": 487.73575 + }, + { + "x": 480, + "y": 537.73575 + }, + { + "x": 450, + "y": 470 + }, + [ + { + "#": 5033 + }, + { + "#": 5034 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 5036 + }, + { + "#": 5037 + }, + { + "#": 5038 + }, + { + "#": 5039 + }, + { + "#": 5040 + }, + { + "#": 5041 + }, + { + "#": 5042 + }, + { + "#": 5043 + } + ], + { + "x": 500, + "y": 517.73575, + "index": 0, + "body": { + "#": 4989 + }, + "isInternal": false + }, + { + "x": 480, + "y": 537.73575, + "index": 1, + "body": { + "#": 4989 + }, + "isInternal": false + }, + { + "x": 470, + "y": 537.73575, + "index": 2, + "body": { + "#": 4989 + }, + "isInternal": false + }, + { + "x": 450, + "y": 517.73575, + "index": 3, + "body": { + "#": 4989 + }, + "isInternal": false + }, + { + "x": 450, + "y": 507.73575, + "index": 4, + "body": { + "#": 4989 + }, + "isInternal": false + }, + { + "x": 470, + "y": 487.73575, + "index": 5, + "body": { + "#": 4989 + }, + "isInternal": false + }, + { + "x": 480, + "y": 487.73575, + "index": 6, + "body": { + "#": 4989 + }, + "isInternal": false + }, + { + "x": 500, + "y": 507.73575, + "index": 7, + "body": { + "#": 4989 + }, + "isInternal": false + }, + { + "x": 475, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5051 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5053 + }, + "max": { + "#": 5054 + } + }, + { + "x": 450, + "y": 487.73575 + }, + { + "x": 500, + "y": 537.73575 + }, + { + "x": 475, + "y": 509.82848 + }, + [ + { + "#": 5057 + }, + { + "#": 5058 + }, + { + "#": 5059 + }, + { + "#": 5060 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,10,11", + "startCol": 9, + "endCol": 10, + "startRow": 10, + "endRow": 11 + }, + { + "id": 211, + "type": "body", + "label": "Body", + "parts": { + "#": 5063 + }, + "angle": 0, + "vertices": { + "#": 5108 + }, + "position": { + "#": 5117 + }, + "force": { + "#": 5118 + }, + "torque": 0, + "positionImpulse": { + "#": 5119 + }, + "constraintImpulse": { + "#": 5120 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5121 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5122 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5123 + }, + "bounds": { + "#": 5125 + }, + "positionPrev": { + "#": 5128 + }, + "anglePrev": 0, + "axes": { + "#": 5129 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 5062 + }, + "sleepCounter": 0, + "region": { + "#": 5134 + } + }, + [ + { + "#": 5062 + }, + { + "#": 5064 + }, + { + "#": 5086 + } + ], + { + "id": 209, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5065 + }, + "angle": 0, + "vertices": { + "#": 5066 + }, + "position": { + "#": 5071 + }, + "force": { + "#": 5072 + }, + "torque": 0, + "positionImpulse": { + "#": 5073 + }, + "constraintImpulse": { + "#": 5074 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5075 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5076 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5077 + }, + "bounds": { + "#": 5079 + }, + "positionPrev": { + "#": 5082 + }, + "anglePrev": 0, + "axes": { + "#": 5083 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 5062 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5064 + } + ], + [ + { + "#": 5067 + }, + { + "#": 5068 + }, + { + "#": 5069 + }, + { + "#": 5070 + } + ], + { + "x": 500, + "y": 507.73575, + "index": 0, + "body": { + "#": 5064 + }, + "isInternal": false + }, + { + "x": 550, + "y": 507.73575, + "index": 1, + "body": { + "#": 5064 + }, + "isInternal": false + }, + { + "x": 550, + "y": 517.73575, + "index": 2, + "body": { + "#": 5064 + }, + "isInternal": false + }, + { + "x": 500, + "y": 517.73575, + "index": 3, + "body": { + "#": 5064 + }, + "isInternal": false + }, + { + "x": 525, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5078 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5080 + }, + "max": { + "#": 5081 + } + }, + { + "x": 500, + "y": 507.73575 + }, + { + "x": 550, + "y": 517.73575 + }, + { + "x": 500, + "y": 470 + }, + [ + { + "#": 5084 + }, + { + "#": 5085 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 210, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5087 + }, + "angle": 0, + "vertices": { + "#": 5088 + }, + "position": { + "#": 5093 + }, + "force": { + "#": 5094 + }, + "torque": 0, + "positionImpulse": { + "#": 5095 + }, + "constraintImpulse": { + "#": 5096 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5097 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5098 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5099 + }, + "bounds": { + "#": 5101 + }, + "positionPrev": { + "#": 5104 + }, + "anglePrev": 0, + "axes": { + "#": 5105 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 5062 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5086 + } + ], + [ + { + "#": 5089 + }, + { + "#": 5090 + }, + { + "#": 5091 + }, + { + "#": 5092 + } + ], + { + "x": 520, + "y": 487.73575, + "index": 0, + "body": { + "#": 5086 + }, + "isInternal": false + }, + { + "x": 530, + "y": 487.73575, + "index": 1, + "body": { + "#": 5086 + }, + "isInternal": false + }, + { + "x": 530, + "y": 537.73575, + "index": 2, + "body": { + "#": 5086 + }, + "isInternal": false + }, + { + "x": 520, + "y": 537.73575, + "index": 3, + "body": { + "#": 5086 + }, + "isInternal": false + }, + { + "x": 525, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5100 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5102 + }, + "max": { + "#": 5103 + } + }, + { + "x": 520, + "y": 487.73575 + }, + { + "x": 530, + "y": 537.73575 + }, + { + "x": 500, + "y": 470 + }, + [ + { + "#": 5106 + }, + { + "#": 5107 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 5109 + }, + { + "#": 5110 + }, + { + "#": 5111 + }, + { + "#": 5112 + }, + { + "#": 5113 + }, + { + "#": 5114 + }, + { + "#": 5115 + }, + { + "#": 5116 + } + ], + { + "x": 550, + "y": 517.73575, + "index": 0, + "body": { + "#": 5062 + }, + "isInternal": false + }, + { + "x": 530, + "y": 537.73575, + "index": 1, + "body": { + "#": 5062 + }, + "isInternal": false + }, + { + "x": 520, + "y": 537.73575, + "index": 2, + "body": { + "#": 5062 + }, + "isInternal": false + }, + { + "x": 500, + "y": 517.73575, + "index": 3, + "body": { + "#": 5062 + }, + "isInternal": false + }, + { + "x": 500, + "y": 507.73575, + "index": 4, + "body": { + "#": 5062 + }, + "isInternal": false + }, + { + "x": 520, + "y": 487.73575, + "index": 5, + "body": { + "#": 5062 + }, + "isInternal": false + }, + { + "x": 530, + "y": 487.73575, + "index": 6, + "body": { + "#": 5062 + }, + "isInternal": false + }, + { + "x": 550, + "y": 507.73575, + "index": 7, + "body": { + "#": 5062 + }, + "isInternal": false + }, + { + "x": 525, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5124 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5126 + }, + "max": { + "#": 5127 + } + }, + { + "x": 500, + "y": 487.73575 + }, + { + "x": 550, + "y": 537.73575 + }, + { + "x": 525, + "y": 509.82848 + }, + [ + { + "#": 5130 + }, + { + "#": 5131 + }, + { + "#": 5132 + }, + { + "#": 5133 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,10,11", + "startCol": 10, + "endCol": 11, + "startRow": 10, + "endRow": 11 + }, + { + "id": 214, + "type": "body", + "label": "Body", + "parts": { + "#": 5136 + }, + "angle": 0, + "vertices": { + "#": 5181 + }, + "position": { + "#": 5190 + }, + "force": { + "#": 5191 + }, + "torque": 0, + "positionImpulse": { + "#": 5192 + }, + "constraintImpulse": { + "#": 5193 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5194 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5195 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5196 + }, + "bounds": { + "#": 5198 + }, + "positionPrev": { + "#": 5201 + }, + "anglePrev": 0, + "axes": { + "#": 5202 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 5135 + }, + "sleepCounter": 0, + "region": { + "#": 5207 + } + }, + [ + { + "#": 5135 + }, + { + "#": 5137 + }, + { + "#": 5159 + } + ], + { + "id": 212, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5138 + }, + "angle": 0, + "vertices": { + "#": 5139 + }, + "position": { + "#": 5144 + }, + "force": { + "#": 5145 + }, + "torque": 0, + "positionImpulse": { + "#": 5146 + }, + "constraintImpulse": { + "#": 5147 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5148 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5149 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5150 + }, + "bounds": { + "#": 5152 + }, + "positionPrev": { + "#": 5155 + }, + "anglePrev": 0, + "axes": { + "#": 5156 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 5135 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5137 + } + ], + [ + { + "#": 5140 + }, + { + "#": 5141 + }, + { + "#": 5142 + }, + { + "#": 5143 + } + ], + { + "x": 550, + "y": 507.73575, + "index": 0, + "body": { + "#": 5137 + }, + "isInternal": false + }, + { + "x": 600, + "y": 507.73575, + "index": 1, + "body": { + "#": 5137 + }, + "isInternal": false + }, + { + "x": 600, + "y": 517.73575, + "index": 2, + "body": { + "#": 5137 + }, + "isInternal": false + }, + { + "x": 550, + "y": 517.73575, + "index": 3, + "body": { + "#": 5137 + }, + "isInternal": false + }, + { + "x": 575, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5151 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5153 + }, + "max": { + "#": 5154 + } + }, + { + "x": 550, + "y": 507.73575 + }, + { + "x": 600, + "y": 517.73575 + }, + { + "x": 550, + "y": 470 + }, + [ + { + "#": 5157 + }, + { + "#": 5158 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 213, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5160 + }, + "angle": 0, + "vertices": { + "#": 5161 + }, + "position": { + "#": 5166 + }, + "force": { + "#": 5167 + }, + "torque": 0, + "positionImpulse": { + "#": 5168 + }, + "constraintImpulse": { + "#": 5169 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5170 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5171 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5172 + }, + "bounds": { + "#": 5174 + }, + "positionPrev": { + "#": 5177 + }, + "anglePrev": 0, + "axes": { + "#": 5178 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 5135 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5159 + } + ], + [ + { + "#": 5162 + }, + { + "#": 5163 + }, + { + "#": 5164 + }, + { + "#": 5165 + } + ], + { + "x": 570, + "y": 487.73575, + "index": 0, + "body": { + "#": 5159 + }, + "isInternal": false + }, + { + "x": 580, + "y": 487.73575, + "index": 1, + "body": { + "#": 5159 + }, + "isInternal": false + }, + { + "x": 580, + "y": 537.73575, + "index": 2, + "body": { + "#": 5159 + }, + "isInternal": false + }, + { + "x": 570, + "y": 537.73575, + "index": 3, + "body": { + "#": 5159 + }, + "isInternal": false + }, + { + "x": 575, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5173 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5175 + }, + "max": { + "#": 5176 + } + }, + { + "x": 570, + "y": 487.73575 + }, + { + "x": 580, + "y": 537.73575 + }, + { + "x": 550, + "y": 470 + }, + [ + { + "#": 5179 + }, + { + "#": 5180 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 5182 + }, + { + "#": 5183 + }, + { + "#": 5184 + }, + { + "#": 5185 + }, + { + "#": 5186 + }, + { + "#": 5187 + }, + { + "#": 5188 + }, + { + "#": 5189 + } + ], + { + "x": 600, + "y": 517.73575, + "index": 0, + "body": { + "#": 5135 + }, + "isInternal": false + }, + { + "x": 580, + "y": 537.73575, + "index": 1, + "body": { + "#": 5135 + }, + "isInternal": false + }, + { + "x": 570, + "y": 537.73575, + "index": 2, + "body": { + "#": 5135 + }, + "isInternal": false + }, + { + "x": 550, + "y": 517.73575, + "index": 3, + "body": { + "#": 5135 + }, + "isInternal": false + }, + { + "x": 550, + "y": 507.73575, + "index": 4, + "body": { + "#": 5135 + }, + "isInternal": false + }, + { + "x": 570, + "y": 487.73575, + "index": 5, + "body": { + "#": 5135 + }, + "isInternal": false + }, + { + "x": 580, + "y": 487.73575, + "index": 6, + "body": { + "#": 5135 + }, + "isInternal": false + }, + { + "x": 600, + "y": 507.73575, + "index": 7, + "body": { + "#": 5135 + }, + "isInternal": false + }, + { + "x": 575, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5197 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5199 + }, + "max": { + "#": 5200 + } + }, + { + "x": 550, + "y": 487.73575 + }, + { + "x": 600, + "y": 537.73575 + }, + { + "x": 575, + "y": 509.82848 + }, + [ + { + "#": 5203 + }, + { + "#": 5204 + }, + { + "#": 5205 + }, + { + "#": 5206 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,10,11", + "startCol": 11, + "endCol": 12, + "startRow": 10, + "endRow": 11 + }, + { + "id": 217, + "type": "body", + "label": "Body", + "parts": { + "#": 5209 + }, + "angle": 0, + "vertices": { + "#": 5254 + }, + "position": { + "#": 5263 + }, + "force": { + "#": 5264 + }, + "torque": 0, + "positionImpulse": { + "#": 5265 + }, + "constraintImpulse": { + "#": 5266 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5267 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5268 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5269 + }, + "bounds": { + "#": 5271 + }, + "positionPrev": { + "#": 5274 + }, + "anglePrev": 0, + "axes": { + "#": 5275 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 5208 + }, + "sleepCounter": 0, + "region": { + "#": 5280 + } + }, + [ + { + "#": 5208 + }, + { + "#": 5210 + }, + { + "#": 5232 + } + ], + { + "id": 215, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5211 + }, + "angle": 0, + "vertices": { + "#": 5212 + }, + "position": { + "#": 5217 + }, + "force": { + "#": 5218 + }, + "torque": 0, + "positionImpulse": { + "#": 5219 + }, + "constraintImpulse": { + "#": 5220 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5221 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5222 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5223 + }, + "bounds": { + "#": 5225 + }, + "positionPrev": { + "#": 5228 + }, + "anglePrev": 0, + "axes": { + "#": 5229 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 5208 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5210 + } + ], + [ + { + "#": 5213 + }, + { + "#": 5214 + }, + { + "#": 5215 + }, + { + "#": 5216 + } + ], + { + "x": 600, + "y": 507.73575, + "index": 0, + "body": { + "#": 5210 + }, + "isInternal": false + }, + { + "x": 650, + "y": 507.73575, + "index": 1, + "body": { + "#": 5210 + }, + "isInternal": false + }, + { + "x": 650, + "y": 517.73575, + "index": 2, + "body": { + "#": 5210 + }, + "isInternal": false + }, + { + "x": 600, + "y": 517.73575, + "index": 3, + "body": { + "#": 5210 + }, + "isInternal": false + }, + { + "x": 625, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5224 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5226 + }, + "max": { + "#": 5227 + } + }, + { + "x": 600, + "y": 507.73575 + }, + { + "x": 650, + "y": 517.73575 + }, + { + "x": 600, + "y": 470 + }, + [ + { + "#": 5230 + }, + { + "#": 5231 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 216, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5233 + }, + "angle": 0, + "vertices": { + "#": 5234 + }, + "position": { + "#": 5239 + }, + "force": { + "#": 5240 + }, + "torque": 0, + "positionImpulse": { + "#": 5241 + }, + "constraintImpulse": { + "#": 5242 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5243 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5244 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5245 + }, + "bounds": { + "#": 5247 + }, + "positionPrev": { + "#": 5250 + }, + "anglePrev": 0, + "axes": { + "#": 5251 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 5208 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5232 + } + ], + [ + { + "#": 5235 + }, + { + "#": 5236 + }, + { + "#": 5237 + }, + { + "#": 5238 + } + ], + { + "x": 620, + "y": 487.73575, + "index": 0, + "body": { + "#": 5232 + }, + "isInternal": false + }, + { + "x": 630, + "y": 487.73575, + "index": 1, + "body": { + "#": 5232 + }, + "isInternal": false + }, + { + "x": 630, + "y": 537.73575, + "index": 2, + "body": { + "#": 5232 + }, + "isInternal": false + }, + { + "x": 620, + "y": 537.73575, + "index": 3, + "body": { + "#": 5232 + }, + "isInternal": false + }, + { + "x": 625, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5246 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5248 + }, + "max": { + "#": 5249 + } + }, + { + "x": 620, + "y": 487.73575 + }, + { + "x": 630, + "y": 537.73575 + }, + { + "x": 600, + "y": 470 + }, + [ + { + "#": 5252 + }, + { + "#": 5253 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 5255 + }, + { + "#": 5256 + }, + { + "#": 5257 + }, + { + "#": 5258 + }, + { + "#": 5259 + }, + { + "#": 5260 + }, + { + "#": 5261 + }, + { + "#": 5262 + } + ], + { + "x": 650, + "y": 517.73575, + "index": 0, + "body": { + "#": 5208 + }, + "isInternal": false + }, + { + "x": 630, + "y": 537.73575, + "index": 1, + "body": { + "#": 5208 + }, + "isInternal": false + }, + { + "x": 620, + "y": 537.73575, + "index": 2, + "body": { + "#": 5208 + }, + "isInternal": false + }, + { + "x": 600, + "y": 517.73575, + "index": 3, + "body": { + "#": 5208 + }, + "isInternal": false + }, + { + "x": 600, + "y": 507.73575, + "index": 4, + "body": { + "#": 5208 + }, + "isInternal": false + }, + { + "x": 620, + "y": 487.73575, + "index": 5, + "body": { + "#": 5208 + }, + "isInternal": false + }, + { + "x": 630, + "y": 487.73575, + "index": 6, + "body": { + "#": 5208 + }, + "isInternal": false + }, + { + "x": 650, + "y": 507.73575, + "index": 7, + "body": { + "#": 5208 + }, + "isInternal": false + }, + { + "x": 625, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5270 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5272 + }, + "max": { + "#": 5273 + } + }, + { + "x": 600, + "y": 487.73575 + }, + { + "x": 650, + "y": 537.73575 + }, + { + "x": 625, + "y": 509.82848 + }, + [ + { + "#": 5276 + }, + { + "#": 5277 + }, + { + "#": 5278 + }, + { + "#": 5279 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,13,10,11", + "startCol": 12, + "endCol": 13, + "startRow": 10, + "endRow": 11 + }, + { + "id": 220, + "type": "body", + "label": "Body", + "parts": { + "#": 5282 + }, + "angle": 0, + "vertices": { + "#": 5327 + }, + "position": { + "#": 5336 + }, + "force": { + "#": 5337 + }, + "torque": 0, + "positionImpulse": { + "#": 5338 + }, + "constraintImpulse": { + "#": 5339 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5340 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5341 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5342 + }, + "bounds": { + "#": 5344 + }, + "positionPrev": { + "#": 5347 + }, + "anglePrev": 0, + "axes": { + "#": 5348 + }, + "area": 1000, + "mass": 1, + "inverseMass": 1, + "inertia": 866.66667, + "inverseInertia": 0.00115, + "parent": { + "#": 5281 + }, + "sleepCounter": 0, + "region": { + "#": 5353 + } + }, + [ + { + "#": 5281 + }, + { + "#": 5283 + }, + { + "#": 5305 + } + ], + { + "id": 218, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5284 + }, + "angle": 0, + "vertices": { + "#": 5285 + }, + "position": { + "#": 5290 + }, + "force": { + "#": 5291 + }, + "torque": 0, + "positionImpulse": { + "#": 5292 + }, + "constraintImpulse": { + "#": 5293 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5294 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5295 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5296 + }, + "bounds": { + "#": 5298 + }, + "positionPrev": { + "#": 5301 + }, + "anglePrev": 0, + "axes": { + "#": 5302 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 5281 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5283 + } + ], + [ + { + "#": 5286 + }, + { + "#": 5287 + }, + { + "#": 5288 + }, + { + "#": 5289 + } + ], + { + "x": 650, + "y": 507.73575, + "index": 0, + "body": { + "#": 5283 + }, + "isInternal": false + }, + { + "x": 700, + "y": 507.73575, + "index": 1, + "body": { + "#": 5283 + }, + "isInternal": false + }, + { + "x": 700, + "y": 517.73575, + "index": 2, + "body": { + "#": 5283 + }, + "isInternal": false + }, + { + "x": 650, + "y": 517.73575, + "index": 3, + "body": { + "#": 5283 + }, + "isInternal": false + }, + { + "x": 675, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5297 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5299 + }, + "max": { + "#": 5300 + } + }, + { + "x": 650, + "y": 507.73575 + }, + { + "x": 700, + "y": 517.73575 + }, + { + "x": 650, + "y": 470 + }, + [ + { + "#": 5303 + }, + { + "#": 5304 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 219, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5306 + }, + "angle": 0, + "vertices": { + "#": 5307 + }, + "position": { + "#": 5312 + }, + "force": { + "#": 5313 + }, + "torque": 0, + "positionImpulse": { + "#": 5314 + }, + "constraintImpulse": { + "#": 5315 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5316 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5317 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5318 + }, + "bounds": { + "#": 5320 + }, + "positionPrev": { + "#": 5323 + }, + "anglePrev": 0, + "axes": { + "#": 5324 + }, + "area": 500, + "mass": 0.5, + "inverseMass": 2, + "inertia": 433.33333, + "inverseInertia": 0.00231, + "parent": { + "#": 5281 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5305 + } + ], + [ + { + "#": 5308 + }, + { + "#": 5309 + }, + { + "#": 5310 + }, + { + "#": 5311 + } + ], + { + "x": 670, + "y": 487.73575, + "index": 0, + "body": { + "#": 5305 + }, + "isInternal": false + }, + { + "x": 680, + "y": 487.73575, + "index": 1, + "body": { + "#": 5305 + }, + "isInternal": false + }, + { + "x": 680, + "y": 537.73575, + "index": 2, + "body": { + "#": 5305 + }, + "isInternal": false + }, + { + "x": 670, + "y": 537.73575, + "index": 3, + "body": { + "#": 5305 + }, + "isInternal": false + }, + { + "x": 675, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5319 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5321 + }, + "max": { + "#": 5322 + } + }, + { + "x": 670, + "y": 487.73575 + }, + { + "x": 680, + "y": 537.73575 + }, + { + "x": 650, + "y": 470 + }, + [ + { + "#": 5325 + }, + { + "#": 5326 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 5328 + }, + { + "#": 5329 + }, + { + "#": 5330 + }, + { + "#": 5331 + }, + { + "#": 5332 + }, + { + "#": 5333 + }, + { + "#": 5334 + }, + { + "#": 5335 + } + ], + { + "x": 700, + "y": 517.73575, + "index": 0, + "body": { + "#": 5281 + }, + "isInternal": false + }, + { + "x": 680, + "y": 537.73575, + "index": 1, + "body": { + "#": 5281 + }, + "isInternal": false + }, + { + "x": 670, + "y": 537.73575, + "index": 2, + "body": { + "#": 5281 + }, + "isInternal": false + }, + { + "x": 650, + "y": 517.73575, + "index": 3, + "body": { + "#": 5281 + }, + "isInternal": false + }, + { + "x": 650, + "y": 507.73575, + "index": 4, + "body": { + "#": 5281 + }, + "isInternal": false + }, + { + "x": 670, + "y": 487.73575, + "index": 5, + "body": { + "#": 5281 + }, + "isInternal": false + }, + { + "x": 680, + "y": 487.73575, + "index": 6, + "body": { + "#": 5281 + }, + "isInternal": false + }, + { + "x": 700, + "y": 507.73575, + "index": 7, + "body": { + "#": 5281 + }, + "isInternal": false + }, + { + "x": 675, + "y": 512.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5343 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5345 + }, + "max": { + "#": 5346 + } + }, + { + "x": 650, + "y": 487.73575 + }, + { + "x": 700, + "y": 537.73575 + }, + { + "x": 675, + "y": 509.82848 + }, + [ + { + "#": 5349 + }, + { + "#": 5350 + }, + { + "#": 5351 + }, + { + "#": 5352 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "13,14,10,11", + "startCol": 13, + "endCol": 14, + "startRow": 10, + "endRow": 11 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 5358 + }, + "max": { + "#": 5359 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/friction/friction-0.json b/test/node/refs/friction/friction-0.json new file mode 100644 index 00000000..bea5cdf5 --- /dev/null +++ b/test/node/refs/friction/friction-0.json @@ -0,0 +1,2183 @@ +[ + { + "id": 9, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 222 + }, + "composites": { + "#": 223 + }, + "label": "World", + "gravity": { + "#": 224 + }, + "bounds": { + "#": 225 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 112 + }, + { + "#": 134 + }, + { + "#": 156 + }, + { + "#": 178 + }, + { + "#": 200 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 4, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 91 + }, + "angle": 0.1885, + "vertices": { + "#": 92 + }, + "position": { + "#": 97 + }, + "force": { + "#": 98 + }, + "torque": 0, + "positionImpulse": { + "#": 99 + }, + "constraintImpulse": { + "#": 100 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 101 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 102 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 103 + }, + "bounds": { + "#": 105 + }, + "positionPrev": { + "#": 108 + }, + "anglePrev": 0.1885, + "axes": { + "#": 109 + }, + "area": 14000, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 90 + }, + "sleepCounter": 0 + }, + [ + { + "#": 90 + } + ], + [ + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + } + ], + { + "x": -41.92672, + "y": 104.59367, + "index": 0, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 645.67435, + "y": 235.76059, + "index": 1, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 641.92672, + "y": 255.40633, + "index": 2, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": -45.67435, + "y": 124.23941, + "index": 3, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 300, + "y": 180 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 104 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 106 + }, + "max": { + "#": 107 + } + }, + { + "x": -45.67435, + "y": 104.59367 + }, + { + "x": 645.67435, + "y": 255.40633 + }, + { + "x": 300, + "y": 180 + }, + [ + { + "#": 110 + }, + { + "#": 111 + } + ], + { + "x": -0.18738, + "y": 0.98229 + }, + { + "x": -0.98229, + "y": -0.18738 + }, + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 113 + }, + "angle": 0, + "vertices": { + "#": 114 + }, + "position": { + "#": 119 + }, + "force": { + "#": 120 + }, + "torque": 0, + "positionImpulse": { + "#": 121 + }, + "constraintImpulse": { + "#": 122 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 123 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 124 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 125 + }, + "bounds": { + "#": 127 + }, + "positionPrev": { + "#": 130 + }, + "anglePrev": 0, + "axes": { + "#": 131 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 112 + }, + "sleepCounter": 0 + }, + [ + { + "#": 112 + } + ], + [ + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + } + ], + { + "x": 280, + "y": 50, + "index": 0, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 320, + "y": 50, + "index": 1, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 320, + "y": 90, + "index": 2, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 280, + "y": 90, + "index": 3, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 300, + "y": 70 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 126 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 128 + }, + "max": { + "#": 129 + } + }, + { + "x": 280, + "y": 50 + }, + { + "x": 320, + "y": 90 + }, + { + "x": 300, + "y": 70 + }, + [ + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 135 + }, + "angle": 0.1885, + "vertices": { + "#": 136 + }, + "position": { + "#": 141 + }, + "force": { + "#": 142 + }, + "torque": 0, + "positionImpulse": { + "#": 143 + }, + "constraintImpulse": { + "#": 144 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 145 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 146 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 147 + }, + "bounds": { + "#": 149 + }, + "positionPrev": { + "#": 152 + }, + "anglePrev": 0.1885, + "axes": { + "#": 153 + }, + "area": 14000, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 134 + }, + "sleepCounter": 0 + }, + [ + { + "#": 134 + } + ], + [ + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + } + ], + { + "x": -41.92672, + "y": 274.59367, + "index": 0, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 645.67435, + "y": 405.76059, + "index": 1, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 641.92672, + "y": 425.40633, + "index": 2, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": -45.67435, + "y": 294.23941, + "index": 3, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 300, + "y": 350 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 148 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 150 + }, + "max": { + "#": 151 + } + }, + { + "x": -45.67435, + "y": 274.59367 + }, + { + "x": 645.67435, + "y": 425.40633 + }, + { + "x": 300, + "y": 350 + }, + [ + { + "#": 154 + }, + { + "#": 155 + } + ], + { + "x": -0.18738, + "y": 0.98229 + }, + { + "x": -0.98229, + "y": -0.18738 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 157 + }, + "angle": 0, + "vertices": { + "#": 158 + }, + "position": { + "#": 163 + }, + "force": { + "#": 164 + }, + "torque": 0, + "positionImpulse": { + "#": 165 + }, + "constraintImpulse": { + "#": 166 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 167 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.0005, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 168 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 169 + }, + "bounds": { + "#": 171 + }, + "positionPrev": { + "#": 174 + }, + "anglePrev": 0, + "axes": { + "#": 175 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 156 + }, + "sleepCounter": 0 + }, + [ + { + "#": 156 + } + ], + [ + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + } + ], + { + "x": 280, + "y": 230, + "index": 0, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 320, + "y": 230, + "index": 1, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 320, + "y": 270, + "index": 2, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 280, + "y": 270, + "index": 3, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 300, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 170 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 172 + }, + "max": { + "#": 173 + } + }, + { + "x": 280, + "y": 230 + }, + { + "x": 320, + "y": 270 + }, + { + "x": 300, + "y": 250 + }, + [ + { + "#": 176 + }, + { + "#": 177 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 179 + }, + "angle": 0.1885, + "vertices": { + "#": 180 + }, + "position": { + "#": 185 + }, + "force": { + "#": 186 + }, + "torque": 0, + "positionImpulse": { + "#": 187 + }, + "constraintImpulse": { + "#": 188 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 189 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 190 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 191 + }, + "bounds": { + "#": 193 + }, + "positionPrev": { + "#": 196 + }, + "anglePrev": 0.1885, + "axes": { + "#": 197 + }, + "area": 14000, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 178 + }, + "sleepCounter": 0 + }, + [ + { + "#": 178 + } + ], + [ + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + } + ], + { + "x": -41.92672, + "y": 444.59367, + "index": 0, + "body": { + "#": 178 + }, + "isInternal": false + }, + { + "x": 645.67435, + "y": 575.76059, + "index": 1, + "body": { + "#": 178 + }, + "isInternal": false + }, + { + "x": 641.92672, + "y": 595.40633, + "index": 2, + "body": { + "#": 178 + }, + "isInternal": false + }, + { + "x": -45.67435, + "y": 464.23941, + "index": 3, + "body": { + "#": 178 + }, + "isInternal": false + }, + { + "x": 300, + "y": 520 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 192 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 194 + }, + "max": { + "#": 195 + } + }, + { + "x": -45.67435, + "y": 444.59367 + }, + { + "x": 645.67435, + "y": 595.40633 + }, + { + "x": 300, + "y": 520 + }, + [ + { + "#": 198 + }, + { + "#": 199 + } + ], + { + "x": -0.18738, + "y": 0.98229 + }, + { + "x": -0.98229, + "y": -0.18738 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 201 + }, + "angle": 0, + "vertices": { + "#": 202 + }, + "position": { + "#": 207 + }, + "force": { + "#": 208 + }, + "torque": 0, + "positionImpulse": { + "#": 209 + }, + "constraintImpulse": { + "#": 210 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 211 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 212 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 213 + }, + "bounds": { + "#": 215 + }, + "positionPrev": { + "#": 218 + }, + "anglePrev": 0, + "axes": { + "#": 219 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 200 + }, + "sleepCounter": 0 + }, + [ + { + "#": 200 + } + ], + [ + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + } + ], + { + "x": 280, + "y": 410, + "index": 0, + "body": { + "#": 200 + }, + "isInternal": false + }, + { + "x": 320, + "y": 410, + "index": 1, + "body": { + "#": 200 + }, + "isInternal": false + }, + { + "x": 320, + "y": 450, + "index": 2, + "body": { + "#": 200 + }, + "isInternal": false + }, + { + "x": 280, + "y": 450, + "index": 3, + "body": { + "#": 200 + }, + "isInternal": false + }, + { + "x": 300, + "y": 430 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 214 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 216 + }, + "max": { + "#": 217 + } + }, + { + "x": 280, + "y": 410 + }, + { + "x": 320, + "y": 450 + }, + { + "x": 300, + "y": 430 + }, + [ + { + "#": 220 + }, + { + "#": 221 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 226 + }, + "max": { + "#": 227 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/friction/friction-10.json b/test/node/refs/friction/friction-10.json new file mode 100644 index 00000000..a1db3d99 --- /dev/null +++ b/test/node/refs/friction/friction-10.json @@ -0,0 +1,2283 @@ +[ + { + "id": 9, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 232 + }, + "composites": { + "#": 233 + }, + "label": "World", + "gravity": { + "#": 234 + }, + "bounds": { + "#": 235 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + }, + { + "#": 94 + }, + { + "#": 117 + }, + { + "#": 140 + }, + { + "#": 163 + }, + { + "#": 186 + }, + { + "#": 209 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + { + "id": 4, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 95 + }, + "angle": 0.1885, + "vertices": { + "#": 96 + }, + "position": { + "#": 101 + }, + "force": { + "#": 102 + }, + "torque": 0, + "positionImpulse": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 105 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 106 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 107 + }, + "bounds": { + "#": 109 + }, + "positionPrev": { + "#": 112 + }, + "anglePrev": 0.1885, + "axes": { + "#": 113 + }, + "area": 14000, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 94 + }, + "sleepCounter": 0, + "region": { + "#": 116 + } + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + } + ], + { + "x": -41.92672, + "y": 104.59367, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 645.67435, + "y": 235.76059, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 641.92672, + "y": 255.40633, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": -45.67435, + "y": 124.23941, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 300, + "y": 180 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 108 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 110 + }, + "max": { + "#": 111 + } + }, + { + "x": -45.67435, + "y": 104.59367 + }, + { + "x": 645.67435, + "y": 255.40633 + }, + { + "x": 300, + "y": 180 + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": -0.18738, + "y": 0.98229 + }, + { + "x": -0.98229, + "y": -0.18738 + }, + { + "id": "-1,13,2,5", + "startCol": -1, + "endCol": 13, + "startRow": 2, + "endRow": 5 + }, + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 118 + }, + "angle": 0, + "vertices": { + "#": 119 + }, + "position": { + "#": 124 + }, + "force": { + "#": 125 + }, + "torque": 0, + "positionImpulse": { + "#": 126 + }, + "constraintImpulse": { + "#": 127 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 128 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.001, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 129 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 130 + }, + "bounds": { + "#": 132 + }, + "positionPrev": { + "#": 135 + }, + "anglePrev": 0, + "axes": { + "#": 136 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 117 + }, + "sleepCounter": 0, + "region": { + "#": 139 + } + }, + [ + { + "#": 117 + } + ], + [ + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + } + ], + { + "x": 280, + "y": 67.73575, + "index": 0, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 320, + "y": 67.73575, + "index": 1, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 320, + "y": 107.73575, + "index": 2, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 280, + "y": 107.73575, + "index": 3, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 300, + "y": 87.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 131 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 133 + }, + "max": { + "#": 134 + } + }, + { + "x": 280, + "y": 67.73575 + }, + { + "x": 320, + "y": 107.73575 + }, + { + "x": 300, + "y": 84.82848 + }, + [ + { + "#": 137 + }, + { + "#": 138 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,1,2", + "startCol": 5, + "endCol": 6, + "startRow": 1, + "endRow": 2 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 141 + }, + "angle": 0.1885, + "vertices": { + "#": 142 + }, + "position": { + "#": 147 + }, + "force": { + "#": 148 + }, + "torque": 0, + "positionImpulse": { + "#": 149 + }, + "constraintImpulse": { + "#": 150 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 151 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 152 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 153 + }, + "bounds": { + "#": 155 + }, + "positionPrev": { + "#": 158 + }, + "anglePrev": 0.1885, + "axes": { + "#": 159 + }, + "area": 14000, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 140 + }, + "sleepCounter": 0, + "region": { + "#": 162 + } + }, + [ + { + "#": 140 + } + ], + [ + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + } + ], + { + "x": -41.92672, + "y": 274.59367, + "index": 0, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 645.67435, + "y": 405.76059, + "index": 1, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 641.92672, + "y": 425.40633, + "index": 2, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": -45.67435, + "y": 294.23941, + "index": 3, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 300, + "y": 350 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 154 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 156 + }, + "max": { + "#": 157 + } + }, + { + "x": -45.67435, + "y": 274.59367 + }, + { + "x": 645.67435, + "y": 425.40633 + }, + { + "x": 300, + "y": 350 + }, + [ + { + "#": 160 + }, + { + "#": 161 + } + ], + { + "x": -0.18738, + "y": 0.98229 + }, + { + "x": -0.98229, + "y": -0.18738 + }, + { + "id": "-1,13,5,8", + "startCol": -1, + "endCol": 13, + "startRow": 5, + "endRow": 8 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 164 + }, + "angle": 0, + "vertices": { + "#": 165 + }, + "position": { + "#": 170 + }, + "force": { + "#": 171 + }, + "torque": 0, + "positionImpulse": { + "#": 172 + }, + "constraintImpulse": { + "#": 173 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 174 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.0005, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 175 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 176 + }, + "bounds": { + "#": 178 + }, + "positionPrev": { + "#": 181 + }, + "anglePrev": 0, + "axes": { + "#": 182 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 163 + }, + "sleepCounter": 0, + "region": { + "#": 185 + } + }, + [ + { + "#": 163 + } + ], + [ + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + } + ], + { + "x": 280, + "y": 247.73575, + "index": 0, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 320, + "y": 247.73575, + "index": 1, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 320, + "y": 287.73575, + "index": 2, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 280, + "y": 287.73575, + "index": 3, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 300, + "y": 267.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 177 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 179 + }, + "max": { + "#": 180 + } + }, + { + "x": 280, + "y": 247.73575 + }, + { + "x": 320, + "y": 287.73575 + }, + { + "x": 300, + "y": 264.82848 + }, + [ + { + "#": 183 + }, + { + "#": 184 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,5,5", + "startCol": 5, + "endCol": 6, + "startRow": 5, + "endRow": 5 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 187 + }, + "angle": 0.1885, + "vertices": { + "#": 188 + }, + "position": { + "#": 193 + }, + "force": { + "#": 194 + }, + "torque": 0, + "positionImpulse": { + "#": 195 + }, + "constraintImpulse": { + "#": 196 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 197 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 198 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 199 + }, + "bounds": { + "#": 201 + }, + "positionPrev": { + "#": 204 + }, + "anglePrev": 0.1885, + "axes": { + "#": 205 + }, + "area": 14000, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 186 + }, + "sleepCounter": 0, + "region": { + "#": 208 + } + }, + [ + { + "#": 186 + } + ], + [ + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + } + ], + { + "x": -41.92672, + "y": 444.59367, + "index": 0, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 645.67435, + "y": 575.76059, + "index": 1, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 641.92672, + "y": 595.40633, + "index": 2, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": -45.67435, + "y": 464.23941, + "index": 3, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 300, + "y": 520 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 200 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 202 + }, + "max": { + "#": 203 + } + }, + { + "x": -45.67435, + "y": 444.59367 + }, + { + "x": 645.67435, + "y": 595.40633 + }, + { + "x": 300, + "y": 520 + }, + [ + { + "#": 206 + }, + { + "#": 207 + } + ], + { + "x": -0.18738, + "y": 0.98229 + }, + { + "x": -0.98229, + "y": -0.18738 + }, + { + "id": "-1,13,9,12", + "startCol": -1, + "endCol": 13, + "startRow": 9, + "endRow": 12 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 210 + }, + "angle": 0, + "vertices": { + "#": 211 + }, + "position": { + "#": 216 + }, + "force": { + "#": 217 + }, + "torque": 0, + "positionImpulse": { + "#": 218 + }, + "constraintImpulse": { + "#": 219 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 220 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 221 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 222 + }, + "bounds": { + "#": 224 + }, + "positionPrev": { + "#": 227 + }, + "anglePrev": 0, + "axes": { + "#": 228 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 209 + }, + "sleepCounter": 0, + "region": { + "#": 231 + } + }, + [ + { + "#": 209 + } + ], + [ + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + } + ], + { + "x": 280, + "y": 427.73575, + "index": 0, + "body": { + "#": 209 + }, + "isInternal": false + }, + { + "x": 320, + "y": 427.73575, + "index": 1, + "body": { + "#": 209 + }, + "isInternal": false + }, + { + "x": 320, + "y": 467.73575, + "index": 2, + "body": { + "#": 209 + }, + "isInternal": false + }, + { + "x": 280, + "y": 467.73575, + "index": 3, + "body": { + "#": 209 + }, + "isInternal": false + }, + { + "x": 300, + "y": 447.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 223 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 225 + }, + "max": { + "#": 226 + } + }, + { + "x": 280, + "y": 427.73575 + }, + { + "x": 320, + "y": 467.73575 + }, + { + "x": 300, + "y": 444.82848 + }, + [ + { + "#": 229 + }, + { + "#": 230 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,8,9", + "startCol": 5, + "endCol": 6, + "startRow": 8, + "endRow": 9 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 236 + }, + "max": { + "#": 237 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/gravity/gravity-0.json b/test/node/refs/gravity/gravity-0.json new file mode 100644 index 00000000..a3304e85 --- /dev/null +++ b/test/node/refs/gravity/gravity-0.json @@ -0,0 +1,25272 @@ +[ + { + "id": 16, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 90 + }, + "composites": { + "#": 91 + }, + "label": "World", + "gravity": { + "#": 2721 + }, + "bounds": { + "#": 2722 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [ + { + "#": 92 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 93 + }, + "constraints": { + "#": 2719 + }, + "composites": { + "#": 2720 + }, + "label": "Stack" + }, + [ + { + "#": 94 + }, + { + "#": 116 + }, + { + "#": 138 + }, + { + "#": 160 + }, + { + "#": 182 + }, + { + "#": 207 + }, + { + "#": 233 + }, + { + "#": 288 + }, + { + "#": 310 + }, + { + "#": 332 + }, + { + "#": 354 + }, + { + "#": 376 + }, + { + "#": 398 + }, + { + "#": 428 + }, + { + "#": 450 + }, + { + "#": 476 + }, + { + "#": 498 + }, + { + "#": 520 + }, + { + "#": 575 + }, + { + "#": 597 + }, + { + "#": 619 + }, + { + "#": 674 + }, + { + "#": 696 + }, + { + "#": 718 + }, + { + "#": 740 + }, + { + "#": 765 + }, + { + "#": 790 + }, + { + "#": 812 + }, + { + "#": 837 + }, + { + "#": 859 + }, + { + "#": 884 + }, + { + "#": 906 + }, + { + "#": 928 + }, + { + "#": 950 + }, + { + "#": 978 + }, + { + "#": 1000 + }, + { + "#": 1022 + }, + { + "#": 1044 + }, + { + "#": 1066 + }, + { + "#": 1088 + }, + { + "#": 1143 + }, + { + "#": 1165 + }, + { + "#": 1195 + }, + { + "#": 1217 + }, + { + "#": 1247 + }, + { + "#": 1269 + }, + { + "#": 1291 + }, + { + "#": 1313 + }, + { + "#": 1335 + }, + { + "#": 1365 + }, + { + "#": 1387 + }, + { + "#": 1409 + }, + { + "#": 1431 + }, + { + "#": 1453 + }, + { + "#": 1508 + }, + { + "#": 1530 + }, + { + "#": 1585 + }, + { + "#": 1607 + }, + { + "#": 1637 + }, + { + "#": 1659 + }, + { + "#": 1681 + }, + { + "#": 1703 + }, + { + "#": 1725 + }, + { + "#": 1751 + }, + { + "#": 1773 + }, + { + "#": 1795 + }, + { + "#": 1817 + }, + { + "#": 1843 + }, + { + "#": 1865 + }, + { + "#": 1887 + }, + { + "#": 1909 + }, + { + "#": 1964 + }, + { + "#": 2019 + }, + { + "#": 2045 + }, + { + "#": 2067 + }, + { + "#": 2089 + }, + { + "#": 2119 + }, + { + "#": 2144 + }, + { + "#": 2166 + }, + { + "#": 2196 + }, + { + "#": 2218 + }, + { + "#": 2240 + }, + { + "#": 2262 + }, + { + "#": 2288 + }, + { + "#": 2310 + }, + { + "#": 2338 + }, + { + "#": 2360 + }, + { + "#": 2382 + }, + { + "#": 2404 + }, + { + "#": 2426 + }, + { + "#": 2451 + }, + { + "#": 2473 + }, + { + "#": 2498 + }, + { + "#": 2520 + }, + { + "#": 2542 + }, + { + "#": 2568 + }, + { + "#": 2590 + }, + { + "#": 2645 + }, + { + "#": 2667 + }, + { + "#": 2689 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 96 + }, + "position": { + "#": 101 + }, + "force": { + "#": 102 + }, + "torque": 0, + "positionImpulse": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 105 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 106 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 107 + }, + "bounds": { + "#": 109 + }, + "positionPrev": { + "#": 112 + }, + "anglePrev": 0, + "axes": { + "#": 113 + }, + "area": 1534.90643, + "mass": 1.53491, + "inverseMass": 0.65151, + "inertia": 1587.6055, + "inverseInertia": 0.00063, + "parent": { + "#": 94 + }, + "sleepCounter": 0 + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + } + ], + { + "x": 20, + "y": 20, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 56.40316, + "y": 20, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 56.40316, + "y": 62.16409, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 20, + "y": 62.16409, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 38.20158, + "y": 41.08205 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 108 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 110 + }, + "max": { + "#": 111 + } + }, + { + "x": 20, + "y": 20 + }, + { + "x": 56.40316, + "y": 62.16409 + }, + { + "x": 38.20158, + "y": 41.08205 + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 117 + }, + "angle": 0, + "vertices": { + "#": 118 + }, + "position": { + "#": 123 + }, + "force": { + "#": 124 + }, + "torque": 0, + "positionImpulse": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 127 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 128 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 129 + }, + "bounds": { + "#": 131 + }, + "positionPrev": { + "#": 134 + }, + "anglePrev": 0, + "axes": { + "#": 135 + }, + "area": 2220.52879, + "mass": 2.22053, + "inverseMass": 0.45034, + "inertia": 3297.21813, + "inverseInertia": 0.0003, + "parent": { + "#": 116 + }, + "sleepCounter": 0 + }, + [ + { + "#": 116 + } + ], + [ + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + } + ], + { + "x": 56.40316, + "y": 20, + "index": 0, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 101.71901, + "y": 20, + "index": 1, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 101.71901, + "y": 69.00116, + "index": 2, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 56.40316, + "y": 69.00116, + "index": 3, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 79.06109, + "y": 44.50058 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 130 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 132 + }, + "max": { + "#": 133 + } + }, + { + "x": 56.40316, + "y": 20 + }, + { + "x": 101.71901, + "y": 69.00116 + }, + { + "x": 79.06109, + "y": 44.50058 + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 139 + }, + "angle": 0, + "vertices": { + "#": 140 + }, + "position": { + "#": 145 + }, + "force": { + "#": 146 + }, + "torque": 0, + "positionImpulse": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 149 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 150 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 151 + }, + "bounds": { + "#": 153 + }, + "positionPrev": { + "#": 156 + }, + "anglePrev": 0, + "axes": { + "#": 157 + }, + "area": 1140.1977, + "mass": 1.1402, + "inverseMass": 0.87704, + "inertia": 905.8525, + "inverseInertia": 0.0011, + "parent": { + "#": 138 + }, + "sleepCounter": 0 + }, + [ + { + "#": 138 + } + ], + [ + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + } + ], + { + "x": 101.71901, + "y": 20, + "index": 0, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 140.93981, + "y": 20, + "index": 1, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 140.93981, + "y": 49.07124, + "index": 2, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 101.71901, + "y": 49.07124, + "index": 3, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 121.32941, + "y": 34.53562 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 152 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 154 + }, + "max": { + "#": 155 + } + }, + { + "x": 101.71901, + "y": 20 + }, + { + "x": 140.93981, + "y": 49.07124 + }, + { + "x": 121.32941, + "y": 34.53562 + }, + [ + { + "#": 158 + }, + { + "#": 159 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 161 + }, + "angle": 0, + "vertices": { + "#": 162 + }, + "position": { + "#": 167 + }, + "force": { + "#": 168 + }, + "torque": 0, + "positionImpulse": { + "#": 169 + }, + "constraintImpulse": { + "#": 170 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 171 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 172 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 173 + }, + "bounds": { + "#": 175 + }, + "positionPrev": { + "#": 178 + }, + "anglePrev": 0, + "axes": { + "#": 179 + }, + "area": 752.4076, + "mass": 0.75241, + "inverseMass": 1.32907, + "inertia": 384.63687, + "inverseInertia": 0.0026, + "parent": { + "#": 160 + }, + "sleepCounter": 0 + }, + [ + { + "#": 160 + } + ], + [ + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + } + ], + { + "x": 140.93981, + "y": 20, + "index": 0, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 165.81713, + "y": 20, + "index": 1, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 165.81713, + "y": 50.24473, + "index": 2, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 140.93981, + "y": 50.24473, + "index": 3, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 153.37847, + "y": 35.12236 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 174 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 176 + }, + "max": { + "#": 177 + } + }, + { + "x": 140.93981, + "y": 20 + }, + { + "x": 165.81713, + "y": 50.24473 + }, + { + "x": 153.37847, + "y": 35.12236 + }, + [ + { + "#": 180 + }, + { + "#": 181 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 183 + }, + "angle": 0, + "vertices": { + "#": 184 + }, + "position": { + "#": 191 + }, + "force": { + "#": 192 + }, + "torque": 0, + "positionImpulse": { + "#": 193 + }, + "constraintImpulse": { + "#": 194 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 195 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 196 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 197 + }, + "bounds": { + "#": 199 + }, + "positionPrev": { + "#": 202 + }, + "anglePrev": 0, + "axes": { + "#": 203 + }, + "area": 2027.25418, + "mass": 2.02725, + "inverseMass": 0.49328, + "inertia": 2636.41196, + "inverseInertia": 0.00038, + "parent": { + "#": 182 + }, + "sleepCounter": 0 + }, + [ + { + "#": 182 + } + ], + [ + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + } + ], + { + "x": 214.19913, + "y": 61.901, + "index": 0, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 190.00813, + "y": 75.868, + "index": 1, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 165.81713, + "y": 61.901, + "index": 2, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 165.81713, + "y": 33.967, + "index": 3, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 190.00813, + "y": 20, + "index": 4, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 214.19913, + "y": 33.967, + "index": 5, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 190.00813, + "y": 47.934 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 198 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 200 + }, + "max": { + "#": 201 + } + }, + { + "x": 165.81713, + "y": 20 + }, + { + "x": 214.19913, + "y": 75.868 + }, + { + "x": 190.00813, + "y": 47.934 + }, + [ + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + } + ], + { + "x": -0.50001, + "y": -0.86602 + }, + { + "x": 0.50001, + "y": -0.86602 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 10, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 208 + }, + "angle": 0, + "vertices": { + "#": 209 + }, + "position": { + "#": 215 + }, + "force": { + "#": 216 + }, + "torque": 0, + "positionImpulse": { + "#": 217 + }, + "constraintImpulse": { + "#": 218 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 219 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 220 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 221 + }, + "bounds": { + "#": 223 + }, + "positionPrev": { + "#": 226 + }, + "anglePrev": 0, + "axes": { + "#": 227 + }, + "area": 4842.27229, + "mass": 4.84227, + "inverseMass": 0.20651, + "inertia": 15180.5655, + "inverseInertia": 0.00007, + "parent": { + "#": 207 + }, + "sleepCounter": 0 + }, + [ + { + "#": 207 + } + ], + [ + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + } + ], + { + "x": 291.52774, + "y": 89.446, + "index": 0, + "body": { + "#": 207 + }, + "isInternal": false + }, + { + "x": 241.07274, + "y": 105.84, + "index": 1, + "body": { + "#": 207 + }, + "isInternal": false + }, + { + "x": 209.88974, + "y": 62.92, + "index": 2, + "body": { + "#": 207 + }, + "isInternal": false + }, + { + "x": 241.07274, + "y": 20, + "index": 3, + "body": { + "#": 207 + }, + "isInternal": false + }, + { + "x": 291.52774, + "y": 36.394, + "index": 4, + "body": { + "#": 207 + }, + "isInternal": false + }, + { + "x": 255.01813, + "y": 62.92 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 222 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 224 + }, + "max": { + "#": 225 + } + }, + { + "x": 209.88974, + "y": 20 + }, + { + "x": 291.52774, + "y": 105.84 + }, + { + "x": 255.01813, + "y": 62.92 + }, + [ + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + } + ], + { + "x": 0.30902, + "y": 0.95106 + }, + { + "x": -0.80902, + "y": 0.58778 + }, + { + "x": -0.80902, + "y": -0.58778 + }, + { + "x": 0.30902, + "y": -0.95106 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 11, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 234 + }, + "angle": 0, + "vertices": { + "#": 235 + }, + "position": { + "#": 262 + }, + "force": { + "#": 263 + }, + "torque": 0, + "positionImpulse": { + "#": 264 + }, + "constraintImpulse": { + "#": 265 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 266 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 267 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 268 + }, + "circleRadius": 31.45923, + "bounds": { + "#": 270 + }, + "positionPrev": { + "#": 273 + }, + "anglePrev": 0, + "axes": { + "#": 274 + }, + "area": 3079.01783, + "mass": 3.07902, + "inverseMass": 0.32478, + "inertia": 6035.49394, + "inverseInertia": 0.00017, + "parent": { + "#": 233 + }, + "sleepCounter": 0 + }, + [ + { + "#": 233 + } + ], + [ + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + } + ], + { + "x": 353.98774, + "y": 55.251, + "index": 0, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 352.17274, + "y": 62.615, + "index": 1, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 348.64774, + "y": 69.33, + "index": 2, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 343.61874, + "y": 75.007, + "index": 3, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 337.37774, + "y": 79.315, + "index": 4, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 330.28674, + "y": 82.004, + "index": 5, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 322.75774, + "y": 82.918, + "index": 6, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 315.22874, + "y": 82.004, + "index": 7, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 308.13774, + "y": 79.315, + "index": 8, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 301.89674, + "y": 75.007, + "index": 9, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 296.86774, + "y": 69.33, + "index": 10, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 293.34274, + "y": 62.615, + "index": 11, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 291.52774, + "y": 55.251, + "index": 12, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 291.52774, + "y": 47.667, + "index": 13, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 293.34274, + "y": 40.303, + "index": 14, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 296.86774, + "y": 33.588, + "index": 15, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 301.89674, + "y": 27.911, + "index": 16, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 308.13774, + "y": 23.603, + "index": 17, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 315.22874, + "y": 20.914, + "index": 18, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 322.75774, + "y": 20, + "index": 19, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 330.28674, + "y": 20.914, + "index": 20, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 337.37774, + "y": 23.603, + "index": 21, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 343.61874, + "y": 27.911, + "index": 22, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 348.64774, + "y": 33.588, + "index": 23, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 352.17274, + "y": 40.303, + "index": 24, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 353.98774, + "y": 47.667, + "index": 25, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 322.75774, + "y": 51.459 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 269 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 271 + }, + "max": { + "#": 272 + } + }, + { + "x": 291.52774, + "y": 20 + }, + { + "x": 353.98774, + "y": 82.918 + }, + { + "x": 322.75774, + "y": 51.459 + }, + [ + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + } + ], + { + "x": -0.97094, + "y": -0.23931 + }, + { + "x": -0.88542, + "y": -0.4648 + }, + { + "x": -0.74854, + "y": -0.66309 + }, + { + "x": -0.56808, + "y": -0.82297 + }, + { + "x": -0.35457, + "y": -0.93503 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35457, + "y": -0.93503 + }, + { + "x": 0.56808, + "y": -0.82297 + }, + { + "x": 0.74854, + "y": -0.66309 + }, + { + "x": 0.88542, + "y": -0.4648 + }, + { + "x": 0.97094, + "y": -0.23931 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 289 + }, + "angle": 0, + "vertices": { + "#": 290 + }, + "position": { + "#": 295 + }, + "force": { + "#": 296 + }, + "torque": 0, + "positionImpulse": { + "#": 297 + }, + "constraintImpulse": { + "#": 298 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 299 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 300 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 301 + }, + "bounds": { + "#": 303 + }, + "positionPrev": { + "#": 306 + }, + "anglePrev": 0, + "axes": { + "#": 307 + }, + "area": 1329.41676, + "mass": 1.32942, + "inverseMass": 0.75221, + "inertia": 1383.51246, + "inverseInertia": 0.00072, + "parent": { + "#": 288 + }, + "sleepCounter": 0 + }, + [ + { + "#": 288 + } + ], + [ + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + } + ], + { + "x": 353.98774, + "y": 20, + "index": 0, + "body": { + "#": 288 + }, + "isInternal": false + }, + { + "x": 402.76539, + "y": 20, + "index": 1, + "body": { + "#": 288 + }, + "isInternal": false + }, + { + "x": 402.76539, + "y": 47.25463, + "index": 2, + "body": { + "#": 288 + }, + "isInternal": false + }, + { + "x": 353.98774, + "y": 47.25463, + "index": 3, + "body": { + "#": 288 + }, + "isInternal": false + }, + { + "x": 378.37657, + "y": 33.62731 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 302 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 304 + }, + "max": { + "#": 305 + } + }, + { + "x": 353.98774, + "y": 20 + }, + { + "x": 402.76539, + "y": 47.25463 + }, + { + "x": 378.37657, + "y": 33.62731 + }, + [ + { + "#": 308 + }, + { + "#": 309 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 311 + }, + "angle": 0, + "vertices": { + "#": 312 + }, + "position": { + "#": 317 + }, + "force": { + "#": 318 + }, + "torque": 0, + "positionImpulse": { + "#": 319 + }, + "constraintImpulse": { + "#": 320 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 321 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 322 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 323 + }, + "bounds": { + "#": 325 + }, + "positionPrev": { + "#": 328 + }, + "anglePrev": 0, + "axes": { + "#": 329 + }, + "area": 2858.63236, + "mass": 2.85863, + "inverseMass": 0.34982, + "inertia": 11948.09601, + "inverseInertia": 0.00008, + "parent": { + "#": 310 + }, + "sleepCounter": 0 + }, + [ + { + "#": 310 + } + ], + [ + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + } + ], + { + "x": 402.76539, + "y": 20, + "index": 0, + "body": { + "#": 310 + }, + "isInternal": false + }, + { + "x": 511.61999, + "y": 20, + "index": 1, + "body": { + "#": 310 + }, + "isInternal": false + }, + { + "x": 511.61999, + "y": 46.26102, + "index": 2, + "body": { + "#": 310 + }, + "isInternal": false + }, + { + "x": 402.76539, + "y": 46.26102, + "index": 3, + "body": { + "#": 310 + }, + "isInternal": false + }, + { + "x": 457.19269, + "y": 33.13051 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 324 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 326 + }, + "max": { + "#": 327 + } + }, + { + "x": 402.76539, + "y": 20 + }, + { + "x": 511.61999, + "y": 46.26102 + }, + { + "x": 457.19269, + "y": 33.13051 + }, + [ + { + "#": 330 + }, + { + "#": 331 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 333 + }, + "angle": 0, + "vertices": { + "#": 334 + }, + "position": { + "#": 339 + }, + "force": { + "#": 340 + }, + "torque": 0, + "positionImpulse": { + "#": 341 + }, + "constraintImpulse": { + "#": 342 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 343 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 344 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 345 + }, + "bounds": { + "#": 347 + }, + "positionPrev": { + "#": 350 + }, + "anglePrev": 0, + "axes": { + "#": 351 + }, + "area": 926.83946, + "mass": 0.92684, + "inverseMass": 1.07894, + "inertia": 640.73396, + "inverseInertia": 0.00156, + "parent": { + "#": 332 + }, + "sleepCounter": 0 + }, + [ + { + "#": 332 + } + ], + [ + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + } + ], + { + "x": 511.61999, + "y": 20, + "index": 0, + "body": { + "#": 332 + }, + "isInternal": false + }, + { + "x": 550.37578, + "y": 20, + "index": 1, + "body": { + "#": 332 + }, + "isInternal": false + }, + { + "x": 550.37578, + "y": 43.91487, + "index": 2, + "body": { + "#": 332 + }, + "isInternal": false + }, + { + "x": 511.61999, + "y": 43.91487, + "index": 3, + "body": { + "#": 332 + }, + "isInternal": false + }, + { + "x": 530.99788, + "y": 31.95743 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 346 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 348 + }, + "max": { + "#": 349 + } + }, + { + "x": 511.61999, + "y": 20 + }, + { + "x": 550.37578, + "y": 43.91487 + }, + { + "x": 530.99788, + "y": 31.95743 + }, + [ + { + "#": 352 + }, + { + "#": 353 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 15, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 355 + }, + "angle": 0, + "vertices": { + "#": 356 + }, + "position": { + "#": 361 + }, + "force": { + "#": 362 + }, + "torque": 0, + "positionImpulse": { + "#": 363 + }, + "constraintImpulse": { + "#": 364 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 365 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 366 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 367 + }, + "bounds": { + "#": 369 + }, + "positionPrev": { + "#": 372 + }, + "anglePrev": 0, + "axes": { + "#": 373 + }, + "area": 1290.45014, + "mass": 1.29045, + "inverseMass": 0.77492, + "inertia": 1110.21456, + "inverseInertia": 0.0009, + "parent": { + "#": 354 + }, + "sleepCounter": 0 + }, + [ + { + "#": 354 + } + ], + [ + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + } + ], + { + "x": 550.37578, + "y": 20, + "index": 0, + "body": { + "#": 354 + }, + "isInternal": false + }, + { + "x": 586.14609, + "y": 20, + "index": 1, + "body": { + "#": 354 + }, + "isInternal": false + }, + { + "x": 586.14609, + "y": 56.076, + "index": 2, + "body": { + "#": 354 + }, + "isInternal": false + }, + { + "x": 550.37578, + "y": 56.076, + "index": 3, + "body": { + "#": 354 + }, + "isInternal": false + }, + { + "x": 568.26093, + "y": 38.038 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 368 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 370 + }, + "max": { + "#": 371 + } + }, + { + "x": 550.37578, + "y": 20 + }, + { + "x": 586.14609, + "y": 56.076 + }, + { + "x": 568.26093, + "y": 38.038 + }, + [ + { + "#": 374 + }, + { + "#": 375 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 16, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 377 + }, + "angle": 0, + "vertices": { + "#": 378 + }, + "position": { + "#": 383 + }, + "force": { + "#": 384 + }, + "torque": 0, + "positionImpulse": { + "#": 385 + }, + "constraintImpulse": { + "#": 386 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 387 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 388 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 389 + }, + "bounds": { + "#": 391 + }, + "positionPrev": { + "#": 394 + }, + "anglePrev": 0, + "axes": { + "#": 395 + }, + "area": 1148.29259, + "mass": 1.14829, + "inverseMass": 0.87086, + "inertia": 897.94757, + "inverseInertia": 0.00111, + "parent": { + "#": 376 + }, + "sleepCounter": 0 + }, + [ + { + "#": 376 + } + ], + [ + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + } + ], + { + "x": 586.14609, + "y": 20, + "index": 0, + "body": { + "#": 376 + }, + "isInternal": false + }, + { + "x": 616.70101, + "y": 20, + "index": 1, + "body": { + "#": 376 + }, + "isInternal": false + }, + { + "x": 616.70101, + "y": 57.58128, + "index": 2, + "body": { + "#": 376 + }, + "isInternal": false + }, + { + "x": 586.14609, + "y": 57.58128, + "index": 3, + "body": { + "#": 376 + }, + "isInternal": false + }, + { + "x": 601.42355, + "y": 38.79064 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 390 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 392 + }, + "max": { + "#": 393 + } + }, + { + "x": 586.14609, + "y": 20 + }, + { + "x": 616.70101, + "y": 57.58128 + }, + { + "x": 601.42355, + "y": 38.79064 + }, + [ + { + "#": 396 + }, + { + "#": 397 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 17, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 399 + }, + "angle": 0, + "vertices": { + "#": 400 + }, + "position": { + "#": 408 + }, + "force": { + "#": 409 + }, + "torque": 0, + "positionImpulse": { + "#": 410 + }, + "constraintImpulse": { + "#": 411 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 412 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 413 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 414 + }, + "bounds": { + "#": 416 + }, + "positionPrev": { + "#": 419 + }, + "anglePrev": 0, + "axes": { + "#": 420 + }, + "area": 1926.78789, + "mass": 1.92679, + "inverseMass": 0.519, + "inertia": 2372.87433, + "inverseInertia": 0.00042, + "parent": { + "#": 398 + }, + "sleepCounter": 0 + }, + [ + { + "#": 398 + } + ], + [ + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + } + ], + { + "x": 665.83032, + "y": 57.383, + "index": 0, + "body": { + "#": 398 + }, + "isInternal": false + }, + { + "x": 647.82732, + "y": 71.74, + "index": 1, + "body": { + "#": 398 + }, + "isInternal": false + }, + { + "x": 625.37732, + "y": 66.616, + "index": 2, + "body": { + "#": 398 + }, + "isInternal": false + }, + { + "x": 615.38732, + "y": 45.87, + "index": 3, + "body": { + "#": 398 + }, + "isInternal": false + }, + { + "x": 625.37732, + "y": 25.124, + "index": 4, + "body": { + "#": 398 + }, + "isInternal": false + }, + { + "x": 647.82732, + "y": 20, + "index": 5, + "body": { + "#": 398 + }, + "isInternal": false + }, + { + "x": 665.83032, + "y": 34.357, + "index": 6, + "body": { + "#": 398 + }, + "isInternal": false + }, + { + "x": 641.92251, + "y": 45.87 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 415 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 417 + }, + "max": { + "#": 418 + } + }, + { + "x": 615.38732, + "y": 20 + }, + { + "x": 665.83032, + "y": 71.74 + }, + { + "x": 641.92251, + "y": 45.87 + }, + [ + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + } + ], + { + "x": 0.62349, + "y": 0.78183 + }, + { + "x": -0.22252, + "y": 0.97493 + }, + { + "x": -0.90098, + "y": 0.43386 + }, + { + "x": -0.90098, + "y": -0.43386 + }, + { + "x": -0.22252, + "y": -0.97493 + }, + { + "x": 0.62349, + "y": -0.78183 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 18, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 429 + }, + "angle": 0, + "vertices": { + "#": 430 + }, + "position": { + "#": 434 + }, + "force": { + "#": 435 + }, + "torque": 0, + "positionImpulse": { + "#": 436 + }, + "constraintImpulse": { + "#": 437 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 438 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 439 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 440 + }, + "bounds": { + "#": 442 + }, + "positionPrev": { + "#": 445 + }, + "anglePrev": 0, + "axes": { + "#": 446 + }, + "area": 1097.75588, + "mass": 1.09776, + "inverseMass": 0.91095, + "inertia": 927.66175, + "inverseInertia": 0.00108, + "parent": { + "#": 428 + }, + "sleepCounter": 0 + }, + [ + { + "#": 428 + } + ], + [ + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + } + ], + { + "x": 702.16782, + "y": 70.35, + "index": 0, + "body": { + "#": 428 + }, + "isInternal": false + }, + { + "x": 658.56282, + "y": 45.175, + "index": 1, + "body": { + "#": 428 + }, + "isInternal": false + }, + { + "x": 702.16782, + "y": 20, + "index": 2, + "body": { + "#": 428 + }, + "isInternal": false + }, + { + "x": 687.63282, + "y": 45.175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 441 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 443 + }, + "max": { + "#": 444 + } + }, + { + "x": 658.56282, + "y": 20 + }, + { + "x": 702.16782, + "y": 70.35 + }, + { + "x": 687.63282, + "y": 45.175 + }, + [ + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + } + ], + { + "x": -0.49999, + "y": 0.86603 + }, + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 19, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 451 + }, + "angle": 0, + "vertices": { + "#": 452 + }, + "position": { + "#": 458 + }, + "force": { + "#": 459 + }, + "torque": 0, + "positionImpulse": { + "#": 460 + }, + "constraintImpulse": { + "#": 461 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 462 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 463 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 464 + }, + "bounds": { + "#": 466 + }, + "positionPrev": { + "#": 469 + }, + "anglePrev": 0, + "axes": { + "#": 470 + }, + "area": 986.58013, + "mass": 0.98658, + "inverseMass": 1.0136, + "inertia": 630.16497, + "inverseInertia": 0.00159, + "parent": { + "#": 450 + }, + "sleepCounter": 0 + }, + [ + { + "#": 450 + } + ], + [ + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + } + ], + { + "x": 737.07277, + "y": 51.346, + "index": 0, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 714.29777, + "y": 58.746, + "index": 1, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 700.22277, + "y": 39.373, + "index": 2, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 714.29777, + "y": 20, + "index": 3, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 737.07277, + "y": 27.4, + "index": 4, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 720.59282, + "y": 39.373 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 465 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 467 + }, + "max": { + "#": 468 + } + }, + { + "x": 700.22277, + "y": 20 + }, + { + "x": 737.07277, + "y": 58.746 + }, + { + "x": 720.59282, + "y": 39.373 + }, + [ + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + } + ], + { + "x": 0.30902, + "y": 0.95106 + }, + { + "x": -0.80902, + "y": 0.58778 + }, + { + "x": -0.80902, + "y": -0.58778 + }, + { + "x": 0.30902, + "y": -0.95106 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 20, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 477 + }, + "angle": 0, + "vertices": { + "#": 478 + }, + "position": { + "#": 483 + }, + "force": { + "#": 484 + }, + "torque": 0, + "positionImpulse": { + "#": 485 + }, + "constraintImpulse": { + "#": 486 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 487 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 488 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 489 + }, + "bounds": { + "#": 491 + }, + "positionPrev": { + "#": 494 + }, + "anglePrev": 0, + "axes": { + "#": 495 + }, + "area": 1201.45424, + "mass": 1.20145, + "inverseMass": 0.83232, + "inertia": 962.3282, + "inverseInertia": 0.00104, + "parent": { + "#": 476 + }, + "sleepCounter": 0 + }, + [ + { + "#": 476 + } + ], + [ + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + } + ], + { + "x": 771.73477, + "y": 54.662, + "index": 0, + "body": { + "#": 476 + }, + "isInternal": false + }, + { + "x": 737.07277, + "y": 54.662, + "index": 1, + "body": { + "#": 476 + }, + "isInternal": false + }, + { + "x": 737.07277, + "y": 20, + "index": 2, + "body": { + "#": 476 + }, + "isInternal": false + }, + { + "x": 771.73477, + "y": 20, + "index": 3, + "body": { + "#": 476 + }, + "isInternal": false + }, + { + "x": 754.40377, + "y": 37.331 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 490 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 492 + }, + "max": { + "#": 493 + } + }, + { + "x": 737.07277, + "y": 20 + }, + { + "x": 771.73477, + "y": 54.662 + }, + { + "x": 754.40377, + "y": 37.331 + }, + [ + { + "#": 496 + }, + { + "#": 497 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 21, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 499 + }, + "angle": 0, + "vertices": { + "#": 500 + }, + "position": { + "#": 505 + }, + "force": { + "#": 506 + }, + "torque": 0, + "positionImpulse": { + "#": 507 + }, + "constraintImpulse": { + "#": 508 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 509 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 510 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 511 + }, + "bounds": { + "#": 513 + }, + "positionPrev": { + "#": 516 + }, + "anglePrev": 0, + "axes": { + "#": 517 + }, + "area": 1990.73335, + "mass": 1.99073, + "inverseMass": 0.50233, + "inertia": 6259.05792, + "inverseInertia": 0.00016, + "parent": { + "#": 498 + }, + "sleepCounter": 0 + }, + [ + { + "#": 498 + } + ], + [ + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + } + ], + { + "x": 771.73477, + "y": 20, + "index": 0, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 866.5585, + "y": 20, + "index": 1, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 866.5585, + "y": 40.99404, + "index": 2, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 771.73477, + "y": 40.99404, + "index": 3, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 819.14664, + "y": 30.49702 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 512 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 514 + }, + "max": { + "#": 515 + } + }, + { + "x": 771.73477, + "y": 20 + }, + { + "x": 866.5585, + "y": 40.99404 + }, + { + "x": 819.14664, + "y": 30.49702 + }, + [ + { + "#": 518 + }, + { + "#": 519 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 22, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 521 + }, + "angle": 0, + "vertices": { + "#": 522 + }, + "position": { + "#": 549 + }, + "force": { + "#": 550 + }, + "torque": 0, + "positionImpulse": { + "#": 551 + }, + "constraintImpulse": { + "#": 552 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 553 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 554 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 555 + }, + "circleRadius": 48.51042, + "bounds": { + "#": 557 + }, + "positionPrev": { + "#": 560 + }, + "anglePrev": 0, + "axes": { + "#": 561 + }, + "area": 7321.24308, + "mass": 7.32124, + "inverseMass": 0.13659, + "inertia": 34123.853, + "inverseInertia": 0.00003, + "parent": { + "#": 520 + }, + "sleepCounter": 0 + }, + [ + { + "#": 520 + } + ], + [ + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + } + ], + { + "x": 962.8725, + "y": 74.357, + "index": 0, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 960.0735, + "y": 85.712, + "index": 1, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 954.6385, + "y": 96.067, + "index": 2, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 946.8835, + "y": 104.821, + "index": 3, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 937.2595, + "y": 111.464, + "index": 4, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 926.3245, + "y": 115.611, + "index": 5, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 914.7155, + "y": 117.02, + "index": 6, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 903.1065, + "y": 115.611, + "index": 7, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 892.1715, + "y": 111.464, + "index": 8, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 882.5475, + "y": 104.821, + "index": 9, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 874.7925, + "y": 96.067, + "index": 10, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 869.3575, + "y": 85.712, + "index": 11, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 866.5585, + "y": 74.357, + "index": 12, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 866.5585, + "y": 62.663, + "index": 13, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 869.3575, + "y": 51.308, + "index": 14, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 874.7925, + "y": 40.953, + "index": 15, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 882.5475, + "y": 32.199, + "index": 16, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 892.1715, + "y": 25.556, + "index": 17, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 903.1065, + "y": 21.409, + "index": 18, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 914.7155, + "y": 20, + "index": 19, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 926.3245, + "y": 21.409, + "index": 20, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 937.2595, + "y": 25.556, + "index": 21, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 946.8835, + "y": 32.199, + "index": 22, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 954.6385, + "y": 40.953, + "index": 23, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 960.0735, + "y": 51.308, + "index": 24, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 962.8725, + "y": 62.663, + "index": 25, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 914.7155, + "y": 68.51 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 556 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 558 + }, + "max": { + "#": 559 + } + }, + { + "x": 866.5585, + "y": 20 + }, + { + "x": 962.8725, + "y": 117.02 + }, + { + "x": 914.7155, + "y": 68.51 + }, + [ + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + } + ], + { + "x": -0.97094, + "y": -0.23934 + }, + { + "x": -0.88545, + "y": -0.46474 + }, + { + "x": -0.74853, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12049, + "y": -0.99271 + }, + { + "x": 0.12049, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74853, + "y": -0.66311 + }, + { + "x": 0.88545, + "y": -0.46474 + }, + { + "x": 0.97094, + "y": -0.23934 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 23, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 576 + }, + "angle": 0, + "vertices": { + "#": 577 + }, + "position": { + "#": 582 + }, + "force": { + "#": 583 + }, + "torque": 0, + "positionImpulse": { + "#": 584 + }, + "constraintImpulse": { + "#": 585 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 586 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 587 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 588 + }, + "bounds": { + "#": 590 + }, + "positionPrev": { + "#": 593 + }, + "anglePrev": 0, + "axes": { + "#": 594 + }, + "area": 2034.76377, + "mass": 2.03476, + "inverseMass": 0.49146, + "inertia": 5208.09959, + "inverseInertia": 0.00019, + "parent": { + "#": 575 + }, + "sleepCounter": 0 + }, + [ + { + "#": 575 + } + ], + [ + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + } + ], + { + "x": 962.8725, + "y": 20, + "index": 0, + "body": { + "#": 575 + }, + "isInternal": false + }, + { + "x": 1047.10519, + "y": 20, + "index": 1, + "body": { + "#": 575 + }, + "isInternal": false + }, + { + "x": 1047.10519, + "y": 44.15646, + "index": 2, + "body": { + "#": 575 + }, + "isInternal": false + }, + { + "x": 962.8725, + "y": 44.15646, + "index": 3, + "body": { + "#": 575 + }, + "isInternal": false + }, + { + "x": 1004.98884, + "y": 32.07823 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 589 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 591 + }, + "max": { + "#": 592 + } + }, + { + "x": 962.8725, + "y": 20 + }, + { + "x": 1047.10519, + "y": 44.15646 + }, + { + "x": 1004.98884, + "y": 32.07823 + }, + [ + { + "#": 595 + }, + { + "#": 596 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 24, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 598 + }, + "angle": 0, + "vertices": { + "#": 599 + }, + "position": { + "#": 604 + }, + "force": { + "#": 605 + }, + "torque": 0, + "positionImpulse": { + "#": 606 + }, + "constraintImpulse": { + "#": 607 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 608 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 609 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 610 + }, + "bounds": { + "#": 612 + }, + "positionPrev": { + "#": 615 + }, + "anglePrev": 0, + "axes": { + "#": 616 + }, + "area": 1030.45569, + "mass": 1.03046, + "inverseMass": 0.97044, + "inertia": 987.30914, + "inverseInertia": 0.00101, + "parent": { + "#": 597 + }, + "sleepCounter": 0 + }, + [ + { + "#": 597 + } + ], + [ + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + } + ], + { + "x": 1047.10519, + "y": 20, + "index": 0, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 1096.49176, + "y": 20, + "index": 1, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 1096.49176, + "y": 40.8651, + "index": 2, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 1047.10519, + "y": 40.8651, + "index": 3, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 1071.79847, + "y": 30.43255 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 611 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 613 + }, + "max": { + "#": 614 + } + }, + { + "x": 1047.10519, + "y": 20 + }, + { + "x": 1096.49176, + "y": 40.8651 + }, + { + "x": 1071.79847, + "y": 30.43255 + }, + [ + { + "#": 617 + }, + { + "#": 618 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 25, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 620 + }, + "angle": 0, + "vertices": { + "#": 621 + }, + "position": { + "#": 648 + }, + "force": { + "#": 649 + }, + "torque": 0, + "positionImpulse": { + "#": 650 + }, + "constraintImpulse": { + "#": 651 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 652 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 653 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 654 + }, + "circleRadius": 26.33166, + "bounds": { + "#": 656 + }, + "positionPrev": { + "#": 659 + }, + "anglePrev": 0, + "axes": { + "#": 660 + }, + "area": 2157.16533, + "mass": 2.15717, + "inverseMass": 0.46357, + "inertia": 2962.47895, + "inverseInertia": 0.00034, + "parent": { + "#": 619 + }, + "sleepCounter": 0 + }, + [ + { + "#": 619 + } + ], + [ + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + } + ], + { + "x": 72.28, + "y": 146.526, + "index": 0, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 70.761, + "y": 152.689, + "index": 1, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 67.811, + "y": 158.31, + "index": 2, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 63.601, + "y": 163.062, + "index": 3, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 58.377, + "y": 166.668, + "index": 4, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 52.442, + "y": 168.919, + "index": 5, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 46.14, + "y": 169.684, + "index": 6, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 39.838, + "y": 168.919, + "index": 7, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 33.903, + "y": 166.668, + "index": 8, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 28.679, + "y": 163.062, + "index": 9, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 24.469, + "y": 158.31, + "index": 10, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 21.519, + "y": 152.689, + "index": 11, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 20, + "y": 146.526, + "index": 12, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 20, + "y": 140.178, + "index": 13, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 21.519, + "y": 134.015, + "index": 14, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 24.469, + "y": 128.394, + "index": 15, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 28.679, + "y": 123.642, + "index": 16, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 33.903, + "y": 120.036, + "index": 17, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 39.838, + "y": 117.785, + "index": 18, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 46.14, + "y": 117.02, + "index": 19, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 52.442, + "y": 117.785, + "index": 20, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 58.377, + "y": 120.036, + "index": 21, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 63.601, + "y": 123.642, + "index": 22, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 67.811, + "y": 128.394, + "index": 23, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 70.761, + "y": 134.015, + "index": 24, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 72.28, + "y": 140.178, + "index": 25, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 46.14, + "y": 143.352 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 655 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 657 + }, + "max": { + "#": 658 + } + }, + { + "x": 20, + "y": 117.02 + }, + { + "x": 72.28, + "y": 169.684 + }, + { + "x": 46.14, + "y": 143.352 + }, + [ + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + } + ], + { + "x": -0.97094, + "y": -0.23931 + }, + { + "x": -0.88546, + "y": -0.46471 + }, + { + "x": -0.7485, + "y": -0.66313 + }, + { + "x": -0.56808, + "y": -0.82297 + }, + { + "x": -0.35463, + "y": -0.93501 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35463, + "y": -0.93501 + }, + { + "x": 0.56808, + "y": -0.82297 + }, + { + "x": 0.7485, + "y": -0.66313 + }, + { + "x": 0.88546, + "y": -0.46471 + }, + { + "x": 0.97094, + "y": -0.23931 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 26, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 675 + }, + "angle": 0, + "vertices": { + "#": 676 + }, + "position": { + "#": 681 + }, + "force": { + "#": 682 + }, + "torque": 0, + "positionImpulse": { + "#": 683 + }, + "constraintImpulse": { + "#": 684 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 685 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 686 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 687 + }, + "bounds": { + "#": 689 + }, + "positionPrev": { + "#": 692 + }, + "anglePrev": 0, + "axes": { + "#": 693 + }, + "area": 2399.6282, + "mass": 2.39963, + "inverseMass": 0.41673, + "inertia": 3838.81032, + "inverseInertia": 0.00026, + "parent": { + "#": 674 + }, + "sleepCounter": 0 + }, + [ + { + "#": 674 + } + ], + [ + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + } + ], + { + "x": 121.266, + "y": 166.006, + "index": 0, + "body": { + "#": 674 + }, + "isInternal": false + }, + { + "x": 72.28, + "y": 166.006, + "index": 1, + "body": { + "#": 674 + }, + "isInternal": false + }, + { + "x": 72.28, + "y": 117.02, + "index": 2, + "body": { + "#": 674 + }, + "isInternal": false + }, + { + "x": 121.266, + "y": 117.02, + "index": 3, + "body": { + "#": 674 + }, + "isInternal": false + }, + { + "x": 96.773, + "y": 141.513 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 688 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 690 + }, + "max": { + "#": 691 + } + }, + { + "x": 72.28, + "y": 117.02 + }, + { + "x": 121.266, + "y": 166.006 + }, + { + "x": 96.773, + "y": 141.513 + }, + [ + { + "#": 694 + }, + { + "#": 695 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 27, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 697 + }, + "angle": 0, + "vertices": { + "#": 698 + }, + "position": { + "#": 703 + }, + "force": { + "#": 704 + }, + "torque": 0, + "positionImpulse": { + "#": 705 + }, + "constraintImpulse": { + "#": 706 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 707 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 708 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 709 + }, + "bounds": { + "#": 711 + }, + "positionPrev": { + "#": 714 + }, + "anglePrev": 0, + "axes": { + "#": 715 + }, + "area": 1489.78438, + "mass": 1.48978, + "inverseMass": 0.67124, + "inertia": 1501.63859, + "inverseInertia": 0.00067, + "parent": { + "#": 696 + }, + "sleepCounter": 0 + }, + [ + { + "#": 696 + } + ], + [ + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + } + ], + { + "x": 121.266, + "y": 117.02, + "index": 0, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 156.67894, + "y": 117.02, + "index": 1, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 156.67894, + "y": 159.08893, + "index": 2, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 121.266, + "y": 159.08893, + "index": 3, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 138.97247, + "y": 138.05447 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 710 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 712 + }, + "max": { + "#": 713 + } + }, + { + "x": 121.266, + "y": 117.02 + }, + { + "x": 156.67894, + "y": 159.08893 + }, + { + "x": 138.97247, + "y": 138.05447 + }, + [ + { + "#": 716 + }, + { + "#": 717 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 28, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 719 + }, + "angle": 0, + "vertices": { + "#": 720 + }, + "position": { + "#": 725 + }, + "force": { + "#": 726 + }, + "torque": 0, + "positionImpulse": { + "#": 727 + }, + "constraintImpulse": { + "#": 728 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 729 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 730 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 731 + }, + "bounds": { + "#": 733 + }, + "positionPrev": { + "#": 736 + }, + "anglePrev": 0, + "axes": { + "#": 737 + }, + "area": 1765.36753, + "mass": 1.76537, + "inverseMass": 0.56645, + "inertia": 2077.83253, + "inverseInertia": 0.00048, + "parent": { + "#": 718 + }, + "sleepCounter": 0 + }, + [ + { + "#": 718 + } + ], + [ + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + } + ], + { + "x": 156.67894, + "y": 117.02, + "index": 0, + "body": { + "#": 718 + }, + "isInternal": false + }, + { + "x": 198.44283, + "y": 117.02, + "index": 1, + "body": { + "#": 718 + }, + "isInternal": false + }, + { + "x": 198.44283, + "y": 159.29019, + "index": 2, + "body": { + "#": 718 + }, + "isInternal": false + }, + { + "x": 156.67894, + "y": 159.29019, + "index": 3, + "body": { + "#": 718 + }, + "isInternal": false + }, + { + "x": 177.56088, + "y": 138.1551 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 732 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 734 + }, + "max": { + "#": 735 + } + }, + { + "x": 156.67894, + "y": 117.02 + }, + { + "x": 198.44283, + "y": 159.29019 + }, + { + "x": 177.56088, + "y": 138.1551 + }, + [ + { + "#": 738 + }, + { + "#": 739 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 29, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 741 + }, + "angle": 0, + "vertices": { + "#": 742 + }, + "position": { + "#": 749 + }, + "force": { + "#": 750 + }, + "torque": 0, + "positionImpulse": { + "#": 751 + }, + "constraintImpulse": { + "#": 752 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 753 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 754 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 755 + }, + "bounds": { + "#": 757 + }, + "positionPrev": { + "#": 760 + }, + "anglePrev": 0, + "axes": { + "#": 761 + }, + "area": 1919.54576, + "mass": 1.91955, + "inverseMass": 0.52096, + "inertia": 2363.70788, + "inverseInertia": 0.00042, + "parent": { + "#": 740 + }, + "sleepCounter": 0 + }, + [ + { + "#": 740 + } + ], + [ + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + } + ], + { + "x": 245.52283, + "y": 157.792, + "index": 0, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 221.98283, + "y": 171.382, + "index": 1, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 198.44283, + "y": 157.792, + "index": 2, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 198.44283, + "y": 130.61, + "index": 3, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 221.98283, + "y": 117.02, + "index": 4, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 245.52283, + "y": 130.61, + "index": 5, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 221.98283, + "y": 144.201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 756 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 758 + }, + "max": { + "#": 759 + } + }, + { + "x": 198.44283, + "y": 117.02 + }, + { + "x": 245.52283, + "y": 171.382 + }, + { + "x": 221.98283, + "y": 144.201 + }, + [ + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + } + ], + { + "x": -0.49998, + "y": -0.86604 + }, + { + "x": 0.49998, + "y": -0.86604 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 30, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 766 + }, + "angle": 0, + "vertices": { + "#": 767 + }, + "position": { + "#": 774 + }, + "force": { + "#": 775 + }, + "torque": 0, + "positionImpulse": { + "#": 776 + }, + "constraintImpulse": { + "#": 777 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 778 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 779 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 780 + }, + "bounds": { + "#": 782 + }, + "positionPrev": { + "#": 785 + }, + "anglePrev": 0, + "axes": { + "#": 786 + }, + "area": 6052.328, + "mass": 6.05233, + "inverseMass": 0.16523, + "inertia": 23498.5885, + "inverseInertia": 0.00004, + "parent": { + "#": 765 + }, + "sleepCounter": 0 + }, + [ + { + "#": 765 + } + ], + [ + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + } + ], + { + "x": 329.12083, + "y": 189.418, + "index": 0, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 287.32183, + "y": 213.55, + "index": 1, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 245.52283, + "y": 189.418, + "index": 2, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 245.52283, + "y": 141.152, + "index": 3, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 287.32183, + "y": 117.02, + "index": 4, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 329.12083, + "y": 141.152, + "index": 5, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 287.32183, + "y": 165.285 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 781 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 783 + }, + "max": { + "#": 784 + } + }, + { + "x": 245.52283, + "y": 117.02 + }, + { + "x": 329.12083, + "y": 213.55 + }, + { + "x": 287.32183, + "y": 165.285 + }, + [ + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + } + ], + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": 0.49999, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 31, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 791 + }, + "angle": 0, + "vertices": { + "#": 792 + }, + "position": { + "#": 797 + }, + "force": { + "#": 798 + }, + "torque": 0, + "positionImpulse": { + "#": 799 + }, + "constraintImpulse": { + "#": 800 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 801 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 802 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 803 + }, + "bounds": { + "#": 805 + }, + "positionPrev": { + "#": 808 + }, + "anglePrev": 0, + "axes": { + "#": 809 + }, + "area": 2220.02331, + "mass": 2.22002, + "inverseMass": 0.45045, + "inertia": 3297.61061, + "inverseInertia": 0.0003, + "parent": { + "#": 790 + }, + "sleepCounter": 0 + }, + [ + { + "#": 790 + } + ], + [ + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + } + ], + { + "x": 329.12083, + "y": 117.02, + "index": 0, + "body": { + "#": 790 + }, + "isInternal": false + }, + { + "x": 374.27219, + "y": 117.02, + "index": 1, + "body": { + "#": 790 + }, + "isInternal": false + }, + { + "x": 374.27219, + "y": 166.18847, + "index": 2, + "body": { + "#": 790 + }, + "isInternal": false + }, + { + "x": 329.12083, + "y": 166.18847, + "index": 3, + "body": { + "#": 790 + }, + "isInternal": false + }, + { + "x": 351.69651, + "y": 141.60423 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 804 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 806 + }, + "max": { + "#": 807 + } + }, + { + "x": 329.12083, + "y": 117.02 + }, + { + "x": 374.27219, + "y": 166.18847 + }, + { + "x": 351.69651, + "y": 141.60423 + }, + [ + { + "#": 810 + }, + { + "#": 811 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 32, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 813 + }, + "angle": 0, + "vertices": { + "#": 814 + }, + "position": { + "#": 821 + }, + "force": { + "#": 822 + }, + "torque": 0, + "positionImpulse": { + "#": 823 + }, + "constraintImpulse": { + "#": 824 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 825 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 826 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 827 + }, + "bounds": { + "#": 829 + }, + "positionPrev": { + "#": 832 + }, + "anglePrev": 0, + "axes": { + "#": 833 + }, + "area": 2601.10745, + "mass": 2.60111, + "inverseMass": 0.38445, + "inertia": 4340.23704, + "inverseInertia": 0.00023, + "parent": { + "#": 812 + }, + "sleepCounter": 0 + }, + [ + { + "#": 812 + } + ], + [ + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + } + ], + { + "x": 429.07619, + "y": 164.482, + "index": 0, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 401.67419, + "y": 180.302, + "index": 1, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 374.27219, + "y": 164.482, + "index": 2, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 374.27219, + "y": 132.84, + "index": 3, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 401.67419, + "y": 117.02, + "index": 4, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 429.07619, + "y": 132.84, + "index": 5, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 401.67419, + "y": 148.661 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 828 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 830 + }, + "max": { + "#": 831 + } + }, + { + "x": 374.27219, + "y": 117.02 + }, + { + "x": 429.07619, + "y": 180.302 + }, + { + "x": 401.67419, + "y": 148.661 + }, + [ + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + } + ], + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": 0.49999, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 33, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 838 + }, + "angle": 0, + "vertices": { + "#": 839 + }, + "position": { + "#": 844 + }, + "force": { + "#": 845 + }, + "torque": 0, + "positionImpulse": { + "#": 846 + }, + "constraintImpulse": { + "#": 847 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 848 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 849 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 850 + }, + "bounds": { + "#": 852 + }, + "positionPrev": { + "#": 855 + }, + "anglePrev": 0, + "axes": { + "#": 856 + }, + "area": 1413.30884, + "mass": 1.41331, + "inverseMass": 0.70756, + "inertia": 1331.62791, + "inverseInertia": 0.00075, + "parent": { + "#": 837 + }, + "sleepCounter": 0 + }, + [ + { + "#": 837 + } + ], + [ + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + } + ], + { + "x": 466.67019, + "y": 154.614, + "index": 0, + "body": { + "#": 837 + }, + "isInternal": false + }, + { + "x": 429.07619, + "y": 154.614, + "index": 1, + "body": { + "#": 837 + }, + "isInternal": false + }, + { + "x": 429.07619, + "y": 117.02, + "index": 2, + "body": { + "#": 837 + }, + "isInternal": false + }, + { + "x": 466.67019, + "y": 117.02, + "index": 3, + "body": { + "#": 837 + }, + "isInternal": false + }, + { + "x": 447.87319, + "y": 135.817 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 851 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 853 + }, + "max": { + "#": 854 + } + }, + { + "x": 429.07619, + "y": 117.02 + }, + { + "x": 466.67019, + "y": 154.614 + }, + { + "x": 447.87319, + "y": 135.817 + }, + [ + { + "#": 857 + }, + { + "#": 858 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 34, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 860 + }, + "angle": 0, + "vertices": { + "#": 861 + }, + "position": { + "#": 868 + }, + "force": { + "#": 869 + }, + "torque": 0, + "positionImpulse": { + "#": 870 + }, + "constraintImpulse": { + "#": 871 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 872 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 873 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 874 + }, + "bounds": { + "#": 876 + }, + "positionPrev": { + "#": 879 + }, + "anglePrev": 0, + "axes": { + "#": 880 + }, + "area": 5460.80875, + "mass": 5.46081, + "inverseMass": 0.18312, + "inertia": 19129.81619, + "inverseInertia": 0.00005, + "parent": { + "#": 859 + }, + "sleepCounter": 0 + }, + [ + { + "#": 859 + } + ], + [ + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + } + ], + { + "x": 546.07819, + "y": 185.789, + "index": 0, + "body": { + "#": 859 + }, + "isInternal": false + }, + { + "x": 506.37419, + "y": 208.712, + "index": 1, + "body": { + "#": 859 + }, + "isInternal": false + }, + { + "x": 466.67019, + "y": 185.789, + "index": 2, + "body": { + "#": 859 + }, + "isInternal": false + }, + { + "x": 466.67019, + "y": 139.943, + "index": 3, + "body": { + "#": 859 + }, + "isInternal": false + }, + { + "x": 506.37419, + "y": 117.02, + "index": 4, + "body": { + "#": 859 + }, + "isInternal": false + }, + { + "x": 546.07819, + "y": 139.943, + "index": 5, + "body": { + "#": 859 + }, + "isInternal": false + }, + { + "x": 506.37419, + "y": 162.866 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 875 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 877 + }, + "max": { + "#": 878 + } + }, + { + "x": 466.67019, + "y": 117.02 + }, + { + "x": 546.07819, + "y": 208.712 + }, + { + "x": 506.37419, + "y": 162.866 + }, + [ + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + } + ], + { + "x": -0.5, + "y": -0.86603 + }, + { + "x": 0.5, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 35, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 885 + }, + "angle": 0, + "vertices": { + "#": 886 + }, + "position": { + "#": 891 + }, + "force": { + "#": 892 + }, + "torque": 0, + "positionImpulse": { + "#": 893 + }, + "constraintImpulse": { + "#": 894 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 895 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 896 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 897 + }, + "bounds": { + "#": 899 + }, + "positionPrev": { + "#": 902 + }, + "anglePrev": 0, + "axes": { + "#": 903 + }, + "area": 451.61379, + "mass": 0.45161, + "inverseMass": 2.21428, + "inertia": 136.71143, + "inverseInertia": 0.00731, + "parent": { + "#": 884 + }, + "sleepCounter": 0 + }, + [ + { + "#": 884 + } + ], + [ + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + }, + { + "#": 890 + } + ], + { + "x": 546.07819, + "y": 117.02, + "index": 0, + "body": { + "#": 884 + }, + "isInternal": false + }, + { + "x": 566.24871, + "y": 117.02, + "index": 1, + "body": { + "#": 884 + }, + "isInternal": false + }, + { + "x": 566.24871, + "y": 139.40979, + "index": 2, + "body": { + "#": 884 + }, + "isInternal": false + }, + { + "x": 546.07819, + "y": 139.40979, + "index": 3, + "body": { + "#": 884 + }, + "isInternal": false + }, + { + "x": 556.16345, + "y": 128.21489 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 898 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 900 + }, + "max": { + "#": 901 + } + }, + { + "x": 546.07819, + "y": 117.02 + }, + { + "x": 566.24871, + "y": 139.40979 + }, + { + "x": 556.16345, + "y": 128.21489 + }, + [ + { + "#": 904 + }, + { + "#": 905 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 36, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 907 + }, + "angle": 0, + "vertices": { + "#": 908 + }, + "position": { + "#": 913 + }, + "force": { + "#": 914 + }, + "torque": 0, + "positionImpulse": { + "#": 915 + }, + "constraintImpulse": { + "#": 916 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 917 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 918 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 919 + }, + "bounds": { + "#": 921 + }, + "positionPrev": { + "#": 924 + }, + "anglePrev": 0, + "axes": { + "#": 925 + }, + "area": 3021.67907, + "mass": 3.02168, + "inverseMass": 0.33094, + "inertia": 11331.77016, + "inverseInertia": 0.00009, + "parent": { + "#": 906 + }, + "sleepCounter": 0 + }, + [ + { + "#": 906 + } + ], + [ + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + }, + { + "#": 912 + } + ], + { + "x": 566.24871, + "y": 117.02, + "index": 0, + "body": { + "#": 906 + }, + "isInternal": false + }, + { + "x": 668.08188, + "y": 117.02, + "index": 1, + "body": { + "#": 906 + }, + "isInternal": false + }, + { + "x": 668.08188, + "y": 146.69284, + "index": 2, + "body": { + "#": 906 + }, + "isInternal": false + }, + { + "x": 566.24871, + "y": 146.69284, + "index": 3, + "body": { + "#": 906 + }, + "isInternal": false + }, + { + "x": 617.16529, + "y": 131.85642 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 920 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 922 + }, + "max": { + "#": 923 + } + }, + { + "x": 566.24871, + "y": 117.02 + }, + { + "x": 668.08188, + "y": 146.69284 + }, + { + "x": 617.16529, + "y": 131.85642 + }, + [ + { + "#": 926 + }, + { + "#": 927 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 37, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 929 + }, + "angle": 0, + "vertices": { + "#": 930 + }, + "position": { + "#": 935 + }, + "force": { + "#": 936 + }, + "torque": 0, + "positionImpulse": { + "#": 937 + }, + "constraintImpulse": { + "#": 938 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 939 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 940 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 941 + }, + "bounds": { + "#": 943 + }, + "positionPrev": { + "#": 946 + }, + "anglePrev": 0, + "axes": { + "#": 947 + }, + "area": 856.73964, + "mass": 0.85674, + "inverseMass": 1.16722, + "inertia": 589.10598, + "inverseInertia": 0.0017, + "parent": { + "#": 928 + }, + "sleepCounter": 0 + }, + [ + { + "#": 928 + } + ], + [ + { + "#": 931 + }, + { + "#": 932 + }, + { + "#": 933 + }, + { + "#": 934 + } + ], + { + "x": 668.08188, + "y": 117.02, + "index": 0, + "body": { + "#": 928 + }, + "isInternal": false + }, + { + "x": 708.15338, + "y": 117.02, + "index": 1, + "body": { + "#": 928 + }, + "isInternal": false + }, + { + "x": 708.15338, + "y": 138.40027, + "index": 2, + "body": { + "#": 928 + }, + "isInternal": false + }, + { + "x": 668.08188, + "y": 138.40027, + "index": 3, + "body": { + "#": 928 + }, + "isInternal": false + }, + { + "x": 688.11763, + "y": 127.71014 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 942 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 944 + }, + "max": { + "#": 945 + } + }, + { + "x": 668.08188, + "y": 117.02 + }, + { + "x": 708.15338, + "y": 138.40027 + }, + { + "x": 688.11763, + "y": 127.71014 + }, + [ + { + "#": 948 + }, + { + "#": 949 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 38, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 951 + }, + "angle": 0, + "vertices": { + "#": 952 + }, + "position": { + "#": 961 + }, + "force": { + "#": 962 + }, + "torque": 0, + "positionImpulse": { + "#": 963 + }, + "constraintImpulse": { + "#": 964 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 965 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 966 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 967 + }, + "bounds": { + "#": 969 + }, + "positionPrev": { + "#": 972 + }, + "anglePrev": 0, + "axes": { + "#": 973 + }, + "area": 4088.59995, + "mass": 4.0886, + "inverseMass": 0.24458, + "inertia": 10666.41244, + "inverseInertia": 0.00009, + "parent": { + "#": 950 + }, + "sleepCounter": 0 + }, + [ + { + "#": 950 + } + ], + [ + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + }, + { + "#": 959 + }, + { + "#": 960 + } + ], + { + "x": 778.40538, + "y": 166.696, + "index": 0, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 757.82938, + "y": 187.272, + "index": 1, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 728.72938, + "y": 187.272, + "index": 2, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 708.15338, + "y": 166.696, + "index": 3, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 708.15338, + "y": 137.596, + "index": 4, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 728.72938, + "y": 117.02, + "index": 5, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 757.82938, + "y": 117.02, + "index": 6, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 778.40538, + "y": 137.596, + "index": 7, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 743.27938, + "y": 152.146 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 968 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 970 + }, + "max": { + "#": 971 + } + }, + { + "x": 708.15338, + "y": 117.02 + }, + { + "x": 778.40538, + "y": 187.272 + }, + { + "x": 743.27938, + "y": 152.146 + }, + [ + { + "#": 974 + }, + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 39, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 979 + }, + "angle": 0, + "vertices": { + "#": 980 + }, + "position": { + "#": 985 + }, + "force": { + "#": 986 + }, + "torque": 0, + "positionImpulse": { + "#": 987 + }, + "constraintImpulse": { + "#": 988 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 989 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 990 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 991 + }, + "bounds": { + "#": 993 + }, + "positionPrev": { + "#": 996 + }, + "anglePrev": 0, + "axes": { + "#": 997 + }, + "area": 1965.14243, + "mass": 1.96514, + "inverseMass": 0.50887, + "inertia": 5563.36836, + "inverseInertia": 0.00018, + "parent": { + "#": 978 + }, + "sleepCounter": 0 + }, + [ + { + "#": 978 + } + ], + [ + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + } + ], + { + "x": 778.40538, + "y": 117.02, + "index": 0, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 867.90966, + "y": 117.02, + "index": 1, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 867.90966, + "y": 138.97585, + "index": 2, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 778.40538, + "y": 138.97585, + "index": 3, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 823.15752, + "y": 127.99792 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 992 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 994 + }, + "max": { + "#": 995 + } + }, + { + "x": 778.40538, + "y": 117.02 + }, + { + "x": 867.90966, + "y": 138.97585 + }, + { + "x": 823.15752, + "y": 127.99792 + }, + [ + { + "#": 998 + }, + { + "#": 999 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 40, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1001 + }, + "angle": 0, + "vertices": { + "#": 1002 + }, + "position": { + "#": 1006 + }, + "force": { + "#": 1007 + }, + "torque": 0, + "positionImpulse": { + "#": 1008 + }, + "constraintImpulse": { + "#": 1009 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1010 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1011 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1012 + }, + "bounds": { + "#": 1014 + }, + "positionPrev": { + "#": 1017 + }, + "anglePrev": 0, + "axes": { + "#": 1018 + }, + "area": 1492.52562, + "mass": 1.49253, + "inverseMass": 0.67001, + "inertia": 1714.83247, + "inverseInertia": 0.00058, + "parent": { + "#": 1000 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1000 + } + ], + [ + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + } + ], + { + "x": 910.27966, + "y": 175.73, + "index": 0, + "body": { + "#": 1000 + }, + "isInternal": false + }, + { + "x": 859.43566, + "y": 146.375, + "index": 1, + "body": { + "#": 1000 + }, + "isInternal": false + }, + { + "x": 910.27966, + "y": 117.02, + "index": 2, + "body": { + "#": 1000 + }, + "isInternal": false + }, + { + "x": 893.33166, + "y": 146.375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1013 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1015 + }, + "max": { + "#": 1016 + } + }, + { + "x": 859.43566, + "y": 117.02 + }, + { + "x": 910.27966, + "y": 175.73 + }, + { + "x": 893.33166, + "y": 146.375 + }, + [ + { + "#": 1019 + }, + { + "#": 1020 + }, + { + "#": 1021 + } + ], + { + "x": -0.5, + "y": 0.86602 + }, + { + "x": -0.5, + "y": -0.86602 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 41, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1023 + }, + "angle": 0, + "vertices": { + "#": 1024 + }, + "position": { + "#": 1029 + }, + "force": { + "#": 1030 + }, + "torque": 0, + "positionImpulse": { + "#": 1031 + }, + "constraintImpulse": { + "#": 1032 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1033 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1034 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1035 + }, + "bounds": { + "#": 1037 + }, + "positionPrev": { + "#": 1040 + }, + "anglePrev": 0, + "axes": { + "#": 1041 + }, + "area": 942.00657, + "mass": 0.94201, + "inverseMass": 1.06156, + "inertia": 767.50816, + "inverseInertia": 0.0013, + "parent": { + "#": 1022 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1022 + } + ], + [ + { + "#": 1025 + }, + { + "#": 1026 + }, + { + "#": 1027 + }, + { + "#": 1028 + } + ], + { + "x": 910.27966, + "y": 117.02, + "index": 0, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 931.33959, + "y": 117.02, + "index": 1, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 931.33959, + "y": 161.74981, + "index": 2, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 910.27966, + "y": 161.74981, + "index": 3, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 920.80963, + "y": 139.3849 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1036 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1038 + }, + "max": { + "#": 1039 + } + }, + { + "x": 910.27966, + "y": 117.02 + }, + { + "x": 931.33959, + "y": 161.74981 + }, + { + "x": 920.80963, + "y": 139.3849 + }, + [ + { + "#": 1042 + }, + { + "#": 1043 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 42, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1045 + }, + "angle": 0, + "vertices": { + "#": 1046 + }, + "position": { + "#": 1051 + }, + "force": { + "#": 1052 + }, + "torque": 0, + "positionImpulse": { + "#": 1053 + }, + "constraintImpulse": { + "#": 1054 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1055 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1056 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1057 + }, + "bounds": { + "#": 1059 + }, + "positionPrev": { + "#": 1062 + }, + "anglePrev": 0, + "axes": { + "#": 1063 + }, + "area": 2898.41559, + "mass": 2.89842, + "inverseMass": 0.34502, + "inertia": 12806.46533, + "inverseInertia": 0.00008, + "parent": { + "#": 1044 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1044 + } + ], + [ + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + } + ], + { + "x": 931.33959, + "y": 117.02, + "index": 0, + "body": { + "#": 1044 + }, + "isInternal": false + }, + { + "x": 1043.53558, + "y": 117.02, + "index": 1, + "body": { + "#": 1044 + }, + "isInternal": false + }, + { + "x": 1043.53558, + "y": 142.8535, + "index": 2, + "body": { + "#": 1044 + }, + "isInternal": false + }, + { + "x": 931.33959, + "y": 142.8535, + "index": 3, + "body": { + "#": 1044 + }, + "isInternal": false + }, + { + "x": 987.43759, + "y": 129.93675 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1058 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1060 + }, + "max": { + "#": 1061 + } + }, + { + "x": 931.33959, + "y": 117.02 + }, + { + "x": 1043.53558, + "y": 142.8535 + }, + { + "x": 987.43759, + "y": 129.93675 + }, + [ + { + "#": 1064 + }, + { + "#": 1065 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 43, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1067 + }, + "angle": 0, + "vertices": { + "#": 1068 + }, + "position": { + "#": 1072 + }, + "force": { + "#": 1073 + }, + "torque": 0, + "positionImpulse": { + "#": 1074 + }, + "constraintImpulse": { + "#": 1075 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1076 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1077 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1078 + }, + "bounds": { + "#": 1080 + }, + "positionPrev": { + "#": 1083 + }, + "anglePrev": 0, + "axes": { + "#": 1084 + }, + "area": 842.52305, + "mass": 0.84252, + "inverseMass": 1.18691, + "inertia": 546.43901, + "inverseInertia": 0.00183, + "parent": { + "#": 1066 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1066 + } + ], + [ + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + } + ], + { + "x": 1075.36975, + "y": 161.13, + "index": 0, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 1037.16875, + "y": 139.075, + "index": 1, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 1075.36975, + "y": 117.02, + "index": 2, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 1062.63608, + "y": 139.075 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1079 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1081 + }, + "max": { + "#": 1082 + } + }, + { + "x": 1037.16875, + "y": 117.02 + }, + { + "x": 1075.36975, + "y": 161.13 + }, + { + "x": 1062.63608, + "y": 139.075 + }, + [ + { + "#": 1085 + }, + { + "#": 1086 + }, + { + "#": 1087 + } + ], + { + "x": -0.49999, + "y": 0.86603 + }, + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 44, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1089 + }, + "angle": 0, + "vertices": { + "#": 1090 + }, + "position": { + "#": 1117 + }, + "force": { + "#": 1118 + }, + "torque": 0, + "positionImpulse": { + "#": 1119 + }, + "constraintImpulse": { + "#": 1120 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1121 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1122 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1123 + }, + "circleRadius": 46.27315, + "bounds": { + "#": 1125 + }, + "positionPrev": { + "#": 1128 + }, + "anglePrev": 0, + "axes": { + "#": 1129 + }, + "area": 6661.54248, + "mass": 6.66154, + "inverseMass": 0.15012, + "inertia": 28251.27242, + "inverseInertia": 0.00004, + "parent": { + "#": 1088 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1088 + } + ], + [ + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + }, + { + "#": 1108 + }, + { + "#": 1109 + }, + { + "#": 1110 + }, + { + "#": 1111 + }, + { + "#": 1112 + }, + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + } + ], + { + "x": 1167.24175, + "y": 168.871, + "index": 0, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1164.57175, + "y": 179.702, + "index": 1, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1159.38775, + "y": 189.579, + "index": 2, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1151.99075, + "y": 197.929, + "index": 3, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1142.80975, + "y": 204.266, + "index": 4, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1132.37975, + "y": 208.222, + "index": 5, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1121.30575, + "y": 209.566, + "index": 6, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1110.23175, + "y": 208.222, + "index": 7, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1099.80175, + "y": 204.266, + "index": 8, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1090.62075, + "y": 197.929, + "index": 9, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1083.22375, + "y": 189.579, + "index": 10, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1078.03975, + "y": 179.702, + "index": 11, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1075.36975, + "y": 168.871, + "index": 12, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1075.36975, + "y": 157.715, + "index": 13, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1078.03975, + "y": 146.884, + "index": 14, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1083.22375, + "y": 137.007, + "index": 15, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1090.62075, + "y": 128.657, + "index": 16, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1099.80175, + "y": 122.32, + "index": 17, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1110.23175, + "y": 118.364, + "index": 18, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1121.30575, + "y": 117.02, + "index": 19, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1132.37975, + "y": 118.364, + "index": 20, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1142.80975, + "y": 122.32, + "index": 21, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1151.99075, + "y": 128.657, + "index": 22, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1159.38775, + "y": 137.007, + "index": 23, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1164.57175, + "y": 146.884, + "index": 24, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1167.24175, + "y": 157.715, + "index": 25, + "body": { + "#": 1088 + }, + "isInternal": false + }, + { + "x": 1121.30575, + "y": 163.293 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1124 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1126 + }, + "max": { + "#": 1127 + } + }, + { + "x": 1075.36975, + "y": 117.02 + }, + { + "x": 1167.24175, + "y": 209.566 + }, + { + "x": 1121.30575, + "y": 163.293 + }, + [ + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88545, + "y": -0.46473 + }, + { + "x": -0.74853, + "y": -0.6631 + }, + { + "x": -0.56805, + "y": -0.82299 + }, + { + "x": -0.35464, + "y": -0.935 + }, + { + "x": -0.12048, + "y": -0.99272 + }, + { + "x": 0.12048, + "y": -0.99272 + }, + { + "x": 0.35464, + "y": -0.935 + }, + { + "x": 0.56805, + "y": -0.82299 + }, + { + "x": 0.74853, + "y": -0.6631 + }, + { + "x": 0.88545, + "y": -0.46473 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 45, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1144 + }, + "angle": 0, + "vertices": { + "#": 1145 + }, + "position": { + "#": 1150 + }, + "force": { + "#": 1151 + }, + "torque": 0, + "positionImpulse": { + "#": 1152 + }, + "constraintImpulse": { + "#": 1153 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1154 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1155 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1156 + }, + "bounds": { + "#": 1158 + }, + "positionPrev": { + "#": 1161 + }, + "anglePrev": 0, + "axes": { + "#": 1162 + }, + "area": 1051.31113, + "mass": 1.05131, + "inverseMass": 0.95119, + "inertia": 749.58313, + "inverseInertia": 0.00133, + "parent": { + "#": 1143 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1143 + } + ], + [ + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + } + ], + { + "x": 20, + "y": 213.55, + "index": 0, + "body": { + "#": 1143 + }, + "isInternal": false + }, + { + "x": 49.54835, + "y": 213.55, + "index": 1, + "body": { + "#": 1143 + }, + "isInternal": false + }, + { + "x": 49.54835, + "y": 249.12935, + "index": 2, + "body": { + "#": 1143 + }, + "isInternal": false + }, + { + "x": 20, + "y": 249.12935, + "index": 3, + "body": { + "#": 1143 + }, + "isInternal": false + }, + { + "x": 34.77418, + "y": 231.33967 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1157 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1159 + }, + "max": { + "#": 1160 + } + }, + { + "x": 20, + "y": 213.55 + }, + { + "x": 49.54835, + "y": 249.12935 + }, + { + "x": 34.77418, + "y": 231.33967 + }, + [ + { + "#": 1163 + }, + { + "#": 1164 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 46, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1166 + }, + "angle": 0, + "vertices": { + "#": 1167 + }, + "position": { + "#": 1175 + }, + "force": { + "#": 1176 + }, + "torque": 0, + "positionImpulse": { + "#": 1177 + }, + "constraintImpulse": { + "#": 1178 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1179 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1180 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1181 + }, + "bounds": { + "#": 1183 + }, + "positionPrev": { + "#": 1186 + }, + "anglePrev": 0, + "axes": { + "#": 1187 + }, + "area": 6245.524, + "mass": 6.24552, + "inverseMass": 0.16011, + "inertia": 24931.28629, + "inverseInertia": 0.00004, + "parent": { + "#": 1165 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1165 + } + ], + [ + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + } + ], + { + "x": 137.99982, + "y": 280.855, + "index": 0, + "body": { + "#": 1165 + }, + "isInternal": false + }, + { + "x": 105.58782, + "y": 306.704, + "index": 1, + "body": { + "#": 1165 + }, + "isInternal": false + }, + { + "x": 65.16982, + "y": 297.478, + "index": 2, + "body": { + "#": 1165 + }, + "isInternal": false + }, + { + "x": 47.18282, + "y": 260.127, + "index": 3, + "body": { + "#": 1165 + }, + "isInternal": false + }, + { + "x": 65.16982, + "y": 222.776, + "index": 4, + "body": { + "#": 1165 + }, + "isInternal": false + }, + { + "x": 105.58782, + "y": 213.55, + "index": 5, + "body": { + "#": 1165 + }, + "isInternal": false + }, + { + "x": 137.99982, + "y": 239.399, + "index": 6, + "body": { + "#": 1165 + }, + "isInternal": false + }, + { + "x": 94.95685, + "y": 260.127 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1182 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1184 + }, + "max": { + "#": 1185 + } + }, + { + "x": 47.18282, + "y": 213.55 + }, + { + "x": 137.99982, + "y": 306.704 + }, + { + "x": 94.95685, + "y": 260.127 + }, + [ + { + "#": 1188 + }, + { + "#": 1189 + }, + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + }, + { + "#": 1194 + } + ], + { + "x": 0.62351, + "y": 0.78182 + }, + { + "x": -0.22254, + "y": 0.97492 + }, + { + "x": -0.90097, + "y": 0.43388 + }, + { + "x": -0.90097, + "y": -0.43388 + }, + { + "x": -0.22254, + "y": -0.97492 + }, + { + "x": 0.62351, + "y": -0.78182 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 47, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1196 + }, + "angle": 0, + "vertices": { + "#": 1197 + }, + "position": { + "#": 1201 + }, + "force": { + "#": 1202 + }, + "torque": 0, + "positionImpulse": { + "#": 1203 + }, + "constraintImpulse": { + "#": 1204 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1205 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1206 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1207 + }, + "bounds": { + "#": 1209 + }, + "positionPrev": { + "#": 1212 + }, + "anglePrev": 0, + "axes": { + "#": 1213 + }, + "area": 1100.44355, + "mass": 1.10044, + "inverseMass": 0.90872, + "inertia": 932.20976, + "inverseInertia": 0.00107, + "parent": { + "#": 1195 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1195 + } + ], + [ + { + "#": 1198 + }, + { + "#": 1199 + }, + { + "#": 1200 + } + ], + { + "x": 174.38148, + "y": 263.962, + "index": 0, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 130.72348, + "y": 238.756, + "index": 1, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 174.38148, + "y": 213.55, + "index": 2, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 159.82882, + "y": 238.756 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1208 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1210 + }, + "max": { + "#": 1211 + } + }, + { + "x": 130.72348, + "y": 213.55 + }, + { + "x": 174.38148, + "y": 263.962 + }, + { + "x": 159.82882, + "y": 238.756 + }, + [ + { + "#": 1214 + }, + { + "#": 1215 + }, + { + "#": 1216 + } + ], + { + "x": -0.5, + "y": 0.86603 + }, + { + "x": -0.5, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 48, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1218 + }, + "angle": 0, + "vertices": { + "#": 1219 + }, + "position": { + "#": 1227 + }, + "force": { + "#": 1228 + }, + "torque": 0, + "positionImpulse": { + "#": 1229 + }, + "constraintImpulse": { + "#": 1230 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1231 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1232 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1233 + }, + "bounds": { + "#": 1235 + }, + "positionPrev": { + "#": 1238 + }, + "anglePrev": 0, + "axes": { + "#": 1239 + }, + "area": 4695.38663, + "mass": 4.69539, + "inverseMass": 0.21298, + "inertia": 14091.25388, + "inverseInertia": 0.00007, + "parent": { + "#": 1217 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1217 + } + ], + [ + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + }, + { + "#": 1226 + } + ], + { + "x": 251.07436, + "y": 271.908, + "index": 0, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 222.97136, + "y": 294.32, + "index": 1, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 187.92636, + "y": 286.321, + "index": 2, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 172.33036, + "y": 253.935, + "index": 3, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 187.92636, + "y": 221.549, + "index": 4, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 222.97136, + "y": 213.55, + "index": 5, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 251.07436, + "y": 235.962, + "index": 6, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 213.75348, + "y": 253.935 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1234 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1236 + }, + "max": { + "#": 1237 + } + }, + { + "x": 172.33036, + "y": 213.55 + }, + { + "x": 251.07436, + "y": 294.32 + }, + { + "x": 213.75348, + "y": 253.935 + }, + [ + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + } + ], + { + "x": 0.6235, + "y": 0.78182 + }, + { + "x": -0.22253, + "y": 0.97493 + }, + { + "x": -0.90097, + "y": 0.43388 + }, + { + "x": -0.90097, + "y": -0.43388 + }, + { + "x": -0.22253, + "y": -0.97493 + }, + { + "x": 0.6235, + "y": -0.78182 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 49, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1248 + }, + "angle": 0, + "vertices": { + "#": 1249 + }, + "position": { + "#": 1254 + }, + "force": { + "#": 1255 + }, + "torque": 0, + "positionImpulse": { + "#": 1256 + }, + "constraintImpulse": { + "#": 1257 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1258 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1259 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1260 + }, + "bounds": { + "#": 1262 + }, + "positionPrev": { + "#": 1265 + }, + "anglePrev": 0, + "axes": { + "#": 1266 + }, + "area": 2533.6813, + "mass": 2.53368, + "inverseMass": 0.39468, + "inertia": 9087.28705, + "inverseInertia": 0.00011, + "parent": { + "#": 1247 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1247 + } + ], + [ + { + "#": 1250 + }, + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + } + ], + { + "x": 251.07436, + "y": 213.55, + "index": 0, + "body": { + "#": 1247 + }, + "isInternal": false + }, + { + "x": 351.70142, + "y": 213.55, + "index": 1, + "body": { + "#": 1247 + }, + "isInternal": false + }, + { + "x": 351.70142, + "y": 238.72893, + "index": 2, + "body": { + "#": 1247 + }, + "isInternal": false + }, + { + "x": 251.07436, + "y": 238.72893, + "index": 3, + "body": { + "#": 1247 + }, + "isInternal": false + }, + { + "x": 301.38789, + "y": 226.13946 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1261 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1263 + }, + "max": { + "#": 1264 + } + }, + { + "x": 251.07436, + "y": 213.55 + }, + { + "x": 351.70142, + "y": 238.72893 + }, + { + "x": 301.38789, + "y": 226.13946 + }, + [ + { + "#": 1267 + }, + { + "#": 1268 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 50, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1270 + }, + "angle": 0, + "vertices": { + "#": 1271 + }, + "position": { + "#": 1276 + }, + "force": { + "#": 1277 + }, + "torque": 0, + "positionImpulse": { + "#": 1278 + }, + "constraintImpulse": { + "#": 1279 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1280 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1281 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1282 + }, + "bounds": { + "#": 1284 + }, + "positionPrev": { + "#": 1287 + }, + "anglePrev": 0, + "axes": { + "#": 1288 + }, + "area": 2082.10472, + "mass": 2.0821, + "inverseMass": 0.48028, + "inertia": 2917.865, + "inverseInertia": 0.00034, + "parent": { + "#": 1269 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1269 + } + ], + [ + { + "#": 1272 + }, + { + "#": 1273 + }, + { + "#": 1274 + }, + { + "#": 1275 + } + ], + { + "x": 351.70142, + "y": 213.55, + "index": 0, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 394.27883, + "y": 213.55, + "index": 1, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 394.27883, + "y": 262.45162, + "index": 2, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 351.70142, + "y": 262.45162, + "index": 3, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 372.99012, + "y": 238.00081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1283 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1285 + }, + "max": { + "#": 1286 + } + }, + { + "x": 351.70142, + "y": 213.55 + }, + { + "x": 394.27883, + "y": 262.45162 + }, + { + "x": 372.99012, + "y": 238.00081 + }, + [ + { + "#": 1289 + }, + { + "#": 1290 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 51, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1292 + }, + "angle": 0, + "vertices": { + "#": 1293 + }, + "position": { + "#": 1298 + }, + "force": { + "#": 1299 + }, + "torque": 0, + "positionImpulse": { + "#": 1300 + }, + "constraintImpulse": { + "#": 1301 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1302 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1303 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1304 + }, + "bounds": { + "#": 1306 + }, + "positionPrev": { + "#": 1309 + }, + "anglePrev": 0, + "axes": { + "#": 1310 + }, + "area": 2570.18089, + "mass": 2.57018, + "inverseMass": 0.38908, + "inertia": 7426.99294, + "inverseInertia": 0.00013, + "parent": { + "#": 1291 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1291 + } + ], + [ + { + "#": 1294 + }, + { + "#": 1295 + }, + { + "#": 1296 + }, + { + "#": 1297 + } + ], + { + "x": 394.27883, + "y": 213.55, + "index": 0, + "body": { + "#": 1291 + }, + "isInternal": false + }, + { + "x": 482.73682, + "y": 213.55, + "index": 1, + "body": { + "#": 1291 + }, + "isInternal": false + }, + { + "x": 482.73682, + "y": 242.60538, + "index": 2, + "body": { + "#": 1291 + }, + "isInternal": false + }, + { + "x": 394.27883, + "y": 242.60538, + "index": 3, + "body": { + "#": 1291 + }, + "isInternal": false + }, + { + "x": 438.50783, + "y": 228.07769 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1305 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1307 + }, + "max": { + "#": 1308 + } + }, + { + "x": 394.27883, + "y": 213.55 + }, + { + "x": 482.73682, + "y": 242.60538 + }, + { + "x": 438.50783, + "y": 228.07769 + }, + [ + { + "#": 1311 + }, + { + "#": 1312 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 52, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1314 + }, + "angle": 0, + "vertices": { + "#": 1315 + }, + "position": { + "#": 1319 + }, + "force": { + "#": 1320 + }, + "torque": 0, + "positionImpulse": { + "#": 1321 + }, + "constraintImpulse": { + "#": 1322 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1323 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1324 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1325 + }, + "bounds": { + "#": 1327 + }, + "positionPrev": { + "#": 1330 + }, + "anglePrev": 0, + "axes": { + "#": 1331 + }, + "area": 1460.27851, + "mass": 1.46028, + "inverseMass": 0.6848, + "inertia": 1641.53255, + "inverseInertia": 0.00061, + "parent": { + "#": 1313 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1313 + } + ], + [ + { + "#": 1316 + }, + { + "#": 1317 + }, + { + "#": 1318 + } + ], + { + "x": 524.64682, + "y": 271.622, + "index": 0, + "body": { + "#": 1313 + }, + "isInternal": false + }, + { + "x": 474.35482, + "y": 242.586, + "index": 1, + "body": { + "#": 1313 + }, + "isInternal": false + }, + { + "x": 524.64682, + "y": 213.55, + "index": 2, + "body": { + "#": 1313 + }, + "isInternal": false + }, + { + "x": 507.88282, + "y": 242.586 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1326 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1328 + }, + "max": { + "#": 1329 + } + }, + { + "x": 474.35482, + "y": 213.55 + }, + { + "x": 524.64682, + "y": 271.622 + }, + { + "x": 507.88282, + "y": 242.586 + }, + [ + { + "#": 1332 + }, + { + "#": 1333 + }, + { + "#": 1334 + } + ], + { + "x": -0.5, + "y": 0.86603 + }, + { + "x": -0.5, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 53, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1336 + }, + "angle": 0, + "vertices": { + "#": 1337 + }, + "position": { + "#": 1345 + }, + "force": { + "#": 1346 + }, + "torque": 0, + "positionImpulse": { + "#": 1347 + }, + "constraintImpulse": { + "#": 1348 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1349 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1350 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1351 + }, + "bounds": { + "#": 1353 + }, + "positionPrev": { + "#": 1356 + }, + "anglePrev": 0, + "axes": { + "#": 1357 + }, + "area": 4167.43305, + "mass": 4.16743, + "inverseMass": 0.23996, + "inertia": 11100.54206, + "inverseInertia": 0.00009, + "parent": { + "#": 1335 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1335 + } + ], + [ + { + "#": 1338 + }, + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + }, + { + "#": 1342 + }, + { + "#": 1343 + }, + { + "#": 1344 + } + ], + { + "x": 596.89953, + "y": 268.529, + "index": 0, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 570.42353, + "y": 289.644, + "index": 1, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 537.40753, + "y": 282.108, + "index": 2, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 522.71453, + "y": 251.597, + "index": 3, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 537.40753, + "y": 221.086, + "index": 4, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 570.42353, + "y": 213.55, + "index": 5, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 596.89953, + "y": 234.665, + "index": 6, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 561.73932, + "y": 251.597 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1352 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1354 + }, + "max": { + "#": 1355 + } + }, + { + "x": 522.71453, + "y": 213.55 + }, + { + "x": 596.89953, + "y": 289.644 + }, + { + "x": 561.73932, + "y": 251.597 + }, + [ + { + "#": 1358 + }, + { + "#": 1359 + }, + { + "#": 1360 + }, + { + "#": 1361 + }, + { + "#": 1362 + }, + { + "#": 1363 + }, + { + "#": 1364 + } + ], + { + "x": 0.62351, + "y": 0.78182 + }, + { + "x": -0.22253, + "y": 0.97493 + }, + { + "x": -0.90097, + "y": 0.43388 + }, + { + "x": -0.90097, + "y": -0.43388 + }, + { + "x": -0.22253, + "y": -0.97493 + }, + { + "x": 0.62351, + "y": -0.78182 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 54, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1366 + }, + "angle": 0, + "vertices": { + "#": 1367 + }, + "position": { + "#": 1372 + }, + "force": { + "#": 1373 + }, + "torque": 0, + "positionImpulse": { + "#": 1374 + }, + "constraintImpulse": { + "#": 1375 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1376 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1377 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1378 + }, + "bounds": { + "#": 1380 + }, + "positionPrev": { + "#": 1383 + }, + "anglePrev": 0, + "axes": { + "#": 1384 + }, + "area": 1687.76618, + "mass": 1.68777, + "inverseMass": 0.5925, + "inertia": 1980.3012, + "inverseInertia": 0.0005, + "parent": { + "#": 1365 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1365 + } + ], + [ + { + "#": 1368 + }, + { + "#": 1369 + }, + { + "#": 1370 + }, + { + "#": 1371 + } + ], + { + "x": 596.89953, + "y": 213.55, + "index": 0, + "body": { + "#": 1365 + }, + "isInternal": false + }, + { + "x": 632.40982, + "y": 213.55, + "index": 1, + "body": { + "#": 1365 + }, + "isInternal": false + }, + { + "x": 632.40982, + "y": 261.07894, + "index": 2, + "body": { + "#": 1365 + }, + "isInternal": false + }, + { + "x": 596.89953, + "y": 261.07894, + "index": 3, + "body": { + "#": 1365 + }, + "isInternal": false + }, + { + "x": 614.65468, + "y": 237.31447 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1379 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1381 + }, + "max": { + "#": 1382 + } + }, + { + "x": 596.89953, + "y": 213.55 + }, + { + "x": 632.40982, + "y": 261.07894 + }, + { + "x": 614.65468, + "y": 237.31447 + }, + [ + { + "#": 1385 + }, + { + "#": 1386 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 55, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1388 + }, + "angle": 0, + "vertices": { + "#": 1389 + }, + "position": { + "#": 1394 + }, + "force": { + "#": 1395 + }, + "torque": 0, + "positionImpulse": { + "#": 1396 + }, + "constraintImpulse": { + "#": 1397 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1398 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1399 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1400 + }, + "bounds": { + "#": 1402 + }, + "positionPrev": { + "#": 1405 + }, + "anglePrev": 0, + "axes": { + "#": 1406 + }, + "area": 888.8746, + "mass": 0.88887, + "inverseMass": 1.12502, + "inertia": 526.73203, + "inverseInertia": 0.0019, + "parent": { + "#": 1387 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1387 + } + ], + [ + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + } + ], + { + "x": 662.22382, + "y": 243.364, + "index": 0, + "body": { + "#": 1387 + }, + "isInternal": false + }, + { + "x": 632.40982, + "y": 243.364, + "index": 1, + "body": { + "#": 1387 + }, + "isInternal": false + }, + { + "x": 632.40982, + "y": 213.55, + "index": 2, + "body": { + "#": 1387 + }, + "isInternal": false + }, + { + "x": 662.22382, + "y": 213.55, + "index": 3, + "body": { + "#": 1387 + }, + "isInternal": false + }, + { + "x": 647.31682, + "y": 228.457 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1401 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1403 + }, + "max": { + "#": 1404 + } + }, + { + "x": 632.40982, + "y": 213.55 + }, + { + "x": 662.22382, + "y": 243.364 + }, + { + "x": 647.31682, + "y": 228.457 + }, + [ + { + "#": 1407 + }, + { + "#": 1408 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 56, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1410 + }, + "angle": 0, + "vertices": { + "#": 1411 + }, + "position": { + "#": 1416 + }, + "force": { + "#": 1417 + }, + "torque": 0, + "positionImpulse": { + "#": 1418 + }, + "constraintImpulse": { + "#": 1419 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1420 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1421 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1422 + }, + "bounds": { + "#": 1424 + }, + "positionPrev": { + "#": 1427 + }, + "anglePrev": 0, + "axes": { + "#": 1428 + }, + "area": 1624.12153, + "mass": 1.62412, + "inverseMass": 0.61572, + "inertia": 1766.68126, + "inverseInertia": 0.00057, + "parent": { + "#": 1409 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1409 + } + ], + [ + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + }, + { + "#": 1415 + } + ], + { + "x": 662.22382, + "y": 213.55, + "index": 0, + "body": { + "#": 1409 + }, + "isInternal": false + }, + { + "x": 704.51304, + "y": 213.55, + "index": 1, + "body": { + "#": 1409 + }, + "isInternal": false + }, + { + "x": 704.51304, + "y": 251.95509, + "index": 2, + "body": { + "#": 1409 + }, + "isInternal": false + }, + { + "x": 662.22382, + "y": 251.95509, + "index": 3, + "body": { + "#": 1409 + }, + "isInternal": false + }, + { + "x": 683.36843, + "y": 232.75255 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1423 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1425 + }, + "max": { + "#": 1426 + } + }, + { + "x": 662.22382, + "y": 213.55 + }, + { + "x": 704.51304, + "y": 251.95509 + }, + { + "x": 683.36843, + "y": 232.75255 + }, + [ + { + "#": 1429 + }, + { + "#": 1430 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 57, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1432 + }, + "angle": 0, + "vertices": { + "#": 1433 + }, + "position": { + "#": 1438 + }, + "force": { + "#": 1439 + }, + "torque": 0, + "positionImpulse": { + "#": 1440 + }, + "constraintImpulse": { + "#": 1441 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1442 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1443 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1444 + }, + "bounds": { + "#": 1446 + }, + "positionPrev": { + "#": 1449 + }, + "anglePrev": 0, + "axes": { + "#": 1450 + }, + "area": 925.43359, + "mass": 0.92543, + "inverseMass": 1.08057, + "inertia": 658.9066, + "inverseInertia": 0.00152, + "parent": { + "#": 1431 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1431 + } + ], + [ + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + } + ], + { + "x": 704.51304, + "y": 213.55, + "index": 0, + "body": { + "#": 1431 + }, + "isInternal": false + }, + { + "x": 744.52668, + "y": 213.55, + "index": 1, + "body": { + "#": 1431 + }, + "isInternal": false + }, + { + "x": 744.52668, + "y": 236.67796, + "index": 2, + "body": { + "#": 1431 + }, + "isInternal": false + }, + { + "x": 704.51304, + "y": 236.67796, + "index": 3, + "body": { + "#": 1431 + }, + "isInternal": false + }, + { + "x": 724.51986, + "y": 225.11398 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1445 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1447 + }, + "max": { + "#": 1448 + } + }, + { + "x": 704.51304, + "y": 213.55 + }, + { + "x": 744.52668, + "y": 236.67796 + }, + { + "x": 724.51986, + "y": 225.11398 + }, + [ + { + "#": 1451 + }, + { + "#": 1452 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 58, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1454 + }, + "angle": 0, + "vertices": { + "#": 1455 + }, + "position": { + "#": 1482 + }, + "force": { + "#": 1483 + }, + "torque": 0, + "positionImpulse": { + "#": 1484 + }, + "constraintImpulse": { + "#": 1485 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1486 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1487 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1488 + }, + "circleRadius": 43.65625, + "bounds": { + "#": 1490 + }, + "positionPrev": { + "#": 1493 + }, + "anglePrev": 0, + "axes": { + "#": 1494 + }, + "area": 5929.34751, + "mass": 5.92935, + "inverseMass": 0.16865, + "inertia": 22382.17147, + "inverseInertia": 0.00004, + "parent": { + "#": 1453 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1453 + } + ], + [ + { + "#": 1456 + }, + { + "#": 1457 + }, + { + "#": 1458 + }, + { + "#": 1459 + }, + { + "#": 1460 + }, + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + }, + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + }, + { + "#": 1473 + }, + { + "#": 1474 + }, + { + "#": 1475 + }, + { + "#": 1476 + }, + { + "#": 1477 + }, + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + }, + { + "#": 1481 + } + ], + { + "x": 831.20268, + "y": 262.468, + "index": 0, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 828.68368, + "y": 272.687, + "index": 1, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 823.79268, + "y": 282.006, + "index": 2, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 816.81368, + "y": 289.883, + "index": 3, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 808.15268, + "y": 295.862, + "index": 4, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 798.31268, + "y": 299.594, + "index": 5, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 787.86468, + "y": 300.862, + "index": 6, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 777.41668, + "y": 299.594, + "index": 7, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 767.57668, + "y": 295.862, + "index": 8, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 758.91568, + "y": 289.883, + "index": 9, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 751.93668, + "y": 282.006, + "index": 10, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 747.04568, + "y": 272.687, + "index": 11, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 744.52668, + "y": 262.468, + "index": 12, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 744.52668, + "y": 251.944, + "index": 13, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 747.04568, + "y": 241.725, + "index": 14, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 751.93668, + "y": 232.406, + "index": 15, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 758.91568, + "y": 224.529, + "index": 16, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 767.57668, + "y": 218.55, + "index": 17, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 777.41668, + "y": 214.818, + "index": 18, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 787.86468, + "y": 213.55, + "index": 19, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 798.31268, + "y": 214.818, + "index": 20, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 808.15268, + "y": 218.55, + "index": 21, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 816.81368, + "y": 224.529, + "index": 22, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 823.79268, + "y": 232.406, + "index": 23, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 828.68368, + "y": 241.725, + "index": 24, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 831.20268, + "y": 251.944, + "index": 25, + "body": { + "#": 1453 + }, + "isInternal": false + }, + { + "x": 787.86468, + "y": 257.206 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1489 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1491 + }, + "max": { + "#": 1492 + } + }, + { + "x": 744.52668, + "y": 213.55 + }, + { + "x": 831.20268, + "y": 300.862 + }, + { + "x": 787.86468, + "y": 257.206 + }, + [ + { + "#": 1495 + }, + { + "#": 1496 + }, + { + "#": 1497 + }, + { + "#": 1498 + }, + { + "#": 1499 + }, + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + } + ], + { + "x": -0.97094, + "y": -0.23934 + }, + { + "x": -0.88546, + "y": -0.46472 + }, + { + "x": -0.74848, + "y": -0.66315 + }, + { + "x": -0.56811, + "y": -0.82295 + }, + { + "x": -0.35462, + "y": -0.93501 + }, + { + "x": -0.12048, + "y": -0.99272 + }, + { + "x": 0.12048, + "y": -0.99272 + }, + { + "x": 0.35462, + "y": -0.93501 + }, + { + "x": 0.56811, + "y": -0.82295 + }, + { + "x": 0.74848, + "y": -0.66315 + }, + { + "x": 0.88546, + "y": -0.46472 + }, + { + "x": 0.97094, + "y": -0.23934 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 59, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1509 + }, + "angle": 0, + "vertices": { + "#": 1510 + }, + "position": { + "#": 1515 + }, + "force": { + "#": 1516 + }, + "torque": 0, + "positionImpulse": { + "#": 1517 + }, + "constraintImpulse": { + "#": 1518 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1519 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1520 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1521 + }, + "bounds": { + "#": 1523 + }, + "positionPrev": { + "#": 1526 + }, + "anglePrev": 0, + "axes": { + "#": 1527 + }, + "area": 2550.1664, + "mass": 2.55017, + "inverseMass": 0.39213, + "inertia": 10939.16513, + "inverseInertia": 0.00009, + "parent": { + "#": 1508 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1508 + } + ], + [ + { + "#": 1511 + }, + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + } + ], + { + "x": 831.20268, + "y": 213.55, + "index": 0, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 942.29647, + "y": 213.55, + "index": 1, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 942.29647, + "y": 236.50508, + "index": 2, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 831.20268, + "y": 236.50508, + "index": 3, + "body": { + "#": 1508 + }, + "isInternal": false + }, + { + "x": 886.74957, + "y": 225.02754 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1522 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1524 + }, + "max": { + "#": 1525 + } + }, + { + "x": 831.20268, + "y": 213.55 + }, + { + "x": 942.29647, + "y": 236.50508 + }, + { + "x": 886.74957, + "y": 225.02754 + }, + [ + { + "#": 1528 + }, + { + "#": 1529 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 60, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1531 + }, + "angle": 0, + "vertices": { + "#": 1532 + }, + "position": { + "#": 1559 + }, + "force": { + "#": 1560 + }, + "torque": 0, + "positionImpulse": { + "#": 1561 + }, + "constraintImpulse": { + "#": 1562 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1563 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1564 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1565 + }, + "circleRadius": 40.78241, + "bounds": { + "#": 1567 + }, + "positionPrev": { + "#": 1570 + }, + "anglePrev": 0, + "axes": { + "#": 1571 + }, + "area": 5174.38131, + "mass": 5.17438, + "inverseMass": 0.19326, + "inertia": 17045.32427, + "inverseInertia": 0.00006, + "parent": { + "#": 1530 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1530 + } + ], + [ + { + "#": 1533 + }, + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + }, + { + "#": 1537 + }, + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + }, + { + "#": 1543 + }, + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + }, + { + "#": 1548 + }, + { + "#": 1549 + }, + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + }, + { + "#": 1553 + }, + { + "#": 1554 + }, + { + "#": 1555 + }, + { + "#": 1556 + }, + { + "#": 1557 + }, + { + "#": 1558 + } + ], + { + "x": 1023.26647, + "y": 259.248, + "index": 0, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 1020.91347, + "y": 268.794, + "index": 1, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 1016.34447, + "y": 277.499, + "index": 2, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 1009.82547, + "y": 284.858, + "index": 3, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 1001.73447, + "y": 290.443, + "index": 4, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 992.54147, + "y": 293.929, + "index": 5, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 982.78147, + "y": 295.114, + "index": 6, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 973.02147, + "y": 293.929, + "index": 7, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 963.82847, + "y": 290.443, + "index": 8, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 955.73747, + "y": 284.858, + "index": 9, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 949.21847, + "y": 277.499, + "index": 10, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 944.64947, + "y": 268.794, + "index": 11, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 942.29647, + "y": 259.248, + "index": 12, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 942.29647, + "y": 249.416, + "index": 13, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 944.64947, + "y": 239.87, + "index": 14, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 949.21847, + "y": 231.165, + "index": 15, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 955.73747, + "y": 223.806, + "index": 16, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 963.82847, + "y": 218.221, + "index": 17, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 973.02147, + "y": 214.735, + "index": 18, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 982.78147, + "y": 213.55, + "index": 19, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 992.54147, + "y": 214.735, + "index": 20, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 1001.73447, + "y": 218.221, + "index": 21, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 1009.82547, + "y": 223.806, + "index": 22, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 1016.34447, + "y": 231.165, + "index": 23, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 1020.91347, + "y": 239.87, + "index": 24, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 1023.26647, + "y": 249.416, + "index": 25, + "body": { + "#": 1530 + }, + "isInternal": false + }, + { + "x": 982.78147, + "y": 254.332 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1566 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1568 + }, + "max": { + "#": 1569 + } + }, + { + "x": 942.29647, + "y": 213.55 + }, + { + "x": 1023.26647, + "y": 295.114 + }, + { + "x": 982.78147, + "y": 254.332 + }, + [ + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + }, + { + "#": 1577 + }, + { + "#": 1578 + }, + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + }, + { + "#": 1583 + }, + { + "#": 1584 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88544, + "y": -0.46474 + }, + { + "x": -0.74854, + "y": -0.66309 + }, + { + "x": -0.56808, + "y": -0.82298 + }, + { + "x": -0.35457, + "y": -0.93503 + }, + { + "x": -0.12053, + "y": -0.99271 + }, + { + "x": 0.12053, + "y": -0.99271 + }, + { + "x": 0.35457, + "y": -0.93503 + }, + { + "x": 0.56808, + "y": -0.82298 + }, + { + "x": 0.74854, + "y": -0.66309 + }, + { + "x": 0.88544, + "y": -0.46474 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 61, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1586 + }, + "angle": 0, + "vertices": { + "#": 1587 + }, + "position": { + "#": 1592 + }, + "force": { + "#": 1593 + }, + "torque": 0, + "positionImpulse": { + "#": 1594 + }, + "constraintImpulse": { + "#": 1595 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1596 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1597 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1598 + }, + "bounds": { + "#": 1600 + }, + "positionPrev": { + "#": 1603 + }, + "anglePrev": 0, + "axes": { + "#": 1604 + }, + "area": 1308.20346, + "mass": 1.3082, + "inverseMass": 0.76441, + "inertia": 1149.85791, + "inverseInertia": 0.00087, + "parent": { + "#": 1585 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1585 + } + ], + [ + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + } + ], + { + "x": 1023.26647, + "y": 213.55, + "index": 0, + "body": { + "#": 1585 + }, + "isInternal": false + }, + { + "x": 1061.76853, + "y": 213.55, + "index": 1, + "body": { + "#": 1585 + }, + "isInternal": false + }, + { + "x": 1061.76853, + "y": 247.52749, + "index": 2, + "body": { + "#": 1585 + }, + "isInternal": false + }, + { + "x": 1023.26647, + "y": 247.52749, + "index": 3, + "body": { + "#": 1585 + }, + "isInternal": false + }, + { + "x": 1042.5175, + "y": 230.53875 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1599 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1601 + }, + "max": { + "#": 1602 + } + }, + { + "x": 1023.26647, + "y": 213.55 + }, + { + "x": 1061.76853, + "y": 247.52749 + }, + { + "x": 1042.5175, + "y": 230.53875 + }, + [ + { + "#": 1605 + }, + { + "#": 1606 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 62, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1608 + }, + "angle": 0, + "vertices": { + "#": 1609 + }, + "position": { + "#": 1617 + }, + "force": { + "#": 1618 + }, + "torque": 0, + "positionImpulse": { + "#": 1619 + }, + "constraintImpulse": { + "#": 1620 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1621 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1622 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1623 + }, + "bounds": { + "#": 1625 + }, + "positionPrev": { + "#": 1628 + }, + "anglePrev": 0, + "axes": { + "#": 1629 + }, + "area": 3803.77675, + "mass": 3.80378, + "inverseMass": 0.2629, + "inertia": 9247.76875, + "inverseInertia": 0.00011, + "parent": { + "#": 1607 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1607 + } + ], + [ + { + "#": 1610 + }, + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + }, + { + "#": 1614 + }, + { + "#": 1615 + }, + { + "#": 1616 + } + ], + { + "x": 1130.79717, + "y": 266.076, + "index": 0, + "body": { + "#": 1607 + }, + "isInternal": false + }, + { + "x": 1105.50217, + "y": 286.248, + "index": 1, + "body": { + "#": 1607 + }, + "isInternal": false + }, + { + "x": 1073.96017, + "y": 279.048, + "index": 2, + "body": { + "#": 1607 + }, + "isInternal": false + }, + { + "x": 1059.92217, + "y": 249.899, + "index": 3, + "body": { + "#": 1607 + }, + "isInternal": false + }, + { + "x": 1073.96017, + "y": 220.75, + "index": 4, + "body": { + "#": 1607 + }, + "isInternal": false + }, + { + "x": 1105.50217, + "y": 213.55, + "index": 5, + "body": { + "#": 1607 + }, + "isInternal": false + }, + { + "x": 1130.79717, + "y": 233.722, + "index": 6, + "body": { + "#": 1607 + }, + "isInternal": false + }, + { + "x": 1097.20603, + "y": 249.899 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1624 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1626 + }, + "max": { + "#": 1627 + } + }, + { + "x": 1059.92217, + "y": 213.55 + }, + { + "x": 1130.79717, + "y": 286.248 + }, + { + "x": 1097.20603, + "y": 249.899 + }, + [ + { + "#": 1630 + }, + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + } + ], + { + "x": 0.62349, + "y": 0.78183 + }, + { + "x": -0.22254, + "y": 0.97492 + }, + { + "x": -0.90096, + "y": 0.4339 + }, + { + "x": -0.90096, + "y": -0.4339 + }, + { + "x": -0.22254, + "y": -0.97492 + }, + { + "x": 0.62349, + "y": -0.78183 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 63, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1638 + }, + "angle": 0, + "vertices": { + "#": 1639 + }, + "position": { + "#": 1644 + }, + "force": { + "#": 1645 + }, + "torque": 0, + "positionImpulse": { + "#": 1646 + }, + "constraintImpulse": { + "#": 1647 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1648 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1649 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1650 + }, + "bounds": { + "#": 1652 + }, + "positionPrev": { + "#": 1655 + }, + "anglePrev": 0, + "axes": { + "#": 1656 + }, + "area": 1519.53857, + "mass": 1.51954, + "inverseMass": 0.65809, + "inertia": 1623.69877, + "inverseInertia": 0.00062, + "parent": { + "#": 1637 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1637 + } + ], + [ + { + "#": 1640 + }, + { + "#": 1641 + }, + { + "#": 1642 + }, + { + "#": 1643 + } + ], + { + "x": 1130.79717, + "y": 213.55, + "index": 0, + "body": { + "#": 1637 + }, + "isInternal": false + }, + { + "x": 1163.85594, + "y": 213.55, + "index": 1, + "body": { + "#": 1637 + }, + "isInternal": false + }, + { + "x": 1163.85594, + "y": 259.51476, + "index": 2, + "body": { + "#": 1637 + }, + "isInternal": false + }, + { + "x": 1130.79717, + "y": 259.51476, + "index": 3, + "body": { + "#": 1637 + }, + "isInternal": false + }, + { + "x": 1147.32655, + "y": 236.53238 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1651 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1653 + }, + "max": { + "#": 1654 + } + }, + { + "x": 1130.79717, + "y": 213.55 + }, + { + "x": 1163.85594, + "y": 259.51476 + }, + { + "x": 1147.32655, + "y": 236.53238 + }, + [ + { + "#": 1657 + }, + { + "#": 1658 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 64, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1660 + }, + "angle": 0, + "vertices": { + "#": 1661 + }, + "position": { + "#": 1666 + }, + "force": { + "#": 1667 + }, + "torque": 0, + "positionImpulse": { + "#": 1668 + }, + "constraintImpulse": { + "#": 1669 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1670 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1671 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1672 + }, + "bounds": { + "#": 1674 + }, + "positionPrev": { + "#": 1677 + }, + "anglePrev": 0, + "axes": { + "#": 1678 + }, + "area": 3306.48, + "mass": 3.30648, + "inverseMass": 0.30244, + "inertia": 7288.54001, + "inverseInertia": 0.00014, + "parent": { + "#": 1659 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1659 + } + ], + [ + { + "#": 1662 + }, + { + "#": 1663 + }, + { + "#": 1664 + }, + { + "#": 1665 + } + ], + { + "x": 1221.35794, + "y": 271.052, + "index": 0, + "body": { + "#": 1659 + }, + "isInternal": false + }, + { + "x": 1163.85594, + "y": 271.052, + "index": 1, + "body": { + "#": 1659 + }, + "isInternal": false + }, + { + "x": 1163.85594, + "y": 213.55, + "index": 2, + "body": { + "#": 1659 + }, + "isInternal": false + }, + { + "x": 1221.35794, + "y": 213.55, + "index": 3, + "body": { + "#": 1659 + }, + "isInternal": false + }, + { + "x": 1192.60694, + "y": 242.301 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1673 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1675 + }, + "max": { + "#": 1676 + } + }, + { + "x": 1163.85594, + "y": 213.55 + }, + { + "x": 1221.35794, + "y": 271.052 + }, + { + "x": 1192.60694, + "y": 242.301 + }, + [ + { + "#": 1679 + }, + { + "#": 1680 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 65, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1682 + }, + "angle": 0, + "vertices": { + "#": 1683 + }, + "position": { + "#": 1687 + }, + "force": { + "#": 1688 + }, + "torque": 0, + "positionImpulse": { + "#": 1689 + }, + "constraintImpulse": { + "#": 1690 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1691 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1692 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1693 + }, + "bounds": { + "#": 1695 + }, + "positionPrev": { + "#": 1698 + }, + "anglePrev": 0, + "axes": { + "#": 1699 + }, + "area": 1545.32445, + "mass": 1.54532, + "inverseMass": 0.64711, + "inertia": 1838.30455, + "inverseInertia": 0.00054, + "parent": { + "#": 1681 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1681 + } + ], + [ + { + "#": 1684 + }, + { + "#": 1685 + }, + { + "#": 1686 + } + ], + { + "x": 63.1125, + "y": 366.444, + "index": 0, + "body": { + "#": 1681 + }, + "isInternal": false + }, + { + "x": 11.3775, + "y": 336.574, + "index": 1, + "body": { + "#": 1681 + }, + "isInternal": false + }, + { + "x": 63.1125, + "y": 306.704, + "index": 2, + "body": { + "#": 1681 + }, + "isInternal": false + }, + { + "x": 45.8675, + "y": 336.574 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1694 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1696 + }, + "max": { + "#": 1697 + } + }, + { + "x": 11.3775, + "y": 306.704 + }, + { + "x": 63.1125, + "y": 366.444 + }, + { + "x": 45.8675, + "y": 336.574 + }, + [ + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + } + ], + { + "x": -0.50001, + "y": 0.86602 + }, + { + "x": -0.50001, + "y": -0.86602 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 66, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1704 + }, + "angle": 0, + "vertices": { + "#": 1705 + }, + "position": { + "#": 1710 + }, + "force": { + "#": 1711 + }, + "torque": 0, + "positionImpulse": { + "#": 1712 + }, + "constraintImpulse": { + "#": 1713 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1714 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1715 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1716 + }, + "bounds": { + "#": 1718 + }, + "positionPrev": { + "#": 1721 + }, + "anglePrev": 0, + "axes": { + "#": 1722 + }, + "area": 832.69161, + "mass": 0.83269, + "inverseMass": 1.20092, + "inertia": 462.47405, + "inverseInertia": 0.00216, + "parent": { + "#": 1703 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1703 + } + ], + [ + { + "#": 1706 + }, + { + "#": 1707 + }, + { + "#": 1708 + }, + { + "#": 1709 + } + ], + { + "x": 63.1125, + "y": 306.704, + "index": 0, + "body": { + "#": 1703 + }, + "isInternal": false + }, + { + "x": 92.4214, + "y": 306.704, + "index": 1, + "body": { + "#": 1703 + }, + "isInternal": false + }, + { + "x": 92.4214, + "y": 335.11488, + "index": 2, + "body": { + "#": 1703 + }, + "isInternal": false + }, + { + "x": 63.1125, + "y": 335.11488, + "index": 3, + "body": { + "#": 1703 + }, + "isInternal": false + }, + { + "x": 77.76695, + "y": 320.90944 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1717 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1719 + }, + "max": { + "#": 1720 + } + }, + { + "x": 63.1125, + "y": 306.704 + }, + { + "x": 92.4214, + "y": 335.11488 + }, + { + "x": 77.76695, + "y": 320.90944 + }, + [ + { + "#": 1723 + }, + { + "#": 1724 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 67, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1726 + }, + "angle": 0, + "vertices": { + "#": 1727 + }, + "position": { + "#": 1733 + }, + "force": { + "#": 1734 + }, + "torque": 0, + "positionImpulse": { + "#": 1735 + }, + "constraintImpulse": { + "#": 1736 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1737 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1738 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1739 + }, + "bounds": { + "#": 1741 + }, + "positionPrev": { + "#": 1744 + }, + "anglePrev": 0, + "axes": { + "#": 1745 + }, + "area": 979.53176, + "mass": 0.97953, + "inverseMass": 1.0209, + "inertia": 621.19304, + "inverseInertia": 0.00161, + "parent": { + "#": 1725 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1725 + } + ], + [ + { + "#": 1728 + }, + { + "#": 1729 + }, + { + "#": 1730 + }, + { + "#": 1731 + }, + { + "#": 1732 + } + ], + { + "x": 127.2013, + "y": 337.938, + "index": 0, + "body": { + "#": 1725 + }, + "isInternal": false + }, + { + "x": 104.5083, + "y": 345.312, + "index": 1, + "body": { + "#": 1725 + }, + "isInternal": false + }, + { + "x": 90.4833, + "y": 326.008, + "index": 2, + "body": { + "#": 1725 + }, + "isInternal": false + }, + { + "x": 104.5083, + "y": 306.704, + "index": 3, + "body": { + "#": 1725 + }, + "isInternal": false + }, + { + "x": 127.2013, + "y": 314.078, + "index": 4, + "body": { + "#": 1725 + }, + "isInternal": false + }, + { + "x": 110.7804, + "y": 326.008 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1740 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1742 + }, + "max": { + "#": 1743 + } + }, + { + "x": 90.4833, + "y": 306.704 + }, + { + "x": 127.2013, + "y": 345.312 + }, + { + "x": 110.7804, + "y": 326.008 + }, + [ + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + } + ], + { + "x": 0.30904, + "y": 0.95105 + }, + { + "x": -0.80902, + "y": 0.58778 + }, + { + "x": -0.80902, + "y": -0.58778 + }, + { + "x": 0.30904, + "y": -0.95105 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 68, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1752 + }, + "angle": 0, + "vertices": { + "#": 1753 + }, + "position": { + "#": 1758 + }, + "force": { + "#": 1759 + }, + "torque": 0, + "positionImpulse": { + "#": 1760 + }, + "constraintImpulse": { + "#": 1761 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1762 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1763 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1764 + }, + "bounds": { + "#": 1766 + }, + "positionPrev": { + "#": 1769 + }, + "anglePrev": 0, + "axes": { + "#": 1770 + }, + "area": 1515.31318, + "mass": 1.51531, + "inverseMass": 0.65993, + "inertia": 1532.42068, + "inverseInertia": 0.00065, + "parent": { + "#": 1751 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1751 + } + ], + [ + { + "#": 1754 + }, + { + "#": 1755 + }, + { + "#": 1756 + }, + { + "#": 1757 + } + ], + { + "x": 127.2013, + "y": 306.704, + "index": 0, + "body": { + "#": 1751 + }, + "isInternal": false + }, + { + "x": 167.03914, + "y": 306.704, + "index": 1, + "body": { + "#": 1751 + }, + "isInternal": false + }, + { + "x": 167.03914, + "y": 344.74104, + "index": 2, + "body": { + "#": 1751 + }, + "isInternal": false + }, + { + "x": 127.2013, + "y": 344.74104, + "index": 3, + "body": { + "#": 1751 + }, + "isInternal": false + }, + { + "x": 147.12022, + "y": 325.72252 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1765 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1767 + }, + "max": { + "#": 1768 + } + }, + { + "x": 127.2013, + "y": 306.704 + }, + { + "x": 167.03914, + "y": 344.74104 + }, + { + "x": 147.12022, + "y": 325.72252 + }, + [ + { + "#": 1771 + }, + { + "#": 1772 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 69, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1774 + }, + "angle": 0, + "vertices": { + "#": 1775 + }, + "position": { + "#": 1780 + }, + "force": { + "#": 1781 + }, + "torque": 0, + "positionImpulse": { + "#": 1782 + }, + "constraintImpulse": { + "#": 1783 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1784 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1785 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1786 + }, + "bounds": { + "#": 1788 + }, + "positionPrev": { + "#": 1791 + }, + "anglePrev": 0, + "axes": { + "#": 1792 + }, + "area": 1347.92786, + "mass": 1.34793, + "inverseMass": 0.74188, + "inertia": 1394.56669, + "inverseInertia": 0.00072, + "parent": { + "#": 1773 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1773 + } + ], + [ + { + "#": 1776 + }, + { + "#": 1777 + }, + { + "#": 1778 + }, + { + "#": 1779 + } + ], + { + "x": 167.03914, + "y": 306.704, + "index": 0, + "body": { + "#": 1773 + }, + "isInternal": false + }, + { + "x": 195.01805, + "y": 306.704, + "index": 1, + "body": { + "#": 1773 + }, + "isInternal": false + }, + { + "x": 195.01805, + "y": 354.88057, + "index": 2, + "body": { + "#": 1773 + }, + "isInternal": false + }, + { + "x": 167.03914, + "y": 354.88057, + "index": 3, + "body": { + "#": 1773 + }, + "isInternal": false + }, + { + "x": 181.02859, + "y": 330.79228 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1787 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1789 + }, + "max": { + "#": 1790 + } + }, + { + "x": 167.03914, + "y": 306.704 + }, + { + "x": 195.01805, + "y": 354.88057 + }, + { + "x": 181.02859, + "y": 330.79228 + }, + [ + { + "#": 1793 + }, + { + "#": 1794 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 70, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1796 + }, + "angle": 0, + "vertices": { + "#": 1797 + }, + "position": { + "#": 1802 + }, + "force": { + "#": 1803 + }, + "torque": 0, + "positionImpulse": { + "#": 1804 + }, + "constraintImpulse": { + "#": 1805 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1806 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1807 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1808 + }, + "bounds": { + "#": 1810 + }, + "positionPrev": { + "#": 1813 + }, + "anglePrev": 0, + "axes": { + "#": 1814 + }, + "area": 2285.40536, + "mass": 2.28541, + "inverseMass": 0.43756, + "inertia": 3483.87721, + "inverseInertia": 0.00029, + "parent": { + "#": 1795 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1795 + } + ], + [ + { + "#": 1798 + }, + { + "#": 1799 + }, + { + "#": 1800 + }, + { + "#": 1801 + } + ], + { + "x": 195.01805, + "y": 306.704, + "index": 0, + "body": { + "#": 1795 + }, + "isInternal": false + }, + { + "x": 242.05624, + "y": 306.704, + "index": 1, + "body": { + "#": 1795 + }, + "isInternal": false + }, + { + "x": 242.05624, + "y": 355.29016, + "index": 2, + "body": { + "#": 1795 + }, + "isInternal": false + }, + { + "x": 195.01805, + "y": 355.29016, + "index": 3, + "body": { + "#": 1795 + }, + "isInternal": false + }, + { + "x": 218.53714, + "y": 330.99708 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1809 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1811 + }, + "max": { + "#": 1812 + } + }, + { + "x": 195.01805, + "y": 306.704 + }, + { + "x": 242.05624, + "y": 355.29016 + }, + { + "x": 218.53714, + "y": 330.99708 + }, + [ + { + "#": 1815 + }, + { + "#": 1816 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 71, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1818 + }, + "angle": 0, + "vertices": { + "#": 1819 + }, + "position": { + "#": 1825 + }, + "force": { + "#": 1826 + }, + "torque": 0, + "positionImpulse": { + "#": 1827 + }, + "constraintImpulse": { + "#": 1828 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1829 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1830 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1831 + }, + "bounds": { + "#": 1833 + }, + "positionPrev": { + "#": 1836 + }, + "anglePrev": 0, + "axes": { + "#": 1837 + }, + "area": 4327.82858, + "mass": 4.32783, + "inverseMass": 0.23106, + "inertia": 12126.33711, + "inverseInertia": 0.00008, + "parent": { + "#": 1817 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1817 + } + ], + [ + { + "#": 1820 + }, + { + "#": 1821 + }, + { + "#": 1822 + }, + { + "#": 1823 + }, + { + "#": 1824 + } + ], + { + "x": 315.16229, + "y": 372.357, + "index": 0, + "body": { + "#": 1817 + }, + "isInternal": false + }, + { + "x": 267.46229, + "y": 387.856, + "index": 1, + "body": { + "#": 1817 + }, + "isInternal": false + }, + { + "x": 237.98229, + "y": 347.28, + "index": 2, + "body": { + "#": 1817 + }, + "isInternal": false + }, + { + "x": 267.46229, + "y": 306.704, + "index": 3, + "body": { + "#": 1817 + }, + "isInternal": false + }, + { + "x": 315.16229, + "y": 322.203, + "index": 4, + "body": { + "#": 1817 + }, + "isInternal": false + }, + { + "x": 280.64624, + "y": 347.28 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1832 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1834 + }, + "max": { + "#": 1835 + } + }, + { + "x": 237.98229, + "y": 306.704 + }, + { + "x": 315.16229, + "y": 387.856 + }, + { + "x": 280.64624, + "y": 347.28 + }, + [ + { + "#": 1838 + }, + { + "#": 1839 + }, + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + } + ], + { + "x": 0.30902, + "y": 0.95105 + }, + { + "x": -0.80902, + "y": 0.58778 + }, + { + "x": -0.80902, + "y": -0.58778 + }, + { + "x": 0.30902, + "y": -0.95105 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 72, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1844 + }, + "angle": 0, + "vertices": { + "#": 1845 + }, + "position": { + "#": 1850 + }, + "force": { + "#": 1851 + }, + "torque": 0, + "positionImpulse": { + "#": 1852 + }, + "constraintImpulse": { + "#": 1853 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1854 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1855 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1856 + }, + "bounds": { + "#": 1858 + }, + "positionPrev": { + "#": 1861 + }, + "anglePrev": 0, + "axes": { + "#": 1862 + }, + "area": 2032.72927, + "mass": 2.03273, + "inverseMass": 0.49195, + "inertia": 6700.37412, + "inverseInertia": 0.00015, + "parent": { + "#": 1843 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1843 + } + ], + [ + { + "#": 1846 + }, + { + "#": 1847 + }, + { + "#": 1848 + }, + { + "#": 1849 + } + ], + { + "x": 315.16229, + "y": 306.704, + "index": 0, + "body": { + "#": 1843 + }, + "isInternal": false + }, + { + "x": 412.38142, + "y": 306.704, + "index": 1, + "body": { + "#": 1843 + }, + "isInternal": false + }, + { + "x": 412.38142, + "y": 327.61274, + "index": 2, + "body": { + "#": 1843 + }, + "isInternal": false + }, + { + "x": 315.16229, + "y": 327.61274, + "index": 3, + "body": { + "#": 1843 + }, + "isInternal": false + }, + { + "x": 363.77186, + "y": 317.15837 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1857 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1859 + }, + "max": { + "#": 1860 + } + }, + { + "x": 315.16229, + "y": 306.704 + }, + { + "x": 412.38142, + "y": 327.61274 + }, + { + "x": 363.77186, + "y": 317.15837 + }, + [ + { + "#": 1863 + }, + { + "#": 1864 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 73, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1866 + }, + "angle": 0, + "vertices": { + "#": 1867 + }, + "position": { + "#": 1872 + }, + "force": { + "#": 1873 + }, + "torque": 0, + "positionImpulse": { + "#": 1874 + }, + "constraintImpulse": { + "#": 1875 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1876 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1877 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1878 + }, + "bounds": { + "#": 1880 + }, + "positionPrev": { + "#": 1883 + }, + "anglePrev": 0, + "axes": { + "#": 1884 + }, + "area": 1931.95349, + "mass": 1.93195, + "inverseMass": 0.51761, + "inertia": 4690.99661, + "inverseInertia": 0.00021, + "parent": { + "#": 1865 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1865 + } + ], + [ + { + "#": 1868 + }, + { + "#": 1869 + }, + { + "#": 1870 + }, + { + "#": 1871 + } + ], + { + "x": 412.38142, + "y": 306.704, + "index": 0, + "body": { + "#": 1865 + }, + "isInternal": false + }, + { + "x": 494.41623, + "y": 306.704, + "index": 1, + "body": { + "#": 1865 + }, + "isInternal": false + }, + { + "x": 494.41623, + "y": 330.25441, + "index": 2, + "body": { + "#": 1865 + }, + "isInternal": false + }, + { + "x": 412.38142, + "y": 330.25441, + "index": 3, + "body": { + "#": 1865 + }, + "isInternal": false + }, + { + "x": 453.39883, + "y": 318.47921 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1879 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1881 + }, + "max": { + "#": 1882 + } + }, + { + "x": 412.38142, + "y": 306.704 + }, + { + "x": 494.41623, + "y": 330.25441 + }, + { + "x": 453.39883, + "y": 318.47921 + }, + [ + { + "#": 1885 + }, + { + "#": 1886 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 74, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1888 + }, + "angle": 0, + "vertices": { + "#": 1889 + }, + "position": { + "#": 1894 + }, + "force": { + "#": 1895 + }, + "torque": 0, + "positionImpulse": { + "#": 1896 + }, + "constraintImpulse": { + "#": 1897 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1898 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1899 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1900 + }, + "bounds": { + "#": 1902 + }, + "positionPrev": { + "#": 1905 + }, + "anglePrev": 0, + "axes": { + "#": 1906 + }, + "area": 2376.31797, + "mass": 2.37632, + "inverseMass": 0.42082, + "inertia": 3764.5915, + "inverseInertia": 0.00027, + "parent": { + "#": 1887 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1887 + } + ], + [ + { + "#": 1890 + }, + { + "#": 1891 + }, + { + "#": 1892 + }, + { + "#": 1893 + } + ], + { + "x": 494.41623, + "y": 306.704, + "index": 0, + "body": { + "#": 1887 + }, + "isInternal": false + }, + { + "x": 543.15749, + "y": 306.704, + "index": 1, + "body": { + "#": 1887 + }, + "isInternal": false + }, + { + "x": 543.15749, + "y": 355.45773, + "index": 2, + "body": { + "#": 1887 + }, + "isInternal": false + }, + { + "x": 494.41623, + "y": 355.45773, + "index": 3, + "body": { + "#": 1887 + }, + "isInternal": false + }, + { + "x": 518.78686, + "y": 331.08086 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1901 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1903 + }, + "max": { + "#": 1904 + } + }, + { + "x": 494.41623, + "y": 306.704 + }, + { + "x": 543.15749, + "y": 355.45773 + }, + { + "x": 518.78686, + "y": 331.08086 + }, + [ + { + "#": 1907 + }, + { + "#": 1908 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 75, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1910 + }, + "angle": 0, + "vertices": { + "#": 1911 + }, + "position": { + "#": 1938 + }, + "force": { + "#": 1939 + }, + "torque": 0, + "positionImpulse": { + "#": 1940 + }, + "constraintImpulse": { + "#": 1941 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1942 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1943 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1944 + }, + "circleRadius": 47.98573, + "bounds": { + "#": 1946 + }, + "positionPrev": { + "#": 1949 + }, + "anglePrev": 0, + "axes": { + "#": 1950 + }, + "area": 7163.66511, + "mass": 7.16367, + "inverseMass": 0.13959, + "inertia": 32670.7391, + "inverseInertia": 0.00003, + "parent": { + "#": 1909 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1909 + } + ], + [ + { + "#": 1912 + }, + { + "#": 1913 + }, + { + "#": 1914 + }, + { + "#": 1915 + }, + { + "#": 1916 + }, + { + "#": 1917 + }, + { + "#": 1918 + }, + { + "#": 1919 + }, + { + "#": 1920 + }, + { + "#": 1921 + }, + { + "#": 1922 + }, + { + "#": 1923 + }, + { + "#": 1924 + }, + { + "#": 1925 + }, + { + "#": 1926 + }, + { + "#": 1927 + }, + { + "#": 1928 + }, + { + "#": 1929 + }, + { + "#": 1930 + }, + { + "#": 1931 + }, + { + "#": 1932 + }, + { + "#": 1933 + }, + { + "#": 1934 + }, + { + "#": 1935 + }, + { + "#": 1936 + }, + { + "#": 1937 + } + ], + { + "x": 638.42949, + "y": 360.474, + "index": 0, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 635.66049, + "y": 371.706, + "index": 1, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 630.28449, + "y": 381.949, + "index": 2, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 622.61349, + "y": 390.608, + "index": 3, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 613.09349, + "y": 397.179, + "index": 4, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 602.27749, + "y": 401.281, + "index": 5, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 590.79349, + "y": 402.676, + "index": 6, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 579.30949, + "y": 401.281, + "index": 7, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 568.49349, + "y": 397.179, + "index": 8, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 558.97349, + "y": 390.608, + "index": 9, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 551.30249, + "y": 381.949, + "index": 10, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 545.92649, + "y": 371.706, + "index": 11, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 543.15749, + "y": 360.474, + "index": 12, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 543.15749, + "y": 348.906, + "index": 13, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 545.92649, + "y": 337.674, + "index": 14, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 551.30249, + "y": 327.431, + "index": 15, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 558.97349, + "y": 318.772, + "index": 16, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 568.49349, + "y": 312.201, + "index": 17, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 579.30949, + "y": 308.099, + "index": 18, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 590.79349, + "y": 306.704, + "index": 19, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 602.27749, + "y": 308.099, + "index": 20, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 613.09349, + "y": 312.201, + "index": 21, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 622.61349, + "y": 318.772, + "index": 22, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 630.28449, + "y": 327.431, + "index": 23, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 635.66049, + "y": 337.674, + "index": 24, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 638.42949, + "y": 348.906, + "index": 25, + "body": { + "#": 1909 + }, + "isInternal": false + }, + { + "x": 590.79349, + "y": 354.69 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1945 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1947 + }, + "max": { + "#": 1948 + } + }, + { + "x": 543.15749, + "y": 306.704 + }, + { + "x": 638.42949, + "y": 402.676 + }, + { + "x": 590.79349, + "y": 354.69 + }, + [ + { + "#": 1951 + }, + { + "#": 1952 + }, + { + "#": 1953 + }, + { + "#": 1954 + }, + { + "#": 1955 + }, + { + "#": 1956 + }, + { + "#": 1957 + }, + { + "#": 1958 + }, + { + "#": 1959 + }, + { + "#": 1960 + }, + { + "#": 1961 + }, + { + "#": 1962 + }, + { + "#": 1963 + } + ], + { + "x": -0.97093, + "y": -0.23936 + }, + { + "x": -0.88545, + "y": -0.46473 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56805, + "y": -0.82299 + }, + { + "x": -0.35461, + "y": -0.93502 + }, + { + "x": -0.12059, + "y": -0.9927 + }, + { + "x": 0.12059, + "y": -0.9927 + }, + { + "x": 0.35461, + "y": -0.93502 + }, + { + "x": 0.56805, + "y": -0.82299 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88545, + "y": -0.46473 + }, + { + "x": 0.97093, + "y": -0.23936 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 76, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1965 + }, + "angle": 0, + "vertices": { + "#": 1966 + }, + "position": { + "#": 1993 + }, + "force": { + "#": 1994 + }, + "torque": 0, + "positionImpulse": { + "#": 1995 + }, + "constraintImpulse": { + "#": 1996 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1997 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1998 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1999 + }, + "circleRadius": 44.1313, + "bounds": { + "#": 2001 + }, + "positionPrev": { + "#": 2004 + }, + "anglePrev": 0, + "axes": { + "#": 2005 + }, + "area": 6059.04975, + "mass": 6.05905, + "inverseMass": 0.16504, + "inertia": 23372.08438, + "inverseInertia": 0.00004, + "parent": { + "#": 1964 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1964 + } + ], + [ + { + "#": 1967 + }, + { + "#": 1968 + }, + { + "#": 1969 + }, + { + "#": 1970 + }, + { + "#": 1971 + }, + { + "#": 1972 + }, + { + "#": 1973 + }, + { + "#": 1974 + }, + { + "#": 1975 + }, + { + "#": 1976 + }, + { + "#": 1977 + }, + { + "#": 1978 + }, + { + "#": 1979 + }, + { + "#": 1980 + }, + { + "#": 1981 + }, + { + "#": 1982 + }, + { + "#": 1983 + }, + { + "#": 1984 + }, + { + "#": 1985 + }, + { + "#": 1986 + }, + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + } + ], + { + "x": 726.04949, + "y": 356.154, + "index": 0, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 723.50249, + "y": 366.484, + "index": 1, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 718.55849, + "y": 375.904, + "index": 2, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 711.50349, + "y": 383.868, + "index": 3, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 702.74849, + "y": 389.911, + "index": 4, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 692.80049, + "y": 393.684, + "index": 5, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 682.23949, + "y": 394.966, + "index": 6, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 671.67849, + "y": 393.684, + "index": 7, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 661.73049, + "y": 389.911, + "index": 8, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 652.97549, + "y": 383.868, + "index": 9, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 645.92049, + "y": 375.904, + "index": 10, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 640.97649, + "y": 366.484, + "index": 11, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 638.42949, + "y": 356.154, + "index": 12, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 638.42949, + "y": 345.516, + "index": 13, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 640.97649, + "y": 335.186, + "index": 14, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 645.92049, + "y": 325.766, + "index": 15, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 652.97549, + "y": 317.802, + "index": 16, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 661.73049, + "y": 311.759, + "index": 17, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 671.67849, + "y": 307.986, + "index": 18, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 682.23949, + "y": 306.704, + "index": 19, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 692.80049, + "y": 307.986, + "index": 20, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 702.74849, + "y": 311.759, + "index": 21, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 711.50349, + "y": 317.802, + "index": 22, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 718.55849, + "y": 325.766, + "index": 23, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 723.50249, + "y": 335.186, + "index": 24, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 726.04949, + "y": 345.516, + "index": 25, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 682.23949, + "y": 350.835 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2000 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2002 + }, + "max": { + "#": 2003 + } + }, + { + "x": 638.42949, + "y": 306.704 + }, + { + "x": 726.04949, + "y": 394.966 + }, + { + "x": 682.23949, + "y": 350.835 + }, + [ + { + "#": 2006 + }, + { + "#": 2007 + }, + { + "#": 2008 + }, + { + "#": 2009 + }, + { + "#": 2010 + }, + { + "#": 2011 + }, + { + "#": 2012 + }, + { + "#": 2013 + }, + { + "#": 2014 + }, + { + "#": 2015 + }, + { + "#": 2016 + }, + { + "#": 2017 + }, + { + "#": 2018 + } + ], + { + "x": -0.97092, + "y": -0.23939 + }, + { + "x": -0.88546, + "y": -0.46472 + }, + { + "x": -0.74853, + "y": -0.6631 + }, + { + "x": -0.56806, + "y": -0.82299 + }, + { + "x": -0.35462, + "y": -0.93501 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35462, + "y": -0.93501 + }, + { + "x": 0.56806, + "y": -0.82299 + }, + { + "x": 0.74853, + "y": -0.6631 + }, + { + "x": 0.88546, + "y": -0.46472 + }, + { + "x": 0.97092, + "y": -0.23939 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 77, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2020 + }, + "angle": 0, + "vertices": { + "#": 2021 + }, + "position": { + "#": 2027 + }, + "force": { + "#": 2028 + }, + "torque": 0, + "positionImpulse": { + "#": 2029 + }, + "constraintImpulse": { + "#": 2030 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2031 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2032 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2033 + }, + "bounds": { + "#": 2035 + }, + "positionPrev": { + "#": 2038 + }, + "anglePrev": 0, + "axes": { + "#": 2039 + }, + "area": 1190.42275, + "mass": 1.19042, + "inverseMass": 0.84004, + "inertia": 917.47021, + "inverseInertia": 0.00109, + "parent": { + "#": 2019 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2019 + } + ], + [ + { + "#": 2022 + }, + { + "#": 2023 + }, + { + "#": 2024 + }, + { + "#": 2025 + }, + { + "#": 2026 + } + ], + { + "x": 764.3907, + "y": 341.137, + "index": 0, + "body": { + "#": 2019 + }, + "isInternal": false + }, + { + "x": 739.3747, + "y": 349.266, + "index": 1, + "body": { + "#": 2019 + }, + "isInternal": false + }, + { + "x": 723.9127, + "y": 327.985, + "index": 2, + "body": { + "#": 2019 + }, + "isInternal": false + }, + { + "x": 739.3747, + "y": 306.704, + "index": 3, + "body": { + "#": 2019 + }, + "isInternal": false + }, + { + "x": 764.3907, + "y": 314.833, + "index": 4, + "body": { + "#": 2019 + }, + "isInternal": false + }, + { + "x": 746.28849, + "y": 327.985 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2034 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2036 + }, + "max": { + "#": 2037 + } + }, + { + "x": 723.9127, + "y": 306.704 + }, + { + "x": 764.3907, + "y": 349.266 + }, + { + "x": 746.28849, + "y": 327.985 + }, + [ + { + "#": 2040 + }, + { + "#": 2041 + }, + { + "#": 2042 + }, + { + "#": 2043 + }, + { + "#": 2044 + } + ], + { + "x": 0.30904, + "y": 0.95105 + }, + { + "x": -0.80901, + "y": 0.5878 + }, + { + "x": -0.80901, + "y": -0.5878 + }, + { + "x": 0.30904, + "y": -0.95105 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 78, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2046 + }, + "angle": 0, + "vertices": { + "#": 2047 + }, + "position": { + "#": 2052 + }, + "force": { + "#": 2053 + }, + "torque": 0, + "positionImpulse": { + "#": 2054 + }, + "constraintImpulse": { + "#": 2055 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2056 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2057 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2058 + }, + "bounds": { + "#": 2060 + }, + "positionPrev": { + "#": 2063 + }, + "anglePrev": 0, + "axes": { + "#": 2064 + }, + "area": 2171.01614, + "mass": 2.17102, + "inverseMass": 0.46061, + "inertia": 3142.32114, + "inverseInertia": 0.00032, + "parent": { + "#": 2045 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2045 + } + ], + [ + { + "#": 2048 + }, + { + "#": 2049 + }, + { + "#": 2050 + }, + { + "#": 2051 + } + ], + { + "x": 764.3907, + "y": 306.704, + "index": 0, + "body": { + "#": 2045 + }, + "isInternal": false + }, + { + "x": 811.18353, + "y": 306.704, + "index": 1, + "body": { + "#": 2045 + }, + "isInternal": false + }, + { + "x": 811.18353, + "y": 353.10035, + "index": 2, + "body": { + "#": 2045 + }, + "isInternal": false + }, + { + "x": 764.3907, + "y": 353.10035, + "index": 3, + "body": { + "#": 2045 + }, + "isInternal": false + }, + { + "x": 787.78711, + "y": 329.90217 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2059 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2061 + }, + "max": { + "#": 2062 + } + }, + { + "x": 764.3907, + "y": 306.704 + }, + { + "x": 811.18353, + "y": 353.10035 + }, + { + "x": 787.78711, + "y": 329.90217 + }, + [ + { + "#": 2065 + }, + { + "#": 2066 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 79, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2068 + }, + "angle": 0, + "vertices": { + "#": 2069 + }, + "position": { + "#": 2073 + }, + "force": { + "#": 2074 + }, + "torque": 0, + "positionImpulse": { + "#": 2075 + }, + "constraintImpulse": { + "#": 2076 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2077 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2078 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2079 + }, + "bounds": { + "#": 2081 + }, + "positionPrev": { + "#": 2084 + }, + "anglePrev": 0, + "axes": { + "#": 2085 + }, + "area": 1119.99488, + "mass": 1.11999, + "inverseMass": 0.89286, + "inertia": 965.62873, + "inverseInertia": 0.00104, + "parent": { + "#": 2067 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2067 + } + ], + [ + { + "#": 2070 + }, + { + "#": 2071 + }, + { + "#": 2072 + } + ], + { + "x": 847.88686, + "y": 357.562, + "index": 0, + "body": { + "#": 2067 + }, + "isInternal": false + }, + { + "x": 803.84286, + "y": 332.133, + "index": 1, + "body": { + "#": 2067 + }, + "isInternal": false + }, + { + "x": 847.88686, + "y": 306.704, + "index": 2, + "body": { + "#": 2067 + }, + "isInternal": false + }, + { + "x": 833.20553, + "y": 332.133 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2080 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2082 + }, + "max": { + "#": 2083 + } + }, + { + "x": 803.84286, + "y": 306.704 + }, + { + "x": 847.88686, + "y": 357.562 + }, + { + "x": 833.20553, + "y": 332.133 + }, + [ + { + "#": 2086 + }, + { + "#": 2087 + }, + { + "#": 2088 + } + ], + { + "x": -0.5, + "y": 0.86602 + }, + { + "x": -0.5, + "y": -0.86602 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 80, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2090 + }, + "angle": 0, + "vertices": { + "#": 2091 + }, + "position": { + "#": 2099 + }, + "force": { + "#": 2100 + }, + "torque": 0, + "positionImpulse": { + "#": 2101 + }, + "constraintImpulse": { + "#": 2102 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2103 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2104 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2105 + }, + "bounds": { + "#": 2107 + }, + "positionPrev": { + "#": 2110 + }, + "anglePrev": 0, + "axes": { + "#": 2111 + }, + "area": 5582.97476, + "mass": 5.58297, + "inverseMass": 0.17912, + "inertia": 19922.24381, + "inverseInertia": 0.00005, + "parent": { + "#": 2089 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2089 + } + ], + [ + { + "#": 2092 + }, + { + "#": 2093 + }, + { + "#": 2094 + }, + { + "#": 2095 + }, + { + "#": 2096 + }, + { + "#": 2097 + }, + { + "#": 2098 + } + ], + { + "x": 931.51527, + "y": 370.339, + "index": 0, + "body": { + "#": 2089 + }, + "isInternal": false + }, + { + "x": 900.87027, + "y": 394.778, + "index": 1, + "body": { + "#": 2089 + }, + "isInternal": false + }, + { + "x": 862.65727, + "y": 386.056, + "index": 2, + "body": { + "#": 2089 + }, + "isInternal": false + }, + { + "x": 845.65027, + "y": 350.741, + "index": 3, + "body": { + "#": 2089 + }, + "isInternal": false + }, + { + "x": 862.65727, + "y": 315.426, + "index": 4, + "body": { + "#": 2089 + }, + "isInternal": false + }, + { + "x": 900.87027, + "y": 306.704, + "index": 5, + "body": { + "#": 2089 + }, + "isInternal": false + }, + { + "x": 931.51527, + "y": 331.143, + "index": 6, + "body": { + "#": 2089 + }, + "isInternal": false + }, + { + "x": 890.81936, + "y": 350.741 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2106 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2108 + }, + "max": { + "#": 2109 + } + }, + { + "x": 845.65027, + "y": 306.704 + }, + { + "x": 931.51527, + "y": 394.778 + }, + { + "x": 890.81936, + "y": 350.741 + }, + [ + { + "#": 2112 + }, + { + "#": 2113 + }, + { + "#": 2114 + }, + { + "#": 2115 + }, + { + "#": 2116 + }, + { + "#": 2117 + }, + { + "#": 2118 + } + ], + { + "x": 0.6235, + "y": 0.78183 + }, + { + "x": -0.22252, + "y": 0.97493 + }, + { + "x": -0.90097, + "y": 0.43389 + }, + { + "x": -0.90097, + "y": -0.43389 + }, + { + "x": -0.22252, + "y": -0.97493 + }, + { + "x": 0.6235, + "y": -0.78183 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 81, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2120 + }, + "angle": 0, + "vertices": { + "#": 2121 + }, + "position": { + "#": 2128 + }, + "force": { + "#": 2129 + }, + "torque": 0, + "positionImpulse": { + "#": 2130 + }, + "constraintImpulse": { + "#": 2131 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2132 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2133 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2134 + }, + "bounds": { + "#": 2136 + }, + "positionPrev": { + "#": 2139 + }, + "anglePrev": 0, + "axes": { + "#": 2140 + }, + "area": 1427.9506, + "mass": 1.42795, + "inverseMass": 0.7003, + "inertia": 1308.04663, + "inverseInertia": 0.00076, + "parent": { + "#": 2119 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2119 + } + ], + [ + { + "#": 2122 + }, + { + "#": 2123 + }, + { + "#": 2124 + }, + { + "#": 2125 + }, + { + "#": 2126 + }, + { + "#": 2127 + } + ], + { + "x": 972.12127, + "y": 341.87, + "index": 0, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 951.81827, + "y": 353.592, + "index": 1, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 931.51527, + "y": 341.87, + "index": 2, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 931.51527, + "y": 318.426, + "index": 3, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 951.81827, + "y": 306.704, + "index": 4, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 972.12127, + "y": 318.426, + "index": 5, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 951.81827, + "y": 330.148 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2135 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2137 + }, + "max": { + "#": 2138 + } + }, + { + "x": 931.51527, + "y": 306.704 + }, + { + "x": 972.12127, + "y": 353.592 + }, + { + "x": 951.81827, + "y": 330.148 + }, + [ + { + "#": 2141 + }, + { + "#": 2142 + }, + { + "#": 2143 + } + ], + { + "x": -0.5, + "y": -0.86602 + }, + { + "x": 0.5, + "y": -0.86602 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 82, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2145 + }, + "angle": 0, + "vertices": { + "#": 2146 + }, + "position": { + "#": 2151 + }, + "force": { + "#": 2152 + }, + "torque": 0, + "positionImpulse": { + "#": 2153 + }, + "constraintImpulse": { + "#": 2154 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2155 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2156 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2157 + }, + "bounds": { + "#": 2159 + }, + "positionPrev": { + "#": 2162 + }, + "anglePrev": 0, + "axes": { + "#": 2163 + }, + "area": 1006.25243, + "mass": 1.00625, + "inverseMass": 0.99379, + "inertia": 697.14617, + "inverseInertia": 0.00143, + "parent": { + "#": 2144 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2144 + } + ], + [ + { + "#": 2147 + }, + { + "#": 2148 + }, + { + "#": 2149 + }, + { + "#": 2150 + } + ], + { + "x": 972.12127, + "y": 306.704, + "index": 0, + "body": { + "#": 2144 + }, + "isInternal": false + }, + { + "x": 1008.16165, + "y": 306.704, + "index": 1, + "body": { + "#": 2144 + }, + "isInternal": false + }, + { + "x": 1008.16165, + "y": 334.62414, + "index": 2, + "body": { + "#": 2144 + }, + "isInternal": false + }, + { + "x": 972.12127, + "y": 334.62414, + "index": 3, + "body": { + "#": 2144 + }, + "isInternal": false + }, + { + "x": 990.14146, + "y": 320.66407 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2158 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2160 + }, + "max": { + "#": 2161 + } + }, + { + "x": 972.12127, + "y": 306.704 + }, + { + "x": 1008.16165, + "y": 334.62414 + }, + { + "x": 990.14146, + "y": 320.66407 + }, + [ + { + "#": 2164 + }, + { + "#": 2165 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 83, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2167 + }, + "angle": 0, + "vertices": { + "#": 2168 + }, + "position": { + "#": 2176 + }, + "force": { + "#": 2177 + }, + "torque": 0, + "positionImpulse": { + "#": 2178 + }, + "constraintImpulse": { + "#": 2179 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2180 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2181 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2182 + }, + "bounds": { + "#": 2184 + }, + "positionPrev": { + "#": 2187 + }, + "anglePrev": 0, + "axes": { + "#": 2188 + }, + "area": 3210.13014, + "mass": 3.21013, + "inverseMass": 0.31151, + "inertia": 6586.46215, + "inverseInertia": 0.00015, + "parent": { + "#": 2166 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2166 + } + ], + [ + { + "#": 2169 + }, + { + "#": 2170 + }, + { + "#": 2171 + }, + { + "#": 2172 + }, + { + "#": 2173 + }, + { + "#": 2174 + }, + { + "#": 2175 + } + ], + { + "x": 1071.57552, + "y": 354.957, + "index": 0, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 1048.33852, + "y": 373.488, + "index": 1, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 1019.36152, + "y": 366.874, + "index": 2, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 1006.46552, + "y": 340.096, + "index": 3, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 1019.36152, + "y": 313.318, + "index": 4, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 1048.33852, + "y": 306.704, + "index": 5, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 1071.57552, + "y": 325.235, + "index": 6, + "body": { + "#": 2166 + }, + "isInternal": false + }, + { + "x": 1040.71665, + "y": 340.096 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2183 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2185 + }, + "max": { + "#": 2186 + } + }, + { + "x": 1006.46552, + "y": 306.704 + }, + { + "x": 1071.57552, + "y": 373.488 + }, + { + "x": 1040.71665, + "y": 340.096 + }, + [ + { + "#": 2189 + }, + { + "#": 2190 + }, + { + "#": 2191 + }, + { + "#": 2192 + }, + { + "#": 2193 + }, + { + "#": 2194 + }, + { + "#": 2195 + } + ], + { + "x": 0.62349, + "y": 0.78183 + }, + { + "x": -0.22253, + "y": 0.97493 + }, + { + "x": -0.90096, + "y": 0.43389 + }, + { + "x": -0.90096, + "y": -0.43389 + }, + { + "x": -0.22253, + "y": -0.97493 + }, + { + "x": 0.62349, + "y": -0.78183 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 84, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2197 + }, + "angle": 0, + "vertices": { + "#": 2198 + }, + "position": { + "#": 2203 + }, + "force": { + "#": 2204 + }, + "torque": 0, + "positionImpulse": { + "#": 2205 + }, + "constraintImpulse": { + "#": 2206 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2207 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2208 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2209 + }, + "bounds": { + "#": 2211 + }, + "positionPrev": { + "#": 2214 + }, + "anglePrev": 0, + "axes": { + "#": 2215 + }, + "area": 1352.92727, + "mass": 1.35293, + "inverseMass": 0.73914, + "inertia": 1256.99094, + "inverseInertia": 0.0008, + "parent": { + "#": 2196 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2196 + } + ], + [ + { + "#": 2199 + }, + { + "#": 2200 + }, + { + "#": 2201 + }, + { + "#": 2202 + } + ], + { + "x": 1071.57552, + "y": 306.704, + "index": 0, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 1113.14484, + "y": 306.704, + "index": 1, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 1113.14484, + "y": 339.2503, + "index": 2, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 1071.57552, + "y": 339.2503, + "index": 3, + "body": { + "#": 2196 + }, + "isInternal": false + }, + { + "x": 1092.36018, + "y": 322.97715 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2210 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2212 + }, + "max": { + "#": 2213 + } + }, + { + "x": 1071.57552, + "y": 306.704 + }, + { + "x": 1113.14484, + "y": 339.2503 + }, + { + "x": 1092.36018, + "y": 322.97715 + }, + [ + { + "#": 2216 + }, + { + "#": 2217 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 85, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2219 + }, + "angle": 0, + "vertices": { + "#": 2220 + }, + "position": { + "#": 2225 + }, + "force": { + "#": 2226 + }, + "torque": 0, + "positionImpulse": { + "#": 2227 + }, + "constraintImpulse": { + "#": 2228 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2229 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2230 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2231 + }, + "bounds": { + "#": 2233 + }, + "positionPrev": { + "#": 2236 + }, + "anglePrev": 0, + "axes": { + "#": 2237 + }, + "area": 1720.12601, + "mass": 1.72013, + "inverseMass": 0.58135, + "inertia": 2025.86246, + "inverseInertia": 0.00049, + "parent": { + "#": 2218 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2218 + } + ], + [ + { + "#": 2221 + }, + { + "#": 2222 + }, + { + "#": 2223 + }, + { + "#": 2224 + } + ], + { + "x": 20, + "y": 402.676, + "index": 0, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 56.93261, + "y": 402.676, + "index": 1, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 56.93261, + "y": 449.25072, + "index": 2, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 20, + "y": 449.25072, + "index": 3, + "body": { + "#": 2218 + }, + "isInternal": false + }, + { + "x": 38.46631, + "y": 425.96336 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2232 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2234 + }, + "max": { + "#": 2235 + } + }, + { + "x": 20, + "y": 402.676 + }, + { + "x": 56.93261, + "y": 449.25072 + }, + { + "x": 38.46631, + "y": 425.96336 + }, + [ + { + "#": 2238 + }, + { + "#": 2239 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 86, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2241 + }, + "angle": 0, + "vertices": { + "#": 2242 + }, + "position": { + "#": 2247 + }, + "force": { + "#": 2248 + }, + "torque": 0, + "positionImpulse": { + "#": 2249 + }, + "constraintImpulse": { + "#": 2250 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2251 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2252 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2253 + }, + "bounds": { + "#": 2255 + }, + "positionPrev": { + "#": 2258 + }, + "anglePrev": 0, + "axes": { + "#": 2259 + }, + "area": 1250.16168, + "mass": 1.25016, + "inverseMass": 0.7999, + "inertia": 1044.21974, + "inverseInertia": 0.00096, + "parent": { + "#": 2240 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2240 + } + ], + [ + { + "#": 2243 + }, + { + "#": 2244 + }, + { + "#": 2245 + }, + { + "#": 2246 + } + ], + { + "x": 56.93261, + "y": 402.676, + "index": 0, + "body": { + "#": 2240 + }, + "isInternal": false + }, + { + "x": 93.48007, + "y": 402.676, + "index": 1, + "body": { + "#": 2240 + }, + "isInternal": false + }, + { + "x": 93.48007, + "y": 436.88253, + "index": 2, + "body": { + "#": 2240 + }, + "isInternal": false + }, + { + "x": 56.93261, + "y": 436.88253, + "index": 3, + "body": { + "#": 2240 + }, + "isInternal": false + }, + { + "x": 75.20634, + "y": 419.77927 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2254 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2256 + }, + "max": { + "#": 2257 + } + }, + { + "x": 56.93261, + "y": 402.676 + }, + { + "x": 93.48007, + "y": 436.88253 + }, + { + "x": 75.20634, + "y": 419.77927 + }, + [ + { + "#": 2260 + }, + { + "#": 2261 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 87, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2263 + }, + "angle": 0, + "vertices": { + "#": 2264 + }, + "position": { + "#": 2270 + }, + "force": { + "#": 2271 + }, + "torque": 0, + "positionImpulse": { + "#": 2272 + }, + "constraintImpulse": { + "#": 2273 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2274 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2275 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2276 + }, + "bounds": { + "#": 2278 + }, + "positionPrev": { + "#": 2281 + }, + "anglePrev": 0, + "axes": { + "#": 2282 + }, + "area": 3092.07523, + "mass": 3.09208, + "inverseMass": 0.32341, + "inertia": 6189.98562, + "inverseInertia": 0.00016, + "parent": { + "#": 2262 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2262 + } + ], + [ + { + "#": 2265 + }, + { + "#": 2266 + }, + { + "#": 2267 + }, + { + "#": 2268 + }, + { + "#": 2269 + } + ], + { + "x": 155.27345, + "y": 458.17, + "index": 0, + "body": { + "#": 2262 + }, + "isInternal": false + }, + { + "x": 114.95445, + "y": 471.27, + "index": 1, + "body": { + "#": 2262 + }, + "isInternal": false + }, + { + "x": 90.03645, + "y": 436.973, + "index": 2, + "body": { + "#": 2262 + }, + "isInternal": false + }, + { + "x": 114.95445, + "y": 402.676, + "index": 3, + "body": { + "#": 2262 + }, + "isInternal": false + }, + { + "x": 155.27345, + "y": 415.776, + "index": 4, + "body": { + "#": 2262 + }, + "isInternal": false + }, + { + "x": 126.09857, + "y": 436.973 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2277 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2279 + }, + "max": { + "#": 2280 + } + }, + { + "x": 90.03645, + "y": 402.676 + }, + { + "x": 155.27345, + "y": 471.27 + }, + { + "x": 126.09857, + "y": 436.973 + }, + [ + { + "#": 2283 + }, + { + "#": 2284 + }, + { + "#": 2285 + }, + { + "#": 2286 + }, + { + "#": 2287 + } + ], + { + "x": 0.30901, + "y": 0.95106 + }, + { + "x": -0.80902, + "y": 0.58778 + }, + { + "x": -0.80902, + "y": -0.58778 + }, + { + "x": 0.30901, + "y": -0.95106 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 88, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2289 + }, + "angle": 0, + "vertices": { + "#": 2290 + }, + "position": { + "#": 2295 + }, + "force": { + "#": 2296 + }, + "torque": 0, + "positionImpulse": { + "#": 2297 + }, + "constraintImpulse": { + "#": 2298 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2299 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2300 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2301 + }, + "bounds": { + "#": 2303 + }, + "positionPrev": { + "#": 2306 + }, + "anglePrev": 0, + "axes": { + "#": 2307 + }, + "area": 1581.4152, + "mass": 1.58142, + "inverseMass": 0.63235, + "inertia": 1771.7086, + "inverseInertia": 0.00056, + "parent": { + "#": 2288 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2288 + } + ], + [ + { + "#": 2291 + }, + { + "#": 2292 + }, + { + "#": 2293 + }, + { + "#": 2294 + } + ], + { + "x": 155.27345, + "y": 402.676, + "index": 0, + "body": { + "#": 2288 + }, + "isInternal": false + }, + { + "x": 202.69706, + "y": 402.676, + "index": 1, + "body": { + "#": 2288 + }, + "isInternal": false + }, + { + "x": 202.69706, + "y": 436.02258, + "index": 2, + "body": { + "#": 2288 + }, + "isInternal": false + }, + { + "x": 155.27345, + "y": 436.02258, + "index": 3, + "body": { + "#": 2288 + }, + "isInternal": false + }, + { + "x": 178.98526, + "y": 419.34929 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2302 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2304 + }, + "max": { + "#": 2305 + } + }, + { + "x": 155.27345, + "y": 402.676 + }, + { + "x": 202.69706, + "y": 436.02258 + }, + { + "x": 178.98526, + "y": 419.34929 + }, + [ + { + "#": 2308 + }, + { + "#": 2309 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 89, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2311 + }, + "angle": 0, + "vertices": { + "#": 2312 + }, + "position": { + "#": 2321 + }, + "force": { + "#": 2322 + }, + "torque": 0, + "positionImpulse": { + "#": 2323 + }, + "constraintImpulse": { + "#": 2324 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2325 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2326 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2327 + }, + "bounds": { + "#": 2329 + }, + "positionPrev": { + "#": 2332 + }, + "anglePrev": 0, + "axes": { + "#": 2333 + }, + "area": 4508.288, + "mass": 4.50829, + "inverseMass": 0.22181, + "inertia": 12968.58039, + "inverseInertia": 0.00008, + "parent": { + "#": 2310 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2310 + } + ], + [ + { + "#": 2313 + }, + { + "#": 2314 + }, + { + "#": 2315 + }, + { + "#": 2316 + }, + { + "#": 2317 + }, + { + "#": 2318 + }, + { + "#": 2319 + }, + { + "#": 2320 + } + ], + { + "x": 276.46706, + "y": 454.839, + "index": 0, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 254.86006, + "y": 476.446, + "index": 1, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 224.30406, + "y": 476.446, + "index": 2, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 202.69706, + "y": 454.839, + "index": 3, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 202.69706, + "y": 424.283, + "index": 4, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 224.30406, + "y": 402.676, + "index": 5, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 254.86006, + "y": 402.676, + "index": 6, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 276.46706, + "y": 424.283, + "index": 7, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 239.58206, + "y": 439.561 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2328 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2330 + }, + "max": { + "#": 2331 + } + }, + { + "x": 202.69706, + "y": 402.676 + }, + { + "x": 276.46706, + "y": 476.446 + }, + { + "x": 239.58206, + "y": 439.561 + }, + [ + { + "#": 2334 + }, + { + "#": 2335 + }, + { + "#": 2336 + }, + { + "#": 2337 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 90, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2339 + }, + "angle": 0, + "vertices": { + "#": 2340 + }, + "position": { + "#": 2345 + }, + "force": { + "#": 2346 + }, + "torque": 0, + "positionImpulse": { + "#": 2347 + }, + "constraintImpulse": { + "#": 2348 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2349 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2350 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2351 + }, + "bounds": { + "#": 2353 + }, + "positionPrev": { + "#": 2356 + }, + "anglePrev": 0, + "axes": { + "#": 2357 + }, + "area": 1039.62673, + "mass": 1.03963, + "inverseMass": 0.96188, + "inertia": 836.76945, + "inverseInertia": 0.0012, + "parent": { + "#": 2338 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2338 + } + ], + [ + { + "#": 2341 + }, + { + "#": 2342 + }, + { + "#": 2343 + }, + { + "#": 2344 + } + ], + { + "x": 276.46706, + "y": 402.676, + "index": 0, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 319.14183, + "y": 402.676, + "index": 1, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 319.14183, + "y": 427.03763, + "index": 2, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 276.46706, + "y": 427.03763, + "index": 3, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 297.80445, + "y": 414.85681 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2352 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2354 + }, + "max": { + "#": 2355 + } + }, + { + "x": 276.46706, + "y": 402.676 + }, + { + "x": 319.14183, + "y": 427.03763 + }, + { + "x": 297.80445, + "y": 414.85681 + }, + [ + { + "#": 2358 + }, + { + "#": 2359 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 91, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2361 + }, + "angle": 0, + "vertices": { + "#": 2362 + }, + "position": { + "#": 2367 + }, + "force": { + "#": 2368 + }, + "torque": 0, + "positionImpulse": { + "#": 2369 + }, + "constraintImpulse": { + "#": 2370 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2371 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2372 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2373 + }, + "bounds": { + "#": 2375 + }, + "positionPrev": { + "#": 2378 + }, + "anglePrev": 0, + "axes": { + "#": 2379 + }, + "area": 1574.87173, + "mass": 1.57487, + "inverseMass": 0.63497, + "inertia": 1691.40994, + "inverseInertia": 0.00059, + "parent": { + "#": 2360 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2360 + } + ], + [ + { + "#": 2363 + }, + { + "#": 2364 + }, + { + "#": 2365 + }, + { + "#": 2366 + } + ], + { + "x": 319.14183, + "y": 402.676, + "index": 0, + "body": { + "#": 2360 + }, + "isInternal": false + }, + { + "x": 354.80335, + "y": 402.676, + "index": 1, + "body": { + "#": 2360 + }, + "isInternal": false + }, + { + "x": 354.80335, + "y": 446.83765, + "index": 2, + "body": { + "#": 2360 + }, + "isInternal": false + }, + { + "x": 319.14183, + "y": 446.83765, + "index": 3, + "body": { + "#": 2360 + }, + "isInternal": false + }, + { + "x": 336.97259, + "y": 424.75683 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2374 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2376 + }, + "max": { + "#": 2377 + } + }, + { + "x": 319.14183, + "y": 402.676 + }, + { + "x": 354.80335, + "y": 446.83765 + }, + { + "x": 336.97259, + "y": 424.75683 + }, + [ + { + "#": 2380 + }, + { + "#": 2381 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 92, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2383 + }, + "angle": 0, + "vertices": { + "#": 2384 + }, + "position": { + "#": 2389 + }, + "force": { + "#": 2390 + }, + "torque": 0, + "positionImpulse": { + "#": 2391 + }, + "constraintImpulse": { + "#": 2392 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2393 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2394 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2395 + }, + "bounds": { + "#": 2397 + }, + "positionPrev": { + "#": 2400 + }, + "anglePrev": 0, + "axes": { + "#": 2401 + }, + "area": 968.38796, + "mass": 0.96839, + "inverseMass": 1.03264, + "inertia": 797.61752, + "inverseInertia": 0.00125, + "parent": { + "#": 2382 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2382 + } + ], + [ + { + "#": 2385 + }, + { + "#": 2386 + }, + { + "#": 2387 + }, + { + "#": 2388 + } + ], + { + "x": 354.80335, + "y": 402.676, + "index": 0, + "body": { + "#": 2382 + }, + "isInternal": false + }, + { + "x": 399.55503, + "y": 402.676, + "index": 1, + "body": { + "#": 2382 + }, + "isInternal": false + }, + { + "x": 399.55503, + "y": 424.31515, + "index": 2, + "body": { + "#": 2382 + }, + "isInternal": false + }, + { + "x": 354.80335, + "y": 424.31515, + "index": 3, + "body": { + "#": 2382 + }, + "isInternal": false + }, + { + "x": 377.17919, + "y": 413.49557 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2396 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2398 + }, + "max": { + "#": 2399 + } + }, + { + "x": 354.80335, + "y": 402.676 + }, + { + "x": 399.55503, + "y": 424.31515 + }, + { + "x": 377.17919, + "y": 413.49557 + }, + [ + { + "#": 2402 + }, + { + "#": 2403 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 93, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2405 + }, + "angle": 0, + "vertices": { + "#": 2406 + }, + "position": { + "#": 2411 + }, + "force": { + "#": 2412 + }, + "torque": 0, + "positionImpulse": { + "#": 2413 + }, + "constraintImpulse": { + "#": 2414 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2415 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2416 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2417 + }, + "bounds": { + "#": 2419 + }, + "positionPrev": { + "#": 2422 + }, + "anglePrev": 0, + "axes": { + "#": 2423 + }, + "area": 1379.26758, + "mass": 1.37927, + "inverseMass": 0.72502, + "inertia": 1297.38361, + "inverseInertia": 0.00077, + "parent": { + "#": 2404 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2404 + } + ], + [ + { + "#": 2407 + }, + { + "#": 2408 + }, + { + "#": 2409 + }, + { + "#": 2410 + } + ], + { + "x": 399.55503, + "y": 402.676, + "index": 0, + "body": { + "#": 2404 + }, + "isInternal": false + }, + { + "x": 432.92617, + "y": 402.676, + "index": 1, + "body": { + "#": 2404 + }, + "isInternal": false + }, + { + "x": 432.92617, + "y": 444.00715, + "index": 2, + "body": { + "#": 2404 + }, + "isInternal": false + }, + { + "x": 399.55503, + "y": 444.00715, + "index": 3, + "body": { + "#": 2404 + }, + "isInternal": false + }, + { + "x": 416.2406, + "y": 423.34157 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2418 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2420 + }, + "max": { + "#": 2421 + } + }, + { + "x": 399.55503, + "y": 402.676 + }, + { + "x": 432.92617, + "y": 444.00715 + }, + { + "x": 416.2406, + "y": 423.34157 + }, + [ + { + "#": 2424 + }, + { + "#": 2425 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 94, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2427 + }, + "angle": 0, + "vertices": { + "#": 2428 + }, + "position": { + "#": 2435 + }, + "force": { + "#": 2436 + }, + "torque": 0, + "positionImpulse": { + "#": 2437 + }, + "constraintImpulse": { + "#": 2438 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2439 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2440 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2441 + }, + "bounds": { + "#": 2443 + }, + "positionPrev": { + "#": 2446 + }, + "anglePrev": 0, + "axes": { + "#": 2447 + }, + "area": 1475.91406, + "mass": 1.47591, + "inverseMass": 0.67755, + "inertia": 1397.39442, + "inverseInertia": 0.00072, + "parent": { + "#": 2426 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2426 + } + ], + [ + { + "#": 2429 + }, + { + "#": 2430 + }, + { + "#": 2431 + }, + { + "#": 2432 + }, + { + "#": 2433 + }, + { + "#": 2434 + } + ], + { + "x": 474.20817, + "y": 438.428, + "index": 0, + "body": { + "#": 2426 + }, + "isInternal": false + }, + { + "x": 453.56717, + "y": 450.346, + "index": 1, + "body": { + "#": 2426 + }, + "isInternal": false + }, + { + "x": 432.92617, + "y": 438.428, + "index": 2, + "body": { + "#": 2426 + }, + "isInternal": false + }, + { + "x": 432.92617, + "y": 414.594, + "index": 3, + "body": { + "#": 2426 + }, + "isInternal": false + }, + { + "x": 453.56717, + "y": 402.676, + "index": 4, + "body": { + "#": 2426 + }, + "isInternal": false + }, + { + "x": 474.20817, + "y": 414.594, + "index": 5, + "body": { + "#": 2426 + }, + "isInternal": false + }, + { + "x": 453.56717, + "y": 426.511 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2442 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2444 + }, + "max": { + "#": 2445 + } + }, + { + "x": 432.92617, + "y": 402.676 + }, + { + "x": 474.20817, + "y": 450.346 + }, + { + "x": 453.56717, + "y": 426.511 + }, + [ + { + "#": 2448 + }, + { + "#": 2449 + }, + { + "#": 2450 + } + ], + { + "x": -0.50003, + "y": -0.86601 + }, + { + "x": 0.50003, + "y": -0.86601 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 95, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2452 + }, + "angle": 0, + "vertices": { + "#": 2453 + }, + "position": { + "#": 2458 + }, + "force": { + "#": 2459 + }, + "torque": 0, + "positionImpulse": { + "#": 2460 + }, + "constraintImpulse": { + "#": 2461 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2462 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2463 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2464 + }, + "bounds": { + "#": 2466 + }, + "positionPrev": { + "#": 2469 + }, + "anglePrev": 0, + "axes": { + "#": 2470 + }, + "area": 2731.5257, + "mass": 2.73153, + "inverseMass": 0.3661, + "inertia": 4974.15509, + "inverseInertia": 0.0002, + "parent": { + "#": 2451 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2451 + } + ], + [ + { + "#": 2454 + }, + { + "#": 2455 + }, + { + "#": 2456 + }, + { + "#": 2457 + } + ], + { + "x": 526.47217, + "y": 454.94, + "index": 0, + "body": { + "#": 2451 + }, + "isInternal": false + }, + { + "x": 474.20817, + "y": 454.94, + "index": 1, + "body": { + "#": 2451 + }, + "isInternal": false + }, + { + "x": 474.20817, + "y": 402.676, + "index": 2, + "body": { + "#": 2451 + }, + "isInternal": false + }, + { + "x": 526.47217, + "y": 402.676, + "index": 3, + "body": { + "#": 2451 + }, + "isInternal": false + }, + { + "x": 500.34017, + "y": 428.808 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2465 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2467 + }, + "max": { + "#": 2468 + } + }, + { + "x": 474.20817, + "y": 402.676 + }, + { + "x": 526.47217, + "y": 454.94 + }, + { + "x": 500.34017, + "y": 428.808 + }, + [ + { + "#": 2471 + }, + { + "#": 2472 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 96, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2474 + }, + "angle": 0, + "vertices": { + "#": 2475 + }, + "position": { + "#": 2482 + }, + "force": { + "#": 2483 + }, + "torque": 0, + "positionImpulse": { + "#": 2484 + }, + "constraintImpulse": { + "#": 2485 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2486 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2487 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2488 + }, + "bounds": { + "#": 2490 + }, + "positionPrev": { + "#": 2493 + }, + "anglePrev": 0, + "axes": { + "#": 2494 + }, + "area": 1453.96239, + "mass": 1.45396, + "inverseMass": 0.68778, + "inertia": 1356.13589, + "inverseInertia": 0.00074, + "parent": { + "#": 2473 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2473 + } + ], + [ + { + "#": 2476 + }, + { + "#": 2477 + }, + { + "#": 2478 + }, + { + "#": 2479 + }, + { + "#": 2480 + }, + { + "#": 2481 + } + ], + { + "x": 567.44617, + "y": 438.161, + "index": 0, + "body": { + "#": 2473 + }, + "isInternal": false + }, + { + "x": 546.95917, + "y": 449.99, + "index": 1, + "body": { + "#": 2473 + }, + "isInternal": false + }, + { + "x": 526.47217, + "y": 438.161, + "index": 2, + "body": { + "#": 2473 + }, + "isInternal": false + }, + { + "x": 526.47217, + "y": 414.505, + "index": 3, + "body": { + "#": 2473 + }, + "isInternal": false + }, + { + "x": 546.95917, + "y": 402.676, + "index": 4, + "body": { + "#": 2473 + }, + "isInternal": false + }, + { + "x": 567.44617, + "y": 414.505, + "index": 5, + "body": { + "#": 2473 + }, + "isInternal": false + }, + { + "x": 546.95917, + "y": 426.333 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2489 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2491 + }, + "max": { + "#": 2492 + } + }, + { + "x": 526.47217, + "y": 402.676 + }, + { + "x": 567.44617, + "y": 449.99 + }, + { + "x": 546.95917, + "y": 426.333 + }, + [ + { + "#": 2495 + }, + { + "#": 2496 + }, + { + "#": 2497 + } + ], + { + "x": -0.50003, + "y": -0.86601 + }, + { + "x": 0.50003, + "y": -0.86601 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 97, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2499 + }, + "angle": 0, + "vertices": { + "#": 2500 + }, + "position": { + "#": 2505 + }, + "force": { + "#": 2506 + }, + "torque": 0, + "positionImpulse": { + "#": 2507 + }, + "constraintImpulse": { + "#": 2508 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2509 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2510 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2511 + }, + "bounds": { + "#": 2513 + }, + "positionPrev": { + "#": 2516 + }, + "anglePrev": 0, + "axes": { + "#": 2517 + }, + "area": 4826.0809, + "mass": 4.82608, + "inverseMass": 0.20721, + "inertia": 15527.37124, + "inverseInertia": 0.00006, + "parent": { + "#": 2498 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2498 + } + ], + [ + { + "#": 2501 + }, + { + "#": 2502 + }, + { + "#": 2503 + }, + { + "#": 2504 + } + ], + { + "x": 636.91617, + "y": 472.146, + "index": 0, + "body": { + "#": 2498 + }, + "isInternal": false + }, + { + "x": 567.44617, + "y": 472.146, + "index": 1, + "body": { + "#": 2498 + }, + "isInternal": false + }, + { + "x": 567.44617, + "y": 402.676, + "index": 2, + "body": { + "#": 2498 + }, + "isInternal": false + }, + { + "x": 636.91617, + "y": 402.676, + "index": 3, + "body": { + "#": 2498 + }, + "isInternal": false + }, + { + "x": 602.18117, + "y": 437.411 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2512 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2514 + }, + "max": { + "#": 2515 + } + }, + { + "x": 567.44617, + "y": 402.676 + }, + { + "x": 636.91617, + "y": 472.146 + }, + { + "x": 602.18117, + "y": 437.411 + }, + [ + { + "#": 2518 + }, + { + "#": 2519 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 98, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2521 + }, + "angle": 0, + "vertices": { + "#": 2522 + }, + "position": { + "#": 2527 + }, + "force": { + "#": 2528 + }, + "torque": 0, + "positionImpulse": { + "#": 2529 + }, + "constraintImpulse": { + "#": 2530 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2531 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2532 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2533 + }, + "bounds": { + "#": 2535 + }, + "positionPrev": { + "#": 2538 + }, + "anglePrev": 0, + "axes": { + "#": 2539 + }, + "area": 1288.74263, + "mass": 1.28874, + "inverseMass": 0.77595, + "inertia": 1283.52541, + "inverseInertia": 0.00078, + "parent": { + "#": 2520 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2520 + } + ], + [ + { + "#": 2523 + }, + { + "#": 2524 + }, + { + "#": 2525 + }, + { + "#": 2526 + } + ], + { + "x": 636.91617, + "y": 402.676, + "index": 0, + "body": { + "#": 2520 + }, + "isInternal": false + }, + { + "x": 684.34557, + "y": 402.676, + "index": 1, + "body": { + "#": 2520 + }, + "isInternal": false + }, + { + "x": 684.34557, + "y": 429.84781, + "index": 2, + "body": { + "#": 2520 + }, + "isInternal": false + }, + { + "x": 636.91617, + "y": 429.84781, + "index": 3, + "body": { + "#": 2520 + }, + "isInternal": false + }, + { + "x": 660.63087, + "y": 416.26191 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2534 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2536 + }, + "max": { + "#": 2537 + } + }, + { + "x": 636.91617, + "y": 402.676 + }, + { + "x": 684.34557, + "y": 429.84781 + }, + { + "x": 660.63087, + "y": 416.26191 + }, + [ + { + "#": 2540 + }, + { + "#": 2541 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 99, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2543 + }, + "angle": 0, + "vertices": { + "#": 2544 + }, + "position": { + "#": 2550 + }, + "force": { + "#": 2551 + }, + "torque": 0, + "positionImpulse": { + "#": 2552 + }, + "constraintImpulse": { + "#": 2553 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2554 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2555 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2556 + }, + "bounds": { + "#": 2558 + }, + "positionPrev": { + "#": 2561 + }, + "anglePrev": 0, + "axes": { + "#": 2562 + }, + "area": 1779.8838, + "mass": 1.77988, + "inverseMass": 0.56183, + "inertia": 2051.03388, + "inverseInertia": 0.00049, + "parent": { + "#": 2542 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2542 + } + ], + [ + { + "#": 2545 + }, + { + "#": 2546 + }, + { + "#": 2547 + }, + { + "#": 2548 + }, + { + "#": 2549 + } + ], + { + "x": 731.22878, + "y": 444.779, + "index": 0, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 700.63878, + "y": 454.718, + "index": 1, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 681.73278, + "y": 428.697, + "index": 2, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 700.63878, + "y": 402.676, + "index": 3, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 731.22878, + "y": 412.615, + "index": 4, + "body": { + "#": 2542 + }, + "isInternal": false + }, + { + "x": 709.09357, + "y": 428.697 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2557 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2559 + }, + "max": { + "#": 2560 + } + }, + { + "x": 681.73278, + "y": 402.676 + }, + { + "x": 731.22878, + "y": 454.718 + }, + { + "x": 709.09357, + "y": 428.697 + }, + [ + { + "#": 2563 + }, + { + "#": 2564 + }, + { + "#": 2565 + }, + { + "#": 2566 + }, + { + "#": 2567 + } + ], + { + "x": 0.30901, + "y": 0.95106 + }, + { + "x": -0.80901, + "y": 0.5878 + }, + { + "x": -0.80901, + "y": -0.5878 + }, + { + "x": 0.30901, + "y": -0.95106 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 100, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2569 + }, + "angle": 0, + "vertices": { + "#": 2570 + }, + "position": { + "#": 2575 + }, + "force": { + "#": 2576 + }, + "torque": 0, + "positionImpulse": { + "#": 2577 + }, + "constraintImpulse": { + "#": 2578 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2579 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2580 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2581 + }, + "bounds": { + "#": 2583 + }, + "positionPrev": { + "#": 2586 + }, + "anglePrev": 0, + "axes": { + "#": 2587 + }, + "area": 4428.37012, + "mass": 4.42837, + "inverseMass": 0.22582, + "inertia": 13073.64126, + "inverseInertia": 0.00008, + "parent": { + "#": 2568 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2568 + } + ], + [ + { + "#": 2571 + }, + { + "#": 2572 + }, + { + "#": 2573 + }, + { + "#": 2574 + } + ], + { + "x": 797.77478, + "y": 469.222, + "index": 0, + "body": { + "#": 2568 + }, + "isInternal": false + }, + { + "x": 731.22878, + "y": 469.222, + "index": 1, + "body": { + "#": 2568 + }, + "isInternal": false + }, + { + "x": 731.22878, + "y": 402.676, + "index": 2, + "body": { + "#": 2568 + }, + "isInternal": false + }, + { + "x": 797.77478, + "y": 402.676, + "index": 3, + "body": { + "#": 2568 + }, + "isInternal": false + }, + { + "x": 764.50178, + "y": 435.949 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2582 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2584 + }, + "max": { + "#": 2585 + } + }, + { + "x": 731.22878, + "y": 402.676 + }, + { + "x": 797.77478, + "y": 469.222 + }, + { + "x": 764.50178, + "y": 435.949 + }, + [ + { + "#": 2588 + }, + { + "#": 2589 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 101, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2591 + }, + "angle": 0, + "vertices": { + "#": 2592 + }, + "position": { + "#": 2619 + }, + "force": { + "#": 2620 + }, + "torque": 0, + "positionImpulse": { + "#": 2621 + }, + "constraintImpulse": { + "#": 2622 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2623 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2624 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2625 + }, + "circleRadius": 35.88632, + "bounds": { + "#": 2627 + }, + "positionPrev": { + "#": 2630 + }, + "anglePrev": 0, + "axes": { + "#": 2631 + }, + "area": 4006.57748, + "mass": 4.00658, + "inverseMass": 0.24959, + "inertia": 10219.63772, + "inverseInertia": 0.0001, + "parent": { + "#": 2590 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2590 + } + ], + [ + { + "#": 2593 + }, + { + "#": 2594 + }, + { + "#": 2595 + }, + { + "#": 2596 + }, + { + "#": 2597 + }, + { + "#": 2598 + }, + { + "#": 2599 + }, + { + "#": 2600 + }, + { + "#": 2601 + }, + { + "#": 2602 + }, + { + "#": 2603 + }, + { + "#": 2604 + }, + { + "#": 2605 + }, + { + "#": 2606 + }, + { + "#": 2607 + }, + { + "#": 2608 + }, + { + "#": 2609 + }, + { + "#": 2610 + }, + { + "#": 2611 + }, + { + "#": 2612 + }, + { + "#": 2613 + }, + { + "#": 2614 + }, + { + "#": 2615 + }, + { + "#": 2616 + }, + { + "#": 2617 + }, + { + "#": 2618 + } + ], + { + "x": 869.02478, + "y": 442.888, + "index": 0, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 866.95378, + "y": 451.287, + "index": 1, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 862.93378, + "y": 458.948, + "index": 2, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 857.19678, + "y": 465.423, + "index": 3, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 850.07678, + "y": 470.338, + "index": 4, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 841.98778, + "y": 473.406, + "index": 5, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 833.39978, + "y": 474.448, + "index": 6, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 824.81178, + "y": 473.406, + "index": 7, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 816.72278, + "y": 470.338, + "index": 8, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 809.60278, + "y": 465.423, + "index": 9, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 803.86578, + "y": 458.948, + "index": 10, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 799.84578, + "y": 451.287, + "index": 11, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 797.77478, + "y": 442.888, + "index": 12, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 797.77478, + "y": 434.236, + "index": 13, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 799.84578, + "y": 425.837, + "index": 14, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 803.86578, + "y": 418.176, + "index": 15, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 809.60278, + "y": 411.701, + "index": 16, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 816.72278, + "y": 406.786, + "index": 17, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 824.81178, + "y": 403.718, + "index": 18, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 833.39978, + "y": 402.676, + "index": 19, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 841.98778, + "y": 403.718, + "index": 20, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 850.07678, + "y": 406.786, + "index": 21, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 857.19678, + "y": 411.701, + "index": 22, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 862.93378, + "y": 418.176, + "index": 23, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 866.95378, + "y": 425.837, + "index": 24, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 869.02478, + "y": 434.236, + "index": 25, + "body": { + "#": 2590 + }, + "isInternal": false + }, + { + "x": 833.39978, + "y": 438.562 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2626 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2628 + }, + "max": { + "#": 2629 + } + }, + { + "x": 797.77478, + "y": 402.676 + }, + { + "x": 869.02478, + "y": 474.448 + }, + { + "x": 833.39978, + "y": 438.562 + }, + [ + { + "#": 2632 + }, + { + "#": 2633 + }, + { + "#": 2634 + }, + { + "#": 2635 + }, + { + "#": 2636 + }, + { + "#": 2637 + }, + { + "#": 2638 + }, + { + "#": 2639 + }, + { + "#": 2640 + }, + { + "#": 2641 + }, + { + "#": 2642 + }, + { + "#": 2643 + }, + { + "#": 2644 + } + ], + { + "x": -0.97092, + "y": -0.23941 + }, + { + "x": -0.88549, + "y": -0.46465 + }, + { + "x": -0.74847, + "y": -0.66316 + }, + { + "x": -0.5681, + "y": -0.82296 + }, + { + "x": -0.35463, + "y": -0.93501 + }, + { + "x": -0.12045, + "y": -0.99272 + }, + { + "x": 0.12045, + "y": -0.99272 + }, + { + "x": 0.35463, + "y": -0.93501 + }, + { + "x": 0.5681, + "y": -0.82296 + }, + { + "x": 0.74847, + "y": -0.66316 + }, + { + "x": 0.88549, + "y": -0.46465 + }, + { + "x": 0.97092, + "y": -0.23941 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 102, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2646 + }, + "angle": 0, + "vertices": { + "#": 2647 + }, + "position": { + "#": 2652 + }, + "force": { + "#": 2653 + }, + "torque": 0, + "positionImpulse": { + "#": 2654 + }, + "constraintImpulse": { + "#": 2655 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2656 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2657 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2658 + }, + "bounds": { + "#": 2660 + }, + "positionPrev": { + "#": 2663 + }, + "anglePrev": 0, + "axes": { + "#": 2664 + }, + "area": 2513.03702, + "mass": 2.51304, + "inverseMass": 0.39792, + "inertia": 7118.36798, + "inverseInertia": 0.00014, + "parent": { + "#": 2645 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2645 + } + ], + [ + { + "#": 2648 + }, + { + "#": 2649 + }, + { + "#": 2650 + }, + { + "#": 2651 + } + ], + { + "x": 869.02478, + "y": 402.676, + "index": 0, + "body": { + "#": 2645 + }, + "isInternal": false + }, + { + "x": 956.63109, + "y": 402.676, + "index": 1, + "body": { + "#": 2645 + }, + "isInternal": false + }, + { + "x": 956.63109, + "y": 431.36157, + "index": 2, + "body": { + "#": 2645 + }, + "isInternal": false + }, + { + "x": 869.02478, + "y": 431.36157, + "index": 3, + "body": { + "#": 2645 + }, + "isInternal": false + }, + { + "x": 912.82793, + "y": 417.01879 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2659 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2661 + }, + "max": { + "#": 2662 + } + }, + { + "x": 869.02478, + "y": 402.676 + }, + { + "x": 956.63109, + "y": 431.36157 + }, + { + "x": 912.82793, + "y": 417.01879 + }, + [ + { + "#": 2665 + }, + { + "#": 2666 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 103, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2668 + }, + "angle": 0, + "vertices": { + "#": 2669 + }, + "position": { + "#": 2674 + }, + "force": { + "#": 2675 + }, + "torque": 0, + "positionImpulse": { + "#": 2676 + }, + "constraintImpulse": { + "#": 2677 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2678 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2679 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2680 + }, + "bounds": { + "#": 2682 + }, + "positionPrev": { + "#": 2685 + }, + "anglePrev": 0, + "axes": { + "#": 2686 + }, + "area": 1629.36666, + "mass": 1.62937, + "inverseMass": 0.61374, + "inertia": 1918.06222, + "inverseInertia": 0.00052, + "parent": { + "#": 2667 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2667 + } + ], + [ + { + "#": 2670 + }, + { + "#": 2671 + }, + { + "#": 2672 + }, + { + "#": 2673 + } + ], + { + "x": 956.63109, + "y": 402.676, + "index": 0, + "body": { + "#": 2667 + }, + "isInternal": false + }, + { + "x": 989.57411, + "y": 402.676, + "index": 1, + "body": { + "#": 2667 + }, + "isInternal": false + }, + { + "x": 989.57411, + "y": 452.13613, + "index": 2, + "body": { + "#": 2667 + }, + "isInternal": false + }, + { + "x": 956.63109, + "y": 452.13613, + "index": 3, + "body": { + "#": 2667 + }, + "isInternal": false + }, + { + "x": 973.1026, + "y": 427.40607 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2681 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2683 + }, + "max": { + "#": 2684 + } + }, + { + "x": 956.63109, + "y": 402.676 + }, + { + "x": 989.57411, + "y": 452.13613 + }, + { + "x": 973.1026, + "y": 427.40607 + }, + [ + { + "#": 2687 + }, + { + "#": 2688 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 104, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2690 + }, + "angle": 0, + "vertices": { + "#": 2691 + }, + "position": { + "#": 2699 + }, + "force": { + "#": 2700 + }, + "torque": 0, + "positionImpulse": { + "#": 2701 + }, + "constraintImpulse": { + "#": 2702 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2703 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2704 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2705 + }, + "bounds": { + "#": 2707 + }, + "positionPrev": { + "#": 2710 + }, + "anglePrev": 0, + "axes": { + "#": 2711 + }, + "area": 1316.36654, + "mass": 1.31637, + "inverseMass": 0.75967, + "inertia": 1107.54299, + "inverseInertia": 0.0009, + "parent": { + "#": 2689 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2689 + } + ], + [ + { + "#": 2692 + }, + { + "#": 2693 + }, + { + "#": 2694 + }, + { + "#": 2695 + }, + { + "#": 2696 + }, + { + "#": 2697 + }, + { + "#": 2698 + } + ], + { + "x": 1030.18214, + "y": 433.575, + "index": 0, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 1015.30214, + "y": 445.442, + "index": 1, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 996.74614, + "y": 441.207, + "index": 2, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 988.48814, + "y": 424.059, + "index": 3, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 996.74614, + "y": 406.911, + "index": 4, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 1015.30214, + "y": 402.676, + "index": 5, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 1030.18214, + "y": 414.543, + "index": 6, + "body": { + "#": 2689 + }, + "isInternal": false + }, + { + "x": 1010.42111, + "y": 424.059 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2706 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2708 + }, + "max": { + "#": 2709 + } + }, + { + "x": 988.48814, + "y": 402.676 + }, + { + "x": 1030.18214, + "y": 445.442 + }, + { + "x": 1010.42111, + "y": 424.059 + }, + [ + { + "#": 2712 + }, + { + "#": 2713 + }, + { + "#": 2714 + }, + { + "#": 2715 + }, + { + "#": 2716 + }, + { + "#": 2717 + }, + { + "#": 2718 + } + ], + { + "x": 0.62351, + "y": 0.78182 + }, + { + "x": -0.22251, + "y": 0.97493 + }, + { + "x": -0.90097, + "y": 0.43388 + }, + { + "x": -0.90097, + "y": -0.43388 + }, + { + "x": -0.22251, + "y": -0.97493 + }, + { + "x": 0.62351, + "y": -0.78182 + }, + { + "x": 1, + "y": 0 + }, + [], + [], + { + "x": 0, + "y": -1 + }, + { + "min": { + "#": 2723 + }, + "max": { + "#": 2724 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/gravity/gravity-10.json b/test/node/refs/gravity/gravity-10.json new file mode 100644 index 00000000..9c070d6f --- /dev/null +++ b/test/node/refs/gravity/gravity-10.json @@ -0,0 +1,26312 @@ +[ + { + "id": 16, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 94 + }, + "composites": { + "#": 95 + }, + "label": "World", + "gravity": { + "#": 2825 + }, + "bounds": { + "#": 2826 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + [], + [ + { + "#": 96 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 97 + }, + "constraints": { + "#": 2823 + }, + "composites": { + "#": 2824 + }, + "label": "Stack" + }, + [ + { + "#": 98 + }, + { + "#": 121 + }, + { + "#": 144 + }, + { + "#": 167 + }, + { + "#": 190 + }, + { + "#": 216 + }, + { + "#": 243 + }, + { + "#": 299 + }, + { + "#": 322 + }, + { + "#": 345 + }, + { + "#": 368 + }, + { + "#": 391 + }, + { + "#": 414 + }, + { + "#": 445 + }, + { + "#": 468 + }, + { + "#": 495 + }, + { + "#": 518 + }, + { + "#": 541 + }, + { + "#": 597 + }, + { + "#": 620 + }, + { + "#": 643 + }, + { + "#": 699 + }, + { + "#": 722 + }, + { + "#": 745 + }, + { + "#": 768 + }, + { + "#": 794 + }, + { + "#": 820 + }, + { + "#": 843 + }, + { + "#": 869 + }, + { + "#": 892 + }, + { + "#": 918 + }, + { + "#": 941 + }, + { + "#": 964 + }, + { + "#": 987 + }, + { + "#": 1016 + }, + { + "#": 1039 + }, + { + "#": 1062 + }, + { + "#": 1085 + }, + { + "#": 1108 + }, + { + "#": 1131 + }, + { + "#": 1187 + }, + { + "#": 1210 + }, + { + "#": 1241 + }, + { + "#": 1264 + }, + { + "#": 1295 + }, + { + "#": 1318 + }, + { + "#": 1341 + }, + { + "#": 1364 + }, + { + "#": 1387 + }, + { + "#": 1418 + }, + { + "#": 1441 + }, + { + "#": 1464 + }, + { + "#": 1487 + }, + { + "#": 1510 + }, + { + "#": 1566 + }, + { + "#": 1589 + }, + { + "#": 1645 + }, + { + "#": 1668 + }, + { + "#": 1699 + }, + { + "#": 1722 + }, + { + "#": 1745 + }, + { + "#": 1768 + }, + { + "#": 1791 + }, + { + "#": 1818 + }, + { + "#": 1841 + }, + { + "#": 1864 + }, + { + "#": 1887 + }, + { + "#": 1914 + }, + { + "#": 1937 + }, + { + "#": 1960 + }, + { + "#": 1983 + }, + { + "#": 2039 + }, + { + "#": 2095 + }, + { + "#": 2122 + }, + { + "#": 2145 + }, + { + "#": 2168 + }, + { + "#": 2199 + }, + { + "#": 2225 + }, + { + "#": 2248 + }, + { + "#": 2279 + }, + { + "#": 2302 + }, + { + "#": 2325 + }, + { + "#": 2348 + }, + { + "#": 2375 + }, + { + "#": 2398 + }, + { + "#": 2427 + }, + { + "#": 2450 + }, + { + "#": 2473 + }, + { + "#": 2496 + }, + { + "#": 2519 + }, + { + "#": 2545 + }, + { + "#": 2568 + }, + { + "#": 2594 + }, + { + "#": 2617 + }, + { + "#": 2640 + }, + { + "#": 2667 + }, + { + "#": 2690 + }, + { + "#": 2746 + }, + { + "#": 2769 + }, + { + "#": 2792 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 99 + }, + "angle": -0.0002, + "vertices": { + "#": 100 + }, + "position": { + "#": 105 + }, + "force": { + "#": 106 + }, + "torque": 0, + "positionImpulse": { + "#": 107 + }, + "constraintImpulse": { + "#": 108 + }, + "totalContacts": 0, + "speed": 0.27774, + "angularSpeed": 0, + "velocity": { + "#": 109 + }, + "angularVelocity": 0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 110 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 111 + }, + "bounds": { + "#": 113 + }, + "positionPrev": { + "#": 116 + }, + "anglePrev": -0.0002, + "axes": { + "#": 117 + }, + "area": 1534.90643, + "mass": 1.53491, + "inverseMass": 0.65151, + "inertia": 1587.6055, + "inverseInertia": 0.00063, + "parent": { + "#": 98 + }, + "sleepCounter": 0, + "region": { + "#": 120 + } + }, + [ + { + "#": 98 + } + ], + [ + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + } + ], + { + "x": 20.07698, + "y": 20.1701, + "index": 0, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 56.48014, + "y": 20.16297, + "index": 1, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 56.4884, + "y": 62.32706, + "index": 2, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 20.08524, + "y": 62.33419, + "index": 3, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 38.28269, + "y": 41.24858 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.0003, + "y": 0.00006 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 112 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 114 + }, + "max": { + "#": 115 + } + }, + { + "x": 20.07698, + "y": 19.88522 + }, + { + "x": 56.48848, + "y": 62.33419 + }, + { + "x": 38.28435, + "y": 41.24872 + }, + [ + { + "#": 118 + }, + { + "#": 119 + } + ], + { + "x": 0.0002, + "y": 1 + }, + { + "x": -1, + "y": 0.0002 + }, + { + "id": "0,1,0,1", + "startCol": 0, + "endCol": 1, + "startRow": 0, + "endRow": 1 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 122 + }, + "angle": -0.00002, + "vertices": { + "#": 123 + }, + "position": { + "#": 128 + }, + "force": { + "#": 129 + }, + "torque": 0, + "positionImpulse": { + "#": 130 + }, + "constraintImpulse": { + "#": 131 + }, + "totalContacts": 0, + "speed": 0.27787, + "angularSpeed": 0.00001, + "velocity": { + "#": 132 + }, + "angularVelocity": 0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 133 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 134 + }, + "bounds": { + "#": 136 + }, + "positionPrev": { + "#": 139 + }, + "anglePrev": -0.00001, + "axes": { + "#": 140 + }, + "area": 2220.52879, + "mass": 2.22053, + "inverseMass": 0.45034, + "inertia": 3297.21813, + "inverseInertia": 0.0003, + "parent": { + "#": 121 + }, + "sleepCounter": 0, + "region": { + "#": 143 + } + }, + [ + { + "#": 121 + } + ], + [ + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + } + ], + { + "x": 56.18764, + "y": 20.16382, + "index": 0, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 101.50348, + "y": 20.16293, + "index": 1, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 101.50445, + "y": 69.16409, + "index": 2, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 56.1886, + "y": 69.16498, + "index": 3, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 78.84604, + "y": 44.66395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00257, + "y": -0.0001 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 135 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 137 + }, + "max": { + "#": 138 + } + }, + { + "x": 56.18729, + "y": 19.88506 + }, + { + "x": 101.50445, + "y": 69.16498 + }, + { + "x": 78.85122, + "y": 44.66459 + }, + [ + { + "#": 141 + }, + { + "#": 142 + } + ], + { + "x": 0.00002, + "y": 1 + }, + { + "x": -1, + "y": 0.00002 + }, + { + "id": "1,2,0,1", + "startCol": 1, + "endCol": 2, + "startRow": 0, + "endRow": 1 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 145 + }, + "angle": -0.0002, + "vertices": { + "#": 146 + }, + "position": { + "#": 151 + }, + "force": { + "#": 152 + }, + "torque": 0, + "positionImpulse": { + "#": 153 + }, + "constraintImpulse": { + "#": 154 + }, + "totalContacts": 0, + "speed": 0.28055, + "angularSpeed": 0.00006, + "velocity": { + "#": 155 + }, + "angularVelocity": 0.00006, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 156 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 157 + }, + "bounds": { + "#": 159 + }, + "positionPrev": { + "#": 162 + }, + "anglePrev": -0.00021, + "axes": { + "#": 163 + }, + "area": 1140.1977, + "mass": 1.1402, + "inverseMass": 0.87704, + "inertia": 905.8525, + "inverseInertia": 0.0011, + "parent": { + "#": 144 + }, + "sleepCounter": 0, + "region": { + "#": 166 + } + }, + [ + { + "#": 144 + } + ], + [ + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + } + ], + { + "x": 101.19145, + "y": 20.16977, + "index": 0, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 140.41226, + "y": 20.16212, + "index": 1, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 140.41793, + "y": 49.23336, + "index": 2, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 101.19712, + "y": 49.24102, + "index": 3, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 120.80469, + "y": 34.70157 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00683, + "y": 0.00023 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 158 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 160 + }, + "max": { + "#": 161 + } + }, + { + "x": 101.18747, + "y": 19.8816 + }, + { + "x": 140.41793, + "y": 49.24102 + }, + { + "x": 120.81805, + "y": 34.70553 + }, + [ + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": 0.0002, + "y": 1 + }, + { + "x": -1, + "y": 0.0002 + }, + { + "id": "2,2,0,1", + "startCol": 2, + "endCol": 2, + "startRow": 0, + "endRow": 1 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 168 + }, + "angle": 0.00218, + "vertices": { + "#": 169 + }, + "position": { + "#": 174 + }, + "force": { + "#": 175 + }, + "torque": 0, + "positionImpulse": { + "#": 176 + }, + "constraintImpulse": { + "#": 177 + }, + "totalContacts": 0, + "speed": 0.28467, + "angularSpeed": 0.00004, + "velocity": { + "#": 178 + }, + "angularVelocity": 0.00072, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 179 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 180 + }, + "bounds": { + "#": 182 + }, + "positionPrev": { + "#": 185 + }, + "anglePrev": 0.00172, + "axes": { + "#": 186 + }, + "area": 752.4076, + "mass": 0.75241, + "inverseMass": 1.32907, + "inertia": 384.63687, + "inverseInertia": 0.0026, + "parent": { + "#": 167 + }, + "sleepCounter": 0, + "region": { + "#": 189 + } + }, + [ + { + "#": 167 + } + ], + [ + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + } + ], + { + "x": 140.14899, + "y": 20.16157, + "index": 0, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 165.02625, + "y": 20.21573, + "index": 1, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 164.9604, + "y": 50.46039, + "index": 2, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 140.08314, + "y": 50.40622, + "index": 3, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 152.55469, + "y": 35.31098 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.02936, + "y": -0.00881 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 181 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 183 + }, + "max": { + "#": 184 + } + }, + { + "x": 140.07626, + "y": 19.87698 + }, + { + "x": 165.02625, + "y": 50.46039 + }, + { + "x": 152.57416, + "y": 35.31344 + }, + [ + { + "#": 187 + }, + { + "#": 188 + } + ], + { + "x": -0.00218, + "y": 1 + }, + { + "x": -1, + "y": -0.00218 + }, + { + "id": "2,3,0,1", + "startCol": 2, + "endCol": 3, + "startRow": 0, + "endRow": 1 + }, + { + "id": 9, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 191 + }, + "angle": 0.0055, + "vertices": { + "#": 192 + }, + "position": { + "#": 199 + }, + "force": { + "#": 200 + }, + "torque": 0, + "positionImpulse": { + "#": 201 + }, + "constraintImpulse": { + "#": 202 + }, + "totalContacts": 0, + "speed": 0.27202, + "angularSpeed": 0.00095, + "velocity": { + "#": 203 + }, + "angularVelocity": -0.001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 204 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 205 + }, + "bounds": { + "#": 207 + }, + "positionPrev": { + "#": 210 + }, + "anglePrev": 0.00644, + "axes": { + "#": 211 + }, + "area": 2027.25418, + "mass": 2.02725, + "inverseMass": 0.49328, + "inertia": 2636.41196, + "inverseInertia": 0.00038, + "parent": { + "#": 190 + }, + "sleepCounter": 0, + "region": { + "#": 215 + } + }, + [ + { + "#": 190 + } + ], + [ + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + } + ], + { + "x": 212.92663, + "y": 62.11879, + "index": 0, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 188.65921, + "y": 75.95258, + "index": 1, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 164.54536, + "y": 61.85279, + "index": 2, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 164.69895, + "y": 33.91921, + "index": 3, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 188.96637, + "y": 20.08542, + "index": 4, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 213.08022, + "y": 34.18522, + "index": 5, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 188.81279, + "y": 48.019 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.04725, + "y": -0.03296 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 206 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 208 + }, + "max": { + "#": 209 + } + }, + { + "x": 164.52439, + "y": 19.81421 + }, + { + "x": 213.08022, + "y": 75.95258 + }, + { + "x": 188.84685, + "y": 48.04996 + }, + [ + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + } + ], + { + "x": -0.49524, + "y": -0.86876 + }, + { + "x": 0.50476, + "y": -0.86326 + }, + { + "x": 0.99998, + "y": 0.0055 + }, + { + "id": "3,4,0,1", + "startCol": 3, + "endCol": 4, + "startRow": 0, + "endRow": 1 + }, + { + "id": 10, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 217 + }, + "angle": -0.02792, + "vertices": { + "#": 218 + }, + "position": { + "#": 224 + }, + "force": { + "#": 225 + }, + "torque": 0, + "positionImpulse": { + "#": 226 + }, + "constraintImpulse": { + "#": 227 + }, + "totalContacts": 0, + "speed": 0.31341, + "angularSpeed": 0.00201, + "velocity": { + "#": 228 + }, + "angularVelocity": -0.0023, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 229 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 230 + }, + "bounds": { + "#": 232 + }, + "positionPrev": { + "#": 235 + }, + "anglePrev": -0.02567, + "axes": { + "#": 236 + }, + "area": 4842.27229, + "mass": 4.84227, + "inverseMass": 0.20651, + "inertia": 15180.5655, + "inverseInertia": 0.00007, + "parent": { + "#": 216 + }, + "sleepCounter": 0, + "region": { + "#": 242 + } + }, + [ + { + "#": 216 + } + ], + [ + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + } + ], + { + "x": 293.19175, + "y": 88.67688, + "index": 0, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 243.21401, + "y": 106.47283, + "index": 1, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 210.84515, + "y": 64.43995, + "index": 2, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 240.81798, + "y": 20.66627, + "index": 3, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 291.71093, + "y": 35.64555, + "index": 4, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 255.95595, + "y": 63.1803 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00091, + "y": -0.1918 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 231 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 233 + }, + "max": { + "#": 234 + } + }, + { + "x": 210.83528, + "y": 20.35302 + }, + { + "x": 293.19175, + "y": 106.47283 + }, + { + "x": 255.95822, + "y": 63.36714 + }, + [ + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + } + ], + { + "x": 0.33545, + "y": 0.94206 + }, + { + "x": -0.7923, + "y": 0.61014 + }, + { + "x": -0.82511, + "y": -0.56497 + }, + { + "x": 0.28235, + "y": -0.95931 + }, + { + "x": 0.99961, + "y": -0.02791 + }, + { + "id": "4,6,0,2", + "startCol": 4, + "endCol": 6, + "startRow": 0, + "endRow": 2 + }, + { + "id": 11, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 244 + }, + "angle": 0.02506, + "vertices": { + "#": 245 + }, + "position": { + "#": 272 + }, + "force": { + "#": 273 + }, + "torque": 0, + "positionImpulse": { + "#": 274 + }, + "constraintImpulse": { + "#": 275 + }, + "totalContacts": 0, + "speed": 0.2727, + "angularSpeed": 0.00409, + "velocity": { + "#": 276 + }, + "angularVelocity": 0.00397, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 277 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 278 + }, + "circleRadius": 31.45923, + "bounds": { + "#": 280 + }, + "positionPrev": { + "#": 283 + }, + "anglePrev": 0.02104, + "axes": { + "#": 284 + }, + "area": 3079.01783, + "mass": 3.07902, + "inverseMass": 0.32478, + "inertia": 6035.49394, + "inverseInertia": 0.00017, + "parent": { + "#": 243 + }, + "sleepCounter": 0, + "region": { + "#": 298 + } + }, + [ + { + "#": 243 + } + ], + [ + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + } + ], + { + "x": 354.25981, + "y": 56.26021, + "index": 0, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 352.26085, + "y": 63.57642, + "index": 1, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 348.56868, + "y": 70.20098, + "index": 2, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 343.399, + "y": 75.75017, + "index": 3, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 337.05201, + "y": 79.90043, + "index": 4, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 329.89585, + "y": 82.41089, + "index": 5, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 322.34631, + "y": 83.13593, + "index": 6, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 314.84258, + "y": 82.03355, + "index": 7, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 307.82119, + "y": 79.1677, + "index": 8, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 301.69011, + "y": 74.70466, + "index": 9, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 296.80494, + "y": 68.90342, + "index": 10, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 293.44932, + "y": 62.1022, + "index": 11, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 291.81943, + "y": 54.69503, + "index": 12, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 292.00947, + "y": 47.11341, + "index": 13, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 294.00844, + "y": 39.79721, + "index": 14, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 297.7006, + "y": 33.17265, + "index": 15, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 302.87028, + "y": 27.62345, + "index": 16, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 309.21728, + "y": 23.4732, + "index": 17, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 316.37343, + "y": 20.96274, + "index": 18, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 323.92297, + "y": 20.23769, + "index": 19, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 331.42671, + "y": 21.34007, + "index": 20, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 338.44809, + "y": 24.20592, + "index": 21, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 344.57918, + "y": 28.66896, + "index": 22, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 349.46434, + "y": 34.4702, + "index": 23, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 352.81996, + "y": 41.27143, + "index": 24, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 354.44986, + "y": 48.67859, + "index": 25, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 323.13464, + "y": 51.68681 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01027, + "y": -0.01083 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 279 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 281 + }, + "max": { + "#": 282 + } + }, + { + "x": 291.80431, + "y": 19.96541 + }, + { + "x": 354.44986, + "y": 83.13593 + }, + { + "x": 323.1479, + "y": 51.69409 + }, + [ + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + } + ], + { + "x": -0.96464, + "y": -0.26356 + }, + { + "x": -0.87349, + "y": -0.48684 + }, + { + "x": -0.73168, + "y": -0.68164 + }, + { + "x": -0.54728, + "y": -0.83695 + }, + { + "x": -0.33103, + "y": -0.94362 + }, + { + "x": -0.0956, + "y": -0.99542 + }, + { + "x": 0.14535, + "y": -0.98938 + }, + { + "x": 0.37789, + "y": -0.92585 + }, + { + "x": 0.58852, + "y": -0.80848 + }, + { + "x": 0.76492, + "y": -0.64413 + }, + { + "x": 0.89679, + "y": -0.44246 + }, + { + "x": 0.97664, + "y": -0.2149 + }, + { + "x": 0.99969, + "y": 0.02506 + }, + { + "id": "6,7,0,1", + "startCol": 6, + "endCol": 7, + "startRow": 0, + "endRow": 1 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 300 + }, + "angle": -0.01299, + "vertices": { + "#": 301 + }, + "position": { + "#": 306 + }, + "force": { + "#": 307 + }, + "torque": 0, + "positionImpulse": { + "#": 308 + }, + "constraintImpulse": { + "#": 309 + }, + "totalContacts": 0, + "speed": 0.21569, + "angularSpeed": 0.00284, + "velocity": { + "#": 310 + }, + "angularVelocity": -0.00267, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 311 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 312 + }, + "bounds": { + "#": 314 + }, + "positionPrev": { + "#": 317 + }, + "anglePrev": -0.01037, + "axes": { + "#": 318 + }, + "area": 1329.41676, + "mass": 1.32942, + "inverseMass": 0.75221, + "inertia": 1383.51246, + "inverseInertia": 0.00072, + "parent": { + "#": 299 + }, + "sleepCounter": 0, + "region": { + "#": 321 + } + }, + [ + { + "#": 299 + } + ], + [ + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + } + ], + { + "x": 353.42782, + "y": 20.77836, + "index": 0, + "body": { + "#": 299 + }, + "isInternal": false + }, + { + "x": 402.20135, + "y": 20.14459, + "index": 1, + "body": { + "#": 299 + }, + "isInternal": false + }, + { + "x": 402.55547, + "y": 47.39692, + "index": 2, + "body": { + "#": 299 + }, + "isInternal": false + }, + { + "x": 353.78194, + "y": 48.03068, + "index": 3, + "body": { + "#": 299 + }, + "isInternal": false + }, + { + "x": 377.99165, + "y": 34.08764 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.03593, + "y": 0.05649 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 313 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 315 + }, + "max": { + "#": 316 + } + }, + { + "x": 353.3896, + "y": 19.93232 + }, + { + "x": 402.55547, + "y": 48.03068 + }, + { + "x": 378.02727, + "y": 34.02886 + }, + [ + { + "#": 319 + }, + { + "#": 320 + } + ], + { + "x": 0.01299, + "y": 0.99992 + }, + { + "x": -0.99992, + "y": 0.01299 + }, + { + "id": "7,8,0,0", + "startCol": 7, + "endCol": 8, + "startRow": 0, + "endRow": 0 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 323 + }, + "angle": -0.00051, + "vertices": { + "#": 324 + }, + "position": { + "#": 329 + }, + "force": { + "#": 330 + }, + "torque": 0, + "positionImpulse": { + "#": 331 + }, + "constraintImpulse": { + "#": 332 + }, + "totalContacts": 0, + "speed": 0.27861, + "angularSpeed": 0.00001, + "velocity": { + "#": 333 + }, + "angularVelocity": 0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 334 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 335 + }, + "bounds": { + "#": 337 + }, + "positionPrev": { + "#": 340 + }, + "anglePrev": -0.00054, + "axes": { + "#": 341 + }, + "area": 2858.63236, + "mass": 2.85863, + "inverseMass": 0.34982, + "inertia": 11948.09601, + "inverseInertia": 0.00008, + "parent": { + "#": 322 + }, + "sleepCounter": 0, + "region": { + "#": 344 + } + }, + [ + { + "#": 322 + } + ], + [ + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + } + ], + { + "x": 401.97354, + "y": 20.21576, + "index": 0, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 510.82812, + "y": 20.1598, + "index": 1, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 510.84162, + "y": 46.42081, + "index": 2, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 401.98704, + "y": 46.47678, + "index": 3, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 456.40758, + "y": 33.31829 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00167, + "y": -0.00036 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 336 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 338 + }, + "max": { + "#": 339 + } + }, + { + "x": 401.97306, + "y": 19.88118 + }, + { + "x": 510.84162, + "y": 46.47678 + }, + { + "x": 456.4094, + "y": 33.31971 + }, + [ + { + "#": 342 + }, + { + "#": 343 + } + ], + { + "x": 0.00051, + "y": 1 + }, + { + "x": -1, + "y": 0.00051 + }, + { + "id": "8,10,0,0", + "startCol": 8, + "endCol": 10, + "startRow": 0, + "endRow": 0 + }, + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 346 + }, + "angle": -0.00176, + "vertices": { + "#": 347 + }, + "position": { + "#": 352 + }, + "force": { + "#": 353 + }, + "torque": 0, + "positionImpulse": { + "#": 354 + }, + "constraintImpulse": { + "#": 355 + }, + "totalContacts": 0, + "speed": 0.27775, + "angularSpeed": 0, + "velocity": { + "#": 356 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 357 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 358 + }, + "bounds": { + "#": 360 + }, + "positionPrev": { + "#": 363 + }, + "anglePrev": -0.00175, + "axes": { + "#": 364 + }, + "area": 926.83946, + "mass": 0.92684, + "inverseMass": 1.07894, + "inertia": 640.73396, + "inverseInertia": 0.00156, + "parent": { + "#": 345 + }, + "sleepCounter": 0, + "region": { + "#": 367 + } + }, + [ + { + "#": 345 + } + ], + [ + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + } + ], + { + "x": 510.22305, + "y": 20.23124, + "index": 0, + "body": { + "#": 345 + }, + "isInternal": false + }, + { + "x": 548.97878, + "y": 20.16307, + "index": 1, + "body": { + "#": 345 + }, + "isInternal": false + }, + { + "x": 549.02085, + "y": 44.0779, + "index": 2, + "body": { + "#": 345 + }, + "isInternal": false + }, + { + "x": 510.26512, + "y": 44.14607, + "index": 3, + "body": { + "#": 345 + }, + "isInternal": false + }, + { + "x": 529.62195, + "y": 32.15457 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00152, + "y": 0.00031 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 359 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 361 + }, + "max": { + "#": 362 + } + }, + { + "x": 510.22305, + "y": 19.88532 + }, + { + "x": 549.02098, + "y": 44.14607 + }, + { + "x": 529.62318, + "y": 32.15442 + }, + [ + { + "#": 365 + }, + { + "#": 366 + } + ], + { + "x": 0.00176, + "y": 1 + }, + { + "x": -1, + "y": 0.00176 + }, + { + "id": "10,11,0,0", + "startCol": 10, + "endCol": 11, + "startRow": 0, + "endRow": 0 + }, + { + "id": 15, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 369 + }, + "angle": -0.00006, + "vertices": { + "#": 370 + }, + "position": { + "#": 375 + }, + "force": { + "#": 376 + }, + "torque": 0, + "positionImpulse": { + "#": 377 + }, + "constraintImpulse": { + "#": 378 + }, + "totalContacts": 0, + "speed": 0.27778, + "angularSpeed": 0, + "velocity": { + "#": 379 + }, + "angularVelocity": 0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 380 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 381 + }, + "bounds": { + "#": 383 + }, + "positionPrev": { + "#": 386 + }, + "anglePrev": -0.00006, + "axes": { + "#": 387 + }, + "area": 1290.45014, + "mass": 1.29045, + "inverseMass": 0.77492, + "inertia": 1110.21456, + "inverseInertia": 0.0009, + "parent": { + "#": 368 + }, + "sleepCounter": 0, + "region": { + "#": 390 + } + }, + [ + { + "#": 368 + } + ], + [ + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + } + ], + { + "x": 548.40635, + "y": 20.16524, + "index": 0, + "body": { + "#": 368 + }, + "isInternal": false + }, + { + "x": 584.17667, + "y": 20.16316, + "index": 1, + "body": { + "#": 368 + }, + "isInternal": false + }, + { + "x": 584.17876, + "y": 56.23917, + "index": 2, + "body": { + "#": 368 + }, + "isInternal": false + }, + { + "x": 548.40844, + "y": 56.24124, + "index": 3, + "body": { + "#": 368 + }, + "isInternal": false + }, + { + "x": 566.29256, + "y": 38.2022 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00033, + "y": -0.00002 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 382 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 384 + }, + "max": { + "#": 385 + } + }, + { + "x": 548.40635, + "y": 19.88539 + }, + { + "x": 584.17893, + "y": 56.24124 + }, + { + "x": 566.29309, + "y": 38.20212 + }, + [ + { + "#": 388 + }, + { + "#": 389 + } + ], + { + "x": 0.00006, + "y": 1 + }, + { + "x": -1, + "y": 0.00006 + }, + { + "id": "11,12,0,1", + "startCol": 11, + "endCol": 12, + "startRow": 0, + "endRow": 1 + }, + { + "id": 16, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 392 + }, + "angle": -0.00001, + "vertices": { + "#": 393 + }, + "position": { + "#": 398 + }, + "force": { + "#": 399 + }, + "torque": 0, + "positionImpulse": { + "#": 400 + }, + "constraintImpulse": { + "#": 401 + }, + "totalContacts": 0, + "speed": 0.27781, + "angularSpeed": 0, + "velocity": { + "#": 402 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 403 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 404 + }, + "bounds": { + "#": 406 + }, + "positionPrev": { + "#": 409 + }, + "anglePrev": -0.00002, + "axes": { + "#": 410 + }, + "area": 1148.29259, + "mass": 1.14829, + "inverseMass": 0.87086, + "inertia": 897.94757, + "inverseInertia": 0.00111, + "parent": { + "#": 391 + }, + "sleepCounter": 0, + "region": { + "#": 413 + } + }, + [ + { + "#": 391 + } + ], + [ + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + } + ], + { + "x": 583.60539, + "y": 20.17995, + "index": 0, + "body": { + "#": 391 + }, + "isInternal": false + }, + { + "x": 614.1603, + "y": 20.1795, + "index": 1, + "body": { + "#": 391 + }, + "isInternal": false + }, + { + "x": 614.16086, + "y": 57.76077, + "index": 2, + "body": { + "#": 391 + }, + "isInternal": false + }, + { + "x": 583.60595, + "y": 57.76123, + "index": 3, + "body": { + "#": 391 + }, + "isInternal": false + }, + { + "x": 598.88312, + "y": 38.97036 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00004, + "y": 0.00002 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 405 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 407 + }, + "max": { + "#": 408 + } + }, + { + "x": 583.60539, + "y": 19.90169 + }, + { + "x": 614.16102, + "y": 57.76123 + }, + { + "x": 598.88333, + "y": 38.97029 + }, + [ + { + "#": 411 + }, + { + "#": 412 + } + ], + { + "x": 0.00001, + "y": 1 + }, + { + "x": -1, + "y": 0.00001 + }, + { + "id": "12,12,0,1", + "startCol": 12, + "endCol": 12, + "startRow": 0, + "endRow": 1 + }, + { + "id": 17, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 415 + }, + "angle": 0.00056, + "vertices": { + "#": 416 + }, + "position": { + "#": 424 + }, + "force": { + "#": 425 + }, + "torque": 0, + "positionImpulse": { + "#": 426 + }, + "constraintImpulse": { + "#": 427 + }, + "totalContacts": 0, + "speed": 0.27779, + "angularSpeed": 0, + "velocity": { + "#": 428 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 429 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 430 + }, + "bounds": { + "#": 432 + }, + "positionPrev": { + "#": 435 + }, + "anglePrev": 0.00057, + "axes": { + "#": 436 + }, + "area": 1926.78789, + "mass": 1.92679, + "inverseMass": 0.519, + "inertia": 2372.87433, + "inverseInertia": 0.00042, + "parent": { + "#": 414 + }, + "sleepCounter": 0, + "region": { + "#": 444 + } + }, + [ + { + "#": 414 + } + ], + [ + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + } + ], + { + "x": 664.09976, + "y": 57.5919, + "index": 0, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 646.08867, + "y": 71.93874, + "index": 1, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 623.64156, + "y": 66.80207, + "index": 2, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 613.66327, + "y": 46.05044, + "index": 3, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 623.66497, + "y": 25.31008, + "index": 4, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 646.11786, + "y": 20.19874, + "index": 5, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 664.11276, + "y": 34.5659, + "index": 6, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 640.19845, + "y": 46.06541 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00006, + "y": 0.00002 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 431 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 433 + }, + "max": { + "#": 434 + } + }, + { + "x": 613.66327, + "y": 19.92096 + }, + { + "x": 664.11284, + "y": 71.93874 + }, + { + "x": 640.1985, + "y": 46.06539 + }, + [ + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + } + ], + { + "x": 0.62305, + "y": 0.78218 + }, + { + "x": -0.22307, + "y": 0.9748 + }, + { + "x": -0.90123, + "y": 0.43335 + }, + { + "x": -0.90074, + "y": -0.43437 + }, + { + "x": -0.22197, + "y": -0.97505 + }, + { + "x": 0.62393, + "y": -0.78148 + }, + { + "x": 1, + "y": 0.00056 + }, + { + "id": "12,13,0,1", + "startCol": 12, + "endCol": 13, + "startRow": 0, + "endRow": 1 + }, + { + "id": 18, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 446 + }, + "angle": -0.00021, + "vertices": { + "#": 447 + }, + "position": { + "#": 451 + }, + "force": { + "#": 452 + }, + "torque": 0, + "positionImpulse": { + "#": 453 + }, + "constraintImpulse": { + "#": 454 + }, + "totalContacts": 0, + "speed": 0.27778, + "angularSpeed": 0, + "velocity": { + "#": 455 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 456 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 457 + }, + "bounds": { + "#": 459 + }, + "positionPrev": { + "#": 462 + }, + "anglePrev": -0.00021, + "axes": { + "#": 463 + }, + "area": 1097.75588, + "mass": 1.09776, + "inverseMass": 0.91095, + "inertia": 927.66175, + "inverseInertia": 0.00108, + "parent": { + "#": 445 + }, + "sleepCounter": 0, + "region": { + "#": 467 + } + }, + [ + { + "#": 445 + } + ], + [ + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + } + ], + { + "x": 707.28802, + "y": 70.549, + "index": 0, + "body": { + "#": 445 + }, + "isInternal": false + }, + { + "x": 663.67764, + "y": 45.38332, + "index": 1, + "body": { + "#": 445 + }, + "isInternal": false + }, + { + "x": 707.27726, + "y": 20.199, + "index": 2, + "body": { + "#": 445 + }, + "isInternal": false + }, + { + "x": 692.74764, + "y": 45.37711 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00005, + "y": -0.00001 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 458 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 460 + }, + "max": { + "#": 461 + } + }, + { + "x": 663.67764, + "y": 19.92122 + }, + { + "x": 707.28808, + "y": 70.549 + }, + { + "x": 692.74767, + "y": 45.37711 + }, + [ + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + } + ], + { + "x": -0.49981, + "y": 0.86614 + }, + { + "x": -0.50018, + "y": -0.86592 + }, + { + "x": 1, + "y": -0.00021 + }, + { + "id": "13,14,0,1", + "startCol": 13, + "endCol": 14, + "startRow": 0, + "endRow": 1 + }, + { + "id": 19, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 469 + }, + "angle": -0.0012, + "vertices": { + "#": 470 + }, + "position": { + "#": 476 + }, + "force": { + "#": 477 + }, + "torque": 0, + "positionImpulse": { + "#": 478 + }, + "constraintImpulse": { + "#": 479 + }, + "totalContacts": 0, + "speed": 0.27778, + "angularSpeed": 0, + "velocity": { + "#": 480 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 481 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 482 + }, + "bounds": { + "#": 484 + }, + "positionPrev": { + "#": 487 + }, + "anglePrev": -0.0012, + "axes": { + "#": 488 + }, + "area": 986.58013, + "mass": 0.98658, + "inverseMass": 1.0136, + "inertia": 630.16497, + "inverseInertia": 0.00159, + "parent": { + "#": 468 + }, + "sleepCounter": 0, + "region": { + "#": 494 + } + }, + [ + { + "#": 468 + } + ], + [ + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + } + ], + { + "x": 743.80543, + "y": 51.51077, + "index": 0, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 721.03932, + "y": 58.93805, + "index": 1, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 706.94112, + "y": 39.58192, + "index": 2, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 720.9929, + "y": 20.19208, + "index": 3, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 743.77675, + "y": 27.56479, + "index": 4, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 727.31115, + "y": 39.55752 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00002, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 483 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 485 + }, + "max": { + "#": 486 + } + }, + { + "x": 706.94112, + "y": 19.91429 + }, + { + "x": 743.80547, + "y": 58.93805 + }, + { + "x": 727.31115, + "y": 39.55752 + }, + [ + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + } + ], + { + "x": 0.31015, + "y": 0.95069 + }, + { + "x": -0.80832, + "y": 0.58875 + }, + { + "x": -0.80973, + "y": -0.58681 + }, + { + "x": 0.30788, + "y": -0.95143 + }, + { + "x": 1, + "y": -0.0012 + }, + { + "id": "14,15,0,1", + "startCol": 14, + "endCol": 15, + "startRow": 0, + "endRow": 1 + }, + { + "id": 20, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 496 + }, + "angle": -0.0002, + "vertices": { + "#": 497 + }, + "position": { + "#": 502 + }, + "force": { + "#": 503 + }, + "torque": 0, + "positionImpulse": { + "#": 504 + }, + "constraintImpulse": { + "#": 505 + }, + "totalContacts": 0, + "speed": 0.27778, + "angularSpeed": 0, + "velocity": { + "#": 506 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 507 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 508 + }, + "bounds": { + "#": 510 + }, + "positionPrev": { + "#": 513 + }, + "anglePrev": -0.0002, + "axes": { + "#": 514 + }, + "area": 1201.45424, + "mass": 1.20145, + "inverseMass": 0.83232, + "inertia": 962.3282, + "inverseInertia": 0.00104, + "parent": { + "#": 495 + }, + "sleepCounter": 0, + "region": { + "#": 517 + } + }, + [ + { + "#": 495 + } + ], + [ + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + } + ], + { + "x": 778.26735, + "y": 54.85408, + "index": 0, + "body": { + "#": 495 + }, + "isInternal": false + }, + { + "x": 743.60535, + "y": 54.86095, + "index": 1, + "body": { + "#": 495 + }, + "isInternal": false + }, + { + "x": 743.59847, + "y": 20.19896, + "index": 2, + "body": { + "#": 495 + }, + "isInternal": false + }, + { + "x": 778.26047, + "y": 20.19208, + "index": 3, + "body": { + "#": 495 + }, + "isInternal": false + }, + { + "x": 760.93291, + "y": 37.52652 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00001, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 509 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 511 + }, + "max": { + "#": 512 + } + }, + { + "x": 743.59847, + "y": 19.9143 + }, + { + "x": 778.26737, + "y": 54.86095 + }, + { + "x": 760.93291, + "y": 37.52652 + }, + [ + { + "#": 515 + }, + { + "#": 516 + } + ], + { + "x": -0.0002, + "y": -1 + }, + { + "x": 1, + "y": -0.0002 + }, + { + "id": "15,16,0,1", + "startCol": 15, + "endCol": 16, + "startRow": 0, + "endRow": 1 + }, + { + "id": 21, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 519 + }, + "angle": -0.09542, + "vertices": { + "#": 520 + }, + "position": { + "#": 525 + }, + "force": { + "#": 526 + }, + "torque": 0, + "positionImpulse": { + "#": 527 + }, + "constraintImpulse": { + "#": 528 + }, + "totalContacts": 0, + "speed": 1.14299, + "angularSpeed": 0.0179, + "velocity": { + "#": 529 + }, + "angularVelocity": -0.02028, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 530 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 531 + }, + "bounds": { + "#": 533 + }, + "positionPrev": { + "#": 536 + }, + "anglePrev": -0.07513, + "axes": { + "#": 537 + }, + "area": 1990.73335, + "mass": 1.99073, + "inverseMass": 0.50233, + "inertia": 6259.05792, + "inverseInertia": 0.00016, + "parent": { + "#": 518 + }, + "sleepCounter": 0, + "region": { + "#": 540 + } + }, + [ + { + "#": 518 + } + ], + [ + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + } + ], + { + "x": 771.50406, + "y": -1.2572, + "index": 0, + "body": { + "#": 518 + }, + "isInternal": false + }, + { + "x": 865.89643, + "y": -10.29159, + "index": 1, + "body": { + "#": 518 + }, + "isInternal": false + }, + { + "x": 867.89665, + "y": 10.60695, + "index": 2, + "body": { + "#": 518 + }, + "isInternal": false + }, + { + "x": 773.50428, + "y": 19.64134, + "index": 3, + "body": { + "#": 518 + }, + "isInternal": false + }, + { + "x": 819.70035, + "y": 4.67487 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.10527, + "y": -0.97674 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 532 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 534 + }, + "max": { + "#": 535 + } + }, + { + "x": 771.50406, + "y": -11.42908 + }, + { + "x": 868.00862, + "y": 19.64134 + }, + { + "x": 819.60096, + "y": 5.65105 + }, + [ + { + "#": 538 + }, + { + "#": 539 + } + ], + { + "x": 0.09528, + "y": 0.99545 + }, + { + "x": -0.99545, + "y": 0.09528 + }, + { + "id": "16,18,-1,0", + "startCol": 16, + "endCol": 18, + "startRow": -1, + "endRow": 0 + }, + { + "id": 22, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 542 + }, + "angle": -0.00029, + "vertices": { + "#": 543 + }, + "position": { + "#": 570 + }, + "force": { + "#": 571 + }, + "torque": 0, + "positionImpulse": { + "#": 572 + }, + "constraintImpulse": { + "#": 573 + }, + "totalContacts": 0, + "speed": 2.90897, + "angularSpeed": 0.00004, + "velocity": { + "#": 574 + }, + "angularVelocity": -0.00004, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 575 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 576 + }, + "circleRadius": 48.51042, + "bounds": { + "#": 578 + }, + "positionPrev": { + "#": 581 + }, + "anglePrev": -0.00026, + "axes": { + "#": 582 + }, + "area": 7321.24308, + "mass": 7.32124, + "inverseMass": 0.13659, + "inertia": 34123.853, + "inverseInertia": 0.00003, + "parent": { + "#": 541 + }, + "sleepCounter": 0, + "region": { + "#": 596 + } + }, + [ + { + "#": 541 + } + ], + [ + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + } + ], + { + "x": 962.88673, + "y": 56.59297, + "index": 0, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 960.09107, + "y": 67.94879, + "index": 1, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 954.65911, + "y": 78.30539, + "index": 2, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 946.90669, + "y": 87.06167, + "index": 3, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 937.28464, + "y": 93.7075, + "index": 4, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 926.35086, + "y": 97.85771, + "index": 5, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 914.74227, + "y": 99.27012, + "index": 6, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 903.13286, + "y": 97.86454, + "index": 7, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 892.19664, + "y": 93.72075, + "index": 8, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 882.57069, + "y": 87.08058, + "index": 9, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 874.81312, + "y": 78.32886, + "index": 10, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 869.37507, + "y": 67.97546, + "index": 11, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 866.57273, + "y": 56.62129, + "index": 12, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 866.56929, + "y": 44.92729, + "index": 13, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 869.36496, + "y": 33.57146, + "index": 14, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 874.79691, + "y": 23.21487, + "index": 15, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 882.54934, + "y": 14.45859, + "index": 16, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 892.17138, + "y": 7.81276, + "index": 17, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 903.10516, + "y": 3.66254, + "index": 18, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 914.71375, + "y": 2.25013, + "index": 19, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 926.32316, + "y": 3.65572, + "index": 20, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 937.25938, + "y": 7.7995, + "index": 21, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 946.88533, + "y": 14.43967, + "index": 22, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 954.64291, + "y": 23.19139, + "index": 23, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 960.08095, + "y": 33.54479, + "index": 24, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 962.88329, + "y": 44.89897, + "index": 25, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 914.72801, + "y": 50.76013 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00151, + "y": -2.90897 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 577 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 579 + }, + "max": { + "#": 580 + } + }, + { + "x": 866.56929, + "y": 2.25013 + }, + { + "x": 962.88673, + "y": 99.27012 + }, + { + "x": 914.7265, + "y": 53.6691 + }, + [ + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + } + ], + { + "x": -0.97101, + "y": -0.23905 + }, + { + "x": -0.88558, + "y": -0.46448 + }, + { + "x": -0.74872, + "y": -0.66288 + }, + { + "x": -0.56831, + "y": -0.82282 + }, + { + "x": -0.35487, + "y": -0.93491 + }, + { + "x": -0.12078, + "y": -0.99268 + }, + { + "x": 0.1202, + "y": -0.99275 + }, + { + "x": 0.35432, + "y": -0.93512 + }, + { + "x": 0.56782, + "y": -0.82315 + }, + { + "x": 0.74833, + "y": -0.66333 + }, + { + "x": 0.88531, + "y": -0.465 + }, + { + "x": 0.97087, + "y": -0.23962 + }, + { + "x": 1, + "y": -0.00029 + }, + { + "id": "18,20,0,2", + "startCol": 18, + "endCol": 20, + "startRow": 0, + "endRow": 2 + }, + { + "id": 23, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 598 + }, + "angle": 0, + "vertices": { + "#": 599 + }, + "position": { + "#": 604 + }, + "force": { + "#": 605 + }, + "torque": 0, + "positionImpulse": { + "#": 606 + }, + "constraintImpulse": { + "#": 607 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 608 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 609 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 610 + }, + "bounds": { + "#": 612 + }, + "positionPrev": { + "#": 615 + }, + "anglePrev": 0, + "axes": { + "#": 616 + }, + "area": 2034.76377, + "mass": 2.03476, + "inverseMass": 0.49146, + "inertia": 5208.09959, + "inverseInertia": 0.00019, + "parent": { + "#": 597 + }, + "sleepCounter": 0, + "region": { + "#": 619 + } + }, + [ + { + "#": 597 + } + ], + [ + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + } + ], + { + "x": 962.8725, + "y": 2.26425, + "index": 0, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 1047.10519, + "y": 2.26425, + "index": 1, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 1047.10519, + "y": 26.42071, + "index": 2, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 962.8725, + "y": 26.42071, + "index": 3, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 1004.98884, + "y": 14.34248 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 611 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 613 + }, + "max": { + "#": 614 + } + }, + { + "x": 962.8725, + "y": 2.26425 + }, + { + "x": 1047.10519, + "y": 26.42071 + }, + { + "x": 1004.98884, + "y": 17.24975 + }, + [ + { + "#": 617 + }, + { + "#": 618 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "20,21,0,0", + "startCol": 20, + "endCol": 21, + "startRow": 0, + "endRow": 0 + }, + { + "id": 24, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 621 + }, + "angle": 0, + "vertices": { + "#": 622 + }, + "position": { + "#": 627 + }, + "force": { + "#": 628 + }, + "torque": 0, + "positionImpulse": { + "#": 629 + }, + "constraintImpulse": { + "#": 630 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 631 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 632 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 633 + }, + "bounds": { + "#": 635 + }, + "positionPrev": { + "#": 638 + }, + "anglePrev": 0, + "axes": { + "#": 639 + }, + "area": 1030.45569, + "mass": 1.03046, + "inverseMass": 0.97044, + "inertia": 987.30914, + "inverseInertia": 0.00101, + "parent": { + "#": 620 + }, + "sleepCounter": 0, + "region": { + "#": 642 + } + }, + [ + { + "#": 620 + } + ], + [ + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + } + ], + { + "x": 1047.10519, + "y": 2.26425, + "index": 0, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 1096.49176, + "y": 2.26425, + "index": 1, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 1096.49176, + "y": 23.12934, + "index": 2, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 1047.10519, + "y": 23.12934, + "index": 3, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 1071.79847, + "y": 12.69679 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 634 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 636 + }, + "max": { + "#": 637 + } + }, + { + "x": 1047.10519, + "y": 2.26425 + }, + { + "x": 1096.49176, + "y": 23.12934 + }, + { + "x": 1071.79847, + "y": 15.60406 + }, + [ + { + "#": 640 + }, + { + "#": 641 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "21,22,0,0", + "startCol": 21, + "endCol": 22, + "startRow": 0, + "endRow": 0 + }, + { + "id": 25, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 644 + }, + "angle": -0.17004, + "vertices": { + "#": 645 + }, + "position": { + "#": 672 + }, + "force": { + "#": 673 + }, + "torque": 0, + "positionImpulse": { + "#": 674 + }, + "constraintImpulse": { + "#": 675 + }, + "totalContacts": 0, + "speed": 1.66181, + "angularSpeed": 0.03549, + "velocity": { + "#": 676 + }, + "angularVelocity": -0.03984, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 677 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 678 + }, + "circleRadius": 26.33166, + "bounds": { + "#": 680 + }, + "positionPrev": { + "#": 683 + }, + "anglePrev": -0.13035, + "axes": { + "#": 684 + }, + "area": 2157.16533, + "mass": 2.15717, + "inverseMass": 0.46357, + "inertia": 2962.47895, + "inverseInertia": 0.00034, + "parent": { + "#": 643 + }, + "sleepCounter": 0, + "region": { + "#": 698 + } + }, + [ + { + "#": 643 + } + ], + [ + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + } + ], + { + "x": 71.92422, + "y": 131.24074, + "index": 0, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 71.47002, + "y": 137.5719, + "index": 1, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 69.51373, + "y": 143.61103, + "index": 2, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 66.16857, + "y": 149.00691, + "index": 3, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 61.63011, + "y": 153.4449, + "index": 4, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 56.16161, + "y": 156.66774, + "index": 5, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 50.07994, + "y": 158.48812, + "index": 6, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 43.73937, + "y": 158.80057, + "index": 7, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 37.50905, + "y": 157.58634, + "index": 8, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 31.75019, + "y": 154.91633, + "index": 9, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 26.79678, + "y": 150.94527, + "index": 10, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 22.93815, + "y": 145.90453, + "index": 11, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 20.39817, + "y": 140.08745, + "index": 12, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 19.32397, + "y": 133.83099, + "index": 13, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 19.77818, + "y": 127.49983, + "index": 14, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 21.73446, + "y": 121.4607, + "index": 15, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 25.07962, + "y": 116.06482, + "index": 16, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 29.61809, + "y": 111.62683, + "index": 17, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 35.08659, + "y": 108.40399, + "index": 18, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 41.16825, + "y": 106.58361, + "index": 19, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 47.50882, + "y": 106.27116, + "index": 20, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 53.73914, + "y": 107.48539, + "index": 21, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 59.498, + "y": 110.1554, + "index": 22, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 64.45141, + "y": 114.12646, + "index": 23, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 68.31004, + "y": 119.1672, + "index": 24, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 70.85003, + "y": 124.98428, + "index": 25, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 45.6241, + "y": 132.53587 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.13924, + "y": -1.46837 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 679 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 681 + }, + "max": { + "#": 682 + } + }, + { + "x": 19.32397, + "y": 104.60941 + }, + { + "x": 71.93679, + "y": 158.80057 + }, + { + "x": 45.52513, + "y": 134.00591 + }, + [ + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + } + ], + { + "x": -0.99744, + "y": -0.07156 + }, + { + "x": -0.95133, + "y": -0.30817 + }, + { + "x": -0.84992, + "y": -0.52691 + }, + { + "x": -0.69915, + "y": -0.71498 + }, + { + "x": -0.50773, + "y": -0.86152 + }, + { + "x": -0.28675, + "y": -0.958 + }, + { + "x": -0.04922, + "y": -0.99879 + }, + { + "x": 0.19129, + "y": -0.98153 + }, + { + "x": 0.42062, + "y": -0.90723 + }, + { + "x": 0.6255, + "y": -0.78023 + }, + { + "x": 0.79406, + "y": -0.60784 + }, + { + "x": 0.91645, + "y": -0.40016 + }, + { + "x": 0.98558, + "y": -0.16922 + }, + { + "id": "0,1,2,3", + "startCol": 0, + "endCol": 1, + "startRow": 2, + "endRow": 3 + }, + { + "id": 26, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 700 + }, + "angle": -0.01363, + "vertices": { + "#": 701 + }, + "position": { + "#": 706 + }, + "force": { + "#": 707 + }, + "torque": 0, + "positionImpulse": { + "#": 708 + }, + "constraintImpulse": { + "#": 709 + }, + "totalContacts": 0, + "speed": 2.68595, + "angularSpeed": 0.00385, + "velocity": { + "#": 710 + }, + "angularVelocity": -0.00574, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 711 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 712 + }, + "bounds": { + "#": 714 + }, + "positionPrev": { + "#": 717 + }, + "anglePrev": -0.0081, + "axes": { + "#": 718 + }, + "area": 2399.6282, + "mass": 2.39963, + "inverseMass": 0.41673, + "inertia": 3838.81032, + "inverseInertia": 0.00026, + "parent": { + "#": 699 + }, + "sleepCounter": 0, + "region": { + "#": 721 + } + }, + [ + { + "#": 699 + } + ], + [ + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + } + ], + { + "x": 119.1742, + "y": 148.77459, + "index": 0, + "body": { + "#": 699 + }, + "isInternal": false + }, + { + "x": 70.19276, + "y": 149.44235, + "index": 1, + "body": { + "#": 699 + }, + "isInternal": false + }, + { + "x": 69.52499, + "y": 100.4609, + "index": 2, + "body": { + "#": 699 + }, + "isInternal": false + }, + { + "x": 118.50644, + "y": 99.79314, + "index": 3, + "body": { + "#": 699 + }, + "isInternal": false + }, + { + "x": 94.3496, + "y": 124.61774 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.11543, + "y": -2.63608 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 713 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 715 + }, + "max": { + "#": 716 + } + }, + { + "x": 69.50386, + "y": 97.10727 + }, + { + "x": 119.1742, + "y": 149.44235 + }, + { + "x": 94.25278, + "y": 127.25044 + }, + [ + { + "#": 719 + }, + { + "#": 720 + } + ], + { + "x": -0.01363, + "y": -0.99991 + }, + { + "x": 0.99991, + "y": -0.01363 + }, + { + "id": "1,2,2,3", + "startCol": 1, + "endCol": 2, + "startRow": 2, + "endRow": 3 + }, + { + "id": 27, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 723 + }, + "angle": -0.00813, + "vertices": { + "#": 724 + }, + "position": { + "#": 729 + }, + "force": { + "#": 730 + }, + "torque": 0, + "positionImpulse": { + "#": 731 + }, + "constraintImpulse": { + "#": 732 + }, + "totalContacts": 0, + "speed": 2.81697, + "angularSpeed": 0.00224, + "velocity": { + "#": 733 + }, + "angularVelocity": -0.00358, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 734 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 735 + }, + "bounds": { + "#": 737 + }, + "positionPrev": { + "#": 740 + }, + "anglePrev": -0.00497, + "axes": { + "#": 741 + }, + "area": 1489.78438, + "mass": 1.48978, + "inverseMass": 0.67124, + "inertia": 1501.63859, + "inverseInertia": 0.00067, + "parent": { + "#": 722 + }, + "sleepCounter": 0, + "region": { + "#": 744 + } + }, + [ + { + "#": 722 + } + ], + [ + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + } + ], + { + "x": 116.29397, + "y": 99.74064, + "index": 0, + "body": { + "#": 722 + }, + "isInternal": false + }, + { + "x": 151.70574, + "y": 99.45263, + "index": 1, + "body": { + "#": 722 + }, + "isInternal": false + }, + { + "x": 152.04787, + "y": 141.52017, + "index": 2, + "body": { + "#": 722 + }, + "isInternal": false + }, + { + "x": 116.6361, + "y": 141.80817, + "index": 3, + "body": { + "#": 722 + }, + "isInternal": false + }, + { + "x": 134.17092, + "y": 120.6304 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -1.41136, + "y": -0.03044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.05759, + "y": -2.80724 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 736 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 738 + }, + "max": { + "#": 739 + } + }, + { + "x": 116.29007, + "y": 96.63567 + }, + { + "x": 152.04787, + "y": 141.80817 + }, + { + "x": 134.12902, + "y": 123.43272 + }, + [ + { + "#": 742 + }, + { + "#": 743 + } + ], + { + "x": 0.00813, + "y": 0.99997 + }, + { + "x": -0.99997, + "y": 0.00813 + }, + { + "id": "2,3,2,2", + "startCol": 2, + "endCol": 3, + "startRow": 2, + "endRow": 2 + }, + { + "id": 28, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 746 + }, + "angle": -0.00378, + "vertices": { + "#": 747 + }, + "position": { + "#": 752 + }, + "force": { + "#": 753 + }, + "torque": 0, + "positionImpulse": { + "#": 754 + }, + "constraintImpulse": { + "#": 755 + }, + "totalContacts": 0, + "speed": 2.87814, + "angularSpeed": 0.00103, + "velocity": { + "#": 756 + }, + "angularVelocity": -0.00145, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 757 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 758 + }, + "bounds": { + "#": 760 + }, + "positionPrev": { + "#": 763 + }, + "anglePrev": -0.00246, + "axes": { + "#": 764 + }, + "area": 1765.36753, + "mass": 1.76537, + "inverseMass": 0.56645, + "inertia": 2077.83253, + "inverseInertia": 0.00048, + "parent": { + "#": 745 + }, + "sleepCounter": 0, + "region": { + "#": 767 + } + }, + [ + { + "#": 745 + } + ], + [ + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + } + ], + { + "x": 148.88353, + "y": 99.43057, + "index": 0, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 190.64712, + "y": 99.27281, + "index": 1, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 190.80679, + "y": 141.5427, + "index": 2, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 149.0432, + "y": 141.70046, + "index": 3, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 169.84516, + "y": 120.48663 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.03725, + "y": -2.87774 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 759 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 761 + }, + "max": { + "#": 762 + } + }, + { + "x": 148.88353, + "y": 96.3947 + }, + { + "x": 190.8203, + "y": 141.70046 + }, + { + "x": 169.81645, + "y": 123.36213 + }, + [ + { + "#": 765 + }, + { + "#": 766 + } + ], + { + "x": 0.00378, + "y": 0.99999 + }, + { + "x": -0.99999, + "y": 0.00378 + }, + { + "id": "3,4,2,2", + "startCol": 3, + "endCol": 4, + "startRow": 2, + "endRow": 2 + }, + { + "id": 29, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 769 + }, + "angle": -0.0009, + "vertices": { + "#": 770 + }, + "position": { + "#": 777 + }, + "force": { + "#": 778 + }, + "torque": 0, + "positionImpulse": { + "#": 779 + }, + "constraintImpulse": { + "#": 780 + }, + "totalContacts": 0, + "speed": 2.90564, + "angularSpeed": 0.00038, + "velocity": { + "#": 781 + }, + "angularVelocity": -0.00047, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 782 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 783 + }, + "bounds": { + "#": 785 + }, + "positionPrev": { + "#": 788 + }, + "anglePrev": -0.00049, + "axes": { + "#": 789 + }, + "area": 1919.54576, + "mass": 1.91955, + "inverseMass": 0.52096, + "inertia": 2363.70788, + "inverseInertia": 0.00042, + "parent": { + "#": 768 + }, + "sleepCounter": 0, + "region": { + "#": 793 + } + }, + [ + { + "#": 768 + } + ], + [ + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + }, + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + } + ], + { + "x": 234.47093, + "y": 139.92732, + "index": 0, + "body": { + "#": 768 + }, + "isInternal": false + }, + { + "x": 210.94322, + "y": 153.53859, + "index": 1, + "body": { + "#": 768 + }, + "isInternal": false + }, + { + "x": 187.39095, + "y": 139.96987, + "index": 2, + "body": { + "#": 768 + }, + "isInternal": false + }, + { + "x": 187.36638, + "y": 112.78788, + "index": 3, + "body": { + "#": 768 + }, + "isInternal": false + }, + { + "x": 210.89409, + "y": 99.17661, + "index": 4, + "body": { + "#": 768 + }, + "isInternal": false + }, + { + "x": 234.44636, + "y": 112.74533, + "index": 5, + "body": { + "#": 768 + }, + "isInternal": false + }, + { + "x": 210.91866, + "y": 126.3576 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.85583, + "y": -0.03002 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.03375, + "y": -2.90702 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 784 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 786 + }, + "max": { + "#": 787 + } + }, + { + "x": 187.36638, + "y": 96.27104 + }, + { + "x": 234.49234, + "y": 153.53859 + }, + { + "x": 210.89061, + "y": 129.26391 + }, + [ + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + } + ], + { + "x": -0.50076, + "y": -0.86559 + }, + { + "x": 0.49919, + "y": -0.86649 + }, + { + "x": 1, + "y": -0.0009 + }, + { + "id": "3,4,2,3", + "startCol": 3, + "endCol": 4, + "startRow": 2, + "endRow": 3 + }, + { + "id": 30, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 795 + }, + "angle": 0.0004, + "vertices": { + "#": 796 + }, + "position": { + "#": 803 + }, + "force": { + "#": 804 + }, + "torque": 0, + "positionImpulse": { + "#": 805 + }, + "constraintImpulse": { + "#": 806 + }, + "totalContacts": 0, + "speed": 2.91076, + "angularSpeed": 0.00009, + "velocity": { + "#": 807 + }, + "angularVelocity": 0.0001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 808 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 809 + }, + "bounds": { + "#": 811 + }, + "positionPrev": { + "#": 814 + }, + "anglePrev": 0.0003, + "axes": { + "#": 815 + }, + "area": 6052.328, + "mass": 6.05233, + "inverseMass": 0.16523, + "inertia": 23498.5885, + "inverseInertia": 0.00004, + "parent": { + "#": 794 + }, + "sleepCounter": 0, + "region": { + "#": 819 + } + }, + [ + { + "#": 794 + } + ], + [ + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + } + ], + { + "x": 314.61849, + "y": 171.7043, + "index": 0, + "body": { + "#": 794 + }, + "isInternal": false + }, + { + "x": 272.80992, + "y": 195.81971, + "index": 1, + "body": { + "#": 794 + }, + "isInternal": false + }, + { + "x": 231.0205, + "y": 171.67113, + "index": 2, + "body": { + "#": 794 + }, + "isInternal": false + }, + { + "x": 231.03965, + "y": 123.40513, + "index": 3, + "body": { + "#": 794 + }, + "isInternal": false + }, + { + "x": 272.84823, + "y": 99.28972, + "index": 4, + "body": { + "#": 794 + }, + "isInternal": false + }, + { + "x": 314.63765, + "y": 123.43831, + "index": 5, + "body": { + "#": 794 + }, + "isInternal": false + }, + { + "x": 272.82907, + "y": 147.55472 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.46838, + "y": 0.00207 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.0284, + "y": -2.9116 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 810 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 812 + }, + "max": { + "#": 813 + } + }, + { + "x": 231.0205, + "y": 96.37905 + }, + { + "x": 314.65944, + "y": 195.81971 + }, + { + "x": 272.80104, + "y": 150.46633 + }, + [ + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + } + ], + { + "x": -0.49965, + "y": -0.86623 + }, + { + "x": 0.50033, + "y": -0.86583 + }, + { + "x": 1, + "y": 0.0004 + }, + { + "id": "4,6,2,4", + "startCol": 4, + "endCol": 6, + "startRow": 2, + "endRow": 4 + }, + { + "id": 31, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 821 + }, + "angle": -0.00013, + "vertices": { + "#": 822 + }, + "position": { + "#": 827 + }, + "force": { + "#": 828 + }, + "torque": 0, + "positionImpulse": { + "#": 829 + }, + "constraintImpulse": { + "#": 830 + }, + "totalContacts": 0, + "speed": 2.90692, + "angularSpeed": 0.00001, + "velocity": { + "#": 831 + }, + "angularVelocity": 0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 832 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 833 + }, + "bounds": { + "#": 835 + }, + "positionPrev": { + "#": 838 + }, + "anglePrev": -0.00014, + "axes": { + "#": 839 + }, + "area": 2220.02331, + "mass": 2.22002, + "inverseMass": 0.45045, + "inertia": 3297.61061, + "inverseInertia": 0.0003, + "parent": { + "#": 820 + }, + "sleepCounter": 0, + "region": { + "#": 842 + } + }, + [ + { + "#": 820 + } + ], + [ + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + } + ], + { + "x": 311.58062, + "y": 99.29115, + "index": 0, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 356.73198, + "y": 99.28509, + "index": 1, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 356.73858, + "y": 148.45356, + "index": 2, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 311.58722, + "y": 148.45962, + "index": 3, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 334.1596, + "y": 123.87235 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 2.30247, + "y": -0.00032 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02921, + "y": -2.90755 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 834 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 836 + }, + "max": { + "#": 837 + } + }, + { + "x": 311.58062, + "y": 96.37826 + }, + { + "x": 356.76177, + "y": 148.45962 + }, + { + "x": 334.13066, + "y": 126.77998 + }, + [ + { + "#": 840 + }, + { + "#": 841 + } + ], + { + "x": 0.00013, + "y": 1 + }, + { + "x": -1, + "y": 0.00013 + }, + { + "id": "6,7,2,3", + "startCol": 6, + "endCol": 7, + "startRow": 2, + "endRow": 3 + }, + { + "id": 32, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 844 + }, + "angle": -0.00016, + "vertices": { + "#": 845 + }, + "position": { + "#": 852 + }, + "force": { + "#": 853 + }, + "torque": 0, + "positionImpulse": { + "#": 854 + }, + "constraintImpulse": { + "#": 855 + }, + "totalContacts": 0, + "speed": 2.90859, + "angularSpeed": 0.00006, + "velocity": { + "#": 856 + }, + "angularVelocity": -0.00005, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 857 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 858 + }, + "bounds": { + "#": 860 + }, + "positionPrev": { + "#": 863 + }, + "anglePrev": -0.00011, + "axes": { + "#": 864 + }, + "area": 2601.10745, + "mass": 2.60111, + "inverseMass": 0.38445, + "inertia": 4340.23704, + "inverseInertia": 0.00023, + "parent": { + "#": 843 + }, + "sleepCounter": 0, + "region": { + "#": 868 + } + }, + [ + { + "#": 843 + } + ], + [ + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + } + ], + { + "x": 409.11628, + "y": 146.72315, + "index": 0, + "body": { + "#": 843 + }, + "isInternal": false + }, + { + "x": 381.71684, + "y": 162.54758, + "index": 1, + "body": { + "#": 843 + }, + "isInternal": false + }, + { + "x": 354.31228, + "y": 146.73201, + "index": 2, + "body": { + "#": 843 + }, + "isInternal": false + }, + { + "x": 354.30716, + "y": 115.09002, + "index": 3, + "body": { + "#": 843 + }, + "isInternal": false + }, + { + "x": 381.7066, + "y": 99.26558, + "index": 4, + "body": { + "#": 843 + }, + "isInternal": false + }, + { + "x": 409.11116, + "y": 115.08115, + "index": 5, + "body": { + "#": 843 + }, + "isInternal": false + }, + { + "x": 381.71172, + "y": 130.90658 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 4.15555, + "y": -0.00268 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02862, + "y": -2.90911 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 859 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 861 + }, + "max": { + "#": 862 + } + }, + { + "x": 354.30716, + "y": 96.35709 + }, + { + "x": 409.13944, + "y": 162.54758 + }, + { + "x": 381.68288, + "y": 133.81563 + }, + [ + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + } + ], + { + "x": -0.50013, + "y": -0.86595 + }, + { + "x": 0.49985, + "y": -0.86611 + }, + { + "x": 1, + "y": -0.00016 + }, + { + "id": "7,8,2,3", + "startCol": 7, + "endCol": 8, + "startRow": 2, + "endRow": 3 + }, + { + "id": 33, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 870 + }, + "angle": -0.00008, + "vertices": { + "#": 871 + }, + "position": { + "#": 876 + }, + "force": { + "#": 877 + }, + "torque": 0, + "positionImpulse": { + "#": 878 + }, + "constraintImpulse": { + "#": 879 + }, + "totalContacts": 0, + "speed": 2.91093, + "angularSpeed": 0.00002, + "velocity": { + "#": 880 + }, + "angularVelocity": 0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 881 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 882 + }, + "bounds": { + "#": 884 + }, + "positionPrev": { + "#": 887 + }, + "anglePrev": -0.00008, + "axes": { + "#": 888 + }, + "area": 1413.30884, + "mass": 1.41331, + "inverseMass": 0.70756, + "inertia": 1331.62791, + "inverseInertia": 0.00075, + "parent": { + "#": 869 + }, + "sleepCounter": 0, + "region": { + "#": 891 + } + }, + [ + { + "#": 869 + } + ], + [ + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + } + ], + { + "x": 444.96504, + "y": 136.86671, + "index": 0, + "body": { + "#": 869 + }, + "isInternal": false + }, + { + "x": 407.37104, + "y": 136.8696, + "index": 1, + "body": { + "#": 869 + }, + "isInternal": false + }, + { + "x": 407.36816, + "y": 99.2756, + "index": 2, + "body": { + "#": 869 + }, + "isInternal": false + }, + { + "x": 444.96216, + "y": 99.27271, + "index": 3, + "body": { + "#": 869 + }, + "isInternal": false + }, + { + "x": 426.1666, + "y": 118.07115 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 5.40144, + "y": -0.00096 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02926, + "y": -2.91078 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 883 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 885 + }, + "max": { + "#": 886 + } + }, + { + "x": 407.36816, + "y": 96.36188 + }, + { + "x": 444.98789, + "y": 136.8696 + }, + { + "x": 426.13807, + "y": 120.98179 + }, + [ + { + "#": 889 + }, + { + "#": 890 + } + ], + { + "x": -0.00008, + "y": -1 + }, + { + "x": 1, + "y": -0.00008 + }, + { + "id": "8,9,2,2", + "startCol": 8, + "endCol": 9, + "startRow": 2, + "endRow": 2 + }, + { + "id": 34, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 893 + }, + "angle": 0.00008, + "vertices": { + "#": 894 + }, + "position": { + "#": 901 + }, + "force": { + "#": 902 + }, + "torque": 0, + "positionImpulse": { + "#": 903 + }, + "constraintImpulse": { + "#": 904 + }, + "totalContacts": 0, + "speed": 2.90843, + "angularSpeed": 0.00008, + "velocity": { + "#": 905 + }, + "angularVelocity": 0.00009, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 906 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 907 + }, + "bounds": { + "#": 909 + }, + "positionPrev": { + "#": 912 + }, + "anglePrev": -0.00001, + "axes": { + "#": 913 + }, + "area": 5460.80875, + "mass": 5.46081, + "inverseMass": 0.18312, + "inertia": 19129.81619, + "inverseInertia": 0.00005, + "parent": { + "#": 892 + }, + "sleepCounter": 0, + "region": { + "#": 917 + } + }, + [ + { + "#": 892 + } + ], + [ + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + } + ], + { + "x": 523.36236, + "y": 165.49261, + "index": 0, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 483.65649, + "y": 188.41236, + "index": 1, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 443.95436, + "y": 165.48612, + "index": 2, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 443.95811, + "y": 119.64012, + "index": 3, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 483.66399, + "y": 96.72036, + "index": 4, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 523.36611, + "y": 119.64661, + "index": 5, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 483.66024, + "y": 142.56636 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02807, + "y": -2.90673 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 908 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 910 + }, + "max": { + "#": 911 + } + }, + { + "x": 443.95436, + "y": 93.81202 + }, + { + "x": 523.38856, + "y": 188.41236 + }, + { + "x": 483.63237, + "y": 145.47311 + }, + [ + { + "#": 914 + }, + { + "#": 915 + }, + { + "#": 916 + } + ], + { + "x": -0.49993, + "y": -0.86607 + }, + { + "x": 0.50007, + "y": -0.86599 + }, + { + "x": 1, + "y": 0.00008 + }, + { + "id": "9,10,1,3", + "startCol": 9, + "endCol": 10, + "startRow": 1, + "endRow": 3 + }, + { + "id": 35, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 919 + }, + "angle": -0.00067, + "vertices": { + "#": 920 + }, + "position": { + "#": 925 + }, + "force": { + "#": 926 + }, + "torque": 0, + "positionImpulse": { + "#": 927 + }, + "constraintImpulse": { + "#": 928 + }, + "totalContacts": 0, + "speed": 2.86249, + "angularSpeed": 0.00026, + "velocity": { + "#": 929 + }, + "angularVelocity": 0.00026, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 930 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 931 + }, + "bounds": { + "#": 933 + }, + "positionPrev": { + "#": 936 + }, + "anglePrev": -0.00093, + "axes": { + "#": 937 + }, + "area": 451.61379, + "mass": 0.45161, + "inverseMass": 2.21428, + "inertia": 136.71143, + "inverseInertia": 0.00731, + "parent": { + "#": 918 + }, + "sleepCounter": 0, + "region": { + "#": 940 + } + }, + [ + { + "#": 918 + } + ], + [ + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + }, + { + "#": 924 + } + ], + { + "x": 547.31625, + "y": 99.39503, + "index": 0, + "body": { + "#": 918 + }, + "isInternal": false + }, + { + "x": 567.48677, + "y": 99.38161, + "index": 1, + "body": { + "#": 918 + }, + "isInternal": false + }, + { + "x": 567.50167, + "y": 121.77139, + "index": 2, + "body": { + "#": 918 + }, + "isInternal": false + }, + { + "x": 547.33115, + "y": 121.78481, + "index": 3, + "body": { + "#": 918 + }, + "isInternal": false + }, + { + "x": 557.40896, + "y": 110.58321 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00459, + "y": -2.86249 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 932 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 934 + }, + "max": { + "#": 935 + } + }, + { + "x": 547.31625, + "y": 99.38161 + }, + { + "x": 567.50167, + "y": 121.78481 + }, + { + "x": 557.41355, + "y": 113.4457 + }, + [ + { + "#": 938 + }, + { + "#": 939 + } + ], + { + "x": 0.00067, + "y": 1 + }, + { + "x": -1, + "y": 0.00067 + }, + { + "id": "11,11,2,2", + "startCol": 11, + "endCol": 11, + "startRow": 2, + "endRow": 2 + }, + { + "id": 36, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 942 + }, + "angle": 0.00026, + "vertices": { + "#": 943 + }, + "position": { + "#": 948 + }, + "force": { + "#": 949 + }, + "torque": 0, + "positionImpulse": { + "#": 950 + }, + "constraintImpulse": { + "#": 951 + }, + "totalContacts": 0, + "speed": 2.90774, + "angularSpeed": 0.00013, + "velocity": { + "#": 952 + }, + "angularVelocity": 0.00013, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 953 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 954 + }, + "bounds": { + "#": 956 + }, + "positionPrev": { + "#": 959 + }, + "anglePrev": 0.00013, + "axes": { + "#": 960 + }, + "area": 3021.67907, + "mass": 3.02168, + "inverseMass": 0.33094, + "inertia": 11331.77016, + "inverseInertia": 0.00009, + "parent": { + "#": 941 + }, + "sleepCounter": 0, + "region": { + "#": 963 + } + }, + [ + { + "#": 941 + } + ], + [ + { + "#": 944 + }, + { + "#": 945 + }, + { + "#": 946 + }, + { + "#": 947 + } + ], + { + "x": 567.55528, + "y": 80.3875, + "index": 0, + "body": { + "#": 941 + }, + "isInternal": false + }, + { + "x": 669.38844, + "y": 80.41409, + "index": 1, + "body": { + "#": 941 + }, + "isInternal": false + }, + { + "x": 669.38069, + "y": 110.08693, + "index": 2, + "body": { + "#": 941 + }, + "isInternal": false + }, + { + "x": 567.54753, + "y": 110.06033, + "index": 3, + "body": { + "#": 941 + }, + "isInternal": false + }, + { + "x": 618.46799, + "y": 95.23721 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.03591, + "y": -1.34177 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00238, + "y": -2.90774 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 955 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 957 + }, + "max": { + "#": 958 + } + }, + { + "x": 567.54515, + "y": 77.47975 + }, + { + "x": 669.38844, + "y": 110.08693 + }, + { + "x": 618.47037, + "y": 98.14496 + }, + [ + { + "#": 961 + }, + { + "#": 962 + } + ], + { + "x": -0.00026, + "y": 1 + }, + { + "x": -1, + "y": -0.00026 + }, + { + "id": "11,13,1,2", + "startCol": 11, + "endCol": 13, + "startRow": 1, + "endRow": 2 + }, + { + "id": 37, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 965 + }, + "angle": 0.00137, + "vertices": { + "#": 966 + }, + "position": { + "#": 971 + }, + "force": { + "#": 972 + }, + "torque": 0, + "positionImpulse": { + "#": 973 + }, + "constraintImpulse": { + "#": 974 + }, + "totalContacts": 0, + "speed": 2.9347, + "angularSpeed": 0.00004, + "velocity": { + "#": 975 + }, + "angularVelocity": 0.00004, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 976 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 977 + }, + "bounds": { + "#": 979 + }, + "positionPrev": { + "#": 982 + }, + "anglePrev": 0.00133, + "axes": { + "#": 983 + }, + "area": 856.73964, + "mass": 0.85674, + "inverseMass": 1.16722, + "inertia": 589.10598, + "inverseInertia": 0.0017, + "parent": { + "#": 964 + }, + "sleepCounter": 0, + "region": { + "#": 986 + } + }, + [ + { + "#": 964 + } + ], + [ + { + "#": 967 + }, + { + "#": 968 + }, + { + "#": 969 + }, + { + "#": 970 + } + ], + { + "x": 670.80992, + "y": 96.15905, + "index": 0, + "body": { + "#": 964 + }, + "isInternal": false + }, + { + "x": 710.88139, + "y": 96.21384, + "index": 1, + "body": { + "#": 964 + }, + "isInternal": false + }, + { + "x": 710.85215, + "y": 117.5941, + "index": 2, + "body": { + "#": 964 + }, + "isInternal": false + }, + { + "x": 670.78069, + "y": 117.5393, + "index": 3, + "body": { + "#": 964 + }, + "isInternal": false + }, + { + "x": 690.83104, + "y": 106.87657 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.36447, + "y": -0.43654 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01702, + "y": -2.93465 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 978 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 980 + }, + "max": { + "#": 981 + } + }, + { + "x": 670.78069, + "y": 93.2244 + }, + { + "x": 710.8984, + "y": 117.5941 + }, + { + "x": 690.81402, + "y": 109.81123 + }, + [ + { + "#": 984 + }, + { + "#": 985 + } + ], + { + "x": -0.00137, + "y": 1 + }, + { + "x": -1, + "y": -0.00137 + }, + { + "id": "13,14,2,2", + "startCol": 13, + "endCol": 14, + "startRow": 2, + "endRow": 2 + }, + { + "id": 38, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 988 + }, + "angle": 0.00009, + "vertices": { + "#": 989 + }, + "position": { + "#": 998 + }, + "force": { + "#": 999 + }, + "torque": 0, + "positionImpulse": { + "#": 1000 + }, + "constraintImpulse": { + "#": 1001 + }, + "totalContacts": 0, + "speed": 2.90484, + "angularSpeed": 0.00001, + "velocity": { + "#": 1002 + }, + "angularVelocity": -0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1003 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1004 + }, + "bounds": { + "#": 1006 + }, + "positionPrev": { + "#": 1009 + }, + "anglePrev": 0.00011, + "axes": { + "#": 1010 + }, + "area": 4088.59995, + "mass": 4.0886, + "inverseMass": 0.24458, + "inertia": 10666.41244, + "inverseInertia": 0.00009, + "parent": { + "#": 987 + }, + "sleepCounter": 0, + "region": { + "#": 1015 + } + }, + [ + { + "#": 987 + } + ], + [ + { + "#": 990 + }, + { + "#": 991 + }, + { + "#": 992 + }, + { + "#": 993 + }, + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + }, + { + "#": 997 + } + ], + { + "x": 778.69349, + "y": 149.24022, + "index": 0, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 758.11555, + "y": 169.81428, + "index": 1, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 729.01555, + "y": 169.81154, + "index": 2, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 708.44149, + "y": 149.23361, + "index": 3, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 708.44423, + "y": 120.13361, + "index": 4, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 729.02216, + "y": 99.55954, + "index": 5, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 758.12216, + "y": 99.56228, + "index": 6, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 778.69623, + "y": 120.14022, + "index": 7, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 743.56886, + "y": 134.68691 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00319, + "y": -2.90484 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1005 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1007 + }, + "max": { + "#": 1008 + } + }, + { + "x": 708.44149, + "y": 99.55954 + }, + { + "x": 778.69623, + "y": 169.81428 + }, + { + "x": 743.56567, + "y": 137.59176 + }, + [ + { + "#": 1011 + }, + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + } + ], + { + "x": -0.70704, + "y": -0.70717 + }, + { + "x": 0.00009, + "y": -1 + }, + { + "x": 0.70717, + "y": -0.70704 + }, + { + "x": 1, + "y": 0.00009 + }, + { + "id": "14,16,2,3", + "startCol": 14, + "endCol": 16, + "startRow": 2, + "endRow": 3 + }, + { + "id": 39, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1017 + }, + "angle": -0.00316, + "vertices": { + "#": 1018 + }, + "position": { + "#": 1023 + }, + "force": { + "#": 1024 + }, + "torque": 0, + "positionImpulse": { + "#": 1025 + }, + "constraintImpulse": { + "#": 1026 + }, + "totalContacts": 0, + "speed": 2.88308, + "angularSpeed": 0.00024, + "velocity": { + "#": 1027 + }, + "angularVelocity": -0.00024, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1028 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1029 + }, + "bounds": { + "#": 1031 + }, + "positionPrev": { + "#": 1034 + }, + "anglePrev": -0.00291, + "axes": { + "#": 1035 + }, + "area": 1965.14243, + "mass": 1.96514, + "inverseMass": 0.50887, + "inertia": 5563.36836, + "inverseInertia": 0.00018, + "parent": { + "#": 1016 + }, + "sleepCounter": 0, + "region": { + "#": 1038 + } + }, + [ + { + "#": 1016 + } + ], + [ + { + "#": 1019 + }, + { + "#": 1020 + }, + { + "#": 1021 + }, + { + "#": 1022 + } + ], + { + "x": 1204.44735, + "y": 11.12762, + "index": 0, + "body": { + "#": 1016 + }, + "isInternal": false + }, + { + "x": 1293.95119, + "y": 10.8452, + "index": 1, + "body": { + "#": 1016 + }, + "isInternal": false + }, + { + "x": 1294.02047, + "y": 32.80093, + "index": 2, + "body": { + "#": 1016 + }, + "isInternal": false + }, + { + "x": 1204.51663, + "y": 33.08336, + "index": 3, + "body": { + "#": 1016 + }, + "isInternal": false + }, + { + "x": 1249.23391, + "y": 21.96428 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 8.00623, + "y": -2.13122 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00408, + "y": -2.88307 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1030 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1032 + }, + "max": { + "#": 1033 + } + }, + { + "x": 1204.44735, + "y": 7.96212 + }, + { + "x": 1294.02455, + "y": 33.08336 + }, + { + "x": 1249.22982, + "y": 24.84735 + }, + [ + { + "#": 1036 + }, + { + "#": 1037 + } + ], + { + "x": 0.00316, + "y": 1 + }, + { + "x": -1, + "y": 0.00316 + }, + { + "id": "24,26,0,0", + "startCol": 24, + "endCol": 26, + "startRow": 0, + "endRow": 0 + }, + { + "id": 40, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1040 + }, + "angle": 0.00126, + "vertices": { + "#": 1041 + }, + "position": { + "#": 1045 + }, + "force": { + "#": 1046 + }, + "torque": 0, + "positionImpulse": { + "#": 1047 + }, + "constraintImpulse": { + "#": 1048 + }, + "totalContacts": 0, + "speed": 2.89411, + "angularSpeed": 0.00007, + "velocity": { + "#": 1049 + }, + "angularVelocity": 0.00007, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1050 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1051 + }, + "bounds": { + "#": 1053 + }, + "positionPrev": { + "#": 1056 + }, + "anglePrev": 0.00119, + "axes": { + "#": 1057 + }, + "area": 1492.52562, + "mass": 1.49253, + "inverseMass": 0.67001, + "inertia": 1714.83247, + "inverseInertia": 0.00058, + "parent": { + "#": 1039 + }, + "sleepCounter": 0, + "region": { + "#": 1061 + } + }, + [ + { + "#": 1039 + } + ], + [ + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + } + ], + { + "x": 906.49895, + "y": 178.00801, + "index": 0, + "body": { + "#": 1039 + }, + "isInternal": false + }, + { + "x": 855.69198, + "y": 148.58896, + "index": 1, + "body": { + "#": 1039 + }, + "isInternal": false + }, + { + "x": 906.57294, + "y": 119.29806, + "index": 2, + "body": { + "#": 1039 + }, + "isInternal": false + }, + { + "x": 889.58796, + "y": 148.63168 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00532, + "y": -2.89411 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1052 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1054 + }, + "max": { + "#": 1055 + } + }, + { + "x": 855.69198, + "y": 119.29806 + }, + { + "x": 906.57294, + "y": 178.00801 + }, + { + "x": 889.59328, + "y": 151.52579 + }, + [ + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + } + ], + { + "x": -0.50109, + "y": 0.86539 + }, + { + "x": -0.49891, + "y": -0.86665 + }, + { + "x": 1, + "y": 0.00126 + }, + { + "id": "17,18,2,3", + "startCol": 17, + "endCol": 18, + "startRow": 2, + "endRow": 3 + }, + { + "id": 41, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1063 + }, + "angle": -0.00278, + "vertices": { + "#": 1064 + }, + "position": { + "#": 1069 + }, + "force": { + "#": 1070 + }, + "torque": 0, + "positionImpulse": { + "#": 1071 + }, + "constraintImpulse": { + "#": 1072 + }, + "totalContacts": 0, + "speed": 2.90006, + "angularSpeed": 0.00055, + "velocity": { + "#": 1073 + }, + "angularVelocity": -0.00055, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1074 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1075 + }, + "bounds": { + "#": 1077 + }, + "positionPrev": { + "#": 1080 + }, + "anglePrev": -0.00223, + "axes": { + "#": 1081 + }, + "area": 942.00657, + "mass": 0.94201, + "inverseMass": 1.06156, + "inertia": 767.50816, + "inverseInertia": 0.0013, + "parent": { + "#": 1062 + }, + "sleepCounter": 0, + "region": { + "#": 1084 + } + }, + [ + { + "#": 1062 + } + ], + [ + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + } + ], + { + "x": 908.15143, + "y": 106.15193, + "index": 0, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 929.21128, + "y": 106.09334, + "index": 1, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 929.33573, + "y": 150.82297, + "index": 2, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 908.27589, + "y": 150.88157, + "index": 3, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 918.74358, + "y": 128.48745 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00138, + "y": -2.90006 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1076 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1078 + }, + "max": { + "#": 1079 + } + }, + { + "x": 908.15143, + "y": 106.09334 + }, + { + "x": 929.33573, + "y": 150.88157 + }, + { + "x": 918.7422, + "y": 131.38752 + }, + [ + { + "#": 1082 + }, + { + "#": 1083 + } + ], + { + "x": 0.00278, + "y": 1 + }, + { + "x": -1, + "y": 0.00278 + }, + { + "id": "18,19,2,3", + "startCol": 18, + "endCol": 19, + "startRow": 2, + "endRow": 3 + }, + { + "id": 42, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1086 + }, + "angle": 0.0001, + "vertices": { + "#": 1087 + }, + "position": { + "#": 1092 + }, + "force": { + "#": 1093 + }, + "torque": 0, + "positionImpulse": { + "#": 1094 + }, + "constraintImpulse": { + "#": 1095 + }, + "totalContacts": 0, + "speed": 2.87763, + "angularSpeed": 0.00001, + "velocity": { + "#": 1096 + }, + "angularVelocity": -0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1097 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1098 + }, + "bounds": { + "#": 1100 + }, + "positionPrev": { + "#": 1103 + }, + "anglePrev": 0.00011, + "axes": { + "#": 1104 + }, + "area": 2898.41559, + "mass": 2.89842, + "inverseMass": 0.34502, + "inertia": 12806.46533, + "inverseInertia": 0.00008, + "parent": { + "#": 1085 + }, + "sleepCounter": 0, + "region": { + "#": 1107 + } + }, + [ + { + "#": 1085 + } + ], + [ + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + } + ], + { + "x": 930.08544, + "y": 106.06417, + "index": 0, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 1042.28143, + "y": 106.07521, + "index": 1, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 1042.27889, + "y": 131.90871, + "index": 2, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 930.0829, + "y": 131.89768, + "index": 3, + "body": { + "#": 1085 + }, + "isInternal": false + }, + { + "x": 986.18216, + "y": 118.98644 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.17832, + "y": -0.0003 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00334, + "y": -2.87763 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1099 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1101 + }, + "max": { + "#": 1102 + } + }, + { + "x": 930.0829, + "y": 103.18655 + }, + { + "x": 1042.28476, + "y": 131.90871 + }, + { + "x": 986.17883, + "y": 121.86407 + }, + [ + { + "#": 1105 + }, + { + "#": 1106 + } + ], + { + "x": -0.0001, + "y": 1 + }, + { + "x": -1, + "y": -0.0001 + }, + { + "id": "19,21,2,2", + "startCol": 19, + "endCol": 21, + "startRow": 2, + "endRow": 2 + }, + { + "id": 43, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1109 + }, + "angle": 0.0046, + "vertices": { + "#": 1110 + }, + "position": { + "#": 1114 + }, + "force": { + "#": 1115 + }, + "torque": 0, + "positionImpulse": { + "#": 1116 + }, + "constraintImpulse": { + "#": 1117 + }, + "totalContacts": 0, + "speed": 2.93611, + "angularSpeed": 0.00113, + "velocity": { + "#": 1118 + }, + "angularVelocity": 0.00113, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1119 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1120 + }, + "bounds": { + "#": 1122 + }, + "positionPrev": { + "#": 1125 + }, + "anglePrev": 0.00347, + "axes": { + "#": 1126 + }, + "area": 842.52305, + "mass": 0.84252, + "inverseMass": 1.18691, + "inertia": 546.43901, + "inverseInertia": 0.00183, + "parent": { + "#": 1108 + }, + "sleepCounter": 0, + "region": { + "#": 1130 + } + }, + [ + { + "#": 1108 + } + ], + [ + { + "#": 1111 + }, + { + "#": 1112 + }, + { + "#": 1113 + } + ], + { + "x": 1081.06386, + "y": 143.33525, + "index": 0, + "body": { + "#": 1108 + }, + "isInternal": false + }, + { + "x": 1042.96467, + "y": 121.10484, + "index": 1, + "body": { + "#": 1108 + }, + "isInternal": false + }, + { + "x": 1081.26667, + "y": 99.22572, + "index": 2, + "body": { + "#": 1108 + }, + "isInternal": false + }, + { + "x": 1068.43173, + "y": 121.22194 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.18757, + "y": -0.00002 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00329, + "y": -2.9361 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1121 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1123 + }, + "max": { + "#": 1124 + } + }, + { + "x": 1042.96467, + "y": 96.28962 + }, + { + "x": 1081.26996, + "y": 143.33525 + }, + { + "x": 1068.42845, + "y": 124.15804 + }, + [ + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + } + ], + { + "x": -0.50397, + "y": 0.86372 + }, + { + "x": -0.49601, + "y": -0.86832 + }, + { + "x": 0.99999, + "y": 0.0046 + }, + { + "id": "21,22,2,2", + "startCol": 21, + "endCol": 22, + "startRow": 2, + "endRow": 2 + }, + { + "id": 44, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1132 + }, + "angle": 0, + "vertices": { + "#": 1133 + }, + "position": { + "#": 1160 + }, + "force": { + "#": 1161 + }, + "torque": 0, + "positionImpulse": { + "#": 1162 + }, + "constraintImpulse": { + "#": 1163 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1164 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1165 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1166 + }, + "circleRadius": 46.27315, + "bounds": { + "#": 1168 + }, + "positionPrev": { + "#": 1171 + }, + "anglePrev": 0, + "axes": { + "#": 1172 + }, + "area": 6661.54248, + "mass": 6.66154, + "inverseMass": 0.15012, + "inertia": 28251.27242, + "inverseInertia": 0.00004, + "parent": { + "#": 1131 + }, + "sleepCounter": 0, + "region": { + "#": 1186 + } + }, + [ + { + "#": 1131 + } + ], + [ + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + }, + { + "#": 1152 + }, + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + }, + { + "#": 1156 + }, + { + "#": 1157 + }, + { + "#": 1158 + }, + { + "#": 1159 + } + ], + { + "x": 1189.96635, + "y": 151.13525, + "index": 0, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1187.29635, + "y": 161.96625, + "index": 1, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1182.11235, + "y": 171.84325, + "index": 2, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1174.71535, + "y": 180.19325, + "index": 3, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1165.53435, + "y": 186.53025, + "index": 4, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1155.10435, + "y": 190.48625, + "index": 5, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1144.03035, + "y": 191.83025, + "index": 6, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1132.95635, + "y": 190.48625, + "index": 7, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1122.52635, + "y": 186.53025, + "index": 8, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1113.34535, + "y": 180.19325, + "index": 9, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1105.94835, + "y": 171.84325, + "index": 10, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1100.76435, + "y": 161.96625, + "index": 11, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1098.09435, + "y": 151.13525, + "index": 12, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1098.09435, + "y": 139.97925, + "index": 13, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1100.76435, + "y": 129.14825, + "index": 14, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1105.94835, + "y": 119.27125, + "index": 15, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1113.34535, + "y": 110.92125, + "index": 16, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1122.52635, + "y": 104.58425, + "index": 17, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1132.95635, + "y": 100.62825, + "index": 18, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1144.03035, + "y": 99.28425, + "index": 19, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1155.10435, + "y": 100.62825, + "index": 20, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1165.53435, + "y": 104.58425, + "index": 21, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1174.71535, + "y": 110.92125, + "index": 22, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1182.11235, + "y": 119.27125, + "index": 23, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1187.29635, + "y": 129.14825, + "index": 24, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1189.96635, + "y": 139.97925, + "index": 25, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 1144.03035, + "y": 145.55725 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.54671, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1167 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1169 + }, + "max": { + "#": 1170 + } + }, + { + "x": 1098.09435, + "y": 96.37697 + }, + { + "x": 1189.96635, + "y": 191.83025 + }, + { + "x": 1144.03035, + "y": 148.46452 + }, + [ + { + "#": 1173 + }, + { + "#": 1174 + }, + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + }, + { + "#": 1179 + }, + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88545, + "y": -0.46473 + }, + { + "x": -0.74853, + "y": -0.6631 + }, + { + "x": -0.56805, + "y": -0.82299 + }, + { + "x": -0.35464, + "y": -0.935 + }, + { + "x": -0.12048, + "y": -0.99272 + }, + { + "x": 0.12048, + "y": -0.99272 + }, + { + "x": 0.35464, + "y": -0.935 + }, + { + "x": 0.56805, + "y": -0.82299 + }, + { + "x": 0.74853, + "y": -0.6631 + }, + { + "x": 0.88545, + "y": -0.46473 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "22,24,2,3", + "startCol": 22, + "endCol": 24, + "startRow": 2, + "endRow": 3 + }, + { + "id": 45, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1188 + }, + "angle": -0.06456, + "vertices": { + "#": 1189 + }, + "position": { + "#": 1194 + }, + "force": { + "#": 1195 + }, + "torque": 0, + "positionImpulse": { + "#": 1196 + }, + "constraintImpulse": { + "#": 1197 + }, + "totalContacts": 0, + "speed": 2.48993, + "angularSpeed": 0.01014, + "velocity": { + "#": 1198 + }, + "angularVelocity": -0.01014, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1199 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1200 + }, + "bounds": { + "#": 1202 + }, + "positionPrev": { + "#": 1205 + }, + "anglePrev": -0.05442, + "axes": { + "#": 1206 + }, + "area": 1051.31113, + "mass": 1.05131, + "inverseMass": 0.95119, + "inertia": 749.58313, + "inverseInertia": 0.00133, + "parent": { + "#": 1187 + }, + "sleepCounter": 0, + "region": { + "#": 1209 + } + }, + [ + { + "#": 1187 + } + ], + [ + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + } + ], + { + "x": 21.26544, + "y": 196.98589, + "index": 0, + "body": { + "#": 1187 + }, + "isInternal": false + }, + { + "x": 50.75223, + "y": 195.07952, + "index": 1, + "body": { + "#": 1187 + }, + "isInternal": false + }, + { + "x": 53.0477, + "y": 230.58474, + "index": 2, + "body": { + "#": 1187 + }, + "isInternal": false + }, + { + "x": 23.56091, + "y": 232.49111, + "index": 3, + "body": { + "#": 1187 + }, + "isInternal": false + }, + { + "x": 37.15657, + "y": 213.78531 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.12127, + "y": -0.36159 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.12464, + "y": -2.48681 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1201 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1203 + }, + "max": { + "#": 1204 + } + }, + { + "x": 21.1408, + "y": 192.5927 + }, + { + "x": 53.0477, + "y": 232.49111 + }, + { + "x": 37.28121, + "y": 216.27212 + }, + [ + { + "#": 1207 + }, + { + "#": 1208 + } + ], + { + "x": 0.06452, + "y": 0.99792 + }, + { + "x": -0.99792, + "y": 0.06452 + }, + { + "id": "0,1,4,4", + "startCol": 0, + "endCol": 1, + "startRow": 4, + "endRow": 4 + }, + { + "id": 46, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1211 + }, + "angle": -0.00304, + "vertices": { + "#": 1212 + }, + "position": { + "#": 1220 + }, + "force": { + "#": 1221 + }, + "torque": 0, + "positionImpulse": { + "#": 1222 + }, + "constraintImpulse": { + "#": 1223 + }, + "totalContacts": 0, + "speed": 2.79873, + "angularSpeed": 0.00095, + "velocity": { + "#": 1224 + }, + "angularVelocity": -0.00095, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1225 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1226 + }, + "bounds": { + "#": 1228 + }, + "positionPrev": { + "#": 1231 + }, + "anglePrev": -0.00209, + "axes": { + "#": 1232 + }, + "area": 6245.524, + "mass": 6.24552, + "inverseMass": 0.16011, + "inertia": 24931.28629, + "inverseInertia": 0.00004, + "parent": { + "#": 1210 + }, + "sleepCounter": 0, + "region": { + "#": 1240 + } + }, + [ + { + "#": 1210 + } + ], + [ + { + "#": 1213 + }, + { + "#": 1214 + }, + { + "#": 1215 + }, + { + "#": 1216 + }, + { + "#": 1217 + }, + { + "#": 1218 + }, + { + "#": 1219 + } + ], + { + "x": 138.45977, + "y": 263.02566, + "index": 0, + "body": { + "#": 1210 + }, + "isInternal": false + }, + { + "x": 106.12644, + "y": 288.973, + "index": 1, + "body": { + "#": 1210 + }, + "isInternal": false + }, + { + "x": 65.6806, + "y": 279.86982, + "index": 2, + "body": { + "#": 1210 + }, + "isInternal": false + }, + { + "x": 47.58022, + "y": 242.57363, + "index": 3, + "body": { + "#": 1210 + }, + "isInternal": false + }, + { + "x": 65.45367, + "y": 205.16817, + "index": 4, + "body": { + "#": 1210 + }, + "isInternal": false + }, + { + "x": 105.84346, + "y": 195.81943, + "index": 5, + "body": { + "#": 1210 + }, + "isInternal": false + }, + { + "x": 138.33384, + "y": 221.56985, + "index": 6, + "body": { + "#": 1210 + }, + "isInternal": false + }, + { + "x": 95.35404, + "y": 242.42851 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.09978, + "y": -2.79695 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1227 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1229 + }, + "max": { + "#": 1230 + } + }, + { + "x": 47.58022, + "y": 195.81943 + }, + { + "x": 138.45977, + "y": 288.973 + }, + { + "x": 95.25426, + "y": 245.22546 + }, + [ + { + "#": 1233 + }, + { + "#": 1234 + }, + { + "#": 1235 + }, + { + "#": 1236 + }, + { + "#": 1237 + }, + { + "#": 1238 + }, + { + "#": 1239 + } + ], + { + "x": 0.62588, + "y": 0.77992 + }, + { + "x": -0.21958, + "y": 0.97559 + }, + { + "x": -0.89965, + "y": 0.43661 + }, + { + "x": -0.90229, + "y": -0.43114 + }, + { + "x": -0.2255, + "y": -0.97424 + }, + { + "x": 0.62113, + "y": -0.78371 + }, + { + "x": 1, + "y": -0.00304 + }, + { + "id": "0,2,4,6", + "startCol": 0, + "endCol": 2, + "startRow": 4, + "endRow": 6 + }, + { + "id": 47, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1242 + }, + "angle": -0.00001, + "vertices": { + "#": 1243 + }, + "position": { + "#": 1247 + }, + "force": { + "#": 1248 + }, + "torque": 0, + "positionImpulse": { + "#": 1249 + }, + "constraintImpulse": { + "#": 1250 + }, + "totalContacts": 0, + "speed": 2.91593, + "angularSpeed": 0.00003, + "velocity": { + "#": 1251 + }, + "angularVelocity": -0.00003, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1252 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1253 + }, + "bounds": { + "#": 1255 + }, + "positionPrev": { + "#": 1258 + }, + "anglePrev": 0.00002, + "axes": { + "#": 1259 + }, + "area": 1100.44355, + "mass": 1.10044, + "inverseMass": 0.90872, + "inertia": 932.20976, + "inverseInertia": 0.00107, + "parent": { + "#": 1241 + }, + "sleepCounter": 0, + "region": { + "#": 1263 + } + }, + [ + { + "#": 1241 + } + ], + [ + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + } + ], + { + "x": 172.58721, + "y": 238.57407, + "index": 0, + "body": { + "#": 1241 + }, + "isInternal": false + }, + { + "x": 128.92889, + "y": 213.36862, + "index": 1, + "body": { + "#": 1241 + }, + "isInternal": false + }, + { + "x": 172.58657, + "y": 188.16207, + "index": 2, + "body": { + "#": 1241 + }, + "isInternal": false + }, + { + "x": 158.03422, + "y": 213.36825 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.07258, + "y": -0.18534 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00534, + "y": -2.91593 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1254 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1256 + }, + "max": { + "#": 1257 + } + }, + { + "x": 128.92889, + "y": 185.24614 + }, + { + "x": 172.59255, + "y": 238.57407 + }, + { + "x": 158.02888, + "y": 216.28418 + }, + [ + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + } + ], + { + "x": -0.49999, + "y": 0.86603 + }, + { + "x": -0.50001, + "y": -0.86602 + }, + { + "x": 1, + "y": -0.00001 + }, + { + "id": "2,3,3,4", + "startCol": 2, + "endCol": 3, + "startRow": 3, + "endRow": 4 + }, + { + "id": 48, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1265 + }, + "angle": -0.00035, + "vertices": { + "#": 1266 + }, + "position": { + "#": 1274 + }, + "force": { + "#": 1275 + }, + "torque": 0, + "positionImpulse": { + "#": 1276 + }, + "constraintImpulse": { + "#": 1277 + }, + "totalContacts": 0, + "speed": 2.90462, + "angularSpeed": 0.00007, + "velocity": { + "#": 1278 + }, + "angularVelocity": -0.00007, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1279 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1280 + }, + "bounds": { + "#": 1282 + }, + "positionPrev": { + "#": 1285 + }, + "anglePrev": -0.00028, + "axes": { + "#": 1286 + }, + "area": 4695.38663, + "mass": 4.69539, + "inverseMass": 0.21298, + "inertia": 14091.25388, + "inverseInertia": 0.00007, + "parent": { + "#": 1264 + }, + "sleepCounter": 0, + "region": { + "#": 1294 + } + }, + [ + { + "#": 1264 + } + ], + [ + { + "#": 1267 + }, + { + "#": 1268 + }, + { + "#": 1269 + }, + { + "#": 1270 + }, + { + "#": 1271 + }, + { + "#": 1272 + }, + { + "#": 1273 + } + ], + { + "x": 252.02193, + "y": 254.1713, + "index": 0, + "body": { + "#": 1264 + }, + "isInternal": false + }, + { + "x": 223.92678, + "y": 276.59314, + "index": 1, + "body": { + "#": 1264 + }, + "isInternal": false + }, + { + "x": 188.87898, + "y": 268.60642, + "index": 2, + "body": { + "#": 1264 + }, + "isInternal": false + }, + { + "x": 173.27164, + "y": 236.22588, + "index": 3, + "body": { + "#": 1264 + }, + "isInternal": false + }, + { + "x": 188.8563, + "y": 203.83442, + "index": 4, + "body": { + "#": 1264 + }, + "isInternal": false + }, + { + "x": 223.8985, + "y": 195.82315, + "index": 5, + "body": { + "#": 1264 + }, + "isInternal": false + }, + { + "x": 252.00935, + "y": 218.22531, + "index": 6, + "body": { + "#": 1264 + }, + "isInternal": false + }, + { + "x": 214.69477, + "y": 236.21138 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00357, + "y": -2.90462 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1281 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1283 + }, + "max": { + "#": 1284 + } + }, + { + "x": 173.27164, + "y": 195.82315 + }, + { + "x": 252.02193, + "y": 276.59314 + }, + { + "x": 214.6912, + "y": 239.11599 + }, + [ + { + "#": 1287 + }, + { + "#": 1288 + }, + { + "#": 1289 + }, + { + "#": 1290 + }, + { + "#": 1291 + }, + { + "#": 1292 + }, + { + "#": 1293 + } + ], + { + "x": 0.62377, + "y": 0.7816 + }, + { + "x": -0.22219, + "y": 0.975 + }, + { + "x": -0.90082, + "y": 0.43419 + }, + { + "x": -0.90112, + "y": -0.43356 + }, + { + "x": -0.22287, + "y": -0.97485 + }, + { + "x": 0.62323, + "y": -0.78204 + }, + { + "x": 1, + "y": -0.00035 + }, + { + "id": "3,5,4,5", + "startCol": 3, + "endCol": 5, + "startRow": 4, + "endRow": 5 + }, + { + "id": 49, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1296 + }, + "angle": -0.00018, + "vertices": { + "#": 1297 + }, + "position": { + "#": 1302 + }, + "force": { + "#": 1303 + }, + "torque": 0, + "positionImpulse": { + "#": 1304 + }, + "constraintImpulse": { + "#": 1305 + }, + "totalContacts": 0, + "speed": 2.90552, + "angularSpeed": 0.00003, + "velocity": { + "#": 1306 + }, + "angularVelocity": -0.00003, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1307 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1308 + }, + "bounds": { + "#": 1310 + }, + "positionPrev": { + "#": 1313 + }, + "anglePrev": -0.00015, + "axes": { + "#": 1314 + }, + "area": 2533.6813, + "mass": 2.53368, + "inverseMass": 0.39468, + "inertia": 9087.28705, + "inverseInertia": 0.00011, + "parent": { + "#": 1295 + }, + "sleepCounter": 0, + "region": { + "#": 1317 + } + }, + [ + { + "#": 1295 + } + ], + [ + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + }, + { + "#": 1301 + } + ], + { + "x": 252.56115, + "y": 195.83421, + "index": 0, + "body": { + "#": 1295 + }, + "isInternal": false + }, + { + "x": 353.18821, + "y": 195.81579, + "index": 1, + "body": { + "#": 1295 + }, + "isInternal": false + }, + { + "x": 353.19282, + "y": 220.99471, + "index": 2, + "body": { + "#": 1295 + }, + "isInternal": false + }, + { + "x": 252.56576, + "y": 221.01314, + "index": 3, + "body": { + "#": 1295 + }, + "isInternal": false + }, + { + "x": 302.87699, + "y": 208.41446 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00165, + "y": -2.90552 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1309 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1311 + }, + "max": { + "#": 1312 + } + }, + { + "x": 252.56115, + "y": 195.81579 + }, + { + "x": 353.19282, + "y": 221.01314 + }, + { + "x": 302.87534, + "y": 211.31999 + }, + [ + { + "#": 1315 + }, + { + "#": 1316 + } + ], + { + "x": 0.00018, + "y": 1 + }, + { + "x": -1, + "y": 0.00018 + }, + { + "id": "5,7,4,4", + "startCol": 5, + "endCol": 7, + "startRow": 4, + "endRow": 4 + }, + { + "id": 50, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1319 + }, + "angle": 0.00007, + "vertices": { + "#": 1320 + }, + "position": { + "#": 1325 + }, + "force": { + "#": 1326 + }, + "torque": 0, + "positionImpulse": { + "#": 1327 + }, + "constraintImpulse": { + "#": 1328 + }, + "totalContacts": 0, + "speed": 2.90413, + "angularSpeed": 0.00004, + "velocity": { + "#": 1329 + }, + "angularVelocity": 0.00004, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1330 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1331 + }, + "bounds": { + "#": 1333 + }, + "positionPrev": { + "#": 1336 + }, + "anglePrev": 0.00003, + "axes": { + "#": 1337 + }, + "area": 2082.10472, + "mass": 2.0821, + "inverseMass": 0.48028, + "inertia": 2917.865, + "inverseInertia": 0.00034, + "parent": { + "#": 1318 + }, + "sleepCounter": 0, + "region": { + "#": 1340 + } + }, + [ + { + "#": 1318 + } + ], + [ + { + "#": 1321 + }, + { + "#": 1322 + }, + { + "#": 1323 + }, + { + "#": 1324 + } + ], + { + "x": 355.75475, + "y": 195.81919, + "index": 0, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 398.33217, + "y": 195.82226, + "index": 1, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 398.32864, + "y": 244.72388, + "index": 2, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 355.75122, + "y": 244.72081, + "index": 3, + "body": { + "#": 1318 + }, + "isInternal": false + }, + { + "x": 377.0417, + "y": 220.27154 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00094, + "y": -2.90413 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1332 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1334 + }, + "max": { + "#": 1335 + } + }, + { + "x": 355.75122, + "y": 195.81919 + }, + { + "x": 398.33217, + "y": 244.72388 + }, + { + "x": 377.04264, + "y": 223.17567 + }, + [ + { + "#": 1338 + }, + { + "#": 1339 + } + ], + { + "x": -0.00007, + "y": 1 + }, + { + "x": -1, + "y": -0.00007 + }, + { + "id": "7,8,4,5", + "startCol": 7, + "endCol": 8, + "startRow": 4, + "endRow": 5 + }, + { + "id": 51, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1342 + }, + "angle": 0.00003, + "vertices": { + "#": 1343 + }, + "position": { + "#": 1348 + }, + "force": { + "#": 1349 + }, + "torque": 0, + "positionImpulse": { + "#": 1350 + }, + "constraintImpulse": { + "#": 1351 + }, + "totalContacts": 0, + "speed": 2.9099, + "angularSpeed": 0.00003, + "velocity": { + "#": 1352 + }, + "angularVelocity": 0.00003, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1353 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1354 + }, + "bounds": { + "#": 1356 + }, + "positionPrev": { + "#": 1359 + }, + "anglePrev": 0, + "axes": { + "#": 1360 + }, + "area": 2570.18089, + "mass": 2.57018, + "inverseMass": 0.38908, + "inertia": 7426.99294, + "inverseInertia": 0.00013, + "parent": { + "#": 1341 + }, + "sleepCounter": 0, + "region": { + "#": 1363 + } + }, + [ + { + "#": 1341 + } + ], + [ + { + "#": 1344 + }, + { + "#": 1345 + }, + { + "#": 1346 + }, + { + "#": 1347 + } + ], + { + "x": 398.95227, + "y": 188.66306, + "index": 0, + "body": { + "#": 1341 + }, + "isInternal": false + }, + { + "x": 487.41026, + "y": 188.66549, + "index": 1, + "body": { + "#": 1341 + }, + "isInternal": false + }, + { + "x": 487.40946, + "y": 217.72088, + "index": 2, + "body": { + "#": 1341 + }, + "isInternal": false + }, + { + "x": 398.95147, + "y": 217.71845, + "index": 3, + "body": { + "#": 1341 + }, + "isInternal": false + }, + { + "x": 443.18087, + "y": 203.19197 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.14227, + "y": -0.08167 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00112, + "y": -2.90991 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1355 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1357 + }, + "max": { + "#": 1358 + } + }, + { + "x": 398.95035, + "y": 185.75316 + }, + { + "x": 487.41026, + "y": 217.72088 + }, + { + "x": 443.18199, + "y": 206.10188 + }, + [ + { + "#": 1361 + }, + { + "#": 1362 + } + ], + { + "x": -0.00003, + "y": 1 + }, + { + "x": -1, + "y": -0.00003 + }, + { + "id": "8,10,3,4", + "startCol": 8, + "endCol": 10, + "startRow": 3, + "endRow": 4 + }, + { + "id": 52, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1365 + }, + "angle": -0.00004, + "vertices": { + "#": 1366 + }, + "position": { + "#": 1370 + }, + "force": { + "#": 1371 + }, + "torque": 0, + "positionImpulse": { + "#": 1372 + }, + "constraintImpulse": { + "#": 1373 + }, + "totalContacts": 0, + "speed": 2.90565, + "angularSpeed": 0, + "velocity": { + "#": 1374 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1375 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1376 + }, + "bounds": { + "#": 1378 + }, + "positionPrev": { + "#": 1381 + }, + "anglePrev": -0.00004, + "axes": { + "#": 1382 + }, + "area": 1460.27851, + "mass": 1.46028, + "inverseMass": 0.6848, + "inertia": 1641.53255, + "inverseInertia": 0.00061, + "parent": { + "#": 1364 + }, + "sleepCounter": 0, + "region": { + "#": 1386 + } + }, + [ + { + "#": 1364 + } + ], + [ + { + "#": 1367 + }, + { + "#": 1368 + }, + { + "#": 1369 + } + ], + { + "x": 518.31134, + "y": 257.89451, + "index": 0, + "body": { + "#": 1364 + }, + "isInternal": false + }, + { + "x": 468.01815, + "y": 228.86057, + "index": 1, + "body": { + "#": 1364 + }, + "isInternal": false + }, + { + "x": 518.30896, + "y": 199.82251, + "index": 2, + "body": { + "#": 1364 + }, + "isInternal": false + }, + { + "x": 501.54615, + "y": 228.85919 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00128, + "y": -0.00221 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00003, + "y": -2.90564 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1377 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1379 + }, + "max": { + "#": 1380 + } + }, + { + "x": 468.01815, + "y": 196.91686 + }, + { + "x": 518.31138, + "y": 257.89451 + }, + { + "x": 501.54611, + "y": 231.76484 + }, + [ + { + "#": 1383 + }, + { + "#": 1384 + }, + { + "#": 1385 + } + ], + { + "x": -0.49996, + "y": 0.86605 + }, + { + "x": -0.50003, + "y": -0.86601 + }, + { + "x": 1, + "y": -0.00004 + }, + { + "id": "9,10,4,5", + "startCol": 9, + "endCol": 10, + "startRow": 4, + "endRow": 5 + }, + { + "id": 53, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1388 + }, + "angle": 0.00003, + "vertices": { + "#": 1389 + }, + "position": { + "#": 1397 + }, + "force": { + "#": 1398 + }, + "torque": 0, + "positionImpulse": { + "#": 1399 + }, + "constraintImpulse": { + "#": 1400 + }, + "totalContacts": 0, + "speed": 2.90703, + "angularSpeed": 0.00001, + "velocity": { + "#": 1401 + }, + "angularVelocity": 0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1402 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1403 + }, + "bounds": { + "#": 1405 + }, + "positionPrev": { + "#": 1408 + }, + "anglePrev": 0.00002, + "axes": { + "#": 1409 + }, + "area": 4167.43305, + "mass": 4.16743, + "inverseMass": 0.23996, + "inertia": 11100.54206, + "inverseInertia": 0.00009, + "parent": { + "#": 1387 + }, + "sleepCounter": 0, + "region": { + "#": 1417 + } + }, + [ + { + "#": 1387 + } + ], + [ + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + }, + { + "#": 1393 + }, + { + "#": 1394 + }, + { + "#": 1395 + }, + { + "#": 1396 + } + ], + { + "x": 592.99914, + "y": 243.33991, + "index": 0, + "body": { + "#": 1387 + }, + "isInternal": false + }, + { + "x": 566.52246, + "y": 264.45406, + "index": 1, + "body": { + "#": 1387 + }, + "isInternal": false + }, + { + "x": 533.5067, + "y": 256.917, + "index": 2, + "body": { + "#": 1387 + }, + "isInternal": false + }, + { + "x": 518.81468, + "y": 226.40552, + "index": 3, + "body": { + "#": 1387 + }, + "isInternal": false + }, + { + "x": 533.50866, + "y": 195.895, + "index": 4, + "body": { + "#": 1387 + }, + "isInternal": false + }, + { + "x": 566.5249, + "y": 188.36006, + "index": 5, + "body": { + "#": 1387 + }, + "isInternal": false + }, + { + "x": 593.00022, + "y": 209.47591, + "index": 6, + "body": { + "#": 1387 + }, + "isInternal": false + }, + { + "x": 557.83947, + "y": 226.40678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.04007, + "y": -0.39555 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00009, + "y": -2.90703 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1404 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1406 + }, + "max": { + "#": 1407 + } + }, + { + "x": 518.81459, + "y": 185.45302 + }, + { + "x": 593.00022, + "y": 264.45406 + }, + { + "x": 557.83956, + "y": 229.31381 + }, + [ + { + "#": 1410 + }, + { + "#": 1411 + }, + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + }, + { + "#": 1415 + }, + { + "#": 1416 + } + ], + { + "x": 0.62348, + "y": 0.78184 + }, + { + "x": -0.22256, + "y": 0.97492 + }, + { + "x": -0.90099, + "y": 0.43385 + }, + { + "x": -0.90096, + "y": -0.4339 + }, + { + "x": -0.2225, + "y": -0.97493 + }, + { + "x": 0.62353, + "y": -0.7818 + }, + { + "x": 1, + "y": 0.00003 + }, + { + "id": "10,12,3,5", + "startCol": 10, + "endCol": 12, + "startRow": 3, + "endRow": 5 + }, + { + "id": 54, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1419 + }, + "angle": -0.00517, + "vertices": { + "#": 1420 + }, + "position": { + "#": 1425 + }, + "force": { + "#": 1426 + }, + "torque": 0, + "positionImpulse": { + "#": 1427 + }, + "constraintImpulse": { + "#": 1428 + }, + "totalContacts": 0, + "speed": 2.90124, + "angularSpeed": 0.00067, + "velocity": { + "#": 1429 + }, + "angularVelocity": -0.00067, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1430 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1431 + }, + "bounds": { + "#": 1433 + }, + "positionPrev": { + "#": 1436 + }, + "anglePrev": -0.0045, + "axes": { + "#": 1437 + }, + "area": 1687.76618, + "mass": 1.68777, + "inverseMass": 0.5925, + "inertia": 1980.3012, + "inverseInertia": 0.0005, + "parent": { + "#": 1418 + }, + "sleepCounter": 0, + "region": { + "#": 1440 + } + }, + [ + { + "#": 1418 + } + ], + [ + { + "#": 1421 + }, + { + "#": 1422 + }, + { + "#": 1423 + }, + { + "#": 1424 + } + ], + { + "x": 600.79032, + "y": 145.50841, + "index": 0, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 636.30013, + "y": 145.32487, + "index": 1, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 636.5458, + "y": 192.85317, + "index": 2, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 601.03599, + "y": 193.03671, + "index": 3, + "body": { + "#": 1418 + }, + "isInternal": false + }, + { + "x": 618.66806, + "y": 169.18079 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.05014, + "y": -1.56446 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02255, + "y": -2.90115 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1432 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1434 + }, + "max": { + "#": 1435 + } + }, + { + "x": 600.79032, + "y": 142.42372 + }, + { + "x": 636.56835, + "y": 193.03671 + }, + { + "x": 618.64551, + "y": 172.08194 + }, + [ + { + "#": 1438 + }, + { + "#": 1439 + } + ], + { + "x": 0.00517, + "y": 0.99999 + }, + { + "x": -0.99999, + "y": 0.00517 + }, + { + "id": "12,13,3,4", + "startCol": 12, + "endCol": 13, + "startRow": 3, + "endRow": 4 + }, + { + "id": 55, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1442 + }, + "angle": 0.00015, + "vertices": { + "#": 1443 + }, + "position": { + "#": 1448 + }, + "force": { + "#": 1449 + }, + "torque": 0, + "positionImpulse": { + "#": 1450 + }, + "constraintImpulse": { + "#": 1451 + }, + "totalContacts": 0, + "speed": 2.90129, + "angularSpeed": 0.00029, + "velocity": { + "#": 1452 + }, + "angularVelocity": -0.00059, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1453 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1454 + }, + "bounds": { + "#": 1456 + }, + "positionPrev": { + "#": 1459 + }, + "anglePrev": 0.00073, + "axes": { + "#": 1460 + }, + "area": 888.8746, + "mass": 0.88887, + "inverseMass": 1.12502, + "inertia": 526.73203, + "inverseInertia": 0.0019, + "parent": { + "#": 1441 + }, + "sleepCounter": 0, + "region": { + "#": 1463 + } + }, + [ + { + "#": 1441 + } + ], + [ + { + "#": 1444 + }, + { + "#": 1445 + }, + { + "#": 1446 + }, + { + "#": 1447 + } + ], + { + "x": 540.55403, + "y": 112.62972, + "index": 0, + "body": { + "#": 1441 + }, + "isInternal": false + }, + { + "x": 510.74003, + "y": 112.62537, + "index": 1, + "body": { + "#": 1441 + }, + "isInternal": false + }, + { + "x": 510.74438, + "y": 82.81137, + "index": 2, + "body": { + "#": 1441 + }, + "isInternal": false + }, + { + "x": 540.55838, + "y": 82.81572, + "index": 3, + "body": { + "#": 1441 + }, + "isInternal": false + }, + { + "x": 525.6492, + "y": 97.72055 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1.0105, + "y": -6.80466 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01958, + "y": -2.90962 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1455 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1457 + }, + "max": { + "#": 1458 + } + }, + { + "x": 510.73938, + "y": 79.91008 + }, + { + "x": 540.55838, + "y": 112.62972 + }, + { + "x": 525.62844, + "y": 100.6316 + }, + [ + { + "#": 1461 + }, + { + "#": 1462 + } + ], + { + "x": 0.00015, + "y": -1 + }, + { + "x": 1, + "y": 0.00015 + }, + { + "id": "10,11,1,2", + "startCol": 10, + "endCol": 11, + "startRow": 1, + "endRow": 2 + }, + { + "id": 56, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1465 + }, + "angle": -0.00013, + "vertices": { + "#": 1466 + }, + "position": { + "#": 1471 + }, + "force": { + "#": 1472 + }, + "torque": 0, + "positionImpulse": { + "#": 1473 + }, + "constraintImpulse": { + "#": 1474 + }, + "totalContacts": 0, + "speed": 2.90694, + "angularSpeed": 0.00014, + "velocity": { + "#": 1475 + }, + "angularVelocity": -0.00014, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1476 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1477 + }, + "bounds": { + "#": 1479 + }, + "positionPrev": { + "#": 1482 + }, + "anglePrev": 0.00001, + "axes": { + "#": 1483 + }, + "area": 1624.12153, + "mass": 1.62412, + "inverseMass": 0.61572, + "inertia": 1766.68126, + "inverseInertia": 0.00057, + "parent": { + "#": 1464 + }, + "sleepCounter": 0, + "region": { + "#": 1486 + } + }, + [ + { + "#": 1464 + } + ], + [ + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + }, + { + "#": 1470 + } + ], + { + "x": 662.20692, + "y": 118.1603, + "index": 0, + "body": { + "#": 1464 + }, + "isInternal": false + }, + { + "x": 704.49614, + "y": 118.15466, + "index": 1, + "body": { + "#": 1464 + }, + "isInternal": false + }, + { + "x": 704.50126, + "y": 156.55976, + "index": 2, + "body": { + "#": 1464 + }, + "isInternal": false + }, + { + "x": 662.21204, + "y": 156.56539, + "index": 3, + "body": { + "#": 1464 + }, + "isInternal": false + }, + { + "x": 683.35409, + "y": 137.36003 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00009, + "y": -0.30637 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.0084, + "y": -2.90693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1478 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1480 + }, + "max": { + "#": 1481 + } + }, + { + "x": 662.19851, + "y": 115.24773 + }, + { + "x": 704.50126, + "y": 156.56539 + }, + { + "x": 683.36249, + "y": 140.26696 + }, + [ + { + "#": 1484 + }, + { + "#": 1485 + } + ], + { + "x": 0.00013, + "y": 1 + }, + { + "x": -1, + "y": 0.00013 + }, + { + "id": "13,14,2,3", + "startCol": 13, + "endCol": 14, + "startRow": 2, + "endRow": 3 + }, + { + "id": 57, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1488 + }, + "angle": 0.00038, + "vertices": { + "#": 1489 + }, + "position": { + "#": 1494 + }, + "force": { + "#": 1495 + }, + "torque": 0, + "positionImpulse": { + "#": 1496 + }, + "constraintImpulse": { + "#": 1497 + }, + "totalContacts": 0, + "speed": 2.90766, + "angularSpeed": 0.00004, + "velocity": { + "#": 1498 + }, + "angularVelocity": 0.00004, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1499 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1500 + }, + "bounds": { + "#": 1502 + }, + "positionPrev": { + "#": 1505 + }, + "anglePrev": 0.00034, + "axes": { + "#": 1506 + }, + "area": 925.43359, + "mass": 0.92543, + "inverseMass": 1.08057, + "inertia": 658.9066, + "inverseInertia": 0.00152, + "parent": { + "#": 1487 + }, + "sleepCounter": 0, + "region": { + "#": 1509 + } + }, + [ + { + "#": 1487 + } + ], + [ + { + "#": 1490 + }, + { + "#": 1491 + }, + { + "#": 1492 + }, + { + "#": 1493 + } + ], + { + "x": 704.51883, + "y": 195.80299, + "index": 0, + "body": { + "#": 1487 + }, + "isInternal": false + }, + { + "x": 744.53246, + "y": 195.81828, + "index": 1, + "body": { + "#": 1487 + }, + "isInternal": false + }, + { + "x": 744.52363, + "y": 218.94623, + "index": 2, + "body": { + "#": 1487 + }, + "isInternal": false + }, + { + "x": 704.51, + "y": 218.93095, + "index": 3, + "body": { + "#": 1487 + }, + "isInternal": false + }, + { + "x": 724.52123, + "y": 207.37461 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00015, + "y": -2.90766 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1501 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1503 + }, + "max": { + "#": 1504 + } + }, + { + "x": 704.51, + "y": 195.80299 + }, + { + "x": 744.53246, + "y": 218.94623 + }, + { + "x": 724.52109, + "y": 210.28227 + }, + [ + { + "#": 1507 + }, + { + "#": 1508 + } + ], + { + "x": -0.00038, + "y": 1 + }, + { + "x": -1, + "y": -0.00038 + }, + { + "id": "14,15,4,4", + "startCol": 14, + "endCol": 15, + "startRow": 4, + "endRow": 4 + }, + { + "id": 58, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1511 + }, + "angle": 0.0029, + "vertices": { + "#": 1512 + }, + "position": { + "#": 1539 + }, + "force": { + "#": 1540 + }, + "torque": 0, + "positionImpulse": { + "#": 1541 + }, + "constraintImpulse": { + "#": 1542 + }, + "totalContacts": 0, + "speed": 2.90215, + "angularSpeed": 0.00012, + "velocity": { + "#": 1543 + }, + "angularVelocity": 0.00012, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1544 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1545 + }, + "circleRadius": 43.65625, + "bounds": { + "#": 1547 + }, + "positionPrev": { + "#": 1550 + }, + "anglePrev": 0.00278, + "axes": { + "#": 1551 + }, + "area": 5929.34751, + "mass": 5.92935, + "inverseMass": 0.16865, + "inertia": 22382.17147, + "inverseInertia": 0.00004, + "parent": { + "#": 1510 + }, + "sleepCounter": 0, + "region": { + "#": 1565 + } + }, + [ + { + "#": 1510 + } + ], + [ + { + "#": 1513 + }, + { + "#": 1514 + }, + { + "#": 1515 + }, + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + }, + { + "#": 1520 + }, + { + "#": 1521 + }, + { + "#": 1522 + }, + { + "#": 1523 + }, + { + "#": 1524 + }, + { + "#": 1525 + }, + { + "#": 1526 + }, + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + }, + { + "#": 1533 + }, + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + }, + { + "#": 1537 + }, + { + "#": 1538 + } + ], + { + "x": 680.26986, + "y": 256.91687, + "index": 0, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 677.72119, + "y": 267.12851, + "index": 1, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 672.80314, + "y": 276.43326, + "index": 2, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 665.80129, + "y": 284.28996, + "index": 3, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 657.12295, + "y": 290.24377, + "index": 4, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 647.27215, + "y": 293.94717, + "index": 5, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 636.82051, + "y": 295.18482, + "index": 6, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 626.37624, + "y": 293.88647, + "index": 7, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 616.54712, + "y": 290.1259, + "index": 8, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 607.90353, + "y": 284.12177, + "index": 9, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 600.94744, + "y": 276.22453, + "index": 10, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 596.08353, + "y": 266.89136, + "index": 11, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 593.59423, + "y": 256.66509, + "index": 12, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 593.6248, + "y": 246.14113, + "index": 13, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 596.17347, + "y": 235.92949, + "index": 14, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 601.09152, + "y": 226.62474, + "index": 15, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 608.09338, + "y": 218.76804, + "index": 16, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 616.77171, + "y": 212.81423, + "index": 17, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 626.62251, + "y": 209.11083, + "index": 18, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 637.07415, + "y": 207.87318, + "index": 19, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 647.51842, + "y": 209.17153, + "index": 20, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 657.34754, + "y": 212.9321, + "index": 21, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 665.99113, + "y": 218.93623, + "index": 22, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 672.94722, + "y": 226.83347, + "index": 23, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 677.81113, + "y": 236.16664, + "index": 24, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 680.30043, + "y": 246.39291, + "index": 25, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 636.94733, + "y": 251.529 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.20634, + "y": -0.92336 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00457, + "y": -2.90215 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1546 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1548 + }, + "max": { + "#": 1549 + } + }, + { + "x": 593.59423, + "y": 204.97104 + }, + { + "x": 680.30501, + "y": 295.18482 + }, + { + "x": 636.94276, + "y": 254.43115 + }, + [ + { + "#": 1552 + }, + { + "#": 1553 + }, + { + "#": 1554 + }, + { + "#": 1555 + }, + { + "#": 1556 + }, + { + "#": 1557 + }, + { + "#": 1558 + }, + { + "#": 1559 + }, + { + "#": 1560 + }, + { + "#": 1561 + }, + { + "#": 1562 + }, + { + "#": 1563 + }, + { + "#": 1564 + } + ], + { + "x": -0.97024, + "y": -0.24216 + }, + { + "x": -0.8841, + "y": -0.46729 + }, + { + "x": -0.74655, + "y": -0.66533 + }, + { + "x": -0.56572, + "y": -0.8246 + }, + { + "x": -0.3519, + "y": -0.93604 + }, + { + "x": -0.11759, + "y": -0.99306 + }, + { + "x": 0.12336, + "y": -0.99236 + }, + { + "x": 0.35733, + "y": -0.93398 + }, + { + "x": 0.5705, + "y": -0.8213 + }, + { + "x": 0.75041, + "y": -0.66098 + }, + { + "x": 0.8868, + "y": -0.46215 + }, + { + "x": 0.97163, + "y": -0.23652 + }, + { + "x": 1, + "y": 0.0029 + }, + { + "id": "12,14,4,6", + "startCol": 12, + "endCol": 14, + "startRow": 4, + "endRow": 6 + }, + { + "id": 59, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1567 + }, + "angle": 0, + "vertices": { + "#": 1568 + }, + "position": { + "#": 1573 + }, + "force": { + "#": 1574 + }, + "torque": 0, + "positionImpulse": { + "#": 1575 + }, + "constraintImpulse": { + "#": 1576 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1577 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1578 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1579 + }, + "bounds": { + "#": 1581 + }, + "positionPrev": { + "#": 1584 + }, + "anglePrev": 0, + "axes": { + "#": 1585 + }, + "area": 2550.1664, + "mass": 2.55017, + "inverseMass": 0.39213, + "inertia": 10939.16513, + "inverseInertia": 0.00009, + "parent": { + "#": 1566 + }, + "sleepCounter": 0, + "region": { + "#": 1588 + } + }, + [ + { + "#": 1566 + } + ], + [ + { + "#": 1569 + }, + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + } + ], + { + "x": 831.20268, + "y": 195.81425, + "index": 0, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 942.29647, + "y": 195.81425, + "index": 1, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 942.29647, + "y": 218.76932, + "index": 2, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 831.20268, + "y": 218.76932, + "index": 3, + "body": { + "#": 1566 + }, + "isInternal": false + }, + { + "x": 886.74957, + "y": 207.29178 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1580 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1582 + }, + "max": { + "#": 1583 + } + }, + { + "x": 831.20268, + "y": 195.81425 + }, + { + "x": 942.29647, + "y": 218.76932 + }, + { + "x": 886.74957, + "y": 210.19905 + }, + [ + { + "#": 1586 + }, + { + "#": 1587 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "17,19,4,4", + "startCol": 17, + "endCol": 19, + "startRow": 4, + "endRow": 4 + }, + { + "id": 60, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1590 + }, + "angle": -0.00042, + "vertices": { + "#": 1591 + }, + "position": { + "#": 1618 + }, + "force": { + "#": 1619 + }, + "torque": 0, + "positionImpulse": { + "#": 1620 + }, + "constraintImpulse": { + "#": 1621 + }, + "totalContacts": 0, + "speed": 2.91529, + "angularSpeed": 0.00006, + "velocity": { + "#": 1622 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1623 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1624 + }, + "circleRadius": 40.78241, + "bounds": { + "#": 1626 + }, + "positionPrev": { + "#": 1629 + }, + "anglePrev": -0.00031, + "axes": { + "#": 1630 + }, + "area": 5174.38131, + "mass": 5.17438, + "inverseMass": 0.19326, + "inertia": 17045.32427, + "inverseInertia": 0.00006, + "parent": { + "#": 1589 + }, + "sleepCounter": 0, + "region": { + "#": 1644 + } + }, + [ + { + "#": 1589 + } + ], + [ + { + "#": 1592 + }, + { + "#": 1593 + }, + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + }, + { + "#": 1597 + }, + { + "#": 1598 + }, + { + "#": 1599 + }, + { + "#": 1600 + }, + { + "#": 1601 + }, + { + "#": 1602 + }, + { + "#": 1603 + }, + { + "#": 1604 + }, + { + "#": 1605 + }, + { + "#": 1606 + }, + { + "#": 1607 + }, + { + "#": 1608 + }, + { + "#": 1609 + }, + { + "#": 1610 + }, + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + }, + { + "#": 1614 + }, + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + } + ], + { + "x": 1027.82111, + "y": 183.84984, + "index": 0, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 1025.47208, + "y": 193.39681, + "index": 1, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 1020.90671, + "y": 202.10372, + "index": 2, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 1014.39077, + "y": 209.46543, + "index": 3, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 1006.3021, + "y": 215.0538, + "index": 4, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 997.11055, + "y": 218.54362, + "index": 5, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 987.35104, + "y": 219.73269, + "index": 6, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 977.59055, + "y": 218.55175, + "index": 7, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 968.3961, + "y": 215.06958, + "index": 8, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 960.30278, + "y": 209.48795, + "index": 9, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 953.78071, + "y": 202.13166, + "index": 10, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 949.20809, + "y": 193.42856, + "index": 11, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 946.85112, + "y": 183.88354, + "index": 12, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 946.84702, + "y": 174.05155, + "index": 13, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 949.19605, + "y": 164.50457, + "index": 14, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 953.76143, + "y": 155.79767, + "index": 15, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 960.27736, + "y": 148.43595, + "index": 16, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 968.36604, + "y": 142.84758, + "index": 17, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 977.55758, + "y": 139.35776, + "index": 18, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 987.31709, + "y": 138.16869, + "index": 19, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 997.07758, + "y": 139.34963, + "index": 20, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 1006.27203, + "y": 142.8318, + "index": 21, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 1014.36536, + "y": 148.41343, + "index": 22, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 1020.88742, + "y": 155.76972, + "index": 23, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 1025.46004, + "y": 164.47282, + "index": 24, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 1027.81702, + "y": 174.01784, + "index": 25, + "body": { + "#": 1589 + }, + "isInternal": false + }, + { + "x": 987.33407, + "y": 178.95069 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.49662, + "y": -1.83172 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.0014, + "y": -2.9095 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1625 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1627 + }, + "max": { + "#": 1628 + } + }, + { + "x": 946.84702, + "y": 135.25341 + }, + { + "x": 1027.82428, + "y": 219.73269 + }, + { + "x": 987.33201, + "y": 181.86948 + }, + [ + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + }, + { + "#": 1637 + }, + { + "#": 1638 + }, + { + "#": 1639 + }, + { + "#": 1640 + }, + { + "#": 1641 + }, + { + "#": 1642 + }, + { + "#": 1643 + } + ], + { + "x": -0.97104, + "y": -0.23892 + }, + { + "x": -0.88564, + "y": -0.46438 + }, + { + "x": -0.74881, + "y": -0.66278 + }, + { + "x": -0.56842, + "y": -0.82274 + }, + { + "x": -0.35495, + "y": -0.93488 + }, + { + "x": -0.12094, + "y": -0.99266 + }, + { + "x": 0.12012, + "y": -0.99276 + }, + { + "x": 0.35418, + "y": -0.93518 + }, + { + "x": 0.56773, + "y": -0.82321 + }, + { + "x": 0.74826, + "y": -0.66341 + }, + { + "x": 0.88525, + "y": -0.46511 + }, + { + "x": 0.97084, + "y": -0.23973 + }, + { + "x": 1, + "y": -0.00042 + }, + { + "id": "19,21,2,4", + "startCol": 19, + "endCol": 21, + "startRow": 2, + "endRow": 4 + }, + { + "id": 61, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1646 + }, + "angle": -0.00479, + "vertices": { + "#": 1647 + }, + "position": { + "#": 1652 + }, + "force": { + "#": 1653 + }, + "torque": 0, + "positionImpulse": { + "#": 1654 + }, + "constraintImpulse": { + "#": 1655 + }, + "totalContacts": 0, + "speed": 2.92007, + "angularSpeed": 0.00091, + "velocity": { + "#": 1656 + }, + "angularVelocity": -0.00028, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1657 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1658 + }, + "bounds": { + "#": 1660 + }, + "positionPrev": { + "#": 1663 + }, + "anglePrev": -0.00366, + "axes": { + "#": 1664 + }, + "area": 1308.20346, + "mass": 1.3082, + "inverseMass": 0.76441, + "inertia": 1149.85791, + "inverseInertia": 0.00087, + "parent": { + "#": 1645 + }, + "sleepCounter": 0, + "region": { + "#": 1667 + } + }, + [ + { + "#": 1645 + } + ], + [ + { + "#": 1648 + }, + { + "#": 1649 + }, + { + "#": 1650 + }, + { + "#": 1651 + } + ], + { + "x": 1027.7622, + "y": 173.01392, + "index": 0, + "body": { + "#": 1645 + }, + "isInternal": false + }, + { + "x": 1066.26382, + "y": 172.82944, + "index": 1, + "body": { + "#": 1645 + }, + "isInternal": false + }, + { + "x": 1066.42663, + "y": 206.80654, + "index": 2, + "body": { + "#": 1645 + }, + "isInternal": false + }, + { + "x": 1027.92501, + "y": 206.99103, + "index": 3, + "body": { + "#": 1645 + }, + "isInternal": false + }, + { + "x": 1047.09442, + "y": 189.91023 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.20591, + "y": -1.24076 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01296, + "y": -2.94295 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1659 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1661 + }, + "max": { + "#": 1662 + } + }, + { + "x": 1027.7622, + "y": 169.90937 + }, + { + "x": 1066.43256, + "y": 206.99103 + }, + { + "x": 1047.08407, + "y": 192.81646 + }, + [ + { + "#": 1665 + }, + { + "#": 1666 + } + ], + { + "x": 0.00479, + "y": 0.99999 + }, + { + "x": -0.99999, + "y": 0.00479 + }, + { + "id": "21,22,3,4", + "startCol": 21, + "endCol": 22, + "startRow": 3, + "endRow": 4 + }, + { + "id": 62, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1669 + }, + "angle": -0.00118, + "vertices": { + "#": 1670 + }, + "position": { + "#": 1678 + }, + "force": { + "#": 1679 + }, + "torque": 0, + "positionImpulse": { + "#": 1680 + }, + "constraintImpulse": { + "#": 1681 + }, + "totalContacts": 0, + "speed": 2.90714, + "angularSpeed": 0.00022, + "velocity": { + "#": 1682 + }, + "angularVelocity": -0.00022, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1683 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1684 + }, + "bounds": { + "#": 1686 + }, + "positionPrev": { + "#": 1689 + }, + "anglePrev": -0.00095, + "axes": { + "#": 1690 + }, + "area": 3803.77675, + "mass": 3.80378, + "inverseMass": 0.2629, + "inertia": 9247.76875, + "inverseInertia": 0.00011, + "parent": { + "#": 1668 + }, + "sleepCounter": 0, + "region": { + "#": 1698 + } + }, + [ + { + "#": 1668 + } + ], + [ + { + "#": 1671 + }, + { + "#": 1672 + }, + { + "#": 1673 + }, + { + "#": 1674 + }, + { + "#": 1675 + }, + { + "#": 1676 + }, + { + "#": 1677 + } + ], + { + "x": 1130.18373, + "y": 248.29228, + "index": 0, + "body": { + "#": 1668 + }, + "isInternal": false + }, + { + "x": 1104.91247, + "y": 268.49401, + "index": 1, + "body": { + "#": 1668 + }, + "isInternal": false + }, + { + "x": 1073.36202, + "y": 261.3311, + "index": 2, + "body": { + "#": 1668 + }, + "isInternal": false + }, + { + "x": 1059.28976, + "y": 232.19862, + "index": 3, + "body": { + "#": 1668 + }, + "isInternal": false + }, + { + "x": 1073.29348, + "y": 203.03314, + "index": 4, + "body": { + "#": 1668 + }, + "isInternal": false + }, + { + "x": 1104.827, + "y": 195.79606, + "index": 5, + "body": { + "#": 1668 + }, + "isInternal": false + }, + { + "x": 1130.14569, + "y": 215.9383, + "index": 6, + "body": { + "#": 1668 + }, + "isInternal": false + }, + { + "x": 1096.5736, + "y": 232.15479 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.02038, + "y": -0.42034 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00096, + "y": -2.90714 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1685 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1687 + }, + "max": { + "#": 1688 + } + }, + { + "x": 1059.2888, + "y": 192.88892 + }, + { + "x": 1130.18373, + "y": 268.49401 + }, + { + "x": 1096.57456, + "y": 235.06193 + }, + [ + { + "#": 1691 + }, + { + "#": 1692 + }, + { + "#": 1693 + }, + { + "#": 1694 + }, + { + "#": 1695 + }, + { + "#": 1696 + }, + { + "#": 1697 + } + ], + { + "x": 0.62441, + "y": 0.7811 + }, + { + "x": -0.2214, + "y": 0.97518 + }, + { + "x": -0.90045, + "y": 0.43496 + }, + { + "x": -0.90147, + "y": -0.43284 + }, + { + "x": -0.22369, + "y": -0.97466 + }, + { + "x": 0.62257, + "y": -0.78257 + }, + { + "x": 1, + "y": -0.00118 + }, + { + "id": "22,23,4,5", + "startCol": 22, + "endCol": 23, + "startRow": 4, + "endRow": 5 + }, + { + "id": 63, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1700 + }, + "angle": -0.00307, + "vertices": { + "#": 1701 + }, + "position": { + "#": 1706 + }, + "force": { + "#": 1707 + }, + "torque": 0, + "positionImpulse": { + "#": 1708 + }, + "constraintImpulse": { + "#": 1709 + }, + "totalContacts": 0, + "speed": 2.91102, + "angularSpeed": 0.00062, + "velocity": { + "#": 1710 + }, + "angularVelocity": -0.00062, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1711 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1712 + }, + "bounds": { + "#": 1714 + }, + "positionPrev": { + "#": 1717 + }, + "anglePrev": -0.00245, + "axes": { + "#": 1718 + }, + "area": 1519.53857, + "mass": 1.51954, + "inverseMass": 0.65809, + "inertia": 1623.69877, + "inverseInertia": 0.00062, + "parent": { + "#": 1699 + }, + "sleepCounter": 0, + "region": { + "#": 1721 + } + }, + [ + { + "#": 1699 + } + ], + [ + { + "#": 1702 + }, + { + "#": 1703 + }, + { + "#": 1704 + }, + { + "#": 1705 + } + ], + { + "x": 1134.95055, + "y": 195.85805, + "index": 0, + "body": { + "#": 1699 + }, + "isInternal": false + }, + { + "x": 1168.00917, + "y": 195.75659, + "index": 1, + "body": { + "#": 1699 + }, + "isInternal": false + }, + { + "x": 1168.15024, + "y": 241.72114, + "index": 2, + "body": { + "#": 1699 + }, + "isInternal": false + }, + { + "x": 1135.09162, + "y": 241.8226, + "index": 3, + "body": { + "#": 1699 + }, + "isInternal": false + }, + { + "x": 1151.55039, + "y": 218.78959 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00417, + "y": -2.91101 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1713 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1715 + }, + "max": { + "#": 1716 + } + }, + { + "x": 1134.95055, + "y": 195.75659 + }, + { + "x": 1168.15024, + "y": 241.8226 + }, + { + "x": 1151.55456, + "y": 221.70061 + }, + [ + { + "#": 1719 + }, + { + "#": 1720 + } + ], + { + "x": 0.00307, + "y": 1 + }, + { + "x": -1, + "y": 0.00307 + }, + { + "id": "23,24,4,5", + "startCol": 23, + "endCol": 24, + "startRow": 4, + "endRow": 5 + }, + { + "id": 64, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1723 + }, + "angle": -0.00076, + "vertices": { + "#": 1724 + }, + "position": { + "#": 1729 + }, + "force": { + "#": 1730 + }, + "torque": 0, + "positionImpulse": { + "#": 1731 + }, + "constraintImpulse": { + "#": 1732 + }, + "totalContacts": 0, + "speed": 2.89627, + "angularSpeed": 0.00017, + "velocity": { + "#": 1733 + }, + "angularVelocity": -0.00017, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1734 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1735 + }, + "bounds": { + "#": 1737 + }, + "positionPrev": { + "#": 1740 + }, + "anglePrev": -0.00059, + "axes": { + "#": 1741 + }, + "area": 3306.48, + "mass": 3.30648, + "inverseMass": 0.30244, + "inertia": 7288.54001, + "inverseInertia": 0.00014, + "parent": { + "#": 1722 + }, + "sleepCounter": 0, + "region": { + "#": 1744 + } + }, + [ + { + "#": 1722 + } + ], + [ + { + "#": 1725 + }, + { + "#": 1726 + }, + { + "#": 1727 + }, + { + "#": 1728 + } + ], + { + "x": 1233.40447, + "y": 253.34514, + "index": 0, + "body": { + "#": 1722 + }, + "isInternal": false + }, + { + "x": 1175.90248, + "y": 253.38887, + "index": 1, + "body": { + "#": 1722 + }, + "isInternal": false + }, + { + "x": 1175.85876, + "y": 195.88688, + "index": 2, + "body": { + "#": 1722 + }, + "isInternal": false + }, + { + "x": 1233.36074, + "y": 195.84316, + "index": 3, + "body": { + "#": 1722 + }, + "isInternal": false + }, + { + "x": 1204.63161, + "y": 224.61601 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.81541, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00232, + "y": -2.89627 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1736 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1738 + }, + "max": { + "#": 1739 + } + }, + { + "x": 1175.85876, + "y": 192.94689 + }, + { + "x": 1233.40678, + "y": 253.38887 + }, + { + "x": 1204.62929, + "y": 227.51228 + }, + [ + { + "#": 1742 + }, + { + "#": 1743 + } + ], + { + "x": -0.00076, + "y": -1 + }, + { + "x": 1, + "y": -0.00076 + }, + { + "id": "24,25,4,5", + "startCol": 24, + "endCol": 25, + "startRow": 4, + "endRow": 5 + }, + { + "id": 65, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1746 + }, + "angle": -0.07443, + "vertices": { + "#": 1747 + }, + "position": { + "#": 1751 + }, + "force": { + "#": 1752 + }, + "torque": 0, + "positionImpulse": { + "#": 1753 + }, + "constraintImpulse": { + "#": 1754 + }, + "totalContacts": 0, + "speed": 2.30634, + "angularSpeed": 0.02105, + "velocity": { + "#": 1755 + }, + "angularVelocity": -0.03325, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1756 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1757 + }, + "bounds": { + "#": 1759 + }, + "positionPrev": { + "#": 1762 + }, + "anglePrev": -0.04004, + "axes": { + "#": 1763 + }, + "area": 1545.32445, + "mass": 1.54532, + "inverseMass": 0.64711, + "inertia": 1838.30455, + "inverseInertia": 0.00054, + "parent": { + "#": 1745 + }, + "sleepCounter": 0, + "region": { + "#": 1767 + } + }, + [ + { + "#": 1745 + } + ], + [ + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + } + ], + { + "x": 80.37498, + "y": 350.10615, + "index": 0, + "body": { + "#": 1745 + }, + "isInternal": false + }, + { + "x": 26.56217, + "y": 324.16567, + "index": 1, + "body": { + "#": 1745 + }, + "isInternal": false + }, + { + "x": 75.93293, + "y": 290.53153, + "index": 2, + "body": { + "#": 1745 + }, + "isInternal": false + }, + { + "x": 60.9567, + "y": 321.60112 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00642, + "y": -1.8841 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1758 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1760 + }, + "max": { + "#": 1761 + } + }, + { + "x": 26.55575, + "y": 288.22519 + }, + { + "x": 80.37498, + "y": 350.10615 + }, + { + "x": 60.96312, + "y": 323.44601 + }, + [ + { + "#": 1764 + }, + { + "#": 1765 + }, + { + "#": 1766 + } + ], + { + "x": -0.43423, + "y": 0.9008 + }, + { + "x": -0.56302, + "y": -0.82644 + }, + { + "x": 0.99723, + "y": -0.07436 + }, + { + "id": "0,1,6,7", + "startCol": 0, + "endCol": 1, + "startRow": 6, + "endRow": 7 + }, + { + "id": 66, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1769 + }, + "angle": -0.01309, + "vertices": { + "#": 1770 + }, + "position": { + "#": 1775 + }, + "force": { + "#": 1776 + }, + "torque": 0, + "positionImpulse": { + "#": 1777 + }, + "constraintImpulse": { + "#": 1778 + }, + "totalContacts": 0, + "speed": 2.79162, + "angularSpeed": 0.00485, + "velocity": { + "#": 1779 + }, + "angularVelocity": -0.00495, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1780 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1781 + }, + "bounds": { + "#": 1783 + }, + "positionPrev": { + "#": 1786 + }, + "anglePrev": -0.00814, + "axes": { + "#": 1787 + }, + "area": 832.69161, + "mass": 0.83269, + "inverseMass": 1.20092, + "inertia": 462.47405, + "inverseInertia": 0.00216, + "parent": { + "#": 1768 + }, + "sleepCounter": 0, + "region": { + "#": 1790 + } + }, + [ + { + "#": 1768 + } + ], + [ + { + "#": 1771 + }, + { + "#": 1772 + }, + { + "#": 1773 + }, + { + "#": 1774 + } + ], + { + "x": 62.33337, + "y": 289.76922, + "index": 0, + "body": { + "#": 1768 + }, + "isInternal": false + }, + { + "x": 91.63976, + "y": 289.38555, + "index": 1, + "body": { + "#": 1768 + }, + "isInternal": false + }, + { + "x": 92.01167, + "y": 317.79399, + "index": 2, + "body": { + "#": 1768 + }, + "isInternal": false + }, + { + "x": 62.70528, + "y": 318.17767, + "index": 3, + "body": { + "#": 1768 + }, + "isInternal": false + }, + { + "x": 77.17252, + "y": 303.78161 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -1.99759, + "y": -0.12977 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.03158, + "y": -2.79833 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1782 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1784 + }, + "max": { + "#": 1785 + } + }, + { + "x": 62.31164, + "y": 286.59401 + }, + { + "x": 92.01167, + "y": 318.17767 + }, + { + "x": 77.20418, + "y": 306.57997 + }, + [ + { + "#": 1788 + }, + { + "#": 1789 + } + ], + { + "x": 0.01309, + "y": 0.99991 + }, + { + "x": -0.99991, + "y": 0.01309 + }, + { + "id": "1,1,6,6", + "startCol": 1, + "endCol": 1, + "startRow": 6, + "endRow": 6 + }, + { + "id": 67, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1792 + }, + "angle": 0.00027, + "vertices": { + "#": 1793 + }, + "position": { + "#": 1799 + }, + "force": { + "#": 1800 + }, + "torque": 0, + "positionImpulse": { + "#": 1801 + }, + "constraintImpulse": { + "#": 1802 + }, + "totalContacts": 0, + "speed": 2.88892, + "angularSpeed": 0.00076, + "velocity": { + "#": 1803 + }, + "angularVelocity": -0.00082, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1804 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1805 + }, + "bounds": { + "#": 1807 + }, + "positionPrev": { + "#": 1810 + }, + "anglePrev": 0.00109, + "axes": { + "#": 1811 + }, + "area": 979.53176, + "mass": 0.97953, + "inverseMass": 1.0209, + "inertia": 621.19304, + "inverseInertia": 0.00161, + "parent": { + "#": 1791 + }, + "sleepCounter": 0, + "region": { + "#": 1817 + } + }, + [ + { + "#": 1791 + } + ], + [ + { + "#": 1794 + }, + { + "#": 1795 + }, + { + "#": 1796 + }, + { + "#": 1797 + }, + { + "#": 1798 + } + ], + { + "x": 128.46503, + "y": 320.20227, + "index": 0, + "body": { + "#": 1791 + }, + "isInternal": false + }, + { + "x": 105.77002, + "y": 327.57009, + "index": 1, + "body": { + "#": 1791 + }, + "isInternal": false + }, + { + "x": 91.75028, + "y": 308.26228, + "index": 2, + "body": { + "#": 1791 + }, + "isInternal": false + }, + { + "x": 105.78053, + "y": 288.96209, + "index": 3, + "body": { + "#": 1791 + }, + "isInternal": false + }, + { + "x": 128.47152, + "y": 296.34227, + "index": 4, + "body": { + "#": 1791 + }, + "isInternal": false + }, + { + "x": 112.04737, + "y": 308.2678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -1.78867, + "y": -0.01829 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00948, + "y": -2.88722 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1806 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1808 + }, + "max": { + "#": 1809 + } + }, + { + "x": 91.74475, + "y": 286.07318 + }, + { + "x": 128.47152, + "y": 327.57009 + }, + { + "x": 112.05706, + "y": 311.15511 + }, + [ + { + "#": 1812 + }, + { + "#": 1813 + }, + { + "#": 1814 + }, + { + "#": 1815 + }, + { + "#": 1816 + } + ], + { + "x": 0.30878, + "y": 0.95113 + }, + { + "x": -0.80918, + "y": 0.58756 + }, + { + "x": -0.80886, + "y": -0.588 + }, + { + "x": 0.3093, + "y": -0.95097 + }, + { + "x": 1, + "y": 0.00027 + }, + { + "id": "1,2,6,6", + "startCol": 1, + "endCol": 2, + "startRow": 6, + "endRow": 6 + }, + { + "id": 68, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1819 + }, + "angle": 0.00025, + "vertices": { + "#": 1820 + }, + "position": { + "#": 1825 + }, + "force": { + "#": 1826 + }, + "torque": 0, + "positionImpulse": { + "#": 1827 + }, + "constraintImpulse": { + "#": 1828 + }, + "totalContacts": 0, + "speed": 2.90439, + "angularSpeed": 0.00011, + "velocity": { + "#": 1829 + }, + "angularVelocity": -0.00012, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1830 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1831 + }, + "bounds": { + "#": 1833 + }, + "positionPrev": { + "#": 1836 + }, + "anglePrev": 0.00036, + "axes": { + "#": 1837 + }, + "area": 1515.31318, + "mass": 1.51531, + "inverseMass": 0.65993, + "inertia": 1532.42068, + "inverseInertia": 0.00065, + "parent": { + "#": 1818 + }, + "sleepCounter": 0, + "region": { + "#": 1840 + } + }, + [ + { + "#": 1818 + } + ], + [ + { + "#": 1821 + }, + { + "#": 1822 + }, + { + "#": 1823 + }, + { + "#": 1824 + } + ], + { + "x": 128.10351, + "y": 288.94587, + "index": 0, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 167.94134, + "y": 288.95567, + "index": 1, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 167.93198, + "y": 326.99271, + "index": 2, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 128.09415, + "y": 326.9829, + "index": 3, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 148.01774, + "y": 307.96929 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -1.45936, + "y": -0.00057 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00176, + "y": -2.90314 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1832 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1834 + }, + "max": { + "#": 1835 + } + }, + { + "x": 128.09355, + "y": 286.04148 + }, + { + "x": 167.94134, + "y": 326.99271 + }, + { + "x": 148.01983, + "y": 310.8725 + }, + [ + { + "#": 1838 + }, + { + "#": 1839 + } + ], + { + "x": -0.00025, + "y": 1 + }, + { + "x": -1, + "y": -0.00025 + }, + { + "id": "2,3,6,6", + "startCol": 2, + "endCol": 3, + "startRow": 6, + "endRow": 6 + }, + { + "id": 69, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1842 + }, + "angle": 0.00025, + "vertices": { + "#": 1843 + }, + "position": { + "#": 1848 + }, + "force": { + "#": 1849 + }, + "torque": 0, + "positionImpulse": { + "#": 1850 + }, + "constraintImpulse": { + "#": 1851 + }, + "totalContacts": 0, + "speed": 2.90653, + "angularSpeed": 0.00001, + "velocity": { + "#": 1852 + }, + "angularVelocity": 0.00003, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1853 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1854 + }, + "bounds": { + "#": 1856 + }, + "positionPrev": { + "#": 1859 + }, + "anglePrev": 0.00023, + "axes": { + "#": 1860 + }, + "area": 1347.92786, + "mass": 1.34793, + "inverseMass": 0.74188, + "inertia": 1394.56669, + "inverseInertia": 0.00072, + "parent": { + "#": 1841 + }, + "sleepCounter": 0, + "region": { + "#": 1863 + } + }, + [ + { + "#": 1841 + } + ], + [ + { + "#": 1844 + }, + { + "#": 1845 + }, + { + "#": 1846 + }, + { + "#": 1847 + } + ], + { + "x": 167.37525, + "y": 288.96525, + "index": 0, + "body": { + "#": 1841 + }, + "isInternal": false + }, + { + "x": 195.35416, + "y": 288.97225, + "index": 1, + "body": { + "#": 1841 + }, + "isInternal": false + }, + { + "x": 195.3421, + "y": 337.14882, + "index": 2, + "body": { + "#": 1841 + }, + "isInternal": false + }, + { + "x": 167.36319, + "y": 337.14181, + "index": 3, + "body": { + "#": 1841 + }, + "isInternal": false + }, + { + "x": 181.35867, + "y": 313.05703 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.0009, + "y": -2.90536 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1855 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1857 + }, + "max": { + "#": 1858 + } + }, + { + "x": 167.36273, + "y": 286.05872 + }, + { + "x": 195.35416, + "y": 337.14882 + }, + { + "x": 181.35921, + "y": 315.96231 + }, + [ + { + "#": 1861 + }, + { + "#": 1862 + } + ], + { + "x": -0.00025, + "y": 1 + }, + { + "x": -1, + "y": -0.00025 + }, + { + "id": "3,4,6,7", + "startCol": 3, + "endCol": 4, + "startRow": 6, + "endRow": 7 + }, + { + "id": 70, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1865 + }, + "angle": 0.00032, + "vertices": { + "#": 1866 + }, + "position": { + "#": 1871 + }, + "force": { + "#": 1872 + }, + "torque": 0, + "positionImpulse": { + "#": 1873 + }, + "constraintImpulse": { + "#": 1874 + }, + "totalContacts": 0, + "speed": 2.90438, + "angularSpeed": 0.00007, + "velocity": { + "#": 1875 + }, + "angularVelocity": 0.00006, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1876 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1877 + }, + "bounds": { + "#": 1879 + }, + "positionPrev": { + "#": 1882 + }, + "anglePrev": 0.00027, + "axes": { + "#": 1883 + }, + "area": 2285.40536, + "mass": 2.28541, + "inverseMass": 0.43756, + "inertia": 3483.87721, + "inverseInertia": 0.00029, + "parent": { + "#": 1864 + }, + "sleepCounter": 0, + "region": { + "#": 1886 + } + }, + [ + { + "#": 1864 + } + ], + [ + { + "#": 1867 + }, + { + "#": 1868 + }, + { + "#": 1869 + }, + { + "#": 1870 + } + ], + { + "x": 194.72373, + "y": 288.96991, + "index": 0, + "body": { + "#": 1864 + }, + "isInternal": false + }, + { + "x": 241.76192, + "y": 288.98518, + "index": 1, + "body": { + "#": 1864 + }, + "isInternal": false + }, + { + "x": 241.74616, + "y": 337.57134, + "index": 2, + "body": { + "#": 1864 + }, + "isInternal": false + }, + { + "x": 194.70797, + "y": 337.55607, + "index": 3, + "body": { + "#": 1864 + }, + "isInternal": false + }, + { + "x": 218.23494, + "y": 313.27063 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.59774, + "y": 0.00011 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00149, + "y": -2.9037 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1878 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1880 + }, + "max": { + "#": 1881 + } + }, + { + "x": 194.70588, + "y": 286.06553 + }, + { + "x": 241.76192, + "y": 337.57134 + }, + { + "x": 218.23618, + "y": 316.17433 + }, + [ + { + "#": 1884 + }, + { + "#": 1885 + } + ], + { + "x": -0.00032, + "y": 1 + }, + { + "x": -1, + "y": -0.00032 + }, + { + "id": "4,5,6,7", + "startCol": 4, + "endCol": 5, + "startRow": 6, + "endRow": 7 + }, + { + "id": 71, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1888 + }, + "angle": -0.00032, + "vertices": { + "#": 1889 + }, + "position": { + "#": 1895 + }, + "force": { + "#": 1896 + }, + "torque": 0, + "positionImpulse": { + "#": 1897 + }, + "constraintImpulse": { + "#": 1898 + }, + "totalContacts": 0, + "speed": 2.9067, + "angularSpeed": 0.0001, + "velocity": { + "#": 1899 + }, + "angularVelocity": -0.0001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1900 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1901 + }, + "bounds": { + "#": 1903 + }, + "positionPrev": { + "#": 1906 + }, + "anglePrev": -0.00022, + "axes": { + "#": 1907 + }, + "area": 4327.82858, + "mass": 4.32783, + "inverseMass": 0.23106, + "inertia": 12126.33711, + "inverseInertia": 0.00008, + "parent": { + "#": 1887 + }, + "sleepCounter": 0, + "region": { + "#": 1913 + } + }, + [ + { + "#": 1887 + } + ], + [ + { + "#": 1890 + }, + { + "#": 1891 + }, + { + "#": 1892 + }, + { + "#": 1893 + }, + { + "#": 1894 + } + ], + { + "x": 318.30099, + "y": 354.61643, + "index": 0, + "body": { + "#": 1887 + }, + "isInternal": false + }, + { + "x": 270.60602, + "y": 370.1309, + "index": 1, + "body": { + "#": 1887 + }, + "isInternal": false + }, + { + "x": 241.11286, + "y": 329.56447, + "index": 2, + "body": { + "#": 1887 + }, + "isInternal": false + }, + { + "x": 270.5797, + "y": 288.97891, + "index": 3, + "body": { + "#": 1887 + }, + "isInternal": false + }, + { + "x": 318.28473, + "y": 304.46243, + "index": 4, + "body": { + "#": 1887 + }, + "isInternal": false + }, + { + "x": 283.77681, + "y": 329.55063 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00248, + "y": -2.90675 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1902 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1904 + }, + "max": { + "#": 1905 + } + }, + { + "x": 241.1091, + "y": 286.07221 + }, + { + "x": 318.30099, + "y": 370.1309 + }, + { + "x": 283.77927, + "y": 332.45739 + }, + [ + { + "#": 1908 + }, + { + "#": 1909 + }, + { + "#": 1910 + }, + { + "#": 1911 + }, + { + "#": 1912 + } + ], + { + "x": 0.30933, + "y": 0.95095 + }, + { + "x": -0.80883, + "y": 0.58805 + }, + { + "x": -0.80921, + "y": -0.58752 + }, + { + "x": 0.30871, + "y": -0.95115 + }, + { + "x": 1, + "y": -0.00032 + }, + { + "id": "5,6,6,7", + "startCol": 5, + "endCol": 6, + "startRow": 6, + "endRow": 7 + }, + { + "id": 72, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1915 + }, + "angle": -0.00002, + "vertices": { + "#": 1916 + }, + "position": { + "#": 1921 + }, + "force": { + "#": 1922 + }, + "torque": 0, + "positionImpulse": { + "#": 1923 + }, + "constraintImpulse": { + "#": 1924 + }, + "totalContacts": 0, + "speed": 2.90976, + "angularSpeed": 0, + "velocity": { + "#": 1925 + }, + "angularVelocity": 0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1926 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1927 + }, + "bounds": { + "#": 1929 + }, + "positionPrev": { + "#": 1932 + }, + "anglePrev": -0.00003, + "axes": { + "#": 1933 + }, + "area": 2032.72927, + "mass": 2.03273, + "inverseMass": 0.49195, + "inertia": 6700.37412, + "inverseInertia": 0.00015, + "parent": { + "#": 1914 + }, + "sleepCounter": 0, + "region": { + "#": 1936 + } + }, + [ + { + "#": 1914 + } + ], + [ + { + "#": 1917 + }, + { + "#": 1918 + }, + { + "#": 1919 + }, + { + "#": 1920 + } + ], + { + "x": 317.65747, + "y": 288.9599, + "index": 0, + "body": { + "#": 1914 + }, + "isInternal": false + }, + { + "x": 414.8766, + "y": 288.95751, + "index": 1, + "body": { + "#": 1914 + }, + "isInternal": false + }, + { + "x": 414.87712, + "y": 309.86624, + "index": 2, + "body": { + "#": 1914 + }, + "isInternal": false + }, + { + "x": 317.65798, + "y": 309.86864, + "index": 3, + "body": { + "#": 1914 + }, + "isInternal": false + }, + { + "x": 366.26729, + "y": 299.41307 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00474, + "y": -2.91011 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1928 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1930 + }, + "max": { + "#": 1931 + } + }, + { + "x": 317.65202, + "y": 286.04775 + }, + { + "x": 414.87712, + "y": 309.86864 + }, + { + "x": 366.27256, + "y": 302.32344 + }, + [ + { + "#": 1934 + }, + { + "#": 1935 + } + ], + { + "x": 0.00002, + "y": 1 + }, + { + "x": -1, + "y": 0.00002 + }, + { + "id": "6,8,6,6", + "startCol": 6, + "endCol": 8, + "startRow": 6, + "endRow": 6 + }, + { + "id": 73, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1938 + }, + "angle": -0.00015, + "vertices": { + "#": 1939 + }, + "position": { + "#": 1944 + }, + "force": { + "#": 1945 + }, + "torque": 0, + "positionImpulse": { + "#": 1946 + }, + "constraintImpulse": { + "#": 1947 + }, + "totalContacts": 0, + "speed": 2.90852, + "angularSpeed": 0.00002, + "velocity": { + "#": 1948 + }, + "angularVelocity": -0.00002, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1949 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1950 + }, + "bounds": { + "#": 1952 + }, + "positionPrev": { + "#": 1955 + }, + "anglePrev": -0.00011, + "axes": { + "#": 1956 + }, + "area": 1931.95349, + "mass": 1.93195, + "inverseMass": 0.51761, + "inertia": 4690.99661, + "inverseInertia": 0.00021, + "parent": { + "#": 1937 + }, + "sleepCounter": 0, + "region": { + "#": 1959 + } + }, + [ + { + "#": 1937 + } + ], + [ + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + } + ], + { + "x": 414.24746, + "y": 288.93374, + "index": 0, + "body": { + "#": 1937 + }, + "isInternal": false + }, + { + "x": 496.28227, + "y": 288.92137, + "index": 1, + "body": { + "#": 1937 + }, + "isInternal": false + }, + { + "x": 496.28582, + "y": 312.47178, + "index": 2, + "body": { + "#": 1937 + }, + "isInternal": false + }, + { + "x": 414.25101, + "y": 312.48415, + "index": 3, + "body": { + "#": 1937 + }, + "isInternal": false + }, + { + "x": 455.26664, + "y": 300.70276 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.40441, + "y": -0.006 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00529, + "y": -2.91146 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1951 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1953 + }, + "max": { + "#": 1954 + } + }, + { + "x": 414.24387, + "y": 286.01286 + }, + { + "x": 496.28582, + "y": 312.48415 + }, + { + "x": 455.2735, + "y": 303.61559 + }, + [ + { + "#": 1957 + }, + { + "#": 1958 + } + ], + { + "x": 0.00015, + "y": 1 + }, + { + "x": -1, + "y": 0.00015 + }, + { + "id": "8,10,6,6", + "startCol": 8, + "endCol": 10, + "startRow": 6, + "endRow": 6 + }, + { + "id": 74, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1961 + }, + "angle": 0.0033, + "vertices": { + "#": 1962 + }, + "position": { + "#": 1967 + }, + "force": { + "#": 1968 + }, + "torque": 0, + "positionImpulse": { + "#": 1969 + }, + "constraintImpulse": { + "#": 1970 + }, + "totalContacts": 0, + "speed": 2.88962, + "angularSpeed": 0.00073, + "velocity": { + "#": 1971 + }, + "angularVelocity": 0.0005, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1972 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1973 + }, + "bounds": { + "#": 1975 + }, + "positionPrev": { + "#": 1978 + }, + "anglePrev": 0.00282, + "axes": { + "#": 1979 + }, + "area": 2376.31797, + "mass": 2.37632, + "inverseMass": 0.42082, + "inertia": 3764.5915, + "inverseInertia": 0.00027, + "parent": { + "#": 1960 + }, + "sleepCounter": 0, + "region": { + "#": 1982 + } + }, + [ + { + "#": 1960 + } + ], + [ + { + "#": 1963 + }, + { + "#": 1964 + }, + { + "#": 1965 + }, + { + "#": 1966 + } + ], + { + "x": 495.75895, + "y": 288.99031, + "index": 0, + "body": { + "#": 1960 + }, + "isInternal": false + }, + { + "x": 544.49994, + "y": 289.15115, + "index": 1, + "body": { + "#": 1960 + }, + "isInternal": false + }, + { + "x": 544.33906, + "y": 337.90461, + "index": 2, + "body": { + "#": 1960 + }, + "isInternal": false + }, + { + "x": 495.59807, + "y": 337.74378, + "index": 3, + "body": { + "#": 1960 + }, + "isInternal": false + }, + { + "x": 520.04901, + "y": 313.44746 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01011, + "y": -2.90432 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1974 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1976 + }, + "max": { + "#": 1977 + } + }, + { + "x": 495.59478, + "y": 286.1007 + }, + { + "x": 544.49994, + "y": 337.90461 + }, + { + "x": 520.06098, + "y": 316.35409 + }, + [ + { + "#": 1980 + }, + { + "#": 1981 + } + ], + { + "x": -0.0033, + "y": 0.99999 + }, + { + "x": -0.99999, + "y": -0.0033 + }, + { + "id": "10,11,6,7", + "startCol": 10, + "endCol": 11, + "startRow": 6, + "endRow": 7 + }, + { + "id": 75, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1984 + }, + "angle": 0.00102, + "vertices": { + "#": 1985 + }, + "position": { + "#": 2012 + }, + "force": { + "#": 2013 + }, + "torque": 0, + "positionImpulse": { + "#": 2014 + }, + "constraintImpulse": { + "#": 2015 + }, + "totalContacts": 0, + "speed": 2.89998, + "angularSpeed": 0.00022, + "velocity": { + "#": 2016 + }, + "angularVelocity": 0.00017, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2017 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2018 + }, + "circleRadius": 47.98573, + "bounds": { + "#": 2020 + }, + "positionPrev": { + "#": 2023 + }, + "anglePrev": 0.00085, + "axes": { + "#": 2024 + }, + "area": 7163.66511, + "mass": 7.16367, + "inverseMass": 0.13959, + "inertia": 32670.7391, + "inverseInertia": 0.00003, + "parent": { + "#": 1983 + }, + "sleepCounter": 0, + "region": { + "#": 2038 + } + }, + [ + { + "#": 1983 + } + ], + [ + { + "#": 1986 + }, + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + }, + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + }, + { + "#": 1996 + }, + { + "#": 1997 + }, + { + "#": 1998 + }, + { + "#": 1999 + }, + { + "#": 2000 + }, + { + "#": 2001 + }, + { + "#": 2002 + }, + { + "#": 2003 + }, + { + "#": 2004 + }, + { + "#": 2005 + }, + { + "#": 2006 + }, + { + "#": 2007 + }, + { + "#": 2008 + }, + { + "#": 2009 + }, + { + "#": 2010 + }, + { + "#": 2011 + } + ], + { + "x": 639.16875, + "y": 336.61331, + "index": 0, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 636.38833, + "y": 347.84249, + "index": 1, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 631.00192, + "y": 358.08002, + "index": 2, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 623.32212, + "y": 366.73121, + "index": 3, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 613.79544, + "y": 373.29253, + "index": 4, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 602.97528, + "y": 377.38353, + "index": 5, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 591.48987, + "y": 378.76685, + "index": 6, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 580.00729, + "y": 377.36017, + "index": 7, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 569.19547, + "y": 373.24718, + "index": 8, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 559.68215, + "y": 366.6665, + "index": 9, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 552.01996, + "y": 357.99971, + "index": 10, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 546.65438, + "y": 347.75124, + "index": 11, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 543.8968, + "y": 336.51644, + "index": 12, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 543.90857, + "y": 324.94844, + "index": 13, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 546.68898, + "y": 313.71926, + "index": 14, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 552.0754, + "y": 303.48173, + "index": 15, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 559.7552, + "y": 294.83054, + "index": 16, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 569.28187, + "y": 288.26922, + "index": 17, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 580.10204, + "y": 284.17822, + "index": 18, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 591.58745, + "y": 282.7949, + "index": 19, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 603.07003, + "y": 284.20158, + "index": 20, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 613.88185, + "y": 288.31457, + "index": 21, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 623.39517, + "y": 294.89525, + "index": 22, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 631.05736, + "y": 303.56205, + "index": 23, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 636.42294, + "y": 313.81051, + "index": 24, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 639.18052, + "y": 325.04532, + "index": 25, + "body": { + "#": 1983 + }, + "isInternal": false + }, + { + "x": 591.53866, + "y": 330.78088 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.76492, + "y": -0.40995 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.02142, + "y": -2.89326 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2019 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2021 + }, + "max": { + "#": 2022 + } + }, + { + "x": 543.87354, + "y": 279.89502 + }, + { + "x": 639.18052, + "y": 378.76685 + }, + { + "x": 591.55946, + "y": 333.67337 + }, + [ + { + "#": 2025 + }, + { + "#": 2026 + }, + { + "#": 2027 + }, + { + "#": 2028 + }, + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + }, + { + "#": 2032 + }, + { + "#": 2033 + }, + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + } + ], + { + "x": -0.97069, + "y": -0.24035 + }, + { + "x": -0.88498, + "y": -0.46563 + }, + { + "x": -0.74784, + "y": -0.66387 + }, + { + "x": -0.56722, + "y": -0.82357 + }, + { + "x": -0.35366, + "y": -0.93538 + }, + { + "x": -0.11958, + "y": -0.99282 + }, + { + "x": 0.1216, + "y": -0.99258 + }, + { + "x": 0.35556, + "y": -0.93465 + }, + { + "x": 0.56889, + "y": -0.82241 + }, + { + "x": 0.74919, + "y": -0.66235 + }, + { + "x": 0.88593, + "y": -0.46383 + }, + { + "x": 0.97117, + "y": -0.23837 + }, + { + "x": 1, + "y": 0.00102 + }, + { + "id": "11,13,5,7", + "startCol": 11, + "endCol": 13, + "startRow": 5, + "endRow": 7 + }, + { + "id": 76, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2040 + }, + "angle": 0.00167, + "vertices": { + "#": 2041 + }, + "position": { + "#": 2068 + }, + "force": { + "#": 2069 + }, + "torque": 0, + "positionImpulse": { + "#": 2070 + }, + "constraintImpulse": { + "#": 2071 + }, + "totalContacts": 0, + "speed": 2.87204, + "angularSpeed": 0.00037, + "velocity": { + "#": 2072 + }, + "angularVelocity": 0.00039, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2073 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2074 + }, + "circleRadius": 44.1313, + "bounds": { + "#": 2076 + }, + "positionPrev": { + "#": 2079 + }, + "anglePrev": 0.00129, + "axes": { + "#": 2080 + }, + "area": 6059.04975, + "mass": 6.05905, + "inverseMass": 0.16504, + "inertia": 23372.08438, + "inverseInertia": 0.00004, + "parent": { + "#": 2039 + }, + "sleepCounter": 0, + "region": { + "#": 2094 + } + }, + [ + { + "#": 2039 + } + ], + [ + { + "#": 2042 + }, + { + "#": 2043 + }, + { + "#": 2044 + }, + { + "#": 2045 + }, + { + "#": 2046 + }, + { + "#": 2047 + }, + { + "#": 2048 + }, + { + "#": 2049 + }, + { + "#": 2050 + }, + { + "#": 2051 + }, + { + "#": 2052 + }, + { + "#": 2053 + }, + { + "#": 2054 + }, + { + "#": 2055 + }, + { + "#": 2056 + }, + { + "#": 2057 + }, + { + "#": 2058 + }, + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + }, + { + "#": 2062 + }, + { + "#": 2063 + }, + { + "#": 2064 + }, + { + "#": 2065 + }, + { + "#": 2066 + }, + { + "#": 2067 + } + ], + { + "x": 725.05879, + "y": 353.44633, + "index": 0, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 722.49451, + "y": 363.77205, + "index": 1, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 717.53475, + "y": 373.18376, + "index": 2, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 710.46643, + "y": 381.13594, + "index": 3, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 701.70132, + "y": 387.16428, + "index": 4, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 691.74702, + "y": 390.92063, + "index": 5, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 681.18389, + "y": 392.18495, + "index": 6, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 670.62505, + "y": 390.88527, + "index": 7, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 660.68338, + "y": 387.09563, + "index": 8, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 651.93851, + "y": 381.03798, + "index": 9, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 644.89685, + "y": 373.06218, + "index": 10, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 639.96862, + "y": 363.63392, + "index": 11, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 637.43892, + "y": 353.29967, + "index": 12, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 637.45672, + "y": 342.66169, + "index": 13, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 640.02101, + "y": 332.33597, + "index": 14, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 644.98077, + "y": 322.92425, + "index": 15, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 652.04909, + "y": 314.97207, + "index": 16, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 660.81419, + "y": 308.94374, + "index": 17, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 670.76849, + "y": 305.18739, + "index": 18, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 681.33162, + "y": 303.92307, + "index": 19, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 691.89046, + "y": 305.22275, + "index": 20, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 701.83213, + "y": 309.01239, + "index": 21, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 710.57701, + "y": 315.07004, + "index": 22, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 717.61867, + "y": 323.04583, + "index": 23, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 722.54689, + "y": 332.4741, + "index": 24, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 725.0766, + "y": 342.80834, + "index": 25, + "body": { + "#": 2039 + }, + "isInternal": false + }, + { + "x": 681.25776, + "y": 348.05401 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.02554, + "y": -2.87332 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2075 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2077 + }, + "max": { + "#": 2078 + } + }, + { + "x": 637.41104, + "y": 301.05116 + }, + { + "x": 725.0766, + "y": 392.18495 + }, + { + "x": 681.28298, + "y": 350.9265 + }, + [ + { + "#": 2081 + }, + { + "#": 2082 + }, + { + "#": 2083 + }, + { + "#": 2084 + }, + { + "#": 2085 + }, + { + "#": 2086 + }, + { + "#": 2087 + }, + { + "#": 2088 + }, + { + "#": 2089 + }, + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + } + ], + { + "x": -0.97052, + "y": -0.24102 + }, + { + "x": -0.88468, + "y": -0.4662 + }, + { + "x": -0.74742, + "y": -0.66435 + }, + { + "x": -0.56668, + "y": -0.82394 + }, + { + "x": -0.35306, + "y": -0.9356 + }, + { + "x": -0.11884, + "y": -0.99291 + }, + { + "x": 0.12217, + "y": -0.99251 + }, + { + "x": 0.35619, + "y": -0.93441 + }, + { + "x": 0.56943, + "y": -0.82204 + }, + { + "x": 0.74964, + "y": -0.66184 + }, + { + "x": 0.88623, + "y": -0.46324 + }, + { + "x": 0.97132, + "y": -0.23777 + }, + { + "x": 1, + "y": 0.00167 + }, + { + "id": "13,15,6,8", + "startCol": 13, + "endCol": 15, + "startRow": 6, + "endRow": 8 + }, + { + "id": 77, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2096 + }, + "angle": 0.02241, + "vertices": { + "#": 2097 + }, + "position": { + "#": 2103 + }, + "force": { + "#": 2104 + }, + "torque": 0, + "positionImpulse": { + "#": 2105 + }, + "constraintImpulse": { + "#": 2106 + }, + "totalContacts": 0, + "speed": 2.82489, + "angularSpeed": 0.00159, + "velocity": { + "#": 2107 + }, + "angularVelocity": 0.00159, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2108 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2109 + }, + "bounds": { + "#": 2111 + }, + "positionPrev": { + "#": 2114 + }, + "anglePrev": 0.02082, + "axes": { + "#": 2115 + }, + "area": 1190.42275, + "mass": 1.19042, + "inverseMass": 0.84004, + "inertia": 917.47021, + "inverseInertia": 0.00109, + "parent": { + "#": 2095 + }, + "sleepCounter": 0, + "region": { + "#": 2121 + } + }, + [ + { + "#": 2095 + } + ], + [ + { + "#": 2098 + }, + { + "#": 2099 + }, + { + "#": 2100 + }, + { + "#": 2101 + }, + { + "#": 2102 + } + ], + { + "x": 720.52726, + "y": 275.10679, + "index": 0, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 695.33541, + "y": 282.67327, + "index": 1, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 680.35409, + "y": 261.05118, + "index": 2, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 696.28901, + "y": 240.12195, + "index": 3, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 721.1166, + "y": 248.80939, + "index": 4, + "body": { + "#": 2095 + }, + "isInternal": false + }, + { + "x": 702.72426, + "y": 261.55251 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.46463, + "y": -2.02452 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02367, + "y": -2.82479 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2110 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2112 + }, + "max": { + "#": 2113 + } + }, + { + "x": 680.35409, + "y": 237.29716 + }, + { + "x": 721.14027, + "y": 282.67327 + }, + { + "x": 702.70059, + "y": 264.3773 + }, + [ + { + "#": 2116 + }, + { + "#": 2117 + }, + { + "#": 2118 + }, + { + "#": 2119 + }, + { + "#": 2120 + } + ], + { + "x": 0.28766, + "y": 0.95773 + }, + { + "x": -0.82198, + "y": 0.56952 + }, + { + "x": -0.79564, + "y": -0.60577 + }, + { + "x": 0.33028, + "y": -0.94388 + }, + { + "x": 0.99975, + "y": 0.0224 + }, + { + "id": "14,15,5,5", + "startCol": 14, + "endCol": 15, + "startRow": 5, + "endRow": 5 + }, + { + "id": 78, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2123 + }, + "angle": 0.03697, + "vertices": { + "#": 2124 + }, + "position": { + "#": 2129 + }, + "force": { + "#": 2130 + }, + "torque": 0, + "positionImpulse": { + "#": 2131 + }, + "constraintImpulse": { + "#": 2132 + }, + "totalContacts": 0, + "speed": 2.77157, + "angularSpeed": 0.0037, + "velocity": { + "#": 2133 + }, + "angularVelocity": 0.0037, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2134 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2135 + }, + "bounds": { + "#": 2137 + }, + "positionPrev": { + "#": 2140 + }, + "anglePrev": 0.03327, + "axes": { + "#": 2141 + }, + "area": 2171.01614, + "mass": 2.17102, + "inverseMass": 0.46061, + "inertia": 3142.32114, + "inverseInertia": 0.00032, + "parent": { + "#": 2122 + }, + "sleepCounter": 0, + "region": { + "#": 2144 + } + }, + [ + { + "#": 2122 + } + ], + [ + { + "#": 2125 + }, + { + "#": 2126 + }, + { + "#": 2127 + }, + { + "#": 2128 + } + ], + { + "x": 730.43605, + "y": 287.40796, + "index": 0, + "body": { + "#": 2122 + }, + "isInternal": false + }, + { + "x": 777.1969, + "y": 289.13746, + "index": 1, + "body": { + "#": 2122 + }, + "isInternal": false + }, + { + "x": 775.48205, + "y": 335.50211, + "index": 2, + "body": { + "#": 2122 + }, + "isInternal": false + }, + { + "x": 728.7212, + "y": 333.7726, + "index": 3, + "body": { + "#": 2122 + }, + "isInternal": false + }, + { + "x": 752.95905, + "y": 311.45503 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1.52611, + "y": -0.37517 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.04045, + "y": -2.77127 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2136 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2138 + }, + "max": { + "#": 2139 + } + }, + { + "x": 728.7212, + "y": 284.63669 + }, + { + "x": 777.23736, + "y": 335.50211 + }, + { + "x": 752.9186, + "y": 314.2263 + }, + [ + { + "#": 2142 + }, + { + "#": 2143 + } + ], + { + "x": -0.03696, + "y": 0.99932 + }, + { + "x": -0.99932, + "y": -0.03696 + }, + { + "id": "15,16,5,6", + "startCol": 15, + "endCol": 16, + "startRow": 5, + "endRow": 6 + }, + { + "id": 79, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2146 + }, + "angle": -0.08167, + "vertices": { + "#": 2147 + }, + "position": { + "#": 2151 + }, + "force": { + "#": 2152 + }, + "torque": 0, + "positionImpulse": { + "#": 2153 + }, + "constraintImpulse": { + "#": 2154 + }, + "totalContacts": 0, + "speed": 2.43504, + "angularSpeed": 0.01699, + "velocity": { + "#": 2155 + }, + "angularVelocity": -0.01699, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2156 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2157 + }, + "bounds": { + "#": 2159 + }, + "positionPrev": { + "#": 2162 + }, + "anglePrev": -0.06469, + "axes": { + "#": 2163 + }, + "area": 1119.99488, + "mass": 1.11999, + "inverseMass": 0.89286, + "inertia": 965.62873, + "inverseInertia": 0.00104, + "parent": { + "#": 2145 + }, + "sleepCounter": 0, + "region": { + "#": 2167 + } + }, + [ + { + "#": 2145 + } + ], + [ + { + "#": 2148 + }, + { + "#": 2149 + }, + { + "#": 2150 + } + ], + { + "x": 879.39386, + "y": 341.34265, + "index": 0, + "body": { + "#": 2145 + }, + "isInternal": false + }, + { + "x": 833.42213, + "y": 319.59161, + "index": 1, + "body": { + "#": 2145 + }, + "isInternal": false + }, + { + "x": 875.24476, + "y": 290.65418, + "index": 2, + "body": { + "#": 2145 + }, + "isInternal": false + }, + { + "x": 862.68692, + "y": 317.19615 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01613, + "y": -2.43498 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2158 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2160 + }, + "max": { + "#": 2161 + } + }, + { + "x": 833.42213, + "y": 290.65418 + }, + { + "x": 879.39386, + "y": 341.34265 + }, + { + "x": 862.70305, + "y": 319.63113 + }, + [ + { + "#": 2164 + }, + { + "#": 2165 + }, + { + "#": 2166 + } + ], + { + "x": -0.42768, + "y": 0.90393 + }, + { + "x": -0.56899, + "y": -0.82235 + }, + { + "x": 0.99667, + "y": -0.08158 + }, + { + "id": "17,18,6,7", + "startCol": 17, + "endCol": 18, + "startRow": 6, + "endRow": 7 + }, + { + "id": 80, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2169 + }, + "angle": -0.00476, + "vertices": { + "#": 2170 + }, + "position": { + "#": 2178 + }, + "force": { + "#": 2179 + }, + "torque": 0, + "positionImpulse": { + "#": 2180 + }, + "constraintImpulse": { + "#": 2181 + }, + "totalContacts": 0, + "speed": 2.87683, + "angularSpeed": 0.00056, + "velocity": { + "#": 2182 + }, + "angularVelocity": -0.00056, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2183 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2184 + }, + "bounds": { + "#": 2186 + }, + "positionPrev": { + "#": 2189 + }, + "anglePrev": -0.0042, + "axes": { + "#": 2190 + }, + "area": 5582.97476, + "mass": 5.58297, + "inverseMass": 0.17912, + "inertia": 19922.24381, + "inverseInertia": 0.00005, + "parent": { + "#": 2168 + }, + "sleepCounter": 0, + "region": { + "#": 2198 + } + }, + [ + { + "#": 2168 + } + ], + [ + { + "#": 2171 + }, + { + "#": 2172 + }, + { + "#": 2173 + }, + { + "#": 2174 + }, + { + "#": 2175 + }, + { + "#": 2176 + }, + { + "#": 2177 + } + ], + { + "x": 959.8441, + "y": 300.34741, + "index": 0, + "body": { + "#": 2168 + }, + "isInternal": false + }, + { + "x": 929.31573, + "y": 324.93195, + "index": 1, + "body": { + "#": 2168 + }, + "isInternal": false + }, + { + "x": 891.06166, + "y": 316.39186, + "index": 2, + "body": { + "#": 2168 + }, + "isInternal": false + }, + { + "x": 873.88682, + "y": 281.15818, + "index": 3, + "body": { + "#": 2168 + }, + "isInternal": false + }, + { + "x": 890.7256, + "y": 245.76266, + "index": 4, + "body": { + "#": 2168 + }, + "isInternal": false + }, + { + "x": 928.89667, + "y": 236.85894, + "index": 5, + "body": { + "#": 2168 + }, + "isInternal": false + }, + { + "x": 959.6576, + "y": 261.15186, + "index": 6, + "body": { + "#": 2168 + }, + "isInternal": false + }, + { + "x": 919.0554, + "y": 280.94327 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.45426, + "y": -1.90463 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.03041, + "y": -2.87667 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2185 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2187 + }, + "max": { + "#": 2188 + } + }, + { + "x": 873.88682, + "y": 233.98228 + }, + { + "x": 959.87451, + "y": 324.93195 + }, + { + "x": 919.02498, + "y": 283.81993 + }, + [ + { + "#": 2191 + }, + { + "#": 2192 + }, + { + "#": 2193 + }, + { + "#": 2194 + }, + { + "#": 2195 + }, + { + "#": 2196 + }, + { + "#": 2197 + } + ], + { + "x": 0.62721, + "y": 0.77885 + }, + { + "x": -0.21788, + "y": 0.97597 + }, + { + "x": -0.89889, + "y": 0.43817 + }, + { + "x": -0.90302, + "y": -0.4296 + }, + { + "x": -0.22716, + "y": -0.97386 + }, + { + "x": 0.61977, + "y": -0.78478 + }, + { + "x": 0.99999, + "y": -0.00476 + }, + { + "id": "18,20,4,6", + "startCol": 18, + "endCol": 20, + "startRow": 4, + "endRow": 6 + }, + { + "id": 81, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2200 + }, + "angle": -0.00688, + "vertices": { + "#": 2201 + }, + "position": { + "#": 2208 + }, + "force": { + "#": 2209 + }, + "torque": 0, + "positionImpulse": { + "#": 2210 + }, + "constraintImpulse": { + "#": 2211 + }, + "totalContacts": 0, + "speed": 2.88609, + "angularSpeed": 0.00078, + "velocity": { + "#": 2212 + }, + "angularVelocity": -0.00078, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2213 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2214 + }, + "bounds": { + "#": 2216 + }, + "positionPrev": { + "#": 2219 + }, + "anglePrev": -0.0061, + "axes": { + "#": 2220 + }, + "area": 1427.9506, + "mass": 1.42795, + "inverseMass": 0.7003, + "inertia": 1308.04663, + "inverseInertia": 0.00076, + "parent": { + "#": 2199 + }, + "sleepCounter": 0, + "region": { + "#": 2224 + } + }, + [ + { + "#": 2199 + } + ], + [ + { + "#": 2202 + }, + { + "#": 2203 + }, + { + "#": 2204 + }, + { + "#": 2205 + }, + { + "#": 2206 + }, + { + "#": 2207 + } + ], + { + "x": 1007.90712, + "y": 258.21034, + "index": 0, + "body": { + "#": 2199 + }, + "isInternal": false + }, + { + "x": 987.68522, + "y": 270.0717, + "index": 1, + "body": { + "#": 2199 + }, + "isInternal": false + }, + { + "x": 967.30208, + "y": 258.48961, + "index": 2, + "body": { + "#": 2199 + }, + "isInternal": false + }, + { + "x": 967.14085, + "y": 235.04616, + "index": 3, + "body": { + "#": 2199 + }, + "isInternal": false + }, + { + "x": 987.36275, + "y": 223.18481, + "index": 4, + "body": { + "#": 2199 + }, + "isInternal": false + }, + { + "x": 1007.74589, + "y": 234.7669, + "index": 5, + "body": { + "#": 2199 + }, + "isInternal": false + }, + { + "x": 987.52398, + "y": 246.62825 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.67403, + "y": -1.50211 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.0326, + "y": -2.88591 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2215 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2217 + }, + "max": { + "#": 2218 + } + }, + { + "x": 967.14085, + "y": 220.2989 + }, + { + "x": 1007.93972, + "y": 270.0717 + }, + { + "x": 987.49138, + "y": 249.51416 + }, + [ + { + "#": 2221 + }, + { + "#": 2222 + }, + { + "#": 2223 + } + ], + { + "x": -0.50595, + "y": -0.86257 + }, + { + "x": 0.49403, + "y": -0.86944 + }, + { + "x": 0.99998, + "y": -0.00688 + }, + { + "id": "20,20,4,5", + "startCol": 20, + "endCol": 20, + "startRow": 4, + "endRow": 5 + }, + { + "id": 82, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2226 + }, + "angle": 0.00891, + "vertices": { + "#": 2227 + }, + "position": { + "#": 2232 + }, + "force": { + "#": 2233 + }, + "torque": 0, + "positionImpulse": { + "#": 2234 + }, + "constraintImpulse": { + "#": 2235 + }, + "totalContacts": 0, + "speed": 2.92847, + "angularSpeed": 0.00117, + "velocity": { + "#": 2236 + }, + "angularVelocity": 0.00117, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2237 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2238 + }, + "bounds": { + "#": 2240 + }, + "positionPrev": { + "#": 2243 + }, + "anglePrev": 0.00774, + "axes": { + "#": 2244 + }, + "area": 1006.25243, + "mass": 1.00625, + "inverseMass": 0.99379, + "inertia": 697.14617, + "inverseInertia": 0.00143, + "parent": { + "#": 2225 + }, + "sleepCounter": 0, + "region": { + "#": 2247 + } + }, + [ + { + "#": 2225 + } + ], + [ + { + "#": 2228 + }, + { + "#": 2229 + }, + { + "#": 2230 + }, + { + "#": 2231 + } + ], + { + "x": 1004.2236, + "y": 265.85961, + "index": 0, + "body": { + "#": 2225 + }, + "isInternal": false + }, + { + "x": 1040.26255, + "y": 266.18066, + "index": 1, + "body": { + "#": 2225 + }, + "isInternal": false + }, + { + "x": 1040.01384, + "y": 294.0997, + "index": 2, + "body": { + "#": 2225 + }, + "isInternal": false + }, + { + "x": 1003.97489, + "y": 293.77864, + "index": 3, + "body": { + "#": 2225 + }, + "isInternal": false + }, + { + "x": 1022.11872, + "y": 279.97965 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.39963, + "y": -0.98895 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02074, + "y": -2.9284 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2239 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2241 + }, + "max": { + "#": 2242 + } + }, + { + "x": 1003.97489, + "y": 262.93122 + }, + { + "x": 1040.2833, + "y": 294.0997 + }, + { + "x": 1022.09798, + "y": 282.90805 + }, + [ + { + "#": 2245 + }, + { + "#": 2246 + } + ], + { + "x": -0.00891, + "y": 0.99996 + }, + { + "x": -0.99996, + "y": -0.00891 + }, + { + "id": "20,21,5,6", + "startCol": 20, + "endCol": 21, + "startRow": 5, + "endRow": 6 + }, + { + "id": 83, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2249 + }, + "angle": -0.00053, + "vertices": { + "#": 2250 + }, + "position": { + "#": 2258 + }, + "force": { + "#": 2259 + }, + "torque": 0, + "positionImpulse": { + "#": 2260 + }, + "constraintImpulse": { + "#": 2261 + }, + "totalContacts": 0, + "speed": 2.91044, + "angularSpeed": 0.00013, + "velocity": { + "#": 2262 + }, + "angularVelocity": -0.00013, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2263 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2264 + }, + "bounds": { + "#": 2266 + }, + "positionPrev": { + "#": 2269 + }, + "anglePrev": -0.00041, + "axes": { + "#": 2270 + }, + "area": 3210.13014, + "mass": 3.21013, + "inverseMass": 0.31151, + "inertia": 6586.46215, + "inverseInertia": 0.00015, + "parent": { + "#": 2248 + }, + "sleepCounter": 0, + "region": { + "#": 2278 + } + }, + [ + { + "#": 2248 + } + ], + [ + { + "#": 2251 + }, + { + "#": 2252 + }, + { + "#": 2253 + }, + { + "#": 2254 + }, + { + "#": 2255 + }, + { + "#": 2256 + }, + { + "#": 2257 + } + ], + { + "x": 1085.97545, + "y": 350.78611, + "index": 0, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 1062.74836, + "y": 369.32952, + "index": 1, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 1033.76783, + "y": 362.73101, + "index": 2, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 1020.85752, + "y": 335.95991, + "index": 3, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 1033.73921, + "y": 309.17502, + "index": 4, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 1062.71267, + "y": 302.54553, + "index": 5, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 1085.95957, + "y": 321.06411, + "index": 6, + "body": { + "#": 2248 + }, + "isInternal": false + }, + { + "x": 1055.10865, + "y": 335.9416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.0002, + "y": -2.91044 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2265 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2267 + }, + "max": { + "#": 2268 + } + }, + { + "x": 1020.85752, + "y": 302.54553 + }, + { + "x": 1085.97545, + "y": 369.32952 + }, + { + "x": 1055.10885, + "y": 338.85205 + }, + [ + { + "#": 2271 + }, + { + "#": 2272 + }, + { + "#": 2273 + }, + { + "#": 2274 + }, + { + "#": 2275 + }, + { + "#": 2276 + }, + { + "#": 2277 + } + ], + { + "x": 0.62391, + "y": 0.7815 + }, + { + "x": -0.22201, + "y": 0.97505 + }, + { + "x": -0.90073, + "y": 0.43438 + }, + { + "x": -0.9012, + "y": -0.43341 + }, + { + "x": -0.22305, + "y": -0.97481 + }, + { + "x": 0.62307, + "y": -0.78216 + }, + { + "x": 1, + "y": -0.00053 + }, + { + "id": "21,22,6,7", + "startCol": 21, + "endCol": 22, + "startRow": 6, + "endRow": 7 + }, + { + "id": 84, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2280 + }, + "angle": -0.00372, + "vertices": { + "#": 2281 + }, + "position": { + "#": 2286 + }, + "force": { + "#": 2287 + }, + "torque": 0, + "positionImpulse": { + "#": 2288 + }, + "constraintImpulse": { + "#": 2289 + }, + "totalContacts": 0, + "speed": 2.89282, + "angularSpeed": 0.0007, + "velocity": { + "#": 2290 + }, + "angularVelocity": -0.0007, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2291 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2292 + }, + "bounds": { + "#": 2294 + }, + "positionPrev": { + "#": 2297 + }, + "anglePrev": -0.00301, + "axes": { + "#": 2298 + }, + "area": 1352.92727, + "mass": 1.35293, + "inverseMass": 0.73914, + "inertia": 1256.99094, + "inverseInertia": 0.0008, + "parent": { + "#": 2279 + }, + "sleepCounter": 0, + "region": { + "#": 2301 + } + }, + [ + { + "#": 2279 + } + ], + [ + { + "#": 2282 + }, + { + "#": 2283 + }, + { + "#": 2284 + }, + { + "#": 2285 + } + ], + { + "x": 1094.41973, + "y": 270.66621, + "index": 0, + "body": { + "#": 2279 + }, + "isInternal": false + }, + { + "x": 1135.98876, + "y": 270.51176, + "index": 1, + "body": { + "#": 2279 + }, + "isInternal": false + }, + { + "x": 1136.10969, + "y": 303.05783, + "index": 2, + "body": { + "#": 2279 + }, + "isInternal": false + }, + { + "x": 1094.54066, + "y": 303.21228, + "index": 3, + "body": { + "#": 2279 + }, + "isInternal": false + }, + { + "x": 1115.26471, + "y": 286.86202 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1.21091, + "y": -0.11421 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02136, + "y": -2.89275 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2293 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2295 + }, + "max": { + "#": 2296 + } + }, + { + "x": 1094.41973, + "y": 267.61901 + }, + { + "x": 1136.13105, + "y": 303.21228 + }, + { + "x": 1115.24335, + "y": 289.75477 + }, + [ + { + "#": 2299 + }, + { + "#": 2300 + } + ], + { + "x": 0.00372, + "y": 0.99999 + }, + { + "x": -0.99999, + "y": 0.00372 + }, + { + "id": "22,23,5,6", + "startCol": 22, + "endCol": 23, + "startRow": 5, + "endRow": 6 + }, + { + "id": 85, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2303 + }, + "angle": -0.06786, + "vertices": { + "#": 2304 + }, + "position": { + "#": 2309 + }, + "force": { + "#": 2310 + }, + "torque": 0, + "positionImpulse": { + "#": 2311 + }, + "constraintImpulse": { + "#": 2312 + }, + "totalContacts": 0, + "speed": 2.38376, + "angularSpeed": 0.00814, + "velocity": { + "#": 2313 + }, + "angularVelocity": -0.00814, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2314 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2315 + }, + "bounds": { + "#": 2317 + }, + "positionPrev": { + "#": 2320 + }, + "anglePrev": -0.05973, + "axes": { + "#": 2321 + }, + "area": 1720.12601, + "mass": 1.72013, + "inverseMass": 0.58135, + "inertia": 2025.86246, + "inverseInertia": 0.00049, + "parent": { + "#": 2302 + }, + "sleepCounter": 0, + "region": { + "#": 2324 + } + }, + [ + { + "#": 2302 + } + ], + [ + { + "#": 2305 + }, + { + "#": 2306 + }, + { + "#": 2307 + }, + { + "#": 2308 + } + ], + { + "x": 20.3029, + "y": 390.97469, + "index": 0, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 57.1505, + "y": 388.47021, + "index": 1, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 60.30883, + "y": 434.93772, + "index": 2, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 23.46123, + "y": 437.4422, + "index": 3, + "body": { + "#": 2302 + }, + "isInternal": false + }, + { + "x": 40.30587, + "y": 412.9562 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.14151, + "y": -2.37956 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2316 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2318 + }, + "max": { + "#": 2319 + } + }, + { + "x": 20.3029, + "y": 388.47021 + }, + { + "x": 60.30883, + "y": 437.4422 + }, + { + "x": 40.16436, + "y": 415.33576 + }, + [ + { + "#": 2322 + }, + { + "#": 2323 + } + ], + { + "x": 0.06781, + "y": 0.9977 + }, + { + "x": -0.9977, + "y": 0.06781 + }, + { + "id": "0,1,8,9", + "startCol": 0, + "endCol": 1, + "startRow": 8, + "endRow": 9 + }, + { + "id": 86, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2326 + }, + "angle": -0.05084, + "vertices": { + "#": 2327 + }, + "position": { + "#": 2332 + }, + "force": { + "#": 2333 + }, + "torque": 0, + "positionImpulse": { + "#": 2334 + }, + "constraintImpulse": { + "#": 2335 + }, + "totalContacts": 0, + "speed": 2.75915, + "angularSpeed": 0.00677, + "velocity": { + "#": 2336 + }, + "angularVelocity": -0.00677, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2337 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2338 + }, + "bounds": { + "#": 2340 + }, + "positionPrev": { + "#": 2343 + }, + "anglePrev": -0.04408, + "axes": { + "#": 2344 + }, + "area": 1250.16168, + "mass": 1.25016, + "inverseMass": 0.7999, + "inertia": 1044.21974, + "inverseInertia": 0.00096, + "parent": { + "#": 2325 + }, + "sleepCounter": 0, + "region": { + "#": 2347 + } + }, + [ + { + "#": 2325 + } + ], + [ + { + "#": 2328 + }, + { + "#": 2329 + }, + { + "#": 2330 + }, + { + "#": 2331 + } + ], + { + "x": 57.42172, + "y": 376.94265, + "index": 0, + "body": { + "#": 2325 + }, + "isInternal": false + }, + { + "x": 93.92195, + "y": 375.08523, + "index": 1, + "body": { + "#": 2325 + }, + "isInternal": false + }, + { + "x": 95.6604, + "y": 409.24756, + "index": 2, + "body": { + "#": 2325 + }, + "isInternal": false + }, + { + "x": 59.16017, + "y": 411.10498, + "index": 3, + "body": { + "#": 2325 + }, + "isInternal": false + }, + { + "x": 76.54106, + "y": 393.0951 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.01613, + "y": -0.26696 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.0382, + "y": -2.75888 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2339 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2341 + }, + "max": { + "#": 2342 + } + }, + { + "x": 57.42172, + "y": 372.32635 + }, + { + "x": 95.6986, + "y": 411.10498 + }, + { + "x": 76.50286, + "y": 395.85399 + }, + [ + { + "#": 2345 + }, + { + "#": 2346 + } + ], + { + "x": 0.05082, + "y": 0.99871 + }, + { + "x": -0.99871, + "y": 0.05082 + }, + { + "id": "1,1,7,8", + "startCol": 1, + "endCol": 1, + "startRow": 7, + "endRow": 8 + }, + { + "id": 87, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2349 + }, + "angle": -0.00293, + "vertices": { + "#": 2350 + }, + "position": { + "#": 2356 + }, + "force": { + "#": 2357 + }, + "torque": 0, + "positionImpulse": { + "#": 2358 + }, + "constraintImpulse": { + "#": 2359 + }, + "totalContacts": 0, + "speed": 2.88525, + "angularSpeed": 0.00065, + "velocity": { + "#": 2360 + }, + "angularVelocity": -0.00069, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2361 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2362 + }, + "bounds": { + "#": 2364 + }, + "positionPrev": { + "#": 2367 + }, + "anglePrev": -0.00225, + "axes": { + "#": 2368 + }, + "area": 3092.07523, + "mass": 3.09208, + "inverseMass": 0.32341, + "inertia": 6189.98562, + "inverseInertia": 0.00016, + "parent": { + "#": 2348 + }, + "sleepCounter": 0, + "region": { + "#": 2374 + } + }, + [ + { + "#": 2348 + } + ], + [ + { + "#": 2351 + }, + { + "#": 2352 + }, + { + "#": 2353 + }, + { + "#": 2354 + }, + { + "#": 2355 + } + ], + { + "x": 150.5133, + "y": 442.81594, + "index": 0, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 110.23283, + "y": 456.03393, + "index": 1, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 85.21452, + "y": 421.81004, + "index": 2, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 110.03199, + "y": 387.44023, + "index": 3, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 150.38917, + "y": 400.42212, + "index": 4, + "body": { + "#": 2348 + }, + "isInternal": false + }, + { + "x": 121.27648, + "y": 421.70445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -1.7413, + "y": 0.00437 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.07681, + "y": -2.88315 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2363 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2365 + }, + "max": { + "#": 2366 + } + }, + { + "x": 85.17062, + "y": 384.55532 + }, + { + "x": 150.5133, + "y": 456.03393 + }, + { + "x": 121.35484, + "y": 424.58732 + }, + [ + { + "#": 2369 + }, + { + "#": 2370 + }, + { + "#": 2371 + }, + { + "#": 2372 + }, + { + "#": 2373 + } + ], + { + "x": 0.31179, + "y": 0.95015 + }, + { + "x": -0.8073, + "y": 0.59015 + }, + { + "x": -0.81074, + "y": -0.58541 + }, + { + "x": 0.30622, + "y": -0.95196 + }, + { + "x": 1, + "y": -0.00293 + }, + { + "id": "1,3,8,9", + "startCol": 1, + "endCol": 3, + "startRow": 8, + "endRow": 9 + }, + { + "id": 88, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2376 + }, + "angle": 0.00037, + "vertices": { + "#": 2377 + }, + "position": { + "#": 2382 + }, + "force": { + "#": 2383 + }, + "torque": 0, + "positionImpulse": { + "#": 2384 + }, + "constraintImpulse": { + "#": 2385 + }, + "totalContacts": 0, + "speed": 2.89487, + "angularSpeed": 0.00034, + "velocity": { + "#": 2386 + }, + "angularVelocity": 0.00043, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2387 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2388 + }, + "bounds": { + "#": 2390 + }, + "positionPrev": { + "#": 2393 + }, + "anglePrev": -0.0001, + "axes": { + "#": 2394 + }, + "area": 1581.4152, + "mass": 1.58142, + "inverseMass": 0.63235, + "inertia": 1771.7086, + "inverseInertia": 0.00056, + "parent": { + "#": 2375 + }, + "sleepCounter": 0, + "region": { + "#": 2397 + } + }, + [ + { + "#": 2375 + } + ], + [ + { + "#": 2378 + }, + { + "#": 2379 + }, + { + "#": 2380 + }, + { + "#": 2381 + } + ], + { + "x": 150.16798, + "y": 384.93665, + "index": 0, + "body": { + "#": 2375 + }, + "isInternal": false + }, + { + "x": 197.59159, + "y": 384.95438, + "index": 1, + "body": { + "#": 2375 + }, + "isInternal": false + }, + { + "x": 197.57912, + "y": 418.30096, + "index": 2, + "body": { + "#": 2375 + }, + "isInternal": false + }, + { + "x": 150.15551, + "y": 418.28323, + "index": 3, + "body": { + "#": 2375 + }, + "isInternal": false + }, + { + "x": 173.87355, + "y": 401.6188 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -1.6347, + "y": -0.00299 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.0841, + "y": -2.89051 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2389 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2391 + }, + "max": { + "#": 2392 + } + }, + { + "x": 150.10066, + "y": 382.0423 + }, + { + "x": 197.59159, + "y": 418.30096 + }, + { + "x": 173.96221, + "y": 404.50855 + }, + [ + { + "#": 2395 + }, + { + "#": 2396 + } + ], + { + "x": -0.00037, + "y": 1 + }, + { + "x": -1, + "y": -0.00037 + }, + { + "id": "3,4,8,8", + "startCol": 3, + "endCol": 4, + "startRow": 8, + "endRow": 8 + }, + { + "id": 89, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2399 + }, + "angle": -0.00021, + "vertices": { + "#": 2400 + }, + "position": { + "#": 2409 + }, + "force": { + "#": 2410 + }, + "torque": 0, + "positionImpulse": { + "#": 2411 + }, + "constraintImpulse": { + "#": 2412 + }, + "totalContacts": 0, + "speed": 2.89134, + "angularSpeed": 0.00011, + "velocity": { + "#": 2413 + }, + "angularVelocity": -0.00019, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2414 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2415 + }, + "bounds": { + "#": 2417 + }, + "positionPrev": { + "#": 2420 + }, + "anglePrev": -0.00003, + "axes": { + "#": 2421 + }, + "area": 4508.288, + "mass": 4.50829, + "inverseMass": 0.22181, + "inertia": 12968.58039, + "inverseInertia": 0.00008, + "parent": { + "#": 2398 + }, + "sleepCounter": 0, + "region": { + "#": 2426 + } + }, + [ + { + "#": 2398 + } + ], + [ + { + "#": 2401 + }, + { + "#": 2402 + }, + { + "#": 2403 + }, + { + "#": 2404 + }, + { + "#": 2405 + }, + { + "#": 2406 + }, + { + "#": 2407 + }, + { + "#": 2408 + } + ], + { + "x": 270.64264, + "y": 437.14724, + "index": 0, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 249.04012, + "y": 458.75872, + "index": 1, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 218.48412, + "y": 458.76506, + "index": 2, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 196.87264, + "y": 437.16254, + "index": 3, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 196.8663, + "y": 406.60654, + "index": 4, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 218.46882, + "y": 384.99506, + "index": 5, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 249.02482, + "y": 384.98872, + "index": 6, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 270.6363, + "y": 406.59124, + "index": 7, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 233.75447, + "y": 421.87689 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -1.39263, + "y": 0.00853 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.09352, + "y": -2.88507 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2416 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2418 + }, + "max": { + "#": 2419 + } + }, + { + "x": 196.80896, + "y": 382.09795 + }, + { + "x": 270.64264, + "y": 458.76506 + }, + { + "x": 233.84639, + "y": 424.76222 + }, + [ + { + "#": 2422 + }, + { + "#": 2423 + }, + { + "#": 2424 + }, + { + "#": 2425 + } + ], + { + "x": -0.70725, + "y": -0.70696 + }, + { + "x": -0.00021, + "y": -1 + }, + { + "x": 0.70696, + "y": -0.70725 + }, + { + "x": 1, + "y": -0.00021 + }, + { + "id": "4,5,8,9", + "startCol": 4, + "endCol": 5, + "startRow": 8, + "endRow": 9 + }, + { + "id": 90, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2428 + }, + "angle": -0.00357, + "vertices": { + "#": 2429 + }, + "position": { + "#": 2434 + }, + "force": { + "#": 2435 + }, + "torque": 0, + "positionImpulse": { + "#": 2436 + }, + "constraintImpulse": { + "#": 2437 + }, + "totalContacts": 0, + "speed": 2.9256, + "angularSpeed": 0.00155, + "velocity": { + "#": 2438 + }, + "angularVelocity": -0.00209, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2439 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2440 + }, + "bounds": { + "#": 2442 + }, + "positionPrev": { + "#": 2445 + }, + "anglePrev": -0.00165, + "axes": { + "#": 2446 + }, + "area": 1039.62673, + "mass": 1.03963, + "inverseMass": 0.96188, + "inertia": 836.76945, + "inverseInertia": 0.0012, + "parent": { + "#": 2427 + }, + "sleepCounter": 0, + "region": { + "#": 2449 + } + }, + [ + { + "#": 2427 + } + ], + [ + { + "#": 2430 + }, + { + "#": 2431 + }, + { + "#": 2432 + }, + { + "#": 2433 + } + ], + { + "x": 269.51384, + "y": 384.98235, + "index": 0, + "body": { + "#": 2427 + }, + "isInternal": false + }, + { + "x": 312.18834, + "y": 384.82996, + "index": 1, + "body": { + "#": 2427 + }, + "isInternal": false + }, + { + "x": 312.27533, + "y": 409.19143, + "index": 2, + "body": { + "#": 2427 + }, + "isInternal": false + }, + { + "x": 269.60084, + "y": 409.34382, + "index": 3, + "body": { + "#": 2427 + }, + "isInternal": false + }, + { + "x": 290.89459, + "y": 397.08689 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -1.08532, + "y": -0.0039 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.11901, + "y": -2.931 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2441 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2443 + }, + "max": { + "#": 2444 + } + }, + { + "x": 269.41735, + "y": 381.90595 + }, + { + "x": 312.27533, + "y": 409.34382 + }, + { + "x": 291.0276, + "y": 400.01726 + }, + [ + { + "#": 2447 + }, + { + "#": 2448 + } + ], + { + "x": 0.00357, + "y": 0.99999 + }, + { + "x": -0.99999, + "y": 0.00357 + }, + { + "id": "5,6,8,8", + "startCol": 5, + "endCol": 6, + "startRow": 8, + "endRow": 8 + }, + { + "id": 91, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2451 + }, + "angle": -0.00134, + "vertices": { + "#": 2452 + }, + "position": { + "#": 2457 + }, + "force": { + "#": 2458 + }, + "torque": 0, + "positionImpulse": { + "#": 2459 + }, + "constraintImpulse": { + "#": 2460 + }, + "totalContacts": 0, + "speed": 2.96576, + "angularSpeed": 0.00039, + "velocity": { + "#": 2461 + }, + "angularVelocity": -0.0006, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2462 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2463 + }, + "bounds": { + "#": 2465 + }, + "positionPrev": { + "#": 2468 + }, + "anglePrev": -0.0007, + "axes": { + "#": 2469 + }, + "area": 1574.87173, + "mass": 1.57487, + "inverseMass": 0.63497, + "inertia": 1691.40994, + "inverseInertia": 0.00059, + "parent": { + "#": 2450 + }, + "sleepCounter": 0, + "region": { + "#": 2472 + } + }, + [ + { + "#": 2450 + } + ], + [ + { + "#": 2453 + }, + { + "#": 2454 + }, + { + "#": 2455 + }, + { + "#": 2456 + } + ], + { + "x": 310.99195, + "y": 384.84533, + "index": 0, + "body": { + "#": 2450 + }, + "isInternal": false + }, + { + "x": 346.65344, + "y": 384.79743, + "index": 1, + "body": { + "#": 2450 + }, + "isInternal": false + }, + { + "x": 346.71276, + "y": 428.95904, + "index": 2, + "body": { + "#": 2450 + }, + "isInternal": false + }, + { + "x": 311.05127, + "y": 429.00694, + "index": 3, + "body": { + "#": 2450 + }, + "isInternal": false + }, + { + "x": 328.85236, + "y": 406.90219 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.80183, + "y": 0.00031 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.13024, + "y": -2.98358 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2464 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2466 + }, + "max": { + "#": 2467 + } + }, + { + "x": 310.88293, + "y": 381.83368 + }, + { + "x": 346.71276, + "y": 429.00694 + }, + { + "x": 328.99265, + "y": 409.88534 + }, + [ + { + "#": 2470 + }, + { + "#": 2471 + } + ], + { + "x": 0.00134, + "y": 1 + }, + { + "x": -1, + "y": 0.00134 + }, + { + "id": "6,7,8,8", + "startCol": 6, + "endCol": 7, + "startRow": 8, + "endRow": 8 + }, + { + "id": 92, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2474 + }, + "angle": 0.00171, + "vertices": { + "#": 2475 + }, + "position": { + "#": 2480 + }, + "force": { + "#": 2481 + }, + "torque": 0, + "positionImpulse": { + "#": 2482 + }, + "constraintImpulse": { + "#": 2483 + }, + "totalContacts": 0, + "speed": 2.95601, + "angularSpeed": 0.00073, + "velocity": { + "#": 2484 + }, + "angularVelocity": 0.00077, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2485 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2486 + }, + "bounds": { + "#": 2488 + }, + "positionPrev": { + "#": 2491 + }, + "anglePrev": 0.00084, + "axes": { + "#": 2492 + }, + "area": 968.38796, + "mass": 0.96839, + "inverseMass": 1.03264, + "inertia": 797.61752, + "inverseInertia": 0.00125, + "parent": { + "#": 2473 + }, + "sleepCounter": 0, + "region": { + "#": 2495 + } + }, + [ + { + "#": 2473 + } + ], + [ + { + "#": 2476 + }, + { + "#": 2477 + }, + { + "#": 2478 + }, + { + "#": 2479 + } + ], + { + "x": 345.36625, + "y": 384.73818, + "index": 0, + "body": { + "#": 2473 + }, + "isInternal": false + }, + { + "x": 390.11786, + "y": 384.81472, + "index": 1, + "body": { + "#": 2473 + }, + "isInternal": false + }, + { + "x": 390.08085, + "y": 406.45383, + "index": 2, + "body": { + "#": 2473 + }, + "isInternal": false + }, + { + "x": 345.32925, + "y": 406.3773, + "index": 3, + "body": { + "#": 2473 + }, + "isInternal": false + }, + { + "x": 367.72355, + "y": 395.59601 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.57906, + "y": -0.01928 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.15034, + "y": -2.97344 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2487 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2489 + }, + "max": { + "#": 2490 + } + }, + { + "x": 345.1924, + "y": 381.78534 + }, + { + "x": 390.11786, + "y": 406.45383 + }, + { + "x": 367.89098, + "y": 398.56919 + }, + [ + { + "#": 2493 + }, + { + "#": 2494 + } + ], + { + "x": -0.00171, + "y": 1 + }, + { + "x": -1, + "y": -0.00171 + }, + { + "id": "7,8,8,8", + "startCol": 7, + "endCol": 8, + "startRow": 8, + "endRow": 8 + }, + { + "id": 93, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2497 + }, + "angle": 0.00439, + "vertices": { + "#": 2498 + }, + "position": { + "#": 2503 + }, + "force": { + "#": 2504 + }, + "torque": 0, + "positionImpulse": { + "#": 2505 + }, + "constraintImpulse": { + "#": 2506 + }, + "totalContacts": 0, + "speed": 2.92159, + "angularSpeed": 0.0015, + "velocity": { + "#": 2507 + }, + "angularVelocity": 0.00192, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2508 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2509 + }, + "bounds": { + "#": 2511 + }, + "positionPrev": { + "#": 2514 + }, + "anglePrev": 0.00256, + "axes": { + "#": 2515 + }, + "area": 1379.26758, + "mass": 1.37927, + "inverseMass": 0.72502, + "inertia": 1297.38361, + "inverseInertia": 0.00077, + "parent": { + "#": 2496 + }, + "sleepCounter": 0, + "region": { + "#": 2518 + } + }, + [ + { + "#": 2496 + } + ], + [ + { + "#": 2499 + }, + { + "#": 2500 + }, + { + "#": 2501 + }, + { + "#": 2502 + } + ], + { + "x": 388.78381, + "y": 384.85989, + "index": 0, + "body": { + "#": 2496 + }, + "isInternal": false + }, + { + "x": 422.15463, + "y": 385.00627, + "index": 1, + "body": { + "#": 2496 + }, + "isInternal": false + }, + { + "x": 421.97333, + "y": 426.33702, + "index": 2, + "body": { + "#": 2496 + }, + "isInternal": false + }, + { + "x": 388.60251, + "y": 426.19064, + "index": 3, + "body": { + "#": 2496 + }, + "isInternal": false + }, + { + "x": 405.37857, + "y": 405.59845 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.42607, + "y": 0.00082 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.18984, + "y": -2.9266 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2510 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2512 + }, + "max": { + "#": 2513 + } + }, + { + "x": 388.43188, + "y": 381.94328 + }, + { + "x": 422.15463, + "y": 426.33702 + }, + { + "x": 405.58061, + "y": 408.52578 + }, + [ + { + "#": 2516 + }, + { + "#": 2517 + } + ], + { + "x": -0.00439, + "y": 0.99999 + }, + { + "x": -0.99999, + "y": -0.00439 + }, + { + "id": "8,8,8,8", + "startCol": 8, + "endCol": 8, + "startRow": 8, + "endRow": 8 + }, + { + "id": 94, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2520 + }, + "angle": 0.00004, + "vertices": { + "#": 2521 + }, + "position": { + "#": 2528 + }, + "force": { + "#": 2529 + }, + "torque": 0, + "positionImpulse": { + "#": 2530 + }, + "constraintImpulse": { + "#": 2531 + }, + "totalContacts": 0, + "speed": 2.90045, + "angularSpeed": 0.00006, + "velocity": { + "#": 2532 + }, + "angularVelocity": 0.00013, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2533 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2534 + }, + "bounds": { + "#": 2536 + }, + "positionPrev": { + "#": 2539 + }, + "anglePrev": -0.00019, + "axes": { + "#": 2540 + }, + "area": 1475.91406, + "mass": 1.47591, + "inverseMass": 0.67755, + "inertia": 1397.39442, + "inverseInertia": 0.00072, + "parent": { + "#": 2519 + }, + "sleepCounter": 0, + "region": { + "#": 2544 + } + }, + [ + { + "#": 2519 + } + ], + [ + { + "#": 2522 + }, + { + "#": 2523 + }, + { + "#": 2524 + }, + { + "#": 2525 + }, + { + "#": 2526 + }, + { + "#": 2527 + } + ], + { + "x": 461.97798, + "y": 420.78562, + "index": 0, + "body": { + "#": 2519 + }, + "isInternal": false + }, + { + "x": 441.33646, + "y": 432.70273, + "index": 1, + "body": { + "#": 2519 + }, + "isInternal": false + }, + { + "x": 420.69598, + "y": 420.78384, + "index": 2, + "body": { + "#": 2519 + }, + "isInternal": false + }, + { + "x": 420.69701, + "y": 396.94984, + "index": 3, + "body": { + "#": 2519 + }, + "isInternal": false + }, + { + "x": 441.33853, + "y": 385.03273, + "index": 4, + "body": { + "#": 2519 + }, + "isInternal": false + }, + { + "x": 461.97901, + "y": 396.95162, + "index": 5, + "body": { + "#": 2519 + }, + "isInternal": false + }, + { + "x": 441.3375, + "y": 408.86773 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.32022, + "y": 0.01671 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.22255, + "y": -2.89714 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2535 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2537 + }, + "max": { + "#": 2538 + } + }, + { + "x": 420.51675, + "y": 382.13783 + }, + { + "x": 461.97901, + "y": 432.70273 + }, + { + "x": 441.54865, + "y": 411.76419 + }, + [ + { + "#": 2541 + }, + { + "#": 2542 + }, + { + "#": 2543 + } + ], + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": 0.50007, + "y": -0.86599 + }, + { + "x": 1, + "y": 0.00004 + }, + { + "id": "8,9,8,9", + "startCol": 8, + "endCol": 9, + "startRow": 8, + "endRow": 9 + }, + { + "id": 95, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2546 + }, + "angle": -0.00102, + "vertices": { + "#": 2547 + }, + "position": { + "#": 2552 + }, + "force": { + "#": 2553 + }, + "torque": 0, + "positionImpulse": { + "#": 2554 + }, + "constraintImpulse": { + "#": 2555 + }, + "totalContacts": 0, + "speed": 2.91266, + "angularSpeed": 0.00034, + "velocity": { + "#": 2556 + }, + "angularVelocity": -0.00039, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2557 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2558 + }, + "bounds": { + "#": 2560 + }, + "positionPrev": { + "#": 2563 + }, + "anglePrev": -0.00064, + "axes": { + "#": 2564 + }, + "area": 2731.5257, + "mass": 2.73153, + "inverseMass": 0.3661, + "inertia": 4974.15509, + "inverseInertia": 0.0002, + "parent": { + "#": 2545 + }, + "sleepCounter": 0, + "region": { + "#": 2567 + } + }, + [ + { + "#": 2545 + } + ], + [ + { + "#": 2548 + }, + { + "#": 2549 + }, + { + "#": 2550 + }, + { + "#": 2551 + } + ], + { + "x": 512.86189, + "y": 437.18128, + "index": 0, + "body": { + "#": 2545 + }, + "isInternal": false + }, + { + "x": 460.59792, + "y": 437.23456, + "index": 1, + "body": { + "#": 2545 + }, + "isInternal": false + }, + { + "x": 460.54463, + "y": 384.97059, + "index": 2, + "body": { + "#": 2545 + }, + "isInternal": false + }, + { + "x": 512.8086, + "y": 384.91731, + "index": 3, + "body": { + "#": 2545 + }, + "isInternal": false + }, + { + "x": 486.70326, + "y": 411.07593 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.23322, + "y": 0.00012 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.23016, + "y": -2.90577 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2559 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2561 + }, + "max": { + "#": 2562 + } + }, + { + "x": 460.35055, + "y": 382.01112 + }, + { + "x": 512.86189, + "y": 437.23456 + }, + { + "x": 486.92723, + "y": 413.98091 + }, + [ + { + "#": 2565 + }, + { + "#": 2566 + } + ], + { + "x": -0.00102, + "y": -1 + }, + { + "x": 1, + "y": -0.00102 + }, + { + "id": "9,10,8,9", + "startCol": 9, + "endCol": 10, + "startRow": 8, + "endRow": 9 + }, + { + "id": 96, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2569 + }, + "angle": 0.00031, + "vertices": { + "#": 2570 + }, + "position": { + "#": 2577 + }, + "force": { + "#": 2578 + }, + "torque": 0, + "positionImpulse": { + "#": 2579 + }, + "constraintImpulse": { + "#": 2580 + }, + "totalContacts": 0, + "speed": 2.91924, + "angularSpeed": 0.00018, + "velocity": { + "#": 2581 + }, + "angularVelocity": 0.00037, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2582 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2583 + }, + "bounds": { + "#": 2585 + }, + "positionPrev": { + "#": 2588 + }, + "anglePrev": 0.00004, + "axes": { + "#": 2589 + }, + "area": 1453.96239, + "mass": 1.45396, + "inverseMass": 0.68778, + "inertia": 1356.13589, + "inverseInertia": 0.00074, + "parent": { + "#": 2568 + }, + "sleepCounter": 0, + "region": { + "#": 2593 + } + }, + [ + { + "#": 2568 + } + ], + [ + { + "#": 2571 + }, + { + "#": 2572 + }, + { + "#": 2573 + }, + { + "#": 2574 + }, + { + "#": 2575 + }, + { + "#": 2576 + } + ], + { + "x": 552.3612, + "y": 420.38353, + "index": 0, + "body": { + "#": 2568 + }, + "isInternal": false + }, + { + "x": 531.87057, + "y": 432.20624, + "index": 1, + "body": { + "#": 2568 + }, + "isInternal": false + }, + { + "x": 511.3872, + "y": 420.37095, + "index": 2, + "body": { + "#": 2568 + }, + "isInternal": false + }, + { + "x": 511.39446, + "y": 396.71495, + "index": 3, + "body": { + "#": 2568 + }, + "isInternal": false + }, + { + "x": 531.8851, + "y": 384.89224, + "index": 4, + "body": { + "#": 2568 + }, + "isInternal": false + }, + { + "x": 552.36846, + "y": 396.72754, + "index": 5, + "body": { + "#": 2568 + }, + "isInternal": false + }, + { + "x": 531.87783, + "y": 408.54924 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.15713, + "y": -0.01278 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.24452, + "y": -2.91159 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2584 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2586 + }, + "max": { + "#": 2587 + } + }, + { + "x": 511.18285, + "y": 381.98017 + }, + { + "x": 552.36846, + "y": 432.20624 + }, + { + "x": 532.11107, + "y": 411.45946 + }, + [ + { + "#": 2590 + }, + { + "#": 2591 + }, + { + "#": 2592 + } + ], + { + "x": -0.49976, + "y": -0.86616 + }, + { + "x": 0.50029, + "y": -0.86586 + }, + { + "x": 1, + "y": 0.00031 + }, + { + "id": "10,11,8,9", + "startCol": 10, + "endCol": 11, + "startRow": 8, + "endRow": 9 + }, + { + "id": 97, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2595 + }, + "angle": 0.00342, + "vertices": { + "#": 2596 + }, + "position": { + "#": 2601 + }, + "force": { + "#": 2602 + }, + "torque": 0, + "positionImpulse": { + "#": 2603 + }, + "constraintImpulse": { + "#": 2604 + }, + "totalContacts": 0, + "speed": 2.88115, + "angularSpeed": 0.00119, + "velocity": { + "#": 2605 + }, + "angularVelocity": 0.00143, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2606 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2607 + }, + "bounds": { + "#": 2609 + }, + "positionPrev": { + "#": 2612 + }, + "anglePrev": 0.00199, + "axes": { + "#": 2613 + }, + "area": 4826.0809, + "mass": 4.82608, + "inverseMass": 0.20721, + "inertia": 15527.37124, + "inverseInertia": 0.00006, + "parent": { + "#": 2594 + }, + "sleepCounter": 0, + "region": { + "#": 2616 + } + }, + [ + { + "#": 2594 + } + ], + [ + { + "#": 2597 + }, + { + "#": 2598 + }, + { + "#": 2599 + }, + { + "#": 2600 + } + ], + { + "x": 620.20174, + "y": 454.65929, + "index": 0, + "body": { + "#": 2594 + }, + "isInternal": false + }, + { + "x": 550.73215, + "y": 454.4217, + "index": 1, + "body": { + "#": 2594 + }, + "isInternal": false + }, + { + "x": 550.96973, + "y": 384.95211, + "index": 2, + "body": { + "#": 2594 + }, + "isInternal": false + }, + { + "x": 620.43933, + "y": 385.1897, + "index": 3, + "body": { + "#": 2594 + }, + "isInternal": false + }, + { + "x": 585.58574, + "y": 419.8057 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.08352, + "y": -0.00029 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.26552, + "y": -2.86049 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2608 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2610 + }, + "max": { + "#": 2611 + } + }, + { + "x": 550.50003, + "y": 382.08032 + }, + { + "x": 620.43933, + "y": 454.65929 + }, + { + "x": 585.84797, + "y": 422.6659 + }, + [ + { + "#": 2614 + }, + { + "#": 2615 + } + ], + { + "x": 0.00342, + "y": -0.99999 + }, + { + "x": 0.99999, + "y": 0.00342 + }, + { + "id": "11,12,8,9", + "startCol": 11, + "endCol": 12, + "startRow": 8, + "endRow": 9 + }, + { + "id": 98, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2618 + }, + "angle": 0.02599, + "vertices": { + "#": 2619 + }, + "position": { + "#": 2624 + }, + "force": { + "#": 2625 + }, + "torque": 0, + "positionImpulse": { + "#": 2626 + }, + "constraintImpulse": { + "#": 2627 + }, + "totalContacts": 0, + "speed": 2.69878, + "angularSpeed": 0.0057, + "velocity": { + "#": 2628 + }, + "angularVelocity": 0.00667, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2629 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2630 + }, + "bounds": { + "#": 2632 + }, + "positionPrev": { + "#": 2635 + }, + "anglePrev": 0.01944, + "axes": { + "#": 2636 + }, + "area": 1288.74263, + "mass": 1.28874, + "inverseMass": 0.77595, + "inertia": 1283.52541, + "inverseInertia": 0.00078, + "parent": { + "#": 2617 + }, + "sleepCounter": 0, + "region": { + "#": 2639 + } + }, + [ + { + "#": 2617 + } + ], + [ + { + "#": 2620 + }, + { + "#": 2621 + }, + { + "#": 2622 + }, + { + "#": 2623 + } + ], + { + "x": 619.45389, + "y": 391.5051, + "index": 0, + "body": { + "#": 2617 + }, + "isInternal": false + }, + { + "x": 666.86726, + "y": 392.73789, + "index": 1, + "body": { + "#": 2617 + }, + "isInternal": false + }, + { + "x": 666.16101, + "y": 419.90052, + "index": 2, + "body": { + "#": 2617 + }, + "isInternal": false + }, + { + "x": 618.74764, + "y": 418.66774, + "index": 3, + "body": { + "#": 2617 + }, + "isInternal": false + }, + { + "x": 642.80745, + "y": 405.70281 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.03354, + "y": -0.12512 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.20257, + "y": -2.65317 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2631 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2633 + }, + "max": { + "#": 2634 + } + }, + { + "x": 618.57032, + "y": 388.81216 + }, + { + "x": 666.86726, + "y": 419.90052 + }, + { + "x": 643.00036, + "y": 408.35636 + }, + [ + { + "#": 2637 + }, + { + "#": 2638 + } + ], + { + "x": -0.02599, + "y": 0.99966 + }, + { + "x": -0.99966, + "y": -0.02599 + }, + { + "id": "12,13,8,8", + "startCol": 12, + "endCol": 13, + "startRow": 8, + "endRow": 8 + }, + { + "id": 99, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2641 + }, + "angle": 0.06274, + "vertices": { + "#": 2642 + }, + "position": { + "#": 2648 + }, + "force": { + "#": 2649 + }, + "torque": 0, + "positionImpulse": { + "#": 2650 + }, + "constraintImpulse": { + "#": 2651 + }, + "totalContacts": 0, + "speed": 2.26258, + "angularSpeed": 0.01165, + "velocity": { + "#": 2652 + }, + "angularVelocity": 0.01308, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2653 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2654 + }, + "bounds": { + "#": 2656 + }, + "positionPrev": { + "#": 2659 + }, + "anglePrev": 0.04969, + "axes": { + "#": 2660 + }, + "area": 1779.8838, + "mass": 1.77988, + "inverseMass": 0.56183, + "inertia": 2051.03388, + "inverseInertia": 0.00049, + "parent": { + "#": 2640 + }, + "sleepCounter": 0, + "region": { + "#": 2666 + } + }, + [ + { + "#": 2640 + } + ], + [ + { + "#": 2643 + }, + { + "#": 2644 + }, + { + "#": 2645 + }, + { + "#": 2646 + }, + { + "#": 2647 + } + ], + { + "x": 713.00899, + "y": 436.03743, + "index": 0, + "body": { + "#": 2640 + }, + "isInternal": false + }, + { + "x": 681.85605, + "y": 444.03906, + "index": 1, + "body": { + "#": 2640 + }, + "isInternal": false + }, + { + "x": 664.61861, + "y": 416.88395, + "index": 2, + "body": { + "#": 2640 + }, + "isInternal": false + }, + { + "x": 685.11879, + "y": 392.09944, + "index": 3, + "body": { + "#": 2640 + }, + "isInternal": false + }, + { + "x": 715.02549, + "y": 403.9367, + "index": 4, + "body": { + "#": 2640 + }, + "isInternal": false + }, + { + "x": 691.92558, + "y": 418.59931 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.0009, + "y": -0.17494 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.29931, + "y": -2.15225 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2655 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2657 + }, + "max": { + "#": 2658 + } + }, + { + "x": 664.34, + "y": 389.85408 + }, + { + "x": 715.02549, + "y": 444.03906 + }, + { + "x": 692.23128, + "y": 420.75068 + }, + [ + { + "#": 2661 + }, + { + "#": 2662 + }, + { + "#": 2663 + }, + { + "#": 2664 + }, + { + "#": 2665 + } + ], + { + "x": 0.24877, + "y": 0.96856 + }, + { + "x": -0.84427, + "y": 0.53592 + }, + { + "x": -0.77056, + "y": -0.63736 + }, + { + "x": 0.36803, + "y": -0.92982 + }, + { + "x": 0.99803, + "y": 0.06269 + }, + { + "id": "13,14,8,9", + "startCol": 13, + "endCol": 14, + "startRow": 8, + "endRow": 9 + }, + { + "id": 100, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2668 + }, + "angle": 0.05795, + "vertices": { + "#": 2669 + }, + "position": { + "#": 2674 + }, + "force": { + "#": 2675 + }, + "torque": 0, + "positionImpulse": { + "#": 2676 + }, + "constraintImpulse": { + "#": 2677 + }, + "totalContacts": 0, + "speed": 1.67224, + "angularSpeed": 0.01103, + "velocity": { + "#": 2678 + }, + "angularVelocity": 0.01266, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2679 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2680 + }, + "bounds": { + "#": 2682 + }, + "positionPrev": { + "#": 2685 + }, + "anglePrev": 0.04528, + "axes": { + "#": 2686 + }, + "area": 4428.37012, + "mass": 4.42837, + "inverseMass": 0.22582, + "inertia": 13073.64126, + "inverseInertia": 0.00008, + "parent": { + "#": 2667 + }, + "sleepCounter": 0, + "region": { + "#": 2689 + } + }, + [ + { + "#": 2667 + } + ], + [ + { + "#": 2670 + }, + { + "#": 2671 + }, + { + "#": 2672 + }, + { + "#": 2673 + } + ], + { + "x": 776.75017, + "y": 460.49346, + "index": 0, + "body": { + "#": 2667 + }, + "isInternal": false + }, + { + "x": 710.31589, + "y": 456.63912, + "index": 1, + "body": { + "#": 2667 + }, + "isInternal": false + }, + { + "x": 714.17023, + "y": 390.20483, + "index": 2, + "body": { + "#": 2667 + }, + "isInternal": false + }, + { + "x": 780.60452, + "y": 394.05918, + "index": 3, + "body": { + "#": 2667 + }, + "isInternal": false + }, + { + "x": 745.4602, + "y": 425.34915 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.39614, + "y": -1.46168 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2681 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2683 + }, + "max": { + "#": 2684 + } + }, + { + "x": 709.97077, + "y": 388.5686 + }, + { + "x": 780.60452, + "y": 460.49346 + }, + { + "x": 745.85377, + "y": 426.81118 + }, + [ + { + "#": 2687 + }, + { + "#": 2688 + } + ], + { + "x": 0.05792, + "y": -0.99832 + }, + { + "x": 0.99832, + "y": 0.05792 + }, + { + "id": "14,16,8,9", + "startCol": 14, + "endCol": 16, + "startRow": 8, + "endRow": 9 + }, + { + "id": 101, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2691 + }, + "angle": -0.02439, + "vertices": { + "#": 2692 + }, + "position": { + "#": 2719 + }, + "force": { + "#": 2720 + }, + "torque": 0, + "positionImpulse": { + "#": 2721 + }, + "constraintImpulse": { + "#": 2722 + }, + "totalContacts": 0, + "speed": 2.72218, + "angularSpeed": 0.00248, + "velocity": { + "#": 2723 + }, + "angularVelocity": -0.00248, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2724 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2725 + }, + "circleRadius": 35.88632, + "bounds": { + "#": 2727 + }, + "positionPrev": { + "#": 2730 + }, + "anglePrev": -0.0219, + "axes": { + "#": 2731 + }, + "area": 4006.57748, + "mass": 4.00658, + "inverseMass": 0.24959, + "inertia": 10219.63772, + "inverseInertia": 0.0001, + "parent": { + "#": 2690 + }, + "sleepCounter": 0, + "region": { + "#": 2745 + } + }, + [ + { + "#": 2690 + } + ], + [ + { + "#": 2693 + }, + { + "#": 2694 + }, + { + "#": 2695 + }, + { + "#": 2696 + }, + { + "#": 2697 + }, + { + "#": 2698 + }, + { + "#": 2699 + }, + { + "#": 2700 + }, + { + "#": 2701 + }, + { + "#": 2702 + }, + { + "#": 2703 + }, + { + "#": 2704 + }, + { + "#": 2705 + }, + { + "#": 2706 + }, + { + "#": 2707 + }, + { + "#": 2708 + }, + { + "#": 2709 + }, + { + "#": 2710 + }, + { + "#": 2711 + }, + { + "#": 2712 + }, + { + "#": 2713 + }, + { + "#": 2714 + }, + { + "#": 2715 + }, + { + "#": 2716 + }, + { + "#": 2717 + }, + { + "#": 2718 + } + ], + { + "x": 921.14459, + "y": 443.15955, + "index": 0, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 919.279, + "y": 451.60655, + "index": 1, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 915.447, + "y": 459.3633, + "index": 2, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 909.86959, + "y": 465.97626, + "index": 3, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 902.87156, + "y": 471.06341, + "index": 4, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 894.85977, + "y": 474.32774, + "index": 5, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 886.29973, + "y": 475.57884, + "index": 6, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 877.68888, + "y": 474.74656, + "index": 7, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 869.52747, + "y": 471.87671, + "index": 8, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 862.28974, + "y": 467.13678, + "index": 9, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 856.39656, + "y": 460.8036, + "index": 10, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 852.19096, + "y": 453.2429, + "index": 11, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 849.91577, + "y": 444.89689, + "index": 12, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 849.7048, + "y": 436.24747, + "index": 13, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 851.57039, + "y": 427.80046, + "index": 14, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 855.40239, + "y": 420.04372, + "index": 15, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 860.9798, + "y": 413.43076, + "index": 16, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 867.97783, + "y": 408.3436, + "index": 17, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 875.98962, + "y": 405.07928, + "index": 18, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 884.54966, + "y": 403.82818, + "index": 19, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 893.16051, + "y": 404.66046, + "index": 20, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 901.32192, + "y": 407.53031, + "index": 21, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 908.55965, + "y": 412.27023, + "index": 22, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 914.45283, + "y": 418.60342, + "index": 23, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 918.65843, + "y": 426.16412, + "index": 24, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 920.93362, + "y": 434.51012, + "index": 25, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 885.4247, + "y": 439.70351 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01146, + "y": -2.72216 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2726 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2728 + }, + "max": { + "#": 2729 + } + }, + { + "x": 849.7048, + "y": 403.82818 + }, + { + "x": 921.14459, + "y": 475.57884 + }, + { + "x": 885.41323, + "y": 442.42567 + }, + [ + { + "#": 2732 + }, + { + "#": 2733 + }, + { + "#": 2734 + }, + { + "#": 2735 + }, + { + "#": 2736 + }, + { + "#": 2737 + }, + { + "#": 2738 + }, + { + "#": 2739 + }, + { + "#": 2740 + }, + { + "#": 2741 + }, + { + "#": 2742 + }, + { + "#": 2743 + }, + { + "#": 2744 + } + ], + { + "x": -0.97647, + "y": -0.21566 + }, + { + "x": -0.89656, + "y": -0.44292 + }, + { + "x": -0.76442, + "y": -0.64472 + }, + { + "x": -0.588, + "y": -0.80886 + }, + { + "x": -0.37732, + "y": -0.92608 + }, + { + "x": -0.14462, + "y": -0.98949 + }, + { + "x": 0.09621, + "y": -0.99536 + }, + { + "x": 0.33173, + "y": -0.94338 + }, + { + "x": 0.54786, + "y": -0.83657 + }, + { + "x": 0.73208, + "y": -0.68122 + }, + { + "x": 0.8739, + "y": -0.4861 + }, + { + "x": 0.96479, + "y": -0.26301 + }, + { + "x": 0.9997, + "y": -0.02438 + }, + { + "id": "17,19,8,9", + "startCol": 17, + "endCol": 19, + "startRow": 8, + "endRow": 9 + }, + { + "id": 102, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2747 + }, + "angle": 0.00313, + "vertices": { + "#": 2748 + }, + "position": { + "#": 2753 + }, + "force": { + "#": 2754 + }, + "torque": 0, + "positionImpulse": { + "#": 2755 + }, + "constraintImpulse": { + "#": 2756 + }, + "totalContacts": 0, + "speed": 2.88892, + "angularSpeed": 0.00037, + "velocity": { + "#": 2757 + }, + "angularVelocity": 0.00037, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2758 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2759 + }, + "bounds": { + "#": 2761 + }, + "positionPrev": { + "#": 2764 + }, + "anglePrev": 0.00276, + "axes": { + "#": 2765 + }, + "area": 2513.03702, + "mass": 2.51304, + "inverseMass": 0.39792, + "inertia": 7118.36798, + "inverseInertia": 0.00014, + "parent": { + "#": 2746 + }, + "sleepCounter": 0, + "region": { + "#": 2768 + } + }, + [ + { + "#": 2746 + } + ], + [ + { + "#": 2749 + }, + { + "#": 2750 + }, + { + "#": 2751 + }, + { + "#": 2752 + } + ], + { + "x": 875.60979, + "y": 370.02278, + "index": 0, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 963.21567, + "y": 370.2967, + "index": 1, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 963.12598, + "y": 398.98213, + "index": 2, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 875.5201, + "y": 398.70822, + "index": 3, + "body": { + "#": 2746 + }, + "isInternal": false + }, + { + "x": 919.36788, + "y": 384.50246 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.0028, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02838, + "y": -2.88878 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2760 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2762 + }, + "max": { + "#": 2763 + } + }, + { + "x": 875.5201, + "y": 367.134 + }, + { + "x": 963.24405, + "y": 398.98213 + }, + { + "x": 919.3395, + "y": 387.39124 + }, + [ + { + "#": 2766 + }, + { + "#": 2767 + } + ], + { + "x": -0.00313, + "y": 1 + }, + { + "x": -1, + "y": -0.00313 + }, + { + "id": "18,20,7,8", + "startCol": 18, + "endCol": 20, + "startRow": 7, + "endRow": 8 + }, + { + "id": 103, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2770 + }, + "angle": 0.00049, + "vertices": { + "#": 2771 + }, + "position": { + "#": 2776 + }, + "force": { + "#": 2777 + }, + "torque": 0, + "positionImpulse": { + "#": 2778 + }, + "constraintImpulse": { + "#": 2779 + }, + "totalContacts": 0, + "speed": 2.87172, + "angularSpeed": 0.00006, + "velocity": { + "#": 2780 + }, + "angularVelocity": 0.00006, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2781 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2782 + }, + "bounds": { + "#": 2784 + }, + "positionPrev": { + "#": 2787 + }, + "anglePrev": 0.00044, + "axes": { + "#": 2788 + }, + "area": 1629.36666, + "mass": 1.62937, + "inverseMass": 0.61374, + "inertia": 1918.06222, + "inverseInertia": 0.00052, + "parent": { + "#": 2769 + }, + "sleepCounter": 0, + "region": { + "#": 2791 + } + }, + [ + { + "#": 2769 + } + ], + [ + { + "#": 2772 + }, + { + "#": 2773 + }, + { + "#": 2774 + }, + { + "#": 2775 + } + ], + { + "x": 963.11906, + "y": 385.20311, + "index": 0, + "body": { + "#": 2769 + }, + "isInternal": false + }, + { + "x": 996.06209, + "y": 385.21939, + "index": 1, + "body": { + "#": 2769 + }, + "isInternal": false + }, + { + "x": 996.03765, + "y": 434.67952, + "index": 2, + "body": { + "#": 2769 + }, + "isInternal": false + }, + { + "x": 963.09462, + "y": 434.66324, + "index": 3, + "body": { + "#": 2769 + }, + "isInternal": false + }, + { + "x": 979.57835, + "y": 409.94131 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00231, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.0273, + "y": -2.87159 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2783 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2785 + }, + "max": { + "#": 2786 + } + }, + { + "x": 963.09462, + "y": 382.33152 + }, + { + "x": 996.08939, + "y": 434.67952 + }, + { + "x": 979.55105, + "y": 412.8129 + }, + [ + { + "#": 2789 + }, + { + "#": 2790 + } + ], + { + "x": -0.00049, + "y": 1 + }, + { + "x": -1, + "y": -0.00049 + }, + { + "id": "20,20,8,9", + "startCol": 20, + "endCol": 20, + "startRow": 8, + "endRow": 9 + }, + { + "id": 104, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2793 + }, + "angle": 0.00001, + "vertices": { + "#": 2794 + }, + "position": { + "#": 2802 + }, + "force": { + "#": 2803 + }, + "torque": 0, + "positionImpulse": { + "#": 2804 + }, + "constraintImpulse": { + "#": 2805 + }, + "totalContacts": 0, + "speed": 2.90734, + "angularSpeed": 0, + "velocity": { + "#": 2806 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2807 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2808 + }, + "bounds": { + "#": 2810 + }, + "positionPrev": { + "#": 2813 + }, + "anglePrev": 0.00001, + "axes": { + "#": 2814 + }, + "area": 1316.36654, + "mass": 1.31637, + "inverseMass": 0.75967, + "inertia": 1107.54299, + "inverseInertia": 0.0009, + "parent": { + "#": 2792 + }, + "sleepCounter": 0, + "region": { + "#": 2822 + } + }, + [ + { + "#": 2792 + } + ], + [ + { + "#": 2795 + }, + { + "#": 2796 + }, + { + "#": 2797 + }, + { + "#": 2798 + }, + { + "#": 2799 + }, + { + "#": 2800 + }, + { + "#": 2801 + } + ], + { + "x": 1056.79312, + "y": 415.83893, + "index": 0, + "body": { + "#": 2792 + }, + "isInternal": false + }, + { + "x": 1041.91297, + "y": 427.70574, + "index": 1, + "body": { + "#": 2792 + }, + "isInternal": false + }, + { + "x": 1023.35703, + "y": 423.4705, + "index": 2, + "body": { + "#": 2792 + }, + "isInternal": false + }, + { + "x": 1015.09925, + "y": 406.3224, + "index": 3, + "body": { + "#": 2792 + }, + "isInternal": false + }, + { + "x": 1023.35746, + "y": 389.1745, + "index": 4, + "body": { + "#": 2792 + }, + "isInternal": false + }, + { + "x": 1041.91352, + "y": 384.93974, + "index": 5, + "body": { + "#": 2792 + }, + "isInternal": false + }, + { + "x": 1056.79337, + "y": 396.80693, + "index": 6, + "body": { + "#": 2792 + }, + "isInternal": false + }, + { + "x": 1037.03222, + "y": 406.32268 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.77098, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.008, + "y": -2.90733 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2809 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2811 + }, + "max": { + "#": 2812 + } + }, + { + "x": 1015.09925, + "y": 382.03241 + }, + { + "x": 1056.80137, + "y": 427.70574 + }, + { + "x": 1037.02421, + "y": 409.23001 + }, + [ + { + "#": 2815 + }, + { + "#": 2816 + }, + { + "#": 2817 + }, + { + "#": 2818 + }, + { + "#": 2819 + }, + { + "#": 2820 + }, + { + "#": 2821 + } + ], + { + "x": 0.6235, + "y": 0.78182 + }, + { + "x": -0.22252, + "y": 0.97493 + }, + { + "x": -0.90098, + "y": 0.43387 + }, + { + "x": -0.90096, + "y": -0.43389 + }, + { + "x": -0.22249, + "y": -0.97493 + }, + { + "x": 0.62352, + "y": -0.78181 + }, + { + "x": 1, + "y": 0.00001 + }, + { + "id": "21,21,8,8", + "startCol": 21, + "endCol": 21, + "startRow": 8, + "endRow": 8 + }, + [], + [], + { + "x": 0, + "y": -1 + }, + { + "min": { + "#": 2827 + }, + "max": { + "#": 2828 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/manipulation/manipulation-0.json b/test/node/refs/manipulation/manipulation-0.json new file mode 100644 index 00000000..bb56f5fc --- /dev/null +++ b/test/node/refs/manipulation/manipulation-0.json @@ -0,0 +1,3382 @@ +[ + { + "id": 75, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 347 + }, + "composites": { + "#": 348 + }, + "label": "World", + "gravity": { + "#": 349 + }, + "bounds": { + "#": 350 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 112 + }, + { + "#": 134 + }, + { + "#": 156 + }, + { + "#": 178 + }, + { + "#": 200 + }, + { + "#": 222 + }, + { + "#": 277 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 4, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 91 + }, + "angle": 0, + "vertices": { + "#": 92 + }, + "position": { + "#": 97 + }, + "force": { + "#": 98 + }, + "torque": 0, + "positionImpulse": { + "#": 99 + }, + "constraintImpulse": { + "#": 100 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 101 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 102 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 103 + }, + "bounds": { + "#": 105 + }, + "positionPrev": { + "#": 108 + }, + "anglePrev": 0, + "axes": { + "#": 109 + }, + "area": 2500, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 90 + }, + "sleepCounter": 0 + }, + [ + { + "#": 90 + } + ], + [ + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + } + ], + { + "x": 75, + "y": 175, + "index": 0, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 125, + "y": 175, + "index": 1, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 125, + "y": 225, + "index": 2, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 75, + "y": 225, + "index": 3, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 100, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 104 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 106 + }, + "max": { + "#": 107 + } + }, + { + "x": 75, + "y": 175 + }, + { + "x": 125, + "y": 225 + }, + { + "x": 100, + "y": 200 + }, + [ + { + "#": 110 + }, + { + "#": 111 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 113 + }, + "angle": 0, + "vertices": { + "#": 114 + }, + "position": { + "#": 119 + }, + "force": { + "#": 120 + }, + "torque": 0, + "positionImpulse": { + "#": 121 + }, + "constraintImpulse": { + "#": 122 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 123 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 124 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 125 + }, + "bounds": { + "#": 127 + }, + "positionPrev": { + "#": 130 + }, + "anglePrev": 0, + "axes": { + "#": 131 + }, + "area": 2500, + "mass": 2.5, + "inverseMass": 0.4, + "inertia": 4166.66667, + "inverseInertia": 0.00024, + "parent": { + "#": 112 + }, + "sleepCounter": 0 + }, + [ + { + "#": 112 + } + ], + [ + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + } + ], + { + "x": 175, + "y": 175, + "index": 0, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 225, + "y": 175, + "index": 1, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 225, + "y": 225, + "index": 2, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 175, + "y": 225, + "index": 3, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 200, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 126 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 128 + }, + "max": { + "#": 129 + } + }, + { + "x": 175, + "y": 175 + }, + { + "x": 225, + "y": 225 + }, + { + "x": 200, + "y": 200 + }, + [ + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 135 + }, + "angle": 0, + "vertices": { + "#": 136 + }, + "position": { + "#": 141 + }, + "force": { + "#": 142 + }, + "torque": 0, + "positionImpulse": { + "#": 143 + }, + "constraintImpulse": { + "#": 144 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 145 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 146 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 147 + }, + "bounds": { + "#": 149 + }, + "positionPrev": { + "#": 152 + }, + "anglePrev": 0, + "axes": { + "#": 153 + }, + "area": 2500, + "mass": 2.5, + "inverseMass": 0.4, + "inertia": 4166.66667, + "inverseInertia": 0.00024, + "parent": { + "#": 134 + }, + "sleepCounter": 0 + }, + [ + { + "#": 134 + } + ], + [ + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + } + ], + { + "x": 275, + "y": 175, + "index": 0, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 325, + "y": 175, + "index": 1, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 325, + "y": 225, + "index": 2, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 275, + "y": 225, + "index": 3, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 300, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 148 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 150 + }, + "max": { + "#": 151 + } + }, + { + "x": 275, + "y": 175 + }, + { + "x": 325, + "y": 225 + }, + { + "x": 300, + "y": 200 + }, + [ + { + "#": 154 + }, + { + "#": 155 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 157 + }, + "angle": 0, + "vertices": { + "#": 158 + }, + "position": { + "#": 163 + }, + "force": { + "#": 164 + }, + "torque": 0, + "positionImpulse": { + "#": 165 + }, + "constraintImpulse": { + "#": 166 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 167 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 168 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 169 + }, + "bounds": { + "#": 171 + }, + "positionPrev": { + "#": 174 + }, + "anglePrev": 0, + "axes": { + "#": 175 + }, + "area": 2500, + "mass": 2.5, + "inverseMass": 0.4, + "inertia": 4166.66667, + "inverseInertia": 0.00024, + "parent": { + "#": 156 + }, + "sleepCounter": 0 + }, + [ + { + "#": 156 + } + ], + [ + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + } + ], + { + "x": 375, + "y": 175, + "index": 0, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 425, + "y": 175, + "index": 1, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 425, + "y": 225, + "index": 2, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 375, + "y": 225, + "index": 3, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 400, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 170 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 172 + }, + "max": { + "#": 173 + } + }, + { + "x": 375, + "y": 175 + }, + { + "x": 425, + "y": 225 + }, + { + "x": 400, + "y": 200 + }, + [ + { + "#": 176 + }, + { + "#": 177 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 179 + }, + "angle": 0, + "vertices": { + "#": 180 + }, + "position": { + "#": 185 + }, + "force": { + "#": 186 + }, + "torque": 0, + "positionImpulse": { + "#": 187 + }, + "constraintImpulse": { + "#": 188 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 189 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 190 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 191 + }, + "bounds": { + "#": 193 + }, + "positionPrev": { + "#": 196 + }, + "anglePrev": 0, + "axes": { + "#": 197 + }, + "area": 2500, + "mass": 2.5, + "inverseMass": 0.4, + "inertia": 4166.66667, + "inverseInertia": 0.00024, + "parent": { + "#": 178 + }, + "sleepCounter": 0 + }, + [ + { + "#": 178 + } + ], + [ + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + } + ], + { + "x": 525, + "y": 175, + "index": 0, + "body": { + "#": 178 + }, + "isInternal": false + }, + { + "x": 575, + "y": 175, + "index": 1, + "body": { + "#": 178 + }, + "isInternal": false + }, + { + "x": 575, + "y": 225, + "index": 2, + "body": { + "#": 178 + }, + "isInternal": false + }, + { + "x": 525, + "y": 225, + "index": 3, + "body": { + "#": 178 + }, + "isInternal": false + }, + { + "x": 550, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 192 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 194 + }, + "max": { + "#": 195 + } + }, + { + "x": 525, + "y": 175 + }, + { + "x": 575, + "y": 225 + }, + { + "x": 550, + "y": 200 + }, + [ + { + "#": 198 + }, + { + "#": 199 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 201 + }, + "angle": 0, + "vertices": { + "#": 202 + }, + "position": { + "#": 207 + }, + "force": { + "#": 208 + }, + "torque": 0, + "positionImpulse": { + "#": 209 + }, + "constraintImpulse": { + "#": 210 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 211 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 212 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 213 + }, + "bounds": { + "#": 215 + }, + "positionPrev": { + "#": 218 + }, + "anglePrev": 0, + "axes": { + "#": 219 + }, + "area": 2500, + "mass": 2.5, + "inverseMass": 0.4, + "inertia": 4166.66667, + "inverseInertia": 0.00024, + "parent": { + "#": 200 + }, + "sleepCounter": 0 + }, + [ + { + "#": 200 + } + ], + [ + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + } + ], + { + "x": 675, + "y": 175, + "index": 0, + "body": { + "#": 200 + }, + "isInternal": false + }, + { + "x": 725, + "y": 175, + "index": 1, + "body": { + "#": 200 + }, + "isInternal": false + }, + { + "x": 725, + "y": 225, + "index": 2, + "body": { + "#": 200 + }, + "isInternal": false + }, + { + "x": 675, + "y": 225, + "index": 3, + "body": { + "#": 200 + }, + "isInternal": false + }, + { + "x": 700, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 214 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 216 + }, + "max": { + "#": 217 + } + }, + { + "x": 675, + "y": 175 + }, + { + "x": 725, + "y": 225 + }, + { + "x": 700, + "y": 200 + }, + [ + { + "#": 220 + }, + { + "#": 221 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 10, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 223 + }, + "angle": 0, + "vertices": { + "#": 224 + }, + "position": { + "#": 251 + }, + "force": { + "#": 252 + }, + "torque": 0, + "positionImpulse": { + "#": 253 + }, + "constraintImpulse": { + "#": 254 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 255 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 256 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 257 + }, + "circleRadius": 25, + "bounds": { + "#": 259 + }, + "positionPrev": { + "#": 262 + }, + "anglePrev": 0, + "axes": { + "#": 263 + }, + "area": 1944.45308, + "mass": 1.94445, + "inverseMass": 0.51428, + "inertia": 2407.04022, + "inverseInertia": 0.00042, + "parent": { + "#": 222 + }, + "sleepCounter": 0 + }, + [ + { + "#": 222 + } + ], + [ + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + } + ], + { + "x": 424.818, + "y": 103.013, + "index": 0, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 423.375, + "y": 108.865, + "index": 1, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 420.575, + "y": 114.202, + "index": 2, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 416.578, + "y": 118.713, + "index": 3, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 411.618, + "y": 122.136, + "index": 4, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 405.983, + "y": 124.274, + "index": 5, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 400, + "y": 125, + "index": 6, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 394.017, + "y": 124.274, + "index": 7, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 388.382, + "y": 122.136, + "index": 8, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 383.422, + "y": 118.713, + "index": 9, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 379.425, + "y": 114.202, + "index": 10, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 376.625, + "y": 108.865, + "index": 11, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 375.182, + "y": 103.013, + "index": 12, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 375.182, + "y": 96.987, + "index": 13, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 376.625, + "y": 91.135, + "index": 14, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 379.425, + "y": 85.798, + "index": 15, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 383.422, + "y": 81.287, + "index": 16, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 388.382, + "y": 77.864, + "index": 17, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 394.017, + "y": 75.726, + "index": 18, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 400, + "y": 75, + "index": 19, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 405.983, + "y": 75.726, + "index": 20, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 411.618, + "y": 77.864, + "index": 21, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 416.578, + "y": 81.287, + "index": 22, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 420.575, + "y": 85.798, + "index": 23, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 423.375, + "y": 91.135, + "index": 24, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 424.818, + "y": 96.987, + "index": 25, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 400, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 258 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 260 + }, + "max": { + "#": 261 + } + }, + { + "x": 375.182, + "y": 75 + }, + { + "x": 424.818, + "y": 125 + }, + { + "x": 400, + "y": 100 + }, + [ + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + } + ], + { + "x": -0.97092, + "y": -0.23941 + }, + { + "x": -0.88553, + "y": -0.46458 + }, + { + "x": -0.74846, + "y": -0.66318 + }, + { + "x": -0.56799, + "y": -0.82303 + }, + { + "x": -0.35474, + "y": -0.93497 + }, + { + "x": -0.12046, + "y": -0.99272 + }, + { + "x": 0.12046, + "y": -0.99272 + }, + { + "x": 0.35474, + "y": -0.93497 + }, + { + "x": 0.56799, + "y": -0.82303 + }, + { + "x": 0.74846, + "y": -0.66318 + }, + { + "x": 0.88553, + "y": -0.46458 + }, + { + "x": 0.97092, + "y": -0.23941 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 13, + "type": "body", + "label": "Body", + "parts": { + "#": 278 + }, + "angle": 0, + "vertices": { + "#": 323 + }, + "position": { + "#": 330 + }, + "force": { + "#": 331 + }, + "torque": 0, + "positionImpulse": { + "#": 332 + }, + "constraintImpulse": { + "#": 333 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 334 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 335 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 336 + }, + "bounds": { + "#": 338 + }, + "positionPrev": { + "#": 341 + }, + "anglePrev": 0, + "axes": { + "#": 342 + }, + "area": 15500, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 277 + }, + "sleepCounter": 0 + }, + [ + { + "#": 277 + }, + { + "#": 279 + }, + { + "#": 301 + } + ], + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 280 + }, + "angle": 0, + "vertices": { + "#": 281 + }, + "position": { + "#": 286 + }, + "force": { + "#": 287 + }, + "torque": 0, + "positionImpulse": { + "#": 288 + }, + "constraintImpulse": { + "#": 289 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 290 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 291 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 292 + }, + "bounds": { + "#": 294 + }, + "positionPrev": { + "#": 297 + }, + "anglePrev": 0, + "axes": { + "#": 298 + }, + "area": 6000, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 277 + }, + "sleepCounter": 0 + }, + [ + { + "#": 279 + } + ], + [ + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + } + ], + { + "x": 540, + "y": 175, + "index": 0, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 660, + "y": 175, + "index": 1, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 660, + "y": 225, + "index": 2, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 540, + "y": 225, + "index": 3, + "body": { + "#": 279 + }, + "isInternal": false + }, + { + "x": 600, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 293 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 295 + }, + "max": { + "#": 296 + } + }, + { + "x": 540, + "y": 175 + }, + { + "x": 660, + "y": 225 + }, + { + "x": 600, + "y": 200 + }, + [ + { + "#": 299 + }, + { + "#": 300 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 302 + }, + "angle": 0, + "vertices": { + "#": 303 + }, + "position": { + "#": 308 + }, + "force": { + "#": 309 + }, + "torque": 0, + "positionImpulse": { + "#": 310 + }, + "constraintImpulse": { + "#": 311 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 312 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 313 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 314 + }, + "bounds": { + "#": 316 + }, + "positionPrev": { + "#": 319 + }, + "anglePrev": 0, + "axes": { + "#": 320 + }, + "area": 9500, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 277 + }, + "sleepCounter": 0 + }, + [ + { + "#": 301 + } + ], + [ + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + } + ], + { + "x": 635, + "y": 105, + "index": 0, + "body": { + "#": 301 + }, + "isInternal": false + }, + { + "x": 685, + "y": 105, + "index": 1, + "body": { + "#": 301 + }, + "isInternal": false + }, + { + "x": 685, + "y": 295, + "index": 2, + "body": { + "#": 301 + }, + "isInternal": false + }, + { + "x": 635, + "y": 295, + "index": 3, + "body": { + "#": 301 + }, + "isInternal": false + }, + { + "x": 660, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 315 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 317 + }, + "max": { + "#": 318 + } + }, + { + "x": 635, + "y": 105 + }, + { + "x": 685, + "y": 295 + }, + { + "x": 660, + "y": 200 + }, + [ + { + "#": 321 + }, + { + "#": 322 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [ + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + } + ], + { + "x": 685, + "y": 295, + "index": 0, + "body": { + "#": 277 + }, + "isInternal": false + }, + { + "x": 635, + "y": 295, + "index": 1, + "body": { + "#": 277 + }, + "isInternal": false + }, + { + "x": 540, + "y": 225, + "index": 2, + "body": { + "#": 277 + }, + "isInternal": false + }, + { + "x": 540, + "y": 175, + "index": 3, + "body": { + "#": 277 + }, + "isInternal": false + }, + { + "x": 635, + "y": 105, + "index": 4, + "body": { + "#": 277 + }, + "isInternal": false + }, + { + "x": 685, + "y": 105, + "index": 5, + "body": { + "#": 277 + }, + "isInternal": false + }, + { + "x": 636.77419, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 337 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 339 + }, + "max": { + "#": 340 + } + }, + { + "x": 540, + "y": 105 + }, + { + "x": 685, + "y": 295 + }, + { + "x": 636.77419, + "y": 200 + }, + [ + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": -0.5932, + "y": 0.80506 + }, + { + "x": 1, + "y": 0 + }, + { + "x": -0.5932, + "y": -0.80506 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 351 + }, + "max": { + "#": 352 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/manipulation/manipulation-10.json b/test/node/refs/manipulation/manipulation-10.json new file mode 100644 index 00000000..90f221ec --- /dev/null +++ b/test/node/refs/manipulation/manipulation-10.json @@ -0,0 +1,3509 @@ +[ + { + "id": 75, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 360 + }, + "composites": { + "#": 361 + }, + "label": "World", + "gravity": { + "#": 362 + }, + "bounds": { + "#": 363 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + }, + { + "#": 94 + }, + { + "#": 117 + }, + { + "#": 140 + }, + { + "#": 163 + }, + { + "#": 186 + }, + { + "#": 210 + }, + { + "#": 233 + }, + { + "#": 289 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + { + "id": 4, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 96 + }, + "position": { + "#": 101 + }, + "force": { + "#": 102 + }, + "torque": 0, + "positionImpulse": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "totalContacts": 0, + "speed": 3.1311, + "angularSpeed": 0, + "velocity": { + "#": 105 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 106 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 107 + }, + "bounds": { + "#": 109 + }, + "positionPrev": { + "#": 112 + }, + "anglePrev": 0, + "axes": { + "#": 113 + }, + "area": 2500, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 94 + }, + "sleepCounter": 0, + "region": { + "#": 116 + } + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + } + ], + { + "x": 75, + "y": 310.85057, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 125, + "y": 310.85057, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 125, + "y": 360.85057, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 75, + "y": 360.85057, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 100, + "y": 335.85057 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.1311 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 108 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 110 + }, + "max": { + "#": 111 + } + }, + { + "x": 75, + "y": 310.85057 + }, + { + "x": 125, + "y": 360.85057 + }, + { + "x": 100, + "y": 332.71947 + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "1,2,6,7", + "startCol": 1, + "endCol": 2, + "startRow": 6, + "endRow": 7 + }, + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 118 + }, + "angle": 0, + "vertices": { + "#": 119 + }, + "position": { + "#": 124 + }, + "force": { + "#": 125 + }, + "torque": 0, + "positionImpulse": { + "#": 126 + }, + "constraintImpulse": { + "#": 127 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 128 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 129 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 130 + }, + "bounds": { + "#": 132 + }, + "positionPrev": { + "#": 135 + }, + "anglePrev": 0, + "axes": { + "#": 136 + }, + "area": 2500, + "mass": 2.5, + "inverseMass": 0.4, + "inertia": 4166.66667, + "inverseInertia": 0.00024, + "parent": { + "#": 117 + }, + "sleepCounter": 0, + "region": { + "#": 139 + } + }, + [ + { + "#": 117 + } + ], + [ + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + } + ], + { + "x": 175, + "y": 192.73575, + "index": 0, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 225, + "y": 192.73575, + "index": 1, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 225, + "y": 242.73575, + "index": 2, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 175, + "y": 242.73575, + "index": 3, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 200, + "y": 217.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 131 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 133 + }, + "max": { + "#": 134 + } + }, + { + "x": 175, + "y": 192.73575 + }, + { + "x": 225, + "y": 242.73575 + }, + { + "x": 200, + "y": 214.82848 + }, + [ + { + "#": 137 + }, + { + "#": 138 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,4,5", + "startCol": 3, + "endCol": 4, + "startRow": 4, + "endRow": 5 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 141 + }, + "angle": 0, + "vertices": { + "#": 142 + }, + "position": { + "#": 147 + }, + "force": { + "#": 148 + }, + "torque": 0, + "positionImpulse": { + "#": 149 + }, + "constraintImpulse": { + "#": 150 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 151 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 152 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 153 + }, + "bounds": { + "#": 155 + }, + "positionPrev": { + "#": 158 + }, + "anglePrev": 0, + "axes": { + "#": 159 + }, + "area": 2500, + "mass": 2.5, + "inverseMass": 0.4, + "inertia": 4166.66667, + "inverseInertia": 0.00024, + "parent": { + "#": 140 + }, + "sleepCounter": 0, + "region": { + "#": 162 + } + }, + [ + { + "#": 140 + } + ], + [ + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + } + ], + { + "x": 275, + "y": 192.73575, + "index": 0, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 325, + "y": 192.73575, + "index": 1, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 325, + "y": 242.73575, + "index": 2, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 275, + "y": 242.73575, + "index": 3, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 300, + "y": 217.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 154 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 156 + }, + "max": { + "#": 157 + } + }, + { + "x": 275, + "y": 192.73575 + }, + { + "x": 325, + "y": 242.73575 + }, + { + "x": 300, + "y": 214.82848 + }, + [ + { + "#": 160 + }, + { + "#": 161 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,4,5", + "startCol": 5, + "endCol": 6, + "startRow": 4, + "endRow": 5 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 164 + }, + "angle": 0, + "vertices": { + "#": 165 + }, + "position": { + "#": 170 + }, + "force": { + "#": 171 + }, + "torque": 0, + "positionImpulse": { + "#": 172 + }, + "constraintImpulse": { + "#": 173 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 174 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 175 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 176 + }, + "bounds": { + "#": 178 + }, + "positionPrev": { + "#": 181 + }, + "anglePrev": 0, + "axes": { + "#": 182 + }, + "area": 2500, + "mass": 2.5, + "inverseMass": 0.4, + "inertia": 4166.66667, + "inverseInertia": 0.00024, + "parent": { + "#": 163 + }, + "sleepCounter": 0, + "region": { + "#": 185 + } + }, + [ + { + "#": 163 + } + ], + [ + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + } + ], + { + "x": 375, + "y": 192.73575, + "index": 0, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 425, + "y": 192.73575, + "index": 1, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 425, + "y": 242.73575, + "index": 2, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 375, + "y": 242.73575, + "index": 3, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 400, + "y": 217.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 177 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 179 + }, + "max": { + "#": 180 + } + }, + { + "x": 375, + "y": 192.73575 + }, + { + "x": 425, + "y": 242.73575 + }, + { + "x": 400, + "y": 214.82848 + }, + [ + { + "#": 183 + }, + { + "#": 184 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,4,5", + "startCol": 7, + "endCol": 8, + "startRow": 4, + "endRow": 5 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 187 + }, + "angle": 0, + "vertices": { + "#": 188 + }, + "position": { + "#": 193 + }, + "force": { + "#": 194 + }, + "torque": 0, + "positionImpulse": { + "#": 195 + }, + "constraintImpulse": { + "#": 196 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 197 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 198 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 199 + }, + "bounds": { + "#": 201 + }, + "positionPrev": { + "#": 204 + }, + "anglePrev": 0, + "axes": { + "#": 205 + }, + "area": 2724.84, + "mass": 2.72484, + "inverseMass": 0.36699, + "inertia": 4952.76607, + "inverseInertia": 0.0002, + "parent": { + "#": 186 + }, + "sleepCounter": 0, + "region": { + "#": 209 + } + }, + [ + { + "#": 186 + } + ], + [ + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + } + ], + { + "x": 522.8, + "y": 192.00242, + "index": 0, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 577.2, + "y": 192.00242, + "index": 1, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 575, + "y": 244.20242, + "index": 2, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 525, + "y": 244.20242, + "index": 3, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 550, + "y": 217.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 200 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 202 + }, + "max": { + "#": 203 + } + }, + { + "x": 522.8, + "y": 192.00242 + }, + { + "x": 577.2, + "y": 244.20242 + }, + { + "x": 550, + "y": 214.82848 + }, + [ + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": 0.99911, + "y": 0.04211 + }, + { + "x": -0.99911, + "y": 0.04211 + }, + { + "id": "10,12,4,5", + "startCol": 10, + "endCol": 12, + "startRow": 4, + "endRow": 5 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 211 + }, + "angle": 0, + "vertices": { + "#": 212 + }, + "position": { + "#": 217 + }, + "force": { + "#": 218 + }, + "torque": 0, + "positionImpulse": { + "#": 219 + }, + "constraintImpulse": { + "#": 220 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 221 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 222 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 223 + }, + "bounds": { + "#": 225 + }, + "positionPrev": { + "#": 228 + }, + "anglePrev": 0, + "axes": { + "#": 229 + }, + "area": 3111.78965, + "mass": 3.11179, + "inverseMass": 0.32136, + "inertia": 1613.87247, + "inverseInertia": 0.00062, + "parent": { + "#": 210 + }, + "sleepCounter": 0, + "region": { + "#": 232 + } + }, + [ + { + "#": 210 + } + ], + [ + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + } + ], + { + "x": 672.10829, + "y": 189.84405, + "index": 0, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 727.89171, + "y": 189.84405, + "index": 1, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 727.89171, + "y": 245.62746, + "index": 2, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 672.10829, + "y": 245.62746, + "index": 3, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 700, + "y": 217.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 224 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 226 + }, + "max": { + "#": 227 + } + }, + { + "x": 672.10829, + "y": 189.84405 + }, + { + "x": 727.89171, + "y": 245.62746 + }, + { + "x": 700, + "y": 214.82848 + }, + [ + { + "#": 230 + }, + { + "#": 231 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,3,5", + "startCol": 14, + "endCol": 15, + "startRow": 3, + "endRow": 5 + }, + { + "id": 10, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 234 + }, + "angle": 0, + "vertices": { + "#": 235 + }, + "position": { + "#": 262 + }, + "force": { + "#": 263 + }, + "torque": 0, + "positionImpulse": { + "#": 264 + }, + "constraintImpulse": { + "#": 265 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 266 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 267 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 268 + }, + "circleRadius": 25, + "bounds": { + "#": 270 + }, + "positionPrev": { + "#": 273 + }, + "anglePrev": 0, + "axes": { + "#": 274 + }, + "area": 1944.45308, + "mass": 1.94445, + "inverseMass": 0.51428, + "inertia": 2407.04022, + "inverseInertia": 0.00042, + "parent": { + "#": 233 + }, + "sleepCounter": 0, + "region": { + "#": 288 + } + }, + [ + { + "#": 233 + } + ], + [ + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + } + ], + { + "x": 424.818, + "y": 120.74875, + "index": 0, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 423.375, + "y": 126.60075, + "index": 1, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 420.575, + "y": 131.93775, + "index": 2, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 416.578, + "y": 136.44875, + "index": 3, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 411.618, + "y": 139.87175, + "index": 4, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 405.983, + "y": 142.00975, + "index": 5, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 400, + "y": 142.73575, + "index": 6, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 394.017, + "y": 142.00975, + "index": 7, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 388.382, + "y": 139.87175, + "index": 8, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 383.422, + "y": 136.44875, + "index": 9, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 379.425, + "y": 131.93775, + "index": 10, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 376.625, + "y": 126.60075, + "index": 11, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 375.182, + "y": 120.74875, + "index": 12, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 375.182, + "y": 114.72275, + "index": 13, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 376.625, + "y": 108.87075, + "index": 14, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 379.425, + "y": 103.53375, + "index": 15, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 383.422, + "y": 99.02275, + "index": 16, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 388.382, + "y": 95.59975, + "index": 17, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 394.017, + "y": 93.46175, + "index": 18, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 400, + "y": 92.73575, + "index": 19, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 405.983, + "y": 93.46175, + "index": 20, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 411.618, + "y": 95.59975, + "index": 21, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 416.578, + "y": 99.02275, + "index": 22, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 420.575, + "y": 103.53375, + "index": 23, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 423.375, + "y": 108.87075, + "index": 24, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 424.818, + "y": 114.72275, + "index": 25, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 400, + "y": 117.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 269 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 271 + }, + "max": { + "#": 272 + } + }, + { + "x": 375.182, + "y": 92.73575 + }, + { + "x": 424.818, + "y": 142.73575 + }, + { + "x": 400, + "y": 114.82848 + }, + [ + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + } + ], + { + "x": -0.97092, + "y": -0.23941 + }, + { + "x": -0.88553, + "y": -0.46458 + }, + { + "x": -0.74846, + "y": -0.66318 + }, + { + "x": -0.56799, + "y": -0.82303 + }, + { + "x": -0.35474, + "y": -0.93497 + }, + { + "x": -0.12046, + "y": -0.99272 + }, + { + "x": 0.12046, + "y": -0.99272 + }, + { + "x": 0.35474, + "y": -0.93497 + }, + { + "x": 0.56799, + "y": -0.82303 + }, + { + "x": 0.74846, + "y": -0.66318 + }, + { + "x": 0.88553, + "y": -0.46458 + }, + { + "x": 0.97092, + "y": -0.23941 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,1,2", + "startCol": 7, + "endCol": 8, + "startRow": 1, + "endRow": 2 + }, + { + "id": 13, + "type": "body", + "label": "Body", + "parts": { + "#": 290 + }, + "angle": 0.22, + "vertices": { + "#": 335 + }, + "position": { + "#": 342 + }, + "force": { + "#": 343 + }, + "torque": 0, + "positionImpulse": { + "#": 344 + }, + "constraintImpulse": { + "#": 345 + }, + "totalContacts": 0, + "speed": 3.1311, + "angularSpeed": 0.02, + "velocity": { + "#": 346 + }, + "angularVelocity": 0.02, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 347 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 348 + }, + "bounds": { + "#": 350 + }, + "positionPrev": { + "#": 353 + }, + "anglePrev": 0.2, + "axes": { + "#": 354 + }, + "area": 15500, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 289 + }, + "sleepCounter": 0, + "region": { + "#": 359 + } + }, + [ + { + "#": 289 + }, + { + "#": 291 + }, + { + "#": 313 + } + ], + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 292 + }, + "angle": 0.22, + "vertices": { + "#": 293 + }, + "position": { + "#": 298 + }, + "force": { + "#": 299 + }, + "torque": 0, + "positionImpulse": { + "#": 300 + }, + "constraintImpulse": { + "#": 301 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 302 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 303 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 304 + }, + "bounds": { + "#": 306 + }, + "positionPrev": { + "#": 309 + }, + "anglePrev": 0, + "axes": { + "#": 310 + }, + "area": 6000, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 289 + }, + "sleepCounter": 0 + }, + [ + { + "#": 291 + } + ], + [ + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + } + ], + { + "x": 515.78774, + "y": 292.77588, + "index": 0, + "body": { + "#": 291 + }, + "isInternal": false + }, + { + "x": 626.61314, + "y": 317.5586, + "index": 1, + "body": { + "#": 291 + }, + "isInternal": false + }, + { + "x": 616.28701, + "y": 363.73585, + "index": 2, + "body": { + "#": 291 + }, + "isInternal": false + }, + { + "x": 505.46161, + "y": 338.95313, + "index": 3, + "body": { + "#": 291 + }, + "isInternal": false + }, + { + "x": 564.11216, + "y": 327.82535 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 305 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 307 + }, + "max": { + "#": 308 + } + }, + { + "x": 505.46161, + "y": 292.77588 + }, + { + "x": 626.61314, + "y": 363.73585 + }, + { + "x": 600, + "y": 200 + }, + [ + { + "#": 311 + }, + { + "#": 312 + } + ], + { + "x": -0.21823, + "y": 0.9759 + }, + { + "x": -0.9759, + "y": -0.21823 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 314 + }, + "angle": 0.22, + "vertices": { + "#": 315 + }, + "position": { + "#": 320 + }, + "force": { + "#": 321 + }, + "torque": 0, + "positionImpulse": { + "#": 322 + }, + "constraintImpulse": { + "#": 323 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 324 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 325 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 326 + }, + "bounds": { + "#": 328 + }, + "positionPrev": { + "#": 331 + }, + "anglePrev": 0, + "axes": { + "#": 332 + }, + "area": 9500, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 289 + }, + "sleepCounter": 0 + }, + [ + { + "#": 313 + } + ], + [ + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + } + ], + { + "x": 617.9811, + "y": 247.74738, + "index": 0, + "body": { + "#": 313 + }, + "isInternal": false + }, + { + "x": 664.15835, + "y": 258.07351, + "index": 1, + "body": { + "#": 313 + }, + "isInternal": false + }, + { + "x": 624.91906, + "y": 433.54706, + "index": 2, + "body": { + "#": 313 + }, + "isInternal": false + }, + { + "x": 578.74181, + "y": 423.22093, + "index": 3, + "body": { + "#": 313 + }, + "isInternal": false + }, + { + "x": 622.66601, + "y": 340.91913 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 327 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 329 + }, + "max": { + "#": 330 + } + }, + { + "x": 578.74181, + "y": 247.74738 + }, + { + "x": 664.15835, + "y": 433.54706 + }, + { + "x": 660, + "y": 200 + }, + [ + { + "#": 333 + }, + { + "#": 334 + } + ], + { + "x": -0.21823, + "y": 0.9759 + }, + { + "x": -0.9759, + "y": -0.21823 + }, + [ + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + } + ], + { + "x": 624.91906, + "y": 433.54706, + "index": 0, + "body": { + "#": 289 + }, + "isInternal": false + }, + { + "x": 578.74181, + "y": 423.22093, + "index": 1, + "body": { + "#": 289 + }, + "isInternal": false + }, + { + "x": 505.46161, + "y": 338.95313, + "index": 2, + "body": { + "#": 289 + }, + "isInternal": false + }, + { + "x": 515.78774, + "y": 292.77588, + "index": 3, + "body": { + "#": 289 + }, + "isInternal": false + }, + { + "x": 617.9811, + "y": 247.74738, + "index": 4, + "body": { + "#": 289 + }, + "isInternal": false + }, + { + "x": 664.15835, + "y": 258.07351, + "index": 5, + "body": { + "#": 289 + }, + "isInternal": false + }, + { + "x": 600, + "y": 335.85057 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.1311 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 349 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 351 + }, + "max": { + "#": 352 + } + }, + { + "x": 505.46161, + "y": 247.74738 + }, + { + "x": 664.15835, + "y": 433.54706 + }, + { + "x": 600, + "y": 332.71947 + }, + [ + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + } + ], + { + "x": 0.21823, + "y": -0.9759 + }, + { + "x": -0.75459, + "y": 0.6562 + }, + { + "x": 0.9759, + "y": 0.21823 + }, + { + "x": -0.40321, + "y": -0.91511 + }, + { + "id": "10,13,5,9", + "startCol": 10, + "endCol": 13, + "startRow": 5, + "endRow": 9 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 364 + }, + "max": { + "#": 365 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/mixed/mixed-0.json b/test/node/refs/mixed/mixed-0.json new file mode 100644 index 00000000..458ca14d --- /dev/null +++ b/test/node/refs/mixed/mixed-0.json @@ -0,0 +1,19816 @@ +[ + { + "id": 0, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 90 + }, + "composites": { + "#": 91 + }, + "label": "World", + "gravity": { + "#": 2088 + }, + "bounds": { + "#": 2089 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [ + { + "#": 92 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 93 + }, + "constraints": { + "#": 2086 + }, + "composites": { + "#": 2087 + }, + "label": "Stack" + }, + [ + { + "#": 94 + }, + { + "#": 149 + }, + { + "#": 171 + }, + { + "#": 193 + }, + { + "#": 215 + }, + { + "#": 287 + }, + { + "#": 309 + }, + { + "#": 331 + }, + { + "#": 353 + }, + { + "#": 408 + }, + { + "#": 430 + }, + { + "#": 452 + }, + { + "#": 507 + }, + { + "#": 547 + }, + { + "#": 569 + }, + { + "#": 591 + }, + { + "#": 646 + }, + { + "#": 686 + }, + { + "#": 708 + }, + { + "#": 730 + }, + { + "#": 752 + }, + { + "#": 774 + }, + { + "#": 796 + }, + { + "#": 826 + }, + { + "#": 848 + }, + { + "#": 888 + }, + { + "#": 944 + }, + { + "#": 966 + }, + { + "#": 988 + }, + { + "#": 1010 + }, + { + "#": 1032 + }, + { + "#": 1072 + }, + { + "#": 1136 + }, + { + "#": 1158 + }, + { + "#": 1213 + }, + { + "#": 1235 + }, + { + "#": 1290 + }, + { + "#": 1312 + }, + { + "#": 1334 + }, + { + "#": 1356 + }, + { + "#": 1378 + }, + { + "#": 1404 + }, + { + "#": 1444 + }, + { + "#": 1466 + }, + { + "#": 1496 + }, + { + "#": 1536 + }, + { + "#": 1558 + }, + { + "#": 1598 + }, + { + "#": 1620 + }, + { + "#": 1642 + }, + { + "#": 1694 + }, + { + "#": 1750 + }, + { + "#": 1772 + }, + { + "#": 1794 + }, + { + "#": 1849 + }, + { + "#": 1904 + }, + { + "#": 1930 + }, + { + "#": 2002 + }, + { + "#": 2024 + }, + { + "#": 2064 + } + ], + { + "id": 5, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 96 + }, + "position": { + "#": 123 + }, + "force": { + "#": 124 + }, + "torque": 0, + "positionImpulse": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 127 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 128 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 129 + }, + "chamfer": null, + "circleRadius": 38.6693, + "bounds": { + "#": 131 + }, + "positionPrev": { + "#": 134 + }, + "anglePrev": 0, + "axes": { + "#": 135 + }, + "area": 4652.04006, + "mass": 4.65204, + "inverseMass": 0.21496, + "inertia": 13777.65485, + "inverseInertia": 0.00007, + "parent": { + "#": 94 + }, + "sleepCounter": 0 + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + } + ], + { + "x": 96.774, + "y": 63.33, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 94.543, + "y": 72.381, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 90.211, + "y": 80.636, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 84.029, + "y": 87.613, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 76.358, + "y": 92.909, + "index": 4, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 67.641, + "y": 96.215, + "index": 5, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 58.387, + "y": 97.338, + "index": 6, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 49.133, + "y": 96.215, + "index": 7, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 40.416, + "y": 92.909, + "index": 8, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 32.745, + "y": 87.613, + "index": 9, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 26.563, + "y": 80.636, + "index": 10, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 22.231, + "y": 72.381, + "index": 11, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 20, + "y": 63.33, + "index": 12, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 20, + "y": 54.008, + "index": 13, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 22.231, + "y": 44.957, + "index": 14, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 26.563, + "y": 36.702, + "index": 15, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 32.745, + "y": 29.725, + "index": 16, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 40.416, + "y": 24.429, + "index": 17, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 49.133, + "y": 21.123, + "index": 18, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 58.387, + "y": 20, + "index": 19, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 67.641, + "y": 21.123, + "index": 20, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 76.358, + "y": 24.429, + "index": 21, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 84.029, + "y": 29.725, + "index": 22, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 90.211, + "y": 36.702, + "index": 23, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 94.543, + "y": 44.957, + "index": 24, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 96.774, + "y": 54.008, + "index": 25, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 58.387, + "y": 58.669 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 130 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 132 + }, + "max": { + "#": 133 + } + }, + { + "x": 20, + "y": 20 + }, + { + "x": 96.774, + "y": 97.338 + }, + { + "x": 58.387, + "y": 58.669 + }, + [ + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88548, + "y": -0.46468 + }, + { + "x": -0.74846, + "y": -0.66318 + }, + { + "x": -0.56814, + "y": -0.82293 + }, + { + "x": -0.35461, + "y": -0.93501 + }, + { + "x": -0.12047, + "y": -0.99272 + }, + { + "x": 0.12047, + "y": -0.99272 + }, + { + "x": 0.35461, + "y": -0.93501 + }, + { + "x": 0.56814, + "y": -0.82293 + }, + { + "x": 0.74846, + "y": -0.66318 + }, + { + "x": 0.88548, + "y": -0.46468 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 150 + }, + "angle": 0, + "vertices": { + "#": 151 + }, + "position": { + "#": 156 + }, + "force": { + "#": 157 + }, + "torque": 0, + "positionImpulse": { + "#": 158 + }, + "constraintImpulse": { + "#": 159 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 160 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 161 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 162 + }, + "chamfer": null, + "bounds": { + "#": 164 + }, + "positionPrev": { + "#": 167 + }, + "anglePrev": 0, + "axes": { + "#": 168 + }, + "area": 3285.22419, + "mass": 3.28522, + "inverseMass": 0.30439, + "inertia": 16260.27647, + "inverseInertia": 0.00006, + "parent": { + "#": 149 + }, + "sleepCounter": 0 + }, + [ + { + "#": 149 + } + ], + [ + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + } + ], + { + "x": 96.774, + "y": 20, + "index": 0, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 215.44221, + "y": 20, + "index": 1, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 215.44221, + "y": 47.68411, + "index": 2, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 96.774, + "y": 47.68411, + "index": 3, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 156.1081, + "y": 33.84206 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 163 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 165 + }, + "max": { + "#": 166 + } + }, + { + "x": 96.774, + "y": 20 + }, + { + "x": 215.44221, + "y": 47.68411 + }, + { + "x": 156.1081, + "y": 33.84206 + }, + [ + { + "#": 169 + }, + { + "#": 170 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 172 + }, + "angle": 0, + "vertices": { + "#": 173 + }, + "position": { + "#": 178 + }, + "force": { + "#": 179 + }, + "torque": 0, + "positionImpulse": { + "#": 180 + }, + "constraintImpulse": { + "#": 181 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 182 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 183 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 184 + }, + "chamfer": null, + "bounds": { + "#": 186 + }, + "positionPrev": { + "#": 189 + }, + "anglePrev": 0, + "axes": { + "#": 190 + }, + "area": 1082.55274, + "mass": 1.08255, + "inverseMass": 0.92374, + "inertia": 830.3537, + "inverseInertia": 0.0012, + "parent": { + "#": 171 + }, + "sleepCounter": 0 + }, + [ + { + "#": 171 + } + ], + [ + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + } + ], + { + "x": 215.44221, + "y": 20, + "index": 0, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 243.02623, + "y": 20, + "index": 1, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 243.02623, + "y": 59.24565, + "index": 2, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 215.44221, + "y": 59.24565, + "index": 3, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 229.23422, + "y": 39.62282 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 185 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 187 + }, + "max": { + "#": 188 + } + }, + { + "x": 215.44221, + "y": 20 + }, + { + "x": 243.02623, + "y": 59.24565 + }, + { + "x": 229.23422, + "y": 39.62282 + }, + [ + { + "#": 191 + }, + { + "#": 192 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 194 + }, + "angle": 0, + "vertices": { + "#": 195 + }, + "position": { + "#": 200 + }, + "force": { + "#": 201 + }, + "torque": 0, + "positionImpulse": { + "#": 202 + }, + "constraintImpulse": { + "#": 203 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 204 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 205 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 206 + }, + "chamfer": null, + "bounds": { + "#": 208 + }, + "positionPrev": { + "#": 211 + }, + "anglePrev": 0, + "axes": { + "#": 212 + }, + "area": 3923.7696, + "mass": 3.92377, + "inverseMass": 0.25486, + "inertia": 10263.97858, + "inverseInertia": 0.0001, + "parent": { + "#": 193 + }, + "sleepCounter": 0 + }, + [ + { + "#": 193 + } + ], + [ + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + } + ], + { + "x": 305.66623, + "y": 82.64, + "index": 0, + "body": { + "#": 193 + }, + "isInternal": false + }, + { + "x": 243.02623, + "y": 82.64, + "index": 1, + "body": { + "#": 193 + }, + "isInternal": false + }, + { + "x": 243.02623, + "y": 20, + "index": 2, + "body": { + "#": 193 + }, + "isInternal": false + }, + { + "x": 305.66623, + "y": 20, + "index": 3, + "body": { + "#": 193 + }, + "isInternal": false + }, + { + "x": 274.34623, + "y": 51.32 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 207 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 209 + }, + "max": { + "#": 210 + } + }, + { + "x": 243.02623, + "y": 20 + }, + { + "x": 305.66623, + "y": 82.64 + }, + { + "x": 274.34623, + "y": 51.32 + }, + [ + { + "#": 213 + }, + { + "#": 214 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 216 + }, + "angle": 0, + "vertices": { + "#": 217 + }, + "position": { + "#": 246 + }, + "force": { + "#": 247 + }, + "torque": 0, + "positionImpulse": { + "#": 248 + }, + "constraintImpulse": { + "#": 249 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 250 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 251 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 252 + }, + "bounds": { + "#": 254 + }, + "positionPrev": { + "#": 257 + }, + "anglePrev": 0, + "axes": { + "#": 258 + }, + "area": 4997.27275, + "mass": 4.99727, + "inverseMass": 0.20011, + "inertia": 15946.95231, + "inverseInertia": 0.00006, + "parent": { + "#": 215 + }, + "sleepCounter": 0 + }, + [ + { + "#": 215 + } + ], + [ + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + } + ], + { + "x": 384.53447, + "y": 74.78732, + "index": 0, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 384.23465, + "y": 77.21768, + "index": 1, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 383.35315, + "y": 79.50229, + "index": 2, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 381.94284, + "y": 81.50418, + "index": 3, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 359.19612, + "y": 99.81004, + "index": 4, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 357.10902, + "y": 101.09096, + "index": 5, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 354.77319, + "y": 101.82622, + "index": 6, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 352.3287, + "y": 101.97175, + "index": 7, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 323.8344, + "y": 95.60086, + "index": 8, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 321.53168, + "y": 94.76773, + "index": 9, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 319.50048, + "y": 93.39993, + "index": 10, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 317.86261, + "y": 91.57949, + "index": 11, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 305.07755, + "y": 65.32912, + "index": 12, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 304.2932, + "y": 63.00936, + "index": 13, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 304.09615, + "y": 60.56853, + "index": 14, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 304.49822, + "y": 58.15299, + "index": 15, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 317.04993, + "y": 31.79026, + "index": 16, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 318.37456, + "y": 29.73065, + "index": 17, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 320.16003, + "y": 28.05473, + "index": 18, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 322.29929, + "y": 26.863, + "index": 19, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 350.73594, + "y": 20.2396, + "index": 20, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 353.17211, + "y": 19.9911, + "index": 21, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 355.59564, + "y": 20.34214, + "index": 22, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 357.86119, + "y": 21.27167, + "index": 23, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 380.76943, + "y": 39.37505, + "index": 24, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 382.4826, + "y": 41.12477, + "index": 25, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 383.71917, + "y": 43.2384, + "index": 26, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 384.40497, + "y": 45.58918, + "index": 27, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 345.88539, + "y": 60.99032 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 253 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 255 + }, + "max": { + "#": 256 + } + }, + { + "x": 304.09615, + "y": 19.9911 + }, + { + "x": 384.53447, + "y": 101.97175 + }, + { + "x": 345.88539, + "y": 60.99032 + }, + [ + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + } + ], + { + "x": 0.99248, + "y": 0.12244 + }, + { + "x": 0.93296, + "y": 0.35997 + }, + { + "x": 0.8175, + "y": 0.57592 + }, + { + "x": 0.62696, + "y": 0.77905 + }, + { + "x": 0.52308, + "y": 0.85229 + }, + { + "x": 0.30025, + "y": 0.95386 + }, + { + "x": 0.05942, + "y": 0.99823 + }, + { + "x": -0.2182, + "y": 0.9759 + }, + { + "x": -0.34022, + "y": 0.94035 + }, + { + "x": -0.55856, + "y": 0.82947 + }, + { + "x": -0.7434, + "y": 0.66884 + }, + { + "x": -0.89904, + "y": 0.43787 + }, + { + "x": -0.94732, + "y": 0.3203 + }, + { + "x": -0.99676, + "y": 0.08047 + }, + { + "x": -0.98643, + "y": -0.16419 + }, + { + "x": -0.90289, + "y": -0.42988 + }, + { + "x": -0.84107, + "y": -0.54093 + }, + { + "x": -0.68438, + "y": -0.72912 + }, + { + "x": -0.48666, + "y": -0.87359 + }, + { + "x": -0.22685, + "y": -0.97393 + }, + { + "x": -0.10148, + "y": -0.99484 + }, + { + "x": 0.14335, + "y": -0.98967 + }, + { + "x": 0.37958, + "y": -0.92516 + }, + { + "x": 0.62002, + "y": -0.78458 + }, + { + "x": 0.71453, + "y": -0.6996 + }, + { + "x": 0.86314, + "y": -0.50497 + }, + { + "x": 0.95998, + "y": -0.28006 + }, + { + "x": 0.99999, + "y": -0.00444 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 288 + }, + "angle": 0, + "vertices": { + "#": 289 + }, + "position": { + "#": 294 + }, + "force": { + "#": 295 + }, + "torque": 0, + "positionImpulse": { + "#": 296 + }, + "constraintImpulse": { + "#": 297 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 298 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 299 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 300 + }, + "chamfer": null, + "bounds": { + "#": 302 + }, + "positionPrev": { + "#": 305 + }, + "anglePrev": 0, + "axes": { + "#": 306 + }, + "area": 2424.72213, + "mass": 2.42472, + "inverseMass": 0.41242, + "inertia": 6421.58154, + "inverseInertia": 0.00016, + "parent": { + "#": 287 + }, + "sleepCounter": 0 + }, + [ + { + "#": 287 + } + ], + [ + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + } + ], + { + "x": 384.53447, + "y": 20, + "index": 0, + "body": { + "#": 287 + }, + "isInternal": false + }, + { + "x": 468.9105, + "y": 20, + "index": 1, + "body": { + "#": 287 + }, + "isInternal": false + }, + { + "x": 468.9105, + "y": 48.7371, + "index": 2, + "body": { + "#": 287 + }, + "isInternal": false + }, + { + "x": 384.53447, + "y": 48.7371, + "index": 3, + "body": { + "#": 287 + }, + "isInternal": false + }, + { + "x": 426.72249, + "y": 34.36855 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 301 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 303 + }, + "max": { + "#": 304 + } + }, + { + "x": 384.53447, + "y": 20 + }, + { + "x": 468.9105, + "y": 48.7371 + }, + { + "x": 426.72249, + "y": 34.36855 + }, + [ + { + "#": 307 + }, + { + "#": 308 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 310 + }, + "angle": 0, + "vertices": { + "#": 311 + }, + "position": { + "#": 316 + }, + "force": { + "#": 317 + }, + "torque": 0, + "positionImpulse": { + "#": 318 + }, + "constraintImpulse": { + "#": 319 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 320 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 321 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 322 + }, + "chamfer": null, + "bounds": { + "#": 324 + }, + "positionPrev": { + "#": 327 + }, + "anglePrev": 0, + "axes": { + "#": 328 + }, + "area": 3062.13511, + "mass": 3.06214, + "inverseMass": 0.32657, + "inertia": 12902.45778, + "inverseInertia": 0.00008, + "parent": { + "#": 309 + }, + "sleepCounter": 0 + }, + [ + { + "#": 309 + } + ], + [ + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + } + ], + { + "x": 468.9105, + "y": 20, + "index": 0, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 577.7651, + "y": 20, + "index": 1, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 577.7651, + "y": 48.13051, + "index": 2, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 468.9105, + "y": 48.13051, + "index": 3, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 523.3378, + "y": 34.06525 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 323 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 325 + }, + "max": { + "#": 326 + } + }, + { + "x": 468.9105, + "y": 20 + }, + { + "x": 577.7651, + "y": 48.13051 + }, + { + "x": 523.3378, + "y": 34.06525 + }, + [ + { + "#": 329 + }, + { + "#": 330 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 332 + }, + "angle": 0, + "vertices": { + "#": 333 + }, + "position": { + "#": 338 + }, + "force": { + "#": 339 + }, + "torque": 0, + "positionImpulse": { + "#": 340 + }, + "constraintImpulse": { + "#": 341 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 342 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 343 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 344 + }, + "chamfer": null, + "bounds": { + "#": 346 + }, + "positionPrev": { + "#": 349 + }, + "anglePrev": 0, + "axes": { + "#": 350 + }, + "area": 1378.04283, + "mass": 1.37804, + "inverseMass": 0.72567, + "inertia": 1458.97641, + "inverseInertia": 0.00069, + "parent": { + "#": 331 + }, + "sleepCounter": 0 + }, + [ + { + "#": 331 + } + ], + [ + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + } + ], + { + "x": 577.7651, + "y": 20, + "index": 0, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 606.02749, + "y": 20, + "index": 1, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 606.02749, + "y": 68.75889, + "index": 2, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 577.7651, + "y": 68.75889, + "index": 3, + "body": { + "#": 331 + }, + "isInternal": false + }, + { + "x": 591.89629, + "y": 44.37945 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 345 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 347 + }, + "max": { + "#": 348 + } + }, + { + "x": 577.7651, + "y": 20 + }, + { + "x": 606.02749, + "y": 68.75889 + }, + { + "x": 591.89629, + "y": 44.37945 + }, + [ + { + "#": 351 + }, + { + "#": 352 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 13, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 354 + }, + "angle": 0, + "vertices": { + "#": 355 + }, + "position": { + "#": 382 + }, + "force": { + "#": 383 + }, + "torque": 0, + "positionImpulse": { + "#": 384 + }, + "constraintImpulse": { + "#": 385 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 386 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 387 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 388 + }, + "chamfer": null, + "circleRadius": 38.39667, + "bounds": { + "#": 390 + }, + "positionPrev": { + "#": 393 + }, + "anglePrev": 0, + "axes": { + "#": 394 + }, + "area": 4586.77827, + "mass": 4.58678, + "inverseMass": 0.21802, + "inertia": 13393.80286, + "inverseInertia": 0.00007, + "parent": { + "#": 353 + }, + "sleepCounter": 0 + }, + [ + { + "#": 353 + } + ], + [ + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + } + ], + { + "x": 682.26149, + "y": 63.025, + "index": 0, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 680.04649, + "y": 72.013, + "index": 1, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 675.74449, + "y": 80.209, + "index": 2, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 669.60649, + "y": 87.137, + "index": 3, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 661.98849, + "y": 92.396, + "index": 4, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 653.33349, + "y": 95.678, + "index": 5, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 644.14449, + "y": 96.794, + "index": 6, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 634.95549, + "y": 95.678, + "index": 7, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 626.30049, + "y": 92.396, + "index": 8, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 618.68249, + "y": 87.137, + "index": 9, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 612.54449, + "y": 80.209, + "index": 10, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 608.24249, + "y": 72.013, + "index": 11, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 606.02749, + "y": 63.025, + "index": 12, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 606.02749, + "y": 53.769, + "index": 13, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 608.24249, + "y": 44.781, + "index": 14, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 612.54449, + "y": 36.585, + "index": 15, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 618.68249, + "y": 29.657, + "index": 16, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 626.30049, + "y": 24.398, + "index": 17, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 634.95549, + "y": 21.116, + "index": 18, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 644.14449, + "y": 20, + "index": 19, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 653.33349, + "y": 21.116, + "index": 20, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 661.98849, + "y": 24.398, + "index": 21, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 669.60649, + "y": 29.657, + "index": 22, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 675.74449, + "y": 36.585, + "index": 23, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 680.04649, + "y": 44.781, + "index": 24, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 682.26149, + "y": 53.769, + "index": 25, + "body": { + "#": 353 + }, + "isInternal": false + }, + { + "x": 644.14449, + "y": 58.397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 389 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 391 + }, + "max": { + "#": 392 + } + }, + { + "x": 606.02749, + "y": 20 + }, + { + "x": 682.26149, + "y": 96.794 + }, + { + "x": 644.14449, + "y": 58.397 + }, + [ + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + } + ], + { + "x": -0.97095, + "y": -0.23928 + }, + { + "x": -0.88544, + "y": -0.46476 + }, + { + "x": -0.74849, + "y": -0.66314 + }, + { + "x": -0.56811, + "y": -0.82295 + }, + { + "x": -0.35457, + "y": -0.93503 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.35457, + "y": -0.93503 + }, + { + "x": 0.56811, + "y": -0.82295 + }, + { + "x": 0.74849, + "y": -0.66314 + }, + { + "x": 0.88544, + "y": -0.46476 + }, + { + "x": 0.97095, + "y": -0.23928 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 409 + }, + "angle": 0, + "vertices": { + "#": 410 + }, + "position": { + "#": 415 + }, + "force": { + "#": 416 + }, + "torque": 0, + "positionImpulse": { + "#": 417 + }, + "constraintImpulse": { + "#": 418 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 419 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 420 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 421 + }, + "chamfer": null, + "bounds": { + "#": 423 + }, + "positionPrev": { + "#": 426 + }, + "anglePrev": 0, + "axes": { + "#": 427 + }, + "area": 1977.44943, + "mass": 1.97745, + "inverseMass": 0.5057, + "inertia": 2674.50779, + "inverseInertia": 0.00037, + "parent": { + "#": 408 + }, + "sleepCounter": 0 + }, + [ + { + "#": 408 + } + ], + [ + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + } + ], + { + "x": 682.26149, + "y": 20, + "index": 0, + "body": { + "#": 408 + }, + "isInternal": false + }, + { + "x": 732.08241, + "y": 20, + "index": 1, + "body": { + "#": 408 + }, + "isInternal": false + }, + { + "x": 732.08241, + "y": 59.69114, + "index": 2, + "body": { + "#": 408 + }, + "isInternal": false + }, + { + "x": 682.26149, + "y": 59.69114, + "index": 3, + "body": { + "#": 408 + }, + "isInternal": false + }, + { + "x": 707.17195, + "y": 39.84557 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 422 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 424 + }, + "max": { + "#": 425 + } + }, + { + "x": 682.26149, + "y": 20 + }, + { + "x": 732.08241, + "y": 59.69114 + }, + { + "x": 707.17195, + "y": 39.84557 + }, + [ + { + "#": 428 + }, + { + "#": 429 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 15, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 431 + }, + "angle": 0, + "vertices": { + "#": 432 + }, + "position": { + "#": 437 + }, + "force": { + "#": 438 + }, + "torque": 0, + "positionImpulse": { + "#": 439 + }, + "constraintImpulse": { + "#": 440 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 441 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 442 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 443 + }, + "chamfer": null, + "bounds": { + "#": 445 + }, + "positionPrev": { + "#": 448 + }, + "anglePrev": 0, + "axes": { + "#": 449 + }, + "area": 2209.188, + "mass": 2.20919, + "inverseMass": 0.45266, + "inertia": 3253.67442, + "inverseInertia": 0.00031, + "parent": { + "#": 430 + }, + "sleepCounter": 0 + }, + [ + { + "#": 430 + } + ], + [ + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + } + ], + { + "x": 779.08441, + "y": 67.002, + "index": 0, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 732.08241, + "y": 67.002, + "index": 1, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 732.08241, + "y": 20, + "index": 2, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 779.08441, + "y": 20, + "index": 3, + "body": { + "#": 430 + }, + "isInternal": false + }, + { + "x": 755.58341, + "y": 43.501 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 444 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 446 + }, + "max": { + "#": 447 + } + }, + { + "x": 732.08241, + "y": 20 + }, + { + "x": 779.08441, + "y": 67.002 + }, + { + "x": 755.58341, + "y": 43.501 + }, + [ + { + "#": 450 + }, + { + "#": 451 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 16, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 453 + }, + "angle": 0, + "vertices": { + "#": 454 + }, + "position": { + "#": 481 + }, + "force": { + "#": 482 + }, + "torque": 0, + "positionImpulse": { + "#": 483 + }, + "constraintImpulse": { + "#": 484 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 485 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 486 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 487 + }, + "chamfer": null, + "circleRadius": 40.3634, + "bounds": { + "#": 489 + }, + "positionPrev": { + "#": 492 + }, + "anglePrev": 0, + "axes": { + "#": 493 + }, + "area": 5068.59422, + "mass": 5.06859, + "inverseMass": 0.19729, + "inertia": 16355.48617, + "inverseInertia": 0.00006, + "parent": { + "#": 452 + }, + "sleepCounter": 0 + }, + [ + { + "#": 452 + } + ], + [ + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + } + ], + { + "x": 859.22241, + "y": 65.228, + "index": 0, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 856.89341, + "y": 74.676, + "index": 1, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 852.37141, + "y": 83.292, + "index": 2, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 845.91941, + "y": 90.575, + "index": 3, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 837.91141, + "y": 96.103, + "index": 4, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 828.81341, + "y": 99.554, + "index": 5, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 819.15341, + "y": 100.726, + "index": 6, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 809.49341, + "y": 99.554, + "index": 7, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 800.39541, + "y": 96.103, + "index": 8, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 792.38741, + "y": 90.575, + "index": 9, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 785.93541, + "y": 83.292, + "index": 10, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 781.41341, + "y": 74.676, + "index": 11, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 779.08441, + "y": 65.228, + "index": 12, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 779.08441, + "y": 55.498, + "index": 13, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 781.41341, + "y": 46.05, + "index": 14, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 785.93541, + "y": 37.434, + "index": 15, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 792.38741, + "y": 30.151, + "index": 16, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 800.39541, + "y": 24.623, + "index": 17, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 809.49341, + "y": 21.172, + "index": 18, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 819.15341, + "y": 20, + "index": 19, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 828.81341, + "y": 21.172, + "index": 20, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 837.91141, + "y": 24.623, + "index": 21, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 845.91941, + "y": 30.151, + "index": 22, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 852.37141, + "y": 37.434, + "index": 23, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 856.89341, + "y": 46.05, + "index": 24, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 859.22241, + "y": 55.498, + "index": 25, + "body": { + "#": 452 + }, + "isInternal": false + }, + { + "x": 819.15341, + "y": 60.363 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 488 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 490 + }, + "max": { + "#": 491 + } + }, + { + "x": 779.08441, + "y": 20 + }, + { + "x": 859.22241, + "y": 100.726 + }, + { + "x": 819.15341, + "y": 60.363 + }, + [ + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + }, + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + } + ], + { + "x": -0.97094, + "y": -0.23934 + }, + { + "x": -0.88546, + "y": -0.46472 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.5681, + "y": -0.82296 + }, + { + "x": -0.35466, + "y": -0.935 + }, + { + "x": -0.12044, + "y": -0.99272 + }, + { + "x": 0.12044, + "y": -0.99272 + }, + { + "x": 0.35466, + "y": -0.935 + }, + { + "x": 0.5681, + "y": -0.82296 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88546, + "y": -0.46472 + }, + { + "x": 0.97094, + "y": -0.23934 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 17, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 508 + }, + "angle": 0, + "vertices": { + "#": 509 + }, + "position": { + "#": 526 + }, + "force": { + "#": 527 + }, + "torque": 0, + "positionImpulse": { + "#": 528 + }, + "constraintImpulse": { + "#": 529 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 530 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 531 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 532 + }, + "bounds": { + "#": 534 + }, + "positionPrev": { + "#": 537 + }, + "anglePrev": 0, + "axes": { + "#": 538 + }, + "area": 703.46214, + "mass": 0.70346, + "inverseMass": 1.42154, + "inertia": 321.35704, + "inverseInertia": 0.00311, + "parent": { + "#": 507 + }, + "sleepCounter": 0 + }, + [ + { + "#": 507 + } + ], + [ + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + } + ], + { + "x": 859.22241, + "y": 30, + "index": 0, + "body": { + "#": 507 + }, + "isInternal": false + }, + { + "x": 860.13116, + "y": 25.83477, + "index": 1, + "body": { + "#": 507 + }, + "isInternal": false + }, + { + "x": 862.69224, + "y": 22.42657, + "index": 2, + "body": { + "#": 507 + }, + "isInternal": false + }, + { + "x": 866.44017, + "y": 20.39484, + "index": 3, + "body": { + "#": 507 + }, + "isInternal": false + }, + { + "x": 880.02241, + "y": 20, + "index": 4, + "body": { + "#": 507 + }, + "isInternal": false + }, + { + "x": 884.18764, + "y": 20.90875, + "index": 5, + "body": { + "#": 507 + }, + "isInternal": false + }, + { + "x": 887.59584, + "y": 23.46983, + "index": 6, + "body": { + "#": 507 + }, + "isInternal": false + }, + { + "x": 889.62758, + "y": 27.21776, + "index": 7, + "body": { + "#": 507 + }, + "isInternal": false + }, + { + "x": 890.02241, + "y": 36.1229, + "index": 8, + "body": { + "#": 507 + }, + "isInternal": false + }, + { + "x": 889.11367, + "y": 40.28813, + "index": 9, + "body": { + "#": 507 + }, + "isInternal": false + }, + { + "x": 886.55259, + "y": 43.69633, + "index": 10, + "body": { + "#": 507 + }, + "isInternal": false + }, + { + "x": 882.80465, + "y": 45.72806, + "index": 11, + "body": { + "#": 507 + }, + "isInternal": false + }, + { + "x": 869.22241, + "y": 46.1229, + "index": 12, + "body": { + "#": 507 + }, + "isInternal": false + }, + { + "x": 865.05718, + "y": 45.21415, + "index": 13, + "body": { + "#": 507 + }, + "isInternal": false + }, + { + "x": 861.64898, + "y": 42.65307, + "index": 14, + "body": { + "#": 507 + }, + "isInternal": false + }, + { + "x": 859.61725, + "y": 38.90514, + "index": 15, + "body": { + "#": 507 + }, + "isInternal": false + }, + { + "x": 874.62241, + "y": 33.06145 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 533 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 535 + }, + "max": { + "#": 536 + } + }, + { + "x": 859.22241, + "y": 20 + }, + { + "x": 890.02241, + "y": 46.1229 + }, + { + "x": 874.62241, + "y": 33.06145 + }, + [ + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + } + ], + { + "x": 0.97702, + "y": 0.21316 + }, + { + "x": 0.79944, + "y": 0.60074 + }, + { + "x": 0.47657, + "y": 0.87913 + }, + { + "x": 0.02906, + "y": 0.99958 + }, + { + "x": -0.21316, + "y": 0.97702 + }, + { + "x": -0.60074, + "y": 0.79944 + }, + { + "x": -0.87913, + "y": 0.47657 + }, + { + "x": -0.99902, + "y": 0.04429 + }, + { + "id": 18, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 548 + }, + "angle": 0, + "vertices": { + "#": 549 + }, + "position": { + "#": 554 + }, + "force": { + "#": 555 + }, + "torque": 0, + "positionImpulse": { + "#": 556 + }, + "constraintImpulse": { + "#": 557 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 558 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 559 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 560 + }, + "chamfer": null, + "bounds": { + "#": 562 + }, + "positionPrev": { + "#": 565 + }, + "anglePrev": 0, + "axes": { + "#": 566 + }, + "area": 3272.29762, + "mass": 3.2723, + "inverseMass": 0.3056, + "inertia": 7138.62113, + "inverseInertia": 0.00014, + "parent": { + "#": 547 + }, + "sleepCounter": 0 + }, + [ + { + "#": 547 + } + ], + [ + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + } + ], + { + "x": 947.22641, + "y": 77.204, + "index": 0, + "body": { + "#": 547 + }, + "isInternal": false + }, + { + "x": 890.02241, + "y": 77.204, + "index": 1, + "body": { + "#": 547 + }, + "isInternal": false + }, + { + "x": 890.02241, + "y": 20, + "index": 2, + "body": { + "#": 547 + }, + "isInternal": false + }, + { + "x": 947.22641, + "y": 20, + "index": 3, + "body": { + "#": 547 + }, + "isInternal": false + }, + { + "x": 918.62441, + "y": 48.602 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 561 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 563 + }, + "max": { + "#": 564 + } + }, + { + "x": 890.02241, + "y": 20 + }, + { + "x": 947.22641, + "y": 77.204 + }, + { + "x": 918.62441, + "y": 48.602 + }, + [ + { + "#": 567 + }, + { + "#": 568 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 19, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 570 + }, + "angle": 0, + "vertices": { + "#": 571 + }, + "position": { + "#": 576 + }, + "force": { + "#": 577 + }, + "torque": 0, + "positionImpulse": { + "#": 578 + }, + "constraintImpulse": { + "#": 579 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 580 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 581 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 582 + }, + "chamfer": null, + "bounds": { + "#": 584 + }, + "positionPrev": { + "#": 587 + }, + "anglePrev": 0, + "axes": { + "#": 588 + }, + "area": 2280.87211, + "mass": 2.28087, + "inverseMass": 0.43843, + "inertia": 5951.84099, + "inverseInertia": 0.00017, + "parent": { + "#": 569 + }, + "sleepCounter": 0 + }, + [ + { + "#": 569 + } + ], + [ + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + } + ], + { + "x": 947.22641, + "y": 20, + "index": 0, + "body": { + "#": 569 + }, + "isInternal": false + }, + { + "x": 1031.4591, + "y": 20, + "index": 1, + "body": { + "#": 569 + }, + "isInternal": false + }, + { + "x": 1031.4591, + "y": 47.07823, + "index": 2, + "body": { + "#": 569 + }, + "isInternal": false + }, + { + "x": 947.22641, + "y": 47.07823, + "index": 3, + "body": { + "#": 569 + }, + "isInternal": false + }, + { + "x": 989.34276, + "y": 33.53912 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 583 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 585 + }, + "max": { + "#": 586 + } + }, + { + "x": 947.22641, + "y": 20 + }, + { + "x": 1031.4591, + "y": 47.07823 + }, + { + "x": 989.34276, + "y": 33.53912 + }, + [ + { + "#": 589 + }, + { + "#": 590 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 20, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 592 + }, + "angle": 0, + "vertices": { + "#": 593 + }, + "position": { + "#": 620 + }, + "force": { + "#": 621 + }, + "torque": 0, + "positionImpulse": { + "#": 622 + }, + "constraintImpulse": { + "#": 623 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 624 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 625 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 626 + }, + "chamfer": null, + "circleRadius": 49.48881, + "bounds": { + "#": 628 + }, + "positionPrev": { + "#": 631 + }, + "anglePrev": 0, + "axes": { + "#": 632 + }, + "area": 7619.53881, + "mass": 7.61954, + "inverseMass": 0.13124, + "inertia": 36961.17597, + "inverseInertia": 0.00003, + "parent": { + "#": 591 + }, + "sleepCounter": 0 + }, + [ + { + "#": 591 + } + ], + [ + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + } + ], + { + "x": 118.256, + "y": 157.43464, + "index": 0, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 115.401, + "y": 169.01864, + "index": 1, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 109.856, + "y": 179.58264, + "index": 2, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 101.945, + "y": 188.51264, + "index": 3, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 92.127, + "y": 195.28964, + "index": 4, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 80.971, + "y": 199.52064, + "index": 5, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 69.128, + "y": 200.95864, + "index": 6, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 57.285, + "y": 199.52064, + "index": 7, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 46.129, + "y": 195.28964, + "index": 8, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 36.311, + "y": 188.51264, + "index": 9, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 28.4, + "y": 179.58264, + "index": 10, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 22.855, + "y": 169.01864, + "index": 11, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 20, + "y": 157.43464, + "index": 12, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 20, + "y": 145.50464, + "index": 13, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 22.855, + "y": 133.92064, + "index": 14, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 28.4, + "y": 123.35664, + "index": 15, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 36.311, + "y": 114.42664, + "index": 16, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 46.129, + "y": 107.64964, + "index": 17, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 57.285, + "y": 103.41864, + "index": 18, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 69.128, + "y": 101.98064, + "index": 19, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 80.971, + "y": 103.41864, + "index": 20, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 92.127, + "y": 107.64964, + "index": 21, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 101.945, + "y": 114.42664, + "index": 22, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 109.856, + "y": 123.35664, + "index": 23, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 115.401, + "y": 133.92064, + "index": 24, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 118.256, + "y": 145.50464, + "index": 25, + "body": { + "#": 591 + }, + "isInternal": false + }, + { + "x": 69.128, + "y": 151.46964 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 627 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 629 + }, + "max": { + "#": 630 + } + }, + { + "x": 20, + "y": 101.98064 + }, + { + "x": 118.256, + "y": 200.95864 + }, + { + "x": 69.128, + "y": 151.46964 + }, + [ + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + } + ], + { + "x": -0.97095, + "y": -0.2393 + }, + { + "x": -0.88544, + "y": -0.46476 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.35461, + "y": -0.93501 + }, + { + "x": -0.12054, + "y": -0.99271 + }, + { + "x": 0.12054, + "y": -0.99271 + }, + { + "x": 0.35461, + "y": -0.93501 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88544, + "y": -0.46476 + }, + { + "x": 0.97095, + "y": -0.2393 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 21, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 647 + }, + "angle": 0, + "vertices": { + "#": 648 + }, + "position": { + "#": 665 + }, + "force": { + "#": 666 + }, + "torque": 0, + "positionImpulse": { + "#": 667 + }, + "constraintImpulse": { + "#": 668 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 669 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 670 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 671 + }, + "bounds": { + "#": 673 + }, + "positionPrev": { + "#": 676 + }, + "anglePrev": 0, + "axes": { + "#": 677 + }, + "area": 1222.70251, + "mass": 1.2227, + "inverseMass": 0.81786, + "inertia": 1019.60659, + "inverseInertia": 0.00098, + "parent": { + "#": 646 + }, + "sleepCounter": 0 + }, + [ + { + "#": 646 + } + ], + [ + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + } + ], + { + "x": 118.256, + "y": 111.98064, + "index": 0, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 119.16475, + "y": 107.81541, + "index": 1, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 121.72583, + "y": 104.40721, + "index": 2, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 125.47376, + "y": 102.37548, + "index": 3, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 139.19221, + "y": 101.98064, + "index": 4, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 143.35744, + "y": 102.88939, + "index": 5, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 146.76564, + "y": 105.45047, + "index": 6, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 148.79738, + "y": 109.19841, + "index": 7, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 149.19221, + "y": 134.99001, + "index": 8, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 148.28347, + "y": 139.15524, + "index": 9, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 145.72239, + "y": 142.56344, + "index": 10, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 141.97445, + "y": 144.59517, + "index": 11, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 128.256, + "y": 144.99001, + "index": 12, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 124.09077, + "y": 144.08126, + "index": 13, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 120.68257, + "y": 141.52018, + "index": 14, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 118.65084, + "y": 137.77225, + "index": 15, + "body": { + "#": 646 + }, + "isInternal": false + }, + { + "x": 133.72411, + "y": 123.48533 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 672 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 674 + }, + "max": { + "#": 675 + } + }, + { + "x": 118.256, + "y": 101.98064 + }, + { + "x": 149.19221, + "y": 144.99001 + }, + { + "x": 133.72411, + "y": 123.48533 + }, + [ + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + } + ], + { + "x": 0.97702, + "y": 0.21316 + }, + { + "x": 0.79944, + "y": 0.60074 + }, + { + "x": 0.47657, + "y": 0.87913 + }, + { + "x": 0.02877, + "y": 0.99959 + }, + { + "x": -0.21316, + "y": 0.97702 + }, + { + "x": -0.60074, + "y": 0.79944 + }, + { + "x": -0.87913, + "y": 0.47657 + }, + { + "x": -0.99988, + "y": 0.01531 + }, + { + "id": 22, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 687 + }, + "angle": 0, + "vertices": { + "#": 688 + }, + "position": { + "#": 693 + }, + "force": { + "#": 694 + }, + "torque": 0, + "positionImpulse": { + "#": 695 + }, + "constraintImpulse": { + "#": 696 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 697 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 698 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 699 + }, + "chamfer": null, + "bounds": { + "#": 701 + }, + "positionPrev": { + "#": 704 + }, + "anglePrev": 0, + "axes": { + "#": 705 + }, + "area": 1642.08545, + "mass": 1.64209, + "inverseMass": 0.60898, + "inertia": 1814.46959, + "inverseInertia": 0.00055, + "parent": { + "#": 686 + }, + "sleepCounter": 0 + }, + [ + { + "#": 686 + } + ], + [ + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + } + ], + { + "x": 149.19221, + "y": 101.98064, + "index": 0, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 187.03633, + "y": 101.98064, + "index": 1, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 187.03633, + "y": 145.37142, + "index": 2, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 149.19221, + "y": 145.37142, + "index": 3, + "body": { + "#": 686 + }, + "isInternal": false + }, + { + "x": 168.11427, + "y": 123.67603 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 700 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 702 + }, + "max": { + "#": 703 + } + }, + { + "x": 149.19221, + "y": 101.98064 + }, + { + "x": 187.03633, + "y": 145.37142 + }, + { + "x": 168.11427, + "y": 123.67603 + }, + [ + { + "#": 706 + }, + { + "#": 707 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 23, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 709 + }, + "angle": 0, + "vertices": { + "#": 710 + }, + "position": { + "#": 715 + }, + "force": { + "#": 716 + }, + "torque": 0, + "positionImpulse": { + "#": 717 + }, + "constraintImpulse": { + "#": 718 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 719 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 720 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 721 + }, + "chamfer": null, + "bounds": { + "#": 723 + }, + "positionPrev": { + "#": 726 + }, + "anglePrev": 0, + "axes": { + "#": 727 + }, + "area": 3794.8064, + "mass": 3.79481, + "inverseMass": 0.26352, + "inertia": 9600.37043, + "inverseInertia": 0.0001, + "parent": { + "#": 708 + }, + "sleepCounter": 0 + }, + [ + { + "#": 708 + } + ], + [ + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + }, + { + "#": 714 + } + ], + { + "x": 248.63833, + "y": 163.58264, + "index": 0, + "body": { + "#": 708 + }, + "isInternal": false + }, + { + "x": 187.03633, + "y": 163.58264, + "index": 1, + "body": { + "#": 708 + }, + "isInternal": false + }, + { + "x": 187.03633, + "y": 101.98064, + "index": 2, + "body": { + "#": 708 + }, + "isInternal": false + }, + { + "x": 248.63833, + "y": 101.98064, + "index": 3, + "body": { + "#": 708 + }, + "isInternal": false + }, + { + "x": 217.83733, + "y": 132.78164 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 722 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 724 + }, + "max": { + "#": 725 + } + }, + { + "x": 187.03633, + "y": 101.98064 + }, + { + "x": 248.63833, + "y": 163.58264 + }, + { + "x": 217.83733, + "y": 132.78164 + }, + [ + { + "#": 728 + }, + { + "#": 729 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 24, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 731 + }, + "angle": 0, + "vertices": { + "#": 732 + }, + "position": { + "#": 737 + }, + "force": { + "#": 738 + }, + "torque": 0, + "positionImpulse": { + "#": 739 + }, + "constraintImpulse": { + "#": 740 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 741 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 742 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 743 + }, + "chamfer": null, + "bounds": { + "#": 745 + }, + "positionPrev": { + "#": 748 + }, + "anglePrev": 0, + "axes": { + "#": 749 + }, + "area": 1826.87845, + "mass": 1.82688, + "inverseMass": 0.54738, + "inertia": 2226.31467, + "inverseInertia": 0.00045, + "parent": { + "#": 730 + }, + "sleepCounter": 0 + }, + [ + { + "#": 730 + } + ], + [ + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + } + ], + { + "x": 248.63833, + "y": 101.98064, + "index": 0, + "body": { + "#": 730 + }, + "isInternal": false + }, + { + "x": 292.12416, + "y": 101.98064, + "index": 1, + "body": { + "#": 730 + }, + "isInternal": false + }, + { + "x": 292.12416, + "y": 143.99153, + "index": 2, + "body": { + "#": 730 + }, + "isInternal": false + }, + { + "x": 248.63833, + "y": 143.99153, + "index": 3, + "body": { + "#": 730 + }, + "isInternal": false + }, + { + "x": 270.38124, + "y": 122.98609 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 744 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 746 + }, + "max": { + "#": 747 + } + }, + { + "x": 248.63833, + "y": 101.98064 + }, + { + "x": 292.12416, + "y": 143.99153 + }, + { + "x": 270.38124, + "y": 122.98609 + }, + [ + { + "#": 750 + }, + { + "#": 751 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 25, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 753 + }, + "angle": 0, + "vertices": { + "#": 754 + }, + "position": { + "#": 759 + }, + "force": { + "#": 760 + }, + "torque": 0, + "positionImpulse": { + "#": 761 + }, + "constraintImpulse": { + "#": 762 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 763 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 764 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 765 + }, + "chamfer": null, + "bounds": { + "#": 767 + }, + "positionPrev": { + "#": 770 + }, + "anglePrev": 0, + "axes": { + "#": 771 + }, + "area": 3215.05684, + "mass": 3.21506, + "inverseMass": 0.31104, + "inertia": 15932.1154, + "inverseInertia": 0.00006, + "parent": { + "#": 752 + }, + "sleepCounter": 0 + }, + [ + { + "#": 752 + } + ], + [ + { + "#": 755 + }, + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + } + ], + { + "x": 292.12416, + "y": 101.98064, + "index": 0, + "body": { + "#": 752 + }, + "isInternal": false + }, + { + "x": 411.01545, + "y": 101.98064, + "index": 1, + "body": { + "#": 752 + }, + "isInternal": false + }, + { + "x": 411.01545, + "y": 129.02263, + "index": 2, + "body": { + "#": 752 + }, + "isInternal": false + }, + { + "x": 292.12416, + "y": 129.02263, + "index": 3, + "body": { + "#": 752 + }, + "isInternal": false + }, + { + "x": 351.56981, + "y": 115.50164 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 766 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 768 + }, + "max": { + "#": 769 + } + }, + { + "x": 292.12416, + "y": 101.98064 + }, + { + "x": 411.01545, + "y": 129.02263 + }, + { + "x": 351.56981, + "y": 115.50164 + }, + [ + { + "#": 772 + }, + { + "#": 773 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 26, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 775 + }, + "angle": 0, + "vertices": { + "#": 776 + }, + "position": { + "#": 781 + }, + "force": { + "#": 782 + }, + "torque": 0, + "positionImpulse": { + "#": 783 + }, + "constraintImpulse": { + "#": 784 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 785 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 786 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 787 + }, + "chamfer": null, + "bounds": { + "#": 789 + }, + "positionPrev": { + "#": 792 + }, + "anglePrev": 0, + "axes": { + "#": 793 + }, + "area": 2527.17084, + "mass": 2.52717, + "inverseMass": 0.3957, + "inertia": 8473.14437, + "inverseInertia": 0.00012, + "parent": { + "#": 774 + }, + "sleepCounter": 0 + }, + [ + { + "#": 774 + } + ], + [ + { + "#": 777 + }, + { + "#": 778 + }, + { + "#": 779 + }, + { + "#": 780 + } + ], + { + "x": 411.01545, + "y": 101.98064, + "index": 0, + "body": { + "#": 774 + }, + "isInternal": false + }, + { + "x": 507.85238, + "y": 101.98064, + "index": 1, + "body": { + "#": 774 + }, + "isInternal": false + }, + { + "x": 507.85238, + "y": 128.07782, + "index": 2, + "body": { + "#": 774 + }, + "isInternal": false + }, + { + "x": 411.01545, + "y": 128.07782, + "index": 3, + "body": { + "#": 774 + }, + "isInternal": false + }, + { + "x": 459.43392, + "y": 115.02923 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 788 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 790 + }, + "max": { + "#": 791 + } + }, + { + "x": 411.01545, + "y": 101.98064 + }, + { + "x": 507.85238, + "y": 128.07782 + }, + { + "x": 459.43392, + "y": 115.02923 + }, + [ + { + "#": 794 + }, + { + "#": 795 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 27, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 797 + }, + "angle": 0, + "vertices": { + "#": 798 + }, + "position": { + "#": 806 + }, + "force": { + "#": 807 + }, + "torque": 0, + "positionImpulse": { + "#": 808 + }, + "constraintImpulse": { + "#": 809 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 810 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 811 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 812 + }, + "chamfer": null, + "bounds": { + "#": 814 + }, + "positionPrev": { + "#": 817 + }, + "anglePrev": 0, + "axes": { + "#": 818 + }, + "area": 2948.7698, + "mass": 2.94877, + "inverseMass": 0.33912, + "inertia": 5557.61764, + "inverseInertia": 0.00018, + "parent": { + "#": 796 + }, + "sleepCounter": 0 + }, + [ + { + "#": 796 + } + ], + [ + { + "#": 799 + }, + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + } + ], + { + "x": 568.6298, + "y": 148.22764, + "index": 0, + "body": { + "#": 796 + }, + "isInternal": false + }, + { + "x": 546.3588, + "y": 165.98864, + "index": 1, + "body": { + "#": 796 + }, + "isInternal": false + }, + { + "x": 518.5868, + "y": 159.64964, + "index": 2, + "body": { + "#": 796 + }, + "isInternal": false + }, + { + "x": 506.2268, + "y": 133.98464, + "index": 3, + "body": { + "#": 796 + }, + "isInternal": false + }, + { + "x": 518.5868, + "y": 108.31964, + "index": 4, + "body": { + "#": 796 + }, + "isInternal": false + }, + { + "x": 546.3588, + "y": 101.98064, + "index": 5, + "body": { + "#": 796 + }, + "isInternal": false + }, + { + "x": 568.6298, + "y": 119.74164, + "index": 6, + "body": { + "#": 796 + }, + "isInternal": false + }, + { + "x": 539.05388, + "y": 133.98464 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 813 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 815 + }, + "max": { + "#": 816 + } + }, + { + "x": 506.2268, + "y": 101.98064 + }, + { + "x": 568.6298, + "y": 165.98864 + }, + { + "x": 539.05388, + "y": 133.98464 + }, + [ + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + } + ], + { + "x": 0.6235, + "y": 0.78182 + }, + { + "x": -0.22253, + "y": 0.97493 + }, + { + "x": -0.90096, + "y": 0.43389 + }, + { + "x": -0.90096, + "y": -0.43389 + }, + { + "x": -0.22253, + "y": -0.97493 + }, + { + "x": 0.6235, + "y": -0.78182 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 28, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 827 + }, + "angle": 0, + "vertices": { + "#": 828 + }, + "position": { + "#": 833 + }, + "force": { + "#": 834 + }, + "torque": 0, + "positionImpulse": { + "#": 835 + }, + "constraintImpulse": { + "#": 836 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 837 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 838 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 839 + }, + "chamfer": null, + "bounds": { + "#": 841 + }, + "positionPrev": { + "#": 844 + }, + "anglePrev": 0, + "axes": { + "#": 845 + }, + "area": 1650.22403, + "mass": 1.65022, + "inverseMass": 0.60598, + "inertia": 1883.13769, + "inverseInertia": 0.00053, + "parent": { + "#": 826 + }, + "sleepCounter": 0 + }, + [ + { + "#": 826 + } + ], + [ + { + "#": 829 + }, + { + "#": 830 + }, + { + "#": 831 + }, + { + "#": 832 + } + ], + { + "x": 568.6298, + "y": 101.98064, + "index": 0, + "body": { + "#": 826 + }, + "isInternal": false + }, + { + "x": 604.08473, + "y": 101.98064, + "index": 1, + "body": { + "#": 826 + }, + "isInternal": false + }, + { + "x": 604.08473, + "y": 148.52492, + "index": 2, + "body": { + "#": 826 + }, + "isInternal": false + }, + { + "x": 568.6298, + "y": 148.52492, + "index": 3, + "body": { + "#": 826 + }, + "isInternal": false + }, + { + "x": 586.35727, + "y": 125.25278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 840 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 842 + }, + "max": { + "#": 843 + } + }, + { + "x": 568.6298, + "y": 101.98064 + }, + { + "x": 604.08473, + "y": 148.52492 + }, + { + "x": 586.35727, + "y": 125.25278 + }, + [ + { + "#": 846 + }, + { + "#": 847 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 29, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 849 + }, + "angle": 0, + "vertices": { + "#": 850 + }, + "position": { + "#": 867 + }, + "force": { + "#": 868 + }, + "torque": 0, + "positionImpulse": { + "#": 869 + }, + "constraintImpulse": { + "#": 870 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 871 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 872 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 873 + }, + "bounds": { + "#": 875 + }, + "positionPrev": { + "#": 878 + }, + "anglePrev": 0, + "axes": { + "#": 879 + }, + "area": 985.70281, + "mass": 0.9857, + "inverseMass": 1.0145, + "inertia": 694.39546, + "inverseInertia": 0.00144, + "parent": { + "#": 848 + }, + "sleepCounter": 0 + }, + [ + { + "#": 848 + } + ], + [ + { + "#": 851 + }, + { + "#": 852 + }, + { + "#": 853 + }, + { + "#": 854 + }, + { + "#": 855 + }, + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + }, + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + } + ], + { + "x": 604.08473, + "y": 111.98064, + "index": 0, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 604.99348, + "y": 107.81541, + "index": 1, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 607.55456, + "y": 104.40721, + "index": 2, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 611.30249, + "y": 102.37548, + "index": 3, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 635.81098, + "y": 101.98064, + "index": 4, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 639.97621, + "y": 102.88939, + "index": 5, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 643.38441, + "y": 105.45047, + "index": 6, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 645.41614, + "y": 109.19841, + "index": 7, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 645.81098, + "y": 118.13087, + "index": 8, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 644.90223, + "y": 122.2961, + "index": 9, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 642.34115, + "y": 125.7043, + "index": 10, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 638.59322, + "y": 127.73603, + "index": 11, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 614.08473, + "y": 128.13087, + "index": 12, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 609.9195, + "y": 127.22212, + "index": 13, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 606.5113, + "y": 124.66104, + "index": 14, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 604.47957, + "y": 120.91311, + "index": 15, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 624.94786, + "y": 115.05576 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 874 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 876 + }, + "max": { + "#": 877 + } + }, + { + "x": 604.08473, + "y": 101.98064 + }, + { + "x": 645.81098, + "y": 128.13087 + }, + { + "x": 624.94786, + "y": 115.05576 + }, + [ + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + }, + { + "#": 887 + } + ], + { + "x": 0.97702, + "y": 0.21316 + }, + { + "x": 0.79944, + "y": 0.60074 + }, + { + "x": 0.47657, + "y": 0.87913 + }, + { + "x": 0.01611, + "y": 0.99987 + }, + { + "x": -0.21316, + "y": 0.97702 + }, + { + "x": -0.60074, + "y": 0.79944 + }, + { + "x": -0.87913, + "y": 0.47657 + }, + { + "x": -0.99902, + "y": 0.04416 + }, + { + "id": 30, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 889 + }, + "angle": 0, + "vertices": { + "#": 890 + }, + "position": { + "#": 911 + }, + "force": { + "#": 912 + }, + "torque": 0, + "positionImpulse": { + "#": 913 + }, + "constraintImpulse": { + "#": 914 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 915 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 916 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 917 + }, + "bounds": { + "#": 919 + }, + "positionPrev": { + "#": 922 + }, + "anglePrev": 0, + "axes": { + "#": 923 + }, + "area": 4952.79851, + "mass": 4.9528, + "inverseMass": 0.20191, + "inertia": 15818.4694, + "inverseInertia": 0.00006, + "parent": { + "#": 888 + }, + "sleepCounter": 0 + }, + [ + { + "#": 888 + } + ], + [ + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + }, + { + "#": 894 + }, + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + }, + { + "#": 901 + }, + { + "#": 902 + }, + { + "#": 903 + }, + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + } + ], + { + "x": 723.45493, + "y": 163.73434, + "index": 0, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 722.87009, + "y": 167.104, + "index": 1, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 721.184, + "y": 170.07953, + "index": 2, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 718.59386, + "y": 172.31288, + "index": 3, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 678.92847, + "y": 185.46742, + "index": 4, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 675.54301, + "y": 185.95251, + "index": 5, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 672.19208, + "y": 185.26844, + "index": 6, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 669.26763, + "y": 183.49522, + "index": 7, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 644.49917, + "y": 149.83575, + "index": 8, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 642.99164, + "y": 146.76585, + "index": 9, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 642.60675, + "y": 143.3675, + "index": 10, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 643.3895, + "y": 140.03821, + "index": 11, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 667.74813, + "y": 106.08095, + "index": 12, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 670.20193, + "y": 103.6986, + "index": 13, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 673.31499, + "y": 102.28243, + "index": 14, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 676.72319, + "y": 101.99808, + "index": 15, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 716.54513, + "y": 114.67082, + "index": 16, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 719.56914, + "y": 116.26833, + "index": 17, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 721.87799, + "y": 118.79139, + "index": 18, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 723.20163, + "y": 121.94491, + "index": 19, + "body": { + "#": 888 + }, + "isInternal": false + }, + { + "x": 686.23507, + "y": 143.95786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 918 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 920 + }, + "max": { + "#": 921 + } + }, + { + "x": 642.60675, + "y": 101.99808 + }, + { + "x": 723.45493, + "y": 185.95251 + }, + { + "x": 686.23507, + "y": 143.95786 + }, + [ + { + "#": 924 + }, + { + "#": 925 + }, + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + }, + { + "#": 932 + }, + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + }, + { + "#": 943 + } + ], + { + "x": 0.98527, + "y": 0.171 + }, + { + "x": 0.87003, + "y": 0.493 + }, + { + "x": 0.65302, + "y": 0.75734 + }, + { + "x": 0.31478, + "y": 0.94916 + }, + { + "x": 0.14184, + "y": 0.98989 + }, + { + "x": -0.20002, + "y": 0.97979 + }, + { + "x": -0.51848, + "y": 0.85509 + }, + { + "x": -0.80544, + "y": 0.59268 + }, + { + "x": -0.89761, + "y": 0.44079 + }, + { + "x": -0.99365, + "y": 0.11254 + }, + { + "x": -0.97346, + "y": -0.22887 + }, + { + "x": -0.81256, + "y": -0.58288 + }, + { + "x": -0.69658, + "y": -0.71747 + }, + { + "x": -0.41408, + "y": -0.91024 + }, + { + "x": -0.08314, + "y": -0.99654 + }, + { + "x": 0.30325, + "y": -0.95291 + }, + { + "x": 0.4671, + "y": -0.8842 + }, + { + "x": 0.73773, + "y": -0.6751 + }, + { + "x": 0.92207, + "y": -0.38702 + }, + { + "x": 0.99998, + "y": -0.00606 + }, + { + "id": 31, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 945 + }, + "angle": 0, + "vertices": { + "#": 946 + }, + "position": { + "#": 951 + }, + "force": { + "#": 952 + }, + "torque": 0, + "positionImpulse": { + "#": 953 + }, + "constraintImpulse": { + "#": 954 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 955 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 956 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 957 + }, + "chamfer": null, + "bounds": { + "#": 959 + }, + "positionPrev": { + "#": 962 + }, + "anglePrev": 0, + "axes": { + "#": 963 + }, + "area": 1624.41916, + "mass": 1.62442, + "inverseMass": 0.6156, + "inertia": 1869.332, + "inverseInertia": 0.00053, + "parent": { + "#": 944 + }, + "sleepCounter": 0 + }, + [ + { + "#": 944 + } + ], + [ + { + "#": 947 + }, + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + } + ], + { + "x": 723.45493, + "y": 101.98064, + "index": 0, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 771.51734, + "y": 101.98064, + "index": 1, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 771.51734, + "y": 135.77876, + "index": 2, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 723.45493, + "y": 135.77876, + "index": 3, + "body": { + "#": 944 + }, + "isInternal": false + }, + { + "x": 747.48614, + "y": 118.8797 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 958 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 960 + }, + "max": { + "#": 961 + } + }, + { + "x": 723.45493, + "y": 101.98064 + }, + { + "x": 771.51734, + "y": 135.77876 + }, + { + "x": 747.48614, + "y": 118.8797 + }, + [ + { + "#": 964 + }, + { + "#": 965 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 32, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 967 + }, + "angle": 0, + "vertices": { + "#": 968 + }, + "position": { + "#": 973 + }, + "force": { + "#": 974 + }, + "torque": 0, + "positionImpulse": { + "#": 975 + }, + "constraintImpulse": { + "#": 976 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 977 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 978 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 979 + }, + "chamfer": null, + "bounds": { + "#": 981 + }, + "positionPrev": { + "#": 984 + }, + "anglePrev": 0, + "axes": { + "#": 985 + }, + "area": 1339.85282, + "mass": 1.33985, + "inverseMass": 0.74635, + "inertia": 1196.80371, + "inverseInertia": 0.00084, + "parent": { + "#": 966 + }, + "sleepCounter": 0 + }, + [ + { + "#": 966 + } + ], + [ + { + "#": 969 + }, + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + } + ], + { + "x": 808.12134, + "y": 138.58464, + "index": 0, + "body": { + "#": 966 + }, + "isInternal": false + }, + { + "x": 771.51734, + "y": 138.58464, + "index": 1, + "body": { + "#": 966 + }, + "isInternal": false + }, + { + "x": 771.51734, + "y": 101.98064, + "index": 2, + "body": { + "#": 966 + }, + "isInternal": false + }, + { + "x": 808.12134, + "y": 101.98064, + "index": 3, + "body": { + "#": 966 + }, + "isInternal": false + }, + { + "x": 789.81934, + "y": 120.28264 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 980 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 982 + }, + "max": { + "#": 983 + } + }, + { + "x": 771.51734, + "y": 101.98064 + }, + { + "x": 808.12134, + "y": 138.58464 + }, + { + "x": 789.81934, + "y": 120.28264 + }, + [ + { + "#": 986 + }, + { + "#": 987 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 33, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 989 + }, + "angle": 0, + "vertices": { + "#": 990 + }, + "position": { + "#": 995 + }, + "force": { + "#": 996 + }, + "torque": 0, + "positionImpulse": { + "#": 997 + }, + "constraintImpulse": { + "#": 998 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 999 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1000 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1001 + }, + "chamfer": null, + "bounds": { + "#": 1003 + }, + "positionPrev": { + "#": 1006 + }, + "anglePrev": 0, + "axes": { + "#": 1007 + }, + "area": 4071.97134, + "mass": 4.07197, + "inverseMass": 0.24558, + "inertia": 11053.96708, + "inverseInertia": 0.00009, + "parent": { + "#": 988 + }, + "sleepCounter": 0 + }, + [ + { + "#": 988 + } + ], + [ + { + "#": 991 + }, + { + "#": 992 + }, + { + "#": 993 + }, + { + "#": 994 + } + ], + { + "x": 871.93334, + "y": 165.79264, + "index": 0, + "body": { + "#": 988 + }, + "isInternal": false + }, + { + "x": 808.12134, + "y": 165.79264, + "index": 1, + "body": { + "#": 988 + }, + "isInternal": false + }, + { + "x": 808.12134, + "y": 101.98064, + "index": 2, + "body": { + "#": 988 + }, + "isInternal": false + }, + { + "x": 871.93334, + "y": 101.98064, + "index": 3, + "body": { + "#": 988 + }, + "isInternal": false + }, + { + "x": 840.02734, + "y": 133.88664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1002 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1004 + }, + "max": { + "#": 1005 + } + }, + { + "x": 808.12134, + "y": 101.98064 + }, + { + "x": 871.93334, + "y": 165.79264 + }, + { + "x": 840.02734, + "y": 133.88664 + }, + [ + { + "#": 1008 + }, + { + "#": 1009 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 34, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1011 + }, + "angle": 0, + "vertices": { + "#": 1012 + }, + "position": { + "#": 1017 + }, + "force": { + "#": 1018 + }, + "torque": 0, + "positionImpulse": { + "#": 1019 + }, + "constraintImpulse": { + "#": 1020 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1021 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1022 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1023 + }, + "chamfer": null, + "bounds": { + "#": 1025 + }, + "positionPrev": { + "#": 1028 + }, + "anglePrev": 0, + "axes": { + "#": 1029 + }, + "area": 1410.42475, + "mass": 1.41042, + "inverseMass": 0.70901, + "inertia": 1475.19713, + "inverseInertia": 0.00068, + "parent": { + "#": 1010 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1010 + } + ], + [ + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + }, + { + "#": 1016 + } + ], + { + "x": 871.93334, + "y": 101.98064, + "index": 0, + "body": { + "#": 1010 + }, + "isInternal": false + }, + { + "x": 901.62824, + "y": 101.98064, + "index": 1, + "body": { + "#": 1010 + }, + "isInternal": false + }, + { + "x": 901.62824, + "y": 149.47786, + "index": 2, + "body": { + "#": 1010 + }, + "isInternal": false + }, + { + "x": 871.93334, + "y": 149.47786, + "index": 3, + "body": { + "#": 1010 + }, + "isInternal": false + }, + { + "x": 886.78079, + "y": 125.72925 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1024 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1026 + }, + "max": { + "#": 1027 + } + }, + { + "x": 871.93334, + "y": 101.98064 + }, + { + "x": 901.62824, + "y": 149.47786 + }, + { + "x": 886.78079, + "y": 125.72925 + }, + [ + { + "#": 1030 + }, + { + "#": 1031 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 35, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1033 + }, + "angle": 0, + "vertices": { + "#": 1034 + }, + "position": { + "#": 1051 + }, + "force": { + "#": 1052 + }, + "torque": 0, + "positionImpulse": { + "#": 1053 + }, + "constraintImpulse": { + "#": 1054 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1055 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1056 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1057 + }, + "bounds": { + "#": 1059 + }, + "positionPrev": { + "#": 1062 + }, + "anglePrev": 0, + "axes": { + "#": 1063 + }, + "area": 1145.13967, + "mass": 1.14514, + "inverseMass": 0.87326, + "inertia": 855.91978, + "inverseInertia": 0.00117, + "parent": { + "#": 1032 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1032 + } + ], + [ + { + "#": 1035 + }, + { + "#": 1036 + }, + { + "#": 1037 + }, + { + "#": 1038 + }, + { + "#": 1039 + }, + { + "#": 1040 + }, + { + "#": 1041 + }, + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + } + ], + { + "x": 20, + "y": 210.95864, + "index": 0, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 20.90875, + "y": 206.79341, + "index": 1, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 23.46983, + "y": 203.38521, + "index": 2, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 27.21776, + "y": 201.35348, + "index": 3, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 42.95696, + "y": 200.95864, + "index": 4, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 47.12219, + "y": 201.86739, + "index": 5, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 50.53039, + "y": 204.42847, + "index": 6, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 52.56212, + "y": 208.17641, + "index": 7, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 52.95696, + "y": 228.94143, + "index": 8, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 52.04821, + "y": 233.10666, + "index": 9, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 49.48713, + "y": 236.51486, + "index": 10, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 45.7392, + "y": 238.5466, + "index": 11, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 30, + "y": 238.94143, + "index": 12, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 25.83477, + "y": 238.03268, + "index": 13, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 22.42657, + "y": 235.4716, + "index": 14, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 20.39484, + "y": 231.72367, + "index": 15, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 36.47848, + "y": 219.95004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1058 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1060 + }, + "max": { + "#": 1061 + } + }, + { + "x": 20, + "y": 200.95864 + }, + { + "x": 52.95696, + "y": 238.94143 + }, + { + "x": 36.47848, + "y": 219.95004 + }, + [ + { + "#": 1064 + }, + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + } + ], + { + "x": 0.97702, + "y": 0.21316 + }, + { + "x": 0.79944, + "y": 0.60074 + }, + { + "x": 0.47657, + "y": 0.87913 + }, + { + "x": 0.02508, + "y": 0.99969 + }, + { + "x": -0.21316, + "y": 0.97702 + }, + { + "x": -0.60074, + "y": 0.79944 + }, + { + "x": -0.87913, + "y": 0.47657 + }, + { + "x": -0.99982, + "y": 0.01901 + }, + { + "id": 36, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1073 + }, + "angle": 0, + "vertices": { + "#": 1074 + }, + "position": { + "#": 1107 + }, + "force": { + "#": 1108 + }, + "torque": 0, + "positionImpulse": { + "#": 1109 + }, + "constraintImpulse": { + "#": 1110 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1111 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1112 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1113 + }, + "bounds": { + "#": 1115 + }, + "positionPrev": { + "#": 1118 + }, + "anglePrev": 0, + "axes": { + "#": 1119 + }, + "area": 1884.77092, + "mass": 1.88477, + "inverseMass": 0.53057, + "inertia": 2264.18271, + "inverseInertia": 0.00044, + "parent": { + "#": 1072 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1072 + } + ], + [ + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + }, + { + "#": 1085 + }, + { + "#": 1086 + }, + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + } + ], + { + "x": 100.9577, + "y": 230.75805, + "index": 0, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 100.72787, + "y": 232.88966, + "index": 1, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 100.04895, + "y": 234.92328, + "index": 2, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 98.95215, + "y": 236.76545, + "index": 3, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 89.82744, + "y": 246.03045, + "index": 4, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 88.15765, + "y": 247.37521, + "index": 5, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 86.23959, + "y": 248.33313, + "index": 6, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 84.16143, + "y": 248.86018, + "index": 7, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 71.15829, + "y": 248.95938, + "index": 8, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 69.02669, + "y": 248.72956, + "index": 9, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 66.99306, + "y": 248.05064, + "index": 10, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 65.1509, + "y": 246.95383, + "index": 11, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 55.88589, + "y": 237.82912, + "index": 12, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 54.54113, + "y": 236.15933, + "index": 13, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 53.58321, + "y": 234.24128, + "index": 14, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 53.05616, + "y": 232.16311, + "index": 15, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 52.95696, + "y": 219.15997, + "index": 16, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 53.18679, + "y": 217.02837, + "index": 17, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 53.86571, + "y": 214.99474, + "index": 18, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 54.96251, + "y": 213.15258, + "index": 19, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 64.08723, + "y": 203.88758, + "index": 20, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 65.75701, + "y": 202.54282, + "index": 21, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 67.67507, + "y": 201.5849, + "index": 22, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 69.75324, + "y": 201.05784, + "index": 23, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 82.75637, + "y": 200.95864, + "index": 24, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 84.88798, + "y": 201.18847, + "index": 25, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 86.9216, + "y": 201.86739, + "index": 26, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 88.76377, + "y": 202.9642, + "index": 27, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 98.02877, + "y": 212.08891, + "index": 28, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 99.37353, + "y": 213.75869, + "index": 29, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 100.33145, + "y": 215.67675, + "index": 30, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 100.8585, + "y": 217.75492, + "index": 31, + "body": { + "#": 1072 + }, + "isInternal": false + }, + { + "x": 76.95733, + "y": 224.95901 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1114 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1116 + }, + "max": { + "#": 1117 + } + }, + { + "x": 52.95696, + "y": 200.95864 + }, + { + "x": 100.9577, + "y": 248.95938 + }, + { + "x": 76.95733, + "y": 224.95901 + }, + [ + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + } + ], + { + "x": -0.99424, + "y": -0.1072 + }, + { + "x": -0.94854, + "y": -0.31667 + }, + { + "x": -0.85924, + "y": -0.51158 + }, + { + "x": -0.71248, + "y": -0.70169 + }, + { + "x": -0.62723, + "y": -0.77883 + }, + { + "x": -0.4468, + "y": -0.89463 + }, + { + "x": -0.24583, + "y": -0.96931 + }, + { + "x": -0.00763, + "y": -0.99997 + }, + { + "x": 0.1072, + "y": -0.99424 + }, + { + "x": 0.31667, + "y": -0.94854 + }, + { + "x": 0.51158, + "y": -0.85924 + }, + { + "x": 0.70169, + "y": -0.71248 + }, + { + "x": 0.77883, + "y": -0.62723 + }, + { + "x": 0.89463, + "y": -0.4468 + }, + { + "x": 0.96931, + "y": -0.24583 + }, + { + "x": 0.99997, + "y": -0.00763 + }, + { + "id": 37, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1137 + }, + "angle": 0, + "vertices": { + "#": 1138 + }, + "position": { + "#": 1143 + }, + "force": { + "#": 1144 + }, + "torque": 0, + "positionImpulse": { + "#": 1145 + }, + "constraintImpulse": { + "#": 1146 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1147 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1148 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1149 + }, + "chamfer": null, + "bounds": { + "#": 1151 + }, + "positionPrev": { + "#": 1154 + }, + "anglePrev": 0, + "axes": { + "#": 1155 + }, + "area": 3192.98771, + "mass": 3.19299, + "inverseMass": 0.31319, + "inertia": 14162.07498, + "inverseInertia": 0.00007, + "parent": { + "#": 1136 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1136 + } + ], + [ + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + } + ], + { + "x": 100.9577, + "y": 200.95864, + "index": 0, + "body": { + "#": 1136 + }, + "isInternal": false + }, + { + "x": 212.71559, + "y": 200.95864, + "index": 1, + "body": { + "#": 1136 + }, + "isInternal": false + }, + { + "x": 212.71559, + "y": 229.52922, + "index": 2, + "body": { + "#": 1136 + }, + "isInternal": false + }, + { + "x": 100.9577, + "y": 229.52922, + "index": 3, + "body": { + "#": 1136 + }, + "isInternal": false + }, + { + "x": 156.83665, + "y": 215.24393 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1150 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1152 + }, + "max": { + "#": 1153 + } + }, + { + "x": 100.9577, + "y": 200.95864 + }, + { + "x": 212.71559, + "y": 229.52922 + }, + { + "x": 156.83665, + "y": 215.24393 + }, + [ + { + "#": 1156 + }, + { + "#": 1157 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 38, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1159 + }, + "angle": 0, + "vertices": { + "#": 1160 + }, + "position": { + "#": 1187 + }, + "force": { + "#": 1188 + }, + "torque": 0, + "positionImpulse": { + "#": 1189 + }, + "constraintImpulse": { + "#": 1190 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1191 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1192 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1193 + }, + "chamfer": null, + "circleRadius": 37.89191, + "bounds": { + "#": 1195 + }, + "positionPrev": { + "#": 1198 + }, + "anglePrev": 0, + "axes": { + "#": 1199 + }, + "area": 4466.95798, + "mass": 4.46696, + "inverseMass": 0.22387, + "inertia": 12703.17097, + "inverseInertia": 0.00008, + "parent": { + "#": 1158 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1158 + } + ], + [ + { + "#": 1161 + }, + { + "#": 1162 + }, + { + "#": 1163 + }, + { + "#": 1164 + }, + { + "#": 1165 + }, + { + "#": 1166 + }, + { + "#": 1167 + }, + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + }, + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + }, + { + "#": 1179 + }, + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + }, + { + "#": 1186 + } + ], + { + "x": 287.94759, + "y": 243.41764, + "index": 0, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 285.76159, + "y": 252.28764, + "index": 1, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 281.51559, + "y": 260.37564, + "index": 2, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 275.45859, + "y": 267.21364, + "index": 3, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 267.94059, + "y": 272.40264, + "index": 4, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 259.39959, + "y": 275.64164, + "index": 5, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 250.33159, + "y": 276.74264, + "index": 6, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 241.26359, + "y": 275.64164, + "index": 7, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 232.72259, + "y": 272.40264, + "index": 8, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 225.20459, + "y": 267.21364, + "index": 9, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 219.14759, + "y": 260.37564, + "index": 10, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 214.90159, + "y": 252.28764, + "index": 11, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 212.71559, + "y": 243.41764, + "index": 12, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 212.71559, + "y": 234.28364, + "index": 13, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 214.90159, + "y": 225.41364, + "index": 14, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 219.14759, + "y": 217.32564, + "index": 15, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 225.20459, + "y": 210.48764, + "index": 16, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 232.72259, + "y": 205.29864, + "index": 17, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 241.26359, + "y": 202.05964, + "index": 18, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 250.33159, + "y": 200.95864, + "index": 19, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 259.39959, + "y": 202.05964, + "index": 20, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 267.94059, + "y": 205.29864, + "index": 21, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 275.45859, + "y": 210.48764, + "index": 22, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 281.51559, + "y": 217.32564, + "index": 23, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 285.76159, + "y": 225.41364, + "index": 24, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 287.94759, + "y": 234.28364, + "index": 25, + "body": { + "#": 1158 + }, + "isInternal": false + }, + { + "x": 250.33159, + "y": 238.85064 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1194 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1196 + }, + "max": { + "#": 1197 + } + }, + { + "x": 212.71559, + "y": 200.95864 + }, + { + "x": 287.94759, + "y": 276.74264 + }, + { + "x": 250.33159, + "y": 238.85064 + }, + [ + { + "#": 1200 + }, + { + "#": 1201 + }, + { + "#": 1202 + }, + { + "#": 1203 + }, + { + "#": 1204 + }, + { + "#": 1205 + }, + { + "#": 1206 + }, + { + "#": 1207 + }, + { + "#": 1208 + }, + { + "#": 1209 + }, + { + "#": 1210 + }, + { + "#": 1211 + }, + { + "#": 1212 + } + ], + { + "x": -0.97095, + "y": -0.23929 + }, + { + "x": -0.88541, + "y": -0.46482 + }, + { + "x": -0.74856, + "y": -0.66307 + }, + { + "x": -0.56804, + "y": -0.823 + }, + { + "x": -0.35459, + "y": -0.93502 + }, + { + "x": -0.12053, + "y": -0.99271 + }, + { + "x": 0.12053, + "y": -0.99271 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.56804, + "y": -0.823 + }, + { + "x": 0.74856, + "y": -0.66307 + }, + { + "x": 0.88541, + "y": -0.46482 + }, + { + "x": 0.97095, + "y": -0.23929 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 39, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1214 + }, + "angle": 0, + "vertices": { + "#": 1215 + }, + "position": { + "#": 1220 + }, + "force": { + "#": 1221 + }, + "torque": 0, + "positionImpulse": { + "#": 1222 + }, + "constraintImpulse": { + "#": 1223 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1224 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1225 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1226 + }, + "chamfer": null, + "bounds": { + "#": 1228 + }, + "positionPrev": { + "#": 1231 + }, + "anglePrev": 0, + "axes": { + "#": 1232 + }, + "area": 2150.6216, + "mass": 2.15062, + "inverseMass": 0.46498, + "inertia": 3103.35977, + "inverseInertia": 0.00032, + "parent": { + "#": 1213 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1213 + } + ], + [ + { + "#": 1216 + }, + { + "#": 1217 + }, + { + "#": 1218 + }, + { + "#": 1219 + } + ], + { + "x": 287.94759, + "y": 200.95864, + "index": 0, + "body": { + "#": 1213 + }, + "isInternal": false + }, + { + "x": 331.7621, + "y": 200.95864, + "index": 1, + "body": { + "#": 1213 + }, + "isInternal": false + }, + { + "x": 331.7621, + "y": 250.04333, + "index": 2, + "body": { + "#": 1213 + }, + "isInternal": false + }, + { + "x": 287.94759, + "y": 250.04333, + "index": 3, + "body": { + "#": 1213 + }, + "isInternal": false + }, + { + "x": 309.85485, + "y": 225.50098 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1227 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1229 + }, + "max": { + "#": 1230 + } + }, + { + "x": 287.94759, + "y": 200.95864 + }, + { + "x": 331.7621, + "y": 250.04333 + }, + { + "x": 309.85485, + "y": 225.50098 + }, + [ + { + "#": 1233 + }, + { + "#": 1234 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 40, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1236 + }, + "angle": 0, + "vertices": { + "#": 1237 + }, + "position": { + "#": 1264 + }, + "force": { + "#": 1265 + }, + "torque": 0, + "positionImpulse": { + "#": 1266 + }, + "constraintImpulse": { + "#": 1267 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1268 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1269 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1270 + }, + "chamfer": null, + "circleRadius": 30.28624, + "bounds": { + "#": 1272 + }, + "positionPrev": { + "#": 1275 + }, + "anglePrev": 0, + "axes": { + "#": 1276 + }, + "area": 2853.66629, + "mass": 2.85367, + "inverseMass": 0.35043, + "inertia": 5184.35556, + "inverseInertia": 0.00019, + "parent": { + "#": 1235 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1235 + } + ], + [ + { + "#": 1238 + }, + { + "#": 1239 + }, + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + }, + { + "#": 1247 + }, + { + "#": 1248 + }, + { + "#": 1249 + }, + { + "#": 1250 + }, + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + }, + { + "#": 1254 + }, + { + "#": 1255 + }, + { + "#": 1256 + }, + { + "#": 1257 + }, + { + "#": 1258 + }, + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + }, + { + "#": 1263 + } + ], + { + "x": 391.8921, + "y": 234.89564, + "index": 0, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 390.1451, + "y": 241.98464, + "index": 1, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 386.7521, + "y": 248.44964, + "index": 2, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 381.9101, + "y": 253.91464, + "index": 3, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 375.9021, + "y": 258.06164, + "index": 4, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 369.0751, + "y": 260.65064, + "index": 5, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 361.8271, + "y": 261.53064, + "index": 6, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 354.5791, + "y": 260.65064, + "index": 7, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 347.7521, + "y": 258.06164, + "index": 8, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 341.7441, + "y": 253.91464, + "index": 9, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 336.9021, + "y": 248.44964, + "index": 10, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 333.5091, + "y": 241.98464, + "index": 11, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 331.7621, + "y": 234.89564, + "index": 12, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 331.7621, + "y": 227.59364, + "index": 13, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 333.5091, + "y": 220.50464, + "index": 14, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 336.9021, + "y": 214.03964, + "index": 15, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 341.7441, + "y": 208.57464, + "index": 16, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 347.7521, + "y": 204.42764, + "index": 17, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 354.5791, + "y": 201.83864, + "index": 18, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 361.8271, + "y": 200.95864, + "index": 19, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 369.0751, + "y": 201.83864, + "index": 20, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 375.9021, + "y": 204.42764, + "index": 21, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 381.9101, + "y": 208.57464, + "index": 22, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 386.7521, + "y": 214.03964, + "index": 23, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 390.1451, + "y": 220.50464, + "index": 24, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 391.8921, + "y": 227.59364, + "index": 25, + "body": { + "#": 1235 + }, + "isInternal": false + }, + { + "x": 361.8271, + "y": 231.24464 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1271 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1273 + }, + "max": { + "#": 1274 + } + }, + { + "x": 331.7621, + "y": 200.95864 + }, + { + "x": 391.8921, + "y": 261.53064 + }, + { + "x": 361.8271, + "y": 231.24464 + }, + [ + { + "#": 1277 + }, + { + "#": 1278 + }, + { + "#": 1279 + }, + { + "#": 1280 + }, + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + }, + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + }, + { + "#": 1289 + } + ], + { + "x": -0.97095, + "y": -0.23928 + }, + { + "x": -0.88546, + "y": -0.46471 + }, + { + "x": -0.74848, + "y": -0.66316 + }, + { + "x": -0.56806, + "y": -0.82299 + }, + { + "x": -0.35459, + "y": -0.93502 + }, + { + "x": -0.12053, + "y": -0.99271 + }, + { + "x": 0.12053, + "y": -0.99271 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.56806, + "y": -0.82299 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88546, + "y": -0.46471 + }, + { + "x": 0.97095, + "y": -0.23928 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 41, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1291 + }, + "angle": 0, + "vertices": { + "#": 1292 + }, + "position": { + "#": 1297 + }, + "force": { + "#": 1298 + }, + "torque": 0, + "positionImpulse": { + "#": 1299 + }, + "constraintImpulse": { + "#": 1300 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1301 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1302 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1303 + }, + "chamfer": null, + "bounds": { + "#": 1305 + }, + "positionPrev": { + "#": 1308 + }, + "anglePrev": 0, + "axes": { + "#": 1309 + }, + "area": 1365.59997, + "mass": 1.3656, + "inverseMass": 0.73228, + "inertia": 1298.96051, + "inverseInertia": 0.00077, + "parent": { + "#": 1290 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1290 + } + ], + [ + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + }, + { + "#": 1296 + } + ], + { + "x": 391.8921, + "y": 200.95864, + "index": 0, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 423.72606, + "y": 200.95864, + "index": 1, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 423.72606, + "y": 243.85623, + "index": 2, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 391.8921, + "y": 243.85623, + "index": 3, + "body": { + "#": 1290 + }, + "isInternal": false + }, + { + "x": 407.80908, + "y": 222.40744 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1304 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1306 + }, + "max": { + "#": 1307 + } + }, + { + "x": 391.8921, + "y": 200.95864 + }, + { + "x": 423.72606, + "y": 243.85623 + }, + { + "x": 407.80908, + "y": 222.40744 + }, + [ + { + "#": 1310 + }, + { + "#": 1311 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 42, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1313 + }, + "angle": 0, + "vertices": { + "#": 1314 + }, + "position": { + "#": 1319 + }, + "force": { + "#": 1320 + }, + "torque": 0, + "positionImpulse": { + "#": 1321 + }, + "constraintImpulse": { + "#": 1322 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1323 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1324 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1325 + }, + "chamfer": null, + "bounds": { + "#": 1327 + }, + "positionPrev": { + "#": 1330 + }, + "anglePrev": 0, + "axes": { + "#": 1331 + }, + "area": 1818.16556, + "mass": 1.81817, + "inverseMass": 0.55, + "inertia": 2264.61136, + "inverseInertia": 0.00044, + "parent": { + "#": 1312 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1312 + } + ], + [ + { + "#": 1315 + }, + { + "#": 1316 + }, + { + "#": 1317 + }, + { + "#": 1318 + } + ], + { + "x": 423.72606, + "y": 200.95864, + "index": 0, + "body": { + "#": 1312 + }, + "isInternal": false + }, + { + "x": 461.6513, + "y": 200.95864, + "index": 1, + "body": { + "#": 1312 + }, + "isInternal": false + }, + { + "x": 461.6513, + "y": 248.89942, + "index": 2, + "body": { + "#": 1312 + }, + "isInternal": false + }, + { + "x": 423.72606, + "y": 248.89942, + "index": 3, + "body": { + "#": 1312 + }, + "isInternal": false + }, + { + "x": 442.68868, + "y": 224.92903 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1326 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1328 + }, + "max": { + "#": 1329 + } + }, + { + "x": 423.72606, + "y": 200.95864 + }, + { + "x": 461.6513, + "y": 248.89942 + }, + { + "x": 442.68868, + "y": 224.92903 + }, + [ + { + "#": 1332 + }, + { + "#": 1333 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 43, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1335 + }, + "angle": 0, + "vertices": { + "#": 1336 + }, + "position": { + "#": 1341 + }, + "force": { + "#": 1342 + }, + "torque": 0, + "positionImpulse": { + "#": 1343 + }, + "constraintImpulse": { + "#": 1344 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1345 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1346 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1347 + }, + "chamfer": null, + "bounds": { + "#": 1349 + }, + "positionPrev": { + "#": 1352 + }, + "anglePrev": 0, + "axes": { + "#": 1353 + }, + "area": 1013.36299, + "mass": 1.01336, + "inverseMass": 0.98681, + "inertia": 687.38878, + "inverseInertia": 0.00145, + "parent": { + "#": 1334 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1334 + } + ], + [ + { + "#": 1337 + }, + { + "#": 1338 + }, + { + "#": 1339 + }, + { + "#": 1340 + } + ], + { + "x": 461.6513, + "y": 200.95864, + "index": 0, + "body": { + "#": 1334 + }, + "isInternal": false + }, + { + "x": 492.08115, + "y": 200.95864, + "index": 1, + "body": { + "#": 1334 + }, + "isInternal": false + }, + { + "x": 492.08115, + "y": 234.26025, + "index": 2, + "body": { + "#": 1334 + }, + "isInternal": false + }, + { + "x": 461.6513, + "y": 234.26025, + "index": 3, + "body": { + "#": 1334 + }, + "isInternal": false + }, + { + "x": 476.86622, + "y": 217.60945 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1348 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1350 + }, + "max": { + "#": 1351 + } + }, + { + "x": 461.6513, + "y": 200.95864 + }, + { + "x": 492.08115, + "y": 234.26025 + }, + { + "x": 476.86622, + "y": 217.60945 + }, + [ + { + "#": 1354 + }, + { + "#": 1355 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 44, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1357 + }, + "angle": 0, + "vertices": { + "#": 1358 + }, + "position": { + "#": 1363 + }, + "force": { + "#": 1364 + }, + "torque": 0, + "positionImpulse": { + "#": 1365 + }, + "constraintImpulse": { + "#": 1366 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1367 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1368 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1369 + }, + "chamfer": null, + "bounds": { + "#": 1371 + }, + "positionPrev": { + "#": 1374 + }, + "anglePrev": 0, + "axes": { + "#": 1375 + }, + "area": 1150.58992, + "mass": 1.15059, + "inverseMass": 0.86912, + "inertia": 958.51197, + "inverseInertia": 0.00104, + "parent": { + "#": 1356 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1356 + } + ], + [ + { + "#": 1359 + }, + { + "#": 1360 + }, + { + "#": 1361 + }, + { + "#": 1362 + } + ], + { + "x": 492.08115, + "y": 200.95864, + "index": 0, + "body": { + "#": 1356 + }, + "isInternal": false + }, + { + "x": 533.75917, + "y": 200.95864, + "index": 1, + "body": { + "#": 1356 + }, + "isInternal": false + }, + { + "x": 533.75917, + "y": 228.56527, + "index": 2, + "body": { + "#": 1356 + }, + "isInternal": false + }, + { + "x": 492.08115, + "y": 228.56527, + "index": 3, + "body": { + "#": 1356 + }, + "isInternal": false + }, + { + "x": 512.92016, + "y": 214.76196 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1370 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1372 + }, + "max": { + "#": 1373 + } + }, + { + "x": 492.08115, + "y": 200.95864 + }, + { + "x": 533.75917, + "y": 228.56527 + }, + { + "x": 512.92016, + "y": 214.76196 + }, + [ + { + "#": 1376 + }, + { + "#": 1377 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 45, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1379 + }, + "angle": 0, + "vertices": { + "#": 1380 + }, + "position": { + "#": 1386 + }, + "force": { + "#": 1387 + }, + "torque": 0, + "positionImpulse": { + "#": 1388 + }, + "constraintImpulse": { + "#": 1389 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1390 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1391 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1392 + }, + "chamfer": null, + "bounds": { + "#": 1394 + }, + "positionPrev": { + "#": 1397 + }, + "anglePrev": 0, + "axes": { + "#": 1398 + }, + "area": 3070.12222, + "mass": 3.07012, + "inverseMass": 0.32572, + "inertia": 6102.40275, + "inverseInertia": 0.00016, + "parent": { + "#": 1378 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1378 + } + ], + [ + { + "#": 1381 + }, + { + "#": 1382 + }, + { + "#": 1383 + }, + { + "#": 1384 + }, + { + "#": 1385 + } + ], + { + "x": 595.33259, + "y": 256.25564, + "index": 0, + "body": { + "#": 1378 + }, + "isInternal": false + }, + { + "x": 555.15759, + "y": 269.30864, + "index": 1, + "body": { + "#": 1378 + }, + "isInternal": false + }, + { + "x": 530.32759, + "y": 235.13364, + "index": 2, + "body": { + "#": 1378 + }, + "isInternal": false + }, + { + "x": 555.15759, + "y": 200.95864, + "index": 3, + "body": { + "#": 1378 + }, + "isInternal": false + }, + { + "x": 595.33259, + "y": 214.01164, + "index": 4, + "body": { + "#": 1378 + }, + "isInternal": false + }, + { + "x": 566.26167, + "y": 235.13364 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1393 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1395 + }, + "max": { + "#": 1396 + } + }, + { + "x": 530.32759, + "y": 200.95864 + }, + { + "x": 595.33259, + "y": 269.30864 + }, + { + "x": 566.26167, + "y": 235.13364 + }, + [ + { + "#": 1399 + }, + { + "#": 1400 + }, + { + "#": 1401 + }, + { + "#": 1402 + }, + { + "#": 1403 + } + ], + { + "x": 0.309, + "y": 0.95106 + }, + { + "x": -0.80901, + "y": 0.58779 + }, + { + "x": -0.80901, + "y": -0.58779 + }, + { + "x": 0.309, + "y": -0.95106 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 46, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1405 + }, + "angle": 0, + "vertices": { + "#": 1406 + }, + "position": { + "#": 1423 + }, + "force": { + "#": 1424 + }, + "torque": 0, + "positionImpulse": { + "#": 1425 + }, + "constraintImpulse": { + "#": 1426 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1427 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1428 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1429 + }, + "bounds": { + "#": 1431 + }, + "positionPrev": { + "#": 1434 + }, + "anglePrev": 0, + "axes": { + "#": 1435 + }, + "area": 1289.27296, + "mass": 1.28927, + "inverseMass": 0.77563, + "inertia": 1245.97393, + "inverseInertia": 0.0008, + "parent": { + "#": 1404 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1404 + } + ], + [ + { + "#": 1407 + }, + { + "#": 1408 + }, + { + "#": 1409 + }, + { + "#": 1410 + }, + { + "#": 1411 + }, + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + }, + { + "#": 1415 + }, + { + "#": 1416 + }, + { + "#": 1417 + }, + { + "#": 1418 + }, + { + "#": 1419 + }, + { + "#": 1420 + }, + { + "#": 1421 + }, + { + "#": 1422 + } + ], + { + "x": 595.33259, + "y": 210.95864, + "index": 0, + "body": { + "#": 1404 + }, + "isInternal": false + }, + { + "x": 596.24133, + "y": 206.79341, + "index": 1, + "body": { + "#": 1404 + }, + "isInternal": false + }, + { + "x": 598.80241, + "y": 203.38521, + "index": 2, + "body": { + "#": 1404 + }, + "isInternal": false + }, + { + "x": 602.55035, + "y": 201.35348, + "index": 3, + "body": { + "#": 1404 + }, + "isInternal": false + }, + { + "x": 634.73566, + "y": 200.95864, + "index": 4, + "body": { + "#": 1404 + }, + "isInternal": false + }, + { + "x": 638.90089, + "y": 201.86739, + "index": 5, + "body": { + "#": 1404 + }, + "isInternal": false + }, + { + "x": 642.30909, + "y": 204.42847, + "index": 6, + "body": { + "#": 1404 + }, + "isInternal": false + }, + { + "x": 644.34083, + "y": 208.17641, + "index": 7, + "body": { + "#": 1404 + }, + "isInternal": false + }, + { + "x": 644.73566, + "y": 219.26872, + "index": 8, + "body": { + "#": 1404 + }, + "isInternal": false + }, + { + "x": 643.82691, + "y": 223.43395, + "index": 9, + "body": { + "#": 1404 + }, + "isInternal": false + }, + { + "x": 641.26584, + "y": 226.84215, + "index": 10, + "body": { + "#": 1404 + }, + "isInternal": false + }, + { + "x": 637.5179, + "y": 228.87388, + "index": 11, + "body": { + "#": 1404 + }, + "isInternal": false + }, + { + "x": 605.33259, + "y": 229.26872, + "index": 12, + "body": { + "#": 1404 + }, + "isInternal": false + }, + { + "x": 601.16736, + "y": 228.35997, + "index": 13, + "body": { + "#": 1404 + }, + "isInternal": false + }, + { + "x": 597.75915, + "y": 225.79889, + "index": 14, + "body": { + "#": 1404 + }, + "isInternal": false + }, + { + "x": 595.72742, + "y": 222.05096, + "index": 15, + "body": { + "#": 1404 + }, + "isInternal": false + }, + { + "x": 620.03412, + "y": 215.11368 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1430 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1432 + }, + "max": { + "#": 1433 + } + }, + { + "x": 595.33259, + "y": 200.95864 + }, + { + "x": 644.73566, + "y": 229.26872 + }, + { + "x": 620.03412, + "y": 215.11368 + }, + [ + { + "#": 1436 + }, + { + "#": 1437 + }, + { + "#": 1438 + }, + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + }, + { + "#": 1442 + }, + { + "#": 1443 + } + ], + { + "x": 0.97702, + "y": 0.21316 + }, + { + "x": 0.79944, + "y": 0.60074 + }, + { + "x": 0.47657, + "y": 0.87913 + }, + { + "x": 0.01227, + "y": 0.99992 + }, + { + "x": -0.21316, + "y": 0.97702 + }, + { + "x": -0.60074, + "y": 0.79944 + }, + { + "x": -0.87913, + "y": 0.47657 + }, + { + "x": -0.99937, + "y": 0.03557 + }, + { + "id": 47, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1445 + }, + "angle": 0, + "vertices": { + "#": 1446 + }, + "position": { + "#": 1451 + }, + "force": { + "#": 1452 + }, + "torque": 0, + "positionImpulse": { + "#": 1453 + }, + "constraintImpulse": { + "#": 1454 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1455 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1456 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1457 + }, + "chamfer": null, + "bounds": { + "#": 1459 + }, + "positionPrev": { + "#": 1462 + }, + "anglePrev": 0, + "axes": { + "#": 1463 + }, + "area": 1558.1254, + "mass": 1.55813, + "inverseMass": 0.6418, + "inertia": 1636.38802, + "inverseInertia": 0.00061, + "parent": { + "#": 1444 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1444 + } + ], + [ + { + "#": 1447 + }, + { + "#": 1448 + }, + { + "#": 1449 + }, + { + "#": 1450 + } + ], + { + "x": 644.73566, + "y": 200.95864, + "index": 0, + "body": { + "#": 1444 + }, + "isInternal": false + }, + { + "x": 681.38358, + "y": 200.95864, + "index": 1, + "body": { + "#": 1444 + }, + "isInternal": false + }, + { + "x": 681.38358, + "y": 243.47472, + "index": 2, + "body": { + "#": 1444 + }, + "isInternal": false + }, + { + "x": 644.73566, + "y": 243.47472, + "index": 3, + "body": { + "#": 1444 + }, + "isInternal": false + }, + { + "x": 663.05962, + "y": 222.21668 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1458 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1460 + }, + "max": { + "#": 1461 + } + }, + { + "x": 644.73566, + "y": 200.95864 + }, + { + "x": 681.38358, + "y": 243.47472 + }, + { + "x": 663.05962, + "y": 222.21668 + }, + [ + { + "#": 1464 + }, + { + "#": 1465 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 48, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1467 + }, + "angle": 0, + "vertices": { + "#": 1468 + }, + "position": { + "#": 1476 + }, + "force": { + "#": 1477 + }, + "torque": 0, + "positionImpulse": { + "#": 1478 + }, + "constraintImpulse": { + "#": 1479 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1480 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1481 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1482 + }, + "chamfer": null, + "bounds": { + "#": 1484 + }, + "positionPrev": { + "#": 1487 + }, + "anglePrev": 0, + "axes": { + "#": 1488 + }, + "area": 3629.79197, + "mass": 3.62979, + "inverseMass": 0.2755, + "inertia": 8421.13043, + "inverseInertia": 0.00012, + "parent": { + "#": 1466 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1466 + } + ], + [ + { + "#": 1469 + }, + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + }, + { + "#": 1473 + }, + { + "#": 1474 + }, + { + "#": 1475 + } + ], + { + "x": 748.81521, + "y": 252.26864, + "index": 0, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 724.10521, + "y": 271.97464, + "index": 1, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 693.29321, + "y": 264.94164, + "index": 2, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 679.58021, + "y": 236.46664, + "index": 3, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 693.29321, + "y": 207.99164, + "index": 4, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 724.10521, + "y": 200.95864, + "index": 5, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 748.81521, + "y": 220.66464, + "index": 6, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 716.00108, + "y": 236.46664 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1483 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1485 + }, + "max": { + "#": 1486 + } + }, + { + "x": 679.58021, + "y": 200.95864 + }, + { + "x": 748.81521, + "y": 271.97464 + }, + { + "x": 716.00108, + "y": 236.46664 + }, + [ + { + "#": 1489 + }, + { + "#": 1490 + }, + { + "#": 1491 + }, + { + "#": 1492 + }, + { + "#": 1493 + }, + { + "#": 1494 + }, + { + "#": 1495 + } + ], + { + "x": 0.6235, + "y": 0.78182 + }, + { + "x": -0.22253, + "y": 0.97493 + }, + { + "x": -0.90097, + "y": 0.43389 + }, + { + "x": -0.90097, + "y": -0.43389 + }, + { + "x": -0.22253, + "y": -0.97493 + }, + { + "x": 0.6235, + "y": -0.78182 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 49, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1497 + }, + "angle": 0, + "vertices": { + "#": 1498 + }, + "position": { + "#": 1515 + }, + "force": { + "#": 1516 + }, + "torque": 0, + "positionImpulse": { + "#": 1517 + }, + "constraintImpulse": { + "#": 1518 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1519 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1520 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1521 + }, + "bounds": { + "#": 1523 + }, + "positionPrev": { + "#": 1526 + }, + "anglePrev": 0, + "axes": { + "#": 1527 + }, + "area": 1408.69136, + "mass": 1.40869, + "inverseMass": 0.70988, + "inertia": 1303.42798, + "inverseInertia": 0.00077, + "parent": { + "#": 1496 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1496 + } + ], + [ + { + "#": 1499 + }, + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + }, + { + "#": 1510 + }, + { + "#": 1511 + }, + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + } + ], + { + "x": 748.81521, + "y": 210.95864, + "index": 0, + "body": { + "#": 1496 + }, + "isInternal": false + }, + { + "x": 749.72396, + "y": 206.79341, + "index": 1, + "body": { + "#": 1496 + }, + "isInternal": false + }, + { + "x": 752.28504, + "y": 203.38521, + "index": 2, + "body": { + "#": 1496 + }, + "isInternal": false + }, + { + "x": 756.03298, + "y": 201.35348, + "index": 3, + "body": { + "#": 1496 + }, + "isInternal": false + }, + { + "x": 774.77768, + "y": 200.95864, + "index": 4, + "body": { + "#": 1496 + }, + "isInternal": false + }, + { + "x": 778.94291, + "y": 201.86739, + "index": 5, + "body": { + "#": 1496 + }, + "isInternal": false + }, + { + "x": 782.35111, + "y": 204.42847, + "index": 6, + "body": { + "#": 1496 + }, + "isInternal": false + }, + { + "x": 784.38285, + "y": 208.17641, + "index": 7, + "body": { + "#": 1496 + }, + "isInternal": false + }, + { + "x": 784.77768, + "y": 233.17508, + "index": 8, + "body": { + "#": 1496 + }, + "isInternal": false + }, + { + "x": 783.86894, + "y": 237.34031, + "index": 9, + "body": { + "#": 1496 + }, + "isInternal": false + }, + { + "x": 781.30786, + "y": 240.74851, + "index": 10, + "body": { + "#": 1496 + }, + "isInternal": false + }, + { + "x": 777.55992, + "y": 242.78024, + "index": 11, + "body": { + "#": 1496 + }, + "isInternal": false + }, + { + "x": 758.81521, + "y": 243.17508, + "index": 12, + "body": { + "#": 1496 + }, + "isInternal": false + }, + { + "x": 754.64998, + "y": 242.26633, + "index": 13, + "body": { + "#": 1496 + }, + "isInternal": false + }, + { + "x": 751.24178, + "y": 239.70525, + "index": 14, + "body": { + "#": 1496 + }, + "isInternal": false + }, + { + "x": 749.21005, + "y": 235.95731, + "index": 15, + "body": { + "#": 1496 + }, + "isInternal": false + }, + { + "x": 766.79645, + "y": 222.06686 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1522 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1524 + }, + "max": { + "#": 1525 + } + }, + { + "x": 748.81521, + "y": 200.95864 + }, + { + "x": 784.77768, + "y": 243.17508 + }, + { + "x": 766.79645, + "y": 222.06686 + }, + [ + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + }, + { + "#": 1533 + }, + { + "#": 1534 + }, + { + "#": 1535 + } + ], + { + "x": 0.97702, + "y": 0.21316 + }, + { + "x": 0.79944, + "y": 0.60074 + }, + { + "x": 0.47657, + "y": 0.87913 + }, + { + "x": 0.02106, + "y": 0.99978 + }, + { + "x": -0.21316, + "y": 0.97702 + }, + { + "x": -0.60074, + "y": 0.79944 + }, + { + "x": -0.87913, + "y": 0.47657 + }, + { + "x": -0.99988, + "y": 0.01579 + }, + { + "id": 50, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1537 + }, + "angle": 0, + "vertices": { + "#": 1538 + }, + "position": { + "#": 1543 + }, + "force": { + "#": 1544 + }, + "torque": 0, + "positionImpulse": { + "#": 1545 + }, + "constraintImpulse": { + "#": 1546 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1547 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1548 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1549 + }, + "chamfer": null, + "bounds": { + "#": 1551 + }, + "positionPrev": { + "#": 1554 + }, + "anglePrev": 0, + "axes": { + "#": 1555 + }, + "area": 968.99789, + "mass": 0.969, + "inverseMass": 1.03199, + "inertia": 632.11709, + "inverseInertia": 0.00158, + "parent": { + "#": 1536 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1536 + } + ], + [ + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + } + ], + { + "x": 20, + "y": 276.74264, + "index": 0, + "body": { + "#": 1536 + }, + "isInternal": false + }, + { + "x": 53.38606, + "y": 276.74264, + "index": 1, + "body": { + "#": 1536 + }, + "isInternal": false + }, + { + "x": 53.38606, + "y": 305.76667, + "index": 2, + "body": { + "#": 1536 + }, + "isInternal": false + }, + { + "x": 20, + "y": 305.76667, + "index": 3, + "body": { + "#": 1536 + }, + "isInternal": false + }, + { + "x": 36.69303, + "y": 291.25466 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1550 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1552 + }, + "max": { + "#": 1553 + } + }, + { + "x": 20, + "y": 276.74264 + }, + { + "x": 53.38606, + "y": 305.76667 + }, + { + "x": 36.69303, + "y": 291.25466 + }, + [ + { + "#": 1556 + }, + { + "#": 1557 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 51, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1559 + }, + "angle": 0, + "vertices": { + "#": 1560 + }, + "position": { + "#": 1577 + }, + "force": { + "#": 1578 + }, + "torque": 0, + "positionImpulse": { + "#": 1579 + }, + "constraintImpulse": { + "#": 1580 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1581 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1582 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1583 + }, + "bounds": { + "#": 1585 + }, + "positionPrev": { + "#": 1588 + }, + "anglePrev": 0, + "axes": { + "#": 1589 + }, + "area": 2799.21421, + "mass": 2.79921, + "inverseMass": 0.35724, + "inertia": 5133.71405, + "inverseInertia": 0.00019, + "parent": { + "#": 1558 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1558 + } + ], + [ + { + "#": 1561 + }, + { + "#": 1562 + }, + { + "#": 1563 + }, + { + "#": 1564 + }, + { + "#": 1565 + }, + { + "#": 1566 + }, + { + "#": 1567 + }, + { + "#": 1568 + }, + { + "#": 1569 + }, + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + } + ], + { + "x": 107.42806, + "y": 320.78464, + "index": 0, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 106.51931, + "y": 324.94987, + "index": 1, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 103.95823, + "y": 328.35807, + "index": 2, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 100.2103, + "y": 330.38981, + "index": 3, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 63.38606, + "y": 330.78464, + "index": 4, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 59.22083, + "y": 329.8759, + "index": 5, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 55.81263, + "y": 327.31482, + "index": 6, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 53.7809, + "y": 323.56688, + "index": 7, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 53.38606, + "y": 286.74264, + "index": 8, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 54.29481, + "y": 282.57741, + "index": 9, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 56.85589, + "y": 279.16921, + "index": 10, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 60.60382, + "y": 277.13748, + "index": 11, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 97.42806, + "y": 276.74264, + "index": 12, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 101.59329, + "y": 277.65139, + "index": 13, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 105.00149, + "y": 280.21247, + "index": 14, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 107.03322, + "y": 283.96041, + "index": 15, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 80.40706, + "y": 303.76364 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1584 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1586 + }, + "max": { + "#": 1587 + } + }, + { + "x": 53.38606, + "y": 276.74264 + }, + { + "x": 107.42806, + "y": 330.78464 + }, + { + "x": 80.40706, + "y": 303.76364 + }, + [ + { + "#": 1590 + }, + { + "#": 1591 + }, + { + "#": 1592 + }, + { + "#": 1593 + }, + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + }, + { + "#": 1597 + } + ], + { + "x": -0.97702, + "y": -0.21316 + }, + { + "x": -0.79944, + "y": -0.60074 + }, + { + "x": -0.47657, + "y": -0.87913 + }, + { + "x": -0.01072, + "y": -0.99994 + }, + { + "x": 0.21316, + "y": -0.97702 + }, + { + "x": 0.60074, + "y": -0.79944 + }, + { + "x": 0.87913, + "y": -0.47657 + }, + { + "x": 0.99994, + "y": -0.01072 + }, + { + "id": 52, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1599 + }, + "angle": 0, + "vertices": { + "#": 1600 + }, + "position": { + "#": 1605 + }, + "force": { + "#": 1606 + }, + "torque": 0, + "positionImpulse": { + "#": 1607 + }, + "constraintImpulse": { + "#": 1608 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1609 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1610 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1611 + }, + "chamfer": null, + "bounds": { + "#": 1613 + }, + "positionPrev": { + "#": 1616 + }, + "anglePrev": 0, + "axes": { + "#": 1617 + }, + "area": 1295.03569, + "mass": 1.29504, + "inverseMass": 0.77218, + "inertia": 1143.5393, + "inverseInertia": 0.00087, + "parent": { + "#": 1598 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1598 + } + ], + [ + { + "#": 1601 + }, + { + "#": 1602 + }, + { + "#": 1603 + }, + { + "#": 1604 + } + ], + { + "x": 107.42806, + "y": 276.74264, + "index": 0, + "body": { + "#": 1598 + }, + "isInternal": false + }, + { + "x": 147.45892, + "y": 276.74264, + "index": 1, + "body": { + "#": 1598 + }, + "isInternal": false + }, + { + "x": 147.45892, + "y": 309.09357, + "index": 2, + "body": { + "#": 1598 + }, + "isInternal": false + }, + { + "x": 107.42806, + "y": 309.09357, + "index": 3, + "body": { + "#": 1598 + }, + "isInternal": false + }, + { + "x": 127.44349, + "y": 292.91811 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1612 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1614 + }, + "max": { + "#": 1615 + } + }, + { + "x": 107.42806, + "y": 276.74264 + }, + { + "x": 147.45892, + "y": 309.09357 + }, + { + "x": 127.44349, + "y": 292.91811 + }, + [ + { + "#": 1618 + }, + { + "#": 1619 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 53, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1621 + }, + "angle": 0, + "vertices": { + "#": 1622 + }, + "position": { + "#": 1627 + }, + "force": { + "#": 1628 + }, + "torque": 0, + "positionImpulse": { + "#": 1629 + }, + "constraintImpulse": { + "#": 1630 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1631 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1632 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1633 + }, + "chamfer": null, + "bounds": { + "#": 1635 + }, + "positionPrev": { + "#": 1638 + }, + "anglePrev": 0, + "axes": { + "#": 1639 + }, + "area": 4450.49094, + "mass": 4.45049, + "inverseMass": 0.22469, + "inertia": 13204.57976, + "inverseInertia": 0.00008, + "parent": { + "#": 1620 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1620 + } + ], + [ + { + "#": 1623 + }, + { + "#": 1624 + }, + { + "#": 1625 + }, + { + "#": 1626 + } + ], + { + "x": 214.17092, + "y": 343.45464, + "index": 0, + "body": { + "#": 1620 + }, + "isInternal": false + }, + { + "x": 147.45892, + "y": 343.45464, + "index": 1, + "body": { + "#": 1620 + }, + "isInternal": false + }, + { + "x": 147.45892, + "y": 276.74264, + "index": 2, + "body": { + "#": 1620 + }, + "isInternal": false + }, + { + "x": 214.17092, + "y": 276.74264, + "index": 3, + "body": { + "#": 1620 + }, + "isInternal": false + }, + { + "x": 180.81492, + "y": 310.09864 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1634 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1636 + }, + "max": { + "#": 1637 + } + }, + { + "x": 147.45892, + "y": 276.74264 + }, + { + "x": 214.17092, + "y": 343.45464 + }, + { + "x": 180.81492, + "y": 310.09864 + }, + [ + { + "#": 1640 + }, + { + "#": 1641 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 54, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1643 + }, + "angle": 0, + "vertices": { + "#": 1644 + }, + "position": { + "#": 1669 + }, + "force": { + "#": 1670 + }, + "torque": 0, + "positionImpulse": { + "#": 1671 + }, + "constraintImpulse": { + "#": 1672 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1673 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1674 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1675 + }, + "bounds": { + "#": 1677 + }, + "positionPrev": { + "#": 1680 + }, + "anglePrev": 0, + "axes": { + "#": 1681 + }, + "area": 5038.30722, + "mass": 5.03831, + "inverseMass": 0.19848, + "inertia": 16255.67982, + "inverseInertia": 0.00006, + "parent": { + "#": 1642 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1642 + } + ], + [ + { + "#": 1645 + }, + { + "#": 1646 + }, + { + "#": 1647 + }, + { + "#": 1648 + }, + { + "#": 1649 + }, + { + "#": 1650 + }, + { + "#": 1651 + }, + { + "#": 1652 + }, + { + "#": 1653 + }, + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + }, + { + "#": 1661 + }, + { + "#": 1662 + }, + { + "#": 1663 + }, + { + "#": 1664 + }, + { + "#": 1665 + }, + { + "#": 1666 + }, + { + "#": 1667 + }, + { + "#": 1668 + } + ], + { + "x": 290.84794, + "y": 335.8144, + "index": 0, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 290.44059, + "y": 338.63949, + "index": 1, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 289.25172, + "y": 341.23441, + "index": 2, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 287.37819, + "y": 343.38777, + "index": 3, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 257.50954, + "y": 360.83645, + "index": 4, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 254.85918, + "y": 361.89627, + "index": 5, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 252.01738, + "y": 362.16415, + "index": 6, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 249.21566, + "y": 361.61824, + "index": 7, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 219.17082, + "y": 344.47459, + "index": 8, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 216.92792, + "y": 342.70925, + "index": 9, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 215.27511, + "y": 340.38217, + "index": 10, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 214.34705, + "y": 337.68296, + "index": 11, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 214.17092, + "y": 303.09239, + "index": 12, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 214.57828, + "y": 300.2673, + "index": 13, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 215.76715, + "y": 297.67238, + "index": 14, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 217.64068, + "y": 295.51902, + "index": 15, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 247.50933, + "y": 278.07034, + "index": 16, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 250.15968, + "y": 277.01052, + "index": 17, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 253.00149, + "y": 276.74264, + "index": 18, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 255.8032, + "y": 277.28855, + "index": 19, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 285.84805, + "y": 294.43219, + "index": 20, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 288.09094, + "y": 296.19754, + "index": 21, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 289.74375, + "y": 298.52462, + "index": 22, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 290.67181, + "y": 301.22383, + "index": 23, + "body": { + "#": 1642 + }, + "isInternal": false + }, + { + "x": 252.50943, + "y": 319.45339 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1676 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1678 + }, + "max": { + "#": 1679 + } + }, + { + "x": 214.17092, + "y": 276.74264 + }, + { + "x": 290.84794, + "y": 362.16415 + }, + { + "x": 252.50943, + "y": 319.45339 + }, + [ + { + "#": 1682 + }, + { + "#": 1683 + }, + { + "#": 1684 + }, + { + "#": 1685 + }, + { + "#": 1686 + }, + { + "#": 1687 + }, + { + "#": 1688 + }, + { + "#": 1689 + }, + { + "#": 1690 + }, + { + "#": 1691 + }, + { + "#": 1692 + }, + { + "#": 1693 + } + ], + { + "x": -0.98976, + "y": -0.14272 + }, + { + "x": -0.90913, + "y": -0.41652 + }, + { + "x": -0.75442, + "y": -0.65639 + }, + { + "x": -0.50442, + "y": -0.86346 + }, + { + "x": -0.37129, + "y": -0.92852 + }, + { + "x": -0.09385, + "y": -0.99559 + }, + { + "x": 0.19125, + "y": -0.98154 + }, + { + "x": 0.4956, + "y": -0.86855 + }, + { + "x": 0.61849, + "y": -0.7858 + }, + { + "x": 0.81529, + "y": -0.57906 + }, + { + "x": 0.94566, + "y": -0.32514 + }, + { + "x": 0.99999, + "y": -0.00509 + }, + { + "id": 55, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1695 + }, + "angle": 0, + "vertices": { + "#": 1696 + }, + "position": { + "#": 1717 + }, + "force": { + "#": 1718 + }, + "torque": 0, + "positionImpulse": { + "#": 1719 + }, + "constraintImpulse": { + "#": 1720 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1721 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1722 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1723 + }, + "bounds": { + "#": 1725 + }, + "positionPrev": { + "#": 1728 + }, + "anglePrev": 0, + "axes": { + "#": 1729 + }, + "area": 2586.15385, + "mass": 2.58615, + "inverseMass": 0.38667, + "inertia": 4301.69896, + "inverseInertia": 0.00023, + "parent": { + "#": 1694 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1694 + } + ], + [ + { + "#": 1697 + }, + { + "#": 1698 + }, + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + }, + { + "#": 1703 + }, + { + "#": 1704 + }, + { + "#": 1705 + }, + { + "#": 1706 + }, + { + "#": 1707 + }, + { + "#": 1708 + }, + { + "#": 1709 + }, + { + "#": 1710 + }, + { + "#": 1711 + }, + { + "#": 1712 + }, + { + "#": 1713 + }, + { + "#": 1714 + }, + { + "#": 1715 + }, + { + "#": 1716 + } + ], + { + "x": 346.93446, + "y": 319.13638, + "index": 0, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 346.34962, + "y": 322.50604, + "index": 1, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 344.66353, + "y": 325.48156, + "index": 2, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 342.0734, + "y": 327.71491, + "index": 3, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 316.47312, + "y": 336.29949, + "index": 4, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 313.0876, + "y": 336.78458, + "index": 5, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 309.73663, + "y": 336.10047, + "index": 6, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 306.81217, + "y": 334.3272, + "index": 7, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 290.7376, + "y": 312.63266, + "index": 8, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 289.23015, + "y": 309.56282, + "index": 9, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 288.84528, + "y": 306.16455, + "index": 10, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 289.628, + "y": 302.83534, + "index": 11, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 305.29267, + "y": 280.84308, + "index": 12, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 307.74647, + "y": 278.46067, + "index": 13, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 310.85956, + "y": 277.04445, + "index": 14, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 314.2678, + "y": 276.76008, + "index": 15, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 340.02467, + "y": 284.86285, + "index": 16, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 343.04867, + "y": 286.46036, + "index": 17, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 345.35752, + "y": 288.98342, + "index": 18, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 346.68116, + "y": 292.13694, + "index": 19, + "body": { + "#": 1694 + }, + "isInternal": false + }, + { + "x": 319.89253, + "y": 306.75489 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1724 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1726 + }, + "max": { + "#": 1727 + } + }, + { + "x": 288.84528, + "y": 276.76008 + }, + { + "x": 346.93446, + "y": 336.78458 + }, + { + "x": 319.89253, + "y": 306.75489 + }, + [ + { + "#": 1730 + }, + { + "#": 1731 + }, + { + "#": 1732 + }, + { + "#": 1733 + }, + { + "#": 1734 + }, + { + "#": 1735 + }, + { + "#": 1736 + }, + { + "#": 1737 + }, + { + "#": 1738 + }, + { + "#": 1739 + }, + { + "#": 1740 + }, + { + "#": 1741 + }, + { + "#": 1742 + }, + { + "#": 1743 + }, + { + "#": 1744 + }, + { + "#": 1745 + }, + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + } + ], + { + "x": 0.98527, + "y": 0.171 + }, + { + "x": 0.87003, + "y": 0.493 + }, + { + "x": 0.65302, + "y": 0.75734 + }, + { + "x": 0.31793, + "y": 0.94811 + }, + { + "x": 0.14183, + "y": 0.98989 + }, + { + "x": -0.20003, + "y": 0.97979 + }, + { + "x": -0.51849, + "y": 0.85509 + }, + { + "x": -0.80348, + "y": 0.59534 + }, + { + "x": -0.89762, + "y": 0.44078 + }, + { + "x": -0.99365, + "y": 0.11254 + }, + { + "x": -0.97346, + "y": -0.22887 + }, + { + "x": -0.8145, + "y": -0.58016 + }, + { + "x": -0.69659, + "y": -0.71747 + }, + { + "x": -0.41409, + "y": -0.91024 + }, + { + "x": -0.08315, + "y": -0.99654 + }, + { + "x": 0.30009, + "y": -0.95391 + }, + { + "x": 0.4671, + "y": -0.8842 + }, + { + "x": 0.73773, + "y": -0.6751 + }, + { + "x": 0.92207, + "y": -0.38702 + }, + { + "x": 0.99996, + "y": -0.00938 + }, + { + "id": 56, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1751 + }, + "angle": 0, + "vertices": { + "#": 1752 + }, + "position": { + "#": 1757 + }, + "force": { + "#": 1758 + }, + "torque": 0, + "positionImpulse": { + "#": 1759 + }, + "constraintImpulse": { + "#": 1760 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1761 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1762 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1763 + }, + "chamfer": null, + "bounds": { + "#": 1765 + }, + "positionPrev": { + "#": 1768 + }, + "anglePrev": 0, + "axes": { + "#": 1769 + }, + "area": 1290.97949, + "mass": 1.29098, + "inverseMass": 0.77461, + "inertia": 1336.11655, + "inverseInertia": 0.00075, + "parent": { + "#": 1750 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1750 + } + ], + [ + { + "#": 1753 + }, + { + "#": 1754 + }, + { + "#": 1755 + }, + { + "#": 1756 + } + ], + { + "x": 346.93446, + "y": 276.74264, + "index": 0, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 396.0739, + "y": 276.74264, + "index": 1, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 396.0739, + "y": 303.0144, + "index": 2, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 346.93446, + "y": 303.0144, + "index": 3, + "body": { + "#": 1750 + }, + "isInternal": false + }, + { + "x": 371.50418, + "y": 289.87852 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1764 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1766 + }, + "max": { + "#": 1767 + } + }, + { + "x": 346.93446, + "y": 276.74264 + }, + { + "x": 396.0739, + "y": 303.0144 + }, + { + "x": 371.50418, + "y": 289.87852 + }, + [ + { + "#": 1770 + }, + { + "#": 1771 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 57, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1773 + }, + "angle": 0, + "vertices": { + "#": 1774 + }, + "position": { + "#": 1779 + }, + "force": { + "#": 1780 + }, + "torque": 0, + "positionImpulse": { + "#": 1781 + }, + "constraintImpulse": { + "#": 1782 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1783 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1784 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1785 + }, + "chamfer": null, + "bounds": { + "#": 1787 + }, + "positionPrev": { + "#": 1790 + }, + "anglePrev": 0, + "axes": { + "#": 1791 + }, + "area": 3447.1358, + "mass": 3.44714, + "inverseMass": 0.2901, + "inertia": 17066.1747, + "inverseInertia": 0.00006, + "parent": { + "#": 1772 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1772 + } + ], + [ + { + "#": 1775 + }, + { + "#": 1776 + }, + { + "#": 1777 + }, + { + "#": 1778 + } + ], + { + "x": 396.0739, + "y": 276.74264, + "index": 0, + "body": { + "#": 1772 + }, + "isInternal": false + }, + { + "x": 514.41221, + "y": 276.74264, + "index": 1, + "body": { + "#": 1772 + }, + "isInternal": false + }, + { + "x": 514.41221, + "y": 305.87214, + "index": 2, + "body": { + "#": 1772 + }, + "isInternal": false + }, + { + "x": 396.0739, + "y": 305.87214, + "index": 3, + "body": { + "#": 1772 + }, + "isInternal": false + }, + { + "x": 455.24305, + "y": 291.30739 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1786 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1788 + }, + "max": { + "#": 1789 + } + }, + { + "x": 396.0739, + "y": 276.74264 + }, + { + "x": 514.41221, + "y": 305.87214 + }, + { + "x": 455.24305, + "y": 291.30739 + }, + [ + { + "#": 1792 + }, + { + "#": 1793 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 58, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1795 + }, + "angle": 0, + "vertices": { + "#": 1796 + }, + "position": { + "#": 1823 + }, + "force": { + "#": 1824 + }, + "torque": 0, + "positionImpulse": { + "#": 1825 + }, + "constraintImpulse": { + "#": 1826 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1827 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1828 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1829 + }, + "chamfer": null, + "circleRadius": 42.97561, + "bounds": { + "#": 1831 + }, + "positionPrev": { + "#": 1834 + }, + "anglePrev": 0, + "axes": { + "#": 1835 + }, + "area": 5745.91602, + "mass": 5.74592, + "inverseMass": 0.17404, + "inertia": 21018.75357, + "inverseInertia": 0.00005, + "parent": { + "#": 1794 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1794 + } + ], + [ + { + "#": 1797 + }, + { + "#": 1798 + }, + { + "#": 1799 + }, + { + "#": 1800 + }, + { + "#": 1801 + }, + { + "#": 1802 + }, + { + "#": 1803 + }, + { + "#": 1804 + }, + { + "#": 1805 + }, + { + "#": 1806 + }, + { + "#": 1807 + }, + { + "#": 1808 + }, + { + "#": 1809 + }, + { + "#": 1810 + }, + { + "#": 1811 + }, + { + "#": 1812 + }, + { + "#": 1813 + }, + { + "#": 1814 + }, + { + "#": 1815 + }, + { + "#": 1816 + }, + { + "#": 1817 + }, + { + "#": 1818 + }, + { + "#": 1819 + }, + { + "#": 1820 + }, + { + "#": 1821 + }, + { + "#": 1822 + } + ], + { + "x": 599.73621, + "y": 324.89864, + "index": 0, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 597.25721, + "y": 334.95764, + "index": 1, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 592.44221, + "y": 344.13164, + "index": 2, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 585.57221, + "y": 351.88664, + "index": 3, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 577.04621, + "y": 357.77164, + "index": 4, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 567.35921, + "y": 361.44564, + "index": 5, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 557.07421, + "y": 362.69464, + "index": 6, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 546.78921, + "y": 361.44564, + "index": 7, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 537.10221, + "y": 357.77164, + "index": 8, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 528.57621, + "y": 351.88664, + "index": 9, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 521.70621, + "y": 344.13164, + "index": 10, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 516.89121, + "y": 334.95764, + "index": 11, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 514.41221, + "y": 324.89864, + "index": 12, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 514.41221, + "y": 314.53864, + "index": 13, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 516.89121, + "y": 304.47964, + "index": 14, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 521.70621, + "y": 295.30564, + "index": 15, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 528.57621, + "y": 287.55064, + "index": 16, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 537.10221, + "y": 281.66564, + "index": 17, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 546.78921, + "y": 277.99164, + "index": 18, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 557.07421, + "y": 276.74264, + "index": 19, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 567.35921, + "y": 277.99164, + "index": 20, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 577.04621, + "y": 281.66564, + "index": 21, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 585.57221, + "y": 287.55064, + "index": 22, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 592.44221, + "y": 295.30564, + "index": 23, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 597.25721, + "y": 304.47964, + "index": 24, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 599.73621, + "y": 314.53864, + "index": 25, + "body": { + "#": 1794 + }, + "isInternal": false + }, + { + "x": 557.07421, + "y": 319.71864 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1830 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1832 + }, + "max": { + "#": 1833 + } + }, + { + "x": 514.41221, + "y": 276.74264 + }, + { + "x": 599.73621, + "y": 362.69464 + }, + { + "x": 557.07421, + "y": 319.71864 + }, + [ + { + "#": 1836 + }, + { + "#": 1837 + }, + { + "#": 1838 + }, + { + "#": 1839 + }, + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + }, + { + "#": 1844 + }, + { + "#": 1845 + }, + { + "#": 1846 + }, + { + "#": 1847 + }, + { + "#": 1848 + } + ], + { + "x": -0.97095, + "y": -0.23929 + }, + { + "x": -0.88545, + "y": -0.46473 + }, + { + "x": -0.74853, + "y": -0.6631 + }, + { + "x": -0.56806, + "y": -0.82299 + }, + { + "x": -0.35462, + "y": -0.93501 + }, + { + "x": -0.12055, + "y": -0.99271 + }, + { + "x": 0.12055, + "y": -0.99271 + }, + { + "x": 0.35462, + "y": -0.93501 + }, + { + "x": 0.56806, + "y": -0.82299 + }, + { + "x": 0.74853, + "y": -0.6631 + }, + { + "x": 0.88545, + "y": -0.46473 + }, + { + "x": 0.97095, + "y": -0.23929 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 59, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1850 + }, + "angle": 0, + "vertices": { + "#": 1851 + }, + "position": { + "#": 1878 + }, + "force": { + "#": 1879 + }, + "torque": 0, + "positionImpulse": { + "#": 1880 + }, + "constraintImpulse": { + "#": 1881 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1882 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1883 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1884 + }, + "chamfer": null, + "circleRadius": 42.97861, + "bounds": { + "#": 1886 + }, + "positionPrev": { + "#": 1889 + }, + "anglePrev": 0, + "axes": { + "#": 1890 + }, + "area": 5746.74295, + "mass": 5.74674, + "inverseMass": 0.17401, + "inertia": 21024.80385, + "inverseInertia": 0.00005, + "parent": { + "#": 1849 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1849 + } + ], + [ + { + "#": 1852 + }, + { + "#": 1853 + }, + { + "#": 1854 + }, + { + "#": 1855 + }, + { + "#": 1856 + }, + { + "#": 1857 + }, + { + "#": 1858 + }, + { + "#": 1859 + }, + { + "#": 1860 + }, + { + "#": 1861 + }, + { + "#": 1862 + }, + { + "#": 1863 + }, + { + "#": 1864 + }, + { + "#": 1865 + }, + { + "#": 1866 + }, + { + "#": 1867 + }, + { + "#": 1868 + }, + { + "#": 1869 + }, + { + "#": 1870 + }, + { + "#": 1871 + }, + { + "#": 1872 + }, + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + }, + { + "#": 1877 + } + ], + { + "x": 685.06621, + "y": 324.90164, + "index": 0, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 682.58721, + "y": 334.96164, + "index": 1, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 677.77221, + "y": 344.13664, + "index": 2, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 670.90121, + "y": 351.89164, + "index": 3, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 662.37421, + "y": 357.77764, + "index": 4, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 652.68621, + "y": 361.45164, + "index": 5, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 642.40121, + "y": 362.70064, + "index": 6, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 632.11621, + "y": 361.45164, + "index": 7, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 622.42821, + "y": 357.77764, + "index": 8, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 613.90121, + "y": 351.89164, + "index": 9, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 607.03021, + "y": 344.13664, + "index": 10, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 602.21521, + "y": 334.96164, + "index": 11, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 599.73621, + "y": 324.90164, + "index": 12, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 599.73621, + "y": 314.54164, + "index": 13, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 602.21521, + "y": 304.48164, + "index": 14, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 607.03021, + "y": 295.30664, + "index": 15, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 613.90121, + "y": 287.55164, + "index": 16, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 622.42821, + "y": 281.66564, + "index": 17, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 632.11621, + "y": 277.99164, + "index": 18, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 642.40121, + "y": 276.74264, + "index": 19, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 652.68621, + "y": 277.99164, + "index": 20, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 662.37421, + "y": 281.66564, + "index": 21, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 670.90121, + "y": 287.55164, + "index": 22, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 677.77221, + "y": 295.30664, + "index": 23, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 682.58721, + "y": 304.48164, + "index": 24, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 685.06621, + "y": 314.54164, + "index": 25, + "body": { + "#": 1849 + }, + "isInternal": false + }, + { + "x": 642.40121, + "y": 319.72164 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1885 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1887 + }, + "max": { + "#": 1888 + } + }, + { + "x": 599.73621, + "y": 276.74264 + }, + { + "x": 685.06621, + "y": 362.70064 + }, + { + "x": 642.40121, + "y": 319.72164 + }, + [ + { + "#": 1891 + }, + { + "#": 1892 + }, + { + "#": 1893 + }, + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + }, + { + "#": 1902 + }, + { + "#": 1903 + } + ], + { + "x": -0.97095, + "y": -0.23926 + }, + { + "x": -0.88547, + "y": -0.46469 + }, + { + "x": -0.74848, + "y": -0.66316 + }, + { + "x": -0.56808, + "y": -0.82297 + }, + { + "x": -0.35459, + "y": -0.93502 + }, + { + "x": -0.12055, + "y": -0.99271 + }, + { + "x": 0.12055, + "y": -0.99271 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.56808, + "y": -0.82297 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88547, + "y": -0.46469 + }, + { + "x": 0.97095, + "y": -0.23926 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 60, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1905 + }, + "angle": 0, + "vertices": { + "#": 1906 + }, + "position": { + "#": 1912 + }, + "force": { + "#": 1913 + }, + "torque": 0, + "positionImpulse": { + "#": 1914 + }, + "constraintImpulse": { + "#": 1915 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1916 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1917 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1918 + }, + "chamfer": null, + "bounds": { + "#": 1920 + }, + "positionPrev": { + "#": 1923 + }, + "anglePrev": 0, + "axes": { + "#": 1924 + }, + "area": 3203.03074, + "mass": 3.20303, + "inverseMass": 0.3122, + "inertia": 6642.19697, + "inverseInertia": 0.00015, + "parent": { + "#": 1904 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1904 + } + ], + [ + { + "#": 1907 + }, + { + "#": 1908 + }, + { + "#": 1909 + }, + { + "#": 1910 + }, + { + "#": 1911 + } + ], + { + "x": 747.95838, + "y": 333.22364, + "index": 0, + "body": { + "#": 1904 + }, + "isInternal": false + }, + { + "x": 706.92238, + "y": 346.55664, + "index": 1, + "body": { + "#": 1904 + }, + "isInternal": false + }, + { + "x": 681.56138, + "y": 311.64964, + "index": 2, + "body": { + "#": 1904 + }, + "isInternal": false + }, + { + "x": 706.92238, + "y": 276.74264, + "index": 3, + "body": { + "#": 1904 + }, + "isInternal": false + }, + { + "x": 747.95838, + "y": 290.07564, + "index": 4, + "body": { + "#": 1904 + }, + "isInternal": false + }, + { + "x": 718.26471, + "y": 311.64964 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1919 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1921 + }, + "max": { + "#": 1922 + } + }, + { + "x": 681.56138, + "y": 276.74264 + }, + { + "x": 747.95838, + "y": 346.55664 + }, + { + "x": 718.26471, + "y": 311.64964 + }, + [ + { + "#": 1925 + }, + { + "#": 1926 + }, + { + "#": 1927 + }, + { + "#": 1928 + }, + { + "#": 1929 + } + ], + { + "x": 0.30901, + "y": 0.95106 + }, + { + "x": -0.80902, + "y": 0.58778 + }, + { + "x": -0.80902, + "y": -0.58778 + }, + { + "x": 0.30901, + "y": -0.95106 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 61, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1931 + }, + "angle": 0, + "vertices": { + "#": 1932 + }, + "position": { + "#": 1961 + }, + "force": { + "#": 1962 + }, + "torque": 0, + "positionImpulse": { + "#": 1963 + }, + "constraintImpulse": { + "#": 1964 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1965 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1966 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1967 + }, + "bounds": { + "#": 1969 + }, + "positionPrev": { + "#": 1972 + }, + "anglePrev": 0, + "axes": { + "#": 1973 + }, + "area": 5067.67028, + "mass": 5.06767, + "inverseMass": 0.19733, + "inertia": 16399.5836, + "inverseInertia": 0.00006, + "parent": { + "#": 1930 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1930 + } + ], + [ + { + "#": 1933 + }, + { + "#": 1934 + }, + { + "#": 1935 + }, + { + "#": 1936 + }, + { + "#": 1937 + }, + { + "#": 1938 + }, + { + "#": 1939 + }, + { + "#": 1940 + }, + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + }, + { + "#": 1944 + }, + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + }, + { + "#": 1948 + }, + { + "#": 1949 + }, + { + "#": 1950 + }, + { + "#": 1951 + }, + { + "#": 1952 + }, + { + "#": 1953 + }, + { + "#": 1954 + }, + { + "#": 1955 + }, + { + "#": 1956 + }, + { + "#": 1957 + }, + { + "#": 1958 + }, + { + "#": 1959 + }, + { + "#": 1960 + } + ], + { + "x": 827.382, + "y": 331.95074, + "index": 0, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 827.08215, + "y": 334.38118, + "index": 1, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 826.20059, + "y": 336.66586, + "index": 2, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 824.79019, + "y": 338.66779, + "index": 3, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 801.83939, + "y": 357.13484, + "index": 4, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 799.75238, + "y": 358.41564, + "index": 5, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 797.41667, + "y": 359.15083, + "index": 6, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 794.97231, + "y": 359.29635, + "index": 7, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 766.22487, + "y": 352.86841, + "index": 8, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 763.9221, + "y": 352.03531, + "index": 9, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 761.89086, + "y": 350.66752, + "index": 10, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 760.25295, + "y": 348.84707, + "index": 11, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 747.355, + "y": 322.3628, + "index": 12, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 746.57063, + "y": 320.04301, + "index": 13, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 746.37358, + "y": 317.60214, + "index": 14, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 746.77566, + "y": 315.18657, + "index": 15, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 759.44024, + "y": 288.58993, + "index": 16, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 760.76491, + "y": 286.53031, + "index": 17, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 762.55043, + "y": 284.85439, + "index": 18, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 764.68972, + "y": 283.66268, + "index": 19, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 793.37964, + "y": 276.98221, + "index": 20, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 795.81568, + "y": 276.73375, + "index": 21, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 798.23908, + "y": 277.08476, + "index": 22, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 800.50451, + "y": 278.0142, + "index": 23, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 823.6167, + "y": 296.27868, + "index": 24, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 825.32998, + "y": 298.02842, + "index": 25, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 826.56664, + "y": 300.1421, + "index": 26, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 827.25249, + "y": 302.49296, + "index": 27, + "body": { + "#": 1930 + }, + "isInternal": false + }, + { + "x": 788.46259, + "y": 318.02394 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1968 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1970 + }, + "max": { + "#": 1971 + } + }, + { + "x": 746.37358, + "y": 276.73375 + }, + { + "x": 827.382, + "y": 359.29635 + }, + { + "x": 788.46259, + "y": 318.02394 + }, + [ + { + "#": 1974 + }, + { + "#": 1975 + }, + { + "#": 1976 + }, + { + "#": 1977 + }, + { + "#": 1978 + }, + { + "#": 1979 + }, + { + "#": 1980 + }, + { + "#": 1981 + }, + { + "#": 1982 + }, + { + "#": 1983 + }, + { + "#": 1984 + }, + { + "#": 1985 + }, + { + "#": 1986 + }, + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + }, + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + }, + { + "#": 1996 + }, + { + "#": 1997 + }, + { + "#": 1998 + }, + { + "#": 1999 + }, + { + "#": 2000 + }, + { + "#": 2001 + } + ], + { + "x": 0.99248, + "y": 0.12244 + }, + { + "x": 0.93296, + "y": 0.35999 + }, + { + "x": 0.81749, + "y": 0.57594 + }, + { + "x": 0.6269, + "y": 0.7791 + }, + { + "x": 0.52305, + "y": 0.8523 + }, + { + "x": 0.30024, + "y": 0.95386 + }, + { + "x": 0.05943, + "y": 0.99823 + }, + { + "x": -0.21821, + "y": 0.9759 + }, + { + "x": -0.3402, + "y": 0.94035 + }, + { + "x": -0.55855, + "y": 0.82947 + }, + { + "x": -0.74339, + "y": 0.66885 + }, + { + "x": -0.89905, + "y": 0.43784 + }, + { + "x": -0.94731, + "y": 0.32031 + }, + { + "x": -0.99676, + "y": 0.08047 + }, + { + "x": -0.98643, + "y": -0.16419 + }, + { + "x": -0.90287, + "y": -0.42992 + }, + { + "x": -0.84106, + "y": -0.54094 + }, + { + "x": -0.68437, + "y": -0.72913 + }, + { + "x": -0.48665, + "y": -0.8736 + }, + { + "x": -0.22678, + "y": -0.97395 + }, + { + "x": -0.10147, + "y": -0.99484 + }, + { + "x": 0.14335, + "y": -0.98967 + }, + { + "x": 0.37957, + "y": -0.92516 + }, + { + "x": 0.62002, + "y": -0.78459 + }, + { + "x": 0.71451, + "y": -0.69963 + }, + { + "x": 0.86313, + "y": -0.50499 + }, + { + "x": 0.95998, + "y": -0.28007 + }, + { + "x": 0.99999, + "y": -0.0044 + }, + { + "id": 62, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2003 + }, + "angle": 0, + "vertices": { + "#": 2004 + }, + "position": { + "#": 2009 + }, + "force": { + "#": 2010 + }, + "torque": 0, + "positionImpulse": { + "#": 2011 + }, + "constraintImpulse": { + "#": 2012 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2013 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2014 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2015 + }, + "chamfer": null, + "bounds": { + "#": 2017 + }, + "positionPrev": { + "#": 2020 + }, + "anglePrev": 0, + "axes": { + "#": 2021 + }, + "area": 4184.01986, + "mass": 4.18402, + "inverseMass": 0.239, + "inertia": 11670.68144, + "inverseInertia": 0.00009, + "parent": { + "#": 2002 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2002 + } + ], + [ + { + "#": 2005 + }, + { + "#": 2006 + }, + { + "#": 2007 + }, + { + "#": 2008 + } + ], + { + "x": 892.066, + "y": 341.42664, + "index": 0, + "body": { + "#": 2002 + }, + "isInternal": false + }, + { + "x": 827.382, + "y": 341.42664, + "index": 1, + "body": { + "#": 2002 + }, + "isInternal": false + }, + { + "x": 827.382, + "y": 276.74264, + "index": 2, + "body": { + "#": 2002 + }, + "isInternal": false + }, + { + "x": 892.066, + "y": 276.74264, + "index": 3, + "body": { + "#": 2002 + }, + "isInternal": false + }, + { + "x": 859.724, + "y": 309.08464 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2016 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2018 + }, + "max": { + "#": 2019 + } + }, + { + "x": 827.382, + "y": 276.74264 + }, + { + "x": 892.066, + "y": 341.42664 + }, + { + "x": 859.724, + "y": 309.08464 + }, + [ + { + "#": 2022 + }, + { + "#": 2023 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 63, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2025 + }, + "angle": 0, + "vertices": { + "#": 2026 + }, + "position": { + "#": 2043 + }, + "force": { + "#": 2044 + }, + "torque": 0, + "positionImpulse": { + "#": 2045 + }, + "constraintImpulse": { + "#": 2046 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2047 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2048 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2049 + }, + "bounds": { + "#": 2051 + }, + "positionPrev": { + "#": 2054 + }, + "anglePrev": 0, + "axes": { + "#": 2055 + }, + "area": 1443.69118, + "mass": 1.44369, + "inverseMass": 0.69267, + "inertia": 1352.26442, + "inverseInertia": 0.00074, + "parent": { + "#": 2024 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2024 + } + ], + [ + { + "#": 2027 + }, + { + "#": 2028 + }, + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + }, + { + "#": 2032 + }, + { + "#": 2033 + }, + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + }, + { + "#": 2038 + }, + { + "#": 2039 + }, + { + "#": 2040 + }, + { + "#": 2041 + }, + { + "#": 2042 + } + ], + { + "x": 931.48, + "y": 306.15664, + "index": 0, + "body": { + "#": 2024 + }, + "isInternal": false + }, + { + "x": 930.57125, + "y": 310.32187, + "index": 1, + "body": { + "#": 2024 + }, + "isInternal": false + }, + { + "x": 928.01017, + "y": 313.73007, + "index": 2, + "body": { + "#": 2024 + }, + "isInternal": false + }, + { + "x": 924.26224, + "y": 315.76181, + "index": 3, + "body": { + "#": 2024 + }, + "isInternal": false + }, + { + "x": 902.066, + "y": 316.15664, + "index": 4, + "body": { + "#": 2024 + }, + "isInternal": false + }, + { + "x": 897.90077, + "y": 315.2479, + "index": 5, + "body": { + "#": 2024 + }, + "isInternal": false + }, + { + "x": 894.49257, + "y": 312.68682, + "index": 6, + "body": { + "#": 2024 + }, + "isInternal": false + }, + { + "x": 892.46084, + "y": 308.93888, + "index": 7, + "body": { + "#": 2024 + }, + "isInternal": false + }, + { + "x": 892.066, + "y": 286.74264, + "index": 8, + "body": { + "#": 2024 + }, + "isInternal": false + }, + { + "x": 892.97475, + "y": 282.57741, + "index": 9, + "body": { + "#": 2024 + }, + "isInternal": false + }, + { + "x": 895.53583, + "y": 279.16921, + "index": 10, + "body": { + "#": 2024 + }, + "isInternal": false + }, + { + "x": 899.28376, + "y": 277.13748, + "index": 11, + "body": { + "#": 2024 + }, + "isInternal": false + }, + { + "x": 921.48, + "y": 276.74264, + "index": 12, + "body": { + "#": 2024 + }, + "isInternal": false + }, + { + "x": 925.64523, + "y": 277.65139, + "index": 13, + "body": { + "#": 2024 + }, + "isInternal": false + }, + { + "x": 929.05343, + "y": 280.21247, + "index": 14, + "body": { + "#": 2024 + }, + "isInternal": false + }, + { + "x": 931.08516, + "y": 283.96041, + "index": 15, + "body": { + "#": 2024 + }, + "isInternal": false + }, + { + "x": 911.773, + "y": 296.44964 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2050 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2052 + }, + "max": { + "#": 2053 + } + }, + { + "x": 892.066, + "y": 276.74264 + }, + { + "x": 931.48, + "y": 316.15664 + }, + { + "x": 911.773, + "y": 296.44964 + }, + [ + { + "#": 2056 + }, + { + "#": 2057 + }, + { + "#": 2058 + }, + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + }, + { + "#": 2062 + }, + { + "#": 2063 + } + ], + { + "x": -0.97702, + "y": -0.21316 + }, + { + "x": -0.79944, + "y": -0.60074 + }, + { + "x": -0.47657, + "y": -0.87913 + }, + { + "x": -0.01779, + "y": -0.99984 + }, + { + "x": 0.21316, + "y": -0.97702 + }, + { + "x": 0.60074, + "y": -0.79944 + }, + { + "x": 0.87913, + "y": -0.47657 + }, + { + "x": 0.99984, + "y": -0.01779 + }, + { + "id": 64, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2065 + }, + "angle": 0, + "vertices": { + "#": 2066 + }, + "position": { + "#": 2071 + }, + "force": { + "#": 2072 + }, + "torque": 0, + "positionImpulse": { + "#": 2073 + }, + "constraintImpulse": { + "#": 2074 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2075 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2076 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2077 + }, + "chamfer": null, + "bounds": { + "#": 2079 + }, + "positionPrev": { + "#": 2082 + }, + "anglePrev": 0, + "axes": { + "#": 2083 + }, + "area": 1357.52623, + "mass": 1.35753, + "inverseMass": 0.73663, + "inertia": 1286.97507, + "inverseInertia": 0.00078, + "parent": { + "#": 2064 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2064 + } + ], + [ + { + "#": 2067 + }, + { + "#": 2068 + }, + { + "#": 2069 + }, + { + "#": 2070 + } + ], + { + "x": 931.48, + "y": 276.74264, + "index": 0, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 963.08012, + "y": 276.74264, + "index": 1, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 963.08012, + "y": 319.70218, + "index": 2, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 931.48, + "y": 319.70218, + "index": 3, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 947.28006, + "y": 298.22241 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2078 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2080 + }, + "max": { + "#": 2081 + } + }, + { + "x": 931.48, + "y": 276.74264 + }, + { + "x": 963.08012, + "y": 319.70218 + }, + { + "x": 947.28006, + "y": 298.22241 + }, + [ + { + "#": 2084 + }, + { + "#": 2085 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 2090 + }, + "max": { + "#": 2091 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/mixed/mixed-10.json b/test/node/refs/mixed/mixed-10.json new file mode 100644 index 00000000..dc6cb726 --- /dev/null +++ b/test/node/refs/mixed/mixed-10.json @@ -0,0 +1,20456 @@ +[ + { + "id": 0, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 94 + }, + "composites": { + "#": 95 + }, + "label": "World", + "gravity": { + "#": 2152 + }, + "bounds": { + "#": 2153 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + [], + [ + { + "#": 96 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 97 + }, + "constraints": { + "#": 2150 + }, + "composites": { + "#": 2151 + }, + "label": "Stack" + }, + [ + { + "#": 98 + }, + { + "#": 154 + }, + { + "#": 177 + }, + { + "#": 200 + }, + { + "#": 223 + }, + { + "#": 296 + }, + { + "#": 319 + }, + { + "#": 342 + }, + { + "#": 365 + }, + { + "#": 421 + }, + { + "#": 444 + }, + { + "#": 467 + }, + { + "#": 523 + }, + { + "#": 564 + }, + { + "#": 587 + }, + { + "#": 610 + }, + { + "#": 666 + }, + { + "#": 707 + }, + { + "#": 730 + }, + { + "#": 753 + }, + { + "#": 776 + }, + { + "#": 799 + }, + { + "#": 822 + }, + { + "#": 853 + }, + { + "#": 876 + }, + { + "#": 917 + }, + { + "#": 974 + }, + { + "#": 997 + }, + { + "#": 1020 + }, + { + "#": 1043 + }, + { + "#": 1066 + }, + { + "#": 1107 + }, + { + "#": 1172 + }, + { + "#": 1195 + }, + { + "#": 1251 + }, + { + "#": 1274 + }, + { + "#": 1330 + }, + { + "#": 1353 + }, + { + "#": 1376 + }, + { + "#": 1399 + }, + { + "#": 1422 + }, + { + "#": 1449 + }, + { + "#": 1490 + }, + { + "#": 1513 + }, + { + "#": 1544 + }, + { + "#": 1585 + }, + { + "#": 1608 + }, + { + "#": 1649 + }, + { + "#": 1672 + }, + { + "#": 1695 + }, + { + "#": 1748 + }, + { + "#": 1805 + }, + { + "#": 1828 + }, + { + "#": 1851 + }, + { + "#": 1907 + }, + { + "#": 1963 + }, + { + "#": 1990 + }, + { + "#": 2063 + }, + { + "#": 2086 + }, + { + "#": 2127 + } + ], + { + "id": 5, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 99 + }, + "angle": 0.05998, + "vertices": { + "#": 100 + }, + "position": { + "#": 127 + }, + "force": { + "#": 128 + }, + "torque": 0, + "positionImpulse": { + "#": 129 + }, + "constraintImpulse": { + "#": 130 + }, + "totalContacts": 0, + "speed": 1.91369, + "angularSpeed": 0.01556, + "velocity": { + "#": 131 + }, + "angularVelocity": 0.01836, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 132 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 133 + }, + "chamfer": null, + "circleRadius": 38.6693, + "bounds": { + "#": 135 + }, + "positionPrev": { + "#": 138 + }, + "anglePrev": 0.04159, + "axes": { + "#": 139 + }, + "area": 4652.04006, + "mass": 4.65204, + "inverseMass": 0.21496, + "inertia": 13777.65485, + "inverseInertia": 0.00007, + "parent": { + "#": 98 + }, + "sleepCounter": 0, + "region": { + "#": 153 + } + }, + [ + { + "#": 98 + } + ], + [ + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + } + ], + { + "x": 96.82097, + "y": 80.15432, + "index": 0, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 94.05141, + "y": 89.05531, + "index": 1, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 89.23234, + "y": 97.03577, + "index": 2, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 82.64322, + "y": 103.62964, + "index": 3, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 74.66854, + "y": 108.45627, + "index": 4, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 65.76903, + "y": 111.23377, + "index": 5, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 56.46436, + "y": 111.80001, + "index": 6, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 47.29432, + "y": 110.12429, + "index": 7, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 38.79118, + "y": 106.30168, + "index": 8, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 31.45145, + "y": 100.55536, + "index": 9, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 25.69881, + "y": 93.22032, + "index": 10, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 21.86945, + "y": 84.72048, + "index": 11, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 20.18504, + "y": 75.55202, + "index": 12, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 20.74386, + "y": 66.24678, + "index": 13, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 23.51342, + "y": 57.3458, + "index": 14, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 28.33248, + "y": 49.36533, + "index": 15, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 34.92161, + "y": 42.77147, + "index": 16, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 42.89629, + "y": 37.94484, + "index": 17, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 51.79579, + "y": 35.16733, + "index": 18, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 61.10047, + "y": 34.6011, + "index": 19, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 70.27051, + "y": 36.27682, + "index": 20, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 78.77365, + "y": 40.09942, + "index": 21, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 86.11338, + "y": 45.84574, + "index": 22, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 91.86602, + "y": 53.18078, + "index": 23, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 95.69537, + "y": 61.68063, + "index": 24, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 97.37979, + "y": 70.84909, + "index": 25, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 58.78241, + "y": 73.20055 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00309, + "y": 0.06083 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.04318, + "y": 1.73428 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 134 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 136 + }, + "max": { + "#": 137 + } + }, + { + "x": 20.18504, + "y": 34.6011 + }, + { + "x": 97.41528, + "y": 113.71337 + }, + { + "x": 58.74171, + "y": 71.4631 + }, + [ + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + }, + { + "#": 152 + } + ], + { + "x": -0.95485, + "y": -0.2971 + }, + { + "x": -0.85603, + "y": -0.51692 + }, + { + "x": -0.70736, + "y": -0.70685 + }, + { + "x": -0.51779, + "y": -0.85551 + }, + { + "x": -0.29792, + "y": -0.95459 + }, + { + "x": -0.06074, + "y": -0.99815 + }, + { + "x": 0.17976, + "y": -0.98371 + }, + { + "x": 0.41002, + "y": -0.91207 + }, + { + "x": 0.61645, + "y": -0.78739 + }, + { + "x": 0.78687, + "y": -0.61712 + }, + { + "x": 0.91174, + "y": -0.41076 + }, + { + "x": 0.98354, + "y": -0.18069 + }, + { + "x": 0.9982, + "y": 0.05995 + }, + { + "id": "0,2,0,2", + "startCol": 0, + "endCol": 2, + "startRow": 0, + "endRow": 2 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 155 + }, + "angle": 0.00588, + "vertices": { + "#": 156 + }, + "position": { + "#": 161 + }, + "force": { + "#": 162 + }, + "torque": 0, + "positionImpulse": { + "#": 163 + }, + "constraintImpulse": { + "#": 164 + }, + "totalContacts": 0, + "speed": 2.69612, + "angularSpeed": 0.00202, + "velocity": { + "#": 165 + }, + "angularVelocity": 0.00212, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 166 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 167 + }, + "chamfer": null, + "bounds": { + "#": 169 + }, + "positionPrev": { + "#": 172 + }, + "anglePrev": 0.00371, + "axes": { + "#": 173 + }, + "area": 3285.22419, + "mass": 3.28522, + "inverseMass": 0.30439, + "inertia": 16260.27647, + "inverseInertia": 0.00006, + "parent": { + "#": 154 + }, + "sleepCounter": 0, + "region": { + "#": 176 + } + }, + [ + { + "#": 154 + } + ], + [ + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + } + ], + { + "x": 96.23778, + "y": 36.50204, + "index": 0, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 214.90394, + "y": 37.19943, + "index": 1, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 214.74125, + "y": 64.88306, + "index": 2, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 96.07509, + "y": 64.18568, + "index": 3, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 155.48951, + "y": 50.69255 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.24334, + "y": 2.61808 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 168 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 170 + }, + "max": { + "#": 171 + } + }, + { + "x": 96.07509, + "y": 36.50204 + }, + { + "x": 215.13091, + "y": 67.56961 + }, + { + "x": 155.24267, + "y": 48.07896 + }, + [ + { + "#": 174 + }, + { + "#": 175 + } + ], + { + "x": -0.00588, + "y": 0.99998 + }, + { + "x": -0.99998, + "y": -0.00588 + }, + { + "id": "2,4,0,1", + "startCol": 2, + "endCol": 4, + "startRow": 0, + "endRow": 1 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 178 + }, + "angle": 0.00622, + "vertices": { + "#": 179 + }, + "position": { + "#": 184 + }, + "force": { + "#": 185 + }, + "torque": 0, + "positionImpulse": { + "#": 186 + }, + "constraintImpulse": { + "#": 187 + }, + "totalContacts": 0, + "speed": 2.80767, + "angularSpeed": 0.00238, + "velocity": { + "#": 188 + }, + "angularVelocity": 0.00276, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 189 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 190 + }, + "chamfer": null, + "bounds": { + "#": 192 + }, + "positionPrev": { + "#": 195 + }, + "anglePrev": 0.0041, + "axes": { + "#": 196 + }, + "area": 1082.55274, + "mass": 1.08255, + "inverseMass": 0.92374, + "inertia": 830.3537, + "inverseInertia": 0.0012, + "parent": { + "#": 177 + }, + "sleepCounter": 0, + "region": { + "#": 199 + } + }, + [ + { + "#": 177 + } + ], + [ + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + } + ], + { + "x": 214.83381, + "y": 37.44061, + "index": 0, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 242.4173, + "y": 37.61206, + "index": 1, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 242.17335, + "y": 76.85695, + "index": 2, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 214.58987, + "y": 76.6855, + "index": 3, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 228.50358, + "y": 57.14878 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00607, + "y": 0.00004 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.20459, + "y": 2.77621 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 191 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 193 + }, + "max": { + "#": 194 + } + }, + { + "x": 214.58987, + "y": 37.44061 + }, + { + "x": 242.60752, + "y": 79.65817 + }, + { + "x": 228.2819, + "y": 54.33541 + }, + [ + { + "#": 197 + }, + { + "#": 198 + } + ], + { + "x": -0.00622, + "y": 0.99998 + }, + { + "x": -0.99998, + "y": -0.00622 + }, + { + "id": "4,5,0,1", + "startCol": 4, + "endCol": 5, + "startRow": 0, + "endRow": 1 + }, + { + "id": 8, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 201 + }, + "angle": 0.00219, + "vertices": { + "#": 202 + }, + "position": { + "#": 207 + }, + "force": { + "#": 208 + }, + "torque": 0, + "positionImpulse": { + "#": 209 + }, + "constraintImpulse": { + "#": 210 + }, + "totalContacts": 0, + "speed": 2.90141, + "angularSpeed": 0.00157, + "velocity": { + "#": 211 + }, + "angularVelocity": 0.00258, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 212 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 213 + }, + "chamfer": null, + "bounds": { + "#": 215 + }, + "positionPrev": { + "#": 218 + }, + "anglePrev": -0.00041, + "axes": { + "#": 219 + }, + "area": 3923.7696, + "mass": 3.92377, + "inverseMass": 0.25486, + "inertia": 10263.97858, + "inverseInertia": 0.0001, + "parent": { + "#": 200 + }, + "sleepCounter": 0, + "region": { + "#": 222 + } + }, + [ + { + "#": 200 + } + ], + [ + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + } + ], + { + "x": 304.84896, + "y": 100.43393, + "index": 0, + "body": { + "#": 200 + }, + "isInternal": false + }, + { + "x": 242.20911, + "y": 100.29652, + "index": 1, + "body": { + "#": 200 + }, + "isInternal": false + }, + { + "x": 242.34652, + "y": 37.65667, + "index": 2, + "body": { + "#": 200 + }, + "isInternal": false + }, + { + "x": 304.98637, + "y": 37.79408, + "index": 3, + "body": { + "#": 200 + }, + "isInternal": false + }, + { + "x": 273.59774, + "y": 69.0453 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.07675, + "y": 0.00057 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.15937, + "y": 2.8897 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 214 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 216 + }, + "max": { + "#": 217 + } + }, + { + "x": 242.20911, + "y": 37.65667 + }, + { + "x": 305.09048, + "y": 103.33347 + }, + { + "x": 273.4336, + "y": 66.15485 + }, + [ + { + "#": 220 + }, + { + "#": 221 + } + ], + { + "x": 0.00219, + "y": -1 + }, + { + "x": 1, + "y": 0.00219 + }, + { + "id": "5,6,0,2", + "startCol": 5, + "endCol": 6, + "startRow": 0, + "endRow": 2 + }, + { + "id": 9, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 224 + }, + "angle": 0.00011, + "vertices": { + "#": 225 + }, + "position": { + "#": 254 + }, + "force": { + "#": 255 + }, + "torque": 0, + "positionImpulse": { + "#": 256 + }, + "constraintImpulse": { + "#": 257 + }, + "totalContacts": 0, + "speed": 2.91208, + "angularSpeed": 0.0001, + "velocity": { + "#": 258 + }, + "angularVelocity": 0.0002, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 259 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 260 + }, + "bounds": { + "#": 262 + }, + "positionPrev": { + "#": 265 + }, + "anglePrev": -0.00008, + "axes": { + "#": 266 + }, + "area": 4997.27275, + "mass": 4.99727, + "inverseMass": 0.20011, + "inertia": 15946.95231, + "inverseInertia": 0.00006, + "parent": { + "#": 223 + }, + "sleepCounter": 0, + "region": { + "#": 295 + } + }, + [ + { + "#": 223 + } + ], + [ + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + } + ], + { + "x": 385.27467, + "y": 92.58738, + "index": 0, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 384.97457, + "y": 95.0177, + "index": 1, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 384.09281, + "y": 97.30222, + "index": 2, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 382.68228, + "y": 99.30394, + "index": 3, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 359.93347, + "y": 117.60722, + "index": 4, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 357.84623, + "y": 118.8879, + "index": 5, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 355.51032, + "y": 119.6229, + "index": 6, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 353.06581, + "y": 119.76815, + "index": 7, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 324.57224, + "y": 113.39403, + "index": 8, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 322.26961, + "y": 112.56064, + "index": 9, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 320.23857, + "y": 111.19261, + "index": 10, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 318.60091, + "y": 109.37198, + "index": 11, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 305.81882, + "y": 83.12016, + "index": 12, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 305.03474, + "y": 80.80031, + "index": 13, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 304.83797, + "y": 78.35945, + "index": 14, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 305.24031, + "y": 75.94396, + "index": 15, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 317.79501, + "y": 49.58266, + "index": 16, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 319.11987, + "y": 47.5232, + "index": 17, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 320.90554, + "y": 45.84749, + "index": 18, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 323.04493, + "y": 44.656, + "index": 19, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 351.48233, + "y": 38.03583, + "index": 20, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 353.91853, + "y": 37.7876, + "index": 21, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 356.34202, + "y": 38.13891, + "index": 22, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 358.60747, + "y": 39.0687, + "index": 23, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 381.51364, + "y": 57.17468, + "index": 24, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 383.22662, + "y": 58.9246, + "index": 25, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 384.46295, + "y": 61.03837, + "index": 26, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 385.14849, + "y": 63.38923, + "index": 27, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 346.62715, + "y": 78.78599 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.08831, + "y": 0.00391 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.13573, + "y": 2.91553 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 261 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 263 + }, + "max": { + "#": 264 + } + }, + { + "x": 304.83797, + "y": 37.7876 + }, + { + "x": 385.35296, + "y": 122.67918 + }, + { + "x": 346.49055, + "y": 75.8698 + }, + [ + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + } + ], + { + "x": 0.99246, + "y": 0.12255 + }, + { + "x": 0.93292, + "y": 0.36008 + }, + { + "x": 0.81744, + "y": 0.57602 + }, + { + "x": 0.62687, + "y": 0.77912 + }, + { + "x": 0.52298, + "y": 0.85235 + }, + { + "x": 0.30014, + "y": 0.95389 + }, + { + "x": 0.05931, + "y": 0.99824 + }, + { + "x": -0.21831, + "y": 0.97588 + }, + { + "x": -0.34033, + "y": 0.94031 + }, + { + "x": -0.55865, + "y": 0.8294 + }, + { + "x": -0.74348, + "y": 0.66876 + }, + { + "x": -0.89909, + "y": 0.43777 + }, + { + "x": -0.94735, + "y": 0.32019 + }, + { + "x": -0.99677, + "y": 0.08035 + }, + { + "x": -0.98641, + "y": -0.1643 + }, + { + "x": -0.90284, + "y": -0.42998 + }, + { + "x": -0.84101, + "y": -0.54103 + }, + { + "x": -0.6843, + "y": -0.7292 + }, + { + "x": -0.48656, + "y": -0.87365 + }, + { + "x": -0.22674, + "y": -0.97396 + }, + { + "x": -0.10136, + "y": -0.99485 + }, + { + "x": 0.14346, + "y": -0.98966 + }, + { + "x": 0.37969, + "y": -0.92512 + }, + { + "x": 0.62011, + "y": -0.78451 + }, + { + "x": 0.71461, + "y": -0.69952 + }, + { + "x": 0.86319, + "y": -0.50487 + }, + { + "x": 0.96001, + "y": -0.27995 + }, + { + "x": 0.99999, + "y": -0.00432 + }, + { + "id": "6,8,0,2", + "startCol": 6, + "endCol": 8, + "startRow": 0, + "endRow": 2 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 297 + }, + "angle": 0, + "vertices": { + "#": 298 + }, + "position": { + "#": 303 + }, + "force": { + "#": 304 + }, + "torque": 0, + "positionImpulse": { + "#": 305 + }, + "constraintImpulse": { + "#": 306 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 307 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 308 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 309 + }, + "chamfer": null, + "bounds": { + "#": 311 + }, + "positionPrev": { + "#": 314 + }, + "anglePrev": 0, + "axes": { + "#": 315 + }, + "area": 2424.72213, + "mass": 2.42472, + "inverseMass": 0.41242, + "inertia": 6421.58154, + "inverseInertia": 0.00016, + "parent": { + "#": 296 + }, + "sleepCounter": 0, + "region": { + "#": 318 + } + }, + [ + { + "#": 296 + } + ], + [ + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + } + ], + { + "x": 385.11347, + "y": 37.73204, + "index": 0, + "body": { + "#": 296 + }, + "isInternal": false + }, + { + "x": 469.4895, + "y": 37.73204, + "index": 1, + "body": { + "#": 296 + }, + "isInternal": false + }, + { + "x": 469.4895, + "y": 66.46913, + "index": 2, + "body": { + "#": 296 + }, + "isInternal": false + }, + { + "x": 385.11347, + "y": 66.46913, + "index": 3, + "body": { + "#": 296 + }, + "isInternal": false + }, + { + "x": 427.30148, + "y": 52.10059 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 310 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 312 + }, + "max": { + "#": 313 + } + }, + { + "x": 385.11347, + "y": 37.73204 + }, + { + "x": 469.4895, + "y": 66.46913 + }, + { + "x": 427.30148, + "y": 49.19332 + }, + [ + { + "#": 316 + }, + { + "#": 317 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,0,1", + "startCol": 8, + "endCol": 9, + "startRow": 0, + "endRow": 1 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 320 + }, + "angle": 0, + "vertices": { + "#": 321 + }, + "position": { + "#": 326 + }, + "force": { + "#": 327 + }, + "torque": 0, + "positionImpulse": { + "#": 328 + }, + "constraintImpulse": { + "#": 329 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 330 + }, + "angularVelocity": -0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 331 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 332 + }, + "chamfer": null, + "bounds": { + "#": 334 + }, + "positionPrev": { + "#": 337 + }, + "anglePrev": 0.00001, + "axes": { + "#": 338 + }, + "area": 3062.13511, + "mass": 3.06214, + "inverseMass": 0.32657, + "inertia": 12902.45778, + "inverseInertia": 0.00008, + "parent": { + "#": 319 + }, + "sleepCounter": 0, + "region": { + "#": 341 + } + }, + [ + { + "#": 319 + } + ], + [ + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + } + ], + { + "x": 469.74405, + "y": 37.73574, + "index": 0, + "body": { + "#": 319 + }, + "isInternal": false + }, + { + "x": 578.59865, + "y": 37.73574, + "index": 1, + "body": { + "#": 319 + }, + "isInternal": false + }, + { + "x": 578.59865, + "y": 65.86625, + "index": 2, + "body": { + "#": 319 + }, + "isInternal": false + }, + { + "x": 469.74405, + "y": 65.86625, + "index": 3, + "body": { + "#": 319 + }, + "isInternal": false + }, + { + "x": 524.17135, + "y": 51.801 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01195, + "y": 2.90463 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 333 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 335 + }, + "max": { + "#": 336 + } + }, + { + "x": 469.74405, + "y": 37.73574 + }, + { + "x": 578.59865, + "y": 68.77352 + }, + { + "x": 524.18537, + "y": 48.89708 + }, + [ + { + "#": 339 + }, + { + "#": 340 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,12,0,1", + "startCol": 9, + "endCol": 12, + "startRow": 0, + "endRow": 1 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 343 + }, + "angle": 0.00013, + "vertices": { + "#": 344 + }, + "position": { + "#": 349 + }, + "force": { + "#": 350 + }, + "torque": 0, + "positionImpulse": { + "#": 351 + }, + "constraintImpulse": { + "#": 352 + }, + "totalContacts": 0, + "speed": 2.90545, + "angularSpeed": 0.00013, + "velocity": { + "#": 353 + }, + "angularVelocity": 0.00048, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 354 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 355 + }, + "chamfer": null, + "bounds": { + "#": 357 + }, + "positionPrev": { + "#": 360 + }, + "anglePrev": -0.00039, + "axes": { + "#": 361 + }, + "area": 1378.04283, + "mass": 1.37804, + "inverseMass": 0.72567, + "inertia": 1458.97641, + "inverseInertia": 0.00069, + "parent": { + "#": 342 + }, + "sleepCounter": 0, + "region": { + "#": 364 + } + }, + [ + { + "#": 342 + } + ], + [ + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + } + ], + { + "x": 578.54223, + "y": 37.73212, + "index": 0, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 606.80462, + "y": 37.73571, + "index": 1, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 606.79843, + "y": 86.4946, + "index": 2, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 578.53604, + "y": 86.49102, + "index": 3, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 592.67033, + "y": 62.11336 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.06681, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01942, + "y": 2.90785 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 356 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 358 + }, + "max": { + "#": 359 + } + }, + { + "x": 578.52364, + "y": 37.73212 + }, + { + "x": 606.80462, + "y": 89.40003 + }, + { + "x": 592.69543, + "y": 59.20706 + }, + [ + { + "#": 362 + }, + { + "#": 363 + } + ], + { + "x": -0.00013, + "y": 1 + }, + { + "x": -1, + "y": -0.00013 + }, + { + "id": "12,12,0,1", + "startCol": 12, + "endCol": 12, + "startRow": 0, + "endRow": 1 + }, + { + "id": 13, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 366 + }, + "angle": -0.00007, + "vertices": { + "#": 367 + }, + "position": { + "#": 394 + }, + "force": { + "#": 395 + }, + "torque": 0, + "positionImpulse": { + "#": 396 + }, + "constraintImpulse": { + "#": 397 + }, + "totalContacts": 0, + "speed": 2.90905, + "angularSpeed": 0.00002, + "velocity": { + "#": 398 + }, + "angularVelocity": -0.00018, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 399 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 400 + }, + "chamfer": null, + "circleRadius": 38.39667, + "bounds": { + "#": 402 + }, + "positionPrev": { + "#": 405 + }, + "anglePrev": 0.00009, + "axes": { + "#": 406 + }, + "area": 4586.77827, + "mass": 4.58678, + "inverseMass": 0.21802, + "inertia": 13393.80286, + "inverseInertia": 0.00007, + "parent": { + "#": 365 + }, + "sleepCounter": 0, + "region": { + "#": 420 + } + }, + [ + { + "#": 365 + } + ], + [ + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + } + ], + { + "x": 682.95802, + "y": 80.75744, + "index": 0, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 680.74369, + "y": 89.7456, + "index": 1, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 676.4423, + "y": 97.94192, + "index": 2, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 670.30481, + "y": 104.87038, + "index": 3, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 662.6872, + "y": 110.12994, + "index": 4, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 654.03245, + "y": 113.41258, + "index": 5, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 644.84353, + "y": 114.52927, + "index": 6, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 635.65445, + "y": 113.41395, + "index": 7, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 626.9992, + "y": 110.13259, + "index": 8, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 619.38081, + "y": 104.87416, + "index": 9, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 613.2423, + "y": 97.94661, + "index": 10, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 608.93969, + "y": 89.75093, + "index": 11, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 606.72402, + "y": 80.76309, + "index": 12, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 606.72333, + "y": 71.5071, + "index": 13, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 608.93767, + "y": 62.51893, + "index": 14, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 613.23906, + "y": 54.32261, + "index": 15, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 619.37654, + "y": 47.39416, + "index": 16, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 626.99415, + "y": 42.13459, + "index": 17, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 635.64891, + "y": 38.85195, + "index": 18, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 644.83783, + "y": 37.73527, + "index": 19, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 654.02691, + "y": 38.85058, + "index": 20, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 662.68215, + "y": 42.13194, + "index": 21, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 670.30054, + "y": 47.39038, + "index": 22, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 676.43906, + "y": 54.31792, + "index": 23, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 680.74167, + "y": 62.5136, + "index": 24, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 682.95733, + "y": 71.50144, + "index": 25, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 644.84068, + "y": 76.13227 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.07132, + "y": 0.00055 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.03266, + "y": 2.90389 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 401 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 403 + }, + "max": { + "#": 404 + } + }, + { + "x": 606.70464, + "y": 37.73527 + }, + { + "x": 682.95802, + "y": 117.43825 + }, + { + "x": 644.87765, + "y": 73.22685 + }, + [ + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + } + ], + { + "x": -0.97097, + "y": -0.23921 + }, + { + "x": -0.88547, + "y": -0.46469 + }, + { + "x": -0.74854, + "y": -0.66309 + }, + { + "x": -0.56818, + "y": -0.82291 + }, + { + "x": -0.35464, + "y": -0.935 + }, + { + "x": -0.12064, + "y": -0.9927 + }, + { + "x": 0.12049, + "y": -0.99271 + }, + { + "x": 0.3545, + "y": -0.93506 + }, + { + "x": 0.56805, + "y": -0.82299 + }, + { + "x": 0.74844, + "y": -0.6632 + }, + { + "x": 0.8854, + "y": -0.46482 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": -0.00007 + }, + { + "id": "12,14,0,2", + "startCol": 12, + "endCol": 14, + "startRow": 0, + "endRow": 2 + }, + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 422 + }, + "angle": -0.00768, + "vertices": { + "#": 423 + }, + "position": { + "#": 428 + }, + "force": { + "#": 429 + }, + "torque": 0, + "positionImpulse": { + "#": 430 + }, + "constraintImpulse": { + "#": 431 + }, + "totalContacts": 0, + "speed": 2.77995, + "angularSpeed": 0.00447, + "velocity": { + "#": 432 + }, + "angularVelocity": -0.00726, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 433 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 434 + }, + "chamfer": null, + "bounds": { + "#": 436 + }, + "positionPrev": { + "#": 439 + }, + "anglePrev": 0.00001, + "axes": { + "#": 440 + }, + "area": 1977.44943, + "mass": 1.97745, + "inverseMass": 0.5057, + "inertia": 2674.50779, + "inverseInertia": 0.00037, + "parent": { + "#": 421 + }, + "sleepCounter": 0, + "region": { + "#": 443 + } + }, + [ + { + "#": 421 + } + ], + [ + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + } + ], + { + "x": 682.61004, + "y": 37.70414, + "index": 0, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 732.4295, + "y": 37.32147, + "index": 1, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 732.73436, + "y": 77.01144, + "index": 2, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 682.9149, + "y": 77.39411, + "index": 3, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 707.6722, + "y": 57.35779 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.05313, + "y": 0.00036 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.15716, + "y": 2.72753 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 435 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 437 + }, + "max": { + "#": 438 + } + }, + { + "x": 682.5103, + "y": 37.32147 + }, + { + "x": 732.73436, + "y": 80.17227 + }, + { + "x": 707.84041, + "y": 54.65283 + }, + [ + { + "#": 441 + }, + { + "#": 442 + } + ], + { + "x": 0.00768, + "y": 0.99997 + }, + { + "x": -0.99997, + "y": 0.00768 + }, + { + "id": "14,15,0,1", + "startCol": 14, + "endCol": 15, + "startRow": 0, + "endRow": 1 + }, + { + "id": 15, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 445 + }, + "angle": -0.01036, + "vertices": { + "#": 446 + }, + "position": { + "#": 451 + }, + "force": { + "#": 452 + }, + "torque": 0, + "positionImpulse": { + "#": 453 + }, + "constraintImpulse": { + "#": 454 + }, + "totalContacts": 0, + "speed": 2.47459, + "angularSpeed": 0.00503, + "velocity": { + "#": 455 + }, + "angularVelocity": -0.00771, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 456 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 457 + }, + "chamfer": null, + "bounds": { + "#": 459 + }, + "positionPrev": { + "#": 462 + }, + "anglePrev": -0.00252, + "axes": { + "#": 463 + }, + "area": 2209.188, + "mass": 2.20919, + "inverseMass": 0.45266, + "inertia": 3253.67442, + "inverseInertia": 0.00031, + "parent": { + "#": 444 + }, + "sleepCounter": 0, + "region": { + "#": 466 + } + }, + [ + { + "#": 444 + } + ], + [ + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + } + ], + { + "x": 779.82198, + "y": 83.70675, + "index": 0, + "body": { + "#": 444 + }, + "isInternal": false + }, + { + "x": 732.8225, + "y": 84.1939, + "index": 1, + "body": { + "#": 444 + }, + "isInternal": false + }, + { + "x": 732.33535, + "y": 37.19443, + "index": 2, + "body": { + "#": 444 + }, + "isInternal": false + }, + { + "x": 779.33482, + "y": 36.70727, + "index": 3, + "body": { + "#": 444 + }, + "isInternal": false + }, + { + "x": 756.07866, + "y": 60.45059 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.15224, + "y": 2.24208 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 458 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 460 + }, + "max": { + "#": 461 + } + }, + { + "x": 732.22812, + "y": 36.70727 + }, + { + "x": 779.82198, + "y": 86.66617 + }, + { + "x": 756.25071, + "y": 58.23647 + }, + [ + { + "#": 464 + }, + { + "#": 465 + } + ], + { + "x": -0.01036, + "y": -0.99995 + }, + { + "x": 0.99995, + "y": -0.01036 + }, + { + "id": "15,16,0,1", + "startCol": 15, + "endCol": 16, + "startRow": 0, + "endRow": 1 + }, + { + "id": 16, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 468 + }, + "angle": 0.00208, + "vertices": { + "#": 469 + }, + "position": { + "#": 496 + }, + "force": { + "#": 497 + }, + "torque": 0, + "positionImpulse": { + "#": 498 + }, + "constraintImpulse": { + "#": 499 + }, + "totalContacts": 0, + "speed": 2.88993, + "angularSpeed": 0.00017, + "velocity": { + "#": 500 + }, + "angularVelocity": 0.00017, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 501 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 502 + }, + "chamfer": null, + "circleRadius": 40.3634, + "bounds": { + "#": 504 + }, + "positionPrev": { + "#": 507 + }, + "anglePrev": 0.00191, + "axes": { + "#": 508 + }, + "area": 5068.59422, + "mass": 5.06859, + "inverseMass": 0.19729, + "inertia": 16355.48617, + "inverseInertia": 0.00006, + "parent": { + "#": 467 + }, + "sleepCounter": 0, + "region": { + "#": 522 + } + }, + [ + { + "#": 467 + } + ], + [ + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + } + ], + { + "x": 1203.94109, + "y": 160.53314, + "index": 0, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1201.59245, + "y": 169.97628, + "index": 1, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1197.05255, + "y": 178.58286, + "index": 2, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1190.58542, + "y": 185.85243, + "index": 3, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1182.56594, + "y": 191.36376, + "index": 4, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1173.46079, + "y": 194.79584, + "index": 5, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1163.79837, + "y": 195.94775, + "index": 6, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1154.14083, + "y": 194.75567, + "index": 7, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1145.05002, + "y": 191.28576, + "index": 8, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1137.05354, + "y": 185.74112, + "index": 9, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1130.61669, + "y": 178.44472, + "index": 10, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1126.11262, + "y": 169.81934, + "index": 11, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1123.80327, + "y": 160.36651, + "index": 12, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1123.8235, + "y": 150.63654, + "index": 13, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1126.17214, + "y": 141.1934, + "index": 14, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1130.71204, + "y": 132.58682, + "index": 15, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1137.17917, + "y": 125.31725, + "index": 16, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1145.19865, + "y": 119.80591, + "index": 17, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1154.30381, + "y": 116.37384, + "index": 18, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1163.96622, + "y": 115.22193, + "index": 19, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1173.62376, + "y": 116.41401, + "index": 20, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1182.71457, + "y": 119.88392, + "index": 21, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1190.71106, + "y": 125.42856, + "index": 22, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1197.1479, + "y": 132.72496, + "index": 23, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1201.65198, + "y": 141.35034, + "index": 24, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1203.96133, + "y": 150.80316, + "index": 25, + "body": { + "#": 467 + }, + "isInternal": false + }, + { + "x": 1163.8823, + "y": 155.58484 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 6.08019, + "y": 1.86906 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00126, + "y": 2.88993 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 503 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 505 + }, + "max": { + "#": 506 + } + }, + { + "x": 1123.802, + "y": 115.22193 + }, + { + "x": 1203.96133, + "y": 198.83768 + }, + { + "x": 1163.88356, + "y": 152.69491 + }, + [ + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + } + ], + { + "x": -0.97044, + "y": -0.24136 + }, + { + "x": -0.88449, + "y": -0.46656 + }, + { + "x": -0.74714, + "y": -0.66467 + }, + { + "x": -0.56639, + "y": -0.82414 + }, + { + "x": -0.35271, + "y": -0.93573 + }, + { + "x": -0.11838, + "y": -0.99297 + }, + { + "x": 0.12251, + "y": -0.99247 + }, + { + "x": 0.3566, + "y": -0.93426 + }, + { + "x": 0.56981, + "y": -0.82178 + }, + { + "x": 0.7499, + "y": -0.66155 + }, + { + "x": 0.88642, + "y": -0.46288 + }, + { + "x": 0.97143, + "y": -0.23732 + }, + { + "x": 1, + "y": 0.00208 + }, + { + "id": "23,24,2,4", + "startCol": 23, + "endCol": 24, + "startRow": 2, + "endRow": 4 + }, + { + "id": 17, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 524 + }, + "angle": -0.00013, + "vertices": { + "#": 525 + }, + "position": { + "#": 542 + }, + "force": { + "#": 543 + }, + "torque": 0, + "positionImpulse": { + "#": 544 + }, + "constraintImpulse": { + "#": 545 + }, + "totalContacts": 0, + "speed": 2.89981, + "angularSpeed": 0.00001, + "velocity": { + "#": 546 + }, + "angularVelocity": -0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 547 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 548 + }, + "bounds": { + "#": 550 + }, + "positionPrev": { + "#": 553 + }, + "anglePrev": -0.00012, + "axes": { + "#": 554 + }, + "area": 703.46214, + "mass": 0.70346, + "inverseMass": 1.42154, + "inertia": 321.35704, + "inverseInertia": 0.00311, + "parent": { + "#": 523 + }, + "sleepCounter": 0, + "region": { + "#": 563 + } + }, + [ + { + "#": 523 + } + ], + [ + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + } + ], + { + "x": 859.14303, + "y": 47.66779, + "index": 0, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 860.05122, + "y": 43.50243, + "index": 1, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 862.61184, + "y": 40.09389, + "index": 2, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 866.3595, + "y": 38.06166, + "index": 3, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 879.94169, + "y": 37.665, + "index": 4, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 884.10704, + "y": 38.57319, + "index": 5, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 887.51559, + "y": 41.13381, + "index": 6, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 889.54782, + "y": 44.88147, + "index": 7, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 889.94385, + "y": 53.78656, + "index": 8, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 889.03566, + "y": 57.95191, + "index": 9, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 886.47504, + "y": 61.36045, + "index": 10, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 882.72738, + "y": 63.39269, + "index": 11, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 869.14519, + "y": 63.78935, + "index": 12, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 864.97984, + "y": 62.88116, + "index": 13, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 861.57129, + "y": 60.32053, + "index": 14, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 859.53906, + "y": 56.57287, + "index": 15, + "body": { + "#": 523 + }, + "isInternal": false + }, + { + "x": 874.54344, + "y": 50.72717 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00843, + "y": 2.8998 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 549 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 551 + }, + "max": { + "#": 552 + } + }, + { + "x": 859.14303, + "y": 37.665 + }, + { + "x": 889.94385, + "y": 63.78935 + }, + { + "x": 874.55187, + "y": 47.82737 + }, + [ + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + } + ], + { + "x": 0.97705, + "y": 0.21303 + }, + { + "x": 0.79953, + "y": 0.60063 + }, + { + "x": 0.47669, + "y": 0.87907 + }, + { + "x": 0.02919, + "y": 0.99957 + }, + { + "x": -0.21303, + "y": 0.97705 + }, + { + "x": -0.60063, + "y": 0.79953 + }, + { + "x": -0.87907, + "y": 0.47669 + }, + { + "x": -0.99901, + "y": 0.04443 + }, + { + "id": "17,18,0,1", + "startCol": 17, + "endCol": 18, + "startRow": 0, + "endRow": 1 + }, + { + "id": 18, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 565 + }, + "angle": 0.00005, + "vertices": { + "#": 566 + }, + "position": { + "#": 571 + }, + "force": { + "#": 572 + }, + "torque": 0, + "positionImpulse": { + "#": 573 + }, + "constraintImpulse": { + "#": 574 + }, + "totalContacts": 0, + "speed": 2.88315, + "angularSpeed": 0.00001, + "velocity": { + "#": 575 + }, + "angularVelocity": 0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 576 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 577 + }, + "chamfer": null, + "bounds": { + "#": 579 + }, + "positionPrev": { + "#": 582 + }, + "anglePrev": 0.00005, + "axes": { + "#": 583 + }, + "area": 3272.29762, + "mass": 3.2723, + "inverseMass": 0.3056, + "inertia": 7138.62113, + "inverseInertia": 0.00014, + "parent": { + "#": 564 + }, + "sleepCounter": 0, + "region": { + "#": 586 + } + }, + [ + { + "#": 564 + } + ], + [ + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + } + ], + { + "x": 947.25887, + "y": 55.02417, + "index": 0, + "body": { + "#": 564 + }, + "isInternal": false + }, + { + "x": 890.05487, + "y": 55.02103, + "index": 1, + "body": { + "#": 564 + }, + "isInternal": false + }, + { + "x": 890.05801, + "y": -2.18297, + "index": 2, + "body": { + "#": 564 + }, + "isInternal": false + }, + { + "x": 947.26201, + "y": -2.17983, + "index": 3, + "body": { + "#": 564 + }, + "isInternal": false + }, + { + "x": 918.65844, + "y": 26.4206 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00363, + "y": 2.88315 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 578 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 580 + }, + "max": { + "#": 581 + } + }, + { + "x": 890.05487, + "y": -2.18297 + }, + { + "x": 947.26201, + "y": 55.02417 + }, + { + "x": 918.65481, + "y": 23.53745 + }, + [ + { + "#": 584 + }, + { + "#": 585 + } + ], + { + "x": 0.00005, + "y": -1 + }, + { + "x": 1, + "y": 0.00005 + }, + { + "id": "18,19,-1,1", + "startCol": 18, + "endCol": 19, + "startRow": -1, + "endRow": 1 + }, + { + "id": 19, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 588 + }, + "angle": 0.0007, + "vertices": { + "#": 589 + }, + "position": { + "#": 594 + }, + "force": { + "#": 595 + }, + "torque": 0, + "positionImpulse": { + "#": 596 + }, + "constraintImpulse": { + "#": 597 + }, + "totalContacts": 0, + "speed": 2.89931, + "angularSpeed": 0.00007, + "velocity": { + "#": 598 + }, + "angularVelocity": 0.00007, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 599 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 600 + }, + "chamfer": null, + "bounds": { + "#": 602 + }, + "positionPrev": { + "#": 605 + }, + "anglePrev": 0.00063, + "axes": { + "#": 606 + }, + "area": 2280.87211, + "mass": 2.28087, + "inverseMass": 0.43843, + "inertia": 5951.84099, + "inverseInertia": 0.00017, + "parent": { + "#": 587 + }, + "sleepCounter": 0, + "region": { + "#": 609 + } + }, + [ + { + "#": 587 + } + ], + [ + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + } + ], + { + "x": 998.22952, + "y": 25.10156, + "index": 0, + "body": { + "#": 587 + }, + "isInternal": false + }, + { + "x": 1082.46218, + "y": 25.16077, + "index": 1, + "body": { + "#": 587 + }, + "isInternal": false + }, + { + "x": 1082.44315, + "y": 52.23899, + "index": 2, + "body": { + "#": 587 + }, + "isInternal": false + }, + { + "x": 998.21049, + "y": 52.17978, + "index": 3, + "body": { + "#": 587 + }, + "isInternal": false + }, + { + "x": 1040.33634, + "y": 38.67027 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00563, + "y": 2.8993 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 601 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 603 + }, + "max": { + "#": 604 + } + }, + { + "x": 998.21049, + "y": 25.10156 + }, + { + "x": 1082.46218, + "y": 52.23899 + }, + { + "x": 1040.3307, + "y": 35.77097 + }, + [ + { + "#": 607 + }, + { + "#": 608 + } + ], + { + "x": -0.0007, + "y": 1 + }, + { + "x": -1, + "y": -0.0007 + }, + { + "id": "20,22,0,1", + "startCol": 20, + "endCol": 22, + "startRow": 0, + "endRow": 1 + }, + { + "id": 20, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 611 + }, + "angle": 0.01241, + "vertices": { + "#": 612 + }, + "position": { + "#": 639 + }, + "force": { + "#": 640 + }, + "torque": 0, + "positionImpulse": { + "#": 641 + }, + "constraintImpulse": { + "#": 642 + }, + "totalContacts": 0, + "speed": 2.78063, + "angularSpeed": 0.00128, + "velocity": { + "#": 643 + }, + "angularVelocity": 0.00128, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 644 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 645 + }, + "chamfer": null, + "circleRadius": 49.48881, + "bounds": { + "#": 647 + }, + "positionPrev": { + "#": 650 + }, + "anglePrev": 0.01114, + "axes": { + "#": 651 + }, + "area": 7619.53881, + "mass": 7.61954, + "inverseMass": 0.13124, + "inertia": 36961.17597, + "inverseInertia": 0.00003, + "parent": { + "#": 610 + }, + "sleepCounter": 0, + "region": { + "#": 665 + } + }, + [ + { + "#": 610 + } + ], + [ + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + } + ], + { + "x": 119.15216, + "y": 174.54686, + "index": 0, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 116.15359, + "y": 186.09453, + "index": 1, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 110.47789, + "y": 196.58889, + "index": 2, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 102.45666, + "y": 205.42001, + "index": 3, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 92.5553, + "y": 212.07462, + "index": 4, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 81.34764, + "y": 216.16682, + "index": 5, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 69.4877, + "y": 217.4577, + "index": 6, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 57.66346, + "y": 215.87281, + "index": 7, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 46.56084, + "y": 211.50367, + "index": 8, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 36.82772, + "y": 204.60532, + "index": 9, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 29.02817, + "y": 195.57781, + "index": 10, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 23.61472, + "y": 184.9458, + "index": 11, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 20.90373, + "y": 173.32726, + "index": 12, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 21.05181, + "y": 161.39817, + "index": 13, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 24.05038, + "y": 149.8505, + "index": 14, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 29.72608, + "y": 139.35615, + "index": 15, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 37.74731, + "y": 130.52503, + "index": 16, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 47.64867, + "y": 123.87042, + "index": 17, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 58.85633, + "y": 119.77822, + "index": 18, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 70.71627, + "y": 118.48733, + "index": 19, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 82.54051, + "y": 120.07222, + "index": 20, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 93.64313, + "y": 124.44137, + "index": 21, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 103.37625, + "y": 131.33971, + "index": 22, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 111.1758, + "y": 140.36722, + "index": 23, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 116.58925, + "y": 150.99923, + "index": 24, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 119.30024, + "y": 162.61778, + "index": 25, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 70.10198, + "y": 167.97252 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.01718, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00623, + "y": 2.78062 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 646 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 648 + }, + "max": { + "#": 649 + } + }, + { + "x": 20.90373, + "y": 118.48733 + }, + { + "x": 119.30647, + "y": 220.23833 + }, + { + "x": 70.09575, + "y": 165.19189 + }, + [ + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + } + ], + { + "x": -0.9679, + "y": -0.25133 + }, + { + "x": -0.8796, + "y": -0.47572 + }, + { + "x": -0.74023, + "y": -0.67235 + }, + { + "x": -0.55781, + "y": -0.82997 + }, + { + "x": -0.34298, + "y": -0.93934 + }, + { + "x": -0.10821, + "y": -0.99413 + }, + { + "x": 0.13285, + "y": -0.99114 + }, + { + "x": 0.36619, + "y": -0.93054 + }, + { + "x": 0.57824, + "y": -0.81586 + }, + { + "x": 0.7567, + "y": -0.65377 + }, + { + "x": 0.89114, + "y": -0.45374 + }, + { + "x": 0.97384, + "y": -0.22723 + }, + { + "x": 0.99992, + "y": 0.01241 + }, + { + "id": "0,2,2,4", + "startCol": 0, + "endCol": 2, + "startRow": 2, + "endRow": 4 + }, + { + "id": 21, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 667 + }, + "angle": 0, + "vertices": { + "#": 668 + }, + "position": { + "#": 685 + }, + "force": { + "#": 686 + }, + "torque": 0, + "positionImpulse": { + "#": 687 + }, + "constraintImpulse": { + "#": 688 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 689 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 690 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 691 + }, + "bounds": { + "#": 693 + }, + "positionPrev": { + "#": 696 + }, + "anglePrev": 0, + "axes": { + "#": 697 + }, + "area": 1222.70251, + "mass": 1.2227, + "inverseMass": 0.81786, + "inertia": 1019.60659, + "inverseInertia": 0.00098, + "parent": { + "#": 666 + }, + "sleepCounter": 0, + "region": { + "#": 706 + } + }, + [ + { + "#": 666 + } + ], + [ + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + } + ], + { + "x": 118.256, + "y": 129.7164, + "index": 0, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 119.16475, + "y": 125.55117, + "index": 1, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 121.72583, + "y": 122.14297, + "index": 2, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 125.47376, + "y": 120.11123, + "index": 3, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 139.19221, + "y": 119.7164, + "index": 4, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 143.35744, + "y": 120.62515, + "index": 5, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 146.76564, + "y": 123.18623, + "index": 6, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 148.79738, + "y": 126.93416, + "index": 7, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 149.19221, + "y": 152.72576, + "index": 8, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 148.28347, + "y": 156.89099, + "index": 9, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 145.72239, + "y": 160.29919, + "index": 10, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 141.97445, + "y": 162.33093, + "index": 11, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 128.256, + "y": 162.72576, + "index": 12, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 124.09077, + "y": 161.81702, + "index": 13, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 120.68257, + "y": 159.25594, + "index": 14, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 118.65084, + "y": 155.508, + "index": 15, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 133.72411, + "y": 141.22108 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 692 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 694 + }, + "max": { + "#": 695 + } + }, + { + "x": 118.256, + "y": 119.7164 + }, + { + "x": 149.19221, + "y": 162.72576 + }, + { + "x": 133.72411, + "y": 138.31381 + }, + [ + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + } + ], + { + "x": 0.97702, + "y": 0.21316 + }, + { + "x": 0.79944, + "y": 0.60074 + }, + { + "x": 0.47657, + "y": 0.87913 + }, + { + "x": 0.02877, + "y": 0.99959 + }, + { + "x": -0.21316, + "y": 0.97702 + }, + { + "x": -0.60074, + "y": 0.79944 + }, + { + "x": -0.87913, + "y": 0.47657 + }, + { + "x": -0.99988, + "y": 0.01531 + }, + { + "id": "2,3,2,3", + "startCol": 2, + "endCol": 3, + "startRow": 2, + "endRow": 3 + }, + { + "id": 22, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 708 + }, + "angle": 0, + "vertices": { + "#": 709 + }, + "position": { + "#": 714 + }, + "force": { + "#": 715 + }, + "torque": 0, + "positionImpulse": { + "#": 716 + }, + "constraintImpulse": { + "#": 717 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 718 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 719 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 720 + }, + "chamfer": null, + "bounds": { + "#": 722 + }, + "positionPrev": { + "#": 725 + }, + "anglePrev": 0, + "axes": { + "#": 726 + }, + "area": 1642.08545, + "mass": 1.64209, + "inverseMass": 0.60898, + "inertia": 1814.46959, + "inverseInertia": 0.00055, + "parent": { + "#": 707 + }, + "sleepCounter": 0, + "region": { + "#": 729 + } + }, + [ + { + "#": 707 + } + ], + [ + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + } + ], + { + "x": 149.19221, + "y": 119.7164, + "index": 0, + "body": { + "#": 707 + }, + "isInternal": false + }, + { + "x": 187.03633, + "y": 119.7164, + "index": 1, + "body": { + "#": 707 + }, + "isInternal": false + }, + { + "x": 187.03633, + "y": 163.10717, + "index": 2, + "body": { + "#": 707 + }, + "isInternal": false + }, + { + "x": 149.19221, + "y": 163.10717, + "index": 3, + "body": { + "#": 707 + }, + "isInternal": false + }, + { + "x": 168.11427, + "y": 141.41179 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 721 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 723 + }, + "max": { + "#": 724 + } + }, + { + "x": 149.19221, + "y": 119.7164 + }, + { + "x": 187.03633, + "y": 163.10717 + }, + { + "x": 168.11427, + "y": 138.50451 + }, + [ + { + "#": 727 + }, + { + "#": 728 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,3,2,3", + "startCol": 3, + "endCol": 3, + "startRow": 2, + "endRow": 3 + }, + { + "id": 23, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 731 + }, + "angle": 0, + "vertices": { + "#": 732 + }, + "position": { + "#": 737 + }, + "force": { + "#": 738 + }, + "torque": 0, + "positionImpulse": { + "#": 739 + }, + "constraintImpulse": { + "#": 740 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 741 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 742 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 743 + }, + "chamfer": null, + "bounds": { + "#": 745 + }, + "positionPrev": { + "#": 748 + }, + "anglePrev": 0, + "axes": { + "#": 749 + }, + "area": 3794.8064, + "mass": 3.79481, + "inverseMass": 0.26352, + "inertia": 9600.37043, + "inverseInertia": 0.0001, + "parent": { + "#": 730 + }, + "sleepCounter": 0, + "region": { + "#": 752 + } + }, + [ + { + "#": 730 + } + ], + [ + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + } + ], + { + "x": 248.63833, + "y": 181.3184, + "index": 0, + "body": { + "#": 730 + }, + "isInternal": false + }, + { + "x": 187.03633, + "y": 181.3184, + "index": 1, + "body": { + "#": 730 + }, + "isInternal": false + }, + { + "x": 187.03633, + "y": 119.7164, + "index": 2, + "body": { + "#": 730 + }, + "isInternal": false + }, + { + "x": 248.63833, + "y": 119.7164, + "index": 3, + "body": { + "#": 730 + }, + "isInternal": false + }, + { + "x": 217.83733, + "y": 150.5174 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 744 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 746 + }, + "max": { + "#": 747 + } + }, + { + "x": 187.03633, + "y": 119.7164 + }, + { + "x": 248.63833, + "y": 181.3184 + }, + { + "x": 217.83733, + "y": 147.61013 + }, + [ + { + "#": 750 + }, + { + "#": 751 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,5,2,3", + "startCol": 3, + "endCol": 5, + "startRow": 2, + "endRow": 3 + }, + { + "id": 24, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 754 + }, + "angle": 0, + "vertices": { + "#": 755 + }, + "position": { + "#": 760 + }, + "force": { + "#": 761 + }, + "torque": 0, + "positionImpulse": { + "#": 762 + }, + "constraintImpulse": { + "#": 763 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 764 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 765 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 766 + }, + "chamfer": null, + "bounds": { + "#": 768 + }, + "positionPrev": { + "#": 771 + }, + "anglePrev": 0, + "axes": { + "#": 772 + }, + "area": 1826.87845, + "mass": 1.82688, + "inverseMass": 0.54738, + "inertia": 2226.31467, + "inverseInertia": 0.00045, + "parent": { + "#": 753 + }, + "sleepCounter": 0, + "region": { + "#": 775 + } + }, + [ + { + "#": 753 + } + ], + [ + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + } + ], + { + "x": 248.63833, + "y": 119.7164, + "index": 0, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 292.12416, + "y": 119.7164, + "index": 1, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 292.12416, + "y": 161.72729, + "index": 2, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 248.63833, + "y": 161.72729, + "index": 3, + "body": { + "#": 753 + }, + "isInternal": false + }, + { + "x": 270.38124, + "y": 140.72184 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 767 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 769 + }, + "max": { + "#": 770 + } + }, + { + "x": 248.63833, + "y": 119.7164 + }, + { + "x": 292.12416, + "y": 161.72729 + }, + { + "x": 270.38124, + "y": 137.81457 + }, + [ + { + "#": 773 + }, + { + "#": 774 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,2,3", + "startCol": 5, + "endCol": 6, + "startRow": 2, + "endRow": 3 + }, + { + "id": 25, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 777 + }, + "angle": 0.00005, + "vertices": { + "#": 778 + }, + "position": { + "#": 783 + }, + "force": { + "#": 784 + }, + "torque": 0, + "positionImpulse": { + "#": 785 + }, + "constraintImpulse": { + "#": 786 + }, + "totalContacts": 0, + "speed": 2.91199, + "angularSpeed": 0.00003, + "velocity": { + "#": 787 + }, + "angularVelocity": 0.00005, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 788 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 789 + }, + "chamfer": null, + "bounds": { + "#": 791 + }, + "positionPrev": { + "#": 794 + }, + "anglePrev": 0, + "axes": { + "#": 795 + }, + "area": 3215.05684, + "mass": 3.21506, + "inverseMass": 0.31104, + "inertia": 15932.1154, + "inverseInertia": 0.00006, + "parent": { + "#": 776 + }, + "sleepCounter": 0, + "region": { + "#": 798 + } + }, + [ + { + "#": 776 + } + ], + [ + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + } + ], + { + "x": 292.17107, + "y": 119.71535, + "index": 0, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 411.06236, + "y": 119.72079, + "index": 1, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 411.06112, + "y": 146.76277, + "index": 2, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 292.16983, + "y": 146.75734, + "index": 3, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 351.61609, + "y": 133.23906 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00622, + "y": 0.00363 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.03035, + "y": 2.91743 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 790 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 792 + }, + "max": { + "#": 793 + } + }, + { + "x": 292.16983, + "y": 119.71535 + }, + { + "x": 411.07671, + "y": 149.67473 + }, + { + "x": 351.58524, + "y": 130.32151 + }, + [ + { + "#": 796 + }, + { + "#": 797 + } + ], + { + "x": -0.00005, + "y": 1 + }, + { + "x": -1, + "y": -0.00005 + }, + { + "id": "6,8,2,3", + "startCol": 6, + "endCol": 8, + "startRow": 2, + "endRow": 3 + }, + { + "id": 26, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 800 + }, + "angle": -0.00005, + "vertices": { + "#": 801 + }, + "position": { + "#": 806 + }, + "force": { + "#": 807 + }, + "torque": 0, + "positionImpulse": { + "#": 808 + }, + "constraintImpulse": { + "#": 809 + }, + "totalContacts": 0, + "speed": 2.91154, + "angularSpeed": 0.00005, + "velocity": { + "#": 810 + }, + "angularVelocity": -0.0001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 811 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 812 + }, + "chamfer": null, + "bounds": { + "#": 814 + }, + "positionPrev": { + "#": 817 + }, + "anglePrev": 0.00004, + "axes": { + "#": 818 + }, + "area": 2527.17084, + "mass": 2.52717, + "inverseMass": 0.3957, + "inertia": 8473.14437, + "inverseInertia": 0.00012, + "parent": { + "#": 799 + }, + "sleepCounter": 0, + "region": { + "#": 821 + } + }, + [ + { + "#": 799 + } + ], + [ + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + }, + { + "#": 805 + } + ], + { + "x": 411.01235, + "y": 119.72315, + "index": 0, + "body": { + "#": 799 + }, + "isInternal": false + }, + { + "x": 507.84929, + "y": 119.71812, + "index": 1, + "body": { + "#": 799 + }, + "isInternal": false + }, + { + "x": 507.85064, + "y": 145.8153, + "index": 2, + "body": { + "#": 799 + }, + "isInternal": false + }, + { + "x": 411.01371, + "y": 145.82033, + "index": 3, + "body": { + "#": 799 + }, + "isInternal": false + }, + { + "x": 459.4315, + "y": 132.76922 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00703, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.03157, + "y": 2.9163 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 813 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 815 + }, + "max": { + "#": 816 + } + }, + { + "x": 411.01235, + "y": 119.71812 + }, + { + "x": 507.865, + "y": 148.73184 + }, + { + "x": 459.40057, + "y": 129.85307 + }, + [ + { + "#": 819 + }, + { + "#": 820 + } + ], + { + "x": 0.00005, + "y": 1 + }, + { + "x": -1, + "y": 0.00005 + }, + { + "id": "8,10,2,3", + "startCol": 8, + "endCol": 10, + "startRow": 2, + "endRow": 3 + }, + { + "id": 27, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 823 + }, + "angle": 0, + "vertices": { + "#": 824 + }, + "position": { + "#": 832 + }, + "force": { + "#": 833 + }, + "torque": 0, + "positionImpulse": { + "#": 834 + }, + "constraintImpulse": { + "#": 835 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 836 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 837 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 838 + }, + "chamfer": null, + "bounds": { + "#": 840 + }, + "positionPrev": { + "#": 843 + }, + "anglePrev": 0, + "axes": { + "#": 844 + }, + "area": 2948.7698, + "mass": 2.94877, + "inverseMass": 0.33912, + "inertia": 5557.61764, + "inverseInertia": 0.00018, + "parent": { + "#": 822 + }, + "sleepCounter": 0, + "region": { + "#": 852 + } + }, + [ + { + "#": 822 + } + ], + [ + { + "#": 825 + }, + { + "#": 826 + }, + { + "#": 827 + }, + { + "#": 828 + }, + { + "#": 829 + }, + { + "#": 830 + }, + { + "#": 831 + } + ], + { + "x": 568.6298, + "y": 165.9634, + "index": 0, + "body": { + "#": 822 + }, + "isInternal": false + }, + { + "x": 546.3588, + "y": 183.7244, + "index": 1, + "body": { + "#": 822 + }, + "isInternal": false + }, + { + "x": 518.5868, + "y": 177.3854, + "index": 2, + "body": { + "#": 822 + }, + "isInternal": false + }, + { + "x": 506.2268, + "y": 151.7204, + "index": 3, + "body": { + "#": 822 + }, + "isInternal": false + }, + { + "x": 518.5868, + "y": 126.0554, + "index": 4, + "body": { + "#": 822 + }, + "isInternal": false + }, + { + "x": 546.3588, + "y": 119.7164, + "index": 5, + "body": { + "#": 822 + }, + "isInternal": false + }, + { + "x": 568.6298, + "y": 137.4774, + "index": 6, + "body": { + "#": 822 + }, + "isInternal": false + }, + { + "x": 539.05388, + "y": 151.7204 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 839 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 841 + }, + "max": { + "#": 842 + } + }, + { + "x": 506.2268, + "y": 119.7164 + }, + { + "x": 568.6298, + "y": 183.7244 + }, + { + "x": 539.05388, + "y": 148.81313 + }, + [ + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + } + ], + { + "x": 0.6235, + "y": 0.78182 + }, + { + "x": -0.22253, + "y": 0.97493 + }, + { + "x": -0.90096, + "y": 0.43389 + }, + { + "x": -0.90096, + "y": -0.43389 + }, + { + "x": -0.22253, + "y": -0.97493 + }, + { + "x": 0.6235, + "y": -0.78182 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,2,3", + "startCol": 10, + "endCol": 11, + "startRow": 2, + "endRow": 3 + }, + { + "id": 28, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 854 + }, + "angle": 0, + "vertices": { + "#": 855 + }, + "position": { + "#": 860 + }, + "force": { + "#": 861 + }, + "torque": 0, + "positionImpulse": { + "#": 862 + }, + "constraintImpulse": { + "#": 863 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 864 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 865 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 866 + }, + "chamfer": null, + "bounds": { + "#": 868 + }, + "positionPrev": { + "#": 871 + }, + "anglePrev": 0, + "axes": { + "#": 872 + }, + "area": 1650.22403, + "mass": 1.65022, + "inverseMass": 0.60598, + "inertia": 1883.13769, + "inverseInertia": 0.00053, + "parent": { + "#": 853 + }, + "sleepCounter": 0, + "region": { + "#": 875 + } + }, + [ + { + "#": 853 + } + ], + [ + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + } + ], + { + "x": 568.6298, + "y": 119.7164, + "index": 0, + "body": { + "#": 853 + }, + "isInternal": false + }, + { + "x": 604.08473, + "y": 119.7164, + "index": 1, + "body": { + "#": 853 + }, + "isInternal": false + }, + { + "x": 604.08473, + "y": 166.26068, + "index": 2, + "body": { + "#": 853 + }, + "isInternal": false + }, + { + "x": 568.6298, + "y": 166.26068, + "index": 3, + "body": { + "#": 853 + }, + "isInternal": false + }, + { + "x": 586.35727, + "y": 142.98854 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 867 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 869 + }, + "max": { + "#": 870 + } + }, + { + "x": 568.6298, + "y": 119.7164 + }, + { + "x": 604.08473, + "y": 166.26068 + }, + { + "x": 586.35727, + "y": 140.08127 + }, + [ + { + "#": 873 + }, + { + "#": 874 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,2,3", + "startCol": 11, + "endCol": 12, + "startRow": 2, + "endRow": 3 + }, + { + "id": 29, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 877 + }, + "angle": 0, + "vertices": { + "#": 878 + }, + "position": { + "#": 895 + }, + "force": { + "#": 896 + }, + "torque": 0, + "positionImpulse": { + "#": 897 + }, + "constraintImpulse": { + "#": 898 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 899 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 900 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 901 + }, + "bounds": { + "#": 903 + }, + "positionPrev": { + "#": 906 + }, + "anglePrev": 0, + "axes": { + "#": 907 + }, + "area": 985.70281, + "mass": 0.9857, + "inverseMass": 1.0145, + "inertia": 694.39546, + "inverseInertia": 0.00144, + "parent": { + "#": 876 + }, + "sleepCounter": 0, + "region": { + "#": 916 + } + }, + [ + { + "#": 876 + } + ], + [ + { + "#": 879 + }, + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + }, + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + }, + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + }, + { + "#": 894 + } + ], + { + "x": 604.08473, + "y": 129.7164, + "index": 0, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 604.99348, + "y": 125.55117, + "index": 1, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 607.55456, + "y": 122.14297, + "index": 2, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 611.30249, + "y": 120.11123, + "index": 3, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 635.81098, + "y": 119.7164, + "index": 4, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 639.97621, + "y": 120.62515, + "index": 5, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 643.38441, + "y": 123.18623, + "index": 6, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 645.41614, + "y": 126.93416, + "index": 7, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 645.81098, + "y": 135.86663, + "index": 8, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 644.90223, + "y": 140.03185, + "index": 9, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 642.34115, + "y": 143.44006, + "index": 10, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 638.59322, + "y": 145.47179, + "index": 11, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 614.08473, + "y": 145.86663, + "index": 12, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 609.9195, + "y": 144.95788, + "index": 13, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 606.5113, + "y": 142.3968, + "index": 14, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 604.47957, + "y": 138.64886, + "index": 15, + "body": { + "#": 876 + }, + "isInternal": false + }, + { + "x": 624.94786, + "y": 132.79151 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 902 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 904 + }, + "max": { + "#": 905 + } + }, + { + "x": 604.08473, + "y": 119.7164 + }, + { + "x": 645.81098, + "y": 145.86663 + }, + { + "x": 624.94786, + "y": 129.88424 + }, + [ + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + }, + { + "#": 915 + } + ], + { + "x": 0.97702, + "y": 0.21316 + }, + { + "x": 0.79944, + "y": 0.60074 + }, + { + "x": 0.47657, + "y": 0.87913 + }, + { + "x": 0.01611, + "y": 0.99987 + }, + { + "x": -0.21316, + "y": 0.97702 + }, + { + "x": -0.60074, + "y": 0.79944 + }, + { + "x": -0.87913, + "y": 0.47657 + }, + { + "x": -0.99902, + "y": 0.04416 + }, + { + "id": "12,13,2,3", + "startCol": 12, + "endCol": 13, + "startRow": 2, + "endRow": 3 + }, + { + "id": 30, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 918 + }, + "angle": -0.00023, + "vertices": { + "#": 919 + }, + "position": { + "#": 940 + }, + "force": { + "#": 941 + }, + "torque": 0, + "positionImpulse": { + "#": 942 + }, + "constraintImpulse": { + "#": 943 + }, + "totalContacts": 0, + "speed": 2.90404, + "angularSpeed": 0.00001, + "velocity": { + "#": 944 + }, + "angularVelocity": 0.0001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 945 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 946 + }, + "bounds": { + "#": 948 + }, + "positionPrev": { + "#": 951 + }, + "anglePrev": -0.00035, + "axes": { + "#": 952 + }, + "area": 4952.79851, + "mass": 4.9528, + "inverseMass": 0.20191, + "inertia": 15818.4694, + "inverseInertia": 0.00006, + "parent": { + "#": 917 + }, + "sleepCounter": 0, + "region": { + "#": 973 + } + }, + [ + { + "#": 917 + } + ], + [ + { + "#": 920 + }, + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + }, + { + "#": 924 + }, + { + "#": 925 + }, + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + }, + { + "#": 932 + }, + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + } + ], + { + "x": 696.72839, + "y": 214.03449, + "index": 0, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 696.14433, + "y": 217.40429, + "index": 1, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 694.45892, + "y": 220.3802, + "index": 2, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 691.86929, + "y": 222.61415, + "index": 3, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 652.20691, + "y": 235.77777, + "index": 4, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 648.82156, + "y": 236.26363, + "index": 5, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 645.47047, + "y": 235.58032, + "index": 6, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 642.54562, + "y": 233.80777, + "index": 7, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 617.76945, + "y": 200.15398, + "index": 8, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 616.26123, + "y": 197.08443, + "index": 9, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 615.87555, + "y": 193.68616, + "index": 10, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 616.65755, + "y": 190.35669, + "index": 11, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 641.00841, + "y": 156.39386, + "index": 12, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 643.46166, + "y": 154.01095, + "index": 13, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 646.57439, + "y": 152.59406, + "index": 14, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 649.98253, + "y": 152.30893, + "index": 15, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 689.80737, + "y": 164.97256, + "index": 16, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 692.83174, + "y": 166.56937, + "index": 17, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 695.14117, + "y": 169.09191, + "index": 18, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 696.46553, + "y": 172.24512, + "index": 19, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 659.50401, + "y": 194.26653 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.18836, + "y": 0.05069 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.02929, + "y": 2.89487 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 947 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 949 + }, + "max": { + "#": 950 + } + }, + { + "x": 615.85018, + "y": 152.30893 + }, + { + "x": 696.72839, + "y": 239.16756 + }, + { + "x": 659.53441, + "y": 191.37326 + }, + [ + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + }, + { + "#": 959 + }, + { + "#": 960 + }, + { + "#": 961 + }, + { + "#": 962 + }, + { + "#": 963 + }, + { + "#": 964 + }, + { + "#": 965 + }, + { + "#": 966 + }, + { + "#": 967 + }, + { + "#": 968 + }, + { + "#": 969 + }, + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + } + ], + { + "x": 0.98531, + "y": 0.17078 + }, + { + "x": 0.87014, + "y": 0.49281 + }, + { + "x": 0.65319, + "y": 0.75719 + }, + { + "x": 0.315, + "y": 0.94909 + }, + { + "x": 0.14206, + "y": 0.98986 + }, + { + "x": -0.19979, + "y": 0.97984 + }, + { + "x": -0.51828, + "y": 0.85521 + }, + { + "x": -0.8053, + "y": 0.59287 + }, + { + "x": -0.89751, + "y": 0.44099 + }, + { + "x": -0.99362, + "y": 0.11277 + }, + { + "x": -0.97351, + "y": -0.22865 + }, + { + "x": -0.81269, + "y": -0.58269 + }, + { + "x": -0.69675, + "y": -0.71732 + }, + { + "x": -0.41429, + "y": -0.91015 + }, + { + "x": -0.08337, + "y": -0.99652 + }, + { + "x": 0.30303, + "y": -0.95298 + }, + { + "x": 0.4669, + "y": -0.88431 + }, + { + "x": 0.73758, + "y": -0.67526 + }, + { + "x": 0.92198, + "y": -0.38723 + }, + { + "x": 0.99998, + "y": -0.00629 + }, + { + "id": "12,14,3,4", + "startCol": 12, + "endCol": 14, + "startRow": 3, + "endRow": 4 + }, + { + "id": 31, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 975 + }, + "angle": -0.02397, + "vertices": { + "#": 976 + }, + "position": { + "#": 981 + }, + "force": { + "#": 982 + }, + "torque": 0, + "positionImpulse": { + "#": 983 + }, + "constraintImpulse": { + "#": 984 + }, + "totalContacts": 0, + "speed": 2.86002, + "angularSpeed": 0.00268, + "velocity": { + "#": 985 + }, + "angularVelocity": -0.00268, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 986 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 987 + }, + "chamfer": null, + "bounds": { + "#": 989 + }, + "positionPrev": { + "#": 992 + }, + "anglePrev": -0.02129, + "axes": { + "#": 993 + }, + "area": 1624.41916, + "mass": 1.62442, + "inverseMass": 0.6156, + "inertia": 1869.332, + "inverseInertia": 0.00053, + "parent": { + "#": 974 + }, + "sleepCounter": 0, + "region": { + "#": 996 + } + }, + [ + { + "#": 974 + } + ], + [ + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + }, + { + "#": 980 + } + ], + { + "x": 671.77976, + "y": 106.72466, + "index": 0, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 719.82836, + "y": 105.57249, + "index": 1, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 720.63858, + "y": 139.36089, + "index": 2, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 672.58997, + "y": 140.51306, + "index": 3, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 696.20917, + "y": 123.04278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.04314, + "y": 2.85969 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 988 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 990 + }, + "max": { + "#": 991 + } + }, + { + "x": 671.77976, + "y": 105.57249 + }, + { + "x": 720.63858, + "y": 140.51306 + }, + { + "x": 696.25231, + "y": 120.18308 + }, + [ + { + "#": 994 + }, + { + "#": 995 + } + ], + { + "x": 0.02397, + "y": 0.99971 + }, + { + "x": -0.99971, + "y": 0.02397 + }, + { + "id": "13,15,2,2", + "startCol": 13, + "endCol": 15, + "startRow": 2, + "endRow": 2 + }, + { + "id": 32, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 998 + }, + "angle": -0.02107, + "vertices": { + "#": 999 + }, + "position": { + "#": 1004 + }, + "force": { + "#": 1005 + }, + "torque": 0, + "positionImpulse": { + "#": 1006 + }, + "constraintImpulse": { + "#": 1007 + }, + "totalContacts": 0, + "speed": 2.67128, + "angularSpeed": 0.00182, + "velocity": { + "#": 1008 + }, + "angularVelocity": -0.00182, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1009 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1010 + }, + "chamfer": null, + "bounds": { + "#": 1012 + }, + "positionPrev": { + "#": 1015 + }, + "anglePrev": -0.01925, + "axes": { + "#": 1016 + }, + "area": 1339.85282, + "mass": 1.33985, + "inverseMass": 0.74635, + "inertia": 1196.80371, + "inverseInertia": 0.00084, + "parent": { + "#": 997 + }, + "sleepCounter": 0, + "region": { + "#": 1019 + } + }, + [ + { + "#": 997 + } + ], + [ + { + "#": 1000 + }, + { + "#": 1001 + }, + { + "#": 1002 + }, + { + "#": 1003 + } + ], + { + "x": 772.26976, + "y": 153.40286, + "index": 0, + "body": { + "#": 997 + }, + "isInternal": false + }, + { + "x": 735.67389, + "y": 154.17403, + "index": 1, + "body": { + "#": 997 + }, + "isInternal": false + }, + { + "x": 734.90272, + "y": 117.57815, + "index": 2, + "body": { + "#": 997 + }, + "isInternal": false + }, + { + "x": 771.49859, + "y": 116.80698, + "index": 3, + "body": { + "#": 997 + }, + "isInternal": false + }, + { + "x": 753.58624, + "y": 135.4905 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.02637, + "y": 2.67115 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1011 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1013 + }, + "max": { + "#": 1014 + } + }, + { + "x": 734.90272, + "y": 116.80698 + }, + { + "x": 772.26976, + "y": 154.17403 + }, + { + "x": 753.61261, + "y": 132.81935 + }, + [ + { + "#": 1017 + }, + { + "#": 1018 + } + ], + { + "x": -0.02107, + "y": -0.99978 + }, + { + "x": 0.99978, + "y": -0.02107 + }, + { + "id": "15,16,2,3", + "startCol": 15, + "endCol": 16, + "startRow": 2, + "endRow": 3 + }, + { + "id": 33, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1021 + }, + "angle": 0.01771, + "vertices": { + "#": 1022 + }, + "position": { + "#": 1027 + }, + "force": { + "#": 1028 + }, + "torque": 0, + "positionImpulse": { + "#": 1029 + }, + "constraintImpulse": { + "#": 1030 + }, + "totalContacts": 0, + "speed": 2.73031, + "angularSpeed": 0.0018, + "velocity": { + "#": 1031 + }, + "angularVelocity": 0.0018, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1032 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1033 + }, + "chamfer": null, + "bounds": { + "#": 1035 + }, + "positionPrev": { + "#": 1038 + }, + "anglePrev": 0.0159, + "axes": { + "#": 1039 + }, + "area": 4071.97134, + "mass": 4.07197, + "inverseMass": 0.24558, + "inertia": 11053.96708, + "inverseInertia": 0.00009, + "parent": { + "#": 1020 + }, + "sleepCounter": 0, + "region": { + "#": 1042 + } + }, + [ + { + "#": 1020 + } + ], + [ + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + }, + { + "#": 1026 + } + ], + { + "x": 913.601, + "y": 182.31407, + "index": 0, + "body": { + "#": 1020 + }, + "isInternal": false + }, + { + "x": 849.799, + "y": 181.18417, + "index": 1, + "body": { + "#": 1020 + }, + "isInternal": false + }, + { + "x": 850.9289, + "y": 117.38218, + "index": 2, + "body": { + "#": 1020 + }, + "isInternal": false + }, + { + "x": 914.7309, + "y": 118.51208, + "index": 3, + "body": { + "#": 1020 + }, + "isInternal": false + }, + { + "x": 882.26495, + "y": 149.84812 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.47639, + "y": -0.00104 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.03682, + "y": 2.73006 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1034 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1036 + }, + "max": { + "#": 1037 + } + }, + { + "x": 849.799, + "y": 117.38218 + }, + { + "x": 914.76772, + "y": 185.04414 + }, + { + "x": 882.22813, + "y": 147.11806 + }, + [ + { + "#": 1040 + }, + { + "#": 1041 + } + ], + { + "x": 0.01771, + "y": -0.99984 + }, + { + "x": 0.99984, + "y": 0.01771 + }, + { + "id": "17,19,2,3", + "startCol": 17, + "endCol": 19, + "startRow": 2, + "endRow": 3 + }, + { + "id": 34, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1044 + }, + "angle": 0.01689, + "vertices": { + "#": 1045 + }, + "position": { + "#": 1050 + }, + "force": { + "#": 1051 + }, + "torque": 0, + "positionImpulse": { + "#": 1052 + }, + "constraintImpulse": { + "#": 1053 + }, + "totalContacts": 0, + "speed": 2.84027, + "angularSpeed": 0.0018, + "velocity": { + "#": 1054 + }, + "angularVelocity": 0.0018, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1055 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1056 + }, + "chamfer": null, + "bounds": { + "#": 1058 + }, + "positionPrev": { + "#": 1061 + }, + "anglePrev": 0.01508, + "axes": { + "#": 1062 + }, + "area": 1410.42475, + "mass": 1.41042, + "inverseMass": 0.70901, + "inertia": 1475.19713, + "inverseInertia": 0.00068, + "parent": { + "#": 1043 + }, + "sleepCounter": 0, + "region": { + "#": 1065 + } + }, + [ + { + "#": 1043 + } + ], + [ + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + } + ], + { + "x": 990.88361, + "y": 118.91591, + "index": 0, + "body": { + "#": 1043 + }, + "isInternal": false + }, + { + "x": 1020.57428, + "y": 119.41731, + "index": 1, + "body": { + "#": 1043 + }, + "isInternal": false + }, + { + "x": 1019.77228, + "y": 166.90775, + "index": 2, + "body": { + "#": 1043 + }, + "isInternal": false + }, + { + "x": 990.08162, + "y": 166.40635, + "index": 3, + "body": { + "#": 1043 + }, + "isInternal": false + }, + { + "x": 1005.32795, + "y": 142.91183 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 2.8403, + "y": 0.00208 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.05244, + "y": 2.83979 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1057 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1059 + }, + "max": { + "#": 1060 + } + }, + { + "x": 990.08162, + "y": 118.91591 + }, + { + "x": 1020.62672, + "y": 169.74754 + }, + { + "x": 1005.2755, + "y": 140.07204 + }, + [ + { + "#": 1063 + }, + { + "#": 1064 + } + ], + { + "x": -0.01689, + "y": 0.99986 + }, + { + "x": -0.99986, + "y": -0.01689 + }, + { + "id": "20,21,2,3", + "startCol": 20, + "endCol": 21, + "startRow": 2, + "endRow": 3 + }, + { + "id": 35, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1067 + }, + "angle": 0.01754, + "vertices": { + "#": 1068 + }, + "position": { + "#": 1085 + }, + "force": { + "#": 1086 + }, + "torque": 0, + "positionImpulse": { + "#": 1087 + }, + "constraintImpulse": { + "#": 1088 + }, + "totalContacts": 0, + "speed": 2.83125, + "angularSpeed": 0.00168, + "velocity": { + "#": 1089 + }, + "angularVelocity": 0.00246, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1090 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1091 + }, + "bounds": { + "#": 1093 + }, + "positionPrev": { + "#": 1096 + }, + "anglePrev": 0.01587, + "axes": { + "#": 1097 + }, + "area": 1145.13967, + "mass": 1.14514, + "inverseMass": 0.87326, + "inertia": 855.91978, + "inverseInertia": 0.00117, + "parent": { + "#": 1066 + }, + "sleepCounter": 0, + "region": { + "#": 1106 + } + }, + [ + { + "#": 1066 + } + ], + [ + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + }, + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + } + ], + { + "x": 20.3513, + "y": 227.62198, + "index": 0, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 21.33297, + "y": 223.47333, + "index": 1, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 23.95344, + "y": 220.11058, + "index": 2, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 27.73644, + "y": 218.1449, + "index": 3, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 43.48014, + "y": 218.02621, + "index": 4, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 47.62879, + "y": 219.00788, + "index": 5, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 50.99154, + "y": 221.62835, + "index": 6, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 52.95722, + "y": 225.41135, + "index": 7, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 52.98775, + "y": 246.1801, + "index": 8, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 52.00608, + "y": 250.32875, + "index": 9, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 49.38561, + "y": 253.6915, + "index": 10, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 45.60261, + "y": 255.65718, + "index": 11, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 29.85891, + "y": 255.77587, + "index": 12, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 25.71026, + "y": 254.7942, + "index": 13, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 22.34751, + "y": 252.17373, + "index": 14, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 20.38183, + "y": 248.39073, + "index": 15, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 36.66953, + "y": 236.90104 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00757, + "y": 0.00029 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00155, + "y": 2.86736 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1092 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1094 + }, + "max": { + "#": 1095 + } + }, + { + "x": 20.35011, + "y": 218.02621 + }, + { + "x": 52.98775, + "y": 258.60712 + }, + { + "x": 36.67071, + "y": 234.06979 + }, + [ + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + } + ], + { + "x": 0.97313, + "y": 0.23027 + }, + { + "x": 0.78878, + "y": 0.61467 + }, + { + "x": 0.46108, + "y": 0.88736 + }, + { + "x": 0.00754, + "y": 0.99997 + }, + { + "x": -0.23027, + "y": 0.97313 + }, + { + "x": -0.61467, + "y": 0.78878 + }, + { + "x": -0.88736, + "y": 0.46108 + }, + { + "x": -1, + "y": 0.00147 + }, + { + "id": "0,1,4,5", + "startCol": 0, + "endCol": 1, + "startRow": 4, + "endRow": 5 + }, + { + "id": 36, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1108 + }, + "angle": -0.00193, + "vertices": { + "#": 1109 + }, + "position": { + "#": 1142 + }, + "force": { + "#": 1143 + }, + "torque": 0, + "positionImpulse": { + "#": 1144 + }, + "constraintImpulse": { + "#": 1145 + }, + "totalContacts": 0, + "speed": 2.89385, + "angularSpeed": 0.00027, + "velocity": { + "#": 1146 + }, + "angularVelocity": 0.00017, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1147 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1148 + }, + "bounds": { + "#": 1150 + }, + "positionPrev": { + "#": 1153 + }, + "anglePrev": -0.00166, + "axes": { + "#": 1154 + }, + "area": 1884.77092, + "mass": 1.88477, + "inverseMass": 0.53057, + "inertia": 2264.18271, + "inverseInertia": 0.00044, + "parent": { + "#": 1107 + }, + "sleepCounter": 0, + "region": { + "#": 1171 + } + }, + [ + { + "#": 1107 + } + ], + [ + { + "#": 1110 + }, + { + "#": 1111 + }, + { + "#": 1112 + }, + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + } + ], + { + "x": 100.94705, + "y": 248.35189, + "index": 0, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 100.72133, + "y": 250.48394, + "index": 1, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 100.04633, + "y": 252.51887, + "index": 2, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 98.95308, + "y": 254.36315, + "index": 3, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 89.84626, + "y": 263.64573, + "index": 4, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 88.17907, + "y": 264.99371, + "index": 5, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 86.26286, + "y": 265.95533, + "index": 6, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 84.18571, + "y": 266.48638, + "index": 7, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 71.1828, + "y": 266.61066, + "index": 8, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 69.05075, + "y": 266.38495, + "index": 9, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 67.01582, + "y": 265.70995, + "index": 10, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 65.17154, + "y": 264.6167, + "index": 11, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 55.88896, + "y": 255.50987, + "index": 12, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 54.54098, + "y": 253.84269, + "index": 13, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 53.57936, + "y": 251.92648, + "index": 14, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 53.04831, + "y": 249.84933, + "index": 15, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 52.92403, + "y": 236.84641, + "index": 16, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 53.14974, + "y": 234.71437, + "index": 17, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 53.82474, + "y": 232.67944, + "index": 18, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 54.91799, + "y": 230.83516, + "index": 19, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 64.02481, + "y": 221.55258, + "index": 20, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 65.692, + "y": 220.2046, + "index": 21, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 67.60821, + "y": 219.24298, + "index": 22, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 69.68536, + "y": 218.71192, + "index": 23, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 82.68828, + "y": 218.58764, + "index": 24, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 84.82032, + "y": 218.81336, + "index": 25, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 86.85525, + "y": 219.48836, + "index": 26, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 88.69953, + "y": 220.58161, + "index": 27, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 97.98211, + "y": 229.68843, + "index": 28, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 99.33009, + "y": 231.35562, + "index": 29, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 100.29171, + "y": 233.27183, + "index": 30, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 100.82277, + "y": 235.34897, + "index": 31, + "body": { + "#": 1107 + }, + "isInternal": false + }, + { + "x": 76.93554, + "y": 242.59915 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00695, + "y": 0.00006 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00005, + "y": 2.87191 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1149 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1151 + }, + "max": { + "#": 1152 + } + }, + { + "x": 52.92386, + "y": 218.58764 + }, + { + "x": 100.94705, + "y": 269.50451 + }, + { + "x": 76.9357, + "y": 239.70531 + }, + [ + { + "#": 1155 + }, + { + "#": 1156 + }, + { + "#": 1157 + }, + { + "#": 1158 + }, + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + }, + { + "#": 1163 + }, + { + "#": 1164 + }, + { + "#": 1165 + }, + { + "#": 1166 + }, + { + "#": 1167 + }, + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + } + ], + { + "x": -0.99444, + "y": -0.10528 + }, + { + "x": -0.94915, + "y": -0.31484 + }, + { + "x": -0.86022, + "y": -0.50992 + }, + { + "x": -0.71383, + "y": -0.70032 + }, + { + "x": -0.62873, + "y": -0.77762 + }, + { + "x": -0.44852, + "y": -0.89377 + }, + { + "x": -0.2477, + "y": -0.96884 + }, + { + "x": -0.00956, + "y": -0.99995 + }, + { + "x": 0.10528, + "y": -0.99444 + }, + { + "x": 0.31484, + "y": -0.94915 + }, + { + "x": 0.50992, + "y": -0.86022 + }, + { + "x": 0.70032, + "y": -0.71383 + }, + { + "x": 0.77762, + "y": -0.62873 + }, + { + "x": 0.89377, + "y": -0.44852 + }, + { + "x": 0.96884, + "y": -0.2477 + }, + { + "x": 0.99995, + "y": -0.00956 + }, + { + "id": "1,2,4,5", + "startCol": 1, + "endCol": 2, + "startRow": 4, + "endRow": 5 + }, + { + "id": 37, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1173 + }, + "angle": -0.00072, + "vertices": { + "#": 1174 + }, + "position": { + "#": 1179 + }, + "force": { + "#": 1180 + }, + "torque": 0, + "positionImpulse": { + "#": 1181 + }, + "constraintImpulse": { + "#": 1182 + }, + "totalContacts": 0, + "speed": 2.91519, + "angularSpeed": 0.0001, + "velocity": { + "#": 1183 + }, + "angularVelocity": -0.0001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1184 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1185 + }, + "chamfer": null, + "bounds": { + "#": 1187 + }, + "positionPrev": { + "#": 1190 + }, + "anglePrev": -0.00061, + "axes": { + "#": 1191 + }, + "area": 3192.98771, + "mass": 3.19299, + "inverseMass": 0.31319, + "inertia": 14162.07498, + "inverseInertia": 0.00007, + "parent": { + "#": 1172 + }, + "sleepCounter": 0, + "region": { + "#": 1194 + } + }, + [ + { + "#": 1172 + } + ], + [ + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + } + ], + { + "x": 99.90904, + "y": 218.50064, + "index": 0, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 211.6669, + "y": 218.42066, + "index": 1, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 211.68735, + "y": 246.99123, + "index": 2, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 99.92949, + "y": 247.07122, + "index": 3, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 155.79819, + "y": 232.74594 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00461, + "y": 2.91398 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1186 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1188 + }, + "max": { + "#": 1189 + } + }, + { + "x": 99.90904, + "y": 218.42066 + }, + { + "x": 211.68787, + "y": 249.98641 + }, + { + "x": 155.80277, + "y": 229.83194 + }, + [ + { + "#": 1192 + }, + { + "#": 1193 + } + ], + { + "x": 0.00072, + "y": 1 + }, + { + "x": -1, + "y": 0.00072 + }, + { + "id": "2,4,4,5", + "startCol": 2, + "endCol": 4, + "startRow": 4, + "endRow": 5 + }, + { + "id": 38, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1196 + }, + "angle": 0.00002, + "vertices": { + "#": 1197 + }, + "position": { + "#": 1224 + }, + "force": { + "#": 1225 + }, + "torque": 0, + "positionImpulse": { + "#": 1226 + }, + "constraintImpulse": { + "#": 1227 + }, + "totalContacts": 0, + "speed": 2.90783, + "angularSpeed": 0.00002, + "velocity": { + "#": 1228 + }, + "angularVelocity": 0.00005, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1229 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1230 + }, + "chamfer": null, + "circleRadius": 37.89191, + "bounds": { + "#": 1232 + }, + "positionPrev": { + "#": 1235 + }, + "anglePrev": -0.00002, + "axes": { + "#": 1236 + }, + "area": 4466.95798, + "mass": 4.46696, + "inverseMass": 0.22387, + "inertia": 12703.17097, + "inverseInertia": 0.00008, + "parent": { + "#": 1195 + }, + "sleepCounter": 0, + "region": { + "#": 1250 + } + }, + [ + { + "#": 1195 + } + ], + [ + { + "#": 1198 + }, + { + "#": 1199 + }, + { + "#": 1200 + }, + { + "#": 1201 + }, + { + "#": 1202 + }, + { + "#": 1203 + }, + { + "#": 1204 + }, + { + "#": 1205 + }, + { + "#": 1206 + }, + { + "#": 1207 + }, + { + "#": 1208 + }, + { + "#": 1209 + }, + { + "#": 1210 + }, + { + "#": 1211 + }, + { + "#": 1212 + }, + { + "#": 1213 + }, + { + "#": 1214 + }, + { + "#": 1215 + }, + { + "#": 1216 + }, + { + "#": 1217 + }, + { + "#": 1218 + }, + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + } + ], + { + "x": 285.56748, + "y": 261.29928, + "index": 0, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 283.38128, + "y": 270.16922, + "index": 1, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 279.13509, + "y": 278.25712, + "index": 2, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 273.07792, + "y": 285.09498, + "index": 3, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 265.5598, + "y": 290.28381, + "index": 4, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 257.01873, + "y": 293.5226, + "index": 5, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 247.9507, + "y": 294.62339, + "index": 6, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 238.88273, + "y": 293.52218, + "index": 7, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 230.3418, + "y": 290.28298, + "index": 8, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 222.82392, + "y": 285.0938, + "index": 9, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 216.76709, + "y": 278.25566, + "index": 10, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 212.52128, + "y": 270.16756, + "index": 11, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 210.33548, + "y": 261.2975, + "index": 12, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 210.3357, + "y": 252.1635, + "index": 13, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 212.52191, + "y": 243.29356, + "index": 14, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 216.7681, + "y": 235.20566, + "index": 15, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 222.82526, + "y": 228.3678, + "index": 16, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 230.34338, + "y": 223.17898, + "index": 17, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 238.88446, + "y": 219.94018, + "index": 18, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 247.95248, + "y": 218.83939, + "index": 19, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 257.02046, + "y": 219.9406, + "index": 20, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 265.56138, + "y": 223.17981, + "index": 21, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 273.07926, + "y": 228.36898, + "index": 22, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 279.1361, + "y": 235.20712, + "index": 23, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 283.38191, + "y": 243.29522, + "index": 24, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 285.5677, + "y": 252.16528, + "index": 25, + "body": { + "#": 1195 + }, + "isInternal": false + }, + { + "x": 247.95159, + "y": 256.73139 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.22, + "y": 0.11568 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00386, + "y": 2.91004 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1231 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1233 + }, + "max": { + "#": 1234 + } + }, + { + "x": 210.3294, + "y": 218.83939 + }, + { + "x": 285.5677, + "y": 297.53121 + }, + { + "x": 247.95548, + "y": 253.82136 + }, + [ + { + "#": 1237 + }, + { + "#": 1238 + }, + { + "#": 1239 + }, + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + }, + { + "#": 1246 + }, + { + "#": 1247 + }, + { + "#": 1248 + }, + { + "#": 1249 + } + ], + { + "x": -0.97094, + "y": -0.23931 + }, + { + "x": -0.8854, + "y": -0.46484 + }, + { + "x": -0.74855, + "y": -0.66308 + }, + { + "x": -0.56802, + "y": -0.82301 + }, + { + "x": -0.35457, + "y": -0.93503 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12055, + "y": -0.99271 + }, + { + "x": 0.35461, + "y": -0.93501 + }, + { + "x": 0.56806, + "y": -0.82299 + }, + { + "x": 0.74858, + "y": -0.66305 + }, + { + "x": 0.88542, + "y": -0.4648 + }, + { + "x": 0.97095, + "y": -0.23927 + }, + { + "x": 1, + "y": 0.00002 + }, + { + "id": "4,5,4,6", + "startCol": 4, + "endCol": 5, + "startRow": 4, + "endRow": 6 + }, + { + "id": 39, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1252 + }, + "angle": 0.00012, + "vertices": { + "#": 1253 + }, + "position": { + "#": 1258 + }, + "force": { + "#": 1259 + }, + "torque": 0, + "positionImpulse": { + "#": 1260 + }, + "constraintImpulse": { + "#": 1261 + }, + "totalContacts": 0, + "speed": 2.91619, + "angularSpeed": 0.00006, + "velocity": { + "#": 1262 + }, + "angularVelocity": 0.00007, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1263 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1264 + }, + "chamfer": null, + "bounds": { + "#": 1266 + }, + "positionPrev": { + "#": 1269 + }, + "anglePrev": 0.00005, + "axes": { + "#": 1270 + }, + "area": 2150.6216, + "mass": 2.15062, + "inverseMass": 0.46498, + "inertia": 3103.35977, + "inverseInertia": 0.00032, + "parent": { + "#": 1251 + }, + "sleepCounter": 0, + "region": { + "#": 1273 + } + }, + [ + { + "#": 1251 + } + ], + [ + { + "#": 1254 + }, + { + "#": 1255 + }, + { + "#": 1256 + }, + { + "#": 1257 + } + ], + { + "x": 285.49805, + "y": 218.70149, + "index": 0, + "body": { + "#": 1251 + }, + "isInternal": false + }, + { + "x": 329.31256, + "y": 218.70678, + "index": 1, + "body": { + "#": 1251 + }, + "isInternal": false + }, + { + "x": 329.30663, + "y": 267.79146, + "index": 2, + "body": { + "#": 1251 + }, + "isInternal": false + }, + { + "x": 285.49212, + "y": 267.78617, + "index": 3, + "body": { + "#": 1251 + }, + "isInternal": false + }, + { + "x": 307.40234, + "y": 243.24648 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00261, + "y": 2.91341 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1265 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1267 + }, + "max": { + "#": 1268 + } + }, + { + "x": 285.48641, + "y": 218.70149 + }, + { + "x": 329.31256, + "y": 270.70764 + }, + { + "x": 307.40505, + "y": 240.33311 + }, + [ + { + "#": 1271 + }, + { + "#": 1272 + } + ], + { + "x": -0.00012, + "y": 1 + }, + { + "x": -1, + "y": -0.00012 + }, + { + "id": "5,6,4,5", + "startCol": 5, + "endCol": 6, + "startRow": 4, + "endRow": 5 + }, + { + "id": 40, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1275 + }, + "angle": 0.00033, + "vertices": { + "#": 1276 + }, + "position": { + "#": 1303 + }, + "force": { + "#": 1304 + }, + "torque": 0, + "positionImpulse": { + "#": 1305 + }, + "constraintImpulse": { + "#": 1306 + }, + "totalContacts": 0, + "speed": 2.90023, + "angularSpeed": 0.00013, + "velocity": { + "#": 1307 + }, + "angularVelocity": 0.00013, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1308 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1309 + }, + "chamfer": null, + "circleRadius": 30.28624, + "bounds": { + "#": 1311 + }, + "positionPrev": { + "#": 1314 + }, + "anglePrev": 0.0002, + "axes": { + "#": 1315 + }, + "area": 2853.66629, + "mass": 2.85367, + "inverseMass": 0.35043, + "inertia": 5184.35556, + "inverseInertia": 0.00019, + "parent": { + "#": 1274 + }, + "sleepCounter": 0, + "region": { + "#": 1329 + } + }, + [ + { + "#": 1274 + } + ], + [ + { + "#": 1277 + }, + { + "#": 1278 + }, + { + "#": 1279 + }, + { + "#": 1280 + }, + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + }, + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + }, + { + "#": 1289 + }, + { + "#": 1290 + }, + { + "#": 1291 + }, + { + "#": 1292 + }, + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + }, + { + "#": 1296 + }, + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + }, + { + "#": 1301 + }, + { + "#": 1302 + } + ], + { + "x": 389.02604, + "y": 252.64659, + "index": 0, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 387.27671, + "y": 259.73501, + "index": 1, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 383.88159, + "y": 266.1989, + "index": 2, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 379.03779, + "y": 271.66231, + "index": 3, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 373.02843, + "y": 275.80734, + "index": 4, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 366.20058, + "y": 278.3941, + "index": 5, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 358.95229, + "y": 279.27172, + "index": 6, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 351.70458, + "y": 278.38934, + "index": 7, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 344.87843, + "y": 275.7981, + "index": 8, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 338.8718, + "y": 271.64913, + "index": 9, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 334.03159, + "y": 266.18254, + "index": 10, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 330.64071, + "y": 259.71642, + "index": 11, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 328.89604, + "y": 252.62685, + "index": 12, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 328.89844, + "y": 245.32485, + "index": 13, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 330.64776, + "y": 238.23642, + "index": 14, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 334.04288, + "y": 231.77254, + "index": 15, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 338.88668, + "y": 226.30913, + "index": 16, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 344.89604, + "y": 222.1641, + "index": 17, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 351.72389, + "y": 219.57734, + "index": 18, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 358.97218, + "y": 218.69972, + "index": 19, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 366.21989, + "y": 219.5821, + "index": 20, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 373.04604, + "y": 222.17334, + "index": 21, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 379.05267, + "y": 226.32231, + "index": 22, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 383.89288, + "y": 231.7889, + "index": 23, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 387.28376, + "y": 238.25501, + "index": 24, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 389.02843, + "y": 245.34459, + "index": 25, + "body": { + "#": 1274 + }, + "isInternal": false + }, + { + "x": 358.96224, + "y": 248.98572 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.19936, + "y": 0.00008 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00781, + "y": 2.90022 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1310 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1312 + }, + "max": { + "#": 1313 + } + }, + { + "x": 328.88823, + "y": 218.69972 + }, + { + "x": 389.02843, + "y": 282.17193 + }, + { + "x": 358.97005, + "y": 246.0855 + }, + [ + { + "#": 1316 + }, + { + "#": 1317 + }, + { + "#": 1318 + }, + { + "#": 1319 + }, + { + "#": 1320 + }, + { + "#": 1321 + }, + { + "#": 1322 + }, + { + "#": 1323 + }, + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + }, + { + "#": 1327 + }, + { + "#": 1328 + } + ], + { + "x": -0.97087, + "y": -0.2396 + }, + { + "x": -0.88531, + "y": -0.465 + }, + { + "x": -0.74826, + "y": -0.6634 + }, + { + "x": -0.56779, + "y": -0.82317 + }, + { + "x": -0.35428, + "y": -0.93514 + }, + { + "x": -0.1202, + "y": -0.99275 + }, + { + "x": 0.12085, + "y": -0.99267 + }, + { + "x": 0.3549, + "y": -0.93491 + }, + { + "x": 0.56833, + "y": -0.8228 + }, + { + "x": 0.7487, + "y": -0.66291 + }, + { + "x": 0.88561, + "y": -0.46442 + }, + { + "x": 0.97103, + "y": -0.23896 + }, + { + "x": 1, + "y": 0.00033 + }, + { + "id": "6,8,4,5", + "startCol": 6, + "endCol": 8, + "startRow": 4, + "endRow": 5 + }, + { + "id": 41, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1331 + }, + "angle": -0.00025, + "vertices": { + "#": 1332 + }, + "position": { + "#": 1337 + }, + "force": { + "#": 1338 + }, + "torque": 0, + "positionImpulse": { + "#": 1339 + }, + "constraintImpulse": { + "#": 1340 + }, + "totalContacts": 0, + "speed": 2.90142, + "angularSpeed": 0.00054, + "velocity": { + "#": 1341 + }, + "angularVelocity": -0.0007, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1342 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1343 + }, + "chamfer": null, + "bounds": { + "#": 1345 + }, + "positionPrev": { + "#": 1348 + }, + "anglePrev": 0, + "axes": { + "#": 1349 + }, + "area": 1365.59997, + "mass": 1.3656, + "inverseMass": 0.73228, + "inertia": 1298.96051, + "inverseInertia": 0.00077, + "parent": { + "#": 1330 + }, + "sleepCounter": 0, + "region": { + "#": 1352 + } + }, + [ + { + "#": 1330 + } + ], + [ + { + "#": 1333 + }, + { + "#": 1334 + }, + { + "#": 1335 + }, + { + "#": 1336 + } + ], + { + "x": 389.39941, + "y": 218.72061, + "index": 0, + "body": { + "#": 1330 + }, + "isInternal": false + }, + { + "x": 421.23336, + "y": 218.71263, + "index": 1, + "body": { + "#": 1330 + }, + "isInternal": false + }, + { + "x": 421.24411, + "y": 261.61022, + "index": 2, + "body": { + "#": 1330 + }, + "isInternal": false + }, + { + "x": 389.41015, + "y": 261.6182, + "index": 3, + "body": { + "#": 1330 + }, + "isInternal": false + }, + { + "x": 405.32176, + "y": 240.16542 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.1075, + "y": -0.00005 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01298, + "y": 2.89085 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1344 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1346 + }, + "max": { + "#": 1347 + } + }, + { + "x": 389.38723, + "y": 218.71263 + }, + { + "x": 421.24411, + "y": 264.51959 + }, + { + "x": 405.3355, + "y": 237.24879 + }, + [ + { + "#": 1350 + }, + { + "#": 1351 + } + ], + { + "x": 0.00025, + "y": 1 + }, + { + "x": -1, + "y": 0.00025 + }, + { + "id": "8,8,4,5", + "startCol": 8, + "endCol": 8, + "startRow": 4, + "endRow": 5 + }, + { + "id": 42, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1354 + }, + "angle": -0.00046, + "vertices": { + "#": 1355 + }, + "position": { + "#": 1360 + }, + "force": { + "#": 1361 + }, + "torque": 0, + "positionImpulse": { + "#": 1362 + }, + "constraintImpulse": { + "#": 1363 + }, + "totalContacts": 0, + "speed": 2.91396, + "angularSpeed": 0.00025, + "velocity": { + "#": 1364 + }, + "angularVelocity": -0.00038, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1365 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1366 + }, + "chamfer": null, + "bounds": { + "#": 1368 + }, + "positionPrev": { + "#": 1371 + }, + "anglePrev": -0.00036, + "axes": { + "#": 1372 + }, + "area": 1818.16556, + "mass": 1.81817, + "inverseMass": 0.55, + "inertia": 2264.61136, + "inverseInertia": 0.00044, + "parent": { + "#": 1353 + }, + "sleepCounter": 0, + "region": { + "#": 1375 + } + }, + [ + { + "#": 1353 + } + ], + [ + { + "#": 1356 + }, + { + "#": 1357 + }, + { + "#": 1358 + }, + { + "#": 1359 + } + ], + { + "x": 421.18354, + "y": 218.65566, + "index": 0, + "body": { + "#": 1353 + }, + "isInternal": false + }, + { + "x": 459.10877, + "y": 218.63839, + "index": 1, + "body": { + "#": 1353 + }, + "isInternal": false + }, + { + "x": 459.13061, + "y": 266.57916, + "index": 2, + "body": { + "#": 1353 + }, + "isInternal": false + }, + { + "x": 421.20537, + "y": 266.59644, + "index": 3, + "body": { + "#": 1353 + }, + "isInternal": false + }, + { + "x": 440.15707, + "y": 242.61741 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.11396, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00897, + "y": 2.92187 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1367 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1369 + }, + "max": { + "#": 1370 + } + }, + { + "x": 421.17396, + "y": 218.63839 + }, + { + "x": 459.13061, + "y": 269.51038 + }, + { + "x": 440.16547, + "y": 239.71489 + }, + [ + { + "#": 1373 + }, + { + "#": 1374 + } + ], + { + "x": 0.00046, + "y": 1 + }, + { + "x": -1, + "y": 0.00046 + }, + { + "id": "8,9,4,5", + "startCol": 8, + "endCol": 9, + "startRow": 4, + "endRow": 5 + }, + { + "id": 43, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1377 + }, + "angle": -0.0013, + "vertices": { + "#": 1378 + }, + "position": { + "#": 1383 + }, + "force": { + "#": 1384 + }, + "torque": 0, + "positionImpulse": { + "#": 1385 + }, + "constraintImpulse": { + "#": 1386 + }, + "totalContacts": 0, + "speed": 2.87846, + "angularSpeed": 0.00011, + "velocity": { + "#": 1387 + }, + "angularVelocity": -0.00063, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1388 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1389 + }, + "chamfer": null, + "bounds": { + "#": 1391 + }, + "positionPrev": { + "#": 1394 + }, + "anglePrev": -0.0014, + "axes": { + "#": 1395 + }, + "area": 1013.36299, + "mass": 1.01336, + "inverseMass": 0.98681, + "inertia": 687.38878, + "inverseInertia": 0.00145, + "parent": { + "#": 1376 + }, + "sleepCounter": 0, + "region": { + "#": 1398 + } + }, + [ + { + "#": 1376 + } + ], + [ + { + "#": 1379 + }, + { + "#": 1380 + }, + { + "#": 1381 + }, + { + "#": 1382 + } + ], + { + "x": 459.05896, + "y": 218.63, + "index": 0, + "body": { + "#": 1376 + }, + "isInternal": false + }, + { + "x": 489.48878, + "y": 218.59059, + "index": 1, + "body": { + "#": 1376 + }, + "isInternal": false + }, + { + "x": 489.53192, + "y": 251.89217, + "index": 2, + "body": { + "#": 1376 + }, + "isInternal": false + }, + { + "x": 459.1021, + "y": 251.93159, + "index": 3, + "body": { + "#": 1376 + }, + "isInternal": false + }, + { + "x": 474.29544, + "y": 235.26109 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.12131, + "y": 0.00018 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00714, + "y": 2.91044 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1390 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1392 + }, + "max": { + "#": 1393 + } + }, + { + "x": 459.05102, + "y": 218.59059 + }, + { + "x": 489.53192, + "y": 254.81004 + }, + { + "x": 474.30338, + "y": 232.38266 + }, + [ + { + "#": 1396 + }, + { + "#": 1397 + } + ], + { + "x": 0.0013, + "y": 1 + }, + { + "x": -1, + "y": 0.0013 + }, + { + "id": "9,10,4,5", + "startCol": 9, + "endCol": 10, + "startRow": 4, + "endRow": 5 + }, + { + "id": 44, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1400 + }, + "angle": 0.00022, + "vertices": { + "#": 1401 + }, + "position": { + "#": 1406 + }, + "force": { + "#": 1407 + }, + "torque": 0, + "positionImpulse": { + "#": 1408 + }, + "constraintImpulse": { + "#": 1409 + }, + "totalContacts": 0, + "speed": 2.90721, + "angularSpeed": 0.00011, + "velocity": { + "#": 1410 + }, + "angularVelocity": 0.00011, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1411 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1412 + }, + "chamfer": null, + "bounds": { + "#": 1414 + }, + "positionPrev": { + "#": 1417 + }, + "anglePrev": 0.00012, + "axes": { + "#": 1418 + }, + "area": 1150.58992, + "mass": 1.15059, + "inverseMass": 0.86912, + "inertia": 958.51197, + "inverseInertia": 0.00104, + "parent": { + "#": 1399 + }, + "sleepCounter": 0, + "region": { + "#": 1421 + } + }, + [ + { + "#": 1399 + } + ], + [ + { + "#": 1402 + }, + { + "#": 1403 + }, + { + "#": 1404 + }, + { + "#": 1405 + } + ], + { + "x": 490.31995, + "y": 216.4656, + "index": 0, + "body": { + "#": 1399 + }, + "isInternal": false + }, + { + "x": 531.99797, + "y": 216.47497, + "index": 1, + "body": { + "#": 1399 + }, + "isInternal": false + }, + { + "x": 531.99177, + "y": 244.0816, + "index": 2, + "body": { + "#": 1399 + }, + "isInternal": false + }, + { + "x": 490.31375, + "y": 244.07224, + "index": 3, + "body": { + "#": 1399 + }, + "isInternal": false + }, + { + "x": 511.15586, + "y": 230.2736 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.02476, + "y": 2.9071 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1413 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1415 + }, + "max": { + "#": 1416 + } + }, + { + "x": 490.31375, + "y": 216.4656 + }, + { + "x": 531.99797, + "y": 244.0816 + }, + { + "x": 511.18062, + "y": 227.3665 + }, + [ + { + "#": 1419 + }, + { + "#": 1420 + } + ], + { + "x": -0.00022, + "y": 1 + }, + { + "x": -1, + "y": -0.00022 + }, + { + "id": "10,11,4,5", + "startCol": 10, + "endCol": 11, + "startRow": 4, + "endRow": 5 + }, + { + "id": 45, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1423 + }, + "angle": -0.00552, + "vertices": { + "#": 1424 + }, + "position": { + "#": 1430 + }, + "force": { + "#": 1431 + }, + "torque": 0, + "positionImpulse": { + "#": 1432 + }, + "constraintImpulse": { + "#": 1433 + }, + "totalContacts": 0, + "speed": 2.90536, + "angularSpeed": 0.00085, + "velocity": { + "#": 1434 + }, + "angularVelocity": -0.00085, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1435 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1436 + }, + "chamfer": null, + "bounds": { + "#": 1438 + }, + "positionPrev": { + "#": 1441 + }, + "anglePrev": -0.00466, + "axes": { + "#": 1442 + }, + "area": 3070.12222, + "mass": 3.07012, + "inverseMass": 0.32572, + "inertia": 6102.40275, + "inverseInertia": 0.00016, + "parent": { + "#": 1422 + }, + "sleepCounter": 0, + "region": { + "#": 1448 + } + }, + [ + { + "#": 1422 + } + ], + [ + { + "#": 1425 + }, + { + "#": 1426 + }, + { + "#": 1427 + }, + { + "#": 1428 + }, + { + "#": 1429 + } + ], + { + "x": 587.44857, + "y": 280.28843, + "index": 0, + "body": { + "#": 1422 + }, + "isInternal": false + }, + { + "x": 547.3462, + "y": 293.56288, + "index": 1, + "body": { + "#": 1422 + }, + "isInternal": false + }, + { + "x": 522.32803, + "y": 259.52539, + "index": 2, + "body": { + "#": 1422 + }, + "isInternal": false + }, + { + "x": 546.9691, + "y": 225.21392, + "index": 3, + "body": { + "#": 1422 + }, + "isInternal": false + }, + { + "x": 587.2155, + "y": 238.04507, + "index": 4, + "body": { + "#": 1422 + }, + "isInternal": false + }, + { + "x": 558.26157, + "y": 259.32714 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.10298, + "y": 0.37681 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.04447, + "y": 2.90502 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1437 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1439 + }, + "max": { + "#": 1440 + } + }, + { + "x": 522.28356, + "y": 225.21392 + }, + { + "x": 587.44857, + "y": 296.4679 + }, + { + "x": 558.30603, + "y": 256.42212 + }, + [ + { + "#": 1443 + }, + { + "#": 1444 + }, + { + "#": 1445 + }, + { + "#": 1446 + }, + { + "#": 1447 + } + ], + { + "x": 0.31425, + "y": 0.94934 + }, + { + "x": -0.80576, + "y": 0.59225 + }, + { + "x": -0.81224, + "y": -0.58332 + }, + { + "x": 0.30375, + "y": -0.95275 + }, + { + "x": 0.99998, + "y": -0.00552 + }, + { + "id": "10,12,4,6", + "startCol": 10, + "endCol": 12, + "startRow": 4, + "endRow": 6 + }, + { + "id": 46, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1450 + }, + "angle": -0.01097, + "vertices": { + "#": 1451 + }, + "position": { + "#": 1468 + }, + "force": { + "#": 1469 + }, + "torque": 0, + "positionImpulse": { + "#": 1470 + }, + "constraintImpulse": { + "#": 1471 + }, + "totalContacts": 0, + "speed": 2.85611, + "angularSpeed": 0.0019, + "velocity": { + "#": 1472 + }, + "angularVelocity": -0.00091, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1473 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1474 + }, + "bounds": { + "#": 1476 + }, + "positionPrev": { + "#": 1479 + }, + "anglePrev": -0.01025, + "axes": { + "#": 1480 + }, + "area": 1289.27296, + "mass": 1.28927, + "inverseMass": 0.77563, + "inertia": 1245.97393, + "inverseInertia": 0.0008, + "parent": { + "#": 1449 + }, + "sleepCounter": 0, + "region": { + "#": 1489 + } + }, + [ + { + "#": 1449 + } + ], + [ + { + "#": 1452 + }, + { + "#": 1453 + }, + { + "#": 1454 + }, + { + "#": 1455 + }, + { + "#": 1456 + }, + { + "#": 1457 + }, + { + "#": 1458 + }, + { + "#": 1459 + }, + { + "#": 1460 + }, + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + } + ], + { + "x": 587.06339, + "y": 229.11385, + "index": 0, + "body": { + "#": 1449 + }, + "isInternal": false + }, + { + "x": 587.92641, + "y": 224.93891, + "index": 1, + "body": { + "#": 1449 + }, + "isInternal": false + }, + { + "x": 590.44996, + "y": 221.50283, + "index": 2, + "body": { + "#": 1449 + }, + "isInternal": false + }, + { + "x": 594.17538, + "y": 219.43011, + "index": 3, + "body": { + "#": 1449 + }, + "isInternal": false + }, + { + "x": 626.35443, + "y": 218.68233, + "index": 4, + "body": { + "#": 1449 + }, + "isInternal": false + }, + { + "x": 630.52938, + "y": 219.54534, + "index": 5, + "body": { + "#": 1449 + }, + "isInternal": false + }, + { + "x": 633.96546, + "y": 222.06889, + "index": 6, + "body": { + "#": 1449 + }, + "isInternal": false + }, + { + "x": 636.03817, + "y": 225.79432, + "index": 7, + "body": { + "#": 1449 + }, + "isInternal": false + }, + { + "x": 636.55464, + "y": 236.88164, + "index": 8, + "body": { + "#": 1449 + }, + "isInternal": false + }, + { + "x": 635.69162, + "y": 241.05658, + "index": 9, + "body": { + "#": 1449 + }, + "isInternal": false + }, + { + "x": 633.16807, + "y": 244.49266, + "index": 10, + "body": { + "#": 1449 + }, + "isInternal": false + }, + { + "x": 629.44264, + "y": 246.56538, + "index": 11, + "body": { + "#": 1449 + }, + "isInternal": false + }, + { + "x": 597.2636, + "y": 247.31316, + "index": 12, + "body": { + "#": 1449 + }, + "isInternal": false + }, + { + "x": 593.08865, + "y": 246.45015, + "index": 13, + "body": { + "#": 1449 + }, + "isInternal": false + }, + { + "x": 589.65257, + "y": 243.9266, + "index": 14, + "body": { + "#": 1449 + }, + "isInternal": false + }, + { + "x": 587.57985, + "y": 240.20117, + "index": 15, + "body": { + "#": 1449 + }, + "isInternal": false + }, + { + "x": 611.80901, + "y": 232.99775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.65979, + "y": 0.48574 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.04063, + "y": 2.89036 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1475 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1477 + }, + "max": { + "#": 1478 + } + }, + { + "x": 587.0077, + "y": 218.68233 + }, + { + "x": 636.55464, + "y": 250.16873 + }, + { + "x": 611.84541, + "y": 230.10125 + }, + [ + { + "#": 1481 + }, + { + "#": 1482 + }, + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + }, + { + "#": 1487 + }, + { + "#": 1488 + } + ], + { + "x": 0.9793, + "y": 0.20243 + }, + { + "x": 0.80598, + "y": 0.59194 + }, + { + "x": 0.48619, + "y": 0.87386 + }, + { + "x": 0.02323, + "y": 0.99973 + }, + { + "x": -0.20243, + "y": 0.9793 + }, + { + "x": -0.59194, + "y": 0.80598 + }, + { + "x": -0.87386, + "y": 0.48619 + }, + { + "x": -0.99892, + "y": 0.04653 + }, + { + "id": "12,13,4,5", + "startCol": 12, + "endCol": 13, + "startRow": 4, + "endRow": 5 + }, + { + "id": 47, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1491 + }, + "angle": 0.02176, + "vertices": { + "#": 1492 + }, + "position": { + "#": 1497 + }, + "force": { + "#": 1498 + }, + "torque": 0, + "positionImpulse": { + "#": 1499 + }, + "constraintImpulse": { + "#": 1500 + }, + "totalContacts": 0, + "speed": 2.84225, + "angularSpeed": 0.00339, + "velocity": { + "#": 1501 + }, + "angularVelocity": 0.00339, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1502 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1503 + }, + "chamfer": null, + "bounds": { + "#": 1505 + }, + "positionPrev": { + "#": 1508 + }, + "anglePrev": 0.01837, + "axes": { + "#": 1509 + }, + "area": 1558.1254, + "mass": 1.55813, + "inverseMass": 0.6418, + "inertia": 1636.38802, + "inverseInertia": 0.00061, + "parent": { + "#": 1490 + }, + "sleepCounter": 0, + "region": { + "#": 1512 + } + }, + [ + { + "#": 1490 + } + ], + [ + { + "#": 1493 + }, + { + "#": 1494 + }, + { + "#": 1495 + }, + { + "#": 1496 + } + ], + { + "x": 635.99818, + "y": 243.6537, + "index": 0, + "body": { + "#": 1490 + }, + "isInternal": false + }, + { + "x": 672.63741, + "y": 244.45104, + "index": 1, + "body": { + "#": 1490 + }, + "isInternal": false + }, + { + "x": 671.7124, + "y": 286.95705, + "index": 2, + "body": { + "#": 1490 + }, + "isInternal": false + }, + { + "x": 635.07316, + "y": 286.15971, + "index": 3, + "body": { + "#": 1490 + }, + "isInternal": false + }, + { + "x": 653.85529, + "y": 265.30538 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.13502, + "y": 2.83904 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1504 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1506 + }, + "max": { + "#": 1507 + } + }, + { + "x": 635.07316, + "y": 243.6537 + }, + { + "x": 672.63741, + "y": 286.95705 + }, + { + "x": 653.99031, + "y": 262.46633 + }, + [ + { + "#": 1510 + }, + { + "#": 1511 + } + ], + { + "x": -0.02176, + "y": 0.99976 + }, + { + "x": -0.99976, + "y": -0.02176 + }, + { + "id": "13,14,5,5", + "startCol": 13, + "endCol": 14, + "startRow": 5, + "endRow": 5 + }, + { + "id": 48, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1514 + }, + "angle": -0.0358, + "vertices": { + "#": 1515 + }, + "position": { + "#": 1523 + }, + "force": { + "#": 1524 + }, + "torque": 0, + "positionImpulse": { + "#": 1525 + }, + "constraintImpulse": { + "#": 1526 + }, + "totalContacts": 0, + "speed": 2.78065, + "angularSpeed": 0.00496, + "velocity": { + "#": 1527 + }, + "angularVelocity": -0.00496, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1528 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1529 + }, + "chamfer": null, + "bounds": { + "#": 1531 + }, + "positionPrev": { + "#": 1534 + }, + "anglePrev": -0.03084, + "axes": { + "#": 1535 + }, + "area": 3629.79197, + "mass": 3.62979, + "inverseMass": 0.2755, + "inertia": 8421.13043, + "inverseInertia": 0.00012, + "parent": { + "#": 1513 + }, + "sleepCounter": 0, + "region": { + "#": 1543 + } + }, + [ + { + "#": 1513 + } + ], + [ + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + }, + { + "#": 1520 + }, + { + "#": 1521 + }, + { + "#": 1522 + } + ], + { + "x": 742.09639, + "y": 268.71447, + "index": 0, + "body": { + "#": 1513 + }, + "isInternal": false + }, + { + "x": 718.1075, + "y": 289.29222, + "index": 1, + "body": { + "#": 1513 + }, + "isInternal": false + }, + { + "x": 687.06353, + "y": 283.3665, + "index": 2, + "body": { + "#": 1513 + }, + "isInternal": false + }, + { + "x": 672.34018, + "y": 255.40054, + "index": 3, + "body": { + "#": 1513 + }, + "isInternal": false + }, + { + "x": 685.02527, + "y": 226.45299, + "index": 4, + "body": { + "#": 1513 + }, + "isInternal": false + }, + { + "x": 715.56581, + "y": 218.32172, + "index": 5, + "body": { + "#": 1513 + }, + "isInternal": false + }, + { + "x": 740.96527, + "y": 237.13071, + "index": 6, + "body": { + "#": 1513 + }, + "isInternal": false + }, + { + "x": 708.73771, + "y": 254.09702 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.11346, + "y": 0.02686 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.12525, + "y": 2.77783 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1530 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1532 + }, + "max": { + "#": 1533 + } + }, + { + "x": 672.21494, + "y": 218.32172 + }, + { + "x": 742.09639, + "y": 292.07005 + }, + { + "x": 708.86296, + "y": 251.31919 + }, + [ + { + "#": 1536 + }, + { + "#": 1537 + }, + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + } + ], + { + "x": 0.65108, + "y": 0.75901 + }, + { + "x": -0.1875, + "y": 0.98227 + }, + { + "x": -0.88486, + "y": 0.46586 + }, + { + "x": -0.91592, + "y": -0.40136 + }, + { + "x": -0.25728, + "y": -0.96634 + }, + { + "x": 0.59512, + "y": -0.80364 + }, + { + "x": 0.99936, + "y": -0.03579 + }, + { + "id": "14,15,4,6", + "startCol": 14, + "endCol": 15, + "startRow": 4, + "endRow": 6 + }, + { + "id": 49, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1545 + }, + "angle": -0.15981, + "vertices": { + "#": 1546 + }, + "position": { + "#": 1563 + }, + "force": { + "#": 1564 + }, + "torque": 0, + "positionImpulse": { + "#": 1565 + }, + "constraintImpulse": { + "#": 1566 + }, + "totalContacts": 0, + "speed": 2.10448, + "angularSpeed": 0.02118, + "velocity": { + "#": 1567 + }, + "angularVelocity": -0.02118, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1568 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1569 + }, + "bounds": { + "#": 1571 + }, + "positionPrev": { + "#": 1574 + }, + "anglePrev": -0.13863, + "axes": { + "#": 1575 + }, + "area": 1408.69136, + "mass": 1.40869, + "inverseMass": 0.70988, + "inertia": 1303.42798, + "inverseInertia": 0.00077, + "parent": { + "#": 1544 + }, + "sleepCounter": 0, + "region": { + "#": 1584 + } + }, + [ + { + "#": 1544 + } + ], + [ + { + "#": 1547 + }, + { + "#": 1548 + }, + { + "#": 1549 + }, + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + }, + { + "#": 1553 + }, + { + "#": 1554 + }, + { + "#": 1555 + }, + { + "#": 1556 + }, + { + "#": 1557 + }, + { + "#": 1558 + }, + { + "#": 1559 + }, + { + "#": 1560 + }, + { + "#": 1561 + }, + { + "#": 1562 + } + ], + { + "x": 740.09052, + "y": 225.52513, + "index": 0, + "body": { + "#": 1544 + }, + "isInternal": false + }, + { + "x": 740.3249, + "y": 221.26836, + "index": 1, + "body": { + "#": 1544 + }, + "isInternal": false + }, + { + "x": 742.31101, + "y": 217.49605, + "index": 2, + "body": { + "#": 1544 + }, + "isInternal": false + }, + { + "x": 745.68789, + "y": 214.89382, + "index": 3, + "body": { + "#": 1544 + }, + "isInternal": false + }, + { + "x": 764.13093, + "y": 211.52124, + "index": 4, + "body": { + "#": 1544 + }, + "isInternal": false + }, + { + "x": 768.38769, + "y": 211.75562, + "index": 5, + "body": { + "#": 1544 + }, + "isInternal": false + }, + { + "x": 772.16, + "y": 213.74173, + "index": 6, + "body": { + "#": 1544 + }, + "isInternal": false + }, + { + "x": 774.76224, + "y": 217.11861, + "index": 7, + "body": { + "#": 1544 + }, + "isInternal": false + }, + { + "x": 779.12998, + "y": 241.73593, + "index": 8, + "body": { + "#": 1544 + }, + "isInternal": false + }, + { + "x": 778.8956, + "y": 245.99269, + "index": 9, + "body": { + "#": 1544 + }, + "isInternal": false + }, + { + "x": 776.90949, + "y": 249.765, + "index": 10, + "body": { + "#": 1544 + }, + "isInternal": false + }, + { + "x": 773.53261, + "y": 252.36724, + "index": 11, + "body": { + "#": 1544 + }, + "isInternal": false + }, + { + "x": 755.08957, + "y": 255.73981, + "index": 12, + "body": { + "#": 1544 + }, + "isInternal": false + }, + { + "x": 750.83281, + "y": 255.50544, + "index": 13, + "body": { + "#": 1544 + }, + "isInternal": false + }, + { + "x": 747.0605, + "y": 253.51932, + "index": 14, + "body": { + "#": 1544 + }, + "isInternal": false + }, + { + "x": 744.45826, + "y": 250.14244, + "index": 15, + "body": { + "#": 1544 + }, + "isInternal": false + }, + { + "x": 759.61025, + "y": 233.63053 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.0387, + "y": -0.00349 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.22717, + "y": 2.09219 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1570 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1572 + }, + "max": { + "#": 1573 + } + }, + { + "x": 739.86335, + "y": 211.52124 + }, + { + "x": 779.12998, + "y": 257.832 + }, + { + "x": 759.83742, + "y": 231.53834 + }, + [ + { + "#": 1576 + }, + { + "#": 1577 + }, + { + "#": 1578 + }, + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + }, + { + "#": 1583 + } + ], + { + "x": 0.99849, + "y": 0.05498 + }, + { + "x": 0.88485, + "y": 0.46587 + }, + { + "x": 0.61039, + "y": 0.7921 + }, + { + "x": 0.17988, + "y": 0.98369 + }, + { + "x": -0.05498, + "y": 0.99849 + }, + { + "x": -0.46587, + "y": 0.88485 + }, + { + "x": -0.7921, + "y": 0.61039 + }, + { + "x": -0.98462, + "y": 0.1747 + }, + { + "id": "15,16,4,5", + "startCol": 15, + "endCol": 16, + "startRow": 4, + "endRow": 5 + }, + { + "id": 50, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1586 + }, + "angle": 0.15958, + "vertices": { + "#": 1587 + }, + "position": { + "#": 1592 + }, + "force": { + "#": 1593 + }, + "torque": 0, + "positionImpulse": { + "#": 1594 + }, + "constraintImpulse": { + "#": 1595 + }, + "totalContacts": 0, + "speed": 1.3564, + "angularSpeed": 0.02821, + "velocity": { + "#": 1596 + }, + "angularVelocity": 0.03214, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1597 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1598 + }, + "chamfer": null, + "bounds": { + "#": 1600 + }, + "positionPrev": { + "#": 1603 + }, + "anglePrev": 0.12789, + "axes": { + "#": 1604 + }, + "area": 968.99789, + "mass": 0.969, + "inverseMass": 1.03199, + "inertia": 632.11709, + "inverseInertia": 0.00158, + "parent": { + "#": 1585 + }, + "sleepCounter": 0, + "region": { + "#": 1607 + } + }, + [ + { + "#": 1585 + } + ], + [ + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + } + ], + { + "x": 24.50742, + "y": 282.80384, + "index": 0, + "body": { + "#": 1585 + }, + "isInternal": false + }, + { + "x": 57.46927, + "y": 288.10904, + "index": 1, + "body": { + "#": 1585 + }, + "isInternal": false + }, + { + "x": 52.85722, + "y": 316.76428, + "index": 2, + "body": { + "#": 1585 + }, + "isInternal": false + }, + { + "x": 19.89536, + "y": 311.45908, + "index": 3, + "body": { + "#": 1585 + }, + "isInternal": false + }, + { + "x": 38.68232, + "y": 299.78406 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.39977, + "y": 1.14948 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1599 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1601 + }, + "max": { + "#": 1602 + } + }, + { + "x": 19.89536, + "y": 282.80384 + }, + { + "x": 57.81204, + "y": 318.07666 + }, + { + "x": 38.27085, + "y": 298.64947 + }, + [ + { + "#": 1605 + }, + { + "#": 1606 + } + ], + { + "x": -0.1589, + "y": 0.98729 + }, + { + "x": -0.98729, + "y": -0.1589 + }, + { + "id": "0,1,5,6", + "startCol": 0, + "endCol": 1, + "startRow": 5, + "endRow": 6 + }, + { + "id": 51, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1609 + }, + "angle": 0.06585, + "vertices": { + "#": 1610 + }, + "position": { + "#": 1627 + }, + "force": { + "#": 1628 + }, + "torque": 0, + "positionImpulse": { + "#": 1629 + }, + "constraintImpulse": { + "#": 1630 + }, + "totalContacts": 0, + "speed": 2.1458, + "angularSpeed": 0.01436, + "velocity": { + "#": 1631 + }, + "angularVelocity": 0.01615, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1632 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1633 + }, + "bounds": { + "#": 1635 + }, + "positionPrev": { + "#": 1638 + }, + "anglePrev": 0.04962, + "axes": { + "#": 1639 + }, + "area": 2799.21421, + "mass": 2.79921, + "inverseMass": 0.35724, + "inertia": 5133.71405, + "inverseInertia": 0.00019, + "parent": { + "#": 1608 + }, + "sleepCounter": 0, + "region": { + "#": 1648 + } + }, + [ + { + "#": 1608 + } + ], + [ + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + }, + { + "#": 1614 + }, + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + }, + { + "#": 1618 + }, + { + "#": 1619 + }, + { + "#": 1620 + }, + { + "#": 1621 + }, + { + "#": 1622 + }, + { + "#": 1623 + }, + { + "#": 1624 + }, + { + "#": 1625 + }, + { + "#": 1626 + } + ], + { + "x": 106.29874, + "y": 339.31683, + "index": 0, + "body": { + "#": 1608 + }, + "isInternal": false + }, + { + "x": 105.11788, + "y": 343.41324, + "index": 1, + "body": { + "#": 1608 + }, + "isInternal": false + }, + { + "x": 102.33809, + "y": 346.64553, + "index": 2, + "body": { + "#": 1608 + }, + "isInternal": false + }, + { + "x": 98.46459, + "y": 348.42624, + "index": 3, + "body": { + "#": 1608 + }, + "isInternal": false + }, + { + "x": 61.69418, + "y": 346.39713, + "index": 4, + "body": { + "#": 1608 + }, + "isInternal": false + }, + { + "x": 57.59777, + "y": 345.21627, + "index": 5, + "body": { + "#": 1608 + }, + "isInternal": false + }, + { + "x": 54.36548, + "y": 342.43648, + "index": 6, + "body": { + "#": 1608 + }, + "isInternal": false + }, + { + "x": 52.58477, + "y": 338.56298, + "index": 7, + "body": { + "#": 1608 + }, + "isInternal": false + }, + { + "x": 54.61388, + "y": 301.79257, + "index": 8, + "body": { + "#": 1608 + }, + "isInternal": false + }, + { + "x": 55.79474, + "y": 297.69616, + "index": 9, + "body": { + "#": 1608 + }, + "isInternal": false + }, + { + "x": 58.57453, + "y": 294.46387, + "index": 10, + "body": { + "#": 1608 + }, + "isInternal": false + }, + { + "x": 62.44803, + "y": 292.68316, + "index": 11, + "body": { + "#": 1608 + }, + "isInternal": false + }, + { + "x": 99.21844, + "y": 294.71227, + "index": 12, + "body": { + "#": 1608 + }, + "isInternal": false + }, + { + "x": 103.31485, + "y": 295.89312, + "index": 13, + "body": { + "#": 1608 + }, + "isInternal": false + }, + { + "x": 106.54714, + "y": 298.67292, + "index": 14, + "body": { + "#": 1608 + }, + "isInternal": false + }, + { + "x": 108.32785, + "y": 302.54642, + "index": 15, + "body": { + "#": 1608 + }, + "isInternal": false + }, + { + "x": 80.45631, + "y": 320.5547 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.20069, + "y": 0.42449 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.07705, + "y": 2.05915 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1634 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1636 + }, + "max": { + "#": 1637 + } + }, + { + "x": 52.58477, + "y": 292.68316 + }, + { + "x": 108.41174, + "y": 350.5704 + }, + { + "x": 80.37203, + "y": 318.49496 + }, + [ + { + "#": 1640 + }, + { + "#": 1641 + }, + { + "#": 1642 + }, + { + "#": 1643 + }, + { + "#": 1644 + }, + { + "#": 1645 + }, + { + "#": 1646 + }, + { + "#": 1647 + } + ], + { + "x": -0.96087, + "y": -0.27699 + }, + { + "x": -0.75818, + "y": -0.65204 + }, + { + "x": -0.41769, + "y": -0.90859 + }, + { + "x": 0.0551, + "y": -0.99848 + }, + { + "x": 0.27699, + "y": -0.96087 + }, + { + "x": 0.65204, + "y": -0.75818 + }, + { + "x": 0.90859, + "y": -0.41769 + }, + { + "x": 0.99848, + "y": 0.0551 + }, + { + "id": "1,2,6,7", + "startCol": 1, + "endCol": 2, + "startRow": 6, + "endRow": 7 + }, + { + "id": 52, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1650 + }, + "angle": 0.01826, + "vertices": { + "#": 1651 + }, + "position": { + "#": 1656 + }, + "force": { + "#": 1657 + }, + "torque": 0, + "positionImpulse": { + "#": 1658 + }, + "constraintImpulse": { + "#": 1659 + }, + "totalContacts": 0, + "speed": 2.65729, + "angularSpeed": 0.00482, + "velocity": { + "#": 1660 + }, + "angularVelocity": 0.0044, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1661 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1662 + }, + "chamfer": null, + "bounds": { + "#": 1664 + }, + "positionPrev": { + "#": 1667 + }, + "anglePrev": 0.01377, + "axes": { + "#": 1668 + }, + "area": 1295.03569, + "mass": 1.29504, + "inverseMass": 0.77218, + "inertia": 1143.5393, + "inverseInertia": 0.00087, + "parent": { + "#": 1649 + }, + "sleepCounter": 0, + "region": { + "#": 1671 + } + }, + [ + { + "#": 1649 + } + ], + [ + { + "#": 1652 + }, + { + "#": 1653 + }, + { + "#": 1654 + }, + { + "#": 1655 + } + ], + { + "x": 107.89438, + "y": 293.19307, + "index": 0, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 147.91857, + "y": 293.92411, + "index": 1, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 147.32778, + "y": 326.26965, + "index": 2, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 107.30359, + "y": 325.5386, + "index": 3, + "body": { + "#": 1649 + }, + "isInternal": false + }, + { + "x": 127.61108, + "y": 309.73136 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.38935, + "y": 0.00474 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.345, + "y": 2.59804 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1663 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1665 + }, + "max": { + "#": 1666 + } + }, + { + "x": 107.30359, + "y": 293.19307 + }, + { + "x": 148.23141, + "y": 328.90846 + }, + { + "x": 127.25048, + "y": 307.13079 + }, + [ + { + "#": 1669 + }, + { + "#": 1670 + } + ], + { + "x": -0.01826, + "y": 0.99983 + }, + { + "x": -0.99983, + "y": -0.01826 + }, + { + "id": "2,3,6,6", + "startCol": 2, + "endCol": 3, + "startRow": 6, + "endRow": 6 + }, + { + "id": 53, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1673 + }, + "angle": 0.01255, + "vertices": { + "#": 1674 + }, + "position": { + "#": 1679 + }, + "force": { + "#": 1680 + }, + "torque": 0, + "positionImpulse": { + "#": 1681 + }, + "constraintImpulse": { + "#": 1682 + }, + "totalContacts": 0, + "speed": 2.8755, + "angularSpeed": 0.00375, + "velocity": { + "#": 1683 + }, + "angularVelocity": 0.00469, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1684 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1685 + }, + "chamfer": null, + "bounds": { + "#": 1687 + }, + "positionPrev": { + "#": 1690 + }, + "anglePrev": 0.00789, + "axes": { + "#": 1691 + }, + "area": 4450.49094, + "mass": 4.45049, + "inverseMass": 0.22469, + "inertia": 13204.57976, + "inverseInertia": 0.00008, + "parent": { + "#": 1672 + }, + "sleepCounter": 0, + "region": { + "#": 1694 + } + }, + [ + { + "#": 1672 + } + ], + [ + { + "#": 1675 + }, + { + "#": 1676 + }, + { + "#": 1677 + }, + { + "#": 1678 + } + ], + { + "x": 213.24498, + "y": 361.50932, + "index": 0, + "body": { + "#": 1672 + }, + "isInternal": false + }, + { + "x": 146.53824, + "y": 360.67178, + "index": 1, + "body": { + "#": 1672 + }, + "isInternal": false + }, + { + "x": 147.37578, + "y": 293.96504, + "index": 2, + "body": { + "#": 1672 + }, + "isInternal": false + }, + { + "x": 214.08252, + "y": 294.80258, + "index": 3, + "body": { + "#": 1672 + }, + "isInternal": false + }, + { + "x": 180.31038, + "y": 327.73718 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.53892, + "y": 0.01202 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.28636, + "y": 2.84636 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1686 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1688 + }, + "max": { + "#": 1689 + } + }, + { + "x": 146.53824, + "y": 293.96504 + }, + { + "x": 214.32843, + "y": 364.37428 + }, + { + "x": 180.02856, + "y": 324.89156 + }, + [ + { + "#": 1692 + }, + { + "#": 1693 + } + ], + { + "x": 0.01255, + "y": -0.99992 + }, + { + "x": 0.99992, + "y": 0.01255 + }, + { + "id": "3,4,6,7", + "startCol": 3, + "endCol": 4, + "startRow": 6, + "endRow": 7 + }, + { + "id": 54, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1696 + }, + "angle": 0.00171, + "vertices": { + "#": 1697 + }, + "position": { + "#": 1722 + }, + "force": { + "#": 1723 + }, + "torque": 0, + "positionImpulse": { + "#": 1724 + }, + "constraintImpulse": { + "#": 1725 + }, + "totalContacts": 0, + "speed": 3.0184, + "angularSpeed": 0.00054, + "velocity": { + "#": 1726 + }, + "angularVelocity": 0.00062, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1727 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1728 + }, + "bounds": { + "#": 1730 + }, + "positionPrev": { + "#": 1733 + }, + "anglePrev": 0.0011, + "axes": { + "#": 1734 + }, + "area": 5038.30722, + "mass": 5.03831, + "inverseMass": 0.19848, + "inertia": 16255.67982, + "inverseInertia": 0.00006, + "parent": { + "#": 1695 + }, + "sleepCounter": 0, + "region": { + "#": 1747 + } + }, + [ + { + "#": 1695 + } + ], + [ + { + "#": 1698 + }, + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + }, + { + "#": 1703 + }, + { + "#": 1704 + }, + { + "#": 1705 + }, + { + "#": 1706 + }, + { + "#": 1707 + }, + { + "#": 1708 + }, + { + "#": 1709 + }, + { + "#": 1710 + }, + { + "#": 1711 + }, + { + "#": 1712 + }, + { + "#": 1713 + }, + { + "#": 1714 + }, + { + "#": 1715 + }, + { + "#": 1716 + }, + { + "#": 1717 + }, + { + "#": 1718 + }, + { + "#": 1719 + }, + { + "#": 1720 + }, + { + "#": 1721 + } + ], + { + "x": 289.93193, + "y": 354.2401, + "index": 0, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 289.51976, + "y": 357.06449, + "index": 1, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 288.32647, + "y": 359.65739, + "index": 2, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 286.44927, + "y": 361.80754, + "index": 3, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 256.55091, + "y": 379.20528, + "index": 4, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 253.89875, + "y": 380.26058, + "index": 5, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 251.05649, + "y": 380.5236, + "index": 6, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 248.25571, + "y": 379.97293, + "index": 7, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 218.24014, + "y": 362.77807, + "index": 8, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 216.00026, + "y": 361.00891, + "index": 9, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 214.35142, + "y": 358.67902, + "index": 10, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 213.42796, + "y": 355.97823, + "index": 11, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 213.31082, + "y": 321.3874, + "index": 12, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 213.72298, + "y": 318.56302, + "index": 13, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 214.91628, + "y": 315.97012, + "index": 14, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 216.79347, + "y": 313.81996, + "index": 15, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 246.69183, + "y": 296.42223, + "index": 16, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 249.34399, + "y": 295.36693, + "index": 17, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 252.18625, + "y": 295.1039, + "index": 18, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 254.98703, + "y": 295.65458, + "index": 19, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 285.0026, + "y": 312.84943, + "index": 20, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 287.24248, + "y": 314.6186, + "index": 21, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 288.89132, + "y": 316.94849, + "index": 22, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 289.81478, + "y": 319.64928, + "index": 23, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 251.62137, + "y": 337.81375 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.63599, + "y": 0.03234 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.31522, + "y": 3.02758 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1729 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1731 + }, + "max": { + "#": 1732 + } + }, + { + "x": 213.31082, + "y": 295.1039 + }, + { + "x": 290.1978, + "y": 383.53027 + }, + { + "x": 251.30951, + "y": 334.78659 + }, + [ + { + "#": 1735 + }, + { + "#": 1736 + }, + { + "#": 1737 + }, + { + "#": 1738 + }, + { + "#": 1739 + }, + { + "#": 1740 + }, + { + "#": 1741 + }, + { + "#": 1742 + }, + { + "#": 1743 + }, + { + "#": 1744 + }, + { + "#": 1745 + }, + { + "#": 1746 + } + ], + { + "x": -0.98952, + "y": -0.1444 + }, + { + "x": -0.90842, + "y": -0.41807 + }, + { + "x": -0.7533, + "y": -0.65767 + }, + { + "x": -0.50294, + "y": -0.86432 + }, + { + "x": -0.36971, + "y": -0.92915 + }, + { + "x": -0.09215, + "y": -0.99575 + }, + { + "x": 0.19292, + "y": -0.98121 + }, + { + "x": 0.49708, + "y": -0.86771 + }, + { + "x": 0.61983, + "y": -0.78474 + }, + { + "x": 0.81627, + "y": -0.57767 + }, + { + "x": 0.94622, + "y": -0.32353 + }, + { + "x": 0.99999, + "y": -0.00339 + }, + { + "id": "4,6,6,7", + "startCol": 4, + "endCol": 6, + "startRow": 6, + "endRow": 7 + }, + { + "id": 55, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1749 + }, + "angle": -0.00611, + "vertices": { + "#": 1750 + }, + "position": { + "#": 1771 + }, + "force": { + "#": 1772 + }, + "torque": 0, + "positionImpulse": { + "#": 1773 + }, + "constraintImpulse": { + "#": 1774 + }, + "totalContacts": 0, + "speed": 2.97568, + "angularSpeed": 0.00202, + "velocity": { + "#": 1775 + }, + "angularVelocity": -0.00244, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1776 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1777 + }, + "bounds": { + "#": 1779 + }, + "positionPrev": { + "#": 1782 + }, + "anglePrev": -0.00368, + "axes": { + "#": 1783 + }, + "area": 2586.15385, + "mass": 2.58615, + "inverseMass": 0.38667, + "inertia": 4301.69896, + "inverseInertia": 0.00023, + "parent": { + "#": 1748 + }, + "sleepCounter": 0, + "region": { + "#": 1804 + } + }, + [ + { + "#": 1748 + } + ], + [ + { + "#": 1751 + }, + { + "#": 1752 + }, + { + "#": 1753 + }, + { + "#": 1754 + }, + { + "#": 1755 + }, + { + "#": 1756 + }, + { + "#": 1757 + }, + { + "#": 1758 + }, + { + "#": 1759 + }, + { + "#": 1760 + }, + { + "#": 1761 + }, + { + "#": 1762 + }, + { + "#": 1763 + }, + { + "#": 1764 + }, + { + "#": 1765 + }, + { + "#": 1766 + }, + { + "#": 1767 + }, + { + "#": 1768 + }, + { + "#": 1769 + }, + { + "#": 1770 + } + ], + { + "x": 347.67165, + "y": 337.10064, + "index": 0, + "body": { + "#": 1748 + }, + "isInternal": false + }, + { + "x": 347.1074, + "y": 340.47381, + "index": 1, + "body": { + "#": 1748 + }, + "isInternal": false + }, + { + "x": 345.43951, + "y": 343.45957, + "index": 2, + "body": { + "#": 1748 + }, + "isInternal": false + }, + { + "x": 342.86306, + "y": 345.70869, + "index": 3, + "body": { + "#": 1748 + }, + "isInternal": false + }, + { + "x": 317.31568, + "y": 354.44942, + "index": 4, + "body": { + "#": 1748 + }, + "isInternal": false + }, + { + "x": 313.93319, + "y": 354.95517, + "index": 5, + "body": { + "#": 1748 + }, + "isInternal": false + }, + { + "x": 310.5781, + "y": 354.29154, + "index": 6, + "body": { + "#": 1748 + }, + "isInternal": false + }, + { + "x": 307.64286, + "y": 352.53616, + "index": 7, + "body": { + "#": 1748 + }, + "isInternal": false + }, + { + "x": 291.43613, + "y": 330.94018, + "index": 8, + "body": { + "#": 1748 + }, + "isInternal": false + }, + { + "x": 289.90997, + "y": 327.8796, + "index": 9, + "body": { + "#": 1748 + }, + "isInternal": false + }, + { + "x": 289.50435, + "y": 324.48375, + "index": 10, + "body": { + "#": 1748 + }, + "isInternal": false + }, + { + "x": 290.26672, + "y": 321.14981, + "index": 11, + "body": { + "#": 1748 + }, + "isInternal": false + }, + { + "x": 305.79682, + "y": 299.06232, + "index": 12, + "body": { + "#": 1748 + }, + "isInternal": false + }, + { + "x": 308.23603, + "y": 296.66497, + "index": 13, + "body": { + "#": 1748 + }, + "isInternal": false + }, + { + "x": 311.34041, + "y": 295.22977, + "index": 14, + "body": { + "#": 1748 + }, + "isInternal": false + }, + { + "x": 314.74685, + "y": 294.92459, + "index": 15, + "body": { + "#": 1748 + }, + "isInternal": false + }, + { + "x": 340.55272, + "y": 302.86994, + "index": 16, + "body": { + "#": 1748 + }, + "isInternal": false + }, + { + "x": 343.58642, + "y": 304.44895, + "index": 17, + "body": { + "#": 1748 + }, + "isInternal": false + }, + { + "x": 345.91063, + "y": 306.95787, + "index": 18, + "body": { + "#": 1748 + }, + "isInternal": false + }, + { + "x": 347.2535, + "y": 310.10324, + "index": 19, + "body": { + "#": 1748 + }, + "isInternal": false + }, + { + "x": 320.55463, + "y": 324.8845 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.70525, + "y": 0.0121 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.31931, + "y": 2.97505 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1778 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1780 + }, + "max": { + "#": 1781 + } + }, + { + "x": 289.50435, + "y": 294.92459 + }, + { + "x": 347.94147, + "y": 357.9186 + }, + { + "x": 320.23322, + "y": 321.91001 + }, + [ + { + "#": 1784 + }, + { + "#": 1785 + }, + { + "#": 1786 + }, + { + "#": 1787 + }, + { + "#": 1788 + }, + { + "#": 1789 + }, + { + "#": 1790 + }, + { + "#": 1791 + }, + { + "#": 1792 + }, + { + "#": 1793 + }, + { + "#": 1794 + }, + { + "#": 1795 + }, + { + "#": 1796 + }, + { + "#": 1797 + }, + { + "#": 1798 + }, + { + "#": 1799 + }, + { + "#": 1800 + }, + { + "#": 1801 + }, + { + "#": 1802 + }, + { + "#": 1803 + } + ], + { + "x": 0.9863, + "y": 0.16498 + }, + { + "x": 0.87302, + "y": 0.48768 + }, + { + "x": 0.65763, + "y": 0.75334 + }, + { + "x": 0.32372, + "y": 0.94615 + }, + { + "x": 0.14788, + "y": 0.98901 + }, + { + "x": -0.19404, + "y": 0.98099 + }, + { + "x": -0.51326, + "y": 0.85824 + }, + { + "x": -0.79983, + "y": 0.60023 + }, + { + "x": -0.89491, + "y": 0.44625 + }, + { + "x": -0.99294, + "y": 0.1186 + }, + { + "x": -0.97484, + "y": -0.22292 + }, + { + "x": -0.81803, + "y": -0.57517 + }, + { + "x": -0.70096, + "y": -0.7132 + }, + { + "x": -0.41964, + "y": -0.90769 + }, + { + "x": -0.08923, + "y": -0.99601 + }, + { + "x": 0.29426, + "y": -0.95573 + }, + { + "x": 0.46169, + "y": -0.88704 + }, + { + "x": 0.73359, + "y": -0.67959 + }, + { + "x": 0.91969, + "y": -0.39265 + }, + { + "x": 0.99988, + "y": -0.01549 + }, + { + "id": "6,7,6,7", + "startCol": 6, + "endCol": 7, + "startRow": 6, + "endRow": 7 + }, + { + "id": 56, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1806 + }, + "angle": -0.0043, + "vertices": { + "#": 1807 + }, + "position": { + "#": 1812 + }, + "force": { + "#": 1813 + }, + "torque": 0, + "positionImpulse": { + "#": 1814 + }, + "constraintImpulse": { + "#": 1815 + }, + "totalContacts": 0, + "speed": 2.89782, + "angularSpeed": 0.00085, + "velocity": { + "#": 1816 + }, + "angularVelocity": -0.00087, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1817 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1818 + }, + "chamfer": null, + "bounds": { + "#": 1820 + }, + "positionPrev": { + "#": 1823 + }, + "anglePrev": -0.00341, + "axes": { + "#": 1824 + }, + "area": 1290.97949, + "mass": 1.29098, + "inverseMass": 0.77461, + "inertia": 1336.11655, + "inverseInertia": 0.00075, + "parent": { + "#": 1805 + }, + "sleepCounter": 0, + "region": { + "#": 1827 + } + }, + [ + { + "#": 1805 + } + ], + [ + { + "#": 1808 + }, + { + "#": 1809 + }, + { + "#": 1810 + }, + { + "#": 1811 + } + ], + { + "x": 347.08851, + "y": 294.36255, + "index": 0, + "body": { + "#": 1805 + }, + "isInternal": false + }, + { + "x": 396.2275, + "y": 294.15133, + "index": 1, + "body": { + "#": 1805 + }, + "isInternal": false + }, + { + "x": 396.34043, + "y": 320.42284, + "index": 2, + "body": { + "#": 1805 + }, + "isInternal": false + }, + { + "x": 347.20143, + "y": 320.63406, + "index": 3, + "body": { + "#": 1805 + }, + "isInternal": false + }, + { + "x": 371.71447, + "y": 307.39269 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.74566, + "y": -0.01159 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.29158, + "y": 2.88698 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1819 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1821 + }, + "max": { + "#": 1822 + } + }, + { + "x": 347.08851, + "y": 294.15133 + }, + { + "x": 396.58423, + "y": 323.5216 + }, + { + "x": 371.42351, + "y": 304.50647 + }, + [ + { + "#": 1825 + }, + { + "#": 1826 + } + ], + { + "x": 0.0043, + "y": 0.99999 + }, + { + "x": -0.99999, + "y": 0.0043 + }, + { + "id": "7,8,6,6", + "startCol": 7, + "endCol": 8, + "startRow": 6, + "endRow": 6 + }, + { + "id": 57, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1829 + }, + "angle": 0.00019, + "vertices": { + "#": 1830 + }, + "position": { + "#": 1835 + }, + "force": { + "#": 1836 + }, + "torque": 0, + "positionImpulse": { + "#": 1837 + }, + "constraintImpulse": { + "#": 1838 + }, + "totalContacts": 0, + "speed": 2.87226, + "angularSpeed": 0.00006, + "velocity": { + "#": 1839 + }, + "angularVelocity": -0.00013, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1840 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1841 + }, + "chamfer": null, + "bounds": { + "#": 1843 + }, + "positionPrev": { + "#": 1846 + }, + "anglePrev": 0.00033, + "axes": { + "#": 1847 + }, + "area": 3447.1358, + "mass": 3.44714, + "inverseMass": 0.2901, + "inertia": 17066.1747, + "inverseInertia": 0.00006, + "parent": { + "#": 1828 + }, + "sleepCounter": 0, + "region": { + "#": 1850 + } + }, + [ + { + "#": 1828 + } + ], + [ + { + "#": 1831 + }, + { + "#": 1832 + }, + { + "#": 1833 + }, + { + "#": 1834 + } + ], + { + "x": 396.21054, + "y": 284.15333, + "index": 0, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 514.54885, + "y": 284.17613, + "index": 1, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 514.54324, + "y": 313.30563, + "index": 2, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 396.20493, + "y": 313.28283, + "index": 3, + "body": { + "#": 1828 + }, + "isInternal": false + }, + { + "x": 455.37689, + "y": 298.72948 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.76264, + "y": -0.00173 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.29301, + "y": 2.85554 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1842 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1844 + }, + "max": { + "#": 1845 + } + }, + { + "x": 396.20493, + "y": 284.15333 + }, + { + "x": 514.78946, + "y": 316.16779 + }, + { + "x": 455.08365, + "y": 295.87366 + }, + [ + { + "#": 1848 + }, + { + "#": 1849 + } + ], + { + "x": -0.00019, + "y": 1 + }, + { + "x": -1, + "y": -0.00019 + }, + { + "id": "8,10,5,6", + "startCol": 8, + "endCol": 10, + "startRow": 5, + "endRow": 6 + }, + { + "id": 58, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1852 + }, + "angle": 0.00098, + "vertices": { + "#": 1853 + }, + "position": { + "#": 1880 + }, + "force": { + "#": 1881 + }, + "torque": 0, + "positionImpulse": { + "#": 1882 + }, + "constraintImpulse": { + "#": 1883 + }, + "totalContacts": 0, + "speed": 2.91287, + "angularSpeed": 0.00014, + "velocity": { + "#": 1884 + }, + "angularVelocity": 0.00014, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1885 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1886 + }, + "chamfer": null, + "circleRadius": 42.97561, + "bounds": { + "#": 1888 + }, + "positionPrev": { + "#": 1891 + }, + "anglePrev": 0.00084, + "axes": { + "#": 1892 + }, + "area": 5745.91602, + "mass": 5.74592, + "inverseMass": 0.17404, + "inertia": 21018.75357, + "inverseInertia": 0.00005, + "parent": { + "#": 1851 + }, + "sleepCounter": 0, + "region": { + "#": 1906 + } + }, + [ + { + "#": 1851 + } + ], + [ + { + "#": 1854 + }, + { + "#": 1855 + }, + { + "#": 1856 + }, + { + "#": 1857 + }, + { + "#": 1858 + }, + { + "#": 1859 + }, + { + "#": 1860 + }, + { + "#": 1861 + }, + { + "#": 1862 + }, + { + "#": 1863 + }, + { + "#": 1864 + }, + { + "#": 1865 + }, + { + "#": 1866 + }, + { + "#": 1867 + }, + { + "#": 1868 + }, + { + "#": 1869 + }, + { + "#": 1870 + }, + { + "#": 1871 + }, + { + "#": 1872 + }, + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + }, + { + "#": 1877 + }, + { + "#": 1878 + }, + { + "#": 1879 + } + ], + { + "x": 555.44798, + "y": 379.65396, + "index": 0, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 552.95911, + "y": 389.71052, + "index": 1, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 548.1351, + "y": 398.87979, + "index": 2, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 541.25749, + "y": 406.62804, + "index": 3, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 532.72572, + "y": 412.50467, + "index": 4, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 523.03512, + "y": 416.16916, + "index": 5, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 512.7489, + "y": 417.40806, + "index": 6, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 502.46513, + "y": 416.14897, + "index": 7, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 492.78174, + "y": 412.46546, + "index": 8, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 484.26152, + "y": 406.57209, + "index": 9, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 477.39914, + "y": 398.81035, + "index": 10, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 472.59315, + "y": 389.63163, + "index": 11, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 470.12402, + "y": 379.5702, + "index": 12, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 470.13419, + "y": 369.2102, + "index": 13, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 472.62307, + "y": 359.15364, + "index": 14, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 477.44707, + "y": 349.98437, + "index": 15, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 484.32468, + "y": 342.23612, + "index": 16, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 492.85645, + "y": 336.35949, + "index": 17, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 502.54706, + "y": 332.69501, + "index": 18, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 512.83328, + "y": 331.4561, + "index": 19, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 523.11705, + "y": 332.7152, + "index": 20, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 532.80043, + "y": 336.39871, + "index": 21, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 541.32065, + "y": 342.29208, + "index": 22, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 548.18304, + "y": 350.05382, + "index": 23, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 552.98903, + "y": 359.23254, + "index": 24, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 555.45815, + "y": 369.29397, + "index": 25, + "body": { + "#": 1851 + }, + "isInternal": false + }, + { + "x": 512.79109, + "y": 374.43208 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.75442, + "y": 1.17857 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.02335, + "y": 2.91278 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1887 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1889 + }, + "max": { + "#": 1890 + } + }, + { + "x": 470.10068, + "y": 331.4561 + }, + { + "x": 555.45815, + "y": 420.32084 + }, + { + "x": 512.81443, + "y": 371.51931 + }, + [ + { + "#": 1893 + }, + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + }, + { + "#": 1901 + }, + { + "#": 1902 + }, + { + "#": 1903 + }, + { + "#": 1904 + }, + { + "#": 1905 + } + ], + { + "x": -0.97071, + "y": -0.24024 + }, + { + "x": -0.88499, + "y": -0.4656 + }, + { + "x": -0.74788, + "y": -0.66384 + }, + { + "x": -0.56725, + "y": -0.82354 + }, + { + "x": -0.3537, + "y": -0.93536 + }, + { + "x": -0.11958, + "y": -0.99282 + }, + { + "x": 0.12153, + "y": -0.99259 + }, + { + "x": 0.35554, + "y": -0.93466 + }, + { + "x": 0.56887, + "y": -0.82243 + }, + { + "x": 0.74918, + "y": -0.66237 + }, + { + "x": 0.88591, + "y": -0.46386 + }, + { + "x": 0.97118, + "y": -0.23833 + }, + { + "x": 1, + "y": 0.00098 + }, + { + "id": "9,11,6,8", + "startCol": 9, + "endCol": 11, + "startRow": 6, + "endRow": 8 + }, + { + "id": 59, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1908 + }, + "angle": -0.00471, + "vertices": { + "#": 1909 + }, + "position": { + "#": 1936 + }, + "force": { + "#": 1937 + }, + "torque": 0, + "positionImpulse": { + "#": 1938 + }, + "constraintImpulse": { + "#": 1939 + }, + "totalContacts": 0, + "speed": 2.88611, + "angularSpeed": 0.00058, + "velocity": { + "#": 1940 + }, + "angularVelocity": -0.00058, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1941 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1942 + }, + "chamfer": null, + "circleRadius": 42.97861, + "bounds": { + "#": 1944 + }, + "positionPrev": { + "#": 1947 + }, + "anglePrev": -0.00413, + "axes": { + "#": 1948 + }, + "area": 5746.74295, + "mass": 5.74674, + "inverseMass": 0.17401, + "inertia": 21024.80385, + "inverseInertia": 0.00005, + "parent": { + "#": 1907 + }, + "sleepCounter": 0, + "region": { + "#": 1962 + } + }, + [ + { + "#": 1907 + } + ], + [ + { + "#": 1910 + }, + { + "#": 1911 + }, + { + "#": 1912 + }, + { + "#": 1913 + }, + { + "#": 1914 + }, + { + "#": 1915 + }, + { + "#": 1916 + }, + { + "#": 1917 + }, + { + "#": 1918 + }, + { + "#": 1919 + }, + { + "#": 1920 + }, + { + "#": 1921 + }, + { + "#": 1922 + }, + { + "#": 1923 + }, + { + "#": 1924 + }, + { + "#": 1925 + }, + { + "#": 1926 + }, + { + "#": 1927 + }, + { + "#": 1928 + }, + { + "#": 1929 + }, + { + "#": 1930 + }, + { + "#": 1931 + }, + { + "#": 1932 + }, + { + "#": 1933 + }, + { + "#": 1934 + }, + { + "#": 1935 + } + ], + { + "x": 648.93813, + "y": 390.35915, + "index": 0, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 646.50656, + "y": 400.43072, + "index": 1, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 641.73484, + "y": 409.62831, + "index": 2, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 634.90046, + "y": 417.4156, + "index": 3, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 626.40129, + "y": 423.34171, + "index": 4, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 616.7307, + "y": 427.06132, + "index": 5, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 606.4517, + "y": 428.35876, + "index": 6, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 596.16093, + "y": 427.15824, + "index": 7, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 586.45573, + "y": 423.52993, + "index": 8, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 577.90109, + "y": 417.68417, + "index": 9, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 570.99363, + "y": 409.96163, + "index": 10, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 566.13545, + "y": 400.80942, + "index": 11, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 563.60907, + "y": 390.76121, + "index": 12, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 563.56026, + "y": 380.40133, + "index": 13, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 565.99183, + "y": 370.32976, + "index": 14, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 570.76355, + "y": 361.13217, + "index": 15, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 577.59793, + "y": 353.34489, + "index": 16, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 586.0971, + "y": 347.41877, + "index": 17, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 595.76768, + "y": 343.69917, + "index": 18, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 606.04668, + "y": 342.40172, + "index": 19, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 616.33745, + "y": 343.60224, + "index": 20, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 626.04266, + "y": 347.23055, + "index": 21, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 634.5973, + "y": 353.07631, + "index": 22, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 641.50476, + "y": 360.79885, + "index": 23, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 646.36294, + "y": 369.95106, + "index": 24, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 648.88931, + "y": 379.99927, + "index": 25, + "body": { + "#": 1907 + }, + "isInternal": false + }, + { + "x": 606.24919, + "y": 385.38024 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.26116, + "y": 1.17062 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01867, + "y": 2.88605 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1943 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1945 + }, + "max": { + "#": 1946 + } + }, + { + "x": 563.54159, + "y": 342.40172 + }, + { + "x": 648.93813, + "y": 431.24481 + }, + { + "x": 606.26786, + "y": 382.4942 + }, + [ + { + "#": 1949 + }, + { + "#": 1950 + }, + { + "#": 1951 + }, + { + "#": 1952 + }, + { + "#": 1953 + }, + { + "#": 1954 + }, + { + "#": 1955 + }, + { + "#": 1956 + }, + { + "#": 1957 + }, + { + "#": 1958 + }, + { + "#": 1959 + }, + { + "#": 1960 + }, + { + "#": 1961 + } + ], + { + "x": -0.97207, + "y": -0.23469 + }, + { + "x": -0.88765, + "y": -0.46051 + }, + { + "x": -0.7516, + "y": -0.65962 + }, + { + "x": -0.57195, + "y": -0.82029 + }, + { + "x": -0.35899, + "y": -0.93334 + }, + { + "x": -0.12523, + "y": -0.99213 + }, + { + "x": 0.11587, + "y": -0.99326 + }, + { + "x": 0.35018, + "y": -0.93668 + }, + { + "x": 0.5642, + "y": -0.82564 + }, + { + "x": 0.74535, + "y": -0.66668 + }, + { + "x": 0.88327, + "y": -0.46886 + }, + { + "x": 0.96982, + "y": -0.24384 + }, + { + "x": 0.99999, + "y": -0.00471 + }, + { + "id": "11,13,7,8", + "startCol": 11, + "endCol": 13, + "startRow": 7, + "endRow": 8 + }, + { + "id": 60, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1964 + }, + "angle": -0.01009, + "vertices": { + "#": 1965 + }, + "position": { + "#": 1971 + }, + "force": { + "#": 1972 + }, + "torque": 0, + "positionImpulse": { + "#": 1973 + }, + "constraintImpulse": { + "#": 1974 + }, + "totalContacts": 0, + "speed": 2.81136, + "angularSpeed": 0.00133, + "velocity": { + "#": 1975 + }, + "angularVelocity": -0.00133, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1976 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1977 + }, + "chamfer": null, + "bounds": { + "#": 1979 + }, + "positionPrev": { + "#": 1982 + }, + "anglePrev": -0.00876, + "axes": { + "#": 1983 + }, + "area": 3203.03074, + "mass": 3.20303, + "inverseMass": 0.3122, + "inertia": 6642.19697, + "inverseInertia": 0.00015, + "parent": { + "#": 1963 + }, + "sleepCounter": 0, + "region": { + "#": 1989 + } + }, + [ + { + "#": 1963 + } + ], + [ + { + "#": 1966 + }, + { + "#": 1967 + }, + { + "#": 1968 + }, + { + "#": 1969 + }, + { + "#": 1970 + } + ], + { + "x": 689.28777, + "y": 348.51032, + "index": 0, + "body": { + "#": 1963 + }, + "isInternal": false + }, + { + "x": 648.38838, + "y": 362.25668, + "index": 1, + "body": { + "#": 1963 + }, + "isInternal": false + }, + { + "x": 622.67648, + "y": 327.60734, + "index": 2, + "body": { + "#": 1963 + }, + "isInternal": false + }, + { + "x": 647.68399, + "y": 292.44623, + "index": 3, + "body": { + "#": 1963 + }, + "isInternal": false + }, + { + "x": 688.85242, + "y": 305.36452, + "index": 4, + "body": { + "#": 1963 + }, + "isInternal": false + }, + { + "x": 659.37794, + "y": 327.23702 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.58659, + "y": 1.32505 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.11208, + "y": 2.80912 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1978 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1980 + }, + "max": { + "#": 1981 + } + }, + { + "x": 622.5644, + "y": 292.44623 + }, + { + "x": 689.28777, + "y": 365.0658 + }, + { + "x": 659.49001, + "y": 324.4279 + }, + [ + { + "#": 1984 + }, + { + "#": 1985 + }, + { + "#": 1986 + }, + { + "#": 1987 + }, + { + "#": 1988 + } + ], + { + "x": 0.31859, + "y": 0.94789 + }, + { + "x": -0.80305, + "y": 0.59591 + }, + { + "x": -0.81491, + "y": -0.57959 + }, + { + "x": 0.2994, + "y": -0.95413 + }, + { + "x": 0.99995, + "y": -0.01009 + }, + { + "id": "12,14,6,7", + "startCol": 12, + "endCol": 14, + "startRow": 6, + "endRow": 7 + }, + { + "id": 61, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1991 + }, + "angle": -0.06019, + "vertices": { + "#": 1992 + }, + "position": { + "#": 2021 + }, + "force": { + "#": 2022 + }, + "torque": 0, + "positionImpulse": { + "#": 2023 + }, + "constraintImpulse": { + "#": 2024 + }, + "totalContacts": 0, + "speed": 2.41148, + "angularSpeed": 0.00749, + "velocity": { + "#": 2025 + }, + "angularVelocity": -0.00749, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2026 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2027 + }, + "bounds": { + "#": 2029 + }, + "positionPrev": { + "#": 2032 + }, + "anglePrev": -0.0527, + "axes": { + "#": 2033 + }, + "area": 5067.67028, + "mass": 5.06767, + "inverseMass": 0.19733, + "inertia": 16399.5836, + "inverseInertia": 0.00006, + "parent": { + "#": 1990 + }, + "sleepCounter": 0, + "region": { + "#": 2062 + } + }, + [ + { + "#": 1990 + } + ], + [ + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + }, + { + "#": 1996 + }, + { + "#": 1997 + }, + { + "#": 1998 + }, + { + "#": 1999 + }, + { + "#": 2000 + }, + { + "#": 2001 + }, + { + "#": 2002 + }, + { + "#": 2003 + }, + { + "#": 2004 + }, + { + "#": 2005 + }, + { + "#": 2006 + }, + { + "#": 2007 + }, + { + "#": 2008 + }, + { + "#": 2009 + }, + { + "#": 2010 + }, + { + "#": 2011 + }, + { + "#": 2012 + }, + { + "#": 2013 + }, + { + "#": 2014 + }, + { + "#": 2015 + }, + { + "#": 2016 + }, + { + "#": 2017 + }, + { + "#": 2018 + }, + { + "#": 2019 + }, + { + "#": 2020 + } + ], + { + "x": 776.73429, + "y": 343.27987, + "index": 0, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 776.58118, + "y": 345.72394, + "index": 1, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 775.83865, + "y": 348.05752, + "index": 2, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 774.55122, + "y": 350.14066, + "index": 3, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 752.75283, + "y": 369.95484, + "index": 4, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 750.74664, + "y": 371.35885, + "index": 5, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 748.45939, + "y": 372.23322, + "index": 6, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 746.02821, + "y": 372.52551, + "index": 7, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 716.94616, + "y": 367.83846, + "index": 8, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 714.59745, + "y": 367.14538, + "index": 9, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 712.48761, + "y": 365.90226, + "index": 10, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 710.74316, + "y": 364.18363, + "index": 11, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 696.27546, + "y": 338.52317, + "index": 12, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 695.35297, + "y": 336.25476, + "index": 13, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 695.00944, + "y": 333.83017, + "index": 14, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 695.26549, + "y": 331.39478, + "index": 15, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 706.30727, + "y": 304.08449, + "index": 16, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 707.50564, + "y": 301.94892, + "index": 17, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 709.18712, + "y": 300.16863, + "index": 18, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 711.25085, + "y": 298.85039, + "index": 19, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 739.48697, + "y": 290.45623, + "index": 20, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 741.90365, + "y": 290.06168, + "index": 21, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 744.34377, + "y": 290.26628, + "index": 22, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 746.66101, + "y": 291.05776, + "index": 23, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 770.83001, + "y": 307.8989, + "index": 24, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 772.64545, + "y": 309.54241, + "index": 25, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 774.00701, + "y": 311.57787, + "index": 26, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 774.83303, + "y": 313.88322, + "index": 27, + "body": { + "#": 1990 + }, + "isInternal": false + }, + { + "x": 737.04761, + "y": 331.71942 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.20003, + "y": -0.00146 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.1079, + "y": 2.40906 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2028 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2030 + }, + "max": { + "#": 2031 + } + }, + { + "x": 694.90155, + "y": 290.06168 + }, + { + "x": 776.73429, + "y": 374.93457 + }, + { + "x": 737.15551, + "y": 329.31036 + }, + [ + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + }, + { + "#": 2038 + }, + { + "#": 2039 + }, + { + "#": 2040 + }, + { + "#": 2041 + }, + { + "#": 2042 + }, + { + "#": 2043 + }, + { + "#": 2044 + }, + { + "#": 2045 + }, + { + "#": 2046 + }, + { + "#": 2047 + }, + { + "#": 2048 + }, + { + "#": 2049 + }, + { + "#": 2050 + }, + { + "#": 2051 + }, + { + "#": 2052 + }, + { + "#": 2053 + }, + { + "#": 2054 + }, + { + "#": 2055 + }, + { + "#": 2056 + }, + { + "#": 2057 + }, + { + "#": 2058 + }, + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + } + ], + { + "x": 0.99804, + "y": 0.06252 + }, + { + "x": 0.95292, + "y": 0.30321 + }, + { + "x": 0.85065, + "y": 0.52573 + }, + { + "x": 0.67263, + "y": 0.73998 + }, + { + "x": 0.57338, + "y": 0.81929 + }, + { + "x": 0.35708, + "y": 0.93408 + }, + { + "x": 0.11937, + "y": 0.99285 + }, + { + "x": -0.15911, + "y": 0.98726 + }, + { + "x": -0.28302, + "y": 0.95911 + }, + { + "x": -0.50764, + "y": 0.86157 + }, + { + "x": -0.70182, + "y": 0.71236 + }, + { + "x": -0.87109, + "y": 0.49113 + }, + { + "x": -0.92633, + "y": 0.37671 + }, + { + "x": -0.99011, + "y": 0.14028 + }, + { + "x": -0.99452, + "y": -0.10456 + }, + { + "x": -0.92709, + "y": -0.37483 + }, + { + "x": -0.87208, + "y": -0.48937 + }, + { + "x": -0.72699, + "y": -0.68664 + }, + { + "x": -0.53831, + "y": -0.84274 + }, + { + "x": -0.28496, + "y": -0.95854 + }, + { + "x": -0.16113, + "y": -0.98693 + }, + { + "x": 0.08356, + "y": -0.9965 + }, + { + "x": 0.32323, + "y": -0.94632 + }, + { + "x": 0.5717, + "y": -0.82046 + }, + { + "x": 0.67113, + "y": -0.74134 + }, + { + "x": 0.83119, + "y": -0.55599 + }, + { + "x": 0.94139, + "y": -0.33731 + }, + { + "x": 0.99792, + "y": -0.06454 + }, + { + "id": "14,16,6,7", + "startCol": 14, + "endCol": 16, + "startRow": 6, + "endRow": 7 + }, + { + "id": 62, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2064 + }, + "angle": 0.0171, + "vertices": { + "#": 2065 + }, + "position": { + "#": 2070 + }, + "force": { + "#": 2071 + }, + "torque": 0, + "positionImpulse": { + "#": 2072 + }, + "constraintImpulse": { + "#": 2073 + }, + "totalContacts": 0, + "speed": 2.7312, + "angularSpeed": 0.00168, + "velocity": { + "#": 2074 + }, + "angularVelocity": 0.00175, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2075 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2076 + }, + "chamfer": null, + "bounds": { + "#": 2078 + }, + "positionPrev": { + "#": 2081 + }, + "anglePrev": 0.01535, + "axes": { + "#": 2082 + }, + "area": 4184.01986, + "mass": 4.18402, + "inverseMass": 0.239, + "inertia": 11670.68144, + "inverseInertia": 0.00009, + "parent": { + "#": 2063 + }, + "sleepCounter": 0, + "region": { + "#": 2085 + } + }, + [ + { + "#": 2063 + } + ], + [ + { + "#": 2066 + }, + { + "#": 2067 + }, + { + "#": 2068 + }, + { + "#": 2069 + } + ], + { + "x": 896.45384, + "y": 358.0276, + "index": 0, + "body": { + "#": 2063 + }, + "isInternal": false + }, + { + "x": 831.7793, + "y": 356.92157, + "index": 1, + "body": { + "#": 2063 + }, + "isInternal": false + }, + { + "x": 832.88533, + "y": 292.24703, + "index": 2, + "body": { + "#": 2063 + }, + "isInternal": false + }, + { + "x": 897.55987, + "y": 293.35306, + "index": 3, + "body": { + "#": 2063 + }, + "isInternal": false + }, + { + "x": 864.66959, + "y": 325.13732 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.0408, + "y": -0.00018 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.0247, + "y": 2.73701 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2077 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2079 + }, + "max": { + "#": 2080 + } + }, + { + "x": 831.7793, + "y": 292.24703 + }, + { + "x": 897.58468, + "y": 360.75869 + }, + { + "x": 864.64488, + "y": 322.40027 + }, + [ + { + "#": 2083 + }, + { + "#": 2084 + } + ], + { + "x": 0.0171, + "y": -0.99985 + }, + { + "x": 0.99985, + "y": 0.0171 + }, + { + "id": "17,18,6,7", + "startCol": 17, + "endCol": 18, + "startRow": 6, + "endRow": 7 + }, + { + "id": 63, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 2087 + }, + "angle": 0.01564, + "vertices": { + "#": 2088 + }, + "position": { + "#": 2105 + }, + "force": { + "#": 2106 + }, + "torque": 0, + "positionImpulse": { + "#": 2107 + }, + "constraintImpulse": { + "#": 2108 + }, + "totalContacts": 0, + "speed": 2.84564, + "angularSpeed": 0.00136, + "velocity": { + "#": 2109 + }, + "angularVelocity": 0.00172, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2110 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2111 + }, + "bounds": { + "#": 2113 + }, + "positionPrev": { + "#": 2116 + }, + "anglePrev": 0.01391, + "axes": { + "#": 2117 + }, + "area": 1443.69118, + "mass": 1.44369, + "inverseMass": 0.69267, + "inertia": 1352.26442, + "inverseInertia": 0.00074, + "parent": { + "#": 2086 + }, + "sleepCounter": 0, + "region": { + "#": 2126 + } + }, + [ + { + "#": 2086 + } + ], + [ + { + "#": 2089 + }, + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + }, + { + "#": 2094 + }, + { + "#": 2095 + }, + { + "#": 2096 + }, + { + "#": 2097 + }, + { + "#": 2098 + }, + { + "#": 2099 + }, + { + "#": 2100 + }, + { + "#": 2101 + }, + { + "#": 2102 + }, + { + "#": 2103 + }, + { + "#": 2104 + } + ], + { + "x": 936.44187, + "y": 323.50126, + "index": 0, + "body": { + "#": 2086 + }, + "isInternal": false + }, + { + "x": 935.4681, + "y": 327.65177, + "index": 1, + "body": { + "#": 2086 + }, + "isInternal": false + }, + { + "x": 932.85403, + "y": 331.01951, + "index": 2, + "body": { + "#": 2086 + }, + "isInternal": false + }, + { + "x": 929.07479, + "y": 332.99238, + "index": 3, + "body": { + "#": 2086 + }, + "isInternal": false + }, + { + "x": 906.87509, + "y": 333.04007, + "index": 4, + "body": { + "#": 2086 + }, + "isInternal": false + }, + { + "x": 902.72458, + "y": 332.0663, + "index": 5, + "body": { + "#": 2086 + }, + "isInternal": false + }, + { + "x": 899.35684, + "y": 329.45224, + "index": 6, + "body": { + "#": 2086 + }, + "isInternal": false + }, + { + "x": 897.38397, + "y": 325.67299, + "index": 7, + "body": { + "#": 2086 + }, + "isInternal": false + }, + { + "x": 897.33628, + "y": 303.47329, + "index": 8, + "body": { + "#": 2086 + }, + "isInternal": false + }, + { + "x": 898.31005, + "y": 299.32278, + "index": 9, + "body": { + "#": 2086 + }, + "isInternal": false + }, + { + "x": 900.92411, + "y": 295.95505, + "index": 10, + "body": { + "#": 2086 + }, + "isInternal": false + }, + { + "x": 904.70336, + "y": 293.98217, + "index": 11, + "body": { + "#": 2086 + }, + "isInternal": false + }, + { + "x": 926.90306, + "y": 293.93448, + "index": 12, + "body": { + "#": 2086 + }, + "isInternal": false + }, + { + "x": 931.05357, + "y": 294.90825, + "index": 13, + "body": { + "#": 2086 + }, + "isInternal": false + }, + { + "x": 934.4213, + "y": 297.52232, + "index": 14, + "body": { + "#": 2086 + }, + "isInternal": false + }, + { + "x": 936.39418, + "y": 301.30157, + "index": 15, + "body": { + "#": 2086 + }, + "isInternal": false + }, + { + "x": 916.88907, + "y": 313.48728 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.04011, + "y": 0.00027 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.04753, + "y": 2.82808 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2112 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2114 + }, + "max": { + "#": 2115 + } + }, + { + "x": 897.33628, + "y": 293.93448 + }, + { + "x": 936.4891, + "y": 335.88532 + }, + { + "x": 916.84154, + "y": 310.6593 + }, + [ + { + "#": 2118 + }, + { + "#": 2119 + }, + { + "#": 2120 + }, + { + "#": 2121 + }, + { + "#": 2122 + }, + { + "#": 2123 + }, + { + "#": 2124 + }, + { + "#": 2125 + } + ], + { + "x": -0.97356, + "y": -0.22841 + }, + { + "x": -0.78995, + "y": -0.61317 + }, + { + "x": -0.46277, + "y": -0.88648 + }, + { + "x": -0.00215, + "y": -1 + }, + { + "x": 0.22841, + "y": -0.97356 + }, + { + "x": 0.61317, + "y": -0.78995 + }, + { + "x": 0.88648, + "y": -0.46277 + }, + { + "x": 1, + "y": -0.00215 + }, + { + "id": "18,19,6,6", + "startCol": 18, + "endCol": 19, + "startRow": 6, + "endRow": 6 + }, + { + "id": 64, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2128 + }, + "angle": 0.00354, + "vertices": { + "#": 2129 + }, + "position": { + "#": 2134 + }, + "force": { + "#": 2135 + }, + "torque": 0, + "positionImpulse": { + "#": 2136 + }, + "constraintImpulse": { + "#": 2137 + }, + "totalContacts": 0, + "speed": 2.9108, + "angularSpeed": 0.00042, + "velocity": { + "#": 2138 + }, + "angularVelocity": 0.00042, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2139 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2140 + }, + "chamfer": null, + "bounds": { + "#": 2142 + }, + "positionPrev": { + "#": 2145 + }, + "anglePrev": 0.00312, + "axes": { + "#": 2146 + }, + "area": 1357.52623, + "mass": 1.35753, + "inverseMass": 0.73663, + "inertia": 1286.97507, + "inverseInertia": 0.00078, + "parent": { + "#": 2127 + }, + "sleepCounter": 0, + "region": { + "#": 2149 + } + }, + [ + { + "#": 2127 + } + ], + [ + { + "#": 2130 + }, + { + "#": 2131 + }, + { + "#": 2132 + }, + { + "#": 2133 + } + ], + { + "x": 947.73122, + "y": 294.44579, + "index": 0, + "body": { + "#": 2127 + }, + "isInternal": false + }, + { + "x": 979.33114, + "y": 294.55768, + "index": 1, + "body": { + "#": 2127 + }, + "isInternal": false + }, + { + "x": 979.17903, + "y": 337.51694, + "index": 2, + "body": { + "#": 2127 + }, + "isInternal": false + }, + { + "x": 947.57912, + "y": 337.40506, + "index": 3, + "body": { + "#": 2127 + }, + "isInternal": false + }, + { + "x": 963.45513, + "y": 315.98137 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.49058, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.0425, + "y": 2.91049 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2141 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2143 + }, + "max": { + "#": 2144 + } + }, + { + "x": 947.57912, + "y": 294.44579 + }, + { + "x": 979.37364, + "y": 340.42743 + }, + { + "x": 963.41262, + "y": 313.07088 + }, + [ + { + "#": 2147 + }, + { + "#": 2148 + } + ], + { + "x": -0.00354, + "y": 0.99999 + }, + { + "x": -0.99999, + "y": -0.00354 + }, + { + "id": "19,20,6,7", + "startCol": 19, + "endCol": 20, + "startRow": 6, + "endRow": 7 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 2154 + }, + "max": { + "#": 2155 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/mixedSolid/mixedSolid-0.json b/test/node/refs/mixedSolid/mixedSolid-0.json new file mode 100644 index 00000000..46805b0c --- /dev/null +++ b/test/node/refs/mixedSolid/mixedSolid-0.json @@ -0,0 +1,9564 @@ +[ + { + "id": 65, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 90 + }, + "composites": { + "#": 91 + }, + "label": "World", + "gravity": { + "#": 1024 + }, + "bounds": { + "#": 1025 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [ + { + "#": 92 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 93 + }, + "constraints": { + "#": 1022 + }, + "composites": { + "#": 1023 + }, + "label": "Stack" + }, + [ + { + "#": 94 + }, + { + "#": 116 + }, + { + "#": 138 + }, + { + "#": 160 + }, + { + "#": 182 + }, + { + "#": 207 + }, + { + "#": 233 + }, + { + "#": 288 + }, + { + "#": 310 + }, + { + "#": 332 + }, + { + "#": 354 + }, + { + "#": 376 + }, + { + "#": 398 + }, + { + "#": 428 + }, + { + "#": 450 + }, + { + "#": 476 + }, + { + "#": 498 + }, + { + "#": 520 + }, + { + "#": 575 + }, + { + "#": 597 + }, + { + "#": 619 + }, + { + "#": 674 + }, + { + "#": 696 + }, + { + "#": 718 + }, + { + "#": 740 + }, + { + "#": 765 + }, + { + "#": 790 + }, + { + "#": 812 + }, + { + "#": 837 + }, + { + "#": 859 + }, + { + "#": 884 + }, + { + "#": 906 + }, + { + "#": 928 + }, + { + "#": 950 + }, + { + "#": 978 + }, + { + "#": 1000 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 96 + }, + "position": { + "#": 101 + }, + "force": { + "#": 102 + }, + "torque": 0, + "positionImpulse": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 105 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 106 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 107 + }, + "bounds": { + "#": 109 + }, + "positionPrev": { + "#": 112 + }, + "anglePrev": 0, + "axes": { + "#": 113 + }, + "area": 1534.90643, + "mass": 1.53491, + "inverseMass": 0.65151, + "inertia": 1587.6055, + "inverseInertia": 0.00063, + "parent": { + "#": 94 + }, + "sleepCounter": 0 + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + } + ], + { + "x": 50, + "y": 50, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 86.40316, + "y": 50, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 86.40316, + "y": 92.16409, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 50, + "y": 92.16409, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 68.20158, + "y": 71.08205 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 108 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 110 + }, + "max": { + "#": 111 + } + }, + { + "x": 50, + "y": 50 + }, + { + "x": 86.40316, + "y": 92.16409 + }, + { + "x": 68.20158, + "y": 71.08205 + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 117 + }, + "angle": 0, + "vertices": { + "#": 118 + }, + "position": { + "#": 123 + }, + "force": { + "#": 124 + }, + "torque": 0, + "positionImpulse": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 127 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 128 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 129 + }, + "bounds": { + "#": 131 + }, + "positionPrev": { + "#": 134 + }, + "anglePrev": 0, + "axes": { + "#": 135 + }, + "area": 2220.52879, + "mass": 2.22053, + "inverseMass": 0.45034, + "inertia": 3297.21813, + "inverseInertia": 0.0003, + "parent": { + "#": 116 + }, + "sleepCounter": 0 + }, + [ + { + "#": 116 + } + ], + [ + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + } + ], + { + "x": 86.40316, + "y": 50, + "index": 0, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 131.71901, + "y": 50, + "index": 1, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 131.71901, + "y": 99.00116, + "index": 2, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 86.40316, + "y": 99.00116, + "index": 3, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 109.06109, + "y": 74.50058 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 130 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 132 + }, + "max": { + "#": 133 + } + }, + { + "x": 86.40316, + "y": 50 + }, + { + "x": 131.71901, + "y": 99.00116 + }, + { + "x": 109.06109, + "y": 74.50058 + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 139 + }, + "angle": 0, + "vertices": { + "#": 140 + }, + "position": { + "#": 145 + }, + "force": { + "#": 146 + }, + "torque": 0, + "positionImpulse": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 149 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 150 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 151 + }, + "bounds": { + "#": 153 + }, + "positionPrev": { + "#": 156 + }, + "anglePrev": 0, + "axes": { + "#": 157 + }, + "area": 1140.1977, + "mass": 1.1402, + "inverseMass": 0.87704, + "inertia": 905.8525, + "inverseInertia": 0.0011, + "parent": { + "#": 138 + }, + "sleepCounter": 0 + }, + [ + { + "#": 138 + } + ], + [ + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + } + ], + { + "x": 131.71901, + "y": 50, + "index": 0, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 170.93981, + "y": 50, + "index": 1, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 170.93981, + "y": 79.07124, + "index": 2, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 131.71901, + "y": 79.07124, + "index": 3, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 151.32941, + "y": 64.53562 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 152 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 154 + }, + "max": { + "#": 155 + } + }, + { + "x": 131.71901, + "y": 50 + }, + { + "x": 170.93981, + "y": 79.07124 + }, + { + "x": 151.32941, + "y": 64.53562 + }, + [ + { + "#": 158 + }, + { + "#": 159 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 161 + }, + "angle": 0, + "vertices": { + "#": 162 + }, + "position": { + "#": 167 + }, + "force": { + "#": 168 + }, + "torque": 0, + "positionImpulse": { + "#": 169 + }, + "constraintImpulse": { + "#": 170 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 171 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 172 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 173 + }, + "bounds": { + "#": 175 + }, + "positionPrev": { + "#": 178 + }, + "anglePrev": 0, + "axes": { + "#": 179 + }, + "area": 752.4076, + "mass": 0.75241, + "inverseMass": 1.32907, + "inertia": 384.63687, + "inverseInertia": 0.0026, + "parent": { + "#": 160 + }, + "sleepCounter": 0 + }, + [ + { + "#": 160 + } + ], + [ + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + } + ], + { + "x": 170.93981, + "y": 50, + "index": 0, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 195.81713, + "y": 50, + "index": 1, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 195.81713, + "y": 80.24473, + "index": 2, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 170.93981, + "y": 80.24473, + "index": 3, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 183.37847, + "y": 65.12236 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 174 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 176 + }, + "max": { + "#": 177 + } + }, + { + "x": 170.93981, + "y": 50 + }, + { + "x": 195.81713, + "y": 80.24473 + }, + { + "x": 183.37847, + "y": 65.12236 + }, + [ + { + "#": 180 + }, + { + "#": 181 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 183 + }, + "angle": 0, + "vertices": { + "#": 184 + }, + "position": { + "#": 191 + }, + "force": { + "#": 192 + }, + "torque": 0, + "positionImpulse": { + "#": 193 + }, + "constraintImpulse": { + "#": 194 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 195 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 196 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 197 + }, + "bounds": { + "#": 199 + }, + "positionPrev": { + "#": 202 + }, + "anglePrev": 0, + "axes": { + "#": 203 + }, + "area": 2027.25418, + "mass": 2.02725, + "inverseMass": 0.49328, + "inertia": 2636.41196, + "inverseInertia": 0.00038, + "parent": { + "#": 182 + }, + "sleepCounter": 0 + }, + [ + { + "#": 182 + } + ], + [ + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + } + ], + { + "x": 244.19913, + "y": 91.901, + "index": 0, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 220.00813, + "y": 105.868, + "index": 1, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 195.81713, + "y": 91.901, + "index": 2, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 195.81713, + "y": 63.967, + "index": 3, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 220.00813, + "y": 50, + "index": 4, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 244.19913, + "y": 63.967, + "index": 5, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 220.00813, + "y": 77.934 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 198 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 200 + }, + "max": { + "#": 201 + } + }, + { + "x": 195.81713, + "y": 50 + }, + { + "x": 244.19913, + "y": 105.868 + }, + { + "x": 220.00813, + "y": 77.934 + }, + [ + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + } + ], + { + "x": -0.50001, + "y": -0.86602 + }, + { + "x": 0.50001, + "y": -0.86602 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 10, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 208 + }, + "angle": 0, + "vertices": { + "#": 209 + }, + "position": { + "#": 215 + }, + "force": { + "#": 216 + }, + "torque": 0, + "positionImpulse": { + "#": 217 + }, + "constraintImpulse": { + "#": 218 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 219 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 220 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 221 + }, + "bounds": { + "#": 223 + }, + "positionPrev": { + "#": 226 + }, + "anglePrev": 0, + "axes": { + "#": 227 + }, + "area": 4842.27229, + "mass": 4.84227, + "inverseMass": 0.20651, + "inertia": 15180.5655, + "inverseInertia": 0.00007, + "parent": { + "#": 207 + }, + "sleepCounter": 0 + }, + [ + { + "#": 207 + } + ], + [ + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + } + ], + { + "x": 321.52774, + "y": 119.446, + "index": 0, + "body": { + "#": 207 + }, + "isInternal": false + }, + { + "x": 271.07274, + "y": 135.84, + "index": 1, + "body": { + "#": 207 + }, + "isInternal": false + }, + { + "x": 239.88974, + "y": 92.92, + "index": 2, + "body": { + "#": 207 + }, + "isInternal": false + }, + { + "x": 271.07274, + "y": 50, + "index": 3, + "body": { + "#": 207 + }, + "isInternal": false + }, + { + "x": 321.52774, + "y": 66.394, + "index": 4, + "body": { + "#": 207 + }, + "isInternal": false + }, + { + "x": 285.01813, + "y": 92.92 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 222 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 224 + }, + "max": { + "#": 225 + } + }, + { + "x": 239.88974, + "y": 50 + }, + { + "x": 321.52774, + "y": 135.84 + }, + { + "x": 285.01813, + "y": 92.92 + }, + [ + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + } + ], + { + "x": 0.30902, + "y": 0.95106 + }, + { + "x": -0.80902, + "y": 0.58778 + }, + { + "x": -0.80902, + "y": -0.58778 + }, + { + "x": 0.30902, + "y": -0.95106 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 11, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 234 + }, + "angle": 0, + "vertices": { + "#": 235 + }, + "position": { + "#": 262 + }, + "force": { + "#": 263 + }, + "torque": 0, + "positionImpulse": { + "#": 264 + }, + "constraintImpulse": { + "#": 265 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 266 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 267 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 268 + }, + "circleRadius": 31.45923, + "bounds": { + "#": 270 + }, + "positionPrev": { + "#": 273 + }, + "anglePrev": 0, + "axes": { + "#": 274 + }, + "area": 3079.01783, + "mass": 3.07902, + "inverseMass": 0.32478, + "inertia": 6035.49394, + "inverseInertia": 0.00017, + "parent": { + "#": 233 + }, + "sleepCounter": 0 + }, + [ + { + "#": 233 + } + ], + [ + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + } + ], + { + "x": 383.98774, + "y": 85.251, + "index": 0, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 382.17274, + "y": 92.615, + "index": 1, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 378.64774, + "y": 99.33, + "index": 2, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 373.61874, + "y": 105.007, + "index": 3, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 367.37774, + "y": 109.315, + "index": 4, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 360.28674, + "y": 112.004, + "index": 5, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 352.75774, + "y": 112.918, + "index": 6, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 345.22874, + "y": 112.004, + "index": 7, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 338.13774, + "y": 109.315, + "index": 8, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 331.89674, + "y": 105.007, + "index": 9, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 326.86774, + "y": 99.33, + "index": 10, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 323.34274, + "y": 92.615, + "index": 11, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 321.52774, + "y": 85.251, + "index": 12, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 321.52774, + "y": 77.667, + "index": 13, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 323.34274, + "y": 70.303, + "index": 14, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 326.86774, + "y": 63.588, + "index": 15, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 331.89674, + "y": 57.911, + "index": 16, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 338.13774, + "y": 53.603, + "index": 17, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 345.22874, + "y": 50.914, + "index": 18, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 352.75774, + "y": 50, + "index": 19, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 360.28674, + "y": 50.914, + "index": 20, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 367.37774, + "y": 53.603, + "index": 21, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 373.61874, + "y": 57.911, + "index": 22, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 378.64774, + "y": 63.588, + "index": 23, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 382.17274, + "y": 70.303, + "index": 24, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 383.98774, + "y": 77.667, + "index": 25, + "body": { + "#": 233 + }, + "isInternal": false + }, + { + "x": 352.75774, + "y": 81.459 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 269 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 271 + }, + "max": { + "#": 272 + } + }, + { + "x": 321.52774, + "y": 50 + }, + { + "x": 383.98774, + "y": 112.918 + }, + { + "x": 352.75774, + "y": 81.459 + }, + [ + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + } + ], + { + "x": -0.97094, + "y": -0.23931 + }, + { + "x": -0.88542, + "y": -0.4648 + }, + { + "x": -0.74854, + "y": -0.66309 + }, + { + "x": -0.56808, + "y": -0.82297 + }, + { + "x": -0.35457, + "y": -0.93503 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35457, + "y": -0.93503 + }, + { + "x": 0.56808, + "y": -0.82297 + }, + { + "x": 0.74854, + "y": -0.66309 + }, + { + "x": 0.88542, + "y": -0.4648 + }, + { + "x": 0.97094, + "y": -0.23931 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 289 + }, + "angle": 0, + "vertices": { + "#": 290 + }, + "position": { + "#": 295 + }, + "force": { + "#": 296 + }, + "torque": 0, + "positionImpulse": { + "#": 297 + }, + "constraintImpulse": { + "#": 298 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 299 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 300 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 301 + }, + "bounds": { + "#": 303 + }, + "positionPrev": { + "#": 306 + }, + "anglePrev": 0, + "axes": { + "#": 307 + }, + "area": 1329.41676, + "mass": 1.32942, + "inverseMass": 0.75221, + "inertia": 1383.51246, + "inverseInertia": 0.00072, + "parent": { + "#": 288 + }, + "sleepCounter": 0 + }, + [ + { + "#": 288 + } + ], + [ + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + } + ], + { + "x": 383.98774, + "y": 50, + "index": 0, + "body": { + "#": 288 + }, + "isInternal": false + }, + { + "x": 432.76539, + "y": 50, + "index": 1, + "body": { + "#": 288 + }, + "isInternal": false + }, + { + "x": 432.76539, + "y": 77.25463, + "index": 2, + "body": { + "#": 288 + }, + "isInternal": false + }, + { + "x": 383.98774, + "y": 77.25463, + "index": 3, + "body": { + "#": 288 + }, + "isInternal": false + }, + { + "x": 408.37657, + "y": 63.62731 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 302 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 304 + }, + "max": { + "#": 305 + } + }, + { + "x": 383.98774, + "y": 50 + }, + { + "x": 432.76539, + "y": 77.25463 + }, + { + "x": 408.37657, + "y": 63.62731 + }, + [ + { + "#": 308 + }, + { + "#": 309 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 311 + }, + "angle": 0, + "vertices": { + "#": 312 + }, + "position": { + "#": 317 + }, + "force": { + "#": 318 + }, + "torque": 0, + "positionImpulse": { + "#": 319 + }, + "constraintImpulse": { + "#": 320 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 321 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 322 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 323 + }, + "bounds": { + "#": 325 + }, + "positionPrev": { + "#": 328 + }, + "anglePrev": 0, + "axes": { + "#": 329 + }, + "area": 2858.63236, + "mass": 2.85863, + "inverseMass": 0.34982, + "inertia": 11948.09601, + "inverseInertia": 0.00008, + "parent": { + "#": 310 + }, + "sleepCounter": 0 + }, + [ + { + "#": 310 + } + ], + [ + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + } + ], + { + "x": 432.76539, + "y": 50, + "index": 0, + "body": { + "#": 310 + }, + "isInternal": false + }, + { + "x": 541.61999, + "y": 50, + "index": 1, + "body": { + "#": 310 + }, + "isInternal": false + }, + { + "x": 541.61999, + "y": 76.26102, + "index": 2, + "body": { + "#": 310 + }, + "isInternal": false + }, + { + "x": 432.76539, + "y": 76.26102, + "index": 3, + "body": { + "#": 310 + }, + "isInternal": false + }, + { + "x": 487.19269, + "y": 63.13051 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 324 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 326 + }, + "max": { + "#": 327 + } + }, + { + "x": 432.76539, + "y": 50 + }, + { + "x": 541.61999, + "y": 76.26102 + }, + { + "x": 487.19269, + "y": 63.13051 + }, + [ + { + "#": 330 + }, + { + "#": 331 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 333 + }, + "angle": 0, + "vertices": { + "#": 334 + }, + "position": { + "#": 339 + }, + "force": { + "#": 340 + }, + "torque": 0, + "positionImpulse": { + "#": 341 + }, + "constraintImpulse": { + "#": 342 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 343 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 344 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 345 + }, + "bounds": { + "#": 347 + }, + "positionPrev": { + "#": 350 + }, + "anglePrev": 0, + "axes": { + "#": 351 + }, + "area": 926.83946, + "mass": 0.92684, + "inverseMass": 1.07894, + "inertia": 640.73396, + "inverseInertia": 0.00156, + "parent": { + "#": 332 + }, + "sleepCounter": 0 + }, + [ + { + "#": 332 + } + ], + [ + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + } + ], + { + "x": 541.61999, + "y": 50, + "index": 0, + "body": { + "#": 332 + }, + "isInternal": false + }, + { + "x": 580.37578, + "y": 50, + "index": 1, + "body": { + "#": 332 + }, + "isInternal": false + }, + { + "x": 580.37578, + "y": 73.91487, + "index": 2, + "body": { + "#": 332 + }, + "isInternal": false + }, + { + "x": 541.61999, + "y": 73.91487, + "index": 3, + "body": { + "#": 332 + }, + "isInternal": false + }, + { + "x": 560.99788, + "y": 61.95743 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 346 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 348 + }, + "max": { + "#": 349 + } + }, + { + "x": 541.61999, + "y": 50 + }, + { + "x": 580.37578, + "y": 73.91487 + }, + { + "x": 560.99788, + "y": 61.95743 + }, + [ + { + "#": 352 + }, + { + "#": 353 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 15, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 355 + }, + "angle": 0, + "vertices": { + "#": 356 + }, + "position": { + "#": 361 + }, + "force": { + "#": 362 + }, + "torque": 0, + "positionImpulse": { + "#": 363 + }, + "constraintImpulse": { + "#": 364 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 365 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 366 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 367 + }, + "bounds": { + "#": 369 + }, + "positionPrev": { + "#": 372 + }, + "anglePrev": 0, + "axes": { + "#": 373 + }, + "area": 1290.45014, + "mass": 1.29045, + "inverseMass": 0.77492, + "inertia": 1110.21456, + "inverseInertia": 0.0009, + "parent": { + "#": 354 + }, + "sleepCounter": 0 + }, + [ + { + "#": 354 + } + ], + [ + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + } + ], + { + "x": 580.37578, + "y": 50, + "index": 0, + "body": { + "#": 354 + }, + "isInternal": false + }, + { + "x": 616.14609, + "y": 50, + "index": 1, + "body": { + "#": 354 + }, + "isInternal": false + }, + { + "x": 616.14609, + "y": 86.076, + "index": 2, + "body": { + "#": 354 + }, + "isInternal": false + }, + { + "x": 580.37578, + "y": 86.076, + "index": 3, + "body": { + "#": 354 + }, + "isInternal": false + }, + { + "x": 598.26093, + "y": 68.038 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 368 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 370 + }, + "max": { + "#": 371 + } + }, + { + "x": 580.37578, + "y": 50 + }, + { + "x": 616.14609, + "y": 86.076 + }, + { + "x": 598.26093, + "y": 68.038 + }, + [ + { + "#": 374 + }, + { + "#": 375 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 16, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 377 + }, + "angle": 0, + "vertices": { + "#": 378 + }, + "position": { + "#": 383 + }, + "force": { + "#": 384 + }, + "torque": 0, + "positionImpulse": { + "#": 385 + }, + "constraintImpulse": { + "#": 386 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 387 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 388 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 389 + }, + "bounds": { + "#": 391 + }, + "positionPrev": { + "#": 394 + }, + "anglePrev": 0, + "axes": { + "#": 395 + }, + "area": 1148.29259, + "mass": 1.14829, + "inverseMass": 0.87086, + "inertia": 897.94757, + "inverseInertia": 0.00111, + "parent": { + "#": 376 + }, + "sleepCounter": 0 + }, + [ + { + "#": 376 + } + ], + [ + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + } + ], + { + "x": 616.14609, + "y": 50, + "index": 0, + "body": { + "#": 376 + }, + "isInternal": false + }, + { + "x": 646.70101, + "y": 50, + "index": 1, + "body": { + "#": 376 + }, + "isInternal": false + }, + { + "x": 646.70101, + "y": 87.58128, + "index": 2, + "body": { + "#": 376 + }, + "isInternal": false + }, + { + "x": 616.14609, + "y": 87.58128, + "index": 3, + "body": { + "#": 376 + }, + "isInternal": false + }, + { + "x": 631.42355, + "y": 68.79064 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 390 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 392 + }, + "max": { + "#": 393 + } + }, + { + "x": 616.14609, + "y": 50 + }, + { + "x": 646.70101, + "y": 87.58128 + }, + { + "x": 631.42355, + "y": 68.79064 + }, + [ + { + "#": 396 + }, + { + "#": 397 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 17, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 399 + }, + "angle": 0, + "vertices": { + "#": 400 + }, + "position": { + "#": 408 + }, + "force": { + "#": 409 + }, + "torque": 0, + "positionImpulse": { + "#": 410 + }, + "constraintImpulse": { + "#": 411 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 412 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 413 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 414 + }, + "bounds": { + "#": 416 + }, + "positionPrev": { + "#": 419 + }, + "anglePrev": 0, + "axes": { + "#": 420 + }, + "area": 1926.78789, + "mass": 1.92679, + "inverseMass": 0.519, + "inertia": 2372.87433, + "inverseInertia": 0.00042, + "parent": { + "#": 398 + }, + "sleepCounter": 0 + }, + [ + { + "#": 398 + } + ], + [ + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + } + ], + { + "x": 99.12931, + "y": 173.223, + "index": 0, + "body": { + "#": 398 + }, + "isInternal": false + }, + { + "x": 81.12631, + "y": 187.58, + "index": 1, + "body": { + "#": 398 + }, + "isInternal": false + }, + { + "x": 58.67631, + "y": 182.456, + "index": 2, + "body": { + "#": 398 + }, + "isInternal": false + }, + { + "x": 48.68631, + "y": 161.71, + "index": 3, + "body": { + "#": 398 + }, + "isInternal": false + }, + { + "x": 58.67631, + "y": 140.964, + "index": 4, + "body": { + "#": 398 + }, + "isInternal": false + }, + { + "x": 81.12631, + "y": 135.84, + "index": 5, + "body": { + "#": 398 + }, + "isInternal": false + }, + { + "x": 99.12931, + "y": 150.197, + "index": 6, + "body": { + "#": 398 + }, + "isInternal": false + }, + { + "x": 75.2215, + "y": 161.71 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 415 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 417 + }, + "max": { + "#": 418 + } + }, + { + "x": 48.68631, + "y": 135.84 + }, + { + "x": 99.12931, + "y": 187.58 + }, + { + "x": 75.2215, + "y": 161.71 + }, + [ + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + } + ], + { + "x": 0.62349, + "y": 0.78183 + }, + { + "x": -0.22252, + "y": 0.97493 + }, + { + "x": -0.90098, + "y": 0.43386 + }, + { + "x": -0.90098, + "y": -0.43386 + }, + { + "x": -0.22252, + "y": -0.97493 + }, + { + "x": 0.62349, + "y": -0.78183 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 18, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 429 + }, + "angle": 0, + "vertices": { + "#": 430 + }, + "position": { + "#": 434 + }, + "force": { + "#": 435 + }, + "torque": 0, + "positionImpulse": { + "#": 436 + }, + "constraintImpulse": { + "#": 437 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 438 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 439 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 440 + }, + "bounds": { + "#": 442 + }, + "positionPrev": { + "#": 445 + }, + "anglePrev": 0, + "axes": { + "#": 446 + }, + "area": 1097.75588, + "mass": 1.09776, + "inverseMass": 0.91095, + "inertia": 927.66175, + "inverseInertia": 0.00108, + "parent": { + "#": 428 + }, + "sleepCounter": 0 + }, + [ + { + "#": 428 + } + ], + [ + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + } + ], + { + "x": 135.46681, + "y": 186.19, + "index": 0, + "body": { + "#": 428 + }, + "isInternal": false + }, + { + "x": 91.86181, + "y": 161.015, + "index": 1, + "body": { + "#": 428 + }, + "isInternal": false + }, + { + "x": 135.46681, + "y": 135.84, + "index": 2, + "body": { + "#": 428 + }, + "isInternal": false + }, + { + "x": 120.93181, + "y": 161.015 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 441 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 443 + }, + "max": { + "#": 444 + } + }, + { + "x": 91.86181, + "y": 135.84 + }, + { + "x": 135.46681, + "y": 186.19 + }, + { + "x": 120.93181, + "y": 161.015 + }, + [ + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + } + ], + { + "x": -0.49999, + "y": 0.86603 + }, + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 19, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 451 + }, + "angle": 0, + "vertices": { + "#": 452 + }, + "position": { + "#": 458 + }, + "force": { + "#": 459 + }, + "torque": 0, + "positionImpulse": { + "#": 460 + }, + "constraintImpulse": { + "#": 461 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 462 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 463 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 464 + }, + "bounds": { + "#": 466 + }, + "positionPrev": { + "#": 469 + }, + "anglePrev": 0, + "axes": { + "#": 470 + }, + "area": 986.58013, + "mass": 0.98658, + "inverseMass": 1.0136, + "inertia": 630.16497, + "inverseInertia": 0.00159, + "parent": { + "#": 450 + }, + "sleepCounter": 0 + }, + [ + { + "#": 450 + } + ], + [ + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + } + ], + { + "x": 170.37177, + "y": 167.186, + "index": 0, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 147.59677, + "y": 174.586, + "index": 1, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 133.52177, + "y": 155.213, + "index": 2, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 147.59677, + "y": 135.84, + "index": 3, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 170.37177, + "y": 143.24, + "index": 4, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 153.89181, + "y": 155.213 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 465 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 467 + }, + "max": { + "#": 468 + } + }, + { + "x": 133.52177, + "y": 135.84 + }, + { + "x": 170.37177, + "y": 174.586 + }, + { + "x": 153.89181, + "y": 155.213 + }, + [ + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + } + ], + { + "x": 0.30902, + "y": 0.95106 + }, + { + "x": -0.80902, + "y": 0.58778 + }, + { + "x": -0.80902, + "y": -0.58778 + }, + { + "x": 0.30902, + "y": -0.95106 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 20, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 477 + }, + "angle": 0, + "vertices": { + "#": 478 + }, + "position": { + "#": 483 + }, + "force": { + "#": 484 + }, + "torque": 0, + "positionImpulse": { + "#": 485 + }, + "constraintImpulse": { + "#": 486 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 487 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 488 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 489 + }, + "bounds": { + "#": 491 + }, + "positionPrev": { + "#": 494 + }, + "anglePrev": 0, + "axes": { + "#": 495 + }, + "area": 1201.45424, + "mass": 1.20145, + "inverseMass": 0.83232, + "inertia": 962.3282, + "inverseInertia": 0.00104, + "parent": { + "#": 476 + }, + "sleepCounter": 0 + }, + [ + { + "#": 476 + } + ], + [ + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + } + ], + { + "x": 205.03377, + "y": 170.502, + "index": 0, + "body": { + "#": 476 + }, + "isInternal": false + }, + { + "x": 170.37177, + "y": 170.502, + "index": 1, + "body": { + "#": 476 + }, + "isInternal": false + }, + { + "x": 170.37177, + "y": 135.84, + "index": 2, + "body": { + "#": 476 + }, + "isInternal": false + }, + { + "x": 205.03377, + "y": 135.84, + "index": 3, + "body": { + "#": 476 + }, + "isInternal": false + }, + { + "x": 187.70277, + "y": 153.171 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 490 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 492 + }, + "max": { + "#": 493 + } + }, + { + "x": 170.37177, + "y": 135.84 + }, + { + "x": 205.03377, + "y": 170.502 + }, + { + "x": 187.70277, + "y": 153.171 + }, + [ + { + "#": 496 + }, + { + "#": 497 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 21, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 499 + }, + "angle": 0, + "vertices": { + "#": 500 + }, + "position": { + "#": 505 + }, + "force": { + "#": 506 + }, + "torque": 0, + "positionImpulse": { + "#": 507 + }, + "constraintImpulse": { + "#": 508 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 509 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 510 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 511 + }, + "bounds": { + "#": 513 + }, + "positionPrev": { + "#": 516 + }, + "anglePrev": 0, + "axes": { + "#": 517 + }, + "area": 1990.73335, + "mass": 1.99073, + "inverseMass": 0.50233, + "inertia": 6259.05792, + "inverseInertia": 0.00016, + "parent": { + "#": 498 + }, + "sleepCounter": 0 + }, + [ + { + "#": 498 + } + ], + [ + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + } + ], + { + "x": 205.03377, + "y": 135.84, + "index": 0, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 299.8575, + "y": 135.84, + "index": 1, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 299.8575, + "y": 156.83404, + "index": 2, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 205.03377, + "y": 156.83404, + "index": 3, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 252.44563, + "y": 146.33702 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 512 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 514 + }, + "max": { + "#": 515 + } + }, + { + "x": 205.03377, + "y": 135.84 + }, + { + "x": 299.8575, + "y": 156.83404 + }, + { + "x": 252.44563, + "y": 146.33702 + }, + [ + { + "#": 518 + }, + { + "#": 519 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 22, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 521 + }, + "angle": 0, + "vertices": { + "#": 522 + }, + "position": { + "#": 549 + }, + "force": { + "#": 550 + }, + "torque": 0, + "positionImpulse": { + "#": 551 + }, + "constraintImpulse": { + "#": 552 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 553 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 554 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 555 + }, + "circleRadius": 48.51042, + "bounds": { + "#": 557 + }, + "positionPrev": { + "#": 560 + }, + "anglePrev": 0, + "axes": { + "#": 561 + }, + "area": 7321.24308, + "mass": 7.32124, + "inverseMass": 0.13659, + "inertia": 34123.853, + "inverseInertia": 0.00003, + "parent": { + "#": 520 + }, + "sleepCounter": 0 + }, + [ + { + "#": 520 + } + ], + [ + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + } + ], + { + "x": 396.1715, + "y": 190.197, + "index": 0, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 393.3725, + "y": 201.552, + "index": 1, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 387.9375, + "y": 211.907, + "index": 2, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 380.1825, + "y": 220.661, + "index": 3, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 370.5585, + "y": 227.304, + "index": 4, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 359.6235, + "y": 231.451, + "index": 5, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 348.0145, + "y": 232.86, + "index": 6, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 336.4055, + "y": 231.451, + "index": 7, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 325.4705, + "y": 227.304, + "index": 8, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 315.8465, + "y": 220.661, + "index": 9, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 308.0915, + "y": 211.907, + "index": 10, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 302.6565, + "y": 201.552, + "index": 11, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 299.8575, + "y": 190.197, + "index": 12, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 299.8575, + "y": 178.503, + "index": 13, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 302.6565, + "y": 167.148, + "index": 14, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 308.0915, + "y": 156.793, + "index": 15, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 315.8465, + "y": 148.039, + "index": 16, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 325.4705, + "y": 141.396, + "index": 17, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 336.4055, + "y": 137.249, + "index": 18, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 348.0145, + "y": 135.84, + "index": 19, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 359.6235, + "y": 137.249, + "index": 20, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 370.5585, + "y": 141.396, + "index": 21, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 380.1825, + "y": 148.039, + "index": 22, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 387.9375, + "y": 156.793, + "index": 23, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 393.3725, + "y": 167.148, + "index": 24, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 396.1715, + "y": 178.503, + "index": 25, + "body": { + "#": 520 + }, + "isInternal": false + }, + { + "x": 348.0145, + "y": 184.35 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 556 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 558 + }, + "max": { + "#": 559 + } + }, + { + "x": 299.8575, + "y": 135.84 + }, + { + "x": 396.1715, + "y": 232.86 + }, + { + "x": 348.0145, + "y": 184.35 + }, + [ + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + } + ], + { + "x": -0.97094, + "y": -0.23934 + }, + { + "x": -0.88545, + "y": -0.46474 + }, + { + "x": -0.74853, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12049, + "y": -0.99271 + }, + { + "x": 0.12049, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74853, + "y": -0.66311 + }, + { + "x": 0.88545, + "y": -0.46474 + }, + { + "x": 0.97094, + "y": -0.23934 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 23, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 576 + }, + "angle": 0, + "vertices": { + "#": 577 + }, + "position": { + "#": 582 + }, + "force": { + "#": 583 + }, + "torque": 0, + "positionImpulse": { + "#": 584 + }, + "constraintImpulse": { + "#": 585 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 586 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 587 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 588 + }, + "bounds": { + "#": 590 + }, + "positionPrev": { + "#": 593 + }, + "anglePrev": 0, + "axes": { + "#": 594 + }, + "area": 2034.76377, + "mass": 2.03476, + "inverseMass": 0.49146, + "inertia": 5208.09959, + "inverseInertia": 0.00019, + "parent": { + "#": 575 + }, + "sleepCounter": 0 + }, + [ + { + "#": 575 + } + ], + [ + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + } + ], + { + "x": 396.1715, + "y": 135.84, + "index": 0, + "body": { + "#": 575 + }, + "isInternal": false + }, + { + "x": 480.40418, + "y": 135.84, + "index": 1, + "body": { + "#": 575 + }, + "isInternal": false + }, + { + "x": 480.40418, + "y": 159.99646, + "index": 2, + "body": { + "#": 575 + }, + "isInternal": false + }, + { + "x": 396.1715, + "y": 159.99646, + "index": 3, + "body": { + "#": 575 + }, + "isInternal": false + }, + { + "x": 438.28784, + "y": 147.91823 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 589 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 591 + }, + "max": { + "#": 592 + } + }, + { + "x": 396.1715, + "y": 135.84 + }, + { + "x": 480.40418, + "y": 159.99646 + }, + { + "x": 438.28784, + "y": 147.91823 + }, + [ + { + "#": 595 + }, + { + "#": 596 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 24, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 598 + }, + "angle": 0, + "vertices": { + "#": 599 + }, + "position": { + "#": 604 + }, + "force": { + "#": 605 + }, + "torque": 0, + "positionImpulse": { + "#": 606 + }, + "constraintImpulse": { + "#": 607 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 608 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 609 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 610 + }, + "bounds": { + "#": 612 + }, + "positionPrev": { + "#": 615 + }, + "anglePrev": 0, + "axes": { + "#": 616 + }, + "area": 1030.45569, + "mass": 1.03046, + "inverseMass": 0.97044, + "inertia": 987.30914, + "inverseInertia": 0.00101, + "parent": { + "#": 597 + }, + "sleepCounter": 0 + }, + [ + { + "#": 597 + } + ], + [ + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + } + ], + { + "x": 480.40418, + "y": 135.84, + "index": 0, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 529.79075, + "y": 135.84, + "index": 1, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 529.79075, + "y": 156.7051, + "index": 2, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 480.40418, + "y": 156.7051, + "index": 3, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 505.09747, + "y": 146.27255 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 611 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 613 + }, + "max": { + "#": 614 + } + }, + { + "x": 480.40418, + "y": 135.84 + }, + { + "x": 529.79075, + "y": 156.7051 + }, + { + "x": 505.09747, + "y": 146.27255 + }, + [ + { + "#": 617 + }, + { + "#": 618 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 25, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 620 + }, + "angle": 0, + "vertices": { + "#": 621 + }, + "position": { + "#": 648 + }, + "force": { + "#": 649 + }, + "torque": 0, + "positionImpulse": { + "#": 650 + }, + "constraintImpulse": { + "#": 651 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 652 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 653 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 654 + }, + "circleRadius": 26.33166, + "bounds": { + "#": 656 + }, + "positionPrev": { + "#": 659 + }, + "anglePrev": 0, + "axes": { + "#": 660 + }, + "area": 2157.16533, + "mass": 2.15717, + "inverseMass": 0.46357, + "inertia": 2962.47895, + "inverseInertia": 0.00034, + "parent": { + "#": 619 + }, + "sleepCounter": 0 + }, + [ + { + "#": 619 + } + ], + [ + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + } + ], + { + "x": 582.07075, + "y": 165.346, + "index": 0, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 580.55175, + "y": 171.509, + "index": 1, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 577.60175, + "y": 177.13, + "index": 2, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 573.39175, + "y": 181.882, + "index": 3, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 568.16775, + "y": 185.488, + "index": 4, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 562.23275, + "y": 187.739, + "index": 5, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 555.93075, + "y": 188.504, + "index": 6, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 549.62875, + "y": 187.739, + "index": 7, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 543.69375, + "y": 185.488, + "index": 8, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 538.46975, + "y": 181.882, + "index": 9, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 534.25975, + "y": 177.13, + "index": 10, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 531.30975, + "y": 171.509, + "index": 11, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 529.79075, + "y": 165.346, + "index": 12, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 529.79075, + "y": 158.998, + "index": 13, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 531.30975, + "y": 152.835, + "index": 14, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 534.25975, + "y": 147.214, + "index": 15, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 538.46975, + "y": 142.462, + "index": 16, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 543.69375, + "y": 138.856, + "index": 17, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 549.62875, + "y": 136.605, + "index": 18, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 555.93075, + "y": 135.84, + "index": 19, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 562.23275, + "y": 136.605, + "index": 20, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 568.16775, + "y": 138.856, + "index": 21, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 573.39175, + "y": 142.462, + "index": 22, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 577.60175, + "y": 147.214, + "index": 23, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 580.55175, + "y": 152.835, + "index": 24, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 582.07075, + "y": 158.998, + "index": 25, + "body": { + "#": 619 + }, + "isInternal": false + }, + { + "x": 555.93075, + "y": 162.172 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 655 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 657 + }, + "max": { + "#": 658 + } + }, + { + "x": 529.79075, + "y": 135.84 + }, + { + "x": 582.07075, + "y": 188.504 + }, + { + "x": 555.93075, + "y": 162.172 + }, + [ + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + } + ], + { + "x": -0.97094, + "y": -0.23931 + }, + { + "x": -0.88546, + "y": -0.46471 + }, + { + "x": -0.7485, + "y": -0.66313 + }, + { + "x": -0.56808, + "y": -0.82297 + }, + { + "x": -0.35463, + "y": -0.93501 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35463, + "y": -0.93501 + }, + { + "x": 0.56808, + "y": -0.82297 + }, + { + "x": 0.7485, + "y": -0.66313 + }, + { + "x": 0.88546, + "y": -0.46471 + }, + { + "x": 0.97094, + "y": -0.23931 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 26, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 675 + }, + "angle": 0, + "vertices": { + "#": 676 + }, + "position": { + "#": 681 + }, + "force": { + "#": 682 + }, + "torque": 0, + "positionImpulse": { + "#": 683 + }, + "constraintImpulse": { + "#": 684 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 685 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 686 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 687 + }, + "bounds": { + "#": 689 + }, + "positionPrev": { + "#": 692 + }, + "anglePrev": 0, + "axes": { + "#": 693 + }, + "area": 2399.6282, + "mass": 2.39963, + "inverseMass": 0.41673, + "inertia": 3838.81032, + "inverseInertia": 0.00026, + "parent": { + "#": 674 + }, + "sleepCounter": 0 + }, + [ + { + "#": 674 + } + ], + [ + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + } + ], + { + "x": 631.05675, + "y": 184.826, + "index": 0, + "body": { + "#": 674 + }, + "isInternal": false + }, + { + "x": 582.07075, + "y": 184.826, + "index": 1, + "body": { + "#": 674 + }, + "isInternal": false + }, + { + "x": 582.07075, + "y": 135.84, + "index": 2, + "body": { + "#": 674 + }, + "isInternal": false + }, + { + "x": 631.05675, + "y": 135.84, + "index": 3, + "body": { + "#": 674 + }, + "isInternal": false + }, + { + "x": 606.56375, + "y": 160.333 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 688 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 690 + }, + "max": { + "#": 691 + } + }, + { + "x": 582.07075, + "y": 135.84 + }, + { + "x": 631.05675, + "y": 184.826 + }, + { + "x": 606.56375, + "y": 160.333 + }, + [ + { + "#": 694 + }, + { + "#": 695 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 27, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 697 + }, + "angle": 0, + "vertices": { + "#": 698 + }, + "position": { + "#": 703 + }, + "force": { + "#": 704 + }, + "torque": 0, + "positionImpulse": { + "#": 705 + }, + "constraintImpulse": { + "#": 706 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 707 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 708 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 709 + }, + "bounds": { + "#": 711 + }, + "positionPrev": { + "#": 714 + }, + "anglePrev": 0, + "axes": { + "#": 715 + }, + "area": 1489.78438, + "mass": 1.48978, + "inverseMass": 0.67124, + "inertia": 1501.63859, + "inverseInertia": 0.00067, + "parent": { + "#": 696 + }, + "sleepCounter": 0 + }, + [ + { + "#": 696 + } + ], + [ + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + } + ], + { + "x": 631.05675, + "y": 135.84, + "index": 0, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 666.46969, + "y": 135.84, + "index": 1, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 666.46969, + "y": 177.90893, + "index": 2, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 631.05675, + "y": 177.90893, + "index": 3, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 648.76322, + "y": 156.87447 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 710 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 712 + }, + "max": { + "#": 713 + } + }, + { + "x": 631.05675, + "y": 135.84 + }, + { + "x": 666.46969, + "y": 177.90893 + }, + { + "x": 648.76322, + "y": 156.87447 + }, + [ + { + "#": 716 + }, + { + "#": 717 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 28, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 719 + }, + "angle": 0, + "vertices": { + "#": 720 + }, + "position": { + "#": 725 + }, + "force": { + "#": 726 + }, + "torque": 0, + "positionImpulse": { + "#": 727 + }, + "constraintImpulse": { + "#": 728 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 729 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 730 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 731 + }, + "bounds": { + "#": 733 + }, + "positionPrev": { + "#": 736 + }, + "anglePrev": 0, + "axes": { + "#": 737 + }, + "area": 1765.36753, + "mass": 1.76537, + "inverseMass": 0.56645, + "inertia": 2077.83253, + "inverseInertia": 0.00048, + "parent": { + "#": 718 + }, + "sleepCounter": 0 + }, + [ + { + "#": 718 + } + ], + [ + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + } + ], + { + "x": 666.46969, + "y": 135.84, + "index": 0, + "body": { + "#": 718 + }, + "isInternal": false + }, + { + "x": 708.23358, + "y": 135.84, + "index": 1, + "body": { + "#": 718 + }, + "isInternal": false + }, + { + "x": 708.23358, + "y": 178.11019, + "index": 2, + "body": { + "#": 718 + }, + "isInternal": false + }, + { + "x": 666.46969, + "y": 178.11019, + "index": 3, + "body": { + "#": 718 + }, + "isInternal": false + }, + { + "x": 687.35163, + "y": 156.9751 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 732 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 734 + }, + "max": { + "#": 735 + } + }, + { + "x": 666.46969, + "y": 135.84 + }, + { + "x": 708.23358, + "y": 178.11019 + }, + { + "x": 687.35163, + "y": 156.9751 + }, + [ + { + "#": 738 + }, + { + "#": 739 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 29, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 741 + }, + "angle": 0, + "vertices": { + "#": 742 + }, + "position": { + "#": 749 + }, + "force": { + "#": 750 + }, + "torque": 0, + "positionImpulse": { + "#": 751 + }, + "constraintImpulse": { + "#": 752 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 753 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 754 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 755 + }, + "bounds": { + "#": 757 + }, + "positionPrev": { + "#": 760 + }, + "anglePrev": 0, + "axes": { + "#": 761 + }, + "area": 1919.54576, + "mass": 1.91955, + "inverseMass": 0.52096, + "inertia": 2363.70788, + "inverseInertia": 0.00042, + "parent": { + "#": 740 + }, + "sleepCounter": 0 + }, + [ + { + "#": 740 + } + ], + [ + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + } + ], + { + "x": 97.08, + "y": 273.632, + "index": 0, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 73.54, + "y": 287.222, + "index": 1, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 50, + "y": 273.632, + "index": 2, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 50, + "y": 246.45, + "index": 3, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 73.54, + "y": 232.86, + "index": 4, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 97.08, + "y": 246.45, + "index": 5, + "body": { + "#": 740 + }, + "isInternal": false + }, + { + "x": 73.54, + "y": 260.041 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 756 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 758 + }, + "max": { + "#": 759 + } + }, + { + "x": 50, + "y": 232.86 + }, + { + "x": 97.08, + "y": 287.222 + }, + { + "x": 73.54, + "y": 260.041 + }, + [ + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + } + ], + { + "x": -0.49998, + "y": -0.86604 + }, + { + "x": 0.49998, + "y": -0.86604 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 30, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 766 + }, + "angle": 0, + "vertices": { + "#": 767 + }, + "position": { + "#": 774 + }, + "force": { + "#": 775 + }, + "torque": 0, + "positionImpulse": { + "#": 776 + }, + "constraintImpulse": { + "#": 777 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 778 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 779 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 780 + }, + "bounds": { + "#": 782 + }, + "positionPrev": { + "#": 785 + }, + "anglePrev": 0, + "axes": { + "#": 786 + }, + "area": 6052.328, + "mass": 6.05233, + "inverseMass": 0.16523, + "inertia": 23498.5885, + "inverseInertia": 0.00004, + "parent": { + "#": 765 + }, + "sleepCounter": 0 + }, + [ + { + "#": 765 + } + ], + [ + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + } + ], + { + "x": 180.678, + "y": 305.258, + "index": 0, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 138.879, + "y": 329.39, + "index": 1, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 97.08, + "y": 305.258, + "index": 2, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 97.08, + "y": 256.992, + "index": 3, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 138.879, + "y": 232.86, + "index": 4, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 180.678, + "y": 256.992, + "index": 5, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 138.879, + "y": 281.125 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 781 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 783 + }, + "max": { + "#": 784 + } + }, + { + "x": 97.08, + "y": 232.86 + }, + { + "x": 180.678, + "y": 329.39 + }, + { + "x": 138.879, + "y": 281.125 + }, + [ + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + } + ], + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": 0.49999, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 31, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 791 + }, + "angle": 0, + "vertices": { + "#": 792 + }, + "position": { + "#": 797 + }, + "force": { + "#": 798 + }, + "torque": 0, + "positionImpulse": { + "#": 799 + }, + "constraintImpulse": { + "#": 800 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 801 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 802 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 803 + }, + "bounds": { + "#": 805 + }, + "positionPrev": { + "#": 808 + }, + "anglePrev": 0, + "axes": { + "#": 809 + }, + "area": 2220.02331, + "mass": 2.22002, + "inverseMass": 0.45045, + "inertia": 3297.61061, + "inverseInertia": 0.0003, + "parent": { + "#": 790 + }, + "sleepCounter": 0 + }, + [ + { + "#": 790 + } + ], + [ + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + } + ], + { + "x": 180.678, + "y": 232.86, + "index": 0, + "body": { + "#": 790 + }, + "isInternal": false + }, + { + "x": 225.82936, + "y": 232.86, + "index": 1, + "body": { + "#": 790 + }, + "isInternal": false + }, + { + "x": 225.82936, + "y": 282.02847, + "index": 2, + "body": { + "#": 790 + }, + "isInternal": false + }, + { + "x": 180.678, + "y": 282.02847, + "index": 3, + "body": { + "#": 790 + }, + "isInternal": false + }, + { + "x": 203.25368, + "y": 257.44423 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 804 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 806 + }, + "max": { + "#": 807 + } + }, + { + "x": 180.678, + "y": 232.86 + }, + { + "x": 225.82936, + "y": 282.02847 + }, + { + "x": 203.25368, + "y": 257.44423 + }, + [ + { + "#": 810 + }, + { + "#": 811 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 32, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 813 + }, + "angle": 0, + "vertices": { + "#": 814 + }, + "position": { + "#": 821 + }, + "force": { + "#": 822 + }, + "torque": 0, + "positionImpulse": { + "#": 823 + }, + "constraintImpulse": { + "#": 824 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 825 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 826 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 827 + }, + "bounds": { + "#": 829 + }, + "positionPrev": { + "#": 832 + }, + "anglePrev": 0, + "axes": { + "#": 833 + }, + "area": 2601.10745, + "mass": 2.60111, + "inverseMass": 0.38445, + "inertia": 4340.23704, + "inverseInertia": 0.00023, + "parent": { + "#": 812 + }, + "sleepCounter": 0 + }, + [ + { + "#": 812 + } + ], + [ + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + } + ], + { + "x": 280.63336, + "y": 280.322, + "index": 0, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 253.23136, + "y": 296.142, + "index": 1, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 225.82936, + "y": 280.322, + "index": 2, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 225.82936, + "y": 248.68, + "index": 3, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 253.23136, + "y": 232.86, + "index": 4, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 280.63336, + "y": 248.68, + "index": 5, + "body": { + "#": 812 + }, + "isInternal": false + }, + { + "x": 253.23136, + "y": 264.501 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 828 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 830 + }, + "max": { + "#": 831 + } + }, + { + "x": 225.82936, + "y": 232.86 + }, + { + "x": 280.63336, + "y": 296.142 + }, + { + "x": 253.23136, + "y": 264.501 + }, + [ + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + } + ], + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": 0.49999, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 33, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 838 + }, + "angle": 0, + "vertices": { + "#": 839 + }, + "position": { + "#": 844 + }, + "force": { + "#": 845 + }, + "torque": 0, + "positionImpulse": { + "#": 846 + }, + "constraintImpulse": { + "#": 847 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 848 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 849 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 850 + }, + "bounds": { + "#": 852 + }, + "positionPrev": { + "#": 855 + }, + "anglePrev": 0, + "axes": { + "#": 856 + }, + "area": 1413.30884, + "mass": 1.41331, + "inverseMass": 0.70756, + "inertia": 1331.62791, + "inverseInertia": 0.00075, + "parent": { + "#": 837 + }, + "sleepCounter": 0 + }, + [ + { + "#": 837 + } + ], + [ + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + } + ], + { + "x": 318.22736, + "y": 270.454, + "index": 0, + "body": { + "#": 837 + }, + "isInternal": false + }, + { + "x": 280.63336, + "y": 270.454, + "index": 1, + "body": { + "#": 837 + }, + "isInternal": false + }, + { + "x": 280.63336, + "y": 232.86, + "index": 2, + "body": { + "#": 837 + }, + "isInternal": false + }, + { + "x": 318.22736, + "y": 232.86, + "index": 3, + "body": { + "#": 837 + }, + "isInternal": false + }, + { + "x": 299.43036, + "y": 251.657 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 851 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 853 + }, + "max": { + "#": 854 + } + }, + { + "x": 280.63336, + "y": 232.86 + }, + { + "x": 318.22736, + "y": 270.454 + }, + { + "x": 299.43036, + "y": 251.657 + }, + [ + { + "#": 857 + }, + { + "#": 858 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 34, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 860 + }, + "angle": 0, + "vertices": { + "#": 861 + }, + "position": { + "#": 868 + }, + "force": { + "#": 869 + }, + "torque": 0, + "positionImpulse": { + "#": 870 + }, + "constraintImpulse": { + "#": 871 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 872 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 873 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 874 + }, + "bounds": { + "#": 876 + }, + "positionPrev": { + "#": 879 + }, + "anglePrev": 0, + "axes": { + "#": 880 + }, + "area": 5460.80875, + "mass": 5.46081, + "inverseMass": 0.18312, + "inertia": 19129.81619, + "inverseInertia": 0.00005, + "parent": { + "#": 859 + }, + "sleepCounter": 0 + }, + [ + { + "#": 859 + } + ], + [ + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + } + ], + { + "x": 397.63536, + "y": 301.629, + "index": 0, + "body": { + "#": 859 + }, + "isInternal": false + }, + { + "x": 357.93136, + "y": 324.552, + "index": 1, + "body": { + "#": 859 + }, + "isInternal": false + }, + { + "x": 318.22736, + "y": 301.629, + "index": 2, + "body": { + "#": 859 + }, + "isInternal": false + }, + { + "x": 318.22736, + "y": 255.783, + "index": 3, + "body": { + "#": 859 + }, + "isInternal": false + }, + { + "x": 357.93136, + "y": 232.86, + "index": 4, + "body": { + "#": 859 + }, + "isInternal": false + }, + { + "x": 397.63536, + "y": 255.783, + "index": 5, + "body": { + "#": 859 + }, + "isInternal": false + }, + { + "x": 357.93136, + "y": 278.706 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 875 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 877 + }, + "max": { + "#": 878 + } + }, + { + "x": 318.22736, + "y": 232.86 + }, + { + "x": 397.63536, + "y": 324.552 + }, + { + "x": 357.93136, + "y": 278.706 + }, + [ + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + } + ], + { + "x": -0.5, + "y": -0.86603 + }, + { + "x": 0.5, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 35, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 885 + }, + "angle": 0, + "vertices": { + "#": 886 + }, + "position": { + "#": 891 + }, + "force": { + "#": 892 + }, + "torque": 0, + "positionImpulse": { + "#": 893 + }, + "constraintImpulse": { + "#": 894 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 895 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 896 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 897 + }, + "bounds": { + "#": 899 + }, + "positionPrev": { + "#": 902 + }, + "anglePrev": 0, + "axes": { + "#": 903 + }, + "area": 451.61379, + "mass": 0.45161, + "inverseMass": 2.21428, + "inertia": 136.71143, + "inverseInertia": 0.00731, + "parent": { + "#": 884 + }, + "sleepCounter": 0 + }, + [ + { + "#": 884 + } + ], + [ + { + "#": 887 + }, + { + "#": 888 + }, + { + "#": 889 + }, + { + "#": 890 + } + ], + { + "x": 397.63536, + "y": 232.86, + "index": 0, + "body": { + "#": 884 + }, + "isInternal": false + }, + { + "x": 417.80589, + "y": 232.86, + "index": 1, + "body": { + "#": 884 + }, + "isInternal": false + }, + { + "x": 417.80589, + "y": 255.24979, + "index": 2, + "body": { + "#": 884 + }, + "isInternal": false + }, + { + "x": 397.63536, + "y": 255.24979, + "index": 3, + "body": { + "#": 884 + }, + "isInternal": false + }, + { + "x": 407.72063, + "y": 244.05489 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 898 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 900 + }, + "max": { + "#": 901 + } + }, + { + "x": 397.63536, + "y": 232.86 + }, + { + "x": 417.80589, + "y": 255.24979 + }, + { + "x": 407.72063, + "y": 244.05489 + }, + [ + { + "#": 904 + }, + { + "#": 905 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 36, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 907 + }, + "angle": 0, + "vertices": { + "#": 908 + }, + "position": { + "#": 913 + }, + "force": { + "#": 914 + }, + "torque": 0, + "positionImpulse": { + "#": 915 + }, + "constraintImpulse": { + "#": 916 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 917 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 918 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 919 + }, + "bounds": { + "#": 921 + }, + "positionPrev": { + "#": 924 + }, + "anglePrev": 0, + "axes": { + "#": 925 + }, + "area": 3021.67907, + "mass": 3.02168, + "inverseMass": 0.33094, + "inertia": 11331.77016, + "inverseInertia": 0.00009, + "parent": { + "#": 906 + }, + "sleepCounter": 0 + }, + [ + { + "#": 906 + } + ], + [ + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + }, + { + "#": 912 + } + ], + { + "x": 417.80589, + "y": 232.86, + "index": 0, + "body": { + "#": 906 + }, + "isInternal": false + }, + { + "x": 519.63905, + "y": 232.86, + "index": 1, + "body": { + "#": 906 + }, + "isInternal": false + }, + { + "x": 519.63905, + "y": 262.53284, + "index": 2, + "body": { + "#": 906 + }, + "isInternal": false + }, + { + "x": 417.80589, + "y": 262.53284, + "index": 3, + "body": { + "#": 906 + }, + "isInternal": false + }, + { + "x": 468.72247, + "y": 247.69642 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 920 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 922 + }, + "max": { + "#": 923 + } + }, + { + "x": 417.80589, + "y": 232.86 + }, + { + "x": 519.63905, + "y": 262.53284 + }, + { + "x": 468.72247, + "y": 247.69642 + }, + [ + { + "#": 926 + }, + { + "#": 927 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 37, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 929 + }, + "angle": 0, + "vertices": { + "#": 930 + }, + "position": { + "#": 935 + }, + "force": { + "#": 936 + }, + "torque": 0, + "positionImpulse": { + "#": 937 + }, + "constraintImpulse": { + "#": 938 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 939 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 940 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 941 + }, + "bounds": { + "#": 943 + }, + "positionPrev": { + "#": 946 + }, + "anglePrev": 0, + "axes": { + "#": 947 + }, + "area": 856.73964, + "mass": 0.85674, + "inverseMass": 1.16722, + "inertia": 589.10598, + "inverseInertia": 0.0017, + "parent": { + "#": 928 + }, + "sleepCounter": 0 + }, + [ + { + "#": 928 + } + ], + [ + { + "#": 931 + }, + { + "#": 932 + }, + { + "#": 933 + }, + { + "#": 934 + } + ], + { + "x": 519.63905, + "y": 232.86, + "index": 0, + "body": { + "#": 928 + }, + "isInternal": false + }, + { + "x": 559.71055, + "y": 232.86, + "index": 1, + "body": { + "#": 928 + }, + "isInternal": false + }, + { + "x": 559.71055, + "y": 254.24027, + "index": 2, + "body": { + "#": 928 + }, + "isInternal": false + }, + { + "x": 519.63905, + "y": 254.24027, + "index": 3, + "body": { + "#": 928 + }, + "isInternal": false + }, + { + "x": 539.6748, + "y": 243.55014 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 942 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 944 + }, + "max": { + "#": 945 + } + }, + { + "x": 519.63905, + "y": 232.86 + }, + { + "x": 559.71055, + "y": 254.24027 + }, + { + "x": 539.6748, + "y": 243.55014 + }, + [ + { + "#": 948 + }, + { + "#": 949 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 38, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 951 + }, + "angle": 0, + "vertices": { + "#": 952 + }, + "position": { + "#": 961 + }, + "force": { + "#": 962 + }, + "torque": 0, + "positionImpulse": { + "#": 963 + }, + "constraintImpulse": { + "#": 964 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 965 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 966 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 967 + }, + "bounds": { + "#": 969 + }, + "positionPrev": { + "#": 972 + }, + "anglePrev": 0, + "axes": { + "#": 973 + }, + "area": 4088.59995, + "mass": 4.0886, + "inverseMass": 0.24458, + "inertia": 10666.41244, + "inverseInertia": 0.00009, + "parent": { + "#": 950 + }, + "sleepCounter": 0 + }, + [ + { + "#": 950 + } + ], + [ + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + }, + { + "#": 959 + }, + { + "#": 960 + } + ], + { + "x": 629.96255, + "y": 282.536, + "index": 0, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 609.38655, + "y": 303.112, + "index": 1, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 580.28655, + "y": 303.112, + "index": 2, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 559.71055, + "y": 282.536, + "index": 3, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 559.71055, + "y": 253.436, + "index": 4, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 580.28655, + "y": 232.86, + "index": 5, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 609.38655, + "y": 232.86, + "index": 6, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 629.96255, + "y": 253.436, + "index": 7, + "body": { + "#": 950 + }, + "isInternal": false + }, + { + "x": 594.83655, + "y": 267.986 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 968 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 970 + }, + "max": { + "#": 971 + } + }, + { + "x": 559.71055, + "y": 232.86 + }, + { + "x": 629.96255, + "y": 303.112 + }, + { + "x": 594.83655, + "y": 267.986 + }, + [ + { + "#": 974 + }, + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 39, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 979 + }, + "angle": 0, + "vertices": { + "#": 980 + }, + "position": { + "#": 985 + }, + "force": { + "#": 986 + }, + "torque": 0, + "positionImpulse": { + "#": 987 + }, + "constraintImpulse": { + "#": 988 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 989 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 990 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 991 + }, + "bounds": { + "#": 993 + }, + "positionPrev": { + "#": 996 + }, + "anglePrev": 0, + "axes": { + "#": 997 + }, + "area": 1965.14243, + "mass": 1.96514, + "inverseMass": 0.50887, + "inertia": 5563.36836, + "inverseInertia": 0.00018, + "parent": { + "#": 978 + }, + "sleepCounter": 0 + }, + [ + { + "#": 978 + } + ], + [ + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + } + ], + { + "x": 629.96255, + "y": 232.86, + "index": 0, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 719.46684, + "y": 232.86, + "index": 1, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 719.46684, + "y": 254.81585, + "index": 2, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 629.96255, + "y": 254.81585, + "index": 3, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 674.7147, + "y": 243.83792 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 992 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 994 + }, + "max": { + "#": 995 + } + }, + { + "x": 629.96255, + "y": 232.86 + }, + { + "x": 719.46684, + "y": 254.81585 + }, + { + "x": 674.7147, + "y": 243.83792 + }, + [ + { + "#": 998 + }, + { + "#": 999 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 40, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1001 + }, + "angle": 0, + "vertices": { + "#": 1002 + }, + "position": { + "#": 1006 + }, + "force": { + "#": 1007 + }, + "torque": 0, + "positionImpulse": { + "#": 1008 + }, + "constraintImpulse": { + "#": 1009 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1010 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1011 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1012 + }, + "bounds": { + "#": 1014 + }, + "positionPrev": { + "#": 1017 + }, + "anglePrev": 0, + "axes": { + "#": 1018 + }, + "area": 1492.52562, + "mass": 1.49253, + "inverseMass": 0.67001, + "inertia": 1714.83247, + "inverseInertia": 0.00058, + "parent": { + "#": 1000 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1000 + } + ], + [ + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + } + ], + { + "x": 761.83684, + "y": 291.57, + "index": 0, + "body": { + "#": 1000 + }, + "isInternal": false + }, + { + "x": 710.99284, + "y": 262.215, + "index": 1, + "body": { + "#": 1000 + }, + "isInternal": false + }, + { + "x": 761.83684, + "y": 232.86, + "index": 2, + "body": { + "#": 1000 + }, + "isInternal": false + }, + { + "x": 744.88884, + "y": 262.215 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1013 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1015 + }, + "max": { + "#": 1016 + } + }, + { + "x": 710.99284, + "y": 232.86 + }, + { + "x": 761.83684, + "y": 291.57 + }, + { + "x": 744.88884, + "y": 262.215 + }, + [ + { + "#": 1019 + }, + { + "#": 1020 + }, + { + "#": 1021 + } + ], + { + "x": -0.5, + "y": 0.86602 + }, + { + "x": -0.5, + "y": -0.86602 + }, + { + "x": 1, + "y": 0 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 1026 + }, + "max": { + "#": 1027 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/mixedSolid/mixedSolid-10.json b/test/node/refs/mixedSolid/mixedSolid-10.json new file mode 100644 index 00000000..ad9ea37b --- /dev/null +++ b/test/node/refs/mixedSolid/mixedSolid-10.json @@ -0,0 +1,9964 @@ +[ + { + "id": 65, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 94 + }, + "composites": { + "#": 95 + }, + "label": "World", + "gravity": { + "#": 1064 + }, + "bounds": { + "#": 1065 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + [], + [ + { + "#": 96 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 97 + }, + "constraints": { + "#": 1062 + }, + "composites": { + "#": 1063 + }, + "label": "Stack" + }, + [ + { + "#": 98 + }, + { + "#": 121 + }, + { + "#": 144 + }, + { + "#": 167 + }, + { + "#": 190 + }, + { + "#": 216 + }, + { + "#": 243 + }, + { + "#": 299 + }, + { + "#": 322 + }, + { + "#": 345 + }, + { + "#": 368 + }, + { + "#": 391 + }, + { + "#": 414 + }, + { + "#": 445 + }, + { + "#": 468 + }, + { + "#": 495 + }, + { + "#": 518 + }, + { + "#": 541 + }, + { + "#": 597 + }, + { + "#": 620 + }, + { + "#": 643 + }, + { + "#": 699 + }, + { + "#": 722 + }, + { + "#": 745 + }, + { + "#": 768 + }, + { + "#": 794 + }, + { + "#": 820 + }, + { + "#": 843 + }, + { + "#": 869 + }, + { + "#": 892 + }, + { + "#": 918 + }, + { + "#": 941 + }, + { + "#": 964 + }, + { + "#": 987 + }, + { + "#": 1016 + }, + { + "#": 1039 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 99 + }, + "angle": 0, + "vertices": { + "#": 100 + }, + "position": { + "#": 105 + }, + "force": { + "#": 106 + }, + "torque": 0, + "positionImpulse": { + "#": 107 + }, + "constraintImpulse": { + "#": 108 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 109 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 110 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 111 + }, + "bounds": { + "#": 113 + }, + "positionPrev": { + "#": 116 + }, + "anglePrev": 0, + "axes": { + "#": 117 + }, + "area": 1534.90643, + "mass": 1.53491, + "inverseMass": 0.65151, + "inertia": 1587.6055, + "inverseInertia": 0.00063, + "parent": { + "#": 98 + }, + "sleepCounter": 0, + "region": { + "#": 120 + } + }, + [ + { + "#": 98 + } + ], + [ + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + } + ], + { + "x": 45.99786, + "y": 67.73575, + "index": 0, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 82.40102, + "y": 67.73575, + "index": 1, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 82.40102, + "y": 109.89985, + "index": 2, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 45.99786, + "y": 109.89985, + "index": 3, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 64.19944, + "y": 88.8178 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.21241, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 112 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 114 + }, + "max": { + "#": 115 + } + }, + { + "x": 45.99786, + "y": 67.73575 + }, + { + "x": 82.40102, + "y": 112.80712 + }, + { + "x": 64.19944, + "y": 85.91053 + }, + [ + { + "#": 118 + }, + { + "#": 119 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "0,1,1,2", + "startCol": 0, + "endCol": 1, + "startRow": 1, + "endRow": 2 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 122 + }, + "angle": 0, + "vertices": { + "#": 123 + }, + "position": { + "#": 128 + }, + "force": { + "#": 129 + }, + "torque": 0, + "positionImpulse": { + "#": 130 + }, + "constraintImpulse": { + "#": 131 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 132 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 133 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 134 + }, + "bounds": { + "#": 136 + }, + "positionPrev": { + "#": 139 + }, + "anglePrev": 0, + "axes": { + "#": 140 + }, + "area": 2220.52879, + "mass": 2.22053, + "inverseMass": 0.45034, + "inertia": 3297.21813, + "inverseInertia": 0.0003, + "parent": { + "#": 121 + }, + "sleepCounter": 0, + "region": { + "#": 143 + } + }, + [ + { + "#": 121 + } + ], + [ + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + } + ], + { + "x": 84.77238, + "y": 67.73575, + "index": 0, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 130.08822, + "y": 67.73575, + "index": 1, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 130.08822, + "y": 116.73691, + "index": 2, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 84.77238, + "y": 116.73691, + "index": 3, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 107.4303, + "y": 92.23633 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.04023, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 135 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 137 + }, + "max": { + "#": 138 + } + }, + { + "x": 84.77238, + "y": 67.73575 + }, + { + "x": 130.08822, + "y": 119.64418 + }, + { + "x": 107.4303, + "y": 89.32906 + }, + [ + { + "#": 141 + }, + { + "#": 142 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "1,2,1,2", + "startCol": 1, + "endCol": 2, + "startRow": 1, + "endRow": 2 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 145 + }, + "angle": 0, + "vertices": { + "#": 146 + }, + "position": { + "#": 151 + }, + "force": { + "#": 152 + }, + "torque": 0, + "positionImpulse": { + "#": 153 + }, + "constraintImpulse": { + "#": 154 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 155 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 156 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 157 + }, + "bounds": { + "#": 159 + }, + "positionPrev": { + "#": 162 + }, + "anglePrev": 0, + "axes": { + "#": 163 + }, + "area": 1140.1977, + "mass": 1.1402, + "inverseMass": 0.87704, + "inertia": 905.8525, + "inverseInertia": 0.0011, + "parent": { + "#": 144 + }, + "sleepCounter": 0, + "region": { + "#": 166 + } + }, + [ + { + "#": 144 + } + ], + [ + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + } + ], + { + "x": 130.32308, + "y": 67.73575, + "index": 0, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 169.54388, + "y": 67.73575, + "index": 1, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 169.54388, + "y": 96.807, + "index": 2, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 130.32308, + "y": 96.807, + "index": 3, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 149.93348, + "y": 82.27138 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.02601, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 158 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 160 + }, + "max": { + "#": 161 + } + }, + { + "x": 130.32308, + "y": 67.73575 + }, + { + "x": 169.54388, + "y": 99.71427 + }, + { + "x": 149.93348, + "y": 79.36411 + }, + [ + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,1,2", + "startCol": 2, + "endCol": 3, + "startRow": 1, + "endRow": 2 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 168 + }, + "angle": 0, + "vertices": { + "#": 169 + }, + "position": { + "#": 174 + }, + "force": { + "#": 175 + }, + "torque": 0, + "positionImpulse": { + "#": 176 + }, + "constraintImpulse": { + "#": 177 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 178 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 179 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 180 + }, + "bounds": { + "#": 182 + }, + "positionPrev": { + "#": 185 + }, + "anglePrev": 0, + "axes": { + "#": 186 + }, + "area": 752.4076, + "mass": 0.75241, + "inverseMass": 1.32907, + "inertia": 384.63687, + "inverseInertia": 0.0026, + "parent": { + "#": 167 + }, + "sleepCounter": 0, + "region": { + "#": 189 + } + }, + [ + { + "#": 167 + } + ], + [ + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + } + ], + { + "x": 169.49388, + "y": 67.73575, + "index": 0, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 194.3712, + "y": 67.73575, + "index": 1, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 194.3712, + "y": 97.98048, + "index": 2, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 169.49388, + "y": 97.98048, + "index": 3, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 181.93254, + "y": 82.85812 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.02601, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 181 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 183 + }, + "max": { + "#": 184 + } + }, + { + "x": 169.49388, + "y": 67.73575 + }, + { + "x": 194.3712, + "y": 100.88775 + }, + { + "x": 181.93254, + "y": 79.95085 + }, + [ + { + "#": 187 + }, + { + "#": 188 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,1,2", + "startCol": 3, + "endCol": 4, + "startRow": 1, + "endRow": 2 + }, + { + "id": 9, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 191 + }, + "angle": 0, + "vertices": { + "#": 192 + }, + "position": { + "#": 199 + }, + "force": { + "#": 200 + }, + "torque": 0, + "positionImpulse": { + "#": 201 + }, + "constraintImpulse": { + "#": 202 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 203 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 204 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 205 + }, + "bounds": { + "#": 207 + }, + "positionPrev": { + "#": 210 + }, + "anglePrev": 0, + "axes": { + "#": 211 + }, + "area": 2027.25418, + "mass": 2.02725, + "inverseMass": 0.49328, + "inertia": 2636.41196, + "inverseInertia": 0.00038, + "parent": { + "#": 190 + }, + "sleepCounter": 0, + "region": { + "#": 215 + } + }, + [ + { + "#": 190 + } + ], + [ + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + } + ], + { + "x": 243.74874, + "y": 108.23735, + "index": 0, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 219.55774, + "y": 122.20435, + "index": 1, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 195.36674, + "y": 108.23735, + "index": 2, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 195.36674, + "y": 80.30335, + "index": 3, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 219.55774, + "y": 66.33635, + "index": 4, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 243.74874, + "y": 80.30335, + "index": 5, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 219.55774, + "y": 94.27035 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 206 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 208 + }, + "max": { + "#": 209 + } + }, + { + "x": 195.36674, + "y": 66.33635 + }, + { + "x": 243.74874, + "y": 125.11162 + }, + { + "x": 219.55774, + "y": 91.36308 + }, + [ + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + } + ], + { + "x": -0.50001, + "y": -0.86602 + }, + { + "x": 0.50001, + "y": -0.86602 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,1,2", + "startCol": 4, + "endCol": 5, + "startRow": 1, + "endRow": 2 + }, + { + "id": 10, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 217 + }, + "angle": 0, + "vertices": { + "#": 218 + }, + "position": { + "#": 224 + }, + "force": { + "#": 225 + }, + "torque": 0, + "positionImpulse": { + "#": 226 + }, + "constraintImpulse": { + "#": 227 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 228 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 229 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 230 + }, + "bounds": { + "#": 232 + }, + "positionPrev": { + "#": 235 + }, + "anglePrev": 0, + "axes": { + "#": 236 + }, + "area": 4842.27229, + "mass": 4.84227, + "inverseMass": 0.20651, + "inertia": 15180.5655, + "inverseInertia": 0.00007, + "parent": { + "#": 216 + }, + "sleepCounter": 0, + "region": { + "#": 242 + } + }, + [ + { + "#": 216 + } + ], + [ + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + } + ], + { + "x": 321.55579, + "y": 139.9328, + "index": 0, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 271.10079, + "y": 156.3268, + "index": 1, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 239.91779, + "y": 113.4068, + "index": 2, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 271.10079, + "y": 70.4868, + "index": 3, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 321.55579, + "y": 86.8808, + "index": 4, + "body": { + "#": 216 + }, + "isInternal": false + }, + { + "x": 285.04618, + "y": 113.4068 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.0748, + "y": 0.06774 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 231 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 233 + }, + "max": { + "#": 234 + } + }, + { + "x": 239.91779, + "y": 70.4868 + }, + { + "x": 321.55579, + "y": 159.23407 + }, + { + "x": 285.04618, + "y": 110.49953 + }, + [ + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + } + ], + { + "x": 0.30902, + "y": 0.95106 + }, + { + "x": -0.80902, + "y": 0.58778 + }, + { + "x": -0.80902, + "y": -0.58778 + }, + { + "x": 0.30902, + "y": -0.95106 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,1,3", + "startCol": 5, + "endCol": 6, + "startRow": 1, + "endRow": 3 + }, + { + "id": 11, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 244 + }, + "angle": 0, + "vertices": { + "#": 245 + }, + "position": { + "#": 272 + }, + "force": { + "#": 273 + }, + "torque": 0, + "positionImpulse": { + "#": 274 + }, + "constraintImpulse": { + "#": 275 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 276 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 277 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 278 + }, + "circleRadius": 31.45923, + "bounds": { + "#": 280 + }, + "positionPrev": { + "#": 283 + }, + "anglePrev": 0, + "axes": { + "#": 284 + }, + "area": 3079.01783, + "mass": 3.07902, + "inverseMass": 0.32478, + "inertia": 6035.49394, + "inverseInertia": 0.00017, + "parent": { + "#": 243 + }, + "sleepCounter": 0, + "region": { + "#": 298 + } + }, + [ + { + "#": 243 + } + ], + [ + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + } + ], + { + "x": 385.66702, + "y": 105.21286, + "index": 0, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 383.85202, + "y": 112.57686, + "index": 1, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 380.32702, + "y": 119.29186, + "index": 2, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 375.29802, + "y": 124.96886, + "index": 3, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 369.05702, + "y": 129.27686, + "index": 4, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 361.96602, + "y": 131.96586, + "index": 5, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 354.43702, + "y": 132.87986, + "index": 6, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 346.90802, + "y": 131.96586, + "index": 7, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 339.81702, + "y": 129.27686, + "index": 8, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 333.57602, + "y": 124.96886, + "index": 9, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 328.54702, + "y": 119.29186, + "index": 10, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 325.02202, + "y": 112.57686, + "index": 11, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 323.20702, + "y": 105.21286, + "index": 12, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 323.20702, + "y": 97.62886, + "index": 13, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 325.02202, + "y": 90.26486, + "index": 14, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 328.54702, + "y": 83.54986, + "index": 15, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 333.57602, + "y": 77.87286, + "index": 16, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 339.81702, + "y": 73.56486, + "index": 17, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 346.90802, + "y": 70.87586, + "index": 18, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 354.43702, + "y": 69.96186, + "index": 19, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 361.96602, + "y": 70.87586, + "index": 20, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 369.05702, + "y": 73.56486, + "index": 21, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 375.29802, + "y": 77.87286, + "index": 22, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 380.32702, + "y": 83.54986, + "index": 23, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 383.85202, + "y": 90.26486, + "index": 24, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 385.66702, + "y": 97.62886, + "index": 25, + "body": { + "#": 243 + }, + "isInternal": false + }, + { + "x": 354.43702, + "y": 101.42086 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.03923, + "y": 0.10852 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 279 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 281 + }, + "max": { + "#": 282 + } + }, + { + "x": 323.20702, + "y": 69.96186 + }, + { + "x": 385.66702, + "y": 135.78713 + }, + { + "x": 354.43702, + "y": 98.51359 + }, + [ + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + } + ], + { + "x": -0.97094, + "y": -0.23931 + }, + { + "x": -0.88542, + "y": -0.4648 + }, + { + "x": -0.74854, + "y": -0.66309 + }, + { + "x": -0.56808, + "y": -0.82297 + }, + { + "x": -0.35457, + "y": -0.93503 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35457, + "y": -0.93503 + }, + { + "x": 0.56808, + "y": -0.82297 + }, + { + "x": 0.74854, + "y": -0.66309 + }, + { + "x": 0.88542, + "y": -0.4648 + }, + { + "x": 0.97094, + "y": -0.23931 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,8,1,2", + "startCol": 6, + "endCol": 8, + "startRow": 1, + "endRow": 2 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 300 + }, + "angle": 0, + "vertices": { + "#": 301 + }, + "position": { + "#": 306 + }, + "force": { + "#": 307 + }, + "torque": 0, + "positionImpulse": { + "#": 308 + }, + "constraintImpulse": { + "#": 309 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 310 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 311 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 312 + }, + "bounds": { + "#": 314 + }, + "positionPrev": { + "#": 317 + }, + "anglePrev": 0, + "axes": { + "#": 318 + }, + "area": 1329.41676, + "mass": 1.32942, + "inverseMass": 0.75221, + "inertia": 1383.51246, + "inverseInertia": 0.00072, + "parent": { + "#": 299 + }, + "sleepCounter": 0, + "region": { + "#": 321 + } + }, + [ + { + "#": 299 + } + ], + [ + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + } + ], + { + "x": 384.8064, + "y": 67.11912, + "index": 0, + "body": { + "#": 299 + }, + "isInternal": false + }, + { + "x": 433.58405, + "y": 67.11912, + "index": 1, + "body": { + "#": 299 + }, + "isInternal": false + }, + { + "x": 433.58405, + "y": 94.37375, + "index": 2, + "body": { + "#": 299 + }, + "isInternal": false + }, + { + "x": 384.8064, + "y": 94.37375, + "index": 3, + "body": { + "#": 299 + }, + "isInternal": false + }, + { + "x": 409.19522, + "y": 80.74644 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 313 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 315 + }, + "max": { + "#": 316 + } + }, + { + "x": 384.8064, + "y": 67.11912 + }, + { + "x": 433.58405, + "y": 97.28103 + }, + { + "x": 409.19522, + "y": 77.83917 + }, + [ + { + "#": 319 + }, + { + "#": 320 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,1,1", + "startCol": 8, + "endCol": 9, + "startRow": 1, + "endRow": 1 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 323 + }, + "angle": 0, + "vertices": { + "#": 324 + }, + "position": { + "#": 329 + }, + "force": { + "#": 330 + }, + "torque": 0, + "positionImpulse": { + "#": 331 + }, + "constraintImpulse": { + "#": 332 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 333 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 334 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 335 + }, + "bounds": { + "#": 337 + }, + "positionPrev": { + "#": 340 + }, + "anglePrev": 0, + "axes": { + "#": 341 + }, + "area": 2858.63236, + "mass": 2.85863, + "inverseMass": 0.34982, + "inertia": 11948.09601, + "inverseInertia": 0.00008, + "parent": { + "#": 322 + }, + "sleepCounter": 0, + "region": { + "#": 344 + } + }, + [ + { + "#": 322 + } + ], + [ + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + } + ], + { + "x": 433.90483, + "y": 67.73575, + "index": 0, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 542.75943, + "y": 67.73575, + "index": 1, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 542.75943, + "y": 93.99677, + "index": 2, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 433.90483, + "y": 93.99677, + "index": 3, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 488.33213, + "y": 80.86626 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 336 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 338 + }, + "max": { + "#": 339 + } + }, + { + "x": 433.90483, + "y": 67.73575 + }, + { + "x": 542.75943, + "y": 93.99677 + }, + { + "x": 488.33213, + "y": 77.95899 + }, + [ + { + "#": 342 + }, + { + "#": 343 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,11,1,1", + "startCol": 9, + "endCol": 11, + "startRow": 1, + "endRow": 1 + }, + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 346 + }, + "angle": 0, + "vertices": { + "#": 347 + }, + "position": { + "#": 352 + }, + "force": { + "#": 353 + }, + "torque": 0, + "positionImpulse": { + "#": 354 + }, + "constraintImpulse": { + "#": 355 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 356 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 357 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 358 + }, + "bounds": { + "#": 360 + }, + "positionPrev": { + "#": 363 + }, + "anglePrev": 0, + "axes": { + "#": 364 + }, + "area": 926.83946, + "mass": 0.92684, + "inverseMass": 1.07894, + "inertia": 640.73396, + "inverseInertia": 0.00156, + "parent": { + "#": 345 + }, + "sleepCounter": 0, + "region": { + "#": 367 + } + }, + [ + { + "#": 345 + } + ], + [ + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + } + ], + { + "x": 542.94242, + "y": 67.73575, + "index": 0, + "body": { + "#": 345 + }, + "isInternal": false + }, + { + "x": 581.69821, + "y": 67.73575, + "index": 1, + "body": { + "#": 345 + }, + "isInternal": false + }, + { + "x": 581.69821, + "y": 91.65062, + "index": 2, + "body": { + "#": 345 + }, + "isInternal": false + }, + { + "x": 542.94242, + "y": 91.65062, + "index": 3, + "body": { + "#": 345 + }, + "isInternal": false + }, + { + "x": 562.32031, + "y": 79.69319 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 359 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 361 + }, + "max": { + "#": 362 + } + }, + { + "x": 542.94242, + "y": 67.73575 + }, + { + "x": 581.69821, + "y": 91.65062 + }, + { + "x": 562.32031, + "y": 76.78592 + }, + [ + { + "#": 365 + }, + { + "#": 366 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,1,1", + "startCol": 11, + "endCol": 12, + "startRow": 1, + "endRow": 1 + }, + { + "id": 15, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 369 + }, + "angle": 0, + "vertices": { + "#": 370 + }, + "position": { + "#": 375 + }, + "force": { + "#": 376 + }, + "torque": 0, + "positionImpulse": { + "#": 377 + }, + "constraintImpulse": { + "#": 378 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 379 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 380 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 381 + }, + "bounds": { + "#": 383 + }, + "positionPrev": { + "#": 386 + }, + "anglePrev": 0, + "axes": { + "#": 387 + }, + "area": 1290.45014, + "mass": 1.29045, + "inverseMass": 0.77492, + "inertia": 1110.21456, + "inverseInertia": 0.0009, + "parent": { + "#": 368 + }, + "sleepCounter": 0, + "region": { + "#": 390 + } + }, + [ + { + "#": 368 + } + ], + [ + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + } + ], + { + "x": 582.13481, + "y": 67.73575, + "index": 0, + "body": { + "#": 368 + }, + "isInternal": false + }, + { + "x": 617.90513, + "y": 67.73575, + "index": 1, + "body": { + "#": 368 + }, + "isInternal": false + }, + { + "x": 617.90513, + "y": 103.81176, + "index": 2, + "body": { + "#": 368 + }, + "isInternal": false + }, + { + "x": 582.13481, + "y": 103.81176, + "index": 3, + "body": { + "#": 368 + }, + "isInternal": false + }, + { + "x": 600.01997, + "y": 85.77376 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 382 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 384 + }, + "max": { + "#": 385 + } + }, + { + "x": 582.13481, + "y": 67.73575 + }, + { + "x": 617.90513, + "y": 103.81176 + }, + { + "x": 600.01997, + "y": 82.86649 + }, + [ + { + "#": 388 + }, + { + "#": 389 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,12,1,2", + "startCol": 12, + "endCol": 12, + "startRow": 1, + "endRow": 2 + }, + { + "id": 16, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 392 + }, + "angle": 0, + "vertices": { + "#": 393 + }, + "position": { + "#": 398 + }, + "force": { + "#": 399 + }, + "torque": 0, + "positionImpulse": { + "#": 400 + }, + "constraintImpulse": { + "#": 401 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 402 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 403 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 404 + }, + "bounds": { + "#": 406 + }, + "positionPrev": { + "#": 409 + }, + "anglePrev": 0, + "axes": { + "#": 410 + }, + "area": 1148.29259, + "mass": 1.14829, + "inverseMass": 0.87086, + "inertia": 897.94757, + "inverseInertia": 0.00111, + "parent": { + "#": 391 + }, + "sleepCounter": 0, + "region": { + "#": 413 + } + }, + [ + { + "#": 391 + } + ], + [ + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + } + ], + { + "x": 621.15196, + "y": 67.73575, + "index": 0, + "body": { + "#": 391 + }, + "isInternal": false + }, + { + "x": 651.70687, + "y": 67.73575, + "index": 1, + "body": { + "#": 391 + }, + "isInternal": false + }, + { + "x": 651.70687, + "y": 105.31703, + "index": 2, + "body": { + "#": 391 + }, + "isInternal": false + }, + { + "x": 621.15196, + "y": 105.31703, + "index": 3, + "body": { + "#": 391 + }, + "isInternal": false + }, + { + "x": 636.42942, + "y": 86.52639 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.48796, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 405 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 407 + }, + "max": { + "#": 408 + } + }, + { + "x": 621.15196, + "y": 67.73575 + }, + { + "x": 651.70687, + "y": 108.2243 + }, + { + "x": 636.42942, + "y": 83.61912 + }, + [ + { + "#": 411 + }, + { + "#": 412 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,1,2", + "startCol": 12, + "endCol": 13, + "startRow": 1, + "endRow": 2 + }, + { + "id": 17, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 415 + }, + "angle": 0, + "vertices": { + "#": 416 + }, + "position": { + "#": 424 + }, + "force": { + "#": 425 + }, + "torque": 0, + "positionImpulse": { + "#": 426 + }, + "constraintImpulse": { + "#": 427 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 428 + }, + "angularVelocity": 0.00221, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 429 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 430 + }, + "bounds": { + "#": 432 + }, + "positionPrev": { + "#": 435 + }, + "anglePrev": -0.00294, + "axes": { + "#": 436 + }, + "area": 1926.78789, + "mass": 1.92679, + "inverseMass": 0.519, + "inertia": 2372.87433, + "inverseInertia": 0.00042, + "parent": { + "#": 414 + }, + "sleepCounter": 0, + "region": { + "#": 444 + } + }, + [ + { + "#": 414 + } + ], + [ + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + } + ], + { + "x": 71.60503, + "y": 190.95875, + "index": 0, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 53.60203, + "y": 205.31575, + "index": 1, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 31.15203, + "y": 200.19175, + "index": 2, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 21.16203, + "y": 179.44575, + "index": 3, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 31.15203, + "y": 158.69975, + "index": 4, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 53.60203, + "y": 153.57575, + "index": 5, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 71.60503, + "y": 167.93275, + "index": 6, + "body": { + "#": 414 + }, + "isInternal": false + }, + { + "x": 47.69722, + "y": 179.44575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1.17367, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.80477 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 431 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 433 + }, + "max": { + "#": 434 + } + }, + { + "x": 21.16203, + "y": 153.57575 + }, + { + "x": 71.60503, + "y": 208.22303 + }, + { + "x": 47.69722, + "y": 176.67515 + }, + [ + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + } + ], + { + "x": 0.62349, + "y": 0.78183 + }, + { + "x": -0.22252, + "y": 0.97493 + }, + { + "x": -0.90098, + "y": 0.43386 + }, + { + "x": -0.90098, + "y": -0.43386 + }, + { + "x": -0.22252, + "y": -0.97493 + }, + { + "x": 0.62349, + "y": -0.78183 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "0,1,3,4", + "startCol": 0, + "endCol": 1, + "startRow": 3, + "endRow": 4 + }, + { + "id": 18, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 446 + }, + "angle": 0, + "vertices": { + "#": 447 + }, + "position": { + "#": 451 + }, + "force": { + "#": 452 + }, + "torque": 0, + "positionImpulse": { + "#": 453 + }, + "constraintImpulse": { + "#": 454 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 455 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 456 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 457 + }, + "bounds": { + "#": 459 + }, + "positionPrev": { + "#": 462 + }, + "anglePrev": 0, + "axes": { + "#": 463 + }, + "area": 1097.75588, + "mass": 1.09776, + "inverseMass": 0.91095, + "inertia": 927.66175, + "inverseInertia": 0.00108, + "parent": { + "#": 445 + }, + "sleepCounter": 0, + "region": { + "#": 467 + } + }, + [ + { + "#": 445 + } + ], + [ + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + } + ], + { + "x": 135.05817, + "y": 203.92575, + "index": 0, + "body": { + "#": 445 + }, + "isInternal": false + }, + { + "x": 91.45317, + "y": 178.75075, + "index": 1, + "body": { + "#": 445 + }, + "isInternal": false + }, + { + "x": 135.05817, + "y": 153.57575, + "index": 2, + "body": { + "#": 445 + }, + "isInternal": false + }, + { + "x": 120.52317, + "y": 178.75075 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.08143, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 458 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 460 + }, + "max": { + "#": 461 + } + }, + { + "x": 91.45317, + "y": 153.57575 + }, + { + "x": 135.05817, + "y": 206.83303 + }, + { + "x": 120.52317, + "y": 175.84348 + }, + [ + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + } + ], + { + "x": -0.49999, + "y": 0.86603 + }, + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "1,2,3,4", + "startCol": 1, + "endCol": 2, + "startRow": 3, + "endRow": 4 + }, + { + "id": 19, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 469 + }, + "angle": 0, + "vertices": { + "#": 470 + }, + "position": { + "#": 476 + }, + "force": { + "#": 477 + }, + "torque": 0, + "positionImpulse": { + "#": 478 + }, + "constraintImpulse": { + "#": 479 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 480 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 481 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 482 + }, + "bounds": { + "#": 484 + }, + "positionPrev": { + "#": 487 + }, + "anglePrev": 0, + "axes": { + "#": 488 + }, + "area": 986.58013, + "mass": 0.98658, + "inverseMass": 1.0136, + "inertia": 630.16497, + "inverseInertia": 0.00159, + "parent": { + "#": 468 + }, + "sleepCounter": 0, + "region": { + "#": 494 + } + }, + [ + { + "#": 468 + } + ], + [ + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + } + ], + { + "x": 174.72887, + "y": 184.92175, + "index": 0, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 151.95387, + "y": 192.32175, + "index": 1, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 137.87887, + "y": 172.94875, + "index": 2, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 151.95387, + "y": 153.57575, + "index": 3, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 174.72887, + "y": 160.97575, + "index": 4, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 158.24891, + "y": 172.94875 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.02181, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 483 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 485 + }, + "max": { + "#": 486 + } + }, + { + "x": 137.87887, + "y": 153.57575 + }, + { + "x": 174.72887, + "y": 195.22903 + }, + { + "x": 158.24891, + "y": 170.04148 + }, + [ + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + } + ], + { + "x": 0.30902, + "y": 0.95106 + }, + { + "x": -0.80902, + "y": 0.58778 + }, + { + "x": -0.80902, + "y": -0.58778 + }, + { + "x": 0.30902, + "y": -0.95106 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,3,3,4", + "startCol": 2, + "endCol": 3, + "startRow": 3, + "endRow": 4 + }, + { + "id": 20, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 496 + }, + "angle": 0, + "vertices": { + "#": 497 + }, + "position": { + "#": 502 + }, + "force": { + "#": 503 + }, + "torque": 0, + "positionImpulse": { + "#": 504 + }, + "constraintImpulse": { + "#": 505 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 506 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 507 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 508 + }, + "bounds": { + "#": 510 + }, + "positionPrev": { + "#": 513 + }, + "anglePrev": 0, + "axes": { + "#": 514 + }, + "area": 1201.45424, + "mass": 1.20145, + "inverseMass": 0.83232, + "inertia": 962.3282, + "inverseInertia": 0.00104, + "parent": { + "#": 495 + }, + "sleepCounter": 0, + "region": { + "#": 517 + } + }, + [ + { + "#": 495 + } + ], + [ + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + } + ], + { + "x": 211.84023, + "y": 188.23775, + "index": 0, + "body": { + "#": 495 + }, + "isInternal": false + }, + { + "x": 177.17823, + "y": 188.23775, + "index": 1, + "body": { + "#": 495 + }, + "isInternal": false + }, + { + "x": 177.17823, + "y": 153.57575, + "index": 2, + "body": { + "#": 495 + }, + "isInternal": false + }, + { + "x": 211.84023, + "y": 153.57575, + "index": 3, + "body": { + "#": 495 + }, + "isInternal": false + }, + { + "x": 194.50923, + "y": 170.90675 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.09931, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 509 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 511 + }, + "max": { + "#": 512 + } + }, + { + "x": 177.17823, + "y": 153.57575 + }, + { + "x": 211.84023, + "y": 191.14503 + }, + { + "x": 194.50923, + "y": 167.99948 + }, + [ + { + "#": 515 + }, + { + "#": 516 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,3,3", + "startCol": 3, + "endCol": 4, + "startRow": 3, + "endRow": 3 + }, + { + "id": 21, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 519 + }, + "angle": 0, + "vertices": { + "#": 520 + }, + "position": { + "#": 525 + }, + "force": { + "#": 526 + }, + "torque": 0, + "positionImpulse": { + "#": 527 + }, + "constraintImpulse": { + "#": 528 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 529 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 530 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 531 + }, + "bounds": { + "#": 533 + }, + "positionPrev": { + "#": 536 + }, + "anglePrev": 0, + "axes": { + "#": 537 + }, + "area": 1990.73335, + "mass": 1.99073, + "inverseMass": 0.50233, + "inertia": 6259.05792, + "inverseInertia": 0.00016, + "parent": { + "#": 518 + }, + "sleepCounter": 0, + "region": { + "#": 540 + } + }, + [ + { + "#": 518 + } + ], + [ + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + } + ], + { + "x": 212.51923, + "y": 156.42058, + "index": 0, + "body": { + "#": 518 + }, + "isInternal": false + }, + { + "x": 307.34296, + "y": 156.42058, + "index": 1, + "body": { + "#": 518 + }, + "isInternal": false + }, + { + "x": 307.34296, + "y": 177.41462, + "index": 2, + "body": { + "#": 518 + }, + "isInternal": false + }, + { + "x": 212.51923, + "y": 177.41462, + "index": 3, + "body": { + "#": 518 + }, + "isInternal": false + }, + { + "x": 259.93109, + "y": 166.9176 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.11534 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 532 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 534 + }, + "max": { + "#": 535 + } + }, + { + "x": 212.51923, + "y": 156.42058 + }, + { + "x": 307.34296, + "y": 180.32189 + }, + { + "x": 259.93109, + "y": 164.01033 + }, + [ + { + "#": 538 + }, + { + "#": 539 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,6,3,3", + "startCol": 4, + "endCol": 6, + "startRow": 3, + "endRow": 3 + }, + { + "id": 22, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 542 + }, + "angle": 0, + "vertices": { + "#": 543 + }, + "position": { + "#": 570 + }, + "force": { + "#": 571 + }, + "torque": 0, + "positionImpulse": { + "#": 572 + }, + "constraintImpulse": { + "#": 573 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 574 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 575 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 576 + }, + "circleRadius": 48.51042, + "bounds": { + "#": 578 + }, + "positionPrev": { + "#": 581 + }, + "anglePrev": 0, + "axes": { + "#": 582 + }, + "area": 7321.24308, + "mass": 7.32124, + "inverseMass": 0.13659, + "inertia": 34123.853, + "inverseInertia": 0.00003, + "parent": { + "#": 541 + }, + "sleepCounter": 0, + "region": { + "#": 596 + } + }, + [ + { + "#": 541 + } + ], + [ + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + } + ], + { + "x": 401.28386, + "y": 208.78656, + "index": 0, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 398.48486, + "y": 220.14156, + "index": 1, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 393.04986, + "y": 230.49656, + "index": 2, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 385.29486, + "y": 239.25056, + "index": 3, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 375.67086, + "y": 245.89356, + "index": 4, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 364.73586, + "y": 250.04056, + "index": 5, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 353.12686, + "y": 251.44956, + "index": 6, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 341.51786, + "y": 250.04056, + "index": 7, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 330.58286, + "y": 245.89356, + "index": 8, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 320.95886, + "y": 239.25056, + "index": 9, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 313.20386, + "y": 230.49656, + "index": 10, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 307.76886, + "y": 220.14156, + "index": 11, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 304.96986, + "y": 208.78656, + "index": 12, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 304.96986, + "y": 197.09256, + "index": 13, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 307.76886, + "y": 185.73756, + "index": 14, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 313.20386, + "y": 175.38256, + "index": 15, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 320.95886, + "y": 166.62856, + "index": 16, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 330.58286, + "y": 159.98556, + "index": 17, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 341.51786, + "y": 155.83856, + "index": 18, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 353.12686, + "y": 154.42956, + "index": 19, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 364.73586, + "y": 155.83856, + "index": 20, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 375.67086, + "y": 159.98556, + "index": 21, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 385.29486, + "y": 166.62856, + "index": 22, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 393.04986, + "y": 175.38256, + "index": 23, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 398.48486, + "y": 185.73756, + "index": 24, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 401.28386, + "y": 197.09256, + "index": 25, + "body": { + "#": 541 + }, + "isInternal": false + }, + { + "x": 353.12686, + "y": 202.93956 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 577 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 579 + }, + "max": { + "#": 580 + } + }, + { + "x": 304.96986, + "y": 154.42956 + }, + { + "x": 401.28386, + "y": 251.44956 + }, + { + "x": 353.12686, + "y": 200.03229 + }, + [ + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + } + ], + { + "x": -0.97094, + "y": -0.23934 + }, + { + "x": -0.88545, + "y": -0.46474 + }, + { + "x": -0.74853, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12049, + "y": -0.99271 + }, + { + "x": 0.12049, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74853, + "y": -0.66311 + }, + { + "x": 0.88545, + "y": -0.46474 + }, + { + "x": 0.97094, + "y": -0.23934 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,8,3,5", + "startCol": 6, + "endCol": 8, + "startRow": 3, + "endRow": 5 + }, + { + "id": 23, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 598 + }, + "angle": 0, + "vertices": { + "#": 599 + }, + "position": { + "#": 604 + }, + "force": { + "#": 605 + }, + "torque": 0, + "positionImpulse": { + "#": 606 + }, + "constraintImpulse": { + "#": 607 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 608 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 609 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 610 + }, + "bounds": { + "#": 612 + }, + "positionPrev": { + "#": 615 + }, + "anglePrev": 0, + "axes": { + "#": 616 + }, + "area": 2034.76377, + "mass": 2.03476, + "inverseMass": 0.49146, + "inertia": 5208.09959, + "inverseInertia": 0.00019, + "parent": { + "#": 597 + }, + "sleepCounter": 0, + "region": { + "#": 619 + } + }, + [ + { + "#": 597 + } + ], + [ + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + } + ], + { + "x": 396.1715, + "y": 153.57575, + "index": 0, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 480.40418, + "y": 153.57575, + "index": 1, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 480.40418, + "y": 177.73222, + "index": 2, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 396.1715, + "y": 177.73222, + "index": 3, + "body": { + "#": 597 + }, + "isInternal": false + }, + { + "x": 438.28784, + "y": 165.65399 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 611 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 613 + }, + "max": { + "#": 614 + } + }, + { + "x": 396.1715, + "y": 153.57575 + }, + { + "x": 480.40418, + "y": 177.73222 + }, + { + "x": 438.28784, + "y": 162.74672 + }, + [ + { + "#": 617 + }, + { + "#": 618 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,10,3,3", + "startCol": 8, + "endCol": 10, + "startRow": 3, + "endRow": 3 + }, + { + "id": 24, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 621 + }, + "angle": 0, + "vertices": { + "#": 622 + }, + "position": { + "#": 627 + }, + "force": { + "#": 628 + }, + "torque": 0, + "positionImpulse": { + "#": 629 + }, + "constraintImpulse": { + "#": 630 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 631 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 632 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 633 + }, + "bounds": { + "#": 635 + }, + "positionPrev": { + "#": 638 + }, + "anglePrev": 0, + "axes": { + "#": 639 + }, + "area": 1030.45569, + "mass": 1.03046, + "inverseMass": 0.97044, + "inertia": 987.30914, + "inverseInertia": 0.00101, + "parent": { + "#": 620 + }, + "sleepCounter": 0, + "region": { + "#": 642 + } + }, + [ + { + "#": 620 + } + ], + [ + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + } + ], + { + "x": 480.40418, + "y": 153.57575, + "index": 0, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 529.79075, + "y": 153.57575, + "index": 1, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 529.79075, + "y": 174.44085, + "index": 2, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 480.40418, + "y": 174.44085, + "index": 3, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 505.09747, + "y": 164.0083 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 634 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 636 + }, + "max": { + "#": 637 + } + }, + { + "x": 480.40418, + "y": 153.57575 + }, + { + "x": 529.79075, + "y": 174.44085 + }, + { + "x": 505.09747, + "y": 161.10103 + }, + [ + { + "#": 640 + }, + { + "#": 641 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,3,3", + "startCol": 10, + "endCol": 11, + "startRow": 3, + "endRow": 3 + }, + { + "id": 25, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 644 + }, + "angle": 0, + "vertices": { + "#": 645 + }, + "position": { + "#": 672 + }, + "force": { + "#": 673 + }, + "torque": 0, + "positionImpulse": { + "#": 674 + }, + "constraintImpulse": { + "#": 675 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 676 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 677 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 678 + }, + "circleRadius": 26.33166, + "bounds": { + "#": 680 + }, + "positionPrev": { + "#": 683 + }, + "anglePrev": 0, + "axes": { + "#": 684 + }, + "area": 2157.16533, + "mass": 2.15717, + "inverseMass": 0.46357, + "inertia": 2962.47895, + "inverseInertia": 0.00034, + "parent": { + "#": 643 + }, + "sleepCounter": 0, + "region": { + "#": 698 + } + }, + [ + { + "#": 643 + } + ], + [ + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + } + ], + { + "x": 582.07075, + "y": 183.08175, + "index": 0, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 580.55175, + "y": 189.24475, + "index": 1, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 577.60175, + "y": 194.86575, + "index": 2, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 573.39175, + "y": 199.61775, + "index": 3, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 568.16775, + "y": 203.22375, + "index": 4, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 562.23275, + "y": 205.47475, + "index": 5, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 555.93075, + "y": 206.23975, + "index": 6, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 549.62875, + "y": 205.47475, + "index": 7, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 543.69375, + "y": 203.22375, + "index": 8, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 538.46975, + "y": 199.61775, + "index": 9, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 534.25975, + "y": 194.86575, + "index": 10, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 531.30975, + "y": 189.24475, + "index": 11, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 529.79075, + "y": 183.08175, + "index": 12, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 529.79075, + "y": 176.73375, + "index": 13, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 531.30975, + "y": 170.57075, + "index": 14, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 534.25975, + "y": 164.94975, + "index": 15, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 538.46975, + "y": 160.19775, + "index": 16, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 543.69375, + "y": 156.59175, + "index": 17, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 549.62875, + "y": 154.34075, + "index": 18, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 555.93075, + "y": 153.57575, + "index": 19, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 562.23275, + "y": 154.34075, + "index": 20, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 568.16775, + "y": 156.59175, + "index": 21, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 573.39175, + "y": 160.19775, + "index": 22, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 577.60175, + "y": 164.94975, + "index": 23, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 580.55175, + "y": 170.57075, + "index": 24, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 582.07075, + "y": 176.73375, + "index": 25, + "body": { + "#": 643 + }, + "isInternal": false + }, + { + "x": 555.93075, + "y": 179.90775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 679 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 681 + }, + "max": { + "#": 682 + } + }, + { + "x": 529.79075, + "y": 153.57575 + }, + { + "x": 582.07075, + "y": 206.23975 + }, + { + "x": 555.93075, + "y": 177.00048 + }, + [ + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + } + ], + { + "x": -0.97094, + "y": -0.23931 + }, + { + "x": -0.88546, + "y": -0.46471 + }, + { + "x": -0.7485, + "y": -0.66313 + }, + { + "x": -0.56808, + "y": -0.82297 + }, + { + "x": -0.35463, + "y": -0.93501 + }, + { + "x": -0.12051, + "y": -0.99271 + }, + { + "x": 0.12051, + "y": -0.99271 + }, + { + "x": 0.35463, + "y": -0.93501 + }, + { + "x": 0.56808, + "y": -0.82297 + }, + { + "x": 0.7485, + "y": -0.66313 + }, + { + "x": 0.88546, + "y": -0.46471 + }, + { + "x": 0.97094, + "y": -0.23931 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,3,4", + "startCol": 11, + "endCol": 12, + "startRow": 3, + "endRow": 4 + }, + { + "id": 26, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 700 + }, + "angle": 0, + "vertices": { + "#": 701 + }, + "position": { + "#": 706 + }, + "force": { + "#": 707 + }, + "torque": 0, + "positionImpulse": { + "#": 708 + }, + "constraintImpulse": { + "#": 709 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 710 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 711 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 712 + }, + "bounds": { + "#": 714 + }, + "positionPrev": { + "#": 717 + }, + "anglePrev": 0, + "axes": { + "#": 718 + }, + "area": 2399.6282, + "mass": 2.39963, + "inverseMass": 0.41673, + "inertia": 3838.81032, + "inverseInertia": 0.00026, + "parent": { + "#": 699 + }, + "sleepCounter": 0, + "region": { + "#": 721 + } + }, + [ + { + "#": 699 + } + ], + [ + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + } + ], + { + "x": 631.05675, + "y": 202.56175, + "index": 0, + "body": { + "#": 699 + }, + "isInternal": false + }, + { + "x": 582.07075, + "y": 202.56175, + "index": 1, + "body": { + "#": 699 + }, + "isInternal": false + }, + { + "x": 582.07075, + "y": 153.57575, + "index": 2, + "body": { + "#": 699 + }, + "isInternal": false + }, + { + "x": 631.05675, + "y": 153.57575, + "index": 3, + "body": { + "#": 699 + }, + "isInternal": false + }, + { + "x": 606.56375, + "y": 178.06875 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 713 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 715 + }, + "max": { + "#": 716 + } + }, + { + "x": 582.07075, + "y": 153.57575 + }, + { + "x": 631.05675, + "y": 202.56175 + }, + { + "x": 606.56375, + "y": 175.16148 + }, + [ + { + "#": 719 + }, + { + "#": 720 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,13,3,4", + "startCol": 12, + "endCol": 13, + "startRow": 3, + "endRow": 4 + }, + { + "id": 27, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 723 + }, + "angle": 0, + "vertices": { + "#": 724 + }, + "position": { + "#": 729 + }, + "force": { + "#": 730 + }, + "torque": 0, + "positionImpulse": { + "#": 731 + }, + "constraintImpulse": { + "#": 732 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 733 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 734 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 735 + }, + "bounds": { + "#": 737 + }, + "positionPrev": { + "#": 740 + }, + "anglePrev": 0, + "axes": { + "#": 741 + }, + "area": 1489.78438, + "mass": 1.48978, + "inverseMass": 0.67124, + "inertia": 1501.63859, + "inverseInertia": 0.00067, + "parent": { + "#": 722 + }, + "sleepCounter": 0, + "region": { + "#": 744 + } + }, + [ + { + "#": 722 + } + ], + [ + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + } + ], + { + "x": 631.05675, + "y": 153.57575, + "index": 0, + "body": { + "#": 722 + }, + "isInternal": false + }, + { + "x": 666.46969, + "y": 153.57575, + "index": 1, + "body": { + "#": 722 + }, + "isInternal": false + }, + { + "x": 666.46969, + "y": 195.64468, + "index": 2, + "body": { + "#": 722 + }, + "isInternal": false + }, + { + "x": 631.05675, + "y": 195.64468, + "index": 3, + "body": { + "#": 722 + }, + "isInternal": false + }, + { + "x": 648.76322, + "y": 174.61022 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 736 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 738 + }, + "max": { + "#": 739 + } + }, + { + "x": 631.05675, + "y": 153.57575 + }, + { + "x": 666.46969, + "y": 195.64468 + }, + { + "x": 648.76322, + "y": 171.70295 + }, + [ + { + "#": 742 + }, + { + "#": 743 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,13,3,4", + "startCol": 13, + "endCol": 13, + "startRow": 3, + "endRow": 4 + }, + { + "id": 28, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 746 + }, + "angle": 0, + "vertices": { + "#": 747 + }, + "position": { + "#": 752 + }, + "force": { + "#": 753 + }, + "torque": 0, + "positionImpulse": { + "#": 754 + }, + "constraintImpulse": { + "#": 755 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 756 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 757 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 758 + }, + "bounds": { + "#": 760 + }, + "positionPrev": { + "#": 763 + }, + "anglePrev": 0, + "axes": { + "#": 764 + }, + "area": 1765.36753, + "mass": 1.76537, + "inverseMass": 0.56645, + "inertia": 2077.83253, + "inverseInertia": 0.00048, + "parent": { + "#": 745 + }, + "sleepCounter": 0, + "region": { + "#": 767 + } + }, + [ + { + "#": 745 + } + ], + [ + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + } + ], + { + "x": 666.46969, + "y": 153.57575, + "index": 0, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 708.23358, + "y": 153.57575, + "index": 1, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 708.23358, + "y": 195.84595, + "index": 2, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 666.46969, + "y": 195.84595, + "index": 3, + "body": { + "#": 745 + }, + "isInternal": false + }, + { + "x": 687.35163, + "y": 174.71085 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 759 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 761 + }, + "max": { + "#": 762 + } + }, + { + "x": 666.46969, + "y": 153.57575 + }, + { + "x": 708.23358, + "y": 195.84595 + }, + { + "x": 687.35163, + "y": 171.80358 + }, + [ + { + "#": 765 + }, + { + "#": 766 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,3,4", + "startCol": 13, + "endCol": 14, + "startRow": 3, + "endRow": 4 + }, + { + "id": 29, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 769 + }, + "angle": 0, + "vertices": { + "#": 770 + }, + "position": { + "#": 777 + }, + "force": { + "#": 778 + }, + "torque": 0, + "positionImpulse": { + "#": 779 + }, + "constraintImpulse": { + "#": 780 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 781 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 782 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 783 + }, + "bounds": { + "#": 785 + }, + "positionPrev": { + "#": 788 + }, + "anglePrev": 0, + "axes": { + "#": 789 + }, + "area": 1919.54576, + "mass": 1.91955, + "inverseMass": 0.52096, + "inertia": 2363.70788, + "inverseInertia": 0.00042, + "parent": { + "#": 768 + }, + "sleepCounter": 0, + "region": { + "#": 793 + } + }, + [ + { + "#": 768 + } + ], + [ + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + }, + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + } + ], + { + "x": 97.08, + "y": 291.36775, + "index": 0, + "body": { + "#": 768 + }, + "isInternal": false + }, + { + "x": 73.54, + "y": 304.95775, + "index": 1, + "body": { + "#": 768 + }, + "isInternal": false + }, + { + "x": 50, + "y": 291.36775, + "index": 2, + "body": { + "#": 768 + }, + "isInternal": false + }, + { + "x": 50, + "y": 264.18575, + "index": 3, + "body": { + "#": 768 + }, + "isInternal": false + }, + { + "x": 73.54, + "y": 250.59575, + "index": 4, + "body": { + "#": 768 + }, + "isInternal": false + }, + { + "x": 97.08, + "y": 264.18575, + "index": 5, + "body": { + "#": 768 + }, + "isInternal": false + }, + { + "x": 73.54, + "y": 277.77675 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 784 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 786 + }, + "max": { + "#": 787 + } + }, + { + "x": 50, + "y": 250.59575 + }, + { + "x": 97.08, + "y": 304.95775 + }, + { + "x": 73.54, + "y": 274.86948 + }, + [ + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + } + ], + { + "x": -0.49998, + "y": -0.86604 + }, + { + "x": 0.49998, + "y": -0.86604 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "1,2,5,6", + "startCol": 1, + "endCol": 2, + "startRow": 5, + "endRow": 6 + }, + { + "id": 30, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 795 + }, + "angle": 0, + "vertices": { + "#": 796 + }, + "position": { + "#": 803 + }, + "force": { + "#": 804 + }, + "torque": 0, + "positionImpulse": { + "#": 805 + }, + "constraintImpulse": { + "#": 806 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 807 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 808 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 809 + }, + "bounds": { + "#": 811 + }, + "positionPrev": { + "#": 814 + }, + "anglePrev": 0, + "axes": { + "#": 815 + }, + "area": 6052.328, + "mass": 6.05233, + "inverseMass": 0.16523, + "inertia": 23498.5885, + "inverseInertia": 0.00004, + "parent": { + "#": 794 + }, + "sleepCounter": 0, + "region": { + "#": 819 + } + }, + [ + { + "#": 794 + } + ], + [ + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + } + ], + { + "x": 180.678, + "y": 322.99375, + "index": 0, + "body": { + "#": 794 + }, + "isInternal": false + }, + { + "x": 138.879, + "y": 347.12575, + "index": 1, + "body": { + "#": 794 + }, + "isInternal": false + }, + { + "x": 97.08, + "y": 322.99375, + "index": 2, + "body": { + "#": 794 + }, + "isInternal": false + }, + { + "x": 97.08, + "y": 274.72775, + "index": 3, + "body": { + "#": 794 + }, + "isInternal": false + }, + { + "x": 138.879, + "y": 250.59575, + "index": 4, + "body": { + "#": 794 + }, + "isInternal": false + }, + { + "x": 180.678, + "y": 274.72775, + "index": 5, + "body": { + "#": 794 + }, + "isInternal": false + }, + { + "x": 138.879, + "y": 298.86075 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 810 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 812 + }, + "max": { + "#": 813 + } + }, + { + "x": 97.08, + "y": 250.59575 + }, + { + "x": 180.678, + "y": 347.12575 + }, + { + "x": 138.879, + "y": 295.95348 + }, + [ + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + } + ], + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": 0.49999, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,3,5,7", + "startCol": 2, + "endCol": 3, + "startRow": 5, + "endRow": 7 + }, + { + "id": 31, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 821 + }, + "angle": 0, + "vertices": { + "#": 822 + }, + "position": { + "#": 827 + }, + "force": { + "#": 828 + }, + "torque": 0, + "positionImpulse": { + "#": 829 + }, + "constraintImpulse": { + "#": 830 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 831 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 832 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 833 + }, + "bounds": { + "#": 835 + }, + "positionPrev": { + "#": 838 + }, + "anglePrev": 0, + "axes": { + "#": 839 + }, + "area": 2220.02331, + "mass": 2.22002, + "inverseMass": 0.45045, + "inertia": 3297.61061, + "inverseInertia": 0.0003, + "parent": { + "#": 820 + }, + "sleepCounter": 0, + "region": { + "#": 842 + } + }, + [ + { + "#": 820 + } + ], + [ + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + } + ], + { + "x": 180.678, + "y": 250.59575, + "index": 0, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 225.82936, + "y": 250.59575, + "index": 1, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 225.82936, + "y": 299.76422, + "index": 2, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 180.678, + "y": 299.76422, + "index": 3, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 203.25368, + "y": 275.17999 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 834 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 836 + }, + "max": { + "#": 837 + } + }, + { + "x": 180.678, + "y": 250.59575 + }, + { + "x": 225.82936, + "y": 299.76422 + }, + { + "x": 203.25368, + "y": 272.27272 + }, + [ + { + "#": 840 + }, + { + "#": 841 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,5,6", + "startCol": 3, + "endCol": 4, + "startRow": 5, + "endRow": 6 + }, + { + "id": 32, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 844 + }, + "angle": 0, + "vertices": { + "#": 845 + }, + "position": { + "#": 852 + }, + "force": { + "#": 853 + }, + "torque": 0, + "positionImpulse": { + "#": 854 + }, + "constraintImpulse": { + "#": 855 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 856 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 857 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 858 + }, + "bounds": { + "#": 860 + }, + "positionPrev": { + "#": 863 + }, + "anglePrev": 0, + "axes": { + "#": 864 + }, + "area": 2601.10745, + "mass": 2.60111, + "inverseMass": 0.38445, + "inertia": 4340.23704, + "inverseInertia": 0.00023, + "parent": { + "#": 843 + }, + "sleepCounter": 0, + "region": { + "#": 868 + } + }, + [ + { + "#": 843 + } + ], + [ + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + }, + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + } + ], + { + "x": 280.63336, + "y": 298.05775, + "index": 0, + "body": { + "#": 843 + }, + "isInternal": false + }, + { + "x": 253.23136, + "y": 313.87775, + "index": 1, + "body": { + "#": 843 + }, + "isInternal": false + }, + { + "x": 225.82936, + "y": 298.05775, + "index": 2, + "body": { + "#": 843 + }, + "isInternal": false + }, + { + "x": 225.82936, + "y": 266.41575, + "index": 3, + "body": { + "#": 843 + }, + "isInternal": false + }, + { + "x": 253.23136, + "y": 250.59575, + "index": 4, + "body": { + "#": 843 + }, + "isInternal": false + }, + { + "x": 280.63336, + "y": 266.41575, + "index": 5, + "body": { + "#": 843 + }, + "isInternal": false + }, + { + "x": 253.23136, + "y": 282.23675 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 859 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 861 + }, + "max": { + "#": 862 + } + }, + { + "x": 225.82936, + "y": 250.59575 + }, + { + "x": 280.63336, + "y": 313.87775 + }, + { + "x": 253.23136, + "y": 279.32948 + }, + [ + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + } + ], + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": 0.49999, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,5,6", + "startCol": 4, + "endCol": 5, + "startRow": 5, + "endRow": 6 + }, + { + "id": 33, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 870 + }, + "angle": 0, + "vertices": { + "#": 871 + }, + "position": { + "#": 876 + }, + "force": { + "#": 877 + }, + "torque": 0, + "positionImpulse": { + "#": 878 + }, + "constraintImpulse": { + "#": 879 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 880 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 881 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 882 + }, + "bounds": { + "#": 884 + }, + "positionPrev": { + "#": 887 + }, + "anglePrev": 0, + "axes": { + "#": 888 + }, + "area": 1413.30884, + "mass": 1.41331, + "inverseMass": 0.70756, + "inertia": 1331.62791, + "inverseInertia": 0.00075, + "parent": { + "#": 869 + }, + "sleepCounter": 0, + "region": { + "#": 891 + } + }, + [ + { + "#": 869 + } + ], + [ + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + } + ], + { + "x": 318.22736, + "y": 288.18975, + "index": 0, + "body": { + "#": 869 + }, + "isInternal": false + }, + { + "x": 280.63336, + "y": 288.18975, + "index": 1, + "body": { + "#": 869 + }, + "isInternal": false + }, + { + "x": 280.63336, + "y": 250.59575, + "index": 2, + "body": { + "#": 869 + }, + "isInternal": false + }, + { + "x": 318.22736, + "y": 250.59575, + "index": 3, + "body": { + "#": 869 + }, + "isInternal": false + }, + { + "x": 299.43036, + "y": 269.39275 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 883 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 885 + }, + "max": { + "#": 886 + } + }, + { + "x": 280.63336, + "y": 250.59575 + }, + { + "x": 318.22736, + "y": 288.18975 + }, + { + "x": 299.43036, + "y": 266.48548 + }, + [ + { + "#": 889 + }, + { + "#": 890 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,5,6", + "startCol": 5, + "endCol": 6, + "startRow": 5, + "endRow": 6 + }, + { + "id": 34, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 893 + }, + "angle": 0, + "vertices": { + "#": 894 + }, + "position": { + "#": 901 + }, + "force": { + "#": 902 + }, + "torque": 0, + "positionImpulse": { + "#": 903 + }, + "constraintImpulse": { + "#": 904 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 905 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 906 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 907 + }, + "bounds": { + "#": 909 + }, + "positionPrev": { + "#": 912 + }, + "anglePrev": 0, + "axes": { + "#": 913 + }, + "area": 5460.80875, + "mass": 5.46081, + "inverseMass": 0.18312, + "inertia": 19129.81619, + "inverseInertia": 0.00005, + "parent": { + "#": 892 + }, + "sleepCounter": 0, + "region": { + "#": 917 + } + }, + [ + { + "#": 892 + } + ], + [ + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + } + ], + { + "x": 398.51031, + "y": 326.57356, + "index": 0, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 358.80631, + "y": 349.49656, + "index": 1, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 319.10231, + "y": 326.57356, + "index": 2, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 319.10231, + "y": 280.72756, + "index": 3, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 358.80631, + "y": 257.80456, + "index": 4, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 398.51031, + "y": 280.72756, + "index": 5, + "body": { + "#": 892 + }, + "isInternal": false + }, + { + "x": 358.80631, + "y": 303.65056 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.06217, + "y": 0.51223 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 908 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 910 + }, + "max": { + "#": 911 + } + }, + { + "x": 319.10231, + "y": 257.80456 + }, + { + "x": 398.51031, + "y": 352.40383 + }, + { + "x": 358.80631, + "y": 300.74329 + }, + [ + { + "#": 914 + }, + { + "#": 915 + }, + { + "#": 916 + } + ], + { + "x": -0.5, + "y": -0.86603 + }, + { + "x": 0.5, + "y": -0.86603 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,8,5,7", + "startCol": 6, + "endCol": 8, + "startRow": 5, + "endRow": 7 + }, + { + "id": 35, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 919 + }, + "angle": 0, + "vertices": { + "#": 920 + }, + "position": { + "#": 925 + }, + "force": { + "#": 926 + }, + "torque": 0, + "positionImpulse": { + "#": 927 + }, + "constraintImpulse": { + "#": 928 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 929 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 930 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 931 + }, + "bounds": { + "#": 933 + }, + "positionPrev": { + "#": 936 + }, + "anglePrev": 0, + "axes": { + "#": 937 + }, + "area": 451.61379, + "mass": 0.45161, + "inverseMass": 2.21428, + "inertia": 136.71143, + "inverseInertia": 0.00731, + "parent": { + "#": 918 + }, + "sleepCounter": 0, + "region": { + "#": 940 + } + }, + [ + { + "#": 918 + } + ], + [ + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + }, + { + "#": 924 + } + ], + { + "x": 397.63536, + "y": 250.59575, + "index": 0, + "body": { + "#": 918 + }, + "isInternal": false + }, + { + "x": 417.80589, + "y": 250.59575, + "index": 1, + "body": { + "#": 918 + }, + "isInternal": false + }, + { + "x": 417.80589, + "y": 272.98554, + "index": 2, + "body": { + "#": 918 + }, + "isInternal": false + }, + { + "x": 397.63536, + "y": 272.98554, + "index": 3, + "body": { + "#": 918 + }, + "isInternal": false + }, + { + "x": 407.72063, + "y": 261.79065 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 932 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 934 + }, + "max": { + "#": 935 + } + }, + { + "x": 397.63536, + "y": 250.59575 + }, + { + "x": 417.80589, + "y": 272.98554 + }, + { + "x": 407.72063, + "y": 258.88338 + }, + [ + { + "#": 938 + }, + { + "#": 939 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,8,5,5", + "startCol": 8, + "endCol": 8, + "startRow": 5, + "endRow": 5 + }, + { + "id": 36, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 942 + }, + "angle": 0, + "vertices": { + "#": 943 + }, + "position": { + "#": 948 + }, + "force": { + "#": 949 + }, + "torque": 0, + "positionImpulse": { + "#": 950 + }, + "constraintImpulse": { + "#": 951 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 952 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 953 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 954 + }, + "bounds": { + "#": 956 + }, + "positionPrev": { + "#": 959 + }, + "anglePrev": 0, + "axes": { + "#": 960 + }, + "area": 3021.67907, + "mass": 3.02168, + "inverseMass": 0.33094, + "inertia": 11331.77016, + "inverseInertia": 0.00009, + "parent": { + "#": 941 + }, + "sleepCounter": 0, + "region": { + "#": 963 + } + }, + [ + { + "#": 941 + } + ], + [ + { + "#": 944 + }, + { + "#": 945 + }, + { + "#": 946 + }, + { + "#": 947 + } + ], + { + "x": 417.80589, + "y": 250.59575, + "index": 0, + "body": { + "#": 941 + }, + "isInternal": false + }, + { + "x": 519.63905, + "y": 250.59575, + "index": 1, + "body": { + "#": 941 + }, + "isInternal": false + }, + { + "x": 519.63905, + "y": 280.26859, + "index": 2, + "body": { + "#": 941 + }, + "isInternal": false + }, + { + "x": 417.80589, + "y": 280.26859, + "index": 3, + "body": { + "#": 941 + }, + "isInternal": false + }, + { + "x": 468.72247, + "y": 265.43217 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 955 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 957 + }, + "max": { + "#": 958 + } + }, + { + "x": 417.80589, + "y": 250.59575 + }, + { + "x": 519.63905, + "y": 280.26859 + }, + { + "x": 468.72247, + "y": 262.5249 + }, + [ + { + "#": 961 + }, + { + "#": 962 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,10,5,5", + "startCol": 8, + "endCol": 10, + "startRow": 5, + "endRow": 5 + }, + { + "id": 37, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 965 + }, + "angle": 0, + "vertices": { + "#": 966 + }, + "position": { + "#": 971 + }, + "force": { + "#": 972 + }, + "torque": 0, + "positionImpulse": { + "#": 973 + }, + "constraintImpulse": { + "#": 974 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 975 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 976 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 977 + }, + "bounds": { + "#": 979 + }, + "positionPrev": { + "#": 982 + }, + "anglePrev": 0, + "axes": { + "#": 983 + }, + "area": 856.73964, + "mass": 0.85674, + "inverseMass": 1.16722, + "inertia": 589.10598, + "inverseInertia": 0.0017, + "parent": { + "#": 964 + }, + "sleepCounter": 0, + "region": { + "#": 986 + } + }, + [ + { + "#": 964 + } + ], + [ + { + "#": 967 + }, + { + "#": 968 + }, + { + "#": 969 + }, + { + "#": 970 + } + ], + { + "x": 519.63905, + "y": 250.59575, + "index": 0, + "body": { + "#": 964 + }, + "isInternal": false + }, + { + "x": 559.71055, + "y": 250.59575, + "index": 1, + "body": { + "#": 964 + }, + "isInternal": false + }, + { + "x": 559.71055, + "y": 271.97603, + "index": 2, + "body": { + "#": 964 + }, + "isInternal": false + }, + { + "x": 519.63905, + "y": 271.97603, + "index": 3, + "body": { + "#": 964 + }, + "isInternal": false + }, + { + "x": 539.6748, + "y": 261.28589 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 978 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 980 + }, + "max": { + "#": 981 + } + }, + { + "x": 519.63905, + "y": 250.59575 + }, + { + "x": 559.71055, + "y": 271.97603 + }, + { + "x": 539.6748, + "y": 258.37862 + }, + [ + { + "#": 984 + }, + { + "#": 985 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,5,5", + "startCol": 10, + "endCol": 11, + "startRow": 5, + "endRow": 5 + }, + { + "id": 38, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 988 + }, + "angle": 0, + "vertices": { + "#": 989 + }, + "position": { + "#": 998 + }, + "force": { + "#": 999 + }, + "torque": 0, + "positionImpulse": { + "#": 1000 + }, + "constraintImpulse": { + "#": 1001 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1002 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1003 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1004 + }, + "bounds": { + "#": 1006 + }, + "positionPrev": { + "#": 1009 + }, + "anglePrev": 0, + "axes": { + "#": 1010 + }, + "area": 4088.59995, + "mass": 4.0886, + "inverseMass": 0.24458, + "inertia": 10666.41244, + "inverseInertia": 0.00009, + "parent": { + "#": 987 + }, + "sleepCounter": 0, + "region": { + "#": 1015 + } + }, + [ + { + "#": 987 + } + ], + [ + { + "#": 990 + }, + { + "#": 991 + }, + { + "#": 992 + }, + { + "#": 993 + }, + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + }, + { + "#": 997 + } + ], + { + "x": 629.96255, + "y": 300.27175, + "index": 0, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 609.38655, + "y": 320.84775, + "index": 1, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 580.28655, + "y": 320.84775, + "index": 2, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 559.71055, + "y": 300.27175, + "index": 3, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 559.71055, + "y": 271.17175, + "index": 4, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 580.28655, + "y": 250.59575, + "index": 5, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 609.38655, + "y": 250.59575, + "index": 6, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 629.96255, + "y": 271.17175, + "index": 7, + "body": { + "#": 987 + }, + "isInternal": false + }, + { + "x": 594.83655, + "y": 285.72175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1005 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1007 + }, + "max": { + "#": 1008 + } + }, + { + "x": 559.71055, + "y": 250.59575 + }, + { + "x": 629.96255, + "y": 320.84775 + }, + { + "x": 594.83655, + "y": 282.81448 + }, + [ + { + "#": 1011 + }, + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,13,5,6", + "startCol": 11, + "endCol": 13, + "startRow": 5, + "endRow": 6 + }, + { + "id": 39, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1017 + }, + "angle": 0, + "vertices": { + "#": 1018 + }, + "position": { + "#": 1023 + }, + "force": { + "#": 1024 + }, + "torque": 0, + "positionImpulse": { + "#": 1025 + }, + "constraintImpulse": { + "#": 1026 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1027 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1028 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1029 + }, + "bounds": { + "#": 1031 + }, + "positionPrev": { + "#": 1034 + }, + "anglePrev": 0, + "axes": { + "#": 1035 + }, + "area": 1965.14243, + "mass": 1.96514, + "inverseMass": 0.50887, + "inertia": 5563.36836, + "inverseInertia": 0.00018, + "parent": { + "#": 1016 + }, + "sleepCounter": 0, + "region": { + "#": 1038 + } + }, + [ + { + "#": 1016 + } + ], + [ + { + "#": 1019 + }, + { + "#": 1020 + }, + { + "#": 1021 + }, + { + "#": 1022 + } + ], + { + "x": 629.96255, + "y": 250.59575, + "index": 0, + "body": { + "#": 1016 + }, + "isInternal": false + }, + { + "x": 719.46684, + "y": 250.59575, + "index": 1, + "body": { + "#": 1016 + }, + "isInternal": false + }, + { + "x": 719.46684, + "y": 272.5516, + "index": 2, + "body": { + "#": 1016 + }, + "isInternal": false + }, + { + "x": 629.96255, + "y": 272.5516, + "index": 3, + "body": { + "#": 1016 + }, + "isInternal": false + }, + { + "x": 674.7147, + "y": 261.57368 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1030 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1032 + }, + "max": { + "#": 1033 + } + }, + { + "x": 629.96255, + "y": 250.59575 + }, + { + "x": 719.46684, + "y": 272.5516 + }, + { + "x": 674.7147, + "y": 258.66641 + }, + [ + { + "#": 1036 + }, + { + "#": 1037 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,5,5", + "startCol": 13, + "endCol": 14, + "startRow": 5, + "endRow": 5 + }, + { + "id": 40, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 1040 + }, + "angle": 0, + "vertices": { + "#": 1041 + }, + "position": { + "#": 1045 + }, + "force": { + "#": 1046 + }, + "torque": 0, + "positionImpulse": { + "#": 1047 + }, + "constraintImpulse": { + "#": 1048 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1049 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1050 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1051 + }, + "bounds": { + "#": 1053 + }, + "positionPrev": { + "#": 1056 + }, + "anglePrev": 0, + "axes": { + "#": 1057 + }, + "area": 1492.52562, + "mass": 1.49253, + "inverseMass": 0.67001, + "inertia": 1714.83247, + "inverseInertia": 0.00058, + "parent": { + "#": 1039 + }, + "sleepCounter": 0, + "region": { + "#": 1061 + } + }, + [ + { + "#": 1039 + } + ], + [ + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + } + ], + { + "x": 761.83684, + "y": 309.30575, + "index": 0, + "body": { + "#": 1039 + }, + "isInternal": false + }, + { + "x": 710.99284, + "y": 279.95075, + "index": 1, + "body": { + "#": 1039 + }, + "isInternal": false + }, + { + "x": 761.83684, + "y": 250.59575, + "index": 2, + "body": { + "#": 1039 + }, + "isInternal": false + }, + { + "x": 744.88884, + "y": 279.95075 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1052 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1054 + }, + "max": { + "#": 1055 + } + }, + { + "x": 710.99284, + "y": 250.59575 + }, + { + "x": 761.83684, + "y": 309.30575 + }, + { + "x": 744.88884, + "y": 277.04348 + }, + [ + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + } + ], + { + "x": -0.5, + "y": 0.86602 + }, + { + "x": -0.5, + "y": -0.86602 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "14,15,5,6", + "startCol": 14, + "endCol": 15, + "startRow": 5, + "endRow": 6 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 1066 + }, + "max": { + "#": 1067 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/newtonsCradle/newtonsCradle-0.json b/test/node/refs/newtonsCradle/newtonsCradle-0.json new file mode 100644 index 00000000..17b1c21f --- /dev/null +++ b/test/node/refs/newtonsCradle/newtonsCradle-0.json @@ -0,0 +1,7330 @@ +[ + { + "id": 13, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 90 + }, + "composites": { + "#": 91 + }, + "label": "World", + "gravity": { + "#": 745 + }, + "bounds": { + "#": 746 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [ + { + "#": 92 + }, + { + "#": 391 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 93 + }, + "constraints": { + "#": 369 + }, + "composites": { + "#": 390 + }, + "label": "Newtons Cradle" + }, + [ + { + "#": 94 + }, + { + "#": 149 + }, + { + "#": 204 + }, + { + "#": 259 + }, + { + "#": 314 + } + ], + { + "id": 5, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 96 + }, + "position": { + "#": 123 + }, + "force": { + "#": 124 + }, + "torque": 0, + "positionImpulse": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 127 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 128 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 129 + }, + "inertia": 99999, + "circleRadius": 30, + "bounds": { + "#": 131 + }, + "positionPrev": { + "#": 134 + }, + "anglePrev": 0, + "axes": { + "#": 135 + }, + "area": 2799.98416, + "mass": 2.79998, + "inverseMass": 0.35714, + "inverseInertia": 0.00001, + "parent": { + "#": 94 + }, + "sleepCounter": 0 + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + } + ], + { + "x": 129.781, + "y": 203.616, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 128.05, + "y": 210.638, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 124.69, + "y": 217.042, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 119.894, + "y": 222.455, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 113.942, + "y": 226.564, + "index": 4, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 107.179, + "y": 229.128, + "index": 5, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 100, + "y": 230, + "index": 6, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 92.821, + "y": 229.128, + "index": 7, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 86.058, + "y": 226.564, + "index": 8, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 80.106, + "y": 222.455, + "index": 9, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 75.31, + "y": 217.042, + "index": 10, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 71.95, + "y": 210.638, + "index": 11, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 70.219, + "y": 203.616, + "index": 12, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 70.219, + "y": 196.384, + "index": 13, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 71.95, + "y": 189.362, + "index": 14, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 75.31, + "y": 182.958, + "index": 15, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 80.106, + "y": 177.545, + "index": 16, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 86.058, + "y": 173.436, + "index": 17, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 92.821, + "y": 170.872, + "index": 18, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 100, + "y": 170, + "index": 19, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 107.179, + "y": 170.872, + "index": 20, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 113.942, + "y": 173.436, + "index": 21, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 119.894, + "y": 177.545, + "index": 22, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 124.69, + "y": 182.958, + "index": 23, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 128.05, + "y": 189.362, + "index": 24, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 129.781, + "y": 196.384, + "index": 25, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 100, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 130 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 132 + }, + "max": { + "#": 133 + } + }, + { + "x": 70.219, + "y": 170 + }, + { + "x": 129.781, + "y": 230 + }, + { + "x": 100, + "y": 200 + }, + [ + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88552, + "y": -0.46461 + }, + { + "x": -0.74848, + "y": -0.66316 + }, + { + "x": -0.56812, + "y": -0.82294 + }, + { + "x": -0.3545, + "y": -0.93506 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.3545, + "y": -0.93506 + }, + { + "x": 0.56812, + "y": -0.82294 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88552, + "y": -0.46461 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 150 + }, + "angle": 0, + "vertices": { + "#": 151 + }, + "position": { + "#": 178 + }, + "force": { + "#": 179 + }, + "torque": 0, + "positionImpulse": { + "#": 180 + }, + "constraintImpulse": { + "#": 181 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 182 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 183 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 184 + }, + "inertia": 99999, + "circleRadius": 30, + "bounds": { + "#": 186 + }, + "positionPrev": { + "#": 189 + }, + "anglePrev": 0, + "axes": { + "#": 190 + }, + "area": 2799.98416, + "mass": 2.79998, + "inverseMass": 0.35714, + "inverseInertia": 0.00001, + "parent": { + "#": 149 + }, + "sleepCounter": 0 + }, + [ + { + "#": 149 + } + ], + [ + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + }, + { + "#": 156 + }, + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + } + ], + { + "x": 366.781, + "y": 303.616, + "index": 0, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 365.05, + "y": 310.638, + "index": 1, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 361.69, + "y": 317.042, + "index": 2, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 356.894, + "y": 322.455, + "index": 3, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 350.942, + "y": 326.564, + "index": 4, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 344.179, + "y": 329.128, + "index": 5, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 337, + "y": 330, + "index": 6, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 329.821, + "y": 329.128, + "index": 7, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 323.058, + "y": 326.564, + "index": 8, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 317.106, + "y": 322.455, + "index": 9, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 312.31, + "y": 317.042, + "index": 10, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 308.95, + "y": 310.638, + "index": 11, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 307.219, + "y": 303.616, + "index": 12, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 307.219, + "y": 296.384, + "index": 13, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 308.95, + "y": 289.362, + "index": 14, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 312.31, + "y": 282.958, + "index": 15, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 317.106, + "y": 277.545, + "index": 16, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 323.058, + "y": 273.436, + "index": 17, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 329.821, + "y": 270.872, + "index": 18, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 337, + "y": 270, + "index": 19, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 344.179, + "y": 270.872, + "index": 20, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 350.942, + "y": 273.436, + "index": 21, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 356.894, + "y": 277.545, + "index": 22, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 361.69, + "y": 282.958, + "index": 23, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 365.05, + "y": 289.362, + "index": 24, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 366.781, + "y": 296.384, + "index": 25, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 337, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 185 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 187 + }, + "max": { + "#": 188 + } + }, + { + "x": 307.219, + "y": 270 + }, + { + "x": 366.781, + "y": 330 + }, + { + "x": 337, + "y": 300 + }, + [ + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88552, + "y": -0.46461 + }, + { + "x": -0.74848, + "y": -0.66316 + }, + { + "x": -0.56812, + "y": -0.82294 + }, + { + "x": -0.3545, + "y": -0.93506 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.3545, + "y": -0.93506 + }, + { + "x": 0.56812, + "y": -0.82294 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88552, + "y": -0.46461 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 205 + }, + "angle": 0, + "vertices": { + "#": 206 + }, + "position": { + "#": 233 + }, + "force": { + "#": 234 + }, + "torque": 0, + "positionImpulse": { + "#": 235 + }, + "constraintImpulse": { + "#": 236 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 237 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 238 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 239 + }, + "inertia": 99999, + "circleRadius": 30, + "bounds": { + "#": 241 + }, + "positionPrev": { + "#": 244 + }, + "anglePrev": 0, + "axes": { + "#": 245 + }, + "area": 2799.98416, + "mass": 2.79998, + "inverseMass": 0.35714, + "inverseInertia": 0.00001, + "parent": { + "#": 204 + }, + "sleepCounter": 0 + }, + [ + { + "#": 204 + } + ], + [ + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + } + ], + { + "x": 423.781, + "y": 303.616, + "index": 0, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 422.05, + "y": 310.638, + "index": 1, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 418.69, + "y": 317.042, + "index": 2, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 413.894, + "y": 322.455, + "index": 3, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 407.942, + "y": 326.564, + "index": 4, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 401.179, + "y": 329.128, + "index": 5, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 394, + "y": 330, + "index": 6, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 386.821, + "y": 329.128, + "index": 7, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 380.058, + "y": 326.564, + "index": 8, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 374.106, + "y": 322.455, + "index": 9, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 369.31, + "y": 317.042, + "index": 10, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 365.95, + "y": 310.638, + "index": 11, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 364.219, + "y": 303.616, + "index": 12, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 364.219, + "y": 296.384, + "index": 13, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 365.95, + "y": 289.362, + "index": 14, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 369.31, + "y": 282.958, + "index": 15, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 374.106, + "y": 277.545, + "index": 16, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 380.058, + "y": 273.436, + "index": 17, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 386.821, + "y": 270.872, + "index": 18, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 394, + "y": 270, + "index": 19, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 401.179, + "y": 270.872, + "index": 20, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 407.942, + "y": 273.436, + "index": 21, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 413.894, + "y": 277.545, + "index": 22, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 418.69, + "y": 282.958, + "index": 23, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 422.05, + "y": 289.362, + "index": 24, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 423.781, + "y": 296.384, + "index": 25, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 394, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 240 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 242 + }, + "max": { + "#": 243 + } + }, + { + "x": 364.219, + "y": 270 + }, + { + "x": 423.781, + "y": 330 + }, + { + "x": 394, + "y": 300 + }, + [ + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88552, + "y": -0.46461 + }, + { + "x": -0.74848, + "y": -0.66316 + }, + { + "x": -0.56812, + "y": -0.82294 + }, + { + "x": -0.3545, + "y": -0.93506 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.3545, + "y": -0.93506 + }, + { + "x": 0.56812, + "y": -0.82294 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88552, + "y": -0.46461 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 11, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 260 + }, + "angle": 0, + "vertices": { + "#": 261 + }, + "position": { + "#": 288 + }, + "force": { + "#": 289 + }, + "torque": 0, + "positionImpulse": { + "#": 290 + }, + "constraintImpulse": { + "#": 291 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 292 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 293 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 294 + }, + "inertia": 99999, + "circleRadius": 30, + "bounds": { + "#": 296 + }, + "positionPrev": { + "#": 299 + }, + "anglePrev": 0, + "axes": { + "#": 300 + }, + "area": 2799.98416, + "mass": 2.79998, + "inverseMass": 0.35714, + "inverseInertia": 0.00001, + "parent": { + "#": 259 + }, + "sleepCounter": 0 + }, + [ + { + "#": 259 + } + ], + [ + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + } + ], + { + "x": 480.781, + "y": 303.616, + "index": 0, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 479.05, + "y": 310.638, + "index": 1, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 475.69, + "y": 317.042, + "index": 2, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 470.894, + "y": 322.455, + "index": 3, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 464.942, + "y": 326.564, + "index": 4, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 458.179, + "y": 329.128, + "index": 5, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 451, + "y": 330, + "index": 6, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 443.821, + "y": 329.128, + "index": 7, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 437.058, + "y": 326.564, + "index": 8, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 431.106, + "y": 322.455, + "index": 9, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 426.31, + "y": 317.042, + "index": 10, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 422.95, + "y": 310.638, + "index": 11, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 421.219, + "y": 303.616, + "index": 12, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 421.219, + "y": 296.384, + "index": 13, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 422.95, + "y": 289.362, + "index": 14, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 426.31, + "y": 282.958, + "index": 15, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 431.106, + "y": 277.545, + "index": 16, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 437.058, + "y": 273.436, + "index": 17, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 443.821, + "y": 270.872, + "index": 18, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 451, + "y": 270, + "index": 19, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 458.179, + "y": 270.872, + "index": 20, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 464.942, + "y": 273.436, + "index": 21, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 470.894, + "y": 277.545, + "index": 22, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 475.69, + "y": 282.958, + "index": 23, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 479.05, + "y": 289.362, + "index": 24, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 480.781, + "y": 296.384, + "index": 25, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 451, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 295 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 297 + }, + "max": { + "#": 298 + } + }, + { + "x": 421.219, + "y": 270 + }, + { + "x": 480.781, + "y": 330 + }, + { + "x": 451, + "y": 300 + }, + [ + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88552, + "y": -0.46461 + }, + { + "x": -0.74848, + "y": -0.66316 + }, + { + "x": -0.56812, + "y": -0.82294 + }, + { + "x": -0.3545, + "y": -0.93506 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.3545, + "y": -0.93506 + }, + { + "x": 0.56812, + "y": -0.82294 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88552, + "y": -0.46461 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 13, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 315 + }, + "angle": 0, + "vertices": { + "#": 316 + }, + "position": { + "#": 343 + }, + "force": { + "#": 344 + }, + "torque": 0, + "positionImpulse": { + "#": 345 + }, + "constraintImpulse": { + "#": 346 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 347 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 348 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 349 + }, + "inertia": 99999, + "circleRadius": 30, + "bounds": { + "#": 351 + }, + "positionPrev": { + "#": 354 + }, + "anglePrev": 0, + "axes": { + "#": 355 + }, + "area": 2799.98416, + "mass": 2.79998, + "inverseMass": 0.35714, + "inverseInertia": 0.00001, + "parent": { + "#": 314 + }, + "sleepCounter": 0 + }, + [ + { + "#": 314 + } + ], + [ + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + } + ], + { + "x": 537.781, + "y": 303.616, + "index": 0, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 536.05, + "y": 310.638, + "index": 1, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 532.69, + "y": 317.042, + "index": 2, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 527.894, + "y": 322.455, + "index": 3, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 521.942, + "y": 326.564, + "index": 4, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 515.179, + "y": 329.128, + "index": 5, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 508, + "y": 330, + "index": 6, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 500.821, + "y": 329.128, + "index": 7, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 494.058, + "y": 326.564, + "index": 8, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 488.106, + "y": 322.455, + "index": 9, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 483.31, + "y": 317.042, + "index": 10, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 479.95, + "y": 310.638, + "index": 11, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 478.219, + "y": 303.616, + "index": 12, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 478.219, + "y": 296.384, + "index": 13, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 479.95, + "y": 289.362, + "index": 14, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 483.31, + "y": 282.958, + "index": 15, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 488.106, + "y": 277.545, + "index": 16, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 494.058, + "y": 273.436, + "index": 17, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 500.821, + "y": 270.872, + "index": 18, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 508, + "y": 270, + "index": 19, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 515.179, + "y": 270.872, + "index": 20, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 521.942, + "y": 273.436, + "index": 21, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 527.894, + "y": 277.545, + "index": 22, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 532.69, + "y": 282.958, + "index": 23, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 536.05, + "y": 289.362, + "index": 24, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 537.781, + "y": 296.384, + "index": 25, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 508, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 350 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 352 + }, + "max": { + "#": 353 + } + }, + { + "x": 478.219, + "y": 270 + }, + { + "x": 537.781, + "y": 330 + }, + { + "x": 508, + "y": 300 + }, + [ + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88552, + "y": -0.46461 + }, + { + "x": -0.74848, + "y": -0.66316 + }, + { + "x": -0.56812, + "y": -0.82294 + }, + { + "x": -0.3545, + "y": -0.93506 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.3545, + "y": -0.93506 + }, + { + "x": 0.56812, + "y": -0.82294 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88552, + "y": -0.46461 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + [ + { + "#": 370 + }, + { + "#": 374 + }, + { + "#": 378 + }, + { + "#": 382 + }, + { + "#": 386 + } + ], + { + "pointA": { + "#": 371 + }, + "bodyB": { + "#": 94 + }, + "pointB": { + "#": 372 + }, + "length": 200, + "render": { + "#": 373 + }, + "id": 6, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 280, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "pointA": { + "#": 375 + }, + "bodyB": { + "#": 149 + }, + "pointB": { + "#": 376 + }, + "length": 200, + "render": { + "#": 377 + }, + "id": 8, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 337, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "pointA": { + "#": 379 + }, + "bodyB": { + "#": 204 + }, + "pointB": { + "#": 380 + }, + "length": 200, + "render": { + "#": 381 + }, + "id": 10, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 394, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "pointA": { + "#": 383 + }, + "bodyB": { + "#": 259 + }, + "pointB": { + "#": 384 + }, + "length": 200, + "render": { + "#": 385 + }, + "id": 12, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 451, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "pointA": { + "#": 387 + }, + "bodyB": { + "#": 314 + }, + "pointB": { + "#": 388 + }, + "length": 200, + "render": { + "#": 389 + }, + "id": 14, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 508, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "id": 15, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 392 + }, + "constraints": { + "#": 715 + }, + "composites": { + "#": 744 + }, + "label": "Newtons Cradle" + }, + [ + { + "#": 393 + }, + { + "#": 439 + }, + { + "#": 485 + }, + { + "#": 531 + }, + { + "#": 577 + }, + { + "#": 623 + }, + { + "#": 669 + } + ], + { + "id": 16, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 394 + }, + "angle": 0, + "vertices": { + "#": 395 + }, + "position": { + "#": 416 + }, + "force": { + "#": 417 + }, + "torque": 0, + "positionImpulse": { + "#": 418 + }, + "constraintImpulse": { + "#": 419 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 420 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 421 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 422 + }, + "inertia": 99999, + "circleRadius": 20, + "bounds": { + "#": 424 + }, + "positionPrev": { + "#": 427 + }, + "anglePrev": 0, + "axes": { + "#": 428 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inverseInertia": 0.00001, + "parent": { + "#": 393 + }, + "sleepCounter": 0 + }, + [ + { + "#": 393 + } + ], + [ + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + } + ], + { + "x": 159.754, + "y": 423.129, + "index": 0, + "body": { + "#": 393 + }, + "isInternal": false + }, + { + "x": 157.82, + "y": 429.08, + "index": 1, + "body": { + "#": 393 + }, + "isInternal": false + }, + { + "x": 154.142, + "y": 434.142, + "index": 2, + "body": { + "#": 393 + }, + "isInternal": false + }, + { + "x": 149.08, + "y": 437.82, + "index": 3, + "body": { + "#": 393 + }, + "isInternal": false + }, + { + "x": 143.129, + "y": 439.754, + "index": 4, + "body": { + "#": 393 + }, + "isInternal": false + }, + { + "x": 136.871, + "y": 439.754, + "index": 5, + "body": { + "#": 393 + }, + "isInternal": false + }, + { + "x": 130.92, + "y": 437.82, + "index": 6, + "body": { + "#": 393 + }, + "isInternal": false + }, + { + "x": 125.858, + "y": 434.142, + "index": 7, + "body": { + "#": 393 + }, + "isInternal": false + }, + { + "x": 122.18, + "y": 429.08, + "index": 8, + "body": { + "#": 393 + }, + "isInternal": false + }, + { + "x": 120.246, + "y": 423.129, + "index": 9, + "body": { + "#": 393 + }, + "isInternal": false + }, + { + "x": 120.246, + "y": 416.871, + "index": 10, + "body": { + "#": 393 + }, + "isInternal": false + }, + { + "x": 122.18, + "y": 410.92, + "index": 11, + "body": { + "#": 393 + }, + "isInternal": false + }, + { + "x": 125.858, + "y": 405.858, + "index": 12, + "body": { + "#": 393 + }, + "isInternal": false + }, + { + "x": 130.92, + "y": 402.18, + "index": 13, + "body": { + "#": 393 + }, + "isInternal": false + }, + { + "x": 136.871, + "y": 400.246, + "index": 14, + "body": { + "#": 393 + }, + "isInternal": false + }, + { + "x": 143.129, + "y": 400.246, + "index": 15, + "body": { + "#": 393 + }, + "isInternal": false + }, + { + "x": 149.08, + "y": 402.18, + "index": 16, + "body": { + "#": 393 + }, + "isInternal": false + }, + { + "x": 154.142, + "y": 405.858, + "index": 17, + "body": { + "#": 393 + }, + "isInternal": false + }, + { + "x": 157.82, + "y": 410.92, + "index": 18, + "body": { + "#": 393 + }, + "isInternal": false + }, + { + "x": 159.754, + "y": 416.871, + "index": 19, + "body": { + "#": 393 + }, + "isInternal": false + }, + { + "x": 140, + "y": 420 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 423 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 425 + }, + "max": { + "#": 426 + } + }, + { + "x": 120.246, + "y": 400.246 + }, + { + "x": 159.754, + "y": 439.754 + }, + { + "x": 140, + "y": 420 + }, + [ + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 18, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 440 + }, + "angle": 0, + "vertices": { + "#": 441 + }, + "position": { + "#": 462 + }, + "force": { + "#": 463 + }, + "torque": 0, + "positionImpulse": { + "#": 464 + }, + "constraintImpulse": { + "#": 465 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 466 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 467 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 468 + }, + "inertia": 99999, + "circleRadius": 20, + "bounds": { + "#": 470 + }, + "positionPrev": { + "#": 473 + }, + "anglePrev": 0, + "axes": { + "#": 474 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inverseInertia": 0.00001, + "parent": { + "#": 439 + }, + "sleepCounter": 0 + }, + [ + { + "#": 439 + } + ], + [ + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + } + ], + { + "x": 337.754, + "y": 523.129, + "index": 0, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 335.82, + "y": 529.08, + "index": 1, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 332.142, + "y": 534.142, + "index": 2, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 327.08, + "y": 537.82, + "index": 3, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 321.129, + "y": 539.754, + "index": 4, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 314.871, + "y": 539.754, + "index": 5, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 308.92, + "y": 537.82, + "index": 6, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 303.858, + "y": 534.142, + "index": 7, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 300.18, + "y": 529.08, + "index": 8, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 298.246, + "y": 523.129, + "index": 9, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 298.246, + "y": 516.871, + "index": 10, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 300.18, + "y": 510.92, + "index": 11, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 303.858, + "y": 505.858, + "index": 12, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 308.92, + "y": 502.18, + "index": 13, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 314.871, + "y": 500.246, + "index": 14, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 321.129, + "y": 500.246, + "index": 15, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 327.08, + "y": 502.18, + "index": 16, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 332.142, + "y": 505.858, + "index": 17, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 335.82, + "y": 510.92, + "index": 18, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 337.754, + "y": 516.871, + "index": 19, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 318, + "y": 520 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 469 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 471 + }, + "max": { + "#": 472 + } + }, + { + "x": 298.246, + "y": 500.246 + }, + { + "x": 337.754, + "y": 539.754 + }, + { + "x": 318, + "y": 520 + }, + [ + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 20, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 486 + }, + "angle": 0, + "vertices": { + "#": 487 + }, + "position": { + "#": 508 + }, + "force": { + "#": 509 + }, + "torque": 0, + "positionImpulse": { + "#": 510 + }, + "constraintImpulse": { + "#": 511 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 512 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 513 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 514 + }, + "inertia": 99999, + "circleRadius": 20, + "bounds": { + "#": 516 + }, + "positionPrev": { + "#": 519 + }, + "anglePrev": 0, + "axes": { + "#": 520 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inverseInertia": 0.00001, + "parent": { + "#": 485 + }, + "sleepCounter": 0 + }, + [ + { + "#": 485 + } + ], + [ + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + }, + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + } + ], + { + "x": 375.754, + "y": 523.129, + "index": 0, + "body": { + "#": 485 + }, + "isInternal": false + }, + { + "x": 373.82, + "y": 529.08, + "index": 1, + "body": { + "#": 485 + }, + "isInternal": false + }, + { + "x": 370.142, + "y": 534.142, + "index": 2, + "body": { + "#": 485 + }, + "isInternal": false + }, + { + "x": 365.08, + "y": 537.82, + "index": 3, + "body": { + "#": 485 + }, + "isInternal": false + }, + { + "x": 359.129, + "y": 539.754, + "index": 4, + "body": { + "#": 485 + }, + "isInternal": false + }, + { + "x": 352.871, + "y": 539.754, + "index": 5, + "body": { + "#": 485 + }, + "isInternal": false + }, + { + "x": 346.92, + "y": 537.82, + "index": 6, + "body": { + "#": 485 + }, + "isInternal": false + }, + { + "x": 341.858, + "y": 534.142, + "index": 7, + "body": { + "#": 485 + }, + "isInternal": false + }, + { + "x": 338.18, + "y": 529.08, + "index": 8, + "body": { + "#": 485 + }, + "isInternal": false + }, + { + "x": 336.246, + "y": 523.129, + "index": 9, + "body": { + "#": 485 + }, + "isInternal": false + }, + { + "x": 336.246, + "y": 516.871, + "index": 10, + "body": { + "#": 485 + }, + "isInternal": false + }, + { + "x": 338.18, + "y": 510.92, + "index": 11, + "body": { + "#": 485 + }, + "isInternal": false + }, + { + "x": 341.858, + "y": 505.858, + "index": 12, + "body": { + "#": 485 + }, + "isInternal": false + }, + { + "x": 346.92, + "y": 502.18, + "index": 13, + "body": { + "#": 485 + }, + "isInternal": false + }, + { + "x": 352.871, + "y": 500.246, + "index": 14, + "body": { + "#": 485 + }, + "isInternal": false + }, + { + "x": 359.129, + "y": 500.246, + "index": 15, + "body": { + "#": 485 + }, + "isInternal": false + }, + { + "x": 365.08, + "y": 502.18, + "index": 16, + "body": { + "#": 485 + }, + "isInternal": false + }, + { + "x": 370.142, + "y": 505.858, + "index": 17, + "body": { + "#": 485 + }, + "isInternal": false + }, + { + "x": 373.82, + "y": 510.92, + "index": 18, + "body": { + "#": 485 + }, + "isInternal": false + }, + { + "x": 375.754, + "y": 516.871, + "index": 19, + "body": { + "#": 485 + }, + "isInternal": false + }, + { + "x": 356, + "y": 520 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 515 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 517 + }, + "max": { + "#": 518 + } + }, + { + "x": 336.246, + "y": 500.246 + }, + { + "x": 375.754, + "y": 539.754 + }, + { + "x": 356, + "y": 520 + }, + [ + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 22, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 532 + }, + "angle": 0, + "vertices": { + "#": 533 + }, + "position": { + "#": 554 + }, + "force": { + "#": 555 + }, + "torque": 0, + "positionImpulse": { + "#": 556 + }, + "constraintImpulse": { + "#": 557 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 558 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 559 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 560 + }, + "inertia": 99999, + "circleRadius": 20, + "bounds": { + "#": 562 + }, + "positionPrev": { + "#": 565 + }, + "anglePrev": 0, + "axes": { + "#": 566 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inverseInertia": 0.00001, + "parent": { + "#": 531 + }, + "sleepCounter": 0 + }, + [ + { + "#": 531 + } + ], + [ + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + } + ], + { + "x": 413.754, + "y": 523.129, + "index": 0, + "body": { + "#": 531 + }, + "isInternal": false + }, + { + "x": 411.82, + "y": 529.08, + "index": 1, + "body": { + "#": 531 + }, + "isInternal": false + }, + { + "x": 408.142, + "y": 534.142, + "index": 2, + "body": { + "#": 531 + }, + "isInternal": false + }, + { + "x": 403.08, + "y": 537.82, + "index": 3, + "body": { + "#": 531 + }, + "isInternal": false + }, + { + "x": 397.129, + "y": 539.754, + "index": 4, + "body": { + "#": 531 + }, + "isInternal": false + }, + { + "x": 390.871, + "y": 539.754, + "index": 5, + "body": { + "#": 531 + }, + "isInternal": false + }, + { + "x": 384.92, + "y": 537.82, + "index": 6, + "body": { + "#": 531 + }, + "isInternal": false + }, + { + "x": 379.858, + "y": 534.142, + "index": 7, + "body": { + "#": 531 + }, + "isInternal": false + }, + { + "x": 376.18, + "y": 529.08, + "index": 8, + "body": { + "#": 531 + }, + "isInternal": false + }, + { + "x": 374.246, + "y": 523.129, + "index": 9, + "body": { + "#": 531 + }, + "isInternal": false + }, + { + "x": 374.246, + "y": 516.871, + "index": 10, + "body": { + "#": 531 + }, + "isInternal": false + }, + { + "x": 376.18, + "y": 510.92, + "index": 11, + "body": { + "#": 531 + }, + "isInternal": false + }, + { + "x": 379.858, + "y": 505.858, + "index": 12, + "body": { + "#": 531 + }, + "isInternal": false + }, + { + "x": 384.92, + "y": 502.18, + "index": 13, + "body": { + "#": 531 + }, + "isInternal": false + }, + { + "x": 390.871, + "y": 500.246, + "index": 14, + "body": { + "#": 531 + }, + "isInternal": false + }, + { + "x": 397.129, + "y": 500.246, + "index": 15, + "body": { + "#": 531 + }, + "isInternal": false + }, + { + "x": 403.08, + "y": 502.18, + "index": 16, + "body": { + "#": 531 + }, + "isInternal": false + }, + { + "x": 408.142, + "y": 505.858, + "index": 17, + "body": { + "#": 531 + }, + "isInternal": false + }, + { + "x": 411.82, + "y": 510.92, + "index": 18, + "body": { + "#": 531 + }, + "isInternal": false + }, + { + "x": 413.754, + "y": 516.871, + "index": 19, + "body": { + "#": 531 + }, + "isInternal": false + }, + { + "x": 394, + "y": 520 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 561 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 563 + }, + "max": { + "#": 564 + } + }, + { + "x": 374.246, + "y": 500.246 + }, + { + "x": 413.754, + "y": 539.754 + }, + { + "x": 394, + "y": 520 + }, + [ + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 24, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 578 + }, + "angle": 0, + "vertices": { + "#": 579 + }, + "position": { + "#": 600 + }, + "force": { + "#": 601 + }, + "torque": 0, + "positionImpulse": { + "#": 602 + }, + "constraintImpulse": { + "#": 603 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 604 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 605 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 606 + }, + "inertia": 99999, + "circleRadius": 20, + "bounds": { + "#": 608 + }, + "positionPrev": { + "#": 611 + }, + "anglePrev": 0, + "axes": { + "#": 612 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inverseInertia": 0.00001, + "parent": { + "#": 577 + }, + "sleepCounter": 0 + }, + [ + { + "#": 577 + } + ], + [ + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + } + ], + { + "x": 451.754, + "y": 523.129, + "index": 0, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 449.82, + "y": 529.08, + "index": 1, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 446.142, + "y": 534.142, + "index": 2, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 441.08, + "y": 537.82, + "index": 3, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 435.129, + "y": 539.754, + "index": 4, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 428.871, + "y": 539.754, + "index": 5, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 422.92, + "y": 537.82, + "index": 6, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 417.858, + "y": 534.142, + "index": 7, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 414.18, + "y": 529.08, + "index": 8, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 412.246, + "y": 523.129, + "index": 9, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 412.246, + "y": 516.871, + "index": 10, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 414.18, + "y": 510.92, + "index": 11, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 417.858, + "y": 505.858, + "index": 12, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 422.92, + "y": 502.18, + "index": 13, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 428.871, + "y": 500.246, + "index": 14, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 435.129, + "y": 500.246, + "index": 15, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 441.08, + "y": 502.18, + "index": 16, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 446.142, + "y": 505.858, + "index": 17, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 449.82, + "y": 510.92, + "index": 18, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 451.754, + "y": 516.871, + "index": 19, + "body": { + "#": 577 + }, + "isInternal": false + }, + { + "x": 432, + "y": 520 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 607 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 609 + }, + "max": { + "#": 610 + } + }, + { + "x": 412.246, + "y": 500.246 + }, + { + "x": 451.754, + "y": 539.754 + }, + { + "x": 432, + "y": 520 + }, + [ + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 26, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 624 + }, + "angle": 0, + "vertices": { + "#": 625 + }, + "position": { + "#": 646 + }, + "force": { + "#": 647 + }, + "torque": 0, + "positionImpulse": { + "#": 648 + }, + "constraintImpulse": { + "#": 649 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 650 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 651 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 652 + }, + "inertia": 99999, + "circleRadius": 20, + "bounds": { + "#": 654 + }, + "positionPrev": { + "#": 657 + }, + "anglePrev": 0, + "axes": { + "#": 658 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inverseInertia": 0.00001, + "parent": { + "#": 623 + }, + "sleepCounter": 0 + }, + [ + { + "#": 623 + } + ], + [ + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + } + ], + { + "x": 489.754, + "y": 523.129, + "index": 0, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 487.82, + "y": 529.08, + "index": 1, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 484.142, + "y": 534.142, + "index": 2, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 479.08, + "y": 537.82, + "index": 3, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 473.129, + "y": 539.754, + "index": 4, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 466.871, + "y": 539.754, + "index": 5, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 460.92, + "y": 537.82, + "index": 6, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 455.858, + "y": 534.142, + "index": 7, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 452.18, + "y": 529.08, + "index": 8, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 450.246, + "y": 523.129, + "index": 9, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 450.246, + "y": 516.871, + "index": 10, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 452.18, + "y": 510.92, + "index": 11, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 455.858, + "y": 505.858, + "index": 12, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 460.92, + "y": 502.18, + "index": 13, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 466.871, + "y": 500.246, + "index": 14, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 473.129, + "y": 500.246, + "index": 15, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 479.08, + "y": 502.18, + "index": 16, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 484.142, + "y": 505.858, + "index": 17, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 487.82, + "y": 510.92, + "index": 18, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 489.754, + "y": 516.871, + "index": 19, + "body": { + "#": 623 + }, + "isInternal": false + }, + { + "x": 470, + "y": 520 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 653 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 655 + }, + "max": { + "#": 656 + } + }, + { + "x": 450.246, + "y": 500.246 + }, + { + "x": 489.754, + "y": 539.754 + }, + { + "x": 470, + "y": 520 + }, + [ + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 28, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 670 + }, + "angle": 0, + "vertices": { + "#": 671 + }, + "position": { + "#": 692 + }, + "force": { + "#": 693 + }, + "torque": 0, + "positionImpulse": { + "#": 694 + }, + "constraintImpulse": { + "#": 695 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 696 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 697 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 698 + }, + "inertia": 99999, + "circleRadius": 20, + "bounds": { + "#": 700 + }, + "positionPrev": { + "#": 703 + }, + "anglePrev": 0, + "axes": { + "#": 704 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inverseInertia": 0.00001, + "parent": { + "#": 669 + }, + "sleepCounter": 0 + }, + [ + { + "#": 669 + } + ], + [ + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + } + ], + { + "x": 527.754, + "y": 523.129, + "index": 0, + "body": { + "#": 669 + }, + "isInternal": false + }, + { + "x": 525.82, + "y": 529.08, + "index": 1, + "body": { + "#": 669 + }, + "isInternal": false + }, + { + "x": 522.142, + "y": 534.142, + "index": 2, + "body": { + "#": 669 + }, + "isInternal": false + }, + { + "x": 517.08, + "y": 537.82, + "index": 3, + "body": { + "#": 669 + }, + "isInternal": false + }, + { + "x": 511.129, + "y": 539.754, + "index": 4, + "body": { + "#": 669 + }, + "isInternal": false + }, + { + "x": 504.871, + "y": 539.754, + "index": 5, + "body": { + "#": 669 + }, + "isInternal": false + }, + { + "x": 498.92, + "y": 537.82, + "index": 6, + "body": { + "#": 669 + }, + "isInternal": false + }, + { + "x": 493.858, + "y": 534.142, + "index": 7, + "body": { + "#": 669 + }, + "isInternal": false + }, + { + "x": 490.18, + "y": 529.08, + "index": 8, + "body": { + "#": 669 + }, + "isInternal": false + }, + { + "x": 488.246, + "y": 523.129, + "index": 9, + "body": { + "#": 669 + }, + "isInternal": false + }, + { + "x": 488.246, + "y": 516.871, + "index": 10, + "body": { + "#": 669 + }, + "isInternal": false + }, + { + "x": 490.18, + "y": 510.92, + "index": 11, + "body": { + "#": 669 + }, + "isInternal": false + }, + { + "x": 493.858, + "y": 505.858, + "index": 12, + "body": { + "#": 669 + }, + "isInternal": false + }, + { + "x": 498.92, + "y": 502.18, + "index": 13, + "body": { + "#": 669 + }, + "isInternal": false + }, + { + "x": 504.871, + "y": 500.246, + "index": 14, + "body": { + "#": 669 + }, + "isInternal": false + }, + { + "x": 511.129, + "y": 500.246, + "index": 15, + "body": { + "#": 669 + }, + "isInternal": false + }, + { + "x": 517.08, + "y": 502.18, + "index": 16, + "body": { + "#": 669 + }, + "isInternal": false + }, + { + "x": 522.142, + "y": 505.858, + "index": 17, + "body": { + "#": 669 + }, + "isInternal": false + }, + { + "x": 525.82, + "y": 510.92, + "index": 18, + "body": { + "#": 669 + }, + "isInternal": false + }, + { + "x": 527.754, + "y": 516.871, + "index": 19, + "body": { + "#": 669 + }, + "isInternal": false + }, + { + "x": 508, + "y": 520 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 699 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 701 + }, + "max": { + "#": 702 + } + }, + { + "x": 488.246, + "y": 500.246 + }, + { + "x": 527.754, + "y": 539.754 + }, + { + "x": 508, + "y": 520 + }, + [ + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + }, + { + "#": 714 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + [ + { + "#": 716 + }, + { + "#": 720 + }, + { + "#": 724 + }, + { + "#": 728 + }, + { + "#": 732 + }, + { + "#": 736 + }, + { + "#": 740 + } + ], + { + "pointA": { + "#": 717 + }, + "bodyB": { + "#": 393 + }, + "pointB": { + "#": 718 + }, + "length": 140, + "render": { + "#": 719 + }, + "id": 17, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 280, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "pointA": { + "#": 721 + }, + "bodyB": { + "#": 439 + }, + "pointB": { + "#": 722 + }, + "length": 140, + "render": { + "#": 723 + }, + "id": 19, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 318, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "pointA": { + "#": 725 + }, + "bodyB": { + "#": 485 + }, + "pointB": { + "#": 726 + }, + "length": 140, + "render": { + "#": 727 + }, + "id": 21, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 356, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "pointA": { + "#": 729 + }, + "bodyB": { + "#": 531 + }, + "pointB": { + "#": 730 + }, + "length": 140, + "render": { + "#": 731 + }, + "id": 23, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 394, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "pointA": { + "#": 733 + }, + "bodyB": { + "#": 577 + }, + "pointB": { + "#": 734 + }, + "length": 140, + "render": { + "#": 735 + }, + "id": 25, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 432, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "pointA": { + "#": 737 + }, + "bodyB": { + "#": 623 + }, + "pointB": { + "#": 738 + }, + "length": 140, + "render": { + "#": 739 + }, + "id": 27, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 470, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "pointA": { + "#": 741 + }, + "bodyB": { + "#": 669 + }, + "pointB": { + "#": 742 + }, + "length": 140, + "render": { + "#": 743 + }, + "id": 29, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 508, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 747 + }, + "max": { + "#": 748 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/newtonsCradle/newtonsCradle-10.json b/test/node/refs/newtonsCradle/newtonsCradle-10.json new file mode 100644 index 00000000..4835dcf0 --- /dev/null +++ b/test/node/refs/newtonsCradle/newtonsCradle-10.json @@ -0,0 +1,7490 @@ +[ + { + "id": 13, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 94 + }, + "composites": { + "#": 95 + }, + "label": "World", + "gravity": { + "#": 761 + }, + "bounds": { + "#": 762 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + [], + [ + { + "#": 96 + }, + { + "#": 400 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 97 + }, + "constraints": { + "#": 378 + }, + "composites": { + "#": 399 + }, + "label": "Newtons Cradle" + }, + [ + { + "#": 98 + }, + { + "#": 154 + }, + { + "#": 210 + }, + { + "#": 266 + }, + { + "#": 322 + } + ], + { + "id": 5, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 99 + }, + "angle": 0, + "vertices": { + "#": 100 + }, + "position": { + "#": 127 + }, + "force": { + "#": 128 + }, + "torque": 0, + "positionImpulse": { + "#": 129 + }, + "constraintImpulse": { + "#": 130 + }, + "totalContacts": 0, + "speed": 2.64075, + "angularSpeed": 0, + "velocity": { + "#": 131 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 132 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 133 + }, + "inertia": 99999, + "circleRadius": 30, + "bounds": { + "#": 135 + }, + "positionPrev": { + "#": 138 + }, + "anglePrev": 0, + "axes": { + "#": 139 + }, + "area": 2799.98416, + "mass": 2.79998, + "inverseMass": 0.35714, + "inverseInertia": 0.00001, + "parent": { + "#": 98 + }, + "sleepCounter": 0, + "region": { + "#": 153 + } + }, + [ + { + "#": 98 + } + ], + [ + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + } + ], + { + "x": 143.10687, + "y": 214.4896, + "index": 0, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 141.37587, + "y": 221.5116, + "index": 1, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 138.01587, + "y": 227.9156, + "index": 2, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 133.21987, + "y": 233.3286, + "index": 3, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 127.26787, + "y": 237.4376, + "index": 4, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 120.50487, + "y": 240.0016, + "index": 5, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 113.32587, + "y": 240.8736, + "index": 6, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 106.14687, + "y": 240.0016, + "index": 7, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 99.38387, + "y": 237.4376, + "index": 8, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 93.43187, + "y": 233.3286, + "index": 9, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 88.63587, + "y": 227.9156, + "index": 10, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 85.27587, + "y": 221.5116, + "index": 11, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 83.54487, + "y": 214.4896, + "index": 12, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 83.54487, + "y": 207.2576, + "index": 13, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 85.27587, + "y": 200.2356, + "index": 14, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 88.63587, + "y": 193.8316, + "index": 15, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 93.43187, + "y": 188.4186, + "index": 16, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 99.38387, + "y": 184.3096, + "index": 17, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 106.14687, + "y": 181.7456, + "index": 18, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 113.32587, + "y": 180.8736, + "index": 19, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 120.50487, + "y": 181.7456, + "index": 20, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 127.26787, + "y": 184.3096, + "index": 21, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 133.21987, + "y": 188.4186, + "index": 22, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 138.01587, + "y": 193.8316, + "index": 23, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 141.37587, + "y": 200.2356, + "index": 24, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 143.10687, + "y": 207.2576, + "index": 25, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 113.32587, + "y": 210.8736 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 1.28469, + "y": 2.3072 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 134 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 136 + }, + "max": { + "#": 137 + } + }, + { + "x": 83.54487, + "y": 180.8736 + }, + { + "x": 143.10687, + "y": 240.8736 + }, + { + "x": 111.88885, + "y": 208.66774 + }, + [ + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + }, + { + "#": 152 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88552, + "y": -0.46461 + }, + { + "x": -0.74848, + "y": -0.66316 + }, + { + "x": -0.56812, + "y": -0.82294 + }, + { + "x": -0.3545, + "y": -0.93506 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.3545, + "y": -0.93506 + }, + { + "x": 0.56812, + "y": -0.82294 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88552, + "y": -0.46461 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "1,2,3,5", + "startCol": 1, + "endCol": 2, + "startRow": 3, + "endRow": 5 + }, + { + "id": 7, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 155 + }, + "angle": 0, + "vertices": { + "#": 156 + }, + "position": { + "#": 183 + }, + "force": { + "#": 184 + }, + "torque": 0, + "positionImpulse": { + "#": 185 + }, + "constraintImpulse": { + "#": 186 + }, + "totalContacts": 0, + "speed": 0.33531, + "angularSpeed": 0, + "velocity": { + "#": 187 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 188 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 189 + }, + "inertia": 99999, + "circleRadius": 30, + "bounds": { + "#": 191 + }, + "positionPrev": { + "#": 194 + }, + "anglePrev": 0, + "axes": { + "#": 195 + }, + "area": 2799.98416, + "mass": 2.79998, + "inverseMass": 0.35714, + "inverseInertia": 0.00001, + "parent": { + "#": 154 + }, + "sleepCounter": 0, + "region": { + "#": 209 + } + }, + [ + { + "#": 154 + } + ], + [ + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + } + ], + { + "x": 361.62203, + "y": 303.67524, + "index": 0, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 359.89103, + "y": 310.69724, + "index": 1, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 356.53103, + "y": 317.10124, + "index": 2, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 351.73503, + "y": 322.51424, + "index": 3, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 345.78303, + "y": 326.62324, + "index": 4, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 339.02003, + "y": 329.18724, + "index": 5, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 331.84103, + "y": 330.05924, + "index": 6, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 324.66203, + "y": 329.18724, + "index": 7, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 317.89903, + "y": 326.62324, + "index": 8, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 311.94703, + "y": 322.51424, + "index": 9, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 307.15103, + "y": 317.10124, + "index": 10, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 303.79103, + "y": 310.69724, + "index": 11, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 302.06003, + "y": 303.67524, + "index": 12, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 302.06003, + "y": 296.44324, + "index": 13, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 303.79103, + "y": 289.42124, + "index": 14, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 307.15103, + "y": 283.01724, + "index": 15, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 311.94703, + "y": 277.60424, + "index": 16, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 317.89903, + "y": 273.49524, + "index": 17, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 324.66203, + "y": 270.93124, + "index": 18, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 331.84103, + "y": 270.05924, + "index": 19, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 339.02003, + "y": 270.93124, + "index": 20, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 345.78303, + "y": 273.49524, + "index": 21, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 351.73503, + "y": 277.60424, + "index": 22, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 356.53103, + "y": 283.01724, + "index": 23, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 359.89103, + "y": 289.42124, + "index": 24, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 361.62203, + "y": 296.44324, + "index": 25, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 331.84103, + "y": 300.05924 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.07143, + "y": 0.07754 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 190 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 192 + }, + "max": { + "#": 193 + } + }, + { + "x": 302.06003, + "y": 270.05924 + }, + { + "x": 361.62203, + "y": 330.05924 + }, + { + "x": 331.76636, + "y": 300.1074 + }, + [ + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88552, + "y": -0.46461 + }, + { + "x": -0.74848, + "y": -0.66316 + }, + { + "x": -0.56812, + "y": -0.82294 + }, + { + "x": -0.3545, + "y": -0.93506 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.3545, + "y": -0.93506 + }, + { + "x": 0.56812, + "y": -0.82294 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88552, + "y": -0.46461 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,5,6", + "startCol": 6, + "endCol": 7, + "startRow": 5, + "endRow": 6 + }, + { + "id": 9, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 211 + }, + "angle": 0, + "vertices": { + "#": 212 + }, + "position": { + "#": 239 + }, + "force": { + "#": 240 + }, + "torque": 0, + "positionImpulse": { + "#": 241 + }, + "constraintImpulse": { + "#": 242 + }, + "totalContacts": 0, + "speed": 0.32934, + "angularSpeed": 0, + "velocity": { + "#": 243 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 244 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 245 + }, + "inertia": 99999, + "circleRadius": 30, + "bounds": { + "#": 247 + }, + "positionPrev": { + "#": 250 + }, + "anglePrev": 0, + "axes": { + "#": 251 + }, + "area": 2799.98416, + "mass": 2.79998, + "inverseMass": 0.35714, + "inverseInertia": 0.00001, + "parent": { + "#": 210 + }, + "sleepCounter": 0, + "region": { + "#": 265 + } + }, + [ + { + "#": 210 + } + ], + [ + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + } + ], + { + "x": 422.26651, + "y": 303.7365, + "index": 0, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 420.53551, + "y": 310.7585, + "index": 1, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 417.17551, + "y": 317.1625, + "index": 2, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 412.37951, + "y": 322.5755, + "index": 3, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 406.42751, + "y": 326.6845, + "index": 4, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 399.66451, + "y": 329.2485, + "index": 5, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 392.48551, + "y": 330.1205, + "index": 6, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 385.30651, + "y": 329.2485, + "index": 7, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 378.54351, + "y": 326.6845, + "index": 8, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 372.59151, + "y": 322.5755, + "index": 9, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 367.79551, + "y": 317.1625, + "index": 10, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 364.43551, + "y": 310.7585, + "index": 11, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 362.70451, + "y": 303.7365, + "index": 12, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 362.70451, + "y": 296.5045, + "index": 13, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 364.43551, + "y": 289.4825, + "index": 14, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 367.79551, + "y": 283.0785, + "index": 15, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 372.59151, + "y": 277.6655, + "index": 16, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 378.54351, + "y": 273.5565, + "index": 17, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 385.30651, + "y": 270.9925, + "index": 18, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 392.48551, + "y": 270.1205, + "index": 19, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 399.66451, + "y": 270.9925, + "index": 20, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 406.42751, + "y": 273.5565, + "index": 21, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 412.37951, + "y": 277.6655, + "index": 22, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 417.17551, + "y": 283.0785, + "index": 23, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 420.53551, + "y": 289.4825, + "index": 24, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 422.26651, + "y": 296.5045, + "index": 25, + "body": { + "#": 210 + }, + "isInternal": false + }, + { + "x": 392.48551, + "y": 300.1205 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02103, + "y": 0.07634 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 246 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 248 + }, + "max": { + "#": 249 + } + }, + { + "x": 362.70451, + "y": 270.1205 + }, + { + "x": 422.26651, + "y": 330.1205 + }, + { + "x": 392.46352, + "y": 300.17039 + }, + [ + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88552, + "y": -0.46461 + }, + { + "x": -0.74848, + "y": -0.66316 + }, + { + "x": -0.56812, + "y": -0.82294 + }, + { + "x": -0.3545, + "y": -0.93506 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.3545, + "y": -0.93506 + }, + { + "x": 0.56812, + "y": -0.82294 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88552, + "y": -0.46461 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,5,6", + "startCol": 7, + "endCol": 8, + "startRow": 5, + "endRow": 6 + }, + { + "id": 11, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 267 + }, + "angle": 0, + "vertices": { + "#": 268 + }, + "position": { + "#": 295 + }, + "force": { + "#": 296 + }, + "torque": 0, + "positionImpulse": { + "#": 297 + }, + "constraintImpulse": { + "#": 298 + }, + "totalContacts": 0, + "speed": 0.32934, + "angularSpeed": 0, + "velocity": { + "#": 299 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 300 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 301 + }, + "inertia": 99999, + "circleRadius": 30, + "bounds": { + "#": 303 + }, + "positionPrev": { + "#": 306 + }, + "anglePrev": 0, + "axes": { + "#": 307 + }, + "area": 2799.98416, + "mass": 2.79998, + "inverseMass": 0.35714, + "inverseInertia": 0.00001, + "parent": { + "#": 266 + }, + "sleepCounter": 0, + "region": { + "#": 321 + } + }, + [ + { + "#": 266 + } + ], + [ + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + } + ], + { + "x": 482.29549, + "y": 303.7365, + "index": 0, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 480.56449, + "y": 310.7585, + "index": 1, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 477.20449, + "y": 317.1625, + "index": 2, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 472.40849, + "y": 322.5755, + "index": 3, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 466.45649, + "y": 326.6845, + "index": 4, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 459.69349, + "y": 329.2485, + "index": 5, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 452.51449, + "y": 330.1205, + "index": 6, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 445.33549, + "y": 329.2485, + "index": 7, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 438.57249, + "y": 326.6845, + "index": 8, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 432.62049, + "y": 322.5755, + "index": 9, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 427.82449, + "y": 317.1625, + "index": 10, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 424.46449, + "y": 310.7585, + "index": 11, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 422.73349, + "y": 303.7365, + "index": 12, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 422.73349, + "y": 296.5045, + "index": 13, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 424.46449, + "y": 289.4825, + "index": 14, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 427.82449, + "y": 283.0785, + "index": 15, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 432.62049, + "y": 277.6655, + "index": 16, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 438.57249, + "y": 273.5565, + "index": 17, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 445.33549, + "y": 270.9925, + "index": 18, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 452.51449, + "y": 270.1205, + "index": 19, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 459.69349, + "y": 270.9925, + "index": 20, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 466.45649, + "y": 273.5565, + "index": 21, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 472.40849, + "y": 277.6655, + "index": 22, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 477.20449, + "y": 283.0785, + "index": 23, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 480.56449, + "y": 289.4825, + "index": 24, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 482.29549, + "y": 296.5045, + "index": 25, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 452.51449, + "y": 300.1205 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.02103, + "y": 0.07634 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 302 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 304 + }, + "max": { + "#": 305 + } + }, + { + "x": 422.73349, + "y": 270.1205 + }, + { + "x": 482.29549, + "y": 330.1205 + }, + { + "x": 452.53648, + "y": 300.17039 + }, + [ + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88552, + "y": -0.46461 + }, + { + "x": -0.74848, + "y": -0.66316 + }, + { + "x": -0.56812, + "y": -0.82294 + }, + { + "x": -0.3545, + "y": -0.93506 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.3545, + "y": -0.93506 + }, + { + "x": 0.56812, + "y": -0.82294 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88552, + "y": -0.46461 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,10,5,6", + "startCol": 8, + "endCol": 10, + "startRow": 5, + "endRow": 6 + }, + { + "id": 13, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 323 + }, + "angle": 0, + "vertices": { + "#": 324 + }, + "position": { + "#": 351 + }, + "force": { + "#": 352 + }, + "torque": 0, + "positionImpulse": { + "#": 353 + }, + "constraintImpulse": { + "#": 354 + }, + "totalContacts": 0, + "speed": 0.33531, + "angularSpeed": 0, + "velocity": { + "#": 355 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 356 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 357 + }, + "inertia": 99999, + "circleRadius": 30, + "bounds": { + "#": 359 + }, + "positionPrev": { + "#": 362 + }, + "anglePrev": 0, + "axes": { + "#": 363 + }, + "area": 2799.98416, + "mass": 2.79998, + "inverseMass": 0.35714, + "inverseInertia": 0.00001, + "parent": { + "#": 322 + }, + "sleepCounter": 0, + "region": { + "#": 377 + } + }, + [ + { + "#": 322 + } + ], + [ + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + } + ], + { + "x": 542.93997, + "y": 303.67524, + "index": 0, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 541.20897, + "y": 310.69724, + "index": 1, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 537.84897, + "y": 317.10124, + "index": 2, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 533.05297, + "y": 322.51424, + "index": 3, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 527.10097, + "y": 326.62324, + "index": 4, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 520.33797, + "y": 329.18724, + "index": 5, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 513.15897, + "y": 330.05924, + "index": 6, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 505.97997, + "y": 329.18724, + "index": 7, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 499.21697, + "y": 326.62324, + "index": 8, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 493.26497, + "y": 322.51424, + "index": 9, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 488.46897, + "y": 317.10124, + "index": 10, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 485.10897, + "y": 310.69724, + "index": 11, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 483.37797, + "y": 303.67524, + "index": 12, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 483.37797, + "y": 296.44324, + "index": 13, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 485.10897, + "y": 289.42124, + "index": 14, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 488.46897, + "y": 283.01724, + "index": 15, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 493.26497, + "y": 277.60424, + "index": 16, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 499.21697, + "y": 273.49524, + "index": 17, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 505.97997, + "y": 270.93124, + "index": 18, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 513.15897, + "y": 270.05924, + "index": 19, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 520.33797, + "y": 270.93124, + "index": 20, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 527.10097, + "y": 273.49524, + "index": 21, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 533.05297, + "y": 277.60424, + "index": 22, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 537.84897, + "y": 283.01724, + "index": 23, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 541.20897, + "y": 289.42124, + "index": 24, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 542.93997, + "y": 296.44324, + "index": 25, + "body": { + "#": 322 + }, + "isInternal": false + }, + { + "x": 513.15897, + "y": 300.05924 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.07143, + "y": 0.07754 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 358 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 360 + }, + "max": { + "#": 361 + } + }, + { + "x": 483.37797, + "y": 270.05924 + }, + { + "x": 542.93997, + "y": 330.05924 + }, + { + "x": 513.23364, + "y": 300.1074 + }, + [ + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + } + ], + { + "x": -0.97093, + "y": -0.23935 + }, + { + "x": -0.88552, + "y": -0.46461 + }, + { + "x": -0.74848, + "y": -0.66316 + }, + { + "x": -0.56812, + "y": -0.82294 + }, + { + "x": -0.3545, + "y": -0.93506 + }, + { + "x": -0.12058, + "y": -0.9927 + }, + { + "x": 0.12058, + "y": -0.9927 + }, + { + "x": 0.3545, + "y": -0.93506 + }, + { + "x": 0.56812, + "y": -0.82294 + }, + { + "x": 0.74848, + "y": -0.66316 + }, + { + "x": 0.88552, + "y": -0.46461 + }, + { + "x": 0.97093, + "y": -0.23935 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,5,6", + "startCol": 10, + "endCol": 11, + "startRow": 5, + "endRow": 6 + }, + [ + { + "#": 379 + }, + { + "#": 383 + }, + { + "#": 387 + }, + { + "#": 391 + }, + { + "#": 395 + } + ], + { + "pointA": { + "#": 380 + }, + "bodyB": { + "#": 98 + }, + "pointB": { + "#": 381 + }, + "length": 200, + "render": { + "#": 382 + }, + "id": 6, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 280, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "pointA": { + "#": 384 + }, + "bodyB": { + "#": 154 + }, + "pointB": { + "#": 385 + }, + "length": 200, + "render": { + "#": 386 + }, + "id": 8, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 337, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "pointA": { + "#": 388 + }, + "bodyB": { + "#": 210 + }, + "pointB": { + "#": 389 + }, + "length": 200, + "render": { + "#": 390 + }, + "id": 10, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 394, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "pointA": { + "#": 392 + }, + "bodyB": { + "#": 266 + }, + "pointB": { + "#": 393 + }, + "length": 200, + "render": { + "#": 394 + }, + "id": 12, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 451, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "pointA": { + "#": 396 + }, + "bodyB": { + "#": 322 + }, + "pointB": { + "#": 397 + }, + "length": 200, + "render": { + "#": 398 + }, + "id": 14, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 508, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "id": 15, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 401 + }, + "constraints": { + "#": 731 + }, + "composites": { + "#": 760 + }, + "label": "Newtons Cradle" + }, + [ + { + "#": 402 + }, + { + "#": 449 + }, + { + "#": 496 + }, + { + "#": 543 + }, + { + "#": 590 + }, + { + "#": 637 + }, + { + "#": 684 + } + ], + { + "id": 16, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 403 + }, + "angle": 0, + "vertices": { + "#": 404 + }, + "position": { + "#": 425 + }, + "force": { + "#": 426 + }, + "torque": 0, + "positionImpulse": { + "#": 427 + }, + "constraintImpulse": { + "#": 428 + }, + "totalContacts": 0, + "speed": 2.91237, + "angularSpeed": 0, + "velocity": { + "#": 429 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 430 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 431 + }, + "inertia": 99999, + "circleRadius": 20, + "bounds": { + "#": 433 + }, + "positionPrev": { + "#": 436 + }, + "anglePrev": 0, + "axes": { + "#": 437 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inverseInertia": 0.00001, + "parent": { + "#": 402 + }, + "sleepCounter": 0, + "region": { + "#": 448 + } + }, + [ + { + "#": 402 + } + ], + [ + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + } + ], + { + "x": 170.97479, + "y": 438.24467, + "index": 0, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 169.04079, + "y": 444.19567, + "index": 1, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 165.36279, + "y": 449.25767, + "index": 2, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 160.30079, + "y": 452.93567, + "index": 3, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 154.34979, + "y": 454.86967, + "index": 4, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 148.09179, + "y": 454.86967, + "index": 5, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 142.14079, + "y": 452.93567, + "index": 6, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 137.07879, + "y": 449.25767, + "index": 7, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 133.40079, + "y": 444.19567, + "index": 8, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 131.46679, + "y": 438.24467, + "index": 9, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 131.46679, + "y": 431.98667, + "index": 10, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 133.40079, + "y": 426.03567, + "index": 11, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 137.07879, + "y": 420.97367, + "index": 12, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 142.14079, + "y": 417.29567, + "index": 13, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 148.09179, + "y": 415.36167, + "index": 14, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 154.34979, + "y": 415.36167, + "index": 15, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 160.30079, + "y": 417.29567, + "index": 16, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 165.36279, + "y": 420.97367, + "index": 17, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 169.04079, + "y": 426.03567, + "index": 18, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 170.97479, + "y": 431.98667, + "index": 19, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 151.22079, + "y": 435.11567 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 1.09889, + "y": 2.68981 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 432 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 434 + }, + "max": { + "#": 435 + } + }, + { + "x": 131.46679, + "y": 415.36167 + }, + { + "x": 170.97479, + "y": 454.86967 + }, + { + "x": 150.05028, + "y": 432.45652 + }, + [ + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,3,8,9", + "startCol": 2, + "endCol": 3, + "startRow": 8, + "endRow": 9 + }, + { + "id": 18, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 450 + }, + "angle": 0, + "vertices": { + "#": 451 + }, + "position": { + "#": 472 + }, + "force": { + "#": 473 + }, + "torque": 0, + "positionImpulse": { + "#": 474 + }, + "constraintImpulse": { + "#": 475 + }, + "totalContacts": 0, + "speed": 0.27743, + "angularSpeed": 0, + "velocity": { + "#": 476 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 477 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 478 + }, + "inertia": 99999, + "circleRadius": 20, + "bounds": { + "#": 480 + }, + "positionPrev": { + "#": 483 + }, + "anglePrev": 0, + "axes": { + "#": 484 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inverseInertia": 0.00001, + "parent": { + "#": 449 + }, + "sleepCounter": 0, + "region": { + "#": 495 + } + }, + [ + { + "#": 449 + } + ], + [ + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + } + ], + { + "x": 333.9703, + "y": 523.1705, + "index": 0, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 332.03629, + "y": 529.12149, + "index": 1, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 328.35829, + "y": 534.18349, + "index": 2, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 323.29629, + "y": 537.86149, + "index": 3, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 317.34529, + "y": 539.79549, + "index": 4, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 311.08729, + "y": 539.79548, + "index": 5, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 305.13629, + "y": 537.86148, + "index": 6, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 300.07429, + "y": 534.18348, + "index": 7, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 296.39629, + "y": 529.12148, + "index": 8, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 294.4623, + "y": 523.17047, + "index": 9, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 294.4623, + "y": 516.91247, + "index": 10, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 296.3963, + "y": 510.96148, + "index": 11, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 300.07431, + "y": 505.89948, + "index": 12, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 305.13631, + "y": 502.22148, + "index": 13, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 311.08731, + "y": 500.28748, + "index": 14, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 317.34531, + "y": 500.28749, + "index": 15, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 323.29631, + "y": 502.22149, + "index": 16, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 328.35831, + "y": 505.89949, + "index": 17, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 332.0363, + "y": 510.96149, + "index": 18, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 333.9703, + "y": 516.9125, + "index": 19, + "body": { + "#": 449 + }, + "isInternal": false + }, + { + "x": 314.2163, + "y": 520.04149 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00486, + "y": -0.00004 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 479 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 481 + }, + "max": { + "#": 482 + } + }, + { + "x": 294.4623, + "y": 500.28748 + }, + { + "x": 333.97267, + "y": 539.88793 + }, + { + "x": 314.21687, + "y": 520.04153 + }, + [ + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30907, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30907 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,6,10,11", + "startCol": 6, + "endCol": 6, + "startRow": 10, + "endRow": 11 + }, + { + "id": 20, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 497 + }, + "angle": 0, + "vertices": { + "#": 498 + }, + "position": { + "#": 519 + }, + "force": { + "#": 520 + }, + "torque": 0, + "positionImpulse": { + "#": 521 + }, + "constraintImpulse": { + "#": 522 + }, + "totalContacts": 0, + "speed": 0.27753, + "angularSpeed": 0, + "velocity": { + "#": 523 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 524 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 525 + }, + "inertia": 99999, + "circleRadius": 20, + "bounds": { + "#": 527 + }, + "positionPrev": { + "#": 530 + }, + "anglePrev": 0, + "axes": { + "#": 531 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inverseInertia": 0.00001, + "parent": { + "#": 496 + }, + "sleepCounter": 0, + "region": { + "#": 542 + } + }, + [ + { + "#": 496 + } + ], + [ + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + } + ], + { + "x": 373.46767, + "y": 523.20289, + "index": 0, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 371.53368, + "y": 529.15389, + "index": 1, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 367.85568, + "y": 534.21589, + "index": 2, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 362.79368, + "y": 537.89389, + "index": 3, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 356.84268, + "y": 539.82789, + "index": 4, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 350.58468, + "y": 539.8279, + "index": 5, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 344.63368, + "y": 537.8939, + "index": 6, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 339.57168, + "y": 534.2159, + "index": 7, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 335.89368, + "y": 529.1539, + "index": 8, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 333.95967, + "y": 523.2029, + "index": 9, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 333.95967, + "y": 516.9449, + "index": 10, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 335.89367, + "y": 510.9939, + "index": 11, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 339.57167, + "y": 505.9319, + "index": 12, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 344.63367, + "y": 502.2539, + "index": 13, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 350.58467, + "y": 500.3199, + "index": 14, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 356.84267, + "y": 500.31989, + "index": 15, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 362.79367, + "y": 502.25389, + "index": 16, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 367.85567, + "y": 505.93189, + "index": 17, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 371.53367, + "y": 510.99389, + "index": 18, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 373.46767, + "y": 516.94489, + "index": 19, + "body": { + "#": 496 + }, + "isInternal": false + }, + { + "x": 353.71367, + "y": 520.07389 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00486, + "y": 0.00007 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 526 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 528 + }, + "max": { + "#": 529 + } + }, + { + "x": 333.95967, + "y": 500.31989 + }, + { + "x": 373.47106, + "y": 539.92045 + }, + { + "x": 353.71717, + "y": 520.07383 + }, + [ + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + } + ], + { + "x": -0.95104, + "y": -0.30907 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30907, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,10,11", + "startCol": 6, + "endCol": 7, + "startRow": 10, + "endRow": 11 + }, + { + "id": 22, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 544 + }, + "angle": 0, + "vertices": { + "#": 545 + }, + "position": { + "#": 566 + }, + "force": { + "#": 567 + }, + "torque": 0, + "positionImpulse": { + "#": 568 + }, + "constraintImpulse": { + "#": 569 + }, + "totalContacts": 0, + "speed": 0.27759, + "angularSpeed": 0, + "velocity": { + "#": 570 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 571 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 572 + }, + "inertia": 99999, + "circleRadius": 20, + "bounds": { + "#": 574 + }, + "positionPrev": { + "#": 577 + }, + "anglePrev": 0, + "axes": { + "#": 578 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inverseInertia": 0.00001, + "parent": { + "#": 543 + }, + "sleepCounter": 0, + "region": { + "#": 589 + } + }, + [ + { + "#": 543 + } + ], + [ + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + } + ], + { + "x": 412.96389, + "y": 523.2193, + "index": 0, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 411.02989, + "y": 529.1703, + "index": 1, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 407.35189, + "y": 534.2323, + "index": 2, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 402.28989, + "y": 537.9103, + "index": 3, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 396.33889, + "y": 539.8443, + "index": 4, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 390.08089, + "y": 539.8443, + "index": 5, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 384.12989, + "y": 537.9103, + "index": 6, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 379.06789, + "y": 534.2323, + "index": 7, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 375.38989, + "y": 529.1703, + "index": 8, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 373.45589, + "y": 523.2193, + "index": 9, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 373.45589, + "y": 516.9613, + "index": 10, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 375.38989, + "y": 511.0103, + "index": 11, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 379.06789, + "y": 505.9483, + "index": 12, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 384.12989, + "y": 502.2703, + "index": 13, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 390.08089, + "y": 500.3363, + "index": 14, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 396.33889, + "y": 500.3363, + "index": 15, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 402.28989, + "y": 502.2703, + "index": 16, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 407.35189, + "y": 505.9483, + "index": 17, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 411.02989, + "y": 511.0103, + "index": 18, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 412.96389, + "y": 516.9613, + "index": 19, + "body": { + "#": 543 + }, + "isInternal": false + }, + { + "x": 393.20989, + "y": 520.0903 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00486, + "y": -0.00004 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 573 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 575 + }, + "max": { + "#": 576 + } + }, + { + "x": 373.45479, + "y": 500.3363 + }, + { + "x": 412.96389, + "y": 539.9368 + }, + { + "x": 393.20697, + "y": 520.09034 + }, + [ + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,10,11", + "startCol": 7, + "endCol": 8, + "startRow": 10, + "endRow": 11 + }, + { + "id": 24, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 591 + }, + "angle": 0, + "vertices": { + "#": 592 + }, + "position": { + "#": 613 + }, + "force": { + "#": 614 + }, + "torque": 0, + "positionImpulse": { + "#": 615 + }, + "constraintImpulse": { + "#": 616 + }, + "totalContacts": 0, + "speed": 0.27757, + "angularSpeed": 0, + "velocity": { + "#": 617 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 618 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 619 + }, + "inertia": 99999, + "circleRadius": 20, + "bounds": { + "#": 621 + }, + "positionPrev": { + "#": 624 + }, + "anglePrev": 0, + "axes": { + "#": 625 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inverseInertia": 0.00001, + "parent": { + "#": 590 + }, + "sleepCounter": 0, + "region": { + "#": 636 + } + }, + [ + { + "#": 590 + } + ], + [ + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + } + ], + { + "x": 452.45933, + "y": 523.21971, + "index": 0, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 450.52533, + "y": 529.17071, + "index": 1, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 446.84733, + "y": 534.23271, + "index": 2, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 441.78533, + "y": 537.91071, + "index": 3, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 435.83433, + "y": 539.84471, + "index": 4, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 429.57633, + "y": 539.84471, + "index": 5, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 423.62533, + "y": 537.91071, + "index": 6, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 418.56333, + "y": 534.23271, + "index": 7, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 414.88533, + "y": 529.17071, + "index": 8, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 412.95133, + "y": 523.21971, + "index": 9, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 412.95133, + "y": 516.96171, + "index": 10, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 414.88533, + "y": 511.01071, + "index": 11, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 418.56333, + "y": 505.94871, + "index": 12, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 423.62533, + "y": 502.27071, + "index": 13, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 429.57633, + "y": 500.33671, + "index": 14, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 435.83433, + "y": 500.33671, + "index": 15, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 441.78533, + "y": 502.27071, + "index": 16, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 446.84733, + "y": 505.94871, + "index": 17, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 450.52533, + "y": 511.01071, + "index": 18, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 452.45933, + "y": 516.96171, + "index": 19, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 432.70533, + "y": 520.09071 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00486, + "y": -0.00002 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 620 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 622 + }, + "max": { + "#": 623 + } + }, + { + "x": 412.95133, + "y": 500.33671 + }, + { + "x": 452.46436, + "y": 539.9372 + }, + { + "x": 432.71054, + "y": 520.09073 + }, + [ + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,10,11", + "startCol": 8, + "endCol": 9, + "startRow": 10, + "endRow": 11 + }, + { + "id": 26, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 638 + }, + "angle": 0, + "vertices": { + "#": 639 + }, + "position": { + "#": 660 + }, + "force": { + "#": 661 + }, + "torque": 0, + "positionImpulse": { + "#": 662 + }, + "constraintImpulse": { + "#": 663 + }, + "totalContacts": 0, + "speed": 0.27755, + "angularSpeed": 0, + "velocity": { + "#": 664 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 665 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 666 + }, + "inertia": 99999, + "circleRadius": 20, + "bounds": { + "#": 668 + }, + "positionPrev": { + "#": 671 + }, + "anglePrev": 0, + "axes": { + "#": 672 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inverseInertia": 0.00001, + "parent": { + "#": 637 + }, + "sleepCounter": 0, + "region": { + "#": 683 + } + }, + [ + { + "#": 637 + } + ], + [ + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + } + ], + { + "x": 491.95489, + "y": 523.20424, + "index": 0, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 490.02089, + "y": 529.15524, + "index": 1, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 486.34289, + "y": 534.21724, + "index": 2, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 481.28089, + "y": 537.89524, + "index": 3, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 475.32989, + "y": 539.82924, + "index": 4, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 469.07189, + "y": 539.82924, + "index": 5, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 463.12089, + "y": 537.89524, + "index": 6, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 458.05889, + "y": 534.21724, + "index": 7, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 454.38089, + "y": 529.15524, + "index": 8, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 452.44689, + "y": 523.20424, + "index": 9, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 452.44689, + "y": 516.94624, + "index": 10, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 454.38089, + "y": 510.99524, + "index": 11, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 458.05889, + "y": 505.93324, + "index": 12, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 463.12089, + "y": 502.25524, + "index": 13, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 469.07189, + "y": 500.32124, + "index": 14, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 475.32989, + "y": 500.32124, + "index": 15, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 481.28089, + "y": 502.25524, + "index": 16, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 486.34289, + "y": 505.93324, + "index": 17, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 490.02089, + "y": 510.99524, + "index": 18, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 491.95489, + "y": 516.94624, + "index": 19, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 472.20089, + "y": 520.07524 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00016, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00486, + "y": -0.00004 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 667 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 669 + }, + "max": { + "#": 670 + } + }, + { + "x": 452.44689, + "y": 500.32124 + }, + { + "x": 491.95689, + "y": 539.92172 + }, + { + "x": 472.196, + "y": 520.07528 + }, + [ + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,10,11", + "startCol": 9, + "endCol": 10, + "startRow": 10, + "endRow": 11 + }, + { + "id": 28, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 685 + }, + "angle": 0, + "vertices": { + "#": 686 + }, + "position": { + "#": 707 + }, + "force": { + "#": 708 + }, + "torque": 0, + "positionImpulse": { + "#": 709 + }, + "constraintImpulse": { + "#": 710 + }, + "totalContacts": 0, + "speed": 0.27764, + "angularSpeed": 0, + "velocity": { + "#": 711 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 1, + "friction": 0, + "frictionStatic": 0.5, + "frictionAir": 0.0001, + "collisionFilter": { + "#": 712 + }, + "slop": 0.01, + "timeScale": 1, + "render": { + "#": 713 + }, + "inertia": 99999, + "circleRadius": 20, + "bounds": { + "#": 715 + }, + "positionPrev": { + "#": 718 + }, + "anglePrev": 0, + "axes": { + "#": 719 + }, + "area": 1236.07554, + "mass": 1.23608, + "inverseMass": 0.80901, + "inverseInertia": 0.00001, + "parent": { + "#": 684 + }, + "sleepCounter": 0, + "region": { + "#": 730 + } + }, + [ + { + "#": 684 + } + ], + [ + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + } + ], + { + "x": 531.45186, + "y": 523.17306, + "index": 0, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 529.51786, + "y": 529.12406, + "index": 1, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 525.83986, + "y": 534.18606, + "index": 2, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 520.77786, + "y": 537.86406, + "index": 3, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 514.82686, + "y": 539.79806, + "index": 4, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 508.56886, + "y": 539.79806, + "index": 5, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 502.61786, + "y": 537.86406, + "index": 6, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 497.55586, + "y": 534.18606, + "index": 7, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 493.87786, + "y": 529.12406, + "index": 8, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 491.94386, + "y": 523.17306, + "index": 9, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 491.94386, + "y": 516.91506, + "index": 10, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 493.87786, + "y": 510.96406, + "index": 11, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 497.55586, + "y": 505.90206, + "index": 12, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 502.61786, + "y": 502.22406, + "index": 13, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 508.56886, + "y": 500.29006, + "index": 14, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 514.82686, + "y": 500.29006, + "index": 15, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 520.77786, + "y": 502.22406, + "index": 16, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 525.83986, + "y": 505.90206, + "index": 17, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 529.51786, + "y": 510.96406, + "index": 18, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 531.45186, + "y": 516.91506, + "index": 19, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 511.69786, + "y": 520.04406 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00489, + "y": 0.00006 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 714 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 716 + }, + "max": { + "#": 717 + } + }, + { + "x": 491.93539, + "y": 500.29006 + }, + { + "x": 531.45186, + "y": 539.89064 + }, + { + "x": 511.693, + "y": 520.04399 + }, + [ + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + }, + { + "#": 729 + } + ], + { + "x": -0.95104, + "y": -0.30908 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,10,11", + "startCol": 10, + "endCol": 11, + "startRow": 10, + "endRow": 11 + }, + [ + { + "#": 732 + }, + { + "#": 736 + }, + { + "#": 740 + }, + { + "#": 744 + }, + { + "#": 748 + }, + { + "#": 752 + }, + { + "#": 756 + } + ], + { + "pointA": { + "#": 733 + }, + "bodyB": { + "#": 402 + }, + "pointB": { + "#": 734 + }, + "length": 140, + "render": { + "#": 735 + }, + "id": 17, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 280, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "pointA": { + "#": 737 + }, + "bodyB": { + "#": 449 + }, + "pointB": { + "#": 738 + }, + "length": 140, + "render": { + "#": 739 + }, + "id": 19, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 318, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "pointA": { + "#": 741 + }, + "bodyB": { + "#": 496 + }, + "pointB": { + "#": 742 + }, + "length": 140, + "render": { + "#": 743 + }, + "id": 21, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 356, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "pointA": { + "#": 745 + }, + "bodyB": { + "#": 543 + }, + "pointB": { + "#": 746 + }, + "length": 140, + "render": { + "#": 747 + }, + "id": 23, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 394, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "pointA": { + "#": 749 + }, + "bodyB": { + "#": 590 + }, + "pointB": { + "#": 750 + }, + "length": 140, + "render": { + "#": 751 + }, + "id": 25, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 432, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "pointA": { + "#": 753 + }, + "bodyB": { + "#": 637 + }, + "pointB": { + "#": 754 + }, + "length": 140, + "render": { + "#": 755 + }, + "id": 27, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 470, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "pointA": { + "#": 757 + }, + "bodyB": { + "#": 684 + }, + "pointB": { + "#": 758 + }, + "length": 140, + "render": { + "#": 759 + }, + "id": 29, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 508, + "y": 380 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 763 + }, + "max": { + "#": 764 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/pyramid/pyramid-0.json b/test/node/refs/pyramid/pyramid-0.json new file mode 100644 index 00000000..4256ced4 --- /dev/null +++ b/test/node/refs/pyramid/pyramid-0.json @@ -0,0 +1,13822 @@ +[ + { + "id": 49, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 90 + }, + "composites": { + "#": 91 + }, + "label": "World", + "gravity": { + "#": 1504 + }, + "bounds": { + "#": 1505 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [ + { + "#": 92 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 93 + }, + "constraints": { + "#": 1502 + }, + "composites": { + "#": 1503 + }, + "label": "Stack" + }, + [ + { + "#": 94 + }, + { + "#": 116 + }, + { + "#": 138 + }, + { + "#": 160 + }, + { + "#": 182 + }, + { + "#": 204 + }, + { + "#": 226 + }, + { + "#": 248 + }, + { + "#": 270 + }, + { + "#": 292 + }, + { + "#": 314 + }, + { + "#": 336 + }, + { + "#": 358 + }, + { + "#": 380 + }, + { + "#": 402 + }, + { + "#": 424 + }, + { + "#": 446 + }, + { + "#": 468 + }, + { + "#": 490 + }, + { + "#": 512 + }, + { + "#": 534 + }, + { + "#": 556 + }, + { + "#": 578 + }, + { + "#": 600 + }, + { + "#": 622 + }, + { + "#": 644 + }, + { + "#": 666 + }, + { + "#": 688 + }, + { + "#": 710 + }, + { + "#": 732 + }, + { + "#": 754 + }, + { + "#": 776 + }, + { + "#": 798 + }, + { + "#": 820 + }, + { + "#": 842 + }, + { + "#": 864 + }, + { + "#": 886 + }, + { + "#": 908 + }, + { + "#": 930 + }, + { + "#": 952 + }, + { + "#": 974 + }, + { + "#": 996 + }, + { + "#": 1018 + }, + { + "#": 1040 + }, + { + "#": 1062 + }, + { + "#": 1084 + }, + { + "#": 1106 + }, + { + "#": 1128 + }, + { + "#": 1150 + }, + { + "#": 1172 + }, + { + "#": 1194 + }, + { + "#": 1216 + }, + { + "#": 1238 + }, + { + "#": 1260 + }, + { + "#": 1282 + }, + { + "#": 1304 + }, + { + "#": 1326 + }, + { + "#": 1348 + }, + { + "#": 1370 + }, + { + "#": 1392 + }, + { + "#": 1414 + }, + { + "#": 1436 + }, + { + "#": 1458 + }, + { + "#": 1480 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 96 + }, + "position": { + "#": 101 + }, + "force": { + "#": 102 + }, + "torque": 0, + "positionImpulse": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 105 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 106 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 107 + }, + "bounds": { + "#": 109 + }, + "positionPrev": { + "#": 112 + }, + "anglePrev": 0, + "axes": { + "#": 113 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 94 + }, + "sleepCounter": 0 + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + } + ], + { + "x": 380, + "y": 258, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 420, + "y": 258, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 420, + "y": 298, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 380, + "y": 298, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 400, + "y": 278 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 108 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 110 + }, + "max": { + "#": 111 + } + }, + { + "x": 380, + "y": 258 + }, + { + "x": 420, + "y": 298 + }, + { + "x": 400, + "y": 278 + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 117 + }, + "angle": 0, + "vertices": { + "#": 118 + }, + "position": { + "#": 123 + }, + "force": { + "#": 124 + }, + "torque": 0, + "positionImpulse": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 127 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 128 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 129 + }, + "bounds": { + "#": 131 + }, + "positionPrev": { + "#": 134 + }, + "anglePrev": 0, + "axes": { + "#": 135 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 116 + }, + "sleepCounter": 0 + }, + [ + { + "#": 116 + } + ], + [ + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + } + ], + { + "x": 340, + "y": 298, + "index": 0, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 380, + "y": 298, + "index": 1, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 380, + "y": 338, + "index": 2, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 340, + "y": 338, + "index": 3, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 360, + "y": 318 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 130 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 132 + }, + "max": { + "#": 133 + } + }, + { + "x": 340, + "y": 298 + }, + { + "x": 380, + "y": 338 + }, + { + "x": 360, + "y": 318 + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 139 + }, + "angle": 0, + "vertices": { + "#": 140 + }, + "position": { + "#": 145 + }, + "force": { + "#": 146 + }, + "torque": 0, + "positionImpulse": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 149 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 150 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 151 + }, + "bounds": { + "#": 153 + }, + "positionPrev": { + "#": 156 + }, + "anglePrev": 0, + "axes": { + "#": 157 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 138 + }, + "sleepCounter": 0 + }, + [ + { + "#": 138 + } + ], + [ + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + } + ], + { + "x": 380, + "y": 298, + "index": 0, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 420, + "y": 298, + "index": 1, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 420, + "y": 338, + "index": 2, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 380, + "y": 338, + "index": 3, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 400, + "y": 318 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 152 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 154 + }, + "max": { + "#": 155 + } + }, + { + "x": 380, + "y": 298 + }, + { + "x": 420, + "y": 338 + }, + { + "x": 400, + "y": 318 + }, + [ + { + "#": 158 + }, + { + "#": 159 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 161 + }, + "angle": 0, + "vertices": { + "#": 162 + }, + "position": { + "#": 167 + }, + "force": { + "#": 168 + }, + "torque": 0, + "positionImpulse": { + "#": 169 + }, + "constraintImpulse": { + "#": 170 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 171 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 172 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 173 + }, + "bounds": { + "#": 175 + }, + "positionPrev": { + "#": 178 + }, + "anglePrev": 0, + "axes": { + "#": 179 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 160 + }, + "sleepCounter": 0 + }, + [ + { + "#": 160 + } + ], + [ + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + } + ], + { + "x": 420, + "y": 298, + "index": 0, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 460, + "y": 298, + "index": 1, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 460, + "y": 338, + "index": 2, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 420, + "y": 338, + "index": 3, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 440, + "y": 318 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 174 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 176 + }, + "max": { + "#": 177 + } + }, + { + "x": 420, + "y": 298 + }, + { + "x": 460, + "y": 338 + }, + { + "x": 440, + "y": 318 + }, + [ + { + "#": 180 + }, + { + "#": 181 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 183 + }, + "angle": 0, + "vertices": { + "#": 184 + }, + "position": { + "#": 189 + }, + "force": { + "#": 190 + }, + "torque": 0, + "positionImpulse": { + "#": 191 + }, + "constraintImpulse": { + "#": 192 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 193 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 194 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 195 + }, + "bounds": { + "#": 197 + }, + "positionPrev": { + "#": 200 + }, + "anglePrev": 0, + "axes": { + "#": 201 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 182 + }, + "sleepCounter": 0 + }, + [ + { + "#": 182 + } + ], + [ + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + } + ], + { + "x": 300, + "y": 338, + "index": 0, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 340, + "y": 338, + "index": 1, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 340, + "y": 378, + "index": 2, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 300, + "y": 378, + "index": 3, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 320, + "y": 358 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 196 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 198 + }, + "max": { + "#": 199 + } + }, + { + "x": 300, + "y": 338 + }, + { + "x": 340, + "y": 378 + }, + { + "x": 320, + "y": 358 + }, + [ + { + "#": 202 + }, + { + "#": 203 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 205 + }, + "angle": 0, + "vertices": { + "#": 206 + }, + "position": { + "#": 211 + }, + "force": { + "#": 212 + }, + "torque": 0, + "positionImpulse": { + "#": 213 + }, + "constraintImpulse": { + "#": 214 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 215 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 216 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 217 + }, + "bounds": { + "#": 219 + }, + "positionPrev": { + "#": 222 + }, + "anglePrev": 0, + "axes": { + "#": 223 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 204 + }, + "sleepCounter": 0 + }, + [ + { + "#": 204 + } + ], + [ + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + } + ], + { + "x": 340, + "y": 338, + "index": 0, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 380, + "y": 338, + "index": 1, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 380, + "y": 378, + "index": 2, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 340, + "y": 378, + "index": 3, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 360, + "y": 358 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 218 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 220 + }, + "max": { + "#": 221 + } + }, + { + "x": 340, + "y": 338 + }, + { + "x": 380, + "y": 378 + }, + { + "x": 360, + "y": 358 + }, + [ + { + "#": 224 + }, + { + "#": 225 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 227 + }, + "angle": 0, + "vertices": { + "#": 228 + }, + "position": { + "#": 233 + }, + "force": { + "#": 234 + }, + "torque": 0, + "positionImpulse": { + "#": 235 + }, + "constraintImpulse": { + "#": 236 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 237 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 238 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 239 + }, + "bounds": { + "#": 241 + }, + "positionPrev": { + "#": 244 + }, + "anglePrev": 0, + "axes": { + "#": 245 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 226 + }, + "sleepCounter": 0 + }, + [ + { + "#": 226 + } + ], + [ + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + } + ], + { + "x": 380, + "y": 338, + "index": 0, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 420, + "y": 338, + "index": 1, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 420, + "y": 378, + "index": 2, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 380, + "y": 378, + "index": 3, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 400, + "y": 358 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 240 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 242 + }, + "max": { + "#": 243 + } + }, + { + "x": 380, + "y": 338 + }, + { + "x": 420, + "y": 378 + }, + { + "x": 400, + "y": 358 + }, + [ + { + "#": 246 + }, + { + "#": 247 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 249 + }, + "angle": 0, + "vertices": { + "#": 250 + }, + "position": { + "#": 255 + }, + "force": { + "#": 256 + }, + "torque": 0, + "positionImpulse": { + "#": 257 + }, + "constraintImpulse": { + "#": 258 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 259 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 260 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 261 + }, + "bounds": { + "#": 263 + }, + "positionPrev": { + "#": 266 + }, + "anglePrev": 0, + "axes": { + "#": 267 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 248 + }, + "sleepCounter": 0 + }, + [ + { + "#": 248 + } + ], + [ + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + } + ], + { + "x": 420, + "y": 338, + "index": 0, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 460, + "y": 338, + "index": 1, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 460, + "y": 378, + "index": 2, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 420, + "y": 378, + "index": 3, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 440, + "y": 358 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 262 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 264 + }, + "max": { + "#": 265 + } + }, + { + "x": 420, + "y": 338 + }, + { + "x": 460, + "y": 378 + }, + { + "x": 440, + "y": 358 + }, + [ + { + "#": 268 + }, + { + "#": 269 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 271 + }, + "angle": 0, + "vertices": { + "#": 272 + }, + "position": { + "#": 277 + }, + "force": { + "#": 278 + }, + "torque": 0, + "positionImpulse": { + "#": 279 + }, + "constraintImpulse": { + "#": 280 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 281 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 282 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 283 + }, + "bounds": { + "#": 285 + }, + "positionPrev": { + "#": 288 + }, + "anglePrev": 0, + "axes": { + "#": 289 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 270 + }, + "sleepCounter": 0 + }, + [ + { + "#": 270 + } + ], + [ + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + } + ], + { + "x": 460, + "y": 338, + "index": 0, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 500, + "y": 338, + "index": 1, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 500, + "y": 378, + "index": 2, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 460, + "y": 378, + "index": 3, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 480, + "y": 358 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 284 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 286 + }, + "max": { + "#": 287 + } + }, + { + "x": 460, + "y": 338 + }, + { + "x": 500, + "y": 378 + }, + { + "x": 480, + "y": 358 + }, + [ + { + "#": 290 + }, + { + "#": 291 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 293 + }, + "angle": 0, + "vertices": { + "#": 294 + }, + "position": { + "#": 299 + }, + "force": { + "#": 300 + }, + "torque": 0, + "positionImpulse": { + "#": 301 + }, + "constraintImpulse": { + "#": 302 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 303 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 304 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 305 + }, + "bounds": { + "#": 307 + }, + "positionPrev": { + "#": 310 + }, + "anglePrev": 0, + "axes": { + "#": 311 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 292 + }, + "sleepCounter": 0 + }, + [ + { + "#": 292 + } + ], + [ + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + } + ], + { + "x": 260, + "y": 378, + "index": 0, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 300, + "y": 378, + "index": 1, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 300, + "y": 418, + "index": 2, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 260, + "y": 418, + "index": 3, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 280, + "y": 398 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 306 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 308 + }, + "max": { + "#": 309 + } + }, + { + "x": 260, + "y": 378 + }, + { + "x": 300, + "y": 418 + }, + { + "x": 280, + "y": 398 + }, + [ + { + "#": 312 + }, + { + "#": 313 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 15, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 315 + }, + "angle": 0, + "vertices": { + "#": 316 + }, + "position": { + "#": 321 + }, + "force": { + "#": 322 + }, + "torque": 0, + "positionImpulse": { + "#": 323 + }, + "constraintImpulse": { + "#": 324 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 325 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 326 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 327 + }, + "bounds": { + "#": 329 + }, + "positionPrev": { + "#": 332 + }, + "anglePrev": 0, + "axes": { + "#": 333 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 314 + }, + "sleepCounter": 0 + }, + [ + { + "#": 314 + } + ], + [ + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + } + ], + { + "x": 300, + "y": 378, + "index": 0, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 340, + "y": 378, + "index": 1, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 340, + "y": 418, + "index": 2, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 300, + "y": 418, + "index": 3, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 320, + "y": 398 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 328 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 330 + }, + "max": { + "#": 331 + } + }, + { + "x": 300, + "y": 378 + }, + { + "x": 340, + "y": 418 + }, + { + "x": 320, + "y": 398 + }, + [ + { + "#": 334 + }, + { + "#": 335 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 16, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 337 + }, + "angle": 0, + "vertices": { + "#": 338 + }, + "position": { + "#": 343 + }, + "force": { + "#": 344 + }, + "torque": 0, + "positionImpulse": { + "#": 345 + }, + "constraintImpulse": { + "#": 346 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 347 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 348 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 349 + }, + "bounds": { + "#": 351 + }, + "positionPrev": { + "#": 354 + }, + "anglePrev": 0, + "axes": { + "#": 355 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 336 + }, + "sleepCounter": 0 + }, + [ + { + "#": 336 + } + ], + [ + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + } + ], + { + "x": 340, + "y": 378, + "index": 0, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 380, + "y": 378, + "index": 1, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 380, + "y": 418, + "index": 2, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 340, + "y": 418, + "index": 3, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 360, + "y": 398 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 350 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 352 + }, + "max": { + "#": 353 + } + }, + { + "x": 340, + "y": 378 + }, + { + "x": 380, + "y": 418 + }, + { + "x": 360, + "y": 398 + }, + [ + { + "#": 356 + }, + { + "#": 357 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 17, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 359 + }, + "angle": 0, + "vertices": { + "#": 360 + }, + "position": { + "#": 365 + }, + "force": { + "#": 366 + }, + "torque": 0, + "positionImpulse": { + "#": 367 + }, + "constraintImpulse": { + "#": 368 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 369 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 370 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 371 + }, + "bounds": { + "#": 373 + }, + "positionPrev": { + "#": 376 + }, + "anglePrev": 0, + "axes": { + "#": 377 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 358 + }, + "sleepCounter": 0 + }, + [ + { + "#": 358 + } + ], + [ + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + } + ], + { + "x": 380, + "y": 378, + "index": 0, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 420, + "y": 378, + "index": 1, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 420, + "y": 418, + "index": 2, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 380, + "y": 418, + "index": 3, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 400, + "y": 398 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 372 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 374 + }, + "max": { + "#": 375 + } + }, + { + "x": 380, + "y": 378 + }, + { + "x": 420, + "y": 418 + }, + { + "x": 400, + "y": 398 + }, + [ + { + "#": 378 + }, + { + "#": 379 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 18, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 381 + }, + "angle": 0, + "vertices": { + "#": 382 + }, + "position": { + "#": 387 + }, + "force": { + "#": 388 + }, + "torque": 0, + "positionImpulse": { + "#": 389 + }, + "constraintImpulse": { + "#": 390 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 391 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 392 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 393 + }, + "bounds": { + "#": 395 + }, + "positionPrev": { + "#": 398 + }, + "anglePrev": 0, + "axes": { + "#": 399 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 380 + }, + "sleepCounter": 0 + }, + [ + { + "#": 380 + } + ], + [ + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + } + ], + { + "x": 420, + "y": 378, + "index": 0, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 460, + "y": 378, + "index": 1, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 460, + "y": 418, + "index": 2, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 420, + "y": 418, + "index": 3, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 440, + "y": 398 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 394 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 396 + }, + "max": { + "#": 397 + } + }, + { + "x": 420, + "y": 378 + }, + { + "x": 460, + "y": 418 + }, + { + "x": 440, + "y": 398 + }, + [ + { + "#": 400 + }, + { + "#": 401 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 19, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 403 + }, + "angle": 0, + "vertices": { + "#": 404 + }, + "position": { + "#": 409 + }, + "force": { + "#": 410 + }, + "torque": 0, + "positionImpulse": { + "#": 411 + }, + "constraintImpulse": { + "#": 412 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 413 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 414 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 415 + }, + "bounds": { + "#": 417 + }, + "positionPrev": { + "#": 420 + }, + "anglePrev": 0, + "axes": { + "#": 421 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 402 + }, + "sleepCounter": 0 + }, + [ + { + "#": 402 + } + ], + [ + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + } + ], + { + "x": 460, + "y": 378, + "index": 0, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 500, + "y": 378, + "index": 1, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 500, + "y": 418, + "index": 2, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 460, + "y": 418, + "index": 3, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 480, + "y": 398 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 416 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 418 + }, + "max": { + "#": 419 + } + }, + { + "x": 460, + "y": 378 + }, + { + "x": 500, + "y": 418 + }, + { + "x": 480, + "y": 398 + }, + [ + { + "#": 422 + }, + { + "#": 423 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 20, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 425 + }, + "angle": 0, + "vertices": { + "#": 426 + }, + "position": { + "#": 431 + }, + "force": { + "#": 432 + }, + "torque": 0, + "positionImpulse": { + "#": 433 + }, + "constraintImpulse": { + "#": 434 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 435 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 436 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 437 + }, + "bounds": { + "#": 439 + }, + "positionPrev": { + "#": 442 + }, + "anglePrev": 0, + "axes": { + "#": 443 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 424 + }, + "sleepCounter": 0 + }, + [ + { + "#": 424 + } + ], + [ + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + } + ], + { + "x": 500, + "y": 378, + "index": 0, + "body": { + "#": 424 + }, + "isInternal": false + }, + { + "x": 540, + "y": 378, + "index": 1, + "body": { + "#": 424 + }, + "isInternal": false + }, + { + "x": 540, + "y": 418, + "index": 2, + "body": { + "#": 424 + }, + "isInternal": false + }, + { + "x": 500, + "y": 418, + "index": 3, + "body": { + "#": 424 + }, + "isInternal": false + }, + { + "x": 520, + "y": 398 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 438 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 440 + }, + "max": { + "#": 441 + } + }, + { + "x": 500, + "y": 378 + }, + { + "x": 540, + "y": 418 + }, + { + "x": 520, + "y": 398 + }, + [ + { + "#": 444 + }, + { + "#": 445 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 21, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 447 + }, + "angle": 0, + "vertices": { + "#": 448 + }, + "position": { + "#": 453 + }, + "force": { + "#": 454 + }, + "torque": 0, + "positionImpulse": { + "#": 455 + }, + "constraintImpulse": { + "#": 456 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 457 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 458 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 459 + }, + "bounds": { + "#": 461 + }, + "positionPrev": { + "#": 464 + }, + "anglePrev": 0, + "axes": { + "#": 465 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 446 + }, + "sleepCounter": 0 + }, + [ + { + "#": 446 + } + ], + [ + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + } + ], + { + "x": 220, + "y": 418, + "index": 0, + "body": { + "#": 446 + }, + "isInternal": false + }, + { + "x": 260, + "y": 418, + "index": 1, + "body": { + "#": 446 + }, + "isInternal": false + }, + { + "x": 260, + "y": 458, + "index": 2, + "body": { + "#": 446 + }, + "isInternal": false + }, + { + "x": 220, + "y": 458, + "index": 3, + "body": { + "#": 446 + }, + "isInternal": false + }, + { + "x": 240, + "y": 438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 460 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 462 + }, + "max": { + "#": 463 + } + }, + { + "x": 220, + "y": 418 + }, + { + "x": 260, + "y": 458 + }, + { + "x": 240, + "y": 438 + }, + [ + { + "#": 466 + }, + { + "#": 467 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 22, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 469 + }, + "angle": 0, + "vertices": { + "#": 470 + }, + "position": { + "#": 475 + }, + "force": { + "#": 476 + }, + "torque": 0, + "positionImpulse": { + "#": 477 + }, + "constraintImpulse": { + "#": 478 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 479 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 480 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 481 + }, + "bounds": { + "#": 483 + }, + "positionPrev": { + "#": 486 + }, + "anglePrev": 0, + "axes": { + "#": 487 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 468 + }, + "sleepCounter": 0 + }, + [ + { + "#": 468 + } + ], + [ + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + } + ], + { + "x": 260, + "y": 418, + "index": 0, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 300, + "y": 418, + "index": 1, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 300, + "y": 458, + "index": 2, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 260, + "y": 458, + "index": 3, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 280, + "y": 438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 482 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 484 + }, + "max": { + "#": 485 + } + }, + { + "x": 260, + "y": 418 + }, + { + "x": 300, + "y": 458 + }, + { + "x": 280, + "y": 438 + }, + [ + { + "#": 488 + }, + { + "#": 489 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 23, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 491 + }, + "angle": 0, + "vertices": { + "#": 492 + }, + "position": { + "#": 497 + }, + "force": { + "#": 498 + }, + "torque": 0, + "positionImpulse": { + "#": 499 + }, + "constraintImpulse": { + "#": 500 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 501 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 502 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 503 + }, + "bounds": { + "#": 505 + }, + "positionPrev": { + "#": 508 + }, + "anglePrev": 0, + "axes": { + "#": 509 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 490 + }, + "sleepCounter": 0 + }, + [ + { + "#": 490 + } + ], + [ + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + } + ], + { + "x": 300, + "y": 418, + "index": 0, + "body": { + "#": 490 + }, + "isInternal": false + }, + { + "x": 340, + "y": 418, + "index": 1, + "body": { + "#": 490 + }, + "isInternal": false + }, + { + "x": 340, + "y": 458, + "index": 2, + "body": { + "#": 490 + }, + "isInternal": false + }, + { + "x": 300, + "y": 458, + "index": 3, + "body": { + "#": 490 + }, + "isInternal": false + }, + { + "x": 320, + "y": 438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 504 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 506 + }, + "max": { + "#": 507 + } + }, + { + "x": 300, + "y": 418 + }, + { + "x": 340, + "y": 458 + }, + { + "x": 320, + "y": 438 + }, + [ + { + "#": 510 + }, + { + "#": 511 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 24, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 513 + }, + "angle": 0, + "vertices": { + "#": 514 + }, + "position": { + "#": 519 + }, + "force": { + "#": 520 + }, + "torque": 0, + "positionImpulse": { + "#": 521 + }, + "constraintImpulse": { + "#": 522 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 523 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 524 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 525 + }, + "bounds": { + "#": 527 + }, + "positionPrev": { + "#": 530 + }, + "anglePrev": 0, + "axes": { + "#": 531 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 512 + }, + "sleepCounter": 0 + }, + [ + { + "#": 512 + } + ], + [ + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + } + ], + { + "x": 340, + "y": 418, + "index": 0, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 380, + "y": 418, + "index": 1, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 380, + "y": 458, + "index": 2, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 340, + "y": 458, + "index": 3, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 360, + "y": 438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 526 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 528 + }, + "max": { + "#": 529 + } + }, + { + "x": 340, + "y": 418 + }, + { + "x": 380, + "y": 458 + }, + { + "x": 360, + "y": 438 + }, + [ + { + "#": 532 + }, + { + "#": 533 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 25, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 535 + }, + "angle": 0, + "vertices": { + "#": 536 + }, + "position": { + "#": 541 + }, + "force": { + "#": 542 + }, + "torque": 0, + "positionImpulse": { + "#": 543 + }, + "constraintImpulse": { + "#": 544 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 545 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 546 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 547 + }, + "bounds": { + "#": 549 + }, + "positionPrev": { + "#": 552 + }, + "anglePrev": 0, + "axes": { + "#": 553 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 534 + }, + "sleepCounter": 0 + }, + [ + { + "#": 534 + } + ], + [ + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + } + ], + { + "x": 380, + "y": 418, + "index": 0, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 420, + "y": 418, + "index": 1, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 420, + "y": 458, + "index": 2, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 380, + "y": 458, + "index": 3, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 400, + "y": 438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 548 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 550 + }, + "max": { + "#": 551 + } + }, + { + "x": 380, + "y": 418 + }, + { + "x": 420, + "y": 458 + }, + { + "x": 400, + "y": 438 + }, + [ + { + "#": 554 + }, + { + "#": 555 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 26, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 557 + }, + "angle": 0, + "vertices": { + "#": 558 + }, + "position": { + "#": 563 + }, + "force": { + "#": 564 + }, + "torque": 0, + "positionImpulse": { + "#": 565 + }, + "constraintImpulse": { + "#": 566 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 567 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 568 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 569 + }, + "bounds": { + "#": 571 + }, + "positionPrev": { + "#": 574 + }, + "anglePrev": 0, + "axes": { + "#": 575 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 556 + }, + "sleepCounter": 0 + }, + [ + { + "#": 556 + } + ], + [ + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + } + ], + { + "x": 420, + "y": 418, + "index": 0, + "body": { + "#": 556 + }, + "isInternal": false + }, + { + "x": 460, + "y": 418, + "index": 1, + "body": { + "#": 556 + }, + "isInternal": false + }, + { + "x": 460, + "y": 458, + "index": 2, + "body": { + "#": 556 + }, + "isInternal": false + }, + { + "x": 420, + "y": 458, + "index": 3, + "body": { + "#": 556 + }, + "isInternal": false + }, + { + "x": 440, + "y": 438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 570 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 572 + }, + "max": { + "#": 573 + } + }, + { + "x": 420, + "y": 418 + }, + { + "x": 460, + "y": 458 + }, + { + "x": 440, + "y": 438 + }, + [ + { + "#": 576 + }, + { + "#": 577 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 27, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 579 + }, + "angle": 0, + "vertices": { + "#": 580 + }, + "position": { + "#": 585 + }, + "force": { + "#": 586 + }, + "torque": 0, + "positionImpulse": { + "#": 587 + }, + "constraintImpulse": { + "#": 588 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 589 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 590 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 591 + }, + "bounds": { + "#": 593 + }, + "positionPrev": { + "#": 596 + }, + "anglePrev": 0, + "axes": { + "#": 597 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 578 + }, + "sleepCounter": 0 + }, + [ + { + "#": 578 + } + ], + [ + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + } + ], + { + "x": 460, + "y": 418, + "index": 0, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 500, + "y": 418, + "index": 1, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 500, + "y": 458, + "index": 2, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 460, + "y": 458, + "index": 3, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 480, + "y": 438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 592 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 594 + }, + "max": { + "#": 595 + } + }, + { + "x": 460, + "y": 418 + }, + { + "x": 500, + "y": 458 + }, + { + "x": 480, + "y": 438 + }, + [ + { + "#": 598 + }, + { + "#": 599 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 28, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 601 + }, + "angle": 0, + "vertices": { + "#": 602 + }, + "position": { + "#": 607 + }, + "force": { + "#": 608 + }, + "torque": 0, + "positionImpulse": { + "#": 609 + }, + "constraintImpulse": { + "#": 610 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 611 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 612 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 613 + }, + "bounds": { + "#": 615 + }, + "positionPrev": { + "#": 618 + }, + "anglePrev": 0, + "axes": { + "#": 619 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 600 + }, + "sleepCounter": 0 + }, + [ + { + "#": 600 + } + ], + [ + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + } + ], + { + "x": 500, + "y": 418, + "index": 0, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 540, + "y": 418, + "index": 1, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 540, + "y": 458, + "index": 2, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 500, + "y": 458, + "index": 3, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 520, + "y": 438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 614 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 616 + }, + "max": { + "#": 617 + } + }, + { + "x": 500, + "y": 418 + }, + { + "x": 540, + "y": 458 + }, + { + "x": 520, + "y": 438 + }, + [ + { + "#": 620 + }, + { + "#": 621 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 29, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 623 + }, + "angle": 0, + "vertices": { + "#": 624 + }, + "position": { + "#": 629 + }, + "force": { + "#": 630 + }, + "torque": 0, + "positionImpulse": { + "#": 631 + }, + "constraintImpulse": { + "#": 632 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 633 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 634 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 635 + }, + "bounds": { + "#": 637 + }, + "positionPrev": { + "#": 640 + }, + "anglePrev": 0, + "axes": { + "#": 641 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 622 + }, + "sleepCounter": 0 + }, + [ + { + "#": 622 + } + ], + [ + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + } + ], + { + "x": 540, + "y": 418, + "index": 0, + "body": { + "#": 622 + }, + "isInternal": false + }, + { + "x": 580, + "y": 418, + "index": 1, + "body": { + "#": 622 + }, + "isInternal": false + }, + { + "x": 580, + "y": 458, + "index": 2, + "body": { + "#": 622 + }, + "isInternal": false + }, + { + "x": 540, + "y": 458, + "index": 3, + "body": { + "#": 622 + }, + "isInternal": false + }, + { + "x": 560, + "y": 438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 636 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 638 + }, + "max": { + "#": 639 + } + }, + { + "x": 540, + "y": 418 + }, + { + "x": 580, + "y": 458 + }, + { + "x": 560, + "y": 438 + }, + [ + { + "#": 642 + }, + { + "#": 643 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 30, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 645 + }, + "angle": 0, + "vertices": { + "#": 646 + }, + "position": { + "#": 651 + }, + "force": { + "#": 652 + }, + "torque": 0, + "positionImpulse": { + "#": 653 + }, + "constraintImpulse": { + "#": 654 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 655 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 656 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 657 + }, + "bounds": { + "#": 659 + }, + "positionPrev": { + "#": 662 + }, + "anglePrev": 0, + "axes": { + "#": 663 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 644 + }, + "sleepCounter": 0 + }, + [ + { + "#": 644 + } + ], + [ + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + } + ], + { + "x": 180, + "y": 458, + "index": 0, + "body": { + "#": 644 + }, + "isInternal": false + }, + { + "x": 220, + "y": 458, + "index": 1, + "body": { + "#": 644 + }, + "isInternal": false + }, + { + "x": 220, + "y": 498, + "index": 2, + "body": { + "#": 644 + }, + "isInternal": false + }, + { + "x": 180, + "y": 498, + "index": 3, + "body": { + "#": 644 + }, + "isInternal": false + }, + { + "x": 200, + "y": 478 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 658 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 660 + }, + "max": { + "#": 661 + } + }, + { + "x": 180, + "y": 458 + }, + { + "x": 220, + "y": 498 + }, + { + "x": 200, + "y": 478 + }, + [ + { + "#": 664 + }, + { + "#": 665 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 31, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 667 + }, + "angle": 0, + "vertices": { + "#": 668 + }, + "position": { + "#": 673 + }, + "force": { + "#": 674 + }, + "torque": 0, + "positionImpulse": { + "#": 675 + }, + "constraintImpulse": { + "#": 676 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 677 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 678 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 679 + }, + "bounds": { + "#": 681 + }, + "positionPrev": { + "#": 684 + }, + "anglePrev": 0, + "axes": { + "#": 685 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 666 + }, + "sleepCounter": 0 + }, + [ + { + "#": 666 + } + ], + [ + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + } + ], + { + "x": 220, + "y": 458, + "index": 0, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 260, + "y": 458, + "index": 1, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 260, + "y": 498, + "index": 2, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 220, + "y": 498, + "index": 3, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 240, + "y": 478 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 680 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 682 + }, + "max": { + "#": 683 + } + }, + { + "x": 220, + "y": 458 + }, + { + "x": 260, + "y": 498 + }, + { + "x": 240, + "y": 478 + }, + [ + { + "#": 686 + }, + { + "#": 687 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 32, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 689 + }, + "angle": 0, + "vertices": { + "#": 690 + }, + "position": { + "#": 695 + }, + "force": { + "#": 696 + }, + "torque": 0, + "positionImpulse": { + "#": 697 + }, + "constraintImpulse": { + "#": 698 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 699 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 700 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 701 + }, + "bounds": { + "#": 703 + }, + "positionPrev": { + "#": 706 + }, + "anglePrev": 0, + "axes": { + "#": 707 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 688 + }, + "sleepCounter": 0 + }, + [ + { + "#": 688 + } + ], + [ + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + } + ], + { + "x": 260, + "y": 458, + "index": 0, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 300, + "y": 458, + "index": 1, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 300, + "y": 498, + "index": 2, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 260, + "y": 498, + "index": 3, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 280, + "y": 478 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 702 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 704 + }, + "max": { + "#": 705 + } + }, + { + "x": 260, + "y": 458 + }, + { + "x": 300, + "y": 498 + }, + { + "x": 280, + "y": 478 + }, + [ + { + "#": 708 + }, + { + "#": 709 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 33, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 711 + }, + "angle": 0, + "vertices": { + "#": 712 + }, + "position": { + "#": 717 + }, + "force": { + "#": 718 + }, + "torque": 0, + "positionImpulse": { + "#": 719 + }, + "constraintImpulse": { + "#": 720 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 721 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 722 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 723 + }, + "bounds": { + "#": 725 + }, + "positionPrev": { + "#": 728 + }, + "anglePrev": 0, + "axes": { + "#": 729 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 710 + }, + "sleepCounter": 0 + }, + [ + { + "#": 710 + } + ], + [ + { + "#": 713 + }, + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + } + ], + { + "x": 300, + "y": 458, + "index": 0, + "body": { + "#": 710 + }, + "isInternal": false + }, + { + "x": 340, + "y": 458, + "index": 1, + "body": { + "#": 710 + }, + "isInternal": false + }, + { + "x": 340, + "y": 498, + "index": 2, + "body": { + "#": 710 + }, + "isInternal": false + }, + { + "x": 300, + "y": 498, + "index": 3, + "body": { + "#": 710 + }, + "isInternal": false + }, + { + "x": 320, + "y": 478 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 724 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 726 + }, + "max": { + "#": 727 + } + }, + { + "x": 300, + "y": 458 + }, + { + "x": 340, + "y": 498 + }, + { + "x": 320, + "y": 478 + }, + [ + { + "#": 730 + }, + { + "#": 731 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 34, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 733 + }, + "angle": 0, + "vertices": { + "#": 734 + }, + "position": { + "#": 739 + }, + "force": { + "#": 740 + }, + "torque": 0, + "positionImpulse": { + "#": 741 + }, + "constraintImpulse": { + "#": 742 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 743 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 744 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 745 + }, + "bounds": { + "#": 747 + }, + "positionPrev": { + "#": 750 + }, + "anglePrev": 0, + "axes": { + "#": 751 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 732 + }, + "sleepCounter": 0 + }, + [ + { + "#": 732 + } + ], + [ + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + } + ], + { + "x": 340, + "y": 458, + "index": 0, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 380, + "y": 458, + "index": 1, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 380, + "y": 498, + "index": 2, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 340, + "y": 498, + "index": 3, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 360, + "y": 478 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 746 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 748 + }, + "max": { + "#": 749 + } + }, + { + "x": 340, + "y": 458 + }, + { + "x": 380, + "y": 498 + }, + { + "x": 360, + "y": 478 + }, + [ + { + "#": 752 + }, + { + "#": 753 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 35, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 755 + }, + "angle": 0, + "vertices": { + "#": 756 + }, + "position": { + "#": 761 + }, + "force": { + "#": 762 + }, + "torque": 0, + "positionImpulse": { + "#": 763 + }, + "constraintImpulse": { + "#": 764 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 765 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 766 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 767 + }, + "bounds": { + "#": 769 + }, + "positionPrev": { + "#": 772 + }, + "anglePrev": 0, + "axes": { + "#": 773 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 754 + }, + "sleepCounter": 0 + }, + [ + { + "#": 754 + } + ], + [ + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + } + ], + { + "x": 380, + "y": 458, + "index": 0, + "body": { + "#": 754 + }, + "isInternal": false + }, + { + "x": 420, + "y": 458, + "index": 1, + "body": { + "#": 754 + }, + "isInternal": false + }, + { + "x": 420, + "y": 498, + "index": 2, + "body": { + "#": 754 + }, + "isInternal": false + }, + { + "x": 380, + "y": 498, + "index": 3, + "body": { + "#": 754 + }, + "isInternal": false + }, + { + "x": 400, + "y": 478 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 768 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 770 + }, + "max": { + "#": 771 + } + }, + { + "x": 380, + "y": 458 + }, + { + "x": 420, + "y": 498 + }, + { + "x": 400, + "y": 478 + }, + [ + { + "#": 774 + }, + { + "#": 775 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 36, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 777 + }, + "angle": 0, + "vertices": { + "#": 778 + }, + "position": { + "#": 783 + }, + "force": { + "#": 784 + }, + "torque": 0, + "positionImpulse": { + "#": 785 + }, + "constraintImpulse": { + "#": 786 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 787 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 788 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 789 + }, + "bounds": { + "#": 791 + }, + "positionPrev": { + "#": 794 + }, + "anglePrev": 0, + "axes": { + "#": 795 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 776 + }, + "sleepCounter": 0 + }, + [ + { + "#": 776 + } + ], + [ + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + } + ], + { + "x": 420, + "y": 458, + "index": 0, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 460, + "y": 458, + "index": 1, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 460, + "y": 498, + "index": 2, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 420, + "y": 498, + "index": 3, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 440, + "y": 478 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 790 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 792 + }, + "max": { + "#": 793 + } + }, + { + "x": 420, + "y": 458 + }, + { + "x": 460, + "y": 498 + }, + { + "x": 440, + "y": 478 + }, + [ + { + "#": 796 + }, + { + "#": 797 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 37, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 799 + }, + "angle": 0, + "vertices": { + "#": 800 + }, + "position": { + "#": 805 + }, + "force": { + "#": 806 + }, + "torque": 0, + "positionImpulse": { + "#": 807 + }, + "constraintImpulse": { + "#": 808 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 809 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 810 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 811 + }, + "bounds": { + "#": 813 + }, + "positionPrev": { + "#": 816 + }, + "anglePrev": 0, + "axes": { + "#": 817 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 798 + }, + "sleepCounter": 0 + }, + [ + { + "#": 798 + } + ], + [ + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + } + ], + { + "x": 460, + "y": 458, + "index": 0, + "body": { + "#": 798 + }, + "isInternal": false + }, + { + "x": 500, + "y": 458, + "index": 1, + "body": { + "#": 798 + }, + "isInternal": false + }, + { + "x": 500, + "y": 498, + "index": 2, + "body": { + "#": 798 + }, + "isInternal": false + }, + { + "x": 460, + "y": 498, + "index": 3, + "body": { + "#": 798 + }, + "isInternal": false + }, + { + "x": 480, + "y": 478 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 812 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 814 + }, + "max": { + "#": 815 + } + }, + { + "x": 460, + "y": 458 + }, + { + "x": 500, + "y": 498 + }, + { + "x": 480, + "y": 478 + }, + [ + { + "#": 818 + }, + { + "#": 819 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 38, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 821 + }, + "angle": 0, + "vertices": { + "#": 822 + }, + "position": { + "#": 827 + }, + "force": { + "#": 828 + }, + "torque": 0, + "positionImpulse": { + "#": 829 + }, + "constraintImpulse": { + "#": 830 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 831 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 832 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 833 + }, + "bounds": { + "#": 835 + }, + "positionPrev": { + "#": 838 + }, + "anglePrev": 0, + "axes": { + "#": 839 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 820 + }, + "sleepCounter": 0 + }, + [ + { + "#": 820 + } + ], + [ + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + } + ], + { + "x": 500, + "y": 458, + "index": 0, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 540, + "y": 458, + "index": 1, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 540, + "y": 498, + "index": 2, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 500, + "y": 498, + "index": 3, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 520, + "y": 478 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 834 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 836 + }, + "max": { + "#": 837 + } + }, + { + "x": 500, + "y": 458 + }, + { + "x": 540, + "y": 498 + }, + { + "x": 520, + "y": 478 + }, + [ + { + "#": 840 + }, + { + "#": 841 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 39, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 843 + }, + "angle": 0, + "vertices": { + "#": 844 + }, + "position": { + "#": 849 + }, + "force": { + "#": 850 + }, + "torque": 0, + "positionImpulse": { + "#": 851 + }, + "constraintImpulse": { + "#": 852 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 853 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 854 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 855 + }, + "bounds": { + "#": 857 + }, + "positionPrev": { + "#": 860 + }, + "anglePrev": 0, + "axes": { + "#": 861 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 842 + }, + "sleepCounter": 0 + }, + [ + { + "#": 842 + } + ], + [ + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + } + ], + { + "x": 540, + "y": 458, + "index": 0, + "body": { + "#": 842 + }, + "isInternal": false + }, + { + "x": 580, + "y": 458, + "index": 1, + "body": { + "#": 842 + }, + "isInternal": false + }, + { + "x": 580, + "y": 498, + "index": 2, + "body": { + "#": 842 + }, + "isInternal": false + }, + { + "x": 540, + "y": 498, + "index": 3, + "body": { + "#": 842 + }, + "isInternal": false + }, + { + "x": 560, + "y": 478 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 856 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 858 + }, + "max": { + "#": 859 + } + }, + { + "x": 540, + "y": 458 + }, + { + "x": 580, + "y": 498 + }, + { + "x": 560, + "y": 478 + }, + [ + { + "#": 862 + }, + { + "#": 863 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 40, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 865 + }, + "angle": 0, + "vertices": { + "#": 866 + }, + "position": { + "#": 871 + }, + "force": { + "#": 872 + }, + "torque": 0, + "positionImpulse": { + "#": 873 + }, + "constraintImpulse": { + "#": 874 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 875 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 876 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 877 + }, + "bounds": { + "#": 879 + }, + "positionPrev": { + "#": 882 + }, + "anglePrev": 0, + "axes": { + "#": 883 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 864 + }, + "sleepCounter": 0 + }, + [ + { + "#": 864 + } + ], + [ + { + "#": 867 + }, + { + "#": 868 + }, + { + "#": 869 + }, + { + "#": 870 + } + ], + { + "x": 580, + "y": 458, + "index": 0, + "body": { + "#": 864 + }, + "isInternal": false + }, + { + "x": 620, + "y": 458, + "index": 1, + "body": { + "#": 864 + }, + "isInternal": false + }, + { + "x": 620, + "y": 498, + "index": 2, + "body": { + "#": 864 + }, + "isInternal": false + }, + { + "x": 580, + "y": 498, + "index": 3, + "body": { + "#": 864 + }, + "isInternal": false + }, + { + "x": 600, + "y": 478 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 878 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 880 + }, + "max": { + "#": 881 + } + }, + { + "x": 580, + "y": 458 + }, + { + "x": 620, + "y": 498 + }, + { + "x": 600, + "y": 478 + }, + [ + { + "#": 884 + }, + { + "#": 885 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 41, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 887 + }, + "angle": 0, + "vertices": { + "#": 888 + }, + "position": { + "#": 893 + }, + "force": { + "#": 894 + }, + "torque": 0, + "positionImpulse": { + "#": 895 + }, + "constraintImpulse": { + "#": 896 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 897 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 898 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 899 + }, + "bounds": { + "#": 901 + }, + "positionPrev": { + "#": 904 + }, + "anglePrev": 0, + "axes": { + "#": 905 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 886 + }, + "sleepCounter": 0 + }, + [ + { + "#": 886 + } + ], + [ + { + "#": 889 + }, + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + } + ], + { + "x": 140, + "y": 498, + "index": 0, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 180, + "y": 498, + "index": 1, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 180, + "y": 538, + "index": 2, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 140, + "y": 538, + "index": 3, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 160, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 900 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 902 + }, + "max": { + "#": 903 + } + }, + { + "x": 140, + "y": 498 + }, + { + "x": 180, + "y": 538 + }, + { + "x": 160, + "y": 518 + }, + [ + { + "#": 906 + }, + { + "#": 907 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 42, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 909 + }, + "angle": 0, + "vertices": { + "#": 910 + }, + "position": { + "#": 915 + }, + "force": { + "#": 916 + }, + "torque": 0, + "positionImpulse": { + "#": 917 + }, + "constraintImpulse": { + "#": 918 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 919 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 920 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 921 + }, + "bounds": { + "#": 923 + }, + "positionPrev": { + "#": 926 + }, + "anglePrev": 0, + "axes": { + "#": 927 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 908 + }, + "sleepCounter": 0 + }, + [ + { + "#": 908 + } + ], + [ + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + } + ], + { + "x": 180, + "y": 498, + "index": 0, + "body": { + "#": 908 + }, + "isInternal": false + }, + { + "x": 220, + "y": 498, + "index": 1, + "body": { + "#": 908 + }, + "isInternal": false + }, + { + "x": 220, + "y": 538, + "index": 2, + "body": { + "#": 908 + }, + "isInternal": false + }, + { + "x": 180, + "y": 538, + "index": 3, + "body": { + "#": 908 + }, + "isInternal": false + }, + { + "x": 200, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 922 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 924 + }, + "max": { + "#": 925 + } + }, + { + "x": 180, + "y": 498 + }, + { + "x": 220, + "y": 538 + }, + { + "x": 200, + "y": 518 + }, + [ + { + "#": 928 + }, + { + "#": 929 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 43, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 931 + }, + "angle": 0, + "vertices": { + "#": 932 + }, + "position": { + "#": 937 + }, + "force": { + "#": 938 + }, + "torque": 0, + "positionImpulse": { + "#": 939 + }, + "constraintImpulse": { + "#": 940 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 941 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 942 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 943 + }, + "bounds": { + "#": 945 + }, + "positionPrev": { + "#": 948 + }, + "anglePrev": 0, + "axes": { + "#": 949 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 930 + }, + "sleepCounter": 0 + }, + [ + { + "#": 930 + } + ], + [ + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + } + ], + { + "x": 220, + "y": 498, + "index": 0, + "body": { + "#": 930 + }, + "isInternal": false + }, + { + "x": 260, + "y": 498, + "index": 1, + "body": { + "#": 930 + }, + "isInternal": false + }, + { + "x": 260, + "y": 538, + "index": 2, + "body": { + "#": 930 + }, + "isInternal": false + }, + { + "x": 220, + "y": 538, + "index": 3, + "body": { + "#": 930 + }, + "isInternal": false + }, + { + "x": 240, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 944 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 946 + }, + "max": { + "#": 947 + } + }, + { + "x": 220, + "y": 498 + }, + { + "x": 260, + "y": 538 + }, + { + "x": 240, + "y": 518 + }, + [ + { + "#": 950 + }, + { + "#": 951 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 44, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 953 + }, + "angle": 0, + "vertices": { + "#": 954 + }, + "position": { + "#": 959 + }, + "force": { + "#": 960 + }, + "torque": 0, + "positionImpulse": { + "#": 961 + }, + "constraintImpulse": { + "#": 962 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 963 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 964 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 965 + }, + "bounds": { + "#": 967 + }, + "positionPrev": { + "#": 970 + }, + "anglePrev": 0, + "axes": { + "#": 971 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 952 + }, + "sleepCounter": 0 + }, + [ + { + "#": 952 + } + ], + [ + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + } + ], + { + "x": 260, + "y": 498, + "index": 0, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 300, + "y": 498, + "index": 1, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 300, + "y": 538, + "index": 2, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 260, + "y": 538, + "index": 3, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 280, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 966 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 968 + }, + "max": { + "#": 969 + } + }, + { + "x": 260, + "y": 498 + }, + { + "x": 300, + "y": 538 + }, + { + "x": 280, + "y": 518 + }, + [ + { + "#": 972 + }, + { + "#": 973 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 45, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 975 + }, + "angle": 0, + "vertices": { + "#": 976 + }, + "position": { + "#": 981 + }, + "force": { + "#": 982 + }, + "torque": 0, + "positionImpulse": { + "#": 983 + }, + "constraintImpulse": { + "#": 984 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 985 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 986 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 987 + }, + "bounds": { + "#": 989 + }, + "positionPrev": { + "#": 992 + }, + "anglePrev": 0, + "axes": { + "#": 993 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 974 + }, + "sleepCounter": 0 + }, + [ + { + "#": 974 + } + ], + [ + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + }, + { + "#": 980 + } + ], + { + "x": 300, + "y": 498, + "index": 0, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 340, + "y": 498, + "index": 1, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 340, + "y": 538, + "index": 2, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 300, + "y": 538, + "index": 3, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 320, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 988 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 990 + }, + "max": { + "#": 991 + } + }, + { + "x": 300, + "y": 498 + }, + { + "x": 340, + "y": 538 + }, + { + "x": 320, + "y": 518 + }, + [ + { + "#": 994 + }, + { + "#": 995 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 46, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 997 + }, + "angle": 0, + "vertices": { + "#": 998 + }, + "position": { + "#": 1003 + }, + "force": { + "#": 1004 + }, + "torque": 0, + "positionImpulse": { + "#": 1005 + }, + "constraintImpulse": { + "#": 1006 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1007 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1008 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1009 + }, + "bounds": { + "#": 1011 + }, + "positionPrev": { + "#": 1014 + }, + "anglePrev": 0, + "axes": { + "#": 1015 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 996 + }, + "sleepCounter": 0 + }, + [ + { + "#": 996 + } + ], + [ + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + }, + { + "#": 1002 + } + ], + { + "x": 340, + "y": 498, + "index": 0, + "body": { + "#": 996 + }, + "isInternal": false + }, + { + "x": 380, + "y": 498, + "index": 1, + "body": { + "#": 996 + }, + "isInternal": false + }, + { + "x": 380, + "y": 538, + "index": 2, + "body": { + "#": 996 + }, + "isInternal": false + }, + { + "x": 340, + "y": 538, + "index": 3, + "body": { + "#": 996 + }, + "isInternal": false + }, + { + "x": 360, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1010 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1012 + }, + "max": { + "#": 1013 + } + }, + { + "x": 340, + "y": 498 + }, + { + "x": 380, + "y": 538 + }, + { + "x": 360, + "y": 518 + }, + [ + { + "#": 1016 + }, + { + "#": 1017 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 47, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1019 + }, + "angle": 0, + "vertices": { + "#": 1020 + }, + "position": { + "#": 1025 + }, + "force": { + "#": 1026 + }, + "torque": 0, + "positionImpulse": { + "#": 1027 + }, + "constraintImpulse": { + "#": 1028 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1029 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1030 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1031 + }, + "bounds": { + "#": 1033 + }, + "positionPrev": { + "#": 1036 + }, + "anglePrev": 0, + "axes": { + "#": 1037 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1018 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1018 + } + ], + [ + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + } + ], + { + "x": 380, + "y": 498, + "index": 0, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 420, + "y": 498, + "index": 1, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 420, + "y": 538, + "index": 2, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 380, + "y": 538, + "index": 3, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 400, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1032 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1034 + }, + "max": { + "#": 1035 + } + }, + { + "x": 380, + "y": 498 + }, + { + "x": 420, + "y": 538 + }, + { + "x": 400, + "y": 518 + }, + [ + { + "#": 1038 + }, + { + "#": 1039 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 48, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1041 + }, + "angle": 0, + "vertices": { + "#": 1042 + }, + "position": { + "#": 1047 + }, + "force": { + "#": 1048 + }, + "torque": 0, + "positionImpulse": { + "#": 1049 + }, + "constraintImpulse": { + "#": 1050 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1051 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1052 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1053 + }, + "bounds": { + "#": 1055 + }, + "positionPrev": { + "#": 1058 + }, + "anglePrev": 0, + "axes": { + "#": 1059 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1040 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1040 + } + ], + [ + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + } + ], + { + "x": 420, + "y": 498, + "index": 0, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 460, + "y": 498, + "index": 1, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 460, + "y": 538, + "index": 2, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 420, + "y": 538, + "index": 3, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 440, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1054 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1056 + }, + "max": { + "#": 1057 + } + }, + { + "x": 420, + "y": 498 + }, + { + "x": 460, + "y": 538 + }, + { + "x": 440, + "y": 518 + }, + [ + { + "#": 1060 + }, + { + "#": 1061 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 49, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1063 + }, + "angle": 0, + "vertices": { + "#": 1064 + }, + "position": { + "#": 1069 + }, + "force": { + "#": 1070 + }, + "torque": 0, + "positionImpulse": { + "#": 1071 + }, + "constraintImpulse": { + "#": 1072 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1073 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1074 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1075 + }, + "bounds": { + "#": 1077 + }, + "positionPrev": { + "#": 1080 + }, + "anglePrev": 0, + "axes": { + "#": 1081 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1062 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1062 + } + ], + [ + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + } + ], + { + "x": 460, + "y": 498, + "index": 0, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 500, + "y": 498, + "index": 1, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 500, + "y": 538, + "index": 2, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 460, + "y": 538, + "index": 3, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 480, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1076 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1078 + }, + "max": { + "#": 1079 + } + }, + { + "x": 460, + "y": 498 + }, + { + "x": 500, + "y": 538 + }, + { + "x": 480, + "y": 518 + }, + [ + { + "#": 1082 + }, + { + "#": 1083 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 50, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1085 + }, + "angle": 0, + "vertices": { + "#": 1086 + }, + "position": { + "#": 1091 + }, + "force": { + "#": 1092 + }, + "torque": 0, + "positionImpulse": { + "#": 1093 + }, + "constraintImpulse": { + "#": 1094 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1095 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1096 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1097 + }, + "bounds": { + "#": 1099 + }, + "positionPrev": { + "#": 1102 + }, + "anglePrev": 0, + "axes": { + "#": 1103 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1084 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1084 + } + ], + [ + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + } + ], + { + "x": 500, + "y": 498, + "index": 0, + "body": { + "#": 1084 + }, + "isInternal": false + }, + { + "x": 540, + "y": 498, + "index": 1, + "body": { + "#": 1084 + }, + "isInternal": false + }, + { + "x": 540, + "y": 538, + "index": 2, + "body": { + "#": 1084 + }, + "isInternal": false + }, + { + "x": 500, + "y": 538, + "index": 3, + "body": { + "#": 1084 + }, + "isInternal": false + }, + { + "x": 520, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1098 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1100 + }, + "max": { + "#": 1101 + } + }, + { + "x": 500, + "y": 498 + }, + { + "x": 540, + "y": 538 + }, + { + "x": 520, + "y": 518 + }, + [ + { + "#": 1104 + }, + { + "#": 1105 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 51, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1107 + }, + "angle": 0, + "vertices": { + "#": 1108 + }, + "position": { + "#": 1113 + }, + "force": { + "#": 1114 + }, + "torque": 0, + "positionImpulse": { + "#": 1115 + }, + "constraintImpulse": { + "#": 1116 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1117 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1118 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1119 + }, + "bounds": { + "#": 1121 + }, + "positionPrev": { + "#": 1124 + }, + "anglePrev": 0, + "axes": { + "#": 1125 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1106 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1106 + } + ], + [ + { + "#": 1109 + }, + { + "#": 1110 + }, + { + "#": 1111 + }, + { + "#": 1112 + } + ], + { + "x": 540, + "y": 498, + "index": 0, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 580, + "y": 498, + "index": 1, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 580, + "y": 538, + "index": 2, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 540, + "y": 538, + "index": 3, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 560, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1120 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1122 + }, + "max": { + "#": 1123 + } + }, + { + "x": 540, + "y": 498 + }, + { + "x": 580, + "y": 538 + }, + { + "x": 560, + "y": 518 + }, + [ + { + "#": 1126 + }, + { + "#": 1127 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 52, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1129 + }, + "angle": 0, + "vertices": { + "#": 1130 + }, + "position": { + "#": 1135 + }, + "force": { + "#": 1136 + }, + "torque": 0, + "positionImpulse": { + "#": 1137 + }, + "constraintImpulse": { + "#": 1138 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1139 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1140 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1141 + }, + "bounds": { + "#": 1143 + }, + "positionPrev": { + "#": 1146 + }, + "anglePrev": 0, + "axes": { + "#": 1147 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1128 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1128 + } + ], + [ + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + } + ], + { + "x": 580, + "y": 498, + "index": 0, + "body": { + "#": 1128 + }, + "isInternal": false + }, + { + "x": 620, + "y": 498, + "index": 1, + "body": { + "#": 1128 + }, + "isInternal": false + }, + { + "x": 620, + "y": 538, + "index": 2, + "body": { + "#": 1128 + }, + "isInternal": false + }, + { + "x": 580, + "y": 538, + "index": 3, + "body": { + "#": 1128 + }, + "isInternal": false + }, + { + "x": 600, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1142 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1144 + }, + "max": { + "#": 1145 + } + }, + { + "x": 580, + "y": 498 + }, + { + "x": 620, + "y": 538 + }, + { + "x": 600, + "y": 518 + }, + [ + { + "#": 1148 + }, + { + "#": 1149 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 53, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1151 + }, + "angle": 0, + "vertices": { + "#": 1152 + }, + "position": { + "#": 1157 + }, + "force": { + "#": 1158 + }, + "torque": 0, + "positionImpulse": { + "#": 1159 + }, + "constraintImpulse": { + "#": 1160 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1161 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1162 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1163 + }, + "bounds": { + "#": 1165 + }, + "positionPrev": { + "#": 1168 + }, + "anglePrev": 0, + "axes": { + "#": 1169 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1150 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1150 + } + ], + [ + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + }, + { + "#": 1156 + } + ], + { + "x": 620, + "y": 498, + "index": 0, + "body": { + "#": 1150 + }, + "isInternal": false + }, + { + "x": 660, + "y": 498, + "index": 1, + "body": { + "#": 1150 + }, + "isInternal": false + }, + { + "x": 660, + "y": 538, + "index": 2, + "body": { + "#": 1150 + }, + "isInternal": false + }, + { + "x": 620, + "y": 538, + "index": 3, + "body": { + "#": 1150 + }, + "isInternal": false + }, + { + "x": 640, + "y": 518 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1164 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1166 + }, + "max": { + "#": 1167 + } + }, + { + "x": 620, + "y": 498 + }, + { + "x": 660, + "y": 538 + }, + { + "x": 640, + "y": 518 + }, + [ + { + "#": 1170 + }, + { + "#": 1171 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 54, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1173 + }, + "angle": 0, + "vertices": { + "#": 1174 + }, + "position": { + "#": 1179 + }, + "force": { + "#": 1180 + }, + "torque": 0, + "positionImpulse": { + "#": 1181 + }, + "constraintImpulse": { + "#": 1182 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1183 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1184 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1185 + }, + "bounds": { + "#": 1187 + }, + "positionPrev": { + "#": 1190 + }, + "anglePrev": 0, + "axes": { + "#": 1191 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1172 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1172 + } + ], + [ + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + } + ], + { + "x": 100, + "y": 538, + "index": 0, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 140, + "y": 538, + "index": 1, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 140, + "y": 578, + "index": 2, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 100, + "y": 578, + "index": 3, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 120, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1186 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1188 + }, + "max": { + "#": 1189 + } + }, + { + "x": 100, + "y": 538 + }, + { + "x": 140, + "y": 578 + }, + { + "x": 120, + "y": 558 + }, + [ + { + "#": 1192 + }, + { + "#": 1193 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 55, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1195 + }, + "angle": 0, + "vertices": { + "#": 1196 + }, + "position": { + "#": 1201 + }, + "force": { + "#": 1202 + }, + "torque": 0, + "positionImpulse": { + "#": 1203 + }, + "constraintImpulse": { + "#": 1204 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1205 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1206 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1207 + }, + "bounds": { + "#": 1209 + }, + "positionPrev": { + "#": 1212 + }, + "anglePrev": 0, + "axes": { + "#": 1213 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1194 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1194 + } + ], + [ + { + "#": 1197 + }, + { + "#": 1198 + }, + { + "#": 1199 + }, + { + "#": 1200 + } + ], + { + "x": 140, + "y": 538, + "index": 0, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 180, + "y": 538, + "index": 1, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 180, + "y": 578, + "index": 2, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 140, + "y": 578, + "index": 3, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 160, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1208 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1210 + }, + "max": { + "#": 1211 + } + }, + { + "x": 140, + "y": 538 + }, + { + "x": 180, + "y": 578 + }, + { + "x": 160, + "y": 558 + }, + [ + { + "#": 1214 + }, + { + "#": 1215 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 56, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1217 + }, + "angle": 0, + "vertices": { + "#": 1218 + }, + "position": { + "#": 1223 + }, + "force": { + "#": 1224 + }, + "torque": 0, + "positionImpulse": { + "#": 1225 + }, + "constraintImpulse": { + "#": 1226 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1227 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1228 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1229 + }, + "bounds": { + "#": 1231 + }, + "positionPrev": { + "#": 1234 + }, + "anglePrev": 0, + "axes": { + "#": 1235 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1216 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1216 + } + ], + [ + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + } + ], + { + "x": 180, + "y": 538, + "index": 0, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 220, + "y": 538, + "index": 1, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 220, + "y": 578, + "index": 2, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 180, + "y": 578, + "index": 3, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 200, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1230 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1232 + }, + "max": { + "#": 1233 + } + }, + { + "x": 180, + "y": 538 + }, + { + "x": 220, + "y": 578 + }, + { + "x": 200, + "y": 558 + }, + [ + { + "#": 1236 + }, + { + "#": 1237 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 57, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1239 + }, + "angle": 0, + "vertices": { + "#": 1240 + }, + "position": { + "#": 1245 + }, + "force": { + "#": 1246 + }, + "torque": 0, + "positionImpulse": { + "#": 1247 + }, + "constraintImpulse": { + "#": 1248 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1249 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1250 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1251 + }, + "bounds": { + "#": 1253 + }, + "positionPrev": { + "#": 1256 + }, + "anglePrev": 0, + "axes": { + "#": 1257 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1238 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1238 + } + ], + [ + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + } + ], + { + "x": 220, + "y": 538, + "index": 0, + "body": { + "#": 1238 + }, + "isInternal": false + }, + { + "x": 260, + "y": 538, + "index": 1, + "body": { + "#": 1238 + }, + "isInternal": false + }, + { + "x": 260, + "y": 578, + "index": 2, + "body": { + "#": 1238 + }, + "isInternal": false + }, + { + "x": 220, + "y": 578, + "index": 3, + "body": { + "#": 1238 + }, + "isInternal": false + }, + { + "x": 240, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1252 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1254 + }, + "max": { + "#": 1255 + } + }, + { + "x": 220, + "y": 538 + }, + { + "x": 260, + "y": 578 + }, + { + "x": 240, + "y": 558 + }, + [ + { + "#": 1258 + }, + { + "#": 1259 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 58, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1261 + }, + "angle": 0, + "vertices": { + "#": 1262 + }, + "position": { + "#": 1267 + }, + "force": { + "#": 1268 + }, + "torque": 0, + "positionImpulse": { + "#": 1269 + }, + "constraintImpulse": { + "#": 1270 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1271 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1272 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1273 + }, + "bounds": { + "#": 1275 + }, + "positionPrev": { + "#": 1278 + }, + "anglePrev": 0, + "axes": { + "#": 1279 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1260 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1260 + } + ], + [ + { + "#": 1263 + }, + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + } + ], + { + "x": 260, + "y": 538, + "index": 0, + "body": { + "#": 1260 + }, + "isInternal": false + }, + { + "x": 300, + "y": 538, + "index": 1, + "body": { + "#": 1260 + }, + "isInternal": false + }, + { + "x": 300, + "y": 578, + "index": 2, + "body": { + "#": 1260 + }, + "isInternal": false + }, + { + "x": 260, + "y": 578, + "index": 3, + "body": { + "#": 1260 + }, + "isInternal": false + }, + { + "x": 280, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1274 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1276 + }, + "max": { + "#": 1277 + } + }, + { + "x": 260, + "y": 538 + }, + { + "x": 300, + "y": 578 + }, + { + "x": 280, + "y": 558 + }, + [ + { + "#": 1280 + }, + { + "#": 1281 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 59, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1283 + }, + "angle": 0, + "vertices": { + "#": 1284 + }, + "position": { + "#": 1289 + }, + "force": { + "#": 1290 + }, + "torque": 0, + "positionImpulse": { + "#": 1291 + }, + "constraintImpulse": { + "#": 1292 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1293 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1294 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1295 + }, + "bounds": { + "#": 1297 + }, + "positionPrev": { + "#": 1300 + }, + "anglePrev": 0, + "axes": { + "#": 1301 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1282 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1282 + } + ], + [ + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + } + ], + { + "x": 300, + "y": 538, + "index": 0, + "body": { + "#": 1282 + }, + "isInternal": false + }, + { + "x": 340, + "y": 538, + "index": 1, + "body": { + "#": 1282 + }, + "isInternal": false + }, + { + "x": 340, + "y": 578, + "index": 2, + "body": { + "#": 1282 + }, + "isInternal": false + }, + { + "x": 300, + "y": 578, + "index": 3, + "body": { + "#": 1282 + }, + "isInternal": false + }, + { + "x": 320, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1296 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1298 + }, + "max": { + "#": 1299 + } + }, + { + "x": 300, + "y": 538 + }, + { + "x": 340, + "y": 578 + }, + { + "x": 320, + "y": 558 + }, + [ + { + "#": 1302 + }, + { + "#": 1303 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 60, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1305 + }, + "angle": 0, + "vertices": { + "#": 1306 + }, + "position": { + "#": 1311 + }, + "force": { + "#": 1312 + }, + "torque": 0, + "positionImpulse": { + "#": 1313 + }, + "constraintImpulse": { + "#": 1314 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1315 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1316 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1317 + }, + "bounds": { + "#": 1319 + }, + "positionPrev": { + "#": 1322 + }, + "anglePrev": 0, + "axes": { + "#": 1323 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1304 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1304 + } + ], + [ + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + }, + { + "#": 1310 + } + ], + { + "x": 340, + "y": 538, + "index": 0, + "body": { + "#": 1304 + }, + "isInternal": false + }, + { + "x": 380, + "y": 538, + "index": 1, + "body": { + "#": 1304 + }, + "isInternal": false + }, + { + "x": 380, + "y": 578, + "index": 2, + "body": { + "#": 1304 + }, + "isInternal": false + }, + { + "x": 340, + "y": 578, + "index": 3, + "body": { + "#": 1304 + }, + "isInternal": false + }, + { + "x": 360, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1318 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1320 + }, + "max": { + "#": 1321 + } + }, + { + "x": 340, + "y": 538 + }, + { + "x": 380, + "y": 578 + }, + { + "x": 360, + "y": 558 + }, + [ + { + "#": 1324 + }, + { + "#": 1325 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 61, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1327 + }, + "angle": 0, + "vertices": { + "#": 1328 + }, + "position": { + "#": 1333 + }, + "force": { + "#": 1334 + }, + "torque": 0, + "positionImpulse": { + "#": 1335 + }, + "constraintImpulse": { + "#": 1336 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1337 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1338 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1339 + }, + "bounds": { + "#": 1341 + }, + "positionPrev": { + "#": 1344 + }, + "anglePrev": 0, + "axes": { + "#": 1345 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1326 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1326 + } + ], + [ + { + "#": 1329 + }, + { + "#": 1330 + }, + { + "#": 1331 + }, + { + "#": 1332 + } + ], + { + "x": 380, + "y": 538, + "index": 0, + "body": { + "#": 1326 + }, + "isInternal": false + }, + { + "x": 420, + "y": 538, + "index": 1, + "body": { + "#": 1326 + }, + "isInternal": false + }, + { + "x": 420, + "y": 578, + "index": 2, + "body": { + "#": 1326 + }, + "isInternal": false + }, + { + "x": 380, + "y": 578, + "index": 3, + "body": { + "#": 1326 + }, + "isInternal": false + }, + { + "x": 400, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1340 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1342 + }, + "max": { + "#": 1343 + } + }, + { + "x": 380, + "y": 538 + }, + { + "x": 420, + "y": 578 + }, + { + "x": 400, + "y": 558 + }, + [ + { + "#": 1346 + }, + { + "#": 1347 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 62, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1349 + }, + "angle": 0, + "vertices": { + "#": 1350 + }, + "position": { + "#": 1355 + }, + "force": { + "#": 1356 + }, + "torque": 0, + "positionImpulse": { + "#": 1357 + }, + "constraintImpulse": { + "#": 1358 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1359 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1360 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1361 + }, + "bounds": { + "#": 1363 + }, + "positionPrev": { + "#": 1366 + }, + "anglePrev": 0, + "axes": { + "#": 1367 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1348 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1348 + } + ], + [ + { + "#": 1351 + }, + { + "#": 1352 + }, + { + "#": 1353 + }, + { + "#": 1354 + } + ], + { + "x": 420, + "y": 538, + "index": 0, + "body": { + "#": 1348 + }, + "isInternal": false + }, + { + "x": 460, + "y": 538, + "index": 1, + "body": { + "#": 1348 + }, + "isInternal": false + }, + { + "x": 460, + "y": 578, + "index": 2, + "body": { + "#": 1348 + }, + "isInternal": false + }, + { + "x": 420, + "y": 578, + "index": 3, + "body": { + "#": 1348 + }, + "isInternal": false + }, + { + "x": 440, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1362 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1364 + }, + "max": { + "#": 1365 + } + }, + { + "x": 420, + "y": 538 + }, + { + "x": 460, + "y": 578 + }, + { + "x": 440, + "y": 558 + }, + [ + { + "#": 1368 + }, + { + "#": 1369 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 63, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1371 + }, + "angle": 0, + "vertices": { + "#": 1372 + }, + "position": { + "#": 1377 + }, + "force": { + "#": 1378 + }, + "torque": 0, + "positionImpulse": { + "#": 1379 + }, + "constraintImpulse": { + "#": 1380 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1381 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1382 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1383 + }, + "bounds": { + "#": 1385 + }, + "positionPrev": { + "#": 1388 + }, + "anglePrev": 0, + "axes": { + "#": 1389 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1370 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1370 + } + ], + [ + { + "#": 1373 + }, + { + "#": 1374 + }, + { + "#": 1375 + }, + { + "#": 1376 + } + ], + { + "x": 460, + "y": 538, + "index": 0, + "body": { + "#": 1370 + }, + "isInternal": false + }, + { + "x": 500, + "y": 538, + "index": 1, + "body": { + "#": 1370 + }, + "isInternal": false + }, + { + "x": 500, + "y": 578, + "index": 2, + "body": { + "#": 1370 + }, + "isInternal": false + }, + { + "x": 460, + "y": 578, + "index": 3, + "body": { + "#": 1370 + }, + "isInternal": false + }, + { + "x": 480, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1384 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1386 + }, + "max": { + "#": 1387 + } + }, + { + "x": 460, + "y": 538 + }, + { + "x": 500, + "y": 578 + }, + { + "x": 480, + "y": 558 + }, + [ + { + "#": 1390 + }, + { + "#": 1391 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 64, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1393 + }, + "angle": 0, + "vertices": { + "#": 1394 + }, + "position": { + "#": 1399 + }, + "force": { + "#": 1400 + }, + "torque": 0, + "positionImpulse": { + "#": 1401 + }, + "constraintImpulse": { + "#": 1402 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1403 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1404 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1405 + }, + "bounds": { + "#": 1407 + }, + "positionPrev": { + "#": 1410 + }, + "anglePrev": 0, + "axes": { + "#": 1411 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1392 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1392 + } + ], + [ + { + "#": 1395 + }, + { + "#": 1396 + }, + { + "#": 1397 + }, + { + "#": 1398 + } + ], + { + "x": 500, + "y": 538, + "index": 0, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 540, + "y": 538, + "index": 1, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 540, + "y": 578, + "index": 2, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 500, + "y": 578, + "index": 3, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 520, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1406 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1408 + }, + "max": { + "#": 1409 + } + }, + { + "x": 500, + "y": 538 + }, + { + "x": 540, + "y": 578 + }, + { + "x": 520, + "y": 558 + }, + [ + { + "#": 1412 + }, + { + "#": 1413 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 65, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1415 + }, + "angle": 0, + "vertices": { + "#": 1416 + }, + "position": { + "#": 1421 + }, + "force": { + "#": 1422 + }, + "torque": 0, + "positionImpulse": { + "#": 1423 + }, + "constraintImpulse": { + "#": 1424 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1425 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1426 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1427 + }, + "bounds": { + "#": 1429 + }, + "positionPrev": { + "#": 1432 + }, + "anglePrev": 0, + "axes": { + "#": 1433 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1414 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1414 + } + ], + [ + { + "#": 1417 + }, + { + "#": 1418 + }, + { + "#": 1419 + }, + { + "#": 1420 + } + ], + { + "x": 540, + "y": 538, + "index": 0, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 580, + "y": 538, + "index": 1, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 580, + "y": 578, + "index": 2, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 540, + "y": 578, + "index": 3, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 560, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1428 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1430 + }, + "max": { + "#": 1431 + } + }, + { + "x": 540, + "y": 538 + }, + { + "x": 580, + "y": 578 + }, + { + "x": 560, + "y": 558 + }, + [ + { + "#": 1434 + }, + { + "#": 1435 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 66, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1437 + }, + "angle": 0, + "vertices": { + "#": 1438 + }, + "position": { + "#": 1443 + }, + "force": { + "#": 1444 + }, + "torque": 0, + "positionImpulse": { + "#": 1445 + }, + "constraintImpulse": { + "#": 1446 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1447 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1448 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1449 + }, + "bounds": { + "#": 1451 + }, + "positionPrev": { + "#": 1454 + }, + "anglePrev": 0, + "axes": { + "#": 1455 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1436 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1436 + } + ], + [ + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + }, + { + "#": 1442 + } + ], + { + "x": 580, + "y": 538, + "index": 0, + "body": { + "#": 1436 + }, + "isInternal": false + }, + { + "x": 620, + "y": 538, + "index": 1, + "body": { + "#": 1436 + }, + "isInternal": false + }, + { + "x": 620, + "y": 578, + "index": 2, + "body": { + "#": 1436 + }, + "isInternal": false + }, + { + "x": 580, + "y": 578, + "index": 3, + "body": { + "#": 1436 + }, + "isInternal": false + }, + { + "x": 600, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1450 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1452 + }, + "max": { + "#": 1453 + } + }, + { + "x": 580, + "y": 538 + }, + { + "x": 620, + "y": 578 + }, + { + "x": 600, + "y": 558 + }, + [ + { + "#": 1456 + }, + { + "#": 1457 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 67, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1459 + }, + "angle": 0, + "vertices": { + "#": 1460 + }, + "position": { + "#": 1465 + }, + "force": { + "#": 1466 + }, + "torque": 0, + "positionImpulse": { + "#": 1467 + }, + "constraintImpulse": { + "#": 1468 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1469 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1470 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1471 + }, + "bounds": { + "#": 1473 + }, + "positionPrev": { + "#": 1476 + }, + "anglePrev": 0, + "axes": { + "#": 1477 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1458 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1458 + } + ], + [ + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + } + ], + { + "x": 620, + "y": 538, + "index": 0, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 660, + "y": 538, + "index": 1, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 660, + "y": 578, + "index": 2, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 620, + "y": 578, + "index": 3, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 640, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1472 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1474 + }, + "max": { + "#": 1475 + } + }, + { + "x": 620, + "y": 538 + }, + { + "x": 660, + "y": 578 + }, + { + "x": 640, + "y": 558 + }, + [ + { + "#": 1478 + }, + { + "#": 1479 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 68, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1481 + }, + "angle": 0, + "vertices": { + "#": 1482 + }, + "position": { + "#": 1487 + }, + "force": { + "#": 1488 + }, + "torque": 0, + "positionImpulse": { + "#": 1489 + }, + "constraintImpulse": { + "#": 1490 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1491 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1492 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1493 + }, + "bounds": { + "#": 1495 + }, + "positionPrev": { + "#": 1498 + }, + "anglePrev": 0, + "axes": { + "#": 1499 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1480 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1480 + } + ], + [ + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + } + ], + { + "x": 660, + "y": 538, + "index": 0, + "body": { + "#": 1480 + }, + "isInternal": false + }, + { + "x": 700, + "y": 538, + "index": 1, + "body": { + "#": 1480 + }, + "isInternal": false + }, + { + "x": 700, + "y": 578, + "index": 2, + "body": { + "#": 1480 + }, + "isInternal": false + }, + { + "x": 660, + "y": 578, + "index": 3, + "body": { + "#": 1480 + }, + "isInternal": false + }, + { + "x": 680, + "y": 558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1494 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1496 + }, + "max": { + "#": 1497 + } + }, + { + "x": 660, + "y": 538 + }, + { + "x": 700, + "y": 578 + }, + { + "x": 680, + "y": 558 + }, + [ + { + "#": 1500 + }, + { + "#": 1501 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 1506 + }, + "max": { + "#": 1507 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/pyramid/pyramid-10.json b/test/node/refs/pyramid/pyramid-10.json new file mode 100644 index 00000000..45c95acb --- /dev/null +++ b/test/node/refs/pyramid/pyramid-10.json @@ -0,0 +1,14502 @@ +[ + { + "id": 49, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 94 + }, + "composites": { + "#": 95 + }, + "label": "World", + "gravity": { + "#": 1572 + }, + "bounds": { + "#": 1573 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + [], + [ + { + "#": 96 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 97 + }, + "constraints": { + "#": 1570 + }, + "composites": { + "#": 1571 + }, + "label": "Stack" + }, + [ + { + "#": 98 + }, + { + "#": 121 + }, + { + "#": 144 + }, + { + "#": 167 + }, + { + "#": 190 + }, + { + "#": 213 + }, + { + "#": 236 + }, + { + "#": 259 + }, + { + "#": 282 + }, + { + "#": 305 + }, + { + "#": 328 + }, + { + "#": 351 + }, + { + "#": 374 + }, + { + "#": 397 + }, + { + "#": 420 + }, + { + "#": 443 + }, + { + "#": 466 + }, + { + "#": 489 + }, + { + "#": 512 + }, + { + "#": 535 + }, + { + "#": 558 + }, + { + "#": 581 + }, + { + "#": 604 + }, + { + "#": 627 + }, + { + "#": 650 + }, + { + "#": 673 + }, + { + "#": 696 + }, + { + "#": 719 + }, + { + "#": 742 + }, + { + "#": 765 + }, + { + "#": 788 + }, + { + "#": 811 + }, + { + "#": 834 + }, + { + "#": 857 + }, + { + "#": 880 + }, + { + "#": 903 + }, + { + "#": 926 + }, + { + "#": 949 + }, + { + "#": 972 + }, + { + "#": 995 + }, + { + "#": 1018 + }, + { + "#": 1041 + }, + { + "#": 1064 + }, + { + "#": 1087 + }, + { + "#": 1110 + }, + { + "#": 1133 + }, + { + "#": 1156 + }, + { + "#": 1179 + }, + { + "#": 1202 + }, + { + "#": 1225 + }, + { + "#": 1248 + }, + { + "#": 1271 + }, + { + "#": 1294 + }, + { + "#": 1317 + }, + { + "#": 1340 + }, + { + "#": 1363 + }, + { + "#": 1386 + }, + { + "#": 1409 + }, + { + "#": 1432 + }, + { + "#": 1455 + }, + { + "#": 1478 + }, + { + "#": 1501 + }, + { + "#": 1524 + }, + { + "#": 1547 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 99 + }, + "angle": 0, + "vertices": { + "#": 100 + }, + "position": { + "#": 105 + }, + "force": { + "#": 106 + }, + "torque": 0, + "positionImpulse": { + "#": 107 + }, + "constraintImpulse": { + "#": 108 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 109 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 110 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 111 + }, + "bounds": { + "#": 113 + }, + "positionPrev": { + "#": 116 + }, + "anglePrev": 0, + "axes": { + "#": 117 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 98 + }, + "sleepCounter": 0, + "region": { + "#": 120 + } + }, + [ + { + "#": 98 + } + ], + [ + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + } + ], + { + "x": 380, + "y": 271.4179, + "index": 0, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 420, + "y": 271.4179, + "index": 1, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 420, + "y": 311.4179, + "index": 2, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 380, + "y": 311.4179, + "index": 3, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 400, + "y": 291.4179 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.60136 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 112 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 114 + }, + "max": { + "#": 115 + } + }, + { + "x": 380, + "y": 271.4179 + }, + { + "x": 420, + "y": 314.32517 + }, + { + "x": 400, + "y": 289.92293 + }, + [ + { + "#": 118 + }, + { + "#": 119 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,5,6", + "startCol": 7, + "endCol": 8, + "startRow": 5, + "endRow": 6 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 122 + }, + "angle": 0, + "vertices": { + "#": 123 + }, + "position": { + "#": 128 + }, + "force": { + "#": 129 + }, + "torque": 0, + "positionImpulse": { + "#": 130 + }, + "constraintImpulse": { + "#": 131 + }, + "totalContacts": 0, + "speed": 1.59839, + "angularSpeed": 0, + "velocity": { + "#": 132 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 133 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 134 + }, + "bounds": { + "#": 136 + }, + "positionPrev": { + "#": 139 + }, + "anglePrev": 0, + "axes": { + "#": 140 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 121 + }, + "sleepCounter": 0, + "region": { + "#": 143 + } + }, + [ + { + "#": 121 + } + ], + [ + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + } + ], + { + "x": 340, + "y": 309.48218, + "index": 0, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 380, + "y": 309.48218, + "index": 1, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 380, + "y": 349.48218, + "index": 2, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 340, + "y": 349.48218, + "index": 3, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 360, + "y": 329.48218 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.71373 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 135 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 137 + }, + "max": { + "#": 138 + } + }, + { + "x": 340, + "y": 309.48218 + }, + { + "x": 380, + "y": 351.08057 + }, + { + "x": 360, + "y": 328.76969 + }, + [ + { + "#": 141 + }, + { + "#": 142 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,6,7", + "startCol": 7, + "endCol": 7, + "startRow": 6, + "endRow": 7 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 145 + }, + "angle": 0, + "vertices": { + "#": 146 + }, + "position": { + "#": 151 + }, + "force": { + "#": 152 + }, + "torque": 0, + "positionImpulse": { + "#": 153 + }, + "constraintImpulse": { + "#": 154 + }, + "totalContacts": 0, + "speed": 1.59839, + "angularSpeed": 0, + "velocity": { + "#": 155 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 156 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 157 + }, + "bounds": { + "#": 159 + }, + "positionPrev": { + "#": 162 + }, + "anglePrev": 0, + "axes": { + "#": 163 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 144 + }, + "sleepCounter": 0, + "region": { + "#": 166 + } + }, + [ + { + "#": 144 + } + ], + [ + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + } + ], + { + "x": 380, + "y": 310.96298, + "index": 0, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 420, + "y": 310.96298, + "index": 1, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 420, + "y": 350.96298, + "index": 2, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 380, + "y": 350.96298, + "index": 3, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 400, + "y": 330.96298 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.47698 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.30879 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 158 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 160 + }, + "max": { + "#": 161 + } + }, + { + "x": 380, + "y": 310.96298 + }, + { + "x": 420, + "y": 352.56138 + }, + { + "x": 400, + "y": 329.54781 + }, + [ + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,6,7", + "startCol": 7, + "endCol": 8, + "startRow": 6, + "endRow": 7 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 168 + }, + "angle": 0, + "vertices": { + "#": 169 + }, + "position": { + "#": 174 + }, + "force": { + "#": 175 + }, + "torque": 0, + "positionImpulse": { + "#": 176 + }, + "constraintImpulse": { + "#": 177 + }, + "totalContacts": 0, + "speed": 1.59839, + "angularSpeed": 0, + "velocity": { + "#": 178 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 179 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 180 + }, + "bounds": { + "#": 182 + }, + "positionPrev": { + "#": 185 + }, + "anglePrev": 0, + "axes": { + "#": 186 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 167 + }, + "sleepCounter": 0, + "region": { + "#": 189 + } + }, + [ + { + "#": 167 + } + ], + [ + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + } + ], + { + "x": 420, + "y": 309.48218, + "index": 0, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 460, + "y": 309.48218, + "index": 1, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 460, + "y": 349.48218, + "index": 2, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 420, + "y": 349.48218, + "index": 3, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 440, + "y": 329.48218 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.71373 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 181 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 183 + }, + "max": { + "#": 184 + } + }, + { + "x": 420, + "y": 309.48218 + }, + { + "x": 460, + "y": 351.08057 + }, + { + "x": 440, + "y": 328.76969 + }, + [ + { + "#": 187 + }, + { + "#": 188 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,6,7", + "startCol": 8, + "endCol": 9, + "startRow": 6, + "endRow": 7 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 191 + }, + "angle": 0, + "vertices": { + "#": 192 + }, + "position": { + "#": 197 + }, + "force": { + "#": 198 + }, + "torque": 0, + "positionImpulse": { + "#": 199 + }, + "constraintImpulse": { + "#": 200 + }, + "totalContacts": 0, + "speed": 0.84299, + "angularSpeed": 0, + "velocity": { + "#": 201 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 202 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 203 + }, + "bounds": { + "#": 205 + }, + "positionPrev": { + "#": 208 + }, + "anglePrev": 0, + "axes": { + "#": 209 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 190 + }, + "sleepCounter": 0, + "region": { + "#": 212 + } + }, + [ + { + "#": 190 + } + ], + [ + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + } + ], + { + "x": 300, + "y": 346.96343, + "index": 0, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 340, + "y": 346.96343, + "index": 1, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 340, + "y": 386.96343, + "index": 2, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 300, + "y": 386.96343, + "index": 3, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 320, + "y": 366.96343 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.12074 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 204 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 206 + }, + "max": { + "#": 207 + } + }, + { + "x": 300, + "y": 346.96343 + }, + { + "x": 340, + "y": 387.80642 + }, + { + "x": 320, + "y": 366.83778 + }, + [ + { + "#": 210 + }, + { + "#": 211 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,7,8", + "startCol": 6, + "endCol": 7, + "startRow": 7, + "endRow": 8 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 214 + }, + "angle": 0, + "vertices": { + "#": 215 + }, + "position": { + "#": 220 + }, + "force": { + "#": 221 + }, + "torque": 0, + "positionImpulse": { + "#": 222 + }, + "constraintImpulse": { + "#": 223 + }, + "totalContacts": 0, + "speed": 1.51147, + "angularSpeed": 0, + "velocity": { + "#": 224 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 225 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 226 + }, + "bounds": { + "#": 228 + }, + "positionPrev": { + "#": 231 + }, + "anglePrev": 0, + "axes": { + "#": 232 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 213 + }, + "sleepCounter": 0, + "region": { + "#": 235 + } + }, + [ + { + "#": 213 + } + ], + [ + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + } + ], + { + "x": 340, + "y": 349.08948, + "index": 0, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 380, + "y": 349.08948, + "index": 1, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 380, + "y": 389.08948, + "index": 2, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 340, + "y": 389.08948, + "index": 3, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 360, + "y": 369.08948 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.71033 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 227 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 229 + }, + "max": { + "#": 230 + } + }, + { + "x": 340, + "y": 349.08948 + }, + { + "x": 380, + "y": 390.60095 + }, + { + "x": 360, + "y": 368.37792 + }, + [ + { + "#": 233 + }, + { + "#": 234 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,7,8", + "startCol": 7, + "endCol": 7, + "startRow": 7, + "endRow": 8 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 237 + }, + "angle": 0, + "vertices": { + "#": 238 + }, + "position": { + "#": 243 + }, + "force": { + "#": 244 + }, + "torque": 0, + "positionImpulse": { + "#": 245 + }, + "constraintImpulse": { + "#": 246 + }, + "totalContacts": 0, + "speed": 1.51147, + "angularSpeed": 0, + "velocity": { + "#": 247 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 248 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 249 + }, + "bounds": { + "#": 251 + }, + "positionPrev": { + "#": 254 + }, + "anglePrev": 0, + "axes": { + "#": 255 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 236 + }, + "sleepCounter": 0, + "region": { + "#": 258 + } + }, + [ + { + "#": 236 + } + ], + [ + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + } + ], + { + "x": 380, + "y": 349.84813, + "index": 0, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 420, + "y": 349.84813, + "index": 1, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 420, + "y": 389.84813, + "index": 2, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 380, + "y": 389.84813, + "index": 3, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 400, + "y": 369.84813 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.00877 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 250 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 252 + }, + "max": { + "#": 253 + } + }, + { + "x": 380, + "y": 349.84813 + }, + { + "x": 420, + "y": 391.3596 + }, + { + "x": 400, + "y": 368.66793 + }, + [ + { + "#": 256 + }, + { + "#": 257 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,7,8", + "startCol": 7, + "endCol": 8, + "startRow": 7, + "endRow": 8 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 260 + }, + "angle": 0, + "vertices": { + "#": 261 + }, + "position": { + "#": 266 + }, + "force": { + "#": 267 + }, + "torque": 0, + "positionImpulse": { + "#": 268 + }, + "constraintImpulse": { + "#": 269 + }, + "totalContacts": 0, + "speed": 1.51147, + "angularSpeed": 0, + "velocity": { + "#": 270 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 271 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 272 + }, + "bounds": { + "#": 274 + }, + "positionPrev": { + "#": 277 + }, + "anglePrev": 0, + "axes": { + "#": 278 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 259 + }, + "sleepCounter": 0, + "region": { + "#": 281 + } + }, + [ + { + "#": 259 + } + ], + [ + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + } + ], + { + "x": 420, + "y": 349.08948, + "index": 0, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 460, + "y": 349.08948, + "index": 1, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 460, + "y": 389.08948, + "index": 2, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 420, + "y": 389.08948, + "index": 3, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 440, + "y": 369.08948 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.71033 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 273 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 275 + }, + "max": { + "#": 276 + } + }, + { + "x": 420, + "y": 349.08948 + }, + { + "x": 460, + "y": 390.60095 + }, + { + "x": 440, + "y": 368.37792 + }, + [ + { + "#": 279 + }, + { + "#": 280 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,7,8", + "startCol": 8, + "endCol": 9, + "startRow": 7, + "endRow": 8 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 283 + }, + "angle": 0, + "vertices": { + "#": 284 + }, + "position": { + "#": 289 + }, + "force": { + "#": 290 + }, + "torque": 0, + "positionImpulse": { + "#": 291 + }, + "constraintImpulse": { + "#": 292 + }, + "totalContacts": 0, + "speed": 0.84299, + "angularSpeed": 0, + "velocity": { + "#": 293 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 294 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 295 + }, + "bounds": { + "#": 297 + }, + "positionPrev": { + "#": 300 + }, + "anglePrev": 0, + "axes": { + "#": 301 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 282 + }, + "sleepCounter": 0, + "region": { + "#": 304 + } + }, + [ + { + "#": 282 + } + ], + [ + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + } + ], + { + "x": 460, + "y": 346.96343, + "index": 0, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 500, + "y": 346.96343, + "index": 1, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 500, + "y": 386.96343, + "index": 2, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 460, + "y": 386.96343, + "index": 3, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 480, + "y": 366.96343 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.12074 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 296 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 298 + }, + "max": { + "#": 299 + } + }, + { + "x": 460, + "y": 346.96343 + }, + { + "x": 500, + "y": 387.80642 + }, + { + "x": 480, + "y": 366.83778 + }, + [ + { + "#": 302 + }, + { + "#": 303 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,7,8", + "startCol": 9, + "endCol": 10, + "startRow": 7, + "endRow": 8 + }, + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 306 + }, + "angle": 0, + "vertices": { + "#": 307 + }, + "position": { + "#": 312 + }, + "force": { + "#": 313 + }, + "torque": 0, + "positionImpulse": { + "#": 314 + }, + "constraintImpulse": { + "#": 315 + }, + "totalContacts": 0, + "speed": 0.22264, + "angularSpeed": 0, + "velocity": { + "#": 316 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 317 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 318 + }, + "bounds": { + "#": 320 + }, + "positionPrev": { + "#": 323 + }, + "anglePrev": 0, + "axes": { + "#": 324 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 305 + }, + "sleepCounter": 0, + "region": { + "#": 327 + } + }, + [ + { + "#": 305 + } + ], + [ + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + } + ], + { + "x": 260, + "y": 384.16151, + "index": 0, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 300, + "y": 384.16151, + "index": 1, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 300, + "y": 424.16151, + "index": 2, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 260, + "y": 424.16151, + "index": 3, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 280, + "y": 404.16151 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.38225 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 319 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 321 + }, + "max": { + "#": 322 + } + }, + { + "x": 260, + "y": 384.16151 + }, + { + "x": 300, + "y": 424.38414 + }, + { + "x": 280, + "y": 404.52215 + }, + [ + { + "#": 325 + }, + { + "#": 326 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,8,8", + "startCol": 5, + "endCol": 6, + "startRow": 8, + "endRow": 8 + }, + { + "id": 15, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 329 + }, + "angle": 0, + "vertices": { + "#": 330 + }, + "position": { + "#": 335 + }, + "force": { + "#": 336 + }, + "torque": 0, + "positionImpulse": { + "#": 337 + }, + "constraintImpulse": { + "#": 338 + }, + "totalContacts": 0, + "speed": 0.82478, + "angularSpeed": 0, + "velocity": { + "#": 339 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 340 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 341 + }, + "bounds": { + "#": 343 + }, + "positionPrev": { + "#": 346 + }, + "anglePrev": 0, + "axes": { + "#": 347 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 328 + }, + "sleepCounter": 0, + "region": { + "#": 350 + } + }, + [ + { + "#": 328 + } + ], + [ + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + } + ], + { + "x": 300, + "y": 386.63496, + "index": 0, + "body": { + "#": 328 + }, + "isInternal": false + }, + { + "x": 340, + "y": 386.63496, + "index": 1, + "body": { + "#": 328 + }, + "isInternal": false + }, + { + "x": 340, + "y": 426.63496, + "index": 2, + "body": { + "#": 328 + }, + "isInternal": false + }, + { + "x": 300, + "y": 426.63496, + "index": 3, + "body": { + "#": 328 + }, + "isInternal": false + }, + { + "x": 320, + "y": 406.63496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.13424 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 342 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 344 + }, + "max": { + "#": 345 + } + }, + { + "x": 300, + "y": 386.63496 + }, + { + "x": 340, + "y": 427.45975 + }, + { + "x": 320, + "y": 406.50563 + }, + [ + { + "#": 348 + }, + { + "#": 349 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,8,8", + "startCol": 6, + "endCol": 7, + "startRow": 8, + "endRow": 8 + }, + { + "id": 16, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 352 + }, + "angle": 0, + "vertices": { + "#": 353 + }, + "position": { + "#": 358 + }, + "force": { + "#": 359 + }, + "torque": 0, + "positionImpulse": { + "#": 360 + }, + "constraintImpulse": { + "#": 361 + }, + "totalContacts": 0, + "speed": 1.25395, + "angularSpeed": 0, + "velocity": { + "#": 362 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 363 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 364 + }, + "bounds": { + "#": 366 + }, + "positionPrev": { + "#": 369 + }, + "anglePrev": 0, + "axes": { + "#": 370 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 351 + }, + "sleepCounter": 0, + "region": { + "#": 373 + } + }, + [ + { + "#": 351 + } + ], + [ + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + } + ], + { + "x": 340, + "y": 388.08011, + "index": 0, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 380, + "y": 388.08011, + "index": 1, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 380, + "y": 428.08011, + "index": 2, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 340, + "y": 428.08011, + "index": 3, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 360, + "y": 408.08011 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.67638 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 365 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 367 + }, + "max": { + "#": 368 + } + }, + { + "x": 340, + "y": 388.08011 + }, + { + "x": 380, + "y": 429.33406 + }, + { + "x": 360, + "y": 407.38433 + }, + [ + { + "#": 371 + }, + { + "#": 372 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,8,8", + "startCol": 7, + "endCol": 7, + "startRow": 8, + "endRow": 8 + }, + { + "id": 17, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 375 + }, + "angle": 0, + "vertices": { + "#": 376 + }, + "position": { + "#": 381 + }, + "force": { + "#": 382 + }, + "torque": 0, + "positionImpulse": { + "#": 383 + }, + "constraintImpulse": { + "#": 384 + }, + "totalContacts": 0, + "speed": 1.25395, + "angularSpeed": 0, + "velocity": { + "#": 385 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 386 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 387 + }, + "bounds": { + "#": 389 + }, + "positionPrev": { + "#": 392 + }, + "anglePrev": 0, + "axes": { + "#": 393 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 374 + }, + "sleepCounter": 0, + "region": { + "#": 396 + } + }, + [ + { + "#": 374 + } + ], + [ + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + } + ], + { + "x": 380, + "y": 388.36097, + "index": 0, + "body": { + "#": 374 + }, + "isInternal": false + }, + { + "x": 420, + "y": 388.36097, + "index": 1, + "body": { + "#": 374 + }, + "isInternal": false + }, + { + "x": 420, + "y": 428.36097, + "index": 2, + "body": { + "#": 374 + }, + "isInternal": false + }, + { + "x": 380, + "y": 428.36097, + "index": 3, + "body": { + "#": 374 + }, + "isInternal": false + }, + { + "x": 400, + "y": 408.36097 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.74681 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 388 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 390 + }, + "max": { + "#": 391 + } + }, + { + "x": 380, + "y": 388.36097 + }, + { + "x": 420, + "y": 429.61493 + }, + { + "x": 400, + "y": 407.46447 + }, + [ + { + "#": 394 + }, + { + "#": 395 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,8,8", + "startCol": 7, + "endCol": 8, + "startRow": 8, + "endRow": 8 + }, + { + "id": 18, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 398 + }, + "angle": 0, + "vertices": { + "#": 399 + }, + "position": { + "#": 404 + }, + "force": { + "#": 405 + }, + "torque": 0, + "positionImpulse": { + "#": 406 + }, + "constraintImpulse": { + "#": 407 + }, + "totalContacts": 0, + "speed": 1.25395, + "angularSpeed": 0, + "velocity": { + "#": 408 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 409 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 410 + }, + "bounds": { + "#": 412 + }, + "positionPrev": { + "#": 415 + }, + "anglePrev": 0, + "axes": { + "#": 416 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 397 + }, + "sleepCounter": 0, + "region": { + "#": 419 + } + }, + [ + { + "#": 397 + } + ], + [ + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + } + ], + { + "x": 420, + "y": 388.08011, + "index": 0, + "body": { + "#": 397 + }, + "isInternal": false + }, + { + "x": 460, + "y": 388.08011, + "index": 1, + "body": { + "#": 397 + }, + "isInternal": false + }, + { + "x": 460, + "y": 428.08011, + "index": 2, + "body": { + "#": 397 + }, + "isInternal": false + }, + { + "x": 420, + "y": 428.08011, + "index": 3, + "body": { + "#": 397 + }, + "isInternal": false + }, + { + "x": 440, + "y": 408.08011 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.67638 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 411 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 413 + }, + "max": { + "#": 414 + } + }, + { + "x": 420, + "y": 388.08011 + }, + { + "x": 460, + "y": 429.33406 + }, + { + "x": 440, + "y": 407.38433 + }, + [ + { + "#": 417 + }, + { + "#": 418 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,8,8", + "startCol": 8, + "endCol": 9, + "startRow": 8, + "endRow": 8 + }, + { + "id": 19, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 421 + }, + "angle": 0, + "vertices": { + "#": 422 + }, + "position": { + "#": 427 + }, + "force": { + "#": 428 + }, + "torque": 0, + "positionImpulse": { + "#": 429 + }, + "constraintImpulse": { + "#": 430 + }, + "totalContacts": 0, + "speed": 0.82478, + "angularSpeed": 0, + "velocity": { + "#": 431 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 432 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 433 + }, + "bounds": { + "#": 435 + }, + "positionPrev": { + "#": 438 + }, + "anglePrev": 0, + "axes": { + "#": 439 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 420 + }, + "sleepCounter": 0, + "region": { + "#": 442 + } + }, + [ + { + "#": 420 + } + ], + [ + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + } + ], + { + "x": 460, + "y": 386.63496, + "index": 0, + "body": { + "#": 420 + }, + "isInternal": false + }, + { + "x": 500, + "y": 386.63496, + "index": 1, + "body": { + "#": 420 + }, + "isInternal": false + }, + { + "x": 500, + "y": 426.63496, + "index": 2, + "body": { + "#": 420 + }, + "isInternal": false + }, + { + "x": 460, + "y": 426.63496, + "index": 3, + "body": { + "#": 420 + }, + "isInternal": false + }, + { + "x": 480, + "y": 406.63496 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.13424 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 434 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 436 + }, + "max": { + "#": 437 + } + }, + { + "x": 460, + "y": 386.63496 + }, + { + "x": 500, + "y": 427.45975 + }, + { + "x": 480, + "y": 406.50563 + }, + [ + { + "#": 440 + }, + { + "#": 441 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,8,8", + "startCol": 9, + "endCol": 10, + "startRow": 8, + "endRow": 8 + }, + { + "id": 20, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 444 + }, + "angle": 0, + "vertices": { + "#": 445 + }, + "position": { + "#": 450 + }, + "force": { + "#": 451 + }, + "torque": 0, + "positionImpulse": { + "#": 452 + }, + "constraintImpulse": { + "#": 453 + }, + "totalContacts": 0, + "speed": 0.22264, + "angularSpeed": 0, + "velocity": { + "#": 454 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 455 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 456 + }, + "bounds": { + "#": 458 + }, + "positionPrev": { + "#": 461 + }, + "anglePrev": 0, + "axes": { + "#": 462 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 443 + }, + "sleepCounter": 0, + "region": { + "#": 465 + } + }, + [ + { + "#": 443 + } + ], + [ + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + } + ], + { + "x": 500, + "y": 384.16151, + "index": 0, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 540, + "y": 384.16151, + "index": 1, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 540, + "y": 424.16151, + "index": 2, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 500, + "y": 424.16151, + "index": 3, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 520, + "y": 404.16151 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.38225 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 457 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 459 + }, + "max": { + "#": 460 + } + }, + { + "x": 500, + "y": 384.16151 + }, + { + "x": 540, + "y": 424.38414 + }, + { + "x": 520, + "y": 404.52215 + }, + [ + { + "#": 463 + }, + { + "#": 464 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,8,8", + "startCol": 10, + "endCol": 11, + "startRow": 8, + "endRow": 8 + }, + { + "id": 21, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 467 + }, + "angle": 0, + "vertices": { + "#": 468 + }, + "position": { + "#": 473 + }, + "force": { + "#": 474 + }, + "torque": 0, + "positionImpulse": { + "#": 475 + }, + "constraintImpulse": { + "#": 476 + }, + "totalContacts": 0, + "speed": 0.08388, + "angularSpeed": 0, + "velocity": { + "#": 477 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 478 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 479 + }, + "bounds": { + "#": 481 + }, + "positionPrev": { + "#": 484 + }, + "anglePrev": 0, + "axes": { + "#": 485 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 466 + }, + "sleepCounter": 0, + "region": { + "#": 488 + } + }, + [ + { + "#": 466 + } + ], + [ + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + } + ], + { + "x": 220, + "y": 421.52096, + "index": 0, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 260, + "y": 421.52096, + "index": 1, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 260, + "y": 461.52096, + "index": 2, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 220, + "y": 461.52096, + "index": 3, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 240, + "y": 441.52096 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": -0.35032 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.42888 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 480 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 482 + }, + "max": { + "#": 483 + } + }, + { + "x": 220, + "y": 421.43708 + }, + { + "x": 260, + "y": 461.52096 + }, + { + "x": 240, + "y": 441.91371 + }, + [ + { + "#": 486 + }, + { + "#": 487 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,8,9", + "startCol": 4, + "endCol": 5, + "startRow": 8, + "endRow": 9 + }, + { + "id": 22, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 490 + }, + "angle": 0, + "vertices": { + "#": 491 + }, + "position": { + "#": 496 + }, + "force": { + "#": 497 + }, + "torque": 0, + "positionImpulse": { + "#": 498 + }, + "constraintImpulse": { + "#": 499 + }, + "totalContacts": 0, + "speed": 0.23372, + "angularSpeed": 0, + "velocity": { + "#": 500 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 501 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 502 + }, + "bounds": { + "#": 504 + }, + "positionPrev": { + "#": 507 + }, + "anglePrev": 0, + "axes": { + "#": 508 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 489 + }, + "sleepCounter": 0, + "region": { + "#": 511 + } + }, + [ + { + "#": 489 + } + ], + [ + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + } + ], + { + "x": 260, + "y": 423.87784, + "index": 0, + "body": { + "#": 489 + }, + "isInternal": false + }, + { + "x": 300, + "y": 423.87784, + "index": 1, + "body": { + "#": 489 + }, + "isInternal": false + }, + { + "x": 300, + "y": 463.87784, + "index": 2, + "body": { + "#": 489 + }, + "isInternal": false + }, + { + "x": 260, + "y": 463.87784, + "index": 3, + "body": { + "#": 489 + }, + "isInternal": false + }, + { + "x": 280, + "y": 443.87784 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.32284 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 503 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 505 + }, + "max": { + "#": 506 + } + }, + { + "x": 260, + "y": 423.87784 + }, + { + "x": 300, + "y": 464.11156 + }, + { + "x": 280, + "y": 444.22228 + }, + [ + { + "#": 509 + }, + { + "#": 510 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,8,9", + "startCol": 5, + "endCol": 6, + "startRow": 8, + "endRow": 9 + }, + { + "id": 23, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 513 + }, + "angle": 0, + "vertices": { + "#": 514 + }, + "position": { + "#": 519 + }, + "force": { + "#": 520 + }, + "torque": 0, + "positionImpulse": { + "#": 521 + }, + "constraintImpulse": { + "#": 522 + }, + "totalContacts": 0, + "speed": 0.76723, + "angularSpeed": 0, + "velocity": { + "#": 523 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 524 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 525 + }, + "bounds": { + "#": 527 + }, + "positionPrev": { + "#": 530 + }, + "anglePrev": 0, + "axes": { + "#": 531 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 512 + }, + "sleepCounter": 0, + "region": { + "#": 534 + } + }, + [ + { + "#": 512 + } + ], + [ + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + } + ], + { + "x": 300, + "y": 425.77527, + "index": 0, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 340, + "y": 425.77527, + "index": 1, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 340, + "y": 465.77527, + "index": 2, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 300, + "y": 465.77527, + "index": 3, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 320, + "y": 445.77527 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.14532 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 526 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 528 + }, + "max": { + "#": 529 + } + }, + { + "x": 300, + "y": 425.77527 + }, + { + "x": 340, + "y": 466.5425 + }, + { + "x": 320, + "y": 445.63628 + }, + [ + { + "#": 532 + }, + { + "#": 533 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,8,9", + "startCol": 6, + "endCol": 7, + "startRow": 8, + "endRow": 9 + }, + { + "id": 24, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 536 + }, + "angle": 0, + "vertices": { + "#": 537 + }, + "position": { + "#": 542 + }, + "force": { + "#": 543 + }, + "torque": 0, + "positionImpulse": { + "#": 544 + }, + "constraintImpulse": { + "#": 545 + }, + "totalContacts": 0, + "speed": 0.94416, + "angularSpeed": 0, + "velocity": { + "#": 546 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 547 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 548 + }, + "bounds": { + "#": 550 + }, + "positionPrev": { + "#": 553 + }, + "anglePrev": 0, + "axes": { + "#": 554 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 535 + }, + "sleepCounter": 0, + "region": { + "#": 557 + } + }, + [ + { + "#": 535 + } + ], + [ + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + } + ], + { + "x": 340, + "y": 426.61675, + "index": 0, + "body": { + "#": 535 + }, + "isInternal": false + }, + { + "x": 380, + "y": 426.61675, + "index": 1, + "body": { + "#": 535 + }, + "isInternal": false + }, + { + "x": 380, + "y": 466.61675, + "index": 2, + "body": { + "#": 535 + }, + "isInternal": false + }, + { + "x": 340, + "y": 466.61675, + "index": 3, + "body": { + "#": 535 + }, + "isInternal": false + }, + { + "x": 360, + "y": 446.61675 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.55429 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 549 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 551 + }, + "max": { + "#": 552 + } + }, + { + "x": 340, + "y": 426.61675 + }, + { + "x": 380, + "y": 467.56092 + }, + { + "x": 360, + "y": 445.9927 + }, + [ + { + "#": 555 + }, + { + "#": 556 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,8,9", + "startCol": 7, + "endCol": 7, + "startRow": 8, + "endRow": 9 + }, + { + "id": 25, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 559 + }, + "angle": 0, + "vertices": { + "#": 560 + }, + "position": { + "#": 565 + }, + "force": { + "#": 566 + }, + "torque": 0, + "positionImpulse": { + "#": 567 + }, + "constraintImpulse": { + "#": 568 + }, + "totalContacts": 0, + "speed": 0.94416, + "angularSpeed": 0, + "velocity": { + "#": 569 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 570 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 571 + }, + "bounds": { + "#": 573 + }, + "positionPrev": { + "#": 576 + }, + "anglePrev": 0, + "axes": { + "#": 577 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 558 + }, + "sleepCounter": 0, + "region": { + "#": 580 + } + }, + [ + { + "#": 558 + } + ], + [ + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + } + ], + { + "x": 380, + "y": 426.68659, + "index": 0, + "body": { + "#": 558 + }, + "isInternal": false + }, + { + "x": 420, + "y": 426.68659, + "index": 1, + "body": { + "#": 558 + }, + "isInternal": false + }, + { + "x": 420, + "y": 466.68659, + "index": 2, + "body": { + "#": 558 + }, + "isInternal": false + }, + { + "x": 380, + "y": 466.68659, + "index": 3, + "body": { + "#": 558 + }, + "isInternal": false + }, + { + "x": 400, + "y": 446.68659 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.55429 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 572 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 574 + }, + "max": { + "#": 575 + } + }, + { + "x": 380, + "y": 426.68659 + }, + { + "x": 420, + "y": 467.63076 + }, + { + "x": 400, + "y": 446.02229 + }, + [ + { + "#": 578 + }, + { + "#": 579 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,8,9", + "startCol": 7, + "endCol": 8, + "startRow": 8, + "endRow": 9 + }, + { + "id": 26, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 582 + }, + "angle": 0, + "vertices": { + "#": 583 + }, + "position": { + "#": 588 + }, + "force": { + "#": 589 + }, + "torque": 0, + "positionImpulse": { + "#": 590 + }, + "constraintImpulse": { + "#": 591 + }, + "totalContacts": 0, + "speed": 0.94416, + "angularSpeed": 0, + "velocity": { + "#": 592 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 593 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 594 + }, + "bounds": { + "#": 596 + }, + "positionPrev": { + "#": 599 + }, + "anglePrev": 0, + "axes": { + "#": 600 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 581 + }, + "sleepCounter": 0, + "region": { + "#": 603 + } + }, + [ + { + "#": 581 + } + ], + [ + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + } + ], + { + "x": 420, + "y": 426.61675, + "index": 0, + "body": { + "#": 581 + }, + "isInternal": false + }, + { + "x": 460, + "y": 426.61675, + "index": 1, + "body": { + "#": 581 + }, + "isInternal": false + }, + { + "x": 460, + "y": 466.61675, + "index": 2, + "body": { + "#": 581 + }, + "isInternal": false + }, + { + "x": 420, + "y": 466.61675, + "index": 3, + "body": { + "#": 581 + }, + "isInternal": false + }, + { + "x": 440, + "y": 446.61675 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.55429 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 595 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 597 + }, + "max": { + "#": 598 + } + }, + { + "x": 420, + "y": 426.61675 + }, + { + "x": 460, + "y": 467.56092 + }, + { + "x": 440, + "y": 445.9927 + }, + [ + { + "#": 601 + }, + { + "#": 602 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,8,9", + "startCol": 8, + "endCol": 9, + "startRow": 8, + "endRow": 9 + }, + { + "id": 27, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 605 + }, + "angle": 0, + "vertices": { + "#": 606 + }, + "position": { + "#": 611 + }, + "force": { + "#": 612 + }, + "torque": 0, + "positionImpulse": { + "#": 613 + }, + "constraintImpulse": { + "#": 614 + }, + "totalContacts": 0, + "speed": 0.76723, + "angularSpeed": 0, + "velocity": { + "#": 615 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 616 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 617 + }, + "bounds": { + "#": 619 + }, + "positionPrev": { + "#": 622 + }, + "anglePrev": 0, + "axes": { + "#": 623 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 604 + }, + "sleepCounter": 0, + "region": { + "#": 626 + } + }, + [ + { + "#": 604 + } + ], + [ + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + } + ], + { + "x": 460, + "y": 425.77527, + "index": 0, + "body": { + "#": 604 + }, + "isInternal": false + }, + { + "x": 500, + "y": 425.77527, + "index": 1, + "body": { + "#": 604 + }, + "isInternal": false + }, + { + "x": 500, + "y": 465.77527, + "index": 2, + "body": { + "#": 604 + }, + "isInternal": false + }, + { + "x": 460, + "y": 465.77527, + "index": 3, + "body": { + "#": 604 + }, + "isInternal": false + }, + { + "x": 480, + "y": 445.77527 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.14532 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 618 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 620 + }, + "max": { + "#": 621 + } + }, + { + "x": 460, + "y": 425.77527 + }, + { + "x": 500, + "y": 466.5425 + }, + { + "x": 480, + "y": 445.63628 + }, + [ + { + "#": 624 + }, + { + "#": 625 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,8,9", + "startCol": 9, + "endCol": 10, + "startRow": 8, + "endRow": 9 + }, + { + "id": 28, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 628 + }, + "angle": 0, + "vertices": { + "#": 629 + }, + "position": { + "#": 634 + }, + "force": { + "#": 635 + }, + "torque": 0, + "positionImpulse": { + "#": 636 + }, + "constraintImpulse": { + "#": 637 + }, + "totalContacts": 0, + "speed": 0.23372, + "angularSpeed": 0, + "velocity": { + "#": 638 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 639 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 640 + }, + "bounds": { + "#": 642 + }, + "positionPrev": { + "#": 645 + }, + "anglePrev": 0, + "axes": { + "#": 646 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 627 + }, + "sleepCounter": 0, + "region": { + "#": 649 + } + }, + [ + { + "#": 627 + } + ], + [ + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + } + ], + { + "x": 500, + "y": 423.87784, + "index": 0, + "body": { + "#": 627 + }, + "isInternal": false + }, + { + "x": 540, + "y": 423.87784, + "index": 1, + "body": { + "#": 627 + }, + "isInternal": false + }, + { + "x": 540, + "y": 463.87784, + "index": 2, + "body": { + "#": 627 + }, + "isInternal": false + }, + { + "x": 500, + "y": 463.87784, + "index": 3, + "body": { + "#": 627 + }, + "isInternal": false + }, + { + "x": 520, + "y": 443.87784 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.32284 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 641 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 643 + }, + "max": { + "#": 644 + } + }, + { + "x": 500, + "y": 423.87784 + }, + { + "x": 540, + "y": 464.11156 + }, + { + "x": 520, + "y": 444.22228 + }, + [ + { + "#": 647 + }, + { + "#": 648 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,8,9", + "startCol": 10, + "endCol": 11, + "startRow": 8, + "endRow": 9 + }, + { + "id": 29, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 651 + }, + "angle": 0, + "vertices": { + "#": 652 + }, + "position": { + "#": 657 + }, + "force": { + "#": 658 + }, + "torque": 0, + "positionImpulse": { + "#": 659 + }, + "constraintImpulse": { + "#": 660 + }, + "totalContacts": 0, + "speed": 0.08388, + "angularSpeed": 0, + "velocity": { + "#": 661 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 662 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 663 + }, + "bounds": { + "#": 665 + }, + "positionPrev": { + "#": 668 + }, + "anglePrev": 0, + "axes": { + "#": 669 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 650 + }, + "sleepCounter": 0, + "region": { + "#": 672 + } + }, + [ + { + "#": 650 + } + ], + [ + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + } + ], + { + "x": 540, + "y": 421.52096, + "index": 0, + "body": { + "#": 650 + }, + "isInternal": false + }, + { + "x": 580, + "y": 421.52096, + "index": 1, + "body": { + "#": 650 + }, + "isInternal": false + }, + { + "x": 580, + "y": 461.52096, + "index": 2, + "body": { + "#": 650 + }, + "isInternal": false + }, + { + "x": 540, + "y": 461.52096, + "index": 3, + "body": { + "#": 650 + }, + "isInternal": false + }, + { + "x": 560, + "y": 441.52096 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": -0.35032 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.42888 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 664 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 666 + }, + "max": { + "#": 667 + } + }, + { + "x": 540, + "y": 421.43708 + }, + { + "x": 580, + "y": 461.52096 + }, + { + "x": 560, + "y": 441.91371 + }, + [ + { + "#": 670 + }, + { + "#": 671 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,8,9", + "startCol": 11, + "endCol": 12, + "startRow": 8, + "endRow": 9 + }, + { + "id": 30, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 674 + }, + "angle": 0, + "vertices": { + "#": 675 + }, + "position": { + "#": 680 + }, + "force": { + "#": 681 + }, + "torque": 0, + "positionImpulse": { + "#": 682 + }, + "constraintImpulse": { + "#": 683 + }, + "totalContacts": 0, + "speed": 0.1323, + "angularSpeed": 0, + "velocity": { + "#": 684 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 685 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 686 + }, + "bounds": { + "#": 688 + }, + "positionPrev": { + "#": 691 + }, + "anglePrev": 0, + "axes": { + "#": 692 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 673 + }, + "sleepCounter": 0, + "region": { + "#": 695 + } + }, + [ + { + "#": 673 + } + ], + [ + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + } + ], + { + "x": 180, + "y": 460.24063, + "index": 0, + "body": { + "#": 673 + }, + "isInternal": false + }, + { + "x": 220, + "y": 460.24063, + "index": 1, + "body": { + "#": 673 + }, + "isInternal": false + }, + { + "x": 220, + "y": 500.24063, + "index": 2, + "body": { + "#": 673 + }, + "isInternal": false + }, + { + "x": 180, + "y": 500.24063, + "index": 3, + "body": { + "#": 673 + }, + "isInternal": false + }, + { + "x": 200, + "y": 480.24063 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.01154 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 687 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 689 + }, + "max": { + "#": 690 + } + }, + { + "x": 180, + "y": 460.24063 + }, + { + "x": 220, + "y": 500.37292 + }, + { + "x": 200, + "y": 480.2505 + }, + [ + { + "#": 693 + }, + { + "#": 694 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,9,10", + "startCol": 3, + "endCol": 4, + "startRow": 9, + "endRow": 10 + }, + { + "id": 31, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 697 + }, + "angle": 0, + "vertices": { + "#": 698 + }, + "position": { + "#": 703 + }, + "force": { + "#": 704 + }, + "torque": 0, + "positionImpulse": { + "#": 705 + }, + "constraintImpulse": { + "#": 706 + }, + "totalContacts": 0, + "speed": 0.05874, + "angularSpeed": 0, + "velocity": { + "#": 707 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 708 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 709 + }, + "bounds": { + "#": 711 + }, + "positionPrev": { + "#": 714 + }, + "anglePrev": 0, + "axes": { + "#": 715 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 696 + }, + "sleepCounter": 0, + "region": { + "#": 718 + } + }, + [ + { + "#": 696 + } + ], + [ + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + } + ], + { + "x": 220, + "y": 461.32085, + "index": 0, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 260, + "y": 461.32085, + "index": 1, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 260, + "y": 501.32085, + "index": 2, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 220, + "y": 501.32085, + "index": 3, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 240, + "y": 481.32085 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": -0.32986 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.32952 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 710 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 712 + }, + "max": { + "#": 713 + } + }, + { + "x": 220, + "y": 461.26211 + }, + { + "x": 260, + "y": 501.32085 + }, + { + "x": 240, + "y": 481.6865 + }, + [ + { + "#": 716 + }, + { + "#": 717 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,9,10", + "startCol": 4, + "endCol": 5, + "startRow": 9, + "endRow": 10 + }, + { + "id": 32, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 720 + }, + "angle": 0, + "vertices": { + "#": 721 + }, + "position": { + "#": 726 + }, + "force": { + "#": 727 + }, + "torque": 0, + "positionImpulse": { + "#": 728 + }, + "constraintImpulse": { + "#": 729 + }, + "totalContacts": 0, + "speed": 0.26587, + "angularSpeed": 0, + "velocity": { + "#": 730 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 731 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 732 + }, + "bounds": { + "#": 734 + }, + "positionPrev": { + "#": 737 + }, + "anglePrev": 0, + "axes": { + "#": 738 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 719 + }, + "sleepCounter": 0, + "region": { + "#": 741 + } + }, + [ + { + "#": 719 + } + ], + [ + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + } + ], + { + "x": 260, + "y": 463.13921, + "index": 0, + "body": { + "#": 719 + }, + "isInternal": false + }, + { + "x": 300, + "y": 463.13921, + "index": 1, + "body": { + "#": 719 + }, + "isInternal": false + }, + { + "x": 300, + "y": 503.13921, + "index": 2, + "body": { + "#": 719 + }, + "isInternal": false + }, + { + "x": 260, + "y": 503.13921, + "index": 3, + "body": { + "#": 719 + }, + "isInternal": false + }, + { + "x": 280, + "y": 483.13921 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.24941 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 733 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 735 + }, + "max": { + "#": 736 + } + }, + { + "x": 260, + "y": 463.13921 + }, + { + "x": 300, + "y": 503.40507 + }, + { + "x": 280, + "y": 483.43058 + }, + [ + { + "#": 739 + }, + { + "#": 740 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,9,10", + "startCol": 5, + "endCol": 6, + "startRow": 9, + "endRow": 10 + }, + { + "id": 33, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 743 + }, + "angle": 0, + "vertices": { + "#": 744 + }, + "position": { + "#": 749 + }, + "force": { + "#": 750 + }, + "torque": 0, + "positionImpulse": { + "#": 751 + }, + "constraintImpulse": { + "#": 752 + }, + "totalContacts": 0, + "speed": 0.67923, + "angularSpeed": 0, + "velocity": { + "#": 753 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 754 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 755 + }, + "bounds": { + "#": 757 + }, + "positionPrev": { + "#": 760 + }, + "anglePrev": 0, + "axes": { + "#": 761 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 742 + }, + "sleepCounter": 0, + "region": { + "#": 764 + } + }, + [ + { + "#": 742 + } + ], + [ + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + } + ], + { + "x": 300, + "y": 464.45051, + "index": 0, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 340, + "y": 464.45051, + "index": 1, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 340, + "y": 504.45051, + "index": 2, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 300, + "y": 504.45051, + "index": 3, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 320, + "y": 484.45051 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.141 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 756 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 758 + }, + "max": { + "#": 759 + } + }, + { + "x": 300, + "y": 464.45051 + }, + { + "x": 340, + "y": 505.12974 + }, + { + "x": 320, + "y": 484.30704 + }, + [ + { + "#": 762 + }, + { + "#": 763 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,9,10", + "startCol": 6, + "endCol": 7, + "startRow": 9, + "endRow": 10 + }, + { + "id": 34, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 766 + }, + "angle": 0, + "vertices": { + "#": 767 + }, + "position": { + "#": 772 + }, + "force": { + "#": 773 + }, + "torque": 0, + "positionImpulse": { + "#": 774 + }, + "constraintImpulse": { + "#": 775 + }, + "totalContacts": 0, + "speed": 0.71352, + "angularSpeed": 0, + "velocity": { + "#": 776 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 777 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 778 + }, + "bounds": { + "#": 780 + }, + "positionPrev": { + "#": 783 + }, + "anglePrev": 0, + "axes": { + "#": 784 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 765 + }, + "sleepCounter": 0, + "region": { + "#": 787 + } + }, + [ + { + "#": 765 + } + ], + [ + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + } + ], + { + "x": 340, + "y": 464.8614, + "index": 0, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 380, + "y": 464.8614, + "index": 1, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 380, + "y": 504.8614, + "index": 2, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 340, + "y": 504.8614, + "index": 3, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 360, + "y": 484.8614 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.36076 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 779 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 781 + }, + "max": { + "#": 782 + } + }, + { + "x": 340, + "y": 464.8614 + }, + { + "x": 380, + "y": 505.57492 + }, + { + "x": 360, + "y": 484.39005 + }, + [ + { + "#": 785 + }, + { + "#": 786 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,9,10", + "startCol": 7, + "endCol": 7, + "startRow": 9, + "endRow": 10 + }, + { + "id": 35, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 789 + }, + "angle": 0, + "vertices": { + "#": 790 + }, + "position": { + "#": 795 + }, + "force": { + "#": 796 + }, + "torque": 0, + "positionImpulse": { + "#": 797 + }, + "constraintImpulse": { + "#": 798 + }, + "totalContacts": 0, + "speed": 0.71352, + "angularSpeed": 0, + "velocity": { + "#": 799 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 800 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 801 + }, + "bounds": { + "#": 803 + }, + "positionPrev": { + "#": 806 + }, + "anglePrev": 0, + "axes": { + "#": 807 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 788 + }, + "sleepCounter": 0, + "region": { + "#": 810 + } + }, + [ + { + "#": 788 + } + ], + [ + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + } + ], + { + "x": 380, + "y": 464.87177, + "index": 0, + "body": { + "#": 788 + }, + "isInternal": false + }, + { + "x": 420, + "y": 464.87177, + "index": 1, + "body": { + "#": 788 + }, + "isInternal": false + }, + { + "x": 420, + "y": 504.87177, + "index": 2, + "body": { + "#": 788 + }, + "isInternal": false + }, + { + "x": 380, + "y": 504.87177, + "index": 3, + "body": { + "#": 788 + }, + "isInternal": false + }, + { + "x": 400, + "y": 484.87177 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.36076 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 802 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 804 + }, + "max": { + "#": 805 + } + }, + { + "x": 380, + "y": 464.87177 + }, + { + "x": 420, + "y": 505.58529 + }, + { + "x": 400, + "y": 484.40042 + }, + [ + { + "#": 808 + }, + { + "#": 809 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,9,10", + "startCol": 7, + "endCol": 8, + "startRow": 9, + "endRow": 10 + }, + { + "id": 36, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 812 + }, + "angle": 0, + "vertices": { + "#": 813 + }, + "position": { + "#": 818 + }, + "force": { + "#": 819 + }, + "torque": 0, + "positionImpulse": { + "#": 820 + }, + "constraintImpulse": { + "#": 821 + }, + "totalContacts": 0, + "speed": 0.71352, + "angularSpeed": 0, + "velocity": { + "#": 822 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 823 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 824 + }, + "bounds": { + "#": 826 + }, + "positionPrev": { + "#": 829 + }, + "anglePrev": 0, + "axes": { + "#": 830 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 811 + }, + "sleepCounter": 0, + "region": { + "#": 833 + } + }, + [ + { + "#": 811 + } + ], + [ + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + } + ], + { + "x": 420, + "y": 464.8614, + "index": 0, + "body": { + "#": 811 + }, + "isInternal": false + }, + { + "x": 460, + "y": 464.8614, + "index": 1, + "body": { + "#": 811 + }, + "isInternal": false + }, + { + "x": 460, + "y": 504.8614, + "index": 2, + "body": { + "#": 811 + }, + "isInternal": false + }, + { + "x": 420, + "y": 504.8614, + "index": 3, + "body": { + "#": 811 + }, + "isInternal": false + }, + { + "x": 440, + "y": 484.8614 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.36076 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 825 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 827 + }, + "max": { + "#": 828 + } + }, + { + "x": 420, + "y": 464.8614 + }, + { + "x": 460, + "y": 505.57492 + }, + { + "x": 440, + "y": 484.39005 + }, + [ + { + "#": 831 + }, + { + "#": 832 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,9,10", + "startCol": 8, + "endCol": 9, + "startRow": 9, + "endRow": 10 + }, + { + "id": 37, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 835 + }, + "angle": 0, + "vertices": { + "#": 836 + }, + "position": { + "#": 841 + }, + "force": { + "#": 842 + }, + "torque": 0, + "positionImpulse": { + "#": 843 + }, + "constraintImpulse": { + "#": 844 + }, + "totalContacts": 0, + "speed": 0.67923, + "angularSpeed": 0, + "velocity": { + "#": 845 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 846 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 847 + }, + "bounds": { + "#": 849 + }, + "positionPrev": { + "#": 852 + }, + "anglePrev": 0, + "axes": { + "#": 853 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 834 + }, + "sleepCounter": 0, + "region": { + "#": 856 + } + }, + [ + { + "#": 834 + } + ], + [ + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + } + ], + { + "x": 460, + "y": 464.45051, + "index": 0, + "body": { + "#": 834 + }, + "isInternal": false + }, + { + "x": 500, + "y": 464.45051, + "index": 1, + "body": { + "#": 834 + }, + "isInternal": false + }, + { + "x": 500, + "y": 504.45051, + "index": 2, + "body": { + "#": 834 + }, + "isInternal": false + }, + { + "x": 460, + "y": 504.45051, + "index": 3, + "body": { + "#": 834 + }, + "isInternal": false + }, + { + "x": 480, + "y": 484.45051 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.141 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 848 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 850 + }, + "max": { + "#": 851 + } + }, + { + "x": 460, + "y": 464.45051 + }, + { + "x": 500, + "y": 505.12974 + }, + { + "x": 480, + "y": 484.30704 + }, + [ + { + "#": 854 + }, + { + "#": 855 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,9,10", + "startCol": 9, + "endCol": 10, + "startRow": 9, + "endRow": 10 + }, + { + "id": 38, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 858 + }, + "angle": 0, + "vertices": { + "#": 859 + }, + "position": { + "#": 864 + }, + "force": { + "#": 865 + }, + "torque": 0, + "positionImpulse": { + "#": 866 + }, + "constraintImpulse": { + "#": 867 + }, + "totalContacts": 0, + "speed": 0.26587, + "angularSpeed": 0, + "velocity": { + "#": 868 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 869 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 870 + }, + "bounds": { + "#": 872 + }, + "positionPrev": { + "#": 875 + }, + "anglePrev": 0, + "axes": { + "#": 876 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 857 + }, + "sleepCounter": 0, + "region": { + "#": 879 + } + }, + [ + { + "#": 857 + } + ], + [ + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + } + ], + { + "x": 500, + "y": 463.13921, + "index": 0, + "body": { + "#": 857 + }, + "isInternal": false + }, + { + "x": 540, + "y": 463.13921, + "index": 1, + "body": { + "#": 857 + }, + "isInternal": false + }, + { + "x": 540, + "y": 503.13921, + "index": 2, + "body": { + "#": 857 + }, + "isInternal": false + }, + { + "x": 500, + "y": 503.13921, + "index": 3, + "body": { + "#": 857 + }, + "isInternal": false + }, + { + "x": 520, + "y": 483.13921 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.24941 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 871 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 873 + }, + "max": { + "#": 874 + } + }, + { + "x": 500, + "y": 463.13921 + }, + { + "x": 540, + "y": 503.40507 + }, + { + "x": 520, + "y": 483.43058 + }, + [ + { + "#": 877 + }, + { + "#": 878 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,9,10", + "startCol": 10, + "endCol": 11, + "startRow": 9, + "endRow": 10 + }, + { + "id": 39, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 881 + }, + "angle": 0, + "vertices": { + "#": 882 + }, + "position": { + "#": 887 + }, + "force": { + "#": 888 + }, + "torque": 0, + "positionImpulse": { + "#": 889 + }, + "constraintImpulse": { + "#": 890 + }, + "totalContacts": 0, + "speed": 0.05874, + "angularSpeed": 0, + "velocity": { + "#": 891 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 892 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 893 + }, + "bounds": { + "#": 895 + }, + "positionPrev": { + "#": 898 + }, + "anglePrev": 0, + "axes": { + "#": 899 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 880 + }, + "sleepCounter": 0, + "region": { + "#": 902 + } + }, + [ + { + "#": 880 + } + ], + [ + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + } + ], + { + "x": 540, + "y": 461.32085, + "index": 0, + "body": { + "#": 880 + }, + "isInternal": false + }, + { + "x": 580, + "y": 461.32085, + "index": 1, + "body": { + "#": 880 + }, + "isInternal": false + }, + { + "x": 580, + "y": 501.32085, + "index": 2, + "body": { + "#": 880 + }, + "isInternal": false + }, + { + "x": 540, + "y": 501.32085, + "index": 3, + "body": { + "#": 880 + }, + "isInternal": false + }, + { + "x": 560, + "y": 481.32085 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": -0.32986 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.32952 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 894 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 896 + }, + "max": { + "#": 897 + } + }, + { + "x": 540, + "y": 461.26211 + }, + { + "x": 580, + "y": 501.32085 + }, + { + "x": 560, + "y": 481.6865 + }, + [ + { + "#": 900 + }, + { + "#": 901 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,9,10", + "startCol": 11, + "endCol": 12, + "startRow": 9, + "endRow": 10 + }, + { + "id": 40, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 904 + }, + "angle": 0, + "vertices": { + "#": 905 + }, + "position": { + "#": 910 + }, + "force": { + "#": 911 + }, + "torque": 0, + "positionImpulse": { + "#": 912 + }, + "constraintImpulse": { + "#": 913 + }, + "totalContacts": 0, + "speed": 0.1323, + "angularSpeed": 0, + "velocity": { + "#": 914 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 915 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 916 + }, + "bounds": { + "#": 918 + }, + "positionPrev": { + "#": 921 + }, + "anglePrev": 0, + "axes": { + "#": 922 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 903 + }, + "sleepCounter": 0, + "region": { + "#": 925 + } + }, + [ + { + "#": 903 + } + ], + [ + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + } + ], + { + "x": 580, + "y": 460.24063, + "index": 0, + "body": { + "#": 903 + }, + "isInternal": false + }, + { + "x": 620, + "y": 460.24063, + "index": 1, + "body": { + "#": 903 + }, + "isInternal": false + }, + { + "x": 620, + "y": 500.24063, + "index": 2, + "body": { + "#": 903 + }, + "isInternal": false + }, + { + "x": 580, + "y": 500.24063, + "index": 3, + "body": { + "#": 903 + }, + "isInternal": false + }, + { + "x": 600, + "y": 480.24063 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.01154 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 917 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 919 + }, + "max": { + "#": 920 + } + }, + { + "x": 580, + "y": 460.24063 + }, + { + "x": 620, + "y": 500.37292 + }, + { + "x": 600, + "y": 480.2505 + }, + [ + { + "#": 923 + }, + { + "#": 924 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,12,9,10", + "startCol": 12, + "endCol": 12, + "startRow": 9, + "endRow": 10 + }, + { + "id": 41, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 927 + }, + "angle": 0, + "vertices": { + "#": 928 + }, + "position": { + "#": 933 + }, + "force": { + "#": 934 + }, + "torque": 0, + "positionImpulse": { + "#": 935 + }, + "constraintImpulse": { + "#": 936 + }, + "totalContacts": 0, + "speed": 0.2917, + "angularSpeed": 0, + "velocity": { + "#": 937 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 938 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 939 + }, + "bounds": { + "#": 941 + }, + "positionPrev": { + "#": 944 + }, + "anglePrev": 0, + "axes": { + "#": 945 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 926 + }, + "sleepCounter": 0, + "region": { + "#": 948 + } + }, + [ + { + "#": 926 + } + ], + [ + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + }, + { + "#": 932 + } + ], + { + "x": 140, + "y": 499.95589, + "index": 0, + "body": { + "#": 926 + }, + "isInternal": false + }, + { + "x": 180, + "y": 499.95589, + "index": 1, + "body": { + "#": 926 + }, + "isInternal": false + }, + { + "x": 180, + "y": 539.95589, + "index": 2, + "body": { + "#": 926 + }, + "isInternal": false + }, + { + "x": 140, + "y": 539.95589, + "index": 3, + "body": { + "#": 926 + }, + "isInternal": false + }, + { + "x": 160, + "y": 519.95589 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.0052 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 940 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 942 + }, + "max": { + "#": 943 + } + }, + { + "x": 140, + "y": 499.95589 + }, + { + "x": 180, + "y": 540.24759 + }, + { + "x": 160, + "y": 519.95223 + }, + [ + { + "#": 946 + }, + { + "#": 947 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,10,11", + "startCol": 2, + "endCol": 3, + "startRow": 10, + "endRow": 11 + }, + { + "id": 42, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 950 + }, + "angle": 0, + "vertices": { + "#": 951 + }, + "position": { + "#": 956 + }, + "force": { + "#": 957 + }, + "torque": 0, + "positionImpulse": { + "#": 958 + }, + "constraintImpulse": { + "#": 959 + }, + "totalContacts": 0, + "speed": 0.15077, + "angularSpeed": 0, + "velocity": { + "#": 960 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 961 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 962 + }, + "bounds": { + "#": 964 + }, + "positionPrev": { + "#": 967 + }, + "anglePrev": 0, + "axes": { + "#": 968 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 949 + }, + "sleepCounter": 0, + "region": { + "#": 971 + } + }, + [ + { + "#": 949 + } + ], + [ + { + "#": 952 + }, + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + } + ], + { + "x": 180, + "y": 500.12622, + "index": 0, + "body": { + "#": 949 + }, + "isInternal": false + }, + { + "x": 220, + "y": 500.12622, + "index": 1, + "body": { + "#": 949 + }, + "isInternal": false + }, + { + "x": 220, + "y": 540.12622, + "index": 2, + "body": { + "#": 949 + }, + "isInternal": false + }, + { + "x": 180, + "y": 540.12622, + "index": 3, + "body": { + "#": 949 + }, + "isInternal": false + }, + { + "x": 200, + "y": 520.12622 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.00695 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 963 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 965 + }, + "max": { + "#": 966 + } + }, + { + "x": 180, + "y": 500.12622 + }, + { + "x": 220, + "y": 540.277 + }, + { + "x": 200, + "y": 520.13484 + }, + [ + { + "#": 969 + }, + { + "#": 970 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,10,11", + "startCol": 3, + "endCol": 4, + "startRow": 10, + "endRow": 11 + }, + { + "id": 43, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 973 + }, + "angle": 0, + "vertices": { + "#": 974 + }, + "position": { + "#": 979 + }, + "force": { + "#": 980 + }, + "torque": 0, + "positionImpulse": { + "#": 981 + }, + "constraintImpulse": { + "#": 982 + }, + "totalContacts": 0, + "speed": 0.02319, + "angularSpeed": 0, + "velocity": { + "#": 983 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 984 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 985 + }, + "bounds": { + "#": 987 + }, + "positionPrev": { + "#": 990 + }, + "anglePrev": 0, + "axes": { + "#": 991 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 972 + }, + "sleepCounter": 0, + "region": { + "#": 994 + } + }, + [ + { + "#": 972 + } + ], + [ + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + }, + { + "#": 978 + } + ], + { + "x": 220, + "y": 500.84183, + "index": 0, + "body": { + "#": 972 + }, + "isInternal": false + }, + { + "x": 260, + "y": 500.84183, + "index": 1, + "body": { + "#": 972 + }, + "isInternal": false + }, + { + "x": 260, + "y": 540.84183, + "index": 2, + "body": { + "#": 972 + }, + "isInternal": false + }, + { + "x": 220, + "y": 540.84183, + "index": 3, + "body": { + "#": 972 + }, + "isInternal": false + }, + { + "x": 240, + "y": 520.84183 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.20738 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 986 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 988 + }, + "max": { + "#": 989 + } + }, + { + "x": 220, + "y": 500.84183 + }, + { + "x": 260, + "y": 540.86502 + }, + { + "x": 240, + "y": 521.11901 + }, + [ + { + "#": 992 + }, + { + "#": 993 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,10,11", + "startCol": 4, + "endCol": 5, + "startRow": 10, + "endRow": 11 + }, + { + "id": 44, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 996 + }, + "angle": 0, + "vertices": { + "#": 997 + }, + "position": { + "#": 1002 + }, + "force": { + "#": 1003 + }, + "torque": 0, + "positionImpulse": { + "#": 1004 + }, + "constraintImpulse": { + "#": 1005 + }, + "totalContacts": 0, + "speed": 0.29912, + "angularSpeed": 0, + "velocity": { + "#": 1006 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1007 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1008 + }, + "bounds": { + "#": 1010 + }, + "positionPrev": { + "#": 1013 + }, + "anglePrev": 0, + "axes": { + "#": 1014 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 995 + }, + "sleepCounter": 0, + "region": { + "#": 1017 + } + }, + [ + { + "#": 995 + } + ], + [ + { + "#": 998 + }, + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + } + ], + { + "x": 260, + "y": 501.99358, + "index": 0, + "body": { + "#": 995 + }, + "isInternal": false + }, + { + "x": 300, + "y": 501.99358, + "index": 1, + "body": { + "#": 995 + }, + "isInternal": false + }, + { + "x": 300, + "y": 541.99358, + "index": 2, + "body": { + "#": 995 + }, + "isInternal": false + }, + { + "x": 260, + "y": 541.99358, + "index": 3, + "body": { + "#": 995 + }, + "isInternal": false + }, + { + "x": 280, + "y": 521.99358 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.14737 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1009 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1011 + }, + "max": { + "#": 1012 + } + }, + { + "x": 260, + "y": 501.99358 + }, + { + "x": 300, + "y": 542.2927 + }, + { + "x": 280, + "y": 522.19925 + }, + [ + { + "#": 1015 + }, + { + "#": 1016 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,10,11", + "startCol": 5, + "endCol": 6, + "startRow": 10, + "endRow": 11 + }, + { + "id": 45, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1019 + }, + "angle": 0, + "vertices": { + "#": 1020 + }, + "position": { + "#": 1025 + }, + "force": { + "#": 1026 + }, + "torque": 0, + "positionImpulse": { + "#": 1027 + }, + "constraintImpulse": { + "#": 1028 + }, + "totalContacts": 0, + "speed": 0.56393, + "angularSpeed": 0, + "velocity": { + "#": 1029 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1030 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1031 + }, + "bounds": { + "#": 1033 + }, + "positionPrev": { + "#": 1036 + }, + "anglePrev": 0, + "axes": { + "#": 1037 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1018 + }, + "sleepCounter": 0, + "region": { + "#": 1040 + } + }, + [ + { + "#": 1018 + } + ], + [ + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + } + ], + { + "x": 300, + "y": 502.75134, + "index": 0, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 340, + "y": 502.75134, + "index": 1, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 340, + "y": 542.75134, + "index": 2, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 300, + "y": 542.75134, + "index": 3, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 320, + "y": 522.75134 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.10186 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1032 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1034 + }, + "max": { + "#": 1035 + } + }, + { + "x": 300, + "y": 502.75134 + }, + { + "x": 340, + "y": 543.31526 + }, + { + "x": 320, + "y": 522.62711 + }, + [ + { + "#": 1038 + }, + { + "#": 1039 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,10,11", + "startCol": 6, + "endCol": 7, + "startRow": 10, + "endRow": 11 + }, + { + "id": 46, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1042 + }, + "angle": 0, + "vertices": { + "#": 1043 + }, + "position": { + "#": 1048 + }, + "force": { + "#": 1049 + }, + "torque": 0, + "positionImpulse": { + "#": 1050 + }, + "constraintImpulse": { + "#": 1051 + }, + "totalContacts": 0, + "speed": 0.56393, + "angularSpeed": 0, + "velocity": { + "#": 1052 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1053 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1054 + }, + "bounds": { + "#": 1056 + }, + "positionPrev": { + "#": 1059 + }, + "anglePrev": 0, + "axes": { + "#": 1060 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1041 + }, + "sleepCounter": 0, + "region": { + "#": 1063 + } + }, + [ + { + "#": 1041 + } + ], + [ + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + } + ], + { + "x": 340, + "y": 502.91438, + "index": 0, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 380, + "y": 502.91438, + "index": 1, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 380, + "y": 542.91438, + "index": 2, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 340, + "y": 542.91438, + "index": 3, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 360, + "y": 522.91438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.17712 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1055 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1057 + }, + "max": { + "#": 1058 + } + }, + { + "x": 340, + "y": 502.91438 + }, + { + "x": 380, + "y": 543.4783 + }, + { + "x": 360, + "y": 522.63232 + }, + [ + { + "#": 1061 + }, + { + "#": 1062 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,10,11", + "startCol": 7, + "endCol": 7, + "startRow": 10, + "endRow": 11 + }, + { + "id": 47, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1065 + }, + "angle": 0, + "vertices": { + "#": 1066 + }, + "position": { + "#": 1071 + }, + "force": { + "#": 1072 + }, + "torque": 0, + "positionImpulse": { + "#": 1073 + }, + "constraintImpulse": { + "#": 1074 + }, + "totalContacts": 0, + "speed": 0.56393, + "angularSpeed": 0, + "velocity": { + "#": 1075 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1076 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1077 + }, + "bounds": { + "#": 1079 + }, + "positionPrev": { + "#": 1082 + }, + "anglePrev": 0, + "axes": { + "#": 1083 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1064 + }, + "sleepCounter": 0, + "region": { + "#": 1086 + } + }, + [ + { + "#": 1064 + } + ], + [ + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + } + ], + { + "x": 380, + "y": 502.91507, + "index": 0, + "body": { + "#": 1064 + }, + "isInternal": false + }, + { + "x": 420, + "y": 502.91507, + "index": 1, + "body": { + "#": 1064 + }, + "isInternal": false + }, + { + "x": 420, + "y": 542.91507, + "index": 2, + "body": { + "#": 1064 + }, + "isInternal": false + }, + { + "x": 380, + "y": 542.91507, + "index": 3, + "body": { + "#": 1064 + }, + "isInternal": false + }, + { + "x": 400, + "y": 522.91507 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.17712 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1078 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1080 + }, + "max": { + "#": 1081 + } + }, + { + "x": 380, + "y": 502.91507 + }, + { + "x": 420, + "y": 543.479 + }, + { + "x": 400, + "y": 522.63301 + }, + [ + { + "#": 1084 + }, + { + "#": 1085 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,10,11", + "startCol": 7, + "endCol": 8, + "startRow": 10, + "endRow": 11 + }, + { + "id": 48, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1088 + }, + "angle": 0, + "vertices": { + "#": 1089 + }, + "position": { + "#": 1094 + }, + "force": { + "#": 1095 + }, + "torque": 0, + "positionImpulse": { + "#": 1096 + }, + "constraintImpulse": { + "#": 1097 + }, + "totalContacts": 0, + "speed": 0.56393, + "angularSpeed": 0, + "velocity": { + "#": 1098 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1099 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1100 + }, + "bounds": { + "#": 1102 + }, + "positionPrev": { + "#": 1105 + }, + "anglePrev": 0, + "axes": { + "#": 1106 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1087 + }, + "sleepCounter": 0, + "region": { + "#": 1109 + } + }, + [ + { + "#": 1087 + } + ], + [ + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + } + ], + { + "x": 420, + "y": 502.91438, + "index": 0, + "body": { + "#": 1087 + }, + "isInternal": false + }, + { + "x": 460, + "y": 502.91438, + "index": 1, + "body": { + "#": 1087 + }, + "isInternal": false + }, + { + "x": 460, + "y": 542.91438, + "index": 2, + "body": { + "#": 1087 + }, + "isInternal": false + }, + { + "x": 420, + "y": 542.91438, + "index": 3, + "body": { + "#": 1087 + }, + "isInternal": false + }, + { + "x": 440, + "y": 522.91438 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.17712 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1101 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1103 + }, + "max": { + "#": 1104 + } + }, + { + "x": 420, + "y": 502.91438 + }, + { + "x": 460, + "y": 543.4783 + }, + { + "x": 440, + "y": 522.63232 + }, + [ + { + "#": 1107 + }, + { + "#": 1108 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,10,11", + "startCol": 8, + "endCol": 9, + "startRow": 10, + "endRow": 11 + }, + { + "id": 49, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1111 + }, + "angle": 0, + "vertices": { + "#": 1112 + }, + "position": { + "#": 1117 + }, + "force": { + "#": 1118 + }, + "torque": 0, + "positionImpulse": { + "#": 1119 + }, + "constraintImpulse": { + "#": 1120 + }, + "totalContacts": 0, + "speed": 0.56393, + "angularSpeed": 0, + "velocity": { + "#": 1121 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1122 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1123 + }, + "bounds": { + "#": 1125 + }, + "positionPrev": { + "#": 1128 + }, + "anglePrev": 0, + "axes": { + "#": 1129 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1110 + }, + "sleepCounter": 0, + "region": { + "#": 1132 + } + }, + [ + { + "#": 1110 + } + ], + [ + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + } + ], + { + "x": 460, + "y": 502.75134, + "index": 0, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 500, + "y": 502.75134, + "index": 1, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 500, + "y": 542.75134, + "index": 2, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 460, + "y": 542.75134, + "index": 3, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 480, + "y": 522.75134 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.10186 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1124 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1126 + }, + "max": { + "#": 1127 + } + }, + { + "x": 460, + "y": 502.75134 + }, + { + "x": 500, + "y": 543.31526 + }, + { + "x": 480, + "y": 522.62711 + }, + [ + { + "#": 1130 + }, + { + "#": 1131 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,10,11", + "startCol": 9, + "endCol": 10, + "startRow": 10, + "endRow": 11 + }, + { + "id": 50, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1134 + }, + "angle": 0, + "vertices": { + "#": 1135 + }, + "position": { + "#": 1140 + }, + "force": { + "#": 1141 + }, + "torque": 0, + "positionImpulse": { + "#": 1142 + }, + "constraintImpulse": { + "#": 1143 + }, + "totalContacts": 0, + "speed": 0.29912, + "angularSpeed": 0, + "velocity": { + "#": 1144 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1145 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1146 + }, + "bounds": { + "#": 1148 + }, + "positionPrev": { + "#": 1151 + }, + "anglePrev": 0, + "axes": { + "#": 1152 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1133 + }, + "sleepCounter": 0, + "region": { + "#": 1155 + } + }, + [ + { + "#": 1133 + } + ], + [ + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + } + ], + { + "x": 500, + "y": 501.99358, + "index": 0, + "body": { + "#": 1133 + }, + "isInternal": false + }, + { + "x": 540, + "y": 501.99358, + "index": 1, + "body": { + "#": 1133 + }, + "isInternal": false + }, + { + "x": 540, + "y": 541.99358, + "index": 2, + "body": { + "#": 1133 + }, + "isInternal": false + }, + { + "x": 500, + "y": 541.99358, + "index": 3, + "body": { + "#": 1133 + }, + "isInternal": false + }, + { + "x": 520, + "y": 521.99358 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.14737 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1147 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1149 + }, + "max": { + "#": 1150 + } + }, + { + "x": 500, + "y": 501.99358 + }, + { + "x": 540, + "y": 542.2927 + }, + { + "x": 520, + "y": 522.19925 + }, + [ + { + "#": 1153 + }, + { + "#": 1154 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,10,11", + "startCol": 10, + "endCol": 11, + "startRow": 10, + "endRow": 11 + }, + { + "id": 51, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1157 + }, + "angle": 0, + "vertices": { + "#": 1158 + }, + "position": { + "#": 1163 + }, + "force": { + "#": 1164 + }, + "torque": 0, + "positionImpulse": { + "#": 1165 + }, + "constraintImpulse": { + "#": 1166 + }, + "totalContacts": 0, + "speed": 0.02319, + "angularSpeed": 0, + "velocity": { + "#": 1167 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1168 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1169 + }, + "bounds": { + "#": 1171 + }, + "positionPrev": { + "#": 1174 + }, + "anglePrev": 0, + "axes": { + "#": 1175 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1156 + }, + "sleepCounter": 0, + "region": { + "#": 1178 + } + }, + [ + { + "#": 1156 + } + ], + [ + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + } + ], + { + "x": 540, + "y": 500.84183, + "index": 0, + "body": { + "#": 1156 + }, + "isInternal": false + }, + { + "x": 580, + "y": 500.84183, + "index": 1, + "body": { + "#": 1156 + }, + "isInternal": false + }, + { + "x": 580, + "y": 540.84183, + "index": 2, + "body": { + "#": 1156 + }, + "isInternal": false + }, + { + "x": 540, + "y": 540.84183, + "index": 3, + "body": { + "#": 1156 + }, + "isInternal": false + }, + { + "x": 560, + "y": 520.84183 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.20738 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1170 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1172 + }, + "max": { + "#": 1173 + } + }, + { + "x": 540, + "y": 500.84183 + }, + { + "x": 580, + "y": 540.86502 + }, + { + "x": 560, + "y": 521.11901 + }, + [ + { + "#": 1176 + }, + { + "#": 1177 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,10,11", + "startCol": 11, + "endCol": 12, + "startRow": 10, + "endRow": 11 + }, + { + "id": 52, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1180 + }, + "angle": 0, + "vertices": { + "#": 1181 + }, + "position": { + "#": 1186 + }, + "force": { + "#": 1187 + }, + "torque": 0, + "positionImpulse": { + "#": 1188 + }, + "constraintImpulse": { + "#": 1189 + }, + "totalContacts": 0, + "speed": 0.15077, + "angularSpeed": 0, + "velocity": { + "#": 1190 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1191 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1192 + }, + "bounds": { + "#": 1194 + }, + "positionPrev": { + "#": 1197 + }, + "anglePrev": 0, + "axes": { + "#": 1198 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1179 + }, + "sleepCounter": 0, + "region": { + "#": 1201 + } + }, + [ + { + "#": 1179 + } + ], + [ + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + } + ], + { + "x": 580, + "y": 500.12622, + "index": 0, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 620, + "y": 500.12622, + "index": 1, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 620, + "y": 540.12622, + "index": 2, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 580, + "y": 540.12622, + "index": 3, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 600, + "y": 520.12622 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.00695 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1193 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1195 + }, + "max": { + "#": 1196 + } + }, + { + "x": 580, + "y": 500.12622 + }, + { + "x": 620, + "y": 540.277 + }, + { + "x": 600, + "y": 520.13484 + }, + [ + { + "#": 1199 + }, + { + "#": 1200 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,12,10,11", + "startCol": 12, + "endCol": 12, + "startRow": 10, + "endRow": 11 + }, + { + "id": 53, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1203 + }, + "angle": 0, + "vertices": { + "#": 1204 + }, + "position": { + "#": 1209 + }, + "force": { + "#": 1210 + }, + "torque": 0, + "positionImpulse": { + "#": 1211 + }, + "constraintImpulse": { + "#": 1212 + }, + "totalContacts": 0, + "speed": 0.2917, + "angularSpeed": 0, + "velocity": { + "#": 1213 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1214 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1215 + }, + "bounds": { + "#": 1217 + }, + "positionPrev": { + "#": 1220 + }, + "anglePrev": 0, + "axes": { + "#": 1221 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1202 + }, + "sleepCounter": 0, + "region": { + "#": 1224 + } + }, + [ + { + "#": 1202 + } + ], + [ + { + "#": 1205 + }, + { + "#": 1206 + }, + { + "#": 1207 + }, + { + "#": 1208 + } + ], + { + "x": 620, + "y": 499.95589, + "index": 0, + "body": { + "#": 1202 + }, + "isInternal": false + }, + { + "x": 660, + "y": 499.95589, + "index": 1, + "body": { + "#": 1202 + }, + "isInternal": false + }, + { + "x": 660, + "y": 539.95589, + "index": 2, + "body": { + "#": 1202 + }, + "isInternal": false + }, + { + "x": 620, + "y": 539.95589, + "index": 3, + "body": { + "#": 1202 + }, + "isInternal": false + }, + { + "x": 640, + "y": 519.95589 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.0052 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1216 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1218 + }, + "max": { + "#": 1219 + } + }, + { + "x": 620, + "y": 499.95589 + }, + { + "x": 660, + "y": 540.24759 + }, + { + "x": 640, + "y": 519.95223 + }, + [ + { + "#": 1222 + }, + { + "#": 1223 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,10,11", + "startCol": 12, + "endCol": 13, + "startRow": 10, + "endRow": 11 + }, + { + "id": 54, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1226 + }, + "angle": 0, + "vertices": { + "#": 1227 + }, + "position": { + "#": 1232 + }, + "force": { + "#": 1233 + }, + "torque": 0, + "positionImpulse": { + "#": 1234 + }, + "constraintImpulse": { + "#": 1235 + }, + "totalContacts": 0, + "speed": 0.27778, + "angularSpeed": 0, + "velocity": { + "#": 1236 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1237 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1238 + }, + "bounds": { + "#": 1240 + }, + "positionPrev": { + "#": 1243 + }, + "anglePrev": 0, + "axes": { + "#": 1244 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1225 + }, + "sleepCounter": 0, + "region": { + "#": 1247 + } + }, + [ + { + "#": 1225 + } + ], + [ + { + "#": 1228 + }, + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + } + ], + { + "x": 100, + "y": 539.8, + "index": 0, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 140, + "y": 539.8, + "index": 1, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 140, + "y": 579.8, + "index": 2, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 100, + "y": 579.8, + "index": 3, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 120, + "y": 559.8 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1239 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1241 + }, + "max": { + "#": 1242 + } + }, + { + "x": 100, + "y": 539.8 + }, + { + "x": 140, + "y": 580.07778 + }, + { + "x": 120, + "y": 559.8 + }, + [ + { + "#": 1245 + }, + { + "#": 1246 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,11,12", + "startCol": 2, + "endCol": 2, + "startRow": 11, + "endRow": 12 + }, + { + "id": 55, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1249 + }, + "angle": 0, + "vertices": { + "#": 1250 + }, + "position": { + "#": 1255 + }, + "force": { + "#": 1256 + }, + "torque": 0, + "positionImpulse": { + "#": 1257 + }, + "constraintImpulse": { + "#": 1258 + }, + "totalContacts": 0, + "speed": 0.28732, + "angularSpeed": 0, + "velocity": { + "#": 1259 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1260 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1261 + }, + "bounds": { + "#": 1263 + }, + "positionPrev": { + "#": 1266 + }, + "anglePrev": 0, + "axes": { + "#": 1267 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1248 + }, + "sleepCounter": 0, + "region": { + "#": 1270 + } + }, + [ + { + "#": 1248 + } + ], + [ + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + }, + { + "#": 1254 + } + ], + { + "x": 140, + "y": 539.85295, + "index": 0, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 180, + "y": 539.85295, + "index": 1, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 180, + "y": 579.85295, + "index": 2, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 140, + "y": 579.85295, + "index": 3, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 160, + "y": 559.85295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.00097 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1262 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1264 + }, + "max": { + "#": 1265 + } + }, + { + "x": 140, + "y": 539.85295 + }, + { + "x": 180, + "y": 580.14026 + }, + { + "x": 160, + "y": 559.85044 + }, + [ + { + "#": 1268 + }, + { + "#": 1269 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,11,12", + "startCol": 2, + "endCol": 3, + "startRow": 11, + "endRow": 12 + }, + { + "id": 56, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1272 + }, + "angle": 0, + "vertices": { + "#": 1273 + }, + "position": { + "#": 1278 + }, + "force": { + "#": 1279 + }, + "torque": 0, + "positionImpulse": { + "#": 1280 + }, + "constraintImpulse": { + "#": 1281 + }, + "totalContacts": 0, + "speed": 0.21002, + "angularSpeed": 0, + "velocity": { + "#": 1282 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1283 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1284 + }, + "bounds": { + "#": 1286 + }, + "positionPrev": { + "#": 1289 + }, + "anglePrev": 0, + "axes": { + "#": 1290 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1271 + }, + "sleepCounter": 0, + "region": { + "#": 1293 + } + }, + [ + { + "#": 1271 + } + ], + [ + { + "#": 1274 + }, + { + "#": 1275 + }, + { + "#": 1276 + }, + { + "#": 1277 + } + ], + { + "x": 180, + "y": 539.90591, + "index": 0, + "body": { + "#": 1271 + }, + "isInternal": false + }, + { + "x": 220, + "y": 539.90591, + "index": 1, + "body": { + "#": 1271 + }, + "isInternal": false + }, + { + "x": 220, + "y": 579.90591, + "index": 2, + "body": { + "#": 1271 + }, + "isInternal": false + }, + { + "x": 180, + "y": 579.90591, + "index": 3, + "body": { + "#": 1271 + }, + "isInternal": false + }, + { + "x": 200, + "y": 559.90591 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.00147 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1285 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1287 + }, + "max": { + "#": 1288 + } + }, + { + "x": 180, + "y": 539.90591 + }, + { + "x": 220, + "y": 580.11593 + }, + { + "x": 200, + "y": 559.91051 + }, + [ + { + "#": 1291 + }, + { + "#": 1292 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,11,12", + "startCol": 3, + "endCol": 4, + "startRow": 11, + "endRow": 12 + }, + { + "id": 57, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1295 + }, + "angle": 0, + "vertices": { + "#": 1296 + }, + "position": { + "#": 1301 + }, + "force": { + "#": 1302 + }, + "torque": 0, + "positionImpulse": { + "#": 1303 + }, + "constraintImpulse": { + "#": 1304 + }, + "totalContacts": 0, + "speed": 0.15336, + "angularSpeed": 0, + "velocity": { + "#": 1305 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1306 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1307 + }, + "bounds": { + "#": 1309 + }, + "positionPrev": { + "#": 1312 + }, + "anglePrev": 0, + "axes": { + "#": 1313 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1294 + }, + "sleepCounter": 0, + "region": { + "#": 1316 + } + }, + [ + { + "#": 1294 + } + ], + [ + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + } + ], + { + "x": 220, + "y": 540.15646, + "index": 0, + "body": { + "#": 1294 + }, + "isInternal": false + }, + { + "x": 260, + "y": 540.15646, + "index": 1, + "body": { + "#": 1294 + }, + "isInternal": false + }, + { + "x": 260, + "y": 580.15646, + "index": 2, + "body": { + "#": 1294 + }, + "isInternal": false + }, + { + "x": 220, + "y": 580.15646, + "index": 3, + "body": { + "#": 1294 + }, + "isInternal": false + }, + { + "x": 240, + "y": 560.15646 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.04048 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1308 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1310 + }, + "max": { + "#": 1311 + } + }, + { + "x": 220, + "y": 540.15646 + }, + { + "x": 260, + "y": 580.30982 + }, + { + "x": 240, + "y": 560.29231 + }, + [ + { + "#": 1314 + }, + { + "#": 1315 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,11,12", + "startCol": 4, + "endCol": 5, + "startRow": 11, + "endRow": 12 + }, + { + "id": 58, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1318 + }, + "angle": 0, + "vertices": { + "#": 1319 + }, + "position": { + "#": 1324 + }, + "force": { + "#": 1325 + }, + "torque": 0, + "positionImpulse": { + "#": 1326 + }, + "constraintImpulse": { + "#": 1327 + }, + "totalContacts": 0, + "speed": 0.30317, + "angularSpeed": 0, + "velocity": { + "#": 1328 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1329 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1330 + }, + "bounds": { + "#": 1332 + }, + "positionPrev": { + "#": 1335 + }, + "anglePrev": 0, + "axes": { + "#": 1336 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1317 + }, + "sleepCounter": 0, + "region": { + "#": 1339 + } + }, + [ + { + "#": 1317 + } + ], + [ + { + "#": 1320 + }, + { + "#": 1321 + }, + { + "#": 1322 + }, + { + "#": 1323 + } + ], + { + "x": 260, + "y": 540.55145, + "index": 0, + "body": { + "#": 1317 + }, + "isInternal": false + }, + { + "x": 300, + "y": 540.55145, + "index": 1, + "body": { + "#": 1317 + }, + "isInternal": false + }, + { + "x": 300, + "y": 580.55145, + "index": 2, + "body": { + "#": 1317 + }, + "isInternal": false + }, + { + "x": 260, + "y": 580.55145, + "index": 3, + "body": { + "#": 1317 + }, + "isInternal": false + }, + { + "x": 280, + "y": 560.55145 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.02725 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1331 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1333 + }, + "max": { + "#": 1334 + } + }, + { + "x": 260, + "y": 540.55145 + }, + { + "x": 300, + "y": 580.85463 + }, + { + "x": 280, + "y": 560.64735 + }, + [ + { + "#": 1337 + }, + { + "#": 1338 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,11,12", + "startCol": 5, + "endCol": 6, + "startRow": 11, + "endRow": 12 + }, + { + "id": 59, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1341 + }, + "angle": 0, + "vertices": { + "#": 1342 + }, + "position": { + "#": 1347 + }, + "force": { + "#": 1348 + }, + "torque": 0, + "positionImpulse": { + "#": 1349 + }, + "constraintImpulse": { + "#": 1350 + }, + "totalContacts": 0, + "speed": 0.41484, + "angularSpeed": 0, + "velocity": { + "#": 1351 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1352 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1353 + }, + "bounds": { + "#": 1355 + }, + "positionPrev": { + "#": 1358 + }, + "anglePrev": 0, + "axes": { + "#": 1359 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1340 + }, + "sleepCounter": 0, + "region": { + "#": 1362 + } + }, + [ + { + "#": 1340 + } + ], + [ + { + "#": 1343 + }, + { + "#": 1344 + }, + { + "#": 1345 + }, + { + "#": 1346 + } + ], + { + "x": 300, + "y": 540.79786, + "index": 0, + "body": { + "#": 1340 + }, + "isInternal": false + }, + { + "x": 340, + "y": 540.79786, + "index": 1, + "body": { + "#": 1340 + }, + "isInternal": false + }, + { + "x": 340, + "y": 580.79786, + "index": 2, + "body": { + "#": 1340 + }, + "isInternal": false + }, + { + "x": 300, + "y": 580.79786, + "index": 3, + "body": { + "#": 1340 + }, + "isInternal": false + }, + { + "x": 320, + "y": 560.79786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.02226 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1354 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1356 + }, + "max": { + "#": 1357 + } + }, + { + "x": 300, + "y": 540.79786 + }, + { + "x": 340, + "y": 581.2127 + }, + { + "x": 320, + "y": 560.73011 + }, + [ + { + "#": 1360 + }, + { + "#": 1361 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,11,12", + "startCol": 6, + "endCol": 7, + "startRow": 11, + "endRow": 12 + }, + { + "id": 60, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1364 + }, + "angle": 0, + "vertices": { + "#": 1365 + }, + "position": { + "#": 1370 + }, + "force": { + "#": 1371 + }, + "torque": 0, + "positionImpulse": { + "#": 1372 + }, + "constraintImpulse": { + "#": 1373 + }, + "totalContacts": 0, + "speed": 0.41484, + "angularSpeed": 0, + "velocity": { + "#": 1374 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1375 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1376 + }, + "bounds": { + "#": 1378 + }, + "positionPrev": { + "#": 1381 + }, + "anglePrev": 0, + "axes": { + "#": 1382 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1363 + }, + "sleepCounter": 0, + "region": { + "#": 1385 + } + }, + [ + { + "#": 1363 + } + ], + [ + { + "#": 1366 + }, + { + "#": 1367 + }, + { + "#": 1368 + }, + { + "#": 1369 + } + ], + { + "x": 340, + "y": 540.83802, + "index": 0, + "body": { + "#": 1363 + }, + "isInternal": false + }, + { + "x": 380, + "y": 540.83802, + "index": 1, + "body": { + "#": 1363 + }, + "isInternal": false + }, + { + "x": 380, + "y": 580.83802, + "index": 2, + "body": { + "#": 1363 + }, + "isInternal": false + }, + { + "x": 340, + "y": 580.83802, + "index": 3, + "body": { + "#": 1363 + }, + "isInternal": false + }, + { + "x": 360, + "y": 560.83802 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.02937 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1377 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1379 + }, + "max": { + "#": 1380 + } + }, + { + "x": 340, + "y": 540.83802 + }, + { + "x": 380, + "y": 581.25286 + }, + { + "x": 360, + "y": 560.72422 + }, + [ + { + "#": 1383 + }, + { + "#": 1384 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,11,12", + "startCol": 7, + "endCol": 7, + "startRow": 11, + "endRow": 12 + }, + { + "id": 61, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1387 + }, + "angle": 0, + "vertices": { + "#": 1388 + }, + "position": { + "#": 1393 + }, + "force": { + "#": 1394 + }, + "torque": 0, + "positionImpulse": { + "#": 1395 + }, + "constraintImpulse": { + "#": 1396 + }, + "totalContacts": 0, + "speed": 0.41484, + "angularSpeed": 0, + "velocity": { + "#": 1397 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1398 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1399 + }, + "bounds": { + "#": 1401 + }, + "positionPrev": { + "#": 1404 + }, + "anglePrev": 0, + "axes": { + "#": 1405 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1386 + }, + "sleepCounter": 0, + "region": { + "#": 1408 + } + }, + [ + { + "#": 1386 + } + ], + [ + { + "#": 1389 + }, + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + } + ], + { + "x": 380, + "y": 540.83802, + "index": 0, + "body": { + "#": 1386 + }, + "isInternal": false + }, + { + "x": 420, + "y": 540.83802, + "index": 1, + "body": { + "#": 1386 + }, + "isInternal": false + }, + { + "x": 420, + "y": 580.83802, + "index": 2, + "body": { + "#": 1386 + }, + "isInternal": false + }, + { + "x": 380, + "y": 580.83802, + "index": 3, + "body": { + "#": 1386 + }, + "isInternal": false + }, + { + "x": 400, + "y": 560.83802 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.02937 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1400 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1402 + }, + "max": { + "#": 1403 + } + }, + { + "x": 380, + "y": 540.83802 + }, + { + "x": 420, + "y": 581.25286 + }, + { + "x": 400, + "y": 560.72422 + }, + [ + { + "#": 1406 + }, + { + "#": 1407 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,11,12", + "startCol": 7, + "endCol": 8, + "startRow": 11, + "endRow": 12 + }, + { + "id": 62, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1410 + }, + "angle": 0, + "vertices": { + "#": 1411 + }, + "position": { + "#": 1416 + }, + "force": { + "#": 1417 + }, + "torque": 0, + "positionImpulse": { + "#": 1418 + }, + "constraintImpulse": { + "#": 1419 + }, + "totalContacts": 0, + "speed": 0.41484, + "angularSpeed": 0, + "velocity": { + "#": 1420 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1421 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1422 + }, + "bounds": { + "#": 1424 + }, + "positionPrev": { + "#": 1427 + }, + "anglePrev": 0, + "axes": { + "#": 1428 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1409 + }, + "sleepCounter": 0, + "region": { + "#": 1431 + } + }, + [ + { + "#": 1409 + } + ], + [ + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + }, + { + "#": 1415 + } + ], + { + "x": 420, + "y": 540.83802, + "index": 0, + "body": { + "#": 1409 + }, + "isInternal": false + }, + { + "x": 460, + "y": 540.83802, + "index": 1, + "body": { + "#": 1409 + }, + "isInternal": false + }, + { + "x": 460, + "y": 580.83802, + "index": 2, + "body": { + "#": 1409 + }, + "isInternal": false + }, + { + "x": 420, + "y": 580.83802, + "index": 3, + "body": { + "#": 1409 + }, + "isInternal": false + }, + { + "x": 440, + "y": 560.83802 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.02937 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1423 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1425 + }, + "max": { + "#": 1426 + } + }, + { + "x": 420, + "y": 540.83802 + }, + { + "x": 460, + "y": 581.25286 + }, + { + "x": 440, + "y": 560.72422 + }, + [ + { + "#": 1429 + }, + { + "#": 1430 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,11,12", + "startCol": 8, + "endCol": 9, + "startRow": 11, + "endRow": 12 + }, + { + "id": 63, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1433 + }, + "angle": 0, + "vertices": { + "#": 1434 + }, + "position": { + "#": 1439 + }, + "force": { + "#": 1440 + }, + "torque": 0, + "positionImpulse": { + "#": 1441 + }, + "constraintImpulse": { + "#": 1442 + }, + "totalContacts": 0, + "speed": 0.41484, + "angularSpeed": 0, + "velocity": { + "#": 1443 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1444 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1445 + }, + "bounds": { + "#": 1447 + }, + "positionPrev": { + "#": 1450 + }, + "anglePrev": 0, + "axes": { + "#": 1451 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1432 + }, + "sleepCounter": 0, + "region": { + "#": 1454 + } + }, + [ + { + "#": 1432 + } + ], + [ + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + }, + { + "#": 1438 + } + ], + { + "x": 460, + "y": 540.79786, + "index": 0, + "body": { + "#": 1432 + }, + "isInternal": false + }, + { + "x": 500, + "y": 540.79786, + "index": 1, + "body": { + "#": 1432 + }, + "isInternal": false + }, + { + "x": 500, + "y": 580.79786, + "index": 2, + "body": { + "#": 1432 + }, + "isInternal": false + }, + { + "x": 460, + "y": 580.79786, + "index": 3, + "body": { + "#": 1432 + }, + "isInternal": false + }, + { + "x": 480, + "y": 560.79786 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.02226 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1446 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1448 + }, + "max": { + "#": 1449 + } + }, + { + "x": 460, + "y": 540.79786 + }, + { + "x": 500, + "y": 581.2127 + }, + { + "x": 480, + "y": 560.73011 + }, + [ + { + "#": 1452 + }, + { + "#": 1453 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,11,12", + "startCol": 9, + "endCol": 10, + "startRow": 11, + "endRow": 12 + }, + { + "id": 64, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1456 + }, + "angle": 0, + "vertices": { + "#": 1457 + }, + "position": { + "#": 1462 + }, + "force": { + "#": 1463 + }, + "torque": 0, + "positionImpulse": { + "#": 1464 + }, + "constraintImpulse": { + "#": 1465 + }, + "totalContacts": 0, + "speed": 0.30317, + "angularSpeed": 0, + "velocity": { + "#": 1466 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1467 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1468 + }, + "bounds": { + "#": 1470 + }, + "positionPrev": { + "#": 1473 + }, + "anglePrev": 0, + "axes": { + "#": 1474 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1455 + }, + "sleepCounter": 0, + "region": { + "#": 1477 + } + }, + [ + { + "#": 1455 + } + ], + [ + { + "#": 1458 + }, + { + "#": 1459 + }, + { + "#": 1460 + }, + { + "#": 1461 + } + ], + { + "x": 500, + "y": 540.55145, + "index": 0, + "body": { + "#": 1455 + }, + "isInternal": false + }, + { + "x": 540, + "y": 540.55145, + "index": 1, + "body": { + "#": 1455 + }, + "isInternal": false + }, + { + "x": 540, + "y": 580.55145, + "index": 2, + "body": { + "#": 1455 + }, + "isInternal": false + }, + { + "x": 500, + "y": 580.55145, + "index": 3, + "body": { + "#": 1455 + }, + "isInternal": false + }, + { + "x": 520, + "y": 560.55145 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.02725 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1469 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1471 + }, + "max": { + "#": 1472 + } + }, + { + "x": 500, + "y": 540.55145 + }, + { + "x": 540, + "y": 580.85463 + }, + { + "x": 520, + "y": 560.64735 + }, + [ + { + "#": 1475 + }, + { + "#": 1476 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,11,12", + "startCol": 10, + "endCol": 11, + "startRow": 11, + "endRow": 12 + }, + { + "id": 65, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1479 + }, + "angle": 0, + "vertices": { + "#": 1480 + }, + "position": { + "#": 1485 + }, + "force": { + "#": 1486 + }, + "torque": 0, + "positionImpulse": { + "#": 1487 + }, + "constraintImpulse": { + "#": 1488 + }, + "totalContacts": 0, + "speed": 0.15336, + "angularSpeed": 0, + "velocity": { + "#": 1489 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1490 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1491 + }, + "bounds": { + "#": 1493 + }, + "positionPrev": { + "#": 1496 + }, + "anglePrev": 0, + "axes": { + "#": 1497 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1478 + }, + "sleepCounter": 0, + "region": { + "#": 1500 + } + }, + [ + { + "#": 1478 + } + ], + [ + { + "#": 1481 + }, + { + "#": 1482 + }, + { + "#": 1483 + }, + { + "#": 1484 + } + ], + { + "x": 540, + "y": 540.15646, + "index": 0, + "body": { + "#": 1478 + }, + "isInternal": false + }, + { + "x": 580, + "y": 540.15646, + "index": 1, + "body": { + "#": 1478 + }, + "isInternal": false + }, + { + "x": 580, + "y": 580.15646, + "index": 2, + "body": { + "#": 1478 + }, + "isInternal": false + }, + { + "x": 540, + "y": 580.15646, + "index": 3, + "body": { + "#": 1478 + }, + "isInternal": false + }, + { + "x": 560, + "y": 560.15646 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.04048 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1492 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1494 + }, + "max": { + "#": 1495 + } + }, + { + "x": 540, + "y": 540.15646 + }, + { + "x": 580, + "y": 580.30982 + }, + { + "x": 560, + "y": 560.29231 + }, + [ + { + "#": 1498 + }, + { + "#": 1499 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,11,12", + "startCol": 11, + "endCol": 12, + "startRow": 11, + "endRow": 12 + }, + { + "id": 66, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1502 + }, + "angle": 0, + "vertices": { + "#": 1503 + }, + "position": { + "#": 1508 + }, + "force": { + "#": 1509 + }, + "torque": 0, + "positionImpulse": { + "#": 1510 + }, + "constraintImpulse": { + "#": 1511 + }, + "totalContacts": 0, + "speed": 0.21002, + "angularSpeed": 0, + "velocity": { + "#": 1512 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1513 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1514 + }, + "bounds": { + "#": 1516 + }, + "positionPrev": { + "#": 1519 + }, + "anglePrev": 0, + "axes": { + "#": 1520 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1501 + }, + "sleepCounter": 0, + "region": { + "#": 1523 + } + }, + [ + { + "#": 1501 + } + ], + [ + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + } + ], + { + "x": 580, + "y": 539.90591, + "index": 0, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 620, + "y": 539.90591, + "index": 1, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 620, + "y": 579.90591, + "index": 2, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 580, + "y": 579.90591, + "index": 3, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 600, + "y": 559.90591 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": -0.00147 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1515 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1517 + }, + "max": { + "#": 1518 + } + }, + { + "x": 580, + "y": 539.90591 + }, + { + "x": 620, + "y": 580.11593 + }, + { + "x": 600, + "y": 559.91051 + }, + [ + { + "#": 1521 + }, + { + "#": 1522 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,12,11,12", + "startCol": 12, + "endCol": 12, + "startRow": 11, + "endRow": 12 + }, + { + "id": 67, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1525 + }, + "angle": 0, + "vertices": { + "#": 1526 + }, + "position": { + "#": 1531 + }, + "force": { + "#": 1532 + }, + "torque": 0, + "positionImpulse": { + "#": 1533 + }, + "constraintImpulse": { + "#": 1534 + }, + "totalContacts": 0, + "speed": 0.28732, + "angularSpeed": 0, + "velocity": { + "#": 1535 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1536 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1537 + }, + "bounds": { + "#": 1539 + }, + "positionPrev": { + "#": 1542 + }, + "anglePrev": 0, + "axes": { + "#": 1543 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1524 + }, + "sleepCounter": 0, + "region": { + "#": 1546 + } + }, + [ + { + "#": 1524 + } + ], + [ + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + } + ], + { + "x": 620, + "y": 539.85295, + "index": 0, + "body": { + "#": 1524 + }, + "isInternal": false + }, + { + "x": 660, + "y": 539.85295, + "index": 1, + "body": { + "#": 1524 + }, + "isInternal": false + }, + { + "x": 660, + "y": 579.85295, + "index": 2, + "body": { + "#": 1524 + }, + "isInternal": false + }, + { + "x": 620, + "y": 579.85295, + "index": 3, + "body": { + "#": 1524 + }, + "isInternal": false + }, + { + "x": 640, + "y": 559.85295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.00097 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1538 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1540 + }, + "max": { + "#": 1541 + } + }, + { + "x": 620, + "y": 539.85295 + }, + { + "x": 660, + "y": 580.14026 + }, + { + "x": 640, + "y": 559.85044 + }, + [ + { + "#": 1544 + }, + { + "#": 1545 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,11,12", + "startCol": 12, + "endCol": 13, + "startRow": 11, + "endRow": 12 + }, + { + "id": 68, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1548 + }, + "angle": 0, + "vertices": { + "#": 1549 + }, + "position": { + "#": 1554 + }, + "force": { + "#": 1555 + }, + "torque": 0, + "positionImpulse": { + "#": 1556 + }, + "constraintImpulse": { + "#": 1557 + }, + "totalContacts": 0, + "speed": 0.27778, + "angularSpeed": 0, + "velocity": { + "#": 1558 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1559 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1560 + }, + "bounds": { + "#": 1562 + }, + "positionPrev": { + "#": 1565 + }, + "anglePrev": 0, + "axes": { + "#": 1566 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1547 + }, + "sleepCounter": 0, + "region": { + "#": 1569 + } + }, + [ + { + "#": 1547 + } + ], + [ + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + }, + { + "#": 1553 + } + ], + { + "x": 660, + "y": 539.8, + "index": 0, + "body": { + "#": 1547 + }, + "isInternal": false + }, + { + "x": 700, + "y": 539.8, + "index": 1, + "body": { + "#": 1547 + }, + "isInternal": false + }, + { + "x": 700, + "y": 579.8, + "index": 2, + "body": { + "#": 1547 + }, + "isInternal": false + }, + { + "x": 660, + "y": 579.8, + "index": 3, + "body": { + "#": 1547 + }, + "isInternal": false + }, + { + "x": 680, + "y": 559.8 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1561 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1563 + }, + "max": { + "#": 1564 + } + }, + { + "x": 660, + "y": 539.8 + }, + { + "x": 700, + "y": 580.07778 + }, + { + "x": 680, + "y": 559.8 + }, + [ + { + "#": 1567 + }, + { + "#": 1568 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,11,12", + "startCol": 13, + "endCol": 14, + "startRow": 11, + "endRow": 12 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 1574 + }, + "max": { + "#": 1575 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/restitution/restitution-0.json b/test/node/refs/restitution/restitution-0.json new file mode 100644 index 00000000..6ecf3009 --- /dev/null +++ b/test/node/refs/restitution/restitution-0.json @@ -0,0 +1,2279 @@ +[ + { + "id": 221, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 233 + }, + "composites": { + "#": 234 + }, + "label": "World", + "gravity": { + "#": 235 + }, + "bounds": { + "#": 236 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 112 + }, + { + "#": 134 + }, + { + "#": 156 + }, + { + "#": 211 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 4, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 91 + }, + "angle": 0, + "vertices": { + "#": 92 + }, + "position": { + "#": 97 + }, + "force": { + "#": 98 + }, + "torque": 0, + "positionImpulse": { + "#": 99 + }, + "constraintImpulse": { + "#": 100 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 101 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.9, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 102 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 103 + }, + "bounds": { + "#": 105 + }, + "positionPrev": { + "#": 108 + }, + "anglePrev": 0, + "axes": { + "#": 109 + }, + "area": 2500, + "mass": 2.5, + "inverseMass": 0.4, + "inertia": 4166.66667, + "inverseInertia": 0.00024, + "parent": { + "#": 90 + }, + "sleepCounter": 0 + }, + [ + { + "#": 90 + } + ], + [ + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + } + ], + { + "x": 75, + "y": 125, + "index": 0, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 125, + "y": 125, + "index": 1, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 125, + "y": 175, + "index": 2, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 75, + "y": 175, + "index": 3, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 100, + "y": 150 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 104 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 106 + }, + "max": { + "#": 107 + } + }, + { + "x": 75, + "y": 125 + }, + { + "x": 125, + "y": 175 + }, + { + "x": 100, + "y": 150 + }, + [ + { + "#": 110 + }, + { + "#": 111 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 113 + }, + "angle": -0.47124, + "vertices": { + "#": 114 + }, + "position": { + "#": 119 + }, + "force": { + "#": 120 + }, + "torque": 0, + "positionImpulse": { + "#": 121 + }, + "constraintImpulse": { + "#": 122 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 123 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.9, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 124 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 125 + }, + "bounds": { + "#": 127 + }, + "positionPrev": { + "#": 130 + }, + "anglePrev": -0.47124, + "axes": { + "#": 131 + }, + "area": 2500, + "mass": 2.5, + "inverseMass": 0.4, + "inertia": 4166.66667, + "inverseInertia": 0.00024, + "parent": { + "#": 112 + }, + "sleepCounter": 0 + }, + [ + { + "#": 112 + } + ], + [ + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + } + ], + { + "x": 186.37507, + "y": 139.0746, + "index": 0, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 230.9254, + "y": 116.37507, + "index": 1, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 253.62493, + "y": 160.9254, + "index": 2, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 209.0746, + "y": 183.62493, + "index": 3, + "body": { + "#": 112 + }, + "isInternal": false + }, + { + "x": 220, + "y": 150 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 126 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 128 + }, + "max": { + "#": 129 + } + }, + { + "x": 186.37507, + "y": 116.37507 + }, + { + "x": 253.62493, + "y": 183.62493 + }, + { + "x": 220, + "y": 150 + }, + [ + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "x": 0.45399, + "y": 0.89101 + }, + { + "x": -0.89101, + "y": 0.45399 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 135 + }, + "angle": -0.7854, + "vertices": { + "#": 136 + }, + "position": { + "#": 141 + }, + "force": { + "#": 142 + }, + "torque": 0, + "positionImpulse": { + "#": 143 + }, + "constraintImpulse": { + "#": 144 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 145 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.9, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 146 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 147 + }, + "bounds": { + "#": 149 + }, + "positionPrev": { + "#": 152 + }, + "anglePrev": -0.7854, + "axes": { + "#": 153 + }, + "area": 2500, + "mass": 2.5, + "inverseMass": 0.4, + "inertia": 4166.66667, + "inverseInertia": 0.00024, + "parent": { + "#": 134 + }, + "sleepCounter": 0 + }, + [ + { + "#": 134 + } + ], + [ + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + } + ], + { + "x": 304.64466, + "y": 150, + "index": 0, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 340, + "y": 114.64466, + "index": 1, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 375.35534, + "y": 150, + "index": 2, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 340, + "y": 185.35534, + "index": 3, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 340, + "y": 150 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 148 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 150 + }, + "max": { + "#": 151 + } + }, + { + "x": 304.64466, + "y": 114.64466 + }, + { + "x": 375.35534, + "y": 185.35534 + }, + { + "x": 340, + "y": 150 + }, + [ + { + "#": 154 + }, + { + "#": 155 + } + ], + { + "x": 0.70711, + "y": 0.70711 + }, + { + "x": -0.70711, + "y": 0.70711 + }, + { + "id": 7, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 157 + }, + "angle": 0, + "vertices": { + "#": 158 + }, + "position": { + "#": 185 + }, + "force": { + "#": 186 + }, + "torque": 0, + "positionImpulse": { + "#": 187 + }, + "constraintImpulse": { + "#": 188 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 189 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.9, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 190 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 191 + }, + "circleRadius": 25, + "bounds": { + "#": 193 + }, + "positionPrev": { + "#": 196 + }, + "anglePrev": 0, + "axes": { + "#": 197 + }, + "area": 1944.45308, + "mass": 1.94445, + "inverseMass": 0.51428, + "inertia": 2407.04022, + "inverseInertia": 0.00042, + "parent": { + "#": 156 + }, + "sleepCounter": 0 + }, + [ + { + "#": 156 + } + ], + [ + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + } + ], + { + "x": 484.818, + "y": 153.013, + "index": 0, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 483.375, + "y": 158.865, + "index": 1, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 480.575, + "y": 164.202, + "index": 2, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 476.578, + "y": 168.713, + "index": 3, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 471.618, + "y": 172.136, + "index": 4, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 465.983, + "y": 174.274, + "index": 5, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 460, + "y": 175, + "index": 6, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 454.017, + "y": 174.274, + "index": 7, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 448.382, + "y": 172.136, + "index": 8, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 443.422, + "y": 168.713, + "index": 9, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 439.425, + "y": 164.202, + "index": 10, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 436.625, + "y": 158.865, + "index": 11, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 435.182, + "y": 153.013, + "index": 12, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 435.182, + "y": 146.987, + "index": 13, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 436.625, + "y": 141.135, + "index": 14, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 439.425, + "y": 135.798, + "index": 15, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 443.422, + "y": 131.287, + "index": 16, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 448.382, + "y": 127.864, + "index": 17, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 454.017, + "y": 125.726, + "index": 18, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 460, + "y": 125, + "index": 19, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 465.983, + "y": 125.726, + "index": 20, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 471.618, + "y": 127.864, + "index": 21, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 476.578, + "y": 131.287, + "index": 22, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 480.575, + "y": 135.798, + "index": 23, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 483.375, + "y": 141.135, + "index": 24, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 484.818, + "y": 146.987, + "index": 25, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 460, + "y": 150 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 192 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 194 + }, + "max": { + "#": 195 + } + }, + { + "x": 435.182, + "y": 125 + }, + { + "x": 484.818, + "y": 175 + }, + { + "x": 460, + "y": 150 + }, + [ + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + } + ], + { + "x": -0.97092, + "y": -0.23941 + }, + { + "x": -0.88553, + "y": -0.46458 + }, + { + "x": -0.74846, + "y": -0.66318 + }, + { + "x": -0.56799, + "y": -0.82303 + }, + { + "x": -0.35474, + "y": -0.93497 + }, + { + "x": -0.12046, + "y": -0.99272 + }, + { + "x": 0.12046, + "y": -0.99272 + }, + { + "x": 0.35474, + "y": -0.93497 + }, + { + "x": 0.56799, + "y": -0.82303 + }, + { + "x": 0.74846, + "y": -0.66318 + }, + { + "x": 0.88553, + "y": -0.46458 + }, + { + "x": 0.97092, + "y": -0.23941 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 212 + }, + "angle": -1.5708, + "vertices": { + "#": 213 + }, + "position": { + "#": 218 + }, + "force": { + "#": 219 + }, + "torque": 0, + "positionImpulse": { + "#": 220 + }, + "constraintImpulse": { + "#": 221 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 222 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.9, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 223 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 224 + }, + "bounds": { + "#": 226 + }, + "positionPrev": { + "#": 229 + }, + "anglePrev": -1.5708, + "axes": { + "#": 230 + }, + "area": 3600, + "mass": 3.6, + "inverseMass": 0.27778, + "inertia": 39360, + "inverseInertia": 0.00003, + "parent": { + "#": 211 + }, + "sleepCounter": 0 + }, + [ + { + "#": 211 + } + ], + [ + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + } + ], + { + "x": 690, + "y": 240, + "index": 0, + "body": { + "#": 211 + }, + "isInternal": false + }, + { + "x": 690, + "y": 60, + "index": 1, + "body": { + "#": 211 + }, + "isInternal": false + }, + { + "x": 710, + "y": 60, + "index": 2, + "body": { + "#": 211 + }, + "isInternal": false + }, + { + "x": 710, + "y": 240, + "index": 3, + "body": { + "#": 211 + }, + "isInternal": false + }, + { + "x": 700, + "y": 150 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 225 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 227 + }, + "max": { + "#": 228 + } + }, + { + "x": 690, + "y": 60 + }, + { + "x": 710, + "y": 240 + }, + { + "x": 700, + "y": 150 + }, + [ + { + "#": 231 + }, + { + "#": 232 + } + ], + { + "x": 1, + "y": 0 + }, + { + "x": 0, + "y": 1 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 237 + }, + "max": { + "#": 238 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/restitution/restitution-10.json b/test/node/refs/restitution/restitution-10.json new file mode 100644 index 00000000..0024cfbe --- /dev/null +++ b/test/node/refs/restitution/restitution-10.json @@ -0,0 +1,2369 @@ +[ + { + "id": 221, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 242 + }, + "composites": { + "#": 243 + }, + "label": "World", + "gravity": { + "#": 244 + }, + "bounds": { + "#": 245 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + }, + { + "#": 94 + }, + { + "#": 117 + }, + { + "#": 140 + }, + { + "#": 163 + }, + { + "#": 219 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + { + "id": 4, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 96 + }, + "position": { + "#": 101 + }, + "force": { + "#": 102 + }, + "torque": 0, + "positionImpulse": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 105 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.9, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 106 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 107 + }, + "bounds": { + "#": 109 + }, + "positionPrev": { + "#": 112 + }, + "anglePrev": 0, + "axes": { + "#": 113 + }, + "area": 2500, + "mass": 2.5, + "inverseMass": 0.4, + "inertia": 4166.66667, + "inverseInertia": 0.00024, + "parent": { + "#": 94 + }, + "sleepCounter": 0, + "region": { + "#": 116 + } + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + } + ], + { + "x": 75, + "y": 142.73575, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 125, + "y": 142.73575, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 125, + "y": 192.73575, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 75, + "y": 192.73575, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 100, + "y": 167.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 108 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 110 + }, + "max": { + "#": 111 + } + }, + { + "x": 75, + "y": 142.73575 + }, + { + "x": 125, + "y": 192.73575 + }, + { + "x": 100, + "y": 164.82848 + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "1,2,2,4", + "startCol": 1, + "endCol": 2, + "startRow": 2, + "endRow": 4 + }, + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 118 + }, + "angle": -0.47124, + "vertices": { + "#": 119 + }, + "position": { + "#": 124 + }, + "force": { + "#": 125 + }, + "torque": 0, + "positionImpulse": { + "#": 126 + }, + "constraintImpulse": { + "#": 127 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 128 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.9, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 129 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 130 + }, + "bounds": { + "#": 132 + }, + "positionPrev": { + "#": 135 + }, + "anglePrev": -0.47124, + "axes": { + "#": 136 + }, + "area": 2500, + "mass": 2.5, + "inverseMass": 0.4, + "inertia": 4166.66667, + "inverseInertia": 0.00024, + "parent": { + "#": 117 + }, + "sleepCounter": 0, + "region": { + "#": 139 + } + }, + [ + { + "#": 117 + } + ], + [ + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + } + ], + { + "x": 186.37507, + "y": 156.81035, + "index": 0, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 230.9254, + "y": 134.11083, + "index": 1, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 253.62493, + "y": 178.66116, + "index": 2, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 209.0746, + "y": 201.36068, + "index": 3, + "body": { + "#": 117 + }, + "isInternal": false + }, + { + "x": 220, + "y": 167.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 131 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 133 + }, + "max": { + "#": 134 + } + }, + { + "x": 186.37507, + "y": 134.11083 + }, + { + "x": 253.62493, + "y": 201.36068 + }, + { + "x": 220, + "y": 164.82848 + }, + [ + { + "#": 137 + }, + { + "#": 138 + } + ], + { + "x": 0.45399, + "y": 0.89101 + }, + { + "x": -0.89101, + "y": 0.45399 + }, + { + "id": "3,5,2,4", + "startCol": 3, + "endCol": 5, + "startRow": 2, + "endRow": 4 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 141 + }, + "angle": -0.7854, + "vertices": { + "#": 142 + }, + "position": { + "#": 147 + }, + "force": { + "#": 148 + }, + "torque": 0, + "positionImpulse": { + "#": 149 + }, + "constraintImpulse": { + "#": 150 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 151 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.9, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 152 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 153 + }, + "bounds": { + "#": 155 + }, + "positionPrev": { + "#": 158 + }, + "anglePrev": -0.7854, + "axes": { + "#": 159 + }, + "area": 2500, + "mass": 2.5, + "inverseMass": 0.4, + "inertia": 4166.66667, + "inverseInertia": 0.00024, + "parent": { + "#": 140 + }, + "sleepCounter": 0, + "region": { + "#": 162 + } + }, + [ + { + "#": 140 + } + ], + [ + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + } + ], + { + "x": 304.64466, + "y": 167.73575, + "index": 0, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 340, + "y": 132.38042, + "index": 1, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 375.35534, + "y": 167.73575, + "index": 2, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 340, + "y": 203.09109, + "index": 3, + "body": { + "#": 140 + }, + "isInternal": false + }, + { + "x": 340, + "y": 167.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 154 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 156 + }, + "max": { + "#": 157 + } + }, + { + "x": 304.64466, + "y": 132.38042 + }, + { + "x": 375.35534, + "y": 203.09109 + }, + { + "x": 340, + "y": 164.82848 + }, + [ + { + "#": 160 + }, + { + "#": 161 + } + ], + { + "x": 0.70711, + "y": 0.70711 + }, + { + "x": -0.70711, + "y": 0.70711 + }, + { + "id": "6,7,2,4", + "startCol": 6, + "endCol": 7, + "startRow": 2, + "endRow": 4 + }, + { + "id": 7, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 164 + }, + "angle": 0, + "vertices": { + "#": 165 + }, + "position": { + "#": 192 + }, + "force": { + "#": 193 + }, + "torque": 0, + "positionImpulse": { + "#": 194 + }, + "constraintImpulse": { + "#": 195 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 196 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.9, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 197 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 198 + }, + "circleRadius": 25, + "bounds": { + "#": 200 + }, + "positionPrev": { + "#": 203 + }, + "anglePrev": 0, + "axes": { + "#": 204 + }, + "area": 1944.45308, + "mass": 1.94445, + "inverseMass": 0.51428, + "inertia": 2407.04022, + "inverseInertia": 0.00042, + "parent": { + "#": 163 + }, + "sleepCounter": 0, + "region": { + "#": 218 + } + }, + [ + { + "#": 163 + } + ], + [ + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + } + ], + { + "x": 484.818, + "y": 170.74875, + "index": 0, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 483.375, + "y": 176.60075, + "index": 1, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 480.575, + "y": 181.93775, + "index": 2, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 476.578, + "y": 186.44875, + "index": 3, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 471.618, + "y": 189.87175, + "index": 4, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 465.983, + "y": 192.00975, + "index": 5, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 460, + "y": 192.73575, + "index": 6, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 454.017, + "y": 192.00975, + "index": 7, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 448.382, + "y": 189.87175, + "index": 8, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 443.422, + "y": 186.44875, + "index": 9, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 439.425, + "y": 181.93775, + "index": 10, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 436.625, + "y": 176.60075, + "index": 11, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 435.182, + "y": 170.74875, + "index": 12, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 435.182, + "y": 164.72275, + "index": 13, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 436.625, + "y": 158.87075, + "index": 14, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 439.425, + "y": 153.53375, + "index": 15, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 443.422, + "y": 149.02275, + "index": 16, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 448.382, + "y": 145.59975, + "index": 17, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 454.017, + "y": 143.46175, + "index": 18, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 460, + "y": 142.73575, + "index": 19, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 465.983, + "y": 143.46175, + "index": 20, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 471.618, + "y": 145.59975, + "index": 21, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 476.578, + "y": 149.02275, + "index": 22, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 480.575, + "y": 153.53375, + "index": 23, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 483.375, + "y": 158.87075, + "index": 24, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 484.818, + "y": 164.72275, + "index": 25, + "body": { + "#": 163 + }, + "isInternal": false + }, + { + "x": 460, + "y": 167.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 199 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 201 + }, + "max": { + "#": 202 + } + }, + { + "x": 435.182, + "y": 142.73575 + }, + { + "x": 484.818, + "y": 192.73575 + }, + { + "x": 460, + "y": 164.82848 + }, + [ + { + "#": 205 + }, + { + "#": 206 + }, + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + } + ], + { + "x": -0.97092, + "y": -0.23941 + }, + { + "x": -0.88553, + "y": -0.46458 + }, + { + "x": -0.74846, + "y": -0.66318 + }, + { + "x": -0.56799, + "y": -0.82303 + }, + { + "x": -0.35474, + "y": -0.93497 + }, + { + "x": -0.12046, + "y": -0.99272 + }, + { + "x": 0.12046, + "y": -0.99272 + }, + { + "x": 0.35474, + "y": -0.93497 + }, + { + "x": 0.56799, + "y": -0.82303 + }, + { + "x": 0.74846, + "y": -0.66318 + }, + { + "x": 0.88553, + "y": -0.46458 + }, + { + "x": 0.97092, + "y": -0.23941 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,2,4", + "startCol": 9, + "endCol": 10, + "startRow": 2, + "endRow": 4 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 220 + }, + "angle": -1.5708, + "vertices": { + "#": 221 + }, + "position": { + "#": 226 + }, + "force": { + "#": 227 + }, + "torque": 0, + "positionImpulse": { + "#": 228 + }, + "constraintImpulse": { + "#": 229 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 230 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.9, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 231 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 232 + }, + "bounds": { + "#": 234 + }, + "positionPrev": { + "#": 237 + }, + "anglePrev": -1.5708, + "axes": { + "#": 238 + }, + "area": 3600, + "mass": 3.6, + "inverseMass": 0.27778, + "inertia": 39360, + "inverseInertia": 0.00003, + "parent": { + "#": 219 + }, + "sleepCounter": 0, + "region": { + "#": 241 + } + }, + [ + { + "#": 219 + } + ], + [ + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + } + ], + { + "x": 690, + "y": 257.73575, + "index": 0, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 690, + "y": 77.73575, + "index": 1, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 710, + "y": 77.73575, + "index": 2, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 710, + "y": 257.73575, + "index": 3, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 700, + "y": 167.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 233 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 235 + }, + "max": { + "#": 236 + } + }, + { + "x": 690, + "y": 77.73575 + }, + { + "x": 710, + "y": 257.73575 + }, + { + "x": 700, + "y": 164.82848 + }, + [ + { + "#": 239 + }, + { + "#": 240 + } + ], + { + "x": 1, + "y": 0 + }, + { + "x": 0, + "y": 1 + }, + { + "id": "14,14,1,5", + "startCol": 14, + "endCol": 14, + "startRow": 1, + "endRow": 5 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 246 + }, + "max": { + "#": 247 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/rounded/rounded-0.json b/test/node/refs/rounded/rounded-0.json new file mode 100644 index 00000000..ed67878f --- /dev/null +++ b/test/node/refs/rounded/rounded-0.json @@ -0,0 +1,5093 @@ +[ + { + "id": 57, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 525 + }, + "composites": { + "#": 526 + }, + "label": "World", + "gravity": { + "#": 527 + }, + "bounds": { + "#": 528 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + }, + { + "#": 136 + }, + { + "#": 173 + }, + { + "#": 235 + }, + { + "#": 293 + }, + { + "#": 333 + }, + { + "#": 421 + }, + { + "#": 487 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 4, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 91 + }, + "angle": 0, + "vertices": { + "#": 92 + }, + "position": { + "#": 113 + }, + "force": { + "#": 114 + }, + "torque": 0, + "positionImpulse": { + "#": 115 + }, + "constraintImpulse": { + "#": 116 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 117 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 118 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 119 + }, + "bounds": { + "#": 121 + }, + "positionPrev": { + "#": 124 + }, + "anglePrev": 0, + "axes": { + "#": 125 + }, + "area": 9588.94515, + "mass": 9.58895, + "inverseMass": 0.10429, + "inertia": 60085.09563, + "inverseInertia": 0.00002, + "parent": { + "#": 90 + }, + "sleepCounter": 0 + }, + [ + { + "#": 90 + } + ], + [ + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + } + ], + { + "x": 150, + "y": 170, + "index": 0, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 151.17277, + "y": 163.252, + "index": 1, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 154.55355, + "y": 157.29539, + "index": 2, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 159.74584, + "y": 152.82874, + "index": 3, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 166.14072, + "y": 150.37588, + "index": 4, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 230, + "y": 150, + "index": 5, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 236.748, + "y": 151.17277, + "index": 6, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 242.70461, + "y": 154.55355, + "index": 7, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 247.17126, + "y": 159.74584, + "index": 8, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 249.62412, + "y": 166.14072, + "index": 9, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 250, + "y": 230, + "index": 10, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 248.82723, + "y": 236.748, + "index": 11, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 245.44645, + "y": 242.70461, + "index": 12, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 240.25416, + "y": 247.17126, + "index": 13, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 233.85928, + "y": 249.62412, + "index": 14, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 170, + "y": 250, + "index": 15, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 163.252, + "y": 248.82723, + "index": 16, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 157.29539, + "y": 245.44645, + "index": 17, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 152.82874, + "y": 240.25416, + "index": 18, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 150.37588, + "y": 233.85928, + "index": 19, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 200, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 120 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 122 + }, + "max": { + "#": 123 + } + }, + { + "x": 150, + "y": 150 + }, + { + "x": 250, + "y": 250 + }, + { + "x": 200, + "y": 200 + }, + [ + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + } + ], + { + "x": 0.98523, + "y": 0.17123 + }, + { + "x": 0.86969, + "y": 0.49361 + }, + { + "x": 0.65215, + "y": 0.75809 + }, + { + "x": 0.35813, + "y": 0.93367 + }, + { + "x": 0.00589, + "y": 0.99998 + }, + { + "x": -0.17123, + "y": 0.98523 + }, + { + "x": -0.49361, + "y": 0.86969 + }, + { + "x": -0.75809, + "y": 0.65215 + }, + { + "x": -0.93367, + "y": 0.35813 + }, + { + "x": -0.99998, + "y": 0.00589 + }, + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 137 + }, + "angle": 0, + "vertices": { + "#": 138 + }, + "position": { + "#": 150 + }, + "force": { + "#": 151 + }, + "torque": 0, + "positionImpulse": { + "#": 152 + }, + "constraintImpulse": { + "#": 153 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 154 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 155 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 156 + }, + "bounds": { + "#": 158 + }, + "positionPrev": { + "#": 161 + }, + "anglePrev": 0, + "axes": { + "#": 162 + }, + "area": 8214.48721, + "mass": 8.21449, + "inverseMass": 0.12174, + "inertia": 47166.24851, + "inverseInertia": 0.00002, + "parent": { + "#": 136 + }, + "sleepCounter": 0 + }, + [ + { + "#": 136 + } + ], + [ + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + } + ], + { + "x": 243.57138, + "y": 233.57693, + "index": 0, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 245.59917, + "y": 214.57981, + "index": 1, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 251.59117, + "y": 196.43874, + "index": 2, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 261.27736, + "y": 179.97119, + "index": 3, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 274.22127, + "y": 165.91923, + "index": 4, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 289.83962, + "y": 154.91605, + "index": 5, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 307.4286, + "y": 147.4575, + "index": 6, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 326.19564, + "y": 143.87967, + "index": 7, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 343.57138, + "y": 143.57693, + "index": 8, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 343.57138, + "y": 243.57693, + "index": 9, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 243.57138, + "y": 243.57693, + "index": 10, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 300, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 157 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 159 + }, + "max": { + "#": 160 + } + }, + { + "x": 243.57138, + "y": 143.57693 + }, + { + "x": 343.57138, + "y": 243.57693 + }, + { + "x": 300, + "y": 200 + }, + [ + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + } + ], + { + "x": -0.99435, + "y": -0.10614 + }, + { + "x": -0.94954, + "y": -0.31363 + }, + { + "x": -0.86195, + "y": -0.507 + }, + { + "x": -0.73551, + "y": -0.67751 + }, + { + "x": -0.57593, + "y": -0.8175 + }, + { + "x": -0.3904, + "y": -0.92065 + }, + { + "x": -0.18727, + "y": -0.98231 + }, + { + "x": -0.01742, + "y": -0.99985 + }, + { + "x": -1, + "y": 0 + }, + { + "x": 0, + "y": 1 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 174 + }, + "angle": 0, + "vertices": { + "#": 175 + }, + "position": { + "#": 201 + }, + "force": { + "#": 202 + }, + "torque": 0, + "positionImpulse": { + "#": 203 + }, + "constraintImpulse": { + "#": 204 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 205 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 206 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 207 + }, + "bounds": { + "#": 209 + }, + "positionPrev": { + "#": 212 + }, + "anglePrev": 0, + "axes": { + "#": 213 + }, + "area": 34436.8865, + "mass": 34.43689, + "inverseMass": 0.02904, + "inertia": 800773.10834, + "inverseInertia": 0, + "parent": { + "#": 173 + }, + "sleepCounter": 0 + }, + [ + { + "#": 173 + } + ], + [ + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + } + ], + { + "x": 291.60246, + "y": 241.58914, + "index": 0, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 294.04221, + "y": 214.64525, + "index": 1, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 301.2821, + "y": 188.57784, + "index": 2, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 313.08662, + "y": 164.2349, + "index": 3, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 329.07176, + "y": 142.40829, + "index": 4, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 348.71753, + "y": 123.80803, + "index": 5, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 371.38484, + "y": 109.0392, + "index": 6, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 396.33634, + "y": 98.58222, + "index": 7, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 422.76034, + "y": 92.77726, + "index": 8, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 471.60246, + "y": 91.58914, + "index": 9, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 478.35046, + "y": 92.76191, + "index": 10, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 484.30707, + "y": 96.14269, + "index": 11, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 488.77372, + "y": 101.33498, + "index": 12, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 491.22658, + "y": 107.72985, + "index": 13, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 491.60246, + "y": 251.58914, + "index": 14, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 490.09195, + "y": 262.47761, + "index": 15, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 485.67451, + "y": 272.54374, + "index": 16, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 478.68377, + "y": 281.02725, + "index": 17, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 469.6477, + "y": 287.28745, + "index": 18, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 459.24876, + "y": 290.85151, + "index": 19, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 311.60246, + "y": 291.58914, + "index": 20, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 304.85446, + "y": 290.41637, + "index": 21, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 298.89785, + "y": 287.03559, + "index": 22, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 294.4312, + "y": 281.84329, + "index": 23, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 291.97835, + "y": 275.44842, + "index": 24, + "body": { + "#": 173 + }, + "isInternal": false + }, + { + "x": 400, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 208 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 210 + }, + "max": { + "#": 211 + } + }, + { + "x": 291.60246, + "y": 91.58914 + }, + { + "x": 491.60246, + "y": 291.58914 + }, + { + "x": 400, + "y": 200 + }, + [ + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + } + ], + { + "x": -0.99593, + "y": -0.09018 + }, + { + "x": -0.96353, + "y": -0.26761 + }, + { + "x": -0.89979, + "y": -0.43633 + }, + { + "x": -0.80678, + "y": -0.59086 + }, + { + "x": -0.68752, + "y": -0.72617 + }, + { + "x": -0.5459, + "y": -0.83785 + }, + { + "x": -0.38652, + "y": -0.92228 + }, + { + "x": -0.21457, + "y": -0.97671 + }, + { + "x": -0.02432, + "y": -0.9997 + }, + { + "x": -0.17123, + "y": 0.98523 + }, + { + "x": -0.49361, + "y": 0.86969 + }, + { + "x": -0.75809, + "y": 0.65215 + }, + { + "x": -0.93367, + "y": 0.35813 + }, + { + "x": 1, + "y": -0.00261 + }, + { + "x": 0.99051, + "y": 0.13741 + }, + { + "x": 0.91571, + "y": 0.40185 + }, + { + "x": 0.77174, + "y": 0.63594 + }, + { + "x": 0.56948, + "y": 0.822 + }, + { + "x": 0.32422, + "y": 0.94598 + }, + { + "x": 0.005, + "y": 0.99999 + }, + { + "x": -0.99994, + "y": 0.0111 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 236 + }, + "angle": 0, + "vertices": { + "#": 237 + }, + "position": { + "#": 266 + }, + "force": { + "#": 267 + }, + "torque": 0, + "positionImpulse": { + "#": 268 + }, + "constraintImpulse": { + "#": 269 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 270 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 271 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 272 + }, + "bounds": { + "#": 274 + }, + "positionPrev": { + "#": 277 + }, + "anglePrev": 0, + "axes": { + "#": 278 + }, + "area": 29929.09118, + "mass": 29.92909, + "inverseMass": 0.03341, + "inertia": 642055.68359, + "inverseInertia": 0, + "parent": { + "#": 235 + }, + "sleepCounter": 0 + }, + [ + { + "#": 235 + } + ], + [ + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + } + ], + { + "x": 100, + "y": 250, + "index": 0, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 102.43975, + "y": 223.05611, + "index": 1, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 109.67964, + "y": 196.98871, + "index": 2, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 121.48416, + "y": 172.64576, + "index": 3, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 137.4693, + "y": 150.81915, + "index": 4, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 157.11506, + "y": 132.21889, + "index": 5, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 179.78238, + "y": 117.45006, + "index": 6, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 204.73388, + "y": 106.99308, + "index": 7, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 231.15788, + "y": 101.18812, + "index": 8, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 280, + "y": 100, + "index": 9, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 286.748, + "y": 101.17277, + "index": 10, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 292.70461, + "y": 104.55355, + "index": 11, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 297.17126, + "y": 109.74584, + "index": 12, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 299.62412, + "y": 116.14072, + "index": 13, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 300, + "y": 150, + "index": 14, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 297.56025, + "y": 176.94389, + "index": 15, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 290.32036, + "y": 203.01129, + "index": 16, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 278.51584, + "y": 227.35424, + "index": 17, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 262.5307, + "y": 249.18085, + "index": 18, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 242.88494, + "y": 267.78111, + "index": 19, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 220.21762, + "y": 282.54994, + "index": 20, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 195.26612, + "y": 293.00692, + "index": 21, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 168.84212, + "y": 298.81188, + "index": 22, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 120, + "y": 300, + "index": 23, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 113.252, + "y": 298.82723, + "index": 24, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 107.29539, + "y": 295.44645, + "index": 25, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 102.82874, + "y": 290.25416, + "index": 26, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 100.37588, + "y": 283.85928, + "index": 27, + "body": { + "#": 235 + }, + "isInternal": false + }, + { + "x": 200, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 273 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 275 + }, + "max": { + "#": 276 + } + }, + { + "x": 100, + "y": 100 + }, + { + "x": 300, + "y": 300 + }, + { + "x": 200, + "y": 200 + }, + [ + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + } + ], + { + "x": 0.99593, + "y": 0.09018 + }, + { + "x": 0.96353, + "y": 0.26761 + }, + { + "x": 0.89979, + "y": 0.43633 + }, + { + "x": 0.80678, + "y": 0.59086 + }, + { + "x": 0.68752, + "y": 0.72617 + }, + { + "x": 0.5459, + "y": 0.83785 + }, + { + "x": 0.38652, + "y": 0.92228 + }, + { + "x": 0.21457, + "y": 0.97671 + }, + { + "x": 0.02432, + "y": 0.9997 + }, + { + "x": -0.17123, + "y": 0.98523 + }, + { + "x": -0.49361, + "y": 0.86969 + }, + { + "x": -0.75809, + "y": 0.65215 + }, + { + "x": -0.93367, + "y": 0.35813 + }, + { + "x": -0.99994, + "y": 0.0111 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 294 + }, + "angle": 0, + "vertices": { + "#": 295 + }, + "position": { + "#": 308 + }, + "force": { + "#": 309 + }, + "torque": 0, + "positionImpulse": { + "#": 310 + }, + "constraintImpulse": { + "#": 311 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 312 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 313 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 314 + }, + "bounds": { + "#": 316 + }, + "positionPrev": { + "#": 319 + }, + "anglePrev": 0, + "axes": { + "#": 320 + }, + "area": 9624.85331, + "mass": 9.62485, + "inverseMass": 0.1039, + "inertia": 129719.99536, + "inverseInertia": 0.00001, + "parent": { + "#": 293 + }, + "sleepCounter": 0 + }, + [ + { + "#": 293 + } + ], + [ + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + } + ], + { + "x": 199.91237, + "y": 199.24093, + "index": 0, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 201.18491, + "y": 191.36642, + "index": 1, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 204.87299, + "y": 184.29357, + "index": 2, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 210.60116, + "y": 178.74241, + "index": 3, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 217.78625, + "y": 175.27807, + "index": 4, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 374.91237, + "y": 174.24093, + "index": 5, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 382.78687, + "y": 175.51347, + "index": 6, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 389.85973, + "y": 179.20155, + "index": 7, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 395.41089, + "y": 184.92972, + "index": 8, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 398.87522, + "y": 192.11481, + "index": 9, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 399.91237, + "y": 224.24093, + "index": 10, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 199.91237, + "y": 224.24093, + "index": 11, + "body": { + "#": 293 + }, + "isInternal": false + }, + { + "x": 300, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 315 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 317 + }, + "max": { + "#": 318 + } + }, + { + "x": 199.91237, + "y": 174.24093 + }, + { + "x": 399.91237, + "y": 224.24093 + }, + { + "x": 300, + "y": 200 + }, + [ + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + } + ], + { + "x": -0.98719, + "y": -0.15953 + }, + { + "x": -0.88669, + "y": -0.46236 + }, + { + "x": -0.69592, + "y": -0.71811 + }, + { + "x": -0.43431, + "y": -0.90076 + }, + { + "x": -0.0066, + "y": -0.99998 + }, + { + "x": 0.15953, + "y": -0.98719 + }, + { + "x": 0.46236, + "y": -0.88669 + }, + { + "x": 0.71811, + "y": -0.69592 + }, + { + "x": 0.90076, + "y": -0.43431 + }, + { + "x": 0.99948, + "y": -0.03227 + }, + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 334 + }, + "angle": 0, + "vertices": { + "#": 335 + }, + "position": { + "#": 384 + }, + "force": { + "#": 385 + }, + "torque": 0, + "positionImpulse": { + "#": 386 + }, + "constraintImpulse": { + "#": 387 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 388 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 389 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 390 + }, + "bounds": { + "#": 392 + }, + "positionPrev": { + "#": 395 + }, + "anglePrev": 0, + "axes": { + "#": 396 + }, + "area": 13710.38848, + "mass": 13.71039, + "inverseMass": 0.07294, + "inertia": 119782.82094, + "inverseInertia": 0.00001, + "parent": { + "#": 333 + }, + "sleepCounter": 0 + }, + [ + { + "#": 333 + } + ], + [ + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + } + ], + { + "x": 264.71311, + "y": 114.37912, + "index": 0, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 264.37112, + "y": 118.89601, + "index": 1, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 263.35296, + "y": 123.30992, + "index": 2, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 261.68183, + "y": 127.52021, + "index": 3, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 259.39583, + "y": 131.4309, + "index": 4, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 256.54709, + "y": 134.95282, + "index": 5, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 235.59232, + "y": 155.92631, + "index": 6, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 232.15657, + "y": 158.87842, + "index": 7, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 228.31552, + "y": 161.27957, + "index": 8, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 224.15672, + "y": 163.07503, + "index": 9, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 219.775, + "y": 164.22386, + "index": 10, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 215.27026, + "y": 164.69987, + "index": 11, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 185.62088, + "y": 164.71311, + "index": 12, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 181.10399, + "y": 164.37112, + "index": 13, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 176.69008, + "y": 163.35296, + "index": 14, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 172.47979, + "y": 161.68183, + "index": 15, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 168.5691, + "y": 159.39583, + "index": 16, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 165.04718, + "y": 156.54709, + "index": 17, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 144.07369, + "y": 135.59232, + "index": 18, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 141.12158, + "y": 132.15657, + "index": 19, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 138.72043, + "y": 128.31552, + "index": 20, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 136.92497, + "y": 124.15672, + "index": 21, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 135.77614, + "y": 119.775, + "index": 22, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 135.30013, + "y": 115.27026, + "index": 23, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 135.28689, + "y": 85.62088, + "index": 24, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 135.62888, + "y": 81.10399, + "index": 25, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 136.64704, + "y": 76.69008, + "index": 26, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 138.31817, + "y": 72.47979, + "index": 27, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 140.60417, + "y": 68.5691, + "index": 28, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 143.45291, + "y": 65.04718, + "index": 29, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 164.40768, + "y": 44.07369, + "index": 30, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 167.84343, + "y": 41.12158, + "index": 31, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 171.68448, + "y": 38.72043, + "index": 32, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 175.84328, + "y": 36.92497, + "index": 33, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 180.225, + "y": 35.77614, + "index": 34, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 184.72974, + "y": 35.30013, + "index": 35, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 214.37912, + "y": 35.28689, + "index": 36, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 218.89601, + "y": 35.62888, + "index": 37, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 223.30992, + "y": 36.64704, + "index": 38, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 227.52021, + "y": 38.31817, + "index": 39, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 231.4309, + "y": 40.60417, + "index": 40, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 234.95282, + "y": 43.45291, + "index": 41, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 255.92631, + "y": 64.40768, + "index": 42, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 258.87842, + "y": 67.84343, + "index": 43, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 261.27957, + "y": 71.68448, + "index": 44, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 263.07503, + "y": 75.84328, + "index": 45, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 264.22386, + "y": 80.225, + "index": 46, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 264.69987, + "y": 84.72974, + "index": 47, + "body": { + "#": 333 + }, + "isInternal": false + }, + { + "x": 200, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 391 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 393 + }, + "max": { + "#": 394 + } + }, + { + "x": 135.28689, + "y": 35.28689 + }, + { + "x": 264.71311, + "y": 164.71311 + }, + { + "x": 200, + "y": 100 + }, + [ + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + } + ], + { + "x": -0.99715, + "y": -0.0755 + }, + { + "x": -0.97441, + "y": -0.22477 + }, + { + "x": -0.92946, + "y": -0.36892 + }, + { + "x": -0.86332, + "y": -0.50465 + }, + { + "x": -0.7775, + "y": -0.62889 + }, + { + "x": -0.70742, + "y": -0.70679 + }, + { + "x": -0.6517, + "y": -0.75847 + }, + { + "x": -0.53008, + "y": -0.84795 + }, + { + "x": -0.39636, + "y": -0.91809 + }, + { + "x": -0.25362, + "y": -0.96731 + }, + { + "x": -0.10508, + "y": -0.99446 + }, + { + "x": -0.00045, + "y": -1 + }, + { + "x": 0.0755, + "y": -0.99715 + }, + { + "x": 0.22477, + "y": -0.97441 + }, + { + "x": 0.36892, + "y": -0.92946 + }, + { + "x": 0.50465, + "y": -0.86332 + }, + { + "x": 0.62889, + "y": -0.7775 + }, + { + "x": 0.70679, + "y": -0.70742 + }, + { + "x": 0.75847, + "y": -0.6517 + }, + { + "x": 0.84795, + "y": -0.53008 + }, + { + "x": 0.91809, + "y": -0.39636 + }, + { + "x": 0.96731, + "y": -0.25362 + }, + { + "x": 0.99446, + "y": -0.10508 + }, + { + "x": 1, + "y": -0.00045 + }, + { + "id": 10, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 422 + }, + "angle": 0, + "vertices": { + "#": 423 + }, + "position": { + "#": 449 + }, + "force": { + "#": 450 + }, + "torque": 0, + "positionImpulse": { + "#": 451 + }, + "constraintImpulse": { + "#": 452 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 453 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 454 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 455 + }, + "bounds": { + "#": 457 + }, + "positionPrev": { + "#": 460 + }, + "anglePrev": 0, + "axes": { + "#": 461 + }, + "area": 13066.63253, + "mass": 13.06663, + "inverseMass": 0.07653, + "inertia": 110539.49233, + "inverseInertia": 0.00001, + "parent": { + "#": 421 + }, + "sleepCounter": 0 + }, + [ + { + "#": 421 + } + ], + [ + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + } + ], + { + "x": 360.96152, + "y": 138.73802, + "index": 0, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 360.37668, + "y": 142.10768, + "index": 1, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 358.6906, + "y": 145.0832, + "index": 2, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 356.10047, + "y": 147.31655, + "index": 3, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 302.80214, + "y": 160.35479, + "index": 4, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 294.18023, + "y": 162.13747, + "index": 5, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 285.37717, + "y": 161.99074, + "index": 6, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 276.81946, + "y": 159.92173, + "index": 7, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 268.92168, + "y": 156.03066, + "index": 8, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 262.06646, + "y": 150.50605, + "index": 9, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 229.7857, + "y": 111.78324, + "index": 10, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 227.19921, + "y": 106.94174, + "index": 11, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 226.02634, + "y": 101.57942, + "index": 12, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 226.35542, + "y": 96.10022, + "index": 13, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 228.16168, + "y": 90.91683, + "index": 14, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 258.08058, + "y": 54.23104, + "index": 15, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 264.00806, + "y": 47.72103, + "index": 16, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 271.21616, + "y": 42.66546, + "index": 17, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 279.35565, + "y": 39.30928, + "index": 18, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 288.03221, + "y": 37.81507, + "index": 19, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 296.82548, + "y": 38.25522, + "index": 20, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 354.05174, + "y": 51.80649, + "index": 21, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 357.07574, + "y": 53.40399, + "index": 22, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 359.38459, + "y": 55.92706, + "index": 23, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 360.70822, + "y": 59.08057, + "index": 24, + "body": { + "#": 421 + }, + "isInternal": false + }, + { + "x": 300, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 456 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 458 + }, + "max": { + "#": 459 + } + }, + { + "x": 226.02634, + "y": 37.81507 + }, + { + "x": 360.96152, + "y": 162.13747 + }, + { + "x": 300, + "y": 100 + }, + [ + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + } + ], + { + "x": 0.98527, + "y": 0.171 + }, + { + "x": 0.87003, + "y": 0.493 + }, + { + "x": 0.65302, + "y": 0.75734 + }, + { + "x": 0.23762, + "y": 0.97136 + }, + { + "x": 0.20248, + "y": 0.97929 + }, + { + "x": -0.01667, + "y": 0.99986 + }, + { + "x": -0.235, + "y": 0.972 + }, + { + "x": -0.44195, + "y": 0.89704 + }, + { + "x": -0.62749, + "y": 0.77862 + }, + { + "x": -0.76811, + "y": 0.64032 + }, + { + "x": -0.88202, + "y": 0.47121 + }, + { + "x": -0.97691, + "y": 0.21367 + }, + { + "x": -0.9982, + "y": -0.05995 + }, + { + "x": -0.94431, + "y": -0.32906 + }, + { + "x": -0.77496, + "y": -0.63201 + }, + { + "x": -0.73941, + "y": -0.67325 + }, + { + "x": -0.57422, + "y": -0.8187 + }, + { + "x": -0.3812, + "y": -0.92449 + }, + { + "x": -0.16971, + "y": -0.98549 + }, + { + "x": 0.04999, + "y": -0.99875 + }, + { + "x": 0.23043, + "y": -0.97309 + }, + { + "x": 0.4671, + "y": -0.8842 + }, + { + "x": 0.73773, + "y": -0.67509 + }, + { + "x": 0.92207, + "y": -0.38702 + }, + { + "x": 0.99999, + "y": -0.00318 + }, + { + "id": 11, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 488 + }, + "angle": 0, + "vertices": { + "#": 489 + }, + "position": { + "#": 501 + }, + "force": { + "#": 502 + }, + "torque": 0, + "positionImpulse": { + "#": 503 + }, + "constraintImpulse": { + "#": 504 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 505 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 506 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 507 + }, + "bounds": { + "#": 509 + }, + "positionPrev": { + "#": 512 + }, + "anglePrev": 0, + "axes": { + "#": 513 + }, + "area": 3901.76892, + "mass": 3.90177, + "inverseMass": 0.25629, + "inertia": 10483.19572, + "inverseInertia": 0.0001, + "parent": { + "#": 487 + }, + "sleepCounter": 0 + }, + [ + { + "#": 487 + } + ], + [ + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + }, + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + } + ], + { + "x": 430.247, + "y": 219.00198, + "index": 0, + "body": { + "#": 487 + }, + "isInternal": false + }, + { + "x": 428.17807, + "y": 227.8607, + "index": 1, + "body": { + "#": 487 + }, + "isInternal": false + }, + { + "x": 422.39931, + "y": 234.88661, + "index": 2, + "body": { + "#": 487 + }, + "isInternal": false + }, + { + "x": 414.10632, + "y": 238.62609, + "index": 3, + "body": { + "#": 487 + }, + "isInternal": false + }, + { + "x": 405.01486, + "y": 238.30547, + "index": 4, + "body": { + "#": 487 + }, + "isInternal": false + }, + { + "x": 349.38917, + "y": 200.19586, + "index": 5, + "body": { + "#": 487 + }, + "isInternal": false + }, + { + "x": 400.24705, + "y": 164.06921, + "index": 6, + "body": { + "#": 487 + }, + "isInternal": false + }, + { + "x": 408.9534, + "y": 161.43162, + "index": 7, + "body": { + "#": 487 + }, + "isInternal": false + }, + { + "x": 417.92739, + "y": 162.92324, + "index": 8, + "body": { + "#": 487 + }, + "isInternal": false + }, + { + "x": 425.31235, + "y": 168.23546, + "index": 9, + "body": { + "#": 487 + }, + "isInternal": false + }, + { + "x": 429.5804, + "y": 176.26921, + "index": 10, + "body": { + "#": 487 + }, + "isInternal": false + }, + { + "x": 400, + "y": 200 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 508 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 510 + }, + "max": { + "#": 511 + } + }, + { + "x": 349.38917, + "y": 161.43162 + }, + { + "x": 430.247, + "y": 238.62609 + }, + { + "x": 400, + "y": 200 + }, + [ + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + } + ], + { + "x": 0.97379, + "y": 0.22743 + }, + { + "x": 0.77232, + "y": 0.63523 + }, + { + "x": 0.41106, + "y": 0.91161 + }, + { + "x": -0.03524, + "y": 0.99938 + }, + { + "x": -0.56519, + "y": 0.82496 + }, + { + "x": -0.57911, + "y": -0.81525 + }, + { + "x": -0.28994, + "y": -0.95705 + }, + { + "x": 0.16397, + "y": -0.98647 + }, + { + "x": 0.58395, + "y": -0.81179 + }, + { + "x": 0.88311, + "y": -0.46916 + }, + { + "x": 0.99988, + "y": -0.0156 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 529 + }, + "max": { + "#": 530 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/rounded/rounded-10.json b/test/node/refs/rounded/rounded-10.json new file mode 100644 index 00000000..565b82c5 --- /dev/null +++ b/test/node/refs/rounded/rounded-10.json @@ -0,0 +1,5213 @@ +[ + { + "id": 57, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 537 + }, + "composites": { + "#": 538 + }, + "label": "World", + "gravity": { + "#": 539 + }, + "bounds": { + "#": 540 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + }, + { + "#": 94 + }, + { + "#": 141 + }, + { + "#": 179 + }, + { + "#": 242 + }, + { + "#": 301 + }, + { + "#": 342 + }, + { + "#": 431 + }, + { + "#": 498 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + { + "id": 4, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 95 + }, + "angle": 0.00009, + "vertices": { + "#": 96 + }, + "position": { + "#": 117 + }, + "force": { + "#": 118 + }, + "torque": 0, + "positionImpulse": { + "#": 119 + }, + "constraintImpulse": { + "#": 120 + }, + "totalContacts": 0, + "speed": 2.90645, + "angularSpeed": 0.00001, + "velocity": { + "#": 121 + }, + "angularVelocity": 0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 122 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 123 + }, + "bounds": { + "#": 125 + }, + "positionPrev": { + "#": 128 + }, + "anglePrev": 0.00008, + "axes": { + "#": 129 + }, + "area": 9588.94515, + "mass": 9.58895, + "inverseMass": 0.10429, + "inertia": 60085.09563, + "inverseInertia": 0.00002, + "parent": { + "#": 94 + }, + "sleepCounter": 0, + "region": { + "#": 140 + } + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + } + ], + { + "x": 130.7442, + "y": 482.94059, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 131.91762, + "y": 476.1927, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 135.29896, + "y": 470.23641, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 140.49168, + "y": 465.77025, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 146.88678, + "y": 463.318, + "index": 4, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 210.7461, + "y": 462.94818, + "index": 5, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 217.49399, + "y": 464.12159, + "index": 6, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 223.45028, + "y": 467.50294, + "index": 7, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 227.91644, + "y": 472.69565, + "index": 8, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 230.36869, + "y": 479.09076, + "index": 9, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 230.73851, + "y": 542.95008, + "index": 10, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 229.56509, + "y": 549.69797, + "index": 11, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 226.18375, + "y": 555.65426, + "index": 12, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 220.99103, + "y": 560.12042, + "index": 13, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 214.59593, + "y": 562.57266, + "index": 14, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 150.73661, + "y": 562.94248, + "index": 15, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 143.98872, + "y": 561.76907, + "index": 16, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 138.03243, + "y": 558.38773, + "index": 17, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 133.56627, + "y": 553.19501, + "index": 18, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 131.11403, + "y": 546.79991, + "index": 19, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 180.74136, + "y": 512.94533 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.42276, + "y": 6.08213 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00126, + "y": 2.90645 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 124 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 126 + }, + "max": { + "#": 127 + } + }, + { + "x": 130.7442, + "y": 462.94818 + }, + { + "x": 230.73976, + "y": 565.84894 + }, + { + "x": 180.7401, + "y": 510.03888 + }, + [ + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + } + ], + { + "x": 0.98522, + "y": 0.17132 + }, + { + "x": 0.86964, + "y": 0.49369 + }, + { + "x": 0.65207, + "y": 0.75815 + }, + { + "x": 0.35804, + "y": 0.93371 + }, + { + "x": 0.00579, + "y": 0.99998 + }, + { + "x": -0.17132, + "y": 0.98522 + }, + { + "x": -0.49369, + "y": 0.86964 + }, + { + "x": -0.75815, + "y": 0.65207 + }, + { + "x": -0.93371, + "y": 0.35804 + }, + { + "x": -0.99998, + "y": 0.00579 + }, + { + "id": "2,4,9,11", + "startCol": 2, + "endCol": 4, + "startRow": 9, + "endRow": 11 + }, + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 142 + }, + "angle": 0, + "vertices": { + "#": 143 + }, + "position": { + "#": 155 + }, + "force": { + "#": 156 + }, + "torque": 0, + "positionImpulse": { + "#": 157 + }, + "constraintImpulse": { + "#": 158 + }, + "totalContacts": 0, + "speed": 2.90726, + "angularSpeed": 0, + "velocity": { + "#": 159 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 160 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 161 + }, + "bounds": { + "#": 163 + }, + "positionPrev": { + "#": 166 + }, + "anglePrev": 0, + "axes": { + "#": 167 + }, + "area": 8214.48721, + "mass": 8.21449, + "inverseMass": 0.12174, + "inertia": 47166.24851, + "inverseInertia": 0.00002, + "parent": { + "#": 141 + }, + "sleepCounter": 0, + "region": { + "#": 178 + } + }, + [ + { + "#": 141 + } + ], + [ + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + } + ], + { + "x": 260.61472, + "y": 265.64729, + "index": 0, + "body": { + "#": 141 + }, + "isInternal": false + }, + { + "x": 262.64257, + "y": 246.65017, + "index": 1, + "body": { + "#": 141 + }, + "isInternal": false + }, + { + "x": 268.63463, + "y": 228.50912, + "index": 2, + "body": { + "#": 141 + }, + "isInternal": false + }, + { + "x": 278.32088, + "y": 212.04161, + "index": 3, + "body": { + "#": 141 + }, + "isInternal": false + }, + { + "x": 291.26484, + "y": 197.98969, + "index": 4, + "body": { + "#": 141 + }, + "isInternal": false + }, + { + "x": 306.88322, + "y": 186.98657, + "index": 5, + "body": { + "#": 141 + }, + "isInternal": false + }, + { + "x": 324.47223, + "y": 179.52808, + "index": 6, + "body": { + "#": 141 + }, + "isInternal": false + }, + { + "x": 343.23928, + "y": 175.95031, + "index": 7, + "body": { + "#": 141 + }, + "isInternal": false + }, + { + "x": 360.61502, + "y": 175.64762, + "index": 8, + "body": { + "#": 141 + }, + "isInternal": false + }, + { + "x": 360.61468, + "y": 275.64762, + "index": 9, + "body": { + "#": 141 + }, + "isInternal": false + }, + { + "x": 260.61468, + "y": 275.64729, + "index": 10, + "body": { + "#": 141 + }, + "isInternal": false + }, + { + "x": 317.04345, + "y": 232.07055 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.38618, + "y": 1.06676 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00005, + "y": 2.90726 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 162 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 164 + }, + "max": { + "#": 165 + } + }, + { + "x": 260.61468, + "y": 175.64762 + }, + { + "x": 360.61507, + "y": 278.55488 + }, + { + "x": 317.0434, + "y": 229.16329 + }, + [ + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + } + ], + { + "x": -0.99435, + "y": -0.10614 + }, + { + "x": -0.94954, + "y": -0.31364 + }, + { + "x": -0.86195, + "y": -0.507 + }, + { + "x": -0.73551, + "y": -0.67752 + }, + { + "x": -0.57593, + "y": -0.8175 + }, + { + "x": -0.39039, + "y": -0.92065 + }, + { + "x": -0.18727, + "y": -0.98231 + }, + { + "x": -0.01742, + "y": -0.99985 + }, + { + "x": -1, + "y": 0 + }, + { + "x": 0, + "y": 1 + }, + { + "id": "5,7,3,5", + "startCol": 5, + "endCol": 7, + "startRow": 3, + "endRow": 5 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 180 + }, + "angle": 0, + "vertices": { + "#": 181 + }, + "position": { + "#": 207 + }, + "force": { + "#": 208 + }, + "torque": 0, + "positionImpulse": { + "#": 209 + }, + "constraintImpulse": { + "#": 210 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 211 + }, + "angularVelocity": -0.00003, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 212 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 213 + }, + "bounds": { + "#": 215 + }, + "positionPrev": { + "#": 218 + }, + "anglePrev": 0.00004, + "axes": { + "#": 219 + }, + "area": 34436.8865, + "mass": 34.43689, + "inverseMass": 0.02904, + "inertia": 800773.10834, + "inverseInertia": 0, + "parent": { + "#": 179 + }, + "sleepCounter": 0, + "region": { + "#": 241 + } + }, + [ + { + "#": 179 + } + ], + [ + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + } + ], + { + "x": 579.80002, + "y": 536.23321, + "index": 0, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 582.23977, + "y": 509.28932, + "index": 1, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 589.47966, + "y": 483.22192, + "index": 2, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 601.28417, + "y": 458.87897, + "index": 3, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 617.26931, + "y": 437.05236, + "index": 4, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 636.91508, + "y": 418.4521, + "index": 5, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 659.5824, + "y": 403.68327, + "index": 6, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 684.53389, + "y": 393.22629, + "index": 7, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 710.9579, + "y": 387.42133, + "index": 8, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 759.80002, + "y": 386.23321, + "index": 9, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 766.54802, + "y": 387.40598, + "index": 10, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 772.50463, + "y": 390.78676, + "index": 11, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 776.97128, + "y": 395.97905, + "index": 12, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 779.42413, + "y": 402.37393, + "index": 13, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 779.80002, + "y": 546.23321, + "index": 14, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 778.28951, + "y": 557.12169, + "index": 15, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 773.87207, + "y": 567.18781, + "index": 16, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 766.88133, + "y": 575.67133, + "index": 17, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 757.84526, + "y": 581.93152, + "index": 18, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 747.44631, + "y": 585.49559, + "index": 19, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 599.80002, + "y": 586.23321, + "index": 20, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 593.05202, + "y": 585.06044, + "index": 21, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 587.0954, + "y": 581.67966, + "index": 22, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 582.62875, + "y": 576.48737, + "index": 23, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 580.1759, + "y": 570.09249, + "index": 24, + "body": { + "#": 179 + }, + "isInternal": false + }, + { + "x": 688.19755, + "y": 494.64407 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -6.83766, + "y": 5.30943 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00064, + "y": 2.89886 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 214 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 216 + }, + "max": { + "#": 217 + } + }, + { + "x": 579.80002, + "y": 386.23321 + }, + { + "x": 779.80002, + "y": 589.14048 + }, + { + "x": 688.19864, + "y": 491.74801 + }, + [ + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + } + ], + { + "x": -0.99593, + "y": -0.09018 + }, + { + "x": -0.96353, + "y": -0.26761 + }, + { + "x": -0.89979, + "y": -0.43633 + }, + { + "x": -0.80678, + "y": -0.59086 + }, + { + "x": -0.68752, + "y": -0.72617 + }, + { + "x": -0.5459, + "y": -0.83785 + }, + { + "x": -0.38652, + "y": -0.92228 + }, + { + "x": -0.21457, + "y": -0.97671 + }, + { + "x": -0.02432, + "y": -0.9997 + }, + { + "x": -0.17123, + "y": 0.98523 + }, + { + "x": -0.49361, + "y": 0.86969 + }, + { + "x": -0.75809, + "y": 0.65215 + }, + { + "x": -0.93367, + "y": 0.35813 + }, + { + "x": 1, + "y": -0.00261 + }, + { + "x": 0.99051, + "y": 0.13741 + }, + { + "x": 0.91571, + "y": 0.40185 + }, + { + "x": 0.77174, + "y": 0.63594 + }, + { + "x": 0.56948, + "y": 0.822 + }, + { + "x": 0.32422, + "y": 0.94598 + }, + { + "x": 0.005, + "y": 0.99999 + }, + { + "x": -0.99994, + "y": 0.0111 + }, + { + "id": "12,16,7,12", + "startCol": 12, + "endCol": 16, + "startRow": 7, + "endRow": 12 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 243 + }, + "angle": 0.00091, + "vertices": { + "#": 244 + }, + "position": { + "#": 273 + }, + "force": { + "#": 274 + }, + "torque": 0, + "positionImpulse": { + "#": 275 + }, + "constraintImpulse": { + "#": 276 + }, + "totalContacts": 0, + "speed": 2.87324, + "angularSpeed": 0.00014, + "velocity": { + "#": 277 + }, + "angularVelocity": 0.00014, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 278 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 279 + }, + "bounds": { + "#": 281 + }, + "positionPrev": { + "#": 284 + }, + "anglePrev": 0.00077, + "axes": { + "#": 285 + }, + "area": 29929.09118, + "mass": 29.92909, + "inverseMass": 0.03341, + "inertia": 642055.68359, + "inverseInertia": 0, + "parent": { + "#": 242 + }, + "sleepCounter": 0, + "region": { + "#": 300 + } + }, + [ + { + "#": 242 + } + ], + [ + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + } + ], + { + "x": 33.00589, + "y": 408.41129, + "index": 0, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 35.4702, + "y": 381.46964, + "index": 1, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 42.73385, + "y": 355.40884, + "index": 2, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 54.56055, + "y": 331.07667, + "index": 3, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 70.56558, + "y": 309.26464, + "index": 4, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 90.2283, + "y": 290.6823, + "index": 5, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 112.90907, + "y": 275.93414, + "index": 6, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 137.87009, + "y": 265.49991, + "index": 7, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 164.29937, + "y": 259.71904, + "index": 8, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 213.14255, + "y": 258.57544, + "index": 9, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 219.88948, + "y": 259.75436, + "index": 10, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 225.84301, + "y": 263.14057, + "index": 11, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 230.30492, + "y": 268.33693, + "index": 12, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 232.75195, + "y": 274.73404, + "index": 13, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 233.09696, + "y": 308.59365, + "index": 14, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 230.63265, + "y": 335.53531, + "index": 15, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 223.369, + "y": 361.5961, + "index": 16, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 211.5423, + "y": 385.92828, + "index": 17, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 195.53727, + "y": 407.7403, + "index": 18, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 175.87455, + "y": 426.32264, + "index": 19, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 153.19378, + "y": 441.0708, + "index": 20, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 128.23276, + "y": 451.50503, + "index": 21, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 101.80348, + "y": 457.2859, + "index": 22, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 52.9603, + "y": 458.4295, + "index": 23, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 46.21337, + "y": 457.25058, + "index": 24, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 40.25984, + "y": 453.86437, + "index": 25, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 35.79793, + "y": 448.66801, + "index": 26, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 33.3509, + "y": 442.2709, + "index": 27, + "body": { + "#": 242 + }, + "isInternal": false + }, + { + "x": 133.05143, + "y": 358.50247 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.78725, + "y": 4.41932 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00873, + "y": 2.87322 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 280 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 282 + }, + "max": { + "#": 283 + } + }, + { + "x": 33.00589, + "y": 258.57544 + }, + { + "x": 233.1057, + "y": 461.30273 + }, + { + "x": 133.04269, + "y": 355.62925 + }, + [ + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + } + ], + { + "x": 0.99584, + "y": 0.09109 + }, + { + "x": 0.96328, + "y": 0.26849 + }, + { + "x": 0.89939, + "y": 0.43715 + }, + { + "x": 0.80624, + "y": 0.59159 + }, + { + "x": 0.68686, + "y": 0.72679 + }, + { + "x": 0.54514, + "y": 0.83835 + }, + { + "x": 0.38568, + "y": 0.92263 + }, + { + "x": 0.21368, + "y": 0.9769 + }, + { + "x": 0.02341, + "y": 0.99973 + }, + { + "x": -0.17213, + "y": 0.98507 + }, + { + "x": -0.4944, + "y": 0.86924 + }, + { + "x": -0.75869, + "y": 0.65146 + }, + { + "x": -0.934, + "y": 0.35727 + }, + { + "x": -0.99995, + "y": 0.01019 + }, + { + "id": "0,4,5,9", + "startCol": 0, + "endCol": 4, + "startRow": 5, + "endRow": 9 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 302 + }, + "angle": 0, + "vertices": { + "#": 303 + }, + "position": { + "#": 316 + }, + "force": { + "#": 317 + }, + "torque": 0, + "positionImpulse": { + "#": 318 + }, + "constraintImpulse": { + "#": 319 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 320 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 321 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 322 + }, + "bounds": { + "#": 324 + }, + "positionPrev": { + "#": 327 + }, + "anglePrev": 0, + "axes": { + "#": 328 + }, + "area": 9624.85331, + "mass": 9.62485, + "inverseMass": 0.1039, + "inertia": 129719.99536, + "inverseInertia": 0.00001, + "parent": { + "#": 301 + }, + "sleepCounter": 0, + "region": { + "#": 341 + } + }, + [ + { + "#": 301 + } + ], + [ + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + } + ], + { + "x": 300.59282, + "y": 344.17545, + "index": 0, + "body": { + "#": 301 + }, + "isInternal": false + }, + { + "x": 301.86536, + "y": 336.30094, + "index": 1, + "body": { + "#": 301 + }, + "isInternal": false + }, + { + "x": 305.55345, + "y": 329.22809, + "index": 2, + "body": { + "#": 301 + }, + "isInternal": false + }, + { + "x": 311.28161, + "y": 323.67693, + "index": 3, + "body": { + "#": 301 + }, + "isInternal": false + }, + { + "x": 318.4667, + "y": 320.21259, + "index": 4, + "body": { + "#": 301 + }, + "isInternal": false + }, + { + "x": 475.59282, + "y": 319.17545, + "index": 5, + "body": { + "#": 301 + }, + "isInternal": false + }, + { + "x": 483.46732, + "y": 320.44799, + "index": 6, + "body": { + "#": 301 + }, + "isInternal": false + }, + { + "x": 490.54018, + "y": 324.13608, + "index": 7, + "body": { + "#": 301 + }, + "isInternal": false + }, + { + "x": 496.09134, + "y": 329.86424, + "index": 8, + "body": { + "#": 301 + }, + "isInternal": false + }, + { + "x": 499.55567, + "y": 337.04933, + "index": 9, + "body": { + "#": 301 + }, + "isInternal": false + }, + { + "x": 500.59282, + "y": 369.17545, + "index": 10, + "body": { + "#": 301 + }, + "isInternal": false + }, + { + "x": 300.59282, + "y": 369.17545, + "index": 11, + "body": { + "#": 301 + }, + "isInternal": false + }, + { + "x": 400.68045, + "y": 344.93452 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 2.22424, + "y": 2.45029 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 323 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 325 + }, + "max": { + "#": 326 + } + }, + { + "x": 300.59282, + "y": 319.17545 + }, + { + "x": 500.59282, + "y": 372.08272 + }, + { + "x": 400.68045, + "y": 342.02725 + }, + [ + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + } + ], + { + "x": -0.98719, + "y": -0.15953 + }, + { + "x": -0.88669, + "y": -0.46236 + }, + { + "x": -0.69592, + "y": -0.71811 + }, + { + "x": -0.43431, + "y": -0.90076 + }, + { + "x": -0.0066, + "y": -0.99998 + }, + { + "x": 0.15953, + "y": -0.98719 + }, + { + "x": 0.46236, + "y": -0.88669 + }, + { + "x": 0.71811, + "y": -0.69592 + }, + { + "x": 0.90076, + "y": -0.43431 + }, + { + "x": 0.99948, + "y": -0.03227 + }, + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,10,6,7", + "startCol": 6, + "endCol": 10, + "startRow": 6, + "endRow": 7 + }, + { + "id": 9, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 343 + }, + "angle": -0.00007, + "vertices": { + "#": 344 + }, + "position": { + "#": 393 + }, + "force": { + "#": 394 + }, + "torque": 0, + "positionImpulse": { + "#": 395 + }, + "constraintImpulse": { + "#": 396 + }, + "totalContacts": 0, + "speed": 2.90356, + "angularSpeed": 0.00001, + "velocity": { + "#": 397 + }, + "angularVelocity": -0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 398 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 399 + }, + "bounds": { + "#": 401 + }, + "positionPrev": { + "#": 404 + }, + "anglePrev": -0.00006, + "axes": { + "#": 405 + }, + "area": 13710.38848, + "mass": 13.71039, + "inverseMass": 0.07294, + "inertia": 119782.82094, + "inverseInertia": 0.00001, + "parent": { + "#": 342 + }, + "sleepCounter": 0, + "region": { + "#": 430 + } + }, + [ + { + "#": 342 + } + ], + [ + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + } + ], + { + "x": 233.28444, + "y": 142.82629, + "index": 0, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 232.94279, + "y": 147.34321, + "index": 1, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 231.92495, + "y": 151.75719, + "index": 2, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 230.25413, + "y": 155.96761, + "index": 3, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 227.96843, + "y": 159.87847, + "index": 4, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 225.11995, + "y": 163.4006, + "index": 5, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 204.16673, + "y": 184.37565, + "index": 6, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 200.73121, + "y": 187.32801, + "index": 7, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 196.89033, + "y": 189.72945, + "index": 8, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 192.73167, + "y": 191.52521, + "index": 9, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 188.35003, + "y": 192.67437, + "index": 10, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 183.84533, + "y": 193.15072, + "index": 11, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 154.19595, + "y": 193.16616, + "index": 12, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 149.67903, + "y": 192.8245, + "index": 13, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 145.26505, + "y": 191.80667, + "index": 14, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 141.05463, + "y": 190.13585, + "index": 15, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 137.14377, + "y": 187.85014, + "index": 16, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 133.62164, + "y": 185.00166, + "index": 17, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 112.64659, + "y": 164.04845, + "index": 18, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 109.69423, + "y": 160.61292, + "index": 19, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 107.29279, + "y": 156.77205, + "index": 20, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 105.49702, + "y": 152.61338, + "index": 21, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 104.34787, + "y": 148.23175, + "index": 22, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 103.87152, + "y": 143.72705, + "index": 23, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 103.85608, + "y": 114.07767, + "index": 24, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 104.19773, + "y": 109.56075, + "index": 25, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 105.21557, + "y": 105.14676, + "index": 26, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 106.88639, + "y": 100.93635, + "index": 27, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 109.1721, + "y": 97.02549, + "index": 28, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 112.02058, + "y": 93.50335, + "index": 29, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 132.97379, + "y": 72.52831, + "index": 30, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 136.40931, + "y": 69.57595, + "index": 31, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 140.25019, + "y": 67.17451, + "index": 32, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 144.40886, + "y": 65.37874, + "index": 33, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 148.79049, + "y": 64.22958, + "index": 34, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 153.29519, + "y": 63.75324, + "index": 35, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 182.94457, + "y": 63.7378, + "index": 36, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 187.46149, + "y": 64.07945, + "index": 37, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 191.87547, + "y": 65.09729, + "index": 38, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 196.08589, + "y": 66.76811, + "index": 39, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 199.99675, + "y": 69.05381, + "index": 40, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 203.51888, + "y": 71.90229, + "index": 41, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 224.49393, + "y": 92.8555, + "index": 42, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 227.44629, + "y": 96.29103, + "index": 43, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 229.84773, + "y": 100.13191, + "index": 44, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 231.6435, + "y": 104.29057, + "index": 45, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 232.79265, + "y": 108.67221, + "index": 46, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 233.269, + "y": 113.17691, + "index": 47, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 168.57026, + "y": 128.45198 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.22422, + "y": 1.38163 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00035, + "y": 2.90356 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 400 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 402 + }, + "max": { + "#": 403 + } + }, + { + "x": 103.85608, + "y": 63.7378 + }, + { + "x": 233.28479, + "y": 196.06972 + }, + { + "x": 168.56991, + "y": 125.54841 + }, + [ + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + } + ], + { + "x": -0.99715, + "y": -0.07542 + }, + { + "x": -0.97443, + "y": -0.2247 + }, + { + "x": -0.92949, + "y": -0.36885 + }, + { + "x": -0.86336, + "y": -0.50459 + }, + { + "x": -0.77754, + "y": -0.62883 + }, + { + "x": -0.70747, + "y": -0.70674 + }, + { + "x": -0.65176, + "y": -0.75842 + }, + { + "x": -0.53014, + "y": -0.84791 + }, + { + "x": -0.39643, + "y": -0.91806 + }, + { + "x": -0.25369, + "y": -0.96729 + }, + { + "x": -0.10516, + "y": -0.99446 + }, + { + "x": -0.00052, + "y": -1 + }, + { + "x": 0.07542, + "y": -0.99715 + }, + { + "x": 0.2247, + "y": -0.97443 + }, + { + "x": 0.36885, + "y": -0.92949 + }, + { + "x": 0.50459, + "y": -0.86336 + }, + { + "x": 0.62883, + "y": -0.77754 + }, + { + "x": 0.70674, + "y": -0.70747 + }, + { + "x": 0.75842, + "y": -0.65176 + }, + { + "x": 0.84791, + "y": -0.53014 + }, + { + "x": 0.91806, + "y": -0.39643 + }, + { + "x": 0.96729, + "y": -0.25369 + }, + { + "x": 0.99446, + "y": -0.10516 + }, + { + "x": 1, + "y": -0.00052 + }, + { + "id": "2,4,1,3", + "startCol": 2, + "endCol": 4, + "startRow": 1, + "endRow": 3 + }, + { + "id": 10, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 432 + }, + "angle": 0.00002, + "vertices": { + "#": 433 + }, + "position": { + "#": 459 + }, + "force": { + "#": 460 + }, + "torque": 0, + "positionImpulse": { + "#": 461 + }, + "constraintImpulse": { + "#": 462 + }, + "totalContacts": 0, + "speed": 2.90696, + "angularSpeed": 0, + "velocity": { + "#": 463 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 464 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 465 + }, + "bounds": { + "#": 467 + }, + "positionPrev": { + "#": 470 + }, + "anglePrev": 0.00002, + "axes": { + "#": 471 + }, + "area": 13066.63253, + "mass": 13.06663, + "inverseMass": 0.07653, + "inertia": 110539.49233, + "inverseInertia": 0.00001, + "parent": { + "#": 431 + }, + "sleepCounter": 0, + "region": { + "#": 497 + } + }, + [ + { + "#": 431 + } + ], + [ + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + } + ], + { + "x": 371.42229, + "y": 150.77903, + "index": 0, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 370.8374, + "y": 154.14868, + "index": 1, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 369.15126, + "y": 157.12417, + "index": 2, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 366.56109, + "y": 159.35748, + "index": 3, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 313.26254, + "y": 172.39477, + "index": 4, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 304.64059, + "y": 174.17729, + "index": 5, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 295.83754, + "y": 174.03041, + "index": 6, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 287.27986, + "y": 171.96124, + "index": 7, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 279.38215, + "y": 168.07004, + "index": 8, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 272.52703, + "y": 162.5453, + "index": 9, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 240.24696, + "y": 123.82192, + "index": 10, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 237.66055, + "y": 118.98037, + "index": 11, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 236.48778, + "y": 113.61804, + "index": 12, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 236.81696, + "y": 108.13884, + "index": 13, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 238.6233, + "y": 102.95549, + "index": 14, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 268.54286, + "y": 66.27023, + "index": 15, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 274.47046, + "y": 59.76032, + "index": 16, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 281.67864, + "y": 54.70488, + "index": 17, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 289.81819, + "y": 51.34884, + "index": 18, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 298.49478, + "y": 49.85478, + "index": 19, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 307.28804, + "y": 50.2951, + "index": 20, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 364.51406, + "y": 63.84738, + "index": 21, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 367.53803, + "y": 65.44494, + "index": 22, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 369.84684, + "y": 67.96804, + "index": 23, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 371.17041, + "y": 71.12158, + "index": 24, + "body": { + "#": 431 + }, + "isInternal": false + }, + { + "x": 310.46147, + "y": 112.03993 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.08202, + "y": 0.65405 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00028, + "y": 2.90696 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 466 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 468 + }, + "max": { + "#": 469 + } + }, + { + "x": 236.48778, + "y": 49.85478 + }, + { + "x": 371.42257, + "y": 177.08425 + }, + { + "x": 310.46119, + "y": 109.13297 + }, + [ + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + } + ], + { + "x": 0.98527, + "y": 0.17102 + }, + { + "x": 0.87002, + "y": 0.49302 + }, + { + "x": 0.65301, + "y": 0.75735 + }, + { + "x": 0.2376, + "y": 0.97136 + }, + { + "x": 0.20246, + "y": 0.97929 + }, + { + "x": -0.01668, + "y": 0.99986 + }, + { + "x": -0.23502, + "y": 0.97199 + }, + { + "x": -0.44197, + "y": 0.89703 + }, + { + "x": -0.62751, + "y": 0.77861 + }, + { + "x": -0.76812, + "y": 0.64031 + }, + { + "x": -0.88203, + "y": 0.47119 + }, + { + "x": -0.97691, + "y": 0.21366 + }, + { + "x": -0.9982, + "y": -0.05997 + }, + { + "x": -0.9443, + "y": -0.32908 + }, + { + "x": -0.77495, + "y": -0.63203 + }, + { + "x": -0.7394, + "y": -0.67326 + }, + { + "x": -0.5742, + "y": -0.81871 + }, + { + "x": -0.38118, + "y": -0.9245 + }, + { + "x": -0.1697, + "y": -0.9855 + }, + { + "x": 0.05001, + "y": -0.99875 + }, + { + "x": 0.23045, + "y": -0.97309 + }, + { + "x": 0.46712, + "y": -0.88419 + }, + { + "x": 0.73774, + "y": -0.67508 + }, + { + "x": 0.92208, + "y": -0.38701 + }, + { + "x": 1, + "y": -0.00316 + }, + { + "id": "4,7,1,3", + "startCol": 4, + "endCol": 7, + "startRow": 1, + "endRow": 3 + }, + { + "id": 11, + "type": "body", + "label": "Polygon Body", + "parts": { + "#": 499 + }, + "angle": 0, + "vertices": { + "#": 500 + }, + "position": { + "#": 512 + }, + "force": { + "#": 513 + }, + "torque": 0, + "positionImpulse": { + "#": 514 + }, + "constraintImpulse": { + "#": 515 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 516 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 517 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 518 + }, + "bounds": { + "#": 520 + }, + "positionPrev": { + "#": 523 + }, + "anglePrev": 0, + "axes": { + "#": 524 + }, + "area": 3901.76892, + "mass": 3.90177, + "inverseMass": 0.25629, + "inertia": 10483.19572, + "inverseInertia": 0.0001, + "parent": { + "#": 498 + }, + "sleepCounter": 0, + "region": { + "#": 536 + } + }, + [ + { + "#": 498 + } + ], + [ + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + } + ], + { + "x": 448.70778, + "y": 184.14467, + "index": 0, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 446.63885, + "y": 193.00339, + "index": 1, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 440.86009, + "y": 200.0293, + "index": 2, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 432.5671, + "y": 203.76878, + "index": 3, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 423.47565, + "y": 203.44816, + "index": 4, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 367.84995, + "y": 165.33855, + "index": 5, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 418.70783, + "y": 129.21189, + "index": 6, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 427.41418, + "y": 126.57431, + "index": 7, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 436.38817, + "y": 128.06593, + "index": 8, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 443.77314, + "y": 133.37815, + "index": 9, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 448.04118, + "y": 141.4119, + "index": 10, + "body": { + "#": 498 + }, + "isInternal": false + }, + { + "x": 418.46078, + "y": 165.14269 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.32906, + "y": 0.46324 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 519 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 521 + }, + "max": { + "#": 522 + } + }, + { + "x": 367.84995, + "y": 126.57431 + }, + { + "x": 448.70778, + "y": 206.67605 + }, + { + "x": 418.46078, + "y": 162.23542 + }, + [ + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + } + ], + { + "x": 0.97379, + "y": 0.22743 + }, + { + "x": 0.77232, + "y": 0.63523 + }, + { + "x": 0.41106, + "y": 0.91161 + }, + { + "x": -0.03524, + "y": 0.99938 + }, + { + "x": -0.56519, + "y": 0.82496 + }, + { + "x": -0.57911, + "y": -0.81525 + }, + { + "x": -0.28994, + "y": -0.95705 + }, + { + "x": 0.16397, + "y": -0.98647 + }, + { + "x": 0.58395, + "y": -0.81179 + }, + { + "x": 0.88311, + "y": -0.46916 + }, + { + "x": 0.99988, + "y": -0.0156 + }, + { + "id": "7,9,2,4", + "startCol": 7, + "endCol": 9, + "startRow": 2, + "endRow": 4 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 541 + }, + "max": { + "#": 542 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/softBody/softBody-0.json b/test/node/refs/softBody/softBody-0.json new file mode 100644 index 00000000..fc71fe64 --- /dev/null +++ b/test/node/refs/softBody/softBody-0.json @@ -0,0 +1,34670 @@ +[ + { + "id": 108, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 90 + }, + "composites": { + "#": 91 + }, + "label": "World", + "gravity": { + "#": 3495 + }, + "bounds": { + "#": 3496 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [ + { + "#": 92 + }, + { + "#": 1459 + }, + { + "#": 2683 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 93 + }, + "constraints": { + "#": 1169 + }, + "composites": { + "#": 1458 + }, + "label": "Soft Body" + }, + [ + { + "#": 94 + }, + { + "#": 137 + }, + { + "#": 180 + }, + { + "#": 223 + }, + { + "#": 266 + }, + { + "#": 309 + }, + { + "#": 352 + }, + { + "#": 395 + }, + { + "#": 438 + }, + { + "#": 481 + }, + { + "#": 524 + }, + { + "#": 567 + }, + { + "#": 610 + }, + { + "#": 653 + }, + { + "#": 696 + }, + { + "#": 739 + }, + { + "#": 782 + }, + { + "#": 825 + }, + { + "#": 868 + }, + { + "#": 911 + }, + { + "#": 954 + }, + { + "#": 997 + }, + { + "#": 1040 + }, + { + "#": 1083 + }, + { + "#": 1126 + } + ], + { + "id": 5, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 96 + }, + "position": { + "#": 115 + }, + "force": { + "#": 116 + }, + "torque": 0, + "positionImpulse": { + "#": 117 + }, + "constraintImpulse": { + "#": 118 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 119 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 120 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 121 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 123 + }, + "positionPrev": { + "#": 126 + }, + "anglePrev": 0, + "axes": { + "#": 127 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 94 + }, + "sleepCounter": 0 + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + } + ], + { + "x": 285.454, + "y": 121.126, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 283.315, + "y": 127, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 279.297, + "y": 131.789, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 273.883, + "y": 134.914, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 267.727, + "y": 136, + "index": 4, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 261.571, + "y": 134.914, + "index": 5, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 256.157, + "y": 131.789, + "index": 6, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 252.139, + "y": 127, + "index": 7, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 250, + "y": 121.126, + "index": 8, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 250, + "y": 114.874, + "index": 9, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 252.139, + "y": 109, + "index": 10, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 256.157, + "y": 104.211, + "index": 11, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 261.571, + "y": 101.086, + "index": 12, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 267.727, + "y": 100, + "index": 13, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 273.883, + "y": 101.086, + "index": 14, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 279.297, + "y": 104.211, + "index": 15, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 283.315, + "y": 109, + "index": 16, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 285.454, + "y": 114.874, + "index": 17, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 267.727, + "y": 118 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 122 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 124 + }, + "max": { + "#": 125 + } + }, + { + "x": 250, + "y": 100 + }, + { + "x": 285.454, + "y": 136 + }, + { + "x": 267.727, + "y": 118 + }, + [ + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 138 + }, + "angle": 0, + "vertices": { + "#": 139 + }, + "position": { + "#": 158 + }, + "force": { + "#": 159 + }, + "torque": 0, + "positionImpulse": { + "#": 160 + }, + "constraintImpulse": { + "#": 161 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 162 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 163 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 164 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 166 + }, + "positionPrev": { + "#": 169 + }, + "anglePrev": 0, + "axes": { + "#": 170 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 137 + }, + "sleepCounter": 0 + }, + [ + { + "#": 137 + } + ], + [ + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + }, + { + "#": 156 + }, + { + "#": 157 + } + ], + { + "x": 320.908, + "y": 121.126, + "index": 0, + "body": { + "#": 137 + }, + "isInternal": false + }, + { + "x": 318.769, + "y": 127, + "index": 1, + "body": { + "#": 137 + }, + "isInternal": false + }, + { + "x": 314.751, + "y": 131.789, + "index": 2, + "body": { + "#": 137 + }, + "isInternal": false + }, + { + "x": 309.337, + "y": 134.914, + "index": 3, + "body": { + "#": 137 + }, + "isInternal": false + }, + { + "x": 303.181, + "y": 136, + "index": 4, + "body": { + "#": 137 + }, + "isInternal": false + }, + { + "x": 297.025, + "y": 134.914, + "index": 5, + "body": { + "#": 137 + }, + "isInternal": false + }, + { + "x": 291.611, + "y": 131.789, + "index": 6, + "body": { + "#": 137 + }, + "isInternal": false + }, + { + "x": 287.593, + "y": 127, + "index": 7, + "body": { + "#": 137 + }, + "isInternal": false + }, + { + "x": 285.454, + "y": 121.126, + "index": 8, + "body": { + "#": 137 + }, + "isInternal": false + }, + { + "x": 285.454, + "y": 114.874, + "index": 9, + "body": { + "#": 137 + }, + "isInternal": false + }, + { + "x": 287.593, + "y": 109, + "index": 10, + "body": { + "#": 137 + }, + "isInternal": false + }, + { + "x": 291.611, + "y": 104.211, + "index": 11, + "body": { + "#": 137 + }, + "isInternal": false + }, + { + "x": 297.025, + "y": 101.086, + "index": 12, + "body": { + "#": 137 + }, + "isInternal": false + }, + { + "x": 303.181, + "y": 100, + "index": 13, + "body": { + "#": 137 + }, + "isInternal": false + }, + { + "x": 309.337, + "y": 101.086, + "index": 14, + "body": { + "#": 137 + }, + "isInternal": false + }, + { + "x": 314.751, + "y": 104.211, + "index": 15, + "body": { + "#": 137 + }, + "isInternal": false + }, + { + "x": 318.769, + "y": 109, + "index": 16, + "body": { + "#": 137 + }, + "isInternal": false + }, + { + "x": 320.908, + "y": 114.874, + "index": 17, + "body": { + "#": 137 + }, + "isInternal": false + }, + { + "x": 303.181, + "y": 118 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 165 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 167 + }, + "max": { + "#": 168 + } + }, + { + "x": 285.454, + "y": 100 + }, + { + "x": 320.908, + "y": 136 + }, + { + "x": 303.181, + "y": 118 + }, + [ + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 181 + }, + "angle": 0, + "vertices": { + "#": 182 + }, + "position": { + "#": 201 + }, + "force": { + "#": 202 + }, + "torque": 0, + "positionImpulse": { + "#": 203 + }, + "constraintImpulse": { + "#": 204 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 205 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 206 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 207 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 209 + }, + "positionPrev": { + "#": 212 + }, + "anglePrev": 0, + "axes": { + "#": 213 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 180 + }, + "sleepCounter": 0 + }, + [ + { + "#": 180 + } + ], + [ + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + } + ], + { + "x": 356.362, + "y": 121.126, + "index": 0, + "body": { + "#": 180 + }, + "isInternal": false + }, + { + "x": 354.223, + "y": 127, + "index": 1, + "body": { + "#": 180 + }, + "isInternal": false + }, + { + "x": 350.205, + "y": 131.789, + "index": 2, + "body": { + "#": 180 + }, + "isInternal": false + }, + { + "x": 344.791, + "y": 134.914, + "index": 3, + "body": { + "#": 180 + }, + "isInternal": false + }, + { + "x": 338.635, + "y": 136, + "index": 4, + "body": { + "#": 180 + }, + "isInternal": false + }, + { + "x": 332.479, + "y": 134.914, + "index": 5, + "body": { + "#": 180 + }, + "isInternal": false + }, + { + "x": 327.065, + "y": 131.789, + "index": 6, + "body": { + "#": 180 + }, + "isInternal": false + }, + { + "x": 323.047, + "y": 127, + "index": 7, + "body": { + "#": 180 + }, + "isInternal": false + }, + { + "x": 320.908, + "y": 121.126, + "index": 8, + "body": { + "#": 180 + }, + "isInternal": false + }, + { + "x": 320.908, + "y": 114.874, + "index": 9, + "body": { + "#": 180 + }, + "isInternal": false + }, + { + "x": 323.047, + "y": 109, + "index": 10, + "body": { + "#": 180 + }, + "isInternal": false + }, + { + "x": 327.065, + "y": 104.211, + "index": 11, + "body": { + "#": 180 + }, + "isInternal": false + }, + { + "x": 332.479, + "y": 101.086, + "index": 12, + "body": { + "#": 180 + }, + "isInternal": false + }, + { + "x": 338.635, + "y": 100, + "index": 13, + "body": { + "#": 180 + }, + "isInternal": false + }, + { + "x": 344.791, + "y": 101.086, + "index": 14, + "body": { + "#": 180 + }, + "isInternal": false + }, + { + "x": 350.205, + "y": 104.211, + "index": 15, + "body": { + "#": 180 + }, + "isInternal": false + }, + { + "x": 354.223, + "y": 109, + "index": 16, + "body": { + "#": 180 + }, + "isInternal": false + }, + { + "x": 356.362, + "y": 114.874, + "index": 17, + "body": { + "#": 180 + }, + "isInternal": false + }, + { + "x": 338.635, + "y": 118 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 208 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 210 + }, + "max": { + "#": 211 + } + }, + { + "x": 320.908, + "y": 100 + }, + { + "x": 356.362, + "y": 136 + }, + { + "x": 338.635, + "y": 118 + }, + [ + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 224 + }, + "angle": 0, + "vertices": { + "#": 225 + }, + "position": { + "#": 244 + }, + "force": { + "#": 245 + }, + "torque": 0, + "positionImpulse": { + "#": 246 + }, + "constraintImpulse": { + "#": 247 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 248 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 249 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 250 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 252 + }, + "positionPrev": { + "#": 255 + }, + "anglePrev": 0, + "axes": { + "#": 256 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 223 + }, + "sleepCounter": 0 + }, + [ + { + "#": 223 + } + ], + [ + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + } + ], + { + "x": 391.816, + "y": 121.126, + "index": 0, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 389.677, + "y": 127, + "index": 1, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 385.659, + "y": 131.789, + "index": 2, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 380.245, + "y": 134.914, + "index": 3, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 374.089, + "y": 136, + "index": 4, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 367.933, + "y": 134.914, + "index": 5, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 362.519, + "y": 131.789, + "index": 6, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 358.501, + "y": 127, + "index": 7, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 356.362, + "y": 121.126, + "index": 8, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 356.362, + "y": 114.874, + "index": 9, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 358.501, + "y": 109, + "index": 10, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 362.519, + "y": 104.211, + "index": 11, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 367.933, + "y": 101.086, + "index": 12, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 374.089, + "y": 100, + "index": 13, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 380.245, + "y": 101.086, + "index": 14, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 385.659, + "y": 104.211, + "index": 15, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 389.677, + "y": 109, + "index": 16, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 391.816, + "y": 114.874, + "index": 17, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 374.089, + "y": 118 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 251 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 253 + }, + "max": { + "#": 254 + } + }, + { + "x": 356.362, + "y": 100 + }, + { + "x": 391.816, + "y": 136 + }, + { + "x": 374.089, + "y": 118 + }, + [ + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 267 + }, + "angle": 0, + "vertices": { + "#": 268 + }, + "position": { + "#": 287 + }, + "force": { + "#": 288 + }, + "torque": 0, + "positionImpulse": { + "#": 289 + }, + "constraintImpulse": { + "#": 290 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 291 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 292 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 293 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 295 + }, + "positionPrev": { + "#": 298 + }, + "anglePrev": 0, + "axes": { + "#": 299 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 266 + }, + "sleepCounter": 0 + }, + [ + { + "#": 266 + } + ], + [ + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + } + ], + { + "x": 427.27, + "y": 121.126, + "index": 0, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 425.131, + "y": 127, + "index": 1, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 421.113, + "y": 131.789, + "index": 2, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 415.699, + "y": 134.914, + "index": 3, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 409.543, + "y": 136, + "index": 4, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 403.387, + "y": 134.914, + "index": 5, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 397.973, + "y": 131.789, + "index": 6, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 393.955, + "y": 127, + "index": 7, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 391.816, + "y": 121.126, + "index": 8, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 391.816, + "y": 114.874, + "index": 9, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 393.955, + "y": 109, + "index": 10, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 397.973, + "y": 104.211, + "index": 11, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 403.387, + "y": 101.086, + "index": 12, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 409.543, + "y": 100, + "index": 13, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 415.699, + "y": 101.086, + "index": 14, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 421.113, + "y": 104.211, + "index": 15, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 425.131, + "y": 109, + "index": 16, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 427.27, + "y": 114.874, + "index": 17, + "body": { + "#": 266 + }, + "isInternal": false + }, + { + "x": 409.543, + "y": 118 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 294 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 296 + }, + "max": { + "#": 297 + } + }, + { + "x": 391.816, + "y": 100 + }, + { + "x": 427.27, + "y": 136 + }, + { + "x": 409.543, + "y": 118 + }, + [ + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 10, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 310 + }, + "angle": 0, + "vertices": { + "#": 311 + }, + "position": { + "#": 330 + }, + "force": { + "#": 331 + }, + "torque": 0, + "positionImpulse": { + "#": 332 + }, + "constraintImpulse": { + "#": 333 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 334 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 335 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 336 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 338 + }, + "positionPrev": { + "#": 341 + }, + "anglePrev": 0, + "axes": { + "#": 342 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 309 + }, + "sleepCounter": 0 + }, + [ + { + "#": 309 + } + ], + [ + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + } + ], + { + "x": 285.454, + "y": 157.126, + "index": 0, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 283.315, + "y": 163, + "index": 1, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 279.297, + "y": 167.789, + "index": 2, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 273.883, + "y": 170.914, + "index": 3, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 267.727, + "y": 172, + "index": 4, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 261.571, + "y": 170.914, + "index": 5, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 256.157, + "y": 167.789, + "index": 6, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 252.139, + "y": 163, + "index": 7, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 250, + "y": 157.126, + "index": 8, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 250, + "y": 150.874, + "index": 9, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 252.139, + "y": 145, + "index": 10, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 256.157, + "y": 140.211, + "index": 11, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 261.571, + "y": 137.086, + "index": 12, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 267.727, + "y": 136, + "index": 13, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 273.883, + "y": 137.086, + "index": 14, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 279.297, + "y": 140.211, + "index": 15, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 283.315, + "y": 145, + "index": 16, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 285.454, + "y": 150.874, + "index": 17, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 267.727, + "y": 154 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 337 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 339 + }, + "max": { + "#": 340 + } + }, + { + "x": 250, + "y": 136 + }, + { + "x": 285.454, + "y": 172 + }, + { + "x": 267.727, + "y": 154 + }, + [ + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 11, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 353 + }, + "angle": 0, + "vertices": { + "#": 354 + }, + "position": { + "#": 373 + }, + "force": { + "#": 374 + }, + "torque": 0, + "positionImpulse": { + "#": 375 + }, + "constraintImpulse": { + "#": 376 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 377 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 378 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 379 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 381 + }, + "positionPrev": { + "#": 384 + }, + "anglePrev": 0, + "axes": { + "#": 385 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 352 + }, + "sleepCounter": 0 + }, + [ + { + "#": 352 + } + ], + [ + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + } + ], + { + "x": 320.908, + "y": 157.126, + "index": 0, + "body": { + "#": 352 + }, + "isInternal": false + }, + { + "x": 318.769, + "y": 163, + "index": 1, + "body": { + "#": 352 + }, + "isInternal": false + }, + { + "x": 314.751, + "y": 167.789, + "index": 2, + "body": { + "#": 352 + }, + "isInternal": false + }, + { + "x": 309.337, + "y": 170.914, + "index": 3, + "body": { + "#": 352 + }, + "isInternal": false + }, + { + "x": 303.181, + "y": 172, + "index": 4, + "body": { + "#": 352 + }, + "isInternal": false + }, + { + "x": 297.025, + "y": 170.914, + "index": 5, + "body": { + "#": 352 + }, + "isInternal": false + }, + { + "x": 291.611, + "y": 167.789, + "index": 6, + "body": { + "#": 352 + }, + "isInternal": false + }, + { + "x": 287.593, + "y": 163, + "index": 7, + "body": { + "#": 352 + }, + "isInternal": false + }, + { + "x": 285.454, + "y": 157.126, + "index": 8, + "body": { + "#": 352 + }, + "isInternal": false + }, + { + "x": 285.454, + "y": 150.874, + "index": 9, + "body": { + "#": 352 + }, + "isInternal": false + }, + { + "x": 287.593, + "y": 145, + "index": 10, + "body": { + "#": 352 + }, + "isInternal": false + }, + { + "x": 291.611, + "y": 140.211, + "index": 11, + "body": { + "#": 352 + }, + "isInternal": false + }, + { + "x": 297.025, + "y": 137.086, + "index": 12, + "body": { + "#": 352 + }, + "isInternal": false + }, + { + "x": 303.181, + "y": 136, + "index": 13, + "body": { + "#": 352 + }, + "isInternal": false + }, + { + "x": 309.337, + "y": 137.086, + "index": 14, + "body": { + "#": 352 + }, + "isInternal": false + }, + { + "x": 314.751, + "y": 140.211, + "index": 15, + "body": { + "#": 352 + }, + "isInternal": false + }, + { + "x": 318.769, + "y": 145, + "index": 16, + "body": { + "#": 352 + }, + "isInternal": false + }, + { + "x": 320.908, + "y": 150.874, + "index": 17, + "body": { + "#": 352 + }, + "isInternal": false + }, + { + "x": 303.181, + "y": 154 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 380 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 382 + }, + "max": { + "#": 383 + } + }, + { + "x": 285.454, + "y": 136 + }, + { + "x": 320.908, + "y": 172 + }, + { + "x": 303.181, + "y": 154 + }, + [ + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 12, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 396 + }, + "angle": 0, + "vertices": { + "#": 397 + }, + "position": { + "#": 416 + }, + "force": { + "#": 417 + }, + "torque": 0, + "positionImpulse": { + "#": 418 + }, + "constraintImpulse": { + "#": 419 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 420 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 421 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 422 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 424 + }, + "positionPrev": { + "#": 427 + }, + "anglePrev": 0, + "axes": { + "#": 428 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 395 + }, + "sleepCounter": 0 + }, + [ + { + "#": 395 + } + ], + [ + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + } + ], + { + "x": 356.362, + "y": 157.126, + "index": 0, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 354.223, + "y": 163, + "index": 1, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 350.205, + "y": 167.789, + "index": 2, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 344.791, + "y": 170.914, + "index": 3, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 338.635, + "y": 172, + "index": 4, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 332.479, + "y": 170.914, + "index": 5, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 327.065, + "y": 167.789, + "index": 6, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 323.047, + "y": 163, + "index": 7, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 320.908, + "y": 157.126, + "index": 8, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 320.908, + "y": 150.874, + "index": 9, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 323.047, + "y": 145, + "index": 10, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 327.065, + "y": 140.211, + "index": 11, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 332.479, + "y": 137.086, + "index": 12, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 338.635, + "y": 136, + "index": 13, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 344.791, + "y": 137.086, + "index": 14, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 350.205, + "y": 140.211, + "index": 15, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 354.223, + "y": 145, + "index": 16, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 356.362, + "y": 150.874, + "index": 17, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 338.635, + "y": 154 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 423 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 425 + }, + "max": { + "#": 426 + } + }, + { + "x": 320.908, + "y": 136 + }, + { + "x": 356.362, + "y": 172 + }, + { + "x": 338.635, + "y": 154 + }, + [ + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 13, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 439 + }, + "angle": 0, + "vertices": { + "#": 440 + }, + "position": { + "#": 459 + }, + "force": { + "#": 460 + }, + "torque": 0, + "positionImpulse": { + "#": 461 + }, + "constraintImpulse": { + "#": 462 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 463 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 464 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 465 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 467 + }, + "positionPrev": { + "#": 470 + }, + "anglePrev": 0, + "axes": { + "#": 471 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 438 + }, + "sleepCounter": 0 + }, + [ + { + "#": 438 + } + ], + [ + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + } + ], + { + "x": 391.816, + "y": 157.126, + "index": 0, + "body": { + "#": 438 + }, + "isInternal": false + }, + { + "x": 389.677, + "y": 163, + "index": 1, + "body": { + "#": 438 + }, + "isInternal": false + }, + { + "x": 385.659, + "y": 167.789, + "index": 2, + "body": { + "#": 438 + }, + "isInternal": false + }, + { + "x": 380.245, + "y": 170.914, + "index": 3, + "body": { + "#": 438 + }, + "isInternal": false + }, + { + "x": 374.089, + "y": 172, + "index": 4, + "body": { + "#": 438 + }, + "isInternal": false + }, + { + "x": 367.933, + "y": 170.914, + "index": 5, + "body": { + "#": 438 + }, + "isInternal": false + }, + { + "x": 362.519, + "y": 167.789, + "index": 6, + "body": { + "#": 438 + }, + "isInternal": false + }, + { + "x": 358.501, + "y": 163, + "index": 7, + "body": { + "#": 438 + }, + "isInternal": false + }, + { + "x": 356.362, + "y": 157.126, + "index": 8, + "body": { + "#": 438 + }, + "isInternal": false + }, + { + "x": 356.362, + "y": 150.874, + "index": 9, + "body": { + "#": 438 + }, + "isInternal": false + }, + { + "x": 358.501, + "y": 145, + "index": 10, + "body": { + "#": 438 + }, + "isInternal": false + }, + { + "x": 362.519, + "y": 140.211, + "index": 11, + "body": { + "#": 438 + }, + "isInternal": false + }, + { + "x": 367.933, + "y": 137.086, + "index": 12, + "body": { + "#": 438 + }, + "isInternal": false + }, + { + "x": 374.089, + "y": 136, + "index": 13, + "body": { + "#": 438 + }, + "isInternal": false + }, + { + "x": 380.245, + "y": 137.086, + "index": 14, + "body": { + "#": 438 + }, + "isInternal": false + }, + { + "x": 385.659, + "y": 140.211, + "index": 15, + "body": { + "#": 438 + }, + "isInternal": false + }, + { + "x": 389.677, + "y": 145, + "index": 16, + "body": { + "#": 438 + }, + "isInternal": false + }, + { + "x": 391.816, + "y": 150.874, + "index": 17, + "body": { + "#": 438 + }, + "isInternal": false + }, + { + "x": 374.089, + "y": 154 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 466 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 468 + }, + "max": { + "#": 469 + } + }, + { + "x": 356.362, + "y": 136 + }, + { + "x": 391.816, + "y": 172 + }, + { + "x": 374.089, + "y": 154 + }, + [ + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 14, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 482 + }, + "angle": 0, + "vertices": { + "#": 483 + }, + "position": { + "#": 502 + }, + "force": { + "#": 503 + }, + "torque": 0, + "positionImpulse": { + "#": 504 + }, + "constraintImpulse": { + "#": 505 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 506 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 507 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 508 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 510 + }, + "positionPrev": { + "#": 513 + }, + "anglePrev": 0, + "axes": { + "#": 514 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 481 + }, + "sleepCounter": 0 + }, + [ + { + "#": 481 + } + ], + [ + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + }, + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + } + ], + { + "x": 427.27, + "y": 157.126, + "index": 0, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 425.131, + "y": 163, + "index": 1, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 421.113, + "y": 167.789, + "index": 2, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 415.699, + "y": 170.914, + "index": 3, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 409.543, + "y": 172, + "index": 4, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 403.387, + "y": 170.914, + "index": 5, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 397.973, + "y": 167.789, + "index": 6, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 393.955, + "y": 163, + "index": 7, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 391.816, + "y": 157.126, + "index": 8, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 391.816, + "y": 150.874, + "index": 9, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 393.955, + "y": 145, + "index": 10, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 397.973, + "y": 140.211, + "index": 11, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 403.387, + "y": 137.086, + "index": 12, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 409.543, + "y": 136, + "index": 13, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 415.699, + "y": 137.086, + "index": 14, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 421.113, + "y": 140.211, + "index": 15, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 425.131, + "y": 145, + "index": 16, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 427.27, + "y": 150.874, + "index": 17, + "body": { + "#": 481 + }, + "isInternal": false + }, + { + "x": 409.543, + "y": 154 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 509 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 511 + }, + "max": { + "#": 512 + } + }, + { + "x": 391.816, + "y": 136 + }, + { + "x": 427.27, + "y": 172 + }, + { + "x": 409.543, + "y": 154 + }, + [ + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 15, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 525 + }, + "angle": 0, + "vertices": { + "#": 526 + }, + "position": { + "#": 545 + }, + "force": { + "#": 546 + }, + "torque": 0, + "positionImpulse": { + "#": 547 + }, + "constraintImpulse": { + "#": 548 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 549 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 550 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 551 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 553 + }, + "positionPrev": { + "#": 556 + }, + "anglePrev": 0, + "axes": { + "#": 557 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 524 + }, + "sleepCounter": 0 + }, + [ + { + "#": 524 + } + ], + [ + { + "#": 527 + }, + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + }, + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + } + ], + { + "x": 285.454, + "y": 193.126, + "index": 0, + "body": { + "#": 524 + }, + "isInternal": false + }, + { + "x": 283.315, + "y": 199, + "index": 1, + "body": { + "#": 524 + }, + "isInternal": false + }, + { + "x": 279.297, + "y": 203.789, + "index": 2, + "body": { + "#": 524 + }, + "isInternal": false + }, + { + "x": 273.883, + "y": 206.914, + "index": 3, + "body": { + "#": 524 + }, + "isInternal": false + }, + { + "x": 267.727, + "y": 208, + "index": 4, + "body": { + "#": 524 + }, + "isInternal": false + }, + { + "x": 261.571, + "y": 206.914, + "index": 5, + "body": { + "#": 524 + }, + "isInternal": false + }, + { + "x": 256.157, + "y": 203.789, + "index": 6, + "body": { + "#": 524 + }, + "isInternal": false + }, + { + "x": 252.139, + "y": 199, + "index": 7, + "body": { + "#": 524 + }, + "isInternal": false + }, + { + "x": 250, + "y": 193.126, + "index": 8, + "body": { + "#": 524 + }, + "isInternal": false + }, + { + "x": 250, + "y": 186.874, + "index": 9, + "body": { + "#": 524 + }, + "isInternal": false + }, + { + "x": 252.139, + "y": 181, + "index": 10, + "body": { + "#": 524 + }, + "isInternal": false + }, + { + "x": 256.157, + "y": 176.211, + "index": 11, + "body": { + "#": 524 + }, + "isInternal": false + }, + { + "x": 261.571, + "y": 173.086, + "index": 12, + "body": { + "#": 524 + }, + "isInternal": false + }, + { + "x": 267.727, + "y": 172, + "index": 13, + "body": { + "#": 524 + }, + "isInternal": false + }, + { + "x": 273.883, + "y": 173.086, + "index": 14, + "body": { + "#": 524 + }, + "isInternal": false + }, + { + "x": 279.297, + "y": 176.211, + "index": 15, + "body": { + "#": 524 + }, + "isInternal": false + }, + { + "x": 283.315, + "y": 181, + "index": 16, + "body": { + "#": 524 + }, + "isInternal": false + }, + { + "x": 285.454, + "y": 186.874, + "index": 17, + "body": { + "#": 524 + }, + "isInternal": false + }, + { + "x": 267.727, + "y": 190 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 552 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 554 + }, + "max": { + "#": 555 + } + }, + { + "x": 250, + "y": 172 + }, + { + "x": 285.454, + "y": 208 + }, + { + "x": 267.727, + "y": 190 + }, + [ + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 16, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 568 + }, + "angle": 0, + "vertices": { + "#": 569 + }, + "position": { + "#": 588 + }, + "force": { + "#": 589 + }, + "torque": 0, + "positionImpulse": { + "#": 590 + }, + "constraintImpulse": { + "#": 591 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 592 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 593 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 594 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 596 + }, + "positionPrev": { + "#": 599 + }, + "anglePrev": 0, + "axes": { + "#": 600 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 567 + }, + "sleepCounter": 0 + }, + [ + { + "#": 567 + } + ], + [ + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + } + ], + { + "x": 320.908, + "y": 193.126, + "index": 0, + "body": { + "#": 567 + }, + "isInternal": false + }, + { + "x": 318.769, + "y": 199, + "index": 1, + "body": { + "#": 567 + }, + "isInternal": false + }, + { + "x": 314.751, + "y": 203.789, + "index": 2, + "body": { + "#": 567 + }, + "isInternal": false + }, + { + "x": 309.337, + "y": 206.914, + "index": 3, + "body": { + "#": 567 + }, + "isInternal": false + }, + { + "x": 303.181, + "y": 208, + "index": 4, + "body": { + "#": 567 + }, + "isInternal": false + }, + { + "x": 297.025, + "y": 206.914, + "index": 5, + "body": { + "#": 567 + }, + "isInternal": false + }, + { + "x": 291.611, + "y": 203.789, + "index": 6, + "body": { + "#": 567 + }, + "isInternal": false + }, + { + "x": 287.593, + "y": 199, + "index": 7, + "body": { + "#": 567 + }, + "isInternal": false + }, + { + "x": 285.454, + "y": 193.126, + "index": 8, + "body": { + "#": 567 + }, + "isInternal": false + }, + { + "x": 285.454, + "y": 186.874, + "index": 9, + "body": { + "#": 567 + }, + "isInternal": false + }, + { + "x": 287.593, + "y": 181, + "index": 10, + "body": { + "#": 567 + }, + "isInternal": false + }, + { + "x": 291.611, + "y": 176.211, + "index": 11, + "body": { + "#": 567 + }, + "isInternal": false + }, + { + "x": 297.025, + "y": 173.086, + "index": 12, + "body": { + "#": 567 + }, + "isInternal": false + }, + { + "x": 303.181, + "y": 172, + "index": 13, + "body": { + "#": 567 + }, + "isInternal": false + }, + { + "x": 309.337, + "y": 173.086, + "index": 14, + "body": { + "#": 567 + }, + "isInternal": false + }, + { + "x": 314.751, + "y": 176.211, + "index": 15, + "body": { + "#": 567 + }, + "isInternal": false + }, + { + "x": 318.769, + "y": 181, + "index": 16, + "body": { + "#": 567 + }, + "isInternal": false + }, + { + "x": 320.908, + "y": 186.874, + "index": 17, + "body": { + "#": 567 + }, + "isInternal": false + }, + { + "x": 303.181, + "y": 190 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 595 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 597 + }, + "max": { + "#": 598 + } + }, + { + "x": 285.454, + "y": 172 + }, + { + "x": 320.908, + "y": 208 + }, + { + "x": 303.181, + "y": 190 + }, + [ + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 17, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 611 + }, + "angle": 0, + "vertices": { + "#": 612 + }, + "position": { + "#": 631 + }, + "force": { + "#": 632 + }, + "torque": 0, + "positionImpulse": { + "#": 633 + }, + "constraintImpulse": { + "#": 634 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 635 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 636 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 637 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 639 + }, + "positionPrev": { + "#": 642 + }, + "anglePrev": 0, + "axes": { + "#": 643 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 610 + }, + "sleepCounter": 0 + }, + [ + { + "#": 610 + } + ], + [ + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + } + ], + { + "x": 356.362, + "y": 193.126, + "index": 0, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 354.223, + "y": 199, + "index": 1, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 350.205, + "y": 203.789, + "index": 2, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 344.791, + "y": 206.914, + "index": 3, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 338.635, + "y": 208, + "index": 4, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 332.479, + "y": 206.914, + "index": 5, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 327.065, + "y": 203.789, + "index": 6, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 323.047, + "y": 199, + "index": 7, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 320.908, + "y": 193.126, + "index": 8, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 320.908, + "y": 186.874, + "index": 9, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 323.047, + "y": 181, + "index": 10, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 327.065, + "y": 176.211, + "index": 11, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 332.479, + "y": 173.086, + "index": 12, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 338.635, + "y": 172, + "index": 13, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 344.791, + "y": 173.086, + "index": 14, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 350.205, + "y": 176.211, + "index": 15, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 354.223, + "y": 181, + "index": 16, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 356.362, + "y": 186.874, + "index": 17, + "body": { + "#": 610 + }, + "isInternal": false + }, + { + "x": 338.635, + "y": 190 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 638 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 640 + }, + "max": { + "#": 641 + } + }, + { + "x": 320.908, + "y": 172 + }, + { + "x": 356.362, + "y": 208 + }, + { + "x": 338.635, + "y": 190 + }, + [ + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 18, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 654 + }, + "angle": 0, + "vertices": { + "#": 655 + }, + "position": { + "#": 674 + }, + "force": { + "#": 675 + }, + "torque": 0, + "positionImpulse": { + "#": 676 + }, + "constraintImpulse": { + "#": 677 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 678 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 679 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 680 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 682 + }, + "positionPrev": { + "#": 685 + }, + "anglePrev": 0, + "axes": { + "#": 686 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 653 + }, + "sleepCounter": 0 + }, + [ + { + "#": 653 + } + ], + [ + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + } + ], + { + "x": 391.816, + "y": 193.126, + "index": 0, + "body": { + "#": 653 + }, + "isInternal": false + }, + { + "x": 389.677, + "y": 199, + "index": 1, + "body": { + "#": 653 + }, + "isInternal": false + }, + { + "x": 385.659, + "y": 203.789, + "index": 2, + "body": { + "#": 653 + }, + "isInternal": false + }, + { + "x": 380.245, + "y": 206.914, + "index": 3, + "body": { + "#": 653 + }, + "isInternal": false + }, + { + "x": 374.089, + "y": 208, + "index": 4, + "body": { + "#": 653 + }, + "isInternal": false + }, + { + "x": 367.933, + "y": 206.914, + "index": 5, + "body": { + "#": 653 + }, + "isInternal": false + }, + { + "x": 362.519, + "y": 203.789, + "index": 6, + "body": { + "#": 653 + }, + "isInternal": false + }, + { + "x": 358.501, + "y": 199, + "index": 7, + "body": { + "#": 653 + }, + "isInternal": false + }, + { + "x": 356.362, + "y": 193.126, + "index": 8, + "body": { + "#": 653 + }, + "isInternal": false + }, + { + "x": 356.362, + "y": 186.874, + "index": 9, + "body": { + "#": 653 + }, + "isInternal": false + }, + { + "x": 358.501, + "y": 181, + "index": 10, + "body": { + "#": 653 + }, + "isInternal": false + }, + { + "x": 362.519, + "y": 176.211, + "index": 11, + "body": { + "#": 653 + }, + "isInternal": false + }, + { + "x": 367.933, + "y": 173.086, + "index": 12, + "body": { + "#": 653 + }, + "isInternal": false + }, + { + "x": 374.089, + "y": 172, + "index": 13, + "body": { + "#": 653 + }, + "isInternal": false + }, + { + "x": 380.245, + "y": 173.086, + "index": 14, + "body": { + "#": 653 + }, + "isInternal": false + }, + { + "x": 385.659, + "y": 176.211, + "index": 15, + "body": { + "#": 653 + }, + "isInternal": false + }, + { + "x": 389.677, + "y": 181, + "index": 16, + "body": { + "#": 653 + }, + "isInternal": false + }, + { + "x": 391.816, + "y": 186.874, + "index": 17, + "body": { + "#": 653 + }, + "isInternal": false + }, + { + "x": 374.089, + "y": 190 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 681 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 683 + }, + "max": { + "#": 684 + } + }, + { + "x": 356.362, + "y": 172 + }, + { + "x": 391.816, + "y": 208 + }, + { + "x": 374.089, + "y": 190 + }, + [ + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 19, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 697 + }, + "angle": 0, + "vertices": { + "#": 698 + }, + "position": { + "#": 717 + }, + "force": { + "#": 718 + }, + "torque": 0, + "positionImpulse": { + "#": 719 + }, + "constraintImpulse": { + "#": 720 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 721 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 722 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 723 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 725 + }, + "positionPrev": { + "#": 728 + }, + "anglePrev": 0, + "axes": { + "#": 729 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 696 + }, + "sleepCounter": 0 + }, + [ + { + "#": 696 + } + ], + [ + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + }, + { + "#": 713 + }, + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + } + ], + { + "x": 427.27, + "y": 193.126, + "index": 0, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 425.131, + "y": 199, + "index": 1, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 421.113, + "y": 203.789, + "index": 2, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 415.699, + "y": 206.914, + "index": 3, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 409.543, + "y": 208, + "index": 4, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 403.387, + "y": 206.914, + "index": 5, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 397.973, + "y": 203.789, + "index": 6, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 393.955, + "y": 199, + "index": 7, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 391.816, + "y": 193.126, + "index": 8, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 391.816, + "y": 186.874, + "index": 9, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 393.955, + "y": 181, + "index": 10, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 397.973, + "y": 176.211, + "index": 11, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 403.387, + "y": 173.086, + "index": 12, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 409.543, + "y": 172, + "index": 13, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 415.699, + "y": 173.086, + "index": 14, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 421.113, + "y": 176.211, + "index": 15, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 425.131, + "y": 181, + "index": 16, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 427.27, + "y": 186.874, + "index": 17, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 409.543, + "y": 190 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 724 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 726 + }, + "max": { + "#": 727 + } + }, + { + "x": 391.816, + "y": 172 + }, + { + "x": 427.27, + "y": 208 + }, + { + "x": 409.543, + "y": 190 + }, + [ + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 20, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 740 + }, + "angle": 0, + "vertices": { + "#": 741 + }, + "position": { + "#": 760 + }, + "force": { + "#": 761 + }, + "torque": 0, + "positionImpulse": { + "#": 762 + }, + "constraintImpulse": { + "#": 763 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 764 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 765 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 766 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 768 + }, + "positionPrev": { + "#": 771 + }, + "anglePrev": 0, + "axes": { + "#": 772 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 739 + }, + "sleepCounter": 0 + }, + [ + { + "#": 739 + } + ], + [ + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + }, + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + } + ], + { + "x": 285.454, + "y": 229.126, + "index": 0, + "body": { + "#": 739 + }, + "isInternal": false + }, + { + "x": 283.315, + "y": 235, + "index": 1, + "body": { + "#": 739 + }, + "isInternal": false + }, + { + "x": 279.297, + "y": 239.789, + "index": 2, + "body": { + "#": 739 + }, + "isInternal": false + }, + { + "x": 273.883, + "y": 242.914, + "index": 3, + "body": { + "#": 739 + }, + "isInternal": false + }, + { + "x": 267.727, + "y": 244, + "index": 4, + "body": { + "#": 739 + }, + "isInternal": false + }, + { + "x": 261.571, + "y": 242.914, + "index": 5, + "body": { + "#": 739 + }, + "isInternal": false + }, + { + "x": 256.157, + "y": 239.789, + "index": 6, + "body": { + "#": 739 + }, + "isInternal": false + }, + { + "x": 252.139, + "y": 235, + "index": 7, + "body": { + "#": 739 + }, + "isInternal": false + }, + { + "x": 250, + "y": 229.126, + "index": 8, + "body": { + "#": 739 + }, + "isInternal": false + }, + { + "x": 250, + "y": 222.874, + "index": 9, + "body": { + "#": 739 + }, + "isInternal": false + }, + { + "x": 252.139, + "y": 217, + "index": 10, + "body": { + "#": 739 + }, + "isInternal": false + }, + { + "x": 256.157, + "y": 212.211, + "index": 11, + "body": { + "#": 739 + }, + "isInternal": false + }, + { + "x": 261.571, + "y": 209.086, + "index": 12, + "body": { + "#": 739 + }, + "isInternal": false + }, + { + "x": 267.727, + "y": 208, + "index": 13, + "body": { + "#": 739 + }, + "isInternal": false + }, + { + "x": 273.883, + "y": 209.086, + "index": 14, + "body": { + "#": 739 + }, + "isInternal": false + }, + { + "x": 279.297, + "y": 212.211, + "index": 15, + "body": { + "#": 739 + }, + "isInternal": false + }, + { + "x": 283.315, + "y": 217, + "index": 16, + "body": { + "#": 739 + }, + "isInternal": false + }, + { + "x": 285.454, + "y": 222.874, + "index": 17, + "body": { + "#": 739 + }, + "isInternal": false + }, + { + "x": 267.727, + "y": 226 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 767 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 769 + }, + "max": { + "#": 770 + } + }, + { + "x": 250, + "y": 208 + }, + { + "x": 285.454, + "y": 244 + }, + { + "x": 267.727, + "y": 226 + }, + [ + { + "#": 773 + }, + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + }, + { + "#": 777 + }, + { + "#": 778 + }, + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 21, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 783 + }, + "angle": 0, + "vertices": { + "#": 784 + }, + "position": { + "#": 803 + }, + "force": { + "#": 804 + }, + "torque": 0, + "positionImpulse": { + "#": 805 + }, + "constraintImpulse": { + "#": 806 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 807 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 808 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 809 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 811 + }, + "positionPrev": { + "#": 814 + }, + "anglePrev": 0, + "axes": { + "#": 815 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 782 + }, + "sleepCounter": 0 + }, + [ + { + "#": 782 + } + ], + [ + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + } + ], + { + "x": 320.908, + "y": 229.126, + "index": 0, + "body": { + "#": 782 + }, + "isInternal": false + }, + { + "x": 318.769, + "y": 235, + "index": 1, + "body": { + "#": 782 + }, + "isInternal": false + }, + { + "x": 314.751, + "y": 239.789, + "index": 2, + "body": { + "#": 782 + }, + "isInternal": false + }, + { + "x": 309.337, + "y": 242.914, + "index": 3, + "body": { + "#": 782 + }, + "isInternal": false + }, + { + "x": 303.181, + "y": 244, + "index": 4, + "body": { + "#": 782 + }, + "isInternal": false + }, + { + "x": 297.025, + "y": 242.914, + "index": 5, + "body": { + "#": 782 + }, + "isInternal": false + }, + { + "x": 291.611, + "y": 239.789, + "index": 6, + "body": { + "#": 782 + }, + "isInternal": false + }, + { + "x": 287.593, + "y": 235, + "index": 7, + "body": { + "#": 782 + }, + "isInternal": false + }, + { + "x": 285.454, + "y": 229.126, + "index": 8, + "body": { + "#": 782 + }, + "isInternal": false + }, + { + "x": 285.454, + "y": 222.874, + "index": 9, + "body": { + "#": 782 + }, + "isInternal": false + }, + { + "x": 287.593, + "y": 217, + "index": 10, + "body": { + "#": 782 + }, + "isInternal": false + }, + { + "x": 291.611, + "y": 212.211, + "index": 11, + "body": { + "#": 782 + }, + "isInternal": false + }, + { + "x": 297.025, + "y": 209.086, + "index": 12, + "body": { + "#": 782 + }, + "isInternal": false + }, + { + "x": 303.181, + "y": 208, + "index": 13, + "body": { + "#": 782 + }, + "isInternal": false + }, + { + "x": 309.337, + "y": 209.086, + "index": 14, + "body": { + "#": 782 + }, + "isInternal": false + }, + { + "x": 314.751, + "y": 212.211, + "index": 15, + "body": { + "#": 782 + }, + "isInternal": false + }, + { + "x": 318.769, + "y": 217, + "index": 16, + "body": { + "#": 782 + }, + "isInternal": false + }, + { + "x": 320.908, + "y": 222.874, + "index": 17, + "body": { + "#": 782 + }, + "isInternal": false + }, + { + "x": 303.181, + "y": 226 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 810 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 812 + }, + "max": { + "#": 813 + } + }, + { + "x": 285.454, + "y": 208 + }, + { + "x": 320.908, + "y": 244 + }, + { + "x": 303.181, + "y": 226 + }, + [ + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + }, + { + "#": 824 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 22, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 826 + }, + "angle": 0, + "vertices": { + "#": 827 + }, + "position": { + "#": 846 + }, + "force": { + "#": 847 + }, + "torque": 0, + "positionImpulse": { + "#": 848 + }, + "constraintImpulse": { + "#": 849 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 850 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 851 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 852 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 854 + }, + "positionPrev": { + "#": 857 + }, + "anglePrev": 0, + "axes": { + "#": 858 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 825 + }, + "sleepCounter": 0 + }, + [ + { + "#": 825 + } + ], + [ + { + "#": 828 + }, + { + "#": 829 + }, + { + "#": 830 + }, + { + "#": 831 + }, + { + "#": 832 + }, + { + "#": 833 + }, + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + }, + { + "#": 845 + } + ], + { + "x": 356.362, + "y": 229.126, + "index": 0, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 354.223, + "y": 235, + "index": 1, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 350.205, + "y": 239.789, + "index": 2, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 344.791, + "y": 242.914, + "index": 3, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 338.635, + "y": 244, + "index": 4, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 332.479, + "y": 242.914, + "index": 5, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 327.065, + "y": 239.789, + "index": 6, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 323.047, + "y": 235, + "index": 7, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 320.908, + "y": 229.126, + "index": 8, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 320.908, + "y": 222.874, + "index": 9, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 323.047, + "y": 217, + "index": 10, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 327.065, + "y": 212.211, + "index": 11, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 332.479, + "y": 209.086, + "index": 12, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 338.635, + "y": 208, + "index": 13, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 344.791, + "y": 209.086, + "index": 14, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 350.205, + "y": 212.211, + "index": 15, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 354.223, + "y": 217, + "index": 16, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 356.362, + "y": 222.874, + "index": 17, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 338.635, + "y": 226 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 853 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 855 + }, + "max": { + "#": 856 + } + }, + { + "x": 320.908, + "y": 208 + }, + { + "x": 356.362, + "y": 244 + }, + { + "x": 338.635, + "y": 226 + }, + [ + { + "#": 859 + }, + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 23, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 869 + }, + "angle": 0, + "vertices": { + "#": 870 + }, + "position": { + "#": 889 + }, + "force": { + "#": 890 + }, + "torque": 0, + "positionImpulse": { + "#": 891 + }, + "constraintImpulse": { + "#": 892 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 893 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 894 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 895 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 897 + }, + "positionPrev": { + "#": 900 + }, + "anglePrev": 0, + "axes": { + "#": 901 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 868 + }, + "sleepCounter": 0 + }, + [ + { + "#": 868 + } + ], + [ + { + "#": 871 + }, + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + }, + { + "#": 877 + }, + { + "#": 878 + }, + { + "#": 879 + }, + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + }, + { + "#": 887 + }, + { + "#": 888 + } + ], + { + "x": 391.816, + "y": 229.126, + "index": 0, + "body": { + "#": 868 + }, + "isInternal": false + }, + { + "x": 389.677, + "y": 235, + "index": 1, + "body": { + "#": 868 + }, + "isInternal": false + }, + { + "x": 385.659, + "y": 239.789, + "index": 2, + "body": { + "#": 868 + }, + "isInternal": false + }, + { + "x": 380.245, + "y": 242.914, + "index": 3, + "body": { + "#": 868 + }, + "isInternal": false + }, + { + "x": 374.089, + "y": 244, + "index": 4, + "body": { + "#": 868 + }, + "isInternal": false + }, + { + "x": 367.933, + "y": 242.914, + "index": 5, + "body": { + "#": 868 + }, + "isInternal": false + }, + { + "x": 362.519, + "y": 239.789, + "index": 6, + "body": { + "#": 868 + }, + "isInternal": false + }, + { + "x": 358.501, + "y": 235, + "index": 7, + "body": { + "#": 868 + }, + "isInternal": false + }, + { + "x": 356.362, + "y": 229.126, + "index": 8, + "body": { + "#": 868 + }, + "isInternal": false + }, + { + "x": 356.362, + "y": 222.874, + "index": 9, + "body": { + "#": 868 + }, + "isInternal": false + }, + { + "x": 358.501, + "y": 217, + "index": 10, + "body": { + "#": 868 + }, + "isInternal": false + }, + { + "x": 362.519, + "y": 212.211, + "index": 11, + "body": { + "#": 868 + }, + "isInternal": false + }, + { + "x": 367.933, + "y": 209.086, + "index": 12, + "body": { + "#": 868 + }, + "isInternal": false + }, + { + "x": 374.089, + "y": 208, + "index": 13, + "body": { + "#": 868 + }, + "isInternal": false + }, + { + "x": 380.245, + "y": 209.086, + "index": 14, + "body": { + "#": 868 + }, + "isInternal": false + }, + { + "x": 385.659, + "y": 212.211, + "index": 15, + "body": { + "#": 868 + }, + "isInternal": false + }, + { + "x": 389.677, + "y": 217, + "index": 16, + "body": { + "#": 868 + }, + "isInternal": false + }, + { + "x": 391.816, + "y": 222.874, + "index": 17, + "body": { + "#": 868 + }, + "isInternal": false + }, + { + "x": 374.089, + "y": 226 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 896 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 898 + }, + "max": { + "#": 899 + } + }, + { + "x": 356.362, + "y": 208 + }, + { + "x": 391.816, + "y": 244 + }, + { + "x": 374.089, + "y": 226 + }, + [ + { + "#": 902 + }, + { + "#": 903 + }, + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 24, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 912 + }, + "angle": 0, + "vertices": { + "#": 913 + }, + "position": { + "#": 932 + }, + "force": { + "#": 933 + }, + "torque": 0, + "positionImpulse": { + "#": 934 + }, + "constraintImpulse": { + "#": 935 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 936 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 937 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 938 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 940 + }, + "positionPrev": { + "#": 943 + }, + "anglePrev": 0, + "axes": { + "#": 944 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 911 + }, + "sleepCounter": 0 + }, + [ + { + "#": 911 + } + ], + [ + { + "#": 914 + }, + { + "#": 915 + }, + { + "#": 916 + }, + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + }, + { + "#": 920 + }, + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + }, + { + "#": 924 + }, + { + "#": 925 + }, + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + } + ], + { + "x": 427.27, + "y": 229.126, + "index": 0, + "body": { + "#": 911 + }, + "isInternal": false + }, + { + "x": 425.131, + "y": 235, + "index": 1, + "body": { + "#": 911 + }, + "isInternal": false + }, + { + "x": 421.113, + "y": 239.789, + "index": 2, + "body": { + "#": 911 + }, + "isInternal": false + }, + { + "x": 415.699, + "y": 242.914, + "index": 3, + "body": { + "#": 911 + }, + "isInternal": false + }, + { + "x": 409.543, + "y": 244, + "index": 4, + "body": { + "#": 911 + }, + "isInternal": false + }, + { + "x": 403.387, + "y": 242.914, + "index": 5, + "body": { + "#": 911 + }, + "isInternal": false + }, + { + "x": 397.973, + "y": 239.789, + "index": 6, + "body": { + "#": 911 + }, + "isInternal": false + }, + { + "x": 393.955, + "y": 235, + "index": 7, + "body": { + "#": 911 + }, + "isInternal": false + }, + { + "x": 391.816, + "y": 229.126, + "index": 8, + "body": { + "#": 911 + }, + "isInternal": false + }, + { + "x": 391.816, + "y": 222.874, + "index": 9, + "body": { + "#": 911 + }, + "isInternal": false + }, + { + "x": 393.955, + "y": 217, + "index": 10, + "body": { + "#": 911 + }, + "isInternal": false + }, + { + "x": 397.973, + "y": 212.211, + "index": 11, + "body": { + "#": 911 + }, + "isInternal": false + }, + { + "x": 403.387, + "y": 209.086, + "index": 12, + "body": { + "#": 911 + }, + "isInternal": false + }, + { + "x": 409.543, + "y": 208, + "index": 13, + "body": { + "#": 911 + }, + "isInternal": false + }, + { + "x": 415.699, + "y": 209.086, + "index": 14, + "body": { + "#": 911 + }, + "isInternal": false + }, + { + "x": 421.113, + "y": 212.211, + "index": 15, + "body": { + "#": 911 + }, + "isInternal": false + }, + { + "x": 425.131, + "y": 217, + "index": 16, + "body": { + "#": 911 + }, + "isInternal": false + }, + { + "x": 427.27, + "y": 222.874, + "index": 17, + "body": { + "#": 911 + }, + "isInternal": false + }, + { + "x": 409.543, + "y": 226 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 939 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 941 + }, + "max": { + "#": 942 + } + }, + { + "x": 391.816, + "y": 208 + }, + { + "x": 427.27, + "y": 244 + }, + { + "x": 409.543, + "y": 226 + }, + [ + { + "#": 945 + }, + { + "#": 946 + }, + { + "#": 947 + }, + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 25, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 955 + }, + "angle": 0, + "vertices": { + "#": 956 + }, + "position": { + "#": 975 + }, + "force": { + "#": 976 + }, + "torque": 0, + "positionImpulse": { + "#": 977 + }, + "constraintImpulse": { + "#": 978 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 979 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 980 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 981 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 983 + }, + "positionPrev": { + "#": 986 + }, + "anglePrev": 0, + "axes": { + "#": 987 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 954 + }, + "sleepCounter": 0 + }, + [ + { + "#": 954 + } + ], + [ + { + "#": 957 + }, + { + "#": 958 + }, + { + "#": 959 + }, + { + "#": 960 + }, + { + "#": 961 + }, + { + "#": 962 + }, + { + "#": 963 + }, + { + "#": 964 + }, + { + "#": 965 + }, + { + "#": 966 + }, + { + "#": 967 + }, + { + "#": 968 + }, + { + "#": 969 + }, + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + } + ], + { + "x": 285.454, + "y": 265.126, + "index": 0, + "body": { + "#": 954 + }, + "isInternal": false + }, + { + "x": 283.315, + "y": 271, + "index": 1, + "body": { + "#": 954 + }, + "isInternal": false + }, + { + "x": 279.297, + "y": 275.789, + "index": 2, + "body": { + "#": 954 + }, + "isInternal": false + }, + { + "x": 273.883, + "y": 278.914, + "index": 3, + "body": { + "#": 954 + }, + "isInternal": false + }, + { + "x": 267.727, + "y": 280, + "index": 4, + "body": { + "#": 954 + }, + "isInternal": false + }, + { + "x": 261.571, + "y": 278.914, + "index": 5, + "body": { + "#": 954 + }, + "isInternal": false + }, + { + "x": 256.157, + "y": 275.789, + "index": 6, + "body": { + "#": 954 + }, + "isInternal": false + }, + { + "x": 252.139, + "y": 271, + "index": 7, + "body": { + "#": 954 + }, + "isInternal": false + }, + { + "x": 250, + "y": 265.126, + "index": 8, + "body": { + "#": 954 + }, + "isInternal": false + }, + { + "x": 250, + "y": 258.874, + "index": 9, + "body": { + "#": 954 + }, + "isInternal": false + }, + { + "x": 252.139, + "y": 253, + "index": 10, + "body": { + "#": 954 + }, + "isInternal": false + }, + { + "x": 256.157, + "y": 248.211, + "index": 11, + "body": { + "#": 954 + }, + "isInternal": false + }, + { + "x": 261.571, + "y": 245.086, + "index": 12, + "body": { + "#": 954 + }, + "isInternal": false + }, + { + "x": 267.727, + "y": 244, + "index": 13, + "body": { + "#": 954 + }, + "isInternal": false + }, + { + "x": 273.883, + "y": 245.086, + "index": 14, + "body": { + "#": 954 + }, + "isInternal": false + }, + { + "x": 279.297, + "y": 248.211, + "index": 15, + "body": { + "#": 954 + }, + "isInternal": false + }, + { + "x": 283.315, + "y": 253, + "index": 16, + "body": { + "#": 954 + }, + "isInternal": false + }, + { + "x": 285.454, + "y": 258.874, + "index": 17, + "body": { + "#": 954 + }, + "isInternal": false + }, + { + "x": 267.727, + "y": 262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 982 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 984 + }, + "max": { + "#": 985 + } + }, + { + "x": 250, + "y": 244 + }, + { + "x": 285.454, + "y": 280 + }, + { + "x": 267.727, + "y": 262 + }, + [ + { + "#": 988 + }, + { + "#": 989 + }, + { + "#": 990 + }, + { + "#": 991 + }, + { + "#": 992 + }, + { + "#": 993 + }, + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 26, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 998 + }, + "angle": 0, + "vertices": { + "#": 999 + }, + "position": { + "#": 1018 + }, + "force": { + "#": 1019 + }, + "torque": 0, + "positionImpulse": { + "#": 1020 + }, + "constraintImpulse": { + "#": 1021 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1022 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1023 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1024 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 1026 + }, + "positionPrev": { + "#": 1029 + }, + "anglePrev": 0, + "axes": { + "#": 1030 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 997 + }, + "sleepCounter": 0 + }, + [ + { + "#": 997 + } + ], + [ + { + "#": 1000 + }, + { + "#": 1001 + }, + { + "#": 1002 + }, + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + }, + { + "#": 1007 + }, + { + "#": 1008 + }, + { + "#": 1009 + }, + { + "#": 1010 + }, + { + "#": 1011 + }, + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + }, + { + "#": 1016 + }, + { + "#": 1017 + } + ], + { + "x": 320.908, + "y": 265.126, + "index": 0, + "body": { + "#": 997 + }, + "isInternal": false + }, + { + "x": 318.769, + "y": 271, + "index": 1, + "body": { + "#": 997 + }, + "isInternal": false + }, + { + "x": 314.751, + "y": 275.789, + "index": 2, + "body": { + "#": 997 + }, + "isInternal": false + }, + { + "x": 309.337, + "y": 278.914, + "index": 3, + "body": { + "#": 997 + }, + "isInternal": false + }, + { + "x": 303.181, + "y": 280, + "index": 4, + "body": { + "#": 997 + }, + "isInternal": false + }, + { + "x": 297.025, + "y": 278.914, + "index": 5, + "body": { + "#": 997 + }, + "isInternal": false + }, + { + "x": 291.611, + "y": 275.789, + "index": 6, + "body": { + "#": 997 + }, + "isInternal": false + }, + { + "x": 287.593, + "y": 271, + "index": 7, + "body": { + "#": 997 + }, + "isInternal": false + }, + { + "x": 285.454, + "y": 265.126, + "index": 8, + "body": { + "#": 997 + }, + "isInternal": false + }, + { + "x": 285.454, + "y": 258.874, + "index": 9, + "body": { + "#": 997 + }, + "isInternal": false + }, + { + "x": 287.593, + "y": 253, + "index": 10, + "body": { + "#": 997 + }, + "isInternal": false + }, + { + "x": 291.611, + "y": 248.211, + "index": 11, + "body": { + "#": 997 + }, + "isInternal": false + }, + { + "x": 297.025, + "y": 245.086, + "index": 12, + "body": { + "#": 997 + }, + "isInternal": false + }, + { + "x": 303.181, + "y": 244, + "index": 13, + "body": { + "#": 997 + }, + "isInternal": false + }, + { + "x": 309.337, + "y": 245.086, + "index": 14, + "body": { + "#": 997 + }, + "isInternal": false + }, + { + "x": 314.751, + "y": 248.211, + "index": 15, + "body": { + "#": 997 + }, + "isInternal": false + }, + { + "x": 318.769, + "y": 253, + "index": 16, + "body": { + "#": 997 + }, + "isInternal": false + }, + { + "x": 320.908, + "y": 258.874, + "index": 17, + "body": { + "#": 997 + }, + "isInternal": false + }, + { + "x": 303.181, + "y": 262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1025 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1027 + }, + "max": { + "#": 1028 + } + }, + { + "x": 285.454, + "y": 244 + }, + { + "x": 320.908, + "y": 280 + }, + { + "x": 303.181, + "y": 262 + }, + [ + { + "#": 1031 + }, + { + "#": 1032 + }, + { + "#": 1033 + }, + { + "#": 1034 + }, + { + "#": 1035 + }, + { + "#": 1036 + }, + { + "#": 1037 + }, + { + "#": 1038 + }, + { + "#": 1039 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 27, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1041 + }, + "angle": 0, + "vertices": { + "#": 1042 + }, + "position": { + "#": 1061 + }, + "force": { + "#": 1062 + }, + "torque": 0, + "positionImpulse": { + "#": 1063 + }, + "constraintImpulse": { + "#": 1064 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1065 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1066 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1067 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 1069 + }, + "positionPrev": { + "#": 1072 + }, + "anglePrev": 0, + "axes": { + "#": 1073 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 1040 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1040 + } + ], + [ + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + }, + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + }, + { + "#": 1057 + }, + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + } + ], + { + "x": 356.362, + "y": 265.126, + "index": 0, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 354.223, + "y": 271, + "index": 1, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 350.205, + "y": 275.789, + "index": 2, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 344.791, + "y": 278.914, + "index": 3, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 338.635, + "y": 280, + "index": 4, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 332.479, + "y": 278.914, + "index": 5, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 327.065, + "y": 275.789, + "index": 6, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 323.047, + "y": 271, + "index": 7, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 320.908, + "y": 265.126, + "index": 8, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 320.908, + "y": 258.874, + "index": 9, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 323.047, + "y": 253, + "index": 10, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 327.065, + "y": 248.211, + "index": 11, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 332.479, + "y": 245.086, + "index": 12, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 338.635, + "y": 244, + "index": 13, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 344.791, + "y": 245.086, + "index": 14, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 350.205, + "y": 248.211, + "index": 15, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 354.223, + "y": 253, + "index": 16, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 356.362, + "y": 258.874, + "index": 17, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 338.635, + "y": 262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1068 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1070 + }, + "max": { + "#": 1071 + } + }, + { + "x": 320.908, + "y": 244 + }, + { + "x": 356.362, + "y": 280 + }, + { + "x": 338.635, + "y": 262 + }, + [ + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 28, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1084 + }, + "angle": 0, + "vertices": { + "#": 1085 + }, + "position": { + "#": 1104 + }, + "force": { + "#": 1105 + }, + "torque": 0, + "positionImpulse": { + "#": 1106 + }, + "constraintImpulse": { + "#": 1107 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1108 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1109 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1110 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 1112 + }, + "positionPrev": { + "#": 1115 + }, + "anglePrev": 0, + "axes": { + "#": 1116 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 1083 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1083 + } + ], + [ + { + "#": 1086 + }, + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + } + ], + { + "x": 391.816, + "y": 265.126, + "index": 0, + "body": { + "#": 1083 + }, + "isInternal": false + }, + { + "x": 389.677, + "y": 271, + "index": 1, + "body": { + "#": 1083 + }, + "isInternal": false + }, + { + "x": 385.659, + "y": 275.789, + "index": 2, + "body": { + "#": 1083 + }, + "isInternal": false + }, + { + "x": 380.245, + "y": 278.914, + "index": 3, + "body": { + "#": 1083 + }, + "isInternal": false + }, + { + "x": 374.089, + "y": 280, + "index": 4, + "body": { + "#": 1083 + }, + "isInternal": false + }, + { + "x": 367.933, + "y": 278.914, + "index": 5, + "body": { + "#": 1083 + }, + "isInternal": false + }, + { + "x": 362.519, + "y": 275.789, + "index": 6, + "body": { + "#": 1083 + }, + "isInternal": false + }, + { + "x": 358.501, + "y": 271, + "index": 7, + "body": { + "#": 1083 + }, + "isInternal": false + }, + { + "x": 356.362, + "y": 265.126, + "index": 8, + "body": { + "#": 1083 + }, + "isInternal": false + }, + { + "x": 356.362, + "y": 258.874, + "index": 9, + "body": { + "#": 1083 + }, + "isInternal": false + }, + { + "x": 358.501, + "y": 253, + "index": 10, + "body": { + "#": 1083 + }, + "isInternal": false + }, + { + "x": 362.519, + "y": 248.211, + "index": 11, + "body": { + "#": 1083 + }, + "isInternal": false + }, + { + "x": 367.933, + "y": 245.086, + "index": 12, + "body": { + "#": 1083 + }, + "isInternal": false + }, + { + "x": 374.089, + "y": 244, + "index": 13, + "body": { + "#": 1083 + }, + "isInternal": false + }, + { + "x": 380.245, + "y": 245.086, + "index": 14, + "body": { + "#": 1083 + }, + "isInternal": false + }, + { + "x": 385.659, + "y": 248.211, + "index": 15, + "body": { + "#": 1083 + }, + "isInternal": false + }, + { + "x": 389.677, + "y": 253, + "index": 16, + "body": { + "#": 1083 + }, + "isInternal": false + }, + { + "x": 391.816, + "y": 258.874, + "index": 17, + "body": { + "#": 1083 + }, + "isInternal": false + }, + { + "x": 374.089, + "y": 262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1111 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1113 + }, + "max": { + "#": 1114 + } + }, + { + "x": 356.362, + "y": 244 + }, + { + "x": 391.816, + "y": 280 + }, + { + "x": 374.089, + "y": 262 + }, + [ + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 29, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1127 + }, + "angle": 0, + "vertices": { + "#": 1128 + }, + "position": { + "#": 1147 + }, + "force": { + "#": 1148 + }, + "torque": 0, + "positionImpulse": { + "#": 1149 + }, + "constraintImpulse": { + "#": 1150 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1151 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1152 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1153 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 1155 + }, + "positionPrev": { + "#": 1158 + }, + "anglePrev": 0, + "axes": { + "#": 1159 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 1126 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1126 + } + ], + [ + { + "#": 1129 + }, + { + "#": 1130 + }, + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + } + ], + { + "x": 427.27, + "y": 265.126, + "index": 0, + "body": { + "#": 1126 + }, + "isInternal": false + }, + { + "x": 425.131, + "y": 271, + "index": 1, + "body": { + "#": 1126 + }, + "isInternal": false + }, + { + "x": 421.113, + "y": 275.789, + "index": 2, + "body": { + "#": 1126 + }, + "isInternal": false + }, + { + "x": 415.699, + "y": 278.914, + "index": 3, + "body": { + "#": 1126 + }, + "isInternal": false + }, + { + "x": 409.543, + "y": 280, + "index": 4, + "body": { + "#": 1126 + }, + "isInternal": false + }, + { + "x": 403.387, + "y": 278.914, + "index": 5, + "body": { + "#": 1126 + }, + "isInternal": false + }, + { + "x": 397.973, + "y": 275.789, + "index": 6, + "body": { + "#": 1126 + }, + "isInternal": false + }, + { + "x": 393.955, + "y": 271, + "index": 7, + "body": { + "#": 1126 + }, + "isInternal": false + }, + { + "x": 391.816, + "y": 265.126, + "index": 8, + "body": { + "#": 1126 + }, + "isInternal": false + }, + { + "x": 391.816, + "y": 258.874, + "index": 9, + "body": { + "#": 1126 + }, + "isInternal": false + }, + { + "x": 393.955, + "y": 253, + "index": 10, + "body": { + "#": 1126 + }, + "isInternal": false + }, + { + "x": 397.973, + "y": 248.211, + "index": 11, + "body": { + "#": 1126 + }, + "isInternal": false + }, + { + "x": 403.387, + "y": 245.086, + "index": 12, + "body": { + "#": 1126 + }, + "isInternal": false + }, + { + "x": 409.543, + "y": 244, + "index": 13, + "body": { + "#": 1126 + }, + "isInternal": false + }, + { + "x": 415.699, + "y": 245.086, + "index": 14, + "body": { + "#": 1126 + }, + "isInternal": false + }, + { + "x": 421.113, + "y": 248.211, + "index": 15, + "body": { + "#": 1126 + }, + "isInternal": false + }, + { + "x": 425.131, + "y": 253, + "index": 16, + "body": { + "#": 1126 + }, + "isInternal": false + }, + { + "x": 427.27, + "y": 258.874, + "index": 17, + "body": { + "#": 1126 + }, + "isInternal": false + }, + { + "x": 409.543, + "y": 262 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1154 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1156 + }, + "max": { + "#": 1157 + } + }, + { + "x": 391.816, + "y": 244 + }, + { + "x": 427.27, + "y": 280 + }, + { + "x": 409.543, + "y": 262 + }, + [ + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + }, + { + "#": 1163 + }, + { + "#": 1164 + }, + { + "#": 1165 + }, + { + "#": 1166 + }, + { + "#": 1167 + }, + { + "#": 1168 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + [ + { + "#": 1170 + }, + { + "#": 1174 + }, + { + "#": 1178 + }, + { + "#": 1182 + }, + { + "#": 1186 + }, + { + "#": 1190 + }, + { + "#": 1194 + }, + { + "#": 1198 + }, + { + "#": 1202 + }, + { + "#": 1206 + }, + { + "#": 1210 + }, + { + "#": 1214 + }, + { + "#": 1218 + }, + { + "#": 1222 + }, + { + "#": 1226 + }, + { + "#": 1230 + }, + { + "#": 1234 + }, + { + "#": 1238 + }, + { + "#": 1242 + }, + { + "#": 1246 + }, + { + "#": 1250 + }, + { + "#": 1254 + }, + { + "#": 1258 + }, + { + "#": 1262 + }, + { + "#": 1266 + }, + { + "#": 1270 + }, + { + "#": 1274 + }, + { + "#": 1278 + }, + { + "#": 1282 + }, + { + "#": 1286 + }, + { + "#": 1290 + }, + { + "#": 1294 + }, + { + "#": 1298 + }, + { + "#": 1302 + }, + { + "#": 1306 + }, + { + "#": 1310 + }, + { + "#": 1314 + }, + { + "#": 1318 + }, + { + "#": 1322 + }, + { + "#": 1326 + }, + { + "#": 1330 + }, + { + "#": 1334 + }, + { + "#": 1338 + }, + { + "#": 1342 + }, + { + "#": 1346 + }, + { + "#": 1350 + }, + { + "#": 1354 + }, + { + "#": 1358 + }, + { + "#": 1362 + }, + { + "#": 1366 + }, + { + "#": 1370 + }, + { + "#": 1374 + }, + { + "#": 1378 + }, + { + "#": 1382 + }, + { + "#": 1386 + }, + { + "#": 1390 + }, + { + "#": 1394 + }, + { + "#": 1398 + }, + { + "#": 1402 + }, + { + "#": 1406 + }, + { + "#": 1410 + }, + { + "#": 1414 + }, + { + "#": 1418 + }, + { + "#": 1422 + }, + { + "#": 1426 + }, + { + "#": 1430 + }, + { + "#": 1434 + }, + { + "#": 1438 + }, + { + "#": 1442 + }, + { + "#": 1446 + }, + { + "#": 1450 + }, + { + "#": 1454 + } + ], + { + "bodyA": { + "#": 94 + }, + "bodyB": { + "#": 137 + }, + "stiffness": 0.4, + "pointA": { + "#": 1171 + }, + "pointB": { + "#": 1172 + }, + "length": 35.454, + "render": { + "#": 1173 + }, + "id": 30, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 137 + }, + "bodyB": { + "#": 180 + }, + "stiffness": 0.4, + "pointA": { + "#": 1175 + }, + "pointB": { + "#": 1176 + }, + "length": 35.454, + "render": { + "#": 1177 + }, + "id": 31, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 180 + }, + "bodyB": { + "#": 223 + }, + "stiffness": 0.4, + "pointA": { + "#": 1179 + }, + "pointB": { + "#": 1180 + }, + "length": 35.454, + "render": { + "#": 1181 + }, + "id": 32, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 223 + }, + "bodyB": { + "#": 266 + }, + "stiffness": 0.4, + "pointA": { + "#": 1183 + }, + "pointB": { + "#": 1184 + }, + "length": 35.454, + "render": { + "#": 1185 + }, + "id": 33, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 309 + }, + "bodyB": { + "#": 352 + }, + "stiffness": 0.4, + "pointA": { + "#": 1187 + }, + "pointB": { + "#": 1188 + }, + "length": 35.454, + "render": { + "#": 1189 + }, + "id": 34, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 352 + }, + "bodyB": { + "#": 395 + }, + "stiffness": 0.4, + "pointA": { + "#": 1191 + }, + "pointB": { + "#": 1192 + }, + "length": 35.454, + "render": { + "#": 1193 + }, + "id": 35, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 395 + }, + "bodyB": { + "#": 438 + }, + "stiffness": 0.4, + "pointA": { + "#": 1195 + }, + "pointB": { + "#": 1196 + }, + "length": 35.454, + "render": { + "#": 1197 + }, + "id": 36, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 438 + }, + "bodyB": { + "#": 481 + }, + "stiffness": 0.4, + "pointA": { + "#": 1199 + }, + "pointB": { + "#": 1200 + }, + "length": 35.454, + "render": { + "#": 1201 + }, + "id": 37, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 94 + }, + "bodyB": { + "#": 309 + }, + "stiffness": 0.4, + "pointA": { + "#": 1203 + }, + "pointB": { + "#": 1204 + }, + "length": 36, + "render": { + "#": 1205 + }, + "id": 38, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 137 + }, + "bodyB": { + "#": 309 + }, + "stiffness": 0.4, + "pointA": { + "#": 1207 + }, + "pointB": { + "#": 1208 + }, + "length": 50.52708, + "render": { + "#": 1209 + }, + "id": 39, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 137 + }, + "bodyB": { + "#": 352 + }, + "stiffness": 0.4, + "pointA": { + "#": 1211 + }, + "pointB": { + "#": 1212 + }, + "length": 36, + "render": { + "#": 1213 + }, + "id": 40, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 94 + }, + "bodyB": { + "#": 352 + }, + "stiffness": 0.4, + "pointA": { + "#": 1215 + }, + "pointB": { + "#": 1216 + }, + "length": 50.52708, + "render": { + "#": 1217 + }, + "id": 41, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 180 + }, + "bodyB": { + "#": 352 + }, + "stiffness": 0.4, + "pointA": { + "#": 1219 + }, + "pointB": { + "#": 1220 + }, + "length": 50.52708, + "render": { + "#": 1221 + }, + "id": 42, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 180 + }, + "bodyB": { + "#": 395 + }, + "stiffness": 0.4, + "pointA": { + "#": 1223 + }, + "pointB": { + "#": 1224 + }, + "length": 36, + "render": { + "#": 1225 + }, + "id": 43, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 137 + }, + "bodyB": { + "#": 395 + }, + "stiffness": 0.4, + "pointA": { + "#": 1227 + }, + "pointB": { + "#": 1228 + }, + "length": 50.52708, + "render": { + "#": 1229 + }, + "id": 44, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 223 + }, + "bodyB": { + "#": 395 + }, + "stiffness": 0.4, + "pointA": { + "#": 1231 + }, + "pointB": { + "#": 1232 + }, + "length": 50.52708, + "render": { + "#": 1233 + }, + "id": 45, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 223 + }, + "bodyB": { + "#": 438 + }, + "stiffness": 0.4, + "pointA": { + "#": 1235 + }, + "pointB": { + "#": 1236 + }, + "length": 36, + "render": { + "#": 1237 + }, + "id": 46, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 180 + }, + "bodyB": { + "#": 438 + }, + "stiffness": 0.4, + "pointA": { + "#": 1239 + }, + "pointB": { + "#": 1240 + }, + "length": 50.52708, + "render": { + "#": 1241 + }, + "id": 47, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 266 + }, + "bodyB": { + "#": 438 + }, + "stiffness": 0.4, + "pointA": { + "#": 1243 + }, + "pointB": { + "#": 1244 + }, + "length": 50.52708, + "render": { + "#": 1245 + }, + "id": 48, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 266 + }, + "bodyB": { + "#": 481 + }, + "stiffness": 0.4, + "pointA": { + "#": 1247 + }, + "pointB": { + "#": 1248 + }, + "length": 36, + "render": { + "#": 1249 + }, + "id": 49, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 223 + }, + "bodyB": { + "#": 481 + }, + "stiffness": 0.4, + "pointA": { + "#": 1251 + }, + "pointB": { + "#": 1252 + }, + "length": 50.52708, + "render": { + "#": 1253 + }, + "id": 50, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 524 + }, + "bodyB": { + "#": 567 + }, + "stiffness": 0.4, + "pointA": { + "#": 1255 + }, + "pointB": { + "#": 1256 + }, + "length": 35.454, + "render": { + "#": 1257 + }, + "id": 51, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 567 + }, + "bodyB": { + "#": 610 + }, + "stiffness": 0.4, + "pointA": { + "#": 1259 + }, + "pointB": { + "#": 1260 + }, + "length": 35.454, + "render": { + "#": 1261 + }, + "id": 52, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 610 + }, + "bodyB": { + "#": 653 + }, + "stiffness": 0.4, + "pointA": { + "#": 1263 + }, + "pointB": { + "#": 1264 + }, + "length": 35.454, + "render": { + "#": 1265 + }, + "id": 53, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 653 + }, + "bodyB": { + "#": 696 + }, + "stiffness": 0.4, + "pointA": { + "#": 1267 + }, + "pointB": { + "#": 1268 + }, + "length": 35.454, + "render": { + "#": 1269 + }, + "id": 54, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 309 + }, + "bodyB": { + "#": 524 + }, + "stiffness": 0.4, + "pointA": { + "#": 1271 + }, + "pointB": { + "#": 1272 + }, + "length": 36, + "render": { + "#": 1273 + }, + "id": 55, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 352 + }, + "bodyB": { + "#": 524 + }, + "stiffness": 0.4, + "pointA": { + "#": 1275 + }, + "pointB": { + "#": 1276 + }, + "length": 50.52708, + "render": { + "#": 1277 + }, + "id": 56, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 352 + }, + "bodyB": { + "#": 567 + }, + "stiffness": 0.4, + "pointA": { + "#": 1279 + }, + "pointB": { + "#": 1280 + }, + "length": 36, + "render": { + "#": 1281 + }, + "id": 57, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 309 + }, + "bodyB": { + "#": 567 + }, + "stiffness": 0.4, + "pointA": { + "#": 1283 + }, + "pointB": { + "#": 1284 + }, + "length": 50.52708, + "render": { + "#": 1285 + }, + "id": 58, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 395 + }, + "bodyB": { + "#": 567 + }, + "stiffness": 0.4, + "pointA": { + "#": 1287 + }, + "pointB": { + "#": 1288 + }, + "length": 50.52708, + "render": { + "#": 1289 + }, + "id": 59, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 395 + }, + "bodyB": { + "#": 610 + }, + "stiffness": 0.4, + "pointA": { + "#": 1291 + }, + "pointB": { + "#": 1292 + }, + "length": 36, + "render": { + "#": 1293 + }, + "id": 60, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 352 + }, + "bodyB": { + "#": 610 + }, + "stiffness": 0.4, + "pointA": { + "#": 1295 + }, + "pointB": { + "#": 1296 + }, + "length": 50.52708, + "render": { + "#": 1297 + }, + "id": 61, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 438 + }, + "bodyB": { + "#": 610 + }, + "stiffness": 0.4, + "pointA": { + "#": 1299 + }, + "pointB": { + "#": 1300 + }, + "length": 50.52708, + "render": { + "#": 1301 + }, + "id": 62, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 438 + }, + "bodyB": { + "#": 653 + }, + "stiffness": 0.4, + "pointA": { + "#": 1303 + }, + "pointB": { + "#": 1304 + }, + "length": 36, + "render": { + "#": 1305 + }, + "id": 63, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 395 + }, + "bodyB": { + "#": 653 + }, + "stiffness": 0.4, + "pointA": { + "#": 1307 + }, + "pointB": { + "#": 1308 + }, + "length": 50.52708, + "render": { + "#": 1309 + }, + "id": 64, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 481 + }, + "bodyB": { + "#": 653 + }, + "stiffness": 0.4, + "pointA": { + "#": 1311 + }, + "pointB": { + "#": 1312 + }, + "length": 50.52708, + "render": { + "#": 1313 + }, + "id": 65, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 481 + }, + "bodyB": { + "#": 696 + }, + "stiffness": 0.4, + "pointA": { + "#": 1315 + }, + "pointB": { + "#": 1316 + }, + "length": 36, + "render": { + "#": 1317 + }, + "id": 66, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 438 + }, + "bodyB": { + "#": 696 + }, + "stiffness": 0.4, + "pointA": { + "#": 1319 + }, + "pointB": { + "#": 1320 + }, + "length": 50.52708, + "render": { + "#": 1321 + }, + "id": 67, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 739 + }, + "bodyB": { + "#": 782 + }, + "stiffness": 0.4, + "pointA": { + "#": 1323 + }, + "pointB": { + "#": 1324 + }, + "length": 35.454, + "render": { + "#": 1325 + }, + "id": 68, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 782 + }, + "bodyB": { + "#": 825 + }, + "stiffness": 0.4, + "pointA": { + "#": 1327 + }, + "pointB": { + "#": 1328 + }, + "length": 35.454, + "render": { + "#": 1329 + }, + "id": 69, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 825 + }, + "bodyB": { + "#": 868 + }, + "stiffness": 0.4, + "pointA": { + "#": 1331 + }, + "pointB": { + "#": 1332 + }, + "length": 35.454, + "render": { + "#": 1333 + }, + "id": 70, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 868 + }, + "bodyB": { + "#": 911 + }, + "stiffness": 0.4, + "pointA": { + "#": 1335 + }, + "pointB": { + "#": 1336 + }, + "length": 35.454, + "render": { + "#": 1337 + }, + "id": 71, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 524 + }, + "bodyB": { + "#": 739 + }, + "stiffness": 0.4, + "pointA": { + "#": 1339 + }, + "pointB": { + "#": 1340 + }, + "length": 36, + "render": { + "#": 1341 + }, + "id": 72, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 567 + }, + "bodyB": { + "#": 739 + }, + "stiffness": 0.4, + "pointA": { + "#": 1343 + }, + "pointB": { + "#": 1344 + }, + "length": 50.52708, + "render": { + "#": 1345 + }, + "id": 73, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 567 + }, + "bodyB": { + "#": 782 + }, + "stiffness": 0.4, + "pointA": { + "#": 1347 + }, + "pointB": { + "#": 1348 + }, + "length": 36, + "render": { + "#": 1349 + }, + "id": 74, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 524 + }, + "bodyB": { + "#": 782 + }, + "stiffness": 0.4, + "pointA": { + "#": 1351 + }, + "pointB": { + "#": 1352 + }, + "length": 50.52708, + "render": { + "#": 1353 + }, + "id": 75, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 610 + }, + "bodyB": { + "#": 782 + }, + "stiffness": 0.4, + "pointA": { + "#": 1355 + }, + "pointB": { + "#": 1356 + }, + "length": 50.52708, + "render": { + "#": 1357 + }, + "id": 76, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 610 + }, + "bodyB": { + "#": 825 + }, + "stiffness": 0.4, + "pointA": { + "#": 1359 + }, + "pointB": { + "#": 1360 + }, + "length": 36, + "render": { + "#": 1361 + }, + "id": 77, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 567 + }, + "bodyB": { + "#": 825 + }, + "stiffness": 0.4, + "pointA": { + "#": 1363 + }, + "pointB": { + "#": 1364 + }, + "length": 50.52708, + "render": { + "#": 1365 + }, + "id": 78, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 653 + }, + "bodyB": { + "#": 825 + }, + "stiffness": 0.4, + "pointA": { + "#": 1367 + }, + "pointB": { + "#": 1368 + }, + "length": 50.52708, + "render": { + "#": 1369 + }, + "id": 79, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 653 + }, + "bodyB": { + "#": 868 + }, + "stiffness": 0.4, + "pointA": { + "#": 1371 + }, + "pointB": { + "#": 1372 + }, + "length": 36, + "render": { + "#": 1373 + }, + "id": 80, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 610 + }, + "bodyB": { + "#": 868 + }, + "stiffness": 0.4, + "pointA": { + "#": 1375 + }, + "pointB": { + "#": 1376 + }, + "length": 50.52708, + "render": { + "#": 1377 + }, + "id": 81, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 696 + }, + "bodyB": { + "#": 868 + }, + "stiffness": 0.4, + "pointA": { + "#": 1379 + }, + "pointB": { + "#": 1380 + }, + "length": 50.52708, + "render": { + "#": 1381 + }, + "id": 82, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 696 + }, + "bodyB": { + "#": 911 + }, + "stiffness": 0.4, + "pointA": { + "#": 1383 + }, + "pointB": { + "#": 1384 + }, + "length": 36, + "render": { + "#": 1385 + }, + "id": 83, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 653 + }, + "bodyB": { + "#": 911 + }, + "stiffness": 0.4, + "pointA": { + "#": 1387 + }, + "pointB": { + "#": 1388 + }, + "length": 50.52708, + "render": { + "#": 1389 + }, + "id": 84, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 954 + }, + "bodyB": { + "#": 997 + }, + "stiffness": 0.4, + "pointA": { + "#": 1391 + }, + "pointB": { + "#": 1392 + }, + "length": 35.454, + "render": { + "#": 1393 + }, + "id": 85, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 997 + }, + "bodyB": { + "#": 1040 + }, + "stiffness": 0.4, + "pointA": { + "#": 1395 + }, + "pointB": { + "#": 1396 + }, + "length": 35.454, + "render": { + "#": 1397 + }, + "id": 86, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1040 + }, + "bodyB": { + "#": 1083 + }, + "stiffness": 0.4, + "pointA": { + "#": 1399 + }, + "pointB": { + "#": 1400 + }, + "length": 35.454, + "render": { + "#": 1401 + }, + "id": 87, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1083 + }, + "bodyB": { + "#": 1126 + }, + "stiffness": 0.4, + "pointA": { + "#": 1403 + }, + "pointB": { + "#": 1404 + }, + "length": 35.454, + "render": { + "#": 1405 + }, + "id": 88, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 739 + }, + "bodyB": { + "#": 954 + }, + "stiffness": 0.4, + "pointA": { + "#": 1407 + }, + "pointB": { + "#": 1408 + }, + "length": 36, + "render": { + "#": 1409 + }, + "id": 89, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 782 + }, + "bodyB": { + "#": 954 + }, + "stiffness": 0.4, + "pointA": { + "#": 1411 + }, + "pointB": { + "#": 1412 + }, + "length": 50.52708, + "render": { + "#": 1413 + }, + "id": 90, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 782 + }, + "bodyB": { + "#": 997 + }, + "stiffness": 0.4, + "pointA": { + "#": 1415 + }, + "pointB": { + "#": 1416 + }, + "length": 36, + "render": { + "#": 1417 + }, + "id": 91, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 739 + }, + "bodyB": { + "#": 997 + }, + "stiffness": 0.4, + "pointA": { + "#": 1419 + }, + "pointB": { + "#": 1420 + }, + "length": 50.52708, + "render": { + "#": 1421 + }, + "id": 92, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 825 + }, + "bodyB": { + "#": 997 + }, + "stiffness": 0.4, + "pointA": { + "#": 1423 + }, + "pointB": { + "#": 1424 + }, + "length": 50.52708, + "render": { + "#": 1425 + }, + "id": 93, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 825 + }, + "bodyB": { + "#": 1040 + }, + "stiffness": 0.4, + "pointA": { + "#": 1427 + }, + "pointB": { + "#": 1428 + }, + "length": 36, + "render": { + "#": 1429 + }, + "id": 94, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 782 + }, + "bodyB": { + "#": 1040 + }, + "stiffness": 0.4, + "pointA": { + "#": 1431 + }, + "pointB": { + "#": 1432 + }, + "length": 50.52708, + "render": { + "#": 1433 + }, + "id": 95, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 868 + }, + "bodyB": { + "#": 1040 + }, + "stiffness": 0.4, + "pointA": { + "#": 1435 + }, + "pointB": { + "#": 1436 + }, + "length": 50.52708, + "render": { + "#": 1437 + }, + "id": 96, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 868 + }, + "bodyB": { + "#": 1083 + }, + "stiffness": 0.4, + "pointA": { + "#": 1439 + }, + "pointB": { + "#": 1440 + }, + "length": 36, + "render": { + "#": 1441 + }, + "id": 97, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 825 + }, + "bodyB": { + "#": 1083 + }, + "stiffness": 0.4, + "pointA": { + "#": 1443 + }, + "pointB": { + "#": 1444 + }, + "length": 50.52708, + "render": { + "#": 1445 + }, + "id": 98, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 911 + }, + "bodyB": { + "#": 1083 + }, + "stiffness": 0.4, + "pointA": { + "#": 1447 + }, + "pointB": { + "#": 1448 + }, + "length": 50.52708, + "render": { + "#": 1449 + }, + "id": 99, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 911 + }, + "bodyB": { + "#": 1126 + }, + "stiffness": 0.4, + "pointA": { + "#": 1451 + }, + "pointB": { + "#": 1452 + }, + "length": 36, + "render": { + "#": 1453 + }, + "id": 100, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 868 + }, + "bodyB": { + "#": 1126 + }, + "stiffness": 0.4, + "pointA": { + "#": 1455 + }, + "pointB": { + "#": 1456 + }, + "length": 50.52708, + "render": { + "#": 1457 + }, + "id": 101, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "id": 102, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 1460 + }, + "constraints": { + "#": 2421 + }, + "composites": { + "#": 2682 + }, + "label": "Soft Body" + }, + [ + { + "#": 1461 + }, + { + "#": 1501 + }, + { + "#": 1541 + }, + { + "#": 1581 + }, + { + "#": 1621 + }, + { + "#": 1661 + }, + { + "#": 1701 + }, + { + "#": 1741 + }, + { + "#": 1781 + }, + { + "#": 1821 + }, + { + "#": 1861 + }, + { + "#": 1901 + }, + { + "#": 1941 + }, + { + "#": 1981 + }, + { + "#": 2021 + }, + { + "#": 2061 + }, + { + "#": 2101 + }, + { + "#": 2141 + }, + { + "#": 2181 + }, + { + "#": 2221 + }, + { + "#": 2261 + }, + { + "#": 2301 + }, + { + "#": 2341 + }, + { + "#": 2381 + } + ], + { + "id": 103, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1462 + }, + "angle": 0, + "vertices": { + "#": 1463 + }, + "position": { + "#": 1480 + }, + "force": { + "#": 1481 + }, + "torque": 0, + "positionImpulse": { + "#": 1482 + }, + "constraintImpulse": { + "#": 1483 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1484 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1485 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1486 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1488 + }, + "positionPrev": { + "#": 1491 + }, + "anglePrev": 0, + "axes": { + "#": 1492 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1461 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1461 + } + ], + [ + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + }, + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + }, + { + "#": 1473 + }, + { + "#": 1474 + }, + { + "#": 1475 + }, + { + "#": 1476 + }, + { + "#": 1477 + }, + { + "#": 1478 + }, + { + "#": 1479 + } + ], + { + "x": 279.424, + "y": 317.638, + "index": 0, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 323.046, + "index": 1, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 327.184, + "index": 2, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 329.424, + "index": 3, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 329.424, + "index": 4, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 327.184, + "index": 5, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 323.046, + "index": 6, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 250, + "y": 317.638, + "index": 7, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 250, + "y": 311.786, + "index": 8, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 306.378, + "index": 9, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 302.24, + "index": 10, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 300, + "index": 11, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 300, + "index": 12, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 302.24, + "index": 13, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 306.378, + "index": 14, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 311.786, + "index": 15, + "body": { + "#": 1461 + }, + "isInternal": false + }, + { + "x": 264.712, + "y": 314.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1487 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1489 + }, + "max": { + "#": 1490 + } + }, + { + "x": 250, + "y": 300 + }, + { + "x": 279.424, + "y": 329.424 + }, + { + "x": 264.712, + "y": 314.712 + }, + [ + { + "#": 1493 + }, + { + "#": 1494 + }, + { + "#": 1495 + }, + { + "#": 1496 + }, + { + "#": 1497 + }, + { + "#": 1498 + }, + { + "#": 1499 + }, + { + "#": 1500 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 104, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1502 + }, + "angle": 0, + "vertices": { + "#": 1503 + }, + "position": { + "#": 1520 + }, + "force": { + "#": 1521 + }, + "torque": 0, + "positionImpulse": { + "#": 1522 + }, + "constraintImpulse": { + "#": 1523 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1524 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1525 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1526 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1528 + }, + "positionPrev": { + "#": 1531 + }, + "anglePrev": 0, + "axes": { + "#": 1532 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1501 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1501 + } + ], + [ + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + }, + { + "#": 1509 + }, + { + "#": 1510 + }, + { + "#": 1511 + }, + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + }, + { + "#": 1515 + }, + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + } + ], + { + "x": 308.848, + "y": 317.638, + "index": 0, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 323.046, + "index": 1, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 327.184, + "index": 2, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 329.424, + "index": 3, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 329.424, + "index": 4, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 327.184, + "index": 5, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 323.046, + "index": 6, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 317.638, + "index": 7, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 311.786, + "index": 8, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 306.378, + "index": 9, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 302.24, + "index": 10, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 300, + "index": 11, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 300, + "index": 12, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 302.24, + "index": 13, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 306.378, + "index": 14, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 311.786, + "index": 15, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 294.136, + "y": 314.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1527 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1529 + }, + "max": { + "#": 1530 + } + }, + { + "x": 279.424, + "y": 300 + }, + { + "x": 308.848, + "y": 329.424 + }, + { + "x": 294.136, + "y": 314.712 + }, + [ + { + "#": 1533 + }, + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + }, + { + "#": 1537 + }, + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 105, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1542 + }, + "angle": 0, + "vertices": { + "#": 1543 + }, + "position": { + "#": 1560 + }, + "force": { + "#": 1561 + }, + "torque": 0, + "positionImpulse": { + "#": 1562 + }, + "constraintImpulse": { + "#": 1563 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1564 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1565 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1566 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1568 + }, + "positionPrev": { + "#": 1571 + }, + "anglePrev": 0, + "axes": { + "#": 1572 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1541 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1541 + } + ], + [ + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + }, + { + "#": 1548 + }, + { + "#": 1549 + }, + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + }, + { + "#": 1553 + }, + { + "#": 1554 + }, + { + "#": 1555 + }, + { + "#": 1556 + }, + { + "#": 1557 + }, + { + "#": 1558 + }, + { + "#": 1559 + } + ], + { + "x": 338.272, + "y": 317.638, + "index": 0, + "body": { + "#": 1541 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 323.046, + "index": 1, + "body": { + "#": 1541 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 327.184, + "index": 2, + "body": { + "#": 1541 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 329.424, + "index": 3, + "body": { + "#": 1541 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 329.424, + "index": 4, + "body": { + "#": 1541 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 327.184, + "index": 5, + "body": { + "#": 1541 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 323.046, + "index": 6, + "body": { + "#": 1541 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 317.638, + "index": 7, + "body": { + "#": 1541 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 311.786, + "index": 8, + "body": { + "#": 1541 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 306.378, + "index": 9, + "body": { + "#": 1541 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 302.24, + "index": 10, + "body": { + "#": 1541 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 300, + "index": 11, + "body": { + "#": 1541 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 300, + "index": 12, + "body": { + "#": 1541 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 302.24, + "index": 13, + "body": { + "#": 1541 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 306.378, + "index": 14, + "body": { + "#": 1541 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 311.786, + "index": 15, + "body": { + "#": 1541 + }, + "isInternal": false + }, + { + "x": 323.56, + "y": 314.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1567 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1569 + }, + "max": { + "#": 1570 + } + }, + { + "x": 308.848, + "y": 300 + }, + { + "x": 338.272, + "y": 329.424 + }, + { + "x": 323.56, + "y": 314.712 + }, + [ + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + }, + { + "#": 1577 + }, + { + "#": 1578 + }, + { + "#": 1579 + }, + { + "#": 1580 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 106, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1582 + }, + "angle": 0, + "vertices": { + "#": 1583 + }, + "position": { + "#": 1600 + }, + "force": { + "#": 1601 + }, + "torque": 0, + "positionImpulse": { + "#": 1602 + }, + "constraintImpulse": { + "#": 1603 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1604 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1605 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1606 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1608 + }, + "positionPrev": { + "#": 1611 + }, + "anglePrev": 0, + "axes": { + "#": 1612 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1581 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1581 + } + ], + [ + { + "#": 1584 + }, + { + "#": 1585 + }, + { + "#": 1586 + }, + { + "#": 1587 + }, + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + }, + { + "#": 1592 + }, + { + "#": 1593 + }, + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + }, + { + "#": 1597 + }, + { + "#": 1598 + }, + { + "#": 1599 + } + ], + { + "x": 367.696, + "y": 317.638, + "index": 0, + "body": { + "#": 1581 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 323.046, + "index": 1, + "body": { + "#": 1581 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 327.184, + "index": 2, + "body": { + "#": 1581 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 329.424, + "index": 3, + "body": { + "#": 1581 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 329.424, + "index": 4, + "body": { + "#": 1581 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 327.184, + "index": 5, + "body": { + "#": 1581 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 323.046, + "index": 6, + "body": { + "#": 1581 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 317.638, + "index": 7, + "body": { + "#": 1581 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 311.786, + "index": 8, + "body": { + "#": 1581 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 306.378, + "index": 9, + "body": { + "#": 1581 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 302.24, + "index": 10, + "body": { + "#": 1581 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 300, + "index": 11, + "body": { + "#": 1581 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 300, + "index": 12, + "body": { + "#": 1581 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 302.24, + "index": 13, + "body": { + "#": 1581 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 306.378, + "index": 14, + "body": { + "#": 1581 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 311.786, + "index": 15, + "body": { + "#": 1581 + }, + "isInternal": false + }, + { + "x": 352.984, + "y": 314.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1607 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1609 + }, + "max": { + "#": 1610 + } + }, + { + "x": 338.272, + "y": 300 + }, + { + "x": 367.696, + "y": 329.424 + }, + { + "x": 352.984, + "y": 314.712 + }, + [ + { + "#": 1613 + }, + { + "#": 1614 + }, + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + }, + { + "#": 1618 + }, + { + "#": 1619 + }, + { + "#": 1620 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 107, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1622 + }, + "angle": 0, + "vertices": { + "#": 1623 + }, + "position": { + "#": 1640 + }, + "force": { + "#": 1641 + }, + "torque": 0, + "positionImpulse": { + "#": 1642 + }, + "constraintImpulse": { + "#": 1643 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1644 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1645 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1646 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1648 + }, + "positionPrev": { + "#": 1651 + }, + "anglePrev": 0, + "axes": { + "#": 1652 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1621 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1621 + } + ], + [ + { + "#": 1624 + }, + { + "#": 1625 + }, + { + "#": 1626 + }, + { + "#": 1627 + }, + { + "#": 1628 + }, + { + "#": 1629 + }, + { + "#": 1630 + }, + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + }, + { + "#": 1637 + }, + { + "#": 1638 + }, + { + "#": 1639 + } + ], + { + "x": 397.12, + "y": 317.638, + "index": 0, + "body": { + "#": 1621 + }, + "isInternal": false + }, + { + "x": 394.88, + "y": 323.046, + "index": 1, + "body": { + "#": 1621 + }, + "isInternal": false + }, + { + "x": 390.742, + "y": 327.184, + "index": 2, + "body": { + "#": 1621 + }, + "isInternal": false + }, + { + "x": 385.334, + "y": 329.424, + "index": 3, + "body": { + "#": 1621 + }, + "isInternal": false + }, + { + "x": 379.482, + "y": 329.424, + "index": 4, + "body": { + "#": 1621 + }, + "isInternal": false + }, + { + "x": 374.074, + "y": 327.184, + "index": 5, + "body": { + "#": 1621 + }, + "isInternal": false + }, + { + "x": 369.936, + "y": 323.046, + "index": 6, + "body": { + "#": 1621 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 317.638, + "index": 7, + "body": { + "#": 1621 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 311.786, + "index": 8, + "body": { + "#": 1621 + }, + "isInternal": false + }, + { + "x": 369.936, + "y": 306.378, + "index": 9, + "body": { + "#": 1621 + }, + "isInternal": false + }, + { + "x": 374.074, + "y": 302.24, + "index": 10, + "body": { + "#": 1621 + }, + "isInternal": false + }, + { + "x": 379.482, + "y": 300, + "index": 11, + "body": { + "#": 1621 + }, + "isInternal": false + }, + { + "x": 385.334, + "y": 300, + "index": 12, + "body": { + "#": 1621 + }, + "isInternal": false + }, + { + "x": 390.742, + "y": 302.24, + "index": 13, + "body": { + "#": 1621 + }, + "isInternal": false + }, + { + "x": 394.88, + "y": 306.378, + "index": 14, + "body": { + "#": 1621 + }, + "isInternal": false + }, + { + "x": 397.12, + "y": 311.786, + "index": 15, + "body": { + "#": 1621 + }, + "isInternal": false + }, + { + "x": 382.408, + "y": 314.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1647 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1649 + }, + "max": { + "#": 1650 + } + }, + { + "x": 367.696, + "y": 300 + }, + { + "x": 397.12, + "y": 329.424 + }, + { + "x": 382.408, + "y": 314.712 + }, + [ + { + "#": 1653 + }, + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 108, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1662 + }, + "angle": 0, + "vertices": { + "#": 1663 + }, + "position": { + "#": 1680 + }, + "force": { + "#": 1681 + }, + "torque": 0, + "positionImpulse": { + "#": 1682 + }, + "constraintImpulse": { + "#": 1683 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1684 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1685 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1686 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1688 + }, + "positionPrev": { + "#": 1691 + }, + "anglePrev": 0, + "axes": { + "#": 1692 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1661 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1661 + } + ], + [ + { + "#": 1664 + }, + { + "#": 1665 + }, + { + "#": 1666 + }, + { + "#": 1667 + }, + { + "#": 1668 + }, + { + "#": 1669 + }, + { + "#": 1670 + }, + { + "#": 1671 + }, + { + "#": 1672 + }, + { + "#": 1673 + }, + { + "#": 1674 + }, + { + "#": 1675 + }, + { + "#": 1676 + }, + { + "#": 1677 + }, + { + "#": 1678 + }, + { + "#": 1679 + } + ], + { + "x": 426.544, + "y": 317.638, + "index": 0, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 424.304, + "y": 323.046, + "index": 1, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 420.166, + "y": 327.184, + "index": 2, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 414.758, + "y": 329.424, + "index": 3, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 408.906, + "y": 329.424, + "index": 4, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 403.498, + "y": 327.184, + "index": 5, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 399.36, + "y": 323.046, + "index": 6, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 397.12, + "y": 317.638, + "index": 7, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 397.12, + "y": 311.786, + "index": 8, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 399.36, + "y": 306.378, + "index": 9, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 403.498, + "y": 302.24, + "index": 10, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 408.906, + "y": 300, + "index": 11, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 414.758, + "y": 300, + "index": 12, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 420.166, + "y": 302.24, + "index": 13, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 424.304, + "y": 306.378, + "index": 14, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 426.544, + "y": 311.786, + "index": 15, + "body": { + "#": 1661 + }, + "isInternal": false + }, + { + "x": 411.832, + "y": 314.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1687 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1689 + }, + "max": { + "#": 1690 + } + }, + { + "x": 397.12, + "y": 300 + }, + { + "x": 426.544, + "y": 329.424 + }, + { + "x": 411.832, + "y": 314.712 + }, + [ + { + "#": 1693 + }, + { + "#": 1694 + }, + { + "#": 1695 + }, + { + "#": 1696 + }, + { + "#": 1697 + }, + { + "#": 1698 + }, + { + "#": 1699 + }, + { + "#": 1700 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 109, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1702 + }, + "angle": 0, + "vertices": { + "#": 1703 + }, + "position": { + "#": 1720 + }, + "force": { + "#": 1721 + }, + "torque": 0, + "positionImpulse": { + "#": 1722 + }, + "constraintImpulse": { + "#": 1723 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1724 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1725 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1726 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1728 + }, + "positionPrev": { + "#": 1731 + }, + "anglePrev": 0, + "axes": { + "#": 1732 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1701 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1701 + } + ], + [ + { + "#": 1704 + }, + { + "#": 1705 + }, + { + "#": 1706 + }, + { + "#": 1707 + }, + { + "#": 1708 + }, + { + "#": 1709 + }, + { + "#": 1710 + }, + { + "#": 1711 + }, + { + "#": 1712 + }, + { + "#": 1713 + }, + { + "#": 1714 + }, + { + "#": 1715 + }, + { + "#": 1716 + }, + { + "#": 1717 + }, + { + "#": 1718 + }, + { + "#": 1719 + } + ], + { + "x": 455.968, + "y": 317.638, + "index": 0, + "body": { + "#": 1701 + }, + "isInternal": false + }, + { + "x": 453.728, + "y": 323.046, + "index": 1, + "body": { + "#": 1701 + }, + "isInternal": false + }, + { + "x": 449.59, + "y": 327.184, + "index": 2, + "body": { + "#": 1701 + }, + "isInternal": false + }, + { + "x": 444.182, + "y": 329.424, + "index": 3, + "body": { + "#": 1701 + }, + "isInternal": false + }, + { + "x": 438.33, + "y": 329.424, + "index": 4, + "body": { + "#": 1701 + }, + "isInternal": false + }, + { + "x": 432.922, + "y": 327.184, + "index": 5, + "body": { + "#": 1701 + }, + "isInternal": false + }, + { + "x": 428.784, + "y": 323.046, + "index": 6, + "body": { + "#": 1701 + }, + "isInternal": false + }, + { + "x": 426.544, + "y": 317.638, + "index": 7, + "body": { + "#": 1701 + }, + "isInternal": false + }, + { + "x": 426.544, + "y": 311.786, + "index": 8, + "body": { + "#": 1701 + }, + "isInternal": false + }, + { + "x": 428.784, + "y": 306.378, + "index": 9, + "body": { + "#": 1701 + }, + "isInternal": false + }, + { + "x": 432.922, + "y": 302.24, + "index": 10, + "body": { + "#": 1701 + }, + "isInternal": false + }, + { + "x": 438.33, + "y": 300, + "index": 11, + "body": { + "#": 1701 + }, + "isInternal": false + }, + { + "x": 444.182, + "y": 300, + "index": 12, + "body": { + "#": 1701 + }, + "isInternal": false + }, + { + "x": 449.59, + "y": 302.24, + "index": 13, + "body": { + "#": 1701 + }, + "isInternal": false + }, + { + "x": 453.728, + "y": 306.378, + "index": 14, + "body": { + "#": 1701 + }, + "isInternal": false + }, + { + "x": 455.968, + "y": 311.786, + "index": 15, + "body": { + "#": 1701 + }, + "isInternal": false + }, + { + "x": 441.256, + "y": 314.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1727 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1729 + }, + "max": { + "#": 1730 + } + }, + { + "x": 426.544, + "y": 300 + }, + { + "x": 455.968, + "y": 329.424 + }, + { + "x": 441.256, + "y": 314.712 + }, + [ + { + "#": 1733 + }, + { + "#": 1734 + }, + { + "#": 1735 + }, + { + "#": 1736 + }, + { + "#": 1737 + }, + { + "#": 1738 + }, + { + "#": 1739 + }, + { + "#": 1740 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 110, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1742 + }, + "angle": 0, + "vertices": { + "#": 1743 + }, + "position": { + "#": 1760 + }, + "force": { + "#": 1761 + }, + "torque": 0, + "positionImpulse": { + "#": 1762 + }, + "constraintImpulse": { + "#": 1763 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1764 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1765 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1766 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1768 + }, + "positionPrev": { + "#": 1771 + }, + "anglePrev": 0, + "axes": { + "#": 1772 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1741 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1741 + } + ], + [ + { + "#": 1744 + }, + { + "#": 1745 + }, + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + }, + { + "#": 1751 + }, + { + "#": 1752 + }, + { + "#": 1753 + }, + { + "#": 1754 + }, + { + "#": 1755 + }, + { + "#": 1756 + }, + { + "#": 1757 + }, + { + "#": 1758 + }, + { + "#": 1759 + } + ], + { + "x": 485.392, + "y": 317.638, + "index": 0, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 483.152, + "y": 323.046, + "index": 1, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 479.014, + "y": 327.184, + "index": 2, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 473.606, + "y": 329.424, + "index": 3, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 467.754, + "y": 329.424, + "index": 4, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 462.346, + "y": 327.184, + "index": 5, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 458.208, + "y": 323.046, + "index": 6, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 455.968, + "y": 317.638, + "index": 7, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 455.968, + "y": 311.786, + "index": 8, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 458.208, + "y": 306.378, + "index": 9, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 462.346, + "y": 302.24, + "index": 10, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 467.754, + "y": 300, + "index": 11, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 473.606, + "y": 300, + "index": 12, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 479.014, + "y": 302.24, + "index": 13, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 483.152, + "y": 306.378, + "index": 14, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 485.392, + "y": 311.786, + "index": 15, + "body": { + "#": 1741 + }, + "isInternal": false + }, + { + "x": 470.68, + "y": 314.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1767 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1769 + }, + "max": { + "#": 1770 + } + }, + { + "x": 455.968, + "y": 300 + }, + { + "x": 485.392, + "y": 329.424 + }, + { + "x": 470.68, + "y": 314.712 + }, + [ + { + "#": 1773 + }, + { + "#": 1774 + }, + { + "#": 1775 + }, + { + "#": 1776 + }, + { + "#": 1777 + }, + { + "#": 1778 + }, + { + "#": 1779 + }, + { + "#": 1780 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 111, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1782 + }, + "angle": 0, + "vertices": { + "#": 1783 + }, + "position": { + "#": 1800 + }, + "force": { + "#": 1801 + }, + "torque": 0, + "positionImpulse": { + "#": 1802 + }, + "constraintImpulse": { + "#": 1803 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1804 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1805 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1806 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1808 + }, + "positionPrev": { + "#": 1811 + }, + "anglePrev": 0, + "axes": { + "#": 1812 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1781 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1781 + } + ], + [ + { + "#": 1784 + }, + { + "#": 1785 + }, + { + "#": 1786 + }, + { + "#": 1787 + }, + { + "#": 1788 + }, + { + "#": 1789 + }, + { + "#": 1790 + }, + { + "#": 1791 + }, + { + "#": 1792 + }, + { + "#": 1793 + }, + { + "#": 1794 + }, + { + "#": 1795 + }, + { + "#": 1796 + }, + { + "#": 1797 + }, + { + "#": 1798 + }, + { + "#": 1799 + } + ], + { + "x": 279.424, + "y": 347.062, + "index": 0, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 352.47, + "index": 1, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 356.608, + "index": 2, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 358.848, + "index": 3, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 358.848, + "index": 4, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 356.608, + "index": 5, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 352.47, + "index": 6, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 250, + "y": 347.062, + "index": 7, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 250, + "y": 341.21, + "index": 8, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 335.802, + "index": 9, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 331.664, + "index": 10, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 329.424, + "index": 11, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 329.424, + "index": 12, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 331.664, + "index": 13, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 335.802, + "index": 14, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 341.21, + "index": 15, + "body": { + "#": 1781 + }, + "isInternal": false + }, + { + "x": 264.712, + "y": 344.136 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1807 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1809 + }, + "max": { + "#": 1810 + } + }, + { + "x": 250, + "y": 329.424 + }, + { + "x": 279.424, + "y": 358.848 + }, + { + "x": 264.712, + "y": 344.136 + }, + [ + { + "#": 1813 + }, + { + "#": 1814 + }, + { + "#": 1815 + }, + { + "#": 1816 + }, + { + "#": 1817 + }, + { + "#": 1818 + }, + { + "#": 1819 + }, + { + "#": 1820 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 112, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1822 + }, + "angle": 0, + "vertices": { + "#": 1823 + }, + "position": { + "#": 1840 + }, + "force": { + "#": 1841 + }, + "torque": 0, + "positionImpulse": { + "#": 1842 + }, + "constraintImpulse": { + "#": 1843 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1844 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1845 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1846 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1848 + }, + "positionPrev": { + "#": 1851 + }, + "anglePrev": 0, + "axes": { + "#": 1852 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1821 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1821 + } + ], + [ + { + "#": 1824 + }, + { + "#": 1825 + }, + { + "#": 1826 + }, + { + "#": 1827 + }, + { + "#": 1828 + }, + { + "#": 1829 + }, + { + "#": 1830 + }, + { + "#": 1831 + }, + { + "#": 1832 + }, + { + "#": 1833 + }, + { + "#": 1834 + }, + { + "#": 1835 + }, + { + "#": 1836 + }, + { + "#": 1837 + }, + { + "#": 1838 + }, + { + "#": 1839 + } + ], + { + "x": 308.848, + "y": 347.062, + "index": 0, + "body": { + "#": 1821 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 352.47, + "index": 1, + "body": { + "#": 1821 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 356.608, + "index": 2, + "body": { + "#": 1821 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 358.848, + "index": 3, + "body": { + "#": 1821 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 358.848, + "index": 4, + "body": { + "#": 1821 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 356.608, + "index": 5, + "body": { + "#": 1821 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 352.47, + "index": 6, + "body": { + "#": 1821 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 347.062, + "index": 7, + "body": { + "#": 1821 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 341.21, + "index": 8, + "body": { + "#": 1821 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 335.802, + "index": 9, + "body": { + "#": 1821 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 331.664, + "index": 10, + "body": { + "#": 1821 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 329.424, + "index": 11, + "body": { + "#": 1821 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 329.424, + "index": 12, + "body": { + "#": 1821 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 331.664, + "index": 13, + "body": { + "#": 1821 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 335.802, + "index": 14, + "body": { + "#": 1821 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 341.21, + "index": 15, + "body": { + "#": 1821 + }, + "isInternal": false + }, + { + "x": 294.136, + "y": 344.136 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1847 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1849 + }, + "max": { + "#": 1850 + } + }, + { + "x": 279.424, + "y": 329.424 + }, + { + "x": 308.848, + "y": 358.848 + }, + { + "x": 294.136, + "y": 344.136 + }, + [ + { + "#": 1853 + }, + { + "#": 1854 + }, + { + "#": 1855 + }, + { + "#": 1856 + }, + { + "#": 1857 + }, + { + "#": 1858 + }, + { + "#": 1859 + }, + { + "#": 1860 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 113, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1862 + }, + "angle": 0, + "vertices": { + "#": 1863 + }, + "position": { + "#": 1880 + }, + "force": { + "#": 1881 + }, + "torque": 0, + "positionImpulse": { + "#": 1882 + }, + "constraintImpulse": { + "#": 1883 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1884 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1885 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1886 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1888 + }, + "positionPrev": { + "#": 1891 + }, + "anglePrev": 0, + "axes": { + "#": 1892 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1861 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1861 + } + ], + [ + { + "#": 1864 + }, + { + "#": 1865 + }, + { + "#": 1866 + }, + { + "#": 1867 + }, + { + "#": 1868 + }, + { + "#": 1869 + }, + { + "#": 1870 + }, + { + "#": 1871 + }, + { + "#": 1872 + }, + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + }, + { + "#": 1877 + }, + { + "#": 1878 + }, + { + "#": 1879 + } + ], + { + "x": 338.272, + "y": 347.062, + "index": 0, + "body": { + "#": 1861 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 352.47, + "index": 1, + "body": { + "#": 1861 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 356.608, + "index": 2, + "body": { + "#": 1861 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 358.848, + "index": 3, + "body": { + "#": 1861 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 358.848, + "index": 4, + "body": { + "#": 1861 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 356.608, + "index": 5, + "body": { + "#": 1861 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 352.47, + "index": 6, + "body": { + "#": 1861 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 347.062, + "index": 7, + "body": { + "#": 1861 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 341.21, + "index": 8, + "body": { + "#": 1861 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 335.802, + "index": 9, + "body": { + "#": 1861 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 331.664, + "index": 10, + "body": { + "#": 1861 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 329.424, + "index": 11, + "body": { + "#": 1861 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 329.424, + "index": 12, + "body": { + "#": 1861 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 331.664, + "index": 13, + "body": { + "#": 1861 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 335.802, + "index": 14, + "body": { + "#": 1861 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 341.21, + "index": 15, + "body": { + "#": 1861 + }, + "isInternal": false + }, + { + "x": 323.56, + "y": 344.136 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1887 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1889 + }, + "max": { + "#": 1890 + } + }, + { + "x": 308.848, + "y": 329.424 + }, + { + "x": 338.272, + "y": 358.848 + }, + { + "x": 323.56, + "y": 344.136 + }, + [ + { + "#": 1893 + }, + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + }, + { + "#": 1899 + }, + { + "#": 1900 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 114, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1902 + }, + "angle": 0, + "vertices": { + "#": 1903 + }, + "position": { + "#": 1920 + }, + "force": { + "#": 1921 + }, + "torque": 0, + "positionImpulse": { + "#": 1922 + }, + "constraintImpulse": { + "#": 1923 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1924 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1925 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1926 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1928 + }, + "positionPrev": { + "#": 1931 + }, + "anglePrev": 0, + "axes": { + "#": 1932 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1901 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1901 + } + ], + [ + { + "#": 1904 + }, + { + "#": 1905 + }, + { + "#": 1906 + }, + { + "#": 1907 + }, + { + "#": 1908 + }, + { + "#": 1909 + }, + { + "#": 1910 + }, + { + "#": 1911 + }, + { + "#": 1912 + }, + { + "#": 1913 + }, + { + "#": 1914 + }, + { + "#": 1915 + }, + { + "#": 1916 + }, + { + "#": 1917 + }, + { + "#": 1918 + }, + { + "#": 1919 + } + ], + { + "x": 367.696, + "y": 347.062, + "index": 0, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 352.47, + "index": 1, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 356.608, + "index": 2, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 358.848, + "index": 3, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 358.848, + "index": 4, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 356.608, + "index": 5, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 352.47, + "index": 6, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 347.062, + "index": 7, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 341.21, + "index": 8, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 335.802, + "index": 9, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 331.664, + "index": 10, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 329.424, + "index": 11, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 329.424, + "index": 12, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 331.664, + "index": 13, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 335.802, + "index": 14, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 341.21, + "index": 15, + "body": { + "#": 1901 + }, + "isInternal": false + }, + { + "x": 352.984, + "y": 344.136 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1927 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1929 + }, + "max": { + "#": 1930 + } + }, + { + "x": 338.272, + "y": 329.424 + }, + { + "x": 367.696, + "y": 358.848 + }, + { + "x": 352.984, + "y": 344.136 + }, + [ + { + "#": 1933 + }, + { + "#": 1934 + }, + { + "#": 1935 + }, + { + "#": 1936 + }, + { + "#": 1937 + }, + { + "#": 1938 + }, + { + "#": 1939 + }, + { + "#": 1940 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 115, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1942 + }, + "angle": 0, + "vertices": { + "#": 1943 + }, + "position": { + "#": 1960 + }, + "force": { + "#": 1961 + }, + "torque": 0, + "positionImpulse": { + "#": 1962 + }, + "constraintImpulse": { + "#": 1963 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1964 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1965 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1966 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1968 + }, + "positionPrev": { + "#": 1971 + }, + "anglePrev": 0, + "axes": { + "#": 1972 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1941 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1941 + } + ], + [ + { + "#": 1944 + }, + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + }, + { + "#": 1948 + }, + { + "#": 1949 + }, + { + "#": 1950 + }, + { + "#": 1951 + }, + { + "#": 1952 + }, + { + "#": 1953 + }, + { + "#": 1954 + }, + { + "#": 1955 + }, + { + "#": 1956 + }, + { + "#": 1957 + }, + { + "#": 1958 + }, + { + "#": 1959 + } + ], + { + "x": 397.12, + "y": 347.062, + "index": 0, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 394.88, + "y": 352.47, + "index": 1, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 390.742, + "y": 356.608, + "index": 2, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 385.334, + "y": 358.848, + "index": 3, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 379.482, + "y": 358.848, + "index": 4, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 374.074, + "y": 356.608, + "index": 5, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 369.936, + "y": 352.47, + "index": 6, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 347.062, + "index": 7, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 341.21, + "index": 8, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 369.936, + "y": 335.802, + "index": 9, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 374.074, + "y": 331.664, + "index": 10, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 379.482, + "y": 329.424, + "index": 11, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 385.334, + "y": 329.424, + "index": 12, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 390.742, + "y": 331.664, + "index": 13, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 394.88, + "y": 335.802, + "index": 14, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 397.12, + "y": 341.21, + "index": 15, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 382.408, + "y": 344.136 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1967 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1969 + }, + "max": { + "#": 1970 + } + }, + { + "x": 367.696, + "y": 329.424 + }, + { + "x": 397.12, + "y": 358.848 + }, + { + "x": 382.408, + "y": 344.136 + }, + [ + { + "#": 1973 + }, + { + "#": 1974 + }, + { + "#": 1975 + }, + { + "#": 1976 + }, + { + "#": 1977 + }, + { + "#": 1978 + }, + { + "#": 1979 + }, + { + "#": 1980 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 116, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1982 + }, + "angle": 0, + "vertices": { + "#": 1983 + }, + "position": { + "#": 2000 + }, + "force": { + "#": 2001 + }, + "torque": 0, + "positionImpulse": { + "#": 2002 + }, + "constraintImpulse": { + "#": 2003 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2004 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2005 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2006 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2008 + }, + "positionPrev": { + "#": 2011 + }, + "anglePrev": 0, + "axes": { + "#": 2012 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1981 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1981 + } + ], + [ + { + "#": 1984 + }, + { + "#": 1985 + }, + { + "#": 1986 + }, + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + }, + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + }, + { + "#": 1996 + }, + { + "#": 1997 + }, + { + "#": 1998 + }, + { + "#": 1999 + } + ], + { + "x": 426.544, + "y": 347.062, + "index": 0, + "body": { + "#": 1981 + }, + "isInternal": false + }, + { + "x": 424.304, + "y": 352.47, + "index": 1, + "body": { + "#": 1981 + }, + "isInternal": false + }, + { + "x": 420.166, + "y": 356.608, + "index": 2, + "body": { + "#": 1981 + }, + "isInternal": false + }, + { + "x": 414.758, + "y": 358.848, + "index": 3, + "body": { + "#": 1981 + }, + "isInternal": false + }, + { + "x": 408.906, + "y": 358.848, + "index": 4, + "body": { + "#": 1981 + }, + "isInternal": false + }, + { + "x": 403.498, + "y": 356.608, + "index": 5, + "body": { + "#": 1981 + }, + "isInternal": false + }, + { + "x": 399.36, + "y": 352.47, + "index": 6, + "body": { + "#": 1981 + }, + "isInternal": false + }, + { + "x": 397.12, + "y": 347.062, + "index": 7, + "body": { + "#": 1981 + }, + "isInternal": false + }, + { + "x": 397.12, + "y": 341.21, + "index": 8, + "body": { + "#": 1981 + }, + "isInternal": false + }, + { + "x": 399.36, + "y": 335.802, + "index": 9, + "body": { + "#": 1981 + }, + "isInternal": false + }, + { + "x": 403.498, + "y": 331.664, + "index": 10, + "body": { + "#": 1981 + }, + "isInternal": false + }, + { + "x": 408.906, + "y": 329.424, + "index": 11, + "body": { + "#": 1981 + }, + "isInternal": false + }, + { + "x": 414.758, + "y": 329.424, + "index": 12, + "body": { + "#": 1981 + }, + "isInternal": false + }, + { + "x": 420.166, + "y": 331.664, + "index": 13, + "body": { + "#": 1981 + }, + "isInternal": false + }, + { + "x": 424.304, + "y": 335.802, + "index": 14, + "body": { + "#": 1981 + }, + "isInternal": false + }, + { + "x": 426.544, + "y": 341.21, + "index": 15, + "body": { + "#": 1981 + }, + "isInternal": false + }, + { + "x": 411.832, + "y": 344.136 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2007 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2009 + }, + "max": { + "#": 2010 + } + }, + { + "x": 397.12, + "y": 329.424 + }, + { + "x": 426.544, + "y": 358.848 + }, + { + "x": 411.832, + "y": 344.136 + }, + [ + { + "#": 2013 + }, + { + "#": 2014 + }, + { + "#": 2015 + }, + { + "#": 2016 + }, + { + "#": 2017 + }, + { + "#": 2018 + }, + { + "#": 2019 + }, + { + "#": 2020 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 117, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2022 + }, + "angle": 0, + "vertices": { + "#": 2023 + }, + "position": { + "#": 2040 + }, + "force": { + "#": 2041 + }, + "torque": 0, + "positionImpulse": { + "#": 2042 + }, + "constraintImpulse": { + "#": 2043 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2044 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2045 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2046 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2048 + }, + "positionPrev": { + "#": 2051 + }, + "anglePrev": 0, + "axes": { + "#": 2052 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2021 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2021 + } + ], + [ + { + "#": 2024 + }, + { + "#": 2025 + }, + { + "#": 2026 + }, + { + "#": 2027 + }, + { + "#": 2028 + }, + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + }, + { + "#": 2032 + }, + { + "#": 2033 + }, + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + }, + { + "#": 2038 + }, + { + "#": 2039 + } + ], + { + "x": 455.968, + "y": 347.062, + "index": 0, + "body": { + "#": 2021 + }, + "isInternal": false + }, + { + "x": 453.728, + "y": 352.47, + "index": 1, + "body": { + "#": 2021 + }, + "isInternal": false + }, + { + "x": 449.59, + "y": 356.608, + "index": 2, + "body": { + "#": 2021 + }, + "isInternal": false + }, + { + "x": 444.182, + "y": 358.848, + "index": 3, + "body": { + "#": 2021 + }, + "isInternal": false + }, + { + "x": 438.33, + "y": 358.848, + "index": 4, + "body": { + "#": 2021 + }, + "isInternal": false + }, + { + "x": 432.922, + "y": 356.608, + "index": 5, + "body": { + "#": 2021 + }, + "isInternal": false + }, + { + "x": 428.784, + "y": 352.47, + "index": 6, + "body": { + "#": 2021 + }, + "isInternal": false + }, + { + "x": 426.544, + "y": 347.062, + "index": 7, + "body": { + "#": 2021 + }, + "isInternal": false + }, + { + "x": 426.544, + "y": 341.21, + "index": 8, + "body": { + "#": 2021 + }, + "isInternal": false + }, + { + "x": 428.784, + "y": 335.802, + "index": 9, + "body": { + "#": 2021 + }, + "isInternal": false + }, + { + "x": 432.922, + "y": 331.664, + "index": 10, + "body": { + "#": 2021 + }, + "isInternal": false + }, + { + "x": 438.33, + "y": 329.424, + "index": 11, + "body": { + "#": 2021 + }, + "isInternal": false + }, + { + "x": 444.182, + "y": 329.424, + "index": 12, + "body": { + "#": 2021 + }, + "isInternal": false + }, + { + "x": 449.59, + "y": 331.664, + "index": 13, + "body": { + "#": 2021 + }, + "isInternal": false + }, + { + "x": 453.728, + "y": 335.802, + "index": 14, + "body": { + "#": 2021 + }, + "isInternal": false + }, + { + "x": 455.968, + "y": 341.21, + "index": 15, + "body": { + "#": 2021 + }, + "isInternal": false + }, + { + "x": 441.256, + "y": 344.136 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2047 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2049 + }, + "max": { + "#": 2050 + } + }, + { + "x": 426.544, + "y": 329.424 + }, + { + "x": 455.968, + "y": 358.848 + }, + { + "x": 441.256, + "y": 344.136 + }, + [ + { + "#": 2053 + }, + { + "#": 2054 + }, + { + "#": 2055 + }, + { + "#": 2056 + }, + { + "#": 2057 + }, + { + "#": 2058 + }, + { + "#": 2059 + }, + { + "#": 2060 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 118, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2062 + }, + "angle": 0, + "vertices": { + "#": 2063 + }, + "position": { + "#": 2080 + }, + "force": { + "#": 2081 + }, + "torque": 0, + "positionImpulse": { + "#": 2082 + }, + "constraintImpulse": { + "#": 2083 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2084 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2085 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2086 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2088 + }, + "positionPrev": { + "#": 2091 + }, + "anglePrev": 0, + "axes": { + "#": 2092 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2061 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2061 + } + ], + [ + { + "#": 2064 + }, + { + "#": 2065 + }, + { + "#": 2066 + }, + { + "#": 2067 + }, + { + "#": 2068 + }, + { + "#": 2069 + }, + { + "#": 2070 + }, + { + "#": 2071 + }, + { + "#": 2072 + }, + { + "#": 2073 + }, + { + "#": 2074 + }, + { + "#": 2075 + }, + { + "#": 2076 + }, + { + "#": 2077 + }, + { + "#": 2078 + }, + { + "#": 2079 + } + ], + { + "x": 485.392, + "y": 347.062, + "index": 0, + "body": { + "#": 2061 + }, + "isInternal": false + }, + { + "x": 483.152, + "y": 352.47, + "index": 1, + "body": { + "#": 2061 + }, + "isInternal": false + }, + { + "x": 479.014, + "y": 356.608, + "index": 2, + "body": { + "#": 2061 + }, + "isInternal": false + }, + { + "x": 473.606, + "y": 358.848, + "index": 3, + "body": { + "#": 2061 + }, + "isInternal": false + }, + { + "x": 467.754, + "y": 358.848, + "index": 4, + "body": { + "#": 2061 + }, + "isInternal": false + }, + { + "x": 462.346, + "y": 356.608, + "index": 5, + "body": { + "#": 2061 + }, + "isInternal": false + }, + { + "x": 458.208, + "y": 352.47, + "index": 6, + "body": { + "#": 2061 + }, + "isInternal": false + }, + { + "x": 455.968, + "y": 347.062, + "index": 7, + "body": { + "#": 2061 + }, + "isInternal": false + }, + { + "x": 455.968, + "y": 341.21, + "index": 8, + "body": { + "#": 2061 + }, + "isInternal": false + }, + { + "x": 458.208, + "y": 335.802, + "index": 9, + "body": { + "#": 2061 + }, + "isInternal": false + }, + { + "x": 462.346, + "y": 331.664, + "index": 10, + "body": { + "#": 2061 + }, + "isInternal": false + }, + { + "x": 467.754, + "y": 329.424, + "index": 11, + "body": { + "#": 2061 + }, + "isInternal": false + }, + { + "x": 473.606, + "y": 329.424, + "index": 12, + "body": { + "#": 2061 + }, + "isInternal": false + }, + { + "x": 479.014, + "y": 331.664, + "index": 13, + "body": { + "#": 2061 + }, + "isInternal": false + }, + { + "x": 483.152, + "y": 335.802, + "index": 14, + "body": { + "#": 2061 + }, + "isInternal": false + }, + { + "x": 485.392, + "y": 341.21, + "index": 15, + "body": { + "#": 2061 + }, + "isInternal": false + }, + { + "x": 470.68, + "y": 344.136 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2087 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2089 + }, + "max": { + "#": 2090 + } + }, + { + "x": 455.968, + "y": 329.424 + }, + { + "x": 485.392, + "y": 358.848 + }, + { + "x": 470.68, + "y": 344.136 + }, + [ + { + "#": 2093 + }, + { + "#": 2094 + }, + { + "#": 2095 + }, + { + "#": 2096 + }, + { + "#": 2097 + }, + { + "#": 2098 + }, + { + "#": 2099 + }, + { + "#": 2100 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 119, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2102 + }, + "angle": 0, + "vertices": { + "#": 2103 + }, + "position": { + "#": 2120 + }, + "force": { + "#": 2121 + }, + "torque": 0, + "positionImpulse": { + "#": 2122 + }, + "constraintImpulse": { + "#": 2123 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2124 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2125 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2126 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2128 + }, + "positionPrev": { + "#": 2131 + }, + "anglePrev": 0, + "axes": { + "#": 2132 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2101 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2101 + } + ], + [ + { + "#": 2104 + }, + { + "#": 2105 + }, + { + "#": 2106 + }, + { + "#": 2107 + }, + { + "#": 2108 + }, + { + "#": 2109 + }, + { + "#": 2110 + }, + { + "#": 2111 + }, + { + "#": 2112 + }, + { + "#": 2113 + }, + { + "#": 2114 + }, + { + "#": 2115 + }, + { + "#": 2116 + }, + { + "#": 2117 + }, + { + "#": 2118 + }, + { + "#": 2119 + } + ], + { + "x": 279.424, + "y": 376.486, + "index": 0, + "body": { + "#": 2101 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 381.894, + "index": 1, + "body": { + "#": 2101 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 386.032, + "index": 2, + "body": { + "#": 2101 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 388.272, + "index": 3, + "body": { + "#": 2101 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 388.272, + "index": 4, + "body": { + "#": 2101 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 386.032, + "index": 5, + "body": { + "#": 2101 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 381.894, + "index": 6, + "body": { + "#": 2101 + }, + "isInternal": false + }, + { + "x": 250, + "y": 376.486, + "index": 7, + "body": { + "#": 2101 + }, + "isInternal": false + }, + { + "x": 250, + "y": 370.634, + "index": 8, + "body": { + "#": 2101 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 365.226, + "index": 9, + "body": { + "#": 2101 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 361.088, + "index": 10, + "body": { + "#": 2101 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 358.848, + "index": 11, + "body": { + "#": 2101 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 358.848, + "index": 12, + "body": { + "#": 2101 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 361.088, + "index": 13, + "body": { + "#": 2101 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 365.226, + "index": 14, + "body": { + "#": 2101 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 370.634, + "index": 15, + "body": { + "#": 2101 + }, + "isInternal": false + }, + { + "x": 264.712, + "y": 373.56 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2127 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2129 + }, + "max": { + "#": 2130 + } + }, + { + "x": 250, + "y": 358.848 + }, + { + "x": 279.424, + "y": 388.272 + }, + { + "x": 264.712, + "y": 373.56 + }, + [ + { + "#": 2133 + }, + { + "#": 2134 + }, + { + "#": 2135 + }, + { + "#": 2136 + }, + { + "#": 2137 + }, + { + "#": 2138 + }, + { + "#": 2139 + }, + { + "#": 2140 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 120, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2142 + }, + "angle": 0, + "vertices": { + "#": 2143 + }, + "position": { + "#": 2160 + }, + "force": { + "#": 2161 + }, + "torque": 0, + "positionImpulse": { + "#": 2162 + }, + "constraintImpulse": { + "#": 2163 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2164 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2165 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2166 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2168 + }, + "positionPrev": { + "#": 2171 + }, + "anglePrev": 0, + "axes": { + "#": 2172 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2141 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2141 + } + ], + [ + { + "#": 2144 + }, + { + "#": 2145 + }, + { + "#": 2146 + }, + { + "#": 2147 + }, + { + "#": 2148 + }, + { + "#": 2149 + }, + { + "#": 2150 + }, + { + "#": 2151 + }, + { + "#": 2152 + }, + { + "#": 2153 + }, + { + "#": 2154 + }, + { + "#": 2155 + }, + { + "#": 2156 + }, + { + "#": 2157 + }, + { + "#": 2158 + }, + { + "#": 2159 + } + ], + { + "x": 308.848, + "y": 376.486, + "index": 0, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 381.894, + "index": 1, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 386.032, + "index": 2, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 388.272, + "index": 3, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 388.272, + "index": 4, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 386.032, + "index": 5, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 381.894, + "index": 6, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 376.486, + "index": 7, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 370.634, + "index": 8, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 365.226, + "index": 9, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 361.088, + "index": 10, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 358.848, + "index": 11, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 358.848, + "index": 12, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 361.088, + "index": 13, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 365.226, + "index": 14, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 370.634, + "index": 15, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 294.136, + "y": 373.56 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2167 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2169 + }, + "max": { + "#": 2170 + } + }, + { + "x": 279.424, + "y": 358.848 + }, + { + "x": 308.848, + "y": 388.272 + }, + { + "x": 294.136, + "y": 373.56 + }, + [ + { + "#": 2173 + }, + { + "#": 2174 + }, + { + "#": 2175 + }, + { + "#": 2176 + }, + { + "#": 2177 + }, + { + "#": 2178 + }, + { + "#": 2179 + }, + { + "#": 2180 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 121, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2182 + }, + "angle": 0, + "vertices": { + "#": 2183 + }, + "position": { + "#": 2200 + }, + "force": { + "#": 2201 + }, + "torque": 0, + "positionImpulse": { + "#": 2202 + }, + "constraintImpulse": { + "#": 2203 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2204 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2205 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2206 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2208 + }, + "positionPrev": { + "#": 2211 + }, + "anglePrev": 0, + "axes": { + "#": 2212 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2181 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2181 + } + ], + [ + { + "#": 2184 + }, + { + "#": 2185 + }, + { + "#": 2186 + }, + { + "#": 2187 + }, + { + "#": 2188 + }, + { + "#": 2189 + }, + { + "#": 2190 + }, + { + "#": 2191 + }, + { + "#": 2192 + }, + { + "#": 2193 + }, + { + "#": 2194 + }, + { + "#": 2195 + }, + { + "#": 2196 + }, + { + "#": 2197 + }, + { + "#": 2198 + }, + { + "#": 2199 + } + ], + { + "x": 338.272, + "y": 376.486, + "index": 0, + "body": { + "#": 2181 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 381.894, + "index": 1, + "body": { + "#": 2181 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 386.032, + "index": 2, + "body": { + "#": 2181 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 388.272, + "index": 3, + "body": { + "#": 2181 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 388.272, + "index": 4, + "body": { + "#": 2181 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 386.032, + "index": 5, + "body": { + "#": 2181 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 381.894, + "index": 6, + "body": { + "#": 2181 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 376.486, + "index": 7, + "body": { + "#": 2181 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 370.634, + "index": 8, + "body": { + "#": 2181 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 365.226, + "index": 9, + "body": { + "#": 2181 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 361.088, + "index": 10, + "body": { + "#": 2181 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 358.848, + "index": 11, + "body": { + "#": 2181 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 358.848, + "index": 12, + "body": { + "#": 2181 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 361.088, + "index": 13, + "body": { + "#": 2181 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 365.226, + "index": 14, + "body": { + "#": 2181 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 370.634, + "index": 15, + "body": { + "#": 2181 + }, + "isInternal": false + }, + { + "x": 323.56, + "y": 373.56 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2207 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2209 + }, + "max": { + "#": 2210 + } + }, + { + "x": 308.848, + "y": 358.848 + }, + { + "x": 338.272, + "y": 388.272 + }, + { + "x": 323.56, + "y": 373.56 + }, + [ + { + "#": 2213 + }, + { + "#": 2214 + }, + { + "#": 2215 + }, + { + "#": 2216 + }, + { + "#": 2217 + }, + { + "#": 2218 + }, + { + "#": 2219 + }, + { + "#": 2220 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 122, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2222 + }, + "angle": 0, + "vertices": { + "#": 2223 + }, + "position": { + "#": 2240 + }, + "force": { + "#": 2241 + }, + "torque": 0, + "positionImpulse": { + "#": 2242 + }, + "constraintImpulse": { + "#": 2243 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2244 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2245 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2246 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2248 + }, + "positionPrev": { + "#": 2251 + }, + "anglePrev": 0, + "axes": { + "#": 2252 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2221 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2221 + } + ], + [ + { + "#": 2224 + }, + { + "#": 2225 + }, + { + "#": 2226 + }, + { + "#": 2227 + }, + { + "#": 2228 + }, + { + "#": 2229 + }, + { + "#": 2230 + }, + { + "#": 2231 + }, + { + "#": 2232 + }, + { + "#": 2233 + }, + { + "#": 2234 + }, + { + "#": 2235 + }, + { + "#": 2236 + }, + { + "#": 2237 + }, + { + "#": 2238 + }, + { + "#": 2239 + } + ], + { + "x": 367.696, + "y": 376.486, + "index": 0, + "body": { + "#": 2221 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 381.894, + "index": 1, + "body": { + "#": 2221 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 386.032, + "index": 2, + "body": { + "#": 2221 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 388.272, + "index": 3, + "body": { + "#": 2221 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 388.272, + "index": 4, + "body": { + "#": 2221 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 386.032, + "index": 5, + "body": { + "#": 2221 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 381.894, + "index": 6, + "body": { + "#": 2221 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 376.486, + "index": 7, + "body": { + "#": 2221 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 370.634, + "index": 8, + "body": { + "#": 2221 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 365.226, + "index": 9, + "body": { + "#": 2221 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 361.088, + "index": 10, + "body": { + "#": 2221 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 358.848, + "index": 11, + "body": { + "#": 2221 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 358.848, + "index": 12, + "body": { + "#": 2221 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 361.088, + "index": 13, + "body": { + "#": 2221 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 365.226, + "index": 14, + "body": { + "#": 2221 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 370.634, + "index": 15, + "body": { + "#": 2221 + }, + "isInternal": false + }, + { + "x": 352.984, + "y": 373.56 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2247 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2249 + }, + "max": { + "#": 2250 + } + }, + { + "x": 338.272, + "y": 358.848 + }, + { + "x": 367.696, + "y": 388.272 + }, + { + "x": 352.984, + "y": 373.56 + }, + [ + { + "#": 2253 + }, + { + "#": 2254 + }, + { + "#": 2255 + }, + { + "#": 2256 + }, + { + "#": 2257 + }, + { + "#": 2258 + }, + { + "#": 2259 + }, + { + "#": 2260 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 123, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2262 + }, + "angle": 0, + "vertices": { + "#": 2263 + }, + "position": { + "#": 2280 + }, + "force": { + "#": 2281 + }, + "torque": 0, + "positionImpulse": { + "#": 2282 + }, + "constraintImpulse": { + "#": 2283 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2284 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2285 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2286 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2288 + }, + "positionPrev": { + "#": 2291 + }, + "anglePrev": 0, + "axes": { + "#": 2292 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2261 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2261 + } + ], + [ + { + "#": 2264 + }, + { + "#": 2265 + }, + { + "#": 2266 + }, + { + "#": 2267 + }, + { + "#": 2268 + }, + { + "#": 2269 + }, + { + "#": 2270 + }, + { + "#": 2271 + }, + { + "#": 2272 + }, + { + "#": 2273 + }, + { + "#": 2274 + }, + { + "#": 2275 + }, + { + "#": 2276 + }, + { + "#": 2277 + }, + { + "#": 2278 + }, + { + "#": 2279 + } + ], + { + "x": 397.12, + "y": 376.486, + "index": 0, + "body": { + "#": 2261 + }, + "isInternal": false + }, + { + "x": 394.88, + "y": 381.894, + "index": 1, + "body": { + "#": 2261 + }, + "isInternal": false + }, + { + "x": 390.742, + "y": 386.032, + "index": 2, + "body": { + "#": 2261 + }, + "isInternal": false + }, + { + "x": 385.334, + "y": 388.272, + "index": 3, + "body": { + "#": 2261 + }, + "isInternal": false + }, + { + "x": 379.482, + "y": 388.272, + "index": 4, + "body": { + "#": 2261 + }, + "isInternal": false + }, + { + "x": 374.074, + "y": 386.032, + "index": 5, + "body": { + "#": 2261 + }, + "isInternal": false + }, + { + "x": 369.936, + "y": 381.894, + "index": 6, + "body": { + "#": 2261 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 376.486, + "index": 7, + "body": { + "#": 2261 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 370.634, + "index": 8, + "body": { + "#": 2261 + }, + "isInternal": false + }, + { + "x": 369.936, + "y": 365.226, + "index": 9, + "body": { + "#": 2261 + }, + "isInternal": false + }, + { + "x": 374.074, + "y": 361.088, + "index": 10, + "body": { + "#": 2261 + }, + "isInternal": false + }, + { + "x": 379.482, + "y": 358.848, + "index": 11, + "body": { + "#": 2261 + }, + "isInternal": false + }, + { + "x": 385.334, + "y": 358.848, + "index": 12, + "body": { + "#": 2261 + }, + "isInternal": false + }, + { + "x": 390.742, + "y": 361.088, + "index": 13, + "body": { + "#": 2261 + }, + "isInternal": false + }, + { + "x": 394.88, + "y": 365.226, + "index": 14, + "body": { + "#": 2261 + }, + "isInternal": false + }, + { + "x": 397.12, + "y": 370.634, + "index": 15, + "body": { + "#": 2261 + }, + "isInternal": false + }, + { + "x": 382.408, + "y": 373.56 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2287 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2289 + }, + "max": { + "#": 2290 + } + }, + { + "x": 367.696, + "y": 358.848 + }, + { + "x": 397.12, + "y": 388.272 + }, + { + "x": 382.408, + "y": 373.56 + }, + [ + { + "#": 2293 + }, + { + "#": 2294 + }, + { + "#": 2295 + }, + { + "#": 2296 + }, + { + "#": 2297 + }, + { + "#": 2298 + }, + { + "#": 2299 + }, + { + "#": 2300 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 124, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2302 + }, + "angle": 0, + "vertices": { + "#": 2303 + }, + "position": { + "#": 2320 + }, + "force": { + "#": 2321 + }, + "torque": 0, + "positionImpulse": { + "#": 2322 + }, + "constraintImpulse": { + "#": 2323 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2324 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2325 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2326 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2328 + }, + "positionPrev": { + "#": 2331 + }, + "anglePrev": 0, + "axes": { + "#": 2332 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2301 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2301 + } + ], + [ + { + "#": 2304 + }, + { + "#": 2305 + }, + { + "#": 2306 + }, + { + "#": 2307 + }, + { + "#": 2308 + }, + { + "#": 2309 + }, + { + "#": 2310 + }, + { + "#": 2311 + }, + { + "#": 2312 + }, + { + "#": 2313 + }, + { + "#": 2314 + }, + { + "#": 2315 + }, + { + "#": 2316 + }, + { + "#": 2317 + }, + { + "#": 2318 + }, + { + "#": 2319 + } + ], + { + "x": 426.544, + "y": 376.486, + "index": 0, + "body": { + "#": 2301 + }, + "isInternal": false + }, + { + "x": 424.304, + "y": 381.894, + "index": 1, + "body": { + "#": 2301 + }, + "isInternal": false + }, + { + "x": 420.166, + "y": 386.032, + "index": 2, + "body": { + "#": 2301 + }, + "isInternal": false + }, + { + "x": 414.758, + "y": 388.272, + "index": 3, + "body": { + "#": 2301 + }, + "isInternal": false + }, + { + "x": 408.906, + "y": 388.272, + "index": 4, + "body": { + "#": 2301 + }, + "isInternal": false + }, + { + "x": 403.498, + "y": 386.032, + "index": 5, + "body": { + "#": 2301 + }, + "isInternal": false + }, + { + "x": 399.36, + "y": 381.894, + "index": 6, + "body": { + "#": 2301 + }, + "isInternal": false + }, + { + "x": 397.12, + "y": 376.486, + "index": 7, + "body": { + "#": 2301 + }, + "isInternal": false + }, + { + "x": 397.12, + "y": 370.634, + "index": 8, + "body": { + "#": 2301 + }, + "isInternal": false + }, + { + "x": 399.36, + "y": 365.226, + "index": 9, + "body": { + "#": 2301 + }, + "isInternal": false + }, + { + "x": 403.498, + "y": 361.088, + "index": 10, + "body": { + "#": 2301 + }, + "isInternal": false + }, + { + "x": 408.906, + "y": 358.848, + "index": 11, + "body": { + "#": 2301 + }, + "isInternal": false + }, + { + "x": 414.758, + "y": 358.848, + "index": 12, + "body": { + "#": 2301 + }, + "isInternal": false + }, + { + "x": 420.166, + "y": 361.088, + "index": 13, + "body": { + "#": 2301 + }, + "isInternal": false + }, + { + "x": 424.304, + "y": 365.226, + "index": 14, + "body": { + "#": 2301 + }, + "isInternal": false + }, + { + "x": 426.544, + "y": 370.634, + "index": 15, + "body": { + "#": 2301 + }, + "isInternal": false + }, + { + "x": 411.832, + "y": 373.56 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2327 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2329 + }, + "max": { + "#": 2330 + } + }, + { + "x": 397.12, + "y": 358.848 + }, + { + "x": 426.544, + "y": 388.272 + }, + { + "x": 411.832, + "y": 373.56 + }, + [ + { + "#": 2333 + }, + { + "#": 2334 + }, + { + "#": 2335 + }, + { + "#": 2336 + }, + { + "#": 2337 + }, + { + "#": 2338 + }, + { + "#": 2339 + }, + { + "#": 2340 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 125, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2342 + }, + "angle": 0, + "vertices": { + "#": 2343 + }, + "position": { + "#": 2360 + }, + "force": { + "#": 2361 + }, + "torque": 0, + "positionImpulse": { + "#": 2362 + }, + "constraintImpulse": { + "#": 2363 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2364 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2365 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2366 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2368 + }, + "positionPrev": { + "#": 2371 + }, + "anglePrev": 0, + "axes": { + "#": 2372 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2341 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2341 + } + ], + [ + { + "#": 2344 + }, + { + "#": 2345 + }, + { + "#": 2346 + }, + { + "#": 2347 + }, + { + "#": 2348 + }, + { + "#": 2349 + }, + { + "#": 2350 + }, + { + "#": 2351 + }, + { + "#": 2352 + }, + { + "#": 2353 + }, + { + "#": 2354 + }, + { + "#": 2355 + }, + { + "#": 2356 + }, + { + "#": 2357 + }, + { + "#": 2358 + }, + { + "#": 2359 + } + ], + { + "x": 455.968, + "y": 376.486, + "index": 0, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 453.728, + "y": 381.894, + "index": 1, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 449.59, + "y": 386.032, + "index": 2, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 444.182, + "y": 388.272, + "index": 3, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 438.33, + "y": 388.272, + "index": 4, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 432.922, + "y": 386.032, + "index": 5, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 428.784, + "y": 381.894, + "index": 6, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 426.544, + "y": 376.486, + "index": 7, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 426.544, + "y": 370.634, + "index": 8, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 428.784, + "y": 365.226, + "index": 9, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 432.922, + "y": 361.088, + "index": 10, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 438.33, + "y": 358.848, + "index": 11, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 444.182, + "y": 358.848, + "index": 12, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 449.59, + "y": 361.088, + "index": 13, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 453.728, + "y": 365.226, + "index": 14, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 455.968, + "y": 370.634, + "index": 15, + "body": { + "#": 2341 + }, + "isInternal": false + }, + { + "x": 441.256, + "y": 373.56 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2367 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2369 + }, + "max": { + "#": 2370 + } + }, + { + "x": 426.544, + "y": 358.848 + }, + { + "x": 455.968, + "y": 388.272 + }, + { + "x": 441.256, + "y": 373.56 + }, + [ + { + "#": 2373 + }, + { + "#": 2374 + }, + { + "#": 2375 + }, + { + "#": 2376 + }, + { + "#": 2377 + }, + { + "#": 2378 + }, + { + "#": 2379 + }, + { + "#": 2380 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 126, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2382 + }, + "angle": 0, + "vertices": { + "#": 2383 + }, + "position": { + "#": 2400 + }, + "force": { + "#": 2401 + }, + "torque": 0, + "positionImpulse": { + "#": 2402 + }, + "constraintImpulse": { + "#": 2403 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2404 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2405 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2406 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2408 + }, + "positionPrev": { + "#": 2411 + }, + "anglePrev": 0, + "axes": { + "#": 2412 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2381 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2381 + } + ], + [ + { + "#": 2384 + }, + { + "#": 2385 + }, + { + "#": 2386 + }, + { + "#": 2387 + }, + { + "#": 2388 + }, + { + "#": 2389 + }, + { + "#": 2390 + }, + { + "#": 2391 + }, + { + "#": 2392 + }, + { + "#": 2393 + }, + { + "#": 2394 + }, + { + "#": 2395 + }, + { + "#": 2396 + }, + { + "#": 2397 + }, + { + "#": 2398 + }, + { + "#": 2399 + } + ], + { + "x": 485.392, + "y": 376.486, + "index": 0, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 483.152, + "y": 381.894, + "index": 1, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 479.014, + "y": 386.032, + "index": 2, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 473.606, + "y": 388.272, + "index": 3, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 467.754, + "y": 388.272, + "index": 4, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 462.346, + "y": 386.032, + "index": 5, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 458.208, + "y": 381.894, + "index": 6, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 455.968, + "y": 376.486, + "index": 7, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 455.968, + "y": 370.634, + "index": 8, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 458.208, + "y": 365.226, + "index": 9, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 462.346, + "y": 361.088, + "index": 10, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 467.754, + "y": 358.848, + "index": 11, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 473.606, + "y": 358.848, + "index": 12, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 479.014, + "y": 361.088, + "index": 13, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 483.152, + "y": 365.226, + "index": 14, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 485.392, + "y": 370.634, + "index": 15, + "body": { + "#": 2381 + }, + "isInternal": false + }, + { + "x": 470.68, + "y": 373.56 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2407 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2409 + }, + "max": { + "#": 2410 + } + }, + { + "x": 455.968, + "y": 358.848 + }, + { + "x": 485.392, + "y": 388.272 + }, + { + "x": 470.68, + "y": 373.56 + }, + [ + { + "#": 2413 + }, + { + "#": 2414 + }, + { + "#": 2415 + }, + { + "#": 2416 + }, + { + "#": 2417 + }, + { + "#": 2418 + }, + { + "#": 2419 + }, + { + "#": 2420 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + [ + { + "#": 2422 + }, + { + "#": 2426 + }, + { + "#": 2430 + }, + { + "#": 2434 + }, + { + "#": 2438 + }, + { + "#": 2442 + }, + { + "#": 2446 + }, + { + "#": 2450 + }, + { + "#": 2454 + }, + { + "#": 2458 + }, + { + "#": 2462 + }, + { + "#": 2466 + }, + { + "#": 2470 + }, + { + "#": 2474 + }, + { + "#": 2478 + }, + { + "#": 2482 + }, + { + "#": 2486 + }, + { + "#": 2490 + }, + { + "#": 2494 + }, + { + "#": 2498 + }, + { + "#": 2502 + }, + { + "#": 2506 + }, + { + "#": 2510 + }, + { + "#": 2514 + }, + { + "#": 2518 + }, + { + "#": 2522 + }, + { + "#": 2526 + }, + { + "#": 2530 + }, + { + "#": 2534 + }, + { + "#": 2538 + }, + { + "#": 2542 + }, + { + "#": 2546 + }, + { + "#": 2550 + }, + { + "#": 2554 + }, + { + "#": 2558 + }, + { + "#": 2562 + }, + { + "#": 2566 + }, + { + "#": 2570 + }, + { + "#": 2574 + }, + { + "#": 2578 + }, + { + "#": 2582 + }, + { + "#": 2586 + }, + { + "#": 2590 + }, + { + "#": 2594 + }, + { + "#": 2598 + }, + { + "#": 2602 + }, + { + "#": 2606 + }, + { + "#": 2610 + }, + { + "#": 2614 + }, + { + "#": 2618 + }, + { + "#": 2622 + }, + { + "#": 2626 + }, + { + "#": 2630 + }, + { + "#": 2634 + }, + { + "#": 2638 + }, + { + "#": 2642 + }, + { + "#": 2646 + }, + { + "#": 2650 + }, + { + "#": 2654 + }, + { + "#": 2658 + }, + { + "#": 2662 + }, + { + "#": 2666 + }, + { + "#": 2670 + }, + { + "#": 2674 + }, + { + "#": 2678 + } + ], + { + "bodyA": { + "#": 1461 + }, + "bodyB": { + "#": 1501 + }, + "stiffness": 0.4, + "pointA": { + "#": 2423 + }, + "pointB": { + "#": 2424 + }, + "length": 29.424, + "render": { + "#": 2425 + }, + "id": 127, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1501 + }, + "bodyB": { + "#": 1541 + }, + "stiffness": 0.4, + "pointA": { + "#": 2427 + }, + "pointB": { + "#": 2428 + }, + "length": 29.424, + "render": { + "#": 2429 + }, + "id": 128, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1541 + }, + "bodyB": { + "#": 1581 + }, + "stiffness": 0.4, + "pointA": { + "#": 2431 + }, + "pointB": { + "#": 2432 + }, + "length": 29.424, + "render": { + "#": 2433 + }, + "id": 129, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1581 + }, + "bodyB": { + "#": 1621 + }, + "stiffness": 0.4, + "pointA": { + "#": 2435 + }, + "pointB": { + "#": 2436 + }, + "length": 29.424, + "render": { + "#": 2437 + }, + "id": 130, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1621 + }, + "bodyB": { + "#": 1661 + }, + "stiffness": 0.4, + "pointA": { + "#": 2439 + }, + "pointB": { + "#": 2440 + }, + "length": 29.424, + "render": { + "#": 2441 + }, + "id": 131, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1661 + }, + "bodyB": { + "#": 1701 + }, + "stiffness": 0.4, + "pointA": { + "#": 2443 + }, + "pointB": { + "#": 2444 + }, + "length": 29.424, + "render": { + "#": 2445 + }, + "id": 132, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1701 + }, + "bodyB": { + "#": 1741 + }, + "stiffness": 0.4, + "pointA": { + "#": 2447 + }, + "pointB": { + "#": 2448 + }, + "length": 29.424, + "render": { + "#": 2449 + }, + "id": 133, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1781 + }, + "bodyB": { + "#": 1821 + }, + "stiffness": 0.4, + "pointA": { + "#": 2451 + }, + "pointB": { + "#": 2452 + }, + "length": 29.424, + "render": { + "#": 2453 + }, + "id": 134, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1821 + }, + "bodyB": { + "#": 1861 + }, + "stiffness": 0.4, + "pointA": { + "#": 2455 + }, + "pointB": { + "#": 2456 + }, + "length": 29.424, + "render": { + "#": 2457 + }, + "id": 135, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1861 + }, + "bodyB": { + "#": 1901 + }, + "stiffness": 0.4, + "pointA": { + "#": 2459 + }, + "pointB": { + "#": 2460 + }, + "length": 29.424, + "render": { + "#": 2461 + }, + "id": 136, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1901 + }, + "bodyB": { + "#": 1941 + }, + "stiffness": 0.4, + "pointA": { + "#": 2463 + }, + "pointB": { + "#": 2464 + }, + "length": 29.424, + "render": { + "#": 2465 + }, + "id": 137, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1941 + }, + "bodyB": { + "#": 1981 + }, + "stiffness": 0.4, + "pointA": { + "#": 2467 + }, + "pointB": { + "#": 2468 + }, + "length": 29.424, + "render": { + "#": 2469 + }, + "id": 138, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1981 + }, + "bodyB": { + "#": 2021 + }, + "stiffness": 0.4, + "pointA": { + "#": 2471 + }, + "pointB": { + "#": 2472 + }, + "length": 29.424, + "render": { + "#": 2473 + }, + "id": 139, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2021 + }, + "bodyB": { + "#": 2061 + }, + "stiffness": 0.4, + "pointA": { + "#": 2475 + }, + "pointB": { + "#": 2476 + }, + "length": 29.424, + "render": { + "#": 2477 + }, + "id": 140, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1461 + }, + "bodyB": { + "#": 1781 + }, + "stiffness": 0.4, + "pointA": { + "#": 2479 + }, + "pointB": { + "#": 2480 + }, + "length": 29.424, + "render": { + "#": 2481 + }, + "id": 141, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1501 + }, + "bodyB": { + "#": 1781 + }, + "stiffness": 0.4, + "pointA": { + "#": 2483 + }, + "pointB": { + "#": 2484 + }, + "length": 41.61182, + "render": { + "#": 2485 + }, + "id": 142, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1501 + }, + "bodyB": { + "#": 1821 + }, + "stiffness": 0.4, + "pointA": { + "#": 2487 + }, + "pointB": { + "#": 2488 + }, + "length": 29.424, + "render": { + "#": 2489 + }, + "id": 143, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1461 + }, + "bodyB": { + "#": 1821 + }, + "stiffness": 0.4, + "pointA": { + "#": 2491 + }, + "pointB": { + "#": 2492 + }, + "length": 41.61182, + "render": { + "#": 2493 + }, + "id": 144, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1541 + }, + "bodyB": { + "#": 1821 + }, + "stiffness": 0.4, + "pointA": { + "#": 2495 + }, + "pointB": { + "#": 2496 + }, + "length": 41.61182, + "render": { + "#": 2497 + }, + "id": 145, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1541 + }, + "bodyB": { + "#": 1861 + }, + "stiffness": 0.4, + "pointA": { + "#": 2499 + }, + "pointB": { + "#": 2500 + }, + "length": 29.424, + "render": { + "#": 2501 + }, + "id": 146, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1501 + }, + "bodyB": { + "#": 1861 + }, + "stiffness": 0.4, + "pointA": { + "#": 2503 + }, + "pointB": { + "#": 2504 + }, + "length": 41.61182, + "render": { + "#": 2505 + }, + "id": 147, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1581 + }, + "bodyB": { + "#": 1861 + }, + "stiffness": 0.4, + "pointA": { + "#": 2507 + }, + "pointB": { + "#": 2508 + }, + "length": 41.61182, + "render": { + "#": 2509 + }, + "id": 148, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1581 + }, + "bodyB": { + "#": 1901 + }, + "stiffness": 0.4, + "pointA": { + "#": 2511 + }, + "pointB": { + "#": 2512 + }, + "length": 29.424, + "render": { + "#": 2513 + }, + "id": 149, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1541 + }, + "bodyB": { + "#": 1901 + }, + "stiffness": 0.4, + "pointA": { + "#": 2515 + }, + "pointB": { + "#": 2516 + }, + "length": 41.61182, + "render": { + "#": 2517 + }, + "id": 150, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1621 + }, + "bodyB": { + "#": 1901 + }, + "stiffness": 0.4, + "pointA": { + "#": 2519 + }, + "pointB": { + "#": 2520 + }, + "length": 41.61182, + "render": { + "#": 2521 + }, + "id": 151, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1621 + }, + "bodyB": { + "#": 1941 + }, + "stiffness": 0.4, + "pointA": { + "#": 2523 + }, + "pointB": { + "#": 2524 + }, + "length": 29.424, + "render": { + "#": 2525 + }, + "id": 152, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1581 + }, + "bodyB": { + "#": 1941 + }, + "stiffness": 0.4, + "pointA": { + "#": 2527 + }, + "pointB": { + "#": 2528 + }, + "length": 41.61182, + "render": { + "#": 2529 + }, + "id": 153, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1661 + }, + "bodyB": { + "#": 1941 + }, + "stiffness": 0.4, + "pointA": { + "#": 2531 + }, + "pointB": { + "#": 2532 + }, + "length": 41.61182, + "render": { + "#": 2533 + }, + "id": 154, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1661 + }, + "bodyB": { + "#": 1981 + }, + "stiffness": 0.4, + "pointA": { + "#": 2535 + }, + "pointB": { + "#": 2536 + }, + "length": 29.424, + "render": { + "#": 2537 + }, + "id": 155, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1621 + }, + "bodyB": { + "#": 1981 + }, + "stiffness": 0.4, + "pointA": { + "#": 2539 + }, + "pointB": { + "#": 2540 + }, + "length": 41.61182, + "render": { + "#": 2541 + }, + "id": 156, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1701 + }, + "bodyB": { + "#": 1981 + }, + "stiffness": 0.4, + "pointA": { + "#": 2543 + }, + "pointB": { + "#": 2544 + }, + "length": 41.61182, + "render": { + "#": 2545 + }, + "id": 157, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1701 + }, + "bodyB": { + "#": 2021 + }, + "stiffness": 0.4, + "pointA": { + "#": 2547 + }, + "pointB": { + "#": 2548 + }, + "length": 29.424, + "render": { + "#": 2549 + }, + "id": 158, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1661 + }, + "bodyB": { + "#": 2021 + }, + "stiffness": 0.4, + "pointA": { + "#": 2551 + }, + "pointB": { + "#": 2552 + }, + "length": 41.61182, + "render": { + "#": 2553 + }, + "id": 159, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1741 + }, + "bodyB": { + "#": 2021 + }, + "stiffness": 0.4, + "pointA": { + "#": 2555 + }, + "pointB": { + "#": 2556 + }, + "length": 41.61182, + "render": { + "#": 2557 + }, + "id": 160, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1741 + }, + "bodyB": { + "#": 2061 + }, + "stiffness": 0.4, + "pointA": { + "#": 2559 + }, + "pointB": { + "#": 2560 + }, + "length": 29.424, + "render": { + "#": 2561 + }, + "id": 161, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1701 + }, + "bodyB": { + "#": 2061 + }, + "stiffness": 0.4, + "pointA": { + "#": 2563 + }, + "pointB": { + "#": 2564 + }, + "length": 41.61182, + "render": { + "#": 2565 + }, + "id": 162, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2101 + }, + "bodyB": { + "#": 2141 + }, + "stiffness": 0.4, + "pointA": { + "#": 2567 + }, + "pointB": { + "#": 2568 + }, + "length": 29.424, + "render": { + "#": 2569 + }, + "id": 163, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2141 + }, + "bodyB": { + "#": 2181 + }, + "stiffness": 0.4, + "pointA": { + "#": 2571 + }, + "pointB": { + "#": 2572 + }, + "length": 29.424, + "render": { + "#": 2573 + }, + "id": 164, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2181 + }, + "bodyB": { + "#": 2221 + }, + "stiffness": 0.4, + "pointA": { + "#": 2575 + }, + "pointB": { + "#": 2576 + }, + "length": 29.424, + "render": { + "#": 2577 + }, + "id": 165, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2221 + }, + "bodyB": { + "#": 2261 + }, + "stiffness": 0.4, + "pointA": { + "#": 2579 + }, + "pointB": { + "#": 2580 + }, + "length": 29.424, + "render": { + "#": 2581 + }, + "id": 166, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2261 + }, + "bodyB": { + "#": 2301 + }, + "stiffness": 0.4, + "pointA": { + "#": 2583 + }, + "pointB": { + "#": 2584 + }, + "length": 29.424, + "render": { + "#": 2585 + }, + "id": 167, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2301 + }, + "bodyB": { + "#": 2341 + }, + "stiffness": 0.4, + "pointA": { + "#": 2587 + }, + "pointB": { + "#": 2588 + }, + "length": 29.424, + "render": { + "#": 2589 + }, + "id": 168, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2341 + }, + "bodyB": { + "#": 2381 + }, + "stiffness": 0.4, + "pointA": { + "#": 2591 + }, + "pointB": { + "#": 2592 + }, + "length": 29.424, + "render": { + "#": 2593 + }, + "id": 169, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1781 + }, + "bodyB": { + "#": 2101 + }, + "stiffness": 0.4, + "pointA": { + "#": 2595 + }, + "pointB": { + "#": 2596 + }, + "length": 29.424, + "render": { + "#": 2597 + }, + "id": 170, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1821 + }, + "bodyB": { + "#": 2101 + }, + "stiffness": 0.4, + "pointA": { + "#": 2599 + }, + "pointB": { + "#": 2600 + }, + "length": 41.61182, + "render": { + "#": 2601 + }, + "id": 171, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1821 + }, + "bodyB": { + "#": 2141 + }, + "stiffness": 0.4, + "pointA": { + "#": 2603 + }, + "pointB": { + "#": 2604 + }, + "length": 29.424, + "render": { + "#": 2605 + }, + "id": 172, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1781 + }, + "bodyB": { + "#": 2141 + }, + "stiffness": 0.4, + "pointA": { + "#": 2607 + }, + "pointB": { + "#": 2608 + }, + "length": 41.61182, + "render": { + "#": 2609 + }, + "id": 173, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1861 + }, + "bodyB": { + "#": 2141 + }, + "stiffness": 0.4, + "pointA": { + "#": 2611 + }, + "pointB": { + "#": 2612 + }, + "length": 41.61182, + "render": { + "#": 2613 + }, + "id": 174, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1861 + }, + "bodyB": { + "#": 2181 + }, + "stiffness": 0.4, + "pointA": { + "#": 2615 + }, + "pointB": { + "#": 2616 + }, + "length": 29.424, + "render": { + "#": 2617 + }, + "id": 175, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1821 + }, + "bodyB": { + "#": 2181 + }, + "stiffness": 0.4, + "pointA": { + "#": 2619 + }, + "pointB": { + "#": 2620 + }, + "length": 41.61182, + "render": { + "#": 2621 + }, + "id": 176, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1901 + }, + "bodyB": { + "#": 2181 + }, + "stiffness": 0.4, + "pointA": { + "#": 2623 + }, + "pointB": { + "#": 2624 + }, + "length": 41.61182, + "render": { + "#": 2625 + }, + "id": 177, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1901 + }, + "bodyB": { + "#": 2221 + }, + "stiffness": 0.4, + "pointA": { + "#": 2627 + }, + "pointB": { + "#": 2628 + }, + "length": 29.424, + "render": { + "#": 2629 + }, + "id": 178, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1861 + }, + "bodyB": { + "#": 2221 + }, + "stiffness": 0.4, + "pointA": { + "#": 2631 + }, + "pointB": { + "#": 2632 + }, + "length": 41.61182, + "render": { + "#": 2633 + }, + "id": 179, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1941 + }, + "bodyB": { + "#": 2221 + }, + "stiffness": 0.4, + "pointA": { + "#": 2635 + }, + "pointB": { + "#": 2636 + }, + "length": 41.61182, + "render": { + "#": 2637 + }, + "id": 180, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1941 + }, + "bodyB": { + "#": 2261 + }, + "stiffness": 0.4, + "pointA": { + "#": 2639 + }, + "pointB": { + "#": 2640 + }, + "length": 29.424, + "render": { + "#": 2641 + }, + "id": 181, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1901 + }, + "bodyB": { + "#": 2261 + }, + "stiffness": 0.4, + "pointA": { + "#": 2643 + }, + "pointB": { + "#": 2644 + }, + "length": 41.61182, + "render": { + "#": 2645 + }, + "id": 182, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1981 + }, + "bodyB": { + "#": 2261 + }, + "stiffness": 0.4, + "pointA": { + "#": 2647 + }, + "pointB": { + "#": 2648 + }, + "length": 41.61182, + "render": { + "#": 2649 + }, + "id": 183, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1981 + }, + "bodyB": { + "#": 2301 + }, + "stiffness": 0.4, + "pointA": { + "#": 2651 + }, + "pointB": { + "#": 2652 + }, + "length": 29.424, + "render": { + "#": 2653 + }, + "id": 184, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1941 + }, + "bodyB": { + "#": 2301 + }, + "stiffness": 0.4, + "pointA": { + "#": 2655 + }, + "pointB": { + "#": 2656 + }, + "length": 41.61182, + "render": { + "#": 2657 + }, + "id": 185, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2021 + }, + "bodyB": { + "#": 2301 + }, + "stiffness": 0.4, + "pointA": { + "#": 2659 + }, + "pointB": { + "#": 2660 + }, + "length": 41.61182, + "render": { + "#": 2661 + }, + "id": 186, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2021 + }, + "bodyB": { + "#": 2341 + }, + "stiffness": 0.4, + "pointA": { + "#": 2663 + }, + "pointB": { + "#": 2664 + }, + "length": 29.424, + "render": { + "#": 2665 + }, + "id": 187, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1981 + }, + "bodyB": { + "#": 2341 + }, + "stiffness": 0.4, + "pointA": { + "#": 2667 + }, + "pointB": { + "#": 2668 + }, + "length": 41.61182, + "render": { + "#": 2669 + }, + "id": 188, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2061 + }, + "bodyB": { + "#": 2341 + }, + "stiffness": 0.4, + "pointA": { + "#": 2671 + }, + "pointB": { + "#": 2672 + }, + "length": 41.61182, + "render": { + "#": 2673 + }, + "id": 189, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2061 + }, + "bodyB": { + "#": 2381 + }, + "stiffness": 0.4, + "pointA": { + "#": 2675 + }, + "pointB": { + "#": 2676 + }, + "length": 29.424, + "render": { + "#": 2677 + }, + "id": 190, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2021 + }, + "bodyB": { + "#": 2381 + }, + "stiffness": 0.4, + "pointA": { + "#": 2679 + }, + "pointB": { + "#": 2680 + }, + "length": 41.61182, + "render": { + "#": 2681 + }, + "id": 191, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "id": 192, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 2684 + }, + "constraints": { + "#": 3325 + }, + "composites": { + "#": 3494 + }, + "label": "Soft Body" + }, + [ + { + "#": 2685 + }, + { + "#": 2725 + }, + { + "#": 2765 + }, + { + "#": 2805 + }, + { + "#": 2845 + }, + { + "#": 2885 + }, + { + "#": 2925 + }, + { + "#": 2965 + }, + { + "#": 3005 + }, + { + "#": 3045 + }, + { + "#": 3085 + }, + { + "#": 3125 + }, + { + "#": 3165 + }, + { + "#": 3205 + }, + { + "#": 3245 + }, + { + "#": 3285 + } + ], + { + "id": 193, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2686 + }, + "angle": 0, + "vertices": { + "#": 2687 + }, + "position": { + "#": 2704 + }, + "force": { + "#": 2705 + }, + "torque": 0, + "positionImpulse": { + "#": 2706 + }, + "constraintImpulse": { + "#": 2707 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2708 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2709 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2710 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2712 + }, + "positionPrev": { + "#": 2715 + }, + "anglePrev": 0, + "axes": { + "#": 2716 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2685 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2685 + } + ], + [ + { + "#": 2688 + }, + { + "#": 2689 + }, + { + "#": 2690 + }, + { + "#": 2691 + }, + { + "#": 2692 + }, + { + "#": 2693 + }, + { + "#": 2694 + }, + { + "#": 2695 + }, + { + "#": 2696 + }, + { + "#": 2697 + }, + { + "#": 2698 + }, + { + "#": 2699 + }, + { + "#": 2700 + }, + { + "#": 2701 + }, + { + "#": 2702 + }, + { + "#": 2703 + } + ], + { + "x": 279.424, + "y": 417.638, + "index": 0, + "body": { + "#": 2685 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 423.046, + "index": 1, + "body": { + "#": 2685 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 427.184, + "index": 2, + "body": { + "#": 2685 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 429.424, + "index": 3, + "body": { + "#": 2685 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 429.424, + "index": 4, + "body": { + "#": 2685 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 427.184, + "index": 5, + "body": { + "#": 2685 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 423.046, + "index": 6, + "body": { + "#": 2685 + }, + "isInternal": false + }, + { + "x": 250, + "y": 417.638, + "index": 7, + "body": { + "#": 2685 + }, + "isInternal": false + }, + { + "x": 250, + "y": 411.786, + "index": 8, + "body": { + "#": 2685 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 406.378, + "index": 9, + "body": { + "#": 2685 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 402.24, + "index": 10, + "body": { + "#": 2685 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 400, + "index": 11, + "body": { + "#": 2685 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 400, + "index": 12, + "body": { + "#": 2685 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 402.24, + "index": 13, + "body": { + "#": 2685 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 406.378, + "index": 14, + "body": { + "#": 2685 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 411.786, + "index": 15, + "body": { + "#": 2685 + }, + "isInternal": false + }, + { + "x": 264.712, + "y": 414.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2711 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2713 + }, + "max": { + "#": 2714 + } + }, + { + "x": 250, + "y": 400 + }, + { + "x": 279.424, + "y": 429.424 + }, + { + "x": 264.712, + "y": 414.712 + }, + [ + { + "#": 2717 + }, + { + "#": 2718 + }, + { + "#": 2719 + }, + { + "#": 2720 + }, + { + "#": 2721 + }, + { + "#": 2722 + }, + { + "#": 2723 + }, + { + "#": 2724 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 194, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2726 + }, + "angle": 0, + "vertices": { + "#": 2727 + }, + "position": { + "#": 2744 + }, + "force": { + "#": 2745 + }, + "torque": 0, + "positionImpulse": { + "#": 2746 + }, + "constraintImpulse": { + "#": 2747 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2748 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2749 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2750 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2752 + }, + "positionPrev": { + "#": 2755 + }, + "anglePrev": 0, + "axes": { + "#": 2756 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2725 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2725 + } + ], + [ + { + "#": 2728 + }, + { + "#": 2729 + }, + { + "#": 2730 + }, + { + "#": 2731 + }, + { + "#": 2732 + }, + { + "#": 2733 + }, + { + "#": 2734 + }, + { + "#": 2735 + }, + { + "#": 2736 + }, + { + "#": 2737 + }, + { + "#": 2738 + }, + { + "#": 2739 + }, + { + "#": 2740 + }, + { + "#": 2741 + }, + { + "#": 2742 + }, + { + "#": 2743 + } + ], + { + "x": 308.848, + "y": 417.638, + "index": 0, + "body": { + "#": 2725 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 423.046, + "index": 1, + "body": { + "#": 2725 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 427.184, + "index": 2, + "body": { + "#": 2725 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 429.424, + "index": 3, + "body": { + "#": 2725 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 429.424, + "index": 4, + "body": { + "#": 2725 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 427.184, + "index": 5, + "body": { + "#": 2725 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 423.046, + "index": 6, + "body": { + "#": 2725 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 417.638, + "index": 7, + "body": { + "#": 2725 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 411.786, + "index": 8, + "body": { + "#": 2725 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 406.378, + "index": 9, + "body": { + "#": 2725 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 402.24, + "index": 10, + "body": { + "#": 2725 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 400, + "index": 11, + "body": { + "#": 2725 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 400, + "index": 12, + "body": { + "#": 2725 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 402.24, + "index": 13, + "body": { + "#": 2725 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 406.378, + "index": 14, + "body": { + "#": 2725 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 411.786, + "index": 15, + "body": { + "#": 2725 + }, + "isInternal": false + }, + { + "x": 294.136, + "y": 414.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2751 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2753 + }, + "max": { + "#": 2754 + } + }, + { + "x": 279.424, + "y": 400 + }, + { + "x": 308.848, + "y": 429.424 + }, + { + "x": 294.136, + "y": 414.712 + }, + [ + { + "#": 2757 + }, + { + "#": 2758 + }, + { + "#": 2759 + }, + { + "#": 2760 + }, + { + "#": 2761 + }, + { + "#": 2762 + }, + { + "#": 2763 + }, + { + "#": 2764 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 195, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2766 + }, + "angle": 0, + "vertices": { + "#": 2767 + }, + "position": { + "#": 2784 + }, + "force": { + "#": 2785 + }, + "torque": 0, + "positionImpulse": { + "#": 2786 + }, + "constraintImpulse": { + "#": 2787 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2788 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2789 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2790 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2792 + }, + "positionPrev": { + "#": 2795 + }, + "anglePrev": 0, + "axes": { + "#": 2796 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2765 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2765 + } + ], + [ + { + "#": 2768 + }, + { + "#": 2769 + }, + { + "#": 2770 + }, + { + "#": 2771 + }, + { + "#": 2772 + }, + { + "#": 2773 + }, + { + "#": 2774 + }, + { + "#": 2775 + }, + { + "#": 2776 + }, + { + "#": 2777 + }, + { + "#": 2778 + }, + { + "#": 2779 + }, + { + "#": 2780 + }, + { + "#": 2781 + }, + { + "#": 2782 + }, + { + "#": 2783 + } + ], + { + "x": 338.272, + "y": 417.638, + "index": 0, + "body": { + "#": 2765 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 423.046, + "index": 1, + "body": { + "#": 2765 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 427.184, + "index": 2, + "body": { + "#": 2765 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 429.424, + "index": 3, + "body": { + "#": 2765 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 429.424, + "index": 4, + "body": { + "#": 2765 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 427.184, + "index": 5, + "body": { + "#": 2765 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 423.046, + "index": 6, + "body": { + "#": 2765 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 417.638, + "index": 7, + "body": { + "#": 2765 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 411.786, + "index": 8, + "body": { + "#": 2765 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 406.378, + "index": 9, + "body": { + "#": 2765 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 402.24, + "index": 10, + "body": { + "#": 2765 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 400, + "index": 11, + "body": { + "#": 2765 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 400, + "index": 12, + "body": { + "#": 2765 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 402.24, + "index": 13, + "body": { + "#": 2765 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 406.378, + "index": 14, + "body": { + "#": 2765 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 411.786, + "index": 15, + "body": { + "#": 2765 + }, + "isInternal": false + }, + { + "x": 323.56, + "y": 414.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2791 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2793 + }, + "max": { + "#": 2794 + } + }, + { + "x": 308.848, + "y": 400 + }, + { + "x": 338.272, + "y": 429.424 + }, + { + "x": 323.56, + "y": 414.712 + }, + [ + { + "#": 2797 + }, + { + "#": 2798 + }, + { + "#": 2799 + }, + { + "#": 2800 + }, + { + "#": 2801 + }, + { + "#": 2802 + }, + { + "#": 2803 + }, + { + "#": 2804 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 196, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2806 + }, + "angle": 0, + "vertices": { + "#": 2807 + }, + "position": { + "#": 2824 + }, + "force": { + "#": 2825 + }, + "torque": 0, + "positionImpulse": { + "#": 2826 + }, + "constraintImpulse": { + "#": 2827 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2828 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2829 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2830 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2832 + }, + "positionPrev": { + "#": 2835 + }, + "anglePrev": 0, + "axes": { + "#": 2836 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2805 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2805 + } + ], + [ + { + "#": 2808 + }, + { + "#": 2809 + }, + { + "#": 2810 + }, + { + "#": 2811 + }, + { + "#": 2812 + }, + { + "#": 2813 + }, + { + "#": 2814 + }, + { + "#": 2815 + }, + { + "#": 2816 + }, + { + "#": 2817 + }, + { + "#": 2818 + }, + { + "#": 2819 + }, + { + "#": 2820 + }, + { + "#": 2821 + }, + { + "#": 2822 + }, + { + "#": 2823 + } + ], + { + "x": 367.696, + "y": 417.638, + "index": 0, + "body": { + "#": 2805 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 423.046, + "index": 1, + "body": { + "#": 2805 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 427.184, + "index": 2, + "body": { + "#": 2805 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 429.424, + "index": 3, + "body": { + "#": 2805 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 429.424, + "index": 4, + "body": { + "#": 2805 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 427.184, + "index": 5, + "body": { + "#": 2805 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 423.046, + "index": 6, + "body": { + "#": 2805 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 417.638, + "index": 7, + "body": { + "#": 2805 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 411.786, + "index": 8, + "body": { + "#": 2805 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 406.378, + "index": 9, + "body": { + "#": 2805 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 402.24, + "index": 10, + "body": { + "#": 2805 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 400, + "index": 11, + "body": { + "#": 2805 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 400, + "index": 12, + "body": { + "#": 2805 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 402.24, + "index": 13, + "body": { + "#": 2805 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 406.378, + "index": 14, + "body": { + "#": 2805 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 411.786, + "index": 15, + "body": { + "#": 2805 + }, + "isInternal": false + }, + { + "x": 352.984, + "y": 414.712 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2831 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2833 + }, + "max": { + "#": 2834 + } + }, + { + "x": 338.272, + "y": 400 + }, + { + "x": 367.696, + "y": 429.424 + }, + { + "x": 352.984, + "y": 414.712 + }, + [ + { + "#": 2837 + }, + { + "#": 2838 + }, + { + "#": 2839 + }, + { + "#": 2840 + }, + { + "#": 2841 + }, + { + "#": 2842 + }, + { + "#": 2843 + }, + { + "#": 2844 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 197, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2846 + }, + "angle": 0, + "vertices": { + "#": 2847 + }, + "position": { + "#": 2864 + }, + "force": { + "#": 2865 + }, + "torque": 0, + "positionImpulse": { + "#": 2866 + }, + "constraintImpulse": { + "#": 2867 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2868 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2869 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2870 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2872 + }, + "positionPrev": { + "#": 2875 + }, + "anglePrev": 0, + "axes": { + "#": 2876 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2845 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2845 + } + ], + [ + { + "#": 2848 + }, + { + "#": 2849 + }, + { + "#": 2850 + }, + { + "#": 2851 + }, + { + "#": 2852 + }, + { + "#": 2853 + }, + { + "#": 2854 + }, + { + "#": 2855 + }, + { + "#": 2856 + }, + { + "#": 2857 + }, + { + "#": 2858 + }, + { + "#": 2859 + }, + { + "#": 2860 + }, + { + "#": 2861 + }, + { + "#": 2862 + }, + { + "#": 2863 + } + ], + { + "x": 279.424, + "y": 447.062, + "index": 0, + "body": { + "#": 2845 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 452.47, + "index": 1, + "body": { + "#": 2845 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 456.608, + "index": 2, + "body": { + "#": 2845 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 458.848, + "index": 3, + "body": { + "#": 2845 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 458.848, + "index": 4, + "body": { + "#": 2845 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 456.608, + "index": 5, + "body": { + "#": 2845 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 452.47, + "index": 6, + "body": { + "#": 2845 + }, + "isInternal": false + }, + { + "x": 250, + "y": 447.062, + "index": 7, + "body": { + "#": 2845 + }, + "isInternal": false + }, + { + "x": 250, + "y": 441.21, + "index": 8, + "body": { + "#": 2845 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 435.802, + "index": 9, + "body": { + "#": 2845 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 431.664, + "index": 10, + "body": { + "#": 2845 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 429.424, + "index": 11, + "body": { + "#": 2845 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 429.424, + "index": 12, + "body": { + "#": 2845 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 431.664, + "index": 13, + "body": { + "#": 2845 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 435.802, + "index": 14, + "body": { + "#": 2845 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 441.21, + "index": 15, + "body": { + "#": 2845 + }, + "isInternal": false + }, + { + "x": 264.712, + "y": 444.136 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2871 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2873 + }, + "max": { + "#": 2874 + } + }, + { + "x": 250, + "y": 429.424 + }, + { + "x": 279.424, + "y": 458.848 + }, + { + "x": 264.712, + "y": 444.136 + }, + [ + { + "#": 2877 + }, + { + "#": 2878 + }, + { + "#": 2879 + }, + { + "#": 2880 + }, + { + "#": 2881 + }, + { + "#": 2882 + }, + { + "#": 2883 + }, + { + "#": 2884 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 198, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2886 + }, + "angle": 0, + "vertices": { + "#": 2887 + }, + "position": { + "#": 2904 + }, + "force": { + "#": 2905 + }, + "torque": 0, + "positionImpulse": { + "#": 2906 + }, + "constraintImpulse": { + "#": 2907 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2908 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2909 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2910 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2912 + }, + "positionPrev": { + "#": 2915 + }, + "anglePrev": 0, + "axes": { + "#": 2916 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2885 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2885 + } + ], + [ + { + "#": 2888 + }, + { + "#": 2889 + }, + { + "#": 2890 + }, + { + "#": 2891 + }, + { + "#": 2892 + }, + { + "#": 2893 + }, + { + "#": 2894 + }, + { + "#": 2895 + }, + { + "#": 2896 + }, + { + "#": 2897 + }, + { + "#": 2898 + }, + { + "#": 2899 + }, + { + "#": 2900 + }, + { + "#": 2901 + }, + { + "#": 2902 + }, + { + "#": 2903 + } + ], + { + "x": 308.848, + "y": 447.062, + "index": 0, + "body": { + "#": 2885 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 452.47, + "index": 1, + "body": { + "#": 2885 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 456.608, + "index": 2, + "body": { + "#": 2885 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 458.848, + "index": 3, + "body": { + "#": 2885 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 458.848, + "index": 4, + "body": { + "#": 2885 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 456.608, + "index": 5, + "body": { + "#": 2885 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 452.47, + "index": 6, + "body": { + "#": 2885 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 447.062, + "index": 7, + "body": { + "#": 2885 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 441.21, + "index": 8, + "body": { + "#": 2885 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 435.802, + "index": 9, + "body": { + "#": 2885 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 431.664, + "index": 10, + "body": { + "#": 2885 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 429.424, + "index": 11, + "body": { + "#": 2885 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 429.424, + "index": 12, + "body": { + "#": 2885 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 431.664, + "index": 13, + "body": { + "#": 2885 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 435.802, + "index": 14, + "body": { + "#": 2885 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 441.21, + "index": 15, + "body": { + "#": 2885 + }, + "isInternal": false + }, + { + "x": 294.136, + "y": 444.136 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2911 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2913 + }, + "max": { + "#": 2914 + } + }, + { + "x": 279.424, + "y": 429.424 + }, + { + "x": 308.848, + "y": 458.848 + }, + { + "x": 294.136, + "y": 444.136 + }, + [ + { + "#": 2917 + }, + { + "#": 2918 + }, + { + "#": 2919 + }, + { + "#": 2920 + }, + { + "#": 2921 + }, + { + "#": 2922 + }, + { + "#": 2923 + }, + { + "#": 2924 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 199, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2926 + }, + "angle": 0, + "vertices": { + "#": 2927 + }, + "position": { + "#": 2944 + }, + "force": { + "#": 2945 + }, + "torque": 0, + "positionImpulse": { + "#": 2946 + }, + "constraintImpulse": { + "#": 2947 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2948 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2949 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2950 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2952 + }, + "positionPrev": { + "#": 2955 + }, + "anglePrev": 0, + "axes": { + "#": 2956 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2925 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2925 + } + ], + [ + { + "#": 2928 + }, + { + "#": 2929 + }, + { + "#": 2930 + }, + { + "#": 2931 + }, + { + "#": 2932 + }, + { + "#": 2933 + }, + { + "#": 2934 + }, + { + "#": 2935 + }, + { + "#": 2936 + }, + { + "#": 2937 + }, + { + "#": 2938 + }, + { + "#": 2939 + }, + { + "#": 2940 + }, + { + "#": 2941 + }, + { + "#": 2942 + }, + { + "#": 2943 + } + ], + { + "x": 338.272, + "y": 447.062, + "index": 0, + "body": { + "#": 2925 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 452.47, + "index": 1, + "body": { + "#": 2925 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 456.608, + "index": 2, + "body": { + "#": 2925 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 458.848, + "index": 3, + "body": { + "#": 2925 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 458.848, + "index": 4, + "body": { + "#": 2925 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 456.608, + "index": 5, + "body": { + "#": 2925 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 452.47, + "index": 6, + "body": { + "#": 2925 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 447.062, + "index": 7, + "body": { + "#": 2925 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 441.21, + "index": 8, + "body": { + "#": 2925 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 435.802, + "index": 9, + "body": { + "#": 2925 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 431.664, + "index": 10, + "body": { + "#": 2925 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 429.424, + "index": 11, + "body": { + "#": 2925 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 429.424, + "index": 12, + "body": { + "#": 2925 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 431.664, + "index": 13, + "body": { + "#": 2925 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 435.802, + "index": 14, + "body": { + "#": 2925 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 441.21, + "index": 15, + "body": { + "#": 2925 + }, + "isInternal": false + }, + { + "x": 323.56, + "y": 444.136 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2951 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2953 + }, + "max": { + "#": 2954 + } + }, + { + "x": 308.848, + "y": 429.424 + }, + { + "x": 338.272, + "y": 458.848 + }, + { + "x": 323.56, + "y": 444.136 + }, + [ + { + "#": 2957 + }, + { + "#": 2958 + }, + { + "#": 2959 + }, + { + "#": 2960 + }, + { + "#": 2961 + }, + { + "#": 2962 + }, + { + "#": 2963 + }, + { + "#": 2964 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 200, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2966 + }, + "angle": 0, + "vertices": { + "#": 2967 + }, + "position": { + "#": 2984 + }, + "force": { + "#": 2985 + }, + "torque": 0, + "positionImpulse": { + "#": 2986 + }, + "constraintImpulse": { + "#": 2987 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2988 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2989 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2990 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2992 + }, + "positionPrev": { + "#": 2995 + }, + "anglePrev": 0, + "axes": { + "#": 2996 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2965 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2965 + } + ], + [ + { + "#": 2968 + }, + { + "#": 2969 + }, + { + "#": 2970 + }, + { + "#": 2971 + }, + { + "#": 2972 + }, + { + "#": 2973 + }, + { + "#": 2974 + }, + { + "#": 2975 + }, + { + "#": 2976 + }, + { + "#": 2977 + }, + { + "#": 2978 + }, + { + "#": 2979 + }, + { + "#": 2980 + }, + { + "#": 2981 + }, + { + "#": 2982 + }, + { + "#": 2983 + } + ], + { + "x": 367.696, + "y": 447.062, + "index": 0, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 452.47, + "index": 1, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 456.608, + "index": 2, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 458.848, + "index": 3, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 458.848, + "index": 4, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 456.608, + "index": 5, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 452.47, + "index": 6, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 447.062, + "index": 7, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 441.21, + "index": 8, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 435.802, + "index": 9, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 431.664, + "index": 10, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 429.424, + "index": 11, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 429.424, + "index": 12, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 431.664, + "index": 13, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 435.802, + "index": 14, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 441.21, + "index": 15, + "body": { + "#": 2965 + }, + "isInternal": false + }, + { + "x": 352.984, + "y": 444.136 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2991 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2993 + }, + "max": { + "#": 2994 + } + }, + { + "x": 338.272, + "y": 429.424 + }, + { + "x": 367.696, + "y": 458.848 + }, + { + "x": 352.984, + "y": 444.136 + }, + [ + { + "#": 2997 + }, + { + "#": 2998 + }, + { + "#": 2999 + }, + { + "#": 3000 + }, + { + "#": 3001 + }, + { + "#": 3002 + }, + { + "#": 3003 + }, + { + "#": 3004 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 201, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3006 + }, + "angle": 0, + "vertices": { + "#": 3007 + }, + "position": { + "#": 3024 + }, + "force": { + "#": 3025 + }, + "torque": 0, + "positionImpulse": { + "#": 3026 + }, + "constraintImpulse": { + "#": 3027 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3028 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3029 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3030 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 3032 + }, + "positionPrev": { + "#": 3035 + }, + "anglePrev": 0, + "axes": { + "#": 3036 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 3005 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3005 + } + ], + [ + { + "#": 3008 + }, + { + "#": 3009 + }, + { + "#": 3010 + }, + { + "#": 3011 + }, + { + "#": 3012 + }, + { + "#": 3013 + }, + { + "#": 3014 + }, + { + "#": 3015 + }, + { + "#": 3016 + }, + { + "#": 3017 + }, + { + "#": 3018 + }, + { + "#": 3019 + }, + { + "#": 3020 + }, + { + "#": 3021 + }, + { + "#": 3022 + }, + { + "#": 3023 + } + ], + { + "x": 279.424, + "y": 476.486, + "index": 0, + "body": { + "#": 3005 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 481.894, + "index": 1, + "body": { + "#": 3005 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 486.032, + "index": 2, + "body": { + "#": 3005 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 488.272, + "index": 3, + "body": { + "#": 3005 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 488.272, + "index": 4, + "body": { + "#": 3005 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 486.032, + "index": 5, + "body": { + "#": 3005 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 481.894, + "index": 6, + "body": { + "#": 3005 + }, + "isInternal": false + }, + { + "x": 250, + "y": 476.486, + "index": 7, + "body": { + "#": 3005 + }, + "isInternal": false + }, + { + "x": 250, + "y": 470.634, + "index": 8, + "body": { + "#": 3005 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 465.226, + "index": 9, + "body": { + "#": 3005 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 461.088, + "index": 10, + "body": { + "#": 3005 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 458.848, + "index": 11, + "body": { + "#": 3005 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 458.848, + "index": 12, + "body": { + "#": 3005 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 461.088, + "index": 13, + "body": { + "#": 3005 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 465.226, + "index": 14, + "body": { + "#": 3005 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 470.634, + "index": 15, + "body": { + "#": 3005 + }, + "isInternal": false + }, + { + "x": 264.712, + "y": 473.56 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3031 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3033 + }, + "max": { + "#": 3034 + } + }, + { + "x": 250, + "y": 458.848 + }, + { + "x": 279.424, + "y": 488.272 + }, + { + "x": 264.712, + "y": 473.56 + }, + [ + { + "#": 3037 + }, + { + "#": 3038 + }, + { + "#": 3039 + }, + { + "#": 3040 + }, + { + "#": 3041 + }, + { + "#": 3042 + }, + { + "#": 3043 + }, + { + "#": 3044 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 202, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3046 + }, + "angle": 0, + "vertices": { + "#": 3047 + }, + "position": { + "#": 3064 + }, + "force": { + "#": 3065 + }, + "torque": 0, + "positionImpulse": { + "#": 3066 + }, + "constraintImpulse": { + "#": 3067 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3068 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3069 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3070 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 3072 + }, + "positionPrev": { + "#": 3075 + }, + "anglePrev": 0, + "axes": { + "#": 3076 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 3045 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3045 + } + ], + [ + { + "#": 3048 + }, + { + "#": 3049 + }, + { + "#": 3050 + }, + { + "#": 3051 + }, + { + "#": 3052 + }, + { + "#": 3053 + }, + { + "#": 3054 + }, + { + "#": 3055 + }, + { + "#": 3056 + }, + { + "#": 3057 + }, + { + "#": 3058 + }, + { + "#": 3059 + }, + { + "#": 3060 + }, + { + "#": 3061 + }, + { + "#": 3062 + }, + { + "#": 3063 + } + ], + { + "x": 308.848, + "y": 476.486, + "index": 0, + "body": { + "#": 3045 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 481.894, + "index": 1, + "body": { + "#": 3045 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 486.032, + "index": 2, + "body": { + "#": 3045 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 488.272, + "index": 3, + "body": { + "#": 3045 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 488.272, + "index": 4, + "body": { + "#": 3045 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 486.032, + "index": 5, + "body": { + "#": 3045 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 481.894, + "index": 6, + "body": { + "#": 3045 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 476.486, + "index": 7, + "body": { + "#": 3045 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 470.634, + "index": 8, + "body": { + "#": 3045 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 465.226, + "index": 9, + "body": { + "#": 3045 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 461.088, + "index": 10, + "body": { + "#": 3045 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 458.848, + "index": 11, + "body": { + "#": 3045 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 458.848, + "index": 12, + "body": { + "#": 3045 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 461.088, + "index": 13, + "body": { + "#": 3045 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 465.226, + "index": 14, + "body": { + "#": 3045 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 470.634, + "index": 15, + "body": { + "#": 3045 + }, + "isInternal": false + }, + { + "x": 294.136, + "y": 473.56 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3071 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3073 + }, + "max": { + "#": 3074 + } + }, + { + "x": 279.424, + "y": 458.848 + }, + { + "x": 308.848, + "y": 488.272 + }, + { + "x": 294.136, + "y": 473.56 + }, + [ + { + "#": 3077 + }, + { + "#": 3078 + }, + { + "#": 3079 + }, + { + "#": 3080 + }, + { + "#": 3081 + }, + { + "#": 3082 + }, + { + "#": 3083 + }, + { + "#": 3084 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 203, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3086 + }, + "angle": 0, + "vertices": { + "#": 3087 + }, + "position": { + "#": 3104 + }, + "force": { + "#": 3105 + }, + "torque": 0, + "positionImpulse": { + "#": 3106 + }, + "constraintImpulse": { + "#": 3107 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3108 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3109 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3110 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 3112 + }, + "positionPrev": { + "#": 3115 + }, + "anglePrev": 0, + "axes": { + "#": 3116 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 3085 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3085 + } + ], + [ + { + "#": 3088 + }, + { + "#": 3089 + }, + { + "#": 3090 + }, + { + "#": 3091 + }, + { + "#": 3092 + }, + { + "#": 3093 + }, + { + "#": 3094 + }, + { + "#": 3095 + }, + { + "#": 3096 + }, + { + "#": 3097 + }, + { + "#": 3098 + }, + { + "#": 3099 + }, + { + "#": 3100 + }, + { + "#": 3101 + }, + { + "#": 3102 + }, + { + "#": 3103 + } + ], + { + "x": 338.272, + "y": 476.486, + "index": 0, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 481.894, + "index": 1, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 486.032, + "index": 2, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 488.272, + "index": 3, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 488.272, + "index": 4, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 486.032, + "index": 5, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 481.894, + "index": 6, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 476.486, + "index": 7, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 470.634, + "index": 8, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 465.226, + "index": 9, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 461.088, + "index": 10, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 458.848, + "index": 11, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 458.848, + "index": 12, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 461.088, + "index": 13, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 465.226, + "index": 14, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 470.634, + "index": 15, + "body": { + "#": 3085 + }, + "isInternal": false + }, + { + "x": 323.56, + "y": 473.56 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3111 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3113 + }, + "max": { + "#": 3114 + } + }, + { + "x": 308.848, + "y": 458.848 + }, + { + "x": 338.272, + "y": 488.272 + }, + { + "x": 323.56, + "y": 473.56 + }, + [ + { + "#": 3117 + }, + { + "#": 3118 + }, + { + "#": 3119 + }, + { + "#": 3120 + }, + { + "#": 3121 + }, + { + "#": 3122 + }, + { + "#": 3123 + }, + { + "#": 3124 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 204, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3126 + }, + "angle": 0, + "vertices": { + "#": 3127 + }, + "position": { + "#": 3144 + }, + "force": { + "#": 3145 + }, + "torque": 0, + "positionImpulse": { + "#": 3146 + }, + "constraintImpulse": { + "#": 3147 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3148 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3149 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3150 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 3152 + }, + "positionPrev": { + "#": 3155 + }, + "anglePrev": 0, + "axes": { + "#": 3156 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 3125 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3125 + } + ], + [ + { + "#": 3128 + }, + { + "#": 3129 + }, + { + "#": 3130 + }, + { + "#": 3131 + }, + { + "#": 3132 + }, + { + "#": 3133 + }, + { + "#": 3134 + }, + { + "#": 3135 + }, + { + "#": 3136 + }, + { + "#": 3137 + }, + { + "#": 3138 + }, + { + "#": 3139 + }, + { + "#": 3140 + }, + { + "#": 3141 + }, + { + "#": 3142 + }, + { + "#": 3143 + } + ], + { + "x": 367.696, + "y": 476.486, + "index": 0, + "body": { + "#": 3125 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 481.894, + "index": 1, + "body": { + "#": 3125 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 486.032, + "index": 2, + "body": { + "#": 3125 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 488.272, + "index": 3, + "body": { + "#": 3125 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 488.272, + "index": 4, + "body": { + "#": 3125 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 486.032, + "index": 5, + "body": { + "#": 3125 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 481.894, + "index": 6, + "body": { + "#": 3125 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 476.486, + "index": 7, + "body": { + "#": 3125 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 470.634, + "index": 8, + "body": { + "#": 3125 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 465.226, + "index": 9, + "body": { + "#": 3125 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 461.088, + "index": 10, + "body": { + "#": 3125 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 458.848, + "index": 11, + "body": { + "#": 3125 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 458.848, + "index": 12, + "body": { + "#": 3125 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 461.088, + "index": 13, + "body": { + "#": 3125 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 465.226, + "index": 14, + "body": { + "#": 3125 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 470.634, + "index": 15, + "body": { + "#": 3125 + }, + "isInternal": false + }, + { + "x": 352.984, + "y": 473.56 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3151 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3153 + }, + "max": { + "#": 3154 + } + }, + { + "x": 338.272, + "y": 458.848 + }, + { + "x": 367.696, + "y": 488.272 + }, + { + "x": 352.984, + "y": 473.56 + }, + [ + { + "#": 3157 + }, + { + "#": 3158 + }, + { + "#": 3159 + }, + { + "#": 3160 + }, + { + "#": 3161 + }, + { + "#": 3162 + }, + { + "#": 3163 + }, + { + "#": 3164 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 205, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3166 + }, + "angle": 0, + "vertices": { + "#": 3167 + }, + "position": { + "#": 3184 + }, + "force": { + "#": 3185 + }, + "torque": 0, + "positionImpulse": { + "#": 3186 + }, + "constraintImpulse": { + "#": 3187 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3188 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3189 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3190 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 3192 + }, + "positionPrev": { + "#": 3195 + }, + "anglePrev": 0, + "axes": { + "#": 3196 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 3165 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3165 + } + ], + [ + { + "#": 3168 + }, + { + "#": 3169 + }, + { + "#": 3170 + }, + { + "#": 3171 + }, + { + "#": 3172 + }, + { + "#": 3173 + }, + { + "#": 3174 + }, + { + "#": 3175 + }, + { + "#": 3176 + }, + { + "#": 3177 + }, + { + "#": 3178 + }, + { + "#": 3179 + }, + { + "#": 3180 + }, + { + "#": 3181 + }, + { + "#": 3182 + }, + { + "#": 3183 + } + ], + { + "x": 279.424, + "y": 505.91, + "index": 0, + "body": { + "#": 3165 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 511.318, + "index": 1, + "body": { + "#": 3165 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 515.456, + "index": 2, + "body": { + "#": 3165 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 517.696, + "index": 3, + "body": { + "#": 3165 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 517.696, + "index": 4, + "body": { + "#": 3165 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 515.456, + "index": 5, + "body": { + "#": 3165 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 511.318, + "index": 6, + "body": { + "#": 3165 + }, + "isInternal": false + }, + { + "x": 250, + "y": 505.91, + "index": 7, + "body": { + "#": 3165 + }, + "isInternal": false + }, + { + "x": 250, + "y": 500.058, + "index": 8, + "body": { + "#": 3165 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 494.65, + "index": 9, + "body": { + "#": 3165 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 490.512, + "index": 10, + "body": { + "#": 3165 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 488.272, + "index": 11, + "body": { + "#": 3165 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 488.272, + "index": 12, + "body": { + "#": 3165 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 490.512, + "index": 13, + "body": { + "#": 3165 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 494.65, + "index": 14, + "body": { + "#": 3165 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 500.058, + "index": 15, + "body": { + "#": 3165 + }, + "isInternal": false + }, + { + "x": 264.712, + "y": 502.984 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3191 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3193 + }, + "max": { + "#": 3194 + } + }, + { + "x": 250, + "y": 488.272 + }, + { + "x": 279.424, + "y": 517.696 + }, + { + "x": 264.712, + "y": 502.984 + }, + [ + { + "#": 3197 + }, + { + "#": 3198 + }, + { + "#": 3199 + }, + { + "#": 3200 + }, + { + "#": 3201 + }, + { + "#": 3202 + }, + { + "#": 3203 + }, + { + "#": 3204 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 206, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3206 + }, + "angle": 0, + "vertices": { + "#": 3207 + }, + "position": { + "#": 3224 + }, + "force": { + "#": 3225 + }, + "torque": 0, + "positionImpulse": { + "#": 3226 + }, + "constraintImpulse": { + "#": 3227 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3228 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3229 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3230 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 3232 + }, + "positionPrev": { + "#": 3235 + }, + "anglePrev": 0, + "axes": { + "#": 3236 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 3205 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3205 + } + ], + [ + { + "#": 3208 + }, + { + "#": 3209 + }, + { + "#": 3210 + }, + { + "#": 3211 + }, + { + "#": 3212 + }, + { + "#": 3213 + }, + { + "#": 3214 + }, + { + "#": 3215 + }, + { + "#": 3216 + }, + { + "#": 3217 + }, + { + "#": 3218 + }, + { + "#": 3219 + }, + { + "#": 3220 + }, + { + "#": 3221 + }, + { + "#": 3222 + }, + { + "#": 3223 + } + ], + { + "x": 308.848, + "y": 505.91, + "index": 0, + "body": { + "#": 3205 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 511.318, + "index": 1, + "body": { + "#": 3205 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 515.456, + "index": 2, + "body": { + "#": 3205 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 517.696, + "index": 3, + "body": { + "#": 3205 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 517.696, + "index": 4, + "body": { + "#": 3205 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 515.456, + "index": 5, + "body": { + "#": 3205 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 511.318, + "index": 6, + "body": { + "#": 3205 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 505.91, + "index": 7, + "body": { + "#": 3205 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 500.058, + "index": 8, + "body": { + "#": 3205 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 494.65, + "index": 9, + "body": { + "#": 3205 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 490.512, + "index": 10, + "body": { + "#": 3205 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 488.272, + "index": 11, + "body": { + "#": 3205 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 488.272, + "index": 12, + "body": { + "#": 3205 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 490.512, + "index": 13, + "body": { + "#": 3205 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 494.65, + "index": 14, + "body": { + "#": 3205 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 500.058, + "index": 15, + "body": { + "#": 3205 + }, + "isInternal": false + }, + { + "x": 294.136, + "y": 502.984 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3231 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3233 + }, + "max": { + "#": 3234 + } + }, + { + "x": 279.424, + "y": 488.272 + }, + { + "x": 308.848, + "y": 517.696 + }, + { + "x": 294.136, + "y": 502.984 + }, + [ + { + "#": 3237 + }, + { + "#": 3238 + }, + { + "#": 3239 + }, + { + "#": 3240 + }, + { + "#": 3241 + }, + { + "#": 3242 + }, + { + "#": 3243 + }, + { + "#": 3244 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 207, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3246 + }, + "angle": 0, + "vertices": { + "#": 3247 + }, + "position": { + "#": 3264 + }, + "force": { + "#": 3265 + }, + "torque": 0, + "positionImpulse": { + "#": 3266 + }, + "constraintImpulse": { + "#": 3267 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3268 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3269 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3270 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 3272 + }, + "positionPrev": { + "#": 3275 + }, + "anglePrev": 0, + "axes": { + "#": 3276 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 3245 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3245 + } + ], + [ + { + "#": 3248 + }, + { + "#": 3249 + }, + { + "#": 3250 + }, + { + "#": 3251 + }, + { + "#": 3252 + }, + { + "#": 3253 + }, + { + "#": 3254 + }, + { + "#": 3255 + }, + { + "#": 3256 + }, + { + "#": 3257 + }, + { + "#": 3258 + }, + { + "#": 3259 + }, + { + "#": 3260 + }, + { + "#": 3261 + }, + { + "#": 3262 + }, + { + "#": 3263 + } + ], + { + "x": 338.272, + "y": 505.91, + "index": 0, + "body": { + "#": 3245 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 511.318, + "index": 1, + "body": { + "#": 3245 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 515.456, + "index": 2, + "body": { + "#": 3245 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 517.696, + "index": 3, + "body": { + "#": 3245 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 517.696, + "index": 4, + "body": { + "#": 3245 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 515.456, + "index": 5, + "body": { + "#": 3245 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 511.318, + "index": 6, + "body": { + "#": 3245 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 505.91, + "index": 7, + "body": { + "#": 3245 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 500.058, + "index": 8, + "body": { + "#": 3245 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 494.65, + "index": 9, + "body": { + "#": 3245 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 490.512, + "index": 10, + "body": { + "#": 3245 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 488.272, + "index": 11, + "body": { + "#": 3245 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 488.272, + "index": 12, + "body": { + "#": 3245 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 490.512, + "index": 13, + "body": { + "#": 3245 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 494.65, + "index": 14, + "body": { + "#": 3245 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 500.058, + "index": 15, + "body": { + "#": 3245 + }, + "isInternal": false + }, + { + "x": 323.56, + "y": 502.984 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3271 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3273 + }, + "max": { + "#": 3274 + } + }, + { + "x": 308.848, + "y": 488.272 + }, + { + "x": 338.272, + "y": 517.696 + }, + { + "x": 323.56, + "y": 502.984 + }, + [ + { + "#": 3277 + }, + { + "#": 3278 + }, + { + "#": 3279 + }, + { + "#": 3280 + }, + { + "#": 3281 + }, + { + "#": 3282 + }, + { + "#": 3283 + }, + { + "#": 3284 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 208, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3286 + }, + "angle": 0, + "vertices": { + "#": 3287 + }, + "position": { + "#": 3304 + }, + "force": { + "#": 3305 + }, + "torque": 0, + "positionImpulse": { + "#": 3306 + }, + "constraintImpulse": { + "#": 3307 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3308 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3309 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3310 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 3312 + }, + "positionPrev": { + "#": 3315 + }, + "anglePrev": 0, + "axes": { + "#": 3316 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 3285 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3285 + } + ], + [ + { + "#": 3288 + }, + { + "#": 3289 + }, + { + "#": 3290 + }, + { + "#": 3291 + }, + { + "#": 3292 + }, + { + "#": 3293 + }, + { + "#": 3294 + }, + { + "#": 3295 + }, + { + "#": 3296 + }, + { + "#": 3297 + }, + { + "#": 3298 + }, + { + "#": 3299 + }, + { + "#": 3300 + }, + { + "#": 3301 + }, + { + "#": 3302 + }, + { + "#": 3303 + } + ], + { + "x": 367.696, + "y": 505.91, + "index": 0, + "body": { + "#": 3285 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 511.318, + "index": 1, + "body": { + "#": 3285 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 515.456, + "index": 2, + "body": { + "#": 3285 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 517.696, + "index": 3, + "body": { + "#": 3285 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 517.696, + "index": 4, + "body": { + "#": 3285 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 515.456, + "index": 5, + "body": { + "#": 3285 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 511.318, + "index": 6, + "body": { + "#": 3285 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 505.91, + "index": 7, + "body": { + "#": 3285 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 500.058, + "index": 8, + "body": { + "#": 3285 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 494.65, + "index": 9, + "body": { + "#": 3285 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 490.512, + "index": 10, + "body": { + "#": 3285 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 488.272, + "index": 11, + "body": { + "#": 3285 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 488.272, + "index": 12, + "body": { + "#": 3285 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 490.512, + "index": 13, + "body": { + "#": 3285 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 494.65, + "index": 14, + "body": { + "#": 3285 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 500.058, + "index": 15, + "body": { + "#": 3285 + }, + "isInternal": false + }, + { + "x": 352.984, + "y": 502.984 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3311 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3313 + }, + "max": { + "#": 3314 + } + }, + { + "x": 338.272, + "y": 488.272 + }, + { + "x": 367.696, + "y": 517.696 + }, + { + "x": 352.984, + "y": 502.984 + }, + [ + { + "#": 3317 + }, + { + "#": 3318 + }, + { + "#": 3319 + }, + { + "#": 3320 + }, + { + "#": 3321 + }, + { + "#": 3322 + }, + { + "#": 3323 + }, + { + "#": 3324 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + [ + { + "#": 3326 + }, + { + "#": 3330 + }, + { + "#": 3334 + }, + { + "#": 3338 + }, + { + "#": 3342 + }, + { + "#": 3346 + }, + { + "#": 3350 + }, + { + "#": 3354 + }, + { + "#": 3358 + }, + { + "#": 3362 + }, + { + "#": 3366 + }, + { + "#": 3370 + }, + { + "#": 3374 + }, + { + "#": 3378 + }, + { + "#": 3382 + }, + { + "#": 3386 + }, + { + "#": 3390 + }, + { + "#": 3394 + }, + { + "#": 3398 + }, + { + "#": 3402 + }, + { + "#": 3406 + }, + { + "#": 3410 + }, + { + "#": 3414 + }, + { + "#": 3418 + }, + { + "#": 3422 + }, + { + "#": 3426 + }, + { + "#": 3430 + }, + { + "#": 3434 + }, + { + "#": 3438 + }, + { + "#": 3442 + }, + { + "#": 3446 + }, + { + "#": 3450 + }, + { + "#": 3454 + }, + { + "#": 3458 + }, + { + "#": 3462 + }, + { + "#": 3466 + }, + { + "#": 3470 + }, + { + "#": 3474 + }, + { + "#": 3478 + }, + { + "#": 3482 + }, + { + "#": 3486 + }, + { + "#": 3490 + } + ], + { + "bodyA": { + "#": 2685 + }, + "bodyB": { + "#": 2725 + }, + "stiffness": 0.4, + "pointA": { + "#": 3327 + }, + "pointB": { + "#": 3328 + }, + "length": 29.424, + "render": { + "#": 3329 + }, + "id": 209, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2725 + }, + "bodyB": { + "#": 2765 + }, + "stiffness": 0.4, + "pointA": { + "#": 3331 + }, + "pointB": { + "#": 3332 + }, + "length": 29.424, + "render": { + "#": 3333 + }, + "id": 210, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2765 + }, + "bodyB": { + "#": 2805 + }, + "stiffness": 0.4, + "pointA": { + "#": 3335 + }, + "pointB": { + "#": 3336 + }, + "length": 29.424, + "render": { + "#": 3337 + }, + "id": 211, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2845 + }, + "bodyB": { + "#": 2885 + }, + "stiffness": 0.4, + "pointA": { + "#": 3339 + }, + "pointB": { + "#": 3340 + }, + "length": 29.424, + "render": { + "#": 3341 + }, + "id": 212, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2885 + }, + "bodyB": { + "#": 2925 + }, + "stiffness": 0.4, + "pointA": { + "#": 3343 + }, + "pointB": { + "#": 3344 + }, + "length": 29.424, + "render": { + "#": 3345 + }, + "id": 213, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2925 + }, + "bodyB": { + "#": 2965 + }, + "stiffness": 0.4, + "pointA": { + "#": 3347 + }, + "pointB": { + "#": 3348 + }, + "length": 29.424, + "render": { + "#": 3349 + }, + "id": 214, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2685 + }, + "bodyB": { + "#": 2845 + }, + "stiffness": 0.4, + "pointA": { + "#": 3351 + }, + "pointB": { + "#": 3352 + }, + "length": 29.424, + "render": { + "#": 3353 + }, + "id": 215, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2725 + }, + "bodyB": { + "#": 2845 + }, + "stiffness": 0.4, + "pointA": { + "#": 3355 + }, + "pointB": { + "#": 3356 + }, + "length": 41.61182, + "render": { + "#": 3357 + }, + "id": 216, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2725 + }, + "bodyB": { + "#": 2885 + }, + "stiffness": 0.4, + "pointA": { + "#": 3359 + }, + "pointB": { + "#": 3360 + }, + "length": 29.424, + "render": { + "#": 3361 + }, + "id": 217, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2685 + }, + "bodyB": { + "#": 2885 + }, + "stiffness": 0.4, + "pointA": { + "#": 3363 + }, + "pointB": { + "#": 3364 + }, + "length": 41.61182, + "render": { + "#": 3365 + }, + "id": 218, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2765 + }, + "bodyB": { + "#": 2885 + }, + "stiffness": 0.4, + "pointA": { + "#": 3367 + }, + "pointB": { + "#": 3368 + }, + "length": 41.61182, + "render": { + "#": 3369 + }, + "id": 219, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2765 + }, + "bodyB": { + "#": 2925 + }, + "stiffness": 0.4, + "pointA": { + "#": 3371 + }, + "pointB": { + "#": 3372 + }, + "length": 29.424, + "render": { + "#": 3373 + }, + "id": 220, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2725 + }, + "bodyB": { + "#": 2925 + }, + "stiffness": 0.4, + "pointA": { + "#": 3375 + }, + "pointB": { + "#": 3376 + }, + "length": 41.61182, + "render": { + "#": 3377 + }, + "id": 221, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2805 + }, + "bodyB": { + "#": 2925 + }, + "stiffness": 0.4, + "pointA": { + "#": 3379 + }, + "pointB": { + "#": 3380 + }, + "length": 41.61182, + "render": { + "#": 3381 + }, + "id": 222, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2805 + }, + "bodyB": { + "#": 2965 + }, + "stiffness": 0.4, + "pointA": { + "#": 3383 + }, + "pointB": { + "#": 3384 + }, + "length": 29.424, + "render": { + "#": 3385 + }, + "id": 223, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2765 + }, + "bodyB": { + "#": 2965 + }, + "stiffness": 0.4, + "pointA": { + "#": 3387 + }, + "pointB": { + "#": 3388 + }, + "length": 41.61182, + "render": { + "#": 3389 + }, + "id": 224, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3005 + }, + "bodyB": { + "#": 3045 + }, + "stiffness": 0.4, + "pointA": { + "#": 3391 + }, + "pointB": { + "#": 3392 + }, + "length": 29.424, + "render": { + "#": 3393 + }, + "id": 225, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3045 + }, + "bodyB": { + "#": 3085 + }, + "stiffness": 0.4, + "pointA": { + "#": 3395 + }, + "pointB": { + "#": 3396 + }, + "length": 29.424, + "render": { + "#": 3397 + }, + "id": 226, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3085 + }, + "bodyB": { + "#": 3125 + }, + "stiffness": 0.4, + "pointA": { + "#": 3399 + }, + "pointB": { + "#": 3400 + }, + "length": 29.424, + "render": { + "#": 3401 + }, + "id": 227, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2845 + }, + "bodyB": { + "#": 3005 + }, + "stiffness": 0.4, + "pointA": { + "#": 3403 + }, + "pointB": { + "#": 3404 + }, + "length": 29.424, + "render": { + "#": 3405 + }, + "id": 228, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2885 + }, + "bodyB": { + "#": 3005 + }, + "stiffness": 0.4, + "pointA": { + "#": 3407 + }, + "pointB": { + "#": 3408 + }, + "length": 41.61182, + "render": { + "#": 3409 + }, + "id": 229, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2885 + }, + "bodyB": { + "#": 3045 + }, + "stiffness": 0.4, + "pointA": { + "#": 3411 + }, + "pointB": { + "#": 3412 + }, + "length": 29.424, + "render": { + "#": 3413 + }, + "id": 230, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2845 + }, + "bodyB": { + "#": 3045 + }, + "stiffness": 0.4, + "pointA": { + "#": 3415 + }, + "pointB": { + "#": 3416 + }, + "length": 41.61182, + "render": { + "#": 3417 + }, + "id": 231, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2925 + }, + "bodyB": { + "#": 3045 + }, + "stiffness": 0.4, + "pointA": { + "#": 3419 + }, + "pointB": { + "#": 3420 + }, + "length": 41.61182, + "render": { + "#": 3421 + }, + "id": 232, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2925 + }, + "bodyB": { + "#": 3085 + }, + "stiffness": 0.4, + "pointA": { + "#": 3423 + }, + "pointB": { + "#": 3424 + }, + "length": 29.424, + "render": { + "#": 3425 + }, + "id": 233, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2885 + }, + "bodyB": { + "#": 3085 + }, + "stiffness": 0.4, + "pointA": { + "#": 3427 + }, + "pointB": { + "#": 3428 + }, + "length": 41.61182, + "render": { + "#": 3429 + }, + "id": 234, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2965 + }, + "bodyB": { + "#": 3085 + }, + "stiffness": 0.4, + "pointA": { + "#": 3431 + }, + "pointB": { + "#": 3432 + }, + "length": 41.61182, + "render": { + "#": 3433 + }, + "id": 235, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2965 + }, + "bodyB": { + "#": 3125 + }, + "stiffness": 0.4, + "pointA": { + "#": 3435 + }, + "pointB": { + "#": 3436 + }, + "length": 29.424, + "render": { + "#": 3437 + }, + "id": 236, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2925 + }, + "bodyB": { + "#": 3125 + }, + "stiffness": 0.4, + "pointA": { + "#": 3439 + }, + "pointB": { + "#": 3440 + }, + "length": 41.61182, + "render": { + "#": 3441 + }, + "id": 237, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3165 + }, + "bodyB": { + "#": 3205 + }, + "stiffness": 0.4, + "pointA": { + "#": 3443 + }, + "pointB": { + "#": 3444 + }, + "length": 29.424, + "render": { + "#": 3445 + }, + "id": 238, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3205 + }, + "bodyB": { + "#": 3245 + }, + "stiffness": 0.4, + "pointA": { + "#": 3447 + }, + "pointB": { + "#": 3448 + }, + "length": 29.424, + "render": { + "#": 3449 + }, + "id": 239, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3245 + }, + "bodyB": { + "#": 3285 + }, + "stiffness": 0.4, + "pointA": { + "#": 3451 + }, + "pointB": { + "#": 3452 + }, + "length": 29.424, + "render": { + "#": 3453 + }, + "id": 240, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3005 + }, + "bodyB": { + "#": 3165 + }, + "stiffness": 0.4, + "pointA": { + "#": 3455 + }, + "pointB": { + "#": 3456 + }, + "length": 29.424, + "render": { + "#": 3457 + }, + "id": 241, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3045 + }, + "bodyB": { + "#": 3165 + }, + "stiffness": 0.4, + "pointA": { + "#": 3459 + }, + "pointB": { + "#": 3460 + }, + "length": 41.61182, + "render": { + "#": 3461 + }, + "id": 242, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3045 + }, + "bodyB": { + "#": 3205 + }, + "stiffness": 0.4, + "pointA": { + "#": 3463 + }, + "pointB": { + "#": 3464 + }, + "length": 29.424, + "render": { + "#": 3465 + }, + "id": 243, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3005 + }, + "bodyB": { + "#": 3205 + }, + "stiffness": 0.4, + "pointA": { + "#": 3467 + }, + "pointB": { + "#": 3468 + }, + "length": 41.61182, + "render": { + "#": 3469 + }, + "id": 244, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3085 + }, + "bodyB": { + "#": 3205 + }, + "stiffness": 0.4, + "pointA": { + "#": 3471 + }, + "pointB": { + "#": 3472 + }, + "length": 41.61182, + "render": { + "#": 3473 + }, + "id": 245, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3085 + }, + "bodyB": { + "#": 3245 + }, + "stiffness": 0.4, + "pointA": { + "#": 3475 + }, + "pointB": { + "#": 3476 + }, + "length": 29.424, + "render": { + "#": 3477 + }, + "id": 246, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3045 + }, + "bodyB": { + "#": 3245 + }, + "stiffness": 0.4, + "pointA": { + "#": 3479 + }, + "pointB": { + "#": 3480 + }, + "length": 41.61182, + "render": { + "#": 3481 + }, + "id": 247, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3125 + }, + "bodyB": { + "#": 3245 + }, + "stiffness": 0.4, + "pointA": { + "#": 3483 + }, + "pointB": { + "#": 3484 + }, + "length": 41.61182, + "render": { + "#": 3485 + }, + "id": 248, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3125 + }, + "bodyB": { + "#": 3285 + }, + "stiffness": 0.4, + "pointA": { + "#": 3487 + }, + "pointB": { + "#": 3488 + }, + "length": 29.424, + "render": { + "#": 3489 + }, + "id": 249, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3085 + }, + "bodyB": { + "#": 3285 + }, + "stiffness": 0.4, + "pointA": { + "#": 3491 + }, + "pointB": { + "#": 3492 + }, + "length": 41.61182, + "render": { + "#": 3493 + }, + "id": 250, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 3497 + }, + "max": { + "#": 3498 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/softBody/softBody-10.json b/test/node/refs/softBody/softBody-10.json new file mode 100644 index 00000000..4ec7e38a --- /dev/null +++ b/test/node/refs/softBody/softBody-10.json @@ -0,0 +1,35360 @@ +[ + { + "id": 108, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 94 + }, + "composites": { + "#": 95 + }, + "label": "World", + "gravity": { + "#": 3564 + }, + "bounds": { + "#": 3565 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + [], + [ + { + "#": 96 + }, + { + "#": 1488 + }, + { + "#": 2736 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 97 + }, + "constraints": { + "#": 1198 + }, + "composites": { + "#": 1487 + }, + "label": "Soft Body" + }, + [ + { + "#": 98 + }, + { + "#": 142 + }, + { + "#": 186 + }, + { + "#": 230 + }, + { + "#": 274 + }, + { + "#": 318 + }, + { + "#": 362 + }, + { + "#": 406 + }, + { + "#": 450 + }, + { + "#": 494 + }, + { + "#": 538 + }, + { + "#": 582 + }, + { + "#": 626 + }, + { + "#": 670 + }, + { + "#": 714 + }, + { + "#": 758 + }, + { + "#": 802 + }, + { + "#": 846 + }, + { + "#": 890 + }, + { + "#": 934 + }, + { + "#": 978 + }, + { + "#": 1022 + }, + { + "#": 1066 + }, + { + "#": 1110 + }, + { + "#": 1154 + } + ], + { + "id": 5, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 99 + }, + "angle": 0, + "vertices": { + "#": 100 + }, + "position": { + "#": 119 + }, + "force": { + "#": 120 + }, + "torque": 0, + "positionImpulse": { + "#": 121 + }, + "constraintImpulse": { + "#": 122 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 123 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 124 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 125 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 127 + }, + "positionPrev": { + "#": 130 + }, + "anglePrev": 0, + "axes": { + "#": 131 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 98 + }, + "sleepCounter": 0, + "region": { + "#": 141 + } + }, + [ + { + "#": 98 + } + ], + [ + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + } + ], + { + "x": 285.454, + "y": 138.86175, + "index": 0, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 283.315, + "y": 144.73575, + "index": 1, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 279.297, + "y": 149.52475, + "index": 2, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 273.883, + "y": 152.64975, + "index": 3, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 267.727, + "y": 153.73575, + "index": 4, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 261.571, + "y": 152.64975, + "index": 5, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 256.157, + "y": 149.52475, + "index": 6, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 252.139, + "y": 144.73575, + "index": 7, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 250, + "y": 138.86175, + "index": 8, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 250, + "y": 132.60975, + "index": 9, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 252.139, + "y": 126.73575, + "index": 10, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 256.157, + "y": 121.94675, + "index": 11, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 261.571, + "y": 118.82175, + "index": 12, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 267.727, + "y": 117.73575, + "index": 13, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 273.883, + "y": 118.82175, + "index": 14, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 279.297, + "y": 121.94675, + "index": 15, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 283.315, + "y": 126.73575, + "index": 16, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 285.454, + "y": 132.60975, + "index": 17, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 267.727, + "y": 135.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 126 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 128 + }, + "max": { + "#": 129 + } + }, + { + "x": 250, + "y": 117.73575 + }, + { + "x": 285.454, + "y": 153.73575 + }, + { + "x": 267.727, + "y": 132.82848 + }, + [ + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,2,3", + "startCol": 5, + "endCol": 5, + "startRow": 2, + "endRow": 3 + }, + { + "id": 6, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 143 + }, + "angle": 0, + "vertices": { + "#": 144 + }, + "position": { + "#": 163 + }, + "force": { + "#": 164 + }, + "torque": 0, + "positionImpulse": { + "#": 165 + }, + "constraintImpulse": { + "#": 166 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 167 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 168 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 169 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 171 + }, + "positionPrev": { + "#": 174 + }, + "anglePrev": 0, + "axes": { + "#": 175 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 142 + }, + "sleepCounter": 0, + "region": { + "#": 185 + } + }, + [ + { + "#": 142 + } + ], + [ + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + }, + { + "#": 156 + }, + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + } + ], + { + "x": 320.908, + "y": 138.86175, + "index": 0, + "body": { + "#": 142 + }, + "isInternal": false + }, + { + "x": 318.769, + "y": 144.73575, + "index": 1, + "body": { + "#": 142 + }, + "isInternal": false + }, + { + "x": 314.751, + "y": 149.52475, + "index": 2, + "body": { + "#": 142 + }, + "isInternal": false + }, + { + "x": 309.337, + "y": 152.64975, + "index": 3, + "body": { + "#": 142 + }, + "isInternal": false + }, + { + "x": 303.181, + "y": 153.73575, + "index": 4, + "body": { + "#": 142 + }, + "isInternal": false + }, + { + "x": 297.025, + "y": 152.64975, + "index": 5, + "body": { + "#": 142 + }, + "isInternal": false + }, + { + "x": 291.611, + "y": 149.52475, + "index": 6, + "body": { + "#": 142 + }, + "isInternal": false + }, + { + "x": 287.593, + "y": 144.73575, + "index": 7, + "body": { + "#": 142 + }, + "isInternal": false + }, + { + "x": 285.454, + "y": 138.86175, + "index": 8, + "body": { + "#": 142 + }, + "isInternal": false + }, + { + "x": 285.454, + "y": 132.60975, + "index": 9, + "body": { + "#": 142 + }, + "isInternal": false + }, + { + "x": 287.593, + "y": 126.73575, + "index": 10, + "body": { + "#": 142 + }, + "isInternal": false + }, + { + "x": 291.611, + "y": 121.94675, + "index": 11, + "body": { + "#": 142 + }, + "isInternal": false + }, + { + "x": 297.025, + "y": 118.82175, + "index": 12, + "body": { + "#": 142 + }, + "isInternal": false + }, + { + "x": 303.181, + "y": 117.73575, + "index": 13, + "body": { + "#": 142 + }, + "isInternal": false + }, + { + "x": 309.337, + "y": 118.82175, + "index": 14, + "body": { + "#": 142 + }, + "isInternal": false + }, + { + "x": 314.751, + "y": 121.94675, + "index": 15, + "body": { + "#": 142 + }, + "isInternal": false + }, + { + "x": 318.769, + "y": 126.73575, + "index": 16, + "body": { + "#": 142 + }, + "isInternal": false + }, + { + "x": 320.908, + "y": 132.60975, + "index": 17, + "body": { + "#": 142 + }, + "isInternal": false + }, + { + "x": 303.181, + "y": 135.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 170 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 172 + }, + "max": { + "#": 173 + } + }, + { + "x": 285.454, + "y": 117.73575 + }, + { + "x": 320.908, + "y": 153.73575 + }, + { + "x": 303.181, + "y": 132.82848 + }, + [ + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,2,3", + "startCol": 5, + "endCol": 6, + "startRow": 2, + "endRow": 3 + }, + { + "id": 7, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 187 + }, + "angle": 0, + "vertices": { + "#": 188 + }, + "position": { + "#": 207 + }, + "force": { + "#": 208 + }, + "torque": 0, + "positionImpulse": { + "#": 209 + }, + "constraintImpulse": { + "#": 210 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 211 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 212 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 213 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 215 + }, + "positionPrev": { + "#": 218 + }, + "anglePrev": 0, + "axes": { + "#": 219 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 186 + }, + "sleepCounter": 0, + "region": { + "#": 229 + } + }, + [ + { + "#": 186 + } + ], + [ + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + }, + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + } + ], + { + "x": 356.362, + "y": 138.86175, + "index": 0, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 354.223, + "y": 144.73575, + "index": 1, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 350.205, + "y": 149.52475, + "index": 2, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 344.791, + "y": 152.64975, + "index": 3, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 338.635, + "y": 153.73575, + "index": 4, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 332.479, + "y": 152.64975, + "index": 5, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 327.065, + "y": 149.52475, + "index": 6, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 323.047, + "y": 144.73575, + "index": 7, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 320.908, + "y": 138.86175, + "index": 8, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 320.908, + "y": 132.60975, + "index": 9, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 323.047, + "y": 126.73575, + "index": 10, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 327.065, + "y": 121.94675, + "index": 11, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 332.479, + "y": 118.82175, + "index": 12, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 338.635, + "y": 117.73575, + "index": 13, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 344.791, + "y": 118.82175, + "index": 14, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 350.205, + "y": 121.94675, + "index": 15, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 354.223, + "y": 126.73575, + "index": 16, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 356.362, + "y": 132.60975, + "index": 17, + "body": { + "#": 186 + }, + "isInternal": false + }, + { + "x": 338.635, + "y": 135.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 214 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 216 + }, + "max": { + "#": 217 + } + }, + { + "x": 320.908, + "y": 117.73575 + }, + { + "x": 356.362, + "y": 153.73575 + }, + { + "x": 338.635, + "y": 132.82848 + }, + [ + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,2,3", + "startCol": 6, + "endCol": 7, + "startRow": 2, + "endRow": 3 + }, + { + "id": 8, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 231 + }, + "angle": 0, + "vertices": { + "#": 232 + }, + "position": { + "#": 251 + }, + "force": { + "#": 252 + }, + "torque": 0, + "positionImpulse": { + "#": 253 + }, + "constraintImpulse": { + "#": 254 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 255 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 256 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 257 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 259 + }, + "positionPrev": { + "#": 262 + }, + "anglePrev": 0, + "axes": { + "#": 263 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 230 + }, + "sleepCounter": 0, + "region": { + "#": 273 + } + }, + [ + { + "#": 230 + } + ], + [ + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + } + ], + { + "x": 391.841, + "y": 138.86175, + "index": 0, + "body": { + "#": 230 + }, + "isInternal": false + }, + { + "x": 389.702, + "y": 144.73575, + "index": 1, + "body": { + "#": 230 + }, + "isInternal": false + }, + { + "x": 385.684, + "y": 149.52475, + "index": 2, + "body": { + "#": 230 + }, + "isInternal": false + }, + { + "x": 380.27, + "y": 152.64975, + "index": 3, + "body": { + "#": 230 + }, + "isInternal": false + }, + { + "x": 374.114, + "y": 153.73575, + "index": 4, + "body": { + "#": 230 + }, + "isInternal": false + }, + { + "x": 367.958, + "y": 152.64975, + "index": 5, + "body": { + "#": 230 + }, + "isInternal": false + }, + { + "x": 362.544, + "y": 149.52475, + "index": 6, + "body": { + "#": 230 + }, + "isInternal": false + }, + { + "x": 358.526, + "y": 144.73575, + "index": 7, + "body": { + "#": 230 + }, + "isInternal": false + }, + { + "x": 356.387, + "y": 138.86175, + "index": 8, + "body": { + "#": 230 + }, + "isInternal": false + }, + { + "x": 356.387, + "y": 132.60975, + "index": 9, + "body": { + "#": 230 + }, + "isInternal": false + }, + { + "x": 358.526, + "y": 126.73575, + "index": 10, + "body": { + "#": 230 + }, + "isInternal": false + }, + { + "x": 362.544, + "y": 121.94675, + "index": 11, + "body": { + "#": 230 + }, + "isInternal": false + }, + { + "x": 367.958, + "y": 118.82175, + "index": 12, + "body": { + "#": 230 + }, + "isInternal": false + }, + { + "x": 374.114, + "y": 117.73575, + "index": 13, + "body": { + "#": 230 + }, + "isInternal": false + }, + { + "x": 380.27, + "y": 118.82175, + "index": 14, + "body": { + "#": 230 + }, + "isInternal": false + }, + { + "x": 385.684, + "y": 121.94675, + "index": 15, + "body": { + "#": 230 + }, + "isInternal": false + }, + { + "x": 389.702, + "y": 126.73575, + "index": 16, + "body": { + "#": 230 + }, + "isInternal": false + }, + { + "x": 391.841, + "y": 132.60975, + "index": 17, + "body": { + "#": 230 + }, + "isInternal": false + }, + { + "x": 374.114, + "y": 135.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.02, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.92395 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 258 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 260 + }, + "max": { + "#": 261 + } + }, + { + "x": 356.387, + "y": 117.73575 + }, + { + "x": 391.841, + "y": 156.64303 + }, + { + "x": 374.114, + "y": 132.82848 + }, + [ + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,2,3", + "startCol": 7, + "endCol": 8, + "startRow": 2, + "endRow": 3 + }, + { + "id": 9, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 275 + }, + "angle": 0, + "vertices": { + "#": 276 + }, + "position": { + "#": 295 + }, + "force": { + "#": 296 + }, + "torque": 0, + "positionImpulse": { + "#": 297 + }, + "constraintImpulse": { + "#": 298 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 299 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 300 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 301 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 303 + }, + "positionPrev": { + "#": 306 + }, + "anglePrev": 0, + "axes": { + "#": 307 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 274 + }, + "sleepCounter": 0, + "region": { + "#": 317 + } + }, + [ + { + "#": 274 + } + ], + [ + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + } + ], + { + "x": 427.245, + "y": 138.87048, + "index": 0, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 425.106, + "y": 144.74448, + "index": 1, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 421.088, + "y": 149.53348, + "index": 2, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 415.674, + "y": 152.65848, + "index": 3, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 409.518, + "y": 153.74448, + "index": 4, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 403.362, + "y": 152.65848, + "index": 5, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 397.948, + "y": 149.53348, + "index": 6, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 393.93, + "y": 144.74448, + "index": 7, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 391.791, + "y": 138.87048, + "index": 8, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 391.791, + "y": 132.61848, + "index": 9, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 393.93, + "y": 126.74448, + "index": 10, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 397.948, + "y": 121.95548, + "index": 11, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 403.362, + "y": 118.83048, + "index": 12, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 409.518, + "y": 117.74448, + "index": 13, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 415.674, + "y": 118.83048, + "index": 14, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 421.088, + "y": 121.95548, + "index": 15, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 425.106, + "y": 126.74448, + "index": 16, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 427.245, + "y": 132.61848, + "index": 17, + "body": { + "#": 274 + }, + "isInternal": false + }, + { + "x": 409.518, + "y": 135.74448 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.02, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.89932 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 302 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 304 + }, + "max": { + "#": 305 + } + }, + { + "x": 391.791, + "y": 117.74448 + }, + { + "x": 427.245, + "y": 156.65175 + }, + { + "x": 409.518, + "y": 132.82848 + }, + [ + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,2,3", + "startCol": 8, + "endCol": 8, + "startRow": 2, + "endRow": 3 + }, + { + "id": 10, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 319 + }, + "angle": 0, + "vertices": { + "#": 320 + }, + "position": { + "#": 339 + }, + "force": { + "#": 340 + }, + "torque": 0, + "positionImpulse": { + "#": 341 + }, + "constraintImpulse": { + "#": 342 + }, + "totalContacts": 0, + "speed": 2.91517, + "angularSpeed": 0, + "velocity": { + "#": 343 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 344 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 345 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 347 + }, + "positionPrev": { + "#": 350 + }, + "anglePrev": 0, + "axes": { + "#": 351 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 318 + }, + "sleepCounter": 0, + "region": { + "#": 361 + } + }, + [ + { + "#": 318 + } + ], + [ + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + }, + { + "#": 326 + }, + { + "#": 327 + }, + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + }, + { + "#": 336 + }, + { + "#": 337 + }, + { + "#": 338 + } + ], + { + "x": 285.454, + "y": 174.88522, + "index": 0, + "body": { + "#": 318 + }, + "isInternal": false + }, + { + "x": 283.315, + "y": 180.75922, + "index": 1, + "body": { + "#": 318 + }, + "isInternal": false + }, + { + "x": 279.297, + "y": 185.54822, + "index": 2, + "body": { + "#": 318 + }, + "isInternal": false + }, + { + "x": 273.883, + "y": 188.67322, + "index": 3, + "body": { + "#": 318 + }, + "isInternal": false + }, + { + "x": 267.727, + "y": 189.75922, + "index": 4, + "body": { + "#": 318 + }, + "isInternal": false + }, + { + "x": 261.571, + "y": 188.67322, + "index": 5, + "body": { + "#": 318 + }, + "isInternal": false + }, + { + "x": 256.157, + "y": 185.54822, + "index": 6, + "body": { + "#": 318 + }, + "isInternal": false + }, + { + "x": 252.139, + "y": 180.75922, + "index": 7, + "body": { + "#": 318 + }, + "isInternal": false + }, + { + "x": 250, + "y": 174.88522, + "index": 8, + "body": { + "#": 318 + }, + "isInternal": false + }, + { + "x": 250, + "y": 168.63322, + "index": 9, + "body": { + "#": 318 + }, + "isInternal": false + }, + { + "x": 252.139, + "y": 162.75922, + "index": 10, + "body": { + "#": 318 + }, + "isInternal": false + }, + { + "x": 256.157, + "y": 157.97022, + "index": 11, + "body": { + "#": 318 + }, + "isInternal": false + }, + { + "x": 261.571, + "y": 154.84522, + "index": 12, + "body": { + "#": 318 + }, + "isInternal": false + }, + { + "x": 267.727, + "y": 153.75922, + "index": 13, + "body": { + "#": 318 + }, + "isInternal": false + }, + { + "x": 273.883, + "y": 154.84522, + "index": 14, + "body": { + "#": 318 + }, + "isInternal": false + }, + { + "x": 279.297, + "y": 157.97022, + "index": 15, + "body": { + "#": 318 + }, + "isInternal": false + }, + { + "x": 283.315, + "y": 162.75922, + "index": 16, + "body": { + "#": 318 + }, + "isInternal": false + }, + { + "x": 285.454, + "y": 168.63322, + "index": 17, + "body": { + "#": 318 + }, + "isInternal": false + }, + { + "x": 267.727, + "y": 171.75922 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.91517 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 346 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 348 + }, + "max": { + "#": 349 + } + }, + { + "x": 250, + "y": 153.75922 + }, + { + "x": 285.454, + "y": 189.75922 + }, + { + "x": 267.727, + "y": 168.83646 + }, + [ + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,3,3", + "startCol": 5, + "endCol": 5, + "startRow": 3, + "endRow": 3 + }, + { + "id": 11, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 363 + }, + "angle": 0, + "vertices": { + "#": 364 + }, + "position": { + "#": 383 + }, + "force": { + "#": 384 + }, + "torque": 0, + "positionImpulse": { + "#": 385 + }, + "constraintImpulse": { + "#": 386 + }, + "totalContacts": 0, + "speed": 2.91725, + "angularSpeed": 0, + "velocity": { + "#": 387 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 388 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 389 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 391 + }, + "positionPrev": { + "#": 394 + }, + "anglePrev": 0, + "axes": { + "#": 395 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 362 + }, + "sleepCounter": 0, + "region": { + "#": 405 + } + }, + [ + { + "#": 362 + } + ], + [ + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + } + ], + { + "x": 320.94701, + "y": 174.89193, + "index": 0, + "body": { + "#": 362 + }, + "isInternal": false + }, + { + "x": 318.80801, + "y": 180.76593, + "index": 1, + "body": { + "#": 362 + }, + "isInternal": false + }, + { + "x": 314.79001, + "y": 185.55493, + "index": 2, + "body": { + "#": 362 + }, + "isInternal": false + }, + { + "x": 309.37601, + "y": 188.67993, + "index": 3, + "body": { + "#": 362 + }, + "isInternal": false + }, + { + "x": 303.22001, + "y": 189.76593, + "index": 4, + "body": { + "#": 362 + }, + "isInternal": false + }, + { + "x": 297.06401, + "y": 188.67993, + "index": 5, + "body": { + "#": 362 + }, + "isInternal": false + }, + { + "x": 291.65001, + "y": 185.55493, + "index": 6, + "body": { + "#": 362 + }, + "isInternal": false + }, + { + "x": 287.63201, + "y": 180.76593, + "index": 7, + "body": { + "#": 362 + }, + "isInternal": false + }, + { + "x": 285.49301, + "y": 174.89193, + "index": 8, + "body": { + "#": 362 + }, + "isInternal": false + }, + { + "x": 285.49301, + "y": 168.63993, + "index": 9, + "body": { + "#": 362 + }, + "isInternal": false + }, + { + "x": 287.63201, + "y": 162.76593, + "index": 10, + "body": { + "#": 362 + }, + "isInternal": false + }, + { + "x": 291.65001, + "y": 157.97693, + "index": 11, + "body": { + "#": 362 + }, + "isInternal": false + }, + { + "x": 297.06401, + "y": 154.85193, + "index": 12, + "body": { + "#": 362 + }, + "isInternal": false + }, + { + "x": 303.22001, + "y": 153.76593, + "index": 13, + "body": { + "#": 362 + }, + "isInternal": false + }, + { + "x": 309.37601, + "y": 154.85193, + "index": 14, + "body": { + "#": 362 + }, + "isInternal": false + }, + { + "x": 314.79001, + "y": 157.97693, + "index": 15, + "body": { + "#": 362 + }, + "isInternal": false + }, + { + "x": 318.80801, + "y": 162.76593, + "index": 16, + "body": { + "#": 362 + }, + "isInternal": false + }, + { + "x": 320.94701, + "y": 168.63993, + "index": 17, + "body": { + "#": 362 + }, + "isInternal": false + }, + { + "x": 303.22001, + "y": 171.76593 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.0099, + "y": 2.90055 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 390 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 392 + }, + "max": { + "#": 393 + } + }, + { + "x": 285.48312, + "y": 153.76593 + }, + { + "x": 320.94701, + "y": 192.68316 + }, + { + "x": 303.22991, + "y": 168.8487 + }, + [ + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,3,3", + "startCol": 5, + "endCol": 6, + "startRow": 3, + "endRow": 3 + }, + { + "id": 12, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 407 + }, + "angle": 0, + "vertices": { + "#": 408 + }, + "position": { + "#": 427 + }, + "force": { + "#": 428 + }, + "torque": 0, + "positionImpulse": { + "#": 429 + }, + "constraintImpulse": { + "#": 430 + }, + "totalContacts": 0, + "speed": 2.90732, + "angularSpeed": 0, + "velocity": { + "#": 431 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 432 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 433 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 435 + }, + "positionPrev": { + "#": 438 + }, + "anglePrev": 0, + "axes": { + "#": 439 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 406 + }, + "sleepCounter": 0, + "region": { + "#": 449 + } + }, + [ + { + "#": 406 + } + ], + [ + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + } + ], + { + "x": 356.35101, + "y": 174.86174, + "index": 0, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 354.21201, + "y": 180.73574, + "index": 1, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 350.19401, + "y": 185.52474, + "index": 2, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 344.78001, + "y": 188.64974, + "index": 3, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 338.62401, + "y": 189.73574, + "index": 4, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 332.46801, + "y": 188.64974, + "index": 5, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 327.05401, + "y": 185.52474, + "index": 6, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 323.03601, + "y": 180.73574, + "index": 7, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 320.89701, + "y": 174.86174, + "index": 8, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 320.89701, + "y": 168.60974, + "index": 9, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 323.03601, + "y": 162.73574, + "index": 10, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 327.05401, + "y": 157.94674, + "index": 11, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 332.46801, + "y": 154.82174, + "index": 12, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 338.62401, + "y": 153.73574, + "index": 13, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 344.78001, + "y": 154.82174, + "index": 14, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 350.19401, + "y": 157.94674, + "index": 15, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 354.21201, + "y": 162.73574, + "index": 16, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 356.35101, + "y": 168.60974, + "index": 17, + "body": { + "#": 406 + }, + "isInternal": false + }, + { + "x": 338.62401, + "y": 171.73574 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01819, + "y": 2.92395 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 434 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 436 + }, + "max": { + "#": 437 + } + }, + { + "x": 320.89701, + "y": 153.73574 + }, + { + "x": 356.36921, + "y": 192.64301 + }, + { + "x": 338.60582, + "y": 168.82848 + }, + [ + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,3,3", + "startCol": 6, + "endCol": 7, + "startRow": 3, + "endRow": 3 + }, + { + "id": 13, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 451 + }, + "angle": 0, + "vertices": { + "#": 452 + }, + "position": { + "#": 471 + }, + "force": { + "#": 472 + }, + "torque": 0, + "positionImpulse": { + "#": 473 + }, + "constraintImpulse": { + "#": 474 + }, + "totalContacts": 0, + "speed": 2.90731, + "angularSpeed": 0, + "velocity": { + "#": 475 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 476 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 477 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 479 + }, + "positionPrev": { + "#": 482 + }, + "anglePrev": 0, + "axes": { + "#": 483 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 450 + }, + "sleepCounter": 0, + "region": { + "#": 493 + } + }, + [ + { + "#": 450 + } + ], + [ + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + } + ], + { + "x": 391.83701, + "y": 174.86956, + "index": 0, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 389.69801, + "y": 180.74356, + "index": 1, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 385.68001, + "y": 185.53256, + "index": 2, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 380.26601, + "y": 188.65756, + "index": 3, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 374.11001, + "y": 189.74356, + "index": 4, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 367.95401, + "y": 188.65756, + "index": 5, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 362.54001, + "y": 185.53256, + "index": 6, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 358.52201, + "y": 180.74356, + "index": 7, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 356.38301, + "y": 174.86956, + "index": 8, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 356.38301, + "y": 168.61756, + "index": 9, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 358.52201, + "y": 162.74356, + "index": 10, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 362.54001, + "y": 157.95456, + "index": 11, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 367.95401, + "y": 154.82956, + "index": 12, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 374.11001, + "y": 153.74356, + "index": 13, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 380.26601, + "y": 154.82956, + "index": 14, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 385.68001, + "y": 157.95456, + "index": 15, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 389.69801, + "y": 162.74356, + "index": 16, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 391.83701, + "y": 168.61756, + "index": 17, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 374.11001, + "y": 171.74356 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01645, + "y": 2.8984 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 478 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 480 + }, + "max": { + "#": 481 + } + }, + { + "x": 356.36656, + "y": 153.74356 + }, + { + "x": 391.83701, + "y": 192.65082 + }, + { + "x": 374.12645, + "y": 168.82848 + }, + [ + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,3,3", + "startCol": 7, + "endCol": 8, + "startRow": 3, + "endRow": 3 + }, + { + "id": 14, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 495 + }, + "angle": 0, + "vertices": { + "#": 496 + }, + "position": { + "#": 515 + }, + "force": { + "#": 516 + }, + "torque": 0, + "positionImpulse": { + "#": 517 + }, + "constraintImpulse": { + "#": 518 + }, + "totalContacts": 0, + "speed": 2.89549, + "angularSpeed": 0, + "velocity": { + "#": 519 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 520 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 521 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 523 + }, + "positionPrev": { + "#": 526 + }, + "anglePrev": 0, + "axes": { + "#": 527 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 494 + }, + "sleepCounter": 0, + "region": { + "#": 537 + } + }, + [ + { + "#": 494 + } + ], + [ + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + } + ], + { + "x": 427.24111, + "y": 174.92393, + "index": 0, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 425.10211, + "y": 180.79793, + "index": 1, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 421.08411, + "y": 185.58693, + "index": 2, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 415.67011, + "y": 188.71193, + "index": 3, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 409.51411, + "y": 189.79793, + "index": 4, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 403.35811, + "y": 188.71193, + "index": 5, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 397.94411, + "y": 185.58693, + "index": 6, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 393.92611, + "y": 180.79793, + "index": 7, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 391.78711, + "y": 174.92393, + "index": 8, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 391.78711, + "y": 168.67193, + "index": 9, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 393.92611, + "y": 162.79793, + "index": 10, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 397.94411, + "y": 158.00893, + "index": 11, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 403.35811, + "y": 154.88393, + "index": 12, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 409.51411, + "y": 153.79793, + "index": 13, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 415.67011, + "y": 154.88393, + "index": 14, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 421.08411, + "y": 158.00893, + "index": 15, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 425.10211, + "y": 162.79793, + "index": 16, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 427.24111, + "y": 168.67193, + "index": 17, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 409.51411, + "y": 171.79793 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00995, + "y": 0.02182 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00703, + "y": 2.9036 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 522 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 524 + }, + "max": { + "#": 525 + } + }, + { + "x": 391.78711, + "y": 153.79793 + }, + { + "x": 427.2491, + "y": 192.69341 + }, + { + "x": 409.50708, + "y": 168.91101 + }, + [ + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,3,3", + "startCol": 8, + "endCol": 8, + "startRow": 3, + "endRow": 3 + }, + { + "id": 15, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 539 + }, + "angle": 0, + "vertices": { + "#": 540 + }, + "position": { + "#": 559 + }, + "force": { + "#": 560 + }, + "torque": 0, + "positionImpulse": { + "#": 561 + }, + "constraintImpulse": { + "#": 562 + }, + "totalContacts": 0, + "speed": 2.91807, + "angularSpeed": 0, + "velocity": { + "#": 563 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 564 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 565 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 567 + }, + "positionPrev": { + "#": 570 + }, + "anglePrev": 0, + "axes": { + "#": 571 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 538 + }, + "sleepCounter": 0, + "region": { + "#": 581 + } + }, + [ + { + "#": 538 + } + ], + [ + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + } + ], + { + "x": 285.45397, + "y": 210.91609, + "index": 0, + "body": { + "#": 538 + }, + "isInternal": false + }, + { + "x": 283.31497, + "y": 216.79009, + "index": 1, + "body": { + "#": 538 + }, + "isInternal": false + }, + { + "x": 279.29697, + "y": 221.57909, + "index": 2, + "body": { + "#": 538 + }, + "isInternal": false + }, + { + "x": 273.88297, + "y": 224.70409, + "index": 3, + "body": { + "#": 538 + }, + "isInternal": false + }, + { + "x": 267.72697, + "y": 225.79009, + "index": 4, + "body": { + "#": 538 + }, + "isInternal": false + }, + { + "x": 261.57097, + "y": 224.70409, + "index": 5, + "body": { + "#": 538 + }, + "isInternal": false + }, + { + "x": 256.15697, + "y": 221.57909, + "index": 6, + "body": { + "#": 538 + }, + "isInternal": false + }, + { + "x": 252.13897, + "y": 216.79009, + "index": 7, + "body": { + "#": 538 + }, + "isInternal": false + }, + { + "x": 249.99997, + "y": 210.91609, + "index": 8, + "body": { + "#": 538 + }, + "isInternal": false + }, + { + "x": 249.99997, + "y": 204.66409, + "index": 9, + "body": { + "#": 538 + }, + "isInternal": false + }, + { + "x": 252.13897, + "y": 198.79009, + "index": 10, + "body": { + "#": 538 + }, + "isInternal": false + }, + { + "x": 256.15697, + "y": 194.00109, + "index": 11, + "body": { + "#": 538 + }, + "isInternal": false + }, + { + "x": 261.57097, + "y": 190.87609, + "index": 12, + "body": { + "#": 538 + }, + "isInternal": false + }, + { + "x": 267.72697, + "y": 189.79009, + "index": 13, + "body": { + "#": 538 + }, + "isInternal": false + }, + { + "x": 273.88297, + "y": 190.87609, + "index": 14, + "body": { + "#": 538 + }, + "isInternal": false + }, + { + "x": 279.29697, + "y": 194.00109, + "index": 15, + "body": { + "#": 538 + }, + "isInternal": false + }, + { + "x": 283.31497, + "y": 198.79009, + "index": 16, + "body": { + "#": 538 + }, + "isInternal": false + }, + { + "x": 285.45397, + "y": 204.66409, + "index": 17, + "body": { + "#": 538 + }, + "isInternal": false + }, + { + "x": 267.72697, + "y": 207.79009 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00001, + "y": 2.91049 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 566 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 568 + }, + "max": { + "#": 569 + } + }, + { + "x": 249.99997, + "y": 189.79009 + }, + { + "x": 285.45397, + "y": 225.79009 + }, + { + "x": 267.72698, + "y": 204.87148 + }, + [ + { + "#": 572 + }, + { + "#": 573 + }, + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,3,4", + "startCol": 5, + "endCol": 5, + "startRow": 3, + "endRow": 4 + }, + { + "id": 16, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 583 + }, + "angle": 0, + "vertices": { + "#": 584 + }, + "position": { + "#": 603 + }, + "force": { + "#": 604 + }, + "torque": 0, + "positionImpulse": { + "#": 605 + }, + "constraintImpulse": { + "#": 606 + }, + "totalContacts": 0, + "speed": 2.89558, + "angularSpeed": 0, + "velocity": { + "#": 607 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 608 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 609 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 611 + }, + "positionPrev": { + "#": 614 + }, + "anglePrev": 0, + "axes": { + "#": 615 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 582 + }, + "sleepCounter": 0, + "region": { + "#": 625 + } + }, + [ + { + "#": 582 + } + ], + [ + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + } + ], + { + "x": 320.93027, + "y": 210.90094, + "index": 0, + "body": { + "#": 582 + }, + "isInternal": false + }, + { + "x": 318.79127, + "y": 216.77494, + "index": 1, + "body": { + "#": 582 + }, + "isInternal": false + }, + { + "x": 314.77327, + "y": 221.56394, + "index": 2, + "body": { + "#": 582 + }, + "isInternal": false + }, + { + "x": 309.35927, + "y": 224.68894, + "index": 3, + "body": { + "#": 582 + }, + "isInternal": false + }, + { + "x": 303.20327, + "y": 225.77494, + "index": 4, + "body": { + "#": 582 + }, + "isInternal": false + }, + { + "x": 297.04727, + "y": 224.68894, + "index": 5, + "body": { + "#": 582 + }, + "isInternal": false + }, + { + "x": 291.63327, + "y": 221.56394, + "index": 6, + "body": { + "#": 582 + }, + "isInternal": false + }, + { + "x": 287.61527, + "y": 216.77494, + "index": 7, + "body": { + "#": 582 + }, + "isInternal": false + }, + { + "x": 285.47627, + "y": 210.90094, + "index": 8, + "body": { + "#": 582 + }, + "isInternal": false + }, + { + "x": 285.47627, + "y": 204.64894, + "index": 9, + "body": { + "#": 582 + }, + "isInternal": false + }, + { + "x": 287.61527, + "y": 198.77494, + "index": 10, + "body": { + "#": 582 + }, + "isInternal": false + }, + { + "x": 291.63327, + "y": 193.98594, + "index": 11, + "body": { + "#": 582 + }, + "isInternal": false + }, + { + "x": 297.04727, + "y": 190.86094, + "index": 12, + "body": { + "#": 582 + }, + "isInternal": false + }, + { + "x": 303.20327, + "y": 189.77494, + "index": 13, + "body": { + "#": 582 + }, + "isInternal": false + }, + { + "x": 309.35927, + "y": 190.86094, + "index": 14, + "body": { + "#": 582 + }, + "isInternal": false + }, + { + "x": 314.77327, + "y": 193.98594, + "index": 15, + "body": { + "#": 582 + }, + "isInternal": false + }, + { + "x": 318.79127, + "y": 198.77494, + "index": 16, + "body": { + "#": 582 + }, + "isInternal": false + }, + { + "x": 320.93027, + "y": 204.64894, + "index": 17, + "body": { + "#": 582 + }, + "isInternal": false + }, + { + "x": 303.20327, + "y": 207.77494 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.02032, + "y": 2.90614 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 610 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 612 + }, + "max": { + "#": 613 + } + }, + { + "x": 285.45596, + "y": 189.77494 + }, + { + "x": 320.93027, + "y": 228.67044 + }, + { + "x": 303.22359, + "y": 204.88548 + }, + [ + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,3,4", + "startCol": 5, + "endCol": 6, + "startRow": 3, + "endRow": 4 + }, + { + "id": 17, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 627 + }, + "angle": 0, + "vertices": { + "#": 628 + }, + "position": { + "#": 647 + }, + "force": { + "#": 648 + }, + "torque": 0, + "positionImpulse": { + "#": 649 + }, + "constraintImpulse": { + "#": 650 + }, + "totalContacts": 0, + "speed": 2.9084, + "angularSpeed": 0, + "velocity": { + "#": 651 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 652 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 653 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 655 + }, + "positionPrev": { + "#": 658 + }, + "anglePrev": 0, + "axes": { + "#": 659 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 626 + }, + "sleepCounter": 0, + "region": { + "#": 669 + } + }, + [ + { + "#": 626 + } + ], + [ + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + } + ], + { + "x": 356.33427, + "y": 210.89242, + "index": 0, + "body": { + "#": 626 + }, + "isInternal": false + }, + { + "x": 354.19527, + "y": 216.76642, + "index": 1, + "body": { + "#": 626 + }, + "isInternal": false + }, + { + "x": 350.17727, + "y": 221.55542, + "index": 2, + "body": { + "#": 626 + }, + "isInternal": false + }, + { + "x": 344.76327, + "y": 224.68042, + "index": 3, + "body": { + "#": 626 + }, + "isInternal": false + }, + { + "x": 338.60727, + "y": 225.76642, + "index": 4, + "body": { + "#": 626 + }, + "isInternal": false + }, + { + "x": 332.45127, + "y": 224.68042, + "index": 5, + "body": { + "#": 626 + }, + "isInternal": false + }, + { + "x": 327.03727, + "y": 221.55542, + "index": 6, + "body": { + "#": 626 + }, + "isInternal": false + }, + { + "x": 323.01927, + "y": 216.76642, + "index": 7, + "body": { + "#": 626 + }, + "isInternal": false + }, + { + "x": 320.88027, + "y": 210.89242, + "index": 8, + "body": { + "#": 626 + }, + "isInternal": false + }, + { + "x": 320.88027, + "y": 204.64042, + "index": 9, + "body": { + "#": 626 + }, + "isInternal": false + }, + { + "x": 323.01927, + "y": 198.76642, + "index": 10, + "body": { + "#": 626 + }, + "isInternal": false + }, + { + "x": 327.03727, + "y": 193.97742, + "index": 11, + "body": { + "#": 626 + }, + "isInternal": false + }, + { + "x": 332.45127, + "y": 190.85242, + "index": 12, + "body": { + "#": 626 + }, + "isInternal": false + }, + { + "x": 338.60727, + "y": 189.76642, + "index": 13, + "body": { + "#": 626 + }, + "isInternal": false + }, + { + "x": 344.76327, + "y": 190.85242, + "index": 14, + "body": { + "#": 626 + }, + "isInternal": false + }, + { + "x": 350.17727, + "y": 193.97742, + "index": 15, + "body": { + "#": 626 + }, + "isInternal": false + }, + { + "x": 354.19527, + "y": 198.76642, + "index": 16, + "body": { + "#": 626 + }, + "isInternal": false + }, + { + "x": 356.33427, + "y": 204.64042, + "index": 17, + "body": { + "#": 626 + }, + "isInternal": false + }, + { + "x": 338.60727, + "y": 207.76642 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01442, + "y": 2.89772 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 654 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 656 + }, + "max": { + "#": 657 + } + }, + { + "x": 320.88027, + "y": 189.76642 + }, + { + "x": 356.34869, + "y": 228.67478 + }, + { + "x": 338.59285, + "y": 204.85201 + }, + [ + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + }, + { + "#": 666 + }, + { + "#": 667 + }, + { + "#": 668 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,3,4", + "startCol": 6, + "endCol": 7, + "startRow": 3, + "endRow": 4 + }, + { + "id": 18, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 671 + }, + "angle": 0, + "vertices": { + "#": 672 + }, + "position": { + "#": 691 + }, + "force": { + "#": 692 + }, + "torque": 0, + "positionImpulse": { + "#": 693 + }, + "constraintImpulse": { + "#": 694 + }, + "totalContacts": 0, + "speed": 2.91166, + "angularSpeed": 0, + "velocity": { + "#": 695 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 696 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 697 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 699 + }, + "positionPrev": { + "#": 702 + }, + "anglePrev": 0, + "axes": { + "#": 703 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 670 + }, + "sleepCounter": 0, + "region": { + "#": 713 + } + }, + [ + { + "#": 670 + } + ], + [ + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + } + ], + { + "x": 391.84356, + "y": 210.89302, + "index": 0, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 389.70456, + "y": 216.76702, + "index": 1, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 385.68656, + "y": 221.55602, + "index": 2, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 380.27256, + "y": 224.68102, + "index": 3, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 374.11656, + "y": 225.76702, + "index": 4, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 367.96056, + "y": 224.68102, + "index": 5, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 362.54656, + "y": 221.55602, + "index": 6, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 358.52856, + "y": 216.76702, + "index": 7, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 356.38956, + "y": 210.89302, + "index": 8, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 356.38956, + "y": 204.64102, + "index": 9, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 358.52856, + "y": 198.76702, + "index": 10, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 362.54656, + "y": 193.97802, + "index": 11, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 367.96056, + "y": 190.85302, + "index": 12, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 374.11656, + "y": 189.76702, + "index": 13, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 380.27256, + "y": 190.85302, + "index": 14, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 385.68656, + "y": 193.97802, + "index": 15, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 389.70456, + "y": 198.76702, + "index": 16, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 391.84356, + "y": 204.64102, + "index": 17, + "body": { + "#": 670 + }, + "isInternal": false + }, + { + "x": 374.11656, + "y": 207.76702 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01722, + "y": 2.91779 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 698 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 700 + }, + "max": { + "#": 701 + } + }, + { + "x": 356.37234, + "y": 189.76702 + }, + { + "x": 391.84356, + "y": 228.67863 + }, + { + "x": 374.13379, + "y": 204.86591 + }, + [ + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + }, + { + "#": 710 + }, + { + "#": 711 + }, + { + "#": 712 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,3,4", + "startCol": 7, + "endCol": 8, + "startRow": 3, + "endRow": 4 + }, + { + "id": 19, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 715 + }, + "angle": 0, + "vertices": { + "#": 716 + }, + "position": { + "#": 735 + }, + "force": { + "#": 736 + }, + "torque": 0, + "positionImpulse": { + "#": 737 + }, + "constraintImpulse": { + "#": 738 + }, + "totalContacts": 0, + "speed": 2.92219, + "angularSpeed": 0, + "velocity": { + "#": 739 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 740 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 741 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 743 + }, + "positionPrev": { + "#": 746 + }, + "anglePrev": 0, + "axes": { + "#": 747 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 714 + }, + "sleepCounter": 0, + "region": { + "#": 757 + } + }, + [ + { + "#": 714 + } + ], + [ + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + } + ], + { + "x": 427.24751, + "y": 210.87255, + "index": 0, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 425.10851, + "y": 216.74655, + "index": 1, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 421.09051, + "y": 221.53555, + "index": 2, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 415.67651, + "y": 224.66055, + "index": 3, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 409.52051, + "y": 225.74655, + "index": 4, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 403.36451, + "y": 224.66055, + "index": 5, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 397.95051, + "y": 221.53555, + "index": 6, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 393.93251, + "y": 216.74655, + "index": 7, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 391.79351, + "y": 210.87255, + "index": 8, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 391.79351, + "y": 204.62055, + "index": 9, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 393.93251, + "y": 198.74655, + "index": 10, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 397.95051, + "y": 193.95755, + "index": 11, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 403.36451, + "y": 190.83255, + "index": 12, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 409.52051, + "y": 189.74655, + "index": 13, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 415.67651, + "y": 190.83255, + "index": 14, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 421.09051, + "y": 193.95755, + "index": 15, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 425.10851, + "y": 198.74655, + "index": 16, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 427.24751, + "y": 204.62055, + "index": 17, + "body": { + "#": 714 + }, + "isInternal": false + }, + { + "x": 409.52051, + "y": 207.74655 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01072, + "y": 2.92469 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 742 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 744 + }, + "max": { + "#": 745 + } + }, + { + "x": 391.79351, + "y": 189.74655 + }, + { + "x": 427.25729, + "y": 228.66872 + }, + { + "x": 409.50978, + "y": 204.82186 + }, + [ + { + "#": 748 + }, + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + }, + { + "#": 756 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,3,4", + "startCol": 8, + "endCol": 8, + "startRow": 3, + "endRow": 4 + }, + { + "id": 20, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 759 + }, + "angle": 0, + "vertices": { + "#": 760 + }, + "position": { + "#": 779 + }, + "force": { + "#": 780 + }, + "torque": 0, + "positionImpulse": { + "#": 781 + }, + "constraintImpulse": { + "#": 782 + }, + "totalContacts": 0, + "speed": 2.88439, + "angularSpeed": 0, + "velocity": { + "#": 783 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 784 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 785 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 787 + }, + "positionPrev": { + "#": 790 + }, + "anglePrev": 0, + "axes": { + "#": 791 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 758 + }, + "sleepCounter": 0, + "region": { + "#": 801 + } + }, + [ + { + "#": 758 + } + ], + [ + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + }, + { + "#": 767 + }, + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + }, + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + }, + { + "#": 777 + }, + { + "#": 778 + } + ], + { + "x": 285.43432, + "y": 246.96592, + "index": 0, + "body": { + "#": 758 + }, + "isInternal": false + }, + { + "x": 283.29532, + "y": 252.83992, + "index": 1, + "body": { + "#": 758 + }, + "isInternal": false + }, + { + "x": 279.27732, + "y": 257.62892, + "index": 2, + "body": { + "#": 758 + }, + "isInternal": false + }, + { + "x": 273.86332, + "y": 260.75392, + "index": 3, + "body": { + "#": 758 + }, + "isInternal": false + }, + { + "x": 267.70732, + "y": 261.83992, + "index": 4, + "body": { + "#": 758 + }, + "isInternal": false + }, + { + "x": 261.55132, + "y": 260.75392, + "index": 5, + "body": { + "#": 758 + }, + "isInternal": false + }, + { + "x": 256.13732, + "y": 257.62892, + "index": 6, + "body": { + "#": 758 + }, + "isInternal": false + }, + { + "x": 252.11932, + "y": 252.83992, + "index": 7, + "body": { + "#": 758 + }, + "isInternal": false + }, + { + "x": 249.98032, + "y": 246.96592, + "index": 8, + "body": { + "#": 758 + }, + "isInternal": false + }, + { + "x": 249.98032, + "y": 240.71392, + "index": 9, + "body": { + "#": 758 + }, + "isInternal": false + }, + { + "x": 252.11932, + "y": 234.83992, + "index": 10, + "body": { + "#": 758 + }, + "isInternal": false + }, + { + "x": 256.13732, + "y": 230.05092, + "index": 11, + "body": { + "#": 758 + }, + "isInternal": false + }, + { + "x": 261.55132, + "y": 226.92592, + "index": 12, + "body": { + "#": 758 + }, + "isInternal": false + }, + { + "x": 267.70732, + "y": 225.83992, + "index": 13, + "body": { + "#": 758 + }, + "isInternal": false + }, + { + "x": 273.86332, + "y": 226.92592, + "index": 14, + "body": { + "#": 758 + }, + "isInternal": false + }, + { + "x": 279.27732, + "y": 230.05092, + "index": 15, + "body": { + "#": 758 + }, + "isInternal": false + }, + { + "x": 283.29532, + "y": 234.83992, + "index": 16, + "body": { + "#": 758 + }, + "isInternal": false + }, + { + "x": 285.43432, + "y": 240.71392, + "index": 17, + "body": { + "#": 758 + }, + "isInternal": false + }, + { + "x": 267.70732, + "y": 243.83992 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00359, + "y": 0.02695 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01253, + "y": 2.86857 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 786 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 788 + }, + "max": { + "#": 789 + } + }, + { + "x": 249.97096, + "y": 225.83992 + }, + { + "x": 285.43432, + "y": 264.71614 + }, + { + "x": 267.73628, + "y": 240.96845 + }, + [ + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,4,5", + "startCol": 5, + "endCol": 5, + "startRow": 4, + "endRow": 5 + }, + { + "id": 21, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 803 + }, + "angle": 0, + "vertices": { + "#": 804 + }, + "position": { + "#": 823 + }, + "force": { + "#": 824 + }, + "torque": 0, + "positionImpulse": { + "#": 825 + }, + "constraintImpulse": { + "#": 826 + }, + "totalContacts": 0, + "speed": 2.89765, + "angularSpeed": 0, + "velocity": { + "#": 827 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 828 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 829 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 831 + }, + "positionPrev": { + "#": 834 + }, + "anglePrev": 0, + "axes": { + "#": 835 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 802 + }, + "sleepCounter": 0, + "region": { + "#": 845 + } + }, + [ + { + "#": 802 + } + ], + [ + { + "#": 805 + }, + { + "#": 806 + }, + { + "#": 807 + }, + { + "#": 808 + }, + { + "#": 809 + }, + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + }, + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + } + ], + { + "x": 320.91051, + "y": 246.95471, + "index": 0, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 318.77151, + "y": 252.82871, + "index": 1, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 314.75351, + "y": 257.61771, + "index": 2, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 309.33951, + "y": 260.74271, + "index": 3, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 303.18351, + "y": 261.82871, + "index": 4, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 297.02751, + "y": 260.74271, + "index": 5, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 291.61351, + "y": 257.61771, + "index": 6, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 287.59551, + "y": 252.82871, + "index": 7, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 285.45651, + "y": 246.95471, + "index": 8, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 285.45651, + "y": 240.70271, + "index": 9, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 287.59551, + "y": 234.82871, + "index": 10, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 291.61351, + "y": 230.03971, + "index": 11, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 297.02751, + "y": 226.91471, + "index": 12, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 303.18351, + "y": 225.82871, + "index": 13, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 309.33951, + "y": 226.91471, + "index": 14, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 314.75351, + "y": 230.03971, + "index": 15, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 318.77151, + "y": 234.82871, + "index": 16, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 320.91051, + "y": 240.70271, + "index": 17, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 303.18351, + "y": 243.82871 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.0043, + "y": 0.02701 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00605, + "y": 2.89928 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 830 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 832 + }, + "max": { + "#": 833 + } + }, + { + "x": 285.44827, + "y": 225.82871 + }, + { + "x": 320.91051, + "y": 264.72634 + }, + { + "x": 303.20599, + "y": 240.93232 + }, + [ + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,4,5", + "startCol": 5, + "endCol": 6, + "startRow": 4, + "endRow": 5 + }, + { + "id": 22, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 847 + }, + "angle": 0, + "vertices": { + "#": 848 + }, + "position": { + "#": 867 + }, + "force": { + "#": 868 + }, + "torque": 0, + "positionImpulse": { + "#": 869 + }, + "constraintImpulse": { + "#": 870 + }, + "totalContacts": 0, + "speed": 2.90545, + "angularSpeed": 0, + "velocity": { + "#": 871 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 872 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 873 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 875 + }, + "positionPrev": { + "#": 878 + }, + "anglePrev": 0, + "axes": { + "#": 879 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 846 + }, + "sleepCounter": 0, + "region": { + "#": 889 + } + }, + [ + { + "#": 846 + } + ], + [ + { + "#": 849 + }, + { + "#": 850 + }, + { + "#": 851 + }, + { + "#": 852 + }, + { + "#": 853 + }, + { + "#": 854 + }, + { + "#": 855 + }, + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + }, + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + } + ], + { + "x": 356.36089, + "y": 246.908, + "index": 0, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 354.22189, + "y": 252.782, + "index": 1, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 350.20389, + "y": 257.571, + "index": 2, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 344.78989, + "y": 260.696, + "index": 3, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 338.63389, + "y": 261.782, + "index": 4, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 332.47789, + "y": 260.696, + "index": 5, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 327.06389, + "y": 257.571, + "index": 6, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 323.04589, + "y": 252.782, + "index": 7, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 320.90689, + "y": 246.908, + "index": 8, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 320.90689, + "y": 240.656, + "index": 9, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 323.04589, + "y": 234.782, + "index": 10, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 327.06389, + "y": 229.993, + "index": 11, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 332.47789, + "y": 226.868, + "index": 12, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 338.63389, + "y": 225.782, + "index": 13, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 344.78989, + "y": 226.868, + "index": 14, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 350.20389, + "y": 229.993, + "index": 15, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 354.22189, + "y": 234.782, + "index": 16, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 356.36089, + "y": 240.656, + "index": 17, + "body": { + "#": 846 + }, + "isInternal": false + }, + { + "x": 338.63389, + "y": 243.782 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00994, + "y": 0.01129 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.03188, + "y": 2.90528 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 874 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 876 + }, + "max": { + "#": 877 + } + }, + { + "x": 320.90689, + "y": 225.782 + }, + { + "x": 356.39278, + "y": 264.68728 + }, + { + "x": 338.61162, + "y": 240.8865 + }, + [ + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + }, + { + "#": 887 + }, + { + "#": 888 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,4,5", + "startCol": 6, + "endCol": 7, + "startRow": 4, + "endRow": 5 + }, + { + "id": 23, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 891 + }, + "angle": 0, + "vertices": { + "#": 892 + }, + "position": { + "#": 911 + }, + "force": { + "#": 912 + }, + "torque": 0, + "positionImpulse": { + "#": 913 + }, + "constraintImpulse": { + "#": 914 + }, + "totalContacts": 0, + "speed": 2.88226, + "angularSpeed": 0, + "velocity": { + "#": 915 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 916 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 917 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 919 + }, + "positionPrev": { + "#": 922 + }, + "anglePrev": 0, + "axes": { + "#": 923 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 890 + }, + "sleepCounter": 0, + "region": { + "#": 933 + } + }, + [ + { + "#": 890 + } + ], + [ + { + "#": 893 + }, + { + "#": 894 + }, + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + }, + { + "#": 901 + }, + { + "#": 902 + }, + { + "#": 903 + }, + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + } + ], + { + "x": 391.85195, + "y": 246.95207, + "index": 0, + "body": { + "#": 890 + }, + "isInternal": false + }, + { + "x": 389.71295, + "y": 252.82607, + "index": 1, + "body": { + "#": 890 + }, + "isInternal": false + }, + { + "x": 385.69495, + "y": 257.61507, + "index": 2, + "body": { + "#": 890 + }, + "isInternal": false + }, + { + "x": 380.28095, + "y": 260.74007, + "index": 3, + "body": { + "#": 890 + }, + "isInternal": false + }, + { + "x": 374.12495, + "y": 261.82607, + "index": 4, + "body": { + "#": 890 + }, + "isInternal": false + }, + { + "x": 367.96895, + "y": 260.74007, + "index": 5, + "body": { + "#": 890 + }, + "isInternal": false + }, + { + "x": 362.55495, + "y": 257.61507, + "index": 6, + "body": { + "#": 890 + }, + "isInternal": false + }, + { + "x": 358.53695, + "y": 252.82607, + "index": 7, + "body": { + "#": 890 + }, + "isInternal": false + }, + { + "x": 356.39795, + "y": 246.95207, + "index": 8, + "body": { + "#": 890 + }, + "isInternal": false + }, + { + "x": 356.39795, + "y": 240.70007, + "index": 9, + "body": { + "#": 890 + }, + "isInternal": false + }, + { + "x": 358.53695, + "y": 234.82607, + "index": 10, + "body": { + "#": 890 + }, + "isInternal": false + }, + { + "x": 362.55495, + "y": 230.03707, + "index": 11, + "body": { + "#": 890 + }, + "isInternal": false + }, + { + "x": 367.96895, + "y": 226.91207, + "index": 12, + "body": { + "#": 890 + }, + "isInternal": false + }, + { + "x": 374.12495, + "y": 225.82607, + "index": 13, + "body": { + "#": 890 + }, + "isInternal": false + }, + { + "x": 380.28095, + "y": 226.91207, + "index": 14, + "body": { + "#": 890 + }, + "isInternal": false + }, + { + "x": 385.69495, + "y": 230.03707, + "index": 15, + "body": { + "#": 890 + }, + "isInternal": false + }, + { + "x": 389.71295, + "y": 234.82607, + "index": 16, + "body": { + "#": 890 + }, + "isInternal": false + }, + { + "x": 391.85195, + "y": 240.70007, + "index": 17, + "body": { + "#": 890 + }, + "isInternal": false + }, + { + "x": 374.12495, + "y": 243.82607 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.0055, + "y": 0.03053 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00253, + "y": 2.88421 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 918 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 920 + }, + "max": { + "#": 921 + } + }, + { + "x": 356.39774, + "y": 225.82607 + }, + { + "x": 391.85195, + "y": 264.71653 + }, + { + "x": 374.10599, + "y": 240.93897 + }, + [ + { + "#": 924 + }, + { + "#": 925 + }, + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + }, + { + "#": 932 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,4,5", + "startCol": 7, + "endCol": 8, + "startRow": 4, + "endRow": 5 + }, + { + "id": 24, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 935 + }, + "angle": 0, + "vertices": { + "#": 936 + }, + "position": { + "#": 955 + }, + "force": { + "#": 956 + }, + "torque": 0, + "positionImpulse": { + "#": 957 + }, + "constraintImpulse": { + "#": 958 + }, + "totalContacts": 0, + "speed": 2.89499, + "angularSpeed": 0, + "velocity": { + "#": 959 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 960 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 961 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 963 + }, + "positionPrev": { + "#": 966 + }, + "anglePrev": 0, + "axes": { + "#": 967 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 934 + }, + "sleepCounter": 0, + "region": { + "#": 977 + } + }, + [ + { + "#": 934 + } + ], + [ + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + }, + { + "#": 943 + }, + { + "#": 944 + }, + { + "#": 945 + }, + { + "#": 946 + }, + { + "#": 947 + }, + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + }, + { + "#": 954 + } + ], + { + "x": 427.25614, + "y": 246.8998, + "index": 0, + "body": { + "#": 934 + }, + "isInternal": false + }, + { + "x": 425.11714, + "y": 252.7738, + "index": 1, + "body": { + "#": 934 + }, + "isInternal": false + }, + { + "x": 421.09914, + "y": 257.5628, + "index": 2, + "body": { + "#": 934 + }, + "isInternal": false + }, + { + "x": 415.68514, + "y": 260.6878, + "index": 3, + "body": { + "#": 934 + }, + "isInternal": false + }, + { + "x": 409.52914, + "y": 261.7738, + "index": 4, + "body": { + "#": 934 + }, + "isInternal": false + }, + { + "x": 403.37314, + "y": 260.6878, + "index": 5, + "body": { + "#": 934 + }, + "isInternal": false + }, + { + "x": 397.95914, + "y": 257.5628, + "index": 6, + "body": { + "#": 934 + }, + "isInternal": false + }, + { + "x": 393.94114, + "y": 252.7738, + "index": 7, + "body": { + "#": 934 + }, + "isInternal": false + }, + { + "x": 391.80214, + "y": 246.8998, + "index": 8, + "body": { + "#": 934 + }, + "isInternal": false + }, + { + "x": 391.80214, + "y": 240.6478, + "index": 9, + "body": { + "#": 934 + }, + "isInternal": false + }, + { + "x": 393.94114, + "y": 234.7738, + "index": 10, + "body": { + "#": 934 + }, + "isInternal": false + }, + { + "x": 397.95914, + "y": 229.9848, + "index": 11, + "body": { + "#": 934 + }, + "isInternal": false + }, + { + "x": 403.37314, + "y": 226.8598, + "index": 12, + "body": { + "#": 934 + }, + "isInternal": false + }, + { + "x": 409.52914, + "y": 225.7738, + "index": 13, + "body": { + "#": 934 + }, + "isInternal": false + }, + { + "x": 415.68514, + "y": 226.8598, + "index": 14, + "body": { + "#": 934 + }, + "isInternal": false + }, + { + "x": 421.09914, + "y": 229.9848, + "index": 15, + "body": { + "#": 934 + }, + "isInternal": false + }, + { + "x": 425.11714, + "y": 234.7738, + "index": 16, + "body": { + "#": 934 + }, + "isInternal": false + }, + { + "x": 427.25614, + "y": 240.6478, + "index": 17, + "body": { + "#": 934 + }, + "isInternal": false + }, + { + "x": 409.52914, + "y": 243.7738 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.01612, + "y": 0.00833 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02689, + "y": 2.88418 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 962 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 964 + }, + "max": { + "#": 965 + } + }, + { + "x": 391.80214, + "y": 225.7738 + }, + { + "x": 427.28304, + "y": 264.66873 + }, + { + "x": 409.50224, + "y": 240.87294 + }, + [ + { + "#": 968 + }, + { + "#": 969 + }, + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + }, + { + "#": 976 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,4,5", + "startCol": 8, + "endCol": 8, + "startRow": 4, + "endRow": 5 + }, + { + "id": 25, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 979 + }, + "angle": 0, + "vertices": { + "#": 980 + }, + "position": { + "#": 999 + }, + "force": { + "#": 1000 + }, + "torque": 0, + "positionImpulse": { + "#": 1001 + }, + "constraintImpulse": { + "#": 1002 + }, + "totalContacts": 0, + "speed": 2.89743, + "angularSpeed": 0, + "velocity": { + "#": 1003 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1004 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1005 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 1007 + }, + "positionPrev": { + "#": 1010 + }, + "anglePrev": 0, + "axes": { + "#": 1011 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 978 + }, + "sleepCounter": 0, + "region": { + "#": 1021 + } + }, + [ + { + "#": 978 + } + ], + [ + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + }, + { + "#": 985 + }, + { + "#": 986 + }, + { + "#": 987 + }, + { + "#": 988 + }, + { + "#": 989 + }, + { + "#": 990 + }, + { + "#": 991 + }, + { + "#": 992 + }, + { + "#": 993 + }, + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + }, + { + "#": 997 + }, + { + "#": 998 + } + ], + { + "x": 285.49991, + "y": 282.90415, + "index": 0, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 283.36091, + "y": 288.77815, + "index": 1, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 279.34291, + "y": 293.56715, + "index": 2, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 273.92891, + "y": 296.69215, + "index": 3, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 267.77291, + "y": 297.77815, + "index": 4, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 261.61691, + "y": 296.69215, + "index": 5, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 256.20291, + "y": 293.56715, + "index": 6, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 252.18491, + "y": 288.77815, + "index": 7, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 250.04591, + "y": 282.90415, + "index": 8, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 250.04591, + "y": 276.65215, + "index": 9, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 252.18491, + "y": 270.77815, + "index": 10, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 256.20291, + "y": 265.98915, + "index": 11, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 261.61691, + "y": 262.86415, + "index": 12, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 267.77291, + "y": 261.77815, + "index": 13, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 273.92891, + "y": 262.86415, + "index": 14, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 279.34291, + "y": 265.98915, + "index": 15, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 283.36091, + "y": 270.77815, + "index": 16, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 285.49991, + "y": 276.65215, + "index": 17, + "body": { + "#": 978 + }, + "isInternal": false + }, + { + "x": 267.77291, + "y": 279.77815 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00398, + "y": 2.9143 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1006 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1008 + }, + "max": { + "#": 1009 + } + }, + { + "x": 250.02336, + "y": 261.77815 + }, + { + "x": 285.49991, + "y": 300.67554 + }, + { + "x": 267.77689, + "y": 276.84717 + }, + [ + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + }, + { + "#": 1016 + }, + { + "#": 1017 + }, + { + "#": 1018 + }, + { + "#": 1019 + }, + { + "#": 1020 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,5,6", + "startCol": 5, + "endCol": 5, + "startRow": 5, + "endRow": 6 + }, + { + "id": 26, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1023 + }, + "angle": 0, + "vertices": { + "#": 1024 + }, + "position": { + "#": 1043 + }, + "force": { + "#": 1044 + }, + "torque": 0, + "positionImpulse": { + "#": 1045 + }, + "constraintImpulse": { + "#": 1046 + }, + "totalContacts": 0, + "speed": 2.93588, + "angularSpeed": 0, + "velocity": { + "#": 1047 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1048 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1049 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 1051 + }, + "positionPrev": { + "#": 1054 + }, + "anglePrev": 0, + "axes": { + "#": 1055 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 1022 + }, + "sleepCounter": 0, + "region": { + "#": 1065 + } + }, + [ + { + "#": 1022 + } + ], + [ + { + "#": 1025 + }, + { + "#": 1026 + }, + { + "#": 1027 + }, + { + "#": 1028 + }, + { + "#": 1029 + }, + { + "#": 1030 + }, + { + "#": 1031 + }, + { + "#": 1032 + }, + { + "#": 1033 + }, + { + "#": 1034 + }, + { + "#": 1035 + }, + { + "#": 1036 + }, + { + "#": 1037 + }, + { + "#": 1038 + }, + { + "#": 1039 + }, + { + "#": 1040 + }, + { + "#": 1041 + }, + { + "#": 1042 + } + ], + { + "x": 320.91186, + "y": 282.90393, + "index": 0, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 318.77286, + "y": 288.77793, + "index": 1, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 314.75486, + "y": 293.56693, + "index": 2, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 309.34086, + "y": 296.69193, + "index": 3, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 303.18486, + "y": 297.77793, + "index": 4, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 297.02886, + "y": 296.69193, + "index": 5, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 291.61486, + "y": 293.56693, + "index": 6, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 287.59686, + "y": 288.77793, + "index": 7, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 285.45786, + "y": 282.90393, + "index": 8, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 285.45786, + "y": 276.65193, + "index": 9, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 287.59686, + "y": 270.77793, + "index": 10, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 291.61486, + "y": 265.98893, + "index": 11, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 297.02886, + "y": 262.86393, + "index": 12, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 303.18486, + "y": 261.77793, + "index": 13, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 309.34086, + "y": 262.86393, + "index": 14, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 314.75486, + "y": 265.98893, + "index": 15, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 318.77286, + "y": 270.77793, + "index": 16, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 320.91186, + "y": 276.65193, + "index": 17, + "body": { + "#": 1022 + }, + "isInternal": false + }, + { + "x": 303.18486, + "y": 279.77793 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00398, + "y": 2.91264 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1050 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1052 + }, + "max": { + "#": 1053 + } + }, + { + "x": 285.45291, + "y": 261.77793 + }, + { + "x": 320.91186, + "y": 300.71378 + }, + { + "x": 303.18884, + "y": 276.87517 + }, + [ + { + "#": 1056 + }, + { + "#": 1057 + }, + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + }, + { + "#": 1061 + }, + { + "#": 1062 + }, + { + "#": 1063 + }, + { + "#": 1064 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,5,6", + "startCol": 5, + "endCol": 6, + "startRow": 5, + "endRow": 6 + }, + { + "id": 27, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1067 + }, + "angle": 0, + "vertices": { + "#": 1068 + }, + "position": { + "#": 1087 + }, + "force": { + "#": 1088 + }, + "torque": 0, + "positionImpulse": { + "#": 1089 + }, + "constraintImpulse": { + "#": 1090 + }, + "totalContacts": 0, + "speed": 2.91854, + "angularSpeed": 0, + "velocity": { + "#": 1091 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1092 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1093 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 1095 + }, + "positionPrev": { + "#": 1098 + }, + "anglePrev": 0, + "axes": { + "#": 1099 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 1066 + }, + "sleepCounter": 0, + "region": { + "#": 1109 + } + }, + [ + { + "#": 1066 + } + ], + [ + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + }, + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + }, + { + "#": 1085 + }, + { + "#": 1086 + } + ], + { + "x": 356.32949, + "y": 282.91754, + "index": 0, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 354.19049, + "y": 288.79154, + "index": 1, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 350.17249, + "y": 293.58054, + "index": 2, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 344.75849, + "y": 296.70554, + "index": 3, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 338.60249, + "y": 297.79154, + "index": 4, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 332.44649, + "y": 296.70554, + "index": 5, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 327.03249, + "y": 293.58054, + "index": 6, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 323.01449, + "y": 288.79154, + "index": 7, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 320.87549, + "y": 282.91754, + "index": 8, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 320.87549, + "y": 276.66554, + "index": 9, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 323.01449, + "y": 270.79154, + "index": 10, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 327.03249, + "y": 266.00254, + "index": 11, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 332.44649, + "y": 262.87754, + "index": 12, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 338.60249, + "y": 261.79154, + "index": 13, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 344.75849, + "y": 262.87754, + "index": 14, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 350.17249, + "y": 266.00254, + "index": 15, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 354.19049, + "y": 270.79154, + "index": 16, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 356.32949, + "y": 276.66554, + "index": 17, + "body": { + "#": 1066 + }, + "isInternal": false + }, + { + "x": 338.60249, + "y": 279.79154 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00446, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00396, + "y": 2.90989 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1094 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1096 + }, + "max": { + "#": 1097 + } + }, + { + "x": 320.87131, + "y": 261.79154 + }, + { + "x": 356.32949, + "y": 300.7101 + }, + { + "x": 338.59853, + "y": 276.87177 + }, + [ + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + }, + { + "#": 1108 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,5,6", + "startCol": 6, + "endCol": 7, + "startRow": 5, + "endRow": 6 + }, + { + "id": 28, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1111 + }, + "angle": 0, + "vertices": { + "#": 1112 + }, + "position": { + "#": 1131 + }, + "force": { + "#": 1132 + }, + "torque": 0, + "positionImpulse": { + "#": 1133 + }, + "constraintImpulse": { + "#": 1134 + }, + "totalContacts": 0, + "speed": 2.90781, + "angularSpeed": 0, + "velocity": { + "#": 1135 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1136 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1137 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 1139 + }, + "positionPrev": { + "#": 1142 + }, + "anglePrev": 0, + "axes": { + "#": 1143 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 1110 + }, + "sleepCounter": 0, + "region": { + "#": 1153 + } + }, + [ + { + "#": 1110 + } + ], + [ + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + } + ], + { + "x": 391.74337, + "y": 282.88391, + "index": 0, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 389.60437, + "y": 288.75791, + "index": 1, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 385.58637, + "y": 293.54691, + "index": 2, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 380.17237, + "y": 296.67191, + "index": 3, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 374.01637, + "y": 297.75791, + "index": 4, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 367.86037, + "y": 296.67191, + "index": 5, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 362.44637, + "y": 293.54691, + "index": 6, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 358.42837, + "y": 288.75791, + "index": 7, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 356.28937, + "y": 282.88391, + "index": 8, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 356.28937, + "y": 276.63191, + "index": 9, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 358.42837, + "y": 270.75791, + "index": 10, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 362.44637, + "y": 265.96891, + "index": 11, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 367.86037, + "y": 262.84391, + "index": 12, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 374.01637, + "y": 261.75791, + "index": 13, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 380.17237, + "y": 262.84391, + "index": 14, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 385.58637, + "y": 265.96891, + "index": 15, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 389.60437, + "y": 270.75791, + "index": 16, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 391.74337, + "y": 276.63191, + "index": 17, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 374.01637, + "y": 279.75791 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00697, + "y": 2.90358 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1138 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1140 + }, + "max": { + "#": 1141 + } + }, + { + "x": 356.28937, + "y": 261.75791 + }, + { + "x": 391.75987, + "y": 300.67572 + }, + { + "x": 374.0094, + "y": 276.83765 + }, + [ + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + }, + { + "#": 1152 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,5,6", + "startCol": 7, + "endCol": 8, + "startRow": 5, + "endRow": 6 + }, + { + "id": 29, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1155 + }, + "angle": 0, + "vertices": { + "#": 1156 + }, + "position": { + "#": 1175 + }, + "force": { + "#": 1176 + }, + "torque": 0, + "positionImpulse": { + "#": 1177 + }, + "constraintImpulse": { + "#": 1178 + }, + "totalContacts": 0, + "speed": 2.92329, + "angularSpeed": 0, + "velocity": { + "#": 1179 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1180 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1181 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 18, + "bounds": { + "#": 1183 + }, + "positionPrev": { + "#": 1186 + }, + "anglePrev": 0, + "axes": { + "#": 1187 + }, + "area": 997.32068, + "mass": 0.99732, + "inverseMass": 1.00269, + "inverseInertia": 0, + "parent": { + "#": 1154 + }, + "sleepCounter": 0, + "region": { + "#": 1197 + } + }, + [ + { + "#": 1154 + } + ], + [ + { + "#": 1157 + }, + { + "#": 1158 + }, + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + }, + { + "#": 1163 + }, + { + "#": 1164 + }, + { + "#": 1165 + }, + { + "#": 1166 + }, + { + "#": 1167 + }, + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + } + ], + { + "x": 427.23782, + "y": 282.91695, + "index": 0, + "body": { + "#": 1154 + }, + "isInternal": false + }, + { + "x": 425.09882, + "y": 288.79095, + "index": 1, + "body": { + "#": 1154 + }, + "isInternal": false + }, + { + "x": 421.08082, + "y": 293.57995, + "index": 2, + "body": { + "#": 1154 + }, + "isInternal": false + }, + { + "x": 415.66682, + "y": 296.70495, + "index": 3, + "body": { + "#": 1154 + }, + "isInternal": false + }, + { + "x": 409.51082, + "y": 297.79095, + "index": 4, + "body": { + "#": 1154 + }, + "isInternal": false + }, + { + "x": 403.35482, + "y": 296.70495, + "index": 5, + "body": { + "#": 1154 + }, + "isInternal": false + }, + { + "x": 397.94082, + "y": 293.57995, + "index": 6, + "body": { + "#": 1154 + }, + "isInternal": false + }, + { + "x": 393.92282, + "y": 288.79095, + "index": 7, + "body": { + "#": 1154 + }, + "isInternal": false + }, + { + "x": 391.78382, + "y": 282.91695, + "index": 8, + "body": { + "#": 1154 + }, + "isInternal": false + }, + { + "x": 391.78382, + "y": 276.66495, + "index": 9, + "body": { + "#": 1154 + }, + "isInternal": false + }, + { + "x": 393.92282, + "y": 270.79095, + "index": 10, + "body": { + "#": 1154 + }, + "isInternal": false + }, + { + "x": 397.94082, + "y": 266.00195, + "index": 11, + "body": { + "#": 1154 + }, + "isInternal": false + }, + { + "x": 403.35482, + "y": 262.87695, + "index": 12, + "body": { + "#": 1154 + }, + "isInternal": false + }, + { + "x": 409.51082, + "y": 261.79095, + "index": 13, + "body": { + "#": 1154 + }, + "isInternal": false + }, + { + "x": 415.66682, + "y": 262.87695, + "index": 14, + "body": { + "#": 1154 + }, + "isInternal": false + }, + { + "x": 421.08082, + "y": 266.00195, + "index": 15, + "body": { + "#": 1154 + }, + "isInternal": false + }, + { + "x": 425.09882, + "y": 270.79095, + "index": 16, + "body": { + "#": 1154 + }, + "isInternal": false + }, + { + "x": 427.23782, + "y": 276.66495, + "index": 17, + "body": { + "#": 1154 + }, + "isInternal": false + }, + { + "x": 409.51082, + "y": 279.79095 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00613, + "y": 2.92328 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1182 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1184 + }, + "max": { + "#": 1185 + } + }, + { + "x": 391.78382, + "y": 261.79095 + }, + { + "x": 427.23782, + "y": 297.79095 + }, + { + "x": 409.51694, + "y": 276.87686 + }, + [ + { + "#": 1188 + }, + { + "#": 1189 + }, + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + }, + { + "#": 1194 + }, + { + "#": 1195 + }, + { + "#": 1196 + } + ], + { + "x": -0.93964, + "y": -0.34217 + }, + { + "x": -0.76608, + "y": -0.64275 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.93964, + "y": -0.34217 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,5,6", + "startCol": 8, + "endCol": 8, + "startRow": 5, + "endRow": 6 + }, + [ + { + "#": 1199 + }, + { + "#": 1203 + }, + { + "#": 1207 + }, + { + "#": 1211 + }, + { + "#": 1215 + }, + { + "#": 1219 + }, + { + "#": 1223 + }, + { + "#": 1227 + }, + { + "#": 1231 + }, + { + "#": 1235 + }, + { + "#": 1239 + }, + { + "#": 1243 + }, + { + "#": 1247 + }, + { + "#": 1251 + }, + { + "#": 1255 + }, + { + "#": 1259 + }, + { + "#": 1263 + }, + { + "#": 1267 + }, + { + "#": 1271 + }, + { + "#": 1275 + }, + { + "#": 1279 + }, + { + "#": 1283 + }, + { + "#": 1287 + }, + { + "#": 1291 + }, + { + "#": 1295 + }, + { + "#": 1299 + }, + { + "#": 1303 + }, + { + "#": 1307 + }, + { + "#": 1311 + }, + { + "#": 1315 + }, + { + "#": 1319 + }, + { + "#": 1323 + }, + { + "#": 1327 + }, + { + "#": 1331 + }, + { + "#": 1335 + }, + { + "#": 1339 + }, + { + "#": 1343 + }, + { + "#": 1347 + }, + { + "#": 1351 + }, + { + "#": 1355 + }, + { + "#": 1359 + }, + { + "#": 1363 + }, + { + "#": 1367 + }, + { + "#": 1371 + }, + { + "#": 1375 + }, + { + "#": 1379 + }, + { + "#": 1383 + }, + { + "#": 1387 + }, + { + "#": 1391 + }, + { + "#": 1395 + }, + { + "#": 1399 + }, + { + "#": 1403 + }, + { + "#": 1407 + }, + { + "#": 1411 + }, + { + "#": 1415 + }, + { + "#": 1419 + }, + { + "#": 1423 + }, + { + "#": 1427 + }, + { + "#": 1431 + }, + { + "#": 1435 + }, + { + "#": 1439 + }, + { + "#": 1443 + }, + { + "#": 1447 + }, + { + "#": 1451 + }, + { + "#": 1455 + }, + { + "#": 1459 + }, + { + "#": 1463 + }, + { + "#": 1467 + }, + { + "#": 1471 + }, + { + "#": 1475 + }, + { + "#": 1479 + }, + { + "#": 1483 + } + ], + { + "bodyA": { + "#": 98 + }, + "bodyB": { + "#": 142 + }, + "stiffness": 0.4, + "pointA": { + "#": 1200 + }, + "pointB": { + "#": 1201 + }, + "length": 35.454, + "render": { + "#": 1202 + }, + "id": 30, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 142 + }, + "bodyB": { + "#": 186 + }, + "stiffness": 0.4, + "pointA": { + "#": 1204 + }, + "pointB": { + "#": 1205 + }, + "length": 35.454, + "render": { + "#": 1206 + }, + "id": 31, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 186 + }, + "bodyB": { + "#": 230 + }, + "stiffness": 0.4, + "pointA": { + "#": 1208 + }, + "pointB": { + "#": 1209 + }, + "length": 35.454, + "render": { + "#": 1210 + }, + "id": 32, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 230 + }, + "bodyB": { + "#": 274 + }, + "stiffness": 0.4, + "pointA": { + "#": 1212 + }, + "pointB": { + "#": 1213 + }, + "length": 35.454, + "render": { + "#": 1214 + }, + "id": 33, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 318 + }, + "bodyB": { + "#": 362 + }, + "stiffness": 0.4, + "pointA": { + "#": 1216 + }, + "pointB": { + "#": 1217 + }, + "length": 35.454, + "render": { + "#": 1218 + }, + "id": 34, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 362 + }, + "bodyB": { + "#": 406 + }, + "stiffness": 0.4, + "pointA": { + "#": 1220 + }, + "pointB": { + "#": 1221 + }, + "length": 35.454, + "render": { + "#": 1222 + }, + "id": 35, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 406 + }, + "bodyB": { + "#": 450 + }, + "stiffness": 0.4, + "pointA": { + "#": 1224 + }, + "pointB": { + "#": 1225 + }, + "length": 35.454, + "render": { + "#": 1226 + }, + "id": 36, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 450 + }, + "bodyB": { + "#": 494 + }, + "stiffness": 0.4, + "pointA": { + "#": 1228 + }, + "pointB": { + "#": 1229 + }, + "length": 35.454, + "render": { + "#": 1230 + }, + "id": 37, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 98 + }, + "bodyB": { + "#": 318 + }, + "stiffness": 0.4, + "pointA": { + "#": 1232 + }, + "pointB": { + "#": 1233 + }, + "length": 36, + "render": { + "#": 1234 + }, + "id": 38, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 142 + }, + "bodyB": { + "#": 318 + }, + "stiffness": 0.4, + "pointA": { + "#": 1236 + }, + "pointB": { + "#": 1237 + }, + "length": 50.52708, + "render": { + "#": 1238 + }, + "id": 39, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 142 + }, + "bodyB": { + "#": 362 + }, + "stiffness": 0.4, + "pointA": { + "#": 1240 + }, + "pointB": { + "#": 1241 + }, + "length": 36, + "render": { + "#": 1242 + }, + "id": 40, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 98 + }, + "bodyB": { + "#": 362 + }, + "stiffness": 0.4, + "pointA": { + "#": 1244 + }, + "pointB": { + "#": 1245 + }, + "length": 50.52708, + "render": { + "#": 1246 + }, + "id": 41, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 186 + }, + "bodyB": { + "#": 362 + }, + "stiffness": 0.4, + "pointA": { + "#": 1248 + }, + "pointB": { + "#": 1249 + }, + "length": 50.52708, + "render": { + "#": 1250 + }, + "id": 42, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 186 + }, + "bodyB": { + "#": 406 + }, + "stiffness": 0.4, + "pointA": { + "#": 1252 + }, + "pointB": { + "#": 1253 + }, + "length": 36, + "render": { + "#": 1254 + }, + "id": 43, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 142 + }, + "bodyB": { + "#": 406 + }, + "stiffness": 0.4, + "pointA": { + "#": 1256 + }, + "pointB": { + "#": 1257 + }, + "length": 50.52708, + "render": { + "#": 1258 + }, + "id": 44, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 230 + }, + "bodyB": { + "#": 406 + }, + "stiffness": 0.4, + "pointA": { + "#": 1260 + }, + "pointB": { + "#": 1261 + }, + "length": 50.52708, + "render": { + "#": 1262 + }, + "id": 45, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 230 + }, + "bodyB": { + "#": 450 + }, + "stiffness": 0.4, + "pointA": { + "#": 1264 + }, + "pointB": { + "#": 1265 + }, + "length": 36, + "render": { + "#": 1266 + }, + "id": 46, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 186 + }, + "bodyB": { + "#": 450 + }, + "stiffness": 0.4, + "pointA": { + "#": 1268 + }, + "pointB": { + "#": 1269 + }, + "length": 50.52708, + "render": { + "#": 1270 + }, + "id": 47, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 274 + }, + "bodyB": { + "#": 450 + }, + "stiffness": 0.4, + "pointA": { + "#": 1272 + }, + "pointB": { + "#": 1273 + }, + "length": 50.52708, + "render": { + "#": 1274 + }, + "id": 48, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 274 + }, + "bodyB": { + "#": 494 + }, + "stiffness": 0.4, + "pointA": { + "#": 1276 + }, + "pointB": { + "#": 1277 + }, + "length": 36, + "render": { + "#": 1278 + }, + "id": 49, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 230 + }, + "bodyB": { + "#": 494 + }, + "stiffness": 0.4, + "pointA": { + "#": 1280 + }, + "pointB": { + "#": 1281 + }, + "length": 50.52708, + "render": { + "#": 1282 + }, + "id": 50, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 538 + }, + "bodyB": { + "#": 582 + }, + "stiffness": 0.4, + "pointA": { + "#": 1284 + }, + "pointB": { + "#": 1285 + }, + "length": 35.454, + "render": { + "#": 1286 + }, + "id": 51, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 582 + }, + "bodyB": { + "#": 626 + }, + "stiffness": 0.4, + "pointA": { + "#": 1288 + }, + "pointB": { + "#": 1289 + }, + "length": 35.454, + "render": { + "#": 1290 + }, + "id": 52, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 626 + }, + "bodyB": { + "#": 670 + }, + "stiffness": 0.4, + "pointA": { + "#": 1292 + }, + "pointB": { + "#": 1293 + }, + "length": 35.454, + "render": { + "#": 1294 + }, + "id": 53, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 670 + }, + "bodyB": { + "#": 714 + }, + "stiffness": 0.4, + "pointA": { + "#": 1296 + }, + "pointB": { + "#": 1297 + }, + "length": 35.454, + "render": { + "#": 1298 + }, + "id": 54, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 318 + }, + "bodyB": { + "#": 538 + }, + "stiffness": 0.4, + "pointA": { + "#": 1300 + }, + "pointB": { + "#": 1301 + }, + "length": 36, + "render": { + "#": 1302 + }, + "id": 55, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 362 + }, + "bodyB": { + "#": 538 + }, + "stiffness": 0.4, + "pointA": { + "#": 1304 + }, + "pointB": { + "#": 1305 + }, + "length": 50.52708, + "render": { + "#": 1306 + }, + "id": 56, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 362 + }, + "bodyB": { + "#": 582 + }, + "stiffness": 0.4, + "pointA": { + "#": 1308 + }, + "pointB": { + "#": 1309 + }, + "length": 36, + "render": { + "#": 1310 + }, + "id": 57, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 318 + }, + "bodyB": { + "#": 582 + }, + "stiffness": 0.4, + "pointA": { + "#": 1312 + }, + "pointB": { + "#": 1313 + }, + "length": 50.52708, + "render": { + "#": 1314 + }, + "id": 58, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 406 + }, + "bodyB": { + "#": 582 + }, + "stiffness": 0.4, + "pointA": { + "#": 1316 + }, + "pointB": { + "#": 1317 + }, + "length": 50.52708, + "render": { + "#": 1318 + }, + "id": 59, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 406 + }, + "bodyB": { + "#": 626 + }, + "stiffness": 0.4, + "pointA": { + "#": 1320 + }, + "pointB": { + "#": 1321 + }, + "length": 36, + "render": { + "#": 1322 + }, + "id": 60, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 362 + }, + "bodyB": { + "#": 626 + }, + "stiffness": 0.4, + "pointA": { + "#": 1324 + }, + "pointB": { + "#": 1325 + }, + "length": 50.52708, + "render": { + "#": 1326 + }, + "id": 61, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 450 + }, + "bodyB": { + "#": 626 + }, + "stiffness": 0.4, + "pointA": { + "#": 1328 + }, + "pointB": { + "#": 1329 + }, + "length": 50.52708, + "render": { + "#": 1330 + }, + "id": 62, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 450 + }, + "bodyB": { + "#": 670 + }, + "stiffness": 0.4, + "pointA": { + "#": 1332 + }, + "pointB": { + "#": 1333 + }, + "length": 36, + "render": { + "#": 1334 + }, + "id": 63, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 406 + }, + "bodyB": { + "#": 670 + }, + "stiffness": 0.4, + "pointA": { + "#": 1336 + }, + "pointB": { + "#": 1337 + }, + "length": 50.52708, + "render": { + "#": 1338 + }, + "id": 64, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 494 + }, + "bodyB": { + "#": 670 + }, + "stiffness": 0.4, + "pointA": { + "#": 1340 + }, + "pointB": { + "#": 1341 + }, + "length": 50.52708, + "render": { + "#": 1342 + }, + "id": 65, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 494 + }, + "bodyB": { + "#": 714 + }, + "stiffness": 0.4, + "pointA": { + "#": 1344 + }, + "pointB": { + "#": 1345 + }, + "length": 36, + "render": { + "#": 1346 + }, + "id": 66, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 450 + }, + "bodyB": { + "#": 714 + }, + "stiffness": 0.4, + "pointA": { + "#": 1348 + }, + "pointB": { + "#": 1349 + }, + "length": 50.52708, + "render": { + "#": 1350 + }, + "id": 67, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 758 + }, + "bodyB": { + "#": 802 + }, + "stiffness": 0.4, + "pointA": { + "#": 1352 + }, + "pointB": { + "#": 1353 + }, + "length": 35.454, + "render": { + "#": 1354 + }, + "id": 68, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 802 + }, + "bodyB": { + "#": 846 + }, + "stiffness": 0.4, + "pointA": { + "#": 1356 + }, + "pointB": { + "#": 1357 + }, + "length": 35.454, + "render": { + "#": 1358 + }, + "id": 69, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 846 + }, + "bodyB": { + "#": 890 + }, + "stiffness": 0.4, + "pointA": { + "#": 1360 + }, + "pointB": { + "#": 1361 + }, + "length": 35.454, + "render": { + "#": 1362 + }, + "id": 70, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 890 + }, + "bodyB": { + "#": 934 + }, + "stiffness": 0.4, + "pointA": { + "#": 1364 + }, + "pointB": { + "#": 1365 + }, + "length": 35.454, + "render": { + "#": 1366 + }, + "id": 71, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 538 + }, + "bodyB": { + "#": 758 + }, + "stiffness": 0.4, + "pointA": { + "#": 1368 + }, + "pointB": { + "#": 1369 + }, + "length": 36, + "render": { + "#": 1370 + }, + "id": 72, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 582 + }, + "bodyB": { + "#": 758 + }, + "stiffness": 0.4, + "pointA": { + "#": 1372 + }, + "pointB": { + "#": 1373 + }, + "length": 50.52708, + "render": { + "#": 1374 + }, + "id": 73, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 582 + }, + "bodyB": { + "#": 802 + }, + "stiffness": 0.4, + "pointA": { + "#": 1376 + }, + "pointB": { + "#": 1377 + }, + "length": 36, + "render": { + "#": 1378 + }, + "id": 74, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 538 + }, + "bodyB": { + "#": 802 + }, + "stiffness": 0.4, + "pointA": { + "#": 1380 + }, + "pointB": { + "#": 1381 + }, + "length": 50.52708, + "render": { + "#": 1382 + }, + "id": 75, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 626 + }, + "bodyB": { + "#": 802 + }, + "stiffness": 0.4, + "pointA": { + "#": 1384 + }, + "pointB": { + "#": 1385 + }, + "length": 50.52708, + "render": { + "#": 1386 + }, + "id": 76, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 626 + }, + "bodyB": { + "#": 846 + }, + "stiffness": 0.4, + "pointA": { + "#": 1388 + }, + "pointB": { + "#": 1389 + }, + "length": 36, + "render": { + "#": 1390 + }, + "id": 77, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 582 + }, + "bodyB": { + "#": 846 + }, + "stiffness": 0.4, + "pointA": { + "#": 1392 + }, + "pointB": { + "#": 1393 + }, + "length": 50.52708, + "render": { + "#": 1394 + }, + "id": 78, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 670 + }, + "bodyB": { + "#": 846 + }, + "stiffness": 0.4, + "pointA": { + "#": 1396 + }, + "pointB": { + "#": 1397 + }, + "length": 50.52708, + "render": { + "#": 1398 + }, + "id": 79, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 670 + }, + "bodyB": { + "#": 890 + }, + "stiffness": 0.4, + "pointA": { + "#": 1400 + }, + "pointB": { + "#": 1401 + }, + "length": 36, + "render": { + "#": 1402 + }, + "id": 80, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 626 + }, + "bodyB": { + "#": 890 + }, + "stiffness": 0.4, + "pointA": { + "#": 1404 + }, + "pointB": { + "#": 1405 + }, + "length": 50.52708, + "render": { + "#": 1406 + }, + "id": 81, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 714 + }, + "bodyB": { + "#": 890 + }, + "stiffness": 0.4, + "pointA": { + "#": 1408 + }, + "pointB": { + "#": 1409 + }, + "length": 50.52708, + "render": { + "#": 1410 + }, + "id": 82, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 714 + }, + "bodyB": { + "#": 934 + }, + "stiffness": 0.4, + "pointA": { + "#": 1412 + }, + "pointB": { + "#": 1413 + }, + "length": 36, + "render": { + "#": 1414 + }, + "id": 83, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 670 + }, + "bodyB": { + "#": 934 + }, + "stiffness": 0.4, + "pointA": { + "#": 1416 + }, + "pointB": { + "#": 1417 + }, + "length": 50.52708, + "render": { + "#": 1418 + }, + "id": 84, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 978 + }, + "bodyB": { + "#": 1022 + }, + "stiffness": 0.4, + "pointA": { + "#": 1420 + }, + "pointB": { + "#": 1421 + }, + "length": 35.454, + "render": { + "#": 1422 + }, + "id": 85, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1022 + }, + "bodyB": { + "#": 1066 + }, + "stiffness": 0.4, + "pointA": { + "#": 1424 + }, + "pointB": { + "#": 1425 + }, + "length": 35.454, + "render": { + "#": 1426 + }, + "id": 86, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1066 + }, + "bodyB": { + "#": 1110 + }, + "stiffness": 0.4, + "pointA": { + "#": 1428 + }, + "pointB": { + "#": 1429 + }, + "length": 35.454, + "render": { + "#": 1430 + }, + "id": 87, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1110 + }, + "bodyB": { + "#": 1154 + }, + "stiffness": 0.4, + "pointA": { + "#": 1432 + }, + "pointB": { + "#": 1433 + }, + "length": 35.454, + "render": { + "#": 1434 + }, + "id": 88, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 758 + }, + "bodyB": { + "#": 978 + }, + "stiffness": 0.4, + "pointA": { + "#": 1436 + }, + "pointB": { + "#": 1437 + }, + "length": 36, + "render": { + "#": 1438 + }, + "id": 89, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 802 + }, + "bodyB": { + "#": 978 + }, + "stiffness": 0.4, + "pointA": { + "#": 1440 + }, + "pointB": { + "#": 1441 + }, + "length": 50.52708, + "render": { + "#": 1442 + }, + "id": 90, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 802 + }, + "bodyB": { + "#": 1022 + }, + "stiffness": 0.4, + "pointA": { + "#": 1444 + }, + "pointB": { + "#": 1445 + }, + "length": 36, + "render": { + "#": 1446 + }, + "id": 91, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 758 + }, + "bodyB": { + "#": 1022 + }, + "stiffness": 0.4, + "pointA": { + "#": 1448 + }, + "pointB": { + "#": 1449 + }, + "length": 50.52708, + "render": { + "#": 1450 + }, + "id": 92, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 846 + }, + "bodyB": { + "#": 1022 + }, + "stiffness": 0.4, + "pointA": { + "#": 1452 + }, + "pointB": { + "#": 1453 + }, + "length": 50.52708, + "render": { + "#": 1454 + }, + "id": 93, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 846 + }, + "bodyB": { + "#": 1066 + }, + "stiffness": 0.4, + "pointA": { + "#": 1456 + }, + "pointB": { + "#": 1457 + }, + "length": 36, + "render": { + "#": 1458 + }, + "id": 94, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 802 + }, + "bodyB": { + "#": 1066 + }, + "stiffness": 0.4, + "pointA": { + "#": 1460 + }, + "pointB": { + "#": 1461 + }, + "length": 50.52708, + "render": { + "#": 1462 + }, + "id": 95, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 890 + }, + "bodyB": { + "#": 1066 + }, + "stiffness": 0.4, + "pointA": { + "#": 1464 + }, + "pointB": { + "#": 1465 + }, + "length": 50.52708, + "render": { + "#": 1466 + }, + "id": 96, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 890 + }, + "bodyB": { + "#": 1110 + }, + "stiffness": 0.4, + "pointA": { + "#": 1468 + }, + "pointB": { + "#": 1469 + }, + "length": 36, + "render": { + "#": 1470 + }, + "id": 97, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 846 + }, + "bodyB": { + "#": 1110 + }, + "stiffness": 0.4, + "pointA": { + "#": 1472 + }, + "pointB": { + "#": 1473 + }, + "length": 50.52708, + "render": { + "#": 1474 + }, + "id": 98, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 934 + }, + "bodyB": { + "#": 1110 + }, + "stiffness": 0.4, + "pointA": { + "#": 1476 + }, + "pointB": { + "#": 1477 + }, + "length": 50.52708, + "render": { + "#": 1478 + }, + "id": 99, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 934 + }, + "bodyB": { + "#": 1154 + }, + "stiffness": 0.4, + "pointA": { + "#": 1480 + }, + "pointB": { + "#": 1481 + }, + "length": 36, + "render": { + "#": 1482 + }, + "id": 100, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 890 + }, + "bodyB": { + "#": 1154 + }, + "stiffness": 0.4, + "pointA": { + "#": 1484 + }, + "pointB": { + "#": 1485 + }, + "length": 50.52708, + "render": { + "#": 1486 + }, + "id": 101, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "id": 102, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 1489 + }, + "constraints": { + "#": 2474 + }, + "composites": { + "#": 2735 + }, + "label": "Soft Body" + }, + [ + { + "#": 1490 + }, + { + "#": 1531 + }, + { + "#": 1572 + }, + { + "#": 1613 + }, + { + "#": 1654 + }, + { + "#": 1695 + }, + { + "#": 1736 + }, + { + "#": 1777 + }, + { + "#": 1818 + }, + { + "#": 1859 + }, + { + "#": 1900 + }, + { + "#": 1941 + }, + { + "#": 1982 + }, + { + "#": 2023 + }, + { + "#": 2064 + }, + { + "#": 2105 + }, + { + "#": 2146 + }, + { + "#": 2187 + }, + { + "#": 2228 + }, + { + "#": 2269 + }, + { + "#": 2310 + }, + { + "#": 2351 + }, + { + "#": 2392 + }, + { + "#": 2433 + } + ], + { + "id": 103, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1491 + }, + "angle": 0, + "vertices": { + "#": 1492 + }, + "position": { + "#": 1509 + }, + "force": { + "#": 1510 + }, + "torque": 0, + "positionImpulse": { + "#": 1511 + }, + "constraintImpulse": { + "#": 1512 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1513 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1514 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1515 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1517 + }, + "positionPrev": { + "#": 1520 + }, + "anglePrev": 0, + "axes": { + "#": 1521 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1490 + }, + "sleepCounter": 0, + "region": { + "#": 1530 + } + }, + [ + { + "#": 1490 + } + ], + [ + { + "#": 1493 + }, + { + "#": 1494 + }, + { + "#": 1495 + }, + { + "#": 1496 + }, + { + "#": 1497 + }, + { + "#": 1498 + }, + { + "#": 1499 + }, + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + } + ], + { + "x": 279.424, + "y": 335.37375, + "index": 0, + "body": { + "#": 1490 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 340.78175, + "index": 1, + "body": { + "#": 1490 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 344.91975, + "index": 2, + "body": { + "#": 1490 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 347.15975, + "index": 3, + "body": { + "#": 1490 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 347.15975, + "index": 4, + "body": { + "#": 1490 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 344.91975, + "index": 5, + "body": { + "#": 1490 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 340.78175, + "index": 6, + "body": { + "#": 1490 + }, + "isInternal": false + }, + { + "x": 250, + "y": 335.37375, + "index": 7, + "body": { + "#": 1490 + }, + "isInternal": false + }, + { + "x": 250, + "y": 329.52175, + "index": 8, + "body": { + "#": 1490 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 324.11375, + "index": 9, + "body": { + "#": 1490 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 319.97575, + "index": 10, + "body": { + "#": 1490 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 317.73575, + "index": 11, + "body": { + "#": 1490 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 317.73575, + "index": 12, + "body": { + "#": 1490 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 319.97575, + "index": 13, + "body": { + "#": 1490 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 324.11375, + "index": 14, + "body": { + "#": 1490 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 329.52175, + "index": 15, + "body": { + "#": 1490 + }, + "isInternal": false + }, + { + "x": 264.712, + "y": 332.44775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1516 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1518 + }, + "max": { + "#": 1519 + } + }, + { + "x": 250, + "y": 317.73575 + }, + { + "x": 279.424, + "y": 347.15975 + }, + { + "x": 264.712, + "y": 329.54048 + }, + [ + { + "#": 1522 + }, + { + "#": 1523 + }, + { + "#": 1524 + }, + { + "#": 1525 + }, + { + "#": 1526 + }, + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,6,7", + "startCol": 5, + "endCol": 5, + "startRow": 6, + "endRow": 7 + }, + { + "id": 104, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1532 + }, + "angle": 0, + "vertices": { + "#": 1533 + }, + "position": { + "#": 1550 + }, + "force": { + "#": 1551 + }, + "torque": 0, + "positionImpulse": { + "#": 1552 + }, + "constraintImpulse": { + "#": 1553 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1554 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1555 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1556 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1558 + }, + "positionPrev": { + "#": 1561 + }, + "anglePrev": 0, + "axes": { + "#": 1562 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1531 + }, + "sleepCounter": 0, + "region": { + "#": 1571 + } + }, + [ + { + "#": 1531 + } + ], + [ + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + }, + { + "#": 1537 + }, + { + "#": 1538 + }, + { + "#": 1539 + }, + { + "#": 1540 + }, + { + "#": 1541 + }, + { + "#": 1542 + }, + { + "#": 1543 + }, + { + "#": 1544 + }, + { + "#": 1545 + }, + { + "#": 1546 + }, + { + "#": 1547 + }, + { + "#": 1548 + }, + { + "#": 1549 + } + ], + { + "x": 308.848, + "y": 335.37375, + "index": 0, + "body": { + "#": 1531 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 340.78175, + "index": 1, + "body": { + "#": 1531 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 344.91975, + "index": 2, + "body": { + "#": 1531 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 347.15975, + "index": 3, + "body": { + "#": 1531 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 347.15975, + "index": 4, + "body": { + "#": 1531 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 344.91975, + "index": 5, + "body": { + "#": 1531 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 340.78175, + "index": 6, + "body": { + "#": 1531 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 335.37375, + "index": 7, + "body": { + "#": 1531 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 329.52175, + "index": 8, + "body": { + "#": 1531 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 324.11375, + "index": 9, + "body": { + "#": 1531 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 319.97575, + "index": 10, + "body": { + "#": 1531 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 317.73575, + "index": 11, + "body": { + "#": 1531 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 317.73575, + "index": 12, + "body": { + "#": 1531 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 319.97575, + "index": 13, + "body": { + "#": 1531 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 324.11375, + "index": 14, + "body": { + "#": 1531 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 329.52175, + "index": 15, + "body": { + "#": 1531 + }, + "isInternal": false + }, + { + "x": 294.136, + "y": 332.44775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1557 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1559 + }, + "max": { + "#": 1560 + } + }, + { + "x": 279.424, + "y": 317.73575 + }, + { + "x": 308.848, + "y": 347.15975 + }, + { + "x": 294.136, + "y": 329.54048 + }, + [ + { + "#": 1563 + }, + { + "#": 1564 + }, + { + "#": 1565 + }, + { + "#": 1566 + }, + { + "#": 1567 + }, + { + "#": 1568 + }, + { + "#": 1569 + }, + { + "#": 1570 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,6,7", + "startCol": 5, + "endCol": 6, + "startRow": 6, + "endRow": 7 + }, + { + "id": 105, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1573 + }, + "angle": 0, + "vertices": { + "#": 1574 + }, + "position": { + "#": 1591 + }, + "force": { + "#": 1592 + }, + "torque": 0, + "positionImpulse": { + "#": 1593 + }, + "constraintImpulse": { + "#": 1594 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1595 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1596 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1597 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1599 + }, + "positionPrev": { + "#": 1602 + }, + "anglePrev": 0, + "axes": { + "#": 1603 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1572 + }, + "sleepCounter": 0, + "region": { + "#": 1612 + } + }, + [ + { + "#": 1572 + } + ], + [ + { + "#": 1575 + }, + { + "#": 1576 + }, + { + "#": 1577 + }, + { + "#": 1578 + }, + { + "#": 1579 + }, + { + "#": 1580 + }, + { + "#": 1581 + }, + { + "#": 1582 + }, + { + "#": 1583 + }, + { + "#": 1584 + }, + { + "#": 1585 + }, + { + "#": 1586 + }, + { + "#": 1587 + }, + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + } + ], + { + "x": 338.272, + "y": 335.37375, + "index": 0, + "body": { + "#": 1572 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 340.78175, + "index": 1, + "body": { + "#": 1572 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 344.91975, + "index": 2, + "body": { + "#": 1572 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 347.15975, + "index": 3, + "body": { + "#": 1572 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 347.15975, + "index": 4, + "body": { + "#": 1572 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 344.91975, + "index": 5, + "body": { + "#": 1572 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 340.78175, + "index": 6, + "body": { + "#": 1572 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 335.37375, + "index": 7, + "body": { + "#": 1572 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 329.52175, + "index": 8, + "body": { + "#": 1572 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 324.11375, + "index": 9, + "body": { + "#": 1572 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 319.97575, + "index": 10, + "body": { + "#": 1572 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 317.73575, + "index": 11, + "body": { + "#": 1572 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 317.73575, + "index": 12, + "body": { + "#": 1572 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 319.97575, + "index": 13, + "body": { + "#": 1572 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 324.11375, + "index": 14, + "body": { + "#": 1572 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 329.52175, + "index": 15, + "body": { + "#": 1572 + }, + "isInternal": false + }, + { + "x": 323.56, + "y": 332.44775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1598 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1600 + }, + "max": { + "#": 1601 + } + }, + { + "x": 308.848, + "y": 317.73575 + }, + { + "x": 338.272, + "y": 347.15975 + }, + { + "x": 323.56, + "y": 329.54048 + }, + [ + { + "#": 1604 + }, + { + "#": 1605 + }, + { + "#": 1606 + }, + { + "#": 1607 + }, + { + "#": 1608 + }, + { + "#": 1609 + }, + { + "#": 1610 + }, + { + "#": 1611 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,6,7", + "startCol": 6, + "endCol": 7, + "startRow": 6, + "endRow": 7 + }, + { + "id": 106, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1614 + }, + "angle": 0, + "vertices": { + "#": 1615 + }, + "position": { + "#": 1632 + }, + "force": { + "#": 1633 + }, + "torque": 0, + "positionImpulse": { + "#": 1634 + }, + "constraintImpulse": { + "#": 1635 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1636 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1637 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1638 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1640 + }, + "positionPrev": { + "#": 1643 + }, + "anglePrev": 0, + "axes": { + "#": 1644 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1613 + }, + "sleepCounter": 0, + "region": { + "#": 1653 + } + }, + [ + { + "#": 1613 + } + ], + [ + { + "#": 1616 + }, + { + "#": 1617 + }, + { + "#": 1618 + }, + { + "#": 1619 + }, + { + "#": 1620 + }, + { + "#": 1621 + }, + { + "#": 1622 + }, + { + "#": 1623 + }, + { + "#": 1624 + }, + { + "#": 1625 + }, + { + "#": 1626 + }, + { + "#": 1627 + }, + { + "#": 1628 + }, + { + "#": 1629 + }, + { + "#": 1630 + }, + { + "#": 1631 + } + ], + { + "x": 367.696, + "y": 335.37375, + "index": 0, + "body": { + "#": 1613 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 340.78175, + "index": 1, + "body": { + "#": 1613 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 344.91975, + "index": 2, + "body": { + "#": 1613 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 347.15975, + "index": 3, + "body": { + "#": 1613 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 347.15975, + "index": 4, + "body": { + "#": 1613 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 344.91975, + "index": 5, + "body": { + "#": 1613 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 340.78175, + "index": 6, + "body": { + "#": 1613 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 335.37375, + "index": 7, + "body": { + "#": 1613 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 329.52175, + "index": 8, + "body": { + "#": 1613 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 324.11375, + "index": 9, + "body": { + "#": 1613 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 319.97575, + "index": 10, + "body": { + "#": 1613 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 317.73575, + "index": 11, + "body": { + "#": 1613 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 317.73575, + "index": 12, + "body": { + "#": 1613 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 319.97575, + "index": 13, + "body": { + "#": 1613 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 324.11375, + "index": 14, + "body": { + "#": 1613 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 329.52175, + "index": 15, + "body": { + "#": 1613 + }, + "isInternal": false + }, + { + "x": 352.984, + "y": 332.44775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1639 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1641 + }, + "max": { + "#": 1642 + } + }, + { + "x": 338.272, + "y": 317.73575 + }, + { + "x": 367.696, + "y": 347.15975 + }, + { + "x": 352.984, + "y": 329.54048 + }, + [ + { + "#": 1645 + }, + { + "#": 1646 + }, + { + "#": 1647 + }, + { + "#": 1648 + }, + { + "#": 1649 + }, + { + "#": 1650 + }, + { + "#": 1651 + }, + { + "#": 1652 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,6,7", + "startCol": 7, + "endCol": 7, + "startRow": 6, + "endRow": 7 + }, + { + "id": 107, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1655 + }, + "angle": 0, + "vertices": { + "#": 1656 + }, + "position": { + "#": 1673 + }, + "force": { + "#": 1674 + }, + "torque": 0, + "positionImpulse": { + "#": 1675 + }, + "constraintImpulse": { + "#": 1676 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1677 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1678 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1679 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1681 + }, + "positionPrev": { + "#": 1684 + }, + "anglePrev": 0, + "axes": { + "#": 1685 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1654 + }, + "sleepCounter": 0, + "region": { + "#": 1694 + } + }, + [ + { + "#": 1654 + } + ], + [ + { + "#": 1657 + }, + { + "#": 1658 + }, + { + "#": 1659 + }, + { + "#": 1660 + }, + { + "#": 1661 + }, + { + "#": 1662 + }, + { + "#": 1663 + }, + { + "#": 1664 + }, + { + "#": 1665 + }, + { + "#": 1666 + }, + { + "#": 1667 + }, + { + "#": 1668 + }, + { + "#": 1669 + }, + { + "#": 1670 + }, + { + "#": 1671 + }, + { + "#": 1672 + } + ], + { + "x": 397.12, + "y": 335.37375, + "index": 0, + "body": { + "#": 1654 + }, + "isInternal": false + }, + { + "x": 394.88, + "y": 340.78175, + "index": 1, + "body": { + "#": 1654 + }, + "isInternal": false + }, + { + "x": 390.742, + "y": 344.91975, + "index": 2, + "body": { + "#": 1654 + }, + "isInternal": false + }, + { + "x": 385.334, + "y": 347.15975, + "index": 3, + "body": { + "#": 1654 + }, + "isInternal": false + }, + { + "x": 379.482, + "y": 347.15975, + "index": 4, + "body": { + "#": 1654 + }, + "isInternal": false + }, + { + "x": 374.074, + "y": 344.91975, + "index": 5, + "body": { + "#": 1654 + }, + "isInternal": false + }, + { + "x": 369.936, + "y": 340.78175, + "index": 6, + "body": { + "#": 1654 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 335.37375, + "index": 7, + "body": { + "#": 1654 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 329.52175, + "index": 8, + "body": { + "#": 1654 + }, + "isInternal": false + }, + { + "x": 369.936, + "y": 324.11375, + "index": 9, + "body": { + "#": 1654 + }, + "isInternal": false + }, + { + "x": 374.074, + "y": 319.97575, + "index": 10, + "body": { + "#": 1654 + }, + "isInternal": false + }, + { + "x": 379.482, + "y": 317.73575, + "index": 11, + "body": { + "#": 1654 + }, + "isInternal": false + }, + { + "x": 385.334, + "y": 317.73575, + "index": 12, + "body": { + "#": 1654 + }, + "isInternal": false + }, + { + "x": 390.742, + "y": 319.97575, + "index": 13, + "body": { + "#": 1654 + }, + "isInternal": false + }, + { + "x": 394.88, + "y": 324.11375, + "index": 14, + "body": { + "#": 1654 + }, + "isInternal": false + }, + { + "x": 397.12, + "y": 329.52175, + "index": 15, + "body": { + "#": 1654 + }, + "isInternal": false + }, + { + "x": 382.408, + "y": 332.44775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1680 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1682 + }, + "max": { + "#": 1683 + } + }, + { + "x": 367.696, + "y": 317.73575 + }, + { + "x": 397.12, + "y": 347.15975 + }, + { + "x": 382.408, + "y": 329.54048 + }, + [ + { + "#": 1686 + }, + { + "#": 1687 + }, + { + "#": 1688 + }, + { + "#": 1689 + }, + { + "#": 1690 + }, + { + "#": 1691 + }, + { + "#": 1692 + }, + { + "#": 1693 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,6,7", + "startCol": 7, + "endCol": 8, + "startRow": 6, + "endRow": 7 + }, + { + "id": 108, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1696 + }, + "angle": 0, + "vertices": { + "#": 1697 + }, + "position": { + "#": 1714 + }, + "force": { + "#": 1715 + }, + "torque": 0, + "positionImpulse": { + "#": 1716 + }, + "constraintImpulse": { + "#": 1717 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1718 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1719 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1720 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1722 + }, + "positionPrev": { + "#": 1725 + }, + "anglePrev": 0, + "axes": { + "#": 1726 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1695 + }, + "sleepCounter": 0, + "region": { + "#": 1735 + } + }, + [ + { + "#": 1695 + } + ], + [ + { + "#": 1698 + }, + { + "#": 1699 + }, + { + "#": 1700 + }, + { + "#": 1701 + }, + { + "#": 1702 + }, + { + "#": 1703 + }, + { + "#": 1704 + }, + { + "#": 1705 + }, + { + "#": 1706 + }, + { + "#": 1707 + }, + { + "#": 1708 + }, + { + "#": 1709 + }, + { + "#": 1710 + }, + { + "#": 1711 + }, + { + "#": 1712 + }, + { + "#": 1713 + } + ], + { + "x": 426.544, + "y": 335.37375, + "index": 0, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 424.304, + "y": 340.78175, + "index": 1, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 420.166, + "y": 344.91975, + "index": 2, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 414.758, + "y": 347.15975, + "index": 3, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 408.906, + "y": 347.15975, + "index": 4, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 403.498, + "y": 344.91975, + "index": 5, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 399.36, + "y": 340.78175, + "index": 6, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 397.12, + "y": 335.37375, + "index": 7, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 397.12, + "y": 329.52175, + "index": 8, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 399.36, + "y": 324.11375, + "index": 9, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 403.498, + "y": 319.97575, + "index": 10, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 408.906, + "y": 317.73575, + "index": 11, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 414.758, + "y": 317.73575, + "index": 12, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 420.166, + "y": 319.97575, + "index": 13, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 424.304, + "y": 324.11375, + "index": 14, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 426.544, + "y": 329.52175, + "index": 15, + "body": { + "#": 1695 + }, + "isInternal": false + }, + { + "x": 411.832, + "y": 332.44775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1721 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1723 + }, + "max": { + "#": 1724 + } + }, + { + "x": 397.12, + "y": 317.73575 + }, + { + "x": 426.544, + "y": 347.15975 + }, + { + "x": 411.832, + "y": 329.54048 + }, + [ + { + "#": 1727 + }, + { + "#": 1728 + }, + { + "#": 1729 + }, + { + "#": 1730 + }, + { + "#": 1731 + }, + { + "#": 1732 + }, + { + "#": 1733 + }, + { + "#": 1734 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,6,7", + "startCol": 8, + "endCol": 8, + "startRow": 6, + "endRow": 7 + }, + { + "id": 109, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1737 + }, + "angle": 0, + "vertices": { + "#": 1738 + }, + "position": { + "#": 1755 + }, + "force": { + "#": 1756 + }, + "torque": 0, + "positionImpulse": { + "#": 1757 + }, + "constraintImpulse": { + "#": 1758 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1759 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1760 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1761 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1763 + }, + "positionPrev": { + "#": 1766 + }, + "anglePrev": 0, + "axes": { + "#": 1767 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1736 + }, + "sleepCounter": 0, + "region": { + "#": 1776 + } + }, + [ + { + "#": 1736 + } + ], + [ + { + "#": 1739 + }, + { + "#": 1740 + }, + { + "#": 1741 + }, + { + "#": 1742 + }, + { + "#": 1743 + }, + { + "#": 1744 + }, + { + "#": 1745 + }, + { + "#": 1746 + }, + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + }, + { + "#": 1751 + }, + { + "#": 1752 + }, + { + "#": 1753 + }, + { + "#": 1754 + } + ], + { + "x": 455.968, + "y": 335.37375, + "index": 0, + "body": { + "#": 1736 + }, + "isInternal": false + }, + { + "x": 453.728, + "y": 340.78175, + "index": 1, + "body": { + "#": 1736 + }, + "isInternal": false + }, + { + "x": 449.59, + "y": 344.91975, + "index": 2, + "body": { + "#": 1736 + }, + "isInternal": false + }, + { + "x": 444.182, + "y": 347.15975, + "index": 3, + "body": { + "#": 1736 + }, + "isInternal": false + }, + { + "x": 438.33, + "y": 347.15975, + "index": 4, + "body": { + "#": 1736 + }, + "isInternal": false + }, + { + "x": 432.922, + "y": 344.91975, + "index": 5, + "body": { + "#": 1736 + }, + "isInternal": false + }, + { + "x": 428.784, + "y": 340.78175, + "index": 6, + "body": { + "#": 1736 + }, + "isInternal": false + }, + { + "x": 426.544, + "y": 335.37375, + "index": 7, + "body": { + "#": 1736 + }, + "isInternal": false + }, + { + "x": 426.544, + "y": 329.52175, + "index": 8, + "body": { + "#": 1736 + }, + "isInternal": false + }, + { + "x": 428.784, + "y": 324.11375, + "index": 9, + "body": { + "#": 1736 + }, + "isInternal": false + }, + { + "x": 432.922, + "y": 319.97575, + "index": 10, + "body": { + "#": 1736 + }, + "isInternal": false + }, + { + "x": 438.33, + "y": 317.73575, + "index": 11, + "body": { + "#": 1736 + }, + "isInternal": false + }, + { + "x": 444.182, + "y": 317.73575, + "index": 12, + "body": { + "#": 1736 + }, + "isInternal": false + }, + { + "x": 449.59, + "y": 319.97575, + "index": 13, + "body": { + "#": 1736 + }, + "isInternal": false + }, + { + "x": 453.728, + "y": 324.11375, + "index": 14, + "body": { + "#": 1736 + }, + "isInternal": false + }, + { + "x": 455.968, + "y": 329.52175, + "index": 15, + "body": { + "#": 1736 + }, + "isInternal": false + }, + { + "x": 441.256, + "y": 332.44775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1762 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1764 + }, + "max": { + "#": 1765 + } + }, + { + "x": 426.544, + "y": 317.73575 + }, + { + "x": 455.968, + "y": 347.15975 + }, + { + "x": 441.256, + "y": 329.54048 + }, + [ + { + "#": 1768 + }, + { + "#": 1769 + }, + { + "#": 1770 + }, + { + "#": 1771 + }, + { + "#": 1772 + }, + { + "#": 1773 + }, + { + "#": 1774 + }, + { + "#": 1775 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,6,7", + "startCol": 8, + "endCol": 9, + "startRow": 6, + "endRow": 7 + }, + { + "id": 110, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1778 + }, + "angle": 0, + "vertices": { + "#": 1779 + }, + "position": { + "#": 1796 + }, + "force": { + "#": 1797 + }, + "torque": 0, + "positionImpulse": { + "#": 1798 + }, + "constraintImpulse": { + "#": 1799 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1800 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1801 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1802 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1804 + }, + "positionPrev": { + "#": 1807 + }, + "anglePrev": 0, + "axes": { + "#": 1808 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1777 + }, + "sleepCounter": 0, + "region": { + "#": 1817 + } + }, + [ + { + "#": 1777 + } + ], + [ + { + "#": 1780 + }, + { + "#": 1781 + }, + { + "#": 1782 + }, + { + "#": 1783 + }, + { + "#": 1784 + }, + { + "#": 1785 + }, + { + "#": 1786 + }, + { + "#": 1787 + }, + { + "#": 1788 + }, + { + "#": 1789 + }, + { + "#": 1790 + }, + { + "#": 1791 + }, + { + "#": 1792 + }, + { + "#": 1793 + }, + { + "#": 1794 + }, + { + "#": 1795 + } + ], + { + "x": 485.392, + "y": 335.37375, + "index": 0, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 483.152, + "y": 340.78175, + "index": 1, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 479.014, + "y": 344.91975, + "index": 2, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 473.606, + "y": 347.15975, + "index": 3, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 467.754, + "y": 347.15975, + "index": 4, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 462.346, + "y": 344.91975, + "index": 5, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 458.208, + "y": 340.78175, + "index": 6, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 455.968, + "y": 335.37375, + "index": 7, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 455.968, + "y": 329.52175, + "index": 8, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 458.208, + "y": 324.11375, + "index": 9, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 462.346, + "y": 319.97575, + "index": 10, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 467.754, + "y": 317.73575, + "index": 11, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 473.606, + "y": 317.73575, + "index": 12, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 479.014, + "y": 319.97575, + "index": 13, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 483.152, + "y": 324.11375, + "index": 14, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 485.392, + "y": 329.52175, + "index": 15, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 470.68, + "y": 332.44775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1803 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1805 + }, + "max": { + "#": 1806 + } + }, + { + "x": 455.968, + "y": 317.73575 + }, + { + "x": 485.392, + "y": 347.15975 + }, + { + "x": 470.68, + "y": 329.54048 + }, + [ + { + "#": 1809 + }, + { + "#": 1810 + }, + { + "#": 1811 + }, + { + "#": 1812 + }, + { + "#": 1813 + }, + { + "#": 1814 + }, + { + "#": 1815 + }, + { + "#": 1816 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,6,7", + "startCol": 9, + "endCol": 10, + "startRow": 6, + "endRow": 7 + }, + { + "id": 111, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1819 + }, + "angle": 0, + "vertices": { + "#": 1820 + }, + "position": { + "#": 1837 + }, + "force": { + "#": 1838 + }, + "torque": 0, + "positionImpulse": { + "#": 1839 + }, + "constraintImpulse": { + "#": 1840 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1841 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1842 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1843 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1845 + }, + "positionPrev": { + "#": 1848 + }, + "anglePrev": 0, + "axes": { + "#": 1849 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1818 + }, + "sleepCounter": 0, + "region": { + "#": 1858 + } + }, + [ + { + "#": 1818 + } + ], + [ + { + "#": 1821 + }, + { + "#": 1822 + }, + { + "#": 1823 + }, + { + "#": 1824 + }, + { + "#": 1825 + }, + { + "#": 1826 + }, + { + "#": 1827 + }, + { + "#": 1828 + }, + { + "#": 1829 + }, + { + "#": 1830 + }, + { + "#": 1831 + }, + { + "#": 1832 + }, + { + "#": 1833 + }, + { + "#": 1834 + }, + { + "#": 1835 + }, + { + "#": 1836 + } + ], + { + "x": 279.424, + "y": 364.79775, + "index": 0, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 370.20575, + "index": 1, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 374.34375, + "index": 2, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 376.58375, + "index": 3, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 376.58375, + "index": 4, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 374.34375, + "index": 5, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 370.20575, + "index": 6, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 250, + "y": 364.79775, + "index": 7, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 250, + "y": 358.94575, + "index": 8, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 353.53775, + "index": 9, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 349.39975, + "index": 10, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 347.15975, + "index": 11, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 347.15975, + "index": 12, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 349.39975, + "index": 13, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 353.53775, + "index": 14, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 358.94575, + "index": 15, + "body": { + "#": 1818 + }, + "isInternal": false + }, + { + "x": 264.712, + "y": 361.87175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1844 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1846 + }, + "max": { + "#": 1847 + } + }, + { + "x": 250, + "y": 347.15975 + }, + { + "x": 279.424, + "y": 376.58375 + }, + { + "x": 264.712, + "y": 358.96448 + }, + [ + { + "#": 1850 + }, + { + "#": 1851 + }, + { + "#": 1852 + }, + { + "#": 1853 + }, + { + "#": 1854 + }, + { + "#": 1855 + }, + { + "#": 1856 + }, + { + "#": 1857 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,7,7", + "startCol": 5, + "endCol": 5, + "startRow": 7, + "endRow": 7 + }, + { + "id": 112, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1860 + }, + "angle": 0, + "vertices": { + "#": 1861 + }, + "position": { + "#": 1878 + }, + "force": { + "#": 1879 + }, + "torque": 0, + "positionImpulse": { + "#": 1880 + }, + "constraintImpulse": { + "#": 1881 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1882 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1883 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1884 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1886 + }, + "positionPrev": { + "#": 1889 + }, + "anglePrev": 0, + "axes": { + "#": 1890 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1859 + }, + "sleepCounter": 0, + "region": { + "#": 1899 + } + }, + [ + { + "#": 1859 + } + ], + [ + { + "#": 1862 + }, + { + "#": 1863 + }, + { + "#": 1864 + }, + { + "#": 1865 + }, + { + "#": 1866 + }, + { + "#": 1867 + }, + { + "#": 1868 + }, + { + "#": 1869 + }, + { + "#": 1870 + }, + { + "#": 1871 + }, + { + "#": 1872 + }, + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + }, + { + "#": 1877 + } + ], + { + "x": 308.848, + "y": 364.79775, + "index": 0, + "body": { + "#": 1859 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 370.20575, + "index": 1, + "body": { + "#": 1859 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 374.34375, + "index": 2, + "body": { + "#": 1859 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 376.58375, + "index": 3, + "body": { + "#": 1859 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 376.58375, + "index": 4, + "body": { + "#": 1859 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 374.34375, + "index": 5, + "body": { + "#": 1859 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 370.20575, + "index": 6, + "body": { + "#": 1859 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 364.79775, + "index": 7, + "body": { + "#": 1859 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 358.94575, + "index": 8, + "body": { + "#": 1859 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 353.53775, + "index": 9, + "body": { + "#": 1859 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 349.39975, + "index": 10, + "body": { + "#": 1859 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 347.15975, + "index": 11, + "body": { + "#": 1859 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 347.15975, + "index": 12, + "body": { + "#": 1859 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 349.39975, + "index": 13, + "body": { + "#": 1859 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 353.53775, + "index": 14, + "body": { + "#": 1859 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 358.94575, + "index": 15, + "body": { + "#": 1859 + }, + "isInternal": false + }, + { + "x": 294.136, + "y": 361.87175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1885 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1887 + }, + "max": { + "#": 1888 + } + }, + { + "x": 279.424, + "y": 347.15975 + }, + { + "x": 308.848, + "y": 376.58375 + }, + { + "x": 294.136, + "y": 358.96448 + }, + [ + { + "#": 1891 + }, + { + "#": 1892 + }, + { + "#": 1893 + }, + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,7,7", + "startCol": 5, + "endCol": 6, + "startRow": 7, + "endRow": 7 + }, + { + "id": 113, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1901 + }, + "angle": 0, + "vertices": { + "#": 1902 + }, + "position": { + "#": 1919 + }, + "force": { + "#": 1920 + }, + "torque": 0, + "positionImpulse": { + "#": 1921 + }, + "constraintImpulse": { + "#": 1922 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1923 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1924 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1925 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1927 + }, + "positionPrev": { + "#": 1930 + }, + "anglePrev": 0, + "axes": { + "#": 1931 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1900 + }, + "sleepCounter": 0, + "region": { + "#": 1940 + } + }, + [ + { + "#": 1900 + } + ], + [ + { + "#": 1903 + }, + { + "#": 1904 + }, + { + "#": 1905 + }, + { + "#": 1906 + }, + { + "#": 1907 + }, + { + "#": 1908 + }, + { + "#": 1909 + }, + { + "#": 1910 + }, + { + "#": 1911 + }, + { + "#": 1912 + }, + { + "#": 1913 + }, + { + "#": 1914 + }, + { + "#": 1915 + }, + { + "#": 1916 + }, + { + "#": 1917 + }, + { + "#": 1918 + } + ], + { + "x": 338.272, + "y": 364.79775, + "index": 0, + "body": { + "#": 1900 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 370.20575, + "index": 1, + "body": { + "#": 1900 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 374.34375, + "index": 2, + "body": { + "#": 1900 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 376.58375, + "index": 3, + "body": { + "#": 1900 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 376.58375, + "index": 4, + "body": { + "#": 1900 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 374.34375, + "index": 5, + "body": { + "#": 1900 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 370.20575, + "index": 6, + "body": { + "#": 1900 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 364.79775, + "index": 7, + "body": { + "#": 1900 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 358.94575, + "index": 8, + "body": { + "#": 1900 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 353.53775, + "index": 9, + "body": { + "#": 1900 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 349.39975, + "index": 10, + "body": { + "#": 1900 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 347.15975, + "index": 11, + "body": { + "#": 1900 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 347.15975, + "index": 12, + "body": { + "#": 1900 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 349.39975, + "index": 13, + "body": { + "#": 1900 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 353.53775, + "index": 14, + "body": { + "#": 1900 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 358.94575, + "index": 15, + "body": { + "#": 1900 + }, + "isInternal": false + }, + { + "x": 323.56, + "y": 361.87175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1926 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1928 + }, + "max": { + "#": 1929 + } + }, + { + "x": 308.848, + "y": 347.15975 + }, + { + "x": 338.272, + "y": 376.58375 + }, + { + "x": 323.56, + "y": 358.96448 + }, + [ + { + "#": 1932 + }, + { + "#": 1933 + }, + { + "#": 1934 + }, + { + "#": 1935 + }, + { + "#": 1936 + }, + { + "#": 1937 + }, + { + "#": 1938 + }, + { + "#": 1939 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,7,7", + "startCol": 6, + "endCol": 7, + "startRow": 7, + "endRow": 7 + }, + { + "id": 114, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1942 + }, + "angle": 0, + "vertices": { + "#": 1943 + }, + "position": { + "#": 1960 + }, + "force": { + "#": 1961 + }, + "torque": 0, + "positionImpulse": { + "#": 1962 + }, + "constraintImpulse": { + "#": 1963 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1964 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1965 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1966 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 1968 + }, + "positionPrev": { + "#": 1971 + }, + "anglePrev": 0, + "axes": { + "#": 1972 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1941 + }, + "sleepCounter": 0, + "region": { + "#": 1981 + } + }, + [ + { + "#": 1941 + } + ], + [ + { + "#": 1944 + }, + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + }, + { + "#": 1948 + }, + { + "#": 1949 + }, + { + "#": 1950 + }, + { + "#": 1951 + }, + { + "#": 1952 + }, + { + "#": 1953 + }, + { + "#": 1954 + }, + { + "#": 1955 + }, + { + "#": 1956 + }, + { + "#": 1957 + }, + { + "#": 1958 + }, + { + "#": 1959 + } + ], + { + "x": 367.696, + "y": 364.79775, + "index": 0, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 370.20575, + "index": 1, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 374.34375, + "index": 2, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 376.58375, + "index": 3, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 376.58375, + "index": 4, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 374.34375, + "index": 5, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 370.20575, + "index": 6, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 364.79775, + "index": 7, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 358.94575, + "index": 8, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 353.53775, + "index": 9, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 349.39975, + "index": 10, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 347.15975, + "index": 11, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 347.15975, + "index": 12, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 349.39975, + "index": 13, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 353.53775, + "index": 14, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 358.94575, + "index": 15, + "body": { + "#": 1941 + }, + "isInternal": false + }, + { + "x": 352.984, + "y": 361.87175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1967 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1969 + }, + "max": { + "#": 1970 + } + }, + { + "x": 338.272, + "y": 347.15975 + }, + { + "x": 367.696, + "y": 376.58375 + }, + { + "x": 352.984, + "y": 358.96448 + }, + [ + { + "#": 1973 + }, + { + "#": 1974 + }, + { + "#": 1975 + }, + { + "#": 1976 + }, + { + "#": 1977 + }, + { + "#": 1978 + }, + { + "#": 1979 + }, + { + "#": 1980 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,7,7", + "startCol": 7, + "endCol": 7, + "startRow": 7, + "endRow": 7 + }, + { + "id": 115, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1983 + }, + "angle": 0, + "vertices": { + "#": 1984 + }, + "position": { + "#": 2001 + }, + "force": { + "#": 2002 + }, + "torque": 0, + "positionImpulse": { + "#": 2003 + }, + "constraintImpulse": { + "#": 2004 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2005 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2006 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2007 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2009 + }, + "positionPrev": { + "#": 2012 + }, + "anglePrev": 0, + "axes": { + "#": 2013 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 1982 + }, + "sleepCounter": 0, + "region": { + "#": 2022 + } + }, + [ + { + "#": 1982 + } + ], + [ + { + "#": 1985 + }, + { + "#": 1986 + }, + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + }, + { + "#": 1993 + }, + { + "#": 1994 + }, + { + "#": 1995 + }, + { + "#": 1996 + }, + { + "#": 1997 + }, + { + "#": 1998 + }, + { + "#": 1999 + }, + { + "#": 2000 + } + ], + { + "x": 397.12, + "y": 364.79775, + "index": 0, + "body": { + "#": 1982 + }, + "isInternal": false + }, + { + "x": 394.88, + "y": 370.20575, + "index": 1, + "body": { + "#": 1982 + }, + "isInternal": false + }, + { + "x": 390.742, + "y": 374.34375, + "index": 2, + "body": { + "#": 1982 + }, + "isInternal": false + }, + { + "x": 385.334, + "y": 376.58375, + "index": 3, + "body": { + "#": 1982 + }, + "isInternal": false + }, + { + "x": 379.482, + "y": 376.58375, + "index": 4, + "body": { + "#": 1982 + }, + "isInternal": false + }, + { + "x": 374.074, + "y": 374.34375, + "index": 5, + "body": { + "#": 1982 + }, + "isInternal": false + }, + { + "x": 369.936, + "y": 370.20575, + "index": 6, + "body": { + "#": 1982 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 364.79775, + "index": 7, + "body": { + "#": 1982 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 358.94575, + "index": 8, + "body": { + "#": 1982 + }, + "isInternal": false + }, + { + "x": 369.936, + "y": 353.53775, + "index": 9, + "body": { + "#": 1982 + }, + "isInternal": false + }, + { + "x": 374.074, + "y": 349.39975, + "index": 10, + "body": { + "#": 1982 + }, + "isInternal": false + }, + { + "x": 379.482, + "y": 347.15975, + "index": 11, + "body": { + "#": 1982 + }, + "isInternal": false + }, + { + "x": 385.334, + "y": 347.15975, + "index": 12, + "body": { + "#": 1982 + }, + "isInternal": false + }, + { + "x": 390.742, + "y": 349.39975, + "index": 13, + "body": { + "#": 1982 + }, + "isInternal": false + }, + { + "x": 394.88, + "y": 353.53775, + "index": 14, + "body": { + "#": 1982 + }, + "isInternal": false + }, + { + "x": 397.12, + "y": 358.94575, + "index": 15, + "body": { + "#": 1982 + }, + "isInternal": false + }, + { + "x": 382.408, + "y": 361.87175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2008 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2010 + }, + "max": { + "#": 2011 + } + }, + { + "x": 367.696, + "y": 347.15975 + }, + { + "x": 397.12, + "y": 376.58375 + }, + { + "x": 382.408, + "y": 358.96448 + }, + [ + { + "#": 2014 + }, + { + "#": 2015 + }, + { + "#": 2016 + }, + { + "#": 2017 + }, + { + "#": 2018 + }, + { + "#": 2019 + }, + { + "#": 2020 + }, + { + "#": 2021 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,7,7", + "startCol": 7, + "endCol": 8, + "startRow": 7, + "endRow": 7 + }, + { + "id": 116, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2024 + }, + "angle": 0, + "vertices": { + "#": 2025 + }, + "position": { + "#": 2042 + }, + "force": { + "#": 2043 + }, + "torque": 0, + "positionImpulse": { + "#": 2044 + }, + "constraintImpulse": { + "#": 2045 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2046 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2047 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2048 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2050 + }, + "positionPrev": { + "#": 2053 + }, + "anglePrev": 0, + "axes": { + "#": 2054 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2023 + }, + "sleepCounter": 0, + "region": { + "#": 2063 + } + }, + [ + { + "#": 2023 + } + ], + [ + { + "#": 2026 + }, + { + "#": 2027 + }, + { + "#": 2028 + }, + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + }, + { + "#": 2032 + }, + { + "#": 2033 + }, + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + }, + { + "#": 2037 + }, + { + "#": 2038 + }, + { + "#": 2039 + }, + { + "#": 2040 + }, + { + "#": 2041 + } + ], + { + "x": 426.544, + "y": 364.79775, + "index": 0, + "body": { + "#": 2023 + }, + "isInternal": false + }, + { + "x": 424.304, + "y": 370.20575, + "index": 1, + "body": { + "#": 2023 + }, + "isInternal": false + }, + { + "x": 420.166, + "y": 374.34375, + "index": 2, + "body": { + "#": 2023 + }, + "isInternal": false + }, + { + "x": 414.758, + "y": 376.58375, + "index": 3, + "body": { + "#": 2023 + }, + "isInternal": false + }, + { + "x": 408.906, + "y": 376.58375, + "index": 4, + "body": { + "#": 2023 + }, + "isInternal": false + }, + { + "x": 403.498, + "y": 374.34375, + "index": 5, + "body": { + "#": 2023 + }, + "isInternal": false + }, + { + "x": 399.36, + "y": 370.20575, + "index": 6, + "body": { + "#": 2023 + }, + "isInternal": false + }, + { + "x": 397.12, + "y": 364.79775, + "index": 7, + "body": { + "#": 2023 + }, + "isInternal": false + }, + { + "x": 397.12, + "y": 358.94575, + "index": 8, + "body": { + "#": 2023 + }, + "isInternal": false + }, + { + "x": 399.36, + "y": 353.53775, + "index": 9, + "body": { + "#": 2023 + }, + "isInternal": false + }, + { + "x": 403.498, + "y": 349.39975, + "index": 10, + "body": { + "#": 2023 + }, + "isInternal": false + }, + { + "x": 408.906, + "y": 347.15975, + "index": 11, + "body": { + "#": 2023 + }, + "isInternal": false + }, + { + "x": 414.758, + "y": 347.15975, + "index": 12, + "body": { + "#": 2023 + }, + "isInternal": false + }, + { + "x": 420.166, + "y": 349.39975, + "index": 13, + "body": { + "#": 2023 + }, + "isInternal": false + }, + { + "x": 424.304, + "y": 353.53775, + "index": 14, + "body": { + "#": 2023 + }, + "isInternal": false + }, + { + "x": 426.544, + "y": 358.94575, + "index": 15, + "body": { + "#": 2023 + }, + "isInternal": false + }, + { + "x": 411.832, + "y": 361.87175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2049 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2051 + }, + "max": { + "#": 2052 + } + }, + { + "x": 397.12, + "y": 347.15975 + }, + { + "x": 426.544, + "y": 376.58375 + }, + { + "x": 411.832, + "y": 358.96448 + }, + [ + { + "#": 2055 + }, + { + "#": 2056 + }, + { + "#": 2057 + }, + { + "#": 2058 + }, + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + }, + { + "#": 2062 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,7,7", + "startCol": 8, + "endCol": 8, + "startRow": 7, + "endRow": 7 + }, + { + "id": 117, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2065 + }, + "angle": 0, + "vertices": { + "#": 2066 + }, + "position": { + "#": 2083 + }, + "force": { + "#": 2084 + }, + "torque": 0, + "positionImpulse": { + "#": 2085 + }, + "constraintImpulse": { + "#": 2086 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2087 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2088 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2089 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2091 + }, + "positionPrev": { + "#": 2094 + }, + "anglePrev": 0, + "axes": { + "#": 2095 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2064 + }, + "sleepCounter": 0, + "region": { + "#": 2104 + } + }, + [ + { + "#": 2064 + } + ], + [ + { + "#": 2067 + }, + { + "#": 2068 + }, + { + "#": 2069 + }, + { + "#": 2070 + }, + { + "#": 2071 + }, + { + "#": 2072 + }, + { + "#": 2073 + }, + { + "#": 2074 + }, + { + "#": 2075 + }, + { + "#": 2076 + }, + { + "#": 2077 + }, + { + "#": 2078 + }, + { + "#": 2079 + }, + { + "#": 2080 + }, + { + "#": 2081 + }, + { + "#": 2082 + } + ], + { + "x": 455.968, + "y": 364.79775, + "index": 0, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 453.728, + "y": 370.20575, + "index": 1, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 449.59, + "y": 374.34375, + "index": 2, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 444.182, + "y": 376.58375, + "index": 3, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 438.33, + "y": 376.58375, + "index": 4, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 432.922, + "y": 374.34375, + "index": 5, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 428.784, + "y": 370.20575, + "index": 6, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 426.544, + "y": 364.79775, + "index": 7, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 426.544, + "y": 358.94575, + "index": 8, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 428.784, + "y": 353.53775, + "index": 9, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 432.922, + "y": 349.39975, + "index": 10, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 438.33, + "y": 347.15975, + "index": 11, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 444.182, + "y": 347.15975, + "index": 12, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 449.59, + "y": 349.39975, + "index": 13, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 453.728, + "y": 353.53775, + "index": 14, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 455.968, + "y": 358.94575, + "index": 15, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 441.256, + "y": 361.87175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2090 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2092 + }, + "max": { + "#": 2093 + } + }, + { + "x": 426.544, + "y": 347.15975 + }, + { + "x": 455.968, + "y": 376.58375 + }, + { + "x": 441.256, + "y": 358.96448 + }, + [ + { + "#": 2096 + }, + { + "#": 2097 + }, + { + "#": 2098 + }, + { + "#": 2099 + }, + { + "#": 2100 + }, + { + "#": 2101 + }, + { + "#": 2102 + }, + { + "#": 2103 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,7,7", + "startCol": 8, + "endCol": 9, + "startRow": 7, + "endRow": 7 + }, + { + "id": 118, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2106 + }, + "angle": 0, + "vertices": { + "#": 2107 + }, + "position": { + "#": 2124 + }, + "force": { + "#": 2125 + }, + "torque": 0, + "positionImpulse": { + "#": 2126 + }, + "constraintImpulse": { + "#": 2127 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2128 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2129 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2130 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2132 + }, + "positionPrev": { + "#": 2135 + }, + "anglePrev": 0, + "axes": { + "#": 2136 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2105 + }, + "sleepCounter": 0, + "region": { + "#": 2145 + } + }, + [ + { + "#": 2105 + } + ], + [ + { + "#": 2108 + }, + { + "#": 2109 + }, + { + "#": 2110 + }, + { + "#": 2111 + }, + { + "#": 2112 + }, + { + "#": 2113 + }, + { + "#": 2114 + }, + { + "#": 2115 + }, + { + "#": 2116 + }, + { + "#": 2117 + }, + { + "#": 2118 + }, + { + "#": 2119 + }, + { + "#": 2120 + }, + { + "#": 2121 + }, + { + "#": 2122 + }, + { + "#": 2123 + } + ], + { + "x": 485.392, + "y": 364.79775, + "index": 0, + "body": { + "#": 2105 + }, + "isInternal": false + }, + { + "x": 483.152, + "y": 370.20575, + "index": 1, + "body": { + "#": 2105 + }, + "isInternal": false + }, + { + "x": 479.014, + "y": 374.34375, + "index": 2, + "body": { + "#": 2105 + }, + "isInternal": false + }, + { + "x": 473.606, + "y": 376.58375, + "index": 3, + "body": { + "#": 2105 + }, + "isInternal": false + }, + { + "x": 467.754, + "y": 376.58375, + "index": 4, + "body": { + "#": 2105 + }, + "isInternal": false + }, + { + "x": 462.346, + "y": 374.34375, + "index": 5, + "body": { + "#": 2105 + }, + "isInternal": false + }, + { + "x": 458.208, + "y": 370.20575, + "index": 6, + "body": { + "#": 2105 + }, + "isInternal": false + }, + { + "x": 455.968, + "y": 364.79775, + "index": 7, + "body": { + "#": 2105 + }, + "isInternal": false + }, + { + "x": 455.968, + "y": 358.94575, + "index": 8, + "body": { + "#": 2105 + }, + "isInternal": false + }, + { + "x": 458.208, + "y": 353.53775, + "index": 9, + "body": { + "#": 2105 + }, + "isInternal": false + }, + { + "x": 462.346, + "y": 349.39975, + "index": 10, + "body": { + "#": 2105 + }, + "isInternal": false + }, + { + "x": 467.754, + "y": 347.15975, + "index": 11, + "body": { + "#": 2105 + }, + "isInternal": false + }, + { + "x": 473.606, + "y": 347.15975, + "index": 12, + "body": { + "#": 2105 + }, + "isInternal": false + }, + { + "x": 479.014, + "y": 349.39975, + "index": 13, + "body": { + "#": 2105 + }, + "isInternal": false + }, + { + "x": 483.152, + "y": 353.53775, + "index": 14, + "body": { + "#": 2105 + }, + "isInternal": false + }, + { + "x": 485.392, + "y": 358.94575, + "index": 15, + "body": { + "#": 2105 + }, + "isInternal": false + }, + { + "x": 470.68, + "y": 361.87175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2131 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2133 + }, + "max": { + "#": 2134 + } + }, + { + "x": 455.968, + "y": 347.15975 + }, + { + "x": 485.392, + "y": 376.58375 + }, + { + "x": 470.68, + "y": 358.96448 + }, + [ + { + "#": 2137 + }, + { + "#": 2138 + }, + { + "#": 2139 + }, + { + "#": 2140 + }, + { + "#": 2141 + }, + { + "#": 2142 + }, + { + "#": 2143 + }, + { + "#": 2144 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,7,7", + "startCol": 9, + "endCol": 10, + "startRow": 7, + "endRow": 7 + }, + { + "id": 119, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2147 + }, + "angle": 0, + "vertices": { + "#": 2148 + }, + "position": { + "#": 2165 + }, + "force": { + "#": 2166 + }, + "torque": 0, + "positionImpulse": { + "#": 2167 + }, + "constraintImpulse": { + "#": 2168 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2169 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2170 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2171 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2173 + }, + "positionPrev": { + "#": 2176 + }, + "anglePrev": 0, + "axes": { + "#": 2177 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2146 + }, + "sleepCounter": 0, + "region": { + "#": 2186 + } + }, + [ + { + "#": 2146 + } + ], + [ + { + "#": 2149 + }, + { + "#": 2150 + }, + { + "#": 2151 + }, + { + "#": 2152 + }, + { + "#": 2153 + }, + { + "#": 2154 + }, + { + "#": 2155 + }, + { + "#": 2156 + }, + { + "#": 2157 + }, + { + "#": 2158 + }, + { + "#": 2159 + }, + { + "#": 2160 + }, + { + "#": 2161 + }, + { + "#": 2162 + }, + { + "#": 2163 + }, + { + "#": 2164 + } + ], + { + "x": 279.424, + "y": 394.22175, + "index": 0, + "body": { + "#": 2146 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 399.62975, + "index": 1, + "body": { + "#": 2146 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 403.76775, + "index": 2, + "body": { + "#": 2146 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 406.00775, + "index": 3, + "body": { + "#": 2146 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 406.00775, + "index": 4, + "body": { + "#": 2146 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 403.76775, + "index": 5, + "body": { + "#": 2146 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 399.62975, + "index": 6, + "body": { + "#": 2146 + }, + "isInternal": false + }, + { + "x": 250, + "y": 394.22175, + "index": 7, + "body": { + "#": 2146 + }, + "isInternal": false + }, + { + "x": 250, + "y": 388.36975, + "index": 8, + "body": { + "#": 2146 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 382.96175, + "index": 9, + "body": { + "#": 2146 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 378.82375, + "index": 10, + "body": { + "#": 2146 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 376.58375, + "index": 11, + "body": { + "#": 2146 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 376.58375, + "index": 12, + "body": { + "#": 2146 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 378.82375, + "index": 13, + "body": { + "#": 2146 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 382.96175, + "index": 14, + "body": { + "#": 2146 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 388.36975, + "index": 15, + "body": { + "#": 2146 + }, + "isInternal": false + }, + { + "x": 264.712, + "y": 391.29575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2172 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2174 + }, + "max": { + "#": 2175 + } + }, + { + "x": 250, + "y": 376.58375 + }, + { + "x": 279.424, + "y": 406.00775 + }, + { + "x": 264.712, + "y": 388.38848 + }, + [ + { + "#": 2178 + }, + { + "#": 2179 + }, + { + "#": 2180 + }, + { + "#": 2181 + }, + { + "#": 2182 + }, + { + "#": 2183 + }, + { + "#": 2184 + }, + { + "#": 2185 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,7,8", + "startCol": 5, + "endCol": 5, + "startRow": 7, + "endRow": 8 + }, + { + "id": 120, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2188 + }, + "angle": 0, + "vertices": { + "#": 2189 + }, + "position": { + "#": 2206 + }, + "force": { + "#": 2207 + }, + "torque": 0, + "positionImpulse": { + "#": 2208 + }, + "constraintImpulse": { + "#": 2209 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2210 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2211 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2212 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2214 + }, + "positionPrev": { + "#": 2217 + }, + "anglePrev": 0, + "axes": { + "#": 2218 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2187 + }, + "sleepCounter": 0, + "region": { + "#": 2227 + } + }, + [ + { + "#": 2187 + } + ], + [ + { + "#": 2190 + }, + { + "#": 2191 + }, + { + "#": 2192 + }, + { + "#": 2193 + }, + { + "#": 2194 + }, + { + "#": 2195 + }, + { + "#": 2196 + }, + { + "#": 2197 + }, + { + "#": 2198 + }, + { + "#": 2199 + }, + { + "#": 2200 + }, + { + "#": 2201 + }, + { + "#": 2202 + }, + { + "#": 2203 + }, + { + "#": 2204 + }, + { + "#": 2205 + } + ], + { + "x": 308.848, + "y": 394.22175, + "index": 0, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 399.62975, + "index": 1, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 403.76775, + "index": 2, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 406.00775, + "index": 3, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 406.00775, + "index": 4, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 403.76775, + "index": 5, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 399.62975, + "index": 6, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 394.22175, + "index": 7, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 388.36975, + "index": 8, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 382.96175, + "index": 9, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 378.82375, + "index": 10, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 376.58375, + "index": 11, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 376.58375, + "index": 12, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 378.82375, + "index": 13, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 382.96175, + "index": 14, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 388.36975, + "index": 15, + "body": { + "#": 2187 + }, + "isInternal": false + }, + { + "x": 294.136, + "y": 391.29575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2213 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2215 + }, + "max": { + "#": 2216 + } + }, + { + "x": 279.424, + "y": 376.58375 + }, + { + "x": 308.848, + "y": 406.00775 + }, + { + "x": 294.136, + "y": 388.38848 + }, + [ + { + "#": 2219 + }, + { + "#": 2220 + }, + { + "#": 2221 + }, + { + "#": 2222 + }, + { + "#": 2223 + }, + { + "#": 2224 + }, + { + "#": 2225 + }, + { + "#": 2226 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,7,8", + "startCol": 5, + "endCol": 6, + "startRow": 7, + "endRow": 8 + }, + { + "id": 121, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2229 + }, + "angle": 0, + "vertices": { + "#": 2230 + }, + "position": { + "#": 2247 + }, + "force": { + "#": 2248 + }, + "torque": 0, + "positionImpulse": { + "#": 2249 + }, + "constraintImpulse": { + "#": 2250 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2251 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2252 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2253 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2255 + }, + "positionPrev": { + "#": 2258 + }, + "anglePrev": 0, + "axes": { + "#": 2259 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2228 + }, + "sleepCounter": 0, + "region": { + "#": 2268 + } + }, + [ + { + "#": 2228 + } + ], + [ + { + "#": 2231 + }, + { + "#": 2232 + }, + { + "#": 2233 + }, + { + "#": 2234 + }, + { + "#": 2235 + }, + { + "#": 2236 + }, + { + "#": 2237 + }, + { + "#": 2238 + }, + { + "#": 2239 + }, + { + "#": 2240 + }, + { + "#": 2241 + }, + { + "#": 2242 + }, + { + "#": 2243 + }, + { + "#": 2244 + }, + { + "#": 2245 + }, + { + "#": 2246 + } + ], + { + "x": 338.272, + "y": 394.22175, + "index": 0, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 399.62975, + "index": 1, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 403.76775, + "index": 2, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 406.00775, + "index": 3, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 406.00775, + "index": 4, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 403.76775, + "index": 5, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 399.62975, + "index": 6, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 394.22175, + "index": 7, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 388.36975, + "index": 8, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 382.96175, + "index": 9, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 378.82375, + "index": 10, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 376.58375, + "index": 11, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 376.58375, + "index": 12, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 378.82375, + "index": 13, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 382.96175, + "index": 14, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 388.36975, + "index": 15, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 323.56, + "y": 391.29575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2254 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2256 + }, + "max": { + "#": 2257 + } + }, + { + "x": 308.848, + "y": 376.58375 + }, + { + "x": 338.272, + "y": 406.00775 + }, + { + "x": 323.56, + "y": 388.38848 + }, + [ + { + "#": 2260 + }, + { + "#": 2261 + }, + { + "#": 2262 + }, + { + "#": 2263 + }, + { + "#": 2264 + }, + { + "#": 2265 + }, + { + "#": 2266 + }, + { + "#": 2267 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,7,8", + "startCol": 6, + "endCol": 7, + "startRow": 7, + "endRow": 8 + }, + { + "id": 122, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2270 + }, + "angle": 0, + "vertices": { + "#": 2271 + }, + "position": { + "#": 2288 + }, + "force": { + "#": 2289 + }, + "torque": 0, + "positionImpulse": { + "#": 2290 + }, + "constraintImpulse": { + "#": 2291 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2292 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2293 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2294 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2296 + }, + "positionPrev": { + "#": 2299 + }, + "anglePrev": 0, + "axes": { + "#": 2300 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2269 + }, + "sleepCounter": 0, + "region": { + "#": 2309 + } + }, + [ + { + "#": 2269 + } + ], + [ + { + "#": 2272 + }, + { + "#": 2273 + }, + { + "#": 2274 + }, + { + "#": 2275 + }, + { + "#": 2276 + }, + { + "#": 2277 + }, + { + "#": 2278 + }, + { + "#": 2279 + }, + { + "#": 2280 + }, + { + "#": 2281 + }, + { + "#": 2282 + }, + { + "#": 2283 + }, + { + "#": 2284 + }, + { + "#": 2285 + }, + { + "#": 2286 + }, + { + "#": 2287 + } + ], + { + "x": 367.696, + "y": 394.22175, + "index": 0, + "body": { + "#": 2269 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 399.62975, + "index": 1, + "body": { + "#": 2269 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 403.76775, + "index": 2, + "body": { + "#": 2269 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 406.00775, + "index": 3, + "body": { + "#": 2269 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 406.00775, + "index": 4, + "body": { + "#": 2269 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 403.76775, + "index": 5, + "body": { + "#": 2269 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 399.62975, + "index": 6, + "body": { + "#": 2269 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 394.22175, + "index": 7, + "body": { + "#": 2269 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 388.36975, + "index": 8, + "body": { + "#": 2269 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 382.96175, + "index": 9, + "body": { + "#": 2269 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 378.82375, + "index": 10, + "body": { + "#": 2269 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 376.58375, + "index": 11, + "body": { + "#": 2269 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 376.58375, + "index": 12, + "body": { + "#": 2269 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 378.82375, + "index": 13, + "body": { + "#": 2269 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 382.96175, + "index": 14, + "body": { + "#": 2269 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 388.36975, + "index": 15, + "body": { + "#": 2269 + }, + "isInternal": false + }, + { + "x": 352.984, + "y": 391.29575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2295 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2297 + }, + "max": { + "#": 2298 + } + }, + { + "x": 338.272, + "y": 376.58375 + }, + { + "x": 367.696, + "y": 406.00775 + }, + { + "x": 352.984, + "y": 388.38848 + }, + [ + { + "#": 2301 + }, + { + "#": 2302 + }, + { + "#": 2303 + }, + { + "#": 2304 + }, + { + "#": 2305 + }, + { + "#": 2306 + }, + { + "#": 2307 + }, + { + "#": 2308 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,7,8", + "startCol": 7, + "endCol": 7, + "startRow": 7, + "endRow": 8 + }, + { + "id": 123, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2311 + }, + "angle": 0, + "vertices": { + "#": 2312 + }, + "position": { + "#": 2329 + }, + "force": { + "#": 2330 + }, + "torque": 0, + "positionImpulse": { + "#": 2331 + }, + "constraintImpulse": { + "#": 2332 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2333 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2334 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2335 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2337 + }, + "positionPrev": { + "#": 2340 + }, + "anglePrev": 0, + "axes": { + "#": 2341 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2310 + }, + "sleepCounter": 0, + "region": { + "#": 2350 + } + }, + [ + { + "#": 2310 + } + ], + [ + { + "#": 2313 + }, + { + "#": 2314 + }, + { + "#": 2315 + }, + { + "#": 2316 + }, + { + "#": 2317 + }, + { + "#": 2318 + }, + { + "#": 2319 + }, + { + "#": 2320 + }, + { + "#": 2321 + }, + { + "#": 2322 + }, + { + "#": 2323 + }, + { + "#": 2324 + }, + { + "#": 2325 + }, + { + "#": 2326 + }, + { + "#": 2327 + }, + { + "#": 2328 + } + ], + { + "x": 397.12, + "y": 394.22175, + "index": 0, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 394.88, + "y": 399.62975, + "index": 1, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 390.742, + "y": 403.76775, + "index": 2, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 385.334, + "y": 406.00775, + "index": 3, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 379.482, + "y": 406.00775, + "index": 4, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 374.074, + "y": 403.76775, + "index": 5, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 369.936, + "y": 399.62975, + "index": 6, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 394.22175, + "index": 7, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 388.36975, + "index": 8, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 369.936, + "y": 382.96175, + "index": 9, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 374.074, + "y": 378.82375, + "index": 10, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 379.482, + "y": 376.58375, + "index": 11, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 385.334, + "y": 376.58375, + "index": 12, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 390.742, + "y": 378.82375, + "index": 13, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 394.88, + "y": 382.96175, + "index": 14, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 397.12, + "y": 388.36975, + "index": 15, + "body": { + "#": 2310 + }, + "isInternal": false + }, + { + "x": 382.408, + "y": 391.29575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2336 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2338 + }, + "max": { + "#": 2339 + } + }, + { + "x": 367.696, + "y": 376.58375 + }, + { + "x": 397.12, + "y": 406.00775 + }, + { + "x": 382.408, + "y": 388.38848 + }, + [ + { + "#": 2342 + }, + { + "#": 2343 + }, + { + "#": 2344 + }, + { + "#": 2345 + }, + { + "#": 2346 + }, + { + "#": 2347 + }, + { + "#": 2348 + }, + { + "#": 2349 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,7,8", + "startCol": 7, + "endCol": 8, + "startRow": 7, + "endRow": 8 + }, + { + "id": 124, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2352 + }, + "angle": 0, + "vertices": { + "#": 2353 + }, + "position": { + "#": 2370 + }, + "force": { + "#": 2371 + }, + "torque": 0, + "positionImpulse": { + "#": 2372 + }, + "constraintImpulse": { + "#": 2373 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2374 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2375 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2376 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2378 + }, + "positionPrev": { + "#": 2381 + }, + "anglePrev": 0, + "axes": { + "#": 2382 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2351 + }, + "sleepCounter": 0, + "region": { + "#": 2391 + } + }, + [ + { + "#": 2351 + } + ], + [ + { + "#": 2354 + }, + { + "#": 2355 + }, + { + "#": 2356 + }, + { + "#": 2357 + }, + { + "#": 2358 + }, + { + "#": 2359 + }, + { + "#": 2360 + }, + { + "#": 2361 + }, + { + "#": 2362 + }, + { + "#": 2363 + }, + { + "#": 2364 + }, + { + "#": 2365 + }, + { + "#": 2366 + }, + { + "#": 2367 + }, + { + "#": 2368 + }, + { + "#": 2369 + } + ], + { + "x": 426.544, + "y": 394.22175, + "index": 0, + "body": { + "#": 2351 + }, + "isInternal": false + }, + { + "x": 424.304, + "y": 399.62975, + "index": 1, + "body": { + "#": 2351 + }, + "isInternal": false + }, + { + "x": 420.166, + "y": 403.76775, + "index": 2, + "body": { + "#": 2351 + }, + "isInternal": false + }, + { + "x": 414.758, + "y": 406.00775, + "index": 3, + "body": { + "#": 2351 + }, + "isInternal": false + }, + { + "x": 408.906, + "y": 406.00775, + "index": 4, + "body": { + "#": 2351 + }, + "isInternal": false + }, + { + "x": 403.498, + "y": 403.76775, + "index": 5, + "body": { + "#": 2351 + }, + "isInternal": false + }, + { + "x": 399.36, + "y": 399.62975, + "index": 6, + "body": { + "#": 2351 + }, + "isInternal": false + }, + { + "x": 397.12, + "y": 394.22175, + "index": 7, + "body": { + "#": 2351 + }, + "isInternal": false + }, + { + "x": 397.12, + "y": 388.36975, + "index": 8, + "body": { + "#": 2351 + }, + "isInternal": false + }, + { + "x": 399.36, + "y": 382.96175, + "index": 9, + "body": { + "#": 2351 + }, + "isInternal": false + }, + { + "x": 403.498, + "y": 378.82375, + "index": 10, + "body": { + "#": 2351 + }, + "isInternal": false + }, + { + "x": 408.906, + "y": 376.58375, + "index": 11, + "body": { + "#": 2351 + }, + "isInternal": false + }, + { + "x": 414.758, + "y": 376.58375, + "index": 12, + "body": { + "#": 2351 + }, + "isInternal": false + }, + { + "x": 420.166, + "y": 378.82375, + "index": 13, + "body": { + "#": 2351 + }, + "isInternal": false + }, + { + "x": 424.304, + "y": 382.96175, + "index": 14, + "body": { + "#": 2351 + }, + "isInternal": false + }, + { + "x": 426.544, + "y": 388.36975, + "index": 15, + "body": { + "#": 2351 + }, + "isInternal": false + }, + { + "x": 411.832, + "y": 391.29575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2377 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2379 + }, + "max": { + "#": 2380 + } + }, + { + "x": 397.12, + "y": 376.58375 + }, + { + "x": 426.544, + "y": 406.00775 + }, + { + "x": 411.832, + "y": 388.38848 + }, + [ + { + "#": 2383 + }, + { + "#": 2384 + }, + { + "#": 2385 + }, + { + "#": 2386 + }, + { + "#": 2387 + }, + { + "#": 2388 + }, + { + "#": 2389 + }, + { + "#": 2390 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,8,7,8", + "startCol": 8, + "endCol": 8, + "startRow": 7, + "endRow": 8 + }, + { + "id": 125, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2393 + }, + "angle": 0, + "vertices": { + "#": 2394 + }, + "position": { + "#": 2411 + }, + "force": { + "#": 2412 + }, + "torque": 0, + "positionImpulse": { + "#": 2413 + }, + "constraintImpulse": { + "#": 2414 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2415 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2416 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2417 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2419 + }, + "positionPrev": { + "#": 2422 + }, + "anglePrev": 0, + "axes": { + "#": 2423 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2392 + }, + "sleepCounter": 0, + "region": { + "#": 2432 + } + }, + [ + { + "#": 2392 + } + ], + [ + { + "#": 2395 + }, + { + "#": 2396 + }, + { + "#": 2397 + }, + { + "#": 2398 + }, + { + "#": 2399 + }, + { + "#": 2400 + }, + { + "#": 2401 + }, + { + "#": 2402 + }, + { + "#": 2403 + }, + { + "#": 2404 + }, + { + "#": 2405 + }, + { + "#": 2406 + }, + { + "#": 2407 + }, + { + "#": 2408 + }, + { + "#": 2409 + }, + { + "#": 2410 + } + ], + { + "x": 455.968, + "y": 394.22175, + "index": 0, + "body": { + "#": 2392 + }, + "isInternal": false + }, + { + "x": 453.728, + "y": 399.62975, + "index": 1, + "body": { + "#": 2392 + }, + "isInternal": false + }, + { + "x": 449.59, + "y": 403.76775, + "index": 2, + "body": { + "#": 2392 + }, + "isInternal": false + }, + { + "x": 444.182, + "y": 406.00775, + "index": 3, + "body": { + "#": 2392 + }, + "isInternal": false + }, + { + "x": 438.33, + "y": 406.00775, + "index": 4, + "body": { + "#": 2392 + }, + "isInternal": false + }, + { + "x": 432.922, + "y": 403.76775, + "index": 5, + "body": { + "#": 2392 + }, + "isInternal": false + }, + { + "x": 428.784, + "y": 399.62975, + "index": 6, + "body": { + "#": 2392 + }, + "isInternal": false + }, + { + "x": 426.544, + "y": 394.22175, + "index": 7, + "body": { + "#": 2392 + }, + "isInternal": false + }, + { + "x": 426.544, + "y": 388.36975, + "index": 8, + "body": { + "#": 2392 + }, + "isInternal": false + }, + { + "x": 428.784, + "y": 382.96175, + "index": 9, + "body": { + "#": 2392 + }, + "isInternal": false + }, + { + "x": 432.922, + "y": 378.82375, + "index": 10, + "body": { + "#": 2392 + }, + "isInternal": false + }, + { + "x": 438.33, + "y": 376.58375, + "index": 11, + "body": { + "#": 2392 + }, + "isInternal": false + }, + { + "x": 444.182, + "y": 376.58375, + "index": 12, + "body": { + "#": 2392 + }, + "isInternal": false + }, + { + "x": 449.59, + "y": 378.82375, + "index": 13, + "body": { + "#": 2392 + }, + "isInternal": false + }, + { + "x": 453.728, + "y": 382.96175, + "index": 14, + "body": { + "#": 2392 + }, + "isInternal": false + }, + { + "x": 455.968, + "y": 388.36975, + "index": 15, + "body": { + "#": 2392 + }, + "isInternal": false + }, + { + "x": 441.256, + "y": 391.29575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2418 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2420 + }, + "max": { + "#": 2421 + } + }, + { + "x": 426.544, + "y": 376.58375 + }, + { + "x": 455.968, + "y": 406.00775 + }, + { + "x": 441.256, + "y": 388.38848 + }, + [ + { + "#": 2424 + }, + { + "#": 2425 + }, + { + "#": 2426 + }, + { + "#": 2427 + }, + { + "#": 2428 + }, + { + "#": 2429 + }, + { + "#": 2430 + }, + { + "#": 2431 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,7,8", + "startCol": 8, + "endCol": 9, + "startRow": 7, + "endRow": 8 + }, + { + "id": 126, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2434 + }, + "angle": 0, + "vertices": { + "#": 2435 + }, + "position": { + "#": 2452 + }, + "force": { + "#": 2453 + }, + "torque": 0, + "positionImpulse": { + "#": 2454 + }, + "constraintImpulse": { + "#": 2455 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2456 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2457 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2458 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2460 + }, + "positionPrev": { + "#": 2463 + }, + "anglePrev": 0, + "axes": { + "#": 2464 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2433 + }, + "sleepCounter": 0, + "region": { + "#": 2473 + } + }, + [ + { + "#": 2433 + } + ], + [ + { + "#": 2436 + }, + { + "#": 2437 + }, + { + "#": 2438 + }, + { + "#": 2439 + }, + { + "#": 2440 + }, + { + "#": 2441 + }, + { + "#": 2442 + }, + { + "#": 2443 + }, + { + "#": 2444 + }, + { + "#": 2445 + }, + { + "#": 2446 + }, + { + "#": 2447 + }, + { + "#": 2448 + }, + { + "#": 2449 + }, + { + "#": 2450 + }, + { + "#": 2451 + } + ], + { + "x": 485.392, + "y": 394.22175, + "index": 0, + "body": { + "#": 2433 + }, + "isInternal": false + }, + { + "x": 483.152, + "y": 399.62975, + "index": 1, + "body": { + "#": 2433 + }, + "isInternal": false + }, + { + "x": 479.014, + "y": 403.76775, + "index": 2, + "body": { + "#": 2433 + }, + "isInternal": false + }, + { + "x": 473.606, + "y": 406.00775, + "index": 3, + "body": { + "#": 2433 + }, + "isInternal": false + }, + { + "x": 467.754, + "y": 406.00775, + "index": 4, + "body": { + "#": 2433 + }, + "isInternal": false + }, + { + "x": 462.346, + "y": 403.76775, + "index": 5, + "body": { + "#": 2433 + }, + "isInternal": false + }, + { + "x": 458.208, + "y": 399.62975, + "index": 6, + "body": { + "#": 2433 + }, + "isInternal": false + }, + { + "x": 455.968, + "y": 394.22175, + "index": 7, + "body": { + "#": 2433 + }, + "isInternal": false + }, + { + "x": 455.968, + "y": 388.36975, + "index": 8, + "body": { + "#": 2433 + }, + "isInternal": false + }, + { + "x": 458.208, + "y": 382.96175, + "index": 9, + "body": { + "#": 2433 + }, + "isInternal": false + }, + { + "x": 462.346, + "y": 378.82375, + "index": 10, + "body": { + "#": 2433 + }, + "isInternal": false + }, + { + "x": 467.754, + "y": 376.58375, + "index": 11, + "body": { + "#": 2433 + }, + "isInternal": false + }, + { + "x": 473.606, + "y": 376.58375, + "index": 12, + "body": { + "#": 2433 + }, + "isInternal": false + }, + { + "x": 479.014, + "y": 378.82375, + "index": 13, + "body": { + "#": 2433 + }, + "isInternal": false + }, + { + "x": 483.152, + "y": 382.96175, + "index": 14, + "body": { + "#": 2433 + }, + "isInternal": false + }, + { + "x": 485.392, + "y": 388.36975, + "index": 15, + "body": { + "#": 2433 + }, + "isInternal": false + }, + { + "x": 470.68, + "y": 391.29575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2459 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2461 + }, + "max": { + "#": 2462 + } + }, + { + "x": 455.968, + "y": 376.58375 + }, + { + "x": 485.392, + "y": 406.00775 + }, + { + "x": 470.68, + "y": 388.38848 + }, + [ + { + "#": 2465 + }, + { + "#": 2466 + }, + { + "#": 2467 + }, + { + "#": 2468 + }, + { + "#": 2469 + }, + { + "#": 2470 + }, + { + "#": 2471 + }, + { + "#": 2472 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,7,8", + "startCol": 9, + "endCol": 10, + "startRow": 7, + "endRow": 8 + }, + [ + { + "#": 2475 + }, + { + "#": 2479 + }, + { + "#": 2483 + }, + { + "#": 2487 + }, + { + "#": 2491 + }, + { + "#": 2495 + }, + { + "#": 2499 + }, + { + "#": 2503 + }, + { + "#": 2507 + }, + { + "#": 2511 + }, + { + "#": 2515 + }, + { + "#": 2519 + }, + { + "#": 2523 + }, + { + "#": 2527 + }, + { + "#": 2531 + }, + { + "#": 2535 + }, + { + "#": 2539 + }, + { + "#": 2543 + }, + { + "#": 2547 + }, + { + "#": 2551 + }, + { + "#": 2555 + }, + { + "#": 2559 + }, + { + "#": 2563 + }, + { + "#": 2567 + }, + { + "#": 2571 + }, + { + "#": 2575 + }, + { + "#": 2579 + }, + { + "#": 2583 + }, + { + "#": 2587 + }, + { + "#": 2591 + }, + { + "#": 2595 + }, + { + "#": 2599 + }, + { + "#": 2603 + }, + { + "#": 2607 + }, + { + "#": 2611 + }, + { + "#": 2615 + }, + { + "#": 2619 + }, + { + "#": 2623 + }, + { + "#": 2627 + }, + { + "#": 2631 + }, + { + "#": 2635 + }, + { + "#": 2639 + }, + { + "#": 2643 + }, + { + "#": 2647 + }, + { + "#": 2651 + }, + { + "#": 2655 + }, + { + "#": 2659 + }, + { + "#": 2663 + }, + { + "#": 2667 + }, + { + "#": 2671 + }, + { + "#": 2675 + }, + { + "#": 2679 + }, + { + "#": 2683 + }, + { + "#": 2687 + }, + { + "#": 2691 + }, + { + "#": 2695 + }, + { + "#": 2699 + }, + { + "#": 2703 + }, + { + "#": 2707 + }, + { + "#": 2711 + }, + { + "#": 2715 + }, + { + "#": 2719 + }, + { + "#": 2723 + }, + { + "#": 2727 + }, + { + "#": 2731 + } + ], + { + "bodyA": { + "#": 1490 + }, + "bodyB": { + "#": 1531 + }, + "stiffness": 0.4, + "pointA": { + "#": 2476 + }, + "pointB": { + "#": 2477 + }, + "length": 29.424, + "render": { + "#": 2478 + }, + "id": 127, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1531 + }, + "bodyB": { + "#": 1572 + }, + "stiffness": 0.4, + "pointA": { + "#": 2480 + }, + "pointB": { + "#": 2481 + }, + "length": 29.424, + "render": { + "#": 2482 + }, + "id": 128, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1572 + }, + "bodyB": { + "#": 1613 + }, + "stiffness": 0.4, + "pointA": { + "#": 2484 + }, + "pointB": { + "#": 2485 + }, + "length": 29.424, + "render": { + "#": 2486 + }, + "id": 129, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1613 + }, + "bodyB": { + "#": 1654 + }, + "stiffness": 0.4, + "pointA": { + "#": 2488 + }, + "pointB": { + "#": 2489 + }, + "length": 29.424, + "render": { + "#": 2490 + }, + "id": 130, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1654 + }, + "bodyB": { + "#": 1695 + }, + "stiffness": 0.4, + "pointA": { + "#": 2492 + }, + "pointB": { + "#": 2493 + }, + "length": 29.424, + "render": { + "#": 2494 + }, + "id": 131, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1695 + }, + "bodyB": { + "#": 1736 + }, + "stiffness": 0.4, + "pointA": { + "#": 2496 + }, + "pointB": { + "#": 2497 + }, + "length": 29.424, + "render": { + "#": 2498 + }, + "id": 132, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1736 + }, + "bodyB": { + "#": 1777 + }, + "stiffness": 0.4, + "pointA": { + "#": 2500 + }, + "pointB": { + "#": 2501 + }, + "length": 29.424, + "render": { + "#": 2502 + }, + "id": 133, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1818 + }, + "bodyB": { + "#": 1859 + }, + "stiffness": 0.4, + "pointA": { + "#": 2504 + }, + "pointB": { + "#": 2505 + }, + "length": 29.424, + "render": { + "#": 2506 + }, + "id": 134, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1859 + }, + "bodyB": { + "#": 1900 + }, + "stiffness": 0.4, + "pointA": { + "#": 2508 + }, + "pointB": { + "#": 2509 + }, + "length": 29.424, + "render": { + "#": 2510 + }, + "id": 135, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1900 + }, + "bodyB": { + "#": 1941 + }, + "stiffness": 0.4, + "pointA": { + "#": 2512 + }, + "pointB": { + "#": 2513 + }, + "length": 29.424, + "render": { + "#": 2514 + }, + "id": 136, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1941 + }, + "bodyB": { + "#": 1982 + }, + "stiffness": 0.4, + "pointA": { + "#": 2516 + }, + "pointB": { + "#": 2517 + }, + "length": 29.424, + "render": { + "#": 2518 + }, + "id": 137, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1982 + }, + "bodyB": { + "#": 2023 + }, + "stiffness": 0.4, + "pointA": { + "#": 2520 + }, + "pointB": { + "#": 2521 + }, + "length": 29.424, + "render": { + "#": 2522 + }, + "id": 138, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2023 + }, + "bodyB": { + "#": 2064 + }, + "stiffness": 0.4, + "pointA": { + "#": 2524 + }, + "pointB": { + "#": 2525 + }, + "length": 29.424, + "render": { + "#": 2526 + }, + "id": 139, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2064 + }, + "bodyB": { + "#": 2105 + }, + "stiffness": 0.4, + "pointA": { + "#": 2528 + }, + "pointB": { + "#": 2529 + }, + "length": 29.424, + "render": { + "#": 2530 + }, + "id": 140, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1490 + }, + "bodyB": { + "#": 1818 + }, + "stiffness": 0.4, + "pointA": { + "#": 2532 + }, + "pointB": { + "#": 2533 + }, + "length": 29.424, + "render": { + "#": 2534 + }, + "id": 141, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1531 + }, + "bodyB": { + "#": 1818 + }, + "stiffness": 0.4, + "pointA": { + "#": 2536 + }, + "pointB": { + "#": 2537 + }, + "length": 41.61182, + "render": { + "#": 2538 + }, + "id": 142, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1531 + }, + "bodyB": { + "#": 1859 + }, + "stiffness": 0.4, + "pointA": { + "#": 2540 + }, + "pointB": { + "#": 2541 + }, + "length": 29.424, + "render": { + "#": 2542 + }, + "id": 143, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1490 + }, + "bodyB": { + "#": 1859 + }, + "stiffness": 0.4, + "pointA": { + "#": 2544 + }, + "pointB": { + "#": 2545 + }, + "length": 41.61182, + "render": { + "#": 2546 + }, + "id": 144, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1572 + }, + "bodyB": { + "#": 1859 + }, + "stiffness": 0.4, + "pointA": { + "#": 2548 + }, + "pointB": { + "#": 2549 + }, + "length": 41.61182, + "render": { + "#": 2550 + }, + "id": 145, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1572 + }, + "bodyB": { + "#": 1900 + }, + "stiffness": 0.4, + "pointA": { + "#": 2552 + }, + "pointB": { + "#": 2553 + }, + "length": 29.424, + "render": { + "#": 2554 + }, + "id": 146, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1531 + }, + "bodyB": { + "#": 1900 + }, + "stiffness": 0.4, + "pointA": { + "#": 2556 + }, + "pointB": { + "#": 2557 + }, + "length": 41.61182, + "render": { + "#": 2558 + }, + "id": 147, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1613 + }, + "bodyB": { + "#": 1900 + }, + "stiffness": 0.4, + "pointA": { + "#": 2560 + }, + "pointB": { + "#": 2561 + }, + "length": 41.61182, + "render": { + "#": 2562 + }, + "id": 148, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1613 + }, + "bodyB": { + "#": 1941 + }, + "stiffness": 0.4, + "pointA": { + "#": 2564 + }, + "pointB": { + "#": 2565 + }, + "length": 29.424, + "render": { + "#": 2566 + }, + "id": 149, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1572 + }, + "bodyB": { + "#": 1941 + }, + "stiffness": 0.4, + "pointA": { + "#": 2568 + }, + "pointB": { + "#": 2569 + }, + "length": 41.61182, + "render": { + "#": 2570 + }, + "id": 150, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1654 + }, + "bodyB": { + "#": 1941 + }, + "stiffness": 0.4, + "pointA": { + "#": 2572 + }, + "pointB": { + "#": 2573 + }, + "length": 41.61182, + "render": { + "#": 2574 + }, + "id": 151, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1654 + }, + "bodyB": { + "#": 1982 + }, + "stiffness": 0.4, + "pointA": { + "#": 2576 + }, + "pointB": { + "#": 2577 + }, + "length": 29.424, + "render": { + "#": 2578 + }, + "id": 152, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1613 + }, + "bodyB": { + "#": 1982 + }, + "stiffness": 0.4, + "pointA": { + "#": 2580 + }, + "pointB": { + "#": 2581 + }, + "length": 41.61182, + "render": { + "#": 2582 + }, + "id": 153, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1695 + }, + "bodyB": { + "#": 1982 + }, + "stiffness": 0.4, + "pointA": { + "#": 2584 + }, + "pointB": { + "#": 2585 + }, + "length": 41.61182, + "render": { + "#": 2586 + }, + "id": 154, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1695 + }, + "bodyB": { + "#": 2023 + }, + "stiffness": 0.4, + "pointA": { + "#": 2588 + }, + "pointB": { + "#": 2589 + }, + "length": 29.424, + "render": { + "#": 2590 + }, + "id": 155, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1654 + }, + "bodyB": { + "#": 2023 + }, + "stiffness": 0.4, + "pointA": { + "#": 2592 + }, + "pointB": { + "#": 2593 + }, + "length": 41.61182, + "render": { + "#": 2594 + }, + "id": 156, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1736 + }, + "bodyB": { + "#": 2023 + }, + "stiffness": 0.4, + "pointA": { + "#": 2596 + }, + "pointB": { + "#": 2597 + }, + "length": 41.61182, + "render": { + "#": 2598 + }, + "id": 157, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1736 + }, + "bodyB": { + "#": 2064 + }, + "stiffness": 0.4, + "pointA": { + "#": 2600 + }, + "pointB": { + "#": 2601 + }, + "length": 29.424, + "render": { + "#": 2602 + }, + "id": 158, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1695 + }, + "bodyB": { + "#": 2064 + }, + "stiffness": 0.4, + "pointA": { + "#": 2604 + }, + "pointB": { + "#": 2605 + }, + "length": 41.61182, + "render": { + "#": 2606 + }, + "id": 159, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1777 + }, + "bodyB": { + "#": 2064 + }, + "stiffness": 0.4, + "pointA": { + "#": 2608 + }, + "pointB": { + "#": 2609 + }, + "length": 41.61182, + "render": { + "#": 2610 + }, + "id": 160, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1777 + }, + "bodyB": { + "#": 2105 + }, + "stiffness": 0.4, + "pointA": { + "#": 2612 + }, + "pointB": { + "#": 2613 + }, + "length": 29.424, + "render": { + "#": 2614 + }, + "id": 161, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1736 + }, + "bodyB": { + "#": 2105 + }, + "stiffness": 0.4, + "pointA": { + "#": 2616 + }, + "pointB": { + "#": 2617 + }, + "length": 41.61182, + "render": { + "#": 2618 + }, + "id": 162, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2146 + }, + "bodyB": { + "#": 2187 + }, + "stiffness": 0.4, + "pointA": { + "#": 2620 + }, + "pointB": { + "#": 2621 + }, + "length": 29.424, + "render": { + "#": 2622 + }, + "id": 163, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2187 + }, + "bodyB": { + "#": 2228 + }, + "stiffness": 0.4, + "pointA": { + "#": 2624 + }, + "pointB": { + "#": 2625 + }, + "length": 29.424, + "render": { + "#": 2626 + }, + "id": 164, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2228 + }, + "bodyB": { + "#": 2269 + }, + "stiffness": 0.4, + "pointA": { + "#": 2628 + }, + "pointB": { + "#": 2629 + }, + "length": 29.424, + "render": { + "#": 2630 + }, + "id": 165, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2269 + }, + "bodyB": { + "#": 2310 + }, + "stiffness": 0.4, + "pointA": { + "#": 2632 + }, + "pointB": { + "#": 2633 + }, + "length": 29.424, + "render": { + "#": 2634 + }, + "id": 166, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2310 + }, + "bodyB": { + "#": 2351 + }, + "stiffness": 0.4, + "pointA": { + "#": 2636 + }, + "pointB": { + "#": 2637 + }, + "length": 29.424, + "render": { + "#": 2638 + }, + "id": 167, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2351 + }, + "bodyB": { + "#": 2392 + }, + "stiffness": 0.4, + "pointA": { + "#": 2640 + }, + "pointB": { + "#": 2641 + }, + "length": 29.424, + "render": { + "#": 2642 + }, + "id": 168, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2392 + }, + "bodyB": { + "#": 2433 + }, + "stiffness": 0.4, + "pointA": { + "#": 2644 + }, + "pointB": { + "#": 2645 + }, + "length": 29.424, + "render": { + "#": 2646 + }, + "id": 169, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1818 + }, + "bodyB": { + "#": 2146 + }, + "stiffness": 0.4, + "pointA": { + "#": 2648 + }, + "pointB": { + "#": 2649 + }, + "length": 29.424, + "render": { + "#": 2650 + }, + "id": 170, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1859 + }, + "bodyB": { + "#": 2146 + }, + "stiffness": 0.4, + "pointA": { + "#": 2652 + }, + "pointB": { + "#": 2653 + }, + "length": 41.61182, + "render": { + "#": 2654 + }, + "id": 171, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1859 + }, + "bodyB": { + "#": 2187 + }, + "stiffness": 0.4, + "pointA": { + "#": 2656 + }, + "pointB": { + "#": 2657 + }, + "length": 29.424, + "render": { + "#": 2658 + }, + "id": 172, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1818 + }, + "bodyB": { + "#": 2187 + }, + "stiffness": 0.4, + "pointA": { + "#": 2660 + }, + "pointB": { + "#": 2661 + }, + "length": 41.61182, + "render": { + "#": 2662 + }, + "id": 173, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1900 + }, + "bodyB": { + "#": 2187 + }, + "stiffness": 0.4, + "pointA": { + "#": 2664 + }, + "pointB": { + "#": 2665 + }, + "length": 41.61182, + "render": { + "#": 2666 + }, + "id": 174, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1900 + }, + "bodyB": { + "#": 2228 + }, + "stiffness": 0.4, + "pointA": { + "#": 2668 + }, + "pointB": { + "#": 2669 + }, + "length": 29.424, + "render": { + "#": 2670 + }, + "id": 175, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1859 + }, + "bodyB": { + "#": 2228 + }, + "stiffness": 0.4, + "pointA": { + "#": 2672 + }, + "pointB": { + "#": 2673 + }, + "length": 41.61182, + "render": { + "#": 2674 + }, + "id": 176, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1941 + }, + "bodyB": { + "#": 2228 + }, + "stiffness": 0.4, + "pointA": { + "#": 2676 + }, + "pointB": { + "#": 2677 + }, + "length": 41.61182, + "render": { + "#": 2678 + }, + "id": 177, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1941 + }, + "bodyB": { + "#": 2269 + }, + "stiffness": 0.4, + "pointA": { + "#": 2680 + }, + "pointB": { + "#": 2681 + }, + "length": 29.424, + "render": { + "#": 2682 + }, + "id": 178, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1900 + }, + "bodyB": { + "#": 2269 + }, + "stiffness": 0.4, + "pointA": { + "#": 2684 + }, + "pointB": { + "#": 2685 + }, + "length": 41.61182, + "render": { + "#": 2686 + }, + "id": 179, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1982 + }, + "bodyB": { + "#": 2269 + }, + "stiffness": 0.4, + "pointA": { + "#": 2688 + }, + "pointB": { + "#": 2689 + }, + "length": 41.61182, + "render": { + "#": 2690 + }, + "id": 180, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1982 + }, + "bodyB": { + "#": 2310 + }, + "stiffness": 0.4, + "pointA": { + "#": 2692 + }, + "pointB": { + "#": 2693 + }, + "length": 29.424, + "render": { + "#": 2694 + }, + "id": 181, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1941 + }, + "bodyB": { + "#": 2310 + }, + "stiffness": 0.4, + "pointA": { + "#": 2696 + }, + "pointB": { + "#": 2697 + }, + "length": 41.61182, + "render": { + "#": 2698 + }, + "id": 182, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2023 + }, + "bodyB": { + "#": 2310 + }, + "stiffness": 0.4, + "pointA": { + "#": 2700 + }, + "pointB": { + "#": 2701 + }, + "length": 41.61182, + "render": { + "#": 2702 + }, + "id": 183, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2023 + }, + "bodyB": { + "#": 2351 + }, + "stiffness": 0.4, + "pointA": { + "#": 2704 + }, + "pointB": { + "#": 2705 + }, + "length": 29.424, + "render": { + "#": 2706 + }, + "id": 184, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 1982 + }, + "bodyB": { + "#": 2351 + }, + "stiffness": 0.4, + "pointA": { + "#": 2708 + }, + "pointB": { + "#": 2709 + }, + "length": 41.61182, + "render": { + "#": 2710 + }, + "id": 185, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2064 + }, + "bodyB": { + "#": 2351 + }, + "stiffness": 0.4, + "pointA": { + "#": 2712 + }, + "pointB": { + "#": 2713 + }, + "length": 41.61182, + "render": { + "#": 2714 + }, + "id": 186, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2064 + }, + "bodyB": { + "#": 2392 + }, + "stiffness": 0.4, + "pointA": { + "#": 2716 + }, + "pointB": { + "#": 2717 + }, + "length": 29.424, + "render": { + "#": 2718 + }, + "id": 187, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2023 + }, + "bodyB": { + "#": 2392 + }, + "stiffness": 0.4, + "pointA": { + "#": 2720 + }, + "pointB": { + "#": 2721 + }, + "length": 41.61182, + "render": { + "#": 2722 + }, + "id": 188, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2105 + }, + "bodyB": { + "#": 2392 + }, + "stiffness": 0.4, + "pointA": { + "#": 2724 + }, + "pointB": { + "#": 2725 + }, + "length": 41.61182, + "render": { + "#": 2726 + }, + "id": 189, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2105 + }, + "bodyB": { + "#": 2433 + }, + "stiffness": 0.4, + "pointA": { + "#": 2728 + }, + "pointB": { + "#": 2729 + }, + "length": 29.424, + "render": { + "#": 2730 + }, + "id": 190, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2064 + }, + "bodyB": { + "#": 2433 + }, + "stiffness": 0.4, + "pointA": { + "#": 2732 + }, + "pointB": { + "#": 2733 + }, + "length": 41.61182, + "render": { + "#": 2734 + }, + "id": 191, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "id": 192, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 2737 + }, + "constraints": { + "#": 3394 + }, + "composites": { + "#": 3563 + }, + "label": "Soft Body" + }, + [ + { + "#": 2738 + }, + { + "#": 2779 + }, + { + "#": 2820 + }, + { + "#": 2861 + }, + { + "#": 2902 + }, + { + "#": 2943 + }, + { + "#": 2984 + }, + { + "#": 3025 + }, + { + "#": 3066 + }, + { + "#": 3107 + }, + { + "#": 3148 + }, + { + "#": 3189 + }, + { + "#": 3230 + }, + { + "#": 3271 + }, + { + "#": 3312 + }, + { + "#": 3353 + } + ], + { + "id": 193, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2739 + }, + "angle": 0, + "vertices": { + "#": 2740 + }, + "position": { + "#": 2757 + }, + "force": { + "#": 2758 + }, + "torque": 0, + "positionImpulse": { + "#": 2759 + }, + "constraintImpulse": { + "#": 2760 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2761 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2762 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2763 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2765 + }, + "positionPrev": { + "#": 2768 + }, + "anglePrev": 0, + "axes": { + "#": 2769 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2738 + }, + "sleepCounter": 0, + "region": { + "#": 2778 + } + }, + [ + { + "#": 2738 + } + ], + [ + { + "#": 2741 + }, + { + "#": 2742 + }, + { + "#": 2743 + }, + { + "#": 2744 + }, + { + "#": 2745 + }, + { + "#": 2746 + }, + { + "#": 2747 + }, + { + "#": 2748 + }, + { + "#": 2749 + }, + { + "#": 2750 + }, + { + "#": 2751 + }, + { + "#": 2752 + }, + { + "#": 2753 + }, + { + "#": 2754 + }, + { + "#": 2755 + }, + { + "#": 2756 + } + ], + { + "x": 279.424, + "y": 435.37375, + "index": 0, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 440.78175, + "index": 1, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 444.91975, + "index": 2, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 447.15975, + "index": 3, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 447.15975, + "index": 4, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 444.91975, + "index": 5, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 440.78175, + "index": 6, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 250, + "y": 435.37375, + "index": 7, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 250, + "y": 429.52175, + "index": 8, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 424.11375, + "index": 9, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 419.97575, + "index": 10, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 417.73575, + "index": 11, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 417.73575, + "index": 12, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 419.97575, + "index": 13, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 424.11375, + "index": 14, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 429.52175, + "index": 15, + "body": { + "#": 2738 + }, + "isInternal": false + }, + { + "x": 264.712, + "y": 432.44775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2764 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2766 + }, + "max": { + "#": 2767 + } + }, + { + "x": 250, + "y": 417.73575 + }, + { + "x": 279.424, + "y": 447.15975 + }, + { + "x": 264.712, + "y": 429.54048 + }, + [ + { + "#": 2770 + }, + { + "#": 2771 + }, + { + "#": 2772 + }, + { + "#": 2773 + }, + { + "#": 2774 + }, + { + "#": 2775 + }, + { + "#": 2776 + }, + { + "#": 2777 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,8,9", + "startCol": 5, + "endCol": 5, + "startRow": 8, + "endRow": 9 + }, + { + "id": 194, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2780 + }, + "angle": 0, + "vertices": { + "#": 2781 + }, + "position": { + "#": 2798 + }, + "force": { + "#": 2799 + }, + "torque": 0, + "positionImpulse": { + "#": 2800 + }, + "constraintImpulse": { + "#": 2801 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2802 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2803 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2804 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2806 + }, + "positionPrev": { + "#": 2809 + }, + "anglePrev": 0, + "axes": { + "#": 2810 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2779 + }, + "sleepCounter": 0, + "region": { + "#": 2819 + } + }, + [ + { + "#": 2779 + } + ], + [ + { + "#": 2782 + }, + { + "#": 2783 + }, + { + "#": 2784 + }, + { + "#": 2785 + }, + { + "#": 2786 + }, + { + "#": 2787 + }, + { + "#": 2788 + }, + { + "#": 2789 + }, + { + "#": 2790 + }, + { + "#": 2791 + }, + { + "#": 2792 + }, + { + "#": 2793 + }, + { + "#": 2794 + }, + { + "#": 2795 + }, + { + "#": 2796 + }, + { + "#": 2797 + } + ], + { + "x": 308.848, + "y": 435.37375, + "index": 0, + "body": { + "#": 2779 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 440.78175, + "index": 1, + "body": { + "#": 2779 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 444.91975, + "index": 2, + "body": { + "#": 2779 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 447.15975, + "index": 3, + "body": { + "#": 2779 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 447.15975, + "index": 4, + "body": { + "#": 2779 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 444.91975, + "index": 5, + "body": { + "#": 2779 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 440.78175, + "index": 6, + "body": { + "#": 2779 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 435.37375, + "index": 7, + "body": { + "#": 2779 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 429.52175, + "index": 8, + "body": { + "#": 2779 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 424.11375, + "index": 9, + "body": { + "#": 2779 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 419.97575, + "index": 10, + "body": { + "#": 2779 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 417.73575, + "index": 11, + "body": { + "#": 2779 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 417.73575, + "index": 12, + "body": { + "#": 2779 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 419.97575, + "index": 13, + "body": { + "#": 2779 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 424.11375, + "index": 14, + "body": { + "#": 2779 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 429.52175, + "index": 15, + "body": { + "#": 2779 + }, + "isInternal": false + }, + { + "x": 294.136, + "y": 432.44775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2805 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2807 + }, + "max": { + "#": 2808 + } + }, + { + "x": 279.424, + "y": 417.73575 + }, + { + "x": 308.848, + "y": 447.15975 + }, + { + "x": 294.136, + "y": 429.54048 + }, + [ + { + "#": 2811 + }, + { + "#": 2812 + }, + { + "#": 2813 + }, + { + "#": 2814 + }, + { + "#": 2815 + }, + { + "#": 2816 + }, + { + "#": 2817 + }, + { + "#": 2818 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,8,9", + "startCol": 5, + "endCol": 6, + "startRow": 8, + "endRow": 9 + }, + { + "id": 195, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2821 + }, + "angle": 0, + "vertices": { + "#": 2822 + }, + "position": { + "#": 2839 + }, + "force": { + "#": 2840 + }, + "torque": 0, + "positionImpulse": { + "#": 2841 + }, + "constraintImpulse": { + "#": 2842 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2843 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2844 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2845 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2847 + }, + "positionPrev": { + "#": 2850 + }, + "anglePrev": 0, + "axes": { + "#": 2851 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2820 + }, + "sleepCounter": 0, + "region": { + "#": 2860 + } + }, + [ + { + "#": 2820 + } + ], + [ + { + "#": 2823 + }, + { + "#": 2824 + }, + { + "#": 2825 + }, + { + "#": 2826 + }, + { + "#": 2827 + }, + { + "#": 2828 + }, + { + "#": 2829 + }, + { + "#": 2830 + }, + { + "#": 2831 + }, + { + "#": 2832 + }, + { + "#": 2833 + }, + { + "#": 2834 + }, + { + "#": 2835 + }, + { + "#": 2836 + }, + { + "#": 2837 + }, + { + "#": 2838 + } + ], + { + "x": 338.272, + "y": 435.37375, + "index": 0, + "body": { + "#": 2820 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 440.78175, + "index": 1, + "body": { + "#": 2820 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 444.91975, + "index": 2, + "body": { + "#": 2820 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 447.15975, + "index": 3, + "body": { + "#": 2820 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 447.15975, + "index": 4, + "body": { + "#": 2820 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 444.91975, + "index": 5, + "body": { + "#": 2820 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 440.78175, + "index": 6, + "body": { + "#": 2820 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 435.37375, + "index": 7, + "body": { + "#": 2820 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 429.52175, + "index": 8, + "body": { + "#": 2820 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 424.11375, + "index": 9, + "body": { + "#": 2820 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 419.97575, + "index": 10, + "body": { + "#": 2820 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 417.73575, + "index": 11, + "body": { + "#": 2820 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 417.73575, + "index": 12, + "body": { + "#": 2820 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 419.97575, + "index": 13, + "body": { + "#": 2820 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 424.11375, + "index": 14, + "body": { + "#": 2820 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 429.52175, + "index": 15, + "body": { + "#": 2820 + }, + "isInternal": false + }, + { + "x": 323.56, + "y": 432.44775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2846 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2848 + }, + "max": { + "#": 2849 + } + }, + { + "x": 308.848, + "y": 417.73575 + }, + { + "x": 338.272, + "y": 447.15975 + }, + { + "x": 323.56, + "y": 429.54048 + }, + [ + { + "#": 2852 + }, + { + "#": 2853 + }, + { + "#": 2854 + }, + { + "#": 2855 + }, + { + "#": 2856 + }, + { + "#": 2857 + }, + { + "#": 2858 + }, + { + "#": 2859 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,8,9", + "startCol": 6, + "endCol": 7, + "startRow": 8, + "endRow": 9 + }, + { + "id": 196, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2862 + }, + "angle": 0, + "vertices": { + "#": 2863 + }, + "position": { + "#": 2880 + }, + "force": { + "#": 2881 + }, + "torque": 0, + "positionImpulse": { + "#": 2882 + }, + "constraintImpulse": { + "#": 2883 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2884 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2885 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2886 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2888 + }, + "positionPrev": { + "#": 2891 + }, + "anglePrev": 0, + "axes": { + "#": 2892 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2861 + }, + "sleepCounter": 0, + "region": { + "#": 2901 + } + }, + [ + { + "#": 2861 + } + ], + [ + { + "#": 2864 + }, + { + "#": 2865 + }, + { + "#": 2866 + }, + { + "#": 2867 + }, + { + "#": 2868 + }, + { + "#": 2869 + }, + { + "#": 2870 + }, + { + "#": 2871 + }, + { + "#": 2872 + }, + { + "#": 2873 + }, + { + "#": 2874 + }, + { + "#": 2875 + }, + { + "#": 2876 + }, + { + "#": 2877 + }, + { + "#": 2878 + }, + { + "#": 2879 + } + ], + { + "x": 367.696, + "y": 435.37375, + "index": 0, + "body": { + "#": 2861 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 440.78175, + "index": 1, + "body": { + "#": 2861 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 444.91975, + "index": 2, + "body": { + "#": 2861 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 447.15975, + "index": 3, + "body": { + "#": 2861 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 447.15975, + "index": 4, + "body": { + "#": 2861 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 444.91975, + "index": 5, + "body": { + "#": 2861 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 440.78175, + "index": 6, + "body": { + "#": 2861 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 435.37375, + "index": 7, + "body": { + "#": 2861 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 429.52175, + "index": 8, + "body": { + "#": 2861 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 424.11375, + "index": 9, + "body": { + "#": 2861 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 419.97575, + "index": 10, + "body": { + "#": 2861 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 417.73575, + "index": 11, + "body": { + "#": 2861 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 417.73575, + "index": 12, + "body": { + "#": 2861 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 419.97575, + "index": 13, + "body": { + "#": 2861 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 424.11375, + "index": 14, + "body": { + "#": 2861 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 429.52175, + "index": 15, + "body": { + "#": 2861 + }, + "isInternal": false + }, + { + "x": 352.984, + "y": 432.44775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2887 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2889 + }, + "max": { + "#": 2890 + } + }, + { + "x": 338.272, + "y": 417.73575 + }, + { + "x": 367.696, + "y": 447.15975 + }, + { + "x": 352.984, + "y": 429.54048 + }, + [ + { + "#": 2893 + }, + { + "#": 2894 + }, + { + "#": 2895 + }, + { + "#": 2896 + }, + { + "#": 2897 + }, + { + "#": 2898 + }, + { + "#": 2899 + }, + { + "#": 2900 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,8,9", + "startCol": 7, + "endCol": 7, + "startRow": 8, + "endRow": 9 + }, + { + "id": 197, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2903 + }, + "angle": 0, + "vertices": { + "#": 2904 + }, + "position": { + "#": 2921 + }, + "force": { + "#": 2922 + }, + "torque": 0, + "positionImpulse": { + "#": 2923 + }, + "constraintImpulse": { + "#": 2924 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2925 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2926 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2927 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2929 + }, + "positionPrev": { + "#": 2932 + }, + "anglePrev": 0, + "axes": { + "#": 2933 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2902 + }, + "sleepCounter": 0, + "region": { + "#": 2942 + } + }, + [ + { + "#": 2902 + } + ], + [ + { + "#": 2905 + }, + { + "#": 2906 + }, + { + "#": 2907 + }, + { + "#": 2908 + }, + { + "#": 2909 + }, + { + "#": 2910 + }, + { + "#": 2911 + }, + { + "#": 2912 + }, + { + "#": 2913 + }, + { + "#": 2914 + }, + { + "#": 2915 + }, + { + "#": 2916 + }, + { + "#": 2917 + }, + { + "#": 2918 + }, + { + "#": 2919 + }, + { + "#": 2920 + } + ], + { + "x": 279.424, + "y": 464.79775, + "index": 0, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 470.20575, + "index": 1, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 474.34375, + "index": 2, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 476.58375, + "index": 3, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 476.58375, + "index": 4, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 474.34375, + "index": 5, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 470.20575, + "index": 6, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 250, + "y": 464.79775, + "index": 7, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 250, + "y": 458.94575, + "index": 8, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 453.53775, + "index": 9, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 449.39975, + "index": 10, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 447.15975, + "index": 11, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 447.15975, + "index": 12, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 449.39975, + "index": 13, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 453.53775, + "index": 14, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 458.94575, + "index": 15, + "body": { + "#": 2902 + }, + "isInternal": false + }, + { + "x": 264.712, + "y": 461.87175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2928 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2930 + }, + "max": { + "#": 2931 + } + }, + { + "x": 250, + "y": 447.15975 + }, + { + "x": 279.424, + "y": 476.58375 + }, + { + "x": 264.712, + "y": 458.96448 + }, + [ + { + "#": 2934 + }, + { + "#": 2935 + }, + { + "#": 2936 + }, + { + "#": 2937 + }, + { + "#": 2938 + }, + { + "#": 2939 + }, + { + "#": 2940 + }, + { + "#": 2941 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,9,9", + "startCol": 5, + "endCol": 5, + "startRow": 9, + "endRow": 9 + }, + { + "id": 198, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2944 + }, + "angle": 0, + "vertices": { + "#": 2945 + }, + "position": { + "#": 2962 + }, + "force": { + "#": 2963 + }, + "torque": 0, + "positionImpulse": { + "#": 2964 + }, + "constraintImpulse": { + "#": 2965 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2966 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2967 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2968 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 2970 + }, + "positionPrev": { + "#": 2973 + }, + "anglePrev": 0, + "axes": { + "#": 2974 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2943 + }, + "sleepCounter": 0, + "region": { + "#": 2983 + } + }, + [ + { + "#": 2943 + } + ], + [ + { + "#": 2946 + }, + { + "#": 2947 + }, + { + "#": 2948 + }, + { + "#": 2949 + }, + { + "#": 2950 + }, + { + "#": 2951 + }, + { + "#": 2952 + }, + { + "#": 2953 + }, + { + "#": 2954 + }, + { + "#": 2955 + }, + { + "#": 2956 + }, + { + "#": 2957 + }, + { + "#": 2958 + }, + { + "#": 2959 + }, + { + "#": 2960 + }, + { + "#": 2961 + } + ], + { + "x": 308.848, + "y": 464.79775, + "index": 0, + "body": { + "#": 2943 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 470.20575, + "index": 1, + "body": { + "#": 2943 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 474.34375, + "index": 2, + "body": { + "#": 2943 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 476.58375, + "index": 3, + "body": { + "#": 2943 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 476.58375, + "index": 4, + "body": { + "#": 2943 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 474.34375, + "index": 5, + "body": { + "#": 2943 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 470.20575, + "index": 6, + "body": { + "#": 2943 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 464.79775, + "index": 7, + "body": { + "#": 2943 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 458.94575, + "index": 8, + "body": { + "#": 2943 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 453.53775, + "index": 9, + "body": { + "#": 2943 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 449.39975, + "index": 10, + "body": { + "#": 2943 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 447.15975, + "index": 11, + "body": { + "#": 2943 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 447.15975, + "index": 12, + "body": { + "#": 2943 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 449.39975, + "index": 13, + "body": { + "#": 2943 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 453.53775, + "index": 14, + "body": { + "#": 2943 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 458.94575, + "index": 15, + "body": { + "#": 2943 + }, + "isInternal": false + }, + { + "x": 294.136, + "y": 461.87175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2969 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2971 + }, + "max": { + "#": 2972 + } + }, + { + "x": 279.424, + "y": 447.15975 + }, + { + "x": 308.848, + "y": 476.58375 + }, + { + "x": 294.136, + "y": 458.96448 + }, + [ + { + "#": 2975 + }, + { + "#": 2976 + }, + { + "#": 2977 + }, + { + "#": 2978 + }, + { + "#": 2979 + }, + { + "#": 2980 + }, + { + "#": 2981 + }, + { + "#": 2982 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,9,9", + "startCol": 5, + "endCol": 6, + "startRow": 9, + "endRow": 9 + }, + { + "id": 199, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2985 + }, + "angle": 0, + "vertices": { + "#": 2986 + }, + "position": { + "#": 3003 + }, + "force": { + "#": 3004 + }, + "torque": 0, + "positionImpulse": { + "#": 3005 + }, + "constraintImpulse": { + "#": 3006 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3007 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3008 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3009 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 3011 + }, + "positionPrev": { + "#": 3014 + }, + "anglePrev": 0, + "axes": { + "#": 3015 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 2984 + }, + "sleepCounter": 0, + "region": { + "#": 3024 + } + }, + [ + { + "#": 2984 + } + ], + [ + { + "#": 2987 + }, + { + "#": 2988 + }, + { + "#": 2989 + }, + { + "#": 2990 + }, + { + "#": 2991 + }, + { + "#": 2992 + }, + { + "#": 2993 + }, + { + "#": 2994 + }, + { + "#": 2995 + }, + { + "#": 2996 + }, + { + "#": 2997 + }, + { + "#": 2998 + }, + { + "#": 2999 + }, + { + "#": 3000 + }, + { + "#": 3001 + }, + { + "#": 3002 + } + ], + { + "x": 338.272, + "y": 464.79775, + "index": 0, + "body": { + "#": 2984 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 470.20575, + "index": 1, + "body": { + "#": 2984 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 474.34375, + "index": 2, + "body": { + "#": 2984 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 476.58375, + "index": 3, + "body": { + "#": 2984 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 476.58375, + "index": 4, + "body": { + "#": 2984 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 474.34375, + "index": 5, + "body": { + "#": 2984 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 470.20575, + "index": 6, + "body": { + "#": 2984 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 464.79775, + "index": 7, + "body": { + "#": 2984 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 458.94575, + "index": 8, + "body": { + "#": 2984 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 453.53775, + "index": 9, + "body": { + "#": 2984 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 449.39975, + "index": 10, + "body": { + "#": 2984 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 447.15975, + "index": 11, + "body": { + "#": 2984 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 447.15975, + "index": 12, + "body": { + "#": 2984 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 449.39975, + "index": 13, + "body": { + "#": 2984 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 453.53775, + "index": 14, + "body": { + "#": 2984 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 458.94575, + "index": 15, + "body": { + "#": 2984 + }, + "isInternal": false + }, + { + "x": 323.56, + "y": 461.87175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3010 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3012 + }, + "max": { + "#": 3013 + } + }, + { + "x": 308.848, + "y": 447.15975 + }, + { + "x": 338.272, + "y": 476.58375 + }, + { + "x": 323.56, + "y": 458.96448 + }, + [ + { + "#": 3016 + }, + { + "#": 3017 + }, + { + "#": 3018 + }, + { + "#": 3019 + }, + { + "#": 3020 + }, + { + "#": 3021 + }, + { + "#": 3022 + }, + { + "#": 3023 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,9,9", + "startCol": 6, + "endCol": 7, + "startRow": 9, + "endRow": 9 + }, + { + "id": 200, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3026 + }, + "angle": 0, + "vertices": { + "#": 3027 + }, + "position": { + "#": 3044 + }, + "force": { + "#": 3045 + }, + "torque": 0, + "positionImpulse": { + "#": 3046 + }, + "constraintImpulse": { + "#": 3047 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3048 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3049 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3050 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 3052 + }, + "positionPrev": { + "#": 3055 + }, + "anglePrev": 0, + "axes": { + "#": 3056 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 3025 + }, + "sleepCounter": 0, + "region": { + "#": 3065 + } + }, + [ + { + "#": 3025 + } + ], + [ + { + "#": 3028 + }, + { + "#": 3029 + }, + { + "#": 3030 + }, + { + "#": 3031 + }, + { + "#": 3032 + }, + { + "#": 3033 + }, + { + "#": 3034 + }, + { + "#": 3035 + }, + { + "#": 3036 + }, + { + "#": 3037 + }, + { + "#": 3038 + }, + { + "#": 3039 + }, + { + "#": 3040 + }, + { + "#": 3041 + }, + { + "#": 3042 + }, + { + "#": 3043 + } + ], + { + "x": 367.696, + "y": 464.79775, + "index": 0, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 470.20575, + "index": 1, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 474.34375, + "index": 2, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 476.58375, + "index": 3, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 476.58375, + "index": 4, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 474.34375, + "index": 5, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 470.20575, + "index": 6, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 464.79775, + "index": 7, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 458.94575, + "index": 8, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 453.53775, + "index": 9, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 449.39975, + "index": 10, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 447.15975, + "index": 11, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 447.15975, + "index": 12, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 449.39975, + "index": 13, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 453.53775, + "index": 14, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 458.94575, + "index": 15, + "body": { + "#": 3025 + }, + "isInternal": false + }, + { + "x": 352.984, + "y": 461.87175 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3051 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3053 + }, + "max": { + "#": 3054 + } + }, + { + "x": 338.272, + "y": 447.15975 + }, + { + "x": 367.696, + "y": 476.58375 + }, + { + "x": 352.984, + "y": 458.96448 + }, + [ + { + "#": 3057 + }, + { + "#": 3058 + }, + { + "#": 3059 + }, + { + "#": 3060 + }, + { + "#": 3061 + }, + { + "#": 3062 + }, + { + "#": 3063 + }, + { + "#": 3064 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,9,9", + "startCol": 7, + "endCol": 7, + "startRow": 9, + "endRow": 9 + }, + { + "id": 201, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3067 + }, + "angle": 0, + "vertices": { + "#": 3068 + }, + "position": { + "#": 3085 + }, + "force": { + "#": 3086 + }, + "torque": 0, + "positionImpulse": { + "#": 3087 + }, + "constraintImpulse": { + "#": 3088 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3089 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3090 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3091 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 3093 + }, + "positionPrev": { + "#": 3096 + }, + "anglePrev": 0, + "axes": { + "#": 3097 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 3066 + }, + "sleepCounter": 0, + "region": { + "#": 3106 + } + }, + [ + { + "#": 3066 + } + ], + [ + { + "#": 3069 + }, + { + "#": 3070 + }, + { + "#": 3071 + }, + { + "#": 3072 + }, + { + "#": 3073 + }, + { + "#": 3074 + }, + { + "#": 3075 + }, + { + "#": 3076 + }, + { + "#": 3077 + }, + { + "#": 3078 + }, + { + "#": 3079 + }, + { + "#": 3080 + }, + { + "#": 3081 + }, + { + "#": 3082 + }, + { + "#": 3083 + }, + { + "#": 3084 + } + ], + { + "x": 279.424, + "y": 494.25675, + "index": 0, + "body": { + "#": 3066 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 499.66475, + "index": 1, + "body": { + "#": 3066 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 503.80275, + "index": 2, + "body": { + "#": 3066 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 506.04275, + "index": 3, + "body": { + "#": 3066 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 506.04275, + "index": 4, + "body": { + "#": 3066 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 503.80275, + "index": 5, + "body": { + "#": 3066 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 499.66475, + "index": 6, + "body": { + "#": 3066 + }, + "isInternal": false + }, + { + "x": 250, + "y": 494.25675, + "index": 7, + "body": { + "#": 3066 + }, + "isInternal": false + }, + { + "x": 250, + "y": 488.40475, + "index": 8, + "body": { + "#": 3066 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 482.99675, + "index": 9, + "body": { + "#": 3066 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 478.85875, + "index": 10, + "body": { + "#": 3066 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 476.61875, + "index": 11, + "body": { + "#": 3066 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 476.61875, + "index": 12, + "body": { + "#": 3066 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 478.85875, + "index": 13, + "body": { + "#": 3066 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 482.99675, + "index": 14, + "body": { + "#": 3066 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 488.40475, + "index": 15, + "body": { + "#": 3066 + }, + "isInternal": false + }, + { + "x": 264.712, + "y": 491.33075 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0208 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.89127 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3092 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3094 + }, + "max": { + "#": 3095 + } + }, + { + "x": 250, + "y": 476.61875 + }, + { + "x": 279.424, + "y": 508.94003 + }, + { + "x": 264.712, + "y": 488.43948 + }, + [ + { + "#": 3098 + }, + { + "#": 3099 + }, + { + "#": 3100 + }, + { + "#": 3101 + }, + { + "#": 3102 + }, + { + "#": 3103 + }, + { + "#": 3104 + }, + { + "#": 3105 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,9,10", + "startCol": 5, + "endCol": 5, + "startRow": 9, + "endRow": 10 + }, + { + "id": 202, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3108 + }, + "angle": 0, + "vertices": { + "#": 3109 + }, + "position": { + "#": 3126 + }, + "force": { + "#": 3127 + }, + "torque": 0, + "positionImpulse": { + "#": 3128 + }, + "constraintImpulse": { + "#": 3129 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3130 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3131 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3132 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 3134 + }, + "positionPrev": { + "#": 3137 + }, + "anglePrev": 0, + "axes": { + "#": 3138 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 3107 + }, + "sleepCounter": 0, + "region": { + "#": 3147 + } + }, + [ + { + "#": 3107 + } + ], + [ + { + "#": 3110 + }, + { + "#": 3111 + }, + { + "#": 3112 + }, + { + "#": 3113 + }, + { + "#": 3114 + }, + { + "#": 3115 + }, + { + "#": 3116 + }, + { + "#": 3117 + }, + { + "#": 3118 + }, + { + "#": 3119 + }, + { + "#": 3120 + }, + { + "#": 3121 + }, + { + "#": 3122 + }, + { + "#": 3123 + }, + { + "#": 3124 + }, + { + "#": 3125 + } + ], + { + "x": 308.848, + "y": 494.25675, + "index": 0, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 499.66475, + "index": 1, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 503.80275, + "index": 2, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 506.04275, + "index": 3, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 506.04275, + "index": 4, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 503.80275, + "index": 5, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 499.66475, + "index": 6, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 494.25675, + "index": 7, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 488.40475, + "index": 8, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 482.99675, + "index": 9, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 478.85875, + "index": 10, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 476.61875, + "index": 11, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 476.61875, + "index": 12, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 478.85875, + "index": 13, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 482.99675, + "index": 14, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 488.40475, + "index": 15, + "body": { + "#": 3107 + }, + "isInternal": false + }, + { + "x": 294.136, + "y": 491.33075 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0208 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.89127 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3133 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3135 + }, + "max": { + "#": 3136 + } + }, + { + "x": 279.424, + "y": 476.61875 + }, + { + "x": 308.848, + "y": 508.94003 + }, + { + "x": 294.136, + "y": 488.43948 + }, + [ + { + "#": 3139 + }, + { + "#": 3140 + }, + { + "#": 3141 + }, + { + "#": 3142 + }, + { + "#": 3143 + }, + { + "#": 3144 + }, + { + "#": 3145 + }, + { + "#": 3146 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,9,10", + "startCol": 5, + "endCol": 6, + "startRow": 9, + "endRow": 10 + }, + { + "id": 203, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3149 + }, + "angle": 0, + "vertices": { + "#": 3150 + }, + "position": { + "#": 3167 + }, + "force": { + "#": 3168 + }, + "torque": 0, + "positionImpulse": { + "#": 3169 + }, + "constraintImpulse": { + "#": 3170 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3171 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3172 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3173 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 3175 + }, + "positionPrev": { + "#": 3178 + }, + "anglePrev": 0, + "axes": { + "#": 3179 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 3148 + }, + "sleepCounter": 0, + "region": { + "#": 3188 + } + }, + [ + { + "#": 3148 + } + ], + [ + { + "#": 3151 + }, + { + "#": 3152 + }, + { + "#": 3153 + }, + { + "#": 3154 + }, + { + "#": 3155 + }, + { + "#": 3156 + }, + { + "#": 3157 + }, + { + "#": 3158 + }, + { + "#": 3159 + }, + { + "#": 3160 + }, + { + "#": 3161 + }, + { + "#": 3162 + }, + { + "#": 3163 + }, + { + "#": 3164 + }, + { + "#": 3165 + }, + { + "#": 3166 + } + ], + { + "x": 338.272, + "y": 494.25675, + "index": 0, + "body": { + "#": 3148 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 499.66475, + "index": 1, + "body": { + "#": 3148 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 503.80275, + "index": 2, + "body": { + "#": 3148 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 506.04275, + "index": 3, + "body": { + "#": 3148 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 506.04275, + "index": 4, + "body": { + "#": 3148 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 503.80275, + "index": 5, + "body": { + "#": 3148 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 499.66475, + "index": 6, + "body": { + "#": 3148 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 494.25675, + "index": 7, + "body": { + "#": 3148 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 488.40475, + "index": 8, + "body": { + "#": 3148 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 482.99675, + "index": 9, + "body": { + "#": 3148 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 478.85875, + "index": 10, + "body": { + "#": 3148 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 476.61875, + "index": 11, + "body": { + "#": 3148 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 476.61875, + "index": 12, + "body": { + "#": 3148 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 478.85875, + "index": 13, + "body": { + "#": 3148 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 482.99675, + "index": 14, + "body": { + "#": 3148 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 488.40475, + "index": 15, + "body": { + "#": 3148 + }, + "isInternal": false + }, + { + "x": 323.56, + "y": 491.33075 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0208 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.89127 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3174 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3176 + }, + "max": { + "#": 3177 + } + }, + { + "x": 308.848, + "y": 476.61875 + }, + { + "x": 338.272, + "y": 508.94003 + }, + { + "x": 323.56, + "y": 488.43948 + }, + [ + { + "#": 3180 + }, + { + "#": 3181 + }, + { + "#": 3182 + }, + { + "#": 3183 + }, + { + "#": 3184 + }, + { + "#": 3185 + }, + { + "#": 3186 + }, + { + "#": 3187 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,9,10", + "startCol": 6, + "endCol": 7, + "startRow": 9, + "endRow": 10 + }, + { + "id": 204, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3190 + }, + "angle": 0, + "vertices": { + "#": 3191 + }, + "position": { + "#": 3208 + }, + "force": { + "#": 3209 + }, + "torque": 0, + "positionImpulse": { + "#": 3210 + }, + "constraintImpulse": { + "#": 3211 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3212 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3213 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3214 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 3216 + }, + "positionPrev": { + "#": 3219 + }, + "anglePrev": 0, + "axes": { + "#": 3220 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 3189 + }, + "sleepCounter": 0, + "region": { + "#": 3229 + } + }, + [ + { + "#": 3189 + } + ], + [ + { + "#": 3192 + }, + { + "#": 3193 + }, + { + "#": 3194 + }, + { + "#": 3195 + }, + { + "#": 3196 + }, + { + "#": 3197 + }, + { + "#": 3198 + }, + { + "#": 3199 + }, + { + "#": 3200 + }, + { + "#": 3201 + }, + { + "#": 3202 + }, + { + "#": 3203 + }, + { + "#": 3204 + }, + { + "#": 3205 + }, + { + "#": 3206 + }, + { + "#": 3207 + } + ], + { + "x": 367.696, + "y": 494.25675, + "index": 0, + "body": { + "#": 3189 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 499.66475, + "index": 1, + "body": { + "#": 3189 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 503.80275, + "index": 2, + "body": { + "#": 3189 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 506.04275, + "index": 3, + "body": { + "#": 3189 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 506.04275, + "index": 4, + "body": { + "#": 3189 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 503.80275, + "index": 5, + "body": { + "#": 3189 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 499.66475, + "index": 6, + "body": { + "#": 3189 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 494.25675, + "index": 7, + "body": { + "#": 3189 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 488.40475, + "index": 8, + "body": { + "#": 3189 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 482.99675, + "index": 9, + "body": { + "#": 3189 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 478.85875, + "index": 10, + "body": { + "#": 3189 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 476.61875, + "index": 11, + "body": { + "#": 3189 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 476.61875, + "index": 12, + "body": { + "#": 3189 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 478.85875, + "index": 13, + "body": { + "#": 3189 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 482.99675, + "index": 14, + "body": { + "#": 3189 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 488.40475, + "index": 15, + "body": { + "#": 3189 + }, + "isInternal": false + }, + { + "x": 352.984, + "y": 491.33075 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0208 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.89127 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3215 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3217 + }, + "max": { + "#": 3218 + } + }, + { + "x": 338.272, + "y": 476.61875 + }, + { + "x": 367.696, + "y": 508.94003 + }, + { + "x": 352.984, + "y": 488.43948 + }, + [ + { + "#": 3221 + }, + { + "#": 3222 + }, + { + "#": 3223 + }, + { + "#": 3224 + }, + { + "#": 3225 + }, + { + "#": 3226 + }, + { + "#": 3227 + }, + { + "#": 3228 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,9,10", + "startCol": 7, + "endCol": 7, + "startRow": 9, + "endRow": 10 + }, + { + "id": 205, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3231 + }, + "angle": 0, + "vertices": { + "#": 3232 + }, + "position": { + "#": 3249 + }, + "force": { + "#": 3250 + }, + "torque": 0, + "positionImpulse": { + "#": 3251 + }, + "constraintImpulse": { + "#": 3252 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3253 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3254 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3255 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 3257 + }, + "positionPrev": { + "#": 3260 + }, + "anglePrev": 0, + "axes": { + "#": 3261 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 3230 + }, + "sleepCounter": 0, + "region": { + "#": 3270 + } + }, + [ + { + "#": 3230 + } + ], + [ + { + "#": 3233 + }, + { + "#": 3234 + }, + { + "#": 3235 + }, + { + "#": 3236 + }, + { + "#": 3237 + }, + { + "#": 3238 + }, + { + "#": 3239 + }, + { + "#": 3240 + }, + { + "#": 3241 + }, + { + "#": 3242 + }, + { + "#": 3243 + }, + { + "#": 3244 + }, + { + "#": 3245 + }, + { + "#": 3246 + }, + { + "#": 3247 + }, + { + "#": 3248 + } + ], + { + "x": 279.424, + "y": 523.63075, + "index": 0, + "body": { + "#": 3230 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 529.03875, + "index": 1, + "body": { + "#": 3230 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 533.17675, + "index": 2, + "body": { + "#": 3230 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 535.41675, + "index": 3, + "body": { + "#": 3230 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 535.41675, + "index": 4, + "body": { + "#": 3230 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 533.17675, + "index": 5, + "body": { + "#": 3230 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 529.03875, + "index": 6, + "body": { + "#": 3230 + }, + "isInternal": false + }, + { + "x": 250, + "y": 523.63075, + "index": 7, + "body": { + "#": 3230 + }, + "isInternal": false + }, + { + "x": 250, + "y": 517.77875, + "index": 8, + "body": { + "#": 3230 + }, + "isInternal": false + }, + { + "x": 252.24, + "y": 512.37075, + "index": 9, + "body": { + "#": 3230 + }, + "isInternal": false + }, + { + "x": 256.378, + "y": 508.23275, + "index": 10, + "body": { + "#": 3230 + }, + "isInternal": false + }, + { + "x": 261.786, + "y": 505.99275, + "index": 11, + "body": { + "#": 3230 + }, + "isInternal": false + }, + { + "x": 267.638, + "y": 505.99275, + "index": 12, + "body": { + "#": 3230 + }, + "isInternal": false + }, + { + "x": 273.046, + "y": 508.23275, + "index": 13, + "body": { + "#": 3230 + }, + "isInternal": false + }, + { + "x": 277.184, + "y": 512.37075, + "index": 14, + "body": { + "#": 3230 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 517.77875, + "index": 15, + "body": { + "#": 3230 + }, + "isInternal": false + }, + { + "x": 264.712, + "y": 520.70475 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.92327 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3256 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3258 + }, + "max": { + "#": 3259 + } + }, + { + "x": 250, + "y": 505.99275 + }, + { + "x": 279.424, + "y": 538.33403 + }, + { + "x": 264.712, + "y": 517.78148 + }, + [ + { + "#": 3262 + }, + { + "#": 3263 + }, + { + "#": 3264 + }, + { + "#": 3265 + }, + { + "#": 3266 + }, + { + "#": 3267 + }, + { + "#": 3268 + }, + { + "#": 3269 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,5,10,11", + "startCol": 5, + "endCol": 5, + "startRow": 10, + "endRow": 11 + }, + { + "id": 206, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3272 + }, + "angle": 0, + "vertices": { + "#": 3273 + }, + "position": { + "#": 3290 + }, + "force": { + "#": 3291 + }, + "torque": 0, + "positionImpulse": { + "#": 3292 + }, + "constraintImpulse": { + "#": 3293 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3294 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3295 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3296 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 3298 + }, + "positionPrev": { + "#": 3301 + }, + "anglePrev": 0, + "axes": { + "#": 3302 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 3271 + }, + "sleepCounter": 0, + "region": { + "#": 3311 + } + }, + [ + { + "#": 3271 + } + ], + [ + { + "#": 3274 + }, + { + "#": 3275 + }, + { + "#": 3276 + }, + { + "#": 3277 + }, + { + "#": 3278 + }, + { + "#": 3279 + }, + { + "#": 3280 + }, + { + "#": 3281 + }, + { + "#": 3282 + }, + { + "#": 3283 + }, + { + "#": 3284 + }, + { + "#": 3285 + }, + { + "#": 3286 + }, + { + "#": 3287 + }, + { + "#": 3288 + }, + { + "#": 3289 + } + ], + { + "x": 308.848, + "y": 523.63075, + "index": 0, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 529.03875, + "index": 1, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 533.17675, + "index": 2, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 535.41675, + "index": 3, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 535.41675, + "index": 4, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 533.17675, + "index": 5, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 529.03875, + "index": 6, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 523.63075, + "index": 7, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 279.424, + "y": 517.77875, + "index": 8, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 281.664, + "y": 512.37075, + "index": 9, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 285.802, + "y": 508.23275, + "index": 10, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 291.21, + "y": 505.99275, + "index": 11, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 297.062, + "y": 505.99275, + "index": 12, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 302.47, + "y": 508.23275, + "index": 13, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 306.608, + "y": 512.37075, + "index": 14, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 517.77875, + "index": 15, + "body": { + "#": 3271 + }, + "isInternal": false + }, + { + "x": 294.136, + "y": 520.70475 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.92327 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3297 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3299 + }, + "max": { + "#": 3300 + } + }, + { + "x": 279.424, + "y": 505.99275 + }, + { + "x": 308.848, + "y": 538.33403 + }, + { + "x": 294.136, + "y": 517.78148 + }, + [ + { + "#": 3303 + }, + { + "#": 3304 + }, + { + "#": 3305 + }, + { + "#": 3306 + }, + { + "#": 3307 + }, + { + "#": 3308 + }, + { + "#": 3309 + }, + { + "#": 3310 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,10,11", + "startCol": 5, + "endCol": 6, + "startRow": 10, + "endRow": 11 + }, + { + "id": 207, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3313 + }, + "angle": 0, + "vertices": { + "#": 3314 + }, + "position": { + "#": 3331 + }, + "force": { + "#": 3332 + }, + "torque": 0, + "positionImpulse": { + "#": 3333 + }, + "constraintImpulse": { + "#": 3334 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3335 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3336 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3337 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 3339 + }, + "positionPrev": { + "#": 3342 + }, + "anglePrev": 0, + "axes": { + "#": 3343 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 3312 + }, + "sleepCounter": 0, + "region": { + "#": 3352 + } + }, + [ + { + "#": 3312 + } + ], + [ + { + "#": 3315 + }, + { + "#": 3316 + }, + { + "#": 3317 + }, + { + "#": 3318 + }, + { + "#": 3319 + }, + { + "#": 3320 + }, + { + "#": 3321 + }, + { + "#": 3322 + }, + { + "#": 3323 + }, + { + "#": 3324 + }, + { + "#": 3325 + }, + { + "#": 3326 + }, + { + "#": 3327 + }, + { + "#": 3328 + }, + { + "#": 3329 + }, + { + "#": 3330 + } + ], + { + "x": 338.272, + "y": 523.63075, + "index": 0, + "body": { + "#": 3312 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 529.03875, + "index": 1, + "body": { + "#": 3312 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 533.17675, + "index": 2, + "body": { + "#": 3312 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 535.41675, + "index": 3, + "body": { + "#": 3312 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 535.41675, + "index": 4, + "body": { + "#": 3312 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 533.17675, + "index": 5, + "body": { + "#": 3312 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 529.03875, + "index": 6, + "body": { + "#": 3312 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 523.63075, + "index": 7, + "body": { + "#": 3312 + }, + "isInternal": false + }, + { + "x": 308.848, + "y": 517.77875, + "index": 8, + "body": { + "#": 3312 + }, + "isInternal": false + }, + { + "x": 311.088, + "y": 512.37075, + "index": 9, + "body": { + "#": 3312 + }, + "isInternal": false + }, + { + "x": 315.226, + "y": 508.23275, + "index": 10, + "body": { + "#": 3312 + }, + "isInternal": false + }, + { + "x": 320.634, + "y": 505.99275, + "index": 11, + "body": { + "#": 3312 + }, + "isInternal": false + }, + { + "x": 326.486, + "y": 505.99275, + "index": 12, + "body": { + "#": 3312 + }, + "isInternal": false + }, + { + "x": 331.894, + "y": 508.23275, + "index": 13, + "body": { + "#": 3312 + }, + "isInternal": false + }, + { + "x": 336.032, + "y": 512.37075, + "index": 14, + "body": { + "#": 3312 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 517.77875, + "index": 15, + "body": { + "#": 3312 + }, + "isInternal": false + }, + { + "x": 323.56, + "y": 520.70475 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.92327 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3338 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3340 + }, + "max": { + "#": 3341 + } + }, + { + "x": 308.848, + "y": 505.99275 + }, + { + "x": 338.272, + "y": 538.33403 + }, + { + "x": 323.56, + "y": 517.78148 + }, + [ + { + "#": 3344 + }, + { + "#": 3345 + }, + { + "#": 3346 + }, + { + "#": 3347 + }, + { + "#": 3348 + }, + { + "#": 3349 + }, + { + "#": 3350 + }, + { + "#": 3351 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,7,10,11", + "startCol": 6, + "endCol": 7, + "startRow": 10, + "endRow": 11 + }, + { + "id": 208, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 3354 + }, + "angle": 0, + "vertices": { + "#": 3355 + }, + "position": { + "#": 3372 + }, + "force": { + "#": 3373 + }, + "torque": 0, + "positionImpulse": { + "#": 3374 + }, + "constraintImpulse": { + "#": 3375 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3376 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.05, + "frictionStatic": 0.1, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3377 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3378 + }, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "circleRadius": 15, + "bounds": { + "#": 3380 + }, + "positionPrev": { + "#": 3383 + }, + "anglePrev": 0, + "axes": { + "#": 3384 + }, + "area": 688.84665, + "mass": 0.68885, + "inverseMass": 1.4517, + "inverseInertia": 0, + "parent": { + "#": 3353 + }, + "sleepCounter": 0, + "region": { + "#": 3393 + } + }, + [ + { + "#": 3353 + } + ], + [ + { + "#": 3356 + }, + { + "#": 3357 + }, + { + "#": 3358 + }, + { + "#": 3359 + }, + { + "#": 3360 + }, + { + "#": 3361 + }, + { + "#": 3362 + }, + { + "#": 3363 + }, + { + "#": 3364 + }, + { + "#": 3365 + }, + { + "#": 3366 + }, + { + "#": 3367 + }, + { + "#": 3368 + }, + { + "#": 3369 + }, + { + "#": 3370 + }, + { + "#": 3371 + } + ], + { + "x": 367.696, + "y": 523.63075, + "index": 0, + "body": { + "#": 3353 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 529.03875, + "index": 1, + "body": { + "#": 3353 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 533.17675, + "index": 2, + "body": { + "#": 3353 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 535.41675, + "index": 3, + "body": { + "#": 3353 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 535.41675, + "index": 4, + "body": { + "#": 3353 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 533.17675, + "index": 5, + "body": { + "#": 3353 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 529.03875, + "index": 6, + "body": { + "#": 3353 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 523.63075, + "index": 7, + "body": { + "#": 3353 + }, + "isInternal": false + }, + { + "x": 338.272, + "y": 517.77875, + "index": 8, + "body": { + "#": 3353 + }, + "isInternal": false + }, + { + "x": 340.512, + "y": 512.37075, + "index": 9, + "body": { + "#": 3353 + }, + "isInternal": false + }, + { + "x": 344.65, + "y": 508.23275, + "index": 10, + "body": { + "#": 3353 + }, + "isInternal": false + }, + { + "x": 350.058, + "y": 505.99275, + "index": 11, + "body": { + "#": 3353 + }, + "isInternal": false + }, + { + "x": 355.91, + "y": 505.99275, + "index": 12, + "body": { + "#": 3353 + }, + "isInternal": false + }, + { + "x": 361.318, + "y": 508.23275, + "index": 13, + "body": { + "#": 3353 + }, + "isInternal": false + }, + { + "x": 365.456, + "y": 512.37075, + "index": 14, + "body": { + "#": 3353 + }, + "isInternal": false + }, + { + "x": 367.696, + "y": 517.77875, + "index": 15, + "body": { + "#": 3353 + }, + "isInternal": false + }, + { + "x": 352.984, + "y": 520.70475 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.92327 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3379 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3381 + }, + "max": { + "#": 3382 + } + }, + { + "x": 338.272, + "y": 505.99275 + }, + { + "x": 367.696, + "y": 538.33403 + }, + { + "x": 352.984, + "y": 517.78148 + }, + [ + { + "#": 3385 + }, + { + "#": 3386 + }, + { + "#": 3387 + }, + { + "#": 3388 + }, + { + "#": 3389 + }, + { + "#": 3390 + }, + { + "#": 3391 + }, + { + "#": 3392 + } + ], + { + "x": -0.92388, + "y": -0.38267 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38267, + "y": -0.92388 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38267, + "y": -0.92388 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92388, + "y": -0.38267 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,10,11", + "startCol": 7, + "endCol": 7, + "startRow": 10, + "endRow": 11 + }, + [ + { + "#": 3395 + }, + { + "#": 3399 + }, + { + "#": 3403 + }, + { + "#": 3407 + }, + { + "#": 3411 + }, + { + "#": 3415 + }, + { + "#": 3419 + }, + { + "#": 3423 + }, + { + "#": 3427 + }, + { + "#": 3431 + }, + { + "#": 3435 + }, + { + "#": 3439 + }, + { + "#": 3443 + }, + { + "#": 3447 + }, + { + "#": 3451 + }, + { + "#": 3455 + }, + { + "#": 3459 + }, + { + "#": 3463 + }, + { + "#": 3467 + }, + { + "#": 3471 + }, + { + "#": 3475 + }, + { + "#": 3479 + }, + { + "#": 3483 + }, + { + "#": 3487 + }, + { + "#": 3491 + }, + { + "#": 3495 + }, + { + "#": 3499 + }, + { + "#": 3503 + }, + { + "#": 3507 + }, + { + "#": 3511 + }, + { + "#": 3515 + }, + { + "#": 3519 + }, + { + "#": 3523 + }, + { + "#": 3527 + }, + { + "#": 3531 + }, + { + "#": 3535 + }, + { + "#": 3539 + }, + { + "#": 3543 + }, + { + "#": 3547 + }, + { + "#": 3551 + }, + { + "#": 3555 + }, + { + "#": 3559 + } + ], + { + "bodyA": { + "#": 2738 + }, + "bodyB": { + "#": 2779 + }, + "stiffness": 0.4, + "pointA": { + "#": 3396 + }, + "pointB": { + "#": 3397 + }, + "length": 29.424, + "render": { + "#": 3398 + }, + "id": 209, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2779 + }, + "bodyB": { + "#": 2820 + }, + "stiffness": 0.4, + "pointA": { + "#": 3400 + }, + "pointB": { + "#": 3401 + }, + "length": 29.424, + "render": { + "#": 3402 + }, + "id": 210, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2820 + }, + "bodyB": { + "#": 2861 + }, + "stiffness": 0.4, + "pointA": { + "#": 3404 + }, + "pointB": { + "#": 3405 + }, + "length": 29.424, + "render": { + "#": 3406 + }, + "id": 211, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2902 + }, + "bodyB": { + "#": 2943 + }, + "stiffness": 0.4, + "pointA": { + "#": 3408 + }, + "pointB": { + "#": 3409 + }, + "length": 29.424, + "render": { + "#": 3410 + }, + "id": 212, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2943 + }, + "bodyB": { + "#": 2984 + }, + "stiffness": 0.4, + "pointA": { + "#": 3412 + }, + "pointB": { + "#": 3413 + }, + "length": 29.424, + "render": { + "#": 3414 + }, + "id": 213, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2984 + }, + "bodyB": { + "#": 3025 + }, + "stiffness": 0.4, + "pointA": { + "#": 3416 + }, + "pointB": { + "#": 3417 + }, + "length": 29.424, + "render": { + "#": 3418 + }, + "id": 214, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2738 + }, + "bodyB": { + "#": 2902 + }, + "stiffness": 0.4, + "pointA": { + "#": 3420 + }, + "pointB": { + "#": 3421 + }, + "length": 29.424, + "render": { + "#": 3422 + }, + "id": 215, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2779 + }, + "bodyB": { + "#": 2902 + }, + "stiffness": 0.4, + "pointA": { + "#": 3424 + }, + "pointB": { + "#": 3425 + }, + "length": 41.61182, + "render": { + "#": 3426 + }, + "id": 216, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2779 + }, + "bodyB": { + "#": 2943 + }, + "stiffness": 0.4, + "pointA": { + "#": 3428 + }, + "pointB": { + "#": 3429 + }, + "length": 29.424, + "render": { + "#": 3430 + }, + "id": 217, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2738 + }, + "bodyB": { + "#": 2943 + }, + "stiffness": 0.4, + "pointA": { + "#": 3432 + }, + "pointB": { + "#": 3433 + }, + "length": 41.61182, + "render": { + "#": 3434 + }, + "id": 218, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2820 + }, + "bodyB": { + "#": 2943 + }, + "stiffness": 0.4, + "pointA": { + "#": 3436 + }, + "pointB": { + "#": 3437 + }, + "length": 41.61182, + "render": { + "#": 3438 + }, + "id": 219, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2820 + }, + "bodyB": { + "#": 2984 + }, + "stiffness": 0.4, + "pointA": { + "#": 3440 + }, + "pointB": { + "#": 3441 + }, + "length": 29.424, + "render": { + "#": 3442 + }, + "id": 220, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2779 + }, + "bodyB": { + "#": 2984 + }, + "stiffness": 0.4, + "pointA": { + "#": 3444 + }, + "pointB": { + "#": 3445 + }, + "length": 41.61182, + "render": { + "#": 3446 + }, + "id": 221, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2861 + }, + "bodyB": { + "#": 2984 + }, + "stiffness": 0.4, + "pointA": { + "#": 3448 + }, + "pointB": { + "#": 3449 + }, + "length": 41.61182, + "render": { + "#": 3450 + }, + "id": 222, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2861 + }, + "bodyB": { + "#": 3025 + }, + "stiffness": 0.4, + "pointA": { + "#": 3452 + }, + "pointB": { + "#": 3453 + }, + "length": 29.424, + "render": { + "#": 3454 + }, + "id": 223, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2820 + }, + "bodyB": { + "#": 3025 + }, + "stiffness": 0.4, + "pointA": { + "#": 3456 + }, + "pointB": { + "#": 3457 + }, + "length": 41.61182, + "render": { + "#": 3458 + }, + "id": 224, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3066 + }, + "bodyB": { + "#": 3107 + }, + "stiffness": 0.4, + "pointA": { + "#": 3460 + }, + "pointB": { + "#": 3461 + }, + "length": 29.424, + "render": { + "#": 3462 + }, + "id": 225, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3107 + }, + "bodyB": { + "#": 3148 + }, + "stiffness": 0.4, + "pointA": { + "#": 3464 + }, + "pointB": { + "#": 3465 + }, + "length": 29.424, + "render": { + "#": 3466 + }, + "id": 226, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3148 + }, + "bodyB": { + "#": 3189 + }, + "stiffness": 0.4, + "pointA": { + "#": 3468 + }, + "pointB": { + "#": 3469 + }, + "length": 29.424, + "render": { + "#": 3470 + }, + "id": 227, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2902 + }, + "bodyB": { + "#": 3066 + }, + "stiffness": 0.4, + "pointA": { + "#": 3472 + }, + "pointB": { + "#": 3473 + }, + "length": 29.424, + "render": { + "#": 3474 + }, + "id": 228, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2943 + }, + "bodyB": { + "#": 3066 + }, + "stiffness": 0.4, + "pointA": { + "#": 3476 + }, + "pointB": { + "#": 3477 + }, + "length": 41.61182, + "render": { + "#": 3478 + }, + "id": 229, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2943 + }, + "bodyB": { + "#": 3107 + }, + "stiffness": 0.4, + "pointA": { + "#": 3480 + }, + "pointB": { + "#": 3481 + }, + "length": 29.424, + "render": { + "#": 3482 + }, + "id": 230, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2902 + }, + "bodyB": { + "#": 3107 + }, + "stiffness": 0.4, + "pointA": { + "#": 3484 + }, + "pointB": { + "#": 3485 + }, + "length": 41.61182, + "render": { + "#": 3486 + }, + "id": 231, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2984 + }, + "bodyB": { + "#": 3107 + }, + "stiffness": 0.4, + "pointA": { + "#": 3488 + }, + "pointB": { + "#": 3489 + }, + "length": 41.61182, + "render": { + "#": 3490 + }, + "id": 232, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2984 + }, + "bodyB": { + "#": 3148 + }, + "stiffness": 0.4, + "pointA": { + "#": 3492 + }, + "pointB": { + "#": 3493 + }, + "length": 29.424, + "render": { + "#": 3494 + }, + "id": 233, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2943 + }, + "bodyB": { + "#": 3148 + }, + "stiffness": 0.4, + "pointA": { + "#": 3496 + }, + "pointB": { + "#": 3497 + }, + "length": 41.61182, + "render": { + "#": 3498 + }, + "id": 234, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3025 + }, + "bodyB": { + "#": 3148 + }, + "stiffness": 0.4, + "pointA": { + "#": 3500 + }, + "pointB": { + "#": 3501 + }, + "length": 41.61182, + "render": { + "#": 3502 + }, + "id": 235, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3025 + }, + "bodyB": { + "#": 3189 + }, + "stiffness": 0.4, + "pointA": { + "#": 3504 + }, + "pointB": { + "#": 3505 + }, + "length": 29.424, + "render": { + "#": 3506 + }, + "id": 236, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 2984 + }, + "bodyB": { + "#": 3189 + }, + "stiffness": 0.4, + "pointA": { + "#": 3508 + }, + "pointB": { + "#": 3509 + }, + "length": 41.61182, + "render": { + "#": 3510 + }, + "id": 237, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3230 + }, + "bodyB": { + "#": 3271 + }, + "stiffness": 0.4, + "pointA": { + "#": 3512 + }, + "pointB": { + "#": 3513 + }, + "length": 29.424, + "render": { + "#": 3514 + }, + "id": 238, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3271 + }, + "bodyB": { + "#": 3312 + }, + "stiffness": 0.4, + "pointA": { + "#": 3516 + }, + "pointB": { + "#": 3517 + }, + "length": 29.424, + "render": { + "#": 3518 + }, + "id": 239, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3312 + }, + "bodyB": { + "#": 3353 + }, + "stiffness": 0.4, + "pointA": { + "#": 3520 + }, + "pointB": { + "#": 3521 + }, + "length": 29.424, + "render": { + "#": 3522 + }, + "id": 240, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3066 + }, + "bodyB": { + "#": 3230 + }, + "stiffness": 0.4, + "pointA": { + "#": 3524 + }, + "pointB": { + "#": 3525 + }, + "length": 29.424, + "render": { + "#": 3526 + }, + "id": 241, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3107 + }, + "bodyB": { + "#": 3230 + }, + "stiffness": 0.4, + "pointA": { + "#": 3528 + }, + "pointB": { + "#": 3529 + }, + "length": 41.61182, + "render": { + "#": 3530 + }, + "id": 242, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3107 + }, + "bodyB": { + "#": 3271 + }, + "stiffness": 0.4, + "pointA": { + "#": 3532 + }, + "pointB": { + "#": 3533 + }, + "length": 29.424, + "render": { + "#": 3534 + }, + "id": 243, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3066 + }, + "bodyB": { + "#": 3271 + }, + "stiffness": 0.4, + "pointA": { + "#": 3536 + }, + "pointB": { + "#": 3537 + }, + "length": 41.61182, + "render": { + "#": 3538 + }, + "id": 244, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3148 + }, + "bodyB": { + "#": 3271 + }, + "stiffness": 0.4, + "pointA": { + "#": 3540 + }, + "pointB": { + "#": 3541 + }, + "length": 41.61182, + "render": { + "#": 3542 + }, + "id": 245, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3148 + }, + "bodyB": { + "#": 3312 + }, + "stiffness": 0.4, + "pointA": { + "#": 3544 + }, + "pointB": { + "#": 3545 + }, + "length": 29.424, + "render": { + "#": 3546 + }, + "id": 246, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3107 + }, + "bodyB": { + "#": 3312 + }, + "stiffness": 0.4, + "pointA": { + "#": 3548 + }, + "pointB": { + "#": 3549 + }, + "length": 41.61182, + "render": { + "#": 3550 + }, + "id": 247, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3189 + }, + "bodyB": { + "#": 3312 + }, + "stiffness": 0.4, + "pointA": { + "#": 3552 + }, + "pointB": { + "#": 3553 + }, + "length": 41.61182, + "render": { + "#": 3554 + }, + "id": 248, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3189 + }, + "bodyB": { + "#": 3353 + }, + "stiffness": 0.4, + "pointA": { + "#": 3556 + }, + "pointB": { + "#": 3557 + }, + "length": 29.424, + "render": { + "#": 3558 + }, + "id": 249, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + { + "bodyA": { + "#": 3148 + }, + "bodyB": { + "#": 3353 + }, + "stiffness": 0.4, + "pointA": { + "#": 3560 + }, + "pointB": { + "#": 3561 + }, + "length": 41.61182, + "render": { + "#": 3562 + }, + "id": 250, + "label": "Constraint", + "type": "constraint", + "angularStiffness": 0, + "angleA": 0, + "angleB": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 3566 + }, + "max": { + "#": 3567 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/sprites/sprites-0.json b/test/node/refs/sprites/sprites-0.json new file mode 100644 index 00000000..d306baf7 --- /dev/null +++ b/test/node/refs/sprites/sprites-0.json @@ -0,0 +1,13142 @@ +[ + { + "id": 21, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 90 + }, + "composites": { + "#": 91 + }, + "label": "World", + "gravity": { + "#": 1372 + }, + "bounds": { + "#": 1373 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "id": 4, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 41435.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -10.25, + "y": -35.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 810.25, + "y": -35.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 810.25, + "y": 15.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -10.25, + "y": 15.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -10 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": false, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -10.25, + "y": -35.25 + }, + { + "x": 810.25, + "y": 15.25 + }, + { + "x": 400, + "y": -10 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 41435.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -10.25, + "y": 584.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 810.25, + "y": 584.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 810.25, + "y": 635.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -10.25, + "y": 635.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 610 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": false, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -10.25, + "y": 584.75 + }, + { + "x": 810.25, + "y": 635.25 + }, + { + "x": 400, + "y": 610 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 31335.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 784.75, + "y": -10.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 835.25, + "y": -10.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 835.25, + "y": 610.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 784.75, + "y": 610.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 810, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": false, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 784.75, + "y": -10.25 + }, + { + "x": 835.25, + "y": 610.25 + }, + { + "x": 810, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 31335.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -35.25, + "y": -10.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 15.25, + "y": -10.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 15.25, + "y": 610.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -35.25, + "y": 610.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -10, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": false, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -35.25, + "y": -10.25 + }, + { + "x": 15.25, + "y": 610.25 + }, + { + "x": -10, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [ + { + "#": 92 + } + ], + { + "id": 8, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 93 + }, + "constraints": { + "#": 1370 + }, + "composites": { + "#": 1371 + }, + "label": "Stack" + }, + [ + { + "#": 94 + }, + { + "#": 149 + }, + { + "#": 171 + }, + { + "#": 193 + }, + { + "#": 215 + }, + { + "#": 237 + }, + { + "#": 292 + }, + { + "#": 314 + }, + { + "#": 336 + }, + { + "#": 358 + }, + { + "#": 413 + }, + { + "#": 435 + }, + { + "#": 490 + }, + { + "#": 512 + }, + { + "#": 534 + }, + { + "#": 556 + }, + { + "#": 578 + }, + { + "#": 633 + }, + { + "#": 655 + }, + { + "#": 677 + }, + { + "#": 699 + }, + { + "#": 721 + }, + { + "#": 776 + }, + { + "#": 798 + }, + { + "#": 820 + }, + { + "#": 875 + }, + { + "#": 897 + }, + { + "#": 952 + }, + { + "#": 974 + }, + { + "#": 996 + }, + { + "#": 1018 + }, + { + "#": 1040 + }, + { + "#": 1095 + }, + { + "#": 1150 + }, + { + "#": 1172 + }, + { + "#": 1194 + }, + { + "#": 1216 + }, + { + "#": 1271 + }, + { + "#": 1293 + }, + { + "#": 1348 + } + ], + { + "id": 9, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 96 + }, + "position": { + "#": 123 + }, + "force": { + "#": 124 + }, + "torque": 0, + "positionImpulse": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 127 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 128 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 129 + }, + "circleRadius": 46, + "bounds": { + "#": 131 + }, + "positionPrev": { + "#": 134 + }, + "anglePrev": 0, + "axes": { + "#": 135 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 94 + }, + "sleepCounter": 0 + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + } + ], + { + "x": 111.33, + "y": 71.545, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 108.676, + "y": 82.312, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 103.522, + "y": 92.131, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 96.169, + "y": 100.431, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 87.042, + "y": 106.731, + "index": 4, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 76.674, + "y": 110.663, + "index": 5, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 65.665, + "y": 112, + "index": 6, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 54.656, + "y": 110.663, + "index": 7, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 44.288, + "y": 106.731, + "index": 8, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 35.161, + "y": 100.431, + "index": 9, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 27.808, + "y": 92.131, + "index": 10, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 22.654, + "y": 82.312, + "index": 11, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 20, + "y": 71.545, + "index": 12, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 20, + "y": 60.455, + "index": 13, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 22.654, + "y": 49.688, + "index": 14, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 27.808, + "y": 39.869, + "index": 15, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 35.161, + "y": 31.569, + "index": 16, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 44.288, + "y": 25.269, + "index": 17, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 54.656, + "y": 21.337, + "index": 18, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 65.665, + "y": 20, + "index": 19, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 76.674, + "y": 21.337, + "index": 20, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 87.042, + "y": 25.269, + "index": 21, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 96.169, + "y": 31.569, + "index": 22, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 103.522, + "y": 39.869, + "index": 23, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 108.676, + "y": 49.688, + "index": 24, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 111.33, + "y": 60.455, + "index": 25, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 65.665, + "y": 66 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 130 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 132 + }, + "max": { + "#": 133 + } + }, + { + "x": 20, + "y": 20 + }, + { + "x": 111.33, + "y": 112 + }, + { + "x": 65.665, + "y": 66 + }, + [ + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88543, + "y": -0.46476 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88543, + "y": -0.46476 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 150 + }, + "angle": 0, + "vertices": { + "#": 151 + }, + "position": { + "#": 156 + }, + "force": { + "#": 157 + }, + "torque": 0, + "positionImpulse": { + "#": 158 + }, + "constraintImpulse": { + "#": 159 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 160 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 161 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 162 + }, + "bounds": { + "#": 164 + }, + "positionPrev": { + "#": 167 + }, + "anglePrev": 0, + "axes": { + "#": 168 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 149 + }, + "sleepCounter": 0 + }, + [ + { + "#": 149 + } + ], + [ + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + }, + { + "#": 155 + } + ], + { + "x": 111.33, + "y": 20, + "index": 0, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 175.33, + "y": 20, + "index": 1, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 175.33, + "y": 84, + "index": 2, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 111.33, + "y": 84, + "index": 3, + "body": { + "#": 149 + }, + "isInternal": false + }, + { + "x": 143.33, + "y": 52 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 163 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#FF6B6B" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 165 + }, + "max": { + "#": 166 + } + }, + { + "x": 111.33, + "y": 20 + }, + { + "x": 175.33, + "y": 84 + }, + { + "x": 143.33, + "y": 52 + }, + [ + { + "#": 169 + }, + { + "#": 170 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 172 + }, + "angle": 0, + "vertices": { + "#": 173 + }, + "position": { + "#": 178 + }, + "force": { + "#": 179 + }, + "torque": 0, + "positionImpulse": { + "#": 180 + }, + "constraintImpulse": { + "#": 181 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 182 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 183 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 184 + }, + "bounds": { + "#": 186 + }, + "positionPrev": { + "#": 189 + }, + "anglePrev": 0, + "axes": { + "#": 190 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 171 + }, + "sleepCounter": 0 + }, + [ + { + "#": 171 + } + ], + [ + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + } + ], + { + "x": 175.33, + "y": 20, + "index": 0, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 239.33, + "y": 20, + "index": 1, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 239.33, + "y": 84, + "index": 2, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 175.33, + "y": 84, + "index": 3, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 207.33, + "y": 52 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 185 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#556270" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 187 + }, + "max": { + "#": 188 + } + }, + { + "x": 175.33, + "y": 20 + }, + { + "x": 239.33, + "y": 84 + }, + { + "x": 207.33, + "y": 52 + }, + [ + { + "#": 191 + }, + { + "#": 192 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 194 + }, + "angle": 0, + "vertices": { + "#": 195 + }, + "position": { + "#": 200 + }, + "force": { + "#": 201 + }, + "torque": 0, + "positionImpulse": { + "#": 202 + }, + "constraintImpulse": { + "#": 203 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 204 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 205 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 206 + }, + "bounds": { + "#": 208 + }, + "positionPrev": { + "#": 211 + }, + "anglePrev": 0, + "axes": { + "#": 212 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 193 + }, + "sleepCounter": 0 + }, + [ + { + "#": 193 + } + ], + [ + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + } + ], + { + "x": 239.33, + "y": 20, + "index": 0, + "body": { + "#": 193 + }, + "isInternal": false + }, + { + "x": 303.33, + "y": 20, + "index": 1, + "body": { + "#": 193 + }, + "isInternal": false + }, + { + "x": 303.33, + "y": 84, + "index": 2, + "body": { + "#": 193 + }, + "isInternal": false + }, + { + "x": 239.33, + "y": 84, + "index": 3, + "body": { + "#": 193 + }, + "isInternal": false + }, + { + "x": 271.33, + "y": 52 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 207 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#C44D58" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 209 + }, + "max": { + "#": 210 + } + }, + { + "x": 239.33, + "y": 20 + }, + { + "x": 303.33, + "y": 84 + }, + { + "x": 271.33, + "y": 52 + }, + [ + { + "#": 213 + }, + { + "#": 214 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 216 + }, + "angle": 0, + "vertices": { + "#": 217 + }, + "position": { + "#": 222 + }, + "force": { + "#": 223 + }, + "torque": 0, + "positionImpulse": { + "#": 224 + }, + "constraintImpulse": { + "#": 225 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 226 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 227 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 228 + }, + "bounds": { + "#": 230 + }, + "positionPrev": { + "#": 233 + }, + "anglePrev": 0, + "axes": { + "#": 234 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 215 + }, + "sleepCounter": 0 + }, + [ + { + "#": 215 + } + ], + [ + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + } + ], + { + "x": 303.33, + "y": 20, + "index": 0, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 367.33, + "y": 20, + "index": 1, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 367.33, + "y": 84, + "index": 2, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 303.33, + "y": 84, + "index": 3, + "body": { + "#": 215 + }, + "isInternal": false + }, + { + "x": 335.33, + "y": 52 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 229 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#C7F464" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 231 + }, + "max": { + "#": 232 + } + }, + { + "x": 303.33, + "y": 20 + }, + { + "x": 367.33, + "y": 84 + }, + { + "x": 335.33, + "y": 52 + }, + [ + { + "#": 235 + }, + { + "#": 236 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 14, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 238 + }, + "angle": 0, + "vertices": { + "#": 239 + }, + "position": { + "#": 266 + }, + "force": { + "#": 267 + }, + "torque": 0, + "positionImpulse": { + "#": 268 + }, + "constraintImpulse": { + "#": 269 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 270 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 271 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 272 + }, + "circleRadius": 46, + "bounds": { + "#": 274 + }, + "positionPrev": { + "#": 277 + }, + "anglePrev": 0, + "axes": { + "#": 278 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 237 + }, + "sleepCounter": 0 + }, + [ + { + "#": 237 + } + ], + [ + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + }, + { + "#": 243 + }, + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + } + ], + { + "x": 458.66, + "y": 71.545, + "index": 0, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 456.006, + "y": 82.312, + "index": 1, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 450.852, + "y": 92.131, + "index": 2, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 443.499, + "y": 100.431, + "index": 3, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 434.372, + "y": 106.731, + "index": 4, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 424.004, + "y": 110.663, + "index": 5, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 412.995, + "y": 112, + "index": 6, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 401.986, + "y": 110.663, + "index": 7, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 391.618, + "y": 106.731, + "index": 8, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 382.491, + "y": 100.431, + "index": 9, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 375.138, + "y": 92.131, + "index": 10, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 369.984, + "y": 82.312, + "index": 11, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 367.33, + "y": 71.545, + "index": 12, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 367.33, + "y": 60.455, + "index": 13, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 369.984, + "y": 49.688, + "index": 14, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 375.138, + "y": 39.869, + "index": 15, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 382.491, + "y": 31.569, + "index": 16, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 391.618, + "y": 25.269, + "index": 17, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 401.986, + "y": 21.337, + "index": 18, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 412.995, + "y": 20, + "index": 19, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 424.004, + "y": 21.337, + "index": 20, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 434.372, + "y": 25.269, + "index": 21, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 443.499, + "y": 31.569, + "index": 22, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 450.852, + "y": 39.869, + "index": 23, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 456.006, + "y": 49.688, + "index": 24, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 458.66, + "y": 60.455, + "index": 25, + "body": { + "#": 237 + }, + "isInternal": false + }, + { + "x": 412.995, + "y": 66 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 273 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 275 + }, + "max": { + "#": 276 + } + }, + { + "x": 367.33, + "y": 20 + }, + { + "x": 458.66, + "y": 112 + }, + { + "x": 412.995, + "y": 66 + }, + [ + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + }, + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88543, + "y": -0.46476 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88543, + "y": -0.46476 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 15, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 293 + }, + "angle": 0, + "vertices": { + "#": 294 + }, + "position": { + "#": 299 + }, + "force": { + "#": 300 + }, + "torque": 0, + "positionImpulse": { + "#": 301 + }, + "constraintImpulse": { + "#": 302 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 303 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 304 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 305 + }, + "bounds": { + "#": 307 + }, + "positionPrev": { + "#": 310 + }, + "anglePrev": 0, + "axes": { + "#": 311 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 292 + }, + "sleepCounter": 0 + }, + [ + { + "#": 292 + } + ], + [ + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + } + ], + { + "x": 458.66, + "y": 20, + "index": 0, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 522.66, + "y": 20, + "index": 1, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 522.66, + "y": 84, + "index": 2, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 458.66, + "y": 84, + "index": 3, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 490.66, + "y": 52 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 306 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#4ECDC4" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 308 + }, + "max": { + "#": 309 + } + }, + { + "x": 458.66, + "y": 20 + }, + { + "x": 522.66, + "y": 84 + }, + { + "x": 490.66, + "y": 52 + }, + [ + { + "#": 312 + }, + { + "#": 313 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 16, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 315 + }, + "angle": 0, + "vertices": { + "#": 316 + }, + "position": { + "#": 321 + }, + "force": { + "#": 322 + }, + "torque": 0, + "positionImpulse": { + "#": 323 + }, + "constraintImpulse": { + "#": 324 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 325 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 326 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 327 + }, + "bounds": { + "#": 329 + }, + "positionPrev": { + "#": 332 + }, + "anglePrev": 0, + "axes": { + "#": 333 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 314 + }, + "sleepCounter": 0 + }, + [ + { + "#": 314 + } + ], + [ + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + } + ], + { + "x": 522.66, + "y": 20, + "index": 0, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 586.66, + "y": 20, + "index": 1, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 586.66, + "y": 84, + "index": 2, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 522.66, + "y": 84, + "index": 3, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 554.66, + "y": 52 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 328 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#556270" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 330 + }, + "max": { + "#": 331 + } + }, + { + "x": 522.66, + "y": 20 + }, + { + "x": 586.66, + "y": 84 + }, + { + "x": 554.66, + "y": 52 + }, + [ + { + "#": 334 + }, + { + "#": 335 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 17, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 337 + }, + "angle": 0, + "vertices": { + "#": 338 + }, + "position": { + "#": 343 + }, + "force": { + "#": 344 + }, + "torque": 0, + "positionImpulse": { + "#": 345 + }, + "constraintImpulse": { + "#": 346 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 347 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 348 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 349 + }, + "bounds": { + "#": 351 + }, + "positionPrev": { + "#": 354 + }, + "anglePrev": 0, + "axes": { + "#": 355 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 336 + }, + "sleepCounter": 0 + }, + [ + { + "#": 336 + } + ], + [ + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + } + ], + { + "x": 586.66, + "y": 20, + "index": 0, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 650.66, + "y": 20, + "index": 1, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 650.66, + "y": 84, + "index": 2, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 586.66, + "y": 84, + "index": 3, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 618.66, + "y": 52 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 350 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#556270" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 352 + }, + "max": { + "#": 353 + } + }, + { + "x": 586.66, + "y": 20 + }, + { + "x": 650.66, + "y": 84 + }, + { + "x": 618.66, + "y": 52 + }, + [ + { + "#": 356 + }, + { + "#": 357 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 18, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 359 + }, + "angle": 0, + "vertices": { + "#": 360 + }, + "position": { + "#": 387 + }, + "force": { + "#": 388 + }, + "torque": 0, + "positionImpulse": { + "#": 389 + }, + "constraintImpulse": { + "#": 390 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 391 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 392 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 393 + }, + "circleRadius": 46, + "bounds": { + "#": 395 + }, + "positionPrev": { + "#": 398 + }, + "anglePrev": 0, + "axes": { + "#": 399 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 358 + }, + "sleepCounter": 0 + }, + [ + { + "#": 358 + } + ], + [ + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + }, + { + "#": 365 + }, + { + "#": 366 + }, + { + "#": 367 + }, + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + } + ], + { + "x": 741.99, + "y": 71.545, + "index": 0, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 739.336, + "y": 82.312, + "index": 1, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 734.182, + "y": 92.131, + "index": 2, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 726.829, + "y": 100.431, + "index": 3, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 717.702, + "y": 106.731, + "index": 4, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 707.334, + "y": 110.663, + "index": 5, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 696.325, + "y": 112, + "index": 6, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 685.316, + "y": 110.663, + "index": 7, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 674.948, + "y": 106.731, + "index": 8, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 665.821, + "y": 100.431, + "index": 9, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 658.468, + "y": 92.131, + "index": 10, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 653.314, + "y": 82.312, + "index": 11, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 650.66, + "y": 71.545, + "index": 12, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 650.66, + "y": 60.455, + "index": 13, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 653.314, + "y": 49.688, + "index": 14, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 658.468, + "y": 39.869, + "index": 15, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 665.821, + "y": 31.569, + "index": 16, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 674.948, + "y": 25.269, + "index": 17, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 685.316, + "y": 21.337, + "index": 18, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 696.325, + "y": 20, + "index": 19, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 707.334, + "y": 21.337, + "index": 20, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 717.702, + "y": 25.269, + "index": 21, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 726.829, + "y": 31.569, + "index": 22, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 734.182, + "y": 39.869, + "index": 23, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 739.336, + "y": 49.688, + "index": 24, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 741.99, + "y": 60.455, + "index": 25, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 696.325, + "y": 66 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 394 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 396 + }, + "max": { + "#": 397 + } + }, + { + "x": 650.66, + "y": 20 + }, + { + "x": 741.99, + "y": 112 + }, + { + "x": 696.325, + "y": 66 + }, + [ + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + }, + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88543, + "y": -0.46476 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88543, + "y": -0.46476 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 19, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 414 + }, + "angle": 0, + "vertices": { + "#": 415 + }, + "position": { + "#": 420 + }, + "force": { + "#": 421 + }, + "torque": 0, + "positionImpulse": { + "#": 422 + }, + "constraintImpulse": { + "#": 423 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 424 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 425 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 426 + }, + "bounds": { + "#": 428 + }, + "positionPrev": { + "#": 431 + }, + "anglePrev": 0, + "axes": { + "#": 432 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 413 + }, + "sleepCounter": 0 + }, + [ + { + "#": 413 + } + ], + [ + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + } + ], + { + "x": 20, + "y": 112, + "index": 0, + "body": { + "#": 413 + }, + "isInternal": false + }, + { + "x": 84, + "y": 112, + "index": 1, + "body": { + "#": 413 + }, + "isInternal": false + }, + { + "x": 84, + "y": 176, + "index": 2, + "body": { + "#": 413 + }, + "isInternal": false + }, + { + "x": 20, + "y": 176, + "index": 3, + "body": { + "#": 413 + }, + "isInternal": false + }, + { + "x": 52, + "y": 144 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 427 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#FF6B6B" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 429 + }, + "max": { + "#": 430 + } + }, + { + "x": 20, + "y": 112 + }, + { + "x": 84, + "y": 176 + }, + { + "x": 52, + "y": 144 + }, + [ + { + "#": 433 + }, + { + "#": 434 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 20, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 436 + }, + "angle": 0, + "vertices": { + "#": 437 + }, + "position": { + "#": 464 + }, + "force": { + "#": 465 + }, + "torque": 0, + "positionImpulse": { + "#": 466 + }, + "constraintImpulse": { + "#": 467 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 468 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 469 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 470 + }, + "circleRadius": 46, + "bounds": { + "#": 472 + }, + "positionPrev": { + "#": 475 + }, + "anglePrev": 0, + "axes": { + "#": 476 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 435 + }, + "sleepCounter": 0 + }, + [ + { + "#": 435 + } + ], + [ + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + } + ], + { + "x": 175.33, + "y": 163.545, + "index": 0, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 172.676, + "y": 174.312, + "index": 1, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 167.522, + "y": 184.131, + "index": 2, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 160.169, + "y": 192.431, + "index": 3, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 151.042, + "y": 198.731, + "index": 4, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 140.674, + "y": 202.663, + "index": 5, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 129.665, + "y": 204, + "index": 6, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 118.656, + "y": 202.663, + "index": 7, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 108.288, + "y": 198.731, + "index": 8, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 99.161, + "y": 192.431, + "index": 9, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 91.808, + "y": 184.131, + "index": 10, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 86.654, + "y": 174.312, + "index": 11, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 84, + "y": 163.545, + "index": 12, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 84, + "y": 152.455, + "index": 13, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 86.654, + "y": 141.688, + "index": 14, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 91.808, + "y": 131.869, + "index": 15, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 99.161, + "y": 123.569, + "index": 16, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 108.288, + "y": 117.269, + "index": 17, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 118.656, + "y": 113.337, + "index": 18, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 129.665, + "y": 112, + "index": 19, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 140.674, + "y": 113.337, + "index": 20, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 151.042, + "y": 117.269, + "index": 21, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 160.169, + "y": 123.569, + "index": 22, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 167.522, + "y": 131.869, + "index": 23, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 172.676, + "y": 141.688, + "index": 24, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 175.33, + "y": 152.455, + "index": 25, + "body": { + "#": 435 + }, + "isInternal": false + }, + { + "x": 129.665, + "y": 158 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 471 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 473 + }, + "max": { + "#": 474 + } + }, + { + "x": 84, + "y": 112 + }, + { + "x": 175.33, + "y": 204 + }, + { + "x": 129.665, + "y": 158 + }, + [ + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88543, + "y": -0.46476 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88543, + "y": -0.46476 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 21, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 491 + }, + "angle": 0, + "vertices": { + "#": 492 + }, + "position": { + "#": 497 + }, + "force": { + "#": 498 + }, + "torque": 0, + "positionImpulse": { + "#": 499 + }, + "constraintImpulse": { + "#": 500 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 501 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 502 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 503 + }, + "bounds": { + "#": 505 + }, + "positionPrev": { + "#": 508 + }, + "anglePrev": 0, + "axes": { + "#": 509 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 490 + }, + "sleepCounter": 0 + }, + [ + { + "#": 490 + } + ], + [ + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + } + ], + { + "x": 175.33, + "y": 112, + "index": 0, + "body": { + "#": 490 + }, + "isInternal": false + }, + { + "x": 239.33, + "y": 112, + "index": 1, + "body": { + "#": 490 + }, + "isInternal": false + }, + { + "x": 239.33, + "y": 176, + "index": 2, + "body": { + "#": 490 + }, + "isInternal": false + }, + { + "x": 175.33, + "y": 176, + "index": 3, + "body": { + "#": 490 + }, + "isInternal": false + }, + { + "x": 207.33, + "y": 144 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 504 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#C7F464" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 506 + }, + "max": { + "#": 507 + } + }, + { + "x": 175.33, + "y": 112 + }, + { + "x": 239.33, + "y": 176 + }, + { + "x": 207.33, + "y": 144 + }, + [ + { + "#": 510 + }, + { + "#": 511 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 22, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 513 + }, + "angle": 0, + "vertices": { + "#": 514 + }, + "position": { + "#": 519 + }, + "force": { + "#": 520 + }, + "torque": 0, + "positionImpulse": { + "#": 521 + }, + "constraintImpulse": { + "#": 522 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 523 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 524 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 525 + }, + "bounds": { + "#": 527 + }, + "positionPrev": { + "#": 530 + }, + "anglePrev": 0, + "axes": { + "#": 531 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 512 + }, + "sleepCounter": 0 + }, + [ + { + "#": 512 + } + ], + [ + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + } + ], + { + "x": 239.33, + "y": 112, + "index": 0, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 303.33, + "y": 112, + "index": 1, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 303.33, + "y": 176, + "index": 2, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 239.33, + "y": 176, + "index": 3, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 271.33, + "y": 144 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 526 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#C44D58" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 528 + }, + "max": { + "#": 529 + } + }, + { + "x": 239.33, + "y": 112 + }, + { + "x": 303.33, + "y": 176 + }, + { + "x": 271.33, + "y": 144 + }, + [ + { + "#": 532 + }, + { + "#": 533 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 23, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 535 + }, + "angle": 0, + "vertices": { + "#": 536 + }, + "position": { + "#": 541 + }, + "force": { + "#": 542 + }, + "torque": 0, + "positionImpulse": { + "#": 543 + }, + "constraintImpulse": { + "#": 544 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 545 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 546 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 547 + }, + "bounds": { + "#": 549 + }, + "positionPrev": { + "#": 552 + }, + "anglePrev": 0, + "axes": { + "#": 553 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 534 + }, + "sleepCounter": 0 + }, + [ + { + "#": 534 + } + ], + [ + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + } + ], + { + "x": 303.33, + "y": 112, + "index": 0, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 367.33, + "y": 112, + "index": 1, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 367.33, + "y": 176, + "index": 2, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 303.33, + "y": 176, + "index": 3, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 335.33, + "y": 144 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 548 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#556270" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 550 + }, + "max": { + "#": 551 + } + }, + { + "x": 303.33, + "y": 112 + }, + { + "x": 367.33, + "y": 176 + }, + { + "x": 335.33, + "y": 144 + }, + [ + { + "#": 554 + }, + { + "#": 555 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 24, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 557 + }, + "angle": 0, + "vertices": { + "#": 558 + }, + "position": { + "#": 563 + }, + "force": { + "#": 564 + }, + "torque": 0, + "positionImpulse": { + "#": 565 + }, + "constraintImpulse": { + "#": 566 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 567 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 568 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 569 + }, + "bounds": { + "#": 571 + }, + "positionPrev": { + "#": 574 + }, + "anglePrev": 0, + "axes": { + "#": 575 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 556 + }, + "sleepCounter": 0 + }, + [ + { + "#": 556 + } + ], + [ + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + } + ], + { + "x": 367.33, + "y": 112, + "index": 0, + "body": { + "#": 556 + }, + "isInternal": false + }, + { + "x": 431.33, + "y": 112, + "index": 1, + "body": { + "#": 556 + }, + "isInternal": false + }, + { + "x": 431.33, + "y": 176, + "index": 2, + "body": { + "#": 556 + }, + "isInternal": false + }, + { + "x": 367.33, + "y": 176, + "index": 3, + "body": { + "#": 556 + }, + "isInternal": false + }, + { + "x": 399.33, + "y": 144 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 570 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#C44D58" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 572 + }, + "max": { + "#": 573 + } + }, + { + "x": 367.33, + "y": 112 + }, + { + "x": 431.33, + "y": 176 + }, + { + "x": 399.33, + "y": 144 + }, + [ + { + "#": 576 + }, + { + "#": 577 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 25, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 579 + }, + "angle": 0, + "vertices": { + "#": 580 + }, + "position": { + "#": 607 + }, + "force": { + "#": 608 + }, + "torque": 0, + "positionImpulse": { + "#": 609 + }, + "constraintImpulse": { + "#": 610 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 611 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 612 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 613 + }, + "circleRadius": 46, + "bounds": { + "#": 615 + }, + "positionPrev": { + "#": 618 + }, + "anglePrev": 0, + "axes": { + "#": 619 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 578 + }, + "sleepCounter": 0 + }, + [ + { + "#": 578 + } + ], + [ + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + } + ], + { + "x": 522.66, + "y": 163.545, + "index": 0, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 520.006, + "y": 174.312, + "index": 1, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 514.852, + "y": 184.131, + "index": 2, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 507.499, + "y": 192.431, + "index": 3, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 498.372, + "y": 198.731, + "index": 4, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 488.004, + "y": 202.663, + "index": 5, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 476.995, + "y": 204, + "index": 6, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 465.986, + "y": 202.663, + "index": 7, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 455.618, + "y": 198.731, + "index": 8, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 446.491, + "y": 192.431, + "index": 9, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 439.138, + "y": 184.131, + "index": 10, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 433.984, + "y": 174.312, + "index": 11, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 431.33, + "y": 163.545, + "index": 12, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 431.33, + "y": 152.455, + "index": 13, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 433.984, + "y": 141.688, + "index": 14, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 439.138, + "y": 131.869, + "index": 15, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 446.491, + "y": 123.569, + "index": 16, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 455.618, + "y": 117.269, + "index": 17, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 465.986, + "y": 113.337, + "index": 18, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 476.995, + "y": 112, + "index": 19, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 488.004, + "y": 113.337, + "index": 20, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 498.372, + "y": 117.269, + "index": 21, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 507.499, + "y": 123.569, + "index": 22, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 514.852, + "y": 131.869, + "index": 23, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 520.006, + "y": 141.688, + "index": 24, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 522.66, + "y": 152.455, + "index": 25, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 476.995, + "y": 158 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 614 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 616 + }, + "max": { + "#": 617 + } + }, + { + "x": 431.33, + "y": 112 + }, + { + "x": 522.66, + "y": 204 + }, + { + "x": 476.995, + "y": 158 + }, + [ + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88543, + "y": -0.46476 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88543, + "y": -0.46476 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 26, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 634 + }, + "angle": 0, + "vertices": { + "#": 635 + }, + "position": { + "#": 640 + }, + "force": { + "#": 641 + }, + "torque": 0, + "positionImpulse": { + "#": 642 + }, + "constraintImpulse": { + "#": 643 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 644 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 645 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 646 + }, + "bounds": { + "#": 648 + }, + "positionPrev": { + "#": 651 + }, + "anglePrev": 0, + "axes": { + "#": 652 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 633 + }, + "sleepCounter": 0 + }, + [ + { + "#": 633 + } + ], + [ + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + } + ], + { + "x": 522.66, + "y": 112, + "index": 0, + "body": { + "#": 633 + }, + "isInternal": false + }, + { + "x": 586.66, + "y": 112, + "index": 1, + "body": { + "#": 633 + }, + "isInternal": false + }, + { + "x": 586.66, + "y": 176, + "index": 2, + "body": { + "#": 633 + }, + "isInternal": false + }, + { + "x": 522.66, + "y": 176, + "index": 3, + "body": { + "#": 633 + }, + "isInternal": false + }, + { + "x": 554.66, + "y": 144 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 647 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#4ECDC4" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 649 + }, + "max": { + "#": 650 + } + }, + { + "x": 522.66, + "y": 112 + }, + { + "x": 586.66, + "y": 176 + }, + { + "x": 554.66, + "y": 144 + }, + [ + { + "#": 653 + }, + { + "#": 654 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 27, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 656 + }, + "angle": 0, + "vertices": { + "#": 657 + }, + "position": { + "#": 662 + }, + "force": { + "#": 663 + }, + "torque": 0, + "positionImpulse": { + "#": 664 + }, + "constraintImpulse": { + "#": 665 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 666 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 667 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 668 + }, + "bounds": { + "#": 670 + }, + "positionPrev": { + "#": 673 + }, + "anglePrev": 0, + "axes": { + "#": 674 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 655 + }, + "sleepCounter": 0 + }, + [ + { + "#": 655 + } + ], + [ + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + } + ], + { + "x": 586.66, + "y": 112, + "index": 0, + "body": { + "#": 655 + }, + "isInternal": false + }, + { + "x": 650.66, + "y": 112, + "index": 1, + "body": { + "#": 655 + }, + "isInternal": false + }, + { + "x": 650.66, + "y": 176, + "index": 2, + "body": { + "#": 655 + }, + "isInternal": false + }, + { + "x": 586.66, + "y": 176, + "index": 3, + "body": { + "#": 655 + }, + "isInternal": false + }, + { + "x": 618.66, + "y": 144 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 669 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#556270" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 671 + }, + "max": { + "#": 672 + } + }, + { + "x": 586.66, + "y": 112 + }, + { + "x": 650.66, + "y": 176 + }, + { + "x": 618.66, + "y": 144 + }, + [ + { + "#": 675 + }, + { + "#": 676 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 28, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 678 + }, + "angle": 0, + "vertices": { + "#": 679 + }, + "position": { + "#": 684 + }, + "force": { + "#": 685 + }, + "torque": 0, + "positionImpulse": { + "#": 686 + }, + "constraintImpulse": { + "#": 687 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 688 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 689 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 690 + }, + "bounds": { + "#": 692 + }, + "positionPrev": { + "#": 695 + }, + "anglePrev": 0, + "axes": { + "#": 696 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 677 + }, + "sleepCounter": 0 + }, + [ + { + "#": 677 + } + ], + [ + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + } + ], + { + "x": 650.66, + "y": 112, + "index": 0, + "body": { + "#": 677 + }, + "isInternal": false + }, + { + "x": 714.66, + "y": 112, + "index": 1, + "body": { + "#": 677 + }, + "isInternal": false + }, + { + "x": 714.66, + "y": 176, + "index": 2, + "body": { + "#": 677 + }, + "isInternal": false + }, + { + "x": 650.66, + "y": 176, + "index": 3, + "body": { + "#": 677 + }, + "isInternal": false + }, + { + "x": 682.66, + "y": 144 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 691 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#FF6B6B" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 693 + }, + "max": { + "#": 694 + } + }, + { + "x": 650.66, + "y": 112 + }, + { + "x": 714.66, + "y": 176 + }, + { + "x": 682.66, + "y": 144 + }, + [ + { + "#": 697 + }, + { + "#": 698 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 29, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 700 + }, + "angle": 0, + "vertices": { + "#": 701 + }, + "position": { + "#": 706 + }, + "force": { + "#": 707 + }, + "torque": 0, + "positionImpulse": { + "#": 708 + }, + "constraintImpulse": { + "#": 709 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 710 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 711 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 712 + }, + "bounds": { + "#": 714 + }, + "positionPrev": { + "#": 717 + }, + "anglePrev": 0, + "axes": { + "#": 718 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 699 + }, + "sleepCounter": 0 + }, + [ + { + "#": 699 + } + ], + [ + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + } + ], + { + "x": 20, + "y": 204, + "index": 0, + "body": { + "#": 699 + }, + "isInternal": false + }, + { + "x": 84, + "y": 204, + "index": 1, + "body": { + "#": 699 + }, + "isInternal": false + }, + { + "x": 84, + "y": 268, + "index": 2, + "body": { + "#": 699 + }, + "isInternal": false + }, + { + "x": 20, + "y": 268, + "index": 3, + "body": { + "#": 699 + }, + "isInternal": false + }, + { + "x": 52, + "y": 236 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 713 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#C7F464" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 715 + }, + "max": { + "#": 716 + } + }, + { + "x": 20, + "y": 204 + }, + { + "x": 84, + "y": 268 + }, + { + "x": 52, + "y": 236 + }, + [ + { + "#": 719 + }, + { + "#": 720 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 30, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 722 + }, + "angle": 0, + "vertices": { + "#": 723 + }, + "position": { + "#": 750 + }, + "force": { + "#": 751 + }, + "torque": 0, + "positionImpulse": { + "#": 752 + }, + "constraintImpulse": { + "#": 753 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 754 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 755 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 756 + }, + "circleRadius": 46, + "bounds": { + "#": 758 + }, + "positionPrev": { + "#": 761 + }, + "anglePrev": 0, + "axes": { + "#": 762 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 721 + }, + "sleepCounter": 0 + }, + [ + { + "#": 721 + } + ], + [ + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + }, + { + "#": 749 + } + ], + { + "x": 175.33, + "y": 255.545, + "index": 0, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 172.676, + "y": 266.312, + "index": 1, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 167.522, + "y": 276.131, + "index": 2, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 160.169, + "y": 284.431, + "index": 3, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 151.042, + "y": 290.731, + "index": 4, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 140.674, + "y": 294.663, + "index": 5, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 129.665, + "y": 296, + "index": 6, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 118.656, + "y": 294.663, + "index": 7, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 108.288, + "y": 290.731, + "index": 8, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 99.161, + "y": 284.431, + "index": 9, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 91.808, + "y": 276.131, + "index": 10, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 86.654, + "y": 266.312, + "index": 11, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 84, + "y": 255.545, + "index": 12, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 84, + "y": 244.455, + "index": 13, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 86.654, + "y": 233.688, + "index": 14, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 91.808, + "y": 223.869, + "index": 15, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 99.161, + "y": 215.569, + "index": 16, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 108.288, + "y": 209.269, + "index": 17, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 118.656, + "y": 205.337, + "index": 18, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 129.665, + "y": 204, + "index": 19, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 140.674, + "y": 205.337, + "index": 20, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 151.042, + "y": 209.269, + "index": 21, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 160.169, + "y": 215.569, + "index": 22, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 167.522, + "y": 223.869, + "index": 23, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 172.676, + "y": 233.688, + "index": 24, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 175.33, + "y": 244.455, + "index": 25, + "body": { + "#": 721 + }, + "isInternal": false + }, + { + "x": 129.665, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 757 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 759 + }, + "max": { + "#": 760 + } + }, + { + "x": 84, + "y": 204 + }, + { + "x": 175.33, + "y": 296 + }, + { + "x": 129.665, + "y": 250 + }, + [ + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + }, + { + "#": 767 + }, + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + }, + { + "#": 774 + }, + { + "#": 775 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88543, + "y": -0.46476 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88543, + "y": -0.46476 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 31, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 777 + }, + "angle": 0, + "vertices": { + "#": 778 + }, + "position": { + "#": 783 + }, + "force": { + "#": 784 + }, + "torque": 0, + "positionImpulse": { + "#": 785 + }, + "constraintImpulse": { + "#": 786 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 787 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 788 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 789 + }, + "bounds": { + "#": 791 + }, + "positionPrev": { + "#": 794 + }, + "anglePrev": 0, + "axes": { + "#": 795 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 776 + }, + "sleepCounter": 0 + }, + [ + { + "#": 776 + } + ], + [ + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + } + ], + { + "x": 175.33, + "y": 204, + "index": 0, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 239.33, + "y": 204, + "index": 1, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 239.33, + "y": 268, + "index": 2, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 175.33, + "y": 268, + "index": 3, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 207.33, + "y": 236 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 790 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#556270" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 792 + }, + "max": { + "#": 793 + } + }, + { + "x": 175.33, + "y": 204 + }, + { + "x": 239.33, + "y": 268 + }, + { + "x": 207.33, + "y": 236 + }, + [ + { + "#": 796 + }, + { + "#": 797 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 32, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 799 + }, + "angle": 0, + "vertices": { + "#": 800 + }, + "position": { + "#": 805 + }, + "force": { + "#": 806 + }, + "torque": 0, + "positionImpulse": { + "#": 807 + }, + "constraintImpulse": { + "#": 808 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 809 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 810 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 811 + }, + "bounds": { + "#": 813 + }, + "positionPrev": { + "#": 816 + }, + "anglePrev": 0, + "axes": { + "#": 817 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 798 + }, + "sleepCounter": 0 + }, + [ + { + "#": 798 + } + ], + [ + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + } + ], + { + "x": 239.33, + "y": 204, + "index": 0, + "body": { + "#": 798 + }, + "isInternal": false + }, + { + "x": 303.33, + "y": 204, + "index": 1, + "body": { + "#": 798 + }, + "isInternal": false + }, + { + "x": 303.33, + "y": 268, + "index": 2, + "body": { + "#": 798 + }, + "isInternal": false + }, + { + "x": 239.33, + "y": 268, + "index": 3, + "body": { + "#": 798 + }, + "isInternal": false + }, + { + "x": 271.33, + "y": 236 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 812 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#C7F464" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 814 + }, + "max": { + "#": 815 + } + }, + { + "x": 239.33, + "y": 204 + }, + { + "x": 303.33, + "y": 268 + }, + { + "x": 271.33, + "y": 236 + }, + [ + { + "#": 818 + }, + { + "#": 819 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 33, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 821 + }, + "angle": 0, + "vertices": { + "#": 822 + }, + "position": { + "#": 849 + }, + "force": { + "#": 850 + }, + "torque": 0, + "positionImpulse": { + "#": 851 + }, + "constraintImpulse": { + "#": 852 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 853 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 854 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 855 + }, + "circleRadius": 46, + "bounds": { + "#": 857 + }, + "positionPrev": { + "#": 860 + }, + "anglePrev": 0, + "axes": { + "#": 861 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 820 + }, + "sleepCounter": 0 + }, + [ + { + "#": 820 + } + ], + [ + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + }, + { + "#": 827 + }, + { + "#": 828 + }, + { + "#": 829 + }, + { + "#": 830 + }, + { + "#": 831 + }, + { + "#": 832 + }, + { + "#": 833 + }, + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + } + ], + { + "x": 394.66, + "y": 255.545, + "index": 0, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 392.006, + "y": 266.312, + "index": 1, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 386.852, + "y": 276.131, + "index": 2, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 379.499, + "y": 284.431, + "index": 3, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 370.372, + "y": 290.731, + "index": 4, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 360.004, + "y": 294.663, + "index": 5, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 348.995, + "y": 296, + "index": 6, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 337.986, + "y": 294.663, + "index": 7, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 327.618, + "y": 290.731, + "index": 8, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 318.491, + "y": 284.431, + "index": 9, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 311.138, + "y": 276.131, + "index": 10, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 305.984, + "y": 266.312, + "index": 11, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 303.33, + "y": 255.545, + "index": 12, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 303.33, + "y": 244.455, + "index": 13, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 305.984, + "y": 233.688, + "index": 14, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 311.138, + "y": 223.869, + "index": 15, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 318.491, + "y": 215.569, + "index": 16, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 327.618, + "y": 209.269, + "index": 17, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 337.986, + "y": 205.337, + "index": 18, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 348.995, + "y": 204, + "index": 19, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 360.004, + "y": 205.337, + "index": 20, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 370.372, + "y": 209.269, + "index": 21, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 379.499, + "y": 215.569, + "index": 22, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 386.852, + "y": 223.869, + "index": 23, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 392.006, + "y": 233.688, + "index": 24, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 394.66, + "y": 244.455, + "index": 25, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 348.995, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 856 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 858 + }, + "max": { + "#": 859 + } + }, + { + "x": 303.33, + "y": 204 + }, + { + "x": 394.66, + "y": 296 + }, + { + "x": 348.995, + "y": 250 + }, + [ + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + }, + { + "#": 869 + }, + { + "#": 870 + }, + { + "#": 871 + }, + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88543, + "y": -0.46476 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88543, + "y": -0.46476 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 34, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 876 + }, + "angle": 0, + "vertices": { + "#": 877 + }, + "position": { + "#": 882 + }, + "force": { + "#": 883 + }, + "torque": 0, + "positionImpulse": { + "#": 884 + }, + "constraintImpulse": { + "#": 885 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 886 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 887 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 888 + }, + "bounds": { + "#": 890 + }, + "positionPrev": { + "#": 893 + }, + "anglePrev": 0, + "axes": { + "#": 894 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 875 + }, + "sleepCounter": 0 + }, + [ + { + "#": 875 + } + ], + [ + { + "#": 878 + }, + { + "#": 879 + }, + { + "#": 880 + }, + { + "#": 881 + } + ], + { + "x": 394.66, + "y": 204, + "index": 0, + "body": { + "#": 875 + }, + "isInternal": false + }, + { + "x": 458.66, + "y": 204, + "index": 1, + "body": { + "#": 875 + }, + "isInternal": false + }, + { + "x": 458.66, + "y": 268, + "index": 2, + "body": { + "#": 875 + }, + "isInternal": false + }, + { + "x": 394.66, + "y": 268, + "index": 3, + "body": { + "#": 875 + }, + "isInternal": false + }, + { + "x": 426.66, + "y": 236 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 889 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#4ECDC4" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 891 + }, + "max": { + "#": 892 + } + }, + { + "x": 394.66, + "y": 204 + }, + { + "x": 458.66, + "y": 268 + }, + { + "x": 426.66, + "y": 236 + }, + [ + { + "#": 895 + }, + { + "#": 896 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 35, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 898 + }, + "angle": 0, + "vertices": { + "#": 899 + }, + "position": { + "#": 926 + }, + "force": { + "#": 927 + }, + "torque": 0, + "positionImpulse": { + "#": 928 + }, + "constraintImpulse": { + "#": 929 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 930 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 931 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 932 + }, + "circleRadius": 46, + "bounds": { + "#": 934 + }, + "positionPrev": { + "#": 937 + }, + "anglePrev": 0, + "axes": { + "#": 938 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 897 + }, + "sleepCounter": 0 + }, + [ + { + "#": 897 + } + ], + [ + { + "#": 900 + }, + { + "#": 901 + }, + { + "#": 902 + }, + { + "#": 903 + }, + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + }, + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + }, + { + "#": 915 + }, + { + "#": 916 + }, + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + }, + { + "#": 920 + }, + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + }, + { + "#": 924 + }, + { + "#": 925 + } + ], + { + "x": 549.99, + "y": 255.545, + "index": 0, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 547.336, + "y": 266.312, + "index": 1, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 542.182, + "y": 276.131, + "index": 2, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 534.829, + "y": 284.431, + "index": 3, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 525.702, + "y": 290.731, + "index": 4, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 515.334, + "y": 294.663, + "index": 5, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 504.325, + "y": 296, + "index": 6, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 493.316, + "y": 294.663, + "index": 7, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 482.948, + "y": 290.731, + "index": 8, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 473.821, + "y": 284.431, + "index": 9, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 466.468, + "y": 276.131, + "index": 10, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 461.314, + "y": 266.312, + "index": 11, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 458.66, + "y": 255.545, + "index": 12, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 458.66, + "y": 244.455, + "index": 13, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 461.314, + "y": 233.688, + "index": 14, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 466.468, + "y": 223.869, + "index": 15, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 473.821, + "y": 215.569, + "index": 16, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 482.948, + "y": 209.269, + "index": 17, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 493.316, + "y": 205.337, + "index": 18, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 504.325, + "y": 204, + "index": 19, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 515.334, + "y": 205.337, + "index": 20, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 525.702, + "y": 209.269, + "index": 21, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 534.829, + "y": 215.569, + "index": 22, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 542.182, + "y": 223.869, + "index": 23, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 547.336, + "y": 233.688, + "index": 24, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 549.99, + "y": 244.455, + "index": 25, + "body": { + "#": 897 + }, + "isInternal": false + }, + { + "x": 504.325, + "y": 250 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 933 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 935 + }, + "max": { + "#": 936 + } + }, + { + "x": 458.66, + "y": 204 + }, + { + "x": 549.99, + "y": 296 + }, + { + "x": 504.325, + "y": 250 + }, + [ + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + }, + { + "#": 943 + }, + { + "#": 944 + }, + { + "#": 945 + }, + { + "#": 946 + }, + { + "#": 947 + }, + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88543, + "y": -0.46476 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88543, + "y": -0.46476 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 36, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 953 + }, + "angle": 0, + "vertices": { + "#": 954 + }, + "position": { + "#": 959 + }, + "force": { + "#": 960 + }, + "torque": 0, + "positionImpulse": { + "#": 961 + }, + "constraintImpulse": { + "#": 962 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 963 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 964 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 965 + }, + "bounds": { + "#": 967 + }, + "positionPrev": { + "#": 970 + }, + "anglePrev": 0, + "axes": { + "#": 971 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 952 + }, + "sleepCounter": 0 + }, + [ + { + "#": 952 + } + ], + [ + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + } + ], + { + "x": 549.99, + "y": 204, + "index": 0, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 613.99, + "y": 204, + "index": 1, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 613.99, + "y": 268, + "index": 2, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 549.99, + "y": 268, + "index": 3, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 581.99, + "y": 236 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 966 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#C7F464" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 968 + }, + "max": { + "#": 969 + } + }, + { + "x": 549.99, + "y": 204 + }, + { + "x": 613.99, + "y": 268 + }, + { + "x": 581.99, + "y": 236 + }, + [ + { + "#": 972 + }, + { + "#": 973 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 37, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 975 + }, + "angle": 0, + "vertices": { + "#": 976 + }, + "position": { + "#": 981 + }, + "force": { + "#": 982 + }, + "torque": 0, + "positionImpulse": { + "#": 983 + }, + "constraintImpulse": { + "#": 984 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 985 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 986 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 987 + }, + "bounds": { + "#": 989 + }, + "positionPrev": { + "#": 992 + }, + "anglePrev": 0, + "axes": { + "#": 993 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 974 + }, + "sleepCounter": 0 + }, + [ + { + "#": 974 + } + ], + [ + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + }, + { + "#": 980 + } + ], + { + "x": 613.99, + "y": 204, + "index": 0, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 677.99, + "y": 204, + "index": 1, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 677.99, + "y": 268, + "index": 2, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 613.99, + "y": 268, + "index": 3, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 645.99, + "y": 236 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 988 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#C7F464" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 990 + }, + "max": { + "#": 991 + } + }, + { + "x": 613.99, + "y": 204 + }, + { + "x": 677.99, + "y": 268 + }, + { + "x": 645.99, + "y": 236 + }, + [ + { + "#": 994 + }, + { + "#": 995 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 38, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 997 + }, + "angle": 0, + "vertices": { + "#": 998 + }, + "position": { + "#": 1003 + }, + "force": { + "#": 1004 + }, + "torque": 0, + "positionImpulse": { + "#": 1005 + }, + "constraintImpulse": { + "#": 1006 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1007 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1008 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1009 + }, + "bounds": { + "#": 1011 + }, + "positionPrev": { + "#": 1014 + }, + "anglePrev": 0, + "axes": { + "#": 1015 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 996 + }, + "sleepCounter": 0 + }, + [ + { + "#": 996 + } + ], + [ + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + }, + { + "#": 1002 + } + ], + { + "x": 677.99, + "y": 204, + "index": 0, + "body": { + "#": 996 + }, + "isInternal": false + }, + { + "x": 741.99, + "y": 204, + "index": 1, + "body": { + "#": 996 + }, + "isInternal": false + }, + { + "x": 741.99, + "y": 268, + "index": 2, + "body": { + "#": 996 + }, + "isInternal": false + }, + { + "x": 677.99, + "y": 268, + "index": 3, + "body": { + "#": 996 + }, + "isInternal": false + }, + { + "x": 709.99, + "y": 236 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1010 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#4ECDC4" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 1012 + }, + "max": { + "#": 1013 + } + }, + { + "x": 677.99, + "y": 204 + }, + { + "x": 741.99, + "y": 268 + }, + { + "x": 709.99, + "y": 236 + }, + [ + { + "#": 1016 + }, + { + "#": 1017 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 39, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1019 + }, + "angle": 0, + "vertices": { + "#": 1020 + }, + "position": { + "#": 1025 + }, + "force": { + "#": 1026 + }, + "torque": 0, + "positionImpulse": { + "#": 1027 + }, + "constraintImpulse": { + "#": 1028 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1029 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1030 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1031 + }, + "bounds": { + "#": 1033 + }, + "positionPrev": { + "#": 1036 + }, + "anglePrev": 0, + "axes": { + "#": 1037 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 1018 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1018 + } + ], + [ + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + } + ], + { + "x": 20, + "y": 296, + "index": 0, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 84, + "y": 296, + "index": 1, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 84, + "y": 360, + "index": 2, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 20, + "y": 360, + "index": 3, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 52, + "y": 328 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1032 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#FF6B6B" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 1034 + }, + "max": { + "#": 1035 + } + }, + { + "x": 20, + "y": 296 + }, + { + "x": 84, + "y": 360 + }, + { + "x": 52, + "y": 328 + }, + [ + { + "#": 1038 + }, + { + "#": 1039 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 40, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1041 + }, + "angle": 0, + "vertices": { + "#": 1042 + }, + "position": { + "#": 1069 + }, + "force": { + "#": 1070 + }, + "torque": 0, + "positionImpulse": { + "#": 1071 + }, + "constraintImpulse": { + "#": 1072 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1073 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 1074 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1075 + }, + "circleRadius": 46, + "bounds": { + "#": 1077 + }, + "positionPrev": { + "#": 1080 + }, + "anglePrev": 0, + "axes": { + "#": 1081 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 1040 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1040 + } + ], + [ + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + }, + { + "#": 1054 + }, + { + "#": 1055 + }, + { + "#": 1056 + }, + { + "#": 1057 + }, + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + }, + { + "#": 1061 + }, + { + "#": 1062 + }, + { + "#": 1063 + }, + { + "#": 1064 + }, + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + } + ], + { + "x": 175.33, + "y": 347.545, + "index": 0, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 172.676, + "y": 358.312, + "index": 1, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 167.522, + "y": 368.131, + "index": 2, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 160.169, + "y": 376.431, + "index": 3, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 151.042, + "y": 382.731, + "index": 4, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 140.674, + "y": 386.663, + "index": 5, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 129.665, + "y": 388, + "index": 6, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 118.656, + "y": 386.663, + "index": 7, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 108.288, + "y": 382.731, + "index": 8, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 99.161, + "y": 376.431, + "index": 9, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 91.808, + "y": 368.131, + "index": 10, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 86.654, + "y": 358.312, + "index": 11, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 84, + "y": 347.545, + "index": 12, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 84, + "y": 336.455, + "index": 13, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 86.654, + "y": 325.688, + "index": 14, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 91.808, + "y": 315.869, + "index": 15, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 99.161, + "y": 307.569, + "index": 16, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 108.288, + "y": 301.269, + "index": 17, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 118.656, + "y": 297.337, + "index": 18, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 129.665, + "y": 296, + "index": 19, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 140.674, + "y": 297.337, + "index": 20, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 151.042, + "y": 301.269, + "index": 21, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 160.169, + "y": 307.569, + "index": 22, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 167.522, + "y": 315.869, + "index": 23, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 172.676, + "y": 325.688, + "index": 24, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 175.33, + "y": 336.455, + "index": 25, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 129.665, + "y": 342 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1076 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 1078 + }, + "max": { + "#": 1079 + } + }, + { + "x": 84, + "y": 296 + }, + { + "x": 175.33, + "y": 388 + }, + { + "x": 129.665, + "y": 342 + }, + [ + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + }, + { + "#": 1085 + }, + { + "#": 1086 + }, + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88543, + "y": -0.46476 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88543, + "y": -0.46476 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 41, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1096 + }, + "angle": 0, + "vertices": { + "#": 1097 + }, + "position": { + "#": 1124 + }, + "force": { + "#": 1125 + }, + "torque": 0, + "positionImpulse": { + "#": 1126 + }, + "constraintImpulse": { + "#": 1127 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1128 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 1129 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1130 + }, + "circleRadius": 46, + "bounds": { + "#": 1132 + }, + "positionPrev": { + "#": 1135 + }, + "anglePrev": 0, + "axes": { + "#": 1136 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 1095 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1095 + } + ], + [ + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + }, + { + "#": 1108 + }, + { + "#": 1109 + }, + { + "#": 1110 + }, + { + "#": 1111 + }, + { + "#": 1112 + }, + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + } + ], + { + "x": 266.66, + "y": 347.545, + "index": 0, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 264.006, + "y": 358.312, + "index": 1, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 258.852, + "y": 368.131, + "index": 2, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 251.499, + "y": 376.431, + "index": 3, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 242.372, + "y": 382.731, + "index": 4, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 232.004, + "y": 386.663, + "index": 5, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 220.995, + "y": 388, + "index": 6, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 209.986, + "y": 386.663, + "index": 7, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 199.618, + "y": 382.731, + "index": 8, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 190.491, + "y": 376.431, + "index": 9, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 183.138, + "y": 368.131, + "index": 10, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 177.984, + "y": 358.312, + "index": 11, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 175.33, + "y": 347.545, + "index": 12, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 175.33, + "y": 336.455, + "index": 13, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 177.984, + "y": 325.688, + "index": 14, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 183.138, + "y": 315.869, + "index": 15, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 190.491, + "y": 307.569, + "index": 16, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 199.618, + "y": 301.269, + "index": 17, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 209.986, + "y": 297.337, + "index": 18, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 220.995, + "y": 296, + "index": 19, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 232.004, + "y": 297.337, + "index": 20, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 242.372, + "y": 301.269, + "index": 21, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 251.499, + "y": 307.569, + "index": 22, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 258.852, + "y": 315.869, + "index": 23, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 264.006, + "y": 325.688, + "index": 24, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 266.66, + "y": 336.455, + "index": 25, + "body": { + "#": 1095 + }, + "isInternal": false + }, + { + "x": 220.995, + "y": 342 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1131 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 1133 + }, + "max": { + "#": 1134 + } + }, + { + "x": 175.33, + "y": 296 + }, + { + "x": 266.66, + "y": 388 + }, + { + "x": 220.995, + "y": 342 + }, + [ + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88543, + "y": -0.46476 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88543, + "y": -0.46476 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 42, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1151 + }, + "angle": 0, + "vertices": { + "#": 1152 + }, + "position": { + "#": 1157 + }, + "force": { + "#": 1158 + }, + "torque": 0, + "positionImpulse": { + "#": 1159 + }, + "constraintImpulse": { + "#": 1160 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1161 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1162 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1163 + }, + "bounds": { + "#": 1165 + }, + "positionPrev": { + "#": 1168 + }, + "anglePrev": 0, + "axes": { + "#": 1169 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 1150 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1150 + } + ], + [ + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + }, + { + "#": 1156 + } + ], + { + "x": 266.66, + "y": 296, + "index": 0, + "body": { + "#": 1150 + }, + "isInternal": false + }, + { + "x": 330.66, + "y": 296, + "index": 1, + "body": { + "#": 1150 + }, + "isInternal": false + }, + { + "x": 330.66, + "y": 360, + "index": 2, + "body": { + "#": 1150 + }, + "isInternal": false + }, + { + "x": 266.66, + "y": 360, + "index": 3, + "body": { + "#": 1150 + }, + "isInternal": false + }, + { + "x": 298.66, + "y": 328 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1164 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#556270" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 1166 + }, + "max": { + "#": 1167 + } + }, + { + "x": 266.66, + "y": 296 + }, + { + "x": 330.66, + "y": 360 + }, + { + "x": 298.66, + "y": 328 + }, + [ + { + "#": 1170 + }, + { + "#": 1171 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 43, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1173 + }, + "angle": 0, + "vertices": { + "#": 1174 + }, + "position": { + "#": 1179 + }, + "force": { + "#": 1180 + }, + "torque": 0, + "positionImpulse": { + "#": 1181 + }, + "constraintImpulse": { + "#": 1182 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1183 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1184 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1185 + }, + "bounds": { + "#": 1187 + }, + "positionPrev": { + "#": 1190 + }, + "anglePrev": 0, + "axes": { + "#": 1191 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 1172 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1172 + } + ], + [ + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + } + ], + { + "x": 330.66, + "y": 296, + "index": 0, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 394.66, + "y": 296, + "index": 1, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 394.66, + "y": 360, + "index": 2, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 330.66, + "y": 360, + "index": 3, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 362.66, + "y": 328 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1186 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#FF6B6B" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 1188 + }, + "max": { + "#": 1189 + } + }, + { + "x": 330.66, + "y": 296 + }, + { + "x": 394.66, + "y": 360 + }, + { + "x": 362.66, + "y": 328 + }, + [ + { + "#": 1192 + }, + { + "#": 1193 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 44, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1195 + }, + "angle": 0, + "vertices": { + "#": 1196 + }, + "position": { + "#": 1201 + }, + "force": { + "#": 1202 + }, + "torque": 0, + "positionImpulse": { + "#": 1203 + }, + "constraintImpulse": { + "#": 1204 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1205 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1206 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1207 + }, + "bounds": { + "#": 1209 + }, + "positionPrev": { + "#": 1212 + }, + "anglePrev": 0, + "axes": { + "#": 1213 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 1194 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1194 + } + ], + [ + { + "#": 1197 + }, + { + "#": 1198 + }, + { + "#": 1199 + }, + { + "#": 1200 + } + ], + { + "x": 394.66, + "y": 296, + "index": 0, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 458.66, + "y": 296, + "index": 1, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 458.66, + "y": 360, + "index": 2, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 394.66, + "y": 360, + "index": 3, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 426.66, + "y": 328 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1208 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#556270" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 1210 + }, + "max": { + "#": 1211 + } + }, + { + "x": 394.66, + "y": 296 + }, + { + "x": 458.66, + "y": 360 + }, + { + "x": 426.66, + "y": 328 + }, + [ + { + "#": 1214 + }, + { + "#": 1215 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 45, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1217 + }, + "angle": 0, + "vertices": { + "#": 1218 + }, + "position": { + "#": 1245 + }, + "force": { + "#": 1246 + }, + "torque": 0, + "positionImpulse": { + "#": 1247 + }, + "constraintImpulse": { + "#": 1248 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1249 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 1250 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1251 + }, + "circleRadius": 46, + "bounds": { + "#": 1253 + }, + "positionPrev": { + "#": 1256 + }, + "anglePrev": 0, + "axes": { + "#": 1257 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 1216 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1216 + } + ], + [ + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + }, + { + "#": 1226 + }, + { + "#": 1227 + }, + { + "#": 1228 + }, + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + }, + { + "#": 1232 + }, + { + "#": 1233 + }, + { + "#": 1234 + }, + { + "#": 1235 + }, + { + "#": 1236 + }, + { + "#": 1237 + }, + { + "#": 1238 + }, + { + "#": 1239 + }, + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + } + ], + { + "x": 549.99, + "y": 347.545, + "index": 0, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 547.336, + "y": 358.312, + "index": 1, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 542.182, + "y": 368.131, + "index": 2, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 534.829, + "y": 376.431, + "index": 3, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 525.702, + "y": 382.731, + "index": 4, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 515.334, + "y": 386.663, + "index": 5, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 504.325, + "y": 388, + "index": 6, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 493.316, + "y": 386.663, + "index": 7, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 482.948, + "y": 382.731, + "index": 8, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 473.821, + "y": 376.431, + "index": 9, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 466.468, + "y": 368.131, + "index": 10, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 461.314, + "y": 358.312, + "index": 11, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 458.66, + "y": 347.545, + "index": 12, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 458.66, + "y": 336.455, + "index": 13, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 461.314, + "y": 325.688, + "index": 14, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 466.468, + "y": 315.869, + "index": 15, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 473.821, + "y": 307.569, + "index": 16, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 482.948, + "y": 301.269, + "index": 17, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 493.316, + "y": 297.337, + "index": 18, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 504.325, + "y": 296, + "index": 19, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 515.334, + "y": 297.337, + "index": 20, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 525.702, + "y": 301.269, + "index": 21, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 534.829, + "y": 307.569, + "index": 22, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 542.182, + "y": 315.869, + "index": 23, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 547.336, + "y": 325.688, + "index": 24, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 549.99, + "y": 336.455, + "index": 25, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 504.325, + "y": 342 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1252 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 1254 + }, + "max": { + "#": 1255 + } + }, + { + "x": 458.66, + "y": 296 + }, + { + "x": 549.99, + "y": 388 + }, + { + "x": 504.325, + "y": 342 + }, + [ + { + "#": 1258 + }, + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + }, + { + "#": 1263 + }, + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + }, + { + "#": 1267 + }, + { + "#": 1268 + }, + { + "#": 1269 + }, + { + "#": 1270 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88543, + "y": -0.46476 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88543, + "y": -0.46476 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 46, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1272 + }, + "angle": 0, + "vertices": { + "#": 1273 + }, + "position": { + "#": 1278 + }, + "force": { + "#": 1279 + }, + "torque": 0, + "positionImpulse": { + "#": 1280 + }, + "constraintImpulse": { + "#": 1281 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1282 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1283 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1284 + }, + "bounds": { + "#": 1286 + }, + "positionPrev": { + "#": 1289 + }, + "anglePrev": 0, + "axes": { + "#": 1290 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 1271 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1271 + } + ], + [ + { + "#": 1274 + }, + { + "#": 1275 + }, + { + "#": 1276 + }, + { + "#": 1277 + } + ], + { + "x": 549.99, + "y": 296, + "index": 0, + "body": { + "#": 1271 + }, + "isInternal": false + }, + { + "x": 613.99, + "y": 296, + "index": 1, + "body": { + "#": 1271 + }, + "isInternal": false + }, + { + "x": 613.99, + "y": 360, + "index": 2, + "body": { + "#": 1271 + }, + "isInternal": false + }, + { + "x": 549.99, + "y": 360, + "index": 3, + "body": { + "#": 1271 + }, + "isInternal": false + }, + { + "x": 581.99, + "y": 328 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1285 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#4ECDC4" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 1287 + }, + "max": { + "#": 1288 + } + }, + { + "x": 549.99, + "y": 296 + }, + { + "x": 613.99, + "y": 360 + }, + { + "x": 581.99, + "y": 328 + }, + [ + { + "#": 1291 + }, + { + "#": 1292 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 47, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1294 + }, + "angle": 0, + "vertices": { + "#": 1295 + }, + "position": { + "#": 1322 + }, + "force": { + "#": 1323 + }, + "torque": 0, + "positionImpulse": { + "#": 1324 + }, + "constraintImpulse": { + "#": 1325 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1326 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 1327 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1328 + }, + "circleRadius": 46, + "bounds": { + "#": 1330 + }, + "positionPrev": { + "#": 1333 + }, + "anglePrev": 0, + "axes": { + "#": 1334 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 1293 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1293 + } + ], + [ + { + "#": 1296 + }, + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + }, + { + "#": 1301 + }, + { + "#": 1302 + }, + { + "#": 1303 + }, + { + "#": 1304 + }, + { + "#": 1305 + }, + { + "#": 1306 + }, + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + }, + { + "#": 1310 + }, + { + "#": 1311 + }, + { + "#": 1312 + }, + { + "#": 1313 + }, + { + "#": 1314 + }, + { + "#": 1315 + }, + { + "#": 1316 + }, + { + "#": 1317 + }, + { + "#": 1318 + }, + { + "#": 1319 + }, + { + "#": 1320 + }, + { + "#": 1321 + } + ], + { + "x": 705.32, + "y": 347.545, + "index": 0, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 702.666, + "y": 358.312, + "index": 1, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 697.512, + "y": 368.131, + "index": 2, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 690.159, + "y": 376.431, + "index": 3, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 681.032, + "y": 382.731, + "index": 4, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 670.664, + "y": 386.663, + "index": 5, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 659.655, + "y": 388, + "index": 6, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 648.646, + "y": 386.663, + "index": 7, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 638.278, + "y": 382.731, + "index": 8, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 629.151, + "y": 376.431, + "index": 9, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 621.798, + "y": 368.131, + "index": 10, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 616.644, + "y": 358.312, + "index": 11, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 613.99, + "y": 347.545, + "index": 12, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 613.99, + "y": 336.455, + "index": 13, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 616.644, + "y": 325.688, + "index": 14, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 621.798, + "y": 315.869, + "index": 15, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 629.151, + "y": 307.569, + "index": 16, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 638.278, + "y": 301.269, + "index": 17, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 648.646, + "y": 297.337, + "index": 18, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 659.655, + "y": 296, + "index": 19, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 670.664, + "y": 297.337, + "index": 20, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 681.032, + "y": 301.269, + "index": 21, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 690.159, + "y": 307.569, + "index": 22, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 697.512, + "y": 315.869, + "index": 23, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 702.666, + "y": 325.688, + "index": 24, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 705.32, + "y": 336.455, + "index": 25, + "body": { + "#": 1293 + }, + "isInternal": false + }, + { + "x": 659.655, + "y": 342 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1329 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 1331 + }, + "max": { + "#": 1332 + } + }, + { + "x": 613.99, + "y": 296 + }, + { + "x": 705.32, + "y": 388 + }, + { + "x": 659.655, + "y": 342 + }, + [ + { + "#": 1335 + }, + { + "#": 1336 + }, + { + "#": 1337 + }, + { + "#": 1338 + }, + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + }, + { + "#": 1342 + }, + { + "#": 1343 + }, + { + "#": 1344 + }, + { + "#": 1345 + }, + { + "#": 1346 + }, + { + "#": 1347 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88543, + "y": -0.46476 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88543, + "y": -0.46476 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 48, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1349 + }, + "angle": 0, + "vertices": { + "#": 1350 + }, + "position": { + "#": 1355 + }, + "force": { + "#": 1356 + }, + "torque": 0, + "positionImpulse": { + "#": 1357 + }, + "constraintImpulse": { + "#": 1358 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1359 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1360 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1361 + }, + "bounds": { + "#": 1363 + }, + "positionPrev": { + "#": 1366 + }, + "anglePrev": 0, + "axes": { + "#": 1367 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 1348 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1348 + } + ], + [ + { + "#": 1351 + }, + { + "#": 1352 + }, + { + "#": 1353 + }, + { + "#": 1354 + } + ], + { + "x": 705.32, + "y": 296, + "index": 0, + "body": { + "#": 1348 + }, + "isInternal": false + }, + { + "x": 769.32, + "y": 296, + "index": 1, + "body": { + "#": 1348 + }, + "isInternal": false + }, + { + "x": 769.32, + "y": 360, + "index": 2, + "body": { + "#": 1348 + }, + "isInternal": false + }, + { + "x": 705.32, + "y": 360, + "index": 3, + "body": { + "#": 1348 + }, + "isInternal": false + }, + { + "x": 737.32, + "y": 328 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1362 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#556270" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 1364 + }, + "max": { + "#": 1365 + } + }, + { + "x": 705.32, + "y": 296 + }, + { + "x": 769.32, + "y": 360 + }, + { + "x": 737.32, + "y": 328 + }, + [ + { + "#": 1368 + }, + { + "#": 1369 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 1374 + }, + "max": { + "#": 1375 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/sprites/sprites-10.json b/test/node/refs/sprites/sprites-10.json new file mode 100644 index 00000000..cba16a09 --- /dev/null +++ b/test/node/refs/sprites/sprites-10.json @@ -0,0 +1,13582 @@ +[ + { + "id": 21, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 94 + }, + "composites": { + "#": 95 + }, + "label": "World", + "gravity": { + "#": 1416 + }, + "bounds": { + "#": 1417 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + } + ], + { + "id": 4, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 41435.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -10.25, + "y": -35.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 810.25, + "y": -35.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 810.25, + "y": 15.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -10.25, + "y": 15.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -10 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": false, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -10.25, + "y": -35.25 + }, + { + "x": 810.25, + "y": 15.25 + }, + { + "x": 400, + "y": -10 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 41435.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -10.25, + "y": 584.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 810.25, + "y": 584.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 810.25, + "y": 635.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -10.25, + "y": 635.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 610 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": false, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -10.25, + "y": 584.75 + }, + { + "x": 810.25, + "y": 635.25 + }, + { + "x": 400, + "y": 610 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 31335.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 784.75, + "y": -10.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 835.25, + "y": -10.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 835.25, + "y": 610.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 784.75, + "y": 610.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 810, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": false, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 784.75, + "y": -10.25 + }, + { + "x": 835.25, + "y": 610.25 + }, + { + "x": 810, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 31335.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -35.25, + "y": -10.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 15.25, + "y": -10.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 15.25, + "y": 610.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -35.25, + "y": 610.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -10, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": false, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -35.25, + "y": -10.25 + }, + { + "x": 15.25, + "y": 610.25 + }, + { + "x": -10, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + [], + [ + { + "#": 96 + } + ], + { + "id": 8, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 97 + }, + "constraints": { + "#": 1414 + }, + "composites": { + "#": 1415 + }, + "label": "Stack" + }, + [ + { + "#": 98 + }, + { + "#": 154 + }, + { + "#": 177 + }, + { + "#": 200 + }, + { + "#": 223 + }, + { + "#": 246 + }, + { + "#": 302 + }, + { + "#": 325 + }, + { + "#": 348 + }, + { + "#": 371 + }, + { + "#": 427 + }, + { + "#": 450 + }, + { + "#": 506 + }, + { + "#": 529 + }, + { + "#": 552 + }, + { + "#": 575 + }, + { + "#": 598 + }, + { + "#": 654 + }, + { + "#": 677 + }, + { + "#": 700 + }, + { + "#": 723 + }, + { + "#": 746 + }, + { + "#": 802 + }, + { + "#": 825 + }, + { + "#": 848 + }, + { + "#": 904 + }, + { + "#": 927 + }, + { + "#": 983 + }, + { + "#": 1006 + }, + { + "#": 1029 + }, + { + "#": 1052 + }, + { + "#": 1075 + }, + { + "#": 1131 + }, + { + "#": 1187 + }, + { + "#": 1210 + }, + { + "#": 1233 + }, + { + "#": 1256 + }, + { + "#": 1312 + }, + { + "#": 1335 + }, + { + "#": 1391 + } + ], + { + "id": 9, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 99 + }, + "angle": 0, + "vertices": { + "#": 100 + }, + "position": { + "#": 127 + }, + "force": { + "#": 128 + }, + "torque": 0, + "positionImpulse": { + "#": 129 + }, + "constraintImpulse": { + "#": 130 + }, + "totalContacts": 0, + "speed": 2.28566, + "angularSpeed": 0, + "velocity": { + "#": 131 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 132 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 133 + }, + "circleRadius": 46, + "bounds": { + "#": 135 + }, + "positionPrev": { + "#": 138 + }, + "anglePrev": 0, + "axes": { + "#": 139 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 98 + }, + "sleepCounter": 0, + "region": { + "#": 153 + } + }, + [ + { + "#": 98 + } + ], + [ + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + } + ], + { + "x": 111.33, + "y": 86.66231, + "index": 0, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 108.676, + "y": 97.42931, + "index": 1, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 103.522, + "y": 107.24831, + "index": 2, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 96.169, + "y": 115.54831, + "index": 3, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 87.042, + "y": 121.84831, + "index": 4, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 76.674, + "y": 125.78031, + "index": 5, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 65.665, + "y": 127.11731, + "index": 6, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 54.656, + "y": 125.78031, + "index": 7, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 44.288, + "y": 121.84831, + "index": 8, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 35.161, + "y": 115.54831, + "index": 9, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 27.808, + "y": 107.24831, + "index": 10, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 22.654, + "y": 97.42931, + "index": 11, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 20, + "y": 86.66231, + "index": 12, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 20, + "y": 75.57231, + "index": 13, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 22.654, + "y": 64.80531, + "index": 14, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 27.808, + "y": 54.98631, + "index": 15, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 35.161, + "y": 46.68631, + "index": 16, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 44.288, + "y": 40.38631, + "index": 17, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 54.656, + "y": 36.45431, + "index": 18, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 65.665, + "y": 35.11731, + "index": 19, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 76.674, + "y": 36.45431, + "index": 20, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 87.042, + "y": 40.38631, + "index": 21, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 96.169, + "y": 46.68631, + "index": 22, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 103.522, + "y": 54.98631, + "index": 23, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 108.676, + "y": 64.80531, + "index": 24, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 111.33, + "y": 75.57231, + "index": 25, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 65.665, + "y": 81.11731 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.28566 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 134 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 136 + }, + "max": { + "#": 137 + } + }, + { + "x": 20, + "y": 35.11731 + }, + { + "x": 111.33, + "y": 127.11731 + }, + { + "x": 65.665, + "y": 78.83165 + }, + [ + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + }, + { + "#": 152 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88543, + "y": -0.46476 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88543, + "y": -0.46476 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "0,2,0,2", + "startCol": 0, + "endCol": 2, + "startRow": 0, + "endRow": 2 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 155 + }, + "angle": 0, + "vertices": { + "#": 156 + }, + "position": { + "#": 161 + }, + "force": { + "#": 162 + }, + "torque": 0, + "positionImpulse": { + "#": 163 + }, + "constraintImpulse": { + "#": 164 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 165 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 166 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 167 + }, + "bounds": { + "#": 169 + }, + "positionPrev": { + "#": 172 + }, + "anglePrev": 0, + "axes": { + "#": 173 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 154 + }, + "sleepCounter": 0, + "region": { + "#": 176 + } + }, + [ + { + "#": 154 + } + ], + [ + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + }, + { + "#": 160 + } + ], + { + "x": 111.33, + "y": 37.73575, + "index": 0, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 175.33, + "y": 37.73575, + "index": 1, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 175.33, + "y": 101.73575, + "index": 2, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 111.33, + "y": 101.73575, + "index": 3, + "body": { + "#": 154 + }, + "isInternal": false + }, + { + "x": 143.33, + "y": 69.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 168 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#FF6B6B" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 170 + }, + "max": { + "#": 171 + } + }, + { + "x": 111.33, + "y": 37.73575 + }, + { + "x": 175.33, + "y": 101.73575 + }, + { + "x": 143.33, + "y": 66.82848 + }, + [ + { + "#": 174 + }, + { + "#": 175 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,0,2", + "startCol": 2, + "endCol": 3, + "startRow": 0, + "endRow": 2 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 178 + }, + "angle": 0, + "vertices": { + "#": 179 + }, + "position": { + "#": 184 + }, + "force": { + "#": 185 + }, + "torque": 0, + "positionImpulse": { + "#": 186 + }, + "constraintImpulse": { + "#": 187 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 188 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 189 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 190 + }, + "bounds": { + "#": 192 + }, + "positionPrev": { + "#": 195 + }, + "anglePrev": 0, + "axes": { + "#": 196 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 177 + }, + "sleepCounter": 0, + "region": { + "#": 199 + } + }, + [ + { + "#": 177 + } + ], + [ + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + } + ], + { + "x": 175.33, + "y": 37.73575, + "index": 0, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 239.33, + "y": 37.73575, + "index": 1, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 239.33, + "y": 101.73575, + "index": 2, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 175.33, + "y": 101.73575, + "index": 3, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 207.33, + "y": 69.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 191 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#556270" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 193 + }, + "max": { + "#": 194 + } + }, + { + "x": 175.33, + "y": 37.73575 + }, + { + "x": 239.33, + "y": 101.73575 + }, + { + "x": 207.33, + "y": 66.82848 + }, + [ + { + "#": 197 + }, + { + "#": 198 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,0,2", + "startCol": 3, + "endCol": 4, + "startRow": 0, + "endRow": 2 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 201 + }, + "angle": 0, + "vertices": { + "#": 202 + }, + "position": { + "#": 207 + }, + "force": { + "#": 208 + }, + "torque": 0, + "positionImpulse": { + "#": 209 + }, + "constraintImpulse": { + "#": 210 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 211 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 212 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 213 + }, + "bounds": { + "#": 215 + }, + "positionPrev": { + "#": 218 + }, + "anglePrev": 0, + "axes": { + "#": 219 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 200 + }, + "sleepCounter": 0, + "region": { + "#": 222 + } + }, + [ + { + "#": 200 + } + ], + [ + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + } + ], + { + "x": 239.33, + "y": 37.73575, + "index": 0, + "body": { + "#": 200 + }, + "isInternal": false + }, + { + "x": 303.33, + "y": 37.73575, + "index": 1, + "body": { + "#": 200 + }, + "isInternal": false + }, + { + "x": 303.33, + "y": 101.73575, + "index": 2, + "body": { + "#": 200 + }, + "isInternal": false + }, + { + "x": 239.33, + "y": 101.73575, + "index": 3, + "body": { + "#": 200 + }, + "isInternal": false + }, + { + "x": 271.33, + "y": 69.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 214 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#C44D58" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 216 + }, + "max": { + "#": 217 + } + }, + { + "x": 239.33, + "y": 37.73575 + }, + { + "x": 303.33, + "y": 101.73575 + }, + { + "x": 271.33, + "y": 66.82848 + }, + [ + { + "#": 220 + }, + { + "#": 221 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,6,0,2", + "startCol": 4, + "endCol": 6, + "startRow": 0, + "endRow": 2 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 224 + }, + "angle": 0, + "vertices": { + "#": 225 + }, + "position": { + "#": 230 + }, + "force": { + "#": 231 + }, + "torque": 0, + "positionImpulse": { + "#": 232 + }, + "constraintImpulse": { + "#": 233 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 234 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 235 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 236 + }, + "bounds": { + "#": 238 + }, + "positionPrev": { + "#": 241 + }, + "anglePrev": 0, + "axes": { + "#": 242 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 223 + }, + "sleepCounter": 0, + "region": { + "#": 245 + } + }, + [ + { + "#": 223 + } + ], + [ + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + } + ], + { + "x": 303.33, + "y": 37.73575, + "index": 0, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 367.33, + "y": 37.73575, + "index": 1, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 367.33, + "y": 101.73575, + "index": 2, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 303.33, + "y": 101.73575, + "index": 3, + "body": { + "#": 223 + }, + "isInternal": false + }, + { + "x": 335.33, + "y": 69.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 237 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#C7F464" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 239 + }, + "max": { + "#": 240 + } + }, + { + "x": 303.33, + "y": 37.73575 + }, + { + "x": 367.33, + "y": 101.73575 + }, + { + "x": 335.33, + "y": 66.82848 + }, + [ + { + "#": 243 + }, + { + "#": 244 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,0,2", + "startCol": 6, + "endCol": 7, + "startRow": 0, + "endRow": 2 + }, + { + "id": 14, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 247 + }, + "angle": 0, + "vertices": { + "#": 248 + }, + "position": { + "#": 275 + }, + "force": { + "#": 276 + }, + "torque": 0, + "positionImpulse": { + "#": 277 + }, + "constraintImpulse": { + "#": 278 + }, + "totalContacts": 0, + "speed": 2.28566, + "angularSpeed": 0, + "velocity": { + "#": 279 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 280 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 281 + }, + "circleRadius": 46, + "bounds": { + "#": 283 + }, + "positionPrev": { + "#": 286 + }, + "anglePrev": 0, + "axes": { + "#": 287 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 246 + }, + "sleepCounter": 0, + "region": { + "#": 301 + } + }, + [ + { + "#": 246 + } + ], + [ + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + } + ], + { + "x": 458.66, + "y": 86.66231, + "index": 0, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 456.006, + "y": 97.42931, + "index": 1, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 450.852, + "y": 107.24831, + "index": 2, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 443.499, + "y": 115.54831, + "index": 3, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 434.372, + "y": 121.84831, + "index": 4, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 424.004, + "y": 125.78031, + "index": 5, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 412.995, + "y": 127.11731, + "index": 6, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 401.986, + "y": 125.78031, + "index": 7, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 391.618, + "y": 121.84831, + "index": 8, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 382.491, + "y": 115.54831, + "index": 9, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 375.138, + "y": 107.24831, + "index": 10, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 369.984, + "y": 97.42931, + "index": 11, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 367.33, + "y": 86.66231, + "index": 12, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 367.33, + "y": 75.57231, + "index": 13, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 369.984, + "y": 64.80531, + "index": 14, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 375.138, + "y": 54.98631, + "index": 15, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 382.491, + "y": 46.68631, + "index": 16, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 391.618, + "y": 40.38631, + "index": 17, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 401.986, + "y": 36.45431, + "index": 18, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 412.995, + "y": 35.11731, + "index": 19, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 424.004, + "y": 36.45431, + "index": 20, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 434.372, + "y": 40.38631, + "index": 21, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 443.499, + "y": 46.68631, + "index": 22, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 450.852, + "y": 54.98631, + "index": 23, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 456.006, + "y": 64.80531, + "index": 24, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 458.66, + "y": 75.57231, + "index": 25, + "body": { + "#": 246 + }, + "isInternal": false + }, + { + "x": 412.995, + "y": 81.11731 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.28566 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 282 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 284 + }, + "max": { + "#": 285 + } + }, + { + "x": 367.33, + "y": 35.11731 + }, + { + "x": 458.66, + "y": 127.11731 + }, + { + "x": 412.995, + "y": 78.83165 + }, + [ + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88543, + "y": -0.46476 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88543, + "y": -0.46476 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,9,0,2", + "startCol": 7, + "endCol": 9, + "startRow": 0, + "endRow": 2 + }, + { + "id": 15, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 303 + }, + "angle": 0, + "vertices": { + "#": 304 + }, + "position": { + "#": 309 + }, + "force": { + "#": 310 + }, + "torque": 0, + "positionImpulse": { + "#": 311 + }, + "constraintImpulse": { + "#": 312 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 313 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 314 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 315 + }, + "bounds": { + "#": 317 + }, + "positionPrev": { + "#": 320 + }, + "anglePrev": 0, + "axes": { + "#": 321 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 302 + }, + "sleepCounter": 0, + "region": { + "#": 324 + } + }, + [ + { + "#": 302 + } + ], + [ + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + } + ], + { + "x": 458.66, + "y": 37.73575, + "index": 0, + "body": { + "#": 302 + }, + "isInternal": false + }, + { + "x": 522.66, + "y": 37.73575, + "index": 1, + "body": { + "#": 302 + }, + "isInternal": false + }, + { + "x": 522.66, + "y": 101.73575, + "index": 2, + "body": { + "#": 302 + }, + "isInternal": false + }, + { + "x": 458.66, + "y": 101.73575, + "index": 3, + "body": { + "#": 302 + }, + "isInternal": false + }, + { + "x": 490.66, + "y": 69.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 316 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#4ECDC4" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 318 + }, + "max": { + "#": 319 + } + }, + { + "x": 458.66, + "y": 37.73575 + }, + { + "x": 522.66, + "y": 101.73575 + }, + { + "x": 490.66, + "y": 66.82848 + }, + [ + { + "#": 322 + }, + { + "#": 323 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,0,2", + "startCol": 9, + "endCol": 10, + "startRow": 0, + "endRow": 2 + }, + { + "id": 16, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 326 + }, + "angle": 0, + "vertices": { + "#": 327 + }, + "position": { + "#": 332 + }, + "force": { + "#": 333 + }, + "torque": 0, + "positionImpulse": { + "#": 334 + }, + "constraintImpulse": { + "#": 335 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 336 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 337 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 338 + }, + "bounds": { + "#": 340 + }, + "positionPrev": { + "#": 343 + }, + "anglePrev": 0, + "axes": { + "#": 344 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 325 + }, + "sleepCounter": 0, + "region": { + "#": 347 + } + }, + [ + { + "#": 325 + } + ], + [ + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + } + ], + { + "x": 522.66, + "y": 37.73575, + "index": 0, + "body": { + "#": 325 + }, + "isInternal": false + }, + { + "x": 586.66, + "y": 37.73575, + "index": 1, + "body": { + "#": 325 + }, + "isInternal": false + }, + { + "x": 586.66, + "y": 101.73575, + "index": 2, + "body": { + "#": 325 + }, + "isInternal": false + }, + { + "x": 522.66, + "y": 101.73575, + "index": 3, + "body": { + "#": 325 + }, + "isInternal": false + }, + { + "x": 554.66, + "y": 69.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 339 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#556270" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 341 + }, + "max": { + "#": 342 + } + }, + { + "x": 522.66, + "y": 37.73575 + }, + { + "x": 586.66, + "y": 101.73575 + }, + { + "x": 554.66, + "y": 66.82848 + }, + [ + { + "#": 345 + }, + { + "#": 346 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,12,0,2", + "startCol": 10, + "endCol": 12, + "startRow": 0, + "endRow": 2 + }, + { + "id": 17, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 349 + }, + "angle": 0, + "vertices": { + "#": 350 + }, + "position": { + "#": 355 + }, + "force": { + "#": 356 + }, + "torque": 0, + "positionImpulse": { + "#": 357 + }, + "constraintImpulse": { + "#": 358 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 359 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 360 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 361 + }, + "bounds": { + "#": 363 + }, + "positionPrev": { + "#": 366 + }, + "anglePrev": 0, + "axes": { + "#": 367 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 348 + }, + "sleepCounter": 0, + "region": { + "#": 370 + } + }, + [ + { + "#": 348 + } + ], + [ + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + } + ], + { + "x": 586.66, + "y": 37.73575, + "index": 0, + "body": { + "#": 348 + }, + "isInternal": false + }, + { + "x": 650.66, + "y": 37.73575, + "index": 1, + "body": { + "#": 348 + }, + "isInternal": false + }, + { + "x": 650.66, + "y": 101.73575, + "index": 2, + "body": { + "#": 348 + }, + "isInternal": false + }, + { + "x": 586.66, + "y": 101.73575, + "index": 3, + "body": { + "#": 348 + }, + "isInternal": false + }, + { + "x": 618.66, + "y": 69.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 362 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#556270" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 364 + }, + "max": { + "#": 365 + } + }, + { + "x": 586.66, + "y": 37.73575 + }, + { + "x": 650.66, + "y": 101.73575 + }, + { + "x": 618.66, + "y": 66.82848 + }, + [ + { + "#": 368 + }, + { + "#": 369 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,0,2", + "startCol": 12, + "endCol": 13, + "startRow": 0, + "endRow": 2 + }, + { + "id": 18, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 372 + }, + "angle": 0, + "vertices": { + "#": 373 + }, + "position": { + "#": 400 + }, + "force": { + "#": 401 + }, + "torque": 0, + "positionImpulse": { + "#": 402 + }, + "constraintImpulse": { + "#": 403 + }, + "totalContacts": 0, + "speed": 2.28566, + "angularSpeed": 0, + "velocity": { + "#": 404 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 405 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 406 + }, + "circleRadius": 46, + "bounds": { + "#": 408 + }, + "positionPrev": { + "#": 411 + }, + "anglePrev": 0, + "axes": { + "#": 412 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 371 + }, + "sleepCounter": 0, + "region": { + "#": 426 + } + }, + [ + { + "#": 371 + } + ], + [ + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + } + ], + { + "x": 741.99, + "y": 86.66231, + "index": 0, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 739.336, + "y": 97.42931, + "index": 1, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 734.182, + "y": 107.24831, + "index": 2, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 726.829, + "y": 115.54831, + "index": 3, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 717.702, + "y": 121.84831, + "index": 4, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 707.334, + "y": 125.78031, + "index": 5, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 696.325, + "y": 127.11731, + "index": 6, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 685.316, + "y": 125.78031, + "index": 7, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 674.948, + "y": 121.84831, + "index": 8, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 665.821, + "y": 115.54831, + "index": 9, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 658.468, + "y": 107.24831, + "index": 10, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 653.314, + "y": 97.42931, + "index": 11, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 650.66, + "y": 86.66231, + "index": 12, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 650.66, + "y": 75.57231, + "index": 13, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 653.314, + "y": 64.80531, + "index": 14, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 658.468, + "y": 54.98631, + "index": 15, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 665.821, + "y": 46.68631, + "index": 16, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 674.948, + "y": 40.38631, + "index": 17, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 685.316, + "y": 36.45431, + "index": 18, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 696.325, + "y": 35.11731, + "index": 19, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 707.334, + "y": 36.45431, + "index": 20, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 717.702, + "y": 40.38631, + "index": 21, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 726.829, + "y": 46.68631, + "index": 22, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 734.182, + "y": 54.98631, + "index": 23, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 739.336, + "y": 64.80531, + "index": 24, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 741.99, + "y": 75.57231, + "index": 25, + "body": { + "#": 371 + }, + "isInternal": false + }, + { + "x": 696.325, + "y": 81.11731 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.28566 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 407 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 409 + }, + "max": { + "#": 410 + } + }, + { + "x": 650.66, + "y": 35.11731 + }, + { + "x": 741.99, + "y": 127.11731 + }, + { + "x": 696.325, + "y": 78.83165 + }, + [ + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + }, + { + "#": 418 + }, + { + "#": 419 + }, + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88543, + "y": -0.46476 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88543, + "y": -0.46476 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "13,15,0,2", + "startCol": 13, + "endCol": 15, + "startRow": 0, + "endRow": 2 + }, + { + "id": 19, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 428 + }, + "angle": 0.00013, + "vertices": { + "#": 429 + }, + "position": { + "#": 434 + }, + "force": { + "#": 435 + }, + "torque": 0, + "positionImpulse": { + "#": 436 + }, + "constraintImpulse": { + "#": 437 + }, + "totalContacts": 0, + "speed": 2.90128, + "angularSpeed": 0.00007, + "velocity": { + "#": 438 + }, + "angularVelocity": 0.00005, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 439 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 440 + }, + "bounds": { + "#": 442 + }, + "positionPrev": { + "#": 445 + }, + "anglePrev": 0.0001, + "axes": { + "#": 446 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 427 + }, + "sleepCounter": 0, + "region": { + "#": 449 + } + }, + [ + { + "#": 427 + } + ], + [ + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + } + ], + { + "x": 20.00177, + "y": 129.71938, + "index": 0, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 84.00177, + "y": 129.72779, + "index": 1, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 83.99336, + "y": 193.72779, + "index": 2, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 19.99336, + "y": 193.71938, + "index": 3, + "body": { + "#": 427 + }, + "isInternal": false + }, + { + "x": 51.99757, + "y": 161.72358 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.03782, + "y": 2.89039 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 441 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#FF6B6B" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 443 + }, + "max": { + "#": 444 + } + }, + { + "x": 19.97308, + "y": 129.71938 + }, + { + "x": 84.00177, + "y": 196.629 + }, + { + "x": 52.03568, + "y": 158.83475 + }, + [ + { + "#": 447 + }, + { + "#": 448 + } + ], + { + "x": -0.00013, + "y": 1 + }, + { + "x": -1, + "y": -0.00013 + }, + { + "id": "0,1,2,4", + "startCol": 0, + "endCol": 1, + "startRow": 2, + "endRow": 4 + }, + { + "id": 20, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 451 + }, + "angle": 0.00606, + "vertices": { + "#": 452 + }, + "position": { + "#": 479 + }, + "force": { + "#": 480 + }, + "torque": 0, + "positionImpulse": { + "#": 481 + }, + "constraintImpulse": { + "#": 482 + }, + "totalContacts": 0, + "speed": 2.45313, + "angularSpeed": 0.00163, + "velocity": { + "#": 483 + }, + "angularVelocity": 0.00199, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 484 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 485 + }, + "circleRadius": 46, + "bounds": { + "#": 487 + }, + "positionPrev": { + "#": 490 + }, + "anglePrev": 0.00409, + "axes": { + "#": 491 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 450 + }, + "sleepCounter": 0, + "region": { + "#": 505 + } + }, + [ + { + "#": 450 + } + ], + [ + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + }, + { + "#": 457 + }, + { + "#": 458 + }, + { + "#": 459 + }, + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + } + ], + { + "x": 175.27366, + "y": 179.66997, + "index": 0, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 172.55451, + "y": 190.4207, + "index": 1, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 167.34115, + "y": 200.20831, + "index": 2, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 159.93802, + "y": 208.46363, + "index": 3, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 150.77304, + "y": 214.70825, + "index": 4, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 140.38142, + "y": 218.5774, + "index": 5, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 129.36453, + "y": 219.84771, + "index": 6, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 118.36383, + "y": 218.44408, + "index": 7, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 108.01983, + "y": 214.44937, + "index": 8, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 98.93114, + "y": 208.09422, + "index": 9, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 91.62853, + "y": 199.74985, + "index": 10, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 86.53409, + "y": 189.89982, + "index": 11, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 83.94533, + "y": 179.11695, + "index": 12, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 84.01248, + "y": 168.02715, + "index": 13, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 86.73163, + "y": 157.27642, + "index": 14, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 91.94499, + "y": 147.48881, + "index": 15, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 99.34811, + "y": 139.23348, + "index": 16, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 108.51309, + "y": 132.98886, + "index": 17, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 118.90471, + "y": 129.11972, + "index": 18, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 129.92161, + "y": 127.8494, + "index": 19, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 140.92231, + "y": 129.25304, + "index": 20, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 151.26631, + "y": 133.24775, + "index": 21, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 160.355, + "y": 139.6029, + "index": 22, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 167.6576, + "y": 147.94727, + "index": 23, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 172.75205, + "y": 157.7973, + "index": 24, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 175.34081, + "y": 168.58017, + "index": 25, + "body": { + "#": 450 + }, + "isInternal": false + }, + { + "x": 129.64307, + "y": 173.84856 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.02868, + "y": 2.50653 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 486 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 488 + }, + "max": { + "#": 489 + } + }, + { + "x": 83.92329, + "y": 127.8494 + }, + { + "x": 175.34081, + "y": 222.30074 + }, + { + "x": 129.67139, + "y": 171.3401 + }, + [ + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + }, + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + } + ], + { + "x": -0.96947, + "y": -0.24521 + }, + { + "x": -0.8826, + "y": -0.47012 + }, + { + "x": -0.74449, + "y": -0.66763 + }, + { + "x": -0.56308, + "y": -0.8264 + }, + { + "x": -0.34893, + "y": -0.93715 + }, + { + "x": -0.11455, + "y": -0.99342 + }, + { + "x": 0.12657, + "y": -0.99196 + }, + { + "x": 0.36026, + "y": -0.93285 + }, + { + "x": 0.57304, + "y": -0.81953 + }, + { + "x": 0.75252, + "y": -0.65857 + }, + { + "x": 0.88823, + "y": -0.45939 + }, + { + "x": 0.97237, + "y": -0.23345 + }, + { + "x": 0.99998, + "y": 0.00606 + }, + { + "id": "1,3,2,4", + "startCol": 1, + "endCol": 3, + "startRow": 2, + "endRow": 4 + }, + { + "id": 21, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 507 + }, + "angle": 0.00542, + "vertices": { + "#": 508 + }, + "position": { + "#": 513 + }, + "force": { + "#": 514 + }, + "torque": 0, + "positionImpulse": { + "#": 515 + }, + "constraintImpulse": { + "#": 516 + }, + "totalContacts": 0, + "speed": 2.7696, + "angularSpeed": 0.00143, + "velocity": { + "#": 517 + }, + "angularVelocity": 0.00167, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 518 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 519 + }, + "bounds": { + "#": 521 + }, + "positionPrev": { + "#": 524 + }, + "anglePrev": 0.00377, + "axes": { + "#": 525 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 506 + }, + "sleepCounter": 0, + "region": { + "#": 528 + } + }, + [ + { + "#": 506 + } + ], + [ + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + } + ], + { + "x": 175.50534, + "y": 129.04863, + "index": 0, + "body": { + "#": 506 + }, + "isInternal": false + }, + { + "x": 239.50439, + "y": 129.39565, + "index": 1, + "body": { + "#": 506 + }, + "isInternal": false + }, + { + "x": 239.15738, + "y": 193.39471, + "index": 2, + "body": { + "#": 506 + }, + "isInternal": false + }, + { + "x": 175.15832, + "y": 193.04769, + "index": 3, + "body": { + "#": 506 + }, + "isInternal": false + }, + { + "x": 207.33136, + "y": 161.22167 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00772, + "y": 2.73741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 520 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#C7F464" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 522 + }, + "max": { + "#": 523 + } + }, + { + "x": 175.15211, + "y": 129.04863 + }, + { + "x": 239.50439, + "y": 196.1643 + }, + { + "x": 207.34072, + "y": 158.48431 + }, + [ + { + "#": 526 + }, + { + "#": 527 + } + ], + { + "x": -0.00542, + "y": 0.99999 + }, + { + "x": -0.99999, + "y": -0.00542 + }, + { + "id": "3,4,2,4", + "startCol": 3, + "endCol": 4, + "startRow": 2, + "endRow": 4 + }, + { + "id": 22, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 530 + }, + "angle": 0.00187, + "vertices": { + "#": 531 + }, + "position": { + "#": 536 + }, + "force": { + "#": 537 + }, + "torque": 0, + "positionImpulse": { + "#": 538 + }, + "constraintImpulse": { + "#": 539 + }, + "totalContacts": 0, + "speed": 2.87327, + "angularSpeed": 0.00058, + "velocity": { + "#": 540 + }, + "angularVelocity": 0.00074, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 541 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 542 + }, + "bounds": { + "#": 544 + }, + "positionPrev": { + "#": 547 + }, + "anglePrev": 0.00115, + "axes": { + "#": 548 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 529 + }, + "sleepCounter": 0, + "region": { + "#": 551 + } + }, + [ + { + "#": 529 + } + ], + [ + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + } + ], + { + "x": 239.45345, + "y": 129.5874, + "index": 0, + "body": { + "#": 529 + }, + "isInternal": false + }, + { + "x": 303.45333, + "y": 129.70697, + "index": 1, + "body": { + "#": 529 + }, + "isInternal": false + }, + { + "x": 303.33376, + "y": 193.70686, + "index": 2, + "body": { + "#": 529 + }, + "isInternal": false + }, + { + "x": 239.33387, + "y": 193.58728, + "index": 3, + "body": { + "#": 529 + }, + "isInternal": false + }, + { + "x": 271.3936, + "y": 161.64713 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00022, + "y": 0.00001 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01892, + "y": 2.86197 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 543 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#C44D58" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 545 + }, + "max": { + "#": 546 + } + }, + { + "x": 239.33387, + "y": 129.5874 + }, + { + "x": 303.47032, + "y": 196.58008 + }, + { + "x": 271.37602, + "y": 158.78513 + }, + [ + { + "#": 549 + }, + { + "#": 550 + } + ], + { + "x": -0.00187, + "y": 1 + }, + { + "x": -1, + "y": -0.00187 + }, + { + "id": "4,6,2,4", + "startCol": 4, + "endCol": 6, + "startRow": 2, + "endRow": 4 + }, + { + "id": 23, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 553 + }, + "angle": 0.00079, + "vertices": { + "#": 554 + }, + "position": { + "#": 559 + }, + "force": { + "#": 560 + }, + "torque": 0, + "positionImpulse": { + "#": 561 + }, + "constraintImpulse": { + "#": 562 + }, + "totalContacts": 0, + "speed": 2.90206, + "angularSpeed": 0.00028, + "velocity": { + "#": 563 + }, + "angularVelocity": 0.00035, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 564 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 565 + }, + "bounds": { + "#": 567 + }, + "positionPrev": { + "#": 570 + }, + "anglePrev": 0.00046, + "axes": { + "#": 571 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 552 + }, + "sleepCounter": 0, + "region": { + "#": 574 + } + }, + [ + { + "#": 552 + } + ], + [ + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + } + ], + { + "x": 303.40342, + "y": 129.70618, + "index": 0, + "body": { + "#": 552 + }, + "isInternal": false + }, + { + "x": 367.4034, + "y": 129.75679, + "index": 1, + "body": { + "#": 552 + }, + "isInternal": false + }, + { + "x": 367.35279, + "y": 193.75677, + "index": 2, + "body": { + "#": 552 + }, + "isInternal": false + }, + { + "x": 303.35281, + "y": 193.70616, + "index": 3, + "body": { + "#": 552 + }, + "isInternal": false + }, + { + "x": 335.3781, + "y": 161.73147 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00213, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02949, + "y": 2.89645 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 566 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#556270" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 568 + }, + "max": { + "#": 569 + } + }, + { + "x": 303.35281, + "y": 129.70618 + }, + { + "x": 367.42699, + "y": 196.65874 + }, + { + "x": 335.34995, + "y": 158.8353 + }, + [ + { + "#": 572 + }, + { + "#": 573 + } + ], + { + "x": -0.00079, + "y": 1 + }, + { + "x": -1, + "y": -0.00079 + }, + { + "id": "6,7,2,4", + "startCol": 6, + "endCol": 7, + "startRow": 2, + "endRow": 4 + }, + { + "id": 24, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 576 + }, + "angle": 0.0001, + "vertices": { + "#": 577 + }, + "position": { + "#": 582 + }, + "force": { + "#": 583 + }, + "torque": 0, + "positionImpulse": { + "#": 584 + }, + "constraintImpulse": { + "#": 585 + }, + "totalContacts": 0, + "speed": 2.91365, + "angularSpeed": 0.0001, + "velocity": { + "#": 586 + }, + "angularVelocity": 0.00027, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 587 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 588 + }, + "bounds": { + "#": 590 + }, + "positionPrev": { + "#": 593 + }, + "anglePrev": -0.00015, + "axes": { + "#": 594 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 575 + }, + "sleepCounter": 0, + "region": { + "#": 597 + } + }, + [ + { + "#": 575 + } + ], + [ + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + } + ], + { + "x": 367.35358, + "y": 129.73886, + "index": 0, + "body": { + "#": 575 + }, + "isInternal": false + }, + { + "x": 431.35358, + "y": 129.74524, + "index": 1, + "body": { + "#": 575 + }, + "isInternal": false + }, + { + "x": 431.3472, + "y": 193.74524, + "index": 2, + "body": { + "#": 575 + }, + "isInternal": false + }, + { + "x": 367.3472, + "y": 193.73886, + "index": 3, + "body": { + "#": 575 + }, + "isInternal": false + }, + { + "x": 399.35039, + "y": 161.74205 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00764, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02715, + "y": 2.91435 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 589 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#C44D58" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 591 + }, + "max": { + "#": 592 + } + }, + { + "x": 367.3472, + "y": 129.73886 + }, + { + "x": 431.37588, + "y": 196.6588 + }, + { + "x": 399.32362, + "y": 158.82926 + }, + [ + { + "#": 595 + }, + { + "#": 596 + } + ], + { + "x": -0.0001, + "y": 1 + }, + { + "x": -1, + "y": -0.0001 + }, + { + "id": "7,8,2,4", + "startCol": 7, + "endCol": 8, + "startRow": 2, + "endRow": 4 + }, + { + "id": 25, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 599 + }, + "angle": 0, + "vertices": { + "#": 600 + }, + "position": { + "#": 627 + }, + "force": { + "#": 628 + }, + "torque": 0, + "positionImpulse": { + "#": 629 + }, + "constraintImpulse": { + "#": 630 + }, + "totalContacts": 0, + "speed": 2.28566, + "angularSpeed": 0, + "velocity": { + "#": 631 + }, + "angularVelocity": -0.00006, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 632 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 633 + }, + "circleRadius": 46, + "bounds": { + "#": 635 + }, + "positionPrev": { + "#": 638 + }, + "anglePrev": 0.00008, + "axes": { + "#": 639 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 598 + }, + "sleepCounter": 0, + "region": { + "#": 653 + } + }, + [ + { + "#": 598 + } + ], + [ + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + } + ], + { + "x": 522.62996, + "y": 178.66231, + "index": 0, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 519.97596, + "y": 189.42931, + "index": 1, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 514.82196, + "y": 199.24831, + "index": 2, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 507.46896, + "y": 207.54831, + "index": 3, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 498.34196, + "y": 213.84831, + "index": 4, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 487.97396, + "y": 217.78031, + "index": 5, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 476.96496, + "y": 219.11731, + "index": 6, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 465.95596, + "y": 217.78031, + "index": 7, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 455.58796, + "y": 213.84831, + "index": 8, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 446.46096, + "y": 207.54831, + "index": 9, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 439.10796, + "y": 199.24831, + "index": 10, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 433.95396, + "y": 189.42931, + "index": 11, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 431.29996, + "y": 178.66231, + "index": 12, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 431.29996, + "y": 167.57231, + "index": 13, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 433.95396, + "y": 156.80531, + "index": 14, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 439.10796, + "y": 146.98631, + "index": 15, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 446.46096, + "y": 138.68631, + "index": 16, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 455.58796, + "y": 132.38631, + "index": 17, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 465.95596, + "y": 128.45431, + "index": 18, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 476.96496, + "y": 127.11731, + "index": 19, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 487.97396, + "y": 128.45431, + "index": 20, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 498.34196, + "y": 132.38631, + "index": 21, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 507.46896, + "y": 138.68631, + "index": 22, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 514.82196, + "y": 146.98631, + "index": 23, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 519.97596, + "y": 156.80531, + "index": 24, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 522.62996, + "y": 167.57231, + "index": 25, + "body": { + "#": 598 + }, + "isInternal": false + }, + { + "x": 476.96496, + "y": 173.11731 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.02349, + "y": 2.29148 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 634 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 636 + }, + "max": { + "#": 637 + } + }, + { + "x": 431.29996, + "y": 127.11731 + }, + { + "x": 522.62996, + "y": 221.40296 + }, + { + "x": 476.94099, + "y": 170.82388 + }, + [ + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88543, + "y": -0.46476 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88543, + "y": -0.46476 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,10,2,4", + "startCol": 8, + "endCol": 10, + "startRow": 2, + "endRow": 4 + }, + { + "id": 26, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 655 + }, + "angle": 0, + "vertices": { + "#": 656 + }, + "position": { + "#": 661 + }, + "force": { + "#": 662 + }, + "torque": 0, + "positionImpulse": { + "#": 663 + }, + "constraintImpulse": { + "#": 664 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 665 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 666 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 667 + }, + "bounds": { + "#": 669 + }, + "positionPrev": { + "#": 672 + }, + "anglePrev": 0, + "axes": { + "#": 673 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 654 + }, + "sleepCounter": 0, + "region": { + "#": 676 + } + }, + [ + { + "#": 654 + } + ], + [ + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + } + ], + { + "x": 522.66, + "y": 129.73575, + "index": 0, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 586.66, + "y": 129.73575, + "index": 1, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 586.66, + "y": 193.73575, + "index": 2, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 522.66, + "y": 193.73575, + "index": 3, + "body": { + "#": 654 + }, + "isInternal": false + }, + { + "x": 554.66, + "y": 161.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 668 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#4ECDC4" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 670 + }, + "max": { + "#": 671 + } + }, + { + "x": 522.66, + "y": 129.73575 + }, + { + "x": 586.66, + "y": 193.73575 + }, + { + "x": 554.66, + "y": 158.82848 + }, + [ + { + "#": 674 + }, + { + "#": 675 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,12,2,4", + "startCol": 10, + "endCol": 12, + "startRow": 2, + "endRow": 4 + }, + { + "id": 27, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 678 + }, + "angle": 0, + "vertices": { + "#": 679 + }, + "position": { + "#": 684 + }, + "force": { + "#": 685 + }, + "torque": 0, + "positionImpulse": { + "#": 686 + }, + "constraintImpulse": { + "#": 687 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 688 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 689 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 690 + }, + "bounds": { + "#": 692 + }, + "positionPrev": { + "#": 695 + }, + "anglePrev": 0, + "axes": { + "#": 696 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 677 + }, + "sleepCounter": 0, + "region": { + "#": 699 + } + }, + [ + { + "#": 677 + } + ], + [ + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + } + ], + { + "x": 586.66, + "y": 129.73575, + "index": 0, + "body": { + "#": 677 + }, + "isInternal": false + }, + { + "x": 650.66, + "y": 129.73575, + "index": 1, + "body": { + "#": 677 + }, + "isInternal": false + }, + { + "x": 650.66, + "y": 193.73575, + "index": 2, + "body": { + "#": 677 + }, + "isInternal": false + }, + { + "x": 586.66, + "y": 193.73575, + "index": 3, + "body": { + "#": 677 + }, + "isInternal": false + }, + { + "x": 618.66, + "y": 161.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 691 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#556270" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 693 + }, + "max": { + "#": 694 + } + }, + { + "x": 586.66, + "y": 129.73575 + }, + { + "x": 650.66, + "y": 193.73575 + }, + { + "x": 618.66, + "y": 158.82848 + }, + [ + { + "#": 697 + }, + { + "#": 698 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,2,4", + "startCol": 12, + "endCol": 13, + "startRow": 2, + "endRow": 4 + }, + { + "id": 28, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 701 + }, + "angle": 0, + "vertices": { + "#": 702 + }, + "position": { + "#": 707 + }, + "force": { + "#": 708 + }, + "torque": 0, + "positionImpulse": { + "#": 709 + }, + "constraintImpulse": { + "#": 710 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 711 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 712 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 713 + }, + "bounds": { + "#": 715 + }, + "positionPrev": { + "#": 718 + }, + "anglePrev": 0, + "axes": { + "#": 719 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 700 + }, + "sleepCounter": 0, + "region": { + "#": 722 + } + }, + [ + { + "#": 700 + } + ], + [ + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + } + ], + { + "x": 650.66, + "y": 129.73575, + "index": 0, + "body": { + "#": 700 + }, + "isInternal": false + }, + { + "x": 714.66, + "y": 129.73575, + "index": 1, + "body": { + "#": 700 + }, + "isInternal": false + }, + { + "x": 714.66, + "y": 193.73575, + "index": 2, + "body": { + "#": 700 + }, + "isInternal": false + }, + { + "x": 650.66, + "y": 193.73575, + "index": 3, + "body": { + "#": 700 + }, + "isInternal": false + }, + { + "x": 682.66, + "y": 161.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 714 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#FF6B6B" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 716 + }, + "max": { + "#": 717 + } + }, + { + "x": 650.66, + "y": 129.73575 + }, + { + "x": 714.66, + "y": 193.73575 + }, + { + "x": 682.66, + "y": 158.82848 + }, + [ + { + "#": 720 + }, + { + "#": 721 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,2,4", + "startCol": 13, + "endCol": 14, + "startRow": 2, + "endRow": 4 + }, + { + "id": 29, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 724 + }, + "angle": -0.00564, + "vertices": { + "#": 725 + }, + "position": { + "#": 730 + }, + "force": { + "#": 731 + }, + "torque": 0, + "positionImpulse": { + "#": 732 + }, + "constraintImpulse": { + "#": 733 + }, + "totalContacts": 0, + "speed": 2.74557, + "angularSpeed": 0.00157, + "velocity": { + "#": 734 + }, + "angularVelocity": -0.00191, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 735 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 736 + }, + "bounds": { + "#": 738 + }, + "positionPrev": { + "#": 741 + }, + "anglePrev": -0.00372, + "axes": { + "#": 742 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 723 + }, + "sleepCounter": 0, + "region": { + "#": 745 + } + }, + [ + { + "#": 723 + } + ], + [ + { + "#": 726 + }, + { + "#": 727 + }, + { + "#": 728 + }, + { + "#": 729 + } + ], + { + "x": 19.65601, + "y": 221.34457, + "index": 0, + "body": { + "#": 723 + }, + "isInternal": false + }, + { + "x": 83.65499, + "y": 220.98384, + "index": 1, + "body": { + "#": 723 + }, + "isInternal": false + }, + { + "x": 84.01572, + "y": 284.98283, + "index": 2, + "body": { + "#": 723 + }, + "isInternal": false + }, + { + "x": 20.01674, + "y": 285.34355, + "index": 3, + "body": { + "#": 723 + }, + "isInternal": false + }, + { + "x": 51.83586, + "y": 253.1637 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00018, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.07614, + "y": 2.70664 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 737 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#C7F464" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 739 + }, + "max": { + "#": 740 + } + }, + { + "x": 19.59705, + "y": 220.98384 + }, + { + "x": 84.01572, + "y": 288.08849 + }, + { + "x": 51.91298, + "y": 250.45845 + }, + [ + { + "#": 743 + }, + { + "#": 744 + } + ], + { + "x": 0.00564, + "y": 0.99998 + }, + { + "x": -0.99998, + "y": 0.00564 + }, + { + "id": "0,1,4,5", + "startCol": 0, + "endCol": 1, + "startRow": 4, + "endRow": 5 + }, + { + "id": 30, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 747 + }, + "angle": -0.00454, + "vertices": { + "#": 748 + }, + "position": { + "#": 775 + }, + "force": { + "#": 776 + }, + "torque": 0, + "positionImpulse": { + "#": 777 + }, + "constraintImpulse": { + "#": 778 + }, + "totalContacts": 0, + "speed": 2.45267, + "angularSpeed": 0.00115, + "velocity": { + "#": 779 + }, + "angularVelocity": -0.00135, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 780 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 781 + }, + "circleRadius": 46, + "bounds": { + "#": 783 + }, + "positionPrev": { + "#": 786 + }, + "anglePrev": -0.00317, + "axes": { + "#": 787 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 746 + }, + "sleepCounter": 0, + "region": { + "#": 801 + } + }, + [ + { + "#": 746 + } + ], + [ + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + }, + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + }, + { + "#": 765 + }, + { + "#": 766 + }, + { + "#": 767 + }, + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + }, + { + "#": 774 + } + ], + { + "x": 175.21902, + "y": 271.12927, + "index": 0, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 172.61395, + "y": 281.90821, + "index": 1, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 167.5046, + "y": 291.75052, + "index": 2, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 160.18938, + "y": 300.08383, + "index": 3, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 151.09108, + "y": 306.42521, + "index": 4, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 140.74105, + "y": 310.40426, + "index": 5, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 129.73823, + "y": 311.79125, + "index": 6, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 118.72328, + "y": 310.50426, + "index": 7, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 108.33752, + "y": 306.6194, + "index": 8, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 99.182, + "y": 300.36091, + "index": 9, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 91.79138, + "y": 292.09439, + "index": 10, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 86.59284, + "y": 282.2989, + "index": 11, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 83.88997, + "y": 271.54407, + "index": 12, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 83.8396, + "y": 260.45418, + "index": 13, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 86.44467, + "y": 249.67524, + "index": 14, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 91.55402, + "y": 239.83293, + "index": 15, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 98.86925, + "y": 231.49962, + "index": 16, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 107.96754, + "y": 225.15824, + "index": 17, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 118.31757, + "y": 221.17919, + "index": 18, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 129.32039, + "y": 219.7922, + "index": 19, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 140.33535, + "y": 221.07918, + "index": 20, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 150.7211, + "y": 224.96405, + "index": 21, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 159.87662, + "y": 231.22254, + "index": 22, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 167.26724, + "y": 239.48905, + "index": 23, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 172.46578, + "y": 249.28454, + "index": 24, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 175.16866, + "y": 260.03938, + "index": 25, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 129.52931, + "y": 265.79172 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00037, + "y": 0.00183 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.05418, + "y": 2.50228 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 782 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 784 + }, + "max": { + "#": 785 + } + }, + { + "x": 83.80242, + "y": 219.7922 + }, + { + "x": 175.21902, + "y": 314.24364 + }, + { + "x": 129.58228, + "y": 263.28772 + }, + [ + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + } + ], + { + "x": -0.97202, + "y": -0.23492 + }, + { + "x": -0.88754, + "y": -0.46074 + }, + { + "x": -0.75152, + "y": -0.65971 + }, + { + "x": -0.5718, + "y": -0.82039 + }, + { + "x": -0.35884, + "y": -0.9334 + }, + { + "x": -0.12507, + "y": -0.99215 + }, + { + "x": 0.11605, + "y": -0.99324 + }, + { + "x": 0.35035, + "y": -0.93662 + }, + { + "x": 0.56433, + "y": -0.82555 + }, + { + "x": 0.7455, + "y": -0.66651 + }, + { + "x": 0.88331, + "y": -0.46878 + }, + { + "x": 0.96984, + "y": -0.24374 + }, + { + "x": 0.99999, + "y": -0.00454 + }, + { + "id": "1,3,4,6", + "startCol": 1, + "endCol": 3, + "startRow": 4, + "endRow": 6 + }, + { + "id": 31, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 803 + }, + "angle": 0, + "vertices": { + "#": 804 + }, + "position": { + "#": 809 + }, + "force": { + "#": 810 + }, + "torque": 0, + "positionImpulse": { + "#": 811 + }, + "constraintImpulse": { + "#": 812 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 813 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 814 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 815 + }, + "bounds": { + "#": 817 + }, + "positionPrev": { + "#": 820 + }, + "anglePrev": 0, + "axes": { + "#": 821 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 802 + }, + "sleepCounter": 0, + "region": { + "#": 824 + } + }, + [ + { + "#": 802 + } + ], + [ + { + "#": 805 + }, + { + "#": 806 + }, + { + "#": 807 + }, + { + "#": 808 + } + ], + { + "x": 175.33, + "y": 221.73575, + "index": 0, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 239.33, + "y": 221.73575, + "index": 1, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 239.33, + "y": 285.73575, + "index": 2, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 175.33, + "y": 285.73575, + "index": 3, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 207.33, + "y": 253.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 816 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#556270" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 818 + }, + "max": { + "#": 819 + } + }, + { + "x": 175.33, + "y": 221.73575 + }, + { + "x": 239.33, + "y": 285.73575 + }, + { + "x": 207.33, + "y": 250.82848 + }, + [ + { + "#": 822 + }, + { + "#": 823 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,4,5", + "startCol": 3, + "endCol": 4, + "startRow": 4, + "endRow": 5 + }, + { + "id": 32, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 826 + }, + "angle": 0, + "vertices": { + "#": 827 + }, + "position": { + "#": 832 + }, + "force": { + "#": 833 + }, + "torque": 0, + "positionImpulse": { + "#": 834 + }, + "constraintImpulse": { + "#": 835 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 836 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 837 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 838 + }, + "bounds": { + "#": 840 + }, + "positionPrev": { + "#": 843 + }, + "anglePrev": 0, + "axes": { + "#": 844 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 825 + }, + "sleepCounter": 0, + "region": { + "#": 847 + } + }, + [ + { + "#": 825 + } + ], + [ + { + "#": 828 + }, + { + "#": 829 + }, + { + "#": 830 + }, + { + "#": 831 + } + ], + { + "x": 239.33, + "y": 221.73575, + "index": 0, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 303.33, + "y": 221.73575, + "index": 1, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 303.33, + "y": 285.73575, + "index": 2, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 239.33, + "y": 285.73575, + "index": 3, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 271.33, + "y": 253.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 839 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#C7F464" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 841 + }, + "max": { + "#": 842 + } + }, + { + "x": 239.33, + "y": 221.73575 + }, + { + "x": 303.33, + "y": 285.73575 + }, + { + "x": 271.33, + "y": 250.82848 + }, + [ + { + "#": 845 + }, + { + "#": 846 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,6,4,5", + "startCol": 4, + "endCol": 6, + "startRow": 4, + "endRow": 5 + }, + { + "id": 33, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 849 + }, + "angle": 0, + "vertices": { + "#": 850 + }, + "position": { + "#": 877 + }, + "force": { + "#": 878 + }, + "torque": 0, + "positionImpulse": { + "#": 879 + }, + "constraintImpulse": { + "#": 880 + }, + "totalContacts": 0, + "speed": 2.28566, + "angularSpeed": 0, + "velocity": { + "#": 881 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 882 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 883 + }, + "circleRadius": 46, + "bounds": { + "#": 885 + }, + "positionPrev": { + "#": 888 + }, + "anglePrev": 0, + "axes": { + "#": 889 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 848 + }, + "sleepCounter": 0, + "region": { + "#": 903 + } + }, + [ + { + "#": 848 + } + ], + [ + { + "#": 851 + }, + { + "#": 852 + }, + { + "#": 853 + }, + { + "#": 854 + }, + { + "#": 855 + }, + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + }, + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + }, + { + "#": 865 + }, + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + }, + { + "#": 869 + }, + { + "#": 870 + }, + { + "#": 871 + }, + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + } + ], + { + "x": 394.66, + "y": 270.66231, + "index": 0, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 392.006, + "y": 281.42931, + "index": 1, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 386.852, + "y": 291.24831, + "index": 2, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 379.499, + "y": 299.54831, + "index": 3, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 370.372, + "y": 305.84831, + "index": 4, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 360.004, + "y": 309.78031, + "index": 5, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 348.995, + "y": 311.11731, + "index": 6, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 337.986, + "y": 309.78031, + "index": 7, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 327.618, + "y": 305.84831, + "index": 8, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 318.491, + "y": 299.54831, + "index": 9, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 311.138, + "y": 291.24831, + "index": 10, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 305.984, + "y": 281.42931, + "index": 11, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 303.33, + "y": 270.66231, + "index": 12, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 303.33, + "y": 259.57231, + "index": 13, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 305.984, + "y": 248.80531, + "index": 14, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 311.138, + "y": 238.98631, + "index": 15, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 318.491, + "y": 230.68631, + "index": 16, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 327.618, + "y": 224.38631, + "index": 17, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 337.986, + "y": 220.45431, + "index": 18, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 348.995, + "y": 219.11731, + "index": 19, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 360.004, + "y": 220.45431, + "index": 20, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 370.372, + "y": 224.38631, + "index": 21, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 379.499, + "y": 230.68631, + "index": 22, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 386.852, + "y": 238.98631, + "index": 23, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 392.006, + "y": 248.80531, + "index": 24, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 394.66, + "y": 259.57231, + "index": 25, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 348.995, + "y": 265.11731 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.28566 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 884 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 886 + }, + "max": { + "#": 887 + } + }, + { + "x": 303.33, + "y": 219.11731 + }, + { + "x": 394.66, + "y": 311.11731 + }, + { + "x": 348.995, + "y": 262.83165 + }, + [ + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + }, + { + "#": 894 + }, + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + }, + { + "#": 901 + }, + { + "#": 902 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88543, + "y": -0.46476 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88543, + "y": -0.46476 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,8,4,6", + "startCol": 6, + "endCol": 8, + "startRow": 4, + "endRow": 6 + }, + { + "id": 34, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 905 + }, + "angle": -0.00004, + "vertices": { + "#": 906 + }, + "position": { + "#": 911 + }, + "force": { + "#": 912 + }, + "torque": 0, + "positionImpulse": { + "#": 913 + }, + "constraintImpulse": { + "#": 914 + }, + "totalContacts": 0, + "speed": 2.889, + "angularSpeed": 0.00008, + "velocity": { + "#": 915 + }, + "angularVelocity": -0.0002, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 916 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 917 + }, + "bounds": { + "#": 919 + }, + "positionPrev": { + "#": 922 + }, + "anglePrev": 0.00018, + "axes": { + "#": 923 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 904 + }, + "sleepCounter": 0, + "region": { + "#": 926 + } + }, + [ + { + "#": 904 + } + ], + [ + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + }, + { + "#": 910 + } + ], + { + "x": 394.67607, + "y": 221.71263, + "index": 0, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 458.67607, + "y": 221.70995, + "index": 1, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 458.67875, + "y": 285.70995, + "index": 2, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 394.67875, + "y": 285.71263, + "index": 3, + "body": { + "#": 904 + }, + "isInternal": false + }, + { + "x": 426.67741, + "y": 253.71129 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.02628, + "y": 2.87501 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 918 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#4ECDC4" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 920 + }, + "max": { + "#": 921 + } + }, + { + "x": 394.65571, + "y": 221.70995 + }, + { + "x": 458.67875, + "y": 288.60155 + }, + { + "x": 426.70383, + "y": 250.83783 + }, + [ + { + "#": 924 + }, + { + "#": 925 + } + ], + { + "x": 0.00004, + "y": 1 + }, + { + "x": -1, + "y": 0.00004 + }, + { + "id": "8,9,4,5", + "startCol": 8, + "endCol": 9, + "startRow": 4, + "endRow": 5 + }, + { + "id": 35, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 928 + }, + "angle": 0.00523, + "vertices": { + "#": 929 + }, + "position": { + "#": 956 + }, + "force": { + "#": 957 + }, + "torque": 0, + "positionImpulse": { + "#": 958 + }, + "constraintImpulse": { + "#": 959 + }, + "totalContacts": 0, + "speed": 2.48423, + "angularSpeed": 0.00116, + "velocity": { + "#": 960 + }, + "angularVelocity": 0.00144, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 961 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 962 + }, + "circleRadius": 46, + "bounds": { + "#": 964 + }, + "positionPrev": { + "#": 967 + }, + "anglePrev": 0.00382, + "axes": { + "#": 968 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 927 + }, + "sleepCounter": 0, + "region": { + "#": 982 + } + }, + [ + { + "#": 927 + } + ], + [ + { + "#": 930 + }, + { + "#": 931 + }, + { + "#": 932 + }, + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + }, + { + "#": 943 + }, + { + "#": 944 + }, + { + "#": 945 + }, + { + "#": 946 + }, + { + "#": 947 + }, + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + } + ], + { + "x": 549.95684, + "y": 271.7022, + "index": 0, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 547.24654, + "y": 282.45516, + "index": 1, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 542.04123, + "y": 292.24706, + "index": 2, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 534.6449, + "y": 300.50847, + "index": 3, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 525.48506, + "y": 306.76062, + "index": 4, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 515.09663, + "y": 310.63832, + "index": 5, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 504.08078, + "y": 311.9177, + "index": 6, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 493.07893, + "y": 310.52311, + "index": 7, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 482.73164, + "y": 306.53691, + "index": 8, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 473.63773, + "y": 300.18924, + "index": 9, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 466.32826, + "y": 291.85088, + "index": 10, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 461.22571, + "y": 282.00504, + "index": 11, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 458.62809, + "y": 271.2243, + "index": 12, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 458.68612, + "y": 260.13446, + "index": 13, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 461.39642, + "y": 249.38149, + "index": 14, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 466.60173, + "y": 239.58959, + "index": 15, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 473.99806, + "y": 231.32818, + "index": 16, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 483.1579, + "y": 225.07603, + "index": 17, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 493.54633, + "y": 221.19833, + "index": 18, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 504.56218, + "y": 219.91895, + "index": 19, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 515.56403, + "y": 221.31354, + "index": 20, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 525.91132, + "y": 225.29974, + "index": 21, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 535.00522, + "y": 231.64741, + "index": 22, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 542.31469, + "y": 239.98577, + "index": 23, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 547.41724, + "y": 249.83161, + "index": 24, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 550.01487, + "y": 260.61235, + "index": 25, + "body": { + "#": 927 + }, + "isInternal": false + }, + { + "x": 504.32148, + "y": 265.91833 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00218, + "y": 0.01573 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.01537, + "y": 2.54573 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 963 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 965 + }, + "max": { + "#": 966 + } + }, + { + "x": 458.61765, + "y": 219.91895 + }, + { + "x": 550.01487, + "y": 314.4019 + }, + { + "x": 504.33667, + "y": 263.37067 + }, + [ + { + "#": 969 + }, + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + }, + { + "#": 980 + }, + { + "#": 981 + } + ], + { + "x": -0.96967, + "y": -0.24441 + }, + { + "x": -0.88299, + "y": -0.46939 + }, + { + "x": -0.74504, + "y": -0.66702 + }, + { + "x": -0.56376, + "y": -0.82594 + }, + { + "x": -0.3497, + "y": -0.93686 + }, + { + "x": -0.11536, + "y": -0.99332 + }, + { + "x": 0.12575, + "y": -0.99206 + }, + { + "x": 0.35949, + "y": -0.93315 + }, + { + "x": 0.57237, + "y": -0.82 + }, + { + "x": 0.75198, + "y": -0.65919 + }, + { + "x": 0.88785, + "y": -0.46013 + }, + { + "x": 0.97218, + "y": -0.23425 + }, + { + "x": 0.99999, + "y": 0.00523 + }, + { + "id": "9,11,4,6", + "startCol": 9, + "endCol": 11, + "startRow": 4, + "endRow": 6 + }, + { + "id": 36, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 984 + }, + "angle": 0.00514, + "vertices": { + "#": 985 + }, + "position": { + "#": 990 + }, + "force": { + "#": 991 + }, + "torque": 0, + "positionImpulse": { + "#": 992 + }, + "constraintImpulse": { + "#": 993 + }, + "totalContacts": 0, + "speed": 2.7717, + "angularSpeed": 0.00131, + "velocity": { + "#": 994 + }, + "angularVelocity": 0.00167, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 995 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 996 + }, + "bounds": { + "#": 998 + }, + "positionPrev": { + "#": 1001 + }, + "anglePrev": 0.00348, + "axes": { + "#": 1002 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 983 + }, + "sleepCounter": 0, + "region": { + "#": 1005 + } + }, + [ + { + "#": 983 + } + ], + [ + { + "#": 986 + }, + { + "#": 987 + }, + { + "#": 988 + }, + { + "#": 989 + } + ], + { + "x": 550.16787, + "y": 221.06589, + "index": 0, + "body": { + "#": 983 + }, + "isInternal": false + }, + { + "x": 614.16702, + "y": 221.3948, + "index": 1, + "body": { + "#": 983 + }, + "isInternal": false + }, + { + "x": 613.83811, + "y": 285.39395, + "index": 2, + "body": { + "#": 983 + }, + "isInternal": false + }, + { + "x": 549.83895, + "y": 285.06504, + "index": 3, + "body": { + "#": 983 + }, + "isInternal": false + }, + { + "x": 582.00299, + "y": 253.22992 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00147, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00592, + "y": 2.74593 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 997 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#C7F464" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 999 + }, + "max": { + "#": 1000 + } + }, + { + "x": 549.83895, + "y": 221.06589 + }, + { + "x": 614.17449, + "y": 288.16564 + }, + { + "x": 581.99683, + "y": 250.48483 + }, + [ + { + "#": 1003 + }, + { + "#": 1004 + } + ], + { + "x": -0.00514, + "y": 0.99999 + }, + { + "x": -0.99999, + "y": -0.00514 + }, + { + "id": "11,12,4,5", + "startCol": 11, + "endCol": 12, + "startRow": 4, + "endRow": 5 + }, + { + "id": 37, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1007 + }, + "angle": 0.00203, + "vertices": { + "#": 1008 + }, + "position": { + "#": 1013 + }, + "force": { + "#": 1014 + }, + "torque": 0, + "positionImpulse": { + "#": 1015 + }, + "constraintImpulse": { + "#": 1016 + }, + "totalContacts": 0, + "speed": 2.87323, + "angularSpeed": 0.00069, + "velocity": { + "#": 1017 + }, + "angularVelocity": 0.00085, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1018 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1019 + }, + "bounds": { + "#": 1021 + }, + "positionPrev": { + "#": 1024 + }, + "anglePrev": 0.00117, + "axes": { + "#": 1025 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 1006 + }, + "sleepCounter": 0, + "region": { + "#": 1028 + } + }, + [ + { + "#": 1006 + } + ], + [ + { + "#": 1009 + }, + { + "#": 1010 + }, + { + "#": 1011 + }, + { + "#": 1012 + } + ], + { + "x": 614.1159, + "y": 221.58044, + "index": 0, + "body": { + "#": 1006 + }, + "isInternal": false + }, + { + "x": 678.11577, + "y": 221.71015, + "index": 1, + "body": { + "#": 1006 + }, + "isInternal": false + }, + { + "x": 677.98606, + "y": 285.71002, + "index": 2, + "body": { + "#": 1006 + }, + "isInternal": false + }, + { + "x": 613.98619, + "y": 285.58031, + "index": 3, + "body": { + "#": 1006 + }, + "isInternal": false + }, + { + "x": 646.05098, + "y": 253.64523 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00217, + "y": 0.00001 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.03133, + "y": 2.86471 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1020 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#C7F464" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 1022 + }, + "max": { + "#": 1023 + } + }, + { + "x": 613.98619, + "y": 221.58044 + }, + { + "x": 678.14294, + "y": 288.58312 + }, + { + "x": 646.01942, + "y": 250.7805 + }, + [ + { + "#": 1026 + }, + { + "#": 1027 + } + ], + { + "x": -0.00203, + "y": 1 + }, + { + "x": -1, + "y": -0.00203 + }, + { + "id": "12,14,4,5", + "startCol": 12, + "endCol": 14, + "startRow": 4, + "endRow": 5 + }, + { + "id": 38, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1030 + }, + "angle": 0.00095, + "vertices": { + "#": 1031 + }, + "position": { + "#": 1036 + }, + "force": { + "#": 1037 + }, + "torque": 0, + "positionImpulse": { + "#": 1038 + }, + "constraintImpulse": { + "#": 1039 + }, + "totalContacts": 0, + "speed": 2.90875, + "angularSpeed": 0.00041, + "velocity": { + "#": 1040 + }, + "angularVelocity": 0.0005, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1041 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1042 + }, + "bounds": { + "#": 1044 + }, + "positionPrev": { + "#": 1047 + }, + "anglePrev": 0.00045, + "axes": { + "#": 1048 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 1029 + }, + "sleepCounter": 0, + "region": { + "#": 1051 + } + }, + [ + { + "#": 1029 + } + ], + [ + { + "#": 1032 + }, + { + "#": 1033 + }, + { + "#": 1034 + }, + { + "#": 1035 + } + ], + { + "x": 678.06562, + "y": 221.70822, + "index": 0, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 742.06559, + "y": 221.76882, + "index": 1, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 742.005, + "y": 285.76879, + "index": 2, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 678.00503, + "y": 285.70819, + "index": 3, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 710.03531, + "y": 253.73851 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00238, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.04317, + "y": 2.90799 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1043 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#4ECDC4" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 1045 + }, + "max": { + "#": 1046 + } + }, + { + "x": 678.00503, + "y": 221.70822 + }, + { + "x": 742.10172, + "y": 288.67731 + }, + { + "x": 709.99238, + "y": 250.83054 + }, + [ + { + "#": 1049 + }, + { + "#": 1050 + } + ], + { + "x": -0.00095, + "y": 1 + }, + { + "x": -1, + "y": -0.00095 + }, + { + "id": "14,15,4,5", + "startCol": 14, + "endCol": 15, + "startRow": 4, + "endRow": 5 + }, + { + "id": 39, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1053 + }, + "angle": -0.00666, + "vertices": { + "#": 1054 + }, + "position": { + "#": 1059 + }, + "force": { + "#": 1060 + }, + "torque": 0, + "positionImpulse": { + "#": 1061 + }, + "constraintImpulse": { + "#": 1062 + }, + "totalContacts": 0, + "speed": 2.74468, + "angularSpeed": 0.00179, + "velocity": { + "#": 1063 + }, + "angularVelocity": -0.00215, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1064 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1065 + }, + "bounds": { + "#": 1067 + }, + "positionPrev": { + "#": 1070 + }, + "anglePrev": -0.00449, + "axes": { + "#": 1071 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 1052 + }, + "sleepCounter": 0, + "region": { + "#": 1074 + } + }, + [ + { + "#": 1052 + } + ], + [ + { + "#": 1055 + }, + { + "#": 1056 + }, + { + "#": 1057 + }, + { + "#": 1058 + } + ], + { + "x": 19.81254, + "y": 313.36814, + "index": 0, + "body": { + "#": 1052 + }, + "isInternal": false + }, + { + "x": 83.81112, + "y": 312.94205, + "index": 1, + "body": { + "#": 1052 + }, + "isInternal": false + }, + { + "x": 84.2372, + "y": 376.94064, + "index": 2, + "body": { + "#": 1052 + }, + "isInternal": false + }, + { + "x": 20.23862, + "y": 377.36672, + "index": 3, + "body": { + "#": 1052 + }, + "isInternal": false + }, + { + "x": 52.02487, + "y": 345.15439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00324, + "y": 0.00002 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.03037, + "y": 2.70742 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1066 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#FF6B6B" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 1068 + }, + "max": { + "#": 1069 + } + }, + { + "x": 19.79407, + "y": 312.94205 + }, + { + "x": 84.2372, + "y": 380.11134 + }, + { + "x": 52.05543, + "y": 342.44852 + }, + [ + { + "#": 1072 + }, + { + "#": 1073 + } + ], + { + "x": 0.00666, + "y": 0.99998 + }, + { + "x": -0.99998, + "y": 0.00666 + }, + { + "id": "0,1,6,7", + "startCol": 0, + "endCol": 1, + "startRow": 6, + "endRow": 7 + }, + { + "id": 40, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1076 + }, + "angle": -0.00447, + "vertices": { + "#": 1077 + }, + "position": { + "#": 1104 + }, + "force": { + "#": 1105 + }, + "torque": 0, + "positionImpulse": { + "#": 1106 + }, + "constraintImpulse": { + "#": 1107 + }, + "totalContacts": 0, + "speed": 2.44528, + "angularSpeed": 0.0012, + "velocity": { + "#": 1108 + }, + "angularVelocity": -0.0014, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 1109 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1110 + }, + "circleRadius": 46, + "bounds": { + "#": 1112 + }, + "positionPrev": { + "#": 1115 + }, + "anglePrev": -0.00306, + "axes": { + "#": 1116 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 1075 + }, + "sleepCounter": 0, + "region": { + "#": 1130 + } + }, + [ + { + "#": 1075 + } + ], + [ + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + }, + { + "#": 1085 + }, + { + "#": 1086 + }, + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + }, + { + "#": 1102 + }, + { + "#": 1103 + } + ], + { + "x": 175.42619, + "y": 363.05705, + "index": 0, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 172.82036, + "y": 373.83581, + "index": 1, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 167.71032, + "y": 383.67775, + "index": 2, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 160.39451, + "y": 392.01055, + "index": 3, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 151.29577, + "y": 398.3513, + "index": 4, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 140.94546, + "y": 402.32962, + "index": 5, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 129.94255, + "y": 403.71584, + "index": 6, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 118.92768, + "y": 402.42808, + "index": 7, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 108.5422, + "y": 398.54248, + "index": 8, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 99.38712, + "y": 392.28336, + "index": 9, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 91.99708, + "y": 384.01632, + "index": 10, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 86.79922, + "y": 374.22046, + "index": 11, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 84.09711, + "y": 363.46544, + "index": 12, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 84.04752, + "y": 352.37555, + "index": 13, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 86.65334, + "y": 341.59679, + "index": 14, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 91.76338, + "y": 331.75484, + "index": 15, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 99.0792, + "y": 323.42204, + "index": 16, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 108.17793, + "y": 317.08129, + "index": 17, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 118.52825, + "y": 313.10297, + "index": 18, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 129.53116, + "y": 311.71676, + "index": 19, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 140.54603, + "y": 313.00452, + "index": 20, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 150.93151, + "y": 316.89011, + "index": 21, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 160.08659, + "y": 323.14924, + "index": 22, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 167.47663, + "y": 331.41628, + "index": 23, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 172.67448, + "y": 341.21213, + "index": 24, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 175.3766, + "y": 351.96716, + "index": 25, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 129.73685, + "y": 357.7163 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00104, + "y": 0.00207 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00015, + "y": 2.49682 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1111 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 1113 + }, + "max": { + "#": 1114 + } + }, + { + "x": 84.04752, + "y": 311.71676 + }, + { + "x": 175.42707, + "y": 406.16111 + }, + { + "x": 129.73823, + "y": 355.22113 + }, + [ + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + } + ], + { + "x": -0.972, + "y": -0.23499 + }, + { + "x": -0.8875, + "y": -0.4608 + }, + { + "x": -0.75148, + "y": -0.65976 + }, + { + "x": -0.57174, + "y": -0.82043 + }, + { + "x": -0.35878, + "y": -0.93342 + }, + { + "x": -0.125, + "y": -0.99216 + }, + { + "x": 0.11612, + "y": -0.99324 + }, + { + "x": 0.35042, + "y": -0.93659 + }, + { + "x": 0.56438, + "y": -0.82551 + }, + { + "x": 0.74555, + "y": -0.66646 + }, + { + "x": 0.88335, + "y": -0.46872 + }, + { + "x": 0.96986, + "y": -0.24367 + }, + { + "x": 0.99999, + "y": -0.00447 + }, + { + "id": "1,3,6,8", + "startCol": 1, + "endCol": 3, + "startRow": 6, + "endRow": 8 + }, + { + "id": 41, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1132 + }, + "angle": 0.0005, + "vertices": { + "#": 1133 + }, + "position": { + "#": 1160 + }, + "force": { + "#": 1161 + }, + "torque": 0, + "positionImpulse": { + "#": 1162 + }, + "constraintImpulse": { + "#": 1163 + }, + "totalContacts": 0, + "speed": 2.38567, + "angularSpeed": 0.00027, + "velocity": { + "#": 1164 + }, + "angularVelocity": 0.00045, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 1165 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1166 + }, + "circleRadius": 46, + "bounds": { + "#": 1168 + }, + "positionPrev": { + "#": 1171 + }, + "anglePrev": 0.00004, + "axes": { + "#": 1172 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 1131 + }, + "sleepCounter": 0, + "region": { + "#": 1186 + } + }, + [ + { + "#": 1131 + } + ], + [ + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + }, + { + "#": 1140 + }, + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + }, + { + "#": 1152 + }, + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + }, + { + "#": 1156 + }, + { + "#": 1157 + }, + { + "#": 1158 + }, + { + "#": 1159 + } + ], + { + "x": 266.70415, + "y": 362.89585, + "index": 0, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 264.04475, + "y": 373.66152, + "index": 1, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 258.88583, + "y": 383.47793, + "index": 2, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 251.52866, + "y": 391.77424, + "index": 3, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 242.3985, + "y": 398.06966, + "index": 4, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 232.02853, + "y": 401.99646, + "index": 5, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 221.01886, + "y": 403.32794, + "index": 6, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 210.01054, + "y": 401.98542, + "index": 7, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 199.64451, + "y": 398.04822, + "index": 8, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 190.52067, + "y": 391.74364, + "index": 9, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 183.17183, + "y": 383.43995, + "index": 10, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 178.02276, + "y": 373.61837, + "index": 11, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 175.37416, + "y": 362.85004, + "index": 12, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 175.37972, + "y": 351.76004, + "index": 13, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 178.03913, + "y": 340.99437, + "index": 14, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 183.19805, + "y": 331.17796, + "index": 15, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 190.55521, + "y": 322.88165, + "index": 16, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 199.68537, + "y": 316.58623, + "index": 17, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 210.05534, + "y": 312.65943, + "index": 18, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 221.06501, + "y": 311.32795, + "index": 19, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 232.07334, + "y": 312.67047, + "index": 20, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 242.43937, + "y": 316.60767, + "index": 21, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 251.5632, + "y": 322.91225, + "index": 22, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 258.91204, + "y": 331.21594, + "index": 23, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 264.06111, + "y": 341.03752, + "index": 24, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 266.70971, + "y": 351.80585, + "index": 25, + "body": { + "#": 1131 + }, + "isInternal": false + }, + { + "x": 221.04194, + "y": 357.32794 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00172, + "y": 0.00001 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00915, + "y": 2.43308 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1167 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 1169 + }, + "max": { + "#": 1170 + } + }, + { + "x": 175.37416, + "y": 311.32795 + }, + { + "x": 266.71515, + "y": 405.71361 + }, + { + "x": 221.03592, + "y": 354.89292 + }, + [ + { + "#": 1173 + }, + { + "#": 1174 + }, + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + }, + { + "#": 1179 + }, + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + } + ], + { + "x": -0.97082, + "y": -0.23982 + }, + { + "x": -0.8852, + "y": -0.46521 + }, + { + "x": -0.74819, + "y": -0.66349 + }, + { + "x": -0.56766, + "y": -0.82327 + }, + { + "x": -0.35413, + "y": -0.9352 + }, + { + "x": -0.12006, + "y": -0.99277 + }, + { + "x": 0.12106, + "y": -0.99265 + }, + { + "x": 0.35507, + "y": -0.93484 + }, + { + "x": 0.56848, + "y": -0.8227 + }, + { + "x": 0.74885, + "y": -0.66274 + }, + { + "x": 0.88567, + "y": -0.46432 + }, + { + "x": 0.97106, + "y": -0.23884 + }, + { + "x": 1, + "y": 0.0005 + }, + { + "id": "3,5,6,8", + "startCol": 3, + "endCol": 5, + "startRow": 6, + "endRow": 8 + }, + { + "id": 42, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1188 + }, + "angle": -0.00062, + "vertices": { + "#": 1189 + }, + "position": { + "#": 1194 + }, + "force": { + "#": 1195 + }, + "torque": 0, + "positionImpulse": { + "#": 1196 + }, + "constraintImpulse": { + "#": 1197 + }, + "totalContacts": 0, + "speed": 2.85885, + "angularSpeed": 0.0005, + "velocity": { + "#": 1198 + }, + "angularVelocity": -0.00035, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1199 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1200 + }, + "bounds": { + "#": 1202 + }, + "positionPrev": { + "#": 1205 + }, + "anglePrev": -0.00014, + "axes": { + "#": 1206 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 1187 + }, + "sleepCounter": 0, + "region": { + "#": 1209 + } + }, + [ + { + "#": 1187 + } + ], + [ + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + } + ], + { + "x": 266.63531, + "y": 313.65129, + "index": 0, + "body": { + "#": 1187 + }, + "isInternal": false + }, + { + "x": 330.63529, + "y": 313.61132, + "index": 1, + "body": { + "#": 1187 + }, + "isInternal": false + }, + { + "x": 330.67526, + "y": 377.61131, + "index": 2, + "body": { + "#": 1187 + }, + "isInternal": false + }, + { + "x": 266.67527, + "y": 377.65128, + "index": 3, + "body": { + "#": 1187 + }, + "isInternal": false + }, + { + "x": 298.65528, + "y": 345.6313 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00323, + "y": 2.84583 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1201 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#556270" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 1203 + }, + "max": { + "#": 1204 + } + }, + { + "x": 266.63531, + "y": 313.61132 + }, + { + "x": 330.67551, + "y": 380.51013 + }, + { + "x": 298.65437, + "y": 342.79781 + }, + [ + { + "#": 1207 + }, + { + "#": 1208 + } + ], + { + "x": 0.00062, + "y": 1 + }, + { + "x": -1, + "y": 0.00062 + }, + { + "id": "5,6,6,7", + "startCol": 5, + "endCol": 6, + "startRow": 6, + "endRow": 7 + }, + { + "id": 43, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1211 + }, + "angle": -0.0012, + "vertices": { + "#": 1212 + }, + "position": { + "#": 1217 + }, + "force": { + "#": 1218 + }, + "torque": 0, + "positionImpulse": { + "#": 1219 + }, + "constraintImpulse": { + "#": 1220 + }, + "totalContacts": 0, + "speed": 2.8643, + "angularSpeed": 0.00029, + "velocity": { + "#": 1221 + }, + "angularVelocity": -0.00028, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1222 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1223 + }, + "bounds": { + "#": 1225 + }, + "positionPrev": { + "#": 1228 + }, + "anglePrev": -0.00077, + "axes": { + "#": 1229 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 1210 + }, + "sleepCounter": 0, + "region": { + "#": 1232 + } + }, + [ + { + "#": 1210 + } + ], + [ + { + "#": 1213 + }, + { + "#": 1214 + }, + { + "#": 1215 + }, + { + "#": 1216 + } + ], + { + "x": 330.58634, + "y": 313.68684, + "index": 0, + "body": { + "#": 1210 + }, + "isInternal": false + }, + { + "x": 394.58629, + "y": 313.61013, + "index": 1, + "body": { + "#": 1210 + }, + "isInternal": false + }, + { + "x": 394.663, + "y": 377.61008, + "index": 2, + "body": { + "#": 1210 + }, + "isInternal": false + }, + { + "x": 330.66305, + "y": 377.68679, + "index": 3, + "body": { + "#": 1210 + }, + "isInternal": false + }, + { + "x": 362.62467, + "y": 345.64846 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.0031, + "y": 2.83754 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1224 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#FF6B6B" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 1226 + }, + "max": { + "#": 1227 + } + }, + { + "x": 330.57973, + "y": 313.61013 + }, + { + "x": 394.663, + "y": 380.55108 + }, + { + "x": 362.62546, + "y": 342.79857 + }, + [ + { + "#": 1230 + }, + { + "#": 1231 + } + ], + { + "x": 0.0012, + "y": 1 + }, + { + "x": -1, + "y": 0.0012 + }, + { + "id": "6,8,6,7", + "startCol": 6, + "endCol": 8, + "startRow": 6, + "endRow": 7 + }, + { + "id": 44, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1234 + }, + "angle": -0.00402, + "vertices": { + "#": 1235 + }, + "position": { + "#": 1240 + }, + "force": { + "#": 1241 + }, + "torque": 0, + "positionImpulse": { + "#": 1242 + }, + "constraintImpulse": { + "#": 1243 + }, + "totalContacts": 0, + "speed": 2.78892, + "angularSpeed": 0.00066, + "velocity": { + "#": 1244 + }, + "angularVelocity": -0.00077, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1245 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1246 + }, + "bounds": { + "#": 1248 + }, + "positionPrev": { + "#": 1251 + }, + "anglePrev": -0.00332, + "axes": { + "#": 1252 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 1233 + }, + "sleepCounter": 0, + "region": { + "#": 1255 + } + }, + [ + { + "#": 1233 + } + ], + [ + { + "#": 1236 + }, + { + "#": 1237 + }, + { + "#": 1238 + }, + { + "#": 1239 + } + ], + { + "x": 394.53765, + "y": 313.39799, + "index": 0, + "body": { + "#": 1233 + }, + "isInternal": false + }, + { + "x": 458.53713, + "y": 313.14096, + "index": 1, + "body": { + "#": 1233 + }, + "isInternal": false + }, + { + "x": 458.79416, + "y": 377.14045, + "index": 2, + "body": { + "#": 1233 + }, + "isInternal": false + }, + { + "x": 394.79467, + "y": 377.39747, + "index": 3, + "body": { + "#": 1233 + }, + "isInternal": false + }, + { + "x": 426.6659, + "y": 345.26922 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.0072, + "y": 2.76386 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1247 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#556270" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 1249 + }, + "max": { + "#": 1250 + } + }, + { + "x": 394.53765, + "y": 313.14096 + }, + { + "x": 458.79955, + "y": 380.18639 + }, + { + "x": 426.65617, + "y": 342.50933 + }, + [ + { + "#": 1253 + }, + { + "#": 1254 + } + ], + { + "x": 0.00402, + "y": 0.99999 + }, + { + "x": -0.99999, + "y": 0.00402 + }, + { + "id": "8,9,6,7", + "startCol": 8, + "endCol": 9, + "startRow": 6, + "endRow": 7 + }, + { + "id": 45, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1257 + }, + "angle": -0.00486, + "vertices": { + "#": 1258 + }, + "position": { + "#": 1285 + }, + "force": { + "#": 1286 + }, + "torque": 0, + "positionImpulse": { + "#": 1287 + }, + "constraintImpulse": { + "#": 1288 + }, + "totalContacts": 0, + "speed": 2.5293, + "angularSpeed": 0.0011, + "velocity": { + "#": 1289 + }, + "angularVelocity": -0.00118, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 1290 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1291 + }, + "circleRadius": 46, + "bounds": { + "#": 1293 + }, + "positionPrev": { + "#": 1296 + }, + "anglePrev": -0.00371, + "axes": { + "#": 1297 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 1256 + }, + "sleepCounter": 0, + "region": { + "#": 1311 + } + }, + [ + { + "#": 1256 + } + ], + [ + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + }, + { + "#": 1263 + }, + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + }, + { + "#": 1267 + }, + { + "#": 1268 + }, + { + "#": 1269 + }, + { + "#": 1270 + }, + { + "#": 1271 + }, + { + "#": 1272 + }, + { + "#": 1273 + }, + { + "#": 1274 + }, + { + "#": 1275 + }, + { + "#": 1276 + }, + { + "#": 1277 + }, + { + "#": 1278 + }, + { + "#": 1279 + }, + { + "#": 1280 + }, + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + } + ], + { + "x": 550.03156, + "y": 363.217, + "index": 0, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 547.42995, + "y": 373.99677, + "index": 1, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 542.32376, + "y": 383.84072, + "index": 2, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 535.01121, + "y": 392.17638, + "index": 3, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 525.91495, + "y": 398.52069, + "index": 4, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 515.56619, + "y": 402.50306, + "index": 5, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 504.56383, + "y": 403.89358, + "index": 6, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 493.54845, + "y": 402.61014, + "index": 7, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 483.16146, + "y": 398.7286, + "index": 8, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 474.00393, + "y": 392.47306, + "index": 9, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 466.61065, + "y": 384.20891, + "index": 10, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 461.40896, + "y": 374.41509, + "index": 11, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 458.70264, + "y": 363.66113, + "index": 12, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 458.64871, + "y": 352.57126, + "index": 13, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 461.25031, + "y": 341.79148, + "index": 14, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 466.3565, + "y": 331.94753, + "index": 15, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 473.66905, + "y": 323.61187, + "index": 16, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 482.76531, + "y": 317.26756, + "index": 17, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 493.11407, + "y": 313.28519, + "index": 18, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 504.11643, + "y": 311.89467, + "index": 19, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 515.13181, + "y": 313.17812, + "index": 20, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 525.5188, + "y": 317.05965, + "index": 21, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 534.67633, + "y": 323.3152, + "index": 22, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 542.06961, + "y": 331.57934, + "index": 23, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 547.2713, + "y": 341.37316, + "index": 24, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 549.97763, + "y": 352.12713, + "index": 25, + "body": { + "#": 1256 + }, + "isInternal": false + }, + { + "x": 504.34013, + "y": 357.89413 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00108, + "y": 0.00004 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.01684, + "y": 2.60866 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1292 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 1294 + }, + "max": { + "#": 1295 + } + }, + { + "x": 458.64871, + "y": 311.89467 + }, + { + "x": 550.04642, + "y": 406.42283 + }, + { + "x": 504.32416, + "y": 355.28354 + }, + [ + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + }, + { + "#": 1301 + }, + { + "#": 1302 + }, + { + "#": 1303 + }, + { + "#": 1304 + }, + { + "#": 1305 + }, + { + "#": 1306 + }, + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + }, + { + "#": 1310 + } + ], + { + "x": -0.97209, + "y": -0.23461 + }, + { + "x": -0.88768, + "y": -0.46045 + }, + { + "x": -0.75173, + "y": -0.65947 + }, + { + "x": -0.57207, + "y": -0.82021 + }, + { + "x": -0.35914, + "y": -0.93328 + }, + { + "x": -0.12539, + "y": -0.99211 + }, + { + "x": 0.11573, + "y": -0.99328 + }, + { + "x": 0.35005, + "y": -0.93673 + }, + { + "x": 0.56406, + "y": -0.82573 + }, + { + "x": 0.74528, + "y": -0.66675 + }, + { + "x": 0.88316, + "y": -0.46907 + }, + { + "x": 0.96976, + "y": -0.24405 + }, + { + "x": 0.99999, + "y": -0.00486 + }, + { + "id": "9,11,6,8", + "startCol": 9, + "endCol": 11, + "startRow": 6, + "endRow": 8 + }, + { + "id": 46, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1313 + }, + "angle": 0.00185, + "vertices": { + "#": 1314 + }, + "position": { + "#": 1319 + }, + "force": { + "#": 1320 + }, + "torque": 0, + "positionImpulse": { + "#": 1321 + }, + "constraintImpulse": { + "#": 1322 + }, + "totalContacts": 0, + "speed": 2.8259, + "angularSpeed": 0.00073, + "velocity": { + "#": 1323 + }, + "angularVelocity": 0.00086, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1324 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1325 + }, + "bounds": { + "#": 1327 + }, + "positionPrev": { + "#": 1330 + }, + "anglePrev": 0.001, + "axes": { + "#": 1331 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 1312 + }, + "sleepCounter": 0, + "region": { + "#": 1334 + } + }, + [ + { + "#": 1312 + } + ], + [ + { + "#": 1315 + }, + { + "#": 1316 + }, + { + "#": 1317 + }, + { + "#": 1318 + } + ], + { + "x": 550.07477, + "y": 313.47331, + "index": 0, + "body": { + "#": 1312 + }, + "isInternal": false + }, + { + "x": 614.07466, + "y": 313.59155, + "index": 1, + "body": { + "#": 1312 + }, + "isInternal": false + }, + { + "x": 613.95642, + "y": 377.59144, + "index": 2, + "body": { + "#": 1312 + }, + "isInternal": false + }, + { + "x": 549.95653, + "y": 377.4732, + "index": 3, + "body": { + "#": 1312 + }, + "isInternal": false + }, + { + "x": 582.0156, + "y": 345.53238 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.00111, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.03714, + "y": 2.79317 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1326 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#4ECDC4" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 1328 + }, + "max": { + "#": 1329 + } + }, + { + "x": 549.95653, + "y": 313.47331 + }, + { + "x": 614.10868, + "y": 380.41713 + }, + { + "x": 581.97841, + "y": 342.74077 + }, + [ + { + "#": 1332 + }, + { + "#": 1333 + } + ], + { + "x": -0.00185, + "y": 1 + }, + { + "x": -1, + "y": -0.00185 + }, + { + "id": "11,12,6,7", + "startCol": 11, + "endCol": 12, + "startRow": 6, + "endRow": 7 + }, + { + "id": 47, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1336 + }, + "angle": 0, + "vertices": { + "#": 1337 + }, + "position": { + "#": 1364 + }, + "force": { + "#": 1365 + }, + "torque": 0, + "positionImpulse": { + "#": 1366 + }, + "constraintImpulse": { + "#": 1367 + }, + "totalContacts": 0, + "speed": 2.28566, + "angularSpeed": 0, + "velocity": { + "#": 1368 + }, + "angularVelocity": -0.00002, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.0005, + "restitution": 0.3, + "friction": 0.01, + "frictionStatic": 0.5, + "frictionAir": 0.06, + "collisionFilter": { + "#": 1369 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1370 + }, + "circleRadius": 46, + "bounds": { + "#": 1372 + }, + "positionPrev": { + "#": 1375 + }, + "anglePrev": 0.00004, + "axes": { + "#": 1376 + }, + "area": 6583.09924, + "mass": 3.29155, + "inverseMass": 0.30381, + "inertia": 13794.921, + "inverseInertia": 0.00007, + "parent": { + "#": 1335 + }, + "sleepCounter": 0, + "region": { + "#": 1390 + } + }, + [ + { + "#": 1335 + } + ], + [ + { + "#": 1338 + }, + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + }, + { + "#": 1342 + }, + { + "#": 1343 + }, + { + "#": 1344 + }, + { + "#": 1345 + }, + { + "#": 1346 + }, + { + "#": 1347 + }, + { + "#": 1348 + }, + { + "#": 1349 + }, + { + "#": 1350 + }, + { + "#": 1351 + }, + { + "#": 1352 + }, + { + "#": 1353 + }, + { + "#": 1354 + }, + { + "#": 1355 + }, + { + "#": 1356 + }, + { + "#": 1357 + }, + { + "#": 1358 + }, + { + "#": 1359 + }, + { + "#": 1360 + }, + { + "#": 1361 + }, + { + "#": 1362 + }, + { + "#": 1363 + } + ], + { + "x": 705.2868, + "y": 362.66225, + "index": 0, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 702.6328, + "y": 373.42925, + "index": 1, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 697.4788, + "y": 383.24825, + "index": 2, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 690.1258, + "y": 391.54825, + "index": 3, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 680.9988, + "y": 397.84825, + "index": 4, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 670.6308, + "y": 401.78025, + "index": 5, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 659.6218, + "y": 403.11725, + "index": 6, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 648.6128, + "y": 401.78025, + "index": 7, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 638.2448, + "y": 397.84825, + "index": 8, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 629.1178, + "y": 391.54825, + "index": 9, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 621.7648, + "y": 383.24825, + "index": 10, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 616.6108, + "y": 373.42925, + "index": 11, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 613.9568, + "y": 362.66225, + "index": 12, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 613.9568, + "y": 351.57225, + "index": 13, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 616.6108, + "y": 340.80525, + "index": 14, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 621.7648, + "y": 330.98625, + "index": 15, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 629.1178, + "y": 322.68625, + "index": 16, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 638.2448, + "y": 316.38625, + "index": 17, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 648.6128, + "y": 312.45425, + "index": 18, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 659.6218, + "y": 311.11725, + "index": 19, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 670.6308, + "y": 312.45425, + "index": 20, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 680.9988, + "y": 316.38625, + "index": 21, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 690.1258, + "y": 322.68625, + "index": 22, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 697.4788, + "y": 330.98625, + "index": 23, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 702.6328, + "y": 340.80525, + "index": 24, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 705.2868, + "y": 351.57225, + "index": 25, + "body": { + "#": 1335 + }, + "isInternal": false + }, + { + "x": 659.6218, + "y": 357.11725 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.03311, + "y": 2.29159 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1371 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/ball.png" + }, + { + "min": { + "#": 1373 + }, + "max": { + "#": 1374 + } + }, + { + "x": 613.9568, + "y": 311.11725 + }, + { + "x": 705.2868, + "y": 405.4029 + }, + { + "x": 659.58875, + "y": 354.82371 + }, + [ + { + "#": 1377 + }, + { + "#": 1378 + }, + { + "#": 1379 + }, + { + "#": 1380 + }, + { + "#": 1381 + }, + { + "#": 1382 + }, + { + "#": 1383 + }, + { + "#": 1384 + }, + { + "#": 1385 + }, + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + } + ], + { + "x": -0.97094, + "y": -0.23933 + }, + { + "x": -0.88543, + "y": -0.46476 + }, + { + "x": -0.74852, + "y": -0.66311 + }, + { + "x": -0.56807, + "y": -0.82298 + }, + { + "x": -0.3546, + "y": -0.93502 + }, + { + "x": -0.12056, + "y": -0.99271 + }, + { + "x": 0.12056, + "y": -0.99271 + }, + { + "x": 0.3546, + "y": -0.93502 + }, + { + "x": 0.56807, + "y": -0.82298 + }, + { + "x": 0.74852, + "y": -0.66311 + }, + { + "x": 0.88543, + "y": -0.46476 + }, + { + "x": 0.97094, + "y": -0.23933 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,14,6,8", + "startCol": 12, + "endCol": 14, + "startRow": 6, + "endRow": 8 + }, + { + "id": 48, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1392 + }, + "angle": 0, + "vertices": { + "#": 1393 + }, + "position": { + "#": 1398 + }, + "force": { + "#": 1399 + }, + "torque": 0, + "positionImpulse": { + "#": 1400 + }, + "constraintImpulse": { + "#": 1401 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1402 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1403 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1404 + }, + "bounds": { + "#": 1406 + }, + "positionPrev": { + "#": 1409 + }, + "anglePrev": 0, + "axes": { + "#": 1410 + }, + "area": 4096, + "mass": 4.096, + "inverseMass": 0.24414, + "inertia": 11184.81067, + "inverseInertia": 0.00009, + "parent": { + "#": 1391 + }, + "sleepCounter": 0, + "region": { + "#": 1413 + } + }, + [ + { + "#": 1391 + } + ], + [ + { + "#": 1394 + }, + { + "#": 1395 + }, + { + "#": 1396 + }, + { + "#": 1397 + } + ], + { + "x": 705.32, + "y": 313.73575, + "index": 0, + "body": { + "#": 1391 + }, + "isInternal": false + }, + { + "x": 769.32, + "y": 313.73575, + "index": 1, + "body": { + "#": 1391 + }, + "isInternal": false + }, + { + "x": 769.32, + "y": 377.73575, + "index": 2, + "body": { + "#": 1391 + }, + "isInternal": false + }, + { + "x": 705.32, + "y": 377.73575, + "index": 3, + "body": { + "#": 1391 + }, + "isInternal": false + }, + { + "x": 737.32, + "y": 345.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1405 + }, + "lineWidth": 1.5, + "strokeStyle": "#ffffff", + "fillStyle": "#556270" + }, + { + "xScale": 1, + "yScale": 1, + "texture": "./img/box.png" + }, + { + "min": { + "#": 1407 + }, + "max": { + "#": 1408 + } + }, + { + "x": 705.32, + "y": 313.73575 + }, + { + "x": 769.32, + "y": 377.73575 + }, + { + "x": 737.32, + "y": 342.82848 + }, + [ + { + "#": 1411 + }, + { + "#": 1412 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,16,6,7", + "startCol": 14, + "endCol": 16, + "startRow": 6, + "endRow": 7 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 1418 + }, + "max": { + "#": 1419 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/stack/stack-0.json b/test/node/refs/stack/stack-0.json new file mode 100644 index 00000000..7e58dfbc --- /dev/null +++ b/test/node/refs/stack/stack-0.json @@ -0,0 +1,11008 @@ +[ + { + "id": 158, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 90 + }, + "composites": { + "#": 91 + }, + "label": "World", + "gravity": { + "#": 1196 + }, + "bounds": { + "#": 1197 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [ + { + "#": 92 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 93 + }, + "constraints": { + "#": 1194 + }, + "composites": { + "#": 1195 + }, + "label": "Stack" + }, + [ + { + "#": 94 + }, + { + "#": 116 + }, + { + "#": 138 + }, + { + "#": 160 + }, + { + "#": 182 + }, + { + "#": 204 + }, + { + "#": 226 + }, + { + "#": 248 + }, + { + "#": 270 + }, + { + "#": 292 + }, + { + "#": 314 + }, + { + "#": 336 + }, + { + "#": 358 + }, + { + "#": 380 + }, + { + "#": 402 + }, + { + "#": 424 + }, + { + "#": 446 + }, + { + "#": 468 + }, + { + "#": 490 + }, + { + "#": 512 + }, + { + "#": 534 + }, + { + "#": 556 + }, + { + "#": 578 + }, + { + "#": 600 + }, + { + "#": 622 + }, + { + "#": 644 + }, + { + "#": 666 + }, + { + "#": 688 + }, + { + "#": 710 + }, + { + "#": 732 + }, + { + "#": 754 + }, + { + "#": 776 + }, + { + "#": 798 + }, + { + "#": 820 + }, + { + "#": 842 + }, + { + "#": 864 + }, + { + "#": 886 + }, + { + "#": 908 + }, + { + "#": 930 + }, + { + "#": 952 + }, + { + "#": 974 + }, + { + "#": 996 + }, + { + "#": 1018 + }, + { + "#": 1040 + }, + { + "#": 1062 + }, + { + "#": 1084 + }, + { + "#": 1106 + }, + { + "#": 1128 + }, + { + "#": 1150 + }, + { + "#": 1172 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 96 + }, + "position": { + "#": 101 + }, + "force": { + "#": 102 + }, + "torque": 0, + "positionImpulse": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 105 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 106 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 107 + }, + "bounds": { + "#": 109 + }, + "positionPrev": { + "#": 112 + }, + "anglePrev": 0, + "axes": { + "#": 113 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 94 + }, + "sleepCounter": 0 + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + } + ], + { + "x": 100, + "y": 300, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 140, + "y": 300, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 140, + "y": 340, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 100, + "y": 340, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 120, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 108 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 110 + }, + "max": { + "#": 111 + } + }, + { + "x": 100, + "y": 300 + }, + { + "x": 140, + "y": 340 + }, + { + "x": 120, + "y": 320 + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 117 + }, + "angle": 0, + "vertices": { + "#": 118 + }, + "position": { + "#": 123 + }, + "force": { + "#": 124 + }, + "torque": 0, + "positionImpulse": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 127 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 128 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 129 + }, + "bounds": { + "#": 131 + }, + "positionPrev": { + "#": 134 + }, + "anglePrev": 0, + "axes": { + "#": 135 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 116 + }, + "sleepCounter": 0 + }, + [ + { + "#": 116 + } + ], + [ + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + } + ], + { + "x": 140, + "y": 300, + "index": 0, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 180, + "y": 300, + "index": 1, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 180, + "y": 340, + "index": 2, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 140, + "y": 340, + "index": 3, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 160, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 130 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 132 + }, + "max": { + "#": 133 + } + }, + { + "x": 140, + "y": 300 + }, + { + "x": 180, + "y": 340 + }, + { + "x": 160, + "y": 320 + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 139 + }, + "angle": 0, + "vertices": { + "#": 140 + }, + "position": { + "#": 145 + }, + "force": { + "#": 146 + }, + "torque": 0, + "positionImpulse": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 149 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 150 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 151 + }, + "bounds": { + "#": 153 + }, + "positionPrev": { + "#": 156 + }, + "anglePrev": 0, + "axes": { + "#": 157 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 138 + }, + "sleepCounter": 0 + }, + [ + { + "#": 138 + } + ], + [ + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + } + ], + { + "x": 180, + "y": 300, + "index": 0, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 220, + "y": 300, + "index": 1, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 220, + "y": 340, + "index": 2, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 180, + "y": 340, + "index": 3, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 200, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 152 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 154 + }, + "max": { + "#": 155 + } + }, + { + "x": 180, + "y": 300 + }, + { + "x": 220, + "y": 340 + }, + { + "x": 200, + "y": 320 + }, + [ + { + "#": 158 + }, + { + "#": 159 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 161 + }, + "angle": 0, + "vertices": { + "#": 162 + }, + "position": { + "#": 167 + }, + "force": { + "#": 168 + }, + "torque": 0, + "positionImpulse": { + "#": 169 + }, + "constraintImpulse": { + "#": 170 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 171 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 172 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 173 + }, + "bounds": { + "#": 175 + }, + "positionPrev": { + "#": 178 + }, + "anglePrev": 0, + "axes": { + "#": 179 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 160 + }, + "sleepCounter": 0 + }, + [ + { + "#": 160 + } + ], + [ + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + } + ], + { + "x": 220, + "y": 300, + "index": 0, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 260, + "y": 300, + "index": 1, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 260, + "y": 340, + "index": 2, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 220, + "y": 340, + "index": 3, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 240, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 174 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 176 + }, + "max": { + "#": 177 + } + }, + { + "x": 220, + "y": 300 + }, + { + "x": 260, + "y": 340 + }, + { + "x": 240, + "y": 320 + }, + [ + { + "#": 180 + }, + { + "#": 181 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 183 + }, + "angle": 0, + "vertices": { + "#": 184 + }, + "position": { + "#": 189 + }, + "force": { + "#": 190 + }, + "torque": 0, + "positionImpulse": { + "#": 191 + }, + "constraintImpulse": { + "#": 192 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 193 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 194 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 195 + }, + "bounds": { + "#": 197 + }, + "positionPrev": { + "#": 200 + }, + "anglePrev": 0, + "axes": { + "#": 201 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 182 + }, + "sleepCounter": 0 + }, + [ + { + "#": 182 + } + ], + [ + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + } + ], + { + "x": 260, + "y": 300, + "index": 0, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 300, + "y": 300, + "index": 1, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 300, + "y": 340, + "index": 2, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 260, + "y": 340, + "index": 3, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 280, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 196 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 198 + }, + "max": { + "#": 199 + } + }, + { + "x": 260, + "y": 300 + }, + { + "x": 300, + "y": 340 + }, + { + "x": 280, + "y": 320 + }, + [ + { + "#": 202 + }, + { + "#": 203 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 205 + }, + "angle": 0, + "vertices": { + "#": 206 + }, + "position": { + "#": 211 + }, + "force": { + "#": 212 + }, + "torque": 0, + "positionImpulse": { + "#": 213 + }, + "constraintImpulse": { + "#": 214 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 215 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 216 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 217 + }, + "bounds": { + "#": 219 + }, + "positionPrev": { + "#": 222 + }, + "anglePrev": 0, + "axes": { + "#": 223 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 204 + }, + "sleepCounter": 0 + }, + [ + { + "#": 204 + } + ], + [ + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + } + ], + { + "x": 300, + "y": 300, + "index": 0, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 340, + "y": 300, + "index": 1, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 340, + "y": 340, + "index": 2, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 300, + "y": 340, + "index": 3, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 320, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 218 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 220 + }, + "max": { + "#": 221 + } + }, + { + "x": 300, + "y": 300 + }, + { + "x": 340, + "y": 340 + }, + { + "x": 320, + "y": 320 + }, + [ + { + "#": 224 + }, + { + "#": 225 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 227 + }, + "angle": 0, + "vertices": { + "#": 228 + }, + "position": { + "#": 233 + }, + "force": { + "#": 234 + }, + "torque": 0, + "positionImpulse": { + "#": 235 + }, + "constraintImpulse": { + "#": 236 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 237 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 238 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 239 + }, + "bounds": { + "#": 241 + }, + "positionPrev": { + "#": 244 + }, + "anglePrev": 0, + "axes": { + "#": 245 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 226 + }, + "sleepCounter": 0 + }, + [ + { + "#": 226 + } + ], + [ + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + } + ], + { + "x": 340, + "y": 300, + "index": 0, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 380, + "y": 300, + "index": 1, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 380, + "y": 340, + "index": 2, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 340, + "y": 340, + "index": 3, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 360, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 240 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 242 + }, + "max": { + "#": 243 + } + }, + { + "x": 340, + "y": 300 + }, + { + "x": 380, + "y": 340 + }, + { + "x": 360, + "y": 320 + }, + [ + { + "#": 246 + }, + { + "#": 247 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 249 + }, + "angle": 0, + "vertices": { + "#": 250 + }, + "position": { + "#": 255 + }, + "force": { + "#": 256 + }, + "torque": 0, + "positionImpulse": { + "#": 257 + }, + "constraintImpulse": { + "#": 258 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 259 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 260 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 261 + }, + "bounds": { + "#": 263 + }, + "positionPrev": { + "#": 266 + }, + "anglePrev": 0, + "axes": { + "#": 267 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 248 + }, + "sleepCounter": 0 + }, + [ + { + "#": 248 + } + ], + [ + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + } + ], + { + "x": 380, + "y": 300, + "index": 0, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 420, + "y": 300, + "index": 1, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 420, + "y": 340, + "index": 2, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 380, + "y": 340, + "index": 3, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 400, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 262 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 264 + }, + "max": { + "#": 265 + } + }, + { + "x": 380, + "y": 300 + }, + { + "x": 420, + "y": 340 + }, + { + "x": 400, + "y": 320 + }, + [ + { + "#": 268 + }, + { + "#": 269 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 271 + }, + "angle": 0, + "vertices": { + "#": 272 + }, + "position": { + "#": 277 + }, + "force": { + "#": 278 + }, + "torque": 0, + "positionImpulse": { + "#": 279 + }, + "constraintImpulse": { + "#": 280 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 281 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 282 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 283 + }, + "bounds": { + "#": 285 + }, + "positionPrev": { + "#": 288 + }, + "anglePrev": 0, + "axes": { + "#": 289 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 270 + }, + "sleepCounter": 0 + }, + [ + { + "#": 270 + } + ], + [ + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + } + ], + { + "x": 420, + "y": 300, + "index": 0, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 460, + "y": 300, + "index": 1, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 460, + "y": 340, + "index": 2, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 420, + "y": 340, + "index": 3, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 440, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 284 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 286 + }, + "max": { + "#": 287 + } + }, + { + "x": 420, + "y": 300 + }, + { + "x": 460, + "y": 340 + }, + { + "x": 440, + "y": 320 + }, + [ + { + "#": 290 + }, + { + "#": 291 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 293 + }, + "angle": 0, + "vertices": { + "#": 294 + }, + "position": { + "#": 299 + }, + "force": { + "#": 300 + }, + "torque": 0, + "positionImpulse": { + "#": 301 + }, + "constraintImpulse": { + "#": 302 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 303 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 304 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 305 + }, + "bounds": { + "#": 307 + }, + "positionPrev": { + "#": 310 + }, + "anglePrev": 0, + "axes": { + "#": 311 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 292 + }, + "sleepCounter": 0 + }, + [ + { + "#": 292 + } + ], + [ + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + } + ], + { + "x": 460, + "y": 300, + "index": 0, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 500, + "y": 300, + "index": 1, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 500, + "y": 340, + "index": 2, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 460, + "y": 340, + "index": 3, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 480, + "y": 320 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 306 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 308 + }, + "max": { + "#": 309 + } + }, + { + "x": 460, + "y": 300 + }, + { + "x": 500, + "y": 340 + }, + { + "x": 480, + "y": 320 + }, + [ + { + "#": 312 + }, + { + "#": 313 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 15, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 315 + }, + "angle": 0, + "vertices": { + "#": 316 + }, + "position": { + "#": 321 + }, + "force": { + "#": 322 + }, + "torque": 0, + "positionImpulse": { + "#": 323 + }, + "constraintImpulse": { + "#": 324 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 325 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 326 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 327 + }, + "bounds": { + "#": 329 + }, + "positionPrev": { + "#": 332 + }, + "anglePrev": 0, + "axes": { + "#": 333 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 314 + }, + "sleepCounter": 0 + }, + [ + { + "#": 314 + } + ], + [ + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + } + ], + { + "x": 100, + "y": 340, + "index": 0, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 140, + "y": 340, + "index": 1, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 140, + "y": 380, + "index": 2, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 100, + "y": 380, + "index": 3, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 120, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 328 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 330 + }, + "max": { + "#": 331 + } + }, + { + "x": 100, + "y": 340 + }, + { + "x": 140, + "y": 380 + }, + { + "x": 120, + "y": 360 + }, + [ + { + "#": 334 + }, + { + "#": 335 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 16, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 337 + }, + "angle": 0, + "vertices": { + "#": 338 + }, + "position": { + "#": 343 + }, + "force": { + "#": 344 + }, + "torque": 0, + "positionImpulse": { + "#": 345 + }, + "constraintImpulse": { + "#": 346 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 347 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 348 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 349 + }, + "bounds": { + "#": 351 + }, + "positionPrev": { + "#": 354 + }, + "anglePrev": 0, + "axes": { + "#": 355 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 336 + }, + "sleepCounter": 0 + }, + [ + { + "#": 336 + } + ], + [ + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + } + ], + { + "x": 140, + "y": 340, + "index": 0, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 180, + "y": 340, + "index": 1, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 180, + "y": 380, + "index": 2, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 140, + "y": 380, + "index": 3, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 160, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 350 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 352 + }, + "max": { + "#": 353 + } + }, + { + "x": 140, + "y": 340 + }, + { + "x": 180, + "y": 380 + }, + { + "x": 160, + "y": 360 + }, + [ + { + "#": 356 + }, + { + "#": 357 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 17, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 359 + }, + "angle": 0, + "vertices": { + "#": 360 + }, + "position": { + "#": 365 + }, + "force": { + "#": 366 + }, + "torque": 0, + "positionImpulse": { + "#": 367 + }, + "constraintImpulse": { + "#": 368 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 369 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 370 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 371 + }, + "bounds": { + "#": 373 + }, + "positionPrev": { + "#": 376 + }, + "anglePrev": 0, + "axes": { + "#": 377 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 358 + }, + "sleepCounter": 0 + }, + [ + { + "#": 358 + } + ], + [ + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + } + ], + { + "x": 180, + "y": 340, + "index": 0, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 220, + "y": 340, + "index": 1, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 220, + "y": 380, + "index": 2, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 180, + "y": 380, + "index": 3, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 200, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 372 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 374 + }, + "max": { + "#": 375 + } + }, + { + "x": 180, + "y": 340 + }, + { + "x": 220, + "y": 380 + }, + { + "x": 200, + "y": 360 + }, + [ + { + "#": 378 + }, + { + "#": 379 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 18, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 381 + }, + "angle": 0, + "vertices": { + "#": 382 + }, + "position": { + "#": 387 + }, + "force": { + "#": 388 + }, + "torque": 0, + "positionImpulse": { + "#": 389 + }, + "constraintImpulse": { + "#": 390 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 391 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 392 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 393 + }, + "bounds": { + "#": 395 + }, + "positionPrev": { + "#": 398 + }, + "anglePrev": 0, + "axes": { + "#": 399 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 380 + }, + "sleepCounter": 0 + }, + [ + { + "#": 380 + } + ], + [ + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + } + ], + { + "x": 220, + "y": 340, + "index": 0, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 260, + "y": 340, + "index": 1, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 260, + "y": 380, + "index": 2, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 220, + "y": 380, + "index": 3, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 240, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 394 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 396 + }, + "max": { + "#": 397 + } + }, + { + "x": 220, + "y": 340 + }, + { + "x": 260, + "y": 380 + }, + { + "x": 240, + "y": 360 + }, + [ + { + "#": 400 + }, + { + "#": 401 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 19, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 403 + }, + "angle": 0, + "vertices": { + "#": 404 + }, + "position": { + "#": 409 + }, + "force": { + "#": 410 + }, + "torque": 0, + "positionImpulse": { + "#": 411 + }, + "constraintImpulse": { + "#": 412 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 413 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 414 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 415 + }, + "bounds": { + "#": 417 + }, + "positionPrev": { + "#": 420 + }, + "anglePrev": 0, + "axes": { + "#": 421 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 402 + }, + "sleepCounter": 0 + }, + [ + { + "#": 402 + } + ], + [ + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + } + ], + { + "x": 260, + "y": 340, + "index": 0, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 300, + "y": 340, + "index": 1, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 300, + "y": 380, + "index": 2, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 260, + "y": 380, + "index": 3, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 280, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 416 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 418 + }, + "max": { + "#": 419 + } + }, + { + "x": 260, + "y": 340 + }, + { + "x": 300, + "y": 380 + }, + { + "x": 280, + "y": 360 + }, + [ + { + "#": 422 + }, + { + "#": 423 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 20, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 425 + }, + "angle": 0, + "vertices": { + "#": 426 + }, + "position": { + "#": 431 + }, + "force": { + "#": 432 + }, + "torque": 0, + "positionImpulse": { + "#": 433 + }, + "constraintImpulse": { + "#": 434 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 435 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 436 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 437 + }, + "bounds": { + "#": 439 + }, + "positionPrev": { + "#": 442 + }, + "anglePrev": 0, + "axes": { + "#": 443 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 424 + }, + "sleepCounter": 0 + }, + [ + { + "#": 424 + } + ], + [ + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + } + ], + { + "x": 300, + "y": 340, + "index": 0, + "body": { + "#": 424 + }, + "isInternal": false + }, + { + "x": 340, + "y": 340, + "index": 1, + "body": { + "#": 424 + }, + "isInternal": false + }, + { + "x": 340, + "y": 380, + "index": 2, + "body": { + "#": 424 + }, + "isInternal": false + }, + { + "x": 300, + "y": 380, + "index": 3, + "body": { + "#": 424 + }, + "isInternal": false + }, + { + "x": 320, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 438 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 440 + }, + "max": { + "#": 441 + } + }, + { + "x": 300, + "y": 340 + }, + { + "x": 340, + "y": 380 + }, + { + "x": 320, + "y": 360 + }, + [ + { + "#": 444 + }, + { + "#": 445 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 21, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 447 + }, + "angle": 0, + "vertices": { + "#": 448 + }, + "position": { + "#": 453 + }, + "force": { + "#": 454 + }, + "torque": 0, + "positionImpulse": { + "#": 455 + }, + "constraintImpulse": { + "#": 456 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 457 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 458 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 459 + }, + "bounds": { + "#": 461 + }, + "positionPrev": { + "#": 464 + }, + "anglePrev": 0, + "axes": { + "#": 465 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 446 + }, + "sleepCounter": 0 + }, + [ + { + "#": 446 + } + ], + [ + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + } + ], + { + "x": 340, + "y": 340, + "index": 0, + "body": { + "#": 446 + }, + "isInternal": false + }, + { + "x": 380, + "y": 340, + "index": 1, + "body": { + "#": 446 + }, + "isInternal": false + }, + { + "x": 380, + "y": 380, + "index": 2, + "body": { + "#": 446 + }, + "isInternal": false + }, + { + "x": 340, + "y": 380, + "index": 3, + "body": { + "#": 446 + }, + "isInternal": false + }, + { + "x": 360, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 460 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 462 + }, + "max": { + "#": 463 + } + }, + { + "x": 340, + "y": 340 + }, + { + "x": 380, + "y": 380 + }, + { + "x": 360, + "y": 360 + }, + [ + { + "#": 466 + }, + { + "#": 467 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 22, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 469 + }, + "angle": 0, + "vertices": { + "#": 470 + }, + "position": { + "#": 475 + }, + "force": { + "#": 476 + }, + "torque": 0, + "positionImpulse": { + "#": 477 + }, + "constraintImpulse": { + "#": 478 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 479 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 480 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 481 + }, + "bounds": { + "#": 483 + }, + "positionPrev": { + "#": 486 + }, + "anglePrev": 0, + "axes": { + "#": 487 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 468 + }, + "sleepCounter": 0 + }, + [ + { + "#": 468 + } + ], + [ + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + } + ], + { + "x": 380, + "y": 340, + "index": 0, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 420, + "y": 340, + "index": 1, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 420, + "y": 380, + "index": 2, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 380, + "y": 380, + "index": 3, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 400, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 482 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 484 + }, + "max": { + "#": 485 + } + }, + { + "x": 380, + "y": 340 + }, + { + "x": 420, + "y": 380 + }, + { + "x": 400, + "y": 360 + }, + [ + { + "#": 488 + }, + { + "#": 489 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 23, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 491 + }, + "angle": 0, + "vertices": { + "#": 492 + }, + "position": { + "#": 497 + }, + "force": { + "#": 498 + }, + "torque": 0, + "positionImpulse": { + "#": 499 + }, + "constraintImpulse": { + "#": 500 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 501 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 502 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 503 + }, + "bounds": { + "#": 505 + }, + "positionPrev": { + "#": 508 + }, + "anglePrev": 0, + "axes": { + "#": 509 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 490 + }, + "sleepCounter": 0 + }, + [ + { + "#": 490 + } + ], + [ + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + } + ], + { + "x": 420, + "y": 340, + "index": 0, + "body": { + "#": 490 + }, + "isInternal": false + }, + { + "x": 460, + "y": 340, + "index": 1, + "body": { + "#": 490 + }, + "isInternal": false + }, + { + "x": 460, + "y": 380, + "index": 2, + "body": { + "#": 490 + }, + "isInternal": false + }, + { + "x": 420, + "y": 380, + "index": 3, + "body": { + "#": 490 + }, + "isInternal": false + }, + { + "x": 440, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 504 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 506 + }, + "max": { + "#": 507 + } + }, + { + "x": 420, + "y": 340 + }, + { + "x": 460, + "y": 380 + }, + { + "x": 440, + "y": 360 + }, + [ + { + "#": 510 + }, + { + "#": 511 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 24, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 513 + }, + "angle": 0, + "vertices": { + "#": 514 + }, + "position": { + "#": 519 + }, + "force": { + "#": 520 + }, + "torque": 0, + "positionImpulse": { + "#": 521 + }, + "constraintImpulse": { + "#": 522 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 523 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 524 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 525 + }, + "bounds": { + "#": 527 + }, + "positionPrev": { + "#": 530 + }, + "anglePrev": 0, + "axes": { + "#": 531 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 512 + }, + "sleepCounter": 0 + }, + [ + { + "#": 512 + } + ], + [ + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + } + ], + { + "x": 460, + "y": 340, + "index": 0, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 500, + "y": 340, + "index": 1, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 500, + "y": 380, + "index": 2, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 460, + "y": 380, + "index": 3, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 480, + "y": 360 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 526 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 528 + }, + "max": { + "#": 529 + } + }, + { + "x": 460, + "y": 340 + }, + { + "x": 500, + "y": 380 + }, + { + "x": 480, + "y": 360 + }, + [ + { + "#": 532 + }, + { + "#": 533 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 25, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 535 + }, + "angle": 0, + "vertices": { + "#": 536 + }, + "position": { + "#": 541 + }, + "force": { + "#": 542 + }, + "torque": 0, + "positionImpulse": { + "#": 543 + }, + "constraintImpulse": { + "#": 544 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 545 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 546 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 547 + }, + "bounds": { + "#": 549 + }, + "positionPrev": { + "#": 552 + }, + "anglePrev": 0, + "axes": { + "#": 553 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 534 + }, + "sleepCounter": 0 + }, + [ + { + "#": 534 + } + ], + [ + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + } + ], + { + "x": 100, + "y": 380, + "index": 0, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 140, + "y": 380, + "index": 1, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 140, + "y": 420, + "index": 2, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 100, + "y": 420, + "index": 3, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 120, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 548 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 550 + }, + "max": { + "#": 551 + } + }, + { + "x": 100, + "y": 380 + }, + { + "x": 140, + "y": 420 + }, + { + "x": 120, + "y": 400 + }, + [ + { + "#": 554 + }, + { + "#": 555 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 26, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 557 + }, + "angle": 0, + "vertices": { + "#": 558 + }, + "position": { + "#": 563 + }, + "force": { + "#": 564 + }, + "torque": 0, + "positionImpulse": { + "#": 565 + }, + "constraintImpulse": { + "#": 566 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 567 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 568 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 569 + }, + "bounds": { + "#": 571 + }, + "positionPrev": { + "#": 574 + }, + "anglePrev": 0, + "axes": { + "#": 575 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 556 + }, + "sleepCounter": 0 + }, + [ + { + "#": 556 + } + ], + [ + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + } + ], + { + "x": 140, + "y": 380, + "index": 0, + "body": { + "#": 556 + }, + "isInternal": false + }, + { + "x": 180, + "y": 380, + "index": 1, + "body": { + "#": 556 + }, + "isInternal": false + }, + { + "x": 180, + "y": 420, + "index": 2, + "body": { + "#": 556 + }, + "isInternal": false + }, + { + "x": 140, + "y": 420, + "index": 3, + "body": { + "#": 556 + }, + "isInternal": false + }, + { + "x": 160, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 570 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 572 + }, + "max": { + "#": 573 + } + }, + { + "x": 140, + "y": 380 + }, + { + "x": 180, + "y": 420 + }, + { + "x": 160, + "y": 400 + }, + [ + { + "#": 576 + }, + { + "#": 577 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 27, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 579 + }, + "angle": 0, + "vertices": { + "#": 580 + }, + "position": { + "#": 585 + }, + "force": { + "#": 586 + }, + "torque": 0, + "positionImpulse": { + "#": 587 + }, + "constraintImpulse": { + "#": 588 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 589 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 590 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 591 + }, + "bounds": { + "#": 593 + }, + "positionPrev": { + "#": 596 + }, + "anglePrev": 0, + "axes": { + "#": 597 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 578 + }, + "sleepCounter": 0 + }, + [ + { + "#": 578 + } + ], + [ + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + } + ], + { + "x": 180, + "y": 380, + "index": 0, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 220, + "y": 380, + "index": 1, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 220, + "y": 420, + "index": 2, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 180, + "y": 420, + "index": 3, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 200, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 592 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 594 + }, + "max": { + "#": 595 + } + }, + { + "x": 180, + "y": 380 + }, + { + "x": 220, + "y": 420 + }, + { + "x": 200, + "y": 400 + }, + [ + { + "#": 598 + }, + { + "#": 599 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 28, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 601 + }, + "angle": 0, + "vertices": { + "#": 602 + }, + "position": { + "#": 607 + }, + "force": { + "#": 608 + }, + "torque": 0, + "positionImpulse": { + "#": 609 + }, + "constraintImpulse": { + "#": 610 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 611 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 612 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 613 + }, + "bounds": { + "#": 615 + }, + "positionPrev": { + "#": 618 + }, + "anglePrev": 0, + "axes": { + "#": 619 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 600 + }, + "sleepCounter": 0 + }, + [ + { + "#": 600 + } + ], + [ + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + } + ], + { + "x": 220, + "y": 380, + "index": 0, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 260, + "y": 380, + "index": 1, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 260, + "y": 420, + "index": 2, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 220, + "y": 420, + "index": 3, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 240, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 614 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 616 + }, + "max": { + "#": 617 + } + }, + { + "x": 220, + "y": 380 + }, + { + "x": 260, + "y": 420 + }, + { + "x": 240, + "y": 400 + }, + [ + { + "#": 620 + }, + { + "#": 621 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 29, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 623 + }, + "angle": 0, + "vertices": { + "#": 624 + }, + "position": { + "#": 629 + }, + "force": { + "#": 630 + }, + "torque": 0, + "positionImpulse": { + "#": 631 + }, + "constraintImpulse": { + "#": 632 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 633 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 634 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 635 + }, + "bounds": { + "#": 637 + }, + "positionPrev": { + "#": 640 + }, + "anglePrev": 0, + "axes": { + "#": 641 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 622 + }, + "sleepCounter": 0 + }, + [ + { + "#": 622 + } + ], + [ + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + } + ], + { + "x": 260, + "y": 380, + "index": 0, + "body": { + "#": 622 + }, + "isInternal": false + }, + { + "x": 300, + "y": 380, + "index": 1, + "body": { + "#": 622 + }, + "isInternal": false + }, + { + "x": 300, + "y": 420, + "index": 2, + "body": { + "#": 622 + }, + "isInternal": false + }, + { + "x": 260, + "y": 420, + "index": 3, + "body": { + "#": 622 + }, + "isInternal": false + }, + { + "x": 280, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 636 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 638 + }, + "max": { + "#": 639 + } + }, + { + "x": 260, + "y": 380 + }, + { + "x": 300, + "y": 420 + }, + { + "x": 280, + "y": 400 + }, + [ + { + "#": 642 + }, + { + "#": 643 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 30, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 645 + }, + "angle": 0, + "vertices": { + "#": 646 + }, + "position": { + "#": 651 + }, + "force": { + "#": 652 + }, + "torque": 0, + "positionImpulse": { + "#": 653 + }, + "constraintImpulse": { + "#": 654 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 655 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 656 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 657 + }, + "bounds": { + "#": 659 + }, + "positionPrev": { + "#": 662 + }, + "anglePrev": 0, + "axes": { + "#": 663 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 644 + }, + "sleepCounter": 0 + }, + [ + { + "#": 644 + } + ], + [ + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + } + ], + { + "x": 300, + "y": 380, + "index": 0, + "body": { + "#": 644 + }, + "isInternal": false + }, + { + "x": 340, + "y": 380, + "index": 1, + "body": { + "#": 644 + }, + "isInternal": false + }, + { + "x": 340, + "y": 420, + "index": 2, + "body": { + "#": 644 + }, + "isInternal": false + }, + { + "x": 300, + "y": 420, + "index": 3, + "body": { + "#": 644 + }, + "isInternal": false + }, + { + "x": 320, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 658 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 660 + }, + "max": { + "#": 661 + } + }, + { + "x": 300, + "y": 380 + }, + { + "x": 340, + "y": 420 + }, + { + "x": 320, + "y": 400 + }, + [ + { + "#": 664 + }, + { + "#": 665 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 31, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 667 + }, + "angle": 0, + "vertices": { + "#": 668 + }, + "position": { + "#": 673 + }, + "force": { + "#": 674 + }, + "torque": 0, + "positionImpulse": { + "#": 675 + }, + "constraintImpulse": { + "#": 676 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 677 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 678 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 679 + }, + "bounds": { + "#": 681 + }, + "positionPrev": { + "#": 684 + }, + "anglePrev": 0, + "axes": { + "#": 685 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 666 + }, + "sleepCounter": 0 + }, + [ + { + "#": 666 + } + ], + [ + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + } + ], + { + "x": 340, + "y": 380, + "index": 0, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 380, + "y": 380, + "index": 1, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 380, + "y": 420, + "index": 2, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 340, + "y": 420, + "index": 3, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 360, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 680 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 682 + }, + "max": { + "#": 683 + } + }, + { + "x": 340, + "y": 380 + }, + { + "x": 380, + "y": 420 + }, + { + "x": 360, + "y": 400 + }, + [ + { + "#": 686 + }, + { + "#": 687 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 32, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 689 + }, + "angle": 0, + "vertices": { + "#": 690 + }, + "position": { + "#": 695 + }, + "force": { + "#": 696 + }, + "torque": 0, + "positionImpulse": { + "#": 697 + }, + "constraintImpulse": { + "#": 698 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 699 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 700 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 701 + }, + "bounds": { + "#": 703 + }, + "positionPrev": { + "#": 706 + }, + "anglePrev": 0, + "axes": { + "#": 707 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 688 + }, + "sleepCounter": 0 + }, + [ + { + "#": 688 + } + ], + [ + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + } + ], + { + "x": 380, + "y": 380, + "index": 0, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 420, + "y": 380, + "index": 1, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 420, + "y": 420, + "index": 2, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 380, + "y": 420, + "index": 3, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 400, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 702 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 704 + }, + "max": { + "#": 705 + } + }, + { + "x": 380, + "y": 380 + }, + { + "x": 420, + "y": 420 + }, + { + "x": 400, + "y": 400 + }, + [ + { + "#": 708 + }, + { + "#": 709 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 33, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 711 + }, + "angle": 0, + "vertices": { + "#": 712 + }, + "position": { + "#": 717 + }, + "force": { + "#": 718 + }, + "torque": 0, + "positionImpulse": { + "#": 719 + }, + "constraintImpulse": { + "#": 720 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 721 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 722 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 723 + }, + "bounds": { + "#": 725 + }, + "positionPrev": { + "#": 728 + }, + "anglePrev": 0, + "axes": { + "#": 729 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 710 + }, + "sleepCounter": 0 + }, + [ + { + "#": 710 + } + ], + [ + { + "#": 713 + }, + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + } + ], + { + "x": 420, + "y": 380, + "index": 0, + "body": { + "#": 710 + }, + "isInternal": false + }, + { + "x": 460, + "y": 380, + "index": 1, + "body": { + "#": 710 + }, + "isInternal": false + }, + { + "x": 460, + "y": 420, + "index": 2, + "body": { + "#": 710 + }, + "isInternal": false + }, + { + "x": 420, + "y": 420, + "index": 3, + "body": { + "#": 710 + }, + "isInternal": false + }, + { + "x": 440, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 724 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 726 + }, + "max": { + "#": 727 + } + }, + { + "x": 420, + "y": 380 + }, + { + "x": 460, + "y": 420 + }, + { + "x": 440, + "y": 400 + }, + [ + { + "#": 730 + }, + { + "#": 731 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 34, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 733 + }, + "angle": 0, + "vertices": { + "#": 734 + }, + "position": { + "#": 739 + }, + "force": { + "#": 740 + }, + "torque": 0, + "positionImpulse": { + "#": 741 + }, + "constraintImpulse": { + "#": 742 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 743 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 744 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 745 + }, + "bounds": { + "#": 747 + }, + "positionPrev": { + "#": 750 + }, + "anglePrev": 0, + "axes": { + "#": 751 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 732 + }, + "sleepCounter": 0 + }, + [ + { + "#": 732 + } + ], + [ + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + } + ], + { + "x": 460, + "y": 380, + "index": 0, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 500, + "y": 380, + "index": 1, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 500, + "y": 420, + "index": 2, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 460, + "y": 420, + "index": 3, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 480, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 746 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 748 + }, + "max": { + "#": 749 + } + }, + { + "x": 460, + "y": 380 + }, + { + "x": 500, + "y": 420 + }, + { + "x": 480, + "y": 400 + }, + [ + { + "#": 752 + }, + { + "#": 753 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 35, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 755 + }, + "angle": 0, + "vertices": { + "#": 756 + }, + "position": { + "#": 761 + }, + "force": { + "#": 762 + }, + "torque": 0, + "positionImpulse": { + "#": 763 + }, + "constraintImpulse": { + "#": 764 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 765 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 766 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 767 + }, + "bounds": { + "#": 769 + }, + "positionPrev": { + "#": 772 + }, + "anglePrev": 0, + "axes": { + "#": 773 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 754 + }, + "sleepCounter": 0 + }, + [ + { + "#": 754 + } + ], + [ + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + } + ], + { + "x": 100, + "y": 420, + "index": 0, + "body": { + "#": 754 + }, + "isInternal": false + }, + { + "x": 140, + "y": 420, + "index": 1, + "body": { + "#": 754 + }, + "isInternal": false + }, + { + "x": 140, + "y": 460, + "index": 2, + "body": { + "#": 754 + }, + "isInternal": false + }, + { + "x": 100, + "y": 460, + "index": 3, + "body": { + "#": 754 + }, + "isInternal": false + }, + { + "x": 120, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 768 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 770 + }, + "max": { + "#": 771 + } + }, + { + "x": 100, + "y": 420 + }, + { + "x": 140, + "y": 460 + }, + { + "x": 120, + "y": 440 + }, + [ + { + "#": 774 + }, + { + "#": 775 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 36, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 777 + }, + "angle": 0, + "vertices": { + "#": 778 + }, + "position": { + "#": 783 + }, + "force": { + "#": 784 + }, + "torque": 0, + "positionImpulse": { + "#": 785 + }, + "constraintImpulse": { + "#": 786 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 787 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 788 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 789 + }, + "bounds": { + "#": 791 + }, + "positionPrev": { + "#": 794 + }, + "anglePrev": 0, + "axes": { + "#": 795 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 776 + }, + "sleepCounter": 0 + }, + [ + { + "#": 776 + } + ], + [ + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + } + ], + { + "x": 140, + "y": 420, + "index": 0, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 180, + "y": 420, + "index": 1, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 180, + "y": 460, + "index": 2, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 140, + "y": 460, + "index": 3, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 160, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 790 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 792 + }, + "max": { + "#": 793 + } + }, + { + "x": 140, + "y": 420 + }, + { + "x": 180, + "y": 460 + }, + { + "x": 160, + "y": 440 + }, + [ + { + "#": 796 + }, + { + "#": 797 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 37, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 799 + }, + "angle": 0, + "vertices": { + "#": 800 + }, + "position": { + "#": 805 + }, + "force": { + "#": 806 + }, + "torque": 0, + "positionImpulse": { + "#": 807 + }, + "constraintImpulse": { + "#": 808 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 809 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 810 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 811 + }, + "bounds": { + "#": 813 + }, + "positionPrev": { + "#": 816 + }, + "anglePrev": 0, + "axes": { + "#": 817 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 798 + }, + "sleepCounter": 0 + }, + [ + { + "#": 798 + } + ], + [ + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + } + ], + { + "x": 180, + "y": 420, + "index": 0, + "body": { + "#": 798 + }, + "isInternal": false + }, + { + "x": 220, + "y": 420, + "index": 1, + "body": { + "#": 798 + }, + "isInternal": false + }, + { + "x": 220, + "y": 460, + "index": 2, + "body": { + "#": 798 + }, + "isInternal": false + }, + { + "x": 180, + "y": 460, + "index": 3, + "body": { + "#": 798 + }, + "isInternal": false + }, + { + "x": 200, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 812 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 814 + }, + "max": { + "#": 815 + } + }, + { + "x": 180, + "y": 420 + }, + { + "x": 220, + "y": 460 + }, + { + "x": 200, + "y": 440 + }, + [ + { + "#": 818 + }, + { + "#": 819 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 38, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 821 + }, + "angle": 0, + "vertices": { + "#": 822 + }, + "position": { + "#": 827 + }, + "force": { + "#": 828 + }, + "torque": 0, + "positionImpulse": { + "#": 829 + }, + "constraintImpulse": { + "#": 830 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 831 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 832 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 833 + }, + "bounds": { + "#": 835 + }, + "positionPrev": { + "#": 838 + }, + "anglePrev": 0, + "axes": { + "#": 839 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 820 + }, + "sleepCounter": 0 + }, + [ + { + "#": 820 + } + ], + [ + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + } + ], + { + "x": 220, + "y": 420, + "index": 0, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 260, + "y": 420, + "index": 1, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 260, + "y": 460, + "index": 2, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 220, + "y": 460, + "index": 3, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 240, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 834 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 836 + }, + "max": { + "#": 837 + } + }, + { + "x": 220, + "y": 420 + }, + { + "x": 260, + "y": 460 + }, + { + "x": 240, + "y": 440 + }, + [ + { + "#": 840 + }, + { + "#": 841 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 39, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 843 + }, + "angle": 0, + "vertices": { + "#": 844 + }, + "position": { + "#": 849 + }, + "force": { + "#": 850 + }, + "torque": 0, + "positionImpulse": { + "#": 851 + }, + "constraintImpulse": { + "#": 852 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 853 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 854 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 855 + }, + "bounds": { + "#": 857 + }, + "positionPrev": { + "#": 860 + }, + "anglePrev": 0, + "axes": { + "#": 861 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 842 + }, + "sleepCounter": 0 + }, + [ + { + "#": 842 + } + ], + [ + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + } + ], + { + "x": 260, + "y": 420, + "index": 0, + "body": { + "#": 842 + }, + "isInternal": false + }, + { + "x": 300, + "y": 420, + "index": 1, + "body": { + "#": 842 + }, + "isInternal": false + }, + { + "x": 300, + "y": 460, + "index": 2, + "body": { + "#": 842 + }, + "isInternal": false + }, + { + "x": 260, + "y": 460, + "index": 3, + "body": { + "#": 842 + }, + "isInternal": false + }, + { + "x": 280, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 856 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 858 + }, + "max": { + "#": 859 + } + }, + { + "x": 260, + "y": 420 + }, + { + "x": 300, + "y": 460 + }, + { + "x": 280, + "y": 440 + }, + [ + { + "#": 862 + }, + { + "#": 863 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 40, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 865 + }, + "angle": 0, + "vertices": { + "#": 866 + }, + "position": { + "#": 871 + }, + "force": { + "#": 872 + }, + "torque": 0, + "positionImpulse": { + "#": 873 + }, + "constraintImpulse": { + "#": 874 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 875 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 876 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 877 + }, + "bounds": { + "#": 879 + }, + "positionPrev": { + "#": 882 + }, + "anglePrev": 0, + "axes": { + "#": 883 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 864 + }, + "sleepCounter": 0 + }, + [ + { + "#": 864 + } + ], + [ + { + "#": 867 + }, + { + "#": 868 + }, + { + "#": 869 + }, + { + "#": 870 + } + ], + { + "x": 300, + "y": 420, + "index": 0, + "body": { + "#": 864 + }, + "isInternal": false + }, + { + "x": 340, + "y": 420, + "index": 1, + "body": { + "#": 864 + }, + "isInternal": false + }, + { + "x": 340, + "y": 460, + "index": 2, + "body": { + "#": 864 + }, + "isInternal": false + }, + { + "x": 300, + "y": 460, + "index": 3, + "body": { + "#": 864 + }, + "isInternal": false + }, + { + "x": 320, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 878 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 880 + }, + "max": { + "#": 881 + } + }, + { + "x": 300, + "y": 420 + }, + { + "x": 340, + "y": 460 + }, + { + "x": 320, + "y": 440 + }, + [ + { + "#": 884 + }, + { + "#": 885 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 41, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 887 + }, + "angle": 0, + "vertices": { + "#": 888 + }, + "position": { + "#": 893 + }, + "force": { + "#": 894 + }, + "torque": 0, + "positionImpulse": { + "#": 895 + }, + "constraintImpulse": { + "#": 896 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 897 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 898 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 899 + }, + "bounds": { + "#": 901 + }, + "positionPrev": { + "#": 904 + }, + "anglePrev": 0, + "axes": { + "#": 905 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 886 + }, + "sleepCounter": 0 + }, + [ + { + "#": 886 + } + ], + [ + { + "#": 889 + }, + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + } + ], + { + "x": 340, + "y": 420, + "index": 0, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 380, + "y": 420, + "index": 1, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 380, + "y": 460, + "index": 2, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 340, + "y": 460, + "index": 3, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 360, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 900 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 902 + }, + "max": { + "#": 903 + } + }, + { + "x": 340, + "y": 420 + }, + { + "x": 380, + "y": 460 + }, + { + "x": 360, + "y": 440 + }, + [ + { + "#": 906 + }, + { + "#": 907 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 42, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 909 + }, + "angle": 0, + "vertices": { + "#": 910 + }, + "position": { + "#": 915 + }, + "force": { + "#": 916 + }, + "torque": 0, + "positionImpulse": { + "#": 917 + }, + "constraintImpulse": { + "#": 918 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 919 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 920 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 921 + }, + "bounds": { + "#": 923 + }, + "positionPrev": { + "#": 926 + }, + "anglePrev": 0, + "axes": { + "#": 927 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 908 + }, + "sleepCounter": 0 + }, + [ + { + "#": 908 + } + ], + [ + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + } + ], + { + "x": 380, + "y": 420, + "index": 0, + "body": { + "#": 908 + }, + "isInternal": false + }, + { + "x": 420, + "y": 420, + "index": 1, + "body": { + "#": 908 + }, + "isInternal": false + }, + { + "x": 420, + "y": 460, + "index": 2, + "body": { + "#": 908 + }, + "isInternal": false + }, + { + "x": 380, + "y": 460, + "index": 3, + "body": { + "#": 908 + }, + "isInternal": false + }, + { + "x": 400, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 922 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 924 + }, + "max": { + "#": 925 + } + }, + { + "x": 380, + "y": 420 + }, + { + "x": 420, + "y": 460 + }, + { + "x": 400, + "y": 440 + }, + [ + { + "#": 928 + }, + { + "#": 929 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 43, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 931 + }, + "angle": 0, + "vertices": { + "#": 932 + }, + "position": { + "#": 937 + }, + "force": { + "#": 938 + }, + "torque": 0, + "positionImpulse": { + "#": 939 + }, + "constraintImpulse": { + "#": 940 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 941 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 942 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 943 + }, + "bounds": { + "#": 945 + }, + "positionPrev": { + "#": 948 + }, + "anglePrev": 0, + "axes": { + "#": 949 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 930 + }, + "sleepCounter": 0 + }, + [ + { + "#": 930 + } + ], + [ + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + } + ], + { + "x": 420, + "y": 420, + "index": 0, + "body": { + "#": 930 + }, + "isInternal": false + }, + { + "x": 460, + "y": 420, + "index": 1, + "body": { + "#": 930 + }, + "isInternal": false + }, + { + "x": 460, + "y": 460, + "index": 2, + "body": { + "#": 930 + }, + "isInternal": false + }, + { + "x": 420, + "y": 460, + "index": 3, + "body": { + "#": 930 + }, + "isInternal": false + }, + { + "x": 440, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 944 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 946 + }, + "max": { + "#": 947 + } + }, + { + "x": 420, + "y": 420 + }, + { + "x": 460, + "y": 460 + }, + { + "x": 440, + "y": 440 + }, + [ + { + "#": 950 + }, + { + "#": 951 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 44, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 953 + }, + "angle": 0, + "vertices": { + "#": 954 + }, + "position": { + "#": 959 + }, + "force": { + "#": 960 + }, + "torque": 0, + "positionImpulse": { + "#": 961 + }, + "constraintImpulse": { + "#": 962 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 963 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 964 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 965 + }, + "bounds": { + "#": 967 + }, + "positionPrev": { + "#": 970 + }, + "anglePrev": 0, + "axes": { + "#": 971 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 952 + }, + "sleepCounter": 0 + }, + [ + { + "#": 952 + } + ], + [ + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + } + ], + { + "x": 460, + "y": 420, + "index": 0, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 500, + "y": 420, + "index": 1, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 500, + "y": 460, + "index": 2, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 460, + "y": 460, + "index": 3, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 480, + "y": 440 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 966 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 968 + }, + "max": { + "#": 969 + } + }, + { + "x": 460, + "y": 420 + }, + { + "x": 500, + "y": 460 + }, + { + "x": 480, + "y": 440 + }, + [ + { + "#": 972 + }, + { + "#": 973 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 45, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 975 + }, + "angle": 0, + "vertices": { + "#": 976 + }, + "position": { + "#": 981 + }, + "force": { + "#": 982 + }, + "torque": 0, + "positionImpulse": { + "#": 983 + }, + "constraintImpulse": { + "#": 984 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 985 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 986 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 987 + }, + "bounds": { + "#": 989 + }, + "positionPrev": { + "#": 992 + }, + "anglePrev": 0, + "axes": { + "#": 993 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 974 + }, + "sleepCounter": 0 + }, + [ + { + "#": 974 + } + ], + [ + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + }, + { + "#": 980 + } + ], + { + "x": 100, + "y": 460, + "index": 0, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 140, + "y": 460, + "index": 1, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 140, + "y": 500, + "index": 2, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 100, + "y": 500, + "index": 3, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 120, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 988 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 990 + }, + "max": { + "#": 991 + } + }, + { + "x": 100, + "y": 460 + }, + { + "x": 140, + "y": 500 + }, + { + "x": 120, + "y": 480 + }, + [ + { + "#": 994 + }, + { + "#": 995 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 46, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 997 + }, + "angle": 0, + "vertices": { + "#": 998 + }, + "position": { + "#": 1003 + }, + "force": { + "#": 1004 + }, + "torque": 0, + "positionImpulse": { + "#": 1005 + }, + "constraintImpulse": { + "#": 1006 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1007 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1008 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1009 + }, + "bounds": { + "#": 1011 + }, + "positionPrev": { + "#": 1014 + }, + "anglePrev": 0, + "axes": { + "#": 1015 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 996 + }, + "sleepCounter": 0 + }, + [ + { + "#": 996 + } + ], + [ + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + }, + { + "#": 1002 + } + ], + { + "x": 140, + "y": 460, + "index": 0, + "body": { + "#": 996 + }, + "isInternal": false + }, + { + "x": 180, + "y": 460, + "index": 1, + "body": { + "#": 996 + }, + "isInternal": false + }, + { + "x": 180, + "y": 500, + "index": 2, + "body": { + "#": 996 + }, + "isInternal": false + }, + { + "x": 140, + "y": 500, + "index": 3, + "body": { + "#": 996 + }, + "isInternal": false + }, + { + "x": 160, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1010 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1012 + }, + "max": { + "#": 1013 + } + }, + { + "x": 140, + "y": 460 + }, + { + "x": 180, + "y": 500 + }, + { + "x": 160, + "y": 480 + }, + [ + { + "#": 1016 + }, + { + "#": 1017 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 47, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1019 + }, + "angle": 0, + "vertices": { + "#": 1020 + }, + "position": { + "#": 1025 + }, + "force": { + "#": 1026 + }, + "torque": 0, + "positionImpulse": { + "#": 1027 + }, + "constraintImpulse": { + "#": 1028 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1029 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1030 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1031 + }, + "bounds": { + "#": 1033 + }, + "positionPrev": { + "#": 1036 + }, + "anglePrev": 0, + "axes": { + "#": 1037 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1018 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1018 + } + ], + [ + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + } + ], + { + "x": 180, + "y": 460, + "index": 0, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 220, + "y": 460, + "index": 1, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 220, + "y": 500, + "index": 2, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 180, + "y": 500, + "index": 3, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 200, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1032 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1034 + }, + "max": { + "#": 1035 + } + }, + { + "x": 180, + "y": 460 + }, + { + "x": 220, + "y": 500 + }, + { + "x": 200, + "y": 480 + }, + [ + { + "#": 1038 + }, + { + "#": 1039 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 48, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1041 + }, + "angle": 0, + "vertices": { + "#": 1042 + }, + "position": { + "#": 1047 + }, + "force": { + "#": 1048 + }, + "torque": 0, + "positionImpulse": { + "#": 1049 + }, + "constraintImpulse": { + "#": 1050 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1051 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1052 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1053 + }, + "bounds": { + "#": 1055 + }, + "positionPrev": { + "#": 1058 + }, + "anglePrev": 0, + "axes": { + "#": 1059 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1040 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1040 + } + ], + [ + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + } + ], + { + "x": 220, + "y": 460, + "index": 0, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 260, + "y": 460, + "index": 1, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 260, + "y": 500, + "index": 2, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 220, + "y": 500, + "index": 3, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 240, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1054 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1056 + }, + "max": { + "#": 1057 + } + }, + { + "x": 220, + "y": 460 + }, + { + "x": 260, + "y": 500 + }, + { + "x": 240, + "y": 480 + }, + [ + { + "#": 1060 + }, + { + "#": 1061 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 49, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1063 + }, + "angle": 0, + "vertices": { + "#": 1064 + }, + "position": { + "#": 1069 + }, + "force": { + "#": 1070 + }, + "torque": 0, + "positionImpulse": { + "#": 1071 + }, + "constraintImpulse": { + "#": 1072 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1073 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1074 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1075 + }, + "bounds": { + "#": 1077 + }, + "positionPrev": { + "#": 1080 + }, + "anglePrev": 0, + "axes": { + "#": 1081 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1062 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1062 + } + ], + [ + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + } + ], + { + "x": 260, + "y": 460, + "index": 0, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 300, + "y": 460, + "index": 1, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 300, + "y": 500, + "index": 2, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 260, + "y": 500, + "index": 3, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 280, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1076 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1078 + }, + "max": { + "#": 1079 + } + }, + { + "x": 260, + "y": 460 + }, + { + "x": 300, + "y": 500 + }, + { + "x": 280, + "y": 480 + }, + [ + { + "#": 1082 + }, + { + "#": 1083 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 50, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1085 + }, + "angle": 0, + "vertices": { + "#": 1086 + }, + "position": { + "#": 1091 + }, + "force": { + "#": 1092 + }, + "torque": 0, + "positionImpulse": { + "#": 1093 + }, + "constraintImpulse": { + "#": 1094 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1095 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1096 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1097 + }, + "bounds": { + "#": 1099 + }, + "positionPrev": { + "#": 1102 + }, + "anglePrev": 0, + "axes": { + "#": 1103 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1084 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1084 + } + ], + [ + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + } + ], + { + "x": 300, + "y": 460, + "index": 0, + "body": { + "#": 1084 + }, + "isInternal": false + }, + { + "x": 340, + "y": 460, + "index": 1, + "body": { + "#": 1084 + }, + "isInternal": false + }, + { + "x": 340, + "y": 500, + "index": 2, + "body": { + "#": 1084 + }, + "isInternal": false + }, + { + "x": 300, + "y": 500, + "index": 3, + "body": { + "#": 1084 + }, + "isInternal": false + }, + { + "x": 320, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1098 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1100 + }, + "max": { + "#": 1101 + } + }, + { + "x": 300, + "y": 460 + }, + { + "x": 340, + "y": 500 + }, + { + "x": 320, + "y": 480 + }, + [ + { + "#": 1104 + }, + { + "#": 1105 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 51, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1107 + }, + "angle": 0, + "vertices": { + "#": 1108 + }, + "position": { + "#": 1113 + }, + "force": { + "#": 1114 + }, + "torque": 0, + "positionImpulse": { + "#": 1115 + }, + "constraintImpulse": { + "#": 1116 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1117 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1118 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1119 + }, + "bounds": { + "#": 1121 + }, + "positionPrev": { + "#": 1124 + }, + "anglePrev": 0, + "axes": { + "#": 1125 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1106 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1106 + } + ], + [ + { + "#": 1109 + }, + { + "#": 1110 + }, + { + "#": 1111 + }, + { + "#": 1112 + } + ], + { + "x": 340, + "y": 460, + "index": 0, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 380, + "y": 460, + "index": 1, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 380, + "y": 500, + "index": 2, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 340, + "y": 500, + "index": 3, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 360, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1120 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1122 + }, + "max": { + "#": 1123 + } + }, + { + "x": 340, + "y": 460 + }, + { + "x": 380, + "y": 500 + }, + { + "x": 360, + "y": 480 + }, + [ + { + "#": 1126 + }, + { + "#": 1127 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 52, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1129 + }, + "angle": 0, + "vertices": { + "#": 1130 + }, + "position": { + "#": 1135 + }, + "force": { + "#": 1136 + }, + "torque": 0, + "positionImpulse": { + "#": 1137 + }, + "constraintImpulse": { + "#": 1138 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1139 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1140 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1141 + }, + "bounds": { + "#": 1143 + }, + "positionPrev": { + "#": 1146 + }, + "anglePrev": 0, + "axes": { + "#": 1147 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1128 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1128 + } + ], + [ + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + } + ], + { + "x": 380, + "y": 460, + "index": 0, + "body": { + "#": 1128 + }, + "isInternal": false + }, + { + "x": 420, + "y": 460, + "index": 1, + "body": { + "#": 1128 + }, + "isInternal": false + }, + { + "x": 420, + "y": 500, + "index": 2, + "body": { + "#": 1128 + }, + "isInternal": false + }, + { + "x": 380, + "y": 500, + "index": 3, + "body": { + "#": 1128 + }, + "isInternal": false + }, + { + "x": 400, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1142 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1144 + }, + "max": { + "#": 1145 + } + }, + { + "x": 380, + "y": 460 + }, + { + "x": 420, + "y": 500 + }, + { + "x": 400, + "y": 480 + }, + [ + { + "#": 1148 + }, + { + "#": 1149 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 53, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1151 + }, + "angle": 0, + "vertices": { + "#": 1152 + }, + "position": { + "#": 1157 + }, + "force": { + "#": 1158 + }, + "torque": 0, + "positionImpulse": { + "#": 1159 + }, + "constraintImpulse": { + "#": 1160 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1161 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1162 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1163 + }, + "bounds": { + "#": 1165 + }, + "positionPrev": { + "#": 1168 + }, + "anglePrev": 0, + "axes": { + "#": 1169 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1150 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1150 + } + ], + [ + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + }, + { + "#": 1156 + } + ], + { + "x": 420, + "y": 460, + "index": 0, + "body": { + "#": 1150 + }, + "isInternal": false + }, + { + "x": 460, + "y": 460, + "index": 1, + "body": { + "#": 1150 + }, + "isInternal": false + }, + { + "x": 460, + "y": 500, + "index": 2, + "body": { + "#": 1150 + }, + "isInternal": false + }, + { + "x": 420, + "y": 500, + "index": 3, + "body": { + "#": 1150 + }, + "isInternal": false + }, + { + "x": 440, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1164 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1166 + }, + "max": { + "#": 1167 + } + }, + { + "x": 420, + "y": 460 + }, + { + "x": 460, + "y": 500 + }, + { + "x": 440, + "y": 480 + }, + [ + { + "#": 1170 + }, + { + "#": 1171 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 54, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1173 + }, + "angle": 0, + "vertices": { + "#": 1174 + }, + "position": { + "#": 1179 + }, + "force": { + "#": 1180 + }, + "torque": 0, + "positionImpulse": { + "#": 1181 + }, + "constraintImpulse": { + "#": 1182 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1183 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1184 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1185 + }, + "bounds": { + "#": 1187 + }, + "positionPrev": { + "#": 1190 + }, + "anglePrev": 0, + "axes": { + "#": 1191 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1172 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1172 + } + ], + [ + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + } + ], + { + "x": 460, + "y": 460, + "index": 0, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 500, + "y": 460, + "index": 1, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 500, + "y": 500, + "index": 2, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 460, + "y": 500, + "index": 3, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 480, + "y": 480 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1186 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1188 + }, + "max": { + "#": 1189 + } + }, + { + "x": 460, + "y": 460 + }, + { + "x": 500, + "y": 500 + }, + { + "x": 480, + "y": 480 + }, + [ + { + "#": 1192 + }, + { + "#": 1193 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 1198 + }, + "max": { + "#": 1199 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/stack/stack-10.json b/test/node/refs/stack/stack-10.json new file mode 100644 index 00000000..2d02aeae --- /dev/null +++ b/test/node/refs/stack/stack-10.json @@ -0,0 +1,11548 @@ +[ + { + "id": 158, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 94 + }, + "composites": { + "#": 95 + }, + "label": "World", + "gravity": { + "#": 1250 + }, + "bounds": { + "#": 1251 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + [], + [ + { + "#": 96 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 97 + }, + "constraints": { + "#": 1248 + }, + "composites": { + "#": 1249 + }, + "label": "Stack" + }, + [ + { + "#": 98 + }, + { + "#": 121 + }, + { + "#": 144 + }, + { + "#": 167 + }, + { + "#": 190 + }, + { + "#": 213 + }, + { + "#": 236 + }, + { + "#": 259 + }, + { + "#": 282 + }, + { + "#": 305 + }, + { + "#": 328 + }, + { + "#": 351 + }, + { + "#": 374 + }, + { + "#": 397 + }, + { + "#": 420 + }, + { + "#": 443 + }, + { + "#": 466 + }, + { + "#": 489 + }, + { + "#": 512 + }, + { + "#": 535 + }, + { + "#": 558 + }, + { + "#": 581 + }, + { + "#": 604 + }, + { + "#": 627 + }, + { + "#": 650 + }, + { + "#": 673 + }, + { + "#": 696 + }, + { + "#": 719 + }, + { + "#": 742 + }, + { + "#": 765 + }, + { + "#": 788 + }, + { + "#": 811 + }, + { + "#": 834 + }, + { + "#": 857 + }, + { + "#": 880 + }, + { + "#": 903 + }, + { + "#": 926 + }, + { + "#": 949 + }, + { + "#": 972 + }, + { + "#": 995 + }, + { + "#": 1018 + }, + { + "#": 1041 + }, + { + "#": 1064 + }, + { + "#": 1087 + }, + { + "#": 1110 + }, + { + "#": 1133 + }, + { + "#": 1156 + }, + { + "#": 1179 + }, + { + "#": 1202 + }, + { + "#": 1225 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 99 + }, + "angle": 0, + "vertices": { + "#": 100 + }, + "position": { + "#": 105 + }, + "force": { + "#": 106 + }, + "torque": 0, + "positionImpulse": { + "#": 107 + }, + "constraintImpulse": { + "#": 108 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 109 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 110 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 111 + }, + "bounds": { + "#": 113 + }, + "positionPrev": { + "#": 116 + }, + "anglePrev": 0, + "axes": { + "#": 117 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 98 + }, + "sleepCounter": 0, + "region": { + "#": 120 + } + }, + [ + { + "#": 98 + } + ], + [ + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + } + ], + { + "x": 100, + "y": 317.73575, + "index": 0, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 140, + "y": 317.73575, + "index": 1, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 140, + "y": 357.73575, + "index": 2, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 100, + "y": 357.73575, + "index": 3, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 120, + "y": 337.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 112 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 114 + }, + "max": { + "#": 115 + } + }, + { + "x": 100, + "y": 317.73575 + }, + { + "x": 140, + "y": 357.73575 + }, + { + "x": 120, + "y": 334.82848 + }, + [ + { + "#": 118 + }, + { + "#": 119 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,6,7", + "startCol": 2, + "endCol": 2, + "startRow": 6, + "endRow": 7 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 122 + }, + "angle": 0, + "vertices": { + "#": 123 + }, + "position": { + "#": 128 + }, + "force": { + "#": 129 + }, + "torque": 0, + "positionImpulse": { + "#": 130 + }, + "constraintImpulse": { + "#": 131 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 132 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 133 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 134 + }, + "bounds": { + "#": 136 + }, + "positionPrev": { + "#": 139 + }, + "anglePrev": 0, + "axes": { + "#": 140 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 121 + }, + "sleepCounter": 0, + "region": { + "#": 143 + } + }, + [ + { + "#": 121 + } + ], + [ + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + } + ], + { + "x": 140, + "y": 317.73575, + "index": 0, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 180, + "y": 317.73575, + "index": 1, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 180, + "y": 357.73575, + "index": 2, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 140, + "y": 357.73575, + "index": 3, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 160, + "y": 337.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 135 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 137 + }, + "max": { + "#": 138 + } + }, + { + "x": 140, + "y": 317.73575 + }, + { + "x": 180, + "y": 357.73575 + }, + { + "x": 160, + "y": 334.82848 + }, + [ + { + "#": 141 + }, + { + "#": 142 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,6,7", + "startCol": 2, + "endCol": 3, + "startRow": 6, + "endRow": 7 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 145 + }, + "angle": 0, + "vertices": { + "#": 146 + }, + "position": { + "#": 151 + }, + "force": { + "#": 152 + }, + "torque": 0, + "positionImpulse": { + "#": 153 + }, + "constraintImpulse": { + "#": 154 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 155 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 156 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 157 + }, + "bounds": { + "#": 159 + }, + "positionPrev": { + "#": 162 + }, + "anglePrev": 0, + "axes": { + "#": 163 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 144 + }, + "sleepCounter": 0, + "region": { + "#": 166 + } + }, + [ + { + "#": 144 + } + ], + [ + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + } + ], + { + "x": 180, + "y": 317.73575, + "index": 0, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 220, + "y": 317.73575, + "index": 1, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 220, + "y": 357.73575, + "index": 2, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 180, + "y": 357.73575, + "index": 3, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 200, + "y": 337.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 158 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 160 + }, + "max": { + "#": 161 + } + }, + { + "x": 180, + "y": 317.73575 + }, + { + "x": 220, + "y": 357.73575 + }, + { + "x": 200, + "y": 334.82848 + }, + [ + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,6,7", + "startCol": 3, + "endCol": 4, + "startRow": 6, + "endRow": 7 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 168 + }, + "angle": 0, + "vertices": { + "#": 169 + }, + "position": { + "#": 174 + }, + "force": { + "#": 175 + }, + "torque": 0, + "positionImpulse": { + "#": 176 + }, + "constraintImpulse": { + "#": 177 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 178 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 179 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 180 + }, + "bounds": { + "#": 182 + }, + "positionPrev": { + "#": 185 + }, + "anglePrev": 0, + "axes": { + "#": 186 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 167 + }, + "sleepCounter": 0, + "region": { + "#": 189 + } + }, + [ + { + "#": 167 + } + ], + [ + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + } + ], + { + "x": 220, + "y": 317.73575, + "index": 0, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 260, + "y": 317.73575, + "index": 1, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 260, + "y": 357.73575, + "index": 2, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 220, + "y": 357.73575, + "index": 3, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 240, + "y": 337.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 181 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 183 + }, + "max": { + "#": 184 + } + }, + { + "x": 220, + "y": 317.73575 + }, + { + "x": 260, + "y": 357.73575 + }, + { + "x": 240, + "y": 334.82848 + }, + [ + { + "#": 187 + }, + { + "#": 188 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,6,7", + "startCol": 4, + "endCol": 5, + "startRow": 6, + "endRow": 7 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 191 + }, + "angle": 0, + "vertices": { + "#": 192 + }, + "position": { + "#": 197 + }, + "force": { + "#": 198 + }, + "torque": 0, + "positionImpulse": { + "#": 199 + }, + "constraintImpulse": { + "#": 200 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 201 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 202 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 203 + }, + "bounds": { + "#": 205 + }, + "positionPrev": { + "#": 208 + }, + "anglePrev": 0, + "axes": { + "#": 209 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 190 + }, + "sleepCounter": 0, + "region": { + "#": 212 + } + }, + [ + { + "#": 190 + } + ], + [ + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + } + ], + { + "x": 260, + "y": 317.73575, + "index": 0, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 300, + "y": 317.73575, + "index": 1, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 300, + "y": 357.73575, + "index": 2, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 260, + "y": 357.73575, + "index": 3, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 280, + "y": 337.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 204 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 206 + }, + "max": { + "#": 207 + } + }, + { + "x": 260, + "y": 317.73575 + }, + { + "x": 300, + "y": 357.73575 + }, + { + "x": 280, + "y": 334.82848 + }, + [ + { + "#": 210 + }, + { + "#": 211 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,6,7", + "startCol": 5, + "endCol": 6, + "startRow": 6, + "endRow": 7 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 214 + }, + "angle": 0, + "vertices": { + "#": 215 + }, + "position": { + "#": 220 + }, + "force": { + "#": 221 + }, + "torque": 0, + "positionImpulse": { + "#": 222 + }, + "constraintImpulse": { + "#": 223 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 224 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 225 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 226 + }, + "bounds": { + "#": 228 + }, + "positionPrev": { + "#": 231 + }, + "anglePrev": 0, + "axes": { + "#": 232 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 213 + }, + "sleepCounter": 0, + "region": { + "#": 235 + } + }, + [ + { + "#": 213 + } + ], + [ + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + } + ], + { + "x": 300, + "y": 317.73575, + "index": 0, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 340, + "y": 317.73575, + "index": 1, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 340, + "y": 357.73575, + "index": 2, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 300, + "y": 357.73575, + "index": 3, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 320, + "y": 337.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 227 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 229 + }, + "max": { + "#": 230 + } + }, + { + "x": 300, + "y": 317.73575 + }, + { + "x": 340, + "y": 357.73575 + }, + { + "x": 320, + "y": 334.82848 + }, + [ + { + "#": 233 + }, + { + "#": 234 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,6,7", + "startCol": 6, + "endCol": 7, + "startRow": 6, + "endRow": 7 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 237 + }, + "angle": 0, + "vertices": { + "#": 238 + }, + "position": { + "#": 243 + }, + "force": { + "#": 244 + }, + "torque": 0, + "positionImpulse": { + "#": 245 + }, + "constraintImpulse": { + "#": 246 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 247 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 248 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 249 + }, + "bounds": { + "#": 251 + }, + "positionPrev": { + "#": 254 + }, + "anglePrev": 0, + "axes": { + "#": 255 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 236 + }, + "sleepCounter": 0, + "region": { + "#": 258 + } + }, + [ + { + "#": 236 + } + ], + [ + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + } + ], + { + "x": 340, + "y": 317.73575, + "index": 0, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 380, + "y": 317.73575, + "index": 1, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 380, + "y": 357.73575, + "index": 2, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 340, + "y": 357.73575, + "index": 3, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 360, + "y": 337.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 250 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 252 + }, + "max": { + "#": 253 + } + }, + { + "x": 340, + "y": 317.73575 + }, + { + "x": 380, + "y": 357.73575 + }, + { + "x": 360, + "y": 334.82848 + }, + [ + { + "#": 256 + }, + { + "#": 257 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,6,7", + "startCol": 7, + "endCol": 7, + "startRow": 6, + "endRow": 7 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 260 + }, + "angle": 0, + "vertices": { + "#": 261 + }, + "position": { + "#": 266 + }, + "force": { + "#": 267 + }, + "torque": 0, + "positionImpulse": { + "#": 268 + }, + "constraintImpulse": { + "#": 269 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 270 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 271 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 272 + }, + "bounds": { + "#": 274 + }, + "positionPrev": { + "#": 277 + }, + "anglePrev": 0, + "axes": { + "#": 278 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 259 + }, + "sleepCounter": 0, + "region": { + "#": 281 + } + }, + [ + { + "#": 259 + } + ], + [ + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + } + ], + { + "x": 380, + "y": 317.73575, + "index": 0, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 420, + "y": 317.73575, + "index": 1, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 420, + "y": 357.73575, + "index": 2, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 380, + "y": 357.73575, + "index": 3, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 400, + "y": 337.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 273 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 275 + }, + "max": { + "#": 276 + } + }, + { + "x": 380, + "y": 317.73575 + }, + { + "x": 420, + "y": 357.73575 + }, + { + "x": 400, + "y": 334.82848 + }, + [ + { + "#": 279 + }, + { + "#": 280 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,6,7", + "startCol": 7, + "endCol": 8, + "startRow": 6, + "endRow": 7 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 283 + }, + "angle": 0, + "vertices": { + "#": 284 + }, + "position": { + "#": 289 + }, + "force": { + "#": 290 + }, + "torque": 0, + "positionImpulse": { + "#": 291 + }, + "constraintImpulse": { + "#": 292 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 293 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 294 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 295 + }, + "bounds": { + "#": 297 + }, + "positionPrev": { + "#": 300 + }, + "anglePrev": 0, + "axes": { + "#": 301 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 282 + }, + "sleepCounter": 0, + "region": { + "#": 304 + } + }, + [ + { + "#": 282 + } + ], + [ + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + } + ], + { + "x": 420, + "y": 317.73575, + "index": 0, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 460, + "y": 317.73575, + "index": 1, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 460, + "y": 357.73575, + "index": 2, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 420, + "y": 357.73575, + "index": 3, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 440, + "y": 337.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 296 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 298 + }, + "max": { + "#": 299 + } + }, + { + "x": 420, + "y": 317.73575 + }, + { + "x": 460, + "y": 357.73575 + }, + { + "x": 440, + "y": 334.82848 + }, + [ + { + "#": 302 + }, + { + "#": 303 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,6,7", + "startCol": 8, + "endCol": 9, + "startRow": 6, + "endRow": 7 + }, + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 306 + }, + "angle": 0, + "vertices": { + "#": 307 + }, + "position": { + "#": 312 + }, + "force": { + "#": 313 + }, + "torque": 0, + "positionImpulse": { + "#": 314 + }, + "constraintImpulse": { + "#": 315 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 316 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 317 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 318 + }, + "bounds": { + "#": 320 + }, + "positionPrev": { + "#": 323 + }, + "anglePrev": 0, + "axes": { + "#": 324 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 305 + }, + "sleepCounter": 0, + "region": { + "#": 327 + } + }, + [ + { + "#": 305 + } + ], + [ + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + } + ], + { + "x": 460, + "y": 317.73575, + "index": 0, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 500, + "y": 317.73575, + "index": 1, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 500, + "y": 357.73575, + "index": 2, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 460, + "y": 357.73575, + "index": 3, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 480, + "y": 337.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 319 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 321 + }, + "max": { + "#": 322 + } + }, + { + "x": 460, + "y": 317.73575 + }, + { + "x": 500, + "y": 357.73575 + }, + { + "x": 480, + "y": 334.82848 + }, + [ + { + "#": 325 + }, + { + "#": 326 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,6,7", + "startCol": 9, + "endCol": 10, + "startRow": 6, + "endRow": 7 + }, + { + "id": 15, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 329 + }, + "angle": 0, + "vertices": { + "#": 330 + }, + "position": { + "#": 335 + }, + "force": { + "#": 336 + }, + "torque": 0, + "positionImpulse": { + "#": 337 + }, + "constraintImpulse": { + "#": 338 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 339 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 340 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 341 + }, + "bounds": { + "#": 343 + }, + "positionPrev": { + "#": 346 + }, + "anglePrev": 0, + "axes": { + "#": 347 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 328 + }, + "sleepCounter": 0, + "region": { + "#": 350 + } + }, + [ + { + "#": 328 + } + ], + [ + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + } + ], + { + "x": 100, + "y": 357.73575, + "index": 0, + "body": { + "#": 328 + }, + "isInternal": false + }, + { + "x": 140, + "y": 357.73575, + "index": 1, + "body": { + "#": 328 + }, + "isInternal": false + }, + { + "x": 140, + "y": 397.73575, + "index": 2, + "body": { + "#": 328 + }, + "isInternal": false + }, + { + "x": 100, + "y": 397.73575, + "index": 3, + "body": { + "#": 328 + }, + "isInternal": false + }, + { + "x": 120, + "y": 377.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 342 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 344 + }, + "max": { + "#": 345 + } + }, + { + "x": 100, + "y": 357.73575 + }, + { + "x": 140, + "y": 397.73575 + }, + { + "x": 120, + "y": 374.82848 + }, + [ + { + "#": 348 + }, + { + "#": 349 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,7,8", + "startCol": 2, + "endCol": 2, + "startRow": 7, + "endRow": 8 + }, + { + "id": 16, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 352 + }, + "angle": 0, + "vertices": { + "#": 353 + }, + "position": { + "#": 358 + }, + "force": { + "#": 359 + }, + "torque": 0, + "positionImpulse": { + "#": 360 + }, + "constraintImpulse": { + "#": 361 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 362 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 363 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 364 + }, + "bounds": { + "#": 366 + }, + "positionPrev": { + "#": 369 + }, + "anglePrev": 0, + "axes": { + "#": 370 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 351 + }, + "sleepCounter": 0, + "region": { + "#": 373 + } + }, + [ + { + "#": 351 + } + ], + [ + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + } + ], + { + "x": 140, + "y": 357.73575, + "index": 0, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 180, + "y": 357.73575, + "index": 1, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 180, + "y": 397.73575, + "index": 2, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 140, + "y": 397.73575, + "index": 3, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 160, + "y": 377.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 365 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 367 + }, + "max": { + "#": 368 + } + }, + { + "x": 140, + "y": 357.73575 + }, + { + "x": 180, + "y": 397.73575 + }, + { + "x": 160, + "y": 374.82848 + }, + [ + { + "#": 371 + }, + { + "#": 372 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,7,8", + "startCol": 2, + "endCol": 3, + "startRow": 7, + "endRow": 8 + }, + { + "id": 17, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 375 + }, + "angle": 0, + "vertices": { + "#": 376 + }, + "position": { + "#": 381 + }, + "force": { + "#": 382 + }, + "torque": 0, + "positionImpulse": { + "#": 383 + }, + "constraintImpulse": { + "#": 384 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 385 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 386 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 387 + }, + "bounds": { + "#": 389 + }, + "positionPrev": { + "#": 392 + }, + "anglePrev": 0, + "axes": { + "#": 393 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 374 + }, + "sleepCounter": 0, + "region": { + "#": 396 + } + }, + [ + { + "#": 374 + } + ], + [ + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + } + ], + { + "x": 180, + "y": 357.73575, + "index": 0, + "body": { + "#": 374 + }, + "isInternal": false + }, + { + "x": 220, + "y": 357.73575, + "index": 1, + "body": { + "#": 374 + }, + "isInternal": false + }, + { + "x": 220, + "y": 397.73575, + "index": 2, + "body": { + "#": 374 + }, + "isInternal": false + }, + { + "x": 180, + "y": 397.73575, + "index": 3, + "body": { + "#": 374 + }, + "isInternal": false + }, + { + "x": 200, + "y": 377.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 388 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 390 + }, + "max": { + "#": 391 + } + }, + { + "x": 180, + "y": 357.73575 + }, + { + "x": 220, + "y": 397.73575 + }, + { + "x": 200, + "y": 374.82848 + }, + [ + { + "#": 394 + }, + { + "#": 395 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,7,8", + "startCol": 3, + "endCol": 4, + "startRow": 7, + "endRow": 8 + }, + { + "id": 18, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 398 + }, + "angle": 0, + "vertices": { + "#": 399 + }, + "position": { + "#": 404 + }, + "force": { + "#": 405 + }, + "torque": 0, + "positionImpulse": { + "#": 406 + }, + "constraintImpulse": { + "#": 407 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 408 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 409 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 410 + }, + "bounds": { + "#": 412 + }, + "positionPrev": { + "#": 415 + }, + "anglePrev": 0, + "axes": { + "#": 416 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 397 + }, + "sleepCounter": 0, + "region": { + "#": 419 + } + }, + [ + { + "#": 397 + } + ], + [ + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + } + ], + { + "x": 220, + "y": 357.73575, + "index": 0, + "body": { + "#": 397 + }, + "isInternal": false + }, + { + "x": 260, + "y": 357.73575, + "index": 1, + "body": { + "#": 397 + }, + "isInternal": false + }, + { + "x": 260, + "y": 397.73575, + "index": 2, + "body": { + "#": 397 + }, + "isInternal": false + }, + { + "x": 220, + "y": 397.73575, + "index": 3, + "body": { + "#": 397 + }, + "isInternal": false + }, + { + "x": 240, + "y": 377.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 411 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 413 + }, + "max": { + "#": 414 + } + }, + { + "x": 220, + "y": 357.73575 + }, + { + "x": 260, + "y": 397.73575 + }, + { + "x": 240, + "y": 374.82848 + }, + [ + { + "#": 417 + }, + { + "#": 418 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,7,8", + "startCol": 4, + "endCol": 5, + "startRow": 7, + "endRow": 8 + }, + { + "id": 19, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 421 + }, + "angle": 0, + "vertices": { + "#": 422 + }, + "position": { + "#": 427 + }, + "force": { + "#": 428 + }, + "torque": 0, + "positionImpulse": { + "#": 429 + }, + "constraintImpulse": { + "#": 430 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 431 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 432 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 433 + }, + "bounds": { + "#": 435 + }, + "positionPrev": { + "#": 438 + }, + "anglePrev": 0, + "axes": { + "#": 439 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 420 + }, + "sleepCounter": 0, + "region": { + "#": 442 + } + }, + [ + { + "#": 420 + } + ], + [ + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + } + ], + { + "x": 260, + "y": 357.73575, + "index": 0, + "body": { + "#": 420 + }, + "isInternal": false + }, + { + "x": 300, + "y": 357.73575, + "index": 1, + "body": { + "#": 420 + }, + "isInternal": false + }, + { + "x": 300, + "y": 397.73575, + "index": 2, + "body": { + "#": 420 + }, + "isInternal": false + }, + { + "x": 260, + "y": 397.73575, + "index": 3, + "body": { + "#": 420 + }, + "isInternal": false + }, + { + "x": 280, + "y": 377.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 434 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 436 + }, + "max": { + "#": 437 + } + }, + { + "x": 260, + "y": 357.73575 + }, + { + "x": 300, + "y": 397.73575 + }, + { + "x": 280, + "y": 374.82848 + }, + [ + { + "#": 440 + }, + { + "#": 441 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,7,8", + "startCol": 5, + "endCol": 6, + "startRow": 7, + "endRow": 8 + }, + { + "id": 20, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 444 + }, + "angle": 0, + "vertices": { + "#": 445 + }, + "position": { + "#": 450 + }, + "force": { + "#": 451 + }, + "torque": 0, + "positionImpulse": { + "#": 452 + }, + "constraintImpulse": { + "#": 453 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 454 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 455 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 456 + }, + "bounds": { + "#": 458 + }, + "positionPrev": { + "#": 461 + }, + "anglePrev": 0, + "axes": { + "#": 462 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 443 + }, + "sleepCounter": 0, + "region": { + "#": 465 + } + }, + [ + { + "#": 443 + } + ], + [ + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + } + ], + { + "x": 300, + "y": 357.73575, + "index": 0, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 340, + "y": 357.73575, + "index": 1, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 340, + "y": 397.73575, + "index": 2, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 300, + "y": 397.73575, + "index": 3, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 320, + "y": 377.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 457 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 459 + }, + "max": { + "#": 460 + } + }, + { + "x": 300, + "y": 357.73575 + }, + { + "x": 340, + "y": 397.73575 + }, + { + "x": 320, + "y": 374.82848 + }, + [ + { + "#": 463 + }, + { + "#": 464 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,7,8", + "startCol": 6, + "endCol": 7, + "startRow": 7, + "endRow": 8 + }, + { + "id": 21, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 467 + }, + "angle": 0, + "vertices": { + "#": 468 + }, + "position": { + "#": 473 + }, + "force": { + "#": 474 + }, + "torque": 0, + "positionImpulse": { + "#": 475 + }, + "constraintImpulse": { + "#": 476 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 477 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 478 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 479 + }, + "bounds": { + "#": 481 + }, + "positionPrev": { + "#": 484 + }, + "anglePrev": 0, + "axes": { + "#": 485 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 466 + }, + "sleepCounter": 0, + "region": { + "#": 488 + } + }, + [ + { + "#": 466 + } + ], + [ + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + } + ], + { + "x": 340, + "y": 357.73575, + "index": 0, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 380, + "y": 357.73575, + "index": 1, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 380, + "y": 397.73575, + "index": 2, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 340, + "y": 397.73575, + "index": 3, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 360, + "y": 377.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 480 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 482 + }, + "max": { + "#": 483 + } + }, + { + "x": 340, + "y": 357.73575 + }, + { + "x": 380, + "y": 397.73575 + }, + { + "x": 360, + "y": 374.82848 + }, + [ + { + "#": 486 + }, + { + "#": 487 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,7,8", + "startCol": 7, + "endCol": 7, + "startRow": 7, + "endRow": 8 + }, + { + "id": 22, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 490 + }, + "angle": 0, + "vertices": { + "#": 491 + }, + "position": { + "#": 496 + }, + "force": { + "#": 497 + }, + "torque": 0, + "positionImpulse": { + "#": 498 + }, + "constraintImpulse": { + "#": 499 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 500 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 501 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 502 + }, + "bounds": { + "#": 504 + }, + "positionPrev": { + "#": 507 + }, + "anglePrev": 0, + "axes": { + "#": 508 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 489 + }, + "sleepCounter": 0, + "region": { + "#": 511 + } + }, + [ + { + "#": 489 + } + ], + [ + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + } + ], + { + "x": 380, + "y": 357.73575, + "index": 0, + "body": { + "#": 489 + }, + "isInternal": false + }, + { + "x": 420, + "y": 357.73575, + "index": 1, + "body": { + "#": 489 + }, + "isInternal": false + }, + { + "x": 420, + "y": 397.73575, + "index": 2, + "body": { + "#": 489 + }, + "isInternal": false + }, + { + "x": 380, + "y": 397.73575, + "index": 3, + "body": { + "#": 489 + }, + "isInternal": false + }, + { + "x": 400, + "y": 377.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 503 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 505 + }, + "max": { + "#": 506 + } + }, + { + "x": 380, + "y": 357.73575 + }, + { + "x": 420, + "y": 397.73575 + }, + { + "x": 400, + "y": 374.82848 + }, + [ + { + "#": 509 + }, + { + "#": 510 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,7,8", + "startCol": 7, + "endCol": 8, + "startRow": 7, + "endRow": 8 + }, + { + "id": 23, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 513 + }, + "angle": 0, + "vertices": { + "#": 514 + }, + "position": { + "#": 519 + }, + "force": { + "#": 520 + }, + "torque": 0, + "positionImpulse": { + "#": 521 + }, + "constraintImpulse": { + "#": 522 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 523 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 524 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 525 + }, + "bounds": { + "#": 527 + }, + "positionPrev": { + "#": 530 + }, + "anglePrev": 0, + "axes": { + "#": 531 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 512 + }, + "sleepCounter": 0, + "region": { + "#": 534 + } + }, + [ + { + "#": 512 + } + ], + [ + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + } + ], + { + "x": 420, + "y": 357.73575, + "index": 0, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 460, + "y": 357.73575, + "index": 1, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 460, + "y": 397.73575, + "index": 2, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 420, + "y": 397.73575, + "index": 3, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 440, + "y": 377.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 526 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 528 + }, + "max": { + "#": 529 + } + }, + { + "x": 420, + "y": 357.73575 + }, + { + "x": 460, + "y": 397.73575 + }, + { + "x": 440, + "y": 374.82848 + }, + [ + { + "#": 532 + }, + { + "#": 533 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,7,8", + "startCol": 8, + "endCol": 9, + "startRow": 7, + "endRow": 8 + }, + { + "id": 24, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 536 + }, + "angle": 0, + "vertices": { + "#": 537 + }, + "position": { + "#": 542 + }, + "force": { + "#": 543 + }, + "torque": 0, + "positionImpulse": { + "#": 544 + }, + "constraintImpulse": { + "#": 545 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 546 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 547 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 548 + }, + "bounds": { + "#": 550 + }, + "positionPrev": { + "#": 553 + }, + "anglePrev": 0, + "axes": { + "#": 554 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 535 + }, + "sleepCounter": 0, + "region": { + "#": 557 + } + }, + [ + { + "#": 535 + } + ], + [ + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + } + ], + { + "x": 460, + "y": 357.73575, + "index": 0, + "body": { + "#": 535 + }, + "isInternal": false + }, + { + "x": 500, + "y": 357.73575, + "index": 1, + "body": { + "#": 535 + }, + "isInternal": false + }, + { + "x": 500, + "y": 397.73575, + "index": 2, + "body": { + "#": 535 + }, + "isInternal": false + }, + { + "x": 460, + "y": 397.73575, + "index": 3, + "body": { + "#": 535 + }, + "isInternal": false + }, + { + "x": 480, + "y": 377.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 549 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 551 + }, + "max": { + "#": 552 + } + }, + { + "x": 460, + "y": 357.73575 + }, + { + "x": 500, + "y": 397.73575 + }, + { + "x": 480, + "y": 374.82848 + }, + [ + { + "#": 555 + }, + { + "#": 556 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,7,8", + "startCol": 9, + "endCol": 10, + "startRow": 7, + "endRow": 8 + }, + { + "id": 25, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 559 + }, + "angle": 0, + "vertices": { + "#": 560 + }, + "position": { + "#": 565 + }, + "force": { + "#": 566 + }, + "torque": 0, + "positionImpulse": { + "#": 567 + }, + "constraintImpulse": { + "#": 568 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 569 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 570 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 571 + }, + "bounds": { + "#": 573 + }, + "positionPrev": { + "#": 576 + }, + "anglePrev": 0, + "axes": { + "#": 577 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 558 + }, + "sleepCounter": 0, + "region": { + "#": 580 + } + }, + [ + { + "#": 558 + } + ], + [ + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + } + ], + { + "x": 100, + "y": 397.73575, + "index": 0, + "body": { + "#": 558 + }, + "isInternal": false + }, + { + "x": 140, + "y": 397.73575, + "index": 1, + "body": { + "#": 558 + }, + "isInternal": false + }, + { + "x": 140, + "y": 437.73575, + "index": 2, + "body": { + "#": 558 + }, + "isInternal": false + }, + { + "x": 100, + "y": 437.73575, + "index": 3, + "body": { + "#": 558 + }, + "isInternal": false + }, + { + "x": 120, + "y": 417.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 572 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 574 + }, + "max": { + "#": 575 + } + }, + { + "x": 100, + "y": 397.73575 + }, + { + "x": 140, + "y": 437.73575 + }, + { + "x": 120, + "y": 414.82848 + }, + [ + { + "#": 578 + }, + { + "#": 579 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,8,9", + "startCol": 2, + "endCol": 2, + "startRow": 8, + "endRow": 9 + }, + { + "id": 26, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 582 + }, + "angle": 0, + "vertices": { + "#": 583 + }, + "position": { + "#": 588 + }, + "force": { + "#": 589 + }, + "torque": 0, + "positionImpulse": { + "#": 590 + }, + "constraintImpulse": { + "#": 591 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 592 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 593 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 594 + }, + "bounds": { + "#": 596 + }, + "positionPrev": { + "#": 599 + }, + "anglePrev": 0, + "axes": { + "#": 600 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 581 + }, + "sleepCounter": 0, + "region": { + "#": 603 + } + }, + [ + { + "#": 581 + } + ], + [ + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + } + ], + { + "x": 140, + "y": 397.73575, + "index": 0, + "body": { + "#": 581 + }, + "isInternal": false + }, + { + "x": 180, + "y": 397.73575, + "index": 1, + "body": { + "#": 581 + }, + "isInternal": false + }, + { + "x": 180, + "y": 437.73575, + "index": 2, + "body": { + "#": 581 + }, + "isInternal": false + }, + { + "x": 140, + "y": 437.73575, + "index": 3, + "body": { + "#": 581 + }, + "isInternal": false + }, + { + "x": 160, + "y": 417.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 595 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 597 + }, + "max": { + "#": 598 + } + }, + { + "x": 140, + "y": 397.73575 + }, + { + "x": 180, + "y": 437.73575 + }, + { + "x": 160, + "y": 414.82848 + }, + [ + { + "#": 601 + }, + { + "#": 602 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,8,9", + "startCol": 2, + "endCol": 3, + "startRow": 8, + "endRow": 9 + }, + { + "id": 27, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 605 + }, + "angle": 0, + "vertices": { + "#": 606 + }, + "position": { + "#": 611 + }, + "force": { + "#": 612 + }, + "torque": 0, + "positionImpulse": { + "#": 613 + }, + "constraintImpulse": { + "#": 614 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 615 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 616 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 617 + }, + "bounds": { + "#": 619 + }, + "positionPrev": { + "#": 622 + }, + "anglePrev": 0, + "axes": { + "#": 623 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 604 + }, + "sleepCounter": 0, + "region": { + "#": 626 + } + }, + [ + { + "#": 604 + } + ], + [ + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + } + ], + { + "x": 180, + "y": 397.73575, + "index": 0, + "body": { + "#": 604 + }, + "isInternal": false + }, + { + "x": 220, + "y": 397.73575, + "index": 1, + "body": { + "#": 604 + }, + "isInternal": false + }, + { + "x": 220, + "y": 437.73575, + "index": 2, + "body": { + "#": 604 + }, + "isInternal": false + }, + { + "x": 180, + "y": 437.73575, + "index": 3, + "body": { + "#": 604 + }, + "isInternal": false + }, + { + "x": 200, + "y": 417.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 618 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 620 + }, + "max": { + "#": 621 + } + }, + { + "x": 180, + "y": 397.73575 + }, + { + "x": 220, + "y": 437.73575 + }, + { + "x": 200, + "y": 414.82848 + }, + [ + { + "#": 624 + }, + { + "#": 625 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,8,9", + "startCol": 3, + "endCol": 4, + "startRow": 8, + "endRow": 9 + }, + { + "id": 28, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 628 + }, + "angle": 0, + "vertices": { + "#": 629 + }, + "position": { + "#": 634 + }, + "force": { + "#": 635 + }, + "torque": 0, + "positionImpulse": { + "#": 636 + }, + "constraintImpulse": { + "#": 637 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 638 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 639 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 640 + }, + "bounds": { + "#": 642 + }, + "positionPrev": { + "#": 645 + }, + "anglePrev": 0, + "axes": { + "#": 646 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 627 + }, + "sleepCounter": 0, + "region": { + "#": 649 + } + }, + [ + { + "#": 627 + } + ], + [ + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + } + ], + { + "x": 220, + "y": 397.73575, + "index": 0, + "body": { + "#": 627 + }, + "isInternal": false + }, + { + "x": 260, + "y": 397.73575, + "index": 1, + "body": { + "#": 627 + }, + "isInternal": false + }, + { + "x": 260, + "y": 437.73575, + "index": 2, + "body": { + "#": 627 + }, + "isInternal": false + }, + { + "x": 220, + "y": 437.73575, + "index": 3, + "body": { + "#": 627 + }, + "isInternal": false + }, + { + "x": 240, + "y": 417.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 641 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 643 + }, + "max": { + "#": 644 + } + }, + { + "x": 220, + "y": 397.73575 + }, + { + "x": 260, + "y": 437.73575 + }, + { + "x": 240, + "y": 414.82848 + }, + [ + { + "#": 647 + }, + { + "#": 648 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,8,9", + "startCol": 4, + "endCol": 5, + "startRow": 8, + "endRow": 9 + }, + { + "id": 29, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 651 + }, + "angle": 0, + "vertices": { + "#": 652 + }, + "position": { + "#": 657 + }, + "force": { + "#": 658 + }, + "torque": 0, + "positionImpulse": { + "#": 659 + }, + "constraintImpulse": { + "#": 660 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 661 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 662 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 663 + }, + "bounds": { + "#": 665 + }, + "positionPrev": { + "#": 668 + }, + "anglePrev": 0, + "axes": { + "#": 669 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 650 + }, + "sleepCounter": 0, + "region": { + "#": 672 + } + }, + [ + { + "#": 650 + } + ], + [ + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + } + ], + { + "x": 260, + "y": 397.73575, + "index": 0, + "body": { + "#": 650 + }, + "isInternal": false + }, + { + "x": 300, + "y": 397.73575, + "index": 1, + "body": { + "#": 650 + }, + "isInternal": false + }, + { + "x": 300, + "y": 437.73575, + "index": 2, + "body": { + "#": 650 + }, + "isInternal": false + }, + { + "x": 260, + "y": 437.73575, + "index": 3, + "body": { + "#": 650 + }, + "isInternal": false + }, + { + "x": 280, + "y": 417.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 664 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 666 + }, + "max": { + "#": 667 + } + }, + { + "x": 260, + "y": 397.73575 + }, + { + "x": 300, + "y": 437.73575 + }, + { + "x": 280, + "y": 414.82848 + }, + [ + { + "#": 670 + }, + { + "#": 671 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,8,9", + "startCol": 5, + "endCol": 6, + "startRow": 8, + "endRow": 9 + }, + { + "id": 30, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 674 + }, + "angle": 0, + "vertices": { + "#": 675 + }, + "position": { + "#": 680 + }, + "force": { + "#": 681 + }, + "torque": 0, + "positionImpulse": { + "#": 682 + }, + "constraintImpulse": { + "#": 683 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 684 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 685 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 686 + }, + "bounds": { + "#": 688 + }, + "positionPrev": { + "#": 691 + }, + "anglePrev": 0, + "axes": { + "#": 692 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 673 + }, + "sleepCounter": 0, + "region": { + "#": 695 + } + }, + [ + { + "#": 673 + } + ], + [ + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + } + ], + { + "x": 300, + "y": 397.73575, + "index": 0, + "body": { + "#": 673 + }, + "isInternal": false + }, + { + "x": 340, + "y": 397.73575, + "index": 1, + "body": { + "#": 673 + }, + "isInternal": false + }, + { + "x": 340, + "y": 437.73575, + "index": 2, + "body": { + "#": 673 + }, + "isInternal": false + }, + { + "x": 300, + "y": 437.73575, + "index": 3, + "body": { + "#": 673 + }, + "isInternal": false + }, + { + "x": 320, + "y": 417.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 687 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 689 + }, + "max": { + "#": 690 + } + }, + { + "x": 300, + "y": 397.73575 + }, + { + "x": 340, + "y": 437.73575 + }, + { + "x": 320, + "y": 414.82848 + }, + [ + { + "#": 693 + }, + { + "#": 694 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,8,9", + "startCol": 6, + "endCol": 7, + "startRow": 8, + "endRow": 9 + }, + { + "id": 31, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 697 + }, + "angle": 0, + "vertices": { + "#": 698 + }, + "position": { + "#": 703 + }, + "force": { + "#": 704 + }, + "torque": 0, + "positionImpulse": { + "#": 705 + }, + "constraintImpulse": { + "#": 706 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 707 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 708 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 709 + }, + "bounds": { + "#": 711 + }, + "positionPrev": { + "#": 714 + }, + "anglePrev": 0, + "axes": { + "#": 715 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 696 + }, + "sleepCounter": 0, + "region": { + "#": 718 + } + }, + [ + { + "#": 696 + } + ], + [ + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + } + ], + { + "x": 340, + "y": 397.73575, + "index": 0, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 380, + "y": 397.73575, + "index": 1, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 380, + "y": 437.73575, + "index": 2, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 340, + "y": 437.73575, + "index": 3, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 360, + "y": 417.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 710 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 712 + }, + "max": { + "#": 713 + } + }, + { + "x": 340, + "y": 397.73575 + }, + { + "x": 380, + "y": 437.73575 + }, + { + "x": 360, + "y": 414.82848 + }, + [ + { + "#": 716 + }, + { + "#": 717 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,8,9", + "startCol": 7, + "endCol": 7, + "startRow": 8, + "endRow": 9 + }, + { + "id": 32, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 720 + }, + "angle": 0, + "vertices": { + "#": 721 + }, + "position": { + "#": 726 + }, + "force": { + "#": 727 + }, + "torque": 0, + "positionImpulse": { + "#": 728 + }, + "constraintImpulse": { + "#": 729 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 730 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 731 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 732 + }, + "bounds": { + "#": 734 + }, + "positionPrev": { + "#": 737 + }, + "anglePrev": 0, + "axes": { + "#": 738 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 719 + }, + "sleepCounter": 0, + "region": { + "#": 741 + } + }, + [ + { + "#": 719 + } + ], + [ + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + } + ], + { + "x": 380, + "y": 397.73575, + "index": 0, + "body": { + "#": 719 + }, + "isInternal": false + }, + { + "x": 420, + "y": 397.73575, + "index": 1, + "body": { + "#": 719 + }, + "isInternal": false + }, + { + "x": 420, + "y": 437.73575, + "index": 2, + "body": { + "#": 719 + }, + "isInternal": false + }, + { + "x": 380, + "y": 437.73575, + "index": 3, + "body": { + "#": 719 + }, + "isInternal": false + }, + { + "x": 400, + "y": 417.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 733 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 735 + }, + "max": { + "#": 736 + } + }, + { + "x": 380, + "y": 397.73575 + }, + { + "x": 420, + "y": 437.73575 + }, + { + "x": 400, + "y": 414.82848 + }, + [ + { + "#": 739 + }, + { + "#": 740 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,8,9", + "startCol": 7, + "endCol": 8, + "startRow": 8, + "endRow": 9 + }, + { + "id": 33, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 743 + }, + "angle": 0, + "vertices": { + "#": 744 + }, + "position": { + "#": 749 + }, + "force": { + "#": 750 + }, + "torque": 0, + "positionImpulse": { + "#": 751 + }, + "constraintImpulse": { + "#": 752 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 753 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 754 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 755 + }, + "bounds": { + "#": 757 + }, + "positionPrev": { + "#": 760 + }, + "anglePrev": 0, + "axes": { + "#": 761 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 742 + }, + "sleepCounter": 0, + "region": { + "#": 764 + } + }, + [ + { + "#": 742 + } + ], + [ + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + } + ], + { + "x": 420, + "y": 397.73575, + "index": 0, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 460, + "y": 397.73575, + "index": 1, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 460, + "y": 437.73575, + "index": 2, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 420, + "y": 437.73575, + "index": 3, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 440, + "y": 417.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 756 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 758 + }, + "max": { + "#": 759 + } + }, + { + "x": 420, + "y": 397.73575 + }, + { + "x": 460, + "y": 437.73575 + }, + { + "x": 440, + "y": 414.82848 + }, + [ + { + "#": 762 + }, + { + "#": 763 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,8,9", + "startCol": 8, + "endCol": 9, + "startRow": 8, + "endRow": 9 + }, + { + "id": 34, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 766 + }, + "angle": 0, + "vertices": { + "#": 767 + }, + "position": { + "#": 772 + }, + "force": { + "#": 773 + }, + "torque": 0, + "positionImpulse": { + "#": 774 + }, + "constraintImpulse": { + "#": 775 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 776 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 777 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 778 + }, + "bounds": { + "#": 780 + }, + "positionPrev": { + "#": 783 + }, + "anglePrev": 0, + "axes": { + "#": 784 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 765 + }, + "sleepCounter": 0, + "region": { + "#": 787 + } + }, + [ + { + "#": 765 + } + ], + [ + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + } + ], + { + "x": 460, + "y": 397.73575, + "index": 0, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 500, + "y": 397.73575, + "index": 1, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 500, + "y": 437.73575, + "index": 2, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 460, + "y": 437.73575, + "index": 3, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 480, + "y": 417.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 779 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 781 + }, + "max": { + "#": 782 + } + }, + { + "x": 460, + "y": 397.73575 + }, + { + "x": 500, + "y": 437.73575 + }, + { + "x": 480, + "y": 414.82848 + }, + [ + { + "#": 785 + }, + { + "#": 786 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,8,9", + "startCol": 9, + "endCol": 10, + "startRow": 8, + "endRow": 9 + }, + { + "id": 35, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 789 + }, + "angle": 0, + "vertices": { + "#": 790 + }, + "position": { + "#": 795 + }, + "force": { + "#": 796 + }, + "torque": 0, + "positionImpulse": { + "#": 797 + }, + "constraintImpulse": { + "#": 798 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 799 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 800 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 801 + }, + "bounds": { + "#": 803 + }, + "positionPrev": { + "#": 806 + }, + "anglePrev": 0, + "axes": { + "#": 807 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 788 + }, + "sleepCounter": 0, + "region": { + "#": 810 + } + }, + [ + { + "#": 788 + } + ], + [ + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + } + ], + { + "x": 100, + "y": 437.73575, + "index": 0, + "body": { + "#": 788 + }, + "isInternal": false + }, + { + "x": 140, + "y": 437.73575, + "index": 1, + "body": { + "#": 788 + }, + "isInternal": false + }, + { + "x": 140, + "y": 477.73575, + "index": 2, + "body": { + "#": 788 + }, + "isInternal": false + }, + { + "x": 100, + "y": 477.73575, + "index": 3, + "body": { + "#": 788 + }, + "isInternal": false + }, + { + "x": 120, + "y": 457.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 802 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 804 + }, + "max": { + "#": 805 + } + }, + { + "x": 100, + "y": 437.73575 + }, + { + "x": 140, + "y": 477.73575 + }, + { + "x": 120, + "y": 454.82848 + }, + [ + { + "#": 808 + }, + { + "#": 809 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,9,9", + "startCol": 2, + "endCol": 2, + "startRow": 9, + "endRow": 9 + }, + { + "id": 36, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 812 + }, + "angle": 0, + "vertices": { + "#": 813 + }, + "position": { + "#": 818 + }, + "force": { + "#": 819 + }, + "torque": 0, + "positionImpulse": { + "#": 820 + }, + "constraintImpulse": { + "#": 821 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 822 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 823 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 824 + }, + "bounds": { + "#": 826 + }, + "positionPrev": { + "#": 829 + }, + "anglePrev": 0, + "axes": { + "#": 830 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 811 + }, + "sleepCounter": 0, + "region": { + "#": 833 + } + }, + [ + { + "#": 811 + } + ], + [ + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + } + ], + { + "x": 140, + "y": 437.73575, + "index": 0, + "body": { + "#": 811 + }, + "isInternal": false + }, + { + "x": 180, + "y": 437.73575, + "index": 1, + "body": { + "#": 811 + }, + "isInternal": false + }, + { + "x": 180, + "y": 477.73575, + "index": 2, + "body": { + "#": 811 + }, + "isInternal": false + }, + { + "x": 140, + "y": 477.73575, + "index": 3, + "body": { + "#": 811 + }, + "isInternal": false + }, + { + "x": 160, + "y": 457.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 825 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 827 + }, + "max": { + "#": 828 + } + }, + { + "x": 140, + "y": 437.73575 + }, + { + "x": 180, + "y": 477.73575 + }, + { + "x": 160, + "y": 454.82848 + }, + [ + { + "#": 831 + }, + { + "#": 832 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,9,9", + "startCol": 2, + "endCol": 3, + "startRow": 9, + "endRow": 9 + }, + { + "id": 37, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 835 + }, + "angle": 0, + "vertices": { + "#": 836 + }, + "position": { + "#": 841 + }, + "force": { + "#": 842 + }, + "torque": 0, + "positionImpulse": { + "#": 843 + }, + "constraintImpulse": { + "#": 844 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 845 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 846 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 847 + }, + "bounds": { + "#": 849 + }, + "positionPrev": { + "#": 852 + }, + "anglePrev": 0, + "axes": { + "#": 853 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 834 + }, + "sleepCounter": 0, + "region": { + "#": 856 + } + }, + [ + { + "#": 834 + } + ], + [ + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + } + ], + { + "x": 180, + "y": 437.73575, + "index": 0, + "body": { + "#": 834 + }, + "isInternal": false + }, + { + "x": 220, + "y": 437.73575, + "index": 1, + "body": { + "#": 834 + }, + "isInternal": false + }, + { + "x": 220, + "y": 477.73575, + "index": 2, + "body": { + "#": 834 + }, + "isInternal": false + }, + { + "x": 180, + "y": 477.73575, + "index": 3, + "body": { + "#": 834 + }, + "isInternal": false + }, + { + "x": 200, + "y": 457.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 848 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 850 + }, + "max": { + "#": 851 + } + }, + { + "x": 180, + "y": 437.73575 + }, + { + "x": 220, + "y": 477.73575 + }, + { + "x": 200, + "y": 454.82848 + }, + [ + { + "#": 854 + }, + { + "#": 855 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,9,9", + "startCol": 3, + "endCol": 4, + "startRow": 9, + "endRow": 9 + }, + { + "id": 38, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 858 + }, + "angle": 0, + "vertices": { + "#": 859 + }, + "position": { + "#": 864 + }, + "force": { + "#": 865 + }, + "torque": 0, + "positionImpulse": { + "#": 866 + }, + "constraintImpulse": { + "#": 867 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 868 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 869 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 870 + }, + "bounds": { + "#": 872 + }, + "positionPrev": { + "#": 875 + }, + "anglePrev": 0, + "axes": { + "#": 876 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 857 + }, + "sleepCounter": 0, + "region": { + "#": 879 + } + }, + [ + { + "#": 857 + } + ], + [ + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + } + ], + { + "x": 220, + "y": 437.73575, + "index": 0, + "body": { + "#": 857 + }, + "isInternal": false + }, + { + "x": 260, + "y": 437.73575, + "index": 1, + "body": { + "#": 857 + }, + "isInternal": false + }, + { + "x": 260, + "y": 477.73575, + "index": 2, + "body": { + "#": 857 + }, + "isInternal": false + }, + { + "x": 220, + "y": 477.73575, + "index": 3, + "body": { + "#": 857 + }, + "isInternal": false + }, + { + "x": 240, + "y": 457.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 871 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 873 + }, + "max": { + "#": 874 + } + }, + { + "x": 220, + "y": 437.73575 + }, + { + "x": 260, + "y": 477.73575 + }, + { + "x": 240, + "y": 454.82848 + }, + [ + { + "#": 877 + }, + { + "#": 878 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,9,9", + "startCol": 4, + "endCol": 5, + "startRow": 9, + "endRow": 9 + }, + { + "id": 39, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 881 + }, + "angle": 0, + "vertices": { + "#": 882 + }, + "position": { + "#": 887 + }, + "force": { + "#": 888 + }, + "torque": 0, + "positionImpulse": { + "#": 889 + }, + "constraintImpulse": { + "#": 890 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 891 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 892 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 893 + }, + "bounds": { + "#": 895 + }, + "positionPrev": { + "#": 898 + }, + "anglePrev": 0, + "axes": { + "#": 899 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 880 + }, + "sleepCounter": 0, + "region": { + "#": 902 + } + }, + [ + { + "#": 880 + } + ], + [ + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + } + ], + { + "x": 260, + "y": 437.73575, + "index": 0, + "body": { + "#": 880 + }, + "isInternal": false + }, + { + "x": 300, + "y": 437.73575, + "index": 1, + "body": { + "#": 880 + }, + "isInternal": false + }, + { + "x": 300, + "y": 477.73575, + "index": 2, + "body": { + "#": 880 + }, + "isInternal": false + }, + { + "x": 260, + "y": 477.73575, + "index": 3, + "body": { + "#": 880 + }, + "isInternal": false + }, + { + "x": 280, + "y": 457.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 894 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 896 + }, + "max": { + "#": 897 + } + }, + { + "x": 260, + "y": 437.73575 + }, + { + "x": 300, + "y": 477.73575 + }, + { + "x": 280, + "y": 454.82848 + }, + [ + { + "#": 900 + }, + { + "#": 901 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,9,9", + "startCol": 5, + "endCol": 6, + "startRow": 9, + "endRow": 9 + }, + { + "id": 40, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 904 + }, + "angle": 0, + "vertices": { + "#": 905 + }, + "position": { + "#": 910 + }, + "force": { + "#": 911 + }, + "torque": 0, + "positionImpulse": { + "#": 912 + }, + "constraintImpulse": { + "#": 913 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 914 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 915 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 916 + }, + "bounds": { + "#": 918 + }, + "positionPrev": { + "#": 921 + }, + "anglePrev": 0, + "axes": { + "#": 922 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 903 + }, + "sleepCounter": 0, + "region": { + "#": 925 + } + }, + [ + { + "#": 903 + } + ], + [ + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + } + ], + { + "x": 300, + "y": 437.73575, + "index": 0, + "body": { + "#": 903 + }, + "isInternal": false + }, + { + "x": 340, + "y": 437.73575, + "index": 1, + "body": { + "#": 903 + }, + "isInternal": false + }, + { + "x": 340, + "y": 477.73575, + "index": 2, + "body": { + "#": 903 + }, + "isInternal": false + }, + { + "x": 300, + "y": 477.73575, + "index": 3, + "body": { + "#": 903 + }, + "isInternal": false + }, + { + "x": 320, + "y": 457.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 917 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 919 + }, + "max": { + "#": 920 + } + }, + { + "x": 300, + "y": 437.73575 + }, + { + "x": 340, + "y": 477.73575 + }, + { + "x": 320, + "y": 454.82848 + }, + [ + { + "#": 923 + }, + { + "#": 924 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,9,9", + "startCol": 6, + "endCol": 7, + "startRow": 9, + "endRow": 9 + }, + { + "id": 41, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 927 + }, + "angle": 0, + "vertices": { + "#": 928 + }, + "position": { + "#": 933 + }, + "force": { + "#": 934 + }, + "torque": 0, + "positionImpulse": { + "#": 935 + }, + "constraintImpulse": { + "#": 936 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 937 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 938 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 939 + }, + "bounds": { + "#": 941 + }, + "positionPrev": { + "#": 944 + }, + "anglePrev": 0, + "axes": { + "#": 945 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 926 + }, + "sleepCounter": 0, + "region": { + "#": 948 + } + }, + [ + { + "#": 926 + } + ], + [ + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + }, + { + "#": 932 + } + ], + { + "x": 340, + "y": 437.73575, + "index": 0, + "body": { + "#": 926 + }, + "isInternal": false + }, + { + "x": 380, + "y": 437.73575, + "index": 1, + "body": { + "#": 926 + }, + "isInternal": false + }, + { + "x": 380, + "y": 477.73575, + "index": 2, + "body": { + "#": 926 + }, + "isInternal": false + }, + { + "x": 340, + "y": 477.73575, + "index": 3, + "body": { + "#": 926 + }, + "isInternal": false + }, + { + "x": 360, + "y": 457.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 940 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 942 + }, + "max": { + "#": 943 + } + }, + { + "x": 340, + "y": 437.73575 + }, + { + "x": 380, + "y": 477.73575 + }, + { + "x": 360, + "y": 454.82848 + }, + [ + { + "#": 946 + }, + { + "#": 947 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,9,9", + "startCol": 7, + "endCol": 7, + "startRow": 9, + "endRow": 9 + }, + { + "id": 42, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 950 + }, + "angle": 0, + "vertices": { + "#": 951 + }, + "position": { + "#": 956 + }, + "force": { + "#": 957 + }, + "torque": 0, + "positionImpulse": { + "#": 958 + }, + "constraintImpulse": { + "#": 959 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 960 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 961 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 962 + }, + "bounds": { + "#": 964 + }, + "positionPrev": { + "#": 967 + }, + "anglePrev": 0, + "axes": { + "#": 968 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 949 + }, + "sleepCounter": 0, + "region": { + "#": 971 + } + }, + [ + { + "#": 949 + } + ], + [ + { + "#": 952 + }, + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + } + ], + { + "x": 380, + "y": 437.73575, + "index": 0, + "body": { + "#": 949 + }, + "isInternal": false + }, + { + "x": 420, + "y": 437.73575, + "index": 1, + "body": { + "#": 949 + }, + "isInternal": false + }, + { + "x": 420, + "y": 477.73575, + "index": 2, + "body": { + "#": 949 + }, + "isInternal": false + }, + { + "x": 380, + "y": 477.73575, + "index": 3, + "body": { + "#": 949 + }, + "isInternal": false + }, + { + "x": 400, + "y": 457.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 963 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 965 + }, + "max": { + "#": 966 + } + }, + { + "x": 380, + "y": 437.73575 + }, + { + "x": 420, + "y": 477.73575 + }, + { + "x": 400, + "y": 454.82848 + }, + [ + { + "#": 969 + }, + { + "#": 970 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,9,9", + "startCol": 7, + "endCol": 8, + "startRow": 9, + "endRow": 9 + }, + { + "id": 43, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 973 + }, + "angle": 0, + "vertices": { + "#": 974 + }, + "position": { + "#": 979 + }, + "force": { + "#": 980 + }, + "torque": 0, + "positionImpulse": { + "#": 981 + }, + "constraintImpulse": { + "#": 982 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 983 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 984 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 985 + }, + "bounds": { + "#": 987 + }, + "positionPrev": { + "#": 990 + }, + "anglePrev": 0, + "axes": { + "#": 991 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 972 + }, + "sleepCounter": 0, + "region": { + "#": 994 + } + }, + [ + { + "#": 972 + } + ], + [ + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + }, + { + "#": 978 + } + ], + { + "x": 420, + "y": 437.73575, + "index": 0, + "body": { + "#": 972 + }, + "isInternal": false + }, + { + "x": 460, + "y": 437.73575, + "index": 1, + "body": { + "#": 972 + }, + "isInternal": false + }, + { + "x": 460, + "y": 477.73575, + "index": 2, + "body": { + "#": 972 + }, + "isInternal": false + }, + { + "x": 420, + "y": 477.73575, + "index": 3, + "body": { + "#": 972 + }, + "isInternal": false + }, + { + "x": 440, + "y": 457.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 986 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 988 + }, + "max": { + "#": 989 + } + }, + { + "x": 420, + "y": 437.73575 + }, + { + "x": 460, + "y": 477.73575 + }, + { + "x": 440, + "y": 454.82848 + }, + [ + { + "#": 992 + }, + { + "#": 993 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,9,9", + "startCol": 8, + "endCol": 9, + "startRow": 9, + "endRow": 9 + }, + { + "id": 44, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 996 + }, + "angle": 0, + "vertices": { + "#": 997 + }, + "position": { + "#": 1002 + }, + "force": { + "#": 1003 + }, + "torque": 0, + "positionImpulse": { + "#": 1004 + }, + "constraintImpulse": { + "#": 1005 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1006 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1007 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1008 + }, + "bounds": { + "#": 1010 + }, + "positionPrev": { + "#": 1013 + }, + "anglePrev": 0, + "axes": { + "#": 1014 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 995 + }, + "sleepCounter": 0, + "region": { + "#": 1017 + } + }, + [ + { + "#": 995 + } + ], + [ + { + "#": 998 + }, + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + } + ], + { + "x": 460, + "y": 437.73575, + "index": 0, + "body": { + "#": 995 + }, + "isInternal": false + }, + { + "x": 500, + "y": 437.73575, + "index": 1, + "body": { + "#": 995 + }, + "isInternal": false + }, + { + "x": 500, + "y": 477.73575, + "index": 2, + "body": { + "#": 995 + }, + "isInternal": false + }, + { + "x": 460, + "y": 477.73575, + "index": 3, + "body": { + "#": 995 + }, + "isInternal": false + }, + { + "x": 480, + "y": 457.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1009 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1011 + }, + "max": { + "#": 1012 + } + }, + { + "x": 460, + "y": 437.73575 + }, + { + "x": 500, + "y": 477.73575 + }, + { + "x": 480, + "y": 454.82848 + }, + [ + { + "#": 1015 + }, + { + "#": 1016 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,9,9", + "startCol": 9, + "endCol": 10, + "startRow": 9, + "endRow": 9 + }, + { + "id": 45, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1019 + }, + "angle": 0, + "vertices": { + "#": 1020 + }, + "position": { + "#": 1025 + }, + "force": { + "#": 1026 + }, + "torque": 0, + "positionImpulse": { + "#": 1027 + }, + "constraintImpulse": { + "#": 1028 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1029 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1030 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1031 + }, + "bounds": { + "#": 1033 + }, + "positionPrev": { + "#": 1036 + }, + "anglePrev": 0, + "axes": { + "#": 1037 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1018 + }, + "sleepCounter": 0, + "region": { + "#": 1040 + } + }, + [ + { + "#": 1018 + } + ], + [ + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + } + ], + { + "x": 100, + "y": 477.73575, + "index": 0, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 140, + "y": 477.73575, + "index": 1, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 140, + "y": 517.73575, + "index": 2, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 100, + "y": 517.73575, + "index": 3, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 120, + "y": 497.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1032 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1034 + }, + "max": { + "#": 1035 + } + }, + { + "x": 100, + "y": 477.73575 + }, + { + "x": 140, + "y": 517.73575 + }, + { + "x": 120, + "y": 494.82848 + }, + [ + { + "#": 1038 + }, + { + "#": 1039 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,9,10", + "startCol": 2, + "endCol": 2, + "startRow": 9, + "endRow": 10 + }, + { + "id": 46, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1042 + }, + "angle": 0, + "vertices": { + "#": 1043 + }, + "position": { + "#": 1048 + }, + "force": { + "#": 1049 + }, + "torque": 0, + "positionImpulse": { + "#": 1050 + }, + "constraintImpulse": { + "#": 1051 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1052 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1053 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1054 + }, + "bounds": { + "#": 1056 + }, + "positionPrev": { + "#": 1059 + }, + "anglePrev": 0, + "axes": { + "#": 1060 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1041 + }, + "sleepCounter": 0, + "region": { + "#": 1063 + } + }, + [ + { + "#": 1041 + } + ], + [ + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + } + ], + { + "x": 140, + "y": 477.73575, + "index": 0, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 180, + "y": 477.73575, + "index": 1, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 180, + "y": 517.73575, + "index": 2, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 140, + "y": 517.73575, + "index": 3, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 160, + "y": 497.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1055 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1057 + }, + "max": { + "#": 1058 + } + }, + { + "x": 140, + "y": 477.73575 + }, + { + "x": 180, + "y": 517.73575 + }, + { + "x": 160, + "y": 494.82848 + }, + [ + { + "#": 1061 + }, + { + "#": 1062 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,9,10", + "startCol": 2, + "endCol": 3, + "startRow": 9, + "endRow": 10 + }, + { + "id": 47, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1065 + }, + "angle": 0, + "vertices": { + "#": 1066 + }, + "position": { + "#": 1071 + }, + "force": { + "#": 1072 + }, + "torque": 0, + "positionImpulse": { + "#": 1073 + }, + "constraintImpulse": { + "#": 1074 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1075 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1076 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1077 + }, + "bounds": { + "#": 1079 + }, + "positionPrev": { + "#": 1082 + }, + "anglePrev": 0, + "axes": { + "#": 1083 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1064 + }, + "sleepCounter": 0, + "region": { + "#": 1086 + } + }, + [ + { + "#": 1064 + } + ], + [ + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + } + ], + { + "x": 180, + "y": 477.73575, + "index": 0, + "body": { + "#": 1064 + }, + "isInternal": false + }, + { + "x": 220, + "y": 477.73575, + "index": 1, + "body": { + "#": 1064 + }, + "isInternal": false + }, + { + "x": 220, + "y": 517.73575, + "index": 2, + "body": { + "#": 1064 + }, + "isInternal": false + }, + { + "x": 180, + "y": 517.73575, + "index": 3, + "body": { + "#": 1064 + }, + "isInternal": false + }, + { + "x": 200, + "y": 497.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1078 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1080 + }, + "max": { + "#": 1081 + } + }, + { + "x": 180, + "y": 477.73575 + }, + { + "x": 220, + "y": 517.73575 + }, + { + "x": 200, + "y": 494.82848 + }, + [ + { + "#": 1084 + }, + { + "#": 1085 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,9,10", + "startCol": 3, + "endCol": 4, + "startRow": 9, + "endRow": 10 + }, + { + "id": 48, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1088 + }, + "angle": 0, + "vertices": { + "#": 1089 + }, + "position": { + "#": 1094 + }, + "force": { + "#": 1095 + }, + "torque": 0, + "positionImpulse": { + "#": 1096 + }, + "constraintImpulse": { + "#": 1097 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1098 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1099 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1100 + }, + "bounds": { + "#": 1102 + }, + "positionPrev": { + "#": 1105 + }, + "anglePrev": 0, + "axes": { + "#": 1106 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1087 + }, + "sleepCounter": 0, + "region": { + "#": 1109 + } + }, + [ + { + "#": 1087 + } + ], + [ + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + } + ], + { + "x": 220, + "y": 477.73575, + "index": 0, + "body": { + "#": 1087 + }, + "isInternal": false + }, + { + "x": 260, + "y": 477.73575, + "index": 1, + "body": { + "#": 1087 + }, + "isInternal": false + }, + { + "x": 260, + "y": 517.73575, + "index": 2, + "body": { + "#": 1087 + }, + "isInternal": false + }, + { + "x": 220, + "y": 517.73575, + "index": 3, + "body": { + "#": 1087 + }, + "isInternal": false + }, + { + "x": 240, + "y": 497.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1101 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1103 + }, + "max": { + "#": 1104 + } + }, + { + "x": 220, + "y": 477.73575 + }, + { + "x": 260, + "y": 517.73575 + }, + { + "x": 240, + "y": 494.82848 + }, + [ + { + "#": 1107 + }, + { + "#": 1108 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,9,10", + "startCol": 4, + "endCol": 5, + "startRow": 9, + "endRow": 10 + }, + { + "id": 49, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1111 + }, + "angle": 0, + "vertices": { + "#": 1112 + }, + "position": { + "#": 1117 + }, + "force": { + "#": 1118 + }, + "torque": 0, + "positionImpulse": { + "#": 1119 + }, + "constraintImpulse": { + "#": 1120 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1121 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1122 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1123 + }, + "bounds": { + "#": 1125 + }, + "positionPrev": { + "#": 1128 + }, + "anglePrev": 0, + "axes": { + "#": 1129 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1110 + }, + "sleepCounter": 0, + "region": { + "#": 1132 + } + }, + [ + { + "#": 1110 + } + ], + [ + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + } + ], + { + "x": 260, + "y": 477.73575, + "index": 0, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 300, + "y": 477.73575, + "index": 1, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 300, + "y": 517.73575, + "index": 2, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 260, + "y": 517.73575, + "index": 3, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 280, + "y": 497.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1124 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1126 + }, + "max": { + "#": 1127 + } + }, + { + "x": 260, + "y": 477.73575 + }, + { + "x": 300, + "y": 517.73575 + }, + { + "x": 280, + "y": 494.82848 + }, + [ + { + "#": 1130 + }, + { + "#": 1131 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,9,10", + "startCol": 5, + "endCol": 6, + "startRow": 9, + "endRow": 10 + }, + { + "id": 50, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1134 + }, + "angle": 0, + "vertices": { + "#": 1135 + }, + "position": { + "#": 1140 + }, + "force": { + "#": 1141 + }, + "torque": 0, + "positionImpulse": { + "#": 1142 + }, + "constraintImpulse": { + "#": 1143 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1144 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1145 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1146 + }, + "bounds": { + "#": 1148 + }, + "positionPrev": { + "#": 1151 + }, + "anglePrev": 0, + "axes": { + "#": 1152 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1133 + }, + "sleepCounter": 0, + "region": { + "#": 1155 + } + }, + [ + { + "#": 1133 + } + ], + [ + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + } + ], + { + "x": 300, + "y": 477.73575, + "index": 0, + "body": { + "#": 1133 + }, + "isInternal": false + }, + { + "x": 340, + "y": 477.73575, + "index": 1, + "body": { + "#": 1133 + }, + "isInternal": false + }, + { + "x": 340, + "y": 517.73575, + "index": 2, + "body": { + "#": 1133 + }, + "isInternal": false + }, + { + "x": 300, + "y": 517.73575, + "index": 3, + "body": { + "#": 1133 + }, + "isInternal": false + }, + { + "x": 320, + "y": 497.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1147 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1149 + }, + "max": { + "#": 1150 + } + }, + { + "x": 300, + "y": 477.73575 + }, + { + "x": 340, + "y": 517.73575 + }, + { + "x": 320, + "y": 494.82848 + }, + [ + { + "#": 1153 + }, + { + "#": 1154 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,9,10", + "startCol": 6, + "endCol": 7, + "startRow": 9, + "endRow": 10 + }, + { + "id": 51, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1157 + }, + "angle": 0, + "vertices": { + "#": 1158 + }, + "position": { + "#": 1163 + }, + "force": { + "#": 1164 + }, + "torque": 0, + "positionImpulse": { + "#": 1165 + }, + "constraintImpulse": { + "#": 1166 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1167 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1168 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1169 + }, + "bounds": { + "#": 1171 + }, + "positionPrev": { + "#": 1174 + }, + "anglePrev": 0, + "axes": { + "#": 1175 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1156 + }, + "sleepCounter": 0, + "region": { + "#": 1178 + } + }, + [ + { + "#": 1156 + } + ], + [ + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + } + ], + { + "x": 340, + "y": 477.73575, + "index": 0, + "body": { + "#": 1156 + }, + "isInternal": false + }, + { + "x": 380, + "y": 477.73575, + "index": 1, + "body": { + "#": 1156 + }, + "isInternal": false + }, + { + "x": 380, + "y": 517.73575, + "index": 2, + "body": { + "#": 1156 + }, + "isInternal": false + }, + { + "x": 340, + "y": 517.73575, + "index": 3, + "body": { + "#": 1156 + }, + "isInternal": false + }, + { + "x": 360, + "y": 497.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1170 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1172 + }, + "max": { + "#": 1173 + } + }, + { + "x": 340, + "y": 477.73575 + }, + { + "x": 380, + "y": 517.73575 + }, + { + "x": 360, + "y": 494.82848 + }, + [ + { + "#": 1176 + }, + { + "#": 1177 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,9,10", + "startCol": 7, + "endCol": 7, + "startRow": 9, + "endRow": 10 + }, + { + "id": 52, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1180 + }, + "angle": 0, + "vertices": { + "#": 1181 + }, + "position": { + "#": 1186 + }, + "force": { + "#": 1187 + }, + "torque": 0, + "positionImpulse": { + "#": 1188 + }, + "constraintImpulse": { + "#": 1189 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1190 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1191 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1192 + }, + "bounds": { + "#": 1194 + }, + "positionPrev": { + "#": 1197 + }, + "anglePrev": 0, + "axes": { + "#": 1198 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1179 + }, + "sleepCounter": 0, + "region": { + "#": 1201 + } + }, + [ + { + "#": 1179 + } + ], + [ + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + } + ], + { + "x": 380, + "y": 477.73575, + "index": 0, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 420, + "y": 477.73575, + "index": 1, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 420, + "y": 517.73575, + "index": 2, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 380, + "y": 517.73575, + "index": 3, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 400, + "y": 497.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1193 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1195 + }, + "max": { + "#": 1196 + } + }, + { + "x": 380, + "y": 477.73575 + }, + { + "x": 420, + "y": 517.73575 + }, + { + "x": 400, + "y": 494.82848 + }, + [ + { + "#": 1199 + }, + { + "#": 1200 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,9,10", + "startCol": 7, + "endCol": 8, + "startRow": 9, + "endRow": 10 + }, + { + "id": 53, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1203 + }, + "angle": 0, + "vertices": { + "#": 1204 + }, + "position": { + "#": 1209 + }, + "force": { + "#": 1210 + }, + "torque": 0, + "positionImpulse": { + "#": 1211 + }, + "constraintImpulse": { + "#": 1212 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1213 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1214 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1215 + }, + "bounds": { + "#": 1217 + }, + "positionPrev": { + "#": 1220 + }, + "anglePrev": 0, + "axes": { + "#": 1221 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1202 + }, + "sleepCounter": 0, + "region": { + "#": 1224 + } + }, + [ + { + "#": 1202 + } + ], + [ + { + "#": 1205 + }, + { + "#": 1206 + }, + { + "#": 1207 + }, + { + "#": 1208 + } + ], + { + "x": 420, + "y": 477.73575, + "index": 0, + "body": { + "#": 1202 + }, + "isInternal": false + }, + { + "x": 460, + "y": 477.73575, + "index": 1, + "body": { + "#": 1202 + }, + "isInternal": false + }, + { + "x": 460, + "y": 517.73575, + "index": 2, + "body": { + "#": 1202 + }, + "isInternal": false + }, + { + "x": 420, + "y": 517.73575, + "index": 3, + "body": { + "#": 1202 + }, + "isInternal": false + }, + { + "x": 440, + "y": 497.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1216 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1218 + }, + "max": { + "#": 1219 + } + }, + { + "x": 420, + "y": 477.73575 + }, + { + "x": 460, + "y": 517.73575 + }, + { + "x": 440, + "y": 494.82848 + }, + [ + { + "#": 1222 + }, + { + "#": 1223 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,9,10", + "startCol": 8, + "endCol": 9, + "startRow": 9, + "endRow": 10 + }, + { + "id": 54, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1226 + }, + "angle": 0, + "vertices": { + "#": 1227 + }, + "position": { + "#": 1232 + }, + "force": { + "#": 1233 + }, + "torque": 0, + "positionImpulse": { + "#": 1234 + }, + "constraintImpulse": { + "#": 1235 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1236 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1237 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1238 + }, + "bounds": { + "#": 1240 + }, + "positionPrev": { + "#": 1243 + }, + "anglePrev": 0, + "axes": { + "#": 1244 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1225 + }, + "sleepCounter": 0, + "region": { + "#": 1247 + } + }, + [ + { + "#": 1225 + } + ], + [ + { + "#": 1228 + }, + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + } + ], + { + "x": 460, + "y": 477.73575, + "index": 0, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 500, + "y": 477.73575, + "index": 1, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 500, + "y": 517.73575, + "index": 2, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 460, + "y": 517.73575, + "index": 3, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 480, + "y": 497.73575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1239 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1241 + }, + "max": { + "#": 1242 + } + }, + { + "x": 460, + "y": 477.73575 + }, + { + "x": 500, + "y": 517.73575 + }, + { + "x": 480, + "y": 494.82848 + }, + [ + { + "#": 1245 + }, + { + "#": 1246 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,9,10", + "startCol": 9, + "endCol": 10, + "startRow": 9, + "endRow": 10 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 1252 + }, + "max": { + "#": 1253 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/staticFriction/staticFriction-0.json b/test/node/refs/staticFriction/staticFriction-0.json new file mode 100644 index 00000000..6c891f87 --- /dev/null +++ b/test/node/refs/staticFriction/staticFriction-0.json @@ -0,0 +1,2596 @@ +[ + { + "id": 7, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 130 + }, + "composites": { + "#": 131 + }, + "label": "World", + "gravity": { + "#": 268 + }, + "bounds": { + "#": 269 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 4, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 91 + }, + "angle": 0, + "vertices": { + "#": 92 + }, + "position": { + "#": 109 + }, + "force": { + "#": 110 + }, + "torque": 0, + "positionImpulse": { + "#": 111 + }, + "constraintImpulse": { + "#": 112 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 113 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 114 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 115 + }, + "bounds": { + "#": 117 + }, + "positionPrev": { + "#": 120 + }, + "anglePrev": 0, + "axes": { + "#": 121 + }, + "area": 11907.05754, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 90 + }, + "sleepCounter": 0 + }, + [ + { + "#": 90 + } + ], + [ + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + } + ], + { + "x": 300, + "y": 478, + "index": 0, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 300.83662, + "y": 474.43827, + "index": 1, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 303.17149, + "y": 471.62148, + "index": 2, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 306.51626, + "y": 470.1388, + "index": 3, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 492, + "y": 470, + "index": 4, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 495.56173, + "y": 470.83662, + "index": 5, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 498.37852, + "y": 473.17149, + "index": 6, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 499.8612, + "y": 476.51626, + "index": 7, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 500, + "y": 522, + "index": 8, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 499.16338, + "y": 525.56173, + "index": 9, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 496.82851, + "y": 528.37852, + "index": 10, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 493.48374, + "y": 529.8612, + "index": 11, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 308, + "y": 530, + "index": 12, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 304.43827, + "y": 529.16338, + "index": 13, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 301.62148, + "y": 526.82851, + "index": 14, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 300.1388, + "y": 523.48374, + "index": 15, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 400, + "y": 500 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 116 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 118 + }, + "max": { + "#": 119 + } + }, + { + "x": 300, + "y": 470 + }, + { + "x": 500, + "y": 530 + }, + { + "x": 400, + "y": 500 + }, + [ + { + "#": 122 + }, + { + "#": 123 + }, + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + } + ], + { + "x": 0.9735, + "y": 0.22867 + }, + { + "x": 0.76989, + "y": 0.63817 + }, + { + "x": 0.40525, + "y": 0.9142 + }, + { + "x": 0.00075, + "y": 1 + }, + { + "x": -0.22867, + "y": 0.9735 + }, + { + "x": -0.63817, + "y": 0.76989 + }, + { + "x": -0.9142, + "y": 0.40525 + }, + { + "x": -1, + "y": 0.00305 + }, + [], + [ + { + "#": 132 + } + ], + { + "id": 5, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 133 + }, + "constraints": { + "#": 266 + }, + "composites": { + "#": 267 + }, + "label": "Stack" + }, + [ + { + "#": 134 + }, + { + "#": 156 + }, + { + "#": 178 + }, + { + "#": 200 + }, + { + "#": 222 + }, + { + "#": 244 + } + ], + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 135 + }, + "angle": 0, + "vertices": { + "#": 136 + }, + "position": { + "#": 141 + }, + "force": { + "#": 142 + }, + "torque": 0, + "positionImpulse": { + "#": 143 + }, + "constraintImpulse": { + "#": 144 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 145 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 1, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "frictionAir": 0.01, + "collisionFilter": { + "#": 146 + }, + "slop": 0.5, + "timeScale": 1, + "render": { + "#": 147 + }, + "bounds": { + "#": 149 + }, + "positionPrev": { + "#": 152 + }, + "anglePrev": 0, + "axes": { + "#": 153 + }, + "area": 5000, + "mass": 5, + "inverseMass": 0.2, + "inertia": 20833.33333, + "inverseInertia": 0.00005, + "parent": { + "#": 134 + }, + "sleepCounter": 0 + }, + [ + { + "#": 134 + } + ], + [ + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + } + ], + { + "x": 350, + "y": 170, + "index": 0, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 450, + "y": 170, + "index": 1, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 450, + "y": 220, + "index": 2, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 350, + "y": 220, + "index": 3, + "body": { + "#": 134 + }, + "isInternal": false + }, + { + "x": 400, + "y": 195 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 148 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 150 + }, + "max": { + "#": 151 + } + }, + { + "x": 350, + "y": 170 + }, + { + "x": 450, + "y": 220 + }, + { + "x": 400, + "y": 195 + }, + [ + { + "#": 154 + }, + { + "#": 155 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 157 + }, + "angle": 0, + "vertices": { + "#": 158 + }, + "position": { + "#": 163 + }, + "force": { + "#": 164 + }, + "torque": 0, + "positionImpulse": { + "#": 165 + }, + "constraintImpulse": { + "#": 166 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 167 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 1, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "frictionAir": 0.01, + "collisionFilter": { + "#": 168 + }, + "slop": 0.5, + "timeScale": 1, + "render": { + "#": 169 + }, + "bounds": { + "#": 171 + }, + "positionPrev": { + "#": 174 + }, + "anglePrev": 0, + "axes": { + "#": 175 + }, + "area": 5000, + "mass": 5, + "inverseMass": 0.2, + "inertia": 20833.33333, + "inverseInertia": 0.00005, + "parent": { + "#": 156 + }, + "sleepCounter": 0 + }, + [ + { + "#": 156 + } + ], + [ + { + "#": 159 + }, + { + "#": 160 + }, + { + "#": 161 + }, + { + "#": 162 + } + ], + { + "x": 350, + "y": 220, + "index": 0, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 450, + "y": 220, + "index": 1, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 450, + "y": 270, + "index": 2, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 350, + "y": 270, + "index": 3, + "body": { + "#": 156 + }, + "isInternal": false + }, + { + "x": 400, + "y": 245 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 170 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 172 + }, + "max": { + "#": 173 + } + }, + { + "x": 350, + "y": 220 + }, + { + "x": 450, + "y": 270 + }, + { + "x": 400, + "y": 245 + }, + [ + { + "#": 176 + }, + { + "#": 177 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 179 + }, + "angle": 0, + "vertices": { + "#": 180 + }, + "position": { + "#": 185 + }, + "force": { + "#": 186 + }, + "torque": 0, + "positionImpulse": { + "#": 187 + }, + "constraintImpulse": { + "#": 188 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 189 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 1, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "frictionAir": 0.01, + "collisionFilter": { + "#": 190 + }, + "slop": 0.5, + "timeScale": 1, + "render": { + "#": 191 + }, + "bounds": { + "#": 193 + }, + "positionPrev": { + "#": 196 + }, + "anglePrev": 0, + "axes": { + "#": 197 + }, + "area": 5000, + "mass": 5, + "inverseMass": 0.2, + "inertia": 20833.33333, + "inverseInertia": 0.00005, + "parent": { + "#": 178 + }, + "sleepCounter": 0 + }, + [ + { + "#": 178 + } + ], + [ + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + } + ], + { + "x": 350, + "y": 270, + "index": 0, + "body": { + "#": 178 + }, + "isInternal": false + }, + { + "x": 450, + "y": 270, + "index": 1, + "body": { + "#": 178 + }, + "isInternal": false + }, + { + "x": 450, + "y": 320, + "index": 2, + "body": { + "#": 178 + }, + "isInternal": false + }, + { + "x": 350, + "y": 320, + "index": 3, + "body": { + "#": 178 + }, + "isInternal": false + }, + { + "x": 400, + "y": 295 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 192 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 194 + }, + "max": { + "#": 195 + } + }, + { + "x": 350, + "y": 270 + }, + { + "x": 450, + "y": 320 + }, + { + "x": 400, + "y": 295 + }, + [ + { + "#": 198 + }, + { + "#": 199 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 201 + }, + "angle": 0, + "vertices": { + "#": 202 + }, + "position": { + "#": 207 + }, + "force": { + "#": 208 + }, + "torque": 0, + "positionImpulse": { + "#": 209 + }, + "constraintImpulse": { + "#": 210 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 211 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 1, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "frictionAir": 0.01, + "collisionFilter": { + "#": 212 + }, + "slop": 0.5, + "timeScale": 1, + "render": { + "#": 213 + }, + "bounds": { + "#": 215 + }, + "positionPrev": { + "#": 218 + }, + "anglePrev": 0, + "axes": { + "#": 219 + }, + "area": 5000, + "mass": 5, + "inverseMass": 0.2, + "inertia": 20833.33333, + "inverseInertia": 0.00005, + "parent": { + "#": 200 + }, + "sleepCounter": 0 + }, + [ + { + "#": 200 + } + ], + [ + { + "#": 203 + }, + { + "#": 204 + }, + { + "#": 205 + }, + { + "#": 206 + } + ], + { + "x": 350, + "y": 320, + "index": 0, + "body": { + "#": 200 + }, + "isInternal": false + }, + { + "x": 450, + "y": 320, + "index": 1, + "body": { + "#": 200 + }, + "isInternal": false + }, + { + "x": 450, + "y": 370, + "index": 2, + "body": { + "#": 200 + }, + "isInternal": false + }, + { + "x": 350, + "y": 370, + "index": 3, + "body": { + "#": 200 + }, + "isInternal": false + }, + { + "x": 400, + "y": 345 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 214 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 216 + }, + "max": { + "#": 217 + } + }, + { + "x": 350, + "y": 320 + }, + { + "x": 450, + "y": 370 + }, + { + "x": 400, + "y": 345 + }, + [ + { + "#": 220 + }, + { + "#": 221 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 223 + }, + "angle": 0, + "vertices": { + "#": 224 + }, + "position": { + "#": 229 + }, + "force": { + "#": 230 + }, + "torque": 0, + "positionImpulse": { + "#": 231 + }, + "constraintImpulse": { + "#": 232 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 233 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 1, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "frictionAir": 0.01, + "collisionFilter": { + "#": 234 + }, + "slop": 0.5, + "timeScale": 1, + "render": { + "#": 235 + }, + "bounds": { + "#": 237 + }, + "positionPrev": { + "#": 240 + }, + "anglePrev": 0, + "axes": { + "#": 241 + }, + "area": 5000, + "mass": 5, + "inverseMass": 0.2, + "inertia": 20833.33333, + "inverseInertia": 0.00005, + "parent": { + "#": 222 + }, + "sleepCounter": 0 + }, + [ + { + "#": 222 + } + ], + [ + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + } + ], + { + "x": 350, + "y": 370, + "index": 0, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 450, + "y": 370, + "index": 1, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 450, + "y": 420, + "index": 2, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 350, + "y": 420, + "index": 3, + "body": { + "#": 222 + }, + "isInternal": false + }, + { + "x": 400, + "y": 395 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 236 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 238 + }, + "max": { + "#": 239 + } + }, + { + "x": 350, + "y": 370 + }, + { + "x": 450, + "y": 420 + }, + { + "x": 400, + "y": 395 + }, + [ + { + "#": 242 + }, + { + "#": 243 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 245 + }, + "angle": 0, + "vertices": { + "#": 246 + }, + "position": { + "#": 251 + }, + "force": { + "#": 252 + }, + "torque": 0, + "positionImpulse": { + "#": 253 + }, + "constraintImpulse": { + "#": 254 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 255 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 1, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "frictionAir": 0.01, + "collisionFilter": { + "#": 256 + }, + "slop": 0.5, + "timeScale": 1, + "render": { + "#": 257 + }, + "bounds": { + "#": 259 + }, + "positionPrev": { + "#": 262 + }, + "anglePrev": 0, + "axes": { + "#": 263 + }, + "area": 5000, + "mass": 5, + "inverseMass": 0.2, + "inertia": 20833.33333, + "inverseInertia": 0.00005, + "parent": { + "#": 244 + }, + "sleepCounter": 0 + }, + [ + { + "#": 244 + } + ], + [ + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + } + ], + { + "x": 350, + "y": 420, + "index": 0, + "body": { + "#": 244 + }, + "isInternal": false + }, + { + "x": 450, + "y": 420, + "index": 1, + "body": { + "#": 244 + }, + "isInternal": false + }, + { + "x": 450, + "y": 470, + "index": 2, + "body": { + "#": 244 + }, + "isInternal": false + }, + { + "x": 350, + "y": 470, + "index": 3, + "body": { + "#": 244 + }, + "isInternal": false + }, + { + "x": 400, + "y": 445 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 258 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 260 + }, + "max": { + "#": 261 + } + }, + { + "x": 350, + "y": 420 + }, + { + "x": 450, + "y": 470 + }, + { + "x": 400, + "y": 445 + }, + [ + { + "#": 264 + }, + { + "#": 265 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 270 + }, + "max": { + "#": 271 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/staticFriction/staticFriction-10.json b/test/node/refs/staticFriction/staticFriction-10.json new file mode 100644 index 00000000..f337ebde --- /dev/null +++ b/test/node/refs/staticFriction/staticFriction-10.json @@ -0,0 +1,2706 @@ +[ + { + "id": 7, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 135 + }, + "composites": { + "#": 136 + }, + "label": "World", + "gravity": { + "#": 279 + }, + "bounds": { + "#": 280 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + }, + { + "#": 94 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + { + "id": 4, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 96 + }, + "position": { + "#": 113 + }, + "force": { + "#": 114 + }, + "torque": 0, + "positionImpulse": { + "#": 115 + }, + "constraintImpulse": { + "#": 116 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 117 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 118 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 119 + }, + "bounds": { + "#": 121 + }, + "positionPrev": { + "#": 124 + }, + "anglePrev": 0, + "axes": { + "#": 125 + }, + "area": 11907.05754, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 94 + }, + "sleepCounter": 0, + "region": { + "#": 134 + } + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + } + ], + { + "x": 300, + "y": 478, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 300.83662, + "y": 474.43827, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 303.17149, + "y": 471.62148, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 306.51626, + "y": 470.1388, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 492, + "y": 470, + "index": 4, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 495.56173, + "y": 470.83662, + "index": 5, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 498.37852, + "y": 473.17149, + "index": 6, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 499.8612, + "y": 476.51626, + "index": 7, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 500, + "y": 522, + "index": 8, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 499.16338, + "y": 525.56173, + "index": 9, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 496.82851, + "y": 528.37852, + "index": 10, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 493.48374, + "y": 529.8612, + "index": 11, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 308, + "y": 530, + "index": 12, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 304.43827, + "y": 529.16338, + "index": 13, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 301.62148, + "y": 526.82851, + "index": 14, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 300.1388, + "y": 523.48374, + "index": 15, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 400, + "y": 500 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 120 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 122 + }, + "max": { + "#": 123 + } + }, + { + "x": 300, + "y": 470 + }, + { + "x": 500, + "y": 530 + }, + { + "x": 400, + "y": 500 + }, + [ + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + } + ], + { + "x": 0.9735, + "y": 0.22867 + }, + { + "x": 0.76989, + "y": 0.63817 + }, + { + "x": 0.40525, + "y": 0.9142 + }, + { + "x": 0.00075, + "y": 1 + }, + { + "x": -0.22867, + "y": 0.9735 + }, + { + "x": -0.63817, + "y": 0.76989 + }, + { + "x": -0.9142, + "y": 0.40525 + }, + { + "x": -1, + "y": 0.00305 + }, + { + "id": "6,10,9,11", + "startCol": 6, + "endCol": 10, + "startRow": 9, + "endRow": 11 + }, + [], + [ + { + "#": 137 + } + ], + { + "id": 5, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 138 + }, + "constraints": { + "#": 277 + }, + "composites": { + "#": 278 + }, + "label": "Stack" + }, + [ + { + "#": 139 + }, + { + "#": 162 + }, + { + "#": 185 + }, + { + "#": 208 + }, + { + "#": 231 + }, + { + "#": 254 + } + ], + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 140 + }, + "angle": -0.00123, + "vertices": { + "#": 141 + }, + "position": { + "#": 146 + }, + "force": { + "#": 147 + }, + "torque": 0, + "positionImpulse": { + "#": 148 + }, + "constraintImpulse": { + "#": 149 + }, + "totalContacts": 0, + "speed": 0.81294, + "angularSpeed": 0.00017, + "velocity": { + "#": 150 + }, + "angularVelocity": -0.00012, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 1, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "frictionAir": 0.01, + "collisionFilter": { + "#": 151 + }, + "slop": 0.5, + "timeScale": 1, + "render": { + "#": 152 + }, + "bounds": { + "#": 154 + }, + "positionPrev": { + "#": 157 + }, + "anglePrev": -0.00111, + "axes": { + "#": 158 + }, + "area": 5000, + "mass": 5, + "inverseMass": 0.2, + "inertia": 20833.33333, + "inverseInertia": 0.00005, + "parent": { + "#": 139 + }, + "sleepCounter": 0, + "region": { + "#": 161 + } + }, + [ + { + "#": 139 + } + ], + [ + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + } + ], + { + "x": 349.93009, + "y": 178.98615, + "index": 0, + "body": { + "#": 139 + }, + "isInternal": false + }, + { + "x": 449.93002, + "y": 178.86305, + "index": 1, + "body": { + "#": 139 + }, + "isInternal": false + }, + { + "x": 449.99157, + "y": 228.86301, + "index": 2, + "body": { + "#": 139 + }, + "isInternal": false + }, + { + "x": 349.99164, + "y": 228.98611, + "index": 3, + "body": { + "#": 139 + }, + "isInternal": false + }, + { + "x": 399.96083, + "y": 203.92458 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00727, + "y": 0.3068 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 153 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 155 + }, + "max": { + "#": 156 + } + }, + { + "x": 349.9225, + "y": 178.86305 + }, + { + "x": 449.99157, + "y": 229.79901 + }, + { + "x": 399.96808, + "y": 203.61982 + }, + [ + { + "#": 159 + }, + { + "#": 160 + } + ], + { + "x": 0.00123, + "y": 1 + }, + { + "x": -1, + "y": 0.00123 + }, + { + "id": "7,9,3,4", + "startCol": 7, + "endCol": 9, + "startRow": 3, + "endRow": 4 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 163 + }, + "angle": -0.00091, + "vertices": { + "#": 164 + }, + "position": { + "#": 169 + }, + "force": { + "#": 170 + }, + "torque": 0, + "positionImpulse": { + "#": 171 + }, + "constraintImpulse": { + "#": 172 + }, + "totalContacts": 0, + "speed": 0.80177, + "angularSpeed": 0.00016, + "velocity": { + "#": 173 + }, + "angularVelocity": -0.00012, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 1, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "frictionAir": 0.01, + "collisionFilter": { + "#": 174 + }, + "slop": 0.5, + "timeScale": 1, + "render": { + "#": 175 + }, + "bounds": { + "#": 177 + }, + "positionPrev": { + "#": 180 + }, + "anglePrev": -0.00078, + "axes": { + "#": 181 + }, + "area": 5000, + "mass": 5, + "inverseMass": 0.2, + "inertia": 20833.33333, + "inverseInertia": 0.00005, + "parent": { + "#": 162 + }, + "sleepCounter": 0, + "region": { + "#": 184 + } + }, + [ + { + "#": 162 + } + ], + [ + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + } + ], + { + "x": 350.00336, + "y": 228.26819, + "index": 0, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 450.00332, + "y": 228.17742, + "index": 1, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 450.04871, + "y": 278.1774, + "index": 2, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 350.04875, + "y": 278.26817, + "index": 3, + "body": { + "#": 162 + }, + "isInternal": false + }, + { + "x": 400.02604, + "y": 253.2228 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00103, + "y": 0.30025 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 176 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 178 + }, + "max": { + "#": 179 + } + }, + { + "x": 350.00336, + "y": 228.17742 + }, + { + "x": 450.05003, + "y": 279.06994 + }, + { + "x": 400.02709, + "y": 252.9205 + }, + [ + { + "#": 182 + }, + { + "#": 183 + } + ], + { + "x": 0.00091, + "y": 1 + }, + { + "x": -1, + "y": 0.00091 + }, + { + "id": "7,9,4,5", + "startCol": 7, + "endCol": 9, + "startRow": 4, + "endRow": 5 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 186 + }, + "angle": 0.0001, + "vertices": { + "#": 187 + }, + "position": { + "#": 192 + }, + "force": { + "#": 193 + }, + "torque": 0, + "positionImpulse": { + "#": 194 + }, + "constraintImpulse": { + "#": 195 + }, + "totalContacts": 0, + "speed": 0.72392, + "angularSpeed": 0.0001, + "velocity": { + "#": 196 + }, + "angularVelocity": -0.00011, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 1, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "frictionAir": 0.01, + "collisionFilter": { + "#": 197 + }, + "slop": 0.5, + "timeScale": 1, + "render": { + "#": 198 + }, + "bounds": { + "#": 200 + }, + "positionPrev": { + "#": 203 + }, + "anglePrev": 0.0002, + "axes": { + "#": 204 + }, + "area": 5000, + "mass": 5, + "inverseMass": 0.2, + "inertia": 20833.33333, + "inverseInertia": 0.00005, + "parent": { + "#": 185 + }, + "sleepCounter": 0, + "region": { + "#": 207 + } + }, + [ + { + "#": 185 + } + ], + [ + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + } + ], + { + "x": 350.04235, + "y": 277.11938, + "index": 0, + "body": { + "#": 185 + }, + "isInternal": false + }, + { + "x": 450.04235, + "y": 277.12918, + "index": 1, + "body": { + "#": 185 + }, + "isInternal": false + }, + { + "x": 450.03745, + "y": 327.12918, + "index": 2, + "body": { + "#": 185 + }, + "isInternal": false + }, + { + "x": 350.03745, + "y": 327.11938, + "index": 3, + "body": { + "#": 185 + }, + "isInternal": false + }, + { + "x": 400.0399, + "y": 302.12428 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00535, + "y": 0.29622 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 199 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 201 + }, + "max": { + "#": 202 + } + }, + { + "x": 350.03745, + "y": 277.11938 + }, + { + "x": 450.04981, + "y": 327.85306 + }, + { + "x": 400.03461, + "y": 301.84035 + }, + [ + { + "#": 205 + }, + { + "#": 206 + } + ], + { + "x": -0.0001, + "y": 1 + }, + { + "x": -1, + "y": -0.0001 + }, + { + "id": "7,9,5,6", + "startCol": 7, + "endCol": 9, + "startRow": 5, + "endRow": 6 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 209 + }, + "angle": 0.00033, + "vertices": { + "#": 210 + }, + "position": { + "#": 215 + }, + "force": { + "#": 216 + }, + "torque": 0, + "positionImpulse": { + "#": 217 + }, + "constraintImpulse": { + "#": 218 + }, + "totalContacts": 0, + "speed": 0.67192, + "angularSpeed": 0.00005, + "velocity": { + "#": 219 + }, + "angularVelocity": -0.00005, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 1, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "frictionAir": 0.01, + "collisionFilter": { + "#": 220 + }, + "slop": 0.5, + "timeScale": 1, + "render": { + "#": 221 + }, + "bounds": { + "#": 223 + }, + "positionPrev": { + "#": 226 + }, + "anglePrev": 0.00039, + "axes": { + "#": 227 + }, + "area": 5000, + "mass": 5, + "inverseMass": 0.2, + "inertia": 20833.33333, + "inverseInertia": 0.00005, + "parent": { + "#": 208 + }, + "sleepCounter": 0, + "region": { + "#": 230 + } + }, + [ + { + "#": 208 + } + ], + [ + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + } + ], + { + "x": 350.02233, + "y": 325.55597, + "index": 0, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 450.02233, + "y": 325.58875, + "index": 1, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 450.00594, + "y": 375.58874, + "index": 2, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 350.00595, + "y": 375.55597, + "index": 3, + "body": { + "#": 208 + }, + "isInternal": false + }, + { + "x": 400.01414, + "y": 350.57236 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00882, + "y": 0.25688 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 222 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 224 + }, + "max": { + "#": 225 + } + }, + { + "x": 350.00595, + "y": 325.55597 + }, + { + "x": 450.03103, + "y": 376.2606 + }, + { + "x": 400.00527, + "y": 350.30318 + }, + [ + { + "#": 228 + }, + { + "#": 229 + } + ], + { + "x": -0.00033, + "y": 1 + }, + { + "x": -1, + "y": -0.00033 + }, + { + "id": "7,9,6,7", + "startCol": 7, + "endCol": 9, + "startRow": 6, + "endRow": 7 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 232 + }, + "angle": 0.00026, + "vertices": { + "#": 233 + }, + "position": { + "#": 238 + }, + "force": { + "#": 239 + }, + "torque": 0, + "positionImpulse": { + "#": 240 + }, + "constraintImpulse": { + "#": 241 + }, + "totalContacts": 0, + "speed": 0.54819, + "angularSpeed": 0.00002, + "velocity": { + "#": 242 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 1, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "frictionAir": 0.01, + "collisionFilter": { + "#": 243 + }, + "slop": 0.5, + "timeScale": 1, + "render": { + "#": 244 + }, + "bounds": { + "#": 246 + }, + "positionPrev": { + "#": 249 + }, + "anglePrev": 0.00027, + "axes": { + "#": 250 + }, + "area": 5000, + "mass": 5, + "inverseMass": 0.2, + "inertia": 20833.33333, + "inverseInertia": 0.00005, + "parent": { + "#": 231 + }, + "sleepCounter": 0, + "region": { + "#": 253 + } + }, + [ + { + "#": 231 + } + ], + [ + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + } + ], + { + "x": 349.99874, + "y": 373.62642, + "index": 0, + "body": { + "#": 231 + }, + "isInternal": false + }, + { + "x": 449.99874, + "y": 373.652, + "index": 1, + "body": { + "#": 231 + }, + "isInternal": false + }, + { + "x": 449.98595, + "y": 423.652, + "index": 2, + "body": { + "#": 231 + }, + "isInternal": false + }, + { + "x": 349.98595, + "y": 423.62642, + "index": 3, + "body": { + "#": 231 + }, + "isInternal": false + }, + { + "x": 399.99235, + "y": 398.63921 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00687, + "y": 0.19197 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 245 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 247 + }, + "max": { + "#": 248 + } + }, + { + "x": 349.98595, + "y": 373.62642 + }, + { + "x": 450.00278, + "y": 424.20017 + }, + { + "x": 399.98497, + "y": 398.41773 + }, + [ + { + "#": 251 + }, + { + "#": 252 + } + ], + { + "x": -0.00026, + "y": 1 + }, + { + "x": -1, + "y": -0.00026 + }, + { + "id": "7,9,7,8", + "startCol": 7, + "endCol": 9, + "startRow": 7, + "endRow": 8 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 255 + }, + "angle": 0.00007, + "vertices": { + "#": 256 + }, + "position": { + "#": 261 + }, + "force": { + "#": 262 + }, + "torque": 0, + "positionImpulse": { + "#": 263 + }, + "constraintImpulse": { + "#": 264 + }, + "totalContacts": 0, + "speed": 0.39148, + "angularSpeed": 0, + "velocity": { + "#": 265 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 1, + "frictionStatic": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "frictionAir": 0.01, + "collisionFilter": { + "#": 266 + }, + "slop": 0.5, + "timeScale": 1, + "render": { + "#": 267 + }, + "bounds": { + "#": 269 + }, + "positionPrev": { + "#": 272 + }, + "anglePrev": 0.00007, + "axes": { + "#": 273 + }, + "area": 5000, + "mass": 5, + "inverseMass": 0.2, + "inertia": 20833.33333, + "inverseInertia": 0.00005, + "parent": { + "#": 254 + }, + "sleepCounter": 0, + "region": { + "#": 276 + } + }, + [ + { + "#": 254 + } + ], + [ + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + } + ], + { + "x": 349.97951, + "y": 421.43268, + "index": 0, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 449.97951, + "y": 421.43961, + "index": 1, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 449.97604, + "y": 471.43961, + "index": 2, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 349.97604, + "y": 471.43268, + "index": 3, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 399.97777, + "y": 446.43615 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.0032, + "y": 0.05237 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 268 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 270 + }, + "max": { + "#": 271 + } + }, + { + "x": 349.97604, + "y": 421.43268 + }, + { + "x": 449.97999, + "y": 471.83109 + }, + { + "x": 399.97405, + "y": 446.32031 + }, + [ + { + "#": 274 + }, + { + "#": 275 + } + ], + { + "x": -0.00007, + "y": 1 + }, + { + "x": -1, + "y": -0.00007 + }, + { + "id": "7,9,8,9", + "startCol": 7, + "endCol": 9, + "startRow": 8, + "endRow": 9 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 281 + }, + "max": { + "#": 282 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/stress/stress-0.json b/test/node/refs/stress/stress-0.json new file mode 100644 index 00000000..d3a741ba --- /dev/null +++ b/test/node/refs/stress/stress-0.json @@ -0,0 +1,55228 @@ +[ + { + "id": 10, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 90 + }, + "composites": { + "#": 91 + }, + "label": "World", + "gravity": { + "#": 6036 + }, + "bounds": { + "#": 6037 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [ + { + "#": 92 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 93 + }, + "constraints": { + "#": 6034 + }, + "composites": { + "#": 6035 + }, + "label": "Stack" + }, + [ + { + "#": 94 + }, + { + "#": 116 + }, + { + "#": 138 + }, + { + "#": 160 + }, + { + "#": 182 + }, + { + "#": 204 + }, + { + "#": 226 + }, + { + "#": 248 + }, + { + "#": 270 + }, + { + "#": 292 + }, + { + "#": 314 + }, + { + "#": 336 + }, + { + "#": 358 + }, + { + "#": 380 + }, + { + "#": 402 + }, + { + "#": 424 + }, + { + "#": 446 + }, + { + "#": 468 + }, + { + "#": 490 + }, + { + "#": 512 + }, + { + "#": 534 + }, + { + "#": 556 + }, + { + "#": 578 + }, + { + "#": 600 + }, + { + "#": 622 + }, + { + "#": 644 + }, + { + "#": 666 + }, + { + "#": 688 + }, + { + "#": 710 + }, + { + "#": 732 + }, + { + "#": 754 + }, + { + "#": 776 + }, + { + "#": 798 + }, + { + "#": 820 + }, + { + "#": 842 + }, + { + "#": 864 + }, + { + "#": 886 + }, + { + "#": 908 + }, + { + "#": 930 + }, + { + "#": 952 + }, + { + "#": 974 + }, + { + "#": 996 + }, + { + "#": 1018 + }, + { + "#": 1040 + }, + { + "#": 1062 + }, + { + "#": 1084 + }, + { + "#": 1106 + }, + { + "#": 1128 + }, + { + "#": 1150 + }, + { + "#": 1172 + }, + { + "#": 1194 + }, + { + "#": 1216 + }, + { + "#": 1238 + }, + { + "#": 1260 + }, + { + "#": 1282 + }, + { + "#": 1304 + }, + { + "#": 1326 + }, + { + "#": 1348 + }, + { + "#": 1370 + }, + { + "#": 1392 + }, + { + "#": 1414 + }, + { + "#": 1436 + }, + { + "#": 1458 + }, + { + "#": 1480 + }, + { + "#": 1502 + }, + { + "#": 1524 + }, + { + "#": 1546 + }, + { + "#": 1568 + }, + { + "#": 1590 + }, + { + "#": 1612 + }, + { + "#": 1634 + }, + { + "#": 1656 + }, + { + "#": 1678 + }, + { + "#": 1700 + }, + { + "#": 1722 + }, + { + "#": 1744 + }, + { + "#": 1766 + }, + { + "#": 1788 + }, + { + "#": 1810 + }, + { + "#": 1832 + }, + { + "#": 1854 + }, + { + "#": 1876 + }, + { + "#": 1898 + }, + { + "#": 1920 + }, + { + "#": 1942 + }, + { + "#": 1964 + }, + { + "#": 1986 + }, + { + "#": 2008 + }, + { + "#": 2030 + }, + { + "#": 2052 + }, + { + "#": 2074 + }, + { + "#": 2096 + }, + { + "#": 2118 + }, + { + "#": 2140 + }, + { + "#": 2162 + }, + { + "#": 2184 + }, + { + "#": 2206 + }, + { + "#": 2228 + }, + { + "#": 2250 + }, + { + "#": 2272 + }, + { + "#": 2294 + }, + { + "#": 2316 + }, + { + "#": 2338 + }, + { + "#": 2360 + }, + { + "#": 2382 + }, + { + "#": 2404 + }, + { + "#": 2426 + }, + { + "#": 2448 + }, + { + "#": 2470 + }, + { + "#": 2492 + }, + { + "#": 2514 + }, + { + "#": 2536 + }, + { + "#": 2558 + }, + { + "#": 2580 + }, + { + "#": 2602 + }, + { + "#": 2624 + }, + { + "#": 2646 + }, + { + "#": 2668 + }, + { + "#": 2690 + }, + { + "#": 2712 + }, + { + "#": 2734 + }, + { + "#": 2756 + }, + { + "#": 2778 + }, + { + "#": 2800 + }, + { + "#": 2822 + }, + { + "#": 2844 + }, + { + "#": 2866 + }, + { + "#": 2888 + }, + { + "#": 2910 + }, + { + "#": 2932 + }, + { + "#": 2954 + }, + { + "#": 2976 + }, + { + "#": 2998 + }, + { + "#": 3020 + }, + { + "#": 3042 + }, + { + "#": 3064 + }, + { + "#": 3086 + }, + { + "#": 3108 + }, + { + "#": 3130 + }, + { + "#": 3152 + }, + { + "#": 3174 + }, + { + "#": 3196 + }, + { + "#": 3218 + }, + { + "#": 3240 + }, + { + "#": 3262 + }, + { + "#": 3284 + }, + { + "#": 3306 + }, + { + "#": 3328 + }, + { + "#": 3350 + }, + { + "#": 3372 + }, + { + "#": 3394 + }, + { + "#": 3416 + }, + { + "#": 3438 + }, + { + "#": 3460 + }, + { + "#": 3482 + }, + { + "#": 3504 + }, + { + "#": 3526 + }, + { + "#": 3548 + }, + { + "#": 3570 + }, + { + "#": 3592 + }, + { + "#": 3614 + }, + { + "#": 3636 + }, + { + "#": 3658 + }, + { + "#": 3680 + }, + { + "#": 3702 + }, + { + "#": 3724 + }, + { + "#": 3746 + }, + { + "#": 3768 + }, + { + "#": 3790 + }, + { + "#": 3812 + }, + { + "#": 3834 + }, + { + "#": 3856 + }, + { + "#": 3878 + }, + { + "#": 3900 + }, + { + "#": 3922 + }, + { + "#": 3944 + }, + { + "#": 3966 + }, + { + "#": 3988 + }, + { + "#": 4010 + }, + { + "#": 4032 + }, + { + "#": 4054 + }, + { + "#": 4076 + }, + { + "#": 4098 + }, + { + "#": 4120 + }, + { + "#": 4142 + }, + { + "#": 4164 + }, + { + "#": 4186 + }, + { + "#": 4208 + }, + { + "#": 4230 + }, + { + "#": 4252 + }, + { + "#": 4274 + }, + { + "#": 4296 + }, + { + "#": 4318 + }, + { + "#": 4340 + }, + { + "#": 4362 + }, + { + "#": 4384 + }, + { + "#": 4406 + }, + { + "#": 4428 + }, + { + "#": 4450 + }, + { + "#": 4472 + }, + { + "#": 4494 + }, + { + "#": 4516 + }, + { + "#": 4538 + }, + { + "#": 4560 + }, + { + "#": 4582 + }, + { + "#": 4604 + }, + { + "#": 4626 + }, + { + "#": 4648 + }, + { + "#": 4670 + }, + { + "#": 4692 + }, + { + "#": 4714 + }, + { + "#": 4736 + }, + { + "#": 4758 + }, + { + "#": 4780 + }, + { + "#": 4802 + }, + { + "#": 4824 + }, + { + "#": 4846 + }, + { + "#": 4868 + }, + { + "#": 4890 + }, + { + "#": 4912 + }, + { + "#": 4934 + }, + { + "#": 4956 + }, + { + "#": 4978 + }, + { + "#": 5000 + }, + { + "#": 5022 + }, + { + "#": 5044 + }, + { + "#": 5066 + }, + { + "#": 5088 + }, + { + "#": 5110 + }, + { + "#": 5132 + }, + { + "#": 5154 + }, + { + "#": 5176 + }, + { + "#": 5198 + }, + { + "#": 5220 + }, + { + "#": 5242 + }, + { + "#": 5264 + }, + { + "#": 5286 + }, + { + "#": 5308 + }, + { + "#": 5330 + }, + { + "#": 5352 + }, + { + "#": 5374 + }, + { + "#": 5396 + }, + { + "#": 5418 + }, + { + "#": 5440 + }, + { + "#": 5462 + }, + { + "#": 5484 + }, + { + "#": 5506 + }, + { + "#": 5528 + }, + { + "#": 5550 + }, + { + "#": 5572 + }, + { + "#": 5594 + }, + { + "#": 5616 + }, + { + "#": 5638 + }, + { + "#": 5660 + }, + { + "#": 5682 + }, + { + "#": 5704 + }, + { + "#": 5726 + }, + { + "#": 5748 + }, + { + "#": 5770 + }, + { + "#": 5792 + }, + { + "#": 5814 + }, + { + "#": 5836 + }, + { + "#": 5858 + }, + { + "#": 5880 + }, + { + "#": 5902 + }, + { + "#": 5924 + }, + { + "#": 5946 + }, + { + "#": 5968 + }, + { + "#": 5990 + }, + { + "#": 6012 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 96 + }, + "position": { + "#": 101 + }, + "force": { + "#": 102 + }, + "torque": 0, + "positionImpulse": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 105 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 106 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 107 + }, + "bounds": { + "#": 109 + }, + "positionPrev": { + "#": 112 + }, + "anglePrev": 0, + "axes": { + "#": 113 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 94 + }, + "sleepCounter": 0 + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + } + ], + { + "x": 90, + "y": 50, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 125, + "y": 50, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 125, + "y": 85, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 90, + "y": 85, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 108 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 110 + }, + "max": { + "#": 111 + } + }, + { + "x": 90, + "y": 50 + }, + { + "x": 125, + "y": 85 + }, + { + "x": 107.5, + "y": 67.5 + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 117 + }, + "angle": 0, + "vertices": { + "#": 118 + }, + "position": { + "#": 123 + }, + "force": { + "#": 124 + }, + "torque": 0, + "positionImpulse": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 127 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 128 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 129 + }, + "bounds": { + "#": 131 + }, + "positionPrev": { + "#": 134 + }, + "anglePrev": 0, + "axes": { + "#": 135 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 116 + }, + "sleepCounter": 0 + }, + [ + { + "#": 116 + } + ], + [ + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + } + ], + { + "x": 125, + "y": 50, + "index": 0, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 160, + "y": 50, + "index": 1, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 160, + "y": 85, + "index": 2, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 125, + "y": 85, + "index": 3, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 130 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 132 + }, + "max": { + "#": 133 + } + }, + { + "x": 125, + "y": 50 + }, + { + "x": 160, + "y": 85 + }, + { + "x": 142.5, + "y": 67.5 + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 139 + }, + "angle": 0, + "vertices": { + "#": 140 + }, + "position": { + "#": 145 + }, + "force": { + "#": 146 + }, + "torque": 0, + "positionImpulse": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 149 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 150 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 151 + }, + "bounds": { + "#": 153 + }, + "positionPrev": { + "#": 156 + }, + "anglePrev": 0, + "axes": { + "#": 157 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 138 + }, + "sleepCounter": 0 + }, + [ + { + "#": 138 + } + ], + [ + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + } + ], + { + "x": 160, + "y": 50, + "index": 0, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 195, + "y": 50, + "index": 1, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 195, + "y": 85, + "index": 2, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 160, + "y": 85, + "index": 3, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 152 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 154 + }, + "max": { + "#": 155 + } + }, + { + "x": 160, + "y": 50 + }, + { + "x": 195, + "y": 85 + }, + { + "x": 177.5, + "y": 67.5 + }, + [ + { + "#": 158 + }, + { + "#": 159 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 161 + }, + "angle": 0, + "vertices": { + "#": 162 + }, + "position": { + "#": 167 + }, + "force": { + "#": 168 + }, + "torque": 0, + "positionImpulse": { + "#": 169 + }, + "constraintImpulse": { + "#": 170 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 171 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 172 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 173 + }, + "bounds": { + "#": 175 + }, + "positionPrev": { + "#": 178 + }, + "anglePrev": 0, + "axes": { + "#": 179 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 160 + }, + "sleepCounter": 0 + }, + [ + { + "#": 160 + } + ], + [ + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + } + ], + { + "x": 195, + "y": 50, + "index": 0, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 230, + "y": 50, + "index": 1, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 230, + "y": 85, + "index": 2, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 195, + "y": 85, + "index": 3, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 174 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 176 + }, + "max": { + "#": 177 + } + }, + { + "x": 195, + "y": 50 + }, + { + "x": 230, + "y": 85 + }, + { + "x": 212.5, + "y": 67.5 + }, + [ + { + "#": 180 + }, + { + "#": 181 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 183 + }, + "angle": 0, + "vertices": { + "#": 184 + }, + "position": { + "#": 189 + }, + "force": { + "#": 190 + }, + "torque": 0, + "positionImpulse": { + "#": 191 + }, + "constraintImpulse": { + "#": 192 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 193 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 194 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 195 + }, + "bounds": { + "#": 197 + }, + "positionPrev": { + "#": 200 + }, + "anglePrev": 0, + "axes": { + "#": 201 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 182 + }, + "sleepCounter": 0 + }, + [ + { + "#": 182 + } + ], + [ + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + } + ], + { + "x": 230, + "y": 50, + "index": 0, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 265, + "y": 50, + "index": 1, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 265, + "y": 85, + "index": 2, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 230, + "y": 85, + "index": 3, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 196 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 198 + }, + "max": { + "#": 199 + } + }, + { + "x": 230, + "y": 50 + }, + { + "x": 265, + "y": 85 + }, + { + "x": 247.5, + "y": 67.5 + }, + [ + { + "#": 202 + }, + { + "#": 203 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 205 + }, + "angle": 0, + "vertices": { + "#": 206 + }, + "position": { + "#": 211 + }, + "force": { + "#": 212 + }, + "torque": 0, + "positionImpulse": { + "#": 213 + }, + "constraintImpulse": { + "#": 214 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 215 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 216 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 217 + }, + "bounds": { + "#": 219 + }, + "positionPrev": { + "#": 222 + }, + "anglePrev": 0, + "axes": { + "#": 223 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 204 + }, + "sleepCounter": 0 + }, + [ + { + "#": 204 + } + ], + [ + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + } + ], + { + "x": 265, + "y": 50, + "index": 0, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 300, + "y": 50, + "index": 1, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 300, + "y": 85, + "index": 2, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 265, + "y": 85, + "index": 3, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 218 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 220 + }, + "max": { + "#": 221 + } + }, + { + "x": 265, + "y": 50 + }, + { + "x": 300, + "y": 85 + }, + { + "x": 282.5, + "y": 67.5 + }, + [ + { + "#": 224 + }, + { + "#": 225 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 227 + }, + "angle": 0, + "vertices": { + "#": 228 + }, + "position": { + "#": 233 + }, + "force": { + "#": 234 + }, + "torque": 0, + "positionImpulse": { + "#": 235 + }, + "constraintImpulse": { + "#": 236 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 237 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 238 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 239 + }, + "bounds": { + "#": 241 + }, + "positionPrev": { + "#": 244 + }, + "anglePrev": 0, + "axes": { + "#": 245 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 226 + }, + "sleepCounter": 0 + }, + [ + { + "#": 226 + } + ], + [ + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + } + ], + { + "x": 300, + "y": 50, + "index": 0, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 335, + "y": 50, + "index": 1, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 335, + "y": 85, + "index": 2, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 300, + "y": 85, + "index": 3, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 240 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 242 + }, + "max": { + "#": 243 + } + }, + { + "x": 300, + "y": 50 + }, + { + "x": 335, + "y": 85 + }, + { + "x": 317.5, + "y": 67.5 + }, + [ + { + "#": 246 + }, + { + "#": 247 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 249 + }, + "angle": 0, + "vertices": { + "#": 250 + }, + "position": { + "#": 255 + }, + "force": { + "#": 256 + }, + "torque": 0, + "positionImpulse": { + "#": 257 + }, + "constraintImpulse": { + "#": 258 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 259 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 260 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 261 + }, + "bounds": { + "#": 263 + }, + "positionPrev": { + "#": 266 + }, + "anglePrev": 0, + "axes": { + "#": 267 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 248 + }, + "sleepCounter": 0 + }, + [ + { + "#": 248 + } + ], + [ + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + } + ], + { + "x": 335, + "y": 50, + "index": 0, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 370, + "y": 50, + "index": 1, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 370, + "y": 85, + "index": 2, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 335, + "y": 85, + "index": 3, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 262 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 264 + }, + "max": { + "#": 265 + } + }, + { + "x": 335, + "y": 50 + }, + { + "x": 370, + "y": 85 + }, + { + "x": 352.5, + "y": 67.5 + }, + [ + { + "#": 268 + }, + { + "#": 269 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 271 + }, + "angle": 0, + "vertices": { + "#": 272 + }, + "position": { + "#": 277 + }, + "force": { + "#": 278 + }, + "torque": 0, + "positionImpulse": { + "#": 279 + }, + "constraintImpulse": { + "#": 280 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 281 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 282 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 283 + }, + "bounds": { + "#": 285 + }, + "positionPrev": { + "#": 288 + }, + "anglePrev": 0, + "axes": { + "#": 289 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 270 + }, + "sleepCounter": 0 + }, + [ + { + "#": 270 + } + ], + [ + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + } + ], + { + "x": 370, + "y": 50, + "index": 0, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 405, + "y": 50, + "index": 1, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 405, + "y": 85, + "index": 2, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 370, + "y": 85, + "index": 3, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 284 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 286 + }, + "max": { + "#": 287 + } + }, + { + "x": 370, + "y": 50 + }, + { + "x": 405, + "y": 85 + }, + { + "x": 387.5, + "y": 67.5 + }, + [ + { + "#": 290 + }, + { + "#": 291 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 293 + }, + "angle": 0, + "vertices": { + "#": 294 + }, + "position": { + "#": 299 + }, + "force": { + "#": 300 + }, + "torque": 0, + "positionImpulse": { + "#": 301 + }, + "constraintImpulse": { + "#": 302 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 303 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 304 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 305 + }, + "bounds": { + "#": 307 + }, + "positionPrev": { + "#": 310 + }, + "anglePrev": 0, + "axes": { + "#": 311 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 292 + }, + "sleepCounter": 0 + }, + [ + { + "#": 292 + } + ], + [ + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + } + ], + { + "x": 405, + "y": 50, + "index": 0, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 440, + "y": 50, + "index": 1, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 440, + "y": 85, + "index": 2, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 405, + "y": 85, + "index": 3, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 306 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 308 + }, + "max": { + "#": 309 + } + }, + { + "x": 405, + "y": 50 + }, + { + "x": 440, + "y": 85 + }, + { + "x": 422.5, + "y": 67.5 + }, + [ + { + "#": 312 + }, + { + "#": 313 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 15, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 315 + }, + "angle": 0, + "vertices": { + "#": 316 + }, + "position": { + "#": 321 + }, + "force": { + "#": 322 + }, + "torque": 0, + "positionImpulse": { + "#": 323 + }, + "constraintImpulse": { + "#": 324 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 325 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 326 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 327 + }, + "bounds": { + "#": 329 + }, + "positionPrev": { + "#": 332 + }, + "anglePrev": 0, + "axes": { + "#": 333 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 314 + }, + "sleepCounter": 0 + }, + [ + { + "#": 314 + } + ], + [ + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + } + ], + { + "x": 440, + "y": 50, + "index": 0, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 475, + "y": 50, + "index": 1, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 475, + "y": 85, + "index": 2, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 440, + "y": 85, + "index": 3, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 328 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 330 + }, + "max": { + "#": 331 + } + }, + { + "x": 440, + "y": 50 + }, + { + "x": 475, + "y": 85 + }, + { + "x": 457.5, + "y": 67.5 + }, + [ + { + "#": 334 + }, + { + "#": 335 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 16, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 337 + }, + "angle": 0, + "vertices": { + "#": 338 + }, + "position": { + "#": 343 + }, + "force": { + "#": 344 + }, + "torque": 0, + "positionImpulse": { + "#": 345 + }, + "constraintImpulse": { + "#": 346 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 347 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 348 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 349 + }, + "bounds": { + "#": 351 + }, + "positionPrev": { + "#": 354 + }, + "anglePrev": 0, + "axes": { + "#": 355 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 336 + }, + "sleepCounter": 0 + }, + [ + { + "#": 336 + } + ], + [ + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + } + ], + { + "x": 475, + "y": 50, + "index": 0, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 510, + "y": 50, + "index": 1, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 510, + "y": 85, + "index": 2, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 475, + "y": 85, + "index": 3, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 350 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 352 + }, + "max": { + "#": 353 + } + }, + { + "x": 475, + "y": 50 + }, + { + "x": 510, + "y": 85 + }, + { + "x": 492.5, + "y": 67.5 + }, + [ + { + "#": 356 + }, + { + "#": 357 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 17, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 359 + }, + "angle": 0, + "vertices": { + "#": 360 + }, + "position": { + "#": 365 + }, + "force": { + "#": 366 + }, + "torque": 0, + "positionImpulse": { + "#": 367 + }, + "constraintImpulse": { + "#": 368 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 369 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 370 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 371 + }, + "bounds": { + "#": 373 + }, + "positionPrev": { + "#": 376 + }, + "anglePrev": 0, + "axes": { + "#": 377 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 358 + }, + "sleepCounter": 0 + }, + [ + { + "#": 358 + } + ], + [ + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + } + ], + { + "x": 510, + "y": 50, + "index": 0, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 545, + "y": 50, + "index": 1, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 545, + "y": 85, + "index": 2, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 510, + "y": 85, + "index": 3, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 372 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 374 + }, + "max": { + "#": 375 + } + }, + { + "x": 510, + "y": 50 + }, + { + "x": 545, + "y": 85 + }, + { + "x": 527.5, + "y": 67.5 + }, + [ + { + "#": 378 + }, + { + "#": 379 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 18, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 381 + }, + "angle": 0, + "vertices": { + "#": 382 + }, + "position": { + "#": 387 + }, + "force": { + "#": 388 + }, + "torque": 0, + "positionImpulse": { + "#": 389 + }, + "constraintImpulse": { + "#": 390 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 391 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 392 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 393 + }, + "bounds": { + "#": 395 + }, + "positionPrev": { + "#": 398 + }, + "anglePrev": 0, + "axes": { + "#": 399 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 380 + }, + "sleepCounter": 0 + }, + [ + { + "#": 380 + } + ], + [ + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + } + ], + { + "x": 545, + "y": 50, + "index": 0, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 580, + "y": 50, + "index": 1, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 580, + "y": 85, + "index": 2, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 545, + "y": 85, + "index": 3, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 394 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 396 + }, + "max": { + "#": 397 + } + }, + { + "x": 545, + "y": 50 + }, + { + "x": 580, + "y": 85 + }, + { + "x": 562.5, + "y": 67.5 + }, + [ + { + "#": 400 + }, + { + "#": 401 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 19, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 403 + }, + "angle": 0, + "vertices": { + "#": 404 + }, + "position": { + "#": 409 + }, + "force": { + "#": 410 + }, + "torque": 0, + "positionImpulse": { + "#": 411 + }, + "constraintImpulse": { + "#": 412 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 413 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 414 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 415 + }, + "bounds": { + "#": 417 + }, + "positionPrev": { + "#": 420 + }, + "anglePrev": 0, + "axes": { + "#": 421 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 402 + }, + "sleepCounter": 0 + }, + [ + { + "#": 402 + } + ], + [ + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + } + ], + { + "x": 580, + "y": 50, + "index": 0, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 615, + "y": 50, + "index": 1, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 615, + "y": 85, + "index": 2, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 580, + "y": 85, + "index": 3, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 416 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 418 + }, + "max": { + "#": 419 + } + }, + { + "x": 580, + "y": 50 + }, + { + "x": 615, + "y": 85 + }, + { + "x": 597.5, + "y": 67.5 + }, + [ + { + "#": 422 + }, + { + "#": 423 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 20, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 425 + }, + "angle": 0, + "vertices": { + "#": 426 + }, + "position": { + "#": 431 + }, + "force": { + "#": 432 + }, + "torque": 0, + "positionImpulse": { + "#": 433 + }, + "constraintImpulse": { + "#": 434 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 435 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 436 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 437 + }, + "bounds": { + "#": 439 + }, + "positionPrev": { + "#": 442 + }, + "anglePrev": 0, + "axes": { + "#": 443 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 424 + }, + "sleepCounter": 0 + }, + [ + { + "#": 424 + } + ], + [ + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + } + ], + { + "x": 615, + "y": 50, + "index": 0, + "body": { + "#": 424 + }, + "isInternal": false + }, + { + "x": 650, + "y": 50, + "index": 1, + "body": { + "#": 424 + }, + "isInternal": false + }, + { + "x": 650, + "y": 85, + "index": 2, + "body": { + "#": 424 + }, + "isInternal": false + }, + { + "x": 615, + "y": 85, + "index": 3, + "body": { + "#": 424 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 438 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 440 + }, + "max": { + "#": 441 + } + }, + { + "x": 615, + "y": 50 + }, + { + "x": 650, + "y": 85 + }, + { + "x": 632.5, + "y": 67.5 + }, + [ + { + "#": 444 + }, + { + "#": 445 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 21, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 447 + }, + "angle": 0, + "vertices": { + "#": 448 + }, + "position": { + "#": 453 + }, + "force": { + "#": 454 + }, + "torque": 0, + "positionImpulse": { + "#": 455 + }, + "constraintImpulse": { + "#": 456 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 457 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 458 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 459 + }, + "bounds": { + "#": 461 + }, + "positionPrev": { + "#": 464 + }, + "anglePrev": 0, + "axes": { + "#": 465 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 446 + }, + "sleepCounter": 0 + }, + [ + { + "#": 446 + } + ], + [ + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + } + ], + { + "x": 650, + "y": 50, + "index": 0, + "body": { + "#": 446 + }, + "isInternal": false + }, + { + "x": 685, + "y": 50, + "index": 1, + "body": { + "#": 446 + }, + "isInternal": false + }, + { + "x": 685, + "y": 85, + "index": 2, + "body": { + "#": 446 + }, + "isInternal": false + }, + { + "x": 650, + "y": 85, + "index": 3, + "body": { + "#": 446 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 460 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 462 + }, + "max": { + "#": 463 + } + }, + { + "x": 650, + "y": 50 + }, + { + "x": 685, + "y": 85 + }, + { + "x": 667.5, + "y": 67.5 + }, + [ + { + "#": 466 + }, + { + "#": 467 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 22, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 469 + }, + "angle": 0, + "vertices": { + "#": 470 + }, + "position": { + "#": 475 + }, + "force": { + "#": 476 + }, + "torque": 0, + "positionImpulse": { + "#": 477 + }, + "constraintImpulse": { + "#": 478 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 479 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 480 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 481 + }, + "bounds": { + "#": 483 + }, + "positionPrev": { + "#": 486 + }, + "anglePrev": 0, + "axes": { + "#": 487 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 468 + }, + "sleepCounter": 0 + }, + [ + { + "#": 468 + } + ], + [ + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + } + ], + { + "x": 685, + "y": 50, + "index": 0, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 720, + "y": 50, + "index": 1, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 720, + "y": 85, + "index": 2, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 685, + "y": 85, + "index": 3, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 67.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 482 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 484 + }, + "max": { + "#": 485 + } + }, + { + "x": 685, + "y": 50 + }, + { + "x": 720, + "y": 85 + }, + { + "x": 702.5, + "y": 67.5 + }, + [ + { + "#": 488 + }, + { + "#": 489 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 23, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 491 + }, + "angle": 0, + "vertices": { + "#": 492 + }, + "position": { + "#": 497 + }, + "force": { + "#": 498 + }, + "torque": 0, + "positionImpulse": { + "#": 499 + }, + "constraintImpulse": { + "#": 500 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 501 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 502 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 503 + }, + "bounds": { + "#": 505 + }, + "positionPrev": { + "#": 508 + }, + "anglePrev": 0, + "axes": { + "#": 509 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 490 + }, + "sleepCounter": 0 + }, + [ + { + "#": 490 + } + ], + [ + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + } + ], + { + "x": 90, + "y": 85, + "index": 0, + "body": { + "#": 490 + }, + "isInternal": false + }, + { + "x": 125, + "y": 85, + "index": 1, + "body": { + "#": 490 + }, + "isInternal": false + }, + { + "x": 125, + "y": 120, + "index": 2, + "body": { + "#": 490 + }, + "isInternal": false + }, + { + "x": 90, + "y": 120, + "index": 3, + "body": { + "#": 490 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 504 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 506 + }, + "max": { + "#": 507 + } + }, + { + "x": 90, + "y": 85 + }, + { + "x": 125, + "y": 120 + }, + { + "x": 107.5, + "y": 102.5 + }, + [ + { + "#": 510 + }, + { + "#": 511 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 24, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 513 + }, + "angle": 0, + "vertices": { + "#": 514 + }, + "position": { + "#": 519 + }, + "force": { + "#": 520 + }, + "torque": 0, + "positionImpulse": { + "#": 521 + }, + "constraintImpulse": { + "#": 522 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 523 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 524 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 525 + }, + "bounds": { + "#": 527 + }, + "positionPrev": { + "#": 530 + }, + "anglePrev": 0, + "axes": { + "#": 531 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 512 + }, + "sleepCounter": 0 + }, + [ + { + "#": 512 + } + ], + [ + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + } + ], + { + "x": 125, + "y": 85, + "index": 0, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 160, + "y": 85, + "index": 1, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 160, + "y": 120, + "index": 2, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 125, + "y": 120, + "index": 3, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 526 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 528 + }, + "max": { + "#": 529 + } + }, + { + "x": 125, + "y": 85 + }, + { + "x": 160, + "y": 120 + }, + { + "x": 142.5, + "y": 102.5 + }, + [ + { + "#": 532 + }, + { + "#": 533 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 25, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 535 + }, + "angle": 0, + "vertices": { + "#": 536 + }, + "position": { + "#": 541 + }, + "force": { + "#": 542 + }, + "torque": 0, + "positionImpulse": { + "#": 543 + }, + "constraintImpulse": { + "#": 544 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 545 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 546 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 547 + }, + "bounds": { + "#": 549 + }, + "positionPrev": { + "#": 552 + }, + "anglePrev": 0, + "axes": { + "#": 553 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 534 + }, + "sleepCounter": 0 + }, + [ + { + "#": 534 + } + ], + [ + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + } + ], + { + "x": 160, + "y": 85, + "index": 0, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 195, + "y": 85, + "index": 1, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 195, + "y": 120, + "index": 2, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 160, + "y": 120, + "index": 3, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 548 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 550 + }, + "max": { + "#": 551 + } + }, + { + "x": 160, + "y": 85 + }, + { + "x": 195, + "y": 120 + }, + { + "x": 177.5, + "y": 102.5 + }, + [ + { + "#": 554 + }, + { + "#": 555 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 26, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 557 + }, + "angle": 0, + "vertices": { + "#": 558 + }, + "position": { + "#": 563 + }, + "force": { + "#": 564 + }, + "torque": 0, + "positionImpulse": { + "#": 565 + }, + "constraintImpulse": { + "#": 566 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 567 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 568 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 569 + }, + "bounds": { + "#": 571 + }, + "positionPrev": { + "#": 574 + }, + "anglePrev": 0, + "axes": { + "#": 575 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 556 + }, + "sleepCounter": 0 + }, + [ + { + "#": 556 + } + ], + [ + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + } + ], + { + "x": 195, + "y": 85, + "index": 0, + "body": { + "#": 556 + }, + "isInternal": false + }, + { + "x": 230, + "y": 85, + "index": 1, + "body": { + "#": 556 + }, + "isInternal": false + }, + { + "x": 230, + "y": 120, + "index": 2, + "body": { + "#": 556 + }, + "isInternal": false + }, + { + "x": 195, + "y": 120, + "index": 3, + "body": { + "#": 556 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 570 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 572 + }, + "max": { + "#": 573 + } + }, + { + "x": 195, + "y": 85 + }, + { + "x": 230, + "y": 120 + }, + { + "x": 212.5, + "y": 102.5 + }, + [ + { + "#": 576 + }, + { + "#": 577 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 27, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 579 + }, + "angle": 0, + "vertices": { + "#": 580 + }, + "position": { + "#": 585 + }, + "force": { + "#": 586 + }, + "torque": 0, + "positionImpulse": { + "#": 587 + }, + "constraintImpulse": { + "#": 588 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 589 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 590 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 591 + }, + "bounds": { + "#": 593 + }, + "positionPrev": { + "#": 596 + }, + "anglePrev": 0, + "axes": { + "#": 597 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 578 + }, + "sleepCounter": 0 + }, + [ + { + "#": 578 + } + ], + [ + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + } + ], + { + "x": 230, + "y": 85, + "index": 0, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 265, + "y": 85, + "index": 1, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 265, + "y": 120, + "index": 2, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 230, + "y": 120, + "index": 3, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 592 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 594 + }, + "max": { + "#": 595 + } + }, + { + "x": 230, + "y": 85 + }, + { + "x": 265, + "y": 120 + }, + { + "x": 247.5, + "y": 102.5 + }, + [ + { + "#": 598 + }, + { + "#": 599 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 28, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 601 + }, + "angle": 0, + "vertices": { + "#": 602 + }, + "position": { + "#": 607 + }, + "force": { + "#": 608 + }, + "torque": 0, + "positionImpulse": { + "#": 609 + }, + "constraintImpulse": { + "#": 610 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 611 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 612 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 613 + }, + "bounds": { + "#": 615 + }, + "positionPrev": { + "#": 618 + }, + "anglePrev": 0, + "axes": { + "#": 619 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 600 + }, + "sleepCounter": 0 + }, + [ + { + "#": 600 + } + ], + [ + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + } + ], + { + "x": 265, + "y": 85, + "index": 0, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 300, + "y": 85, + "index": 1, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 300, + "y": 120, + "index": 2, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 265, + "y": 120, + "index": 3, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 614 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 616 + }, + "max": { + "#": 617 + } + }, + { + "x": 265, + "y": 85 + }, + { + "x": 300, + "y": 120 + }, + { + "x": 282.5, + "y": 102.5 + }, + [ + { + "#": 620 + }, + { + "#": 621 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 29, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 623 + }, + "angle": 0, + "vertices": { + "#": 624 + }, + "position": { + "#": 629 + }, + "force": { + "#": 630 + }, + "torque": 0, + "positionImpulse": { + "#": 631 + }, + "constraintImpulse": { + "#": 632 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 633 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 634 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 635 + }, + "bounds": { + "#": 637 + }, + "positionPrev": { + "#": 640 + }, + "anglePrev": 0, + "axes": { + "#": 641 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 622 + }, + "sleepCounter": 0 + }, + [ + { + "#": 622 + } + ], + [ + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + } + ], + { + "x": 300, + "y": 85, + "index": 0, + "body": { + "#": 622 + }, + "isInternal": false + }, + { + "x": 335, + "y": 85, + "index": 1, + "body": { + "#": 622 + }, + "isInternal": false + }, + { + "x": 335, + "y": 120, + "index": 2, + "body": { + "#": 622 + }, + "isInternal": false + }, + { + "x": 300, + "y": 120, + "index": 3, + "body": { + "#": 622 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 636 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 638 + }, + "max": { + "#": 639 + } + }, + { + "x": 300, + "y": 85 + }, + { + "x": 335, + "y": 120 + }, + { + "x": 317.5, + "y": 102.5 + }, + [ + { + "#": 642 + }, + { + "#": 643 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 30, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 645 + }, + "angle": 0, + "vertices": { + "#": 646 + }, + "position": { + "#": 651 + }, + "force": { + "#": 652 + }, + "torque": 0, + "positionImpulse": { + "#": 653 + }, + "constraintImpulse": { + "#": 654 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 655 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 656 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 657 + }, + "bounds": { + "#": 659 + }, + "positionPrev": { + "#": 662 + }, + "anglePrev": 0, + "axes": { + "#": 663 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 644 + }, + "sleepCounter": 0 + }, + [ + { + "#": 644 + } + ], + [ + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + } + ], + { + "x": 335, + "y": 85, + "index": 0, + "body": { + "#": 644 + }, + "isInternal": false + }, + { + "x": 370, + "y": 85, + "index": 1, + "body": { + "#": 644 + }, + "isInternal": false + }, + { + "x": 370, + "y": 120, + "index": 2, + "body": { + "#": 644 + }, + "isInternal": false + }, + { + "x": 335, + "y": 120, + "index": 3, + "body": { + "#": 644 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 658 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 660 + }, + "max": { + "#": 661 + } + }, + { + "x": 335, + "y": 85 + }, + { + "x": 370, + "y": 120 + }, + { + "x": 352.5, + "y": 102.5 + }, + [ + { + "#": 664 + }, + { + "#": 665 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 31, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 667 + }, + "angle": 0, + "vertices": { + "#": 668 + }, + "position": { + "#": 673 + }, + "force": { + "#": 674 + }, + "torque": 0, + "positionImpulse": { + "#": 675 + }, + "constraintImpulse": { + "#": 676 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 677 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 678 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 679 + }, + "bounds": { + "#": 681 + }, + "positionPrev": { + "#": 684 + }, + "anglePrev": 0, + "axes": { + "#": 685 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 666 + }, + "sleepCounter": 0 + }, + [ + { + "#": 666 + } + ], + [ + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + } + ], + { + "x": 370, + "y": 85, + "index": 0, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 405, + "y": 85, + "index": 1, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 405, + "y": 120, + "index": 2, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 370, + "y": 120, + "index": 3, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 680 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 682 + }, + "max": { + "#": 683 + } + }, + { + "x": 370, + "y": 85 + }, + { + "x": 405, + "y": 120 + }, + { + "x": 387.5, + "y": 102.5 + }, + [ + { + "#": 686 + }, + { + "#": 687 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 32, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 689 + }, + "angle": 0, + "vertices": { + "#": 690 + }, + "position": { + "#": 695 + }, + "force": { + "#": 696 + }, + "torque": 0, + "positionImpulse": { + "#": 697 + }, + "constraintImpulse": { + "#": 698 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 699 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 700 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 701 + }, + "bounds": { + "#": 703 + }, + "positionPrev": { + "#": 706 + }, + "anglePrev": 0, + "axes": { + "#": 707 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 688 + }, + "sleepCounter": 0 + }, + [ + { + "#": 688 + } + ], + [ + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + } + ], + { + "x": 405, + "y": 85, + "index": 0, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 440, + "y": 85, + "index": 1, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 440, + "y": 120, + "index": 2, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 405, + "y": 120, + "index": 3, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 702 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 704 + }, + "max": { + "#": 705 + } + }, + { + "x": 405, + "y": 85 + }, + { + "x": 440, + "y": 120 + }, + { + "x": 422.5, + "y": 102.5 + }, + [ + { + "#": 708 + }, + { + "#": 709 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 33, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 711 + }, + "angle": 0, + "vertices": { + "#": 712 + }, + "position": { + "#": 717 + }, + "force": { + "#": 718 + }, + "torque": 0, + "positionImpulse": { + "#": 719 + }, + "constraintImpulse": { + "#": 720 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 721 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 722 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 723 + }, + "bounds": { + "#": 725 + }, + "positionPrev": { + "#": 728 + }, + "anglePrev": 0, + "axes": { + "#": 729 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 710 + }, + "sleepCounter": 0 + }, + [ + { + "#": 710 + } + ], + [ + { + "#": 713 + }, + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + } + ], + { + "x": 440, + "y": 85, + "index": 0, + "body": { + "#": 710 + }, + "isInternal": false + }, + { + "x": 475, + "y": 85, + "index": 1, + "body": { + "#": 710 + }, + "isInternal": false + }, + { + "x": 475, + "y": 120, + "index": 2, + "body": { + "#": 710 + }, + "isInternal": false + }, + { + "x": 440, + "y": 120, + "index": 3, + "body": { + "#": 710 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 724 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 726 + }, + "max": { + "#": 727 + } + }, + { + "x": 440, + "y": 85 + }, + { + "x": 475, + "y": 120 + }, + { + "x": 457.5, + "y": 102.5 + }, + [ + { + "#": 730 + }, + { + "#": 731 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 34, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 733 + }, + "angle": 0, + "vertices": { + "#": 734 + }, + "position": { + "#": 739 + }, + "force": { + "#": 740 + }, + "torque": 0, + "positionImpulse": { + "#": 741 + }, + "constraintImpulse": { + "#": 742 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 743 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 744 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 745 + }, + "bounds": { + "#": 747 + }, + "positionPrev": { + "#": 750 + }, + "anglePrev": 0, + "axes": { + "#": 751 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 732 + }, + "sleepCounter": 0 + }, + [ + { + "#": 732 + } + ], + [ + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + } + ], + { + "x": 475, + "y": 85, + "index": 0, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 510, + "y": 85, + "index": 1, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 510, + "y": 120, + "index": 2, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 475, + "y": 120, + "index": 3, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 746 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 748 + }, + "max": { + "#": 749 + } + }, + { + "x": 475, + "y": 85 + }, + { + "x": 510, + "y": 120 + }, + { + "x": 492.5, + "y": 102.5 + }, + [ + { + "#": 752 + }, + { + "#": 753 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 35, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 755 + }, + "angle": 0, + "vertices": { + "#": 756 + }, + "position": { + "#": 761 + }, + "force": { + "#": 762 + }, + "torque": 0, + "positionImpulse": { + "#": 763 + }, + "constraintImpulse": { + "#": 764 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 765 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 766 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 767 + }, + "bounds": { + "#": 769 + }, + "positionPrev": { + "#": 772 + }, + "anglePrev": 0, + "axes": { + "#": 773 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 754 + }, + "sleepCounter": 0 + }, + [ + { + "#": 754 + } + ], + [ + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + } + ], + { + "x": 510, + "y": 85, + "index": 0, + "body": { + "#": 754 + }, + "isInternal": false + }, + { + "x": 545, + "y": 85, + "index": 1, + "body": { + "#": 754 + }, + "isInternal": false + }, + { + "x": 545, + "y": 120, + "index": 2, + "body": { + "#": 754 + }, + "isInternal": false + }, + { + "x": 510, + "y": 120, + "index": 3, + "body": { + "#": 754 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 768 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 770 + }, + "max": { + "#": 771 + } + }, + { + "x": 510, + "y": 85 + }, + { + "x": 545, + "y": 120 + }, + { + "x": 527.5, + "y": 102.5 + }, + [ + { + "#": 774 + }, + { + "#": 775 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 36, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 777 + }, + "angle": 0, + "vertices": { + "#": 778 + }, + "position": { + "#": 783 + }, + "force": { + "#": 784 + }, + "torque": 0, + "positionImpulse": { + "#": 785 + }, + "constraintImpulse": { + "#": 786 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 787 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 788 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 789 + }, + "bounds": { + "#": 791 + }, + "positionPrev": { + "#": 794 + }, + "anglePrev": 0, + "axes": { + "#": 795 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 776 + }, + "sleepCounter": 0 + }, + [ + { + "#": 776 + } + ], + [ + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + } + ], + { + "x": 545, + "y": 85, + "index": 0, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 580, + "y": 85, + "index": 1, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 580, + "y": 120, + "index": 2, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 545, + "y": 120, + "index": 3, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 790 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 792 + }, + "max": { + "#": 793 + } + }, + { + "x": 545, + "y": 85 + }, + { + "x": 580, + "y": 120 + }, + { + "x": 562.5, + "y": 102.5 + }, + [ + { + "#": 796 + }, + { + "#": 797 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 37, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 799 + }, + "angle": 0, + "vertices": { + "#": 800 + }, + "position": { + "#": 805 + }, + "force": { + "#": 806 + }, + "torque": 0, + "positionImpulse": { + "#": 807 + }, + "constraintImpulse": { + "#": 808 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 809 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 810 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 811 + }, + "bounds": { + "#": 813 + }, + "positionPrev": { + "#": 816 + }, + "anglePrev": 0, + "axes": { + "#": 817 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 798 + }, + "sleepCounter": 0 + }, + [ + { + "#": 798 + } + ], + [ + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + } + ], + { + "x": 580, + "y": 85, + "index": 0, + "body": { + "#": 798 + }, + "isInternal": false + }, + { + "x": 615, + "y": 85, + "index": 1, + "body": { + "#": 798 + }, + "isInternal": false + }, + { + "x": 615, + "y": 120, + "index": 2, + "body": { + "#": 798 + }, + "isInternal": false + }, + { + "x": 580, + "y": 120, + "index": 3, + "body": { + "#": 798 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 812 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 814 + }, + "max": { + "#": 815 + } + }, + { + "x": 580, + "y": 85 + }, + { + "x": 615, + "y": 120 + }, + { + "x": 597.5, + "y": 102.5 + }, + [ + { + "#": 818 + }, + { + "#": 819 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 38, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 821 + }, + "angle": 0, + "vertices": { + "#": 822 + }, + "position": { + "#": 827 + }, + "force": { + "#": 828 + }, + "torque": 0, + "positionImpulse": { + "#": 829 + }, + "constraintImpulse": { + "#": 830 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 831 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 832 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 833 + }, + "bounds": { + "#": 835 + }, + "positionPrev": { + "#": 838 + }, + "anglePrev": 0, + "axes": { + "#": 839 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 820 + }, + "sleepCounter": 0 + }, + [ + { + "#": 820 + } + ], + [ + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + } + ], + { + "x": 615, + "y": 85, + "index": 0, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 650, + "y": 85, + "index": 1, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 650, + "y": 120, + "index": 2, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 615, + "y": 120, + "index": 3, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 834 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 836 + }, + "max": { + "#": 837 + } + }, + { + "x": 615, + "y": 85 + }, + { + "x": 650, + "y": 120 + }, + { + "x": 632.5, + "y": 102.5 + }, + [ + { + "#": 840 + }, + { + "#": 841 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 39, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 843 + }, + "angle": 0, + "vertices": { + "#": 844 + }, + "position": { + "#": 849 + }, + "force": { + "#": 850 + }, + "torque": 0, + "positionImpulse": { + "#": 851 + }, + "constraintImpulse": { + "#": 852 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 853 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 854 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 855 + }, + "bounds": { + "#": 857 + }, + "positionPrev": { + "#": 860 + }, + "anglePrev": 0, + "axes": { + "#": 861 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 842 + }, + "sleepCounter": 0 + }, + [ + { + "#": 842 + } + ], + [ + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + } + ], + { + "x": 650, + "y": 85, + "index": 0, + "body": { + "#": 842 + }, + "isInternal": false + }, + { + "x": 685, + "y": 85, + "index": 1, + "body": { + "#": 842 + }, + "isInternal": false + }, + { + "x": 685, + "y": 120, + "index": 2, + "body": { + "#": 842 + }, + "isInternal": false + }, + { + "x": 650, + "y": 120, + "index": 3, + "body": { + "#": 842 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 856 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 858 + }, + "max": { + "#": 859 + } + }, + { + "x": 650, + "y": 85 + }, + { + "x": 685, + "y": 120 + }, + { + "x": 667.5, + "y": 102.5 + }, + [ + { + "#": 862 + }, + { + "#": 863 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 40, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 865 + }, + "angle": 0, + "vertices": { + "#": 866 + }, + "position": { + "#": 871 + }, + "force": { + "#": 872 + }, + "torque": 0, + "positionImpulse": { + "#": 873 + }, + "constraintImpulse": { + "#": 874 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 875 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 876 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 877 + }, + "bounds": { + "#": 879 + }, + "positionPrev": { + "#": 882 + }, + "anglePrev": 0, + "axes": { + "#": 883 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 864 + }, + "sleepCounter": 0 + }, + [ + { + "#": 864 + } + ], + [ + { + "#": 867 + }, + { + "#": 868 + }, + { + "#": 869 + }, + { + "#": 870 + } + ], + { + "x": 685, + "y": 85, + "index": 0, + "body": { + "#": 864 + }, + "isInternal": false + }, + { + "x": 720, + "y": 85, + "index": 1, + "body": { + "#": 864 + }, + "isInternal": false + }, + { + "x": 720, + "y": 120, + "index": 2, + "body": { + "#": 864 + }, + "isInternal": false + }, + { + "x": 685, + "y": 120, + "index": 3, + "body": { + "#": 864 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 102.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 878 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 880 + }, + "max": { + "#": 881 + } + }, + { + "x": 685, + "y": 85 + }, + { + "x": 720, + "y": 120 + }, + { + "x": 702.5, + "y": 102.5 + }, + [ + { + "#": 884 + }, + { + "#": 885 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 41, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 887 + }, + "angle": 0, + "vertices": { + "#": 888 + }, + "position": { + "#": 893 + }, + "force": { + "#": 894 + }, + "torque": 0, + "positionImpulse": { + "#": 895 + }, + "constraintImpulse": { + "#": 896 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 897 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 898 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 899 + }, + "bounds": { + "#": 901 + }, + "positionPrev": { + "#": 904 + }, + "anglePrev": 0, + "axes": { + "#": 905 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 886 + }, + "sleepCounter": 0 + }, + [ + { + "#": 886 + } + ], + [ + { + "#": 889 + }, + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + } + ], + { + "x": 90, + "y": 120, + "index": 0, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 125, + "y": 120, + "index": 1, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 125, + "y": 155, + "index": 2, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 90, + "y": 155, + "index": 3, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 900 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 902 + }, + "max": { + "#": 903 + } + }, + { + "x": 90, + "y": 120 + }, + { + "x": 125, + "y": 155 + }, + { + "x": 107.5, + "y": 137.5 + }, + [ + { + "#": 906 + }, + { + "#": 907 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 42, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 909 + }, + "angle": 0, + "vertices": { + "#": 910 + }, + "position": { + "#": 915 + }, + "force": { + "#": 916 + }, + "torque": 0, + "positionImpulse": { + "#": 917 + }, + "constraintImpulse": { + "#": 918 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 919 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 920 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 921 + }, + "bounds": { + "#": 923 + }, + "positionPrev": { + "#": 926 + }, + "anglePrev": 0, + "axes": { + "#": 927 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 908 + }, + "sleepCounter": 0 + }, + [ + { + "#": 908 + } + ], + [ + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + } + ], + { + "x": 125, + "y": 120, + "index": 0, + "body": { + "#": 908 + }, + "isInternal": false + }, + { + "x": 160, + "y": 120, + "index": 1, + "body": { + "#": 908 + }, + "isInternal": false + }, + { + "x": 160, + "y": 155, + "index": 2, + "body": { + "#": 908 + }, + "isInternal": false + }, + { + "x": 125, + "y": 155, + "index": 3, + "body": { + "#": 908 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 922 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 924 + }, + "max": { + "#": 925 + } + }, + { + "x": 125, + "y": 120 + }, + { + "x": 160, + "y": 155 + }, + { + "x": 142.5, + "y": 137.5 + }, + [ + { + "#": 928 + }, + { + "#": 929 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 43, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 931 + }, + "angle": 0, + "vertices": { + "#": 932 + }, + "position": { + "#": 937 + }, + "force": { + "#": 938 + }, + "torque": 0, + "positionImpulse": { + "#": 939 + }, + "constraintImpulse": { + "#": 940 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 941 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 942 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 943 + }, + "bounds": { + "#": 945 + }, + "positionPrev": { + "#": 948 + }, + "anglePrev": 0, + "axes": { + "#": 949 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 930 + }, + "sleepCounter": 0 + }, + [ + { + "#": 930 + } + ], + [ + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + } + ], + { + "x": 160, + "y": 120, + "index": 0, + "body": { + "#": 930 + }, + "isInternal": false + }, + { + "x": 195, + "y": 120, + "index": 1, + "body": { + "#": 930 + }, + "isInternal": false + }, + { + "x": 195, + "y": 155, + "index": 2, + "body": { + "#": 930 + }, + "isInternal": false + }, + { + "x": 160, + "y": 155, + "index": 3, + "body": { + "#": 930 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 944 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 946 + }, + "max": { + "#": 947 + } + }, + { + "x": 160, + "y": 120 + }, + { + "x": 195, + "y": 155 + }, + { + "x": 177.5, + "y": 137.5 + }, + [ + { + "#": 950 + }, + { + "#": 951 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 44, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 953 + }, + "angle": 0, + "vertices": { + "#": 954 + }, + "position": { + "#": 959 + }, + "force": { + "#": 960 + }, + "torque": 0, + "positionImpulse": { + "#": 961 + }, + "constraintImpulse": { + "#": 962 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 963 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 964 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 965 + }, + "bounds": { + "#": 967 + }, + "positionPrev": { + "#": 970 + }, + "anglePrev": 0, + "axes": { + "#": 971 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 952 + }, + "sleepCounter": 0 + }, + [ + { + "#": 952 + } + ], + [ + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + } + ], + { + "x": 195, + "y": 120, + "index": 0, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 230, + "y": 120, + "index": 1, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 230, + "y": 155, + "index": 2, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 195, + "y": 155, + "index": 3, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 966 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 968 + }, + "max": { + "#": 969 + } + }, + { + "x": 195, + "y": 120 + }, + { + "x": 230, + "y": 155 + }, + { + "x": 212.5, + "y": 137.5 + }, + [ + { + "#": 972 + }, + { + "#": 973 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 45, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 975 + }, + "angle": 0, + "vertices": { + "#": 976 + }, + "position": { + "#": 981 + }, + "force": { + "#": 982 + }, + "torque": 0, + "positionImpulse": { + "#": 983 + }, + "constraintImpulse": { + "#": 984 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 985 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 986 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 987 + }, + "bounds": { + "#": 989 + }, + "positionPrev": { + "#": 992 + }, + "anglePrev": 0, + "axes": { + "#": 993 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 974 + }, + "sleepCounter": 0 + }, + [ + { + "#": 974 + } + ], + [ + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + }, + { + "#": 980 + } + ], + { + "x": 230, + "y": 120, + "index": 0, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 265, + "y": 120, + "index": 1, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 265, + "y": 155, + "index": 2, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 230, + "y": 155, + "index": 3, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 988 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 990 + }, + "max": { + "#": 991 + } + }, + { + "x": 230, + "y": 120 + }, + { + "x": 265, + "y": 155 + }, + { + "x": 247.5, + "y": 137.5 + }, + [ + { + "#": 994 + }, + { + "#": 995 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 46, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 997 + }, + "angle": 0, + "vertices": { + "#": 998 + }, + "position": { + "#": 1003 + }, + "force": { + "#": 1004 + }, + "torque": 0, + "positionImpulse": { + "#": 1005 + }, + "constraintImpulse": { + "#": 1006 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1007 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1008 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1009 + }, + "bounds": { + "#": 1011 + }, + "positionPrev": { + "#": 1014 + }, + "anglePrev": 0, + "axes": { + "#": 1015 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 996 + }, + "sleepCounter": 0 + }, + [ + { + "#": 996 + } + ], + [ + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + }, + { + "#": 1002 + } + ], + { + "x": 265, + "y": 120, + "index": 0, + "body": { + "#": 996 + }, + "isInternal": false + }, + { + "x": 300, + "y": 120, + "index": 1, + "body": { + "#": 996 + }, + "isInternal": false + }, + { + "x": 300, + "y": 155, + "index": 2, + "body": { + "#": 996 + }, + "isInternal": false + }, + { + "x": 265, + "y": 155, + "index": 3, + "body": { + "#": 996 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1010 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1012 + }, + "max": { + "#": 1013 + } + }, + { + "x": 265, + "y": 120 + }, + { + "x": 300, + "y": 155 + }, + { + "x": 282.5, + "y": 137.5 + }, + [ + { + "#": 1016 + }, + { + "#": 1017 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 47, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1019 + }, + "angle": 0, + "vertices": { + "#": 1020 + }, + "position": { + "#": 1025 + }, + "force": { + "#": 1026 + }, + "torque": 0, + "positionImpulse": { + "#": 1027 + }, + "constraintImpulse": { + "#": 1028 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1029 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1030 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1031 + }, + "bounds": { + "#": 1033 + }, + "positionPrev": { + "#": 1036 + }, + "anglePrev": 0, + "axes": { + "#": 1037 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1018 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1018 + } + ], + [ + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + } + ], + { + "x": 300, + "y": 120, + "index": 0, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 335, + "y": 120, + "index": 1, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 335, + "y": 155, + "index": 2, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 300, + "y": 155, + "index": 3, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1032 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1034 + }, + "max": { + "#": 1035 + } + }, + { + "x": 300, + "y": 120 + }, + { + "x": 335, + "y": 155 + }, + { + "x": 317.5, + "y": 137.5 + }, + [ + { + "#": 1038 + }, + { + "#": 1039 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 48, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1041 + }, + "angle": 0, + "vertices": { + "#": 1042 + }, + "position": { + "#": 1047 + }, + "force": { + "#": 1048 + }, + "torque": 0, + "positionImpulse": { + "#": 1049 + }, + "constraintImpulse": { + "#": 1050 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1051 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1052 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1053 + }, + "bounds": { + "#": 1055 + }, + "positionPrev": { + "#": 1058 + }, + "anglePrev": 0, + "axes": { + "#": 1059 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1040 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1040 + } + ], + [ + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + } + ], + { + "x": 335, + "y": 120, + "index": 0, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 370, + "y": 120, + "index": 1, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 370, + "y": 155, + "index": 2, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 335, + "y": 155, + "index": 3, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1054 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1056 + }, + "max": { + "#": 1057 + } + }, + { + "x": 335, + "y": 120 + }, + { + "x": 370, + "y": 155 + }, + { + "x": 352.5, + "y": 137.5 + }, + [ + { + "#": 1060 + }, + { + "#": 1061 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 49, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1063 + }, + "angle": 0, + "vertices": { + "#": 1064 + }, + "position": { + "#": 1069 + }, + "force": { + "#": 1070 + }, + "torque": 0, + "positionImpulse": { + "#": 1071 + }, + "constraintImpulse": { + "#": 1072 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1073 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1074 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1075 + }, + "bounds": { + "#": 1077 + }, + "positionPrev": { + "#": 1080 + }, + "anglePrev": 0, + "axes": { + "#": 1081 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1062 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1062 + } + ], + [ + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + } + ], + { + "x": 370, + "y": 120, + "index": 0, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 405, + "y": 120, + "index": 1, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 405, + "y": 155, + "index": 2, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 370, + "y": 155, + "index": 3, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1076 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1078 + }, + "max": { + "#": 1079 + } + }, + { + "x": 370, + "y": 120 + }, + { + "x": 405, + "y": 155 + }, + { + "x": 387.5, + "y": 137.5 + }, + [ + { + "#": 1082 + }, + { + "#": 1083 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 50, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1085 + }, + "angle": 0, + "vertices": { + "#": 1086 + }, + "position": { + "#": 1091 + }, + "force": { + "#": 1092 + }, + "torque": 0, + "positionImpulse": { + "#": 1093 + }, + "constraintImpulse": { + "#": 1094 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1095 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1096 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1097 + }, + "bounds": { + "#": 1099 + }, + "positionPrev": { + "#": 1102 + }, + "anglePrev": 0, + "axes": { + "#": 1103 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1084 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1084 + } + ], + [ + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + } + ], + { + "x": 405, + "y": 120, + "index": 0, + "body": { + "#": 1084 + }, + "isInternal": false + }, + { + "x": 440, + "y": 120, + "index": 1, + "body": { + "#": 1084 + }, + "isInternal": false + }, + { + "x": 440, + "y": 155, + "index": 2, + "body": { + "#": 1084 + }, + "isInternal": false + }, + { + "x": 405, + "y": 155, + "index": 3, + "body": { + "#": 1084 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1098 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1100 + }, + "max": { + "#": 1101 + } + }, + { + "x": 405, + "y": 120 + }, + { + "x": 440, + "y": 155 + }, + { + "x": 422.5, + "y": 137.5 + }, + [ + { + "#": 1104 + }, + { + "#": 1105 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 51, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1107 + }, + "angle": 0, + "vertices": { + "#": 1108 + }, + "position": { + "#": 1113 + }, + "force": { + "#": 1114 + }, + "torque": 0, + "positionImpulse": { + "#": 1115 + }, + "constraintImpulse": { + "#": 1116 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1117 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1118 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1119 + }, + "bounds": { + "#": 1121 + }, + "positionPrev": { + "#": 1124 + }, + "anglePrev": 0, + "axes": { + "#": 1125 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1106 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1106 + } + ], + [ + { + "#": 1109 + }, + { + "#": 1110 + }, + { + "#": 1111 + }, + { + "#": 1112 + } + ], + { + "x": 440, + "y": 120, + "index": 0, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 475, + "y": 120, + "index": 1, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 475, + "y": 155, + "index": 2, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 440, + "y": 155, + "index": 3, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1120 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1122 + }, + "max": { + "#": 1123 + } + }, + { + "x": 440, + "y": 120 + }, + { + "x": 475, + "y": 155 + }, + { + "x": 457.5, + "y": 137.5 + }, + [ + { + "#": 1126 + }, + { + "#": 1127 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 52, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1129 + }, + "angle": 0, + "vertices": { + "#": 1130 + }, + "position": { + "#": 1135 + }, + "force": { + "#": 1136 + }, + "torque": 0, + "positionImpulse": { + "#": 1137 + }, + "constraintImpulse": { + "#": 1138 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1139 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1140 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1141 + }, + "bounds": { + "#": 1143 + }, + "positionPrev": { + "#": 1146 + }, + "anglePrev": 0, + "axes": { + "#": 1147 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1128 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1128 + } + ], + [ + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + } + ], + { + "x": 475, + "y": 120, + "index": 0, + "body": { + "#": 1128 + }, + "isInternal": false + }, + { + "x": 510, + "y": 120, + "index": 1, + "body": { + "#": 1128 + }, + "isInternal": false + }, + { + "x": 510, + "y": 155, + "index": 2, + "body": { + "#": 1128 + }, + "isInternal": false + }, + { + "x": 475, + "y": 155, + "index": 3, + "body": { + "#": 1128 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1142 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1144 + }, + "max": { + "#": 1145 + } + }, + { + "x": 475, + "y": 120 + }, + { + "x": 510, + "y": 155 + }, + { + "x": 492.5, + "y": 137.5 + }, + [ + { + "#": 1148 + }, + { + "#": 1149 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 53, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1151 + }, + "angle": 0, + "vertices": { + "#": 1152 + }, + "position": { + "#": 1157 + }, + "force": { + "#": 1158 + }, + "torque": 0, + "positionImpulse": { + "#": 1159 + }, + "constraintImpulse": { + "#": 1160 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1161 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1162 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1163 + }, + "bounds": { + "#": 1165 + }, + "positionPrev": { + "#": 1168 + }, + "anglePrev": 0, + "axes": { + "#": 1169 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1150 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1150 + } + ], + [ + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + }, + { + "#": 1156 + } + ], + { + "x": 510, + "y": 120, + "index": 0, + "body": { + "#": 1150 + }, + "isInternal": false + }, + { + "x": 545, + "y": 120, + "index": 1, + "body": { + "#": 1150 + }, + "isInternal": false + }, + { + "x": 545, + "y": 155, + "index": 2, + "body": { + "#": 1150 + }, + "isInternal": false + }, + { + "x": 510, + "y": 155, + "index": 3, + "body": { + "#": 1150 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1164 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1166 + }, + "max": { + "#": 1167 + } + }, + { + "x": 510, + "y": 120 + }, + { + "x": 545, + "y": 155 + }, + { + "x": 527.5, + "y": 137.5 + }, + [ + { + "#": 1170 + }, + { + "#": 1171 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 54, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1173 + }, + "angle": 0, + "vertices": { + "#": 1174 + }, + "position": { + "#": 1179 + }, + "force": { + "#": 1180 + }, + "torque": 0, + "positionImpulse": { + "#": 1181 + }, + "constraintImpulse": { + "#": 1182 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1183 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1184 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1185 + }, + "bounds": { + "#": 1187 + }, + "positionPrev": { + "#": 1190 + }, + "anglePrev": 0, + "axes": { + "#": 1191 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1172 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1172 + } + ], + [ + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + } + ], + { + "x": 545, + "y": 120, + "index": 0, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 580, + "y": 120, + "index": 1, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 580, + "y": 155, + "index": 2, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 545, + "y": 155, + "index": 3, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1186 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1188 + }, + "max": { + "#": 1189 + } + }, + { + "x": 545, + "y": 120 + }, + { + "x": 580, + "y": 155 + }, + { + "x": 562.5, + "y": 137.5 + }, + [ + { + "#": 1192 + }, + { + "#": 1193 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 55, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1195 + }, + "angle": 0, + "vertices": { + "#": 1196 + }, + "position": { + "#": 1201 + }, + "force": { + "#": 1202 + }, + "torque": 0, + "positionImpulse": { + "#": 1203 + }, + "constraintImpulse": { + "#": 1204 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1205 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1206 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1207 + }, + "bounds": { + "#": 1209 + }, + "positionPrev": { + "#": 1212 + }, + "anglePrev": 0, + "axes": { + "#": 1213 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1194 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1194 + } + ], + [ + { + "#": 1197 + }, + { + "#": 1198 + }, + { + "#": 1199 + }, + { + "#": 1200 + } + ], + { + "x": 580, + "y": 120, + "index": 0, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 615, + "y": 120, + "index": 1, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 615, + "y": 155, + "index": 2, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 580, + "y": 155, + "index": 3, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1208 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1210 + }, + "max": { + "#": 1211 + } + }, + { + "x": 580, + "y": 120 + }, + { + "x": 615, + "y": 155 + }, + { + "x": 597.5, + "y": 137.5 + }, + [ + { + "#": 1214 + }, + { + "#": 1215 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 56, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1217 + }, + "angle": 0, + "vertices": { + "#": 1218 + }, + "position": { + "#": 1223 + }, + "force": { + "#": 1224 + }, + "torque": 0, + "positionImpulse": { + "#": 1225 + }, + "constraintImpulse": { + "#": 1226 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1227 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1228 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1229 + }, + "bounds": { + "#": 1231 + }, + "positionPrev": { + "#": 1234 + }, + "anglePrev": 0, + "axes": { + "#": 1235 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1216 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1216 + } + ], + [ + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + } + ], + { + "x": 615, + "y": 120, + "index": 0, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 650, + "y": 120, + "index": 1, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 650, + "y": 155, + "index": 2, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 615, + "y": 155, + "index": 3, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1230 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1232 + }, + "max": { + "#": 1233 + } + }, + { + "x": 615, + "y": 120 + }, + { + "x": 650, + "y": 155 + }, + { + "x": 632.5, + "y": 137.5 + }, + [ + { + "#": 1236 + }, + { + "#": 1237 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 57, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1239 + }, + "angle": 0, + "vertices": { + "#": 1240 + }, + "position": { + "#": 1245 + }, + "force": { + "#": 1246 + }, + "torque": 0, + "positionImpulse": { + "#": 1247 + }, + "constraintImpulse": { + "#": 1248 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1249 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1250 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1251 + }, + "bounds": { + "#": 1253 + }, + "positionPrev": { + "#": 1256 + }, + "anglePrev": 0, + "axes": { + "#": 1257 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1238 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1238 + } + ], + [ + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + } + ], + { + "x": 650, + "y": 120, + "index": 0, + "body": { + "#": 1238 + }, + "isInternal": false + }, + { + "x": 685, + "y": 120, + "index": 1, + "body": { + "#": 1238 + }, + "isInternal": false + }, + { + "x": 685, + "y": 155, + "index": 2, + "body": { + "#": 1238 + }, + "isInternal": false + }, + { + "x": 650, + "y": 155, + "index": 3, + "body": { + "#": 1238 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1252 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1254 + }, + "max": { + "#": 1255 + } + }, + { + "x": 650, + "y": 120 + }, + { + "x": 685, + "y": 155 + }, + { + "x": 667.5, + "y": 137.5 + }, + [ + { + "#": 1258 + }, + { + "#": 1259 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 58, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1261 + }, + "angle": 0, + "vertices": { + "#": 1262 + }, + "position": { + "#": 1267 + }, + "force": { + "#": 1268 + }, + "torque": 0, + "positionImpulse": { + "#": 1269 + }, + "constraintImpulse": { + "#": 1270 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1271 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1272 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1273 + }, + "bounds": { + "#": 1275 + }, + "positionPrev": { + "#": 1278 + }, + "anglePrev": 0, + "axes": { + "#": 1279 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1260 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1260 + } + ], + [ + { + "#": 1263 + }, + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + } + ], + { + "x": 685, + "y": 120, + "index": 0, + "body": { + "#": 1260 + }, + "isInternal": false + }, + { + "x": 720, + "y": 120, + "index": 1, + "body": { + "#": 1260 + }, + "isInternal": false + }, + { + "x": 720, + "y": 155, + "index": 2, + "body": { + "#": 1260 + }, + "isInternal": false + }, + { + "x": 685, + "y": 155, + "index": 3, + "body": { + "#": 1260 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 137.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1274 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1276 + }, + "max": { + "#": 1277 + } + }, + { + "x": 685, + "y": 120 + }, + { + "x": 720, + "y": 155 + }, + { + "x": 702.5, + "y": 137.5 + }, + [ + { + "#": 1280 + }, + { + "#": 1281 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 59, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1283 + }, + "angle": 0, + "vertices": { + "#": 1284 + }, + "position": { + "#": 1289 + }, + "force": { + "#": 1290 + }, + "torque": 0, + "positionImpulse": { + "#": 1291 + }, + "constraintImpulse": { + "#": 1292 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1293 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1294 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1295 + }, + "bounds": { + "#": 1297 + }, + "positionPrev": { + "#": 1300 + }, + "anglePrev": 0, + "axes": { + "#": 1301 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1282 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1282 + } + ], + [ + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + } + ], + { + "x": 90, + "y": 155, + "index": 0, + "body": { + "#": 1282 + }, + "isInternal": false + }, + { + "x": 125, + "y": 155, + "index": 1, + "body": { + "#": 1282 + }, + "isInternal": false + }, + { + "x": 125, + "y": 190, + "index": 2, + "body": { + "#": 1282 + }, + "isInternal": false + }, + { + "x": 90, + "y": 190, + "index": 3, + "body": { + "#": 1282 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1296 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1298 + }, + "max": { + "#": 1299 + } + }, + { + "x": 90, + "y": 155 + }, + { + "x": 125, + "y": 190 + }, + { + "x": 107.5, + "y": 172.5 + }, + [ + { + "#": 1302 + }, + { + "#": 1303 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 60, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1305 + }, + "angle": 0, + "vertices": { + "#": 1306 + }, + "position": { + "#": 1311 + }, + "force": { + "#": 1312 + }, + "torque": 0, + "positionImpulse": { + "#": 1313 + }, + "constraintImpulse": { + "#": 1314 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1315 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1316 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1317 + }, + "bounds": { + "#": 1319 + }, + "positionPrev": { + "#": 1322 + }, + "anglePrev": 0, + "axes": { + "#": 1323 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1304 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1304 + } + ], + [ + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + }, + { + "#": 1310 + } + ], + { + "x": 125, + "y": 155, + "index": 0, + "body": { + "#": 1304 + }, + "isInternal": false + }, + { + "x": 160, + "y": 155, + "index": 1, + "body": { + "#": 1304 + }, + "isInternal": false + }, + { + "x": 160, + "y": 190, + "index": 2, + "body": { + "#": 1304 + }, + "isInternal": false + }, + { + "x": 125, + "y": 190, + "index": 3, + "body": { + "#": 1304 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1318 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1320 + }, + "max": { + "#": 1321 + } + }, + { + "x": 125, + "y": 155 + }, + { + "x": 160, + "y": 190 + }, + { + "x": 142.5, + "y": 172.5 + }, + [ + { + "#": 1324 + }, + { + "#": 1325 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 61, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1327 + }, + "angle": 0, + "vertices": { + "#": 1328 + }, + "position": { + "#": 1333 + }, + "force": { + "#": 1334 + }, + "torque": 0, + "positionImpulse": { + "#": 1335 + }, + "constraintImpulse": { + "#": 1336 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1337 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1338 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1339 + }, + "bounds": { + "#": 1341 + }, + "positionPrev": { + "#": 1344 + }, + "anglePrev": 0, + "axes": { + "#": 1345 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1326 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1326 + } + ], + [ + { + "#": 1329 + }, + { + "#": 1330 + }, + { + "#": 1331 + }, + { + "#": 1332 + } + ], + { + "x": 160, + "y": 155, + "index": 0, + "body": { + "#": 1326 + }, + "isInternal": false + }, + { + "x": 195, + "y": 155, + "index": 1, + "body": { + "#": 1326 + }, + "isInternal": false + }, + { + "x": 195, + "y": 190, + "index": 2, + "body": { + "#": 1326 + }, + "isInternal": false + }, + { + "x": 160, + "y": 190, + "index": 3, + "body": { + "#": 1326 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1340 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1342 + }, + "max": { + "#": 1343 + } + }, + { + "x": 160, + "y": 155 + }, + { + "x": 195, + "y": 190 + }, + { + "x": 177.5, + "y": 172.5 + }, + [ + { + "#": 1346 + }, + { + "#": 1347 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 62, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1349 + }, + "angle": 0, + "vertices": { + "#": 1350 + }, + "position": { + "#": 1355 + }, + "force": { + "#": 1356 + }, + "torque": 0, + "positionImpulse": { + "#": 1357 + }, + "constraintImpulse": { + "#": 1358 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1359 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1360 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1361 + }, + "bounds": { + "#": 1363 + }, + "positionPrev": { + "#": 1366 + }, + "anglePrev": 0, + "axes": { + "#": 1367 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1348 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1348 + } + ], + [ + { + "#": 1351 + }, + { + "#": 1352 + }, + { + "#": 1353 + }, + { + "#": 1354 + } + ], + { + "x": 195, + "y": 155, + "index": 0, + "body": { + "#": 1348 + }, + "isInternal": false + }, + { + "x": 230, + "y": 155, + "index": 1, + "body": { + "#": 1348 + }, + "isInternal": false + }, + { + "x": 230, + "y": 190, + "index": 2, + "body": { + "#": 1348 + }, + "isInternal": false + }, + { + "x": 195, + "y": 190, + "index": 3, + "body": { + "#": 1348 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1362 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1364 + }, + "max": { + "#": 1365 + } + }, + { + "x": 195, + "y": 155 + }, + { + "x": 230, + "y": 190 + }, + { + "x": 212.5, + "y": 172.5 + }, + [ + { + "#": 1368 + }, + { + "#": 1369 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 63, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1371 + }, + "angle": 0, + "vertices": { + "#": 1372 + }, + "position": { + "#": 1377 + }, + "force": { + "#": 1378 + }, + "torque": 0, + "positionImpulse": { + "#": 1379 + }, + "constraintImpulse": { + "#": 1380 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1381 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1382 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1383 + }, + "bounds": { + "#": 1385 + }, + "positionPrev": { + "#": 1388 + }, + "anglePrev": 0, + "axes": { + "#": 1389 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1370 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1370 + } + ], + [ + { + "#": 1373 + }, + { + "#": 1374 + }, + { + "#": 1375 + }, + { + "#": 1376 + } + ], + { + "x": 230, + "y": 155, + "index": 0, + "body": { + "#": 1370 + }, + "isInternal": false + }, + { + "x": 265, + "y": 155, + "index": 1, + "body": { + "#": 1370 + }, + "isInternal": false + }, + { + "x": 265, + "y": 190, + "index": 2, + "body": { + "#": 1370 + }, + "isInternal": false + }, + { + "x": 230, + "y": 190, + "index": 3, + "body": { + "#": 1370 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1384 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1386 + }, + "max": { + "#": 1387 + } + }, + { + "x": 230, + "y": 155 + }, + { + "x": 265, + "y": 190 + }, + { + "x": 247.5, + "y": 172.5 + }, + [ + { + "#": 1390 + }, + { + "#": 1391 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 64, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1393 + }, + "angle": 0, + "vertices": { + "#": 1394 + }, + "position": { + "#": 1399 + }, + "force": { + "#": 1400 + }, + "torque": 0, + "positionImpulse": { + "#": 1401 + }, + "constraintImpulse": { + "#": 1402 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1403 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1404 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1405 + }, + "bounds": { + "#": 1407 + }, + "positionPrev": { + "#": 1410 + }, + "anglePrev": 0, + "axes": { + "#": 1411 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1392 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1392 + } + ], + [ + { + "#": 1395 + }, + { + "#": 1396 + }, + { + "#": 1397 + }, + { + "#": 1398 + } + ], + { + "x": 265, + "y": 155, + "index": 0, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 300, + "y": 155, + "index": 1, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 300, + "y": 190, + "index": 2, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 265, + "y": 190, + "index": 3, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1406 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1408 + }, + "max": { + "#": 1409 + } + }, + { + "x": 265, + "y": 155 + }, + { + "x": 300, + "y": 190 + }, + { + "x": 282.5, + "y": 172.5 + }, + [ + { + "#": 1412 + }, + { + "#": 1413 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 65, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1415 + }, + "angle": 0, + "vertices": { + "#": 1416 + }, + "position": { + "#": 1421 + }, + "force": { + "#": 1422 + }, + "torque": 0, + "positionImpulse": { + "#": 1423 + }, + "constraintImpulse": { + "#": 1424 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1425 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1426 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1427 + }, + "bounds": { + "#": 1429 + }, + "positionPrev": { + "#": 1432 + }, + "anglePrev": 0, + "axes": { + "#": 1433 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1414 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1414 + } + ], + [ + { + "#": 1417 + }, + { + "#": 1418 + }, + { + "#": 1419 + }, + { + "#": 1420 + } + ], + { + "x": 300, + "y": 155, + "index": 0, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 335, + "y": 155, + "index": 1, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 335, + "y": 190, + "index": 2, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 300, + "y": 190, + "index": 3, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1428 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1430 + }, + "max": { + "#": 1431 + } + }, + { + "x": 300, + "y": 155 + }, + { + "x": 335, + "y": 190 + }, + { + "x": 317.5, + "y": 172.5 + }, + [ + { + "#": 1434 + }, + { + "#": 1435 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 66, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1437 + }, + "angle": 0, + "vertices": { + "#": 1438 + }, + "position": { + "#": 1443 + }, + "force": { + "#": 1444 + }, + "torque": 0, + "positionImpulse": { + "#": 1445 + }, + "constraintImpulse": { + "#": 1446 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1447 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1448 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1449 + }, + "bounds": { + "#": 1451 + }, + "positionPrev": { + "#": 1454 + }, + "anglePrev": 0, + "axes": { + "#": 1455 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1436 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1436 + } + ], + [ + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + }, + { + "#": 1442 + } + ], + { + "x": 335, + "y": 155, + "index": 0, + "body": { + "#": 1436 + }, + "isInternal": false + }, + { + "x": 370, + "y": 155, + "index": 1, + "body": { + "#": 1436 + }, + "isInternal": false + }, + { + "x": 370, + "y": 190, + "index": 2, + "body": { + "#": 1436 + }, + "isInternal": false + }, + { + "x": 335, + "y": 190, + "index": 3, + "body": { + "#": 1436 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1450 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1452 + }, + "max": { + "#": 1453 + } + }, + { + "x": 335, + "y": 155 + }, + { + "x": 370, + "y": 190 + }, + { + "x": 352.5, + "y": 172.5 + }, + [ + { + "#": 1456 + }, + { + "#": 1457 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 67, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1459 + }, + "angle": 0, + "vertices": { + "#": 1460 + }, + "position": { + "#": 1465 + }, + "force": { + "#": 1466 + }, + "torque": 0, + "positionImpulse": { + "#": 1467 + }, + "constraintImpulse": { + "#": 1468 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1469 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1470 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1471 + }, + "bounds": { + "#": 1473 + }, + "positionPrev": { + "#": 1476 + }, + "anglePrev": 0, + "axes": { + "#": 1477 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1458 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1458 + } + ], + [ + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + } + ], + { + "x": 370, + "y": 155, + "index": 0, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 405, + "y": 155, + "index": 1, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 405, + "y": 190, + "index": 2, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 370, + "y": 190, + "index": 3, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1472 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1474 + }, + "max": { + "#": 1475 + } + }, + { + "x": 370, + "y": 155 + }, + { + "x": 405, + "y": 190 + }, + { + "x": 387.5, + "y": 172.5 + }, + [ + { + "#": 1478 + }, + { + "#": 1479 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 68, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1481 + }, + "angle": 0, + "vertices": { + "#": 1482 + }, + "position": { + "#": 1487 + }, + "force": { + "#": 1488 + }, + "torque": 0, + "positionImpulse": { + "#": 1489 + }, + "constraintImpulse": { + "#": 1490 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1491 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1492 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1493 + }, + "bounds": { + "#": 1495 + }, + "positionPrev": { + "#": 1498 + }, + "anglePrev": 0, + "axes": { + "#": 1499 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1480 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1480 + } + ], + [ + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + } + ], + { + "x": 405, + "y": 155, + "index": 0, + "body": { + "#": 1480 + }, + "isInternal": false + }, + { + "x": 440, + "y": 155, + "index": 1, + "body": { + "#": 1480 + }, + "isInternal": false + }, + { + "x": 440, + "y": 190, + "index": 2, + "body": { + "#": 1480 + }, + "isInternal": false + }, + { + "x": 405, + "y": 190, + "index": 3, + "body": { + "#": 1480 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1494 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1496 + }, + "max": { + "#": 1497 + } + }, + { + "x": 405, + "y": 155 + }, + { + "x": 440, + "y": 190 + }, + { + "x": 422.5, + "y": 172.5 + }, + [ + { + "#": 1500 + }, + { + "#": 1501 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 69, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1503 + }, + "angle": 0, + "vertices": { + "#": 1504 + }, + "position": { + "#": 1509 + }, + "force": { + "#": 1510 + }, + "torque": 0, + "positionImpulse": { + "#": 1511 + }, + "constraintImpulse": { + "#": 1512 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1513 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1514 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1515 + }, + "bounds": { + "#": 1517 + }, + "positionPrev": { + "#": 1520 + }, + "anglePrev": 0, + "axes": { + "#": 1521 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1502 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1502 + } + ], + [ + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + } + ], + { + "x": 440, + "y": 155, + "index": 0, + "body": { + "#": 1502 + }, + "isInternal": false + }, + { + "x": 475, + "y": 155, + "index": 1, + "body": { + "#": 1502 + }, + "isInternal": false + }, + { + "x": 475, + "y": 190, + "index": 2, + "body": { + "#": 1502 + }, + "isInternal": false + }, + { + "x": 440, + "y": 190, + "index": 3, + "body": { + "#": 1502 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1516 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1518 + }, + "max": { + "#": 1519 + } + }, + { + "x": 440, + "y": 155 + }, + { + "x": 475, + "y": 190 + }, + { + "x": 457.5, + "y": 172.5 + }, + [ + { + "#": 1522 + }, + { + "#": 1523 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 70, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1525 + }, + "angle": 0, + "vertices": { + "#": 1526 + }, + "position": { + "#": 1531 + }, + "force": { + "#": 1532 + }, + "torque": 0, + "positionImpulse": { + "#": 1533 + }, + "constraintImpulse": { + "#": 1534 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1535 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1536 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1537 + }, + "bounds": { + "#": 1539 + }, + "positionPrev": { + "#": 1542 + }, + "anglePrev": 0, + "axes": { + "#": 1543 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1524 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1524 + } + ], + [ + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + } + ], + { + "x": 475, + "y": 155, + "index": 0, + "body": { + "#": 1524 + }, + "isInternal": false + }, + { + "x": 510, + "y": 155, + "index": 1, + "body": { + "#": 1524 + }, + "isInternal": false + }, + { + "x": 510, + "y": 190, + "index": 2, + "body": { + "#": 1524 + }, + "isInternal": false + }, + { + "x": 475, + "y": 190, + "index": 3, + "body": { + "#": 1524 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1538 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1540 + }, + "max": { + "#": 1541 + } + }, + { + "x": 475, + "y": 155 + }, + { + "x": 510, + "y": 190 + }, + { + "x": 492.5, + "y": 172.5 + }, + [ + { + "#": 1544 + }, + { + "#": 1545 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 71, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1547 + }, + "angle": 0, + "vertices": { + "#": 1548 + }, + "position": { + "#": 1553 + }, + "force": { + "#": 1554 + }, + "torque": 0, + "positionImpulse": { + "#": 1555 + }, + "constraintImpulse": { + "#": 1556 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1557 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1558 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1559 + }, + "bounds": { + "#": 1561 + }, + "positionPrev": { + "#": 1564 + }, + "anglePrev": 0, + "axes": { + "#": 1565 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1546 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1546 + } + ], + [ + { + "#": 1549 + }, + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + } + ], + { + "x": 510, + "y": 155, + "index": 0, + "body": { + "#": 1546 + }, + "isInternal": false + }, + { + "x": 545, + "y": 155, + "index": 1, + "body": { + "#": 1546 + }, + "isInternal": false + }, + { + "x": 545, + "y": 190, + "index": 2, + "body": { + "#": 1546 + }, + "isInternal": false + }, + { + "x": 510, + "y": 190, + "index": 3, + "body": { + "#": 1546 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1560 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1562 + }, + "max": { + "#": 1563 + } + }, + { + "x": 510, + "y": 155 + }, + { + "x": 545, + "y": 190 + }, + { + "x": 527.5, + "y": 172.5 + }, + [ + { + "#": 1566 + }, + { + "#": 1567 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 72, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1569 + }, + "angle": 0, + "vertices": { + "#": 1570 + }, + "position": { + "#": 1575 + }, + "force": { + "#": 1576 + }, + "torque": 0, + "positionImpulse": { + "#": 1577 + }, + "constraintImpulse": { + "#": 1578 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1579 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1580 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1581 + }, + "bounds": { + "#": 1583 + }, + "positionPrev": { + "#": 1586 + }, + "anglePrev": 0, + "axes": { + "#": 1587 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1568 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1568 + } + ], + [ + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + } + ], + { + "x": 545, + "y": 155, + "index": 0, + "body": { + "#": 1568 + }, + "isInternal": false + }, + { + "x": 580, + "y": 155, + "index": 1, + "body": { + "#": 1568 + }, + "isInternal": false + }, + { + "x": 580, + "y": 190, + "index": 2, + "body": { + "#": 1568 + }, + "isInternal": false + }, + { + "x": 545, + "y": 190, + "index": 3, + "body": { + "#": 1568 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1582 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1584 + }, + "max": { + "#": 1585 + } + }, + { + "x": 545, + "y": 155 + }, + { + "x": 580, + "y": 190 + }, + { + "x": 562.5, + "y": 172.5 + }, + [ + { + "#": 1588 + }, + { + "#": 1589 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 73, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1591 + }, + "angle": 0, + "vertices": { + "#": 1592 + }, + "position": { + "#": 1597 + }, + "force": { + "#": 1598 + }, + "torque": 0, + "positionImpulse": { + "#": 1599 + }, + "constraintImpulse": { + "#": 1600 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1601 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1602 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1603 + }, + "bounds": { + "#": 1605 + }, + "positionPrev": { + "#": 1608 + }, + "anglePrev": 0, + "axes": { + "#": 1609 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1590 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1590 + } + ], + [ + { + "#": 1593 + }, + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + } + ], + { + "x": 580, + "y": 155, + "index": 0, + "body": { + "#": 1590 + }, + "isInternal": false + }, + { + "x": 615, + "y": 155, + "index": 1, + "body": { + "#": 1590 + }, + "isInternal": false + }, + { + "x": 615, + "y": 190, + "index": 2, + "body": { + "#": 1590 + }, + "isInternal": false + }, + { + "x": 580, + "y": 190, + "index": 3, + "body": { + "#": 1590 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1604 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1606 + }, + "max": { + "#": 1607 + } + }, + { + "x": 580, + "y": 155 + }, + { + "x": 615, + "y": 190 + }, + { + "x": 597.5, + "y": 172.5 + }, + [ + { + "#": 1610 + }, + { + "#": 1611 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 74, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1613 + }, + "angle": 0, + "vertices": { + "#": 1614 + }, + "position": { + "#": 1619 + }, + "force": { + "#": 1620 + }, + "torque": 0, + "positionImpulse": { + "#": 1621 + }, + "constraintImpulse": { + "#": 1622 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1623 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1624 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1625 + }, + "bounds": { + "#": 1627 + }, + "positionPrev": { + "#": 1630 + }, + "anglePrev": 0, + "axes": { + "#": 1631 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1612 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1612 + } + ], + [ + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + }, + { + "#": 1618 + } + ], + { + "x": 615, + "y": 155, + "index": 0, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 650, + "y": 155, + "index": 1, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 650, + "y": 190, + "index": 2, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 615, + "y": 190, + "index": 3, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1626 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1628 + }, + "max": { + "#": 1629 + } + }, + { + "x": 615, + "y": 155 + }, + { + "x": 650, + "y": 190 + }, + { + "x": 632.5, + "y": 172.5 + }, + [ + { + "#": 1632 + }, + { + "#": 1633 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 75, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1635 + }, + "angle": 0, + "vertices": { + "#": 1636 + }, + "position": { + "#": 1641 + }, + "force": { + "#": 1642 + }, + "torque": 0, + "positionImpulse": { + "#": 1643 + }, + "constraintImpulse": { + "#": 1644 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1645 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1646 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1647 + }, + "bounds": { + "#": 1649 + }, + "positionPrev": { + "#": 1652 + }, + "anglePrev": 0, + "axes": { + "#": 1653 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1634 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1634 + } + ], + [ + { + "#": 1637 + }, + { + "#": 1638 + }, + { + "#": 1639 + }, + { + "#": 1640 + } + ], + { + "x": 650, + "y": 155, + "index": 0, + "body": { + "#": 1634 + }, + "isInternal": false + }, + { + "x": 685, + "y": 155, + "index": 1, + "body": { + "#": 1634 + }, + "isInternal": false + }, + { + "x": 685, + "y": 190, + "index": 2, + "body": { + "#": 1634 + }, + "isInternal": false + }, + { + "x": 650, + "y": 190, + "index": 3, + "body": { + "#": 1634 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1648 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1650 + }, + "max": { + "#": 1651 + } + }, + { + "x": 650, + "y": 155 + }, + { + "x": 685, + "y": 190 + }, + { + "x": 667.5, + "y": 172.5 + }, + [ + { + "#": 1654 + }, + { + "#": 1655 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 76, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1657 + }, + "angle": 0, + "vertices": { + "#": 1658 + }, + "position": { + "#": 1663 + }, + "force": { + "#": 1664 + }, + "torque": 0, + "positionImpulse": { + "#": 1665 + }, + "constraintImpulse": { + "#": 1666 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1667 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1668 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1669 + }, + "bounds": { + "#": 1671 + }, + "positionPrev": { + "#": 1674 + }, + "anglePrev": 0, + "axes": { + "#": 1675 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1656 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1656 + } + ], + [ + { + "#": 1659 + }, + { + "#": 1660 + }, + { + "#": 1661 + }, + { + "#": 1662 + } + ], + { + "x": 685, + "y": 155, + "index": 0, + "body": { + "#": 1656 + }, + "isInternal": false + }, + { + "x": 720, + "y": 155, + "index": 1, + "body": { + "#": 1656 + }, + "isInternal": false + }, + { + "x": 720, + "y": 190, + "index": 2, + "body": { + "#": 1656 + }, + "isInternal": false + }, + { + "x": 685, + "y": 190, + "index": 3, + "body": { + "#": 1656 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 172.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1670 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1672 + }, + "max": { + "#": 1673 + } + }, + { + "x": 685, + "y": 155 + }, + { + "x": 720, + "y": 190 + }, + { + "x": 702.5, + "y": 172.5 + }, + [ + { + "#": 1676 + }, + { + "#": 1677 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 77, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1679 + }, + "angle": 0, + "vertices": { + "#": 1680 + }, + "position": { + "#": 1685 + }, + "force": { + "#": 1686 + }, + "torque": 0, + "positionImpulse": { + "#": 1687 + }, + "constraintImpulse": { + "#": 1688 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1689 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1690 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1691 + }, + "bounds": { + "#": 1693 + }, + "positionPrev": { + "#": 1696 + }, + "anglePrev": 0, + "axes": { + "#": 1697 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1678 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1678 + } + ], + [ + { + "#": 1681 + }, + { + "#": 1682 + }, + { + "#": 1683 + }, + { + "#": 1684 + } + ], + { + "x": 90, + "y": 190, + "index": 0, + "body": { + "#": 1678 + }, + "isInternal": false + }, + { + "x": 125, + "y": 190, + "index": 1, + "body": { + "#": 1678 + }, + "isInternal": false + }, + { + "x": 125, + "y": 225, + "index": 2, + "body": { + "#": 1678 + }, + "isInternal": false + }, + { + "x": 90, + "y": 225, + "index": 3, + "body": { + "#": 1678 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1692 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1694 + }, + "max": { + "#": 1695 + } + }, + { + "x": 90, + "y": 190 + }, + { + "x": 125, + "y": 225 + }, + { + "x": 107.5, + "y": 207.5 + }, + [ + { + "#": 1698 + }, + { + "#": 1699 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 78, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1701 + }, + "angle": 0, + "vertices": { + "#": 1702 + }, + "position": { + "#": 1707 + }, + "force": { + "#": 1708 + }, + "torque": 0, + "positionImpulse": { + "#": 1709 + }, + "constraintImpulse": { + "#": 1710 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1711 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1712 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1713 + }, + "bounds": { + "#": 1715 + }, + "positionPrev": { + "#": 1718 + }, + "anglePrev": 0, + "axes": { + "#": 1719 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1700 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1700 + } + ], + [ + { + "#": 1703 + }, + { + "#": 1704 + }, + { + "#": 1705 + }, + { + "#": 1706 + } + ], + { + "x": 125, + "y": 190, + "index": 0, + "body": { + "#": 1700 + }, + "isInternal": false + }, + { + "x": 160, + "y": 190, + "index": 1, + "body": { + "#": 1700 + }, + "isInternal": false + }, + { + "x": 160, + "y": 225, + "index": 2, + "body": { + "#": 1700 + }, + "isInternal": false + }, + { + "x": 125, + "y": 225, + "index": 3, + "body": { + "#": 1700 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1714 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1716 + }, + "max": { + "#": 1717 + } + }, + { + "x": 125, + "y": 190 + }, + { + "x": 160, + "y": 225 + }, + { + "x": 142.5, + "y": 207.5 + }, + [ + { + "#": 1720 + }, + { + "#": 1721 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 79, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1723 + }, + "angle": 0, + "vertices": { + "#": 1724 + }, + "position": { + "#": 1729 + }, + "force": { + "#": 1730 + }, + "torque": 0, + "positionImpulse": { + "#": 1731 + }, + "constraintImpulse": { + "#": 1732 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1733 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1734 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1735 + }, + "bounds": { + "#": 1737 + }, + "positionPrev": { + "#": 1740 + }, + "anglePrev": 0, + "axes": { + "#": 1741 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1722 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1722 + } + ], + [ + { + "#": 1725 + }, + { + "#": 1726 + }, + { + "#": 1727 + }, + { + "#": 1728 + } + ], + { + "x": 160, + "y": 190, + "index": 0, + "body": { + "#": 1722 + }, + "isInternal": false + }, + { + "x": 195, + "y": 190, + "index": 1, + "body": { + "#": 1722 + }, + "isInternal": false + }, + { + "x": 195, + "y": 225, + "index": 2, + "body": { + "#": 1722 + }, + "isInternal": false + }, + { + "x": 160, + "y": 225, + "index": 3, + "body": { + "#": 1722 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1736 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1738 + }, + "max": { + "#": 1739 + } + }, + { + "x": 160, + "y": 190 + }, + { + "x": 195, + "y": 225 + }, + { + "x": 177.5, + "y": 207.5 + }, + [ + { + "#": 1742 + }, + { + "#": 1743 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 80, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1745 + }, + "angle": 0, + "vertices": { + "#": 1746 + }, + "position": { + "#": 1751 + }, + "force": { + "#": 1752 + }, + "torque": 0, + "positionImpulse": { + "#": 1753 + }, + "constraintImpulse": { + "#": 1754 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1755 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1756 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1757 + }, + "bounds": { + "#": 1759 + }, + "positionPrev": { + "#": 1762 + }, + "anglePrev": 0, + "axes": { + "#": 1763 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1744 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1744 + } + ], + [ + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + } + ], + { + "x": 195, + "y": 190, + "index": 0, + "body": { + "#": 1744 + }, + "isInternal": false + }, + { + "x": 230, + "y": 190, + "index": 1, + "body": { + "#": 1744 + }, + "isInternal": false + }, + { + "x": 230, + "y": 225, + "index": 2, + "body": { + "#": 1744 + }, + "isInternal": false + }, + { + "x": 195, + "y": 225, + "index": 3, + "body": { + "#": 1744 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1758 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1760 + }, + "max": { + "#": 1761 + } + }, + { + "x": 195, + "y": 190 + }, + { + "x": 230, + "y": 225 + }, + { + "x": 212.5, + "y": 207.5 + }, + [ + { + "#": 1764 + }, + { + "#": 1765 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 81, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1767 + }, + "angle": 0, + "vertices": { + "#": 1768 + }, + "position": { + "#": 1773 + }, + "force": { + "#": 1774 + }, + "torque": 0, + "positionImpulse": { + "#": 1775 + }, + "constraintImpulse": { + "#": 1776 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1777 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1778 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1779 + }, + "bounds": { + "#": 1781 + }, + "positionPrev": { + "#": 1784 + }, + "anglePrev": 0, + "axes": { + "#": 1785 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1766 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1766 + } + ], + [ + { + "#": 1769 + }, + { + "#": 1770 + }, + { + "#": 1771 + }, + { + "#": 1772 + } + ], + { + "x": 230, + "y": 190, + "index": 0, + "body": { + "#": 1766 + }, + "isInternal": false + }, + { + "x": 265, + "y": 190, + "index": 1, + "body": { + "#": 1766 + }, + "isInternal": false + }, + { + "x": 265, + "y": 225, + "index": 2, + "body": { + "#": 1766 + }, + "isInternal": false + }, + { + "x": 230, + "y": 225, + "index": 3, + "body": { + "#": 1766 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1780 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1782 + }, + "max": { + "#": 1783 + } + }, + { + "x": 230, + "y": 190 + }, + { + "x": 265, + "y": 225 + }, + { + "x": 247.5, + "y": 207.5 + }, + [ + { + "#": 1786 + }, + { + "#": 1787 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 82, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1789 + }, + "angle": 0, + "vertices": { + "#": 1790 + }, + "position": { + "#": 1795 + }, + "force": { + "#": 1796 + }, + "torque": 0, + "positionImpulse": { + "#": 1797 + }, + "constraintImpulse": { + "#": 1798 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1799 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1800 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1801 + }, + "bounds": { + "#": 1803 + }, + "positionPrev": { + "#": 1806 + }, + "anglePrev": 0, + "axes": { + "#": 1807 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1788 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1788 + } + ], + [ + { + "#": 1791 + }, + { + "#": 1792 + }, + { + "#": 1793 + }, + { + "#": 1794 + } + ], + { + "x": 265, + "y": 190, + "index": 0, + "body": { + "#": 1788 + }, + "isInternal": false + }, + { + "x": 300, + "y": 190, + "index": 1, + "body": { + "#": 1788 + }, + "isInternal": false + }, + { + "x": 300, + "y": 225, + "index": 2, + "body": { + "#": 1788 + }, + "isInternal": false + }, + { + "x": 265, + "y": 225, + "index": 3, + "body": { + "#": 1788 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1802 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1804 + }, + "max": { + "#": 1805 + } + }, + { + "x": 265, + "y": 190 + }, + { + "x": 300, + "y": 225 + }, + { + "x": 282.5, + "y": 207.5 + }, + [ + { + "#": 1808 + }, + { + "#": 1809 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 83, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1811 + }, + "angle": 0, + "vertices": { + "#": 1812 + }, + "position": { + "#": 1817 + }, + "force": { + "#": 1818 + }, + "torque": 0, + "positionImpulse": { + "#": 1819 + }, + "constraintImpulse": { + "#": 1820 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1821 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1822 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1823 + }, + "bounds": { + "#": 1825 + }, + "positionPrev": { + "#": 1828 + }, + "anglePrev": 0, + "axes": { + "#": 1829 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1810 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1810 + } + ], + [ + { + "#": 1813 + }, + { + "#": 1814 + }, + { + "#": 1815 + }, + { + "#": 1816 + } + ], + { + "x": 300, + "y": 190, + "index": 0, + "body": { + "#": 1810 + }, + "isInternal": false + }, + { + "x": 335, + "y": 190, + "index": 1, + "body": { + "#": 1810 + }, + "isInternal": false + }, + { + "x": 335, + "y": 225, + "index": 2, + "body": { + "#": 1810 + }, + "isInternal": false + }, + { + "x": 300, + "y": 225, + "index": 3, + "body": { + "#": 1810 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1824 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1826 + }, + "max": { + "#": 1827 + } + }, + { + "x": 300, + "y": 190 + }, + { + "x": 335, + "y": 225 + }, + { + "x": 317.5, + "y": 207.5 + }, + [ + { + "#": 1830 + }, + { + "#": 1831 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 84, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1833 + }, + "angle": 0, + "vertices": { + "#": 1834 + }, + "position": { + "#": 1839 + }, + "force": { + "#": 1840 + }, + "torque": 0, + "positionImpulse": { + "#": 1841 + }, + "constraintImpulse": { + "#": 1842 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1843 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1844 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1845 + }, + "bounds": { + "#": 1847 + }, + "positionPrev": { + "#": 1850 + }, + "anglePrev": 0, + "axes": { + "#": 1851 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1832 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1832 + } + ], + [ + { + "#": 1835 + }, + { + "#": 1836 + }, + { + "#": 1837 + }, + { + "#": 1838 + } + ], + { + "x": 335, + "y": 190, + "index": 0, + "body": { + "#": 1832 + }, + "isInternal": false + }, + { + "x": 370, + "y": 190, + "index": 1, + "body": { + "#": 1832 + }, + "isInternal": false + }, + { + "x": 370, + "y": 225, + "index": 2, + "body": { + "#": 1832 + }, + "isInternal": false + }, + { + "x": 335, + "y": 225, + "index": 3, + "body": { + "#": 1832 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1846 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1848 + }, + "max": { + "#": 1849 + } + }, + { + "x": 335, + "y": 190 + }, + { + "x": 370, + "y": 225 + }, + { + "x": 352.5, + "y": 207.5 + }, + [ + { + "#": 1852 + }, + { + "#": 1853 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 85, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1855 + }, + "angle": 0, + "vertices": { + "#": 1856 + }, + "position": { + "#": 1861 + }, + "force": { + "#": 1862 + }, + "torque": 0, + "positionImpulse": { + "#": 1863 + }, + "constraintImpulse": { + "#": 1864 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1865 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1866 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1867 + }, + "bounds": { + "#": 1869 + }, + "positionPrev": { + "#": 1872 + }, + "anglePrev": 0, + "axes": { + "#": 1873 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1854 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1854 + } + ], + [ + { + "#": 1857 + }, + { + "#": 1858 + }, + { + "#": 1859 + }, + { + "#": 1860 + } + ], + { + "x": 370, + "y": 190, + "index": 0, + "body": { + "#": 1854 + }, + "isInternal": false + }, + { + "x": 405, + "y": 190, + "index": 1, + "body": { + "#": 1854 + }, + "isInternal": false + }, + { + "x": 405, + "y": 225, + "index": 2, + "body": { + "#": 1854 + }, + "isInternal": false + }, + { + "x": 370, + "y": 225, + "index": 3, + "body": { + "#": 1854 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1868 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1870 + }, + "max": { + "#": 1871 + } + }, + { + "x": 370, + "y": 190 + }, + { + "x": 405, + "y": 225 + }, + { + "x": 387.5, + "y": 207.5 + }, + [ + { + "#": 1874 + }, + { + "#": 1875 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 86, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1877 + }, + "angle": 0, + "vertices": { + "#": 1878 + }, + "position": { + "#": 1883 + }, + "force": { + "#": 1884 + }, + "torque": 0, + "positionImpulse": { + "#": 1885 + }, + "constraintImpulse": { + "#": 1886 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1887 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1888 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1889 + }, + "bounds": { + "#": 1891 + }, + "positionPrev": { + "#": 1894 + }, + "anglePrev": 0, + "axes": { + "#": 1895 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1876 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1876 + } + ], + [ + { + "#": 1879 + }, + { + "#": 1880 + }, + { + "#": 1881 + }, + { + "#": 1882 + } + ], + { + "x": 405, + "y": 190, + "index": 0, + "body": { + "#": 1876 + }, + "isInternal": false + }, + { + "x": 440, + "y": 190, + "index": 1, + "body": { + "#": 1876 + }, + "isInternal": false + }, + { + "x": 440, + "y": 225, + "index": 2, + "body": { + "#": 1876 + }, + "isInternal": false + }, + { + "x": 405, + "y": 225, + "index": 3, + "body": { + "#": 1876 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1890 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1892 + }, + "max": { + "#": 1893 + } + }, + { + "x": 405, + "y": 190 + }, + { + "x": 440, + "y": 225 + }, + { + "x": 422.5, + "y": 207.5 + }, + [ + { + "#": 1896 + }, + { + "#": 1897 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 87, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1899 + }, + "angle": 0, + "vertices": { + "#": 1900 + }, + "position": { + "#": 1905 + }, + "force": { + "#": 1906 + }, + "torque": 0, + "positionImpulse": { + "#": 1907 + }, + "constraintImpulse": { + "#": 1908 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1909 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1910 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1911 + }, + "bounds": { + "#": 1913 + }, + "positionPrev": { + "#": 1916 + }, + "anglePrev": 0, + "axes": { + "#": 1917 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1898 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1898 + } + ], + [ + { + "#": 1901 + }, + { + "#": 1902 + }, + { + "#": 1903 + }, + { + "#": 1904 + } + ], + { + "x": 440, + "y": 190, + "index": 0, + "body": { + "#": 1898 + }, + "isInternal": false + }, + { + "x": 475, + "y": 190, + "index": 1, + "body": { + "#": 1898 + }, + "isInternal": false + }, + { + "x": 475, + "y": 225, + "index": 2, + "body": { + "#": 1898 + }, + "isInternal": false + }, + { + "x": 440, + "y": 225, + "index": 3, + "body": { + "#": 1898 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1912 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1914 + }, + "max": { + "#": 1915 + } + }, + { + "x": 440, + "y": 190 + }, + { + "x": 475, + "y": 225 + }, + { + "x": 457.5, + "y": 207.5 + }, + [ + { + "#": 1918 + }, + { + "#": 1919 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 88, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1921 + }, + "angle": 0, + "vertices": { + "#": 1922 + }, + "position": { + "#": 1927 + }, + "force": { + "#": 1928 + }, + "torque": 0, + "positionImpulse": { + "#": 1929 + }, + "constraintImpulse": { + "#": 1930 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1931 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1932 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1933 + }, + "bounds": { + "#": 1935 + }, + "positionPrev": { + "#": 1938 + }, + "anglePrev": 0, + "axes": { + "#": 1939 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1920 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1920 + } + ], + [ + { + "#": 1923 + }, + { + "#": 1924 + }, + { + "#": 1925 + }, + { + "#": 1926 + } + ], + { + "x": 475, + "y": 190, + "index": 0, + "body": { + "#": 1920 + }, + "isInternal": false + }, + { + "x": 510, + "y": 190, + "index": 1, + "body": { + "#": 1920 + }, + "isInternal": false + }, + { + "x": 510, + "y": 225, + "index": 2, + "body": { + "#": 1920 + }, + "isInternal": false + }, + { + "x": 475, + "y": 225, + "index": 3, + "body": { + "#": 1920 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1934 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1936 + }, + "max": { + "#": 1937 + } + }, + { + "x": 475, + "y": 190 + }, + { + "x": 510, + "y": 225 + }, + { + "x": 492.5, + "y": 207.5 + }, + [ + { + "#": 1940 + }, + { + "#": 1941 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 89, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1943 + }, + "angle": 0, + "vertices": { + "#": 1944 + }, + "position": { + "#": 1949 + }, + "force": { + "#": 1950 + }, + "torque": 0, + "positionImpulse": { + "#": 1951 + }, + "constraintImpulse": { + "#": 1952 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1953 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1954 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1955 + }, + "bounds": { + "#": 1957 + }, + "positionPrev": { + "#": 1960 + }, + "anglePrev": 0, + "axes": { + "#": 1961 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1942 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1942 + } + ], + [ + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + }, + { + "#": 1948 + } + ], + { + "x": 510, + "y": 190, + "index": 0, + "body": { + "#": 1942 + }, + "isInternal": false + }, + { + "x": 545, + "y": 190, + "index": 1, + "body": { + "#": 1942 + }, + "isInternal": false + }, + { + "x": 545, + "y": 225, + "index": 2, + "body": { + "#": 1942 + }, + "isInternal": false + }, + { + "x": 510, + "y": 225, + "index": 3, + "body": { + "#": 1942 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1956 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1958 + }, + "max": { + "#": 1959 + } + }, + { + "x": 510, + "y": 190 + }, + { + "x": 545, + "y": 225 + }, + { + "x": 527.5, + "y": 207.5 + }, + [ + { + "#": 1962 + }, + { + "#": 1963 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 90, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1965 + }, + "angle": 0, + "vertices": { + "#": 1966 + }, + "position": { + "#": 1971 + }, + "force": { + "#": 1972 + }, + "torque": 0, + "positionImpulse": { + "#": 1973 + }, + "constraintImpulse": { + "#": 1974 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1975 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1976 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1977 + }, + "bounds": { + "#": 1979 + }, + "positionPrev": { + "#": 1982 + }, + "anglePrev": 0, + "axes": { + "#": 1983 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1964 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1964 + } + ], + [ + { + "#": 1967 + }, + { + "#": 1968 + }, + { + "#": 1969 + }, + { + "#": 1970 + } + ], + { + "x": 545, + "y": 190, + "index": 0, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 580, + "y": 190, + "index": 1, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 580, + "y": 225, + "index": 2, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 545, + "y": 225, + "index": 3, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1978 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1980 + }, + "max": { + "#": 1981 + } + }, + { + "x": 545, + "y": 190 + }, + { + "x": 580, + "y": 225 + }, + { + "x": 562.5, + "y": 207.5 + }, + [ + { + "#": 1984 + }, + { + "#": 1985 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 91, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1987 + }, + "angle": 0, + "vertices": { + "#": 1988 + }, + "position": { + "#": 1993 + }, + "force": { + "#": 1994 + }, + "torque": 0, + "positionImpulse": { + "#": 1995 + }, + "constraintImpulse": { + "#": 1996 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1997 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1998 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1999 + }, + "bounds": { + "#": 2001 + }, + "positionPrev": { + "#": 2004 + }, + "anglePrev": 0, + "axes": { + "#": 2005 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1986 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1986 + } + ], + [ + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + } + ], + { + "x": 580, + "y": 190, + "index": 0, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 615, + "y": 190, + "index": 1, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 615, + "y": 225, + "index": 2, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 580, + "y": 225, + "index": 3, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2000 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2002 + }, + "max": { + "#": 2003 + } + }, + { + "x": 580, + "y": 190 + }, + { + "x": 615, + "y": 225 + }, + { + "x": 597.5, + "y": 207.5 + }, + [ + { + "#": 2006 + }, + { + "#": 2007 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 92, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2009 + }, + "angle": 0, + "vertices": { + "#": 2010 + }, + "position": { + "#": 2015 + }, + "force": { + "#": 2016 + }, + "torque": 0, + "positionImpulse": { + "#": 2017 + }, + "constraintImpulse": { + "#": 2018 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2019 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2020 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2021 + }, + "bounds": { + "#": 2023 + }, + "positionPrev": { + "#": 2026 + }, + "anglePrev": 0, + "axes": { + "#": 2027 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2008 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2008 + } + ], + [ + { + "#": 2011 + }, + { + "#": 2012 + }, + { + "#": 2013 + }, + { + "#": 2014 + } + ], + { + "x": 615, + "y": 190, + "index": 0, + "body": { + "#": 2008 + }, + "isInternal": false + }, + { + "x": 650, + "y": 190, + "index": 1, + "body": { + "#": 2008 + }, + "isInternal": false + }, + { + "x": 650, + "y": 225, + "index": 2, + "body": { + "#": 2008 + }, + "isInternal": false + }, + { + "x": 615, + "y": 225, + "index": 3, + "body": { + "#": 2008 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2022 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2024 + }, + "max": { + "#": 2025 + } + }, + { + "x": 615, + "y": 190 + }, + { + "x": 650, + "y": 225 + }, + { + "x": 632.5, + "y": 207.5 + }, + [ + { + "#": 2028 + }, + { + "#": 2029 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 93, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2031 + }, + "angle": 0, + "vertices": { + "#": 2032 + }, + "position": { + "#": 2037 + }, + "force": { + "#": 2038 + }, + "torque": 0, + "positionImpulse": { + "#": 2039 + }, + "constraintImpulse": { + "#": 2040 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2041 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2042 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2043 + }, + "bounds": { + "#": 2045 + }, + "positionPrev": { + "#": 2048 + }, + "anglePrev": 0, + "axes": { + "#": 2049 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2030 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2030 + } + ], + [ + { + "#": 2033 + }, + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + } + ], + { + "x": 650, + "y": 190, + "index": 0, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 685, + "y": 190, + "index": 1, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 685, + "y": 225, + "index": 2, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 650, + "y": 225, + "index": 3, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2044 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2046 + }, + "max": { + "#": 2047 + } + }, + { + "x": 650, + "y": 190 + }, + { + "x": 685, + "y": 225 + }, + { + "x": 667.5, + "y": 207.5 + }, + [ + { + "#": 2050 + }, + { + "#": 2051 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 94, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2053 + }, + "angle": 0, + "vertices": { + "#": 2054 + }, + "position": { + "#": 2059 + }, + "force": { + "#": 2060 + }, + "torque": 0, + "positionImpulse": { + "#": 2061 + }, + "constraintImpulse": { + "#": 2062 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2063 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2064 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2065 + }, + "bounds": { + "#": 2067 + }, + "positionPrev": { + "#": 2070 + }, + "anglePrev": 0, + "axes": { + "#": 2071 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2052 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2052 + } + ], + [ + { + "#": 2055 + }, + { + "#": 2056 + }, + { + "#": 2057 + }, + { + "#": 2058 + } + ], + { + "x": 685, + "y": 190, + "index": 0, + "body": { + "#": 2052 + }, + "isInternal": false + }, + { + "x": 720, + "y": 190, + "index": 1, + "body": { + "#": 2052 + }, + "isInternal": false + }, + { + "x": 720, + "y": 225, + "index": 2, + "body": { + "#": 2052 + }, + "isInternal": false + }, + { + "x": 685, + "y": 225, + "index": 3, + "body": { + "#": 2052 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2066 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2068 + }, + "max": { + "#": 2069 + } + }, + { + "x": 685, + "y": 190 + }, + { + "x": 720, + "y": 225 + }, + { + "x": 702.5, + "y": 207.5 + }, + [ + { + "#": 2072 + }, + { + "#": 2073 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 95, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2075 + }, + "angle": 0, + "vertices": { + "#": 2076 + }, + "position": { + "#": 2081 + }, + "force": { + "#": 2082 + }, + "torque": 0, + "positionImpulse": { + "#": 2083 + }, + "constraintImpulse": { + "#": 2084 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2085 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2086 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2087 + }, + "bounds": { + "#": 2089 + }, + "positionPrev": { + "#": 2092 + }, + "anglePrev": 0, + "axes": { + "#": 2093 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2074 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2074 + } + ], + [ + { + "#": 2077 + }, + { + "#": 2078 + }, + { + "#": 2079 + }, + { + "#": 2080 + } + ], + { + "x": 90, + "y": 225, + "index": 0, + "body": { + "#": 2074 + }, + "isInternal": false + }, + { + "x": 125, + "y": 225, + "index": 1, + "body": { + "#": 2074 + }, + "isInternal": false + }, + { + "x": 125, + "y": 260, + "index": 2, + "body": { + "#": 2074 + }, + "isInternal": false + }, + { + "x": 90, + "y": 260, + "index": 3, + "body": { + "#": 2074 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2088 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2090 + }, + "max": { + "#": 2091 + } + }, + { + "x": 90, + "y": 225 + }, + { + "x": 125, + "y": 260 + }, + { + "x": 107.5, + "y": 242.5 + }, + [ + { + "#": 2094 + }, + { + "#": 2095 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 96, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2097 + }, + "angle": 0, + "vertices": { + "#": 2098 + }, + "position": { + "#": 2103 + }, + "force": { + "#": 2104 + }, + "torque": 0, + "positionImpulse": { + "#": 2105 + }, + "constraintImpulse": { + "#": 2106 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2107 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2108 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2109 + }, + "bounds": { + "#": 2111 + }, + "positionPrev": { + "#": 2114 + }, + "anglePrev": 0, + "axes": { + "#": 2115 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2096 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2096 + } + ], + [ + { + "#": 2099 + }, + { + "#": 2100 + }, + { + "#": 2101 + }, + { + "#": 2102 + } + ], + { + "x": 125, + "y": 225, + "index": 0, + "body": { + "#": 2096 + }, + "isInternal": false + }, + { + "x": 160, + "y": 225, + "index": 1, + "body": { + "#": 2096 + }, + "isInternal": false + }, + { + "x": 160, + "y": 260, + "index": 2, + "body": { + "#": 2096 + }, + "isInternal": false + }, + { + "x": 125, + "y": 260, + "index": 3, + "body": { + "#": 2096 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2110 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2112 + }, + "max": { + "#": 2113 + } + }, + { + "x": 125, + "y": 225 + }, + { + "x": 160, + "y": 260 + }, + { + "x": 142.5, + "y": 242.5 + }, + [ + { + "#": 2116 + }, + { + "#": 2117 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 97, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2119 + }, + "angle": 0, + "vertices": { + "#": 2120 + }, + "position": { + "#": 2125 + }, + "force": { + "#": 2126 + }, + "torque": 0, + "positionImpulse": { + "#": 2127 + }, + "constraintImpulse": { + "#": 2128 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2129 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2130 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2131 + }, + "bounds": { + "#": 2133 + }, + "positionPrev": { + "#": 2136 + }, + "anglePrev": 0, + "axes": { + "#": 2137 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2118 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2118 + } + ], + [ + { + "#": 2121 + }, + { + "#": 2122 + }, + { + "#": 2123 + }, + { + "#": 2124 + } + ], + { + "x": 160, + "y": 225, + "index": 0, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 195, + "y": 225, + "index": 1, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 195, + "y": 260, + "index": 2, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 160, + "y": 260, + "index": 3, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2132 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2134 + }, + "max": { + "#": 2135 + } + }, + { + "x": 160, + "y": 225 + }, + { + "x": 195, + "y": 260 + }, + { + "x": 177.5, + "y": 242.5 + }, + [ + { + "#": 2138 + }, + { + "#": 2139 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 98, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2141 + }, + "angle": 0, + "vertices": { + "#": 2142 + }, + "position": { + "#": 2147 + }, + "force": { + "#": 2148 + }, + "torque": 0, + "positionImpulse": { + "#": 2149 + }, + "constraintImpulse": { + "#": 2150 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2151 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2152 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2153 + }, + "bounds": { + "#": 2155 + }, + "positionPrev": { + "#": 2158 + }, + "anglePrev": 0, + "axes": { + "#": 2159 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2140 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2140 + } + ], + [ + { + "#": 2143 + }, + { + "#": 2144 + }, + { + "#": 2145 + }, + { + "#": 2146 + } + ], + { + "x": 195, + "y": 225, + "index": 0, + "body": { + "#": 2140 + }, + "isInternal": false + }, + { + "x": 230, + "y": 225, + "index": 1, + "body": { + "#": 2140 + }, + "isInternal": false + }, + { + "x": 230, + "y": 260, + "index": 2, + "body": { + "#": 2140 + }, + "isInternal": false + }, + { + "x": 195, + "y": 260, + "index": 3, + "body": { + "#": 2140 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2154 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2156 + }, + "max": { + "#": 2157 + } + }, + { + "x": 195, + "y": 225 + }, + { + "x": 230, + "y": 260 + }, + { + "x": 212.5, + "y": 242.5 + }, + [ + { + "#": 2160 + }, + { + "#": 2161 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 99, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2163 + }, + "angle": 0, + "vertices": { + "#": 2164 + }, + "position": { + "#": 2169 + }, + "force": { + "#": 2170 + }, + "torque": 0, + "positionImpulse": { + "#": 2171 + }, + "constraintImpulse": { + "#": 2172 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2173 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2174 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2175 + }, + "bounds": { + "#": 2177 + }, + "positionPrev": { + "#": 2180 + }, + "anglePrev": 0, + "axes": { + "#": 2181 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2162 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2162 + } + ], + [ + { + "#": 2165 + }, + { + "#": 2166 + }, + { + "#": 2167 + }, + { + "#": 2168 + } + ], + { + "x": 230, + "y": 225, + "index": 0, + "body": { + "#": 2162 + }, + "isInternal": false + }, + { + "x": 265, + "y": 225, + "index": 1, + "body": { + "#": 2162 + }, + "isInternal": false + }, + { + "x": 265, + "y": 260, + "index": 2, + "body": { + "#": 2162 + }, + "isInternal": false + }, + { + "x": 230, + "y": 260, + "index": 3, + "body": { + "#": 2162 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2176 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2178 + }, + "max": { + "#": 2179 + } + }, + { + "x": 230, + "y": 225 + }, + { + "x": 265, + "y": 260 + }, + { + "x": 247.5, + "y": 242.5 + }, + [ + { + "#": 2182 + }, + { + "#": 2183 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 100, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2185 + }, + "angle": 0, + "vertices": { + "#": 2186 + }, + "position": { + "#": 2191 + }, + "force": { + "#": 2192 + }, + "torque": 0, + "positionImpulse": { + "#": 2193 + }, + "constraintImpulse": { + "#": 2194 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2195 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2196 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2197 + }, + "bounds": { + "#": 2199 + }, + "positionPrev": { + "#": 2202 + }, + "anglePrev": 0, + "axes": { + "#": 2203 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2184 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2184 + } + ], + [ + { + "#": 2187 + }, + { + "#": 2188 + }, + { + "#": 2189 + }, + { + "#": 2190 + } + ], + { + "x": 265, + "y": 225, + "index": 0, + "body": { + "#": 2184 + }, + "isInternal": false + }, + { + "x": 300, + "y": 225, + "index": 1, + "body": { + "#": 2184 + }, + "isInternal": false + }, + { + "x": 300, + "y": 260, + "index": 2, + "body": { + "#": 2184 + }, + "isInternal": false + }, + { + "x": 265, + "y": 260, + "index": 3, + "body": { + "#": 2184 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2198 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2200 + }, + "max": { + "#": 2201 + } + }, + { + "x": 265, + "y": 225 + }, + { + "x": 300, + "y": 260 + }, + { + "x": 282.5, + "y": 242.5 + }, + [ + { + "#": 2204 + }, + { + "#": 2205 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 101, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2207 + }, + "angle": 0, + "vertices": { + "#": 2208 + }, + "position": { + "#": 2213 + }, + "force": { + "#": 2214 + }, + "torque": 0, + "positionImpulse": { + "#": 2215 + }, + "constraintImpulse": { + "#": 2216 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2217 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2218 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2219 + }, + "bounds": { + "#": 2221 + }, + "positionPrev": { + "#": 2224 + }, + "anglePrev": 0, + "axes": { + "#": 2225 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2206 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2206 + } + ], + [ + { + "#": 2209 + }, + { + "#": 2210 + }, + { + "#": 2211 + }, + { + "#": 2212 + } + ], + { + "x": 300, + "y": 225, + "index": 0, + "body": { + "#": 2206 + }, + "isInternal": false + }, + { + "x": 335, + "y": 225, + "index": 1, + "body": { + "#": 2206 + }, + "isInternal": false + }, + { + "x": 335, + "y": 260, + "index": 2, + "body": { + "#": 2206 + }, + "isInternal": false + }, + { + "x": 300, + "y": 260, + "index": 3, + "body": { + "#": 2206 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2220 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2222 + }, + "max": { + "#": 2223 + } + }, + { + "x": 300, + "y": 225 + }, + { + "x": 335, + "y": 260 + }, + { + "x": 317.5, + "y": 242.5 + }, + [ + { + "#": 2226 + }, + { + "#": 2227 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 102, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2229 + }, + "angle": 0, + "vertices": { + "#": 2230 + }, + "position": { + "#": 2235 + }, + "force": { + "#": 2236 + }, + "torque": 0, + "positionImpulse": { + "#": 2237 + }, + "constraintImpulse": { + "#": 2238 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2239 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2240 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2241 + }, + "bounds": { + "#": 2243 + }, + "positionPrev": { + "#": 2246 + }, + "anglePrev": 0, + "axes": { + "#": 2247 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2228 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2228 + } + ], + [ + { + "#": 2231 + }, + { + "#": 2232 + }, + { + "#": 2233 + }, + { + "#": 2234 + } + ], + { + "x": 335, + "y": 225, + "index": 0, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 370, + "y": 225, + "index": 1, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 370, + "y": 260, + "index": 2, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 335, + "y": 260, + "index": 3, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2242 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2244 + }, + "max": { + "#": 2245 + } + }, + { + "x": 335, + "y": 225 + }, + { + "x": 370, + "y": 260 + }, + { + "x": 352.5, + "y": 242.5 + }, + [ + { + "#": 2248 + }, + { + "#": 2249 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 103, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2251 + }, + "angle": 0, + "vertices": { + "#": 2252 + }, + "position": { + "#": 2257 + }, + "force": { + "#": 2258 + }, + "torque": 0, + "positionImpulse": { + "#": 2259 + }, + "constraintImpulse": { + "#": 2260 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2261 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2262 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2263 + }, + "bounds": { + "#": 2265 + }, + "positionPrev": { + "#": 2268 + }, + "anglePrev": 0, + "axes": { + "#": 2269 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2250 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2250 + } + ], + [ + { + "#": 2253 + }, + { + "#": 2254 + }, + { + "#": 2255 + }, + { + "#": 2256 + } + ], + { + "x": 370, + "y": 225, + "index": 0, + "body": { + "#": 2250 + }, + "isInternal": false + }, + { + "x": 405, + "y": 225, + "index": 1, + "body": { + "#": 2250 + }, + "isInternal": false + }, + { + "x": 405, + "y": 260, + "index": 2, + "body": { + "#": 2250 + }, + "isInternal": false + }, + { + "x": 370, + "y": 260, + "index": 3, + "body": { + "#": 2250 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2264 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2266 + }, + "max": { + "#": 2267 + } + }, + { + "x": 370, + "y": 225 + }, + { + "x": 405, + "y": 260 + }, + { + "x": 387.5, + "y": 242.5 + }, + [ + { + "#": 2270 + }, + { + "#": 2271 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 104, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2273 + }, + "angle": 0, + "vertices": { + "#": 2274 + }, + "position": { + "#": 2279 + }, + "force": { + "#": 2280 + }, + "torque": 0, + "positionImpulse": { + "#": 2281 + }, + "constraintImpulse": { + "#": 2282 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2283 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2284 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2285 + }, + "bounds": { + "#": 2287 + }, + "positionPrev": { + "#": 2290 + }, + "anglePrev": 0, + "axes": { + "#": 2291 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2272 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2272 + } + ], + [ + { + "#": 2275 + }, + { + "#": 2276 + }, + { + "#": 2277 + }, + { + "#": 2278 + } + ], + { + "x": 405, + "y": 225, + "index": 0, + "body": { + "#": 2272 + }, + "isInternal": false + }, + { + "x": 440, + "y": 225, + "index": 1, + "body": { + "#": 2272 + }, + "isInternal": false + }, + { + "x": 440, + "y": 260, + "index": 2, + "body": { + "#": 2272 + }, + "isInternal": false + }, + { + "x": 405, + "y": 260, + "index": 3, + "body": { + "#": 2272 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2286 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2288 + }, + "max": { + "#": 2289 + } + }, + { + "x": 405, + "y": 225 + }, + { + "x": 440, + "y": 260 + }, + { + "x": 422.5, + "y": 242.5 + }, + [ + { + "#": 2292 + }, + { + "#": 2293 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 105, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2295 + }, + "angle": 0, + "vertices": { + "#": 2296 + }, + "position": { + "#": 2301 + }, + "force": { + "#": 2302 + }, + "torque": 0, + "positionImpulse": { + "#": 2303 + }, + "constraintImpulse": { + "#": 2304 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2305 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2306 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2307 + }, + "bounds": { + "#": 2309 + }, + "positionPrev": { + "#": 2312 + }, + "anglePrev": 0, + "axes": { + "#": 2313 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2294 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2294 + } + ], + [ + { + "#": 2297 + }, + { + "#": 2298 + }, + { + "#": 2299 + }, + { + "#": 2300 + } + ], + { + "x": 440, + "y": 225, + "index": 0, + "body": { + "#": 2294 + }, + "isInternal": false + }, + { + "x": 475, + "y": 225, + "index": 1, + "body": { + "#": 2294 + }, + "isInternal": false + }, + { + "x": 475, + "y": 260, + "index": 2, + "body": { + "#": 2294 + }, + "isInternal": false + }, + { + "x": 440, + "y": 260, + "index": 3, + "body": { + "#": 2294 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2308 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2310 + }, + "max": { + "#": 2311 + } + }, + { + "x": 440, + "y": 225 + }, + { + "x": 475, + "y": 260 + }, + { + "x": 457.5, + "y": 242.5 + }, + [ + { + "#": 2314 + }, + { + "#": 2315 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 106, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2317 + }, + "angle": 0, + "vertices": { + "#": 2318 + }, + "position": { + "#": 2323 + }, + "force": { + "#": 2324 + }, + "torque": 0, + "positionImpulse": { + "#": 2325 + }, + "constraintImpulse": { + "#": 2326 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2327 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2328 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2329 + }, + "bounds": { + "#": 2331 + }, + "positionPrev": { + "#": 2334 + }, + "anglePrev": 0, + "axes": { + "#": 2335 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2316 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2316 + } + ], + [ + { + "#": 2319 + }, + { + "#": 2320 + }, + { + "#": 2321 + }, + { + "#": 2322 + } + ], + { + "x": 475, + "y": 225, + "index": 0, + "body": { + "#": 2316 + }, + "isInternal": false + }, + { + "x": 510, + "y": 225, + "index": 1, + "body": { + "#": 2316 + }, + "isInternal": false + }, + { + "x": 510, + "y": 260, + "index": 2, + "body": { + "#": 2316 + }, + "isInternal": false + }, + { + "x": 475, + "y": 260, + "index": 3, + "body": { + "#": 2316 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2330 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2332 + }, + "max": { + "#": 2333 + } + }, + { + "x": 475, + "y": 225 + }, + { + "x": 510, + "y": 260 + }, + { + "x": 492.5, + "y": 242.5 + }, + [ + { + "#": 2336 + }, + { + "#": 2337 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 107, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2339 + }, + "angle": 0, + "vertices": { + "#": 2340 + }, + "position": { + "#": 2345 + }, + "force": { + "#": 2346 + }, + "torque": 0, + "positionImpulse": { + "#": 2347 + }, + "constraintImpulse": { + "#": 2348 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2349 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2350 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2351 + }, + "bounds": { + "#": 2353 + }, + "positionPrev": { + "#": 2356 + }, + "anglePrev": 0, + "axes": { + "#": 2357 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2338 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2338 + } + ], + [ + { + "#": 2341 + }, + { + "#": 2342 + }, + { + "#": 2343 + }, + { + "#": 2344 + } + ], + { + "x": 510, + "y": 225, + "index": 0, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 545, + "y": 225, + "index": 1, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 545, + "y": 260, + "index": 2, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 510, + "y": 260, + "index": 3, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2352 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2354 + }, + "max": { + "#": 2355 + } + }, + { + "x": 510, + "y": 225 + }, + { + "x": 545, + "y": 260 + }, + { + "x": 527.5, + "y": 242.5 + }, + [ + { + "#": 2358 + }, + { + "#": 2359 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 108, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2361 + }, + "angle": 0, + "vertices": { + "#": 2362 + }, + "position": { + "#": 2367 + }, + "force": { + "#": 2368 + }, + "torque": 0, + "positionImpulse": { + "#": 2369 + }, + "constraintImpulse": { + "#": 2370 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2371 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2372 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2373 + }, + "bounds": { + "#": 2375 + }, + "positionPrev": { + "#": 2378 + }, + "anglePrev": 0, + "axes": { + "#": 2379 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2360 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2360 + } + ], + [ + { + "#": 2363 + }, + { + "#": 2364 + }, + { + "#": 2365 + }, + { + "#": 2366 + } + ], + { + "x": 545, + "y": 225, + "index": 0, + "body": { + "#": 2360 + }, + "isInternal": false + }, + { + "x": 580, + "y": 225, + "index": 1, + "body": { + "#": 2360 + }, + "isInternal": false + }, + { + "x": 580, + "y": 260, + "index": 2, + "body": { + "#": 2360 + }, + "isInternal": false + }, + { + "x": 545, + "y": 260, + "index": 3, + "body": { + "#": 2360 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2374 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2376 + }, + "max": { + "#": 2377 + } + }, + { + "x": 545, + "y": 225 + }, + { + "x": 580, + "y": 260 + }, + { + "x": 562.5, + "y": 242.5 + }, + [ + { + "#": 2380 + }, + { + "#": 2381 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 109, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2383 + }, + "angle": 0, + "vertices": { + "#": 2384 + }, + "position": { + "#": 2389 + }, + "force": { + "#": 2390 + }, + "torque": 0, + "positionImpulse": { + "#": 2391 + }, + "constraintImpulse": { + "#": 2392 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2393 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2394 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2395 + }, + "bounds": { + "#": 2397 + }, + "positionPrev": { + "#": 2400 + }, + "anglePrev": 0, + "axes": { + "#": 2401 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2382 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2382 + } + ], + [ + { + "#": 2385 + }, + { + "#": 2386 + }, + { + "#": 2387 + }, + { + "#": 2388 + } + ], + { + "x": 580, + "y": 225, + "index": 0, + "body": { + "#": 2382 + }, + "isInternal": false + }, + { + "x": 615, + "y": 225, + "index": 1, + "body": { + "#": 2382 + }, + "isInternal": false + }, + { + "x": 615, + "y": 260, + "index": 2, + "body": { + "#": 2382 + }, + "isInternal": false + }, + { + "x": 580, + "y": 260, + "index": 3, + "body": { + "#": 2382 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2396 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2398 + }, + "max": { + "#": 2399 + } + }, + { + "x": 580, + "y": 225 + }, + { + "x": 615, + "y": 260 + }, + { + "x": 597.5, + "y": 242.5 + }, + [ + { + "#": 2402 + }, + { + "#": 2403 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 110, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2405 + }, + "angle": 0, + "vertices": { + "#": 2406 + }, + "position": { + "#": 2411 + }, + "force": { + "#": 2412 + }, + "torque": 0, + "positionImpulse": { + "#": 2413 + }, + "constraintImpulse": { + "#": 2414 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2415 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2416 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2417 + }, + "bounds": { + "#": 2419 + }, + "positionPrev": { + "#": 2422 + }, + "anglePrev": 0, + "axes": { + "#": 2423 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2404 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2404 + } + ], + [ + { + "#": 2407 + }, + { + "#": 2408 + }, + { + "#": 2409 + }, + { + "#": 2410 + } + ], + { + "x": 615, + "y": 225, + "index": 0, + "body": { + "#": 2404 + }, + "isInternal": false + }, + { + "x": 650, + "y": 225, + "index": 1, + "body": { + "#": 2404 + }, + "isInternal": false + }, + { + "x": 650, + "y": 260, + "index": 2, + "body": { + "#": 2404 + }, + "isInternal": false + }, + { + "x": 615, + "y": 260, + "index": 3, + "body": { + "#": 2404 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2418 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2420 + }, + "max": { + "#": 2421 + } + }, + { + "x": 615, + "y": 225 + }, + { + "x": 650, + "y": 260 + }, + { + "x": 632.5, + "y": 242.5 + }, + [ + { + "#": 2424 + }, + { + "#": 2425 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 111, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2427 + }, + "angle": 0, + "vertices": { + "#": 2428 + }, + "position": { + "#": 2433 + }, + "force": { + "#": 2434 + }, + "torque": 0, + "positionImpulse": { + "#": 2435 + }, + "constraintImpulse": { + "#": 2436 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2437 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2438 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2439 + }, + "bounds": { + "#": 2441 + }, + "positionPrev": { + "#": 2444 + }, + "anglePrev": 0, + "axes": { + "#": 2445 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2426 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2426 + } + ], + [ + { + "#": 2429 + }, + { + "#": 2430 + }, + { + "#": 2431 + }, + { + "#": 2432 + } + ], + { + "x": 650, + "y": 225, + "index": 0, + "body": { + "#": 2426 + }, + "isInternal": false + }, + { + "x": 685, + "y": 225, + "index": 1, + "body": { + "#": 2426 + }, + "isInternal": false + }, + { + "x": 685, + "y": 260, + "index": 2, + "body": { + "#": 2426 + }, + "isInternal": false + }, + { + "x": 650, + "y": 260, + "index": 3, + "body": { + "#": 2426 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2440 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2442 + }, + "max": { + "#": 2443 + } + }, + { + "x": 650, + "y": 225 + }, + { + "x": 685, + "y": 260 + }, + { + "x": 667.5, + "y": 242.5 + }, + [ + { + "#": 2446 + }, + { + "#": 2447 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 112, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2449 + }, + "angle": 0, + "vertices": { + "#": 2450 + }, + "position": { + "#": 2455 + }, + "force": { + "#": 2456 + }, + "torque": 0, + "positionImpulse": { + "#": 2457 + }, + "constraintImpulse": { + "#": 2458 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2459 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2460 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2461 + }, + "bounds": { + "#": 2463 + }, + "positionPrev": { + "#": 2466 + }, + "anglePrev": 0, + "axes": { + "#": 2467 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2448 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2448 + } + ], + [ + { + "#": 2451 + }, + { + "#": 2452 + }, + { + "#": 2453 + }, + { + "#": 2454 + } + ], + { + "x": 685, + "y": 225, + "index": 0, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 720, + "y": 225, + "index": 1, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 720, + "y": 260, + "index": 2, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 685, + "y": 260, + "index": 3, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 242.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2462 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2464 + }, + "max": { + "#": 2465 + } + }, + { + "x": 685, + "y": 225 + }, + { + "x": 720, + "y": 260 + }, + { + "x": 702.5, + "y": 242.5 + }, + [ + { + "#": 2468 + }, + { + "#": 2469 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 113, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2471 + }, + "angle": 0, + "vertices": { + "#": 2472 + }, + "position": { + "#": 2477 + }, + "force": { + "#": 2478 + }, + "torque": 0, + "positionImpulse": { + "#": 2479 + }, + "constraintImpulse": { + "#": 2480 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2481 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2482 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2483 + }, + "bounds": { + "#": 2485 + }, + "positionPrev": { + "#": 2488 + }, + "anglePrev": 0, + "axes": { + "#": 2489 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2470 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2470 + } + ], + [ + { + "#": 2473 + }, + { + "#": 2474 + }, + { + "#": 2475 + }, + { + "#": 2476 + } + ], + { + "x": 90, + "y": 260, + "index": 0, + "body": { + "#": 2470 + }, + "isInternal": false + }, + { + "x": 125, + "y": 260, + "index": 1, + "body": { + "#": 2470 + }, + "isInternal": false + }, + { + "x": 125, + "y": 295, + "index": 2, + "body": { + "#": 2470 + }, + "isInternal": false + }, + { + "x": 90, + "y": 295, + "index": 3, + "body": { + "#": 2470 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2484 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2486 + }, + "max": { + "#": 2487 + } + }, + { + "x": 90, + "y": 260 + }, + { + "x": 125, + "y": 295 + }, + { + "x": 107.5, + "y": 277.5 + }, + [ + { + "#": 2490 + }, + { + "#": 2491 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 114, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2493 + }, + "angle": 0, + "vertices": { + "#": 2494 + }, + "position": { + "#": 2499 + }, + "force": { + "#": 2500 + }, + "torque": 0, + "positionImpulse": { + "#": 2501 + }, + "constraintImpulse": { + "#": 2502 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2503 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2504 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2505 + }, + "bounds": { + "#": 2507 + }, + "positionPrev": { + "#": 2510 + }, + "anglePrev": 0, + "axes": { + "#": 2511 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2492 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2492 + } + ], + [ + { + "#": 2495 + }, + { + "#": 2496 + }, + { + "#": 2497 + }, + { + "#": 2498 + } + ], + { + "x": 125, + "y": 260, + "index": 0, + "body": { + "#": 2492 + }, + "isInternal": false + }, + { + "x": 160, + "y": 260, + "index": 1, + "body": { + "#": 2492 + }, + "isInternal": false + }, + { + "x": 160, + "y": 295, + "index": 2, + "body": { + "#": 2492 + }, + "isInternal": false + }, + { + "x": 125, + "y": 295, + "index": 3, + "body": { + "#": 2492 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2506 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2508 + }, + "max": { + "#": 2509 + } + }, + { + "x": 125, + "y": 260 + }, + { + "x": 160, + "y": 295 + }, + { + "x": 142.5, + "y": 277.5 + }, + [ + { + "#": 2512 + }, + { + "#": 2513 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 115, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2515 + }, + "angle": 0, + "vertices": { + "#": 2516 + }, + "position": { + "#": 2521 + }, + "force": { + "#": 2522 + }, + "torque": 0, + "positionImpulse": { + "#": 2523 + }, + "constraintImpulse": { + "#": 2524 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2525 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2526 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2527 + }, + "bounds": { + "#": 2529 + }, + "positionPrev": { + "#": 2532 + }, + "anglePrev": 0, + "axes": { + "#": 2533 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2514 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2514 + } + ], + [ + { + "#": 2517 + }, + { + "#": 2518 + }, + { + "#": 2519 + }, + { + "#": 2520 + } + ], + { + "x": 160, + "y": 260, + "index": 0, + "body": { + "#": 2514 + }, + "isInternal": false + }, + { + "x": 195, + "y": 260, + "index": 1, + "body": { + "#": 2514 + }, + "isInternal": false + }, + { + "x": 195, + "y": 295, + "index": 2, + "body": { + "#": 2514 + }, + "isInternal": false + }, + { + "x": 160, + "y": 295, + "index": 3, + "body": { + "#": 2514 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2528 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2530 + }, + "max": { + "#": 2531 + } + }, + { + "x": 160, + "y": 260 + }, + { + "x": 195, + "y": 295 + }, + { + "x": 177.5, + "y": 277.5 + }, + [ + { + "#": 2534 + }, + { + "#": 2535 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 116, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2537 + }, + "angle": 0, + "vertices": { + "#": 2538 + }, + "position": { + "#": 2543 + }, + "force": { + "#": 2544 + }, + "torque": 0, + "positionImpulse": { + "#": 2545 + }, + "constraintImpulse": { + "#": 2546 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2547 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2548 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2549 + }, + "bounds": { + "#": 2551 + }, + "positionPrev": { + "#": 2554 + }, + "anglePrev": 0, + "axes": { + "#": 2555 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2536 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2536 + } + ], + [ + { + "#": 2539 + }, + { + "#": 2540 + }, + { + "#": 2541 + }, + { + "#": 2542 + } + ], + { + "x": 195, + "y": 260, + "index": 0, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 230, + "y": 260, + "index": 1, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 230, + "y": 295, + "index": 2, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 195, + "y": 295, + "index": 3, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2550 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2552 + }, + "max": { + "#": 2553 + } + }, + { + "x": 195, + "y": 260 + }, + { + "x": 230, + "y": 295 + }, + { + "x": 212.5, + "y": 277.5 + }, + [ + { + "#": 2556 + }, + { + "#": 2557 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 117, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2559 + }, + "angle": 0, + "vertices": { + "#": 2560 + }, + "position": { + "#": 2565 + }, + "force": { + "#": 2566 + }, + "torque": 0, + "positionImpulse": { + "#": 2567 + }, + "constraintImpulse": { + "#": 2568 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2569 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2570 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2571 + }, + "bounds": { + "#": 2573 + }, + "positionPrev": { + "#": 2576 + }, + "anglePrev": 0, + "axes": { + "#": 2577 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2558 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2558 + } + ], + [ + { + "#": 2561 + }, + { + "#": 2562 + }, + { + "#": 2563 + }, + { + "#": 2564 + } + ], + { + "x": 230, + "y": 260, + "index": 0, + "body": { + "#": 2558 + }, + "isInternal": false + }, + { + "x": 265, + "y": 260, + "index": 1, + "body": { + "#": 2558 + }, + "isInternal": false + }, + { + "x": 265, + "y": 295, + "index": 2, + "body": { + "#": 2558 + }, + "isInternal": false + }, + { + "x": 230, + "y": 295, + "index": 3, + "body": { + "#": 2558 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2572 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2574 + }, + "max": { + "#": 2575 + } + }, + { + "x": 230, + "y": 260 + }, + { + "x": 265, + "y": 295 + }, + { + "x": 247.5, + "y": 277.5 + }, + [ + { + "#": 2578 + }, + { + "#": 2579 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 118, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2581 + }, + "angle": 0, + "vertices": { + "#": 2582 + }, + "position": { + "#": 2587 + }, + "force": { + "#": 2588 + }, + "torque": 0, + "positionImpulse": { + "#": 2589 + }, + "constraintImpulse": { + "#": 2590 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2591 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2592 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2593 + }, + "bounds": { + "#": 2595 + }, + "positionPrev": { + "#": 2598 + }, + "anglePrev": 0, + "axes": { + "#": 2599 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2580 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2580 + } + ], + [ + { + "#": 2583 + }, + { + "#": 2584 + }, + { + "#": 2585 + }, + { + "#": 2586 + } + ], + { + "x": 265, + "y": 260, + "index": 0, + "body": { + "#": 2580 + }, + "isInternal": false + }, + { + "x": 300, + "y": 260, + "index": 1, + "body": { + "#": 2580 + }, + "isInternal": false + }, + { + "x": 300, + "y": 295, + "index": 2, + "body": { + "#": 2580 + }, + "isInternal": false + }, + { + "x": 265, + "y": 295, + "index": 3, + "body": { + "#": 2580 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2594 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2596 + }, + "max": { + "#": 2597 + } + }, + { + "x": 265, + "y": 260 + }, + { + "x": 300, + "y": 295 + }, + { + "x": 282.5, + "y": 277.5 + }, + [ + { + "#": 2600 + }, + { + "#": 2601 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 119, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2603 + }, + "angle": 0, + "vertices": { + "#": 2604 + }, + "position": { + "#": 2609 + }, + "force": { + "#": 2610 + }, + "torque": 0, + "positionImpulse": { + "#": 2611 + }, + "constraintImpulse": { + "#": 2612 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2613 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2614 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2615 + }, + "bounds": { + "#": 2617 + }, + "positionPrev": { + "#": 2620 + }, + "anglePrev": 0, + "axes": { + "#": 2621 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2602 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2602 + } + ], + [ + { + "#": 2605 + }, + { + "#": 2606 + }, + { + "#": 2607 + }, + { + "#": 2608 + } + ], + { + "x": 300, + "y": 260, + "index": 0, + "body": { + "#": 2602 + }, + "isInternal": false + }, + { + "x": 335, + "y": 260, + "index": 1, + "body": { + "#": 2602 + }, + "isInternal": false + }, + { + "x": 335, + "y": 295, + "index": 2, + "body": { + "#": 2602 + }, + "isInternal": false + }, + { + "x": 300, + "y": 295, + "index": 3, + "body": { + "#": 2602 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2616 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2618 + }, + "max": { + "#": 2619 + } + }, + { + "x": 300, + "y": 260 + }, + { + "x": 335, + "y": 295 + }, + { + "x": 317.5, + "y": 277.5 + }, + [ + { + "#": 2622 + }, + { + "#": 2623 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 120, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2625 + }, + "angle": 0, + "vertices": { + "#": 2626 + }, + "position": { + "#": 2631 + }, + "force": { + "#": 2632 + }, + "torque": 0, + "positionImpulse": { + "#": 2633 + }, + "constraintImpulse": { + "#": 2634 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2635 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2636 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2637 + }, + "bounds": { + "#": 2639 + }, + "positionPrev": { + "#": 2642 + }, + "anglePrev": 0, + "axes": { + "#": 2643 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2624 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2624 + } + ], + [ + { + "#": 2627 + }, + { + "#": 2628 + }, + { + "#": 2629 + }, + { + "#": 2630 + } + ], + { + "x": 335, + "y": 260, + "index": 0, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 370, + "y": 260, + "index": 1, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 370, + "y": 295, + "index": 2, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 335, + "y": 295, + "index": 3, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2638 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2640 + }, + "max": { + "#": 2641 + } + }, + { + "x": 335, + "y": 260 + }, + { + "x": 370, + "y": 295 + }, + { + "x": 352.5, + "y": 277.5 + }, + [ + { + "#": 2644 + }, + { + "#": 2645 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 121, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2647 + }, + "angle": 0, + "vertices": { + "#": 2648 + }, + "position": { + "#": 2653 + }, + "force": { + "#": 2654 + }, + "torque": 0, + "positionImpulse": { + "#": 2655 + }, + "constraintImpulse": { + "#": 2656 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2657 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2658 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2659 + }, + "bounds": { + "#": 2661 + }, + "positionPrev": { + "#": 2664 + }, + "anglePrev": 0, + "axes": { + "#": 2665 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2646 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2646 + } + ], + [ + { + "#": 2649 + }, + { + "#": 2650 + }, + { + "#": 2651 + }, + { + "#": 2652 + } + ], + { + "x": 370, + "y": 260, + "index": 0, + "body": { + "#": 2646 + }, + "isInternal": false + }, + { + "x": 405, + "y": 260, + "index": 1, + "body": { + "#": 2646 + }, + "isInternal": false + }, + { + "x": 405, + "y": 295, + "index": 2, + "body": { + "#": 2646 + }, + "isInternal": false + }, + { + "x": 370, + "y": 295, + "index": 3, + "body": { + "#": 2646 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2660 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2662 + }, + "max": { + "#": 2663 + } + }, + { + "x": 370, + "y": 260 + }, + { + "x": 405, + "y": 295 + }, + { + "x": 387.5, + "y": 277.5 + }, + [ + { + "#": 2666 + }, + { + "#": 2667 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 122, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2669 + }, + "angle": 0, + "vertices": { + "#": 2670 + }, + "position": { + "#": 2675 + }, + "force": { + "#": 2676 + }, + "torque": 0, + "positionImpulse": { + "#": 2677 + }, + "constraintImpulse": { + "#": 2678 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2679 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2680 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2681 + }, + "bounds": { + "#": 2683 + }, + "positionPrev": { + "#": 2686 + }, + "anglePrev": 0, + "axes": { + "#": 2687 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2668 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2668 + } + ], + [ + { + "#": 2671 + }, + { + "#": 2672 + }, + { + "#": 2673 + }, + { + "#": 2674 + } + ], + { + "x": 405, + "y": 260, + "index": 0, + "body": { + "#": 2668 + }, + "isInternal": false + }, + { + "x": 440, + "y": 260, + "index": 1, + "body": { + "#": 2668 + }, + "isInternal": false + }, + { + "x": 440, + "y": 295, + "index": 2, + "body": { + "#": 2668 + }, + "isInternal": false + }, + { + "x": 405, + "y": 295, + "index": 3, + "body": { + "#": 2668 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2682 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2684 + }, + "max": { + "#": 2685 + } + }, + { + "x": 405, + "y": 260 + }, + { + "x": 440, + "y": 295 + }, + { + "x": 422.5, + "y": 277.5 + }, + [ + { + "#": 2688 + }, + { + "#": 2689 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 123, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2691 + }, + "angle": 0, + "vertices": { + "#": 2692 + }, + "position": { + "#": 2697 + }, + "force": { + "#": 2698 + }, + "torque": 0, + "positionImpulse": { + "#": 2699 + }, + "constraintImpulse": { + "#": 2700 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2701 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2702 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2703 + }, + "bounds": { + "#": 2705 + }, + "positionPrev": { + "#": 2708 + }, + "anglePrev": 0, + "axes": { + "#": 2709 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2690 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2690 + } + ], + [ + { + "#": 2693 + }, + { + "#": 2694 + }, + { + "#": 2695 + }, + { + "#": 2696 + } + ], + { + "x": 440, + "y": 260, + "index": 0, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 475, + "y": 260, + "index": 1, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 475, + "y": 295, + "index": 2, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 440, + "y": 295, + "index": 3, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2704 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2706 + }, + "max": { + "#": 2707 + } + }, + { + "x": 440, + "y": 260 + }, + { + "x": 475, + "y": 295 + }, + { + "x": 457.5, + "y": 277.5 + }, + [ + { + "#": 2710 + }, + { + "#": 2711 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 124, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2713 + }, + "angle": 0, + "vertices": { + "#": 2714 + }, + "position": { + "#": 2719 + }, + "force": { + "#": 2720 + }, + "torque": 0, + "positionImpulse": { + "#": 2721 + }, + "constraintImpulse": { + "#": 2722 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2723 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2724 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2725 + }, + "bounds": { + "#": 2727 + }, + "positionPrev": { + "#": 2730 + }, + "anglePrev": 0, + "axes": { + "#": 2731 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2712 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2712 + } + ], + [ + { + "#": 2715 + }, + { + "#": 2716 + }, + { + "#": 2717 + }, + { + "#": 2718 + } + ], + { + "x": 475, + "y": 260, + "index": 0, + "body": { + "#": 2712 + }, + "isInternal": false + }, + { + "x": 510, + "y": 260, + "index": 1, + "body": { + "#": 2712 + }, + "isInternal": false + }, + { + "x": 510, + "y": 295, + "index": 2, + "body": { + "#": 2712 + }, + "isInternal": false + }, + { + "x": 475, + "y": 295, + "index": 3, + "body": { + "#": 2712 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2726 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2728 + }, + "max": { + "#": 2729 + } + }, + { + "x": 475, + "y": 260 + }, + { + "x": 510, + "y": 295 + }, + { + "x": 492.5, + "y": 277.5 + }, + [ + { + "#": 2732 + }, + { + "#": 2733 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 125, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2735 + }, + "angle": 0, + "vertices": { + "#": 2736 + }, + "position": { + "#": 2741 + }, + "force": { + "#": 2742 + }, + "torque": 0, + "positionImpulse": { + "#": 2743 + }, + "constraintImpulse": { + "#": 2744 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2745 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2746 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2747 + }, + "bounds": { + "#": 2749 + }, + "positionPrev": { + "#": 2752 + }, + "anglePrev": 0, + "axes": { + "#": 2753 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2734 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2734 + } + ], + [ + { + "#": 2737 + }, + { + "#": 2738 + }, + { + "#": 2739 + }, + { + "#": 2740 + } + ], + { + "x": 510, + "y": 260, + "index": 0, + "body": { + "#": 2734 + }, + "isInternal": false + }, + { + "x": 545, + "y": 260, + "index": 1, + "body": { + "#": 2734 + }, + "isInternal": false + }, + { + "x": 545, + "y": 295, + "index": 2, + "body": { + "#": 2734 + }, + "isInternal": false + }, + { + "x": 510, + "y": 295, + "index": 3, + "body": { + "#": 2734 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2748 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2750 + }, + "max": { + "#": 2751 + } + }, + { + "x": 510, + "y": 260 + }, + { + "x": 545, + "y": 295 + }, + { + "x": 527.5, + "y": 277.5 + }, + [ + { + "#": 2754 + }, + { + "#": 2755 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 126, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2757 + }, + "angle": 0, + "vertices": { + "#": 2758 + }, + "position": { + "#": 2763 + }, + "force": { + "#": 2764 + }, + "torque": 0, + "positionImpulse": { + "#": 2765 + }, + "constraintImpulse": { + "#": 2766 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2767 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2768 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2769 + }, + "bounds": { + "#": 2771 + }, + "positionPrev": { + "#": 2774 + }, + "anglePrev": 0, + "axes": { + "#": 2775 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2756 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2756 + } + ], + [ + { + "#": 2759 + }, + { + "#": 2760 + }, + { + "#": 2761 + }, + { + "#": 2762 + } + ], + { + "x": 545, + "y": 260, + "index": 0, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 580, + "y": 260, + "index": 1, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 580, + "y": 295, + "index": 2, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 545, + "y": 295, + "index": 3, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2770 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2772 + }, + "max": { + "#": 2773 + } + }, + { + "x": 545, + "y": 260 + }, + { + "x": 580, + "y": 295 + }, + { + "x": 562.5, + "y": 277.5 + }, + [ + { + "#": 2776 + }, + { + "#": 2777 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 127, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2779 + }, + "angle": 0, + "vertices": { + "#": 2780 + }, + "position": { + "#": 2785 + }, + "force": { + "#": 2786 + }, + "torque": 0, + "positionImpulse": { + "#": 2787 + }, + "constraintImpulse": { + "#": 2788 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2789 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2790 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2791 + }, + "bounds": { + "#": 2793 + }, + "positionPrev": { + "#": 2796 + }, + "anglePrev": 0, + "axes": { + "#": 2797 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2778 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2778 + } + ], + [ + { + "#": 2781 + }, + { + "#": 2782 + }, + { + "#": 2783 + }, + { + "#": 2784 + } + ], + { + "x": 580, + "y": 260, + "index": 0, + "body": { + "#": 2778 + }, + "isInternal": false + }, + { + "x": 615, + "y": 260, + "index": 1, + "body": { + "#": 2778 + }, + "isInternal": false + }, + { + "x": 615, + "y": 295, + "index": 2, + "body": { + "#": 2778 + }, + "isInternal": false + }, + { + "x": 580, + "y": 295, + "index": 3, + "body": { + "#": 2778 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2792 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2794 + }, + "max": { + "#": 2795 + } + }, + { + "x": 580, + "y": 260 + }, + { + "x": 615, + "y": 295 + }, + { + "x": 597.5, + "y": 277.5 + }, + [ + { + "#": 2798 + }, + { + "#": 2799 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 128, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2801 + }, + "angle": 0, + "vertices": { + "#": 2802 + }, + "position": { + "#": 2807 + }, + "force": { + "#": 2808 + }, + "torque": 0, + "positionImpulse": { + "#": 2809 + }, + "constraintImpulse": { + "#": 2810 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2811 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2812 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2813 + }, + "bounds": { + "#": 2815 + }, + "positionPrev": { + "#": 2818 + }, + "anglePrev": 0, + "axes": { + "#": 2819 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2800 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2800 + } + ], + [ + { + "#": 2803 + }, + { + "#": 2804 + }, + { + "#": 2805 + }, + { + "#": 2806 + } + ], + { + "x": 615, + "y": 260, + "index": 0, + "body": { + "#": 2800 + }, + "isInternal": false + }, + { + "x": 650, + "y": 260, + "index": 1, + "body": { + "#": 2800 + }, + "isInternal": false + }, + { + "x": 650, + "y": 295, + "index": 2, + "body": { + "#": 2800 + }, + "isInternal": false + }, + { + "x": 615, + "y": 295, + "index": 3, + "body": { + "#": 2800 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2814 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2816 + }, + "max": { + "#": 2817 + } + }, + { + "x": 615, + "y": 260 + }, + { + "x": 650, + "y": 295 + }, + { + "x": 632.5, + "y": 277.5 + }, + [ + { + "#": 2820 + }, + { + "#": 2821 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 129, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2823 + }, + "angle": 0, + "vertices": { + "#": 2824 + }, + "position": { + "#": 2829 + }, + "force": { + "#": 2830 + }, + "torque": 0, + "positionImpulse": { + "#": 2831 + }, + "constraintImpulse": { + "#": 2832 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2833 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2834 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2835 + }, + "bounds": { + "#": 2837 + }, + "positionPrev": { + "#": 2840 + }, + "anglePrev": 0, + "axes": { + "#": 2841 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2822 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2822 + } + ], + [ + { + "#": 2825 + }, + { + "#": 2826 + }, + { + "#": 2827 + }, + { + "#": 2828 + } + ], + { + "x": 650, + "y": 260, + "index": 0, + "body": { + "#": 2822 + }, + "isInternal": false + }, + { + "x": 685, + "y": 260, + "index": 1, + "body": { + "#": 2822 + }, + "isInternal": false + }, + { + "x": 685, + "y": 295, + "index": 2, + "body": { + "#": 2822 + }, + "isInternal": false + }, + { + "x": 650, + "y": 295, + "index": 3, + "body": { + "#": 2822 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2836 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2838 + }, + "max": { + "#": 2839 + } + }, + { + "x": 650, + "y": 260 + }, + { + "x": 685, + "y": 295 + }, + { + "x": 667.5, + "y": 277.5 + }, + [ + { + "#": 2842 + }, + { + "#": 2843 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 130, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2845 + }, + "angle": 0, + "vertices": { + "#": 2846 + }, + "position": { + "#": 2851 + }, + "force": { + "#": 2852 + }, + "torque": 0, + "positionImpulse": { + "#": 2853 + }, + "constraintImpulse": { + "#": 2854 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2855 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2856 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2857 + }, + "bounds": { + "#": 2859 + }, + "positionPrev": { + "#": 2862 + }, + "anglePrev": 0, + "axes": { + "#": 2863 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2844 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2844 + } + ], + [ + { + "#": 2847 + }, + { + "#": 2848 + }, + { + "#": 2849 + }, + { + "#": 2850 + } + ], + { + "x": 685, + "y": 260, + "index": 0, + "body": { + "#": 2844 + }, + "isInternal": false + }, + { + "x": 720, + "y": 260, + "index": 1, + "body": { + "#": 2844 + }, + "isInternal": false + }, + { + "x": 720, + "y": 295, + "index": 2, + "body": { + "#": 2844 + }, + "isInternal": false + }, + { + "x": 685, + "y": 295, + "index": 3, + "body": { + "#": 2844 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 277.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2858 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2860 + }, + "max": { + "#": 2861 + } + }, + { + "x": 685, + "y": 260 + }, + { + "x": 720, + "y": 295 + }, + { + "x": 702.5, + "y": 277.5 + }, + [ + { + "#": 2864 + }, + { + "#": 2865 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 131, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2867 + }, + "angle": 0, + "vertices": { + "#": 2868 + }, + "position": { + "#": 2873 + }, + "force": { + "#": 2874 + }, + "torque": 0, + "positionImpulse": { + "#": 2875 + }, + "constraintImpulse": { + "#": 2876 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2877 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2878 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2879 + }, + "bounds": { + "#": 2881 + }, + "positionPrev": { + "#": 2884 + }, + "anglePrev": 0, + "axes": { + "#": 2885 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2866 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2866 + } + ], + [ + { + "#": 2869 + }, + { + "#": 2870 + }, + { + "#": 2871 + }, + { + "#": 2872 + } + ], + { + "x": 90, + "y": 295, + "index": 0, + "body": { + "#": 2866 + }, + "isInternal": false + }, + { + "x": 125, + "y": 295, + "index": 1, + "body": { + "#": 2866 + }, + "isInternal": false + }, + { + "x": 125, + "y": 330, + "index": 2, + "body": { + "#": 2866 + }, + "isInternal": false + }, + { + "x": 90, + "y": 330, + "index": 3, + "body": { + "#": 2866 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2880 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2882 + }, + "max": { + "#": 2883 + } + }, + { + "x": 90, + "y": 295 + }, + { + "x": 125, + "y": 330 + }, + { + "x": 107.5, + "y": 312.5 + }, + [ + { + "#": 2886 + }, + { + "#": 2887 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 132, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2889 + }, + "angle": 0, + "vertices": { + "#": 2890 + }, + "position": { + "#": 2895 + }, + "force": { + "#": 2896 + }, + "torque": 0, + "positionImpulse": { + "#": 2897 + }, + "constraintImpulse": { + "#": 2898 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2899 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2900 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2901 + }, + "bounds": { + "#": 2903 + }, + "positionPrev": { + "#": 2906 + }, + "anglePrev": 0, + "axes": { + "#": 2907 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2888 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2888 + } + ], + [ + { + "#": 2891 + }, + { + "#": 2892 + }, + { + "#": 2893 + }, + { + "#": 2894 + } + ], + { + "x": 125, + "y": 295, + "index": 0, + "body": { + "#": 2888 + }, + "isInternal": false + }, + { + "x": 160, + "y": 295, + "index": 1, + "body": { + "#": 2888 + }, + "isInternal": false + }, + { + "x": 160, + "y": 330, + "index": 2, + "body": { + "#": 2888 + }, + "isInternal": false + }, + { + "x": 125, + "y": 330, + "index": 3, + "body": { + "#": 2888 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2902 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2904 + }, + "max": { + "#": 2905 + } + }, + { + "x": 125, + "y": 295 + }, + { + "x": 160, + "y": 330 + }, + { + "x": 142.5, + "y": 312.5 + }, + [ + { + "#": 2908 + }, + { + "#": 2909 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 133, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2911 + }, + "angle": 0, + "vertices": { + "#": 2912 + }, + "position": { + "#": 2917 + }, + "force": { + "#": 2918 + }, + "torque": 0, + "positionImpulse": { + "#": 2919 + }, + "constraintImpulse": { + "#": 2920 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2921 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2922 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2923 + }, + "bounds": { + "#": 2925 + }, + "positionPrev": { + "#": 2928 + }, + "anglePrev": 0, + "axes": { + "#": 2929 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2910 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2910 + } + ], + [ + { + "#": 2913 + }, + { + "#": 2914 + }, + { + "#": 2915 + }, + { + "#": 2916 + } + ], + { + "x": 160, + "y": 295, + "index": 0, + "body": { + "#": 2910 + }, + "isInternal": false + }, + { + "x": 195, + "y": 295, + "index": 1, + "body": { + "#": 2910 + }, + "isInternal": false + }, + { + "x": 195, + "y": 330, + "index": 2, + "body": { + "#": 2910 + }, + "isInternal": false + }, + { + "x": 160, + "y": 330, + "index": 3, + "body": { + "#": 2910 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2924 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2926 + }, + "max": { + "#": 2927 + } + }, + { + "x": 160, + "y": 295 + }, + { + "x": 195, + "y": 330 + }, + { + "x": 177.5, + "y": 312.5 + }, + [ + { + "#": 2930 + }, + { + "#": 2931 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 134, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2933 + }, + "angle": 0, + "vertices": { + "#": 2934 + }, + "position": { + "#": 2939 + }, + "force": { + "#": 2940 + }, + "torque": 0, + "positionImpulse": { + "#": 2941 + }, + "constraintImpulse": { + "#": 2942 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2943 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2944 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2945 + }, + "bounds": { + "#": 2947 + }, + "positionPrev": { + "#": 2950 + }, + "anglePrev": 0, + "axes": { + "#": 2951 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2932 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2932 + } + ], + [ + { + "#": 2935 + }, + { + "#": 2936 + }, + { + "#": 2937 + }, + { + "#": 2938 + } + ], + { + "x": 195, + "y": 295, + "index": 0, + "body": { + "#": 2932 + }, + "isInternal": false + }, + { + "x": 230, + "y": 295, + "index": 1, + "body": { + "#": 2932 + }, + "isInternal": false + }, + { + "x": 230, + "y": 330, + "index": 2, + "body": { + "#": 2932 + }, + "isInternal": false + }, + { + "x": 195, + "y": 330, + "index": 3, + "body": { + "#": 2932 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2946 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2948 + }, + "max": { + "#": 2949 + } + }, + { + "x": 195, + "y": 295 + }, + { + "x": 230, + "y": 330 + }, + { + "x": 212.5, + "y": 312.5 + }, + [ + { + "#": 2952 + }, + { + "#": 2953 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 135, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2955 + }, + "angle": 0, + "vertices": { + "#": 2956 + }, + "position": { + "#": 2961 + }, + "force": { + "#": 2962 + }, + "torque": 0, + "positionImpulse": { + "#": 2963 + }, + "constraintImpulse": { + "#": 2964 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2965 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2966 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2967 + }, + "bounds": { + "#": 2969 + }, + "positionPrev": { + "#": 2972 + }, + "anglePrev": 0, + "axes": { + "#": 2973 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2954 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2954 + } + ], + [ + { + "#": 2957 + }, + { + "#": 2958 + }, + { + "#": 2959 + }, + { + "#": 2960 + } + ], + { + "x": 230, + "y": 295, + "index": 0, + "body": { + "#": 2954 + }, + "isInternal": false + }, + { + "x": 265, + "y": 295, + "index": 1, + "body": { + "#": 2954 + }, + "isInternal": false + }, + { + "x": 265, + "y": 330, + "index": 2, + "body": { + "#": 2954 + }, + "isInternal": false + }, + { + "x": 230, + "y": 330, + "index": 3, + "body": { + "#": 2954 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2968 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2970 + }, + "max": { + "#": 2971 + } + }, + { + "x": 230, + "y": 295 + }, + { + "x": 265, + "y": 330 + }, + { + "x": 247.5, + "y": 312.5 + }, + [ + { + "#": 2974 + }, + { + "#": 2975 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 136, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2977 + }, + "angle": 0, + "vertices": { + "#": 2978 + }, + "position": { + "#": 2983 + }, + "force": { + "#": 2984 + }, + "torque": 0, + "positionImpulse": { + "#": 2985 + }, + "constraintImpulse": { + "#": 2986 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2987 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2988 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2989 + }, + "bounds": { + "#": 2991 + }, + "positionPrev": { + "#": 2994 + }, + "anglePrev": 0, + "axes": { + "#": 2995 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2976 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2976 + } + ], + [ + { + "#": 2979 + }, + { + "#": 2980 + }, + { + "#": 2981 + }, + { + "#": 2982 + } + ], + { + "x": 265, + "y": 295, + "index": 0, + "body": { + "#": 2976 + }, + "isInternal": false + }, + { + "x": 300, + "y": 295, + "index": 1, + "body": { + "#": 2976 + }, + "isInternal": false + }, + { + "x": 300, + "y": 330, + "index": 2, + "body": { + "#": 2976 + }, + "isInternal": false + }, + { + "x": 265, + "y": 330, + "index": 3, + "body": { + "#": 2976 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2990 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2992 + }, + "max": { + "#": 2993 + } + }, + { + "x": 265, + "y": 295 + }, + { + "x": 300, + "y": 330 + }, + { + "x": 282.5, + "y": 312.5 + }, + [ + { + "#": 2996 + }, + { + "#": 2997 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 137, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2999 + }, + "angle": 0, + "vertices": { + "#": 3000 + }, + "position": { + "#": 3005 + }, + "force": { + "#": 3006 + }, + "torque": 0, + "positionImpulse": { + "#": 3007 + }, + "constraintImpulse": { + "#": 3008 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3009 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3010 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3011 + }, + "bounds": { + "#": 3013 + }, + "positionPrev": { + "#": 3016 + }, + "anglePrev": 0, + "axes": { + "#": 3017 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2998 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2998 + } + ], + [ + { + "#": 3001 + }, + { + "#": 3002 + }, + { + "#": 3003 + }, + { + "#": 3004 + } + ], + { + "x": 300, + "y": 295, + "index": 0, + "body": { + "#": 2998 + }, + "isInternal": false + }, + { + "x": 335, + "y": 295, + "index": 1, + "body": { + "#": 2998 + }, + "isInternal": false + }, + { + "x": 335, + "y": 330, + "index": 2, + "body": { + "#": 2998 + }, + "isInternal": false + }, + { + "x": 300, + "y": 330, + "index": 3, + "body": { + "#": 2998 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3012 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3014 + }, + "max": { + "#": 3015 + } + }, + { + "x": 300, + "y": 295 + }, + { + "x": 335, + "y": 330 + }, + { + "x": 317.5, + "y": 312.5 + }, + [ + { + "#": 3018 + }, + { + "#": 3019 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 138, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3021 + }, + "angle": 0, + "vertices": { + "#": 3022 + }, + "position": { + "#": 3027 + }, + "force": { + "#": 3028 + }, + "torque": 0, + "positionImpulse": { + "#": 3029 + }, + "constraintImpulse": { + "#": 3030 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3031 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3032 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3033 + }, + "bounds": { + "#": 3035 + }, + "positionPrev": { + "#": 3038 + }, + "anglePrev": 0, + "axes": { + "#": 3039 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3020 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3020 + } + ], + [ + { + "#": 3023 + }, + { + "#": 3024 + }, + { + "#": 3025 + }, + { + "#": 3026 + } + ], + { + "x": 335, + "y": 295, + "index": 0, + "body": { + "#": 3020 + }, + "isInternal": false + }, + { + "x": 370, + "y": 295, + "index": 1, + "body": { + "#": 3020 + }, + "isInternal": false + }, + { + "x": 370, + "y": 330, + "index": 2, + "body": { + "#": 3020 + }, + "isInternal": false + }, + { + "x": 335, + "y": 330, + "index": 3, + "body": { + "#": 3020 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3034 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3036 + }, + "max": { + "#": 3037 + } + }, + { + "x": 335, + "y": 295 + }, + { + "x": 370, + "y": 330 + }, + { + "x": 352.5, + "y": 312.5 + }, + [ + { + "#": 3040 + }, + { + "#": 3041 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 139, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3043 + }, + "angle": 0, + "vertices": { + "#": 3044 + }, + "position": { + "#": 3049 + }, + "force": { + "#": 3050 + }, + "torque": 0, + "positionImpulse": { + "#": 3051 + }, + "constraintImpulse": { + "#": 3052 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3053 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3054 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3055 + }, + "bounds": { + "#": 3057 + }, + "positionPrev": { + "#": 3060 + }, + "anglePrev": 0, + "axes": { + "#": 3061 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3042 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3042 + } + ], + [ + { + "#": 3045 + }, + { + "#": 3046 + }, + { + "#": 3047 + }, + { + "#": 3048 + } + ], + { + "x": 370, + "y": 295, + "index": 0, + "body": { + "#": 3042 + }, + "isInternal": false + }, + { + "x": 405, + "y": 295, + "index": 1, + "body": { + "#": 3042 + }, + "isInternal": false + }, + { + "x": 405, + "y": 330, + "index": 2, + "body": { + "#": 3042 + }, + "isInternal": false + }, + { + "x": 370, + "y": 330, + "index": 3, + "body": { + "#": 3042 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3056 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3058 + }, + "max": { + "#": 3059 + } + }, + { + "x": 370, + "y": 295 + }, + { + "x": 405, + "y": 330 + }, + { + "x": 387.5, + "y": 312.5 + }, + [ + { + "#": 3062 + }, + { + "#": 3063 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 140, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3065 + }, + "angle": 0, + "vertices": { + "#": 3066 + }, + "position": { + "#": 3071 + }, + "force": { + "#": 3072 + }, + "torque": 0, + "positionImpulse": { + "#": 3073 + }, + "constraintImpulse": { + "#": 3074 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3075 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3076 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3077 + }, + "bounds": { + "#": 3079 + }, + "positionPrev": { + "#": 3082 + }, + "anglePrev": 0, + "axes": { + "#": 3083 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3064 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3064 + } + ], + [ + { + "#": 3067 + }, + { + "#": 3068 + }, + { + "#": 3069 + }, + { + "#": 3070 + } + ], + { + "x": 405, + "y": 295, + "index": 0, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 440, + "y": 295, + "index": 1, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 440, + "y": 330, + "index": 2, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 405, + "y": 330, + "index": 3, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3078 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3080 + }, + "max": { + "#": 3081 + } + }, + { + "x": 405, + "y": 295 + }, + { + "x": 440, + "y": 330 + }, + { + "x": 422.5, + "y": 312.5 + }, + [ + { + "#": 3084 + }, + { + "#": 3085 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 141, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3087 + }, + "angle": 0, + "vertices": { + "#": 3088 + }, + "position": { + "#": 3093 + }, + "force": { + "#": 3094 + }, + "torque": 0, + "positionImpulse": { + "#": 3095 + }, + "constraintImpulse": { + "#": 3096 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3097 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3098 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3099 + }, + "bounds": { + "#": 3101 + }, + "positionPrev": { + "#": 3104 + }, + "anglePrev": 0, + "axes": { + "#": 3105 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3086 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3086 + } + ], + [ + { + "#": 3089 + }, + { + "#": 3090 + }, + { + "#": 3091 + }, + { + "#": 3092 + } + ], + { + "x": 440, + "y": 295, + "index": 0, + "body": { + "#": 3086 + }, + "isInternal": false + }, + { + "x": 475, + "y": 295, + "index": 1, + "body": { + "#": 3086 + }, + "isInternal": false + }, + { + "x": 475, + "y": 330, + "index": 2, + "body": { + "#": 3086 + }, + "isInternal": false + }, + { + "x": 440, + "y": 330, + "index": 3, + "body": { + "#": 3086 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3100 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3102 + }, + "max": { + "#": 3103 + } + }, + { + "x": 440, + "y": 295 + }, + { + "x": 475, + "y": 330 + }, + { + "x": 457.5, + "y": 312.5 + }, + [ + { + "#": 3106 + }, + { + "#": 3107 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 142, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3109 + }, + "angle": 0, + "vertices": { + "#": 3110 + }, + "position": { + "#": 3115 + }, + "force": { + "#": 3116 + }, + "torque": 0, + "positionImpulse": { + "#": 3117 + }, + "constraintImpulse": { + "#": 3118 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3119 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3120 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3121 + }, + "bounds": { + "#": 3123 + }, + "positionPrev": { + "#": 3126 + }, + "anglePrev": 0, + "axes": { + "#": 3127 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3108 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3108 + } + ], + [ + { + "#": 3111 + }, + { + "#": 3112 + }, + { + "#": 3113 + }, + { + "#": 3114 + } + ], + { + "x": 475, + "y": 295, + "index": 0, + "body": { + "#": 3108 + }, + "isInternal": false + }, + { + "x": 510, + "y": 295, + "index": 1, + "body": { + "#": 3108 + }, + "isInternal": false + }, + { + "x": 510, + "y": 330, + "index": 2, + "body": { + "#": 3108 + }, + "isInternal": false + }, + { + "x": 475, + "y": 330, + "index": 3, + "body": { + "#": 3108 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3122 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3124 + }, + "max": { + "#": 3125 + } + }, + { + "x": 475, + "y": 295 + }, + { + "x": 510, + "y": 330 + }, + { + "x": 492.5, + "y": 312.5 + }, + [ + { + "#": 3128 + }, + { + "#": 3129 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 143, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3131 + }, + "angle": 0, + "vertices": { + "#": 3132 + }, + "position": { + "#": 3137 + }, + "force": { + "#": 3138 + }, + "torque": 0, + "positionImpulse": { + "#": 3139 + }, + "constraintImpulse": { + "#": 3140 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3141 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3142 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3143 + }, + "bounds": { + "#": 3145 + }, + "positionPrev": { + "#": 3148 + }, + "anglePrev": 0, + "axes": { + "#": 3149 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3130 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3130 + } + ], + [ + { + "#": 3133 + }, + { + "#": 3134 + }, + { + "#": 3135 + }, + { + "#": 3136 + } + ], + { + "x": 510, + "y": 295, + "index": 0, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 545, + "y": 295, + "index": 1, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 545, + "y": 330, + "index": 2, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 510, + "y": 330, + "index": 3, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3144 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3146 + }, + "max": { + "#": 3147 + } + }, + { + "x": 510, + "y": 295 + }, + { + "x": 545, + "y": 330 + }, + { + "x": 527.5, + "y": 312.5 + }, + [ + { + "#": 3150 + }, + { + "#": 3151 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 144, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3153 + }, + "angle": 0, + "vertices": { + "#": 3154 + }, + "position": { + "#": 3159 + }, + "force": { + "#": 3160 + }, + "torque": 0, + "positionImpulse": { + "#": 3161 + }, + "constraintImpulse": { + "#": 3162 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3163 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3164 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3165 + }, + "bounds": { + "#": 3167 + }, + "positionPrev": { + "#": 3170 + }, + "anglePrev": 0, + "axes": { + "#": 3171 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3152 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3152 + } + ], + [ + { + "#": 3155 + }, + { + "#": 3156 + }, + { + "#": 3157 + }, + { + "#": 3158 + } + ], + { + "x": 545, + "y": 295, + "index": 0, + "body": { + "#": 3152 + }, + "isInternal": false + }, + { + "x": 580, + "y": 295, + "index": 1, + "body": { + "#": 3152 + }, + "isInternal": false + }, + { + "x": 580, + "y": 330, + "index": 2, + "body": { + "#": 3152 + }, + "isInternal": false + }, + { + "x": 545, + "y": 330, + "index": 3, + "body": { + "#": 3152 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3166 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3168 + }, + "max": { + "#": 3169 + } + }, + { + "x": 545, + "y": 295 + }, + { + "x": 580, + "y": 330 + }, + { + "x": 562.5, + "y": 312.5 + }, + [ + { + "#": 3172 + }, + { + "#": 3173 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 145, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3175 + }, + "angle": 0, + "vertices": { + "#": 3176 + }, + "position": { + "#": 3181 + }, + "force": { + "#": 3182 + }, + "torque": 0, + "positionImpulse": { + "#": 3183 + }, + "constraintImpulse": { + "#": 3184 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3185 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3186 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3187 + }, + "bounds": { + "#": 3189 + }, + "positionPrev": { + "#": 3192 + }, + "anglePrev": 0, + "axes": { + "#": 3193 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3174 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3174 + } + ], + [ + { + "#": 3177 + }, + { + "#": 3178 + }, + { + "#": 3179 + }, + { + "#": 3180 + } + ], + { + "x": 580, + "y": 295, + "index": 0, + "body": { + "#": 3174 + }, + "isInternal": false + }, + { + "x": 615, + "y": 295, + "index": 1, + "body": { + "#": 3174 + }, + "isInternal": false + }, + { + "x": 615, + "y": 330, + "index": 2, + "body": { + "#": 3174 + }, + "isInternal": false + }, + { + "x": 580, + "y": 330, + "index": 3, + "body": { + "#": 3174 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3188 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3190 + }, + "max": { + "#": 3191 + } + }, + { + "x": 580, + "y": 295 + }, + { + "x": 615, + "y": 330 + }, + { + "x": 597.5, + "y": 312.5 + }, + [ + { + "#": 3194 + }, + { + "#": 3195 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 146, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3197 + }, + "angle": 0, + "vertices": { + "#": 3198 + }, + "position": { + "#": 3203 + }, + "force": { + "#": 3204 + }, + "torque": 0, + "positionImpulse": { + "#": 3205 + }, + "constraintImpulse": { + "#": 3206 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3207 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3208 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3209 + }, + "bounds": { + "#": 3211 + }, + "positionPrev": { + "#": 3214 + }, + "anglePrev": 0, + "axes": { + "#": 3215 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3196 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3196 + } + ], + [ + { + "#": 3199 + }, + { + "#": 3200 + }, + { + "#": 3201 + }, + { + "#": 3202 + } + ], + { + "x": 615, + "y": 295, + "index": 0, + "body": { + "#": 3196 + }, + "isInternal": false + }, + { + "x": 650, + "y": 295, + "index": 1, + "body": { + "#": 3196 + }, + "isInternal": false + }, + { + "x": 650, + "y": 330, + "index": 2, + "body": { + "#": 3196 + }, + "isInternal": false + }, + { + "x": 615, + "y": 330, + "index": 3, + "body": { + "#": 3196 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3210 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3212 + }, + "max": { + "#": 3213 + } + }, + { + "x": 615, + "y": 295 + }, + { + "x": 650, + "y": 330 + }, + { + "x": 632.5, + "y": 312.5 + }, + [ + { + "#": 3216 + }, + { + "#": 3217 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 147, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3219 + }, + "angle": 0, + "vertices": { + "#": 3220 + }, + "position": { + "#": 3225 + }, + "force": { + "#": 3226 + }, + "torque": 0, + "positionImpulse": { + "#": 3227 + }, + "constraintImpulse": { + "#": 3228 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3229 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3230 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3231 + }, + "bounds": { + "#": 3233 + }, + "positionPrev": { + "#": 3236 + }, + "anglePrev": 0, + "axes": { + "#": 3237 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3218 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3218 + } + ], + [ + { + "#": 3221 + }, + { + "#": 3222 + }, + { + "#": 3223 + }, + { + "#": 3224 + } + ], + { + "x": 650, + "y": 295, + "index": 0, + "body": { + "#": 3218 + }, + "isInternal": false + }, + { + "x": 685, + "y": 295, + "index": 1, + "body": { + "#": 3218 + }, + "isInternal": false + }, + { + "x": 685, + "y": 330, + "index": 2, + "body": { + "#": 3218 + }, + "isInternal": false + }, + { + "x": 650, + "y": 330, + "index": 3, + "body": { + "#": 3218 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3232 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3234 + }, + "max": { + "#": 3235 + } + }, + { + "x": 650, + "y": 295 + }, + { + "x": 685, + "y": 330 + }, + { + "x": 667.5, + "y": 312.5 + }, + [ + { + "#": 3238 + }, + { + "#": 3239 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 148, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3241 + }, + "angle": 0, + "vertices": { + "#": 3242 + }, + "position": { + "#": 3247 + }, + "force": { + "#": 3248 + }, + "torque": 0, + "positionImpulse": { + "#": 3249 + }, + "constraintImpulse": { + "#": 3250 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3251 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3252 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3253 + }, + "bounds": { + "#": 3255 + }, + "positionPrev": { + "#": 3258 + }, + "anglePrev": 0, + "axes": { + "#": 3259 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3240 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3240 + } + ], + [ + { + "#": 3243 + }, + { + "#": 3244 + }, + { + "#": 3245 + }, + { + "#": 3246 + } + ], + { + "x": 685, + "y": 295, + "index": 0, + "body": { + "#": 3240 + }, + "isInternal": false + }, + { + "x": 720, + "y": 295, + "index": 1, + "body": { + "#": 3240 + }, + "isInternal": false + }, + { + "x": 720, + "y": 330, + "index": 2, + "body": { + "#": 3240 + }, + "isInternal": false + }, + { + "x": 685, + "y": 330, + "index": 3, + "body": { + "#": 3240 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 312.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3254 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3256 + }, + "max": { + "#": 3257 + } + }, + { + "x": 685, + "y": 295 + }, + { + "x": 720, + "y": 330 + }, + { + "x": 702.5, + "y": 312.5 + }, + [ + { + "#": 3260 + }, + { + "#": 3261 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 149, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3263 + }, + "angle": 0, + "vertices": { + "#": 3264 + }, + "position": { + "#": 3269 + }, + "force": { + "#": 3270 + }, + "torque": 0, + "positionImpulse": { + "#": 3271 + }, + "constraintImpulse": { + "#": 3272 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3273 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3274 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3275 + }, + "bounds": { + "#": 3277 + }, + "positionPrev": { + "#": 3280 + }, + "anglePrev": 0, + "axes": { + "#": 3281 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3262 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3262 + } + ], + [ + { + "#": 3265 + }, + { + "#": 3266 + }, + { + "#": 3267 + }, + { + "#": 3268 + } + ], + { + "x": 90, + "y": 330, + "index": 0, + "body": { + "#": 3262 + }, + "isInternal": false + }, + { + "x": 125, + "y": 330, + "index": 1, + "body": { + "#": 3262 + }, + "isInternal": false + }, + { + "x": 125, + "y": 365, + "index": 2, + "body": { + "#": 3262 + }, + "isInternal": false + }, + { + "x": 90, + "y": 365, + "index": 3, + "body": { + "#": 3262 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3276 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3278 + }, + "max": { + "#": 3279 + } + }, + { + "x": 90, + "y": 330 + }, + { + "x": 125, + "y": 365 + }, + { + "x": 107.5, + "y": 347.5 + }, + [ + { + "#": 3282 + }, + { + "#": 3283 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 150, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3285 + }, + "angle": 0, + "vertices": { + "#": 3286 + }, + "position": { + "#": 3291 + }, + "force": { + "#": 3292 + }, + "torque": 0, + "positionImpulse": { + "#": 3293 + }, + "constraintImpulse": { + "#": 3294 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3295 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3296 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3297 + }, + "bounds": { + "#": 3299 + }, + "positionPrev": { + "#": 3302 + }, + "anglePrev": 0, + "axes": { + "#": 3303 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3284 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3284 + } + ], + [ + { + "#": 3287 + }, + { + "#": 3288 + }, + { + "#": 3289 + }, + { + "#": 3290 + } + ], + { + "x": 125, + "y": 330, + "index": 0, + "body": { + "#": 3284 + }, + "isInternal": false + }, + { + "x": 160, + "y": 330, + "index": 1, + "body": { + "#": 3284 + }, + "isInternal": false + }, + { + "x": 160, + "y": 365, + "index": 2, + "body": { + "#": 3284 + }, + "isInternal": false + }, + { + "x": 125, + "y": 365, + "index": 3, + "body": { + "#": 3284 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3298 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3300 + }, + "max": { + "#": 3301 + } + }, + { + "x": 125, + "y": 330 + }, + { + "x": 160, + "y": 365 + }, + { + "x": 142.5, + "y": 347.5 + }, + [ + { + "#": 3304 + }, + { + "#": 3305 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 151, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3307 + }, + "angle": 0, + "vertices": { + "#": 3308 + }, + "position": { + "#": 3313 + }, + "force": { + "#": 3314 + }, + "torque": 0, + "positionImpulse": { + "#": 3315 + }, + "constraintImpulse": { + "#": 3316 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3317 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3318 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3319 + }, + "bounds": { + "#": 3321 + }, + "positionPrev": { + "#": 3324 + }, + "anglePrev": 0, + "axes": { + "#": 3325 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3306 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3306 + } + ], + [ + { + "#": 3309 + }, + { + "#": 3310 + }, + { + "#": 3311 + }, + { + "#": 3312 + } + ], + { + "x": 160, + "y": 330, + "index": 0, + "body": { + "#": 3306 + }, + "isInternal": false + }, + { + "x": 195, + "y": 330, + "index": 1, + "body": { + "#": 3306 + }, + "isInternal": false + }, + { + "x": 195, + "y": 365, + "index": 2, + "body": { + "#": 3306 + }, + "isInternal": false + }, + { + "x": 160, + "y": 365, + "index": 3, + "body": { + "#": 3306 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3320 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3322 + }, + "max": { + "#": 3323 + } + }, + { + "x": 160, + "y": 330 + }, + { + "x": 195, + "y": 365 + }, + { + "x": 177.5, + "y": 347.5 + }, + [ + { + "#": 3326 + }, + { + "#": 3327 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 152, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3329 + }, + "angle": 0, + "vertices": { + "#": 3330 + }, + "position": { + "#": 3335 + }, + "force": { + "#": 3336 + }, + "torque": 0, + "positionImpulse": { + "#": 3337 + }, + "constraintImpulse": { + "#": 3338 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3339 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3340 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3341 + }, + "bounds": { + "#": 3343 + }, + "positionPrev": { + "#": 3346 + }, + "anglePrev": 0, + "axes": { + "#": 3347 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3328 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3328 + } + ], + [ + { + "#": 3331 + }, + { + "#": 3332 + }, + { + "#": 3333 + }, + { + "#": 3334 + } + ], + { + "x": 195, + "y": 330, + "index": 0, + "body": { + "#": 3328 + }, + "isInternal": false + }, + { + "x": 230, + "y": 330, + "index": 1, + "body": { + "#": 3328 + }, + "isInternal": false + }, + { + "x": 230, + "y": 365, + "index": 2, + "body": { + "#": 3328 + }, + "isInternal": false + }, + { + "x": 195, + "y": 365, + "index": 3, + "body": { + "#": 3328 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3342 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3344 + }, + "max": { + "#": 3345 + } + }, + { + "x": 195, + "y": 330 + }, + { + "x": 230, + "y": 365 + }, + { + "x": 212.5, + "y": 347.5 + }, + [ + { + "#": 3348 + }, + { + "#": 3349 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 153, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3351 + }, + "angle": 0, + "vertices": { + "#": 3352 + }, + "position": { + "#": 3357 + }, + "force": { + "#": 3358 + }, + "torque": 0, + "positionImpulse": { + "#": 3359 + }, + "constraintImpulse": { + "#": 3360 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3361 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3362 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3363 + }, + "bounds": { + "#": 3365 + }, + "positionPrev": { + "#": 3368 + }, + "anglePrev": 0, + "axes": { + "#": 3369 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3350 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3350 + } + ], + [ + { + "#": 3353 + }, + { + "#": 3354 + }, + { + "#": 3355 + }, + { + "#": 3356 + } + ], + { + "x": 230, + "y": 330, + "index": 0, + "body": { + "#": 3350 + }, + "isInternal": false + }, + { + "x": 265, + "y": 330, + "index": 1, + "body": { + "#": 3350 + }, + "isInternal": false + }, + { + "x": 265, + "y": 365, + "index": 2, + "body": { + "#": 3350 + }, + "isInternal": false + }, + { + "x": 230, + "y": 365, + "index": 3, + "body": { + "#": 3350 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3364 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3366 + }, + "max": { + "#": 3367 + } + }, + { + "x": 230, + "y": 330 + }, + { + "x": 265, + "y": 365 + }, + { + "x": 247.5, + "y": 347.5 + }, + [ + { + "#": 3370 + }, + { + "#": 3371 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 154, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3373 + }, + "angle": 0, + "vertices": { + "#": 3374 + }, + "position": { + "#": 3379 + }, + "force": { + "#": 3380 + }, + "torque": 0, + "positionImpulse": { + "#": 3381 + }, + "constraintImpulse": { + "#": 3382 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3383 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3384 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3385 + }, + "bounds": { + "#": 3387 + }, + "positionPrev": { + "#": 3390 + }, + "anglePrev": 0, + "axes": { + "#": 3391 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3372 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3372 + } + ], + [ + { + "#": 3375 + }, + { + "#": 3376 + }, + { + "#": 3377 + }, + { + "#": 3378 + } + ], + { + "x": 265, + "y": 330, + "index": 0, + "body": { + "#": 3372 + }, + "isInternal": false + }, + { + "x": 300, + "y": 330, + "index": 1, + "body": { + "#": 3372 + }, + "isInternal": false + }, + { + "x": 300, + "y": 365, + "index": 2, + "body": { + "#": 3372 + }, + "isInternal": false + }, + { + "x": 265, + "y": 365, + "index": 3, + "body": { + "#": 3372 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3386 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3388 + }, + "max": { + "#": 3389 + } + }, + { + "x": 265, + "y": 330 + }, + { + "x": 300, + "y": 365 + }, + { + "x": 282.5, + "y": 347.5 + }, + [ + { + "#": 3392 + }, + { + "#": 3393 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 155, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3395 + }, + "angle": 0, + "vertices": { + "#": 3396 + }, + "position": { + "#": 3401 + }, + "force": { + "#": 3402 + }, + "torque": 0, + "positionImpulse": { + "#": 3403 + }, + "constraintImpulse": { + "#": 3404 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3405 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3406 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3407 + }, + "bounds": { + "#": 3409 + }, + "positionPrev": { + "#": 3412 + }, + "anglePrev": 0, + "axes": { + "#": 3413 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3394 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3394 + } + ], + [ + { + "#": 3397 + }, + { + "#": 3398 + }, + { + "#": 3399 + }, + { + "#": 3400 + } + ], + { + "x": 300, + "y": 330, + "index": 0, + "body": { + "#": 3394 + }, + "isInternal": false + }, + { + "x": 335, + "y": 330, + "index": 1, + "body": { + "#": 3394 + }, + "isInternal": false + }, + { + "x": 335, + "y": 365, + "index": 2, + "body": { + "#": 3394 + }, + "isInternal": false + }, + { + "x": 300, + "y": 365, + "index": 3, + "body": { + "#": 3394 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3408 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3410 + }, + "max": { + "#": 3411 + } + }, + { + "x": 300, + "y": 330 + }, + { + "x": 335, + "y": 365 + }, + { + "x": 317.5, + "y": 347.5 + }, + [ + { + "#": 3414 + }, + { + "#": 3415 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 156, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3417 + }, + "angle": 0, + "vertices": { + "#": 3418 + }, + "position": { + "#": 3423 + }, + "force": { + "#": 3424 + }, + "torque": 0, + "positionImpulse": { + "#": 3425 + }, + "constraintImpulse": { + "#": 3426 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3427 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3428 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3429 + }, + "bounds": { + "#": 3431 + }, + "positionPrev": { + "#": 3434 + }, + "anglePrev": 0, + "axes": { + "#": 3435 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3416 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3416 + } + ], + [ + { + "#": 3419 + }, + { + "#": 3420 + }, + { + "#": 3421 + }, + { + "#": 3422 + } + ], + { + "x": 335, + "y": 330, + "index": 0, + "body": { + "#": 3416 + }, + "isInternal": false + }, + { + "x": 370, + "y": 330, + "index": 1, + "body": { + "#": 3416 + }, + "isInternal": false + }, + { + "x": 370, + "y": 365, + "index": 2, + "body": { + "#": 3416 + }, + "isInternal": false + }, + { + "x": 335, + "y": 365, + "index": 3, + "body": { + "#": 3416 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3430 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3432 + }, + "max": { + "#": 3433 + } + }, + { + "x": 335, + "y": 330 + }, + { + "x": 370, + "y": 365 + }, + { + "x": 352.5, + "y": 347.5 + }, + [ + { + "#": 3436 + }, + { + "#": 3437 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 157, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3439 + }, + "angle": 0, + "vertices": { + "#": 3440 + }, + "position": { + "#": 3445 + }, + "force": { + "#": 3446 + }, + "torque": 0, + "positionImpulse": { + "#": 3447 + }, + "constraintImpulse": { + "#": 3448 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3449 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3450 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3451 + }, + "bounds": { + "#": 3453 + }, + "positionPrev": { + "#": 3456 + }, + "anglePrev": 0, + "axes": { + "#": 3457 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3438 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3438 + } + ], + [ + { + "#": 3441 + }, + { + "#": 3442 + }, + { + "#": 3443 + }, + { + "#": 3444 + } + ], + { + "x": 370, + "y": 330, + "index": 0, + "body": { + "#": 3438 + }, + "isInternal": false + }, + { + "x": 405, + "y": 330, + "index": 1, + "body": { + "#": 3438 + }, + "isInternal": false + }, + { + "x": 405, + "y": 365, + "index": 2, + "body": { + "#": 3438 + }, + "isInternal": false + }, + { + "x": 370, + "y": 365, + "index": 3, + "body": { + "#": 3438 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3452 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3454 + }, + "max": { + "#": 3455 + } + }, + { + "x": 370, + "y": 330 + }, + { + "x": 405, + "y": 365 + }, + { + "x": 387.5, + "y": 347.5 + }, + [ + { + "#": 3458 + }, + { + "#": 3459 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 158, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3461 + }, + "angle": 0, + "vertices": { + "#": 3462 + }, + "position": { + "#": 3467 + }, + "force": { + "#": 3468 + }, + "torque": 0, + "positionImpulse": { + "#": 3469 + }, + "constraintImpulse": { + "#": 3470 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3471 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3472 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3473 + }, + "bounds": { + "#": 3475 + }, + "positionPrev": { + "#": 3478 + }, + "anglePrev": 0, + "axes": { + "#": 3479 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3460 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3460 + } + ], + [ + { + "#": 3463 + }, + { + "#": 3464 + }, + { + "#": 3465 + }, + { + "#": 3466 + } + ], + { + "x": 405, + "y": 330, + "index": 0, + "body": { + "#": 3460 + }, + "isInternal": false + }, + { + "x": 440, + "y": 330, + "index": 1, + "body": { + "#": 3460 + }, + "isInternal": false + }, + { + "x": 440, + "y": 365, + "index": 2, + "body": { + "#": 3460 + }, + "isInternal": false + }, + { + "x": 405, + "y": 365, + "index": 3, + "body": { + "#": 3460 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3474 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3476 + }, + "max": { + "#": 3477 + } + }, + { + "x": 405, + "y": 330 + }, + { + "x": 440, + "y": 365 + }, + { + "x": 422.5, + "y": 347.5 + }, + [ + { + "#": 3480 + }, + { + "#": 3481 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 159, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3483 + }, + "angle": 0, + "vertices": { + "#": 3484 + }, + "position": { + "#": 3489 + }, + "force": { + "#": 3490 + }, + "torque": 0, + "positionImpulse": { + "#": 3491 + }, + "constraintImpulse": { + "#": 3492 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3493 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3494 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3495 + }, + "bounds": { + "#": 3497 + }, + "positionPrev": { + "#": 3500 + }, + "anglePrev": 0, + "axes": { + "#": 3501 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3482 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3482 + } + ], + [ + { + "#": 3485 + }, + { + "#": 3486 + }, + { + "#": 3487 + }, + { + "#": 3488 + } + ], + { + "x": 440, + "y": 330, + "index": 0, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 475, + "y": 330, + "index": 1, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 475, + "y": 365, + "index": 2, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 440, + "y": 365, + "index": 3, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3496 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3498 + }, + "max": { + "#": 3499 + } + }, + { + "x": 440, + "y": 330 + }, + { + "x": 475, + "y": 365 + }, + { + "x": 457.5, + "y": 347.5 + }, + [ + { + "#": 3502 + }, + { + "#": 3503 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 160, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3505 + }, + "angle": 0, + "vertices": { + "#": 3506 + }, + "position": { + "#": 3511 + }, + "force": { + "#": 3512 + }, + "torque": 0, + "positionImpulse": { + "#": 3513 + }, + "constraintImpulse": { + "#": 3514 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3515 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3516 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3517 + }, + "bounds": { + "#": 3519 + }, + "positionPrev": { + "#": 3522 + }, + "anglePrev": 0, + "axes": { + "#": 3523 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3504 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3504 + } + ], + [ + { + "#": 3507 + }, + { + "#": 3508 + }, + { + "#": 3509 + }, + { + "#": 3510 + } + ], + { + "x": 475, + "y": 330, + "index": 0, + "body": { + "#": 3504 + }, + "isInternal": false + }, + { + "x": 510, + "y": 330, + "index": 1, + "body": { + "#": 3504 + }, + "isInternal": false + }, + { + "x": 510, + "y": 365, + "index": 2, + "body": { + "#": 3504 + }, + "isInternal": false + }, + { + "x": 475, + "y": 365, + "index": 3, + "body": { + "#": 3504 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3518 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3520 + }, + "max": { + "#": 3521 + } + }, + { + "x": 475, + "y": 330 + }, + { + "x": 510, + "y": 365 + }, + { + "x": 492.5, + "y": 347.5 + }, + [ + { + "#": 3524 + }, + { + "#": 3525 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 161, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3527 + }, + "angle": 0, + "vertices": { + "#": 3528 + }, + "position": { + "#": 3533 + }, + "force": { + "#": 3534 + }, + "torque": 0, + "positionImpulse": { + "#": 3535 + }, + "constraintImpulse": { + "#": 3536 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3537 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3538 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3539 + }, + "bounds": { + "#": 3541 + }, + "positionPrev": { + "#": 3544 + }, + "anglePrev": 0, + "axes": { + "#": 3545 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3526 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3526 + } + ], + [ + { + "#": 3529 + }, + { + "#": 3530 + }, + { + "#": 3531 + }, + { + "#": 3532 + } + ], + { + "x": 510, + "y": 330, + "index": 0, + "body": { + "#": 3526 + }, + "isInternal": false + }, + { + "x": 545, + "y": 330, + "index": 1, + "body": { + "#": 3526 + }, + "isInternal": false + }, + { + "x": 545, + "y": 365, + "index": 2, + "body": { + "#": 3526 + }, + "isInternal": false + }, + { + "x": 510, + "y": 365, + "index": 3, + "body": { + "#": 3526 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3540 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3542 + }, + "max": { + "#": 3543 + } + }, + { + "x": 510, + "y": 330 + }, + { + "x": 545, + "y": 365 + }, + { + "x": 527.5, + "y": 347.5 + }, + [ + { + "#": 3546 + }, + { + "#": 3547 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 162, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3549 + }, + "angle": 0, + "vertices": { + "#": 3550 + }, + "position": { + "#": 3555 + }, + "force": { + "#": 3556 + }, + "torque": 0, + "positionImpulse": { + "#": 3557 + }, + "constraintImpulse": { + "#": 3558 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3559 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3560 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3561 + }, + "bounds": { + "#": 3563 + }, + "positionPrev": { + "#": 3566 + }, + "anglePrev": 0, + "axes": { + "#": 3567 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3548 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3548 + } + ], + [ + { + "#": 3551 + }, + { + "#": 3552 + }, + { + "#": 3553 + }, + { + "#": 3554 + } + ], + { + "x": 545, + "y": 330, + "index": 0, + "body": { + "#": 3548 + }, + "isInternal": false + }, + { + "x": 580, + "y": 330, + "index": 1, + "body": { + "#": 3548 + }, + "isInternal": false + }, + { + "x": 580, + "y": 365, + "index": 2, + "body": { + "#": 3548 + }, + "isInternal": false + }, + { + "x": 545, + "y": 365, + "index": 3, + "body": { + "#": 3548 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3562 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3564 + }, + "max": { + "#": 3565 + } + }, + { + "x": 545, + "y": 330 + }, + { + "x": 580, + "y": 365 + }, + { + "x": 562.5, + "y": 347.5 + }, + [ + { + "#": 3568 + }, + { + "#": 3569 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 163, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3571 + }, + "angle": 0, + "vertices": { + "#": 3572 + }, + "position": { + "#": 3577 + }, + "force": { + "#": 3578 + }, + "torque": 0, + "positionImpulse": { + "#": 3579 + }, + "constraintImpulse": { + "#": 3580 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3581 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3582 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3583 + }, + "bounds": { + "#": 3585 + }, + "positionPrev": { + "#": 3588 + }, + "anglePrev": 0, + "axes": { + "#": 3589 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3570 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3570 + } + ], + [ + { + "#": 3573 + }, + { + "#": 3574 + }, + { + "#": 3575 + }, + { + "#": 3576 + } + ], + { + "x": 580, + "y": 330, + "index": 0, + "body": { + "#": 3570 + }, + "isInternal": false + }, + { + "x": 615, + "y": 330, + "index": 1, + "body": { + "#": 3570 + }, + "isInternal": false + }, + { + "x": 615, + "y": 365, + "index": 2, + "body": { + "#": 3570 + }, + "isInternal": false + }, + { + "x": 580, + "y": 365, + "index": 3, + "body": { + "#": 3570 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3584 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3586 + }, + "max": { + "#": 3587 + } + }, + { + "x": 580, + "y": 330 + }, + { + "x": 615, + "y": 365 + }, + { + "x": 597.5, + "y": 347.5 + }, + [ + { + "#": 3590 + }, + { + "#": 3591 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 164, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3593 + }, + "angle": 0, + "vertices": { + "#": 3594 + }, + "position": { + "#": 3599 + }, + "force": { + "#": 3600 + }, + "torque": 0, + "positionImpulse": { + "#": 3601 + }, + "constraintImpulse": { + "#": 3602 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3603 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3604 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3605 + }, + "bounds": { + "#": 3607 + }, + "positionPrev": { + "#": 3610 + }, + "anglePrev": 0, + "axes": { + "#": 3611 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3592 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3592 + } + ], + [ + { + "#": 3595 + }, + { + "#": 3596 + }, + { + "#": 3597 + }, + { + "#": 3598 + } + ], + { + "x": 615, + "y": 330, + "index": 0, + "body": { + "#": 3592 + }, + "isInternal": false + }, + { + "x": 650, + "y": 330, + "index": 1, + "body": { + "#": 3592 + }, + "isInternal": false + }, + { + "x": 650, + "y": 365, + "index": 2, + "body": { + "#": 3592 + }, + "isInternal": false + }, + { + "x": 615, + "y": 365, + "index": 3, + "body": { + "#": 3592 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3606 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3608 + }, + "max": { + "#": 3609 + } + }, + { + "x": 615, + "y": 330 + }, + { + "x": 650, + "y": 365 + }, + { + "x": 632.5, + "y": 347.5 + }, + [ + { + "#": 3612 + }, + { + "#": 3613 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 165, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3615 + }, + "angle": 0, + "vertices": { + "#": 3616 + }, + "position": { + "#": 3621 + }, + "force": { + "#": 3622 + }, + "torque": 0, + "positionImpulse": { + "#": 3623 + }, + "constraintImpulse": { + "#": 3624 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3625 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3626 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3627 + }, + "bounds": { + "#": 3629 + }, + "positionPrev": { + "#": 3632 + }, + "anglePrev": 0, + "axes": { + "#": 3633 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3614 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3614 + } + ], + [ + { + "#": 3617 + }, + { + "#": 3618 + }, + { + "#": 3619 + }, + { + "#": 3620 + } + ], + { + "x": 650, + "y": 330, + "index": 0, + "body": { + "#": 3614 + }, + "isInternal": false + }, + { + "x": 685, + "y": 330, + "index": 1, + "body": { + "#": 3614 + }, + "isInternal": false + }, + { + "x": 685, + "y": 365, + "index": 2, + "body": { + "#": 3614 + }, + "isInternal": false + }, + { + "x": 650, + "y": 365, + "index": 3, + "body": { + "#": 3614 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3628 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3630 + }, + "max": { + "#": 3631 + } + }, + { + "x": 650, + "y": 330 + }, + { + "x": 685, + "y": 365 + }, + { + "x": 667.5, + "y": 347.5 + }, + [ + { + "#": 3634 + }, + { + "#": 3635 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 166, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3637 + }, + "angle": 0, + "vertices": { + "#": 3638 + }, + "position": { + "#": 3643 + }, + "force": { + "#": 3644 + }, + "torque": 0, + "positionImpulse": { + "#": 3645 + }, + "constraintImpulse": { + "#": 3646 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3647 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3648 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3649 + }, + "bounds": { + "#": 3651 + }, + "positionPrev": { + "#": 3654 + }, + "anglePrev": 0, + "axes": { + "#": 3655 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3636 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3636 + } + ], + [ + { + "#": 3639 + }, + { + "#": 3640 + }, + { + "#": 3641 + }, + { + "#": 3642 + } + ], + { + "x": 685, + "y": 330, + "index": 0, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 720, + "y": 330, + "index": 1, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 720, + "y": 365, + "index": 2, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 685, + "y": 365, + "index": 3, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 347.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3650 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3652 + }, + "max": { + "#": 3653 + } + }, + { + "x": 685, + "y": 330 + }, + { + "x": 720, + "y": 365 + }, + { + "x": 702.5, + "y": 347.5 + }, + [ + { + "#": 3656 + }, + { + "#": 3657 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 167, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3659 + }, + "angle": 0, + "vertices": { + "#": 3660 + }, + "position": { + "#": 3665 + }, + "force": { + "#": 3666 + }, + "torque": 0, + "positionImpulse": { + "#": 3667 + }, + "constraintImpulse": { + "#": 3668 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3669 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3670 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3671 + }, + "bounds": { + "#": 3673 + }, + "positionPrev": { + "#": 3676 + }, + "anglePrev": 0, + "axes": { + "#": 3677 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3658 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3658 + } + ], + [ + { + "#": 3661 + }, + { + "#": 3662 + }, + { + "#": 3663 + }, + { + "#": 3664 + } + ], + { + "x": 90, + "y": 365, + "index": 0, + "body": { + "#": 3658 + }, + "isInternal": false + }, + { + "x": 125, + "y": 365, + "index": 1, + "body": { + "#": 3658 + }, + "isInternal": false + }, + { + "x": 125, + "y": 400, + "index": 2, + "body": { + "#": 3658 + }, + "isInternal": false + }, + { + "x": 90, + "y": 400, + "index": 3, + "body": { + "#": 3658 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3672 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3674 + }, + "max": { + "#": 3675 + } + }, + { + "x": 90, + "y": 365 + }, + { + "x": 125, + "y": 400 + }, + { + "x": 107.5, + "y": 382.5 + }, + [ + { + "#": 3678 + }, + { + "#": 3679 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 168, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3681 + }, + "angle": 0, + "vertices": { + "#": 3682 + }, + "position": { + "#": 3687 + }, + "force": { + "#": 3688 + }, + "torque": 0, + "positionImpulse": { + "#": 3689 + }, + "constraintImpulse": { + "#": 3690 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3691 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3692 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3693 + }, + "bounds": { + "#": 3695 + }, + "positionPrev": { + "#": 3698 + }, + "anglePrev": 0, + "axes": { + "#": 3699 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3680 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3680 + } + ], + [ + { + "#": 3683 + }, + { + "#": 3684 + }, + { + "#": 3685 + }, + { + "#": 3686 + } + ], + { + "x": 125, + "y": 365, + "index": 0, + "body": { + "#": 3680 + }, + "isInternal": false + }, + { + "x": 160, + "y": 365, + "index": 1, + "body": { + "#": 3680 + }, + "isInternal": false + }, + { + "x": 160, + "y": 400, + "index": 2, + "body": { + "#": 3680 + }, + "isInternal": false + }, + { + "x": 125, + "y": 400, + "index": 3, + "body": { + "#": 3680 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3694 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3696 + }, + "max": { + "#": 3697 + } + }, + { + "x": 125, + "y": 365 + }, + { + "x": 160, + "y": 400 + }, + { + "x": 142.5, + "y": 382.5 + }, + [ + { + "#": 3700 + }, + { + "#": 3701 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 169, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3703 + }, + "angle": 0, + "vertices": { + "#": 3704 + }, + "position": { + "#": 3709 + }, + "force": { + "#": 3710 + }, + "torque": 0, + "positionImpulse": { + "#": 3711 + }, + "constraintImpulse": { + "#": 3712 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3713 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3714 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3715 + }, + "bounds": { + "#": 3717 + }, + "positionPrev": { + "#": 3720 + }, + "anglePrev": 0, + "axes": { + "#": 3721 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3702 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3702 + } + ], + [ + { + "#": 3705 + }, + { + "#": 3706 + }, + { + "#": 3707 + }, + { + "#": 3708 + } + ], + { + "x": 160, + "y": 365, + "index": 0, + "body": { + "#": 3702 + }, + "isInternal": false + }, + { + "x": 195, + "y": 365, + "index": 1, + "body": { + "#": 3702 + }, + "isInternal": false + }, + { + "x": 195, + "y": 400, + "index": 2, + "body": { + "#": 3702 + }, + "isInternal": false + }, + { + "x": 160, + "y": 400, + "index": 3, + "body": { + "#": 3702 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3716 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3718 + }, + "max": { + "#": 3719 + } + }, + { + "x": 160, + "y": 365 + }, + { + "x": 195, + "y": 400 + }, + { + "x": 177.5, + "y": 382.5 + }, + [ + { + "#": 3722 + }, + { + "#": 3723 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 170, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3725 + }, + "angle": 0, + "vertices": { + "#": 3726 + }, + "position": { + "#": 3731 + }, + "force": { + "#": 3732 + }, + "torque": 0, + "positionImpulse": { + "#": 3733 + }, + "constraintImpulse": { + "#": 3734 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3735 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3736 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3737 + }, + "bounds": { + "#": 3739 + }, + "positionPrev": { + "#": 3742 + }, + "anglePrev": 0, + "axes": { + "#": 3743 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3724 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3724 + } + ], + [ + { + "#": 3727 + }, + { + "#": 3728 + }, + { + "#": 3729 + }, + { + "#": 3730 + } + ], + { + "x": 195, + "y": 365, + "index": 0, + "body": { + "#": 3724 + }, + "isInternal": false + }, + { + "x": 230, + "y": 365, + "index": 1, + "body": { + "#": 3724 + }, + "isInternal": false + }, + { + "x": 230, + "y": 400, + "index": 2, + "body": { + "#": 3724 + }, + "isInternal": false + }, + { + "x": 195, + "y": 400, + "index": 3, + "body": { + "#": 3724 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3738 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3740 + }, + "max": { + "#": 3741 + } + }, + { + "x": 195, + "y": 365 + }, + { + "x": 230, + "y": 400 + }, + { + "x": 212.5, + "y": 382.5 + }, + [ + { + "#": 3744 + }, + { + "#": 3745 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 171, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3747 + }, + "angle": 0, + "vertices": { + "#": 3748 + }, + "position": { + "#": 3753 + }, + "force": { + "#": 3754 + }, + "torque": 0, + "positionImpulse": { + "#": 3755 + }, + "constraintImpulse": { + "#": 3756 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3757 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3758 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3759 + }, + "bounds": { + "#": 3761 + }, + "positionPrev": { + "#": 3764 + }, + "anglePrev": 0, + "axes": { + "#": 3765 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3746 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3746 + } + ], + [ + { + "#": 3749 + }, + { + "#": 3750 + }, + { + "#": 3751 + }, + { + "#": 3752 + } + ], + { + "x": 230, + "y": 365, + "index": 0, + "body": { + "#": 3746 + }, + "isInternal": false + }, + { + "x": 265, + "y": 365, + "index": 1, + "body": { + "#": 3746 + }, + "isInternal": false + }, + { + "x": 265, + "y": 400, + "index": 2, + "body": { + "#": 3746 + }, + "isInternal": false + }, + { + "x": 230, + "y": 400, + "index": 3, + "body": { + "#": 3746 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3760 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3762 + }, + "max": { + "#": 3763 + } + }, + { + "x": 230, + "y": 365 + }, + { + "x": 265, + "y": 400 + }, + { + "x": 247.5, + "y": 382.5 + }, + [ + { + "#": 3766 + }, + { + "#": 3767 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 172, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3769 + }, + "angle": 0, + "vertices": { + "#": 3770 + }, + "position": { + "#": 3775 + }, + "force": { + "#": 3776 + }, + "torque": 0, + "positionImpulse": { + "#": 3777 + }, + "constraintImpulse": { + "#": 3778 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3779 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3780 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3781 + }, + "bounds": { + "#": 3783 + }, + "positionPrev": { + "#": 3786 + }, + "anglePrev": 0, + "axes": { + "#": 3787 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3768 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3768 + } + ], + [ + { + "#": 3771 + }, + { + "#": 3772 + }, + { + "#": 3773 + }, + { + "#": 3774 + } + ], + { + "x": 265, + "y": 365, + "index": 0, + "body": { + "#": 3768 + }, + "isInternal": false + }, + { + "x": 300, + "y": 365, + "index": 1, + "body": { + "#": 3768 + }, + "isInternal": false + }, + { + "x": 300, + "y": 400, + "index": 2, + "body": { + "#": 3768 + }, + "isInternal": false + }, + { + "x": 265, + "y": 400, + "index": 3, + "body": { + "#": 3768 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3782 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3784 + }, + "max": { + "#": 3785 + } + }, + { + "x": 265, + "y": 365 + }, + { + "x": 300, + "y": 400 + }, + { + "x": 282.5, + "y": 382.5 + }, + [ + { + "#": 3788 + }, + { + "#": 3789 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 173, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3791 + }, + "angle": 0, + "vertices": { + "#": 3792 + }, + "position": { + "#": 3797 + }, + "force": { + "#": 3798 + }, + "torque": 0, + "positionImpulse": { + "#": 3799 + }, + "constraintImpulse": { + "#": 3800 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3801 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3802 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3803 + }, + "bounds": { + "#": 3805 + }, + "positionPrev": { + "#": 3808 + }, + "anglePrev": 0, + "axes": { + "#": 3809 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3790 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3790 + } + ], + [ + { + "#": 3793 + }, + { + "#": 3794 + }, + { + "#": 3795 + }, + { + "#": 3796 + } + ], + { + "x": 300, + "y": 365, + "index": 0, + "body": { + "#": 3790 + }, + "isInternal": false + }, + { + "x": 335, + "y": 365, + "index": 1, + "body": { + "#": 3790 + }, + "isInternal": false + }, + { + "x": 335, + "y": 400, + "index": 2, + "body": { + "#": 3790 + }, + "isInternal": false + }, + { + "x": 300, + "y": 400, + "index": 3, + "body": { + "#": 3790 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3804 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3806 + }, + "max": { + "#": 3807 + } + }, + { + "x": 300, + "y": 365 + }, + { + "x": 335, + "y": 400 + }, + { + "x": 317.5, + "y": 382.5 + }, + [ + { + "#": 3810 + }, + { + "#": 3811 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 174, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3813 + }, + "angle": 0, + "vertices": { + "#": 3814 + }, + "position": { + "#": 3819 + }, + "force": { + "#": 3820 + }, + "torque": 0, + "positionImpulse": { + "#": 3821 + }, + "constraintImpulse": { + "#": 3822 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3823 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3824 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3825 + }, + "bounds": { + "#": 3827 + }, + "positionPrev": { + "#": 3830 + }, + "anglePrev": 0, + "axes": { + "#": 3831 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3812 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3812 + } + ], + [ + { + "#": 3815 + }, + { + "#": 3816 + }, + { + "#": 3817 + }, + { + "#": 3818 + } + ], + { + "x": 335, + "y": 365, + "index": 0, + "body": { + "#": 3812 + }, + "isInternal": false + }, + { + "x": 370, + "y": 365, + "index": 1, + "body": { + "#": 3812 + }, + "isInternal": false + }, + { + "x": 370, + "y": 400, + "index": 2, + "body": { + "#": 3812 + }, + "isInternal": false + }, + { + "x": 335, + "y": 400, + "index": 3, + "body": { + "#": 3812 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3826 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3828 + }, + "max": { + "#": 3829 + } + }, + { + "x": 335, + "y": 365 + }, + { + "x": 370, + "y": 400 + }, + { + "x": 352.5, + "y": 382.5 + }, + [ + { + "#": 3832 + }, + { + "#": 3833 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 175, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3835 + }, + "angle": 0, + "vertices": { + "#": 3836 + }, + "position": { + "#": 3841 + }, + "force": { + "#": 3842 + }, + "torque": 0, + "positionImpulse": { + "#": 3843 + }, + "constraintImpulse": { + "#": 3844 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3845 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3846 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3847 + }, + "bounds": { + "#": 3849 + }, + "positionPrev": { + "#": 3852 + }, + "anglePrev": 0, + "axes": { + "#": 3853 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3834 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3834 + } + ], + [ + { + "#": 3837 + }, + { + "#": 3838 + }, + { + "#": 3839 + }, + { + "#": 3840 + } + ], + { + "x": 370, + "y": 365, + "index": 0, + "body": { + "#": 3834 + }, + "isInternal": false + }, + { + "x": 405, + "y": 365, + "index": 1, + "body": { + "#": 3834 + }, + "isInternal": false + }, + { + "x": 405, + "y": 400, + "index": 2, + "body": { + "#": 3834 + }, + "isInternal": false + }, + { + "x": 370, + "y": 400, + "index": 3, + "body": { + "#": 3834 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3848 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3850 + }, + "max": { + "#": 3851 + } + }, + { + "x": 370, + "y": 365 + }, + { + "x": 405, + "y": 400 + }, + { + "x": 387.5, + "y": 382.5 + }, + [ + { + "#": 3854 + }, + { + "#": 3855 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 176, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3857 + }, + "angle": 0, + "vertices": { + "#": 3858 + }, + "position": { + "#": 3863 + }, + "force": { + "#": 3864 + }, + "torque": 0, + "positionImpulse": { + "#": 3865 + }, + "constraintImpulse": { + "#": 3866 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3867 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3868 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3869 + }, + "bounds": { + "#": 3871 + }, + "positionPrev": { + "#": 3874 + }, + "anglePrev": 0, + "axes": { + "#": 3875 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3856 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3856 + } + ], + [ + { + "#": 3859 + }, + { + "#": 3860 + }, + { + "#": 3861 + }, + { + "#": 3862 + } + ], + { + "x": 405, + "y": 365, + "index": 0, + "body": { + "#": 3856 + }, + "isInternal": false + }, + { + "x": 440, + "y": 365, + "index": 1, + "body": { + "#": 3856 + }, + "isInternal": false + }, + { + "x": 440, + "y": 400, + "index": 2, + "body": { + "#": 3856 + }, + "isInternal": false + }, + { + "x": 405, + "y": 400, + "index": 3, + "body": { + "#": 3856 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3870 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3872 + }, + "max": { + "#": 3873 + } + }, + { + "x": 405, + "y": 365 + }, + { + "x": 440, + "y": 400 + }, + { + "x": 422.5, + "y": 382.5 + }, + [ + { + "#": 3876 + }, + { + "#": 3877 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 177, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3879 + }, + "angle": 0, + "vertices": { + "#": 3880 + }, + "position": { + "#": 3885 + }, + "force": { + "#": 3886 + }, + "torque": 0, + "positionImpulse": { + "#": 3887 + }, + "constraintImpulse": { + "#": 3888 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3889 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3890 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3891 + }, + "bounds": { + "#": 3893 + }, + "positionPrev": { + "#": 3896 + }, + "anglePrev": 0, + "axes": { + "#": 3897 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3878 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3878 + } + ], + [ + { + "#": 3881 + }, + { + "#": 3882 + }, + { + "#": 3883 + }, + { + "#": 3884 + } + ], + { + "x": 440, + "y": 365, + "index": 0, + "body": { + "#": 3878 + }, + "isInternal": false + }, + { + "x": 475, + "y": 365, + "index": 1, + "body": { + "#": 3878 + }, + "isInternal": false + }, + { + "x": 475, + "y": 400, + "index": 2, + "body": { + "#": 3878 + }, + "isInternal": false + }, + { + "x": 440, + "y": 400, + "index": 3, + "body": { + "#": 3878 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3892 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3894 + }, + "max": { + "#": 3895 + } + }, + { + "x": 440, + "y": 365 + }, + { + "x": 475, + "y": 400 + }, + { + "x": 457.5, + "y": 382.5 + }, + [ + { + "#": 3898 + }, + { + "#": 3899 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 178, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3901 + }, + "angle": 0, + "vertices": { + "#": 3902 + }, + "position": { + "#": 3907 + }, + "force": { + "#": 3908 + }, + "torque": 0, + "positionImpulse": { + "#": 3909 + }, + "constraintImpulse": { + "#": 3910 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3911 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3912 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3913 + }, + "bounds": { + "#": 3915 + }, + "positionPrev": { + "#": 3918 + }, + "anglePrev": 0, + "axes": { + "#": 3919 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3900 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3900 + } + ], + [ + { + "#": 3903 + }, + { + "#": 3904 + }, + { + "#": 3905 + }, + { + "#": 3906 + } + ], + { + "x": 475, + "y": 365, + "index": 0, + "body": { + "#": 3900 + }, + "isInternal": false + }, + { + "x": 510, + "y": 365, + "index": 1, + "body": { + "#": 3900 + }, + "isInternal": false + }, + { + "x": 510, + "y": 400, + "index": 2, + "body": { + "#": 3900 + }, + "isInternal": false + }, + { + "x": 475, + "y": 400, + "index": 3, + "body": { + "#": 3900 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3914 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3916 + }, + "max": { + "#": 3917 + } + }, + { + "x": 475, + "y": 365 + }, + { + "x": 510, + "y": 400 + }, + { + "x": 492.5, + "y": 382.5 + }, + [ + { + "#": 3920 + }, + { + "#": 3921 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 179, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3923 + }, + "angle": 0, + "vertices": { + "#": 3924 + }, + "position": { + "#": 3929 + }, + "force": { + "#": 3930 + }, + "torque": 0, + "positionImpulse": { + "#": 3931 + }, + "constraintImpulse": { + "#": 3932 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3933 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3934 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3935 + }, + "bounds": { + "#": 3937 + }, + "positionPrev": { + "#": 3940 + }, + "anglePrev": 0, + "axes": { + "#": 3941 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3922 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3922 + } + ], + [ + { + "#": 3925 + }, + { + "#": 3926 + }, + { + "#": 3927 + }, + { + "#": 3928 + } + ], + { + "x": 510, + "y": 365, + "index": 0, + "body": { + "#": 3922 + }, + "isInternal": false + }, + { + "x": 545, + "y": 365, + "index": 1, + "body": { + "#": 3922 + }, + "isInternal": false + }, + { + "x": 545, + "y": 400, + "index": 2, + "body": { + "#": 3922 + }, + "isInternal": false + }, + { + "x": 510, + "y": 400, + "index": 3, + "body": { + "#": 3922 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3936 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3938 + }, + "max": { + "#": 3939 + } + }, + { + "x": 510, + "y": 365 + }, + { + "x": 545, + "y": 400 + }, + { + "x": 527.5, + "y": 382.5 + }, + [ + { + "#": 3942 + }, + { + "#": 3943 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 180, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3945 + }, + "angle": 0, + "vertices": { + "#": 3946 + }, + "position": { + "#": 3951 + }, + "force": { + "#": 3952 + }, + "torque": 0, + "positionImpulse": { + "#": 3953 + }, + "constraintImpulse": { + "#": 3954 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3955 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3956 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3957 + }, + "bounds": { + "#": 3959 + }, + "positionPrev": { + "#": 3962 + }, + "anglePrev": 0, + "axes": { + "#": 3963 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3944 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3944 + } + ], + [ + { + "#": 3947 + }, + { + "#": 3948 + }, + { + "#": 3949 + }, + { + "#": 3950 + } + ], + { + "x": 545, + "y": 365, + "index": 0, + "body": { + "#": 3944 + }, + "isInternal": false + }, + { + "x": 580, + "y": 365, + "index": 1, + "body": { + "#": 3944 + }, + "isInternal": false + }, + { + "x": 580, + "y": 400, + "index": 2, + "body": { + "#": 3944 + }, + "isInternal": false + }, + { + "x": 545, + "y": 400, + "index": 3, + "body": { + "#": 3944 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3958 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3960 + }, + "max": { + "#": 3961 + } + }, + { + "x": 545, + "y": 365 + }, + { + "x": 580, + "y": 400 + }, + { + "x": 562.5, + "y": 382.5 + }, + [ + { + "#": 3964 + }, + { + "#": 3965 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 181, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3967 + }, + "angle": 0, + "vertices": { + "#": 3968 + }, + "position": { + "#": 3973 + }, + "force": { + "#": 3974 + }, + "torque": 0, + "positionImpulse": { + "#": 3975 + }, + "constraintImpulse": { + "#": 3976 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3977 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3978 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3979 + }, + "bounds": { + "#": 3981 + }, + "positionPrev": { + "#": 3984 + }, + "anglePrev": 0, + "axes": { + "#": 3985 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3966 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3966 + } + ], + [ + { + "#": 3969 + }, + { + "#": 3970 + }, + { + "#": 3971 + }, + { + "#": 3972 + } + ], + { + "x": 580, + "y": 365, + "index": 0, + "body": { + "#": 3966 + }, + "isInternal": false + }, + { + "x": 615, + "y": 365, + "index": 1, + "body": { + "#": 3966 + }, + "isInternal": false + }, + { + "x": 615, + "y": 400, + "index": 2, + "body": { + "#": 3966 + }, + "isInternal": false + }, + { + "x": 580, + "y": 400, + "index": 3, + "body": { + "#": 3966 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3980 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3982 + }, + "max": { + "#": 3983 + } + }, + { + "x": 580, + "y": 365 + }, + { + "x": 615, + "y": 400 + }, + { + "x": 597.5, + "y": 382.5 + }, + [ + { + "#": 3986 + }, + { + "#": 3987 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 182, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3989 + }, + "angle": 0, + "vertices": { + "#": 3990 + }, + "position": { + "#": 3995 + }, + "force": { + "#": 3996 + }, + "torque": 0, + "positionImpulse": { + "#": 3997 + }, + "constraintImpulse": { + "#": 3998 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3999 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4000 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4001 + }, + "bounds": { + "#": 4003 + }, + "positionPrev": { + "#": 4006 + }, + "anglePrev": 0, + "axes": { + "#": 4007 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3988 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3988 + } + ], + [ + { + "#": 3991 + }, + { + "#": 3992 + }, + { + "#": 3993 + }, + { + "#": 3994 + } + ], + { + "x": 615, + "y": 365, + "index": 0, + "body": { + "#": 3988 + }, + "isInternal": false + }, + { + "x": 650, + "y": 365, + "index": 1, + "body": { + "#": 3988 + }, + "isInternal": false + }, + { + "x": 650, + "y": 400, + "index": 2, + "body": { + "#": 3988 + }, + "isInternal": false + }, + { + "x": 615, + "y": 400, + "index": 3, + "body": { + "#": 3988 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4002 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4004 + }, + "max": { + "#": 4005 + } + }, + { + "x": 615, + "y": 365 + }, + { + "x": 650, + "y": 400 + }, + { + "x": 632.5, + "y": 382.5 + }, + [ + { + "#": 4008 + }, + { + "#": 4009 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 183, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4011 + }, + "angle": 0, + "vertices": { + "#": 4012 + }, + "position": { + "#": 4017 + }, + "force": { + "#": 4018 + }, + "torque": 0, + "positionImpulse": { + "#": 4019 + }, + "constraintImpulse": { + "#": 4020 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4021 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4022 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4023 + }, + "bounds": { + "#": 4025 + }, + "positionPrev": { + "#": 4028 + }, + "anglePrev": 0, + "axes": { + "#": 4029 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4010 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4010 + } + ], + [ + { + "#": 4013 + }, + { + "#": 4014 + }, + { + "#": 4015 + }, + { + "#": 4016 + } + ], + { + "x": 650, + "y": 365, + "index": 0, + "body": { + "#": 4010 + }, + "isInternal": false + }, + { + "x": 685, + "y": 365, + "index": 1, + "body": { + "#": 4010 + }, + "isInternal": false + }, + { + "x": 685, + "y": 400, + "index": 2, + "body": { + "#": 4010 + }, + "isInternal": false + }, + { + "x": 650, + "y": 400, + "index": 3, + "body": { + "#": 4010 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4024 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4026 + }, + "max": { + "#": 4027 + } + }, + { + "x": 650, + "y": 365 + }, + { + "x": 685, + "y": 400 + }, + { + "x": 667.5, + "y": 382.5 + }, + [ + { + "#": 4030 + }, + { + "#": 4031 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 184, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4033 + }, + "angle": 0, + "vertices": { + "#": 4034 + }, + "position": { + "#": 4039 + }, + "force": { + "#": 4040 + }, + "torque": 0, + "positionImpulse": { + "#": 4041 + }, + "constraintImpulse": { + "#": 4042 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4043 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4044 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4045 + }, + "bounds": { + "#": 4047 + }, + "positionPrev": { + "#": 4050 + }, + "anglePrev": 0, + "axes": { + "#": 4051 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4032 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4032 + } + ], + [ + { + "#": 4035 + }, + { + "#": 4036 + }, + { + "#": 4037 + }, + { + "#": 4038 + } + ], + { + "x": 685, + "y": 365, + "index": 0, + "body": { + "#": 4032 + }, + "isInternal": false + }, + { + "x": 720, + "y": 365, + "index": 1, + "body": { + "#": 4032 + }, + "isInternal": false + }, + { + "x": 720, + "y": 400, + "index": 2, + "body": { + "#": 4032 + }, + "isInternal": false + }, + { + "x": 685, + "y": 400, + "index": 3, + "body": { + "#": 4032 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4046 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4048 + }, + "max": { + "#": 4049 + } + }, + { + "x": 685, + "y": 365 + }, + { + "x": 720, + "y": 400 + }, + { + "x": 702.5, + "y": 382.5 + }, + [ + { + "#": 4052 + }, + { + "#": 4053 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 185, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4055 + }, + "angle": 0, + "vertices": { + "#": 4056 + }, + "position": { + "#": 4061 + }, + "force": { + "#": 4062 + }, + "torque": 0, + "positionImpulse": { + "#": 4063 + }, + "constraintImpulse": { + "#": 4064 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4065 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4066 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4067 + }, + "bounds": { + "#": 4069 + }, + "positionPrev": { + "#": 4072 + }, + "anglePrev": 0, + "axes": { + "#": 4073 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4054 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4054 + } + ], + [ + { + "#": 4057 + }, + { + "#": 4058 + }, + { + "#": 4059 + }, + { + "#": 4060 + } + ], + { + "x": 90, + "y": 400, + "index": 0, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 125, + "y": 400, + "index": 1, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 125, + "y": 435, + "index": 2, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 90, + "y": 435, + "index": 3, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4068 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4070 + }, + "max": { + "#": 4071 + } + }, + { + "x": 90, + "y": 400 + }, + { + "x": 125, + "y": 435 + }, + { + "x": 107.5, + "y": 417.5 + }, + [ + { + "#": 4074 + }, + { + "#": 4075 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 186, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4077 + }, + "angle": 0, + "vertices": { + "#": 4078 + }, + "position": { + "#": 4083 + }, + "force": { + "#": 4084 + }, + "torque": 0, + "positionImpulse": { + "#": 4085 + }, + "constraintImpulse": { + "#": 4086 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4087 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4088 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4089 + }, + "bounds": { + "#": 4091 + }, + "positionPrev": { + "#": 4094 + }, + "anglePrev": 0, + "axes": { + "#": 4095 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4076 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4076 + } + ], + [ + { + "#": 4079 + }, + { + "#": 4080 + }, + { + "#": 4081 + }, + { + "#": 4082 + } + ], + { + "x": 125, + "y": 400, + "index": 0, + "body": { + "#": 4076 + }, + "isInternal": false + }, + { + "x": 160, + "y": 400, + "index": 1, + "body": { + "#": 4076 + }, + "isInternal": false + }, + { + "x": 160, + "y": 435, + "index": 2, + "body": { + "#": 4076 + }, + "isInternal": false + }, + { + "x": 125, + "y": 435, + "index": 3, + "body": { + "#": 4076 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4090 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4092 + }, + "max": { + "#": 4093 + } + }, + { + "x": 125, + "y": 400 + }, + { + "x": 160, + "y": 435 + }, + { + "x": 142.5, + "y": 417.5 + }, + [ + { + "#": 4096 + }, + { + "#": 4097 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 187, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4099 + }, + "angle": 0, + "vertices": { + "#": 4100 + }, + "position": { + "#": 4105 + }, + "force": { + "#": 4106 + }, + "torque": 0, + "positionImpulse": { + "#": 4107 + }, + "constraintImpulse": { + "#": 4108 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4109 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4110 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4111 + }, + "bounds": { + "#": 4113 + }, + "positionPrev": { + "#": 4116 + }, + "anglePrev": 0, + "axes": { + "#": 4117 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4098 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4098 + } + ], + [ + { + "#": 4101 + }, + { + "#": 4102 + }, + { + "#": 4103 + }, + { + "#": 4104 + } + ], + { + "x": 160, + "y": 400, + "index": 0, + "body": { + "#": 4098 + }, + "isInternal": false + }, + { + "x": 195, + "y": 400, + "index": 1, + "body": { + "#": 4098 + }, + "isInternal": false + }, + { + "x": 195, + "y": 435, + "index": 2, + "body": { + "#": 4098 + }, + "isInternal": false + }, + { + "x": 160, + "y": 435, + "index": 3, + "body": { + "#": 4098 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4112 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4114 + }, + "max": { + "#": 4115 + } + }, + { + "x": 160, + "y": 400 + }, + { + "x": 195, + "y": 435 + }, + { + "x": 177.5, + "y": 417.5 + }, + [ + { + "#": 4118 + }, + { + "#": 4119 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 188, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4121 + }, + "angle": 0, + "vertices": { + "#": 4122 + }, + "position": { + "#": 4127 + }, + "force": { + "#": 4128 + }, + "torque": 0, + "positionImpulse": { + "#": 4129 + }, + "constraintImpulse": { + "#": 4130 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4131 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4132 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4133 + }, + "bounds": { + "#": 4135 + }, + "positionPrev": { + "#": 4138 + }, + "anglePrev": 0, + "axes": { + "#": 4139 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4120 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4120 + } + ], + [ + { + "#": 4123 + }, + { + "#": 4124 + }, + { + "#": 4125 + }, + { + "#": 4126 + } + ], + { + "x": 195, + "y": 400, + "index": 0, + "body": { + "#": 4120 + }, + "isInternal": false + }, + { + "x": 230, + "y": 400, + "index": 1, + "body": { + "#": 4120 + }, + "isInternal": false + }, + { + "x": 230, + "y": 435, + "index": 2, + "body": { + "#": 4120 + }, + "isInternal": false + }, + { + "x": 195, + "y": 435, + "index": 3, + "body": { + "#": 4120 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4134 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4136 + }, + "max": { + "#": 4137 + } + }, + { + "x": 195, + "y": 400 + }, + { + "x": 230, + "y": 435 + }, + { + "x": 212.5, + "y": 417.5 + }, + [ + { + "#": 4140 + }, + { + "#": 4141 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 189, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4143 + }, + "angle": 0, + "vertices": { + "#": 4144 + }, + "position": { + "#": 4149 + }, + "force": { + "#": 4150 + }, + "torque": 0, + "positionImpulse": { + "#": 4151 + }, + "constraintImpulse": { + "#": 4152 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4153 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4154 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4155 + }, + "bounds": { + "#": 4157 + }, + "positionPrev": { + "#": 4160 + }, + "anglePrev": 0, + "axes": { + "#": 4161 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4142 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4142 + } + ], + [ + { + "#": 4145 + }, + { + "#": 4146 + }, + { + "#": 4147 + }, + { + "#": 4148 + } + ], + { + "x": 230, + "y": 400, + "index": 0, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 265, + "y": 400, + "index": 1, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 265, + "y": 435, + "index": 2, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 230, + "y": 435, + "index": 3, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4156 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4158 + }, + "max": { + "#": 4159 + } + }, + { + "x": 230, + "y": 400 + }, + { + "x": 265, + "y": 435 + }, + { + "x": 247.5, + "y": 417.5 + }, + [ + { + "#": 4162 + }, + { + "#": 4163 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 190, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4165 + }, + "angle": 0, + "vertices": { + "#": 4166 + }, + "position": { + "#": 4171 + }, + "force": { + "#": 4172 + }, + "torque": 0, + "positionImpulse": { + "#": 4173 + }, + "constraintImpulse": { + "#": 4174 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4175 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4176 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4177 + }, + "bounds": { + "#": 4179 + }, + "positionPrev": { + "#": 4182 + }, + "anglePrev": 0, + "axes": { + "#": 4183 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4164 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4164 + } + ], + [ + { + "#": 4167 + }, + { + "#": 4168 + }, + { + "#": 4169 + }, + { + "#": 4170 + } + ], + { + "x": 265, + "y": 400, + "index": 0, + "body": { + "#": 4164 + }, + "isInternal": false + }, + { + "x": 300, + "y": 400, + "index": 1, + "body": { + "#": 4164 + }, + "isInternal": false + }, + { + "x": 300, + "y": 435, + "index": 2, + "body": { + "#": 4164 + }, + "isInternal": false + }, + { + "x": 265, + "y": 435, + "index": 3, + "body": { + "#": 4164 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4178 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4180 + }, + "max": { + "#": 4181 + } + }, + { + "x": 265, + "y": 400 + }, + { + "x": 300, + "y": 435 + }, + { + "x": 282.5, + "y": 417.5 + }, + [ + { + "#": 4184 + }, + { + "#": 4185 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 191, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4187 + }, + "angle": 0, + "vertices": { + "#": 4188 + }, + "position": { + "#": 4193 + }, + "force": { + "#": 4194 + }, + "torque": 0, + "positionImpulse": { + "#": 4195 + }, + "constraintImpulse": { + "#": 4196 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4197 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4198 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4199 + }, + "bounds": { + "#": 4201 + }, + "positionPrev": { + "#": 4204 + }, + "anglePrev": 0, + "axes": { + "#": 4205 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4186 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4186 + } + ], + [ + { + "#": 4189 + }, + { + "#": 4190 + }, + { + "#": 4191 + }, + { + "#": 4192 + } + ], + { + "x": 300, + "y": 400, + "index": 0, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 335, + "y": 400, + "index": 1, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 335, + "y": 435, + "index": 2, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 300, + "y": 435, + "index": 3, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4200 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4202 + }, + "max": { + "#": 4203 + } + }, + { + "x": 300, + "y": 400 + }, + { + "x": 335, + "y": 435 + }, + { + "x": 317.5, + "y": 417.5 + }, + [ + { + "#": 4206 + }, + { + "#": 4207 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 192, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4209 + }, + "angle": 0, + "vertices": { + "#": 4210 + }, + "position": { + "#": 4215 + }, + "force": { + "#": 4216 + }, + "torque": 0, + "positionImpulse": { + "#": 4217 + }, + "constraintImpulse": { + "#": 4218 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4219 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4220 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4221 + }, + "bounds": { + "#": 4223 + }, + "positionPrev": { + "#": 4226 + }, + "anglePrev": 0, + "axes": { + "#": 4227 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4208 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4208 + } + ], + [ + { + "#": 4211 + }, + { + "#": 4212 + }, + { + "#": 4213 + }, + { + "#": 4214 + } + ], + { + "x": 335, + "y": 400, + "index": 0, + "body": { + "#": 4208 + }, + "isInternal": false + }, + { + "x": 370, + "y": 400, + "index": 1, + "body": { + "#": 4208 + }, + "isInternal": false + }, + { + "x": 370, + "y": 435, + "index": 2, + "body": { + "#": 4208 + }, + "isInternal": false + }, + { + "x": 335, + "y": 435, + "index": 3, + "body": { + "#": 4208 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4222 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4224 + }, + "max": { + "#": 4225 + } + }, + { + "x": 335, + "y": 400 + }, + { + "x": 370, + "y": 435 + }, + { + "x": 352.5, + "y": 417.5 + }, + [ + { + "#": 4228 + }, + { + "#": 4229 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 193, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4231 + }, + "angle": 0, + "vertices": { + "#": 4232 + }, + "position": { + "#": 4237 + }, + "force": { + "#": 4238 + }, + "torque": 0, + "positionImpulse": { + "#": 4239 + }, + "constraintImpulse": { + "#": 4240 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4241 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4242 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4243 + }, + "bounds": { + "#": 4245 + }, + "positionPrev": { + "#": 4248 + }, + "anglePrev": 0, + "axes": { + "#": 4249 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4230 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4230 + } + ], + [ + { + "#": 4233 + }, + { + "#": 4234 + }, + { + "#": 4235 + }, + { + "#": 4236 + } + ], + { + "x": 370, + "y": 400, + "index": 0, + "body": { + "#": 4230 + }, + "isInternal": false + }, + { + "x": 405, + "y": 400, + "index": 1, + "body": { + "#": 4230 + }, + "isInternal": false + }, + { + "x": 405, + "y": 435, + "index": 2, + "body": { + "#": 4230 + }, + "isInternal": false + }, + { + "x": 370, + "y": 435, + "index": 3, + "body": { + "#": 4230 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4244 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4246 + }, + "max": { + "#": 4247 + } + }, + { + "x": 370, + "y": 400 + }, + { + "x": 405, + "y": 435 + }, + { + "x": 387.5, + "y": 417.5 + }, + [ + { + "#": 4250 + }, + { + "#": 4251 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 194, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4253 + }, + "angle": 0, + "vertices": { + "#": 4254 + }, + "position": { + "#": 4259 + }, + "force": { + "#": 4260 + }, + "torque": 0, + "positionImpulse": { + "#": 4261 + }, + "constraintImpulse": { + "#": 4262 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4263 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4264 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4265 + }, + "bounds": { + "#": 4267 + }, + "positionPrev": { + "#": 4270 + }, + "anglePrev": 0, + "axes": { + "#": 4271 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4252 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4252 + } + ], + [ + { + "#": 4255 + }, + { + "#": 4256 + }, + { + "#": 4257 + }, + { + "#": 4258 + } + ], + { + "x": 405, + "y": 400, + "index": 0, + "body": { + "#": 4252 + }, + "isInternal": false + }, + { + "x": 440, + "y": 400, + "index": 1, + "body": { + "#": 4252 + }, + "isInternal": false + }, + { + "x": 440, + "y": 435, + "index": 2, + "body": { + "#": 4252 + }, + "isInternal": false + }, + { + "x": 405, + "y": 435, + "index": 3, + "body": { + "#": 4252 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4266 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4268 + }, + "max": { + "#": 4269 + } + }, + { + "x": 405, + "y": 400 + }, + { + "x": 440, + "y": 435 + }, + { + "x": 422.5, + "y": 417.5 + }, + [ + { + "#": 4272 + }, + { + "#": 4273 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 195, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4275 + }, + "angle": 0, + "vertices": { + "#": 4276 + }, + "position": { + "#": 4281 + }, + "force": { + "#": 4282 + }, + "torque": 0, + "positionImpulse": { + "#": 4283 + }, + "constraintImpulse": { + "#": 4284 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4285 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4286 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4287 + }, + "bounds": { + "#": 4289 + }, + "positionPrev": { + "#": 4292 + }, + "anglePrev": 0, + "axes": { + "#": 4293 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4274 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4274 + } + ], + [ + { + "#": 4277 + }, + { + "#": 4278 + }, + { + "#": 4279 + }, + { + "#": 4280 + } + ], + { + "x": 440, + "y": 400, + "index": 0, + "body": { + "#": 4274 + }, + "isInternal": false + }, + { + "x": 475, + "y": 400, + "index": 1, + "body": { + "#": 4274 + }, + "isInternal": false + }, + { + "x": 475, + "y": 435, + "index": 2, + "body": { + "#": 4274 + }, + "isInternal": false + }, + { + "x": 440, + "y": 435, + "index": 3, + "body": { + "#": 4274 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4288 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4290 + }, + "max": { + "#": 4291 + } + }, + { + "x": 440, + "y": 400 + }, + { + "x": 475, + "y": 435 + }, + { + "x": 457.5, + "y": 417.5 + }, + [ + { + "#": 4294 + }, + { + "#": 4295 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 196, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4297 + }, + "angle": 0, + "vertices": { + "#": 4298 + }, + "position": { + "#": 4303 + }, + "force": { + "#": 4304 + }, + "torque": 0, + "positionImpulse": { + "#": 4305 + }, + "constraintImpulse": { + "#": 4306 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4307 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4308 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4309 + }, + "bounds": { + "#": 4311 + }, + "positionPrev": { + "#": 4314 + }, + "anglePrev": 0, + "axes": { + "#": 4315 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4296 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4296 + } + ], + [ + { + "#": 4299 + }, + { + "#": 4300 + }, + { + "#": 4301 + }, + { + "#": 4302 + } + ], + { + "x": 475, + "y": 400, + "index": 0, + "body": { + "#": 4296 + }, + "isInternal": false + }, + { + "x": 510, + "y": 400, + "index": 1, + "body": { + "#": 4296 + }, + "isInternal": false + }, + { + "x": 510, + "y": 435, + "index": 2, + "body": { + "#": 4296 + }, + "isInternal": false + }, + { + "x": 475, + "y": 435, + "index": 3, + "body": { + "#": 4296 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4310 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4312 + }, + "max": { + "#": 4313 + } + }, + { + "x": 475, + "y": 400 + }, + { + "x": 510, + "y": 435 + }, + { + "x": 492.5, + "y": 417.5 + }, + [ + { + "#": 4316 + }, + { + "#": 4317 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 197, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4319 + }, + "angle": 0, + "vertices": { + "#": 4320 + }, + "position": { + "#": 4325 + }, + "force": { + "#": 4326 + }, + "torque": 0, + "positionImpulse": { + "#": 4327 + }, + "constraintImpulse": { + "#": 4328 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4329 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4330 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4331 + }, + "bounds": { + "#": 4333 + }, + "positionPrev": { + "#": 4336 + }, + "anglePrev": 0, + "axes": { + "#": 4337 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4318 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4318 + } + ], + [ + { + "#": 4321 + }, + { + "#": 4322 + }, + { + "#": 4323 + }, + { + "#": 4324 + } + ], + { + "x": 510, + "y": 400, + "index": 0, + "body": { + "#": 4318 + }, + "isInternal": false + }, + { + "x": 545, + "y": 400, + "index": 1, + "body": { + "#": 4318 + }, + "isInternal": false + }, + { + "x": 545, + "y": 435, + "index": 2, + "body": { + "#": 4318 + }, + "isInternal": false + }, + { + "x": 510, + "y": 435, + "index": 3, + "body": { + "#": 4318 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4332 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4334 + }, + "max": { + "#": 4335 + } + }, + { + "x": 510, + "y": 400 + }, + { + "x": 545, + "y": 435 + }, + { + "x": 527.5, + "y": 417.5 + }, + [ + { + "#": 4338 + }, + { + "#": 4339 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 198, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4341 + }, + "angle": 0, + "vertices": { + "#": 4342 + }, + "position": { + "#": 4347 + }, + "force": { + "#": 4348 + }, + "torque": 0, + "positionImpulse": { + "#": 4349 + }, + "constraintImpulse": { + "#": 4350 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4351 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4352 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4353 + }, + "bounds": { + "#": 4355 + }, + "positionPrev": { + "#": 4358 + }, + "anglePrev": 0, + "axes": { + "#": 4359 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4340 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4340 + } + ], + [ + { + "#": 4343 + }, + { + "#": 4344 + }, + { + "#": 4345 + }, + { + "#": 4346 + } + ], + { + "x": 545, + "y": 400, + "index": 0, + "body": { + "#": 4340 + }, + "isInternal": false + }, + { + "x": 580, + "y": 400, + "index": 1, + "body": { + "#": 4340 + }, + "isInternal": false + }, + { + "x": 580, + "y": 435, + "index": 2, + "body": { + "#": 4340 + }, + "isInternal": false + }, + { + "x": 545, + "y": 435, + "index": 3, + "body": { + "#": 4340 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4354 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4356 + }, + "max": { + "#": 4357 + } + }, + { + "x": 545, + "y": 400 + }, + { + "x": 580, + "y": 435 + }, + { + "x": 562.5, + "y": 417.5 + }, + [ + { + "#": 4360 + }, + { + "#": 4361 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 199, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4363 + }, + "angle": 0, + "vertices": { + "#": 4364 + }, + "position": { + "#": 4369 + }, + "force": { + "#": 4370 + }, + "torque": 0, + "positionImpulse": { + "#": 4371 + }, + "constraintImpulse": { + "#": 4372 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4373 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4374 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4375 + }, + "bounds": { + "#": 4377 + }, + "positionPrev": { + "#": 4380 + }, + "anglePrev": 0, + "axes": { + "#": 4381 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4362 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4362 + } + ], + [ + { + "#": 4365 + }, + { + "#": 4366 + }, + { + "#": 4367 + }, + { + "#": 4368 + } + ], + { + "x": 580, + "y": 400, + "index": 0, + "body": { + "#": 4362 + }, + "isInternal": false + }, + { + "x": 615, + "y": 400, + "index": 1, + "body": { + "#": 4362 + }, + "isInternal": false + }, + { + "x": 615, + "y": 435, + "index": 2, + "body": { + "#": 4362 + }, + "isInternal": false + }, + { + "x": 580, + "y": 435, + "index": 3, + "body": { + "#": 4362 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4376 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4378 + }, + "max": { + "#": 4379 + } + }, + { + "x": 580, + "y": 400 + }, + { + "x": 615, + "y": 435 + }, + { + "x": 597.5, + "y": 417.5 + }, + [ + { + "#": 4382 + }, + { + "#": 4383 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 200, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4385 + }, + "angle": 0, + "vertices": { + "#": 4386 + }, + "position": { + "#": 4391 + }, + "force": { + "#": 4392 + }, + "torque": 0, + "positionImpulse": { + "#": 4393 + }, + "constraintImpulse": { + "#": 4394 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4395 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4396 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4397 + }, + "bounds": { + "#": 4399 + }, + "positionPrev": { + "#": 4402 + }, + "anglePrev": 0, + "axes": { + "#": 4403 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4384 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4384 + } + ], + [ + { + "#": 4387 + }, + { + "#": 4388 + }, + { + "#": 4389 + }, + { + "#": 4390 + } + ], + { + "x": 615, + "y": 400, + "index": 0, + "body": { + "#": 4384 + }, + "isInternal": false + }, + { + "x": 650, + "y": 400, + "index": 1, + "body": { + "#": 4384 + }, + "isInternal": false + }, + { + "x": 650, + "y": 435, + "index": 2, + "body": { + "#": 4384 + }, + "isInternal": false + }, + { + "x": 615, + "y": 435, + "index": 3, + "body": { + "#": 4384 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4398 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4400 + }, + "max": { + "#": 4401 + } + }, + { + "x": 615, + "y": 400 + }, + { + "x": 650, + "y": 435 + }, + { + "x": 632.5, + "y": 417.5 + }, + [ + { + "#": 4404 + }, + { + "#": 4405 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 201, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4407 + }, + "angle": 0, + "vertices": { + "#": 4408 + }, + "position": { + "#": 4413 + }, + "force": { + "#": 4414 + }, + "torque": 0, + "positionImpulse": { + "#": 4415 + }, + "constraintImpulse": { + "#": 4416 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4417 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4418 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4419 + }, + "bounds": { + "#": 4421 + }, + "positionPrev": { + "#": 4424 + }, + "anglePrev": 0, + "axes": { + "#": 4425 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4406 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4406 + } + ], + [ + { + "#": 4409 + }, + { + "#": 4410 + }, + { + "#": 4411 + }, + { + "#": 4412 + } + ], + { + "x": 650, + "y": 400, + "index": 0, + "body": { + "#": 4406 + }, + "isInternal": false + }, + { + "x": 685, + "y": 400, + "index": 1, + "body": { + "#": 4406 + }, + "isInternal": false + }, + { + "x": 685, + "y": 435, + "index": 2, + "body": { + "#": 4406 + }, + "isInternal": false + }, + { + "x": 650, + "y": 435, + "index": 3, + "body": { + "#": 4406 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4420 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4422 + }, + "max": { + "#": 4423 + } + }, + { + "x": 650, + "y": 400 + }, + { + "x": 685, + "y": 435 + }, + { + "x": 667.5, + "y": 417.5 + }, + [ + { + "#": 4426 + }, + { + "#": 4427 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 202, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4429 + }, + "angle": 0, + "vertices": { + "#": 4430 + }, + "position": { + "#": 4435 + }, + "force": { + "#": 4436 + }, + "torque": 0, + "positionImpulse": { + "#": 4437 + }, + "constraintImpulse": { + "#": 4438 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4439 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4440 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4441 + }, + "bounds": { + "#": 4443 + }, + "positionPrev": { + "#": 4446 + }, + "anglePrev": 0, + "axes": { + "#": 4447 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4428 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4428 + } + ], + [ + { + "#": 4431 + }, + { + "#": 4432 + }, + { + "#": 4433 + }, + { + "#": 4434 + } + ], + { + "x": 685, + "y": 400, + "index": 0, + "body": { + "#": 4428 + }, + "isInternal": false + }, + { + "x": 720, + "y": 400, + "index": 1, + "body": { + "#": 4428 + }, + "isInternal": false + }, + { + "x": 720, + "y": 435, + "index": 2, + "body": { + "#": 4428 + }, + "isInternal": false + }, + { + "x": 685, + "y": 435, + "index": 3, + "body": { + "#": 4428 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 417.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4442 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4444 + }, + "max": { + "#": 4445 + } + }, + { + "x": 685, + "y": 400 + }, + { + "x": 720, + "y": 435 + }, + { + "x": 702.5, + "y": 417.5 + }, + [ + { + "#": 4448 + }, + { + "#": 4449 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 203, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4451 + }, + "angle": 0, + "vertices": { + "#": 4452 + }, + "position": { + "#": 4457 + }, + "force": { + "#": 4458 + }, + "torque": 0, + "positionImpulse": { + "#": 4459 + }, + "constraintImpulse": { + "#": 4460 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4461 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4462 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4463 + }, + "bounds": { + "#": 4465 + }, + "positionPrev": { + "#": 4468 + }, + "anglePrev": 0, + "axes": { + "#": 4469 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4450 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4450 + } + ], + [ + { + "#": 4453 + }, + { + "#": 4454 + }, + { + "#": 4455 + }, + { + "#": 4456 + } + ], + { + "x": 90, + "y": 435, + "index": 0, + "body": { + "#": 4450 + }, + "isInternal": false + }, + { + "x": 125, + "y": 435, + "index": 1, + "body": { + "#": 4450 + }, + "isInternal": false + }, + { + "x": 125, + "y": 470, + "index": 2, + "body": { + "#": 4450 + }, + "isInternal": false + }, + { + "x": 90, + "y": 470, + "index": 3, + "body": { + "#": 4450 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4464 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4466 + }, + "max": { + "#": 4467 + } + }, + { + "x": 90, + "y": 435 + }, + { + "x": 125, + "y": 470 + }, + { + "x": 107.5, + "y": 452.5 + }, + [ + { + "#": 4470 + }, + { + "#": 4471 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 204, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4473 + }, + "angle": 0, + "vertices": { + "#": 4474 + }, + "position": { + "#": 4479 + }, + "force": { + "#": 4480 + }, + "torque": 0, + "positionImpulse": { + "#": 4481 + }, + "constraintImpulse": { + "#": 4482 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4483 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4484 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4485 + }, + "bounds": { + "#": 4487 + }, + "positionPrev": { + "#": 4490 + }, + "anglePrev": 0, + "axes": { + "#": 4491 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4472 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4472 + } + ], + [ + { + "#": 4475 + }, + { + "#": 4476 + }, + { + "#": 4477 + }, + { + "#": 4478 + } + ], + { + "x": 125, + "y": 435, + "index": 0, + "body": { + "#": 4472 + }, + "isInternal": false + }, + { + "x": 160, + "y": 435, + "index": 1, + "body": { + "#": 4472 + }, + "isInternal": false + }, + { + "x": 160, + "y": 470, + "index": 2, + "body": { + "#": 4472 + }, + "isInternal": false + }, + { + "x": 125, + "y": 470, + "index": 3, + "body": { + "#": 4472 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4486 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4488 + }, + "max": { + "#": 4489 + } + }, + { + "x": 125, + "y": 435 + }, + { + "x": 160, + "y": 470 + }, + { + "x": 142.5, + "y": 452.5 + }, + [ + { + "#": 4492 + }, + { + "#": 4493 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 205, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4495 + }, + "angle": 0, + "vertices": { + "#": 4496 + }, + "position": { + "#": 4501 + }, + "force": { + "#": 4502 + }, + "torque": 0, + "positionImpulse": { + "#": 4503 + }, + "constraintImpulse": { + "#": 4504 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4505 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4506 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4507 + }, + "bounds": { + "#": 4509 + }, + "positionPrev": { + "#": 4512 + }, + "anglePrev": 0, + "axes": { + "#": 4513 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4494 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4494 + } + ], + [ + { + "#": 4497 + }, + { + "#": 4498 + }, + { + "#": 4499 + }, + { + "#": 4500 + } + ], + { + "x": 160, + "y": 435, + "index": 0, + "body": { + "#": 4494 + }, + "isInternal": false + }, + { + "x": 195, + "y": 435, + "index": 1, + "body": { + "#": 4494 + }, + "isInternal": false + }, + { + "x": 195, + "y": 470, + "index": 2, + "body": { + "#": 4494 + }, + "isInternal": false + }, + { + "x": 160, + "y": 470, + "index": 3, + "body": { + "#": 4494 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4508 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4510 + }, + "max": { + "#": 4511 + } + }, + { + "x": 160, + "y": 435 + }, + { + "x": 195, + "y": 470 + }, + { + "x": 177.5, + "y": 452.5 + }, + [ + { + "#": 4514 + }, + { + "#": 4515 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 206, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4517 + }, + "angle": 0, + "vertices": { + "#": 4518 + }, + "position": { + "#": 4523 + }, + "force": { + "#": 4524 + }, + "torque": 0, + "positionImpulse": { + "#": 4525 + }, + "constraintImpulse": { + "#": 4526 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4527 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4528 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4529 + }, + "bounds": { + "#": 4531 + }, + "positionPrev": { + "#": 4534 + }, + "anglePrev": 0, + "axes": { + "#": 4535 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4516 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4516 + } + ], + [ + { + "#": 4519 + }, + { + "#": 4520 + }, + { + "#": 4521 + }, + { + "#": 4522 + } + ], + { + "x": 195, + "y": 435, + "index": 0, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 230, + "y": 435, + "index": 1, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 230, + "y": 470, + "index": 2, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 195, + "y": 470, + "index": 3, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4530 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4532 + }, + "max": { + "#": 4533 + } + }, + { + "x": 195, + "y": 435 + }, + { + "x": 230, + "y": 470 + }, + { + "x": 212.5, + "y": 452.5 + }, + [ + { + "#": 4536 + }, + { + "#": 4537 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 207, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4539 + }, + "angle": 0, + "vertices": { + "#": 4540 + }, + "position": { + "#": 4545 + }, + "force": { + "#": 4546 + }, + "torque": 0, + "positionImpulse": { + "#": 4547 + }, + "constraintImpulse": { + "#": 4548 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4549 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4550 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4551 + }, + "bounds": { + "#": 4553 + }, + "positionPrev": { + "#": 4556 + }, + "anglePrev": 0, + "axes": { + "#": 4557 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4538 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4538 + } + ], + [ + { + "#": 4541 + }, + { + "#": 4542 + }, + { + "#": 4543 + }, + { + "#": 4544 + } + ], + { + "x": 230, + "y": 435, + "index": 0, + "body": { + "#": 4538 + }, + "isInternal": false + }, + { + "x": 265, + "y": 435, + "index": 1, + "body": { + "#": 4538 + }, + "isInternal": false + }, + { + "x": 265, + "y": 470, + "index": 2, + "body": { + "#": 4538 + }, + "isInternal": false + }, + { + "x": 230, + "y": 470, + "index": 3, + "body": { + "#": 4538 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4552 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4554 + }, + "max": { + "#": 4555 + } + }, + { + "x": 230, + "y": 435 + }, + { + "x": 265, + "y": 470 + }, + { + "x": 247.5, + "y": 452.5 + }, + [ + { + "#": 4558 + }, + { + "#": 4559 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 208, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4561 + }, + "angle": 0, + "vertices": { + "#": 4562 + }, + "position": { + "#": 4567 + }, + "force": { + "#": 4568 + }, + "torque": 0, + "positionImpulse": { + "#": 4569 + }, + "constraintImpulse": { + "#": 4570 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4571 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4572 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4573 + }, + "bounds": { + "#": 4575 + }, + "positionPrev": { + "#": 4578 + }, + "anglePrev": 0, + "axes": { + "#": 4579 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4560 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4560 + } + ], + [ + { + "#": 4563 + }, + { + "#": 4564 + }, + { + "#": 4565 + }, + { + "#": 4566 + } + ], + { + "x": 265, + "y": 435, + "index": 0, + "body": { + "#": 4560 + }, + "isInternal": false + }, + { + "x": 300, + "y": 435, + "index": 1, + "body": { + "#": 4560 + }, + "isInternal": false + }, + { + "x": 300, + "y": 470, + "index": 2, + "body": { + "#": 4560 + }, + "isInternal": false + }, + { + "x": 265, + "y": 470, + "index": 3, + "body": { + "#": 4560 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4574 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4576 + }, + "max": { + "#": 4577 + } + }, + { + "x": 265, + "y": 435 + }, + { + "x": 300, + "y": 470 + }, + { + "x": 282.5, + "y": 452.5 + }, + [ + { + "#": 4580 + }, + { + "#": 4581 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 209, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4583 + }, + "angle": 0, + "vertices": { + "#": 4584 + }, + "position": { + "#": 4589 + }, + "force": { + "#": 4590 + }, + "torque": 0, + "positionImpulse": { + "#": 4591 + }, + "constraintImpulse": { + "#": 4592 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4593 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4594 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4595 + }, + "bounds": { + "#": 4597 + }, + "positionPrev": { + "#": 4600 + }, + "anglePrev": 0, + "axes": { + "#": 4601 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4582 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4582 + } + ], + [ + { + "#": 4585 + }, + { + "#": 4586 + }, + { + "#": 4587 + }, + { + "#": 4588 + } + ], + { + "x": 300, + "y": 435, + "index": 0, + "body": { + "#": 4582 + }, + "isInternal": false + }, + { + "x": 335, + "y": 435, + "index": 1, + "body": { + "#": 4582 + }, + "isInternal": false + }, + { + "x": 335, + "y": 470, + "index": 2, + "body": { + "#": 4582 + }, + "isInternal": false + }, + { + "x": 300, + "y": 470, + "index": 3, + "body": { + "#": 4582 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4596 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4598 + }, + "max": { + "#": 4599 + } + }, + { + "x": 300, + "y": 435 + }, + { + "x": 335, + "y": 470 + }, + { + "x": 317.5, + "y": 452.5 + }, + [ + { + "#": 4602 + }, + { + "#": 4603 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 210, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4605 + }, + "angle": 0, + "vertices": { + "#": 4606 + }, + "position": { + "#": 4611 + }, + "force": { + "#": 4612 + }, + "torque": 0, + "positionImpulse": { + "#": 4613 + }, + "constraintImpulse": { + "#": 4614 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4615 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4616 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4617 + }, + "bounds": { + "#": 4619 + }, + "positionPrev": { + "#": 4622 + }, + "anglePrev": 0, + "axes": { + "#": 4623 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4604 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4604 + } + ], + [ + { + "#": 4607 + }, + { + "#": 4608 + }, + { + "#": 4609 + }, + { + "#": 4610 + } + ], + { + "x": 335, + "y": 435, + "index": 0, + "body": { + "#": 4604 + }, + "isInternal": false + }, + { + "x": 370, + "y": 435, + "index": 1, + "body": { + "#": 4604 + }, + "isInternal": false + }, + { + "x": 370, + "y": 470, + "index": 2, + "body": { + "#": 4604 + }, + "isInternal": false + }, + { + "x": 335, + "y": 470, + "index": 3, + "body": { + "#": 4604 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4618 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4620 + }, + "max": { + "#": 4621 + } + }, + { + "x": 335, + "y": 435 + }, + { + "x": 370, + "y": 470 + }, + { + "x": 352.5, + "y": 452.5 + }, + [ + { + "#": 4624 + }, + { + "#": 4625 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 211, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4627 + }, + "angle": 0, + "vertices": { + "#": 4628 + }, + "position": { + "#": 4633 + }, + "force": { + "#": 4634 + }, + "torque": 0, + "positionImpulse": { + "#": 4635 + }, + "constraintImpulse": { + "#": 4636 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4637 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4638 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4639 + }, + "bounds": { + "#": 4641 + }, + "positionPrev": { + "#": 4644 + }, + "anglePrev": 0, + "axes": { + "#": 4645 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4626 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4626 + } + ], + [ + { + "#": 4629 + }, + { + "#": 4630 + }, + { + "#": 4631 + }, + { + "#": 4632 + } + ], + { + "x": 370, + "y": 435, + "index": 0, + "body": { + "#": 4626 + }, + "isInternal": false + }, + { + "x": 405, + "y": 435, + "index": 1, + "body": { + "#": 4626 + }, + "isInternal": false + }, + { + "x": 405, + "y": 470, + "index": 2, + "body": { + "#": 4626 + }, + "isInternal": false + }, + { + "x": 370, + "y": 470, + "index": 3, + "body": { + "#": 4626 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4640 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4642 + }, + "max": { + "#": 4643 + } + }, + { + "x": 370, + "y": 435 + }, + { + "x": 405, + "y": 470 + }, + { + "x": 387.5, + "y": 452.5 + }, + [ + { + "#": 4646 + }, + { + "#": 4647 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 212, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4649 + }, + "angle": 0, + "vertices": { + "#": 4650 + }, + "position": { + "#": 4655 + }, + "force": { + "#": 4656 + }, + "torque": 0, + "positionImpulse": { + "#": 4657 + }, + "constraintImpulse": { + "#": 4658 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4659 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4660 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4661 + }, + "bounds": { + "#": 4663 + }, + "positionPrev": { + "#": 4666 + }, + "anglePrev": 0, + "axes": { + "#": 4667 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4648 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4648 + } + ], + [ + { + "#": 4651 + }, + { + "#": 4652 + }, + { + "#": 4653 + }, + { + "#": 4654 + } + ], + { + "x": 405, + "y": 435, + "index": 0, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 440, + "y": 435, + "index": 1, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 440, + "y": 470, + "index": 2, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 405, + "y": 470, + "index": 3, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4662 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4664 + }, + "max": { + "#": 4665 + } + }, + { + "x": 405, + "y": 435 + }, + { + "x": 440, + "y": 470 + }, + { + "x": 422.5, + "y": 452.5 + }, + [ + { + "#": 4668 + }, + { + "#": 4669 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 213, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4671 + }, + "angle": 0, + "vertices": { + "#": 4672 + }, + "position": { + "#": 4677 + }, + "force": { + "#": 4678 + }, + "torque": 0, + "positionImpulse": { + "#": 4679 + }, + "constraintImpulse": { + "#": 4680 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4681 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4682 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4683 + }, + "bounds": { + "#": 4685 + }, + "positionPrev": { + "#": 4688 + }, + "anglePrev": 0, + "axes": { + "#": 4689 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4670 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4670 + } + ], + [ + { + "#": 4673 + }, + { + "#": 4674 + }, + { + "#": 4675 + }, + { + "#": 4676 + } + ], + { + "x": 440, + "y": 435, + "index": 0, + "body": { + "#": 4670 + }, + "isInternal": false + }, + { + "x": 475, + "y": 435, + "index": 1, + "body": { + "#": 4670 + }, + "isInternal": false + }, + { + "x": 475, + "y": 470, + "index": 2, + "body": { + "#": 4670 + }, + "isInternal": false + }, + { + "x": 440, + "y": 470, + "index": 3, + "body": { + "#": 4670 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4684 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4686 + }, + "max": { + "#": 4687 + } + }, + { + "x": 440, + "y": 435 + }, + { + "x": 475, + "y": 470 + }, + { + "x": 457.5, + "y": 452.5 + }, + [ + { + "#": 4690 + }, + { + "#": 4691 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 214, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4693 + }, + "angle": 0, + "vertices": { + "#": 4694 + }, + "position": { + "#": 4699 + }, + "force": { + "#": 4700 + }, + "torque": 0, + "positionImpulse": { + "#": 4701 + }, + "constraintImpulse": { + "#": 4702 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4703 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4704 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4705 + }, + "bounds": { + "#": 4707 + }, + "positionPrev": { + "#": 4710 + }, + "anglePrev": 0, + "axes": { + "#": 4711 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4692 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4692 + } + ], + [ + { + "#": 4695 + }, + { + "#": 4696 + }, + { + "#": 4697 + }, + { + "#": 4698 + } + ], + { + "x": 475, + "y": 435, + "index": 0, + "body": { + "#": 4692 + }, + "isInternal": false + }, + { + "x": 510, + "y": 435, + "index": 1, + "body": { + "#": 4692 + }, + "isInternal": false + }, + { + "x": 510, + "y": 470, + "index": 2, + "body": { + "#": 4692 + }, + "isInternal": false + }, + { + "x": 475, + "y": 470, + "index": 3, + "body": { + "#": 4692 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4706 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4708 + }, + "max": { + "#": 4709 + } + }, + { + "x": 475, + "y": 435 + }, + { + "x": 510, + "y": 470 + }, + { + "x": 492.5, + "y": 452.5 + }, + [ + { + "#": 4712 + }, + { + "#": 4713 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 215, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4715 + }, + "angle": 0, + "vertices": { + "#": 4716 + }, + "position": { + "#": 4721 + }, + "force": { + "#": 4722 + }, + "torque": 0, + "positionImpulse": { + "#": 4723 + }, + "constraintImpulse": { + "#": 4724 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4725 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4726 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4727 + }, + "bounds": { + "#": 4729 + }, + "positionPrev": { + "#": 4732 + }, + "anglePrev": 0, + "axes": { + "#": 4733 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4714 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4714 + } + ], + [ + { + "#": 4717 + }, + { + "#": 4718 + }, + { + "#": 4719 + }, + { + "#": 4720 + } + ], + { + "x": 510, + "y": 435, + "index": 0, + "body": { + "#": 4714 + }, + "isInternal": false + }, + { + "x": 545, + "y": 435, + "index": 1, + "body": { + "#": 4714 + }, + "isInternal": false + }, + { + "x": 545, + "y": 470, + "index": 2, + "body": { + "#": 4714 + }, + "isInternal": false + }, + { + "x": 510, + "y": 470, + "index": 3, + "body": { + "#": 4714 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4728 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4730 + }, + "max": { + "#": 4731 + } + }, + { + "x": 510, + "y": 435 + }, + { + "x": 545, + "y": 470 + }, + { + "x": 527.5, + "y": 452.5 + }, + [ + { + "#": 4734 + }, + { + "#": 4735 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 216, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4737 + }, + "angle": 0, + "vertices": { + "#": 4738 + }, + "position": { + "#": 4743 + }, + "force": { + "#": 4744 + }, + "torque": 0, + "positionImpulse": { + "#": 4745 + }, + "constraintImpulse": { + "#": 4746 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4747 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4748 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4749 + }, + "bounds": { + "#": 4751 + }, + "positionPrev": { + "#": 4754 + }, + "anglePrev": 0, + "axes": { + "#": 4755 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4736 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4736 + } + ], + [ + { + "#": 4739 + }, + { + "#": 4740 + }, + { + "#": 4741 + }, + { + "#": 4742 + } + ], + { + "x": 545, + "y": 435, + "index": 0, + "body": { + "#": 4736 + }, + "isInternal": false + }, + { + "x": 580, + "y": 435, + "index": 1, + "body": { + "#": 4736 + }, + "isInternal": false + }, + { + "x": 580, + "y": 470, + "index": 2, + "body": { + "#": 4736 + }, + "isInternal": false + }, + { + "x": 545, + "y": 470, + "index": 3, + "body": { + "#": 4736 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4750 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4752 + }, + "max": { + "#": 4753 + } + }, + { + "x": 545, + "y": 435 + }, + { + "x": 580, + "y": 470 + }, + { + "x": 562.5, + "y": 452.5 + }, + [ + { + "#": 4756 + }, + { + "#": 4757 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 217, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4759 + }, + "angle": 0, + "vertices": { + "#": 4760 + }, + "position": { + "#": 4765 + }, + "force": { + "#": 4766 + }, + "torque": 0, + "positionImpulse": { + "#": 4767 + }, + "constraintImpulse": { + "#": 4768 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4769 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4770 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4771 + }, + "bounds": { + "#": 4773 + }, + "positionPrev": { + "#": 4776 + }, + "anglePrev": 0, + "axes": { + "#": 4777 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4758 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4758 + } + ], + [ + { + "#": 4761 + }, + { + "#": 4762 + }, + { + "#": 4763 + }, + { + "#": 4764 + } + ], + { + "x": 580, + "y": 435, + "index": 0, + "body": { + "#": 4758 + }, + "isInternal": false + }, + { + "x": 615, + "y": 435, + "index": 1, + "body": { + "#": 4758 + }, + "isInternal": false + }, + { + "x": 615, + "y": 470, + "index": 2, + "body": { + "#": 4758 + }, + "isInternal": false + }, + { + "x": 580, + "y": 470, + "index": 3, + "body": { + "#": 4758 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4772 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4774 + }, + "max": { + "#": 4775 + } + }, + { + "x": 580, + "y": 435 + }, + { + "x": 615, + "y": 470 + }, + { + "x": 597.5, + "y": 452.5 + }, + [ + { + "#": 4778 + }, + { + "#": 4779 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 218, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4781 + }, + "angle": 0, + "vertices": { + "#": 4782 + }, + "position": { + "#": 4787 + }, + "force": { + "#": 4788 + }, + "torque": 0, + "positionImpulse": { + "#": 4789 + }, + "constraintImpulse": { + "#": 4790 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4791 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4792 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4793 + }, + "bounds": { + "#": 4795 + }, + "positionPrev": { + "#": 4798 + }, + "anglePrev": 0, + "axes": { + "#": 4799 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4780 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4780 + } + ], + [ + { + "#": 4783 + }, + { + "#": 4784 + }, + { + "#": 4785 + }, + { + "#": 4786 + } + ], + { + "x": 615, + "y": 435, + "index": 0, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 650, + "y": 435, + "index": 1, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 650, + "y": 470, + "index": 2, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 615, + "y": 470, + "index": 3, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4794 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4796 + }, + "max": { + "#": 4797 + } + }, + { + "x": 615, + "y": 435 + }, + { + "x": 650, + "y": 470 + }, + { + "x": 632.5, + "y": 452.5 + }, + [ + { + "#": 4800 + }, + { + "#": 4801 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 219, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4803 + }, + "angle": 0, + "vertices": { + "#": 4804 + }, + "position": { + "#": 4809 + }, + "force": { + "#": 4810 + }, + "torque": 0, + "positionImpulse": { + "#": 4811 + }, + "constraintImpulse": { + "#": 4812 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4813 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4814 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4815 + }, + "bounds": { + "#": 4817 + }, + "positionPrev": { + "#": 4820 + }, + "anglePrev": 0, + "axes": { + "#": 4821 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4802 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4802 + } + ], + [ + { + "#": 4805 + }, + { + "#": 4806 + }, + { + "#": 4807 + }, + { + "#": 4808 + } + ], + { + "x": 650, + "y": 435, + "index": 0, + "body": { + "#": 4802 + }, + "isInternal": false + }, + { + "x": 685, + "y": 435, + "index": 1, + "body": { + "#": 4802 + }, + "isInternal": false + }, + { + "x": 685, + "y": 470, + "index": 2, + "body": { + "#": 4802 + }, + "isInternal": false + }, + { + "x": 650, + "y": 470, + "index": 3, + "body": { + "#": 4802 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4816 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4818 + }, + "max": { + "#": 4819 + } + }, + { + "x": 650, + "y": 435 + }, + { + "x": 685, + "y": 470 + }, + { + "x": 667.5, + "y": 452.5 + }, + [ + { + "#": 4822 + }, + { + "#": 4823 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 220, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4825 + }, + "angle": 0, + "vertices": { + "#": 4826 + }, + "position": { + "#": 4831 + }, + "force": { + "#": 4832 + }, + "torque": 0, + "positionImpulse": { + "#": 4833 + }, + "constraintImpulse": { + "#": 4834 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4835 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4836 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4837 + }, + "bounds": { + "#": 4839 + }, + "positionPrev": { + "#": 4842 + }, + "anglePrev": 0, + "axes": { + "#": 4843 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4824 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4824 + } + ], + [ + { + "#": 4827 + }, + { + "#": 4828 + }, + { + "#": 4829 + }, + { + "#": 4830 + } + ], + { + "x": 685, + "y": 435, + "index": 0, + "body": { + "#": 4824 + }, + "isInternal": false + }, + { + "x": 720, + "y": 435, + "index": 1, + "body": { + "#": 4824 + }, + "isInternal": false + }, + { + "x": 720, + "y": 470, + "index": 2, + "body": { + "#": 4824 + }, + "isInternal": false + }, + { + "x": 685, + "y": 470, + "index": 3, + "body": { + "#": 4824 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 452.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4838 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4840 + }, + "max": { + "#": 4841 + } + }, + { + "x": 685, + "y": 435 + }, + { + "x": 720, + "y": 470 + }, + { + "x": 702.5, + "y": 452.5 + }, + [ + { + "#": 4844 + }, + { + "#": 4845 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 221, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4847 + }, + "angle": 0, + "vertices": { + "#": 4848 + }, + "position": { + "#": 4853 + }, + "force": { + "#": 4854 + }, + "torque": 0, + "positionImpulse": { + "#": 4855 + }, + "constraintImpulse": { + "#": 4856 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4857 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4858 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4859 + }, + "bounds": { + "#": 4861 + }, + "positionPrev": { + "#": 4864 + }, + "anglePrev": 0, + "axes": { + "#": 4865 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4846 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4846 + } + ], + [ + { + "#": 4849 + }, + { + "#": 4850 + }, + { + "#": 4851 + }, + { + "#": 4852 + } + ], + { + "x": 90, + "y": 470, + "index": 0, + "body": { + "#": 4846 + }, + "isInternal": false + }, + { + "x": 125, + "y": 470, + "index": 1, + "body": { + "#": 4846 + }, + "isInternal": false + }, + { + "x": 125, + "y": 505, + "index": 2, + "body": { + "#": 4846 + }, + "isInternal": false + }, + { + "x": 90, + "y": 505, + "index": 3, + "body": { + "#": 4846 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4860 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4862 + }, + "max": { + "#": 4863 + } + }, + { + "x": 90, + "y": 470 + }, + { + "x": 125, + "y": 505 + }, + { + "x": 107.5, + "y": 487.5 + }, + [ + { + "#": 4866 + }, + { + "#": 4867 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 222, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4869 + }, + "angle": 0, + "vertices": { + "#": 4870 + }, + "position": { + "#": 4875 + }, + "force": { + "#": 4876 + }, + "torque": 0, + "positionImpulse": { + "#": 4877 + }, + "constraintImpulse": { + "#": 4878 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4879 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4880 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4881 + }, + "bounds": { + "#": 4883 + }, + "positionPrev": { + "#": 4886 + }, + "anglePrev": 0, + "axes": { + "#": 4887 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4868 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4868 + } + ], + [ + { + "#": 4871 + }, + { + "#": 4872 + }, + { + "#": 4873 + }, + { + "#": 4874 + } + ], + { + "x": 125, + "y": 470, + "index": 0, + "body": { + "#": 4868 + }, + "isInternal": false + }, + { + "x": 160, + "y": 470, + "index": 1, + "body": { + "#": 4868 + }, + "isInternal": false + }, + { + "x": 160, + "y": 505, + "index": 2, + "body": { + "#": 4868 + }, + "isInternal": false + }, + { + "x": 125, + "y": 505, + "index": 3, + "body": { + "#": 4868 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4882 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4884 + }, + "max": { + "#": 4885 + } + }, + { + "x": 125, + "y": 470 + }, + { + "x": 160, + "y": 505 + }, + { + "x": 142.5, + "y": 487.5 + }, + [ + { + "#": 4888 + }, + { + "#": 4889 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 223, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4891 + }, + "angle": 0, + "vertices": { + "#": 4892 + }, + "position": { + "#": 4897 + }, + "force": { + "#": 4898 + }, + "torque": 0, + "positionImpulse": { + "#": 4899 + }, + "constraintImpulse": { + "#": 4900 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4901 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4902 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4903 + }, + "bounds": { + "#": 4905 + }, + "positionPrev": { + "#": 4908 + }, + "anglePrev": 0, + "axes": { + "#": 4909 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4890 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4890 + } + ], + [ + { + "#": 4893 + }, + { + "#": 4894 + }, + { + "#": 4895 + }, + { + "#": 4896 + } + ], + { + "x": 160, + "y": 470, + "index": 0, + "body": { + "#": 4890 + }, + "isInternal": false + }, + { + "x": 195, + "y": 470, + "index": 1, + "body": { + "#": 4890 + }, + "isInternal": false + }, + { + "x": 195, + "y": 505, + "index": 2, + "body": { + "#": 4890 + }, + "isInternal": false + }, + { + "x": 160, + "y": 505, + "index": 3, + "body": { + "#": 4890 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4904 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4906 + }, + "max": { + "#": 4907 + } + }, + { + "x": 160, + "y": 470 + }, + { + "x": 195, + "y": 505 + }, + { + "x": 177.5, + "y": 487.5 + }, + [ + { + "#": 4910 + }, + { + "#": 4911 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 224, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4913 + }, + "angle": 0, + "vertices": { + "#": 4914 + }, + "position": { + "#": 4919 + }, + "force": { + "#": 4920 + }, + "torque": 0, + "positionImpulse": { + "#": 4921 + }, + "constraintImpulse": { + "#": 4922 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4923 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4924 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4925 + }, + "bounds": { + "#": 4927 + }, + "positionPrev": { + "#": 4930 + }, + "anglePrev": 0, + "axes": { + "#": 4931 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4912 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4912 + } + ], + [ + { + "#": 4915 + }, + { + "#": 4916 + }, + { + "#": 4917 + }, + { + "#": 4918 + } + ], + { + "x": 195, + "y": 470, + "index": 0, + "body": { + "#": 4912 + }, + "isInternal": false + }, + { + "x": 230, + "y": 470, + "index": 1, + "body": { + "#": 4912 + }, + "isInternal": false + }, + { + "x": 230, + "y": 505, + "index": 2, + "body": { + "#": 4912 + }, + "isInternal": false + }, + { + "x": 195, + "y": 505, + "index": 3, + "body": { + "#": 4912 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4926 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4928 + }, + "max": { + "#": 4929 + } + }, + { + "x": 195, + "y": 470 + }, + { + "x": 230, + "y": 505 + }, + { + "x": 212.5, + "y": 487.5 + }, + [ + { + "#": 4932 + }, + { + "#": 4933 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 225, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4935 + }, + "angle": 0, + "vertices": { + "#": 4936 + }, + "position": { + "#": 4941 + }, + "force": { + "#": 4942 + }, + "torque": 0, + "positionImpulse": { + "#": 4943 + }, + "constraintImpulse": { + "#": 4944 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4945 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4946 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4947 + }, + "bounds": { + "#": 4949 + }, + "positionPrev": { + "#": 4952 + }, + "anglePrev": 0, + "axes": { + "#": 4953 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4934 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4934 + } + ], + [ + { + "#": 4937 + }, + { + "#": 4938 + }, + { + "#": 4939 + }, + { + "#": 4940 + } + ], + { + "x": 230, + "y": 470, + "index": 0, + "body": { + "#": 4934 + }, + "isInternal": false + }, + { + "x": 265, + "y": 470, + "index": 1, + "body": { + "#": 4934 + }, + "isInternal": false + }, + { + "x": 265, + "y": 505, + "index": 2, + "body": { + "#": 4934 + }, + "isInternal": false + }, + { + "x": 230, + "y": 505, + "index": 3, + "body": { + "#": 4934 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4948 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4950 + }, + "max": { + "#": 4951 + } + }, + { + "x": 230, + "y": 470 + }, + { + "x": 265, + "y": 505 + }, + { + "x": 247.5, + "y": 487.5 + }, + [ + { + "#": 4954 + }, + { + "#": 4955 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 226, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4957 + }, + "angle": 0, + "vertices": { + "#": 4958 + }, + "position": { + "#": 4963 + }, + "force": { + "#": 4964 + }, + "torque": 0, + "positionImpulse": { + "#": 4965 + }, + "constraintImpulse": { + "#": 4966 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4967 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4968 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4969 + }, + "bounds": { + "#": 4971 + }, + "positionPrev": { + "#": 4974 + }, + "anglePrev": 0, + "axes": { + "#": 4975 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4956 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4956 + } + ], + [ + { + "#": 4959 + }, + { + "#": 4960 + }, + { + "#": 4961 + }, + { + "#": 4962 + } + ], + { + "x": 265, + "y": 470, + "index": 0, + "body": { + "#": 4956 + }, + "isInternal": false + }, + { + "x": 300, + "y": 470, + "index": 1, + "body": { + "#": 4956 + }, + "isInternal": false + }, + { + "x": 300, + "y": 505, + "index": 2, + "body": { + "#": 4956 + }, + "isInternal": false + }, + { + "x": 265, + "y": 505, + "index": 3, + "body": { + "#": 4956 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4970 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4972 + }, + "max": { + "#": 4973 + } + }, + { + "x": 265, + "y": 470 + }, + { + "x": 300, + "y": 505 + }, + { + "x": 282.5, + "y": 487.5 + }, + [ + { + "#": 4976 + }, + { + "#": 4977 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 227, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4979 + }, + "angle": 0, + "vertices": { + "#": 4980 + }, + "position": { + "#": 4985 + }, + "force": { + "#": 4986 + }, + "torque": 0, + "positionImpulse": { + "#": 4987 + }, + "constraintImpulse": { + "#": 4988 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4989 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4990 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4991 + }, + "bounds": { + "#": 4993 + }, + "positionPrev": { + "#": 4996 + }, + "anglePrev": 0, + "axes": { + "#": 4997 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4978 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4978 + } + ], + [ + { + "#": 4981 + }, + { + "#": 4982 + }, + { + "#": 4983 + }, + { + "#": 4984 + } + ], + { + "x": 300, + "y": 470, + "index": 0, + "body": { + "#": 4978 + }, + "isInternal": false + }, + { + "x": 335, + "y": 470, + "index": 1, + "body": { + "#": 4978 + }, + "isInternal": false + }, + { + "x": 335, + "y": 505, + "index": 2, + "body": { + "#": 4978 + }, + "isInternal": false + }, + { + "x": 300, + "y": 505, + "index": 3, + "body": { + "#": 4978 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4992 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4994 + }, + "max": { + "#": 4995 + } + }, + { + "x": 300, + "y": 470 + }, + { + "x": 335, + "y": 505 + }, + { + "x": 317.5, + "y": 487.5 + }, + [ + { + "#": 4998 + }, + { + "#": 4999 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 228, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5001 + }, + "angle": 0, + "vertices": { + "#": 5002 + }, + "position": { + "#": 5007 + }, + "force": { + "#": 5008 + }, + "torque": 0, + "positionImpulse": { + "#": 5009 + }, + "constraintImpulse": { + "#": 5010 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5011 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5012 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5013 + }, + "bounds": { + "#": 5015 + }, + "positionPrev": { + "#": 5018 + }, + "anglePrev": 0, + "axes": { + "#": 5019 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5000 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5000 + } + ], + [ + { + "#": 5003 + }, + { + "#": 5004 + }, + { + "#": 5005 + }, + { + "#": 5006 + } + ], + { + "x": 335, + "y": 470, + "index": 0, + "body": { + "#": 5000 + }, + "isInternal": false + }, + { + "x": 370, + "y": 470, + "index": 1, + "body": { + "#": 5000 + }, + "isInternal": false + }, + { + "x": 370, + "y": 505, + "index": 2, + "body": { + "#": 5000 + }, + "isInternal": false + }, + { + "x": 335, + "y": 505, + "index": 3, + "body": { + "#": 5000 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5014 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5016 + }, + "max": { + "#": 5017 + } + }, + { + "x": 335, + "y": 470 + }, + { + "x": 370, + "y": 505 + }, + { + "x": 352.5, + "y": 487.5 + }, + [ + { + "#": 5020 + }, + { + "#": 5021 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 229, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5023 + }, + "angle": 0, + "vertices": { + "#": 5024 + }, + "position": { + "#": 5029 + }, + "force": { + "#": 5030 + }, + "torque": 0, + "positionImpulse": { + "#": 5031 + }, + "constraintImpulse": { + "#": 5032 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5033 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5034 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5035 + }, + "bounds": { + "#": 5037 + }, + "positionPrev": { + "#": 5040 + }, + "anglePrev": 0, + "axes": { + "#": 5041 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5022 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5022 + } + ], + [ + { + "#": 5025 + }, + { + "#": 5026 + }, + { + "#": 5027 + }, + { + "#": 5028 + } + ], + { + "x": 370, + "y": 470, + "index": 0, + "body": { + "#": 5022 + }, + "isInternal": false + }, + { + "x": 405, + "y": 470, + "index": 1, + "body": { + "#": 5022 + }, + "isInternal": false + }, + { + "x": 405, + "y": 505, + "index": 2, + "body": { + "#": 5022 + }, + "isInternal": false + }, + { + "x": 370, + "y": 505, + "index": 3, + "body": { + "#": 5022 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5036 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5038 + }, + "max": { + "#": 5039 + } + }, + { + "x": 370, + "y": 470 + }, + { + "x": 405, + "y": 505 + }, + { + "x": 387.5, + "y": 487.5 + }, + [ + { + "#": 5042 + }, + { + "#": 5043 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 230, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5045 + }, + "angle": 0, + "vertices": { + "#": 5046 + }, + "position": { + "#": 5051 + }, + "force": { + "#": 5052 + }, + "torque": 0, + "positionImpulse": { + "#": 5053 + }, + "constraintImpulse": { + "#": 5054 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5055 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5056 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5057 + }, + "bounds": { + "#": 5059 + }, + "positionPrev": { + "#": 5062 + }, + "anglePrev": 0, + "axes": { + "#": 5063 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5044 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5044 + } + ], + [ + { + "#": 5047 + }, + { + "#": 5048 + }, + { + "#": 5049 + }, + { + "#": 5050 + } + ], + { + "x": 405, + "y": 470, + "index": 0, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 440, + "y": 470, + "index": 1, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 440, + "y": 505, + "index": 2, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 405, + "y": 505, + "index": 3, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5058 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5060 + }, + "max": { + "#": 5061 + } + }, + { + "x": 405, + "y": 470 + }, + { + "x": 440, + "y": 505 + }, + { + "x": 422.5, + "y": 487.5 + }, + [ + { + "#": 5064 + }, + { + "#": 5065 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 231, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5067 + }, + "angle": 0, + "vertices": { + "#": 5068 + }, + "position": { + "#": 5073 + }, + "force": { + "#": 5074 + }, + "torque": 0, + "positionImpulse": { + "#": 5075 + }, + "constraintImpulse": { + "#": 5076 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5077 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5078 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5079 + }, + "bounds": { + "#": 5081 + }, + "positionPrev": { + "#": 5084 + }, + "anglePrev": 0, + "axes": { + "#": 5085 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5066 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5066 + } + ], + [ + { + "#": 5069 + }, + { + "#": 5070 + }, + { + "#": 5071 + }, + { + "#": 5072 + } + ], + { + "x": 440, + "y": 470, + "index": 0, + "body": { + "#": 5066 + }, + "isInternal": false + }, + { + "x": 475, + "y": 470, + "index": 1, + "body": { + "#": 5066 + }, + "isInternal": false + }, + { + "x": 475, + "y": 505, + "index": 2, + "body": { + "#": 5066 + }, + "isInternal": false + }, + { + "x": 440, + "y": 505, + "index": 3, + "body": { + "#": 5066 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5080 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5082 + }, + "max": { + "#": 5083 + } + }, + { + "x": 440, + "y": 470 + }, + { + "x": 475, + "y": 505 + }, + { + "x": 457.5, + "y": 487.5 + }, + [ + { + "#": 5086 + }, + { + "#": 5087 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 232, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5089 + }, + "angle": 0, + "vertices": { + "#": 5090 + }, + "position": { + "#": 5095 + }, + "force": { + "#": 5096 + }, + "torque": 0, + "positionImpulse": { + "#": 5097 + }, + "constraintImpulse": { + "#": 5098 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5099 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5100 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5101 + }, + "bounds": { + "#": 5103 + }, + "positionPrev": { + "#": 5106 + }, + "anglePrev": 0, + "axes": { + "#": 5107 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5088 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5088 + } + ], + [ + { + "#": 5091 + }, + { + "#": 5092 + }, + { + "#": 5093 + }, + { + "#": 5094 + } + ], + { + "x": 475, + "y": 470, + "index": 0, + "body": { + "#": 5088 + }, + "isInternal": false + }, + { + "x": 510, + "y": 470, + "index": 1, + "body": { + "#": 5088 + }, + "isInternal": false + }, + { + "x": 510, + "y": 505, + "index": 2, + "body": { + "#": 5088 + }, + "isInternal": false + }, + { + "x": 475, + "y": 505, + "index": 3, + "body": { + "#": 5088 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5102 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5104 + }, + "max": { + "#": 5105 + } + }, + { + "x": 475, + "y": 470 + }, + { + "x": 510, + "y": 505 + }, + { + "x": 492.5, + "y": 487.5 + }, + [ + { + "#": 5108 + }, + { + "#": 5109 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 233, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5111 + }, + "angle": 0, + "vertices": { + "#": 5112 + }, + "position": { + "#": 5117 + }, + "force": { + "#": 5118 + }, + "torque": 0, + "positionImpulse": { + "#": 5119 + }, + "constraintImpulse": { + "#": 5120 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5121 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5122 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5123 + }, + "bounds": { + "#": 5125 + }, + "positionPrev": { + "#": 5128 + }, + "anglePrev": 0, + "axes": { + "#": 5129 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5110 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5110 + } + ], + [ + { + "#": 5113 + }, + { + "#": 5114 + }, + { + "#": 5115 + }, + { + "#": 5116 + } + ], + { + "x": 510, + "y": 470, + "index": 0, + "body": { + "#": 5110 + }, + "isInternal": false + }, + { + "x": 545, + "y": 470, + "index": 1, + "body": { + "#": 5110 + }, + "isInternal": false + }, + { + "x": 545, + "y": 505, + "index": 2, + "body": { + "#": 5110 + }, + "isInternal": false + }, + { + "x": 510, + "y": 505, + "index": 3, + "body": { + "#": 5110 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5124 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5126 + }, + "max": { + "#": 5127 + } + }, + { + "x": 510, + "y": 470 + }, + { + "x": 545, + "y": 505 + }, + { + "x": 527.5, + "y": 487.5 + }, + [ + { + "#": 5130 + }, + { + "#": 5131 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 234, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5133 + }, + "angle": 0, + "vertices": { + "#": 5134 + }, + "position": { + "#": 5139 + }, + "force": { + "#": 5140 + }, + "torque": 0, + "positionImpulse": { + "#": 5141 + }, + "constraintImpulse": { + "#": 5142 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5143 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5144 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5145 + }, + "bounds": { + "#": 5147 + }, + "positionPrev": { + "#": 5150 + }, + "anglePrev": 0, + "axes": { + "#": 5151 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5132 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5132 + } + ], + [ + { + "#": 5135 + }, + { + "#": 5136 + }, + { + "#": 5137 + }, + { + "#": 5138 + } + ], + { + "x": 545, + "y": 470, + "index": 0, + "body": { + "#": 5132 + }, + "isInternal": false + }, + { + "x": 580, + "y": 470, + "index": 1, + "body": { + "#": 5132 + }, + "isInternal": false + }, + { + "x": 580, + "y": 505, + "index": 2, + "body": { + "#": 5132 + }, + "isInternal": false + }, + { + "x": 545, + "y": 505, + "index": 3, + "body": { + "#": 5132 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5146 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5148 + }, + "max": { + "#": 5149 + } + }, + { + "x": 545, + "y": 470 + }, + { + "x": 580, + "y": 505 + }, + { + "x": 562.5, + "y": 487.5 + }, + [ + { + "#": 5152 + }, + { + "#": 5153 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 235, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5155 + }, + "angle": 0, + "vertices": { + "#": 5156 + }, + "position": { + "#": 5161 + }, + "force": { + "#": 5162 + }, + "torque": 0, + "positionImpulse": { + "#": 5163 + }, + "constraintImpulse": { + "#": 5164 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5165 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5166 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5167 + }, + "bounds": { + "#": 5169 + }, + "positionPrev": { + "#": 5172 + }, + "anglePrev": 0, + "axes": { + "#": 5173 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5154 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5154 + } + ], + [ + { + "#": 5157 + }, + { + "#": 5158 + }, + { + "#": 5159 + }, + { + "#": 5160 + } + ], + { + "x": 580, + "y": 470, + "index": 0, + "body": { + "#": 5154 + }, + "isInternal": false + }, + { + "x": 615, + "y": 470, + "index": 1, + "body": { + "#": 5154 + }, + "isInternal": false + }, + { + "x": 615, + "y": 505, + "index": 2, + "body": { + "#": 5154 + }, + "isInternal": false + }, + { + "x": 580, + "y": 505, + "index": 3, + "body": { + "#": 5154 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5168 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5170 + }, + "max": { + "#": 5171 + } + }, + { + "x": 580, + "y": 470 + }, + { + "x": 615, + "y": 505 + }, + { + "x": 597.5, + "y": 487.5 + }, + [ + { + "#": 5174 + }, + { + "#": 5175 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 236, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5177 + }, + "angle": 0, + "vertices": { + "#": 5178 + }, + "position": { + "#": 5183 + }, + "force": { + "#": 5184 + }, + "torque": 0, + "positionImpulse": { + "#": 5185 + }, + "constraintImpulse": { + "#": 5186 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5187 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5188 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5189 + }, + "bounds": { + "#": 5191 + }, + "positionPrev": { + "#": 5194 + }, + "anglePrev": 0, + "axes": { + "#": 5195 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5176 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5176 + } + ], + [ + { + "#": 5179 + }, + { + "#": 5180 + }, + { + "#": 5181 + }, + { + "#": 5182 + } + ], + { + "x": 615, + "y": 470, + "index": 0, + "body": { + "#": 5176 + }, + "isInternal": false + }, + { + "x": 650, + "y": 470, + "index": 1, + "body": { + "#": 5176 + }, + "isInternal": false + }, + { + "x": 650, + "y": 505, + "index": 2, + "body": { + "#": 5176 + }, + "isInternal": false + }, + { + "x": 615, + "y": 505, + "index": 3, + "body": { + "#": 5176 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5190 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5192 + }, + "max": { + "#": 5193 + } + }, + { + "x": 615, + "y": 470 + }, + { + "x": 650, + "y": 505 + }, + { + "x": 632.5, + "y": 487.5 + }, + [ + { + "#": 5196 + }, + { + "#": 5197 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 237, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5199 + }, + "angle": 0, + "vertices": { + "#": 5200 + }, + "position": { + "#": 5205 + }, + "force": { + "#": 5206 + }, + "torque": 0, + "positionImpulse": { + "#": 5207 + }, + "constraintImpulse": { + "#": 5208 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5209 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5210 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5211 + }, + "bounds": { + "#": 5213 + }, + "positionPrev": { + "#": 5216 + }, + "anglePrev": 0, + "axes": { + "#": 5217 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5198 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5198 + } + ], + [ + { + "#": 5201 + }, + { + "#": 5202 + }, + { + "#": 5203 + }, + { + "#": 5204 + } + ], + { + "x": 650, + "y": 470, + "index": 0, + "body": { + "#": 5198 + }, + "isInternal": false + }, + { + "x": 685, + "y": 470, + "index": 1, + "body": { + "#": 5198 + }, + "isInternal": false + }, + { + "x": 685, + "y": 505, + "index": 2, + "body": { + "#": 5198 + }, + "isInternal": false + }, + { + "x": 650, + "y": 505, + "index": 3, + "body": { + "#": 5198 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5212 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5214 + }, + "max": { + "#": 5215 + } + }, + { + "x": 650, + "y": 470 + }, + { + "x": 685, + "y": 505 + }, + { + "x": 667.5, + "y": 487.5 + }, + [ + { + "#": 5218 + }, + { + "#": 5219 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 238, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5221 + }, + "angle": 0, + "vertices": { + "#": 5222 + }, + "position": { + "#": 5227 + }, + "force": { + "#": 5228 + }, + "torque": 0, + "positionImpulse": { + "#": 5229 + }, + "constraintImpulse": { + "#": 5230 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5231 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5232 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5233 + }, + "bounds": { + "#": 5235 + }, + "positionPrev": { + "#": 5238 + }, + "anglePrev": 0, + "axes": { + "#": 5239 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5220 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5220 + } + ], + [ + { + "#": 5223 + }, + { + "#": 5224 + }, + { + "#": 5225 + }, + { + "#": 5226 + } + ], + { + "x": 685, + "y": 470, + "index": 0, + "body": { + "#": 5220 + }, + "isInternal": false + }, + { + "x": 720, + "y": 470, + "index": 1, + "body": { + "#": 5220 + }, + "isInternal": false + }, + { + "x": 720, + "y": 505, + "index": 2, + "body": { + "#": 5220 + }, + "isInternal": false + }, + { + "x": 685, + "y": 505, + "index": 3, + "body": { + "#": 5220 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 487.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5234 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5236 + }, + "max": { + "#": 5237 + } + }, + { + "x": 685, + "y": 470 + }, + { + "x": 720, + "y": 505 + }, + { + "x": 702.5, + "y": 487.5 + }, + [ + { + "#": 5240 + }, + { + "#": 5241 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 239, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5243 + }, + "angle": 0, + "vertices": { + "#": 5244 + }, + "position": { + "#": 5249 + }, + "force": { + "#": 5250 + }, + "torque": 0, + "positionImpulse": { + "#": 5251 + }, + "constraintImpulse": { + "#": 5252 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5253 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5254 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5255 + }, + "bounds": { + "#": 5257 + }, + "positionPrev": { + "#": 5260 + }, + "anglePrev": 0, + "axes": { + "#": 5261 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5242 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5242 + } + ], + [ + { + "#": 5245 + }, + { + "#": 5246 + }, + { + "#": 5247 + }, + { + "#": 5248 + } + ], + { + "x": 90, + "y": 505, + "index": 0, + "body": { + "#": 5242 + }, + "isInternal": false + }, + { + "x": 125, + "y": 505, + "index": 1, + "body": { + "#": 5242 + }, + "isInternal": false + }, + { + "x": 125, + "y": 540, + "index": 2, + "body": { + "#": 5242 + }, + "isInternal": false + }, + { + "x": 90, + "y": 540, + "index": 3, + "body": { + "#": 5242 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5256 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5258 + }, + "max": { + "#": 5259 + } + }, + { + "x": 90, + "y": 505 + }, + { + "x": 125, + "y": 540 + }, + { + "x": 107.5, + "y": 522.5 + }, + [ + { + "#": 5262 + }, + { + "#": 5263 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 240, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5265 + }, + "angle": 0, + "vertices": { + "#": 5266 + }, + "position": { + "#": 5271 + }, + "force": { + "#": 5272 + }, + "torque": 0, + "positionImpulse": { + "#": 5273 + }, + "constraintImpulse": { + "#": 5274 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5275 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5276 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5277 + }, + "bounds": { + "#": 5279 + }, + "positionPrev": { + "#": 5282 + }, + "anglePrev": 0, + "axes": { + "#": 5283 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5264 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5264 + } + ], + [ + { + "#": 5267 + }, + { + "#": 5268 + }, + { + "#": 5269 + }, + { + "#": 5270 + } + ], + { + "x": 125, + "y": 505, + "index": 0, + "body": { + "#": 5264 + }, + "isInternal": false + }, + { + "x": 160, + "y": 505, + "index": 1, + "body": { + "#": 5264 + }, + "isInternal": false + }, + { + "x": 160, + "y": 540, + "index": 2, + "body": { + "#": 5264 + }, + "isInternal": false + }, + { + "x": 125, + "y": 540, + "index": 3, + "body": { + "#": 5264 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5278 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5280 + }, + "max": { + "#": 5281 + } + }, + { + "x": 125, + "y": 505 + }, + { + "x": 160, + "y": 540 + }, + { + "x": 142.5, + "y": 522.5 + }, + [ + { + "#": 5284 + }, + { + "#": 5285 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 241, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5287 + }, + "angle": 0, + "vertices": { + "#": 5288 + }, + "position": { + "#": 5293 + }, + "force": { + "#": 5294 + }, + "torque": 0, + "positionImpulse": { + "#": 5295 + }, + "constraintImpulse": { + "#": 5296 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5297 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5298 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5299 + }, + "bounds": { + "#": 5301 + }, + "positionPrev": { + "#": 5304 + }, + "anglePrev": 0, + "axes": { + "#": 5305 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5286 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5286 + } + ], + [ + { + "#": 5289 + }, + { + "#": 5290 + }, + { + "#": 5291 + }, + { + "#": 5292 + } + ], + { + "x": 160, + "y": 505, + "index": 0, + "body": { + "#": 5286 + }, + "isInternal": false + }, + { + "x": 195, + "y": 505, + "index": 1, + "body": { + "#": 5286 + }, + "isInternal": false + }, + { + "x": 195, + "y": 540, + "index": 2, + "body": { + "#": 5286 + }, + "isInternal": false + }, + { + "x": 160, + "y": 540, + "index": 3, + "body": { + "#": 5286 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5300 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5302 + }, + "max": { + "#": 5303 + } + }, + { + "x": 160, + "y": 505 + }, + { + "x": 195, + "y": 540 + }, + { + "x": 177.5, + "y": 522.5 + }, + [ + { + "#": 5306 + }, + { + "#": 5307 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 242, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5309 + }, + "angle": 0, + "vertices": { + "#": 5310 + }, + "position": { + "#": 5315 + }, + "force": { + "#": 5316 + }, + "torque": 0, + "positionImpulse": { + "#": 5317 + }, + "constraintImpulse": { + "#": 5318 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5319 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5320 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5321 + }, + "bounds": { + "#": 5323 + }, + "positionPrev": { + "#": 5326 + }, + "anglePrev": 0, + "axes": { + "#": 5327 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5308 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5308 + } + ], + [ + { + "#": 5311 + }, + { + "#": 5312 + }, + { + "#": 5313 + }, + { + "#": 5314 + } + ], + { + "x": 195, + "y": 505, + "index": 0, + "body": { + "#": 5308 + }, + "isInternal": false + }, + { + "x": 230, + "y": 505, + "index": 1, + "body": { + "#": 5308 + }, + "isInternal": false + }, + { + "x": 230, + "y": 540, + "index": 2, + "body": { + "#": 5308 + }, + "isInternal": false + }, + { + "x": 195, + "y": 540, + "index": 3, + "body": { + "#": 5308 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5322 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5324 + }, + "max": { + "#": 5325 + } + }, + { + "x": 195, + "y": 505 + }, + { + "x": 230, + "y": 540 + }, + { + "x": 212.5, + "y": 522.5 + }, + [ + { + "#": 5328 + }, + { + "#": 5329 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 243, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5331 + }, + "angle": 0, + "vertices": { + "#": 5332 + }, + "position": { + "#": 5337 + }, + "force": { + "#": 5338 + }, + "torque": 0, + "positionImpulse": { + "#": 5339 + }, + "constraintImpulse": { + "#": 5340 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5341 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5342 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5343 + }, + "bounds": { + "#": 5345 + }, + "positionPrev": { + "#": 5348 + }, + "anglePrev": 0, + "axes": { + "#": 5349 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5330 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5330 + } + ], + [ + { + "#": 5333 + }, + { + "#": 5334 + }, + { + "#": 5335 + }, + { + "#": 5336 + } + ], + { + "x": 230, + "y": 505, + "index": 0, + "body": { + "#": 5330 + }, + "isInternal": false + }, + { + "x": 265, + "y": 505, + "index": 1, + "body": { + "#": 5330 + }, + "isInternal": false + }, + { + "x": 265, + "y": 540, + "index": 2, + "body": { + "#": 5330 + }, + "isInternal": false + }, + { + "x": 230, + "y": 540, + "index": 3, + "body": { + "#": 5330 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5344 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5346 + }, + "max": { + "#": 5347 + } + }, + { + "x": 230, + "y": 505 + }, + { + "x": 265, + "y": 540 + }, + { + "x": 247.5, + "y": 522.5 + }, + [ + { + "#": 5350 + }, + { + "#": 5351 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 244, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5353 + }, + "angle": 0, + "vertices": { + "#": 5354 + }, + "position": { + "#": 5359 + }, + "force": { + "#": 5360 + }, + "torque": 0, + "positionImpulse": { + "#": 5361 + }, + "constraintImpulse": { + "#": 5362 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5363 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5364 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5365 + }, + "bounds": { + "#": 5367 + }, + "positionPrev": { + "#": 5370 + }, + "anglePrev": 0, + "axes": { + "#": 5371 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5352 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5352 + } + ], + [ + { + "#": 5355 + }, + { + "#": 5356 + }, + { + "#": 5357 + }, + { + "#": 5358 + } + ], + { + "x": 265, + "y": 505, + "index": 0, + "body": { + "#": 5352 + }, + "isInternal": false + }, + { + "x": 300, + "y": 505, + "index": 1, + "body": { + "#": 5352 + }, + "isInternal": false + }, + { + "x": 300, + "y": 540, + "index": 2, + "body": { + "#": 5352 + }, + "isInternal": false + }, + { + "x": 265, + "y": 540, + "index": 3, + "body": { + "#": 5352 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5366 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5368 + }, + "max": { + "#": 5369 + } + }, + { + "x": 265, + "y": 505 + }, + { + "x": 300, + "y": 540 + }, + { + "x": 282.5, + "y": 522.5 + }, + [ + { + "#": 5372 + }, + { + "#": 5373 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 245, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5375 + }, + "angle": 0, + "vertices": { + "#": 5376 + }, + "position": { + "#": 5381 + }, + "force": { + "#": 5382 + }, + "torque": 0, + "positionImpulse": { + "#": 5383 + }, + "constraintImpulse": { + "#": 5384 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5385 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5386 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5387 + }, + "bounds": { + "#": 5389 + }, + "positionPrev": { + "#": 5392 + }, + "anglePrev": 0, + "axes": { + "#": 5393 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5374 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5374 + } + ], + [ + { + "#": 5377 + }, + { + "#": 5378 + }, + { + "#": 5379 + }, + { + "#": 5380 + } + ], + { + "x": 300, + "y": 505, + "index": 0, + "body": { + "#": 5374 + }, + "isInternal": false + }, + { + "x": 335, + "y": 505, + "index": 1, + "body": { + "#": 5374 + }, + "isInternal": false + }, + { + "x": 335, + "y": 540, + "index": 2, + "body": { + "#": 5374 + }, + "isInternal": false + }, + { + "x": 300, + "y": 540, + "index": 3, + "body": { + "#": 5374 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5388 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5390 + }, + "max": { + "#": 5391 + } + }, + { + "x": 300, + "y": 505 + }, + { + "x": 335, + "y": 540 + }, + { + "x": 317.5, + "y": 522.5 + }, + [ + { + "#": 5394 + }, + { + "#": 5395 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 246, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5397 + }, + "angle": 0, + "vertices": { + "#": 5398 + }, + "position": { + "#": 5403 + }, + "force": { + "#": 5404 + }, + "torque": 0, + "positionImpulse": { + "#": 5405 + }, + "constraintImpulse": { + "#": 5406 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5407 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5408 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5409 + }, + "bounds": { + "#": 5411 + }, + "positionPrev": { + "#": 5414 + }, + "anglePrev": 0, + "axes": { + "#": 5415 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5396 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5396 + } + ], + [ + { + "#": 5399 + }, + { + "#": 5400 + }, + { + "#": 5401 + }, + { + "#": 5402 + } + ], + { + "x": 335, + "y": 505, + "index": 0, + "body": { + "#": 5396 + }, + "isInternal": false + }, + { + "x": 370, + "y": 505, + "index": 1, + "body": { + "#": 5396 + }, + "isInternal": false + }, + { + "x": 370, + "y": 540, + "index": 2, + "body": { + "#": 5396 + }, + "isInternal": false + }, + { + "x": 335, + "y": 540, + "index": 3, + "body": { + "#": 5396 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5410 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5412 + }, + "max": { + "#": 5413 + } + }, + { + "x": 335, + "y": 505 + }, + { + "x": 370, + "y": 540 + }, + { + "x": 352.5, + "y": 522.5 + }, + [ + { + "#": 5416 + }, + { + "#": 5417 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 247, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5419 + }, + "angle": 0, + "vertices": { + "#": 5420 + }, + "position": { + "#": 5425 + }, + "force": { + "#": 5426 + }, + "torque": 0, + "positionImpulse": { + "#": 5427 + }, + "constraintImpulse": { + "#": 5428 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5429 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5430 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5431 + }, + "bounds": { + "#": 5433 + }, + "positionPrev": { + "#": 5436 + }, + "anglePrev": 0, + "axes": { + "#": 5437 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5418 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5418 + } + ], + [ + { + "#": 5421 + }, + { + "#": 5422 + }, + { + "#": 5423 + }, + { + "#": 5424 + } + ], + { + "x": 370, + "y": 505, + "index": 0, + "body": { + "#": 5418 + }, + "isInternal": false + }, + { + "x": 405, + "y": 505, + "index": 1, + "body": { + "#": 5418 + }, + "isInternal": false + }, + { + "x": 405, + "y": 540, + "index": 2, + "body": { + "#": 5418 + }, + "isInternal": false + }, + { + "x": 370, + "y": 540, + "index": 3, + "body": { + "#": 5418 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5432 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5434 + }, + "max": { + "#": 5435 + } + }, + { + "x": 370, + "y": 505 + }, + { + "x": 405, + "y": 540 + }, + { + "x": 387.5, + "y": 522.5 + }, + [ + { + "#": 5438 + }, + { + "#": 5439 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 248, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5441 + }, + "angle": 0, + "vertices": { + "#": 5442 + }, + "position": { + "#": 5447 + }, + "force": { + "#": 5448 + }, + "torque": 0, + "positionImpulse": { + "#": 5449 + }, + "constraintImpulse": { + "#": 5450 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5451 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5452 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5453 + }, + "bounds": { + "#": 5455 + }, + "positionPrev": { + "#": 5458 + }, + "anglePrev": 0, + "axes": { + "#": 5459 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5440 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5440 + } + ], + [ + { + "#": 5443 + }, + { + "#": 5444 + }, + { + "#": 5445 + }, + { + "#": 5446 + } + ], + { + "x": 405, + "y": 505, + "index": 0, + "body": { + "#": 5440 + }, + "isInternal": false + }, + { + "x": 440, + "y": 505, + "index": 1, + "body": { + "#": 5440 + }, + "isInternal": false + }, + { + "x": 440, + "y": 540, + "index": 2, + "body": { + "#": 5440 + }, + "isInternal": false + }, + { + "x": 405, + "y": 540, + "index": 3, + "body": { + "#": 5440 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5454 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5456 + }, + "max": { + "#": 5457 + } + }, + { + "x": 405, + "y": 505 + }, + { + "x": 440, + "y": 540 + }, + { + "x": 422.5, + "y": 522.5 + }, + [ + { + "#": 5460 + }, + { + "#": 5461 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 249, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5463 + }, + "angle": 0, + "vertices": { + "#": 5464 + }, + "position": { + "#": 5469 + }, + "force": { + "#": 5470 + }, + "torque": 0, + "positionImpulse": { + "#": 5471 + }, + "constraintImpulse": { + "#": 5472 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5473 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5474 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5475 + }, + "bounds": { + "#": 5477 + }, + "positionPrev": { + "#": 5480 + }, + "anglePrev": 0, + "axes": { + "#": 5481 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5462 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5462 + } + ], + [ + { + "#": 5465 + }, + { + "#": 5466 + }, + { + "#": 5467 + }, + { + "#": 5468 + } + ], + { + "x": 440, + "y": 505, + "index": 0, + "body": { + "#": 5462 + }, + "isInternal": false + }, + { + "x": 475, + "y": 505, + "index": 1, + "body": { + "#": 5462 + }, + "isInternal": false + }, + { + "x": 475, + "y": 540, + "index": 2, + "body": { + "#": 5462 + }, + "isInternal": false + }, + { + "x": 440, + "y": 540, + "index": 3, + "body": { + "#": 5462 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5476 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5478 + }, + "max": { + "#": 5479 + } + }, + { + "x": 440, + "y": 505 + }, + { + "x": 475, + "y": 540 + }, + { + "x": 457.5, + "y": 522.5 + }, + [ + { + "#": 5482 + }, + { + "#": 5483 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 250, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5485 + }, + "angle": 0, + "vertices": { + "#": 5486 + }, + "position": { + "#": 5491 + }, + "force": { + "#": 5492 + }, + "torque": 0, + "positionImpulse": { + "#": 5493 + }, + "constraintImpulse": { + "#": 5494 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5495 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5496 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5497 + }, + "bounds": { + "#": 5499 + }, + "positionPrev": { + "#": 5502 + }, + "anglePrev": 0, + "axes": { + "#": 5503 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5484 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5484 + } + ], + [ + { + "#": 5487 + }, + { + "#": 5488 + }, + { + "#": 5489 + }, + { + "#": 5490 + } + ], + { + "x": 475, + "y": 505, + "index": 0, + "body": { + "#": 5484 + }, + "isInternal": false + }, + { + "x": 510, + "y": 505, + "index": 1, + "body": { + "#": 5484 + }, + "isInternal": false + }, + { + "x": 510, + "y": 540, + "index": 2, + "body": { + "#": 5484 + }, + "isInternal": false + }, + { + "x": 475, + "y": 540, + "index": 3, + "body": { + "#": 5484 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5498 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5500 + }, + "max": { + "#": 5501 + } + }, + { + "x": 475, + "y": 505 + }, + { + "x": 510, + "y": 540 + }, + { + "x": 492.5, + "y": 522.5 + }, + [ + { + "#": 5504 + }, + { + "#": 5505 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 251, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5507 + }, + "angle": 0, + "vertices": { + "#": 5508 + }, + "position": { + "#": 5513 + }, + "force": { + "#": 5514 + }, + "torque": 0, + "positionImpulse": { + "#": 5515 + }, + "constraintImpulse": { + "#": 5516 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5517 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5518 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5519 + }, + "bounds": { + "#": 5521 + }, + "positionPrev": { + "#": 5524 + }, + "anglePrev": 0, + "axes": { + "#": 5525 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5506 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5506 + } + ], + [ + { + "#": 5509 + }, + { + "#": 5510 + }, + { + "#": 5511 + }, + { + "#": 5512 + } + ], + { + "x": 510, + "y": 505, + "index": 0, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 545, + "y": 505, + "index": 1, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 545, + "y": 540, + "index": 2, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 510, + "y": 540, + "index": 3, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5520 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5522 + }, + "max": { + "#": 5523 + } + }, + { + "x": 510, + "y": 505 + }, + { + "x": 545, + "y": 540 + }, + { + "x": 527.5, + "y": 522.5 + }, + [ + { + "#": 5526 + }, + { + "#": 5527 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 252, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5529 + }, + "angle": 0, + "vertices": { + "#": 5530 + }, + "position": { + "#": 5535 + }, + "force": { + "#": 5536 + }, + "torque": 0, + "positionImpulse": { + "#": 5537 + }, + "constraintImpulse": { + "#": 5538 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5539 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5540 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5541 + }, + "bounds": { + "#": 5543 + }, + "positionPrev": { + "#": 5546 + }, + "anglePrev": 0, + "axes": { + "#": 5547 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5528 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5528 + } + ], + [ + { + "#": 5531 + }, + { + "#": 5532 + }, + { + "#": 5533 + }, + { + "#": 5534 + } + ], + { + "x": 545, + "y": 505, + "index": 0, + "body": { + "#": 5528 + }, + "isInternal": false + }, + { + "x": 580, + "y": 505, + "index": 1, + "body": { + "#": 5528 + }, + "isInternal": false + }, + { + "x": 580, + "y": 540, + "index": 2, + "body": { + "#": 5528 + }, + "isInternal": false + }, + { + "x": 545, + "y": 540, + "index": 3, + "body": { + "#": 5528 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5542 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5544 + }, + "max": { + "#": 5545 + } + }, + { + "x": 545, + "y": 505 + }, + { + "x": 580, + "y": 540 + }, + { + "x": 562.5, + "y": 522.5 + }, + [ + { + "#": 5548 + }, + { + "#": 5549 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 253, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5551 + }, + "angle": 0, + "vertices": { + "#": 5552 + }, + "position": { + "#": 5557 + }, + "force": { + "#": 5558 + }, + "torque": 0, + "positionImpulse": { + "#": 5559 + }, + "constraintImpulse": { + "#": 5560 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5561 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5562 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5563 + }, + "bounds": { + "#": 5565 + }, + "positionPrev": { + "#": 5568 + }, + "anglePrev": 0, + "axes": { + "#": 5569 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5550 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5550 + } + ], + [ + { + "#": 5553 + }, + { + "#": 5554 + }, + { + "#": 5555 + }, + { + "#": 5556 + } + ], + { + "x": 580, + "y": 505, + "index": 0, + "body": { + "#": 5550 + }, + "isInternal": false + }, + { + "x": 615, + "y": 505, + "index": 1, + "body": { + "#": 5550 + }, + "isInternal": false + }, + { + "x": 615, + "y": 540, + "index": 2, + "body": { + "#": 5550 + }, + "isInternal": false + }, + { + "x": 580, + "y": 540, + "index": 3, + "body": { + "#": 5550 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5564 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5566 + }, + "max": { + "#": 5567 + } + }, + { + "x": 580, + "y": 505 + }, + { + "x": 615, + "y": 540 + }, + { + "x": 597.5, + "y": 522.5 + }, + [ + { + "#": 5570 + }, + { + "#": 5571 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 254, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5573 + }, + "angle": 0, + "vertices": { + "#": 5574 + }, + "position": { + "#": 5579 + }, + "force": { + "#": 5580 + }, + "torque": 0, + "positionImpulse": { + "#": 5581 + }, + "constraintImpulse": { + "#": 5582 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5583 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5584 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5585 + }, + "bounds": { + "#": 5587 + }, + "positionPrev": { + "#": 5590 + }, + "anglePrev": 0, + "axes": { + "#": 5591 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5572 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5572 + } + ], + [ + { + "#": 5575 + }, + { + "#": 5576 + }, + { + "#": 5577 + }, + { + "#": 5578 + } + ], + { + "x": 615, + "y": 505, + "index": 0, + "body": { + "#": 5572 + }, + "isInternal": false + }, + { + "x": 650, + "y": 505, + "index": 1, + "body": { + "#": 5572 + }, + "isInternal": false + }, + { + "x": 650, + "y": 540, + "index": 2, + "body": { + "#": 5572 + }, + "isInternal": false + }, + { + "x": 615, + "y": 540, + "index": 3, + "body": { + "#": 5572 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5586 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5588 + }, + "max": { + "#": 5589 + } + }, + { + "x": 615, + "y": 505 + }, + { + "x": 650, + "y": 540 + }, + { + "x": 632.5, + "y": 522.5 + }, + [ + { + "#": 5592 + }, + { + "#": 5593 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 255, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5595 + }, + "angle": 0, + "vertices": { + "#": 5596 + }, + "position": { + "#": 5601 + }, + "force": { + "#": 5602 + }, + "torque": 0, + "positionImpulse": { + "#": 5603 + }, + "constraintImpulse": { + "#": 5604 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5605 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5606 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5607 + }, + "bounds": { + "#": 5609 + }, + "positionPrev": { + "#": 5612 + }, + "anglePrev": 0, + "axes": { + "#": 5613 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5594 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5594 + } + ], + [ + { + "#": 5597 + }, + { + "#": 5598 + }, + { + "#": 5599 + }, + { + "#": 5600 + } + ], + { + "x": 650, + "y": 505, + "index": 0, + "body": { + "#": 5594 + }, + "isInternal": false + }, + { + "x": 685, + "y": 505, + "index": 1, + "body": { + "#": 5594 + }, + "isInternal": false + }, + { + "x": 685, + "y": 540, + "index": 2, + "body": { + "#": 5594 + }, + "isInternal": false + }, + { + "x": 650, + "y": 540, + "index": 3, + "body": { + "#": 5594 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5608 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5610 + }, + "max": { + "#": 5611 + } + }, + { + "x": 650, + "y": 505 + }, + { + "x": 685, + "y": 540 + }, + { + "x": 667.5, + "y": 522.5 + }, + [ + { + "#": 5614 + }, + { + "#": 5615 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 256, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5617 + }, + "angle": 0, + "vertices": { + "#": 5618 + }, + "position": { + "#": 5623 + }, + "force": { + "#": 5624 + }, + "torque": 0, + "positionImpulse": { + "#": 5625 + }, + "constraintImpulse": { + "#": 5626 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5627 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5628 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5629 + }, + "bounds": { + "#": 5631 + }, + "positionPrev": { + "#": 5634 + }, + "anglePrev": 0, + "axes": { + "#": 5635 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5616 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5616 + } + ], + [ + { + "#": 5619 + }, + { + "#": 5620 + }, + { + "#": 5621 + }, + { + "#": 5622 + } + ], + { + "x": 685, + "y": 505, + "index": 0, + "body": { + "#": 5616 + }, + "isInternal": false + }, + { + "x": 720, + "y": 505, + "index": 1, + "body": { + "#": 5616 + }, + "isInternal": false + }, + { + "x": 720, + "y": 540, + "index": 2, + "body": { + "#": 5616 + }, + "isInternal": false + }, + { + "x": 685, + "y": 540, + "index": 3, + "body": { + "#": 5616 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 522.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5630 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5632 + }, + "max": { + "#": 5633 + } + }, + { + "x": 685, + "y": 505 + }, + { + "x": 720, + "y": 540 + }, + { + "x": 702.5, + "y": 522.5 + }, + [ + { + "#": 5636 + }, + { + "#": 5637 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 257, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5639 + }, + "angle": 0, + "vertices": { + "#": 5640 + }, + "position": { + "#": 5645 + }, + "force": { + "#": 5646 + }, + "torque": 0, + "positionImpulse": { + "#": 5647 + }, + "constraintImpulse": { + "#": 5648 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5649 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5650 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5651 + }, + "bounds": { + "#": 5653 + }, + "positionPrev": { + "#": 5656 + }, + "anglePrev": 0, + "axes": { + "#": 5657 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5638 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5638 + } + ], + [ + { + "#": 5641 + }, + { + "#": 5642 + }, + { + "#": 5643 + }, + { + "#": 5644 + } + ], + { + "x": 90, + "y": 540, + "index": 0, + "body": { + "#": 5638 + }, + "isInternal": false + }, + { + "x": 125, + "y": 540, + "index": 1, + "body": { + "#": 5638 + }, + "isInternal": false + }, + { + "x": 125, + "y": 575, + "index": 2, + "body": { + "#": 5638 + }, + "isInternal": false + }, + { + "x": 90, + "y": 575, + "index": 3, + "body": { + "#": 5638 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5652 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5654 + }, + "max": { + "#": 5655 + } + }, + { + "x": 90, + "y": 540 + }, + { + "x": 125, + "y": 575 + }, + { + "x": 107.5, + "y": 557.5 + }, + [ + { + "#": 5658 + }, + { + "#": 5659 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 258, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5661 + }, + "angle": 0, + "vertices": { + "#": 5662 + }, + "position": { + "#": 5667 + }, + "force": { + "#": 5668 + }, + "torque": 0, + "positionImpulse": { + "#": 5669 + }, + "constraintImpulse": { + "#": 5670 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5671 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5672 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5673 + }, + "bounds": { + "#": 5675 + }, + "positionPrev": { + "#": 5678 + }, + "anglePrev": 0, + "axes": { + "#": 5679 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5660 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5660 + } + ], + [ + { + "#": 5663 + }, + { + "#": 5664 + }, + { + "#": 5665 + }, + { + "#": 5666 + } + ], + { + "x": 125, + "y": 540, + "index": 0, + "body": { + "#": 5660 + }, + "isInternal": false + }, + { + "x": 160, + "y": 540, + "index": 1, + "body": { + "#": 5660 + }, + "isInternal": false + }, + { + "x": 160, + "y": 575, + "index": 2, + "body": { + "#": 5660 + }, + "isInternal": false + }, + { + "x": 125, + "y": 575, + "index": 3, + "body": { + "#": 5660 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5674 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5676 + }, + "max": { + "#": 5677 + } + }, + { + "x": 125, + "y": 540 + }, + { + "x": 160, + "y": 575 + }, + { + "x": 142.5, + "y": 557.5 + }, + [ + { + "#": 5680 + }, + { + "#": 5681 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 259, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5683 + }, + "angle": 0, + "vertices": { + "#": 5684 + }, + "position": { + "#": 5689 + }, + "force": { + "#": 5690 + }, + "torque": 0, + "positionImpulse": { + "#": 5691 + }, + "constraintImpulse": { + "#": 5692 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5693 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5694 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5695 + }, + "bounds": { + "#": 5697 + }, + "positionPrev": { + "#": 5700 + }, + "anglePrev": 0, + "axes": { + "#": 5701 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5682 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5682 + } + ], + [ + { + "#": 5685 + }, + { + "#": 5686 + }, + { + "#": 5687 + }, + { + "#": 5688 + } + ], + { + "x": 160, + "y": 540, + "index": 0, + "body": { + "#": 5682 + }, + "isInternal": false + }, + { + "x": 195, + "y": 540, + "index": 1, + "body": { + "#": 5682 + }, + "isInternal": false + }, + { + "x": 195, + "y": 575, + "index": 2, + "body": { + "#": 5682 + }, + "isInternal": false + }, + { + "x": 160, + "y": 575, + "index": 3, + "body": { + "#": 5682 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5696 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5698 + }, + "max": { + "#": 5699 + } + }, + { + "x": 160, + "y": 540 + }, + { + "x": 195, + "y": 575 + }, + { + "x": 177.5, + "y": 557.5 + }, + [ + { + "#": 5702 + }, + { + "#": 5703 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 260, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5705 + }, + "angle": 0, + "vertices": { + "#": 5706 + }, + "position": { + "#": 5711 + }, + "force": { + "#": 5712 + }, + "torque": 0, + "positionImpulse": { + "#": 5713 + }, + "constraintImpulse": { + "#": 5714 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5715 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5716 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5717 + }, + "bounds": { + "#": 5719 + }, + "positionPrev": { + "#": 5722 + }, + "anglePrev": 0, + "axes": { + "#": 5723 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5704 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5704 + } + ], + [ + { + "#": 5707 + }, + { + "#": 5708 + }, + { + "#": 5709 + }, + { + "#": 5710 + } + ], + { + "x": 195, + "y": 540, + "index": 0, + "body": { + "#": 5704 + }, + "isInternal": false + }, + { + "x": 230, + "y": 540, + "index": 1, + "body": { + "#": 5704 + }, + "isInternal": false + }, + { + "x": 230, + "y": 575, + "index": 2, + "body": { + "#": 5704 + }, + "isInternal": false + }, + { + "x": 195, + "y": 575, + "index": 3, + "body": { + "#": 5704 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5718 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5720 + }, + "max": { + "#": 5721 + } + }, + { + "x": 195, + "y": 540 + }, + { + "x": 230, + "y": 575 + }, + { + "x": 212.5, + "y": 557.5 + }, + [ + { + "#": 5724 + }, + { + "#": 5725 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 261, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5727 + }, + "angle": 0, + "vertices": { + "#": 5728 + }, + "position": { + "#": 5733 + }, + "force": { + "#": 5734 + }, + "torque": 0, + "positionImpulse": { + "#": 5735 + }, + "constraintImpulse": { + "#": 5736 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5737 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5738 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5739 + }, + "bounds": { + "#": 5741 + }, + "positionPrev": { + "#": 5744 + }, + "anglePrev": 0, + "axes": { + "#": 5745 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5726 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5726 + } + ], + [ + { + "#": 5729 + }, + { + "#": 5730 + }, + { + "#": 5731 + }, + { + "#": 5732 + } + ], + { + "x": 230, + "y": 540, + "index": 0, + "body": { + "#": 5726 + }, + "isInternal": false + }, + { + "x": 265, + "y": 540, + "index": 1, + "body": { + "#": 5726 + }, + "isInternal": false + }, + { + "x": 265, + "y": 575, + "index": 2, + "body": { + "#": 5726 + }, + "isInternal": false + }, + { + "x": 230, + "y": 575, + "index": 3, + "body": { + "#": 5726 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5740 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5742 + }, + "max": { + "#": 5743 + } + }, + { + "x": 230, + "y": 540 + }, + { + "x": 265, + "y": 575 + }, + { + "x": 247.5, + "y": 557.5 + }, + [ + { + "#": 5746 + }, + { + "#": 5747 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 262, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5749 + }, + "angle": 0, + "vertices": { + "#": 5750 + }, + "position": { + "#": 5755 + }, + "force": { + "#": 5756 + }, + "torque": 0, + "positionImpulse": { + "#": 5757 + }, + "constraintImpulse": { + "#": 5758 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5759 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5760 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5761 + }, + "bounds": { + "#": 5763 + }, + "positionPrev": { + "#": 5766 + }, + "anglePrev": 0, + "axes": { + "#": 5767 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5748 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5748 + } + ], + [ + { + "#": 5751 + }, + { + "#": 5752 + }, + { + "#": 5753 + }, + { + "#": 5754 + } + ], + { + "x": 265, + "y": 540, + "index": 0, + "body": { + "#": 5748 + }, + "isInternal": false + }, + { + "x": 300, + "y": 540, + "index": 1, + "body": { + "#": 5748 + }, + "isInternal": false + }, + { + "x": 300, + "y": 575, + "index": 2, + "body": { + "#": 5748 + }, + "isInternal": false + }, + { + "x": 265, + "y": 575, + "index": 3, + "body": { + "#": 5748 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5762 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5764 + }, + "max": { + "#": 5765 + } + }, + { + "x": 265, + "y": 540 + }, + { + "x": 300, + "y": 575 + }, + { + "x": 282.5, + "y": 557.5 + }, + [ + { + "#": 5768 + }, + { + "#": 5769 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 263, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5771 + }, + "angle": 0, + "vertices": { + "#": 5772 + }, + "position": { + "#": 5777 + }, + "force": { + "#": 5778 + }, + "torque": 0, + "positionImpulse": { + "#": 5779 + }, + "constraintImpulse": { + "#": 5780 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5781 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5782 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5783 + }, + "bounds": { + "#": 5785 + }, + "positionPrev": { + "#": 5788 + }, + "anglePrev": 0, + "axes": { + "#": 5789 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5770 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5770 + } + ], + [ + { + "#": 5773 + }, + { + "#": 5774 + }, + { + "#": 5775 + }, + { + "#": 5776 + } + ], + { + "x": 300, + "y": 540, + "index": 0, + "body": { + "#": 5770 + }, + "isInternal": false + }, + { + "x": 335, + "y": 540, + "index": 1, + "body": { + "#": 5770 + }, + "isInternal": false + }, + { + "x": 335, + "y": 575, + "index": 2, + "body": { + "#": 5770 + }, + "isInternal": false + }, + { + "x": 300, + "y": 575, + "index": 3, + "body": { + "#": 5770 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5784 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5786 + }, + "max": { + "#": 5787 + } + }, + { + "x": 300, + "y": 540 + }, + { + "x": 335, + "y": 575 + }, + { + "x": 317.5, + "y": 557.5 + }, + [ + { + "#": 5790 + }, + { + "#": 5791 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 264, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5793 + }, + "angle": 0, + "vertices": { + "#": 5794 + }, + "position": { + "#": 5799 + }, + "force": { + "#": 5800 + }, + "torque": 0, + "positionImpulse": { + "#": 5801 + }, + "constraintImpulse": { + "#": 5802 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5803 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5804 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5805 + }, + "bounds": { + "#": 5807 + }, + "positionPrev": { + "#": 5810 + }, + "anglePrev": 0, + "axes": { + "#": 5811 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5792 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5792 + } + ], + [ + { + "#": 5795 + }, + { + "#": 5796 + }, + { + "#": 5797 + }, + { + "#": 5798 + } + ], + { + "x": 335, + "y": 540, + "index": 0, + "body": { + "#": 5792 + }, + "isInternal": false + }, + { + "x": 370, + "y": 540, + "index": 1, + "body": { + "#": 5792 + }, + "isInternal": false + }, + { + "x": 370, + "y": 575, + "index": 2, + "body": { + "#": 5792 + }, + "isInternal": false + }, + { + "x": 335, + "y": 575, + "index": 3, + "body": { + "#": 5792 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5806 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5808 + }, + "max": { + "#": 5809 + } + }, + { + "x": 335, + "y": 540 + }, + { + "x": 370, + "y": 575 + }, + { + "x": 352.5, + "y": 557.5 + }, + [ + { + "#": 5812 + }, + { + "#": 5813 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 265, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5815 + }, + "angle": 0, + "vertices": { + "#": 5816 + }, + "position": { + "#": 5821 + }, + "force": { + "#": 5822 + }, + "torque": 0, + "positionImpulse": { + "#": 5823 + }, + "constraintImpulse": { + "#": 5824 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5825 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5826 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5827 + }, + "bounds": { + "#": 5829 + }, + "positionPrev": { + "#": 5832 + }, + "anglePrev": 0, + "axes": { + "#": 5833 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5814 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5814 + } + ], + [ + { + "#": 5817 + }, + { + "#": 5818 + }, + { + "#": 5819 + }, + { + "#": 5820 + } + ], + { + "x": 370, + "y": 540, + "index": 0, + "body": { + "#": 5814 + }, + "isInternal": false + }, + { + "x": 405, + "y": 540, + "index": 1, + "body": { + "#": 5814 + }, + "isInternal": false + }, + { + "x": 405, + "y": 575, + "index": 2, + "body": { + "#": 5814 + }, + "isInternal": false + }, + { + "x": 370, + "y": 575, + "index": 3, + "body": { + "#": 5814 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5828 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5830 + }, + "max": { + "#": 5831 + } + }, + { + "x": 370, + "y": 540 + }, + { + "x": 405, + "y": 575 + }, + { + "x": 387.5, + "y": 557.5 + }, + [ + { + "#": 5834 + }, + { + "#": 5835 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 266, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5837 + }, + "angle": 0, + "vertices": { + "#": 5838 + }, + "position": { + "#": 5843 + }, + "force": { + "#": 5844 + }, + "torque": 0, + "positionImpulse": { + "#": 5845 + }, + "constraintImpulse": { + "#": 5846 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5847 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5848 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5849 + }, + "bounds": { + "#": 5851 + }, + "positionPrev": { + "#": 5854 + }, + "anglePrev": 0, + "axes": { + "#": 5855 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5836 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5836 + } + ], + [ + { + "#": 5839 + }, + { + "#": 5840 + }, + { + "#": 5841 + }, + { + "#": 5842 + } + ], + { + "x": 405, + "y": 540, + "index": 0, + "body": { + "#": 5836 + }, + "isInternal": false + }, + { + "x": 440, + "y": 540, + "index": 1, + "body": { + "#": 5836 + }, + "isInternal": false + }, + { + "x": 440, + "y": 575, + "index": 2, + "body": { + "#": 5836 + }, + "isInternal": false + }, + { + "x": 405, + "y": 575, + "index": 3, + "body": { + "#": 5836 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5850 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5852 + }, + "max": { + "#": 5853 + } + }, + { + "x": 405, + "y": 540 + }, + { + "x": 440, + "y": 575 + }, + { + "x": 422.5, + "y": 557.5 + }, + [ + { + "#": 5856 + }, + { + "#": 5857 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 267, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5859 + }, + "angle": 0, + "vertices": { + "#": 5860 + }, + "position": { + "#": 5865 + }, + "force": { + "#": 5866 + }, + "torque": 0, + "positionImpulse": { + "#": 5867 + }, + "constraintImpulse": { + "#": 5868 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5869 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5870 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5871 + }, + "bounds": { + "#": 5873 + }, + "positionPrev": { + "#": 5876 + }, + "anglePrev": 0, + "axes": { + "#": 5877 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5858 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5858 + } + ], + [ + { + "#": 5861 + }, + { + "#": 5862 + }, + { + "#": 5863 + }, + { + "#": 5864 + } + ], + { + "x": 440, + "y": 540, + "index": 0, + "body": { + "#": 5858 + }, + "isInternal": false + }, + { + "x": 475, + "y": 540, + "index": 1, + "body": { + "#": 5858 + }, + "isInternal": false + }, + { + "x": 475, + "y": 575, + "index": 2, + "body": { + "#": 5858 + }, + "isInternal": false + }, + { + "x": 440, + "y": 575, + "index": 3, + "body": { + "#": 5858 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5872 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5874 + }, + "max": { + "#": 5875 + } + }, + { + "x": 440, + "y": 540 + }, + { + "x": 475, + "y": 575 + }, + { + "x": 457.5, + "y": 557.5 + }, + [ + { + "#": 5878 + }, + { + "#": 5879 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 268, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5881 + }, + "angle": 0, + "vertices": { + "#": 5882 + }, + "position": { + "#": 5887 + }, + "force": { + "#": 5888 + }, + "torque": 0, + "positionImpulse": { + "#": 5889 + }, + "constraintImpulse": { + "#": 5890 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5891 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5892 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5893 + }, + "bounds": { + "#": 5895 + }, + "positionPrev": { + "#": 5898 + }, + "anglePrev": 0, + "axes": { + "#": 5899 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5880 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5880 + } + ], + [ + { + "#": 5883 + }, + { + "#": 5884 + }, + { + "#": 5885 + }, + { + "#": 5886 + } + ], + { + "x": 475, + "y": 540, + "index": 0, + "body": { + "#": 5880 + }, + "isInternal": false + }, + { + "x": 510, + "y": 540, + "index": 1, + "body": { + "#": 5880 + }, + "isInternal": false + }, + { + "x": 510, + "y": 575, + "index": 2, + "body": { + "#": 5880 + }, + "isInternal": false + }, + { + "x": 475, + "y": 575, + "index": 3, + "body": { + "#": 5880 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5894 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5896 + }, + "max": { + "#": 5897 + } + }, + { + "x": 475, + "y": 540 + }, + { + "x": 510, + "y": 575 + }, + { + "x": 492.5, + "y": 557.5 + }, + [ + { + "#": 5900 + }, + { + "#": 5901 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 269, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5903 + }, + "angle": 0, + "vertices": { + "#": 5904 + }, + "position": { + "#": 5909 + }, + "force": { + "#": 5910 + }, + "torque": 0, + "positionImpulse": { + "#": 5911 + }, + "constraintImpulse": { + "#": 5912 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5913 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5914 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5915 + }, + "bounds": { + "#": 5917 + }, + "positionPrev": { + "#": 5920 + }, + "anglePrev": 0, + "axes": { + "#": 5921 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5902 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5902 + } + ], + [ + { + "#": 5905 + }, + { + "#": 5906 + }, + { + "#": 5907 + }, + { + "#": 5908 + } + ], + { + "x": 510, + "y": 540, + "index": 0, + "body": { + "#": 5902 + }, + "isInternal": false + }, + { + "x": 545, + "y": 540, + "index": 1, + "body": { + "#": 5902 + }, + "isInternal": false + }, + { + "x": 545, + "y": 575, + "index": 2, + "body": { + "#": 5902 + }, + "isInternal": false + }, + { + "x": 510, + "y": 575, + "index": 3, + "body": { + "#": 5902 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5916 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5918 + }, + "max": { + "#": 5919 + } + }, + { + "x": 510, + "y": 540 + }, + { + "x": 545, + "y": 575 + }, + { + "x": 527.5, + "y": 557.5 + }, + [ + { + "#": 5922 + }, + { + "#": 5923 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 270, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5925 + }, + "angle": 0, + "vertices": { + "#": 5926 + }, + "position": { + "#": 5931 + }, + "force": { + "#": 5932 + }, + "torque": 0, + "positionImpulse": { + "#": 5933 + }, + "constraintImpulse": { + "#": 5934 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5935 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5936 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5937 + }, + "bounds": { + "#": 5939 + }, + "positionPrev": { + "#": 5942 + }, + "anglePrev": 0, + "axes": { + "#": 5943 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5924 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5924 + } + ], + [ + { + "#": 5927 + }, + { + "#": 5928 + }, + { + "#": 5929 + }, + { + "#": 5930 + } + ], + { + "x": 545, + "y": 540, + "index": 0, + "body": { + "#": 5924 + }, + "isInternal": false + }, + { + "x": 580, + "y": 540, + "index": 1, + "body": { + "#": 5924 + }, + "isInternal": false + }, + { + "x": 580, + "y": 575, + "index": 2, + "body": { + "#": 5924 + }, + "isInternal": false + }, + { + "x": 545, + "y": 575, + "index": 3, + "body": { + "#": 5924 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5938 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5940 + }, + "max": { + "#": 5941 + } + }, + { + "x": 545, + "y": 540 + }, + { + "x": 580, + "y": 575 + }, + { + "x": 562.5, + "y": 557.5 + }, + [ + { + "#": 5944 + }, + { + "#": 5945 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 271, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5947 + }, + "angle": 0, + "vertices": { + "#": 5948 + }, + "position": { + "#": 5953 + }, + "force": { + "#": 5954 + }, + "torque": 0, + "positionImpulse": { + "#": 5955 + }, + "constraintImpulse": { + "#": 5956 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5957 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5958 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5959 + }, + "bounds": { + "#": 5961 + }, + "positionPrev": { + "#": 5964 + }, + "anglePrev": 0, + "axes": { + "#": 5965 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5946 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5946 + } + ], + [ + { + "#": 5949 + }, + { + "#": 5950 + }, + { + "#": 5951 + }, + { + "#": 5952 + } + ], + { + "x": 580, + "y": 540, + "index": 0, + "body": { + "#": 5946 + }, + "isInternal": false + }, + { + "x": 615, + "y": 540, + "index": 1, + "body": { + "#": 5946 + }, + "isInternal": false + }, + { + "x": 615, + "y": 575, + "index": 2, + "body": { + "#": 5946 + }, + "isInternal": false + }, + { + "x": 580, + "y": 575, + "index": 3, + "body": { + "#": 5946 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5960 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5962 + }, + "max": { + "#": 5963 + } + }, + { + "x": 580, + "y": 540 + }, + { + "x": 615, + "y": 575 + }, + { + "x": 597.5, + "y": 557.5 + }, + [ + { + "#": 5966 + }, + { + "#": 5967 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 272, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5969 + }, + "angle": 0, + "vertices": { + "#": 5970 + }, + "position": { + "#": 5975 + }, + "force": { + "#": 5976 + }, + "torque": 0, + "positionImpulse": { + "#": 5977 + }, + "constraintImpulse": { + "#": 5978 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5979 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5980 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5981 + }, + "bounds": { + "#": 5983 + }, + "positionPrev": { + "#": 5986 + }, + "anglePrev": 0, + "axes": { + "#": 5987 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5968 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5968 + } + ], + [ + { + "#": 5971 + }, + { + "#": 5972 + }, + { + "#": 5973 + }, + { + "#": 5974 + } + ], + { + "x": 615, + "y": 540, + "index": 0, + "body": { + "#": 5968 + }, + "isInternal": false + }, + { + "x": 650, + "y": 540, + "index": 1, + "body": { + "#": 5968 + }, + "isInternal": false + }, + { + "x": 650, + "y": 575, + "index": 2, + "body": { + "#": 5968 + }, + "isInternal": false + }, + { + "x": 615, + "y": 575, + "index": 3, + "body": { + "#": 5968 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5982 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5984 + }, + "max": { + "#": 5985 + } + }, + { + "x": 615, + "y": 540 + }, + { + "x": 650, + "y": 575 + }, + { + "x": 632.5, + "y": 557.5 + }, + [ + { + "#": 5988 + }, + { + "#": 5989 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 273, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5991 + }, + "angle": 0, + "vertices": { + "#": 5992 + }, + "position": { + "#": 5997 + }, + "force": { + "#": 5998 + }, + "torque": 0, + "positionImpulse": { + "#": 5999 + }, + "constraintImpulse": { + "#": 6000 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6001 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6002 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6003 + }, + "bounds": { + "#": 6005 + }, + "positionPrev": { + "#": 6008 + }, + "anglePrev": 0, + "axes": { + "#": 6009 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5990 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5990 + } + ], + [ + { + "#": 5993 + }, + { + "#": 5994 + }, + { + "#": 5995 + }, + { + "#": 5996 + } + ], + { + "x": 650, + "y": 540, + "index": 0, + "body": { + "#": 5990 + }, + "isInternal": false + }, + { + "x": 685, + "y": 540, + "index": 1, + "body": { + "#": 5990 + }, + "isInternal": false + }, + { + "x": 685, + "y": 575, + "index": 2, + "body": { + "#": 5990 + }, + "isInternal": false + }, + { + "x": 650, + "y": 575, + "index": 3, + "body": { + "#": 5990 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6004 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6006 + }, + "max": { + "#": 6007 + } + }, + { + "x": 650, + "y": 540 + }, + { + "x": 685, + "y": 575 + }, + { + "x": 667.5, + "y": 557.5 + }, + [ + { + "#": 6010 + }, + { + "#": 6011 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 274, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6013 + }, + "angle": 0, + "vertices": { + "#": 6014 + }, + "position": { + "#": 6019 + }, + "force": { + "#": 6020 + }, + "torque": 0, + "positionImpulse": { + "#": 6021 + }, + "constraintImpulse": { + "#": 6022 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6023 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6024 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6025 + }, + "bounds": { + "#": 6027 + }, + "positionPrev": { + "#": 6030 + }, + "anglePrev": 0, + "axes": { + "#": 6031 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 6012 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6012 + } + ], + [ + { + "#": 6015 + }, + { + "#": 6016 + }, + { + "#": 6017 + }, + { + "#": 6018 + } + ], + { + "x": 685, + "y": 540, + "index": 0, + "body": { + "#": 6012 + }, + "isInternal": false + }, + { + "x": 720, + "y": 540, + "index": 1, + "body": { + "#": 6012 + }, + "isInternal": false + }, + { + "x": 720, + "y": 575, + "index": 2, + "body": { + "#": 6012 + }, + "isInternal": false + }, + { + "x": 685, + "y": 575, + "index": 3, + "body": { + "#": 6012 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6026 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6028 + }, + "max": { + "#": 6029 + } + }, + { + "x": 685, + "y": 540 + }, + { + "x": 720, + "y": 575 + }, + { + "x": 702.5, + "y": 557.5 + }, + [ + { + "#": 6032 + }, + { + "#": 6033 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 6038 + }, + "max": { + "#": 6039 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/stress/stress-10.json b/test/node/refs/stress/stress-10.json new file mode 100644 index 00000000..937627d6 --- /dev/null +++ b/test/node/refs/stress/stress-10.json @@ -0,0 +1,57968 @@ +[ + { + "id": 10, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 94 + }, + "composites": { + "#": 95 + }, + "label": "World", + "gravity": { + "#": 6310 + }, + "bounds": { + "#": 6311 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + [], + [ + { + "#": 96 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 97 + }, + "constraints": { + "#": 6308 + }, + "composites": { + "#": 6309 + }, + "label": "Stack" + }, + [ + { + "#": 98 + }, + { + "#": 121 + }, + { + "#": 144 + }, + { + "#": 167 + }, + { + "#": 190 + }, + { + "#": 213 + }, + { + "#": 236 + }, + { + "#": 259 + }, + { + "#": 282 + }, + { + "#": 305 + }, + { + "#": 328 + }, + { + "#": 351 + }, + { + "#": 374 + }, + { + "#": 397 + }, + { + "#": 420 + }, + { + "#": 443 + }, + { + "#": 466 + }, + { + "#": 489 + }, + { + "#": 512 + }, + { + "#": 535 + }, + { + "#": 558 + }, + { + "#": 581 + }, + { + "#": 604 + }, + { + "#": 627 + }, + { + "#": 650 + }, + { + "#": 673 + }, + { + "#": 696 + }, + { + "#": 719 + }, + { + "#": 742 + }, + { + "#": 765 + }, + { + "#": 788 + }, + { + "#": 811 + }, + { + "#": 834 + }, + { + "#": 857 + }, + { + "#": 880 + }, + { + "#": 903 + }, + { + "#": 926 + }, + { + "#": 949 + }, + { + "#": 972 + }, + { + "#": 995 + }, + { + "#": 1018 + }, + { + "#": 1041 + }, + { + "#": 1064 + }, + { + "#": 1087 + }, + { + "#": 1110 + }, + { + "#": 1133 + }, + { + "#": 1156 + }, + { + "#": 1179 + }, + { + "#": 1202 + }, + { + "#": 1225 + }, + { + "#": 1248 + }, + { + "#": 1271 + }, + { + "#": 1294 + }, + { + "#": 1317 + }, + { + "#": 1340 + }, + { + "#": 1363 + }, + { + "#": 1386 + }, + { + "#": 1409 + }, + { + "#": 1432 + }, + { + "#": 1455 + }, + { + "#": 1478 + }, + { + "#": 1501 + }, + { + "#": 1524 + }, + { + "#": 1547 + }, + { + "#": 1570 + }, + { + "#": 1593 + }, + { + "#": 1616 + }, + { + "#": 1639 + }, + { + "#": 1662 + }, + { + "#": 1685 + }, + { + "#": 1708 + }, + { + "#": 1731 + }, + { + "#": 1754 + }, + { + "#": 1777 + }, + { + "#": 1800 + }, + { + "#": 1823 + }, + { + "#": 1846 + }, + { + "#": 1869 + }, + { + "#": 1892 + }, + { + "#": 1915 + }, + { + "#": 1938 + }, + { + "#": 1961 + }, + { + "#": 1984 + }, + { + "#": 2007 + }, + { + "#": 2030 + }, + { + "#": 2053 + }, + { + "#": 2076 + }, + { + "#": 2099 + }, + { + "#": 2122 + }, + { + "#": 2145 + }, + { + "#": 2168 + }, + { + "#": 2191 + }, + { + "#": 2214 + }, + { + "#": 2237 + }, + { + "#": 2260 + }, + { + "#": 2283 + }, + { + "#": 2306 + }, + { + "#": 2329 + }, + { + "#": 2352 + }, + { + "#": 2375 + }, + { + "#": 2398 + }, + { + "#": 2421 + }, + { + "#": 2444 + }, + { + "#": 2467 + }, + { + "#": 2490 + }, + { + "#": 2513 + }, + { + "#": 2536 + }, + { + "#": 2559 + }, + { + "#": 2582 + }, + { + "#": 2605 + }, + { + "#": 2628 + }, + { + "#": 2651 + }, + { + "#": 2674 + }, + { + "#": 2697 + }, + { + "#": 2720 + }, + { + "#": 2743 + }, + { + "#": 2766 + }, + { + "#": 2789 + }, + { + "#": 2812 + }, + { + "#": 2835 + }, + { + "#": 2858 + }, + { + "#": 2881 + }, + { + "#": 2904 + }, + { + "#": 2927 + }, + { + "#": 2950 + }, + { + "#": 2973 + }, + { + "#": 2996 + }, + { + "#": 3019 + }, + { + "#": 3042 + }, + { + "#": 3065 + }, + { + "#": 3088 + }, + { + "#": 3111 + }, + { + "#": 3134 + }, + { + "#": 3157 + }, + { + "#": 3180 + }, + { + "#": 3203 + }, + { + "#": 3226 + }, + { + "#": 3249 + }, + { + "#": 3272 + }, + { + "#": 3295 + }, + { + "#": 3318 + }, + { + "#": 3341 + }, + { + "#": 3364 + }, + { + "#": 3387 + }, + { + "#": 3410 + }, + { + "#": 3433 + }, + { + "#": 3456 + }, + { + "#": 3479 + }, + { + "#": 3502 + }, + { + "#": 3525 + }, + { + "#": 3548 + }, + { + "#": 3571 + }, + { + "#": 3594 + }, + { + "#": 3617 + }, + { + "#": 3640 + }, + { + "#": 3663 + }, + { + "#": 3686 + }, + { + "#": 3709 + }, + { + "#": 3732 + }, + { + "#": 3755 + }, + { + "#": 3778 + }, + { + "#": 3801 + }, + { + "#": 3824 + }, + { + "#": 3847 + }, + { + "#": 3870 + }, + { + "#": 3893 + }, + { + "#": 3916 + }, + { + "#": 3939 + }, + { + "#": 3962 + }, + { + "#": 3985 + }, + { + "#": 4008 + }, + { + "#": 4031 + }, + { + "#": 4054 + }, + { + "#": 4077 + }, + { + "#": 4100 + }, + { + "#": 4123 + }, + { + "#": 4146 + }, + { + "#": 4169 + }, + { + "#": 4192 + }, + { + "#": 4215 + }, + { + "#": 4238 + }, + { + "#": 4261 + }, + { + "#": 4284 + }, + { + "#": 4307 + }, + { + "#": 4330 + }, + { + "#": 4353 + }, + { + "#": 4376 + }, + { + "#": 4399 + }, + { + "#": 4422 + }, + { + "#": 4445 + }, + { + "#": 4468 + }, + { + "#": 4491 + }, + { + "#": 4514 + }, + { + "#": 4537 + }, + { + "#": 4560 + }, + { + "#": 4583 + }, + { + "#": 4606 + }, + { + "#": 4629 + }, + { + "#": 4652 + }, + { + "#": 4675 + }, + { + "#": 4698 + }, + { + "#": 4721 + }, + { + "#": 4744 + }, + { + "#": 4767 + }, + { + "#": 4790 + }, + { + "#": 4813 + }, + { + "#": 4836 + }, + { + "#": 4859 + }, + { + "#": 4882 + }, + { + "#": 4905 + }, + { + "#": 4928 + }, + { + "#": 4951 + }, + { + "#": 4974 + }, + { + "#": 4997 + }, + { + "#": 5020 + }, + { + "#": 5043 + }, + { + "#": 5066 + }, + { + "#": 5089 + }, + { + "#": 5112 + }, + { + "#": 5135 + }, + { + "#": 5158 + }, + { + "#": 5181 + }, + { + "#": 5204 + }, + { + "#": 5227 + }, + { + "#": 5250 + }, + { + "#": 5273 + }, + { + "#": 5296 + }, + { + "#": 5319 + }, + { + "#": 5342 + }, + { + "#": 5365 + }, + { + "#": 5388 + }, + { + "#": 5411 + }, + { + "#": 5434 + }, + { + "#": 5457 + }, + { + "#": 5480 + }, + { + "#": 5503 + }, + { + "#": 5526 + }, + { + "#": 5549 + }, + { + "#": 5572 + }, + { + "#": 5595 + }, + { + "#": 5618 + }, + { + "#": 5641 + }, + { + "#": 5664 + }, + { + "#": 5687 + }, + { + "#": 5710 + }, + { + "#": 5733 + }, + { + "#": 5756 + }, + { + "#": 5779 + }, + { + "#": 5802 + }, + { + "#": 5825 + }, + { + "#": 5848 + }, + { + "#": 5871 + }, + { + "#": 5894 + }, + { + "#": 5917 + }, + { + "#": 5940 + }, + { + "#": 5963 + }, + { + "#": 5986 + }, + { + "#": 6009 + }, + { + "#": 6032 + }, + { + "#": 6055 + }, + { + "#": 6078 + }, + { + "#": 6101 + }, + { + "#": 6124 + }, + { + "#": 6147 + }, + { + "#": 6170 + }, + { + "#": 6193 + }, + { + "#": 6216 + }, + { + "#": 6239 + }, + { + "#": 6262 + }, + { + "#": 6285 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 99 + }, + "angle": 0, + "vertices": { + "#": 100 + }, + "position": { + "#": 105 + }, + "force": { + "#": 106 + }, + "torque": 0, + "positionImpulse": { + "#": 107 + }, + "constraintImpulse": { + "#": 108 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 109 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 110 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 111 + }, + "bounds": { + "#": 113 + }, + "positionPrev": { + "#": 116 + }, + "anglePrev": 0, + "axes": { + "#": 117 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 98 + }, + "sleepCounter": 0, + "region": { + "#": 120 + } + }, + [ + { + "#": 98 + } + ], + [ + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + } + ], + { + "x": 90, + "y": 67.73575, + "index": 0, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 125, + "y": 67.73575, + "index": 1, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 125, + "y": 102.73575, + "index": 2, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 90, + "y": 102.73575, + "index": 3, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 85.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 112 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 114 + }, + "max": { + "#": 115 + } + }, + { + "x": 90, + "y": 67.73575 + }, + { + "x": 125, + "y": 102.73575 + }, + { + "x": 107.5, + "y": 82.32848 + }, + [ + { + "#": 118 + }, + { + "#": 119 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "1,2,1,2", + "startCol": 1, + "endCol": 2, + "startRow": 1, + "endRow": 2 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 122 + }, + "angle": 0, + "vertices": { + "#": 123 + }, + "position": { + "#": 128 + }, + "force": { + "#": 129 + }, + "torque": 0, + "positionImpulse": { + "#": 130 + }, + "constraintImpulse": { + "#": 131 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 132 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 133 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 134 + }, + "bounds": { + "#": 136 + }, + "positionPrev": { + "#": 139 + }, + "anglePrev": 0, + "axes": { + "#": 140 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 121 + }, + "sleepCounter": 0, + "region": { + "#": 143 + } + }, + [ + { + "#": 121 + } + ], + [ + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + } + ], + { + "x": 125, + "y": 67.73575, + "index": 0, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 160, + "y": 67.73575, + "index": 1, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 160, + "y": 102.73575, + "index": 2, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 125, + "y": 102.73575, + "index": 3, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 85.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 135 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 137 + }, + "max": { + "#": 138 + } + }, + { + "x": 125, + "y": 67.73575 + }, + { + "x": 160, + "y": 102.73575 + }, + { + "x": 142.5, + "y": 82.32848 + }, + [ + { + "#": 141 + }, + { + "#": 142 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,1,2", + "startCol": 2, + "endCol": 3, + "startRow": 1, + "endRow": 2 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 145 + }, + "angle": 0, + "vertices": { + "#": 146 + }, + "position": { + "#": 151 + }, + "force": { + "#": 152 + }, + "torque": 0, + "positionImpulse": { + "#": 153 + }, + "constraintImpulse": { + "#": 154 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 155 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 156 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 157 + }, + "bounds": { + "#": 159 + }, + "positionPrev": { + "#": 162 + }, + "anglePrev": 0, + "axes": { + "#": 163 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 144 + }, + "sleepCounter": 0, + "region": { + "#": 166 + } + }, + [ + { + "#": 144 + } + ], + [ + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + } + ], + { + "x": 160, + "y": 67.73575, + "index": 0, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 195, + "y": 67.73575, + "index": 1, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 195, + "y": 102.73575, + "index": 2, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 160, + "y": 102.73575, + "index": 3, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 85.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 158 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 160 + }, + "max": { + "#": 161 + } + }, + { + "x": 160, + "y": 67.73575 + }, + { + "x": 195, + "y": 102.73575 + }, + { + "x": 177.5, + "y": 82.32848 + }, + [ + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,1,2", + "startCol": 3, + "endCol": 4, + "startRow": 1, + "endRow": 2 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 168 + }, + "angle": 0, + "vertices": { + "#": 169 + }, + "position": { + "#": 174 + }, + "force": { + "#": 175 + }, + "torque": 0, + "positionImpulse": { + "#": 176 + }, + "constraintImpulse": { + "#": 177 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 178 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 179 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 180 + }, + "bounds": { + "#": 182 + }, + "positionPrev": { + "#": 185 + }, + "anglePrev": 0, + "axes": { + "#": 186 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 167 + }, + "sleepCounter": 0, + "region": { + "#": 189 + } + }, + [ + { + "#": 167 + } + ], + [ + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + } + ], + { + "x": 195, + "y": 67.73575, + "index": 0, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 230, + "y": 67.73575, + "index": 1, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 230, + "y": 102.73575, + "index": 2, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 195, + "y": 102.73575, + "index": 3, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 85.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 181 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 183 + }, + "max": { + "#": 184 + } + }, + { + "x": 195, + "y": 67.73575 + }, + { + "x": 230, + "y": 102.73575 + }, + { + "x": 212.5, + "y": 82.32848 + }, + [ + { + "#": 187 + }, + { + "#": 188 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,1,2", + "startCol": 4, + "endCol": 4, + "startRow": 1, + "endRow": 2 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 191 + }, + "angle": 0, + "vertices": { + "#": 192 + }, + "position": { + "#": 197 + }, + "force": { + "#": 198 + }, + "torque": 0, + "positionImpulse": { + "#": 199 + }, + "constraintImpulse": { + "#": 200 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 201 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 202 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 203 + }, + "bounds": { + "#": 205 + }, + "positionPrev": { + "#": 208 + }, + "anglePrev": 0, + "axes": { + "#": 209 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 190 + }, + "sleepCounter": 0, + "region": { + "#": 212 + } + }, + [ + { + "#": 190 + } + ], + [ + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + } + ], + { + "x": 230, + "y": 67.73575, + "index": 0, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 265, + "y": 67.73575, + "index": 1, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 265, + "y": 102.73575, + "index": 2, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 230, + "y": 102.73575, + "index": 3, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 85.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 204 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 206 + }, + "max": { + "#": 207 + } + }, + { + "x": 230, + "y": 67.73575 + }, + { + "x": 265, + "y": 102.73575 + }, + { + "x": 247.5, + "y": 82.32848 + }, + [ + { + "#": 210 + }, + { + "#": 211 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,1,2", + "startCol": 4, + "endCol": 5, + "startRow": 1, + "endRow": 2 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 214 + }, + "angle": 0, + "vertices": { + "#": 215 + }, + "position": { + "#": 220 + }, + "force": { + "#": 221 + }, + "torque": 0, + "positionImpulse": { + "#": 222 + }, + "constraintImpulse": { + "#": 223 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 224 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 225 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 226 + }, + "bounds": { + "#": 228 + }, + "positionPrev": { + "#": 231 + }, + "anglePrev": 0, + "axes": { + "#": 232 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 213 + }, + "sleepCounter": 0, + "region": { + "#": 235 + } + }, + [ + { + "#": 213 + } + ], + [ + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + } + ], + { + "x": 265, + "y": 67.73575, + "index": 0, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 300, + "y": 67.73575, + "index": 1, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 300, + "y": 102.73575, + "index": 2, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 265, + "y": 102.73575, + "index": 3, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 85.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 227 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 229 + }, + "max": { + "#": 230 + } + }, + { + "x": 265, + "y": 67.73575 + }, + { + "x": 300, + "y": 102.73575 + }, + { + "x": 282.5, + "y": 82.32848 + }, + [ + { + "#": 233 + }, + { + "#": 234 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,1,2", + "startCol": 5, + "endCol": 6, + "startRow": 1, + "endRow": 2 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 237 + }, + "angle": 0, + "vertices": { + "#": 238 + }, + "position": { + "#": 243 + }, + "force": { + "#": 244 + }, + "torque": 0, + "positionImpulse": { + "#": 245 + }, + "constraintImpulse": { + "#": 246 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 247 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 248 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 249 + }, + "bounds": { + "#": 251 + }, + "positionPrev": { + "#": 254 + }, + "anglePrev": 0, + "axes": { + "#": 255 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 236 + }, + "sleepCounter": 0, + "region": { + "#": 258 + } + }, + [ + { + "#": 236 + } + ], + [ + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + } + ], + { + "x": 300, + "y": 67.73575, + "index": 0, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 335, + "y": 67.73575, + "index": 1, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 335, + "y": 102.73575, + "index": 2, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 300, + "y": 102.73575, + "index": 3, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 85.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 250 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 252 + }, + "max": { + "#": 253 + } + }, + { + "x": 300, + "y": 67.73575 + }, + { + "x": 335, + "y": 102.73575 + }, + { + "x": 317.5, + "y": 82.32848 + }, + [ + { + "#": 256 + }, + { + "#": 257 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,1,2", + "startCol": 6, + "endCol": 6, + "startRow": 1, + "endRow": 2 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 260 + }, + "angle": 0, + "vertices": { + "#": 261 + }, + "position": { + "#": 266 + }, + "force": { + "#": 267 + }, + "torque": 0, + "positionImpulse": { + "#": 268 + }, + "constraintImpulse": { + "#": 269 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 270 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 271 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 272 + }, + "bounds": { + "#": 274 + }, + "positionPrev": { + "#": 277 + }, + "anglePrev": 0, + "axes": { + "#": 278 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 259 + }, + "sleepCounter": 0, + "region": { + "#": 281 + } + }, + [ + { + "#": 259 + } + ], + [ + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + } + ], + { + "x": 335, + "y": 67.73575, + "index": 0, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 370, + "y": 67.73575, + "index": 1, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 370, + "y": 102.73575, + "index": 2, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 335, + "y": 102.73575, + "index": 3, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 85.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 273 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 275 + }, + "max": { + "#": 276 + } + }, + { + "x": 335, + "y": 67.73575 + }, + { + "x": 370, + "y": 102.73575 + }, + { + "x": 352.5, + "y": 82.32848 + }, + [ + { + "#": 279 + }, + { + "#": 280 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,1,2", + "startCol": 6, + "endCol": 7, + "startRow": 1, + "endRow": 2 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 283 + }, + "angle": 0, + "vertices": { + "#": 284 + }, + "position": { + "#": 289 + }, + "force": { + "#": 290 + }, + "torque": 0, + "positionImpulse": { + "#": 291 + }, + "constraintImpulse": { + "#": 292 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 293 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 294 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 295 + }, + "bounds": { + "#": 297 + }, + "positionPrev": { + "#": 300 + }, + "anglePrev": 0, + "axes": { + "#": 301 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 282 + }, + "sleepCounter": 0, + "region": { + "#": 304 + } + }, + [ + { + "#": 282 + } + ], + [ + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + } + ], + { + "x": 370, + "y": 67.73575, + "index": 0, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 405, + "y": 67.73575, + "index": 1, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 405, + "y": 102.73575, + "index": 2, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 370, + "y": 102.73575, + "index": 3, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 85.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 296 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 298 + }, + "max": { + "#": 299 + } + }, + { + "x": 370, + "y": 67.73575 + }, + { + "x": 405, + "y": 102.73575 + }, + { + "x": 387.5, + "y": 82.32848 + }, + [ + { + "#": 302 + }, + { + "#": 303 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,1,2", + "startCol": 7, + "endCol": 8, + "startRow": 1, + "endRow": 2 + }, + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 306 + }, + "angle": 0, + "vertices": { + "#": 307 + }, + "position": { + "#": 312 + }, + "force": { + "#": 313 + }, + "torque": 0, + "positionImpulse": { + "#": 314 + }, + "constraintImpulse": { + "#": 315 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 316 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 317 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 318 + }, + "bounds": { + "#": 320 + }, + "positionPrev": { + "#": 323 + }, + "anglePrev": 0, + "axes": { + "#": 324 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 305 + }, + "sleepCounter": 0, + "region": { + "#": 327 + } + }, + [ + { + "#": 305 + } + ], + [ + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + } + ], + { + "x": 405, + "y": 67.73575, + "index": 0, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 440, + "y": 67.73575, + "index": 1, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 440, + "y": 102.73575, + "index": 2, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 405, + "y": 102.73575, + "index": 3, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 85.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 319 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 321 + }, + "max": { + "#": 322 + } + }, + { + "x": 405, + "y": 67.73575 + }, + { + "x": 440, + "y": 102.73575 + }, + { + "x": 422.5, + "y": 82.32848 + }, + [ + { + "#": 325 + }, + { + "#": 326 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,1,2", + "startCol": 8, + "endCol": 9, + "startRow": 1, + "endRow": 2 + }, + { + "id": 15, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 329 + }, + "angle": 0, + "vertices": { + "#": 330 + }, + "position": { + "#": 335 + }, + "force": { + "#": 336 + }, + "torque": 0, + "positionImpulse": { + "#": 337 + }, + "constraintImpulse": { + "#": 338 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 339 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 340 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 341 + }, + "bounds": { + "#": 343 + }, + "positionPrev": { + "#": 346 + }, + "anglePrev": 0, + "axes": { + "#": 347 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 328 + }, + "sleepCounter": 0, + "region": { + "#": 350 + } + }, + [ + { + "#": 328 + } + ], + [ + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + } + ], + { + "x": 440, + "y": 67.73575, + "index": 0, + "body": { + "#": 328 + }, + "isInternal": false + }, + { + "x": 475, + "y": 67.73575, + "index": 1, + "body": { + "#": 328 + }, + "isInternal": false + }, + { + "x": 475, + "y": 102.73575, + "index": 2, + "body": { + "#": 328 + }, + "isInternal": false + }, + { + "x": 440, + "y": 102.73575, + "index": 3, + "body": { + "#": 328 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 85.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 342 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 344 + }, + "max": { + "#": 345 + } + }, + { + "x": 440, + "y": 67.73575 + }, + { + "x": 475, + "y": 102.73575 + }, + { + "x": 457.5, + "y": 82.32848 + }, + [ + { + "#": 348 + }, + { + "#": 349 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,1,2", + "startCol": 9, + "endCol": 9, + "startRow": 1, + "endRow": 2 + }, + { + "id": 16, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 352 + }, + "angle": 0, + "vertices": { + "#": 353 + }, + "position": { + "#": 358 + }, + "force": { + "#": 359 + }, + "torque": 0, + "positionImpulse": { + "#": 360 + }, + "constraintImpulse": { + "#": 361 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 362 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 363 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 364 + }, + "bounds": { + "#": 366 + }, + "positionPrev": { + "#": 369 + }, + "anglePrev": 0, + "axes": { + "#": 370 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 351 + }, + "sleepCounter": 0, + "region": { + "#": 373 + } + }, + [ + { + "#": 351 + } + ], + [ + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + } + ], + { + "x": 475, + "y": 67.73575, + "index": 0, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 510, + "y": 67.73575, + "index": 1, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 510, + "y": 102.73575, + "index": 2, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 475, + "y": 102.73575, + "index": 3, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 85.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 365 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 367 + }, + "max": { + "#": 368 + } + }, + { + "x": 475, + "y": 67.73575 + }, + { + "x": 510, + "y": 102.73575 + }, + { + "x": 492.5, + "y": 82.32848 + }, + [ + { + "#": 371 + }, + { + "#": 372 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,1,2", + "startCol": 9, + "endCol": 10, + "startRow": 1, + "endRow": 2 + }, + { + "id": 17, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 375 + }, + "angle": 0, + "vertices": { + "#": 376 + }, + "position": { + "#": 381 + }, + "force": { + "#": 382 + }, + "torque": 0, + "positionImpulse": { + "#": 383 + }, + "constraintImpulse": { + "#": 384 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 385 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 386 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 387 + }, + "bounds": { + "#": 389 + }, + "positionPrev": { + "#": 392 + }, + "anglePrev": 0, + "axes": { + "#": 393 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 374 + }, + "sleepCounter": 0, + "region": { + "#": 396 + } + }, + [ + { + "#": 374 + } + ], + [ + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + } + ], + { + "x": 510, + "y": 67.73575, + "index": 0, + "body": { + "#": 374 + }, + "isInternal": false + }, + { + "x": 545, + "y": 67.73575, + "index": 1, + "body": { + "#": 374 + }, + "isInternal": false + }, + { + "x": 545, + "y": 102.73575, + "index": 2, + "body": { + "#": 374 + }, + "isInternal": false + }, + { + "x": 510, + "y": 102.73575, + "index": 3, + "body": { + "#": 374 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 85.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 388 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 390 + }, + "max": { + "#": 391 + } + }, + { + "x": 510, + "y": 67.73575 + }, + { + "x": 545, + "y": 102.73575 + }, + { + "x": 527.5, + "y": 82.32848 + }, + [ + { + "#": 394 + }, + { + "#": 395 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,1,2", + "startCol": 10, + "endCol": 11, + "startRow": 1, + "endRow": 2 + }, + { + "id": 18, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 398 + }, + "angle": 0, + "vertices": { + "#": 399 + }, + "position": { + "#": 404 + }, + "force": { + "#": 405 + }, + "torque": 0, + "positionImpulse": { + "#": 406 + }, + "constraintImpulse": { + "#": 407 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 408 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 409 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 410 + }, + "bounds": { + "#": 412 + }, + "positionPrev": { + "#": 415 + }, + "anglePrev": 0, + "axes": { + "#": 416 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 397 + }, + "sleepCounter": 0, + "region": { + "#": 419 + } + }, + [ + { + "#": 397 + } + ], + [ + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + } + ], + { + "x": 545, + "y": 67.73575, + "index": 0, + "body": { + "#": 397 + }, + "isInternal": false + }, + { + "x": 580, + "y": 67.73575, + "index": 1, + "body": { + "#": 397 + }, + "isInternal": false + }, + { + "x": 580, + "y": 102.73575, + "index": 2, + "body": { + "#": 397 + }, + "isInternal": false + }, + { + "x": 545, + "y": 102.73575, + "index": 3, + "body": { + "#": 397 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 85.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 411 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 413 + }, + "max": { + "#": 414 + } + }, + { + "x": 545, + "y": 67.73575 + }, + { + "x": 580, + "y": 102.73575 + }, + { + "x": 562.5, + "y": 82.32848 + }, + [ + { + "#": 417 + }, + { + "#": 418 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,1,2", + "startCol": 11, + "endCol": 12, + "startRow": 1, + "endRow": 2 + }, + { + "id": 19, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 421 + }, + "angle": 0, + "vertices": { + "#": 422 + }, + "position": { + "#": 427 + }, + "force": { + "#": 428 + }, + "torque": 0, + "positionImpulse": { + "#": 429 + }, + "constraintImpulse": { + "#": 430 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 431 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 432 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 433 + }, + "bounds": { + "#": 435 + }, + "positionPrev": { + "#": 438 + }, + "anglePrev": 0, + "axes": { + "#": 439 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 420 + }, + "sleepCounter": 0, + "region": { + "#": 442 + } + }, + [ + { + "#": 420 + } + ], + [ + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + } + ], + { + "x": 580, + "y": 67.73575, + "index": 0, + "body": { + "#": 420 + }, + "isInternal": false + }, + { + "x": 615, + "y": 67.73575, + "index": 1, + "body": { + "#": 420 + }, + "isInternal": false + }, + { + "x": 615, + "y": 102.73575, + "index": 2, + "body": { + "#": 420 + }, + "isInternal": false + }, + { + "x": 580, + "y": 102.73575, + "index": 3, + "body": { + "#": 420 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 85.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 434 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 436 + }, + "max": { + "#": 437 + } + }, + { + "x": 580, + "y": 67.73575 + }, + { + "x": 615, + "y": 102.73575 + }, + { + "x": 597.5, + "y": 82.32848 + }, + [ + { + "#": 440 + }, + { + "#": 441 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,12,1,2", + "startCol": 12, + "endCol": 12, + "startRow": 1, + "endRow": 2 + }, + { + "id": 20, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 444 + }, + "angle": 0, + "vertices": { + "#": 445 + }, + "position": { + "#": 450 + }, + "force": { + "#": 451 + }, + "torque": 0, + "positionImpulse": { + "#": 452 + }, + "constraintImpulse": { + "#": 453 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 454 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 455 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 456 + }, + "bounds": { + "#": 458 + }, + "positionPrev": { + "#": 461 + }, + "anglePrev": 0, + "axes": { + "#": 462 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 443 + }, + "sleepCounter": 0, + "region": { + "#": 465 + } + }, + [ + { + "#": 443 + } + ], + [ + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + } + ], + { + "x": 615, + "y": 67.73575, + "index": 0, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 650, + "y": 67.73575, + "index": 1, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 650, + "y": 102.73575, + "index": 2, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 615, + "y": 102.73575, + "index": 3, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 85.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 457 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 459 + }, + "max": { + "#": 460 + } + }, + { + "x": 615, + "y": 67.73575 + }, + { + "x": 650, + "y": 102.73575 + }, + { + "x": 632.5, + "y": 82.32848 + }, + [ + { + "#": 463 + }, + { + "#": 464 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,1,2", + "startCol": 12, + "endCol": 13, + "startRow": 1, + "endRow": 2 + }, + { + "id": 21, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 467 + }, + "angle": 0, + "vertices": { + "#": 468 + }, + "position": { + "#": 473 + }, + "force": { + "#": 474 + }, + "torque": 0, + "positionImpulse": { + "#": 475 + }, + "constraintImpulse": { + "#": 476 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 477 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 478 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 479 + }, + "bounds": { + "#": 481 + }, + "positionPrev": { + "#": 484 + }, + "anglePrev": 0, + "axes": { + "#": 485 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 466 + }, + "sleepCounter": 0, + "region": { + "#": 488 + } + }, + [ + { + "#": 466 + } + ], + [ + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + } + ], + { + "x": 650, + "y": 67.73575, + "index": 0, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 685, + "y": 67.73575, + "index": 1, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 685, + "y": 102.73575, + "index": 2, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 650, + "y": 102.73575, + "index": 3, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 85.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 480 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 482 + }, + "max": { + "#": 483 + } + }, + { + "x": 650, + "y": 67.73575 + }, + { + "x": 685, + "y": 102.73575 + }, + { + "x": 667.5, + "y": 82.32848 + }, + [ + { + "#": 486 + }, + { + "#": 487 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,1,2", + "startCol": 13, + "endCol": 14, + "startRow": 1, + "endRow": 2 + }, + { + "id": 22, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 490 + }, + "angle": 0, + "vertices": { + "#": 491 + }, + "position": { + "#": 496 + }, + "force": { + "#": 497 + }, + "torque": 0, + "positionImpulse": { + "#": 498 + }, + "constraintImpulse": { + "#": 499 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 500 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 501 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 502 + }, + "bounds": { + "#": 504 + }, + "positionPrev": { + "#": 507 + }, + "anglePrev": 0, + "axes": { + "#": 508 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 489 + }, + "sleepCounter": 0, + "region": { + "#": 511 + } + }, + [ + { + "#": 489 + } + ], + [ + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + } + ], + { + "x": 685, + "y": 67.73575, + "index": 0, + "body": { + "#": 489 + }, + "isInternal": false + }, + { + "x": 720, + "y": 67.73575, + "index": 1, + "body": { + "#": 489 + }, + "isInternal": false + }, + { + "x": 720, + "y": 102.73575, + "index": 2, + "body": { + "#": 489 + }, + "isInternal": false + }, + { + "x": 685, + "y": 102.73575, + "index": 3, + "body": { + "#": 489 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 85.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 503 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 505 + }, + "max": { + "#": 506 + } + }, + { + "x": 685, + "y": 67.73575 + }, + { + "x": 720, + "y": 102.73575 + }, + { + "x": 702.5, + "y": 82.32848 + }, + [ + { + "#": 509 + }, + { + "#": 510 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,1,2", + "startCol": 14, + "endCol": 15, + "startRow": 1, + "endRow": 2 + }, + { + "id": 23, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 513 + }, + "angle": 0, + "vertices": { + "#": 514 + }, + "position": { + "#": 519 + }, + "force": { + "#": 520 + }, + "torque": 0, + "positionImpulse": { + "#": 521 + }, + "constraintImpulse": { + "#": 522 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 523 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 524 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 525 + }, + "bounds": { + "#": 527 + }, + "positionPrev": { + "#": 530 + }, + "anglePrev": 0, + "axes": { + "#": 531 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 512 + }, + "sleepCounter": 0, + "region": { + "#": 534 + } + }, + [ + { + "#": 512 + } + ], + [ + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + } + ], + { + "x": 90, + "y": 102.73575, + "index": 0, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 125, + "y": 102.73575, + "index": 1, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 125, + "y": 137.73575, + "index": 2, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 90, + "y": 137.73575, + "index": 3, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 120.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 526 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 528 + }, + "max": { + "#": 529 + } + }, + { + "x": 90, + "y": 102.73575 + }, + { + "x": 125, + "y": 137.73575 + }, + { + "x": 107.5, + "y": 117.32848 + }, + [ + { + "#": 532 + }, + { + "#": 533 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "1,2,2,2", + "startCol": 1, + "endCol": 2, + "startRow": 2, + "endRow": 2 + }, + { + "id": 24, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 536 + }, + "angle": 0, + "vertices": { + "#": 537 + }, + "position": { + "#": 542 + }, + "force": { + "#": 543 + }, + "torque": 0, + "positionImpulse": { + "#": 544 + }, + "constraintImpulse": { + "#": 545 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 546 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 547 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 548 + }, + "bounds": { + "#": 550 + }, + "positionPrev": { + "#": 553 + }, + "anglePrev": 0, + "axes": { + "#": 554 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 535 + }, + "sleepCounter": 0, + "region": { + "#": 557 + } + }, + [ + { + "#": 535 + } + ], + [ + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + } + ], + { + "x": 125, + "y": 102.73575, + "index": 0, + "body": { + "#": 535 + }, + "isInternal": false + }, + { + "x": 160, + "y": 102.73575, + "index": 1, + "body": { + "#": 535 + }, + "isInternal": false + }, + { + "x": 160, + "y": 137.73575, + "index": 2, + "body": { + "#": 535 + }, + "isInternal": false + }, + { + "x": 125, + "y": 137.73575, + "index": 3, + "body": { + "#": 535 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 120.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 549 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 551 + }, + "max": { + "#": 552 + } + }, + { + "x": 125, + "y": 102.73575 + }, + { + "x": 160, + "y": 137.73575 + }, + { + "x": 142.5, + "y": 117.32848 + }, + [ + { + "#": 555 + }, + { + "#": 556 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,2,2", + "startCol": 2, + "endCol": 3, + "startRow": 2, + "endRow": 2 + }, + { + "id": 25, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 559 + }, + "angle": 0, + "vertices": { + "#": 560 + }, + "position": { + "#": 565 + }, + "force": { + "#": 566 + }, + "torque": 0, + "positionImpulse": { + "#": 567 + }, + "constraintImpulse": { + "#": 568 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 569 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 570 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 571 + }, + "bounds": { + "#": 573 + }, + "positionPrev": { + "#": 576 + }, + "anglePrev": 0, + "axes": { + "#": 577 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 558 + }, + "sleepCounter": 0, + "region": { + "#": 580 + } + }, + [ + { + "#": 558 + } + ], + [ + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + } + ], + { + "x": 160, + "y": 102.73575, + "index": 0, + "body": { + "#": 558 + }, + "isInternal": false + }, + { + "x": 195, + "y": 102.73575, + "index": 1, + "body": { + "#": 558 + }, + "isInternal": false + }, + { + "x": 195, + "y": 137.73575, + "index": 2, + "body": { + "#": 558 + }, + "isInternal": false + }, + { + "x": 160, + "y": 137.73575, + "index": 3, + "body": { + "#": 558 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 120.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 572 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 574 + }, + "max": { + "#": 575 + } + }, + { + "x": 160, + "y": 102.73575 + }, + { + "x": 195, + "y": 137.73575 + }, + { + "x": 177.5, + "y": 117.32848 + }, + [ + { + "#": 578 + }, + { + "#": 579 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,2,2", + "startCol": 3, + "endCol": 4, + "startRow": 2, + "endRow": 2 + }, + { + "id": 26, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 582 + }, + "angle": 0, + "vertices": { + "#": 583 + }, + "position": { + "#": 588 + }, + "force": { + "#": 589 + }, + "torque": 0, + "positionImpulse": { + "#": 590 + }, + "constraintImpulse": { + "#": 591 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 592 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 593 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 594 + }, + "bounds": { + "#": 596 + }, + "positionPrev": { + "#": 599 + }, + "anglePrev": 0, + "axes": { + "#": 600 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 581 + }, + "sleepCounter": 0, + "region": { + "#": 603 + } + }, + [ + { + "#": 581 + } + ], + [ + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + } + ], + { + "x": 195, + "y": 102.73575, + "index": 0, + "body": { + "#": 581 + }, + "isInternal": false + }, + { + "x": 230, + "y": 102.73575, + "index": 1, + "body": { + "#": 581 + }, + "isInternal": false + }, + { + "x": 230, + "y": 137.73575, + "index": 2, + "body": { + "#": 581 + }, + "isInternal": false + }, + { + "x": 195, + "y": 137.73575, + "index": 3, + "body": { + "#": 581 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 120.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 595 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 597 + }, + "max": { + "#": 598 + } + }, + { + "x": 195, + "y": 102.73575 + }, + { + "x": 230, + "y": 137.73575 + }, + { + "x": 212.5, + "y": 117.32848 + }, + [ + { + "#": 601 + }, + { + "#": 602 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,2,2", + "startCol": 4, + "endCol": 4, + "startRow": 2, + "endRow": 2 + }, + { + "id": 27, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 605 + }, + "angle": 0, + "vertices": { + "#": 606 + }, + "position": { + "#": 611 + }, + "force": { + "#": 612 + }, + "torque": 0, + "positionImpulse": { + "#": 613 + }, + "constraintImpulse": { + "#": 614 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 615 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 616 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 617 + }, + "bounds": { + "#": 619 + }, + "positionPrev": { + "#": 622 + }, + "anglePrev": 0, + "axes": { + "#": 623 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 604 + }, + "sleepCounter": 0, + "region": { + "#": 626 + } + }, + [ + { + "#": 604 + } + ], + [ + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + } + ], + { + "x": 230, + "y": 102.73575, + "index": 0, + "body": { + "#": 604 + }, + "isInternal": false + }, + { + "x": 265, + "y": 102.73575, + "index": 1, + "body": { + "#": 604 + }, + "isInternal": false + }, + { + "x": 265, + "y": 137.73575, + "index": 2, + "body": { + "#": 604 + }, + "isInternal": false + }, + { + "x": 230, + "y": 137.73575, + "index": 3, + "body": { + "#": 604 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 120.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 618 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 620 + }, + "max": { + "#": 621 + } + }, + { + "x": 230, + "y": 102.73575 + }, + { + "x": 265, + "y": 137.73575 + }, + { + "x": 247.5, + "y": 117.32848 + }, + [ + { + "#": 624 + }, + { + "#": 625 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,2,2", + "startCol": 4, + "endCol": 5, + "startRow": 2, + "endRow": 2 + }, + { + "id": 28, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 628 + }, + "angle": 0, + "vertices": { + "#": 629 + }, + "position": { + "#": 634 + }, + "force": { + "#": 635 + }, + "torque": 0, + "positionImpulse": { + "#": 636 + }, + "constraintImpulse": { + "#": 637 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 638 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 639 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 640 + }, + "bounds": { + "#": 642 + }, + "positionPrev": { + "#": 645 + }, + "anglePrev": 0, + "axes": { + "#": 646 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 627 + }, + "sleepCounter": 0, + "region": { + "#": 649 + } + }, + [ + { + "#": 627 + } + ], + [ + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + } + ], + { + "x": 265, + "y": 102.73575, + "index": 0, + "body": { + "#": 627 + }, + "isInternal": false + }, + { + "x": 300, + "y": 102.73575, + "index": 1, + "body": { + "#": 627 + }, + "isInternal": false + }, + { + "x": 300, + "y": 137.73575, + "index": 2, + "body": { + "#": 627 + }, + "isInternal": false + }, + { + "x": 265, + "y": 137.73575, + "index": 3, + "body": { + "#": 627 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 120.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 641 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 643 + }, + "max": { + "#": 644 + } + }, + { + "x": 265, + "y": 102.73575 + }, + { + "x": 300, + "y": 137.73575 + }, + { + "x": 282.5, + "y": 117.32848 + }, + [ + { + "#": 647 + }, + { + "#": 648 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,2,2", + "startCol": 5, + "endCol": 6, + "startRow": 2, + "endRow": 2 + }, + { + "id": 29, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 651 + }, + "angle": 0, + "vertices": { + "#": 652 + }, + "position": { + "#": 657 + }, + "force": { + "#": 658 + }, + "torque": 0, + "positionImpulse": { + "#": 659 + }, + "constraintImpulse": { + "#": 660 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 661 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 662 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 663 + }, + "bounds": { + "#": 665 + }, + "positionPrev": { + "#": 668 + }, + "anglePrev": 0, + "axes": { + "#": 669 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 650 + }, + "sleepCounter": 0, + "region": { + "#": 672 + } + }, + [ + { + "#": 650 + } + ], + [ + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + } + ], + { + "x": 300, + "y": 102.73575, + "index": 0, + "body": { + "#": 650 + }, + "isInternal": false + }, + { + "x": 335, + "y": 102.73575, + "index": 1, + "body": { + "#": 650 + }, + "isInternal": false + }, + { + "x": 335, + "y": 137.73575, + "index": 2, + "body": { + "#": 650 + }, + "isInternal": false + }, + { + "x": 300, + "y": 137.73575, + "index": 3, + "body": { + "#": 650 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 120.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 664 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 666 + }, + "max": { + "#": 667 + } + }, + { + "x": 300, + "y": 102.73575 + }, + { + "x": 335, + "y": 137.73575 + }, + { + "x": 317.5, + "y": 117.32848 + }, + [ + { + "#": 670 + }, + { + "#": 671 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,2,2", + "startCol": 6, + "endCol": 6, + "startRow": 2, + "endRow": 2 + }, + { + "id": 30, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 674 + }, + "angle": 0, + "vertices": { + "#": 675 + }, + "position": { + "#": 680 + }, + "force": { + "#": 681 + }, + "torque": 0, + "positionImpulse": { + "#": 682 + }, + "constraintImpulse": { + "#": 683 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 684 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 685 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 686 + }, + "bounds": { + "#": 688 + }, + "positionPrev": { + "#": 691 + }, + "anglePrev": 0, + "axes": { + "#": 692 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 673 + }, + "sleepCounter": 0, + "region": { + "#": 695 + } + }, + [ + { + "#": 673 + } + ], + [ + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + } + ], + { + "x": 335, + "y": 102.73575, + "index": 0, + "body": { + "#": 673 + }, + "isInternal": false + }, + { + "x": 370, + "y": 102.73575, + "index": 1, + "body": { + "#": 673 + }, + "isInternal": false + }, + { + "x": 370, + "y": 137.73575, + "index": 2, + "body": { + "#": 673 + }, + "isInternal": false + }, + { + "x": 335, + "y": 137.73575, + "index": 3, + "body": { + "#": 673 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 120.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 687 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 689 + }, + "max": { + "#": 690 + } + }, + { + "x": 335, + "y": 102.73575 + }, + { + "x": 370, + "y": 137.73575 + }, + { + "x": 352.5, + "y": 117.32848 + }, + [ + { + "#": 693 + }, + { + "#": 694 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,2,2", + "startCol": 6, + "endCol": 7, + "startRow": 2, + "endRow": 2 + }, + { + "id": 31, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 697 + }, + "angle": 0, + "vertices": { + "#": 698 + }, + "position": { + "#": 703 + }, + "force": { + "#": 704 + }, + "torque": 0, + "positionImpulse": { + "#": 705 + }, + "constraintImpulse": { + "#": 706 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 707 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 708 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 709 + }, + "bounds": { + "#": 711 + }, + "positionPrev": { + "#": 714 + }, + "anglePrev": 0, + "axes": { + "#": 715 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 696 + }, + "sleepCounter": 0, + "region": { + "#": 718 + } + }, + [ + { + "#": 696 + } + ], + [ + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + } + ], + { + "x": 370, + "y": 102.73575, + "index": 0, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 405, + "y": 102.73575, + "index": 1, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 405, + "y": 137.73575, + "index": 2, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 370, + "y": 137.73575, + "index": 3, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 120.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 710 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 712 + }, + "max": { + "#": 713 + } + }, + { + "x": 370, + "y": 102.73575 + }, + { + "x": 405, + "y": 137.73575 + }, + { + "x": 387.5, + "y": 117.32848 + }, + [ + { + "#": 716 + }, + { + "#": 717 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,2,2", + "startCol": 7, + "endCol": 8, + "startRow": 2, + "endRow": 2 + }, + { + "id": 32, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 720 + }, + "angle": 0, + "vertices": { + "#": 721 + }, + "position": { + "#": 726 + }, + "force": { + "#": 727 + }, + "torque": 0, + "positionImpulse": { + "#": 728 + }, + "constraintImpulse": { + "#": 729 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 730 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 731 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 732 + }, + "bounds": { + "#": 734 + }, + "positionPrev": { + "#": 737 + }, + "anglePrev": 0, + "axes": { + "#": 738 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 719 + }, + "sleepCounter": 0, + "region": { + "#": 741 + } + }, + [ + { + "#": 719 + } + ], + [ + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + } + ], + { + "x": 405, + "y": 102.73575, + "index": 0, + "body": { + "#": 719 + }, + "isInternal": false + }, + { + "x": 440, + "y": 102.73575, + "index": 1, + "body": { + "#": 719 + }, + "isInternal": false + }, + { + "x": 440, + "y": 137.73575, + "index": 2, + "body": { + "#": 719 + }, + "isInternal": false + }, + { + "x": 405, + "y": 137.73575, + "index": 3, + "body": { + "#": 719 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 120.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 733 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 735 + }, + "max": { + "#": 736 + } + }, + { + "x": 405, + "y": 102.73575 + }, + { + "x": 440, + "y": 137.73575 + }, + { + "x": 422.5, + "y": 117.32848 + }, + [ + { + "#": 739 + }, + { + "#": 740 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,2,2", + "startCol": 8, + "endCol": 9, + "startRow": 2, + "endRow": 2 + }, + { + "id": 33, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 743 + }, + "angle": 0, + "vertices": { + "#": 744 + }, + "position": { + "#": 749 + }, + "force": { + "#": 750 + }, + "torque": 0, + "positionImpulse": { + "#": 751 + }, + "constraintImpulse": { + "#": 752 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 753 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 754 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 755 + }, + "bounds": { + "#": 757 + }, + "positionPrev": { + "#": 760 + }, + "anglePrev": 0, + "axes": { + "#": 761 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 742 + }, + "sleepCounter": 0, + "region": { + "#": 764 + } + }, + [ + { + "#": 742 + } + ], + [ + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + } + ], + { + "x": 440, + "y": 102.73575, + "index": 0, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 475, + "y": 102.73575, + "index": 1, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 475, + "y": 137.73575, + "index": 2, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 440, + "y": 137.73575, + "index": 3, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 120.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 756 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 758 + }, + "max": { + "#": 759 + } + }, + { + "x": 440, + "y": 102.73575 + }, + { + "x": 475, + "y": 137.73575 + }, + { + "x": 457.5, + "y": 117.32848 + }, + [ + { + "#": 762 + }, + { + "#": 763 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,2,2", + "startCol": 9, + "endCol": 9, + "startRow": 2, + "endRow": 2 + }, + { + "id": 34, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 766 + }, + "angle": 0, + "vertices": { + "#": 767 + }, + "position": { + "#": 772 + }, + "force": { + "#": 773 + }, + "torque": 0, + "positionImpulse": { + "#": 774 + }, + "constraintImpulse": { + "#": 775 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 776 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 777 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 778 + }, + "bounds": { + "#": 780 + }, + "positionPrev": { + "#": 783 + }, + "anglePrev": 0, + "axes": { + "#": 784 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 765 + }, + "sleepCounter": 0, + "region": { + "#": 787 + } + }, + [ + { + "#": 765 + } + ], + [ + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + } + ], + { + "x": 475, + "y": 102.73575, + "index": 0, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 510, + "y": 102.73575, + "index": 1, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 510, + "y": 137.73575, + "index": 2, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 475, + "y": 137.73575, + "index": 3, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 120.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 779 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 781 + }, + "max": { + "#": 782 + } + }, + { + "x": 475, + "y": 102.73575 + }, + { + "x": 510, + "y": 137.73575 + }, + { + "x": 492.5, + "y": 117.32848 + }, + [ + { + "#": 785 + }, + { + "#": 786 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,2,2", + "startCol": 9, + "endCol": 10, + "startRow": 2, + "endRow": 2 + }, + { + "id": 35, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 789 + }, + "angle": 0, + "vertices": { + "#": 790 + }, + "position": { + "#": 795 + }, + "force": { + "#": 796 + }, + "torque": 0, + "positionImpulse": { + "#": 797 + }, + "constraintImpulse": { + "#": 798 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 799 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 800 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 801 + }, + "bounds": { + "#": 803 + }, + "positionPrev": { + "#": 806 + }, + "anglePrev": 0, + "axes": { + "#": 807 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 788 + }, + "sleepCounter": 0, + "region": { + "#": 810 + } + }, + [ + { + "#": 788 + } + ], + [ + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + } + ], + { + "x": 510, + "y": 102.73575, + "index": 0, + "body": { + "#": 788 + }, + "isInternal": false + }, + { + "x": 545, + "y": 102.73575, + "index": 1, + "body": { + "#": 788 + }, + "isInternal": false + }, + { + "x": 545, + "y": 137.73575, + "index": 2, + "body": { + "#": 788 + }, + "isInternal": false + }, + { + "x": 510, + "y": 137.73575, + "index": 3, + "body": { + "#": 788 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 120.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 802 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 804 + }, + "max": { + "#": 805 + } + }, + { + "x": 510, + "y": 102.73575 + }, + { + "x": 545, + "y": 137.73575 + }, + { + "x": 527.5, + "y": 117.32848 + }, + [ + { + "#": 808 + }, + { + "#": 809 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,2,2", + "startCol": 10, + "endCol": 11, + "startRow": 2, + "endRow": 2 + }, + { + "id": 36, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 812 + }, + "angle": 0, + "vertices": { + "#": 813 + }, + "position": { + "#": 818 + }, + "force": { + "#": 819 + }, + "torque": 0, + "positionImpulse": { + "#": 820 + }, + "constraintImpulse": { + "#": 821 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 822 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 823 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 824 + }, + "bounds": { + "#": 826 + }, + "positionPrev": { + "#": 829 + }, + "anglePrev": 0, + "axes": { + "#": 830 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 811 + }, + "sleepCounter": 0, + "region": { + "#": 833 + } + }, + [ + { + "#": 811 + } + ], + [ + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + } + ], + { + "x": 545, + "y": 102.73575, + "index": 0, + "body": { + "#": 811 + }, + "isInternal": false + }, + { + "x": 580, + "y": 102.73575, + "index": 1, + "body": { + "#": 811 + }, + "isInternal": false + }, + { + "x": 580, + "y": 137.73575, + "index": 2, + "body": { + "#": 811 + }, + "isInternal": false + }, + { + "x": 545, + "y": 137.73575, + "index": 3, + "body": { + "#": 811 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 120.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 825 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 827 + }, + "max": { + "#": 828 + } + }, + { + "x": 545, + "y": 102.73575 + }, + { + "x": 580, + "y": 137.73575 + }, + { + "x": 562.5, + "y": 117.32848 + }, + [ + { + "#": 831 + }, + { + "#": 832 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,2,2", + "startCol": 11, + "endCol": 12, + "startRow": 2, + "endRow": 2 + }, + { + "id": 37, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 835 + }, + "angle": 0, + "vertices": { + "#": 836 + }, + "position": { + "#": 841 + }, + "force": { + "#": 842 + }, + "torque": 0, + "positionImpulse": { + "#": 843 + }, + "constraintImpulse": { + "#": 844 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 845 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 846 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 847 + }, + "bounds": { + "#": 849 + }, + "positionPrev": { + "#": 852 + }, + "anglePrev": 0, + "axes": { + "#": 853 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 834 + }, + "sleepCounter": 0, + "region": { + "#": 856 + } + }, + [ + { + "#": 834 + } + ], + [ + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + } + ], + { + "x": 580, + "y": 102.73575, + "index": 0, + "body": { + "#": 834 + }, + "isInternal": false + }, + { + "x": 615, + "y": 102.73575, + "index": 1, + "body": { + "#": 834 + }, + "isInternal": false + }, + { + "x": 615, + "y": 137.73575, + "index": 2, + "body": { + "#": 834 + }, + "isInternal": false + }, + { + "x": 580, + "y": 137.73575, + "index": 3, + "body": { + "#": 834 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 120.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 848 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 850 + }, + "max": { + "#": 851 + } + }, + { + "x": 580, + "y": 102.73575 + }, + { + "x": 615, + "y": 137.73575 + }, + { + "x": 597.5, + "y": 117.32848 + }, + [ + { + "#": 854 + }, + { + "#": 855 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,12,2,2", + "startCol": 12, + "endCol": 12, + "startRow": 2, + "endRow": 2 + }, + { + "id": 38, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 858 + }, + "angle": 0, + "vertices": { + "#": 859 + }, + "position": { + "#": 864 + }, + "force": { + "#": 865 + }, + "torque": 0, + "positionImpulse": { + "#": 866 + }, + "constraintImpulse": { + "#": 867 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 868 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 869 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 870 + }, + "bounds": { + "#": 872 + }, + "positionPrev": { + "#": 875 + }, + "anglePrev": 0, + "axes": { + "#": 876 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 857 + }, + "sleepCounter": 0, + "region": { + "#": 879 + } + }, + [ + { + "#": 857 + } + ], + [ + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + } + ], + { + "x": 615, + "y": 102.73575, + "index": 0, + "body": { + "#": 857 + }, + "isInternal": false + }, + { + "x": 650, + "y": 102.73575, + "index": 1, + "body": { + "#": 857 + }, + "isInternal": false + }, + { + "x": 650, + "y": 137.73575, + "index": 2, + "body": { + "#": 857 + }, + "isInternal": false + }, + { + "x": 615, + "y": 137.73575, + "index": 3, + "body": { + "#": 857 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 120.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 871 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 873 + }, + "max": { + "#": 874 + } + }, + { + "x": 615, + "y": 102.73575 + }, + { + "x": 650, + "y": 137.73575 + }, + { + "x": 632.5, + "y": 117.32848 + }, + [ + { + "#": 877 + }, + { + "#": 878 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,2,2", + "startCol": 12, + "endCol": 13, + "startRow": 2, + "endRow": 2 + }, + { + "id": 39, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 881 + }, + "angle": 0, + "vertices": { + "#": 882 + }, + "position": { + "#": 887 + }, + "force": { + "#": 888 + }, + "torque": 0, + "positionImpulse": { + "#": 889 + }, + "constraintImpulse": { + "#": 890 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 891 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 892 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 893 + }, + "bounds": { + "#": 895 + }, + "positionPrev": { + "#": 898 + }, + "anglePrev": 0, + "axes": { + "#": 899 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 880 + }, + "sleepCounter": 0, + "region": { + "#": 902 + } + }, + [ + { + "#": 880 + } + ], + [ + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + } + ], + { + "x": 650, + "y": 102.73575, + "index": 0, + "body": { + "#": 880 + }, + "isInternal": false + }, + { + "x": 685, + "y": 102.73575, + "index": 1, + "body": { + "#": 880 + }, + "isInternal": false + }, + { + "x": 685, + "y": 137.73575, + "index": 2, + "body": { + "#": 880 + }, + "isInternal": false + }, + { + "x": 650, + "y": 137.73575, + "index": 3, + "body": { + "#": 880 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 120.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 894 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 896 + }, + "max": { + "#": 897 + } + }, + { + "x": 650, + "y": 102.73575 + }, + { + "x": 685, + "y": 137.73575 + }, + { + "x": 667.5, + "y": 117.32848 + }, + [ + { + "#": 900 + }, + { + "#": 901 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,2,2", + "startCol": 13, + "endCol": 14, + "startRow": 2, + "endRow": 2 + }, + { + "id": 40, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 904 + }, + "angle": 0, + "vertices": { + "#": 905 + }, + "position": { + "#": 910 + }, + "force": { + "#": 911 + }, + "torque": 0, + "positionImpulse": { + "#": 912 + }, + "constraintImpulse": { + "#": 913 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 914 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 915 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 916 + }, + "bounds": { + "#": 918 + }, + "positionPrev": { + "#": 921 + }, + "anglePrev": 0, + "axes": { + "#": 922 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 903 + }, + "sleepCounter": 0, + "region": { + "#": 925 + } + }, + [ + { + "#": 903 + } + ], + [ + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + } + ], + { + "x": 685, + "y": 102.73575, + "index": 0, + "body": { + "#": 903 + }, + "isInternal": false + }, + { + "x": 720, + "y": 102.73575, + "index": 1, + "body": { + "#": 903 + }, + "isInternal": false + }, + { + "x": 720, + "y": 137.73575, + "index": 2, + "body": { + "#": 903 + }, + "isInternal": false + }, + { + "x": 685, + "y": 137.73575, + "index": 3, + "body": { + "#": 903 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 120.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 917 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 919 + }, + "max": { + "#": 920 + } + }, + { + "x": 685, + "y": 102.73575 + }, + { + "x": 720, + "y": 137.73575 + }, + { + "x": 702.5, + "y": 117.32848 + }, + [ + { + "#": 923 + }, + { + "#": 924 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,2,2", + "startCol": 14, + "endCol": 15, + "startRow": 2, + "endRow": 2 + }, + { + "id": 41, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 927 + }, + "angle": 0, + "vertices": { + "#": 928 + }, + "position": { + "#": 933 + }, + "force": { + "#": 934 + }, + "torque": 0, + "positionImpulse": { + "#": 935 + }, + "constraintImpulse": { + "#": 936 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 937 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 938 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 939 + }, + "bounds": { + "#": 941 + }, + "positionPrev": { + "#": 944 + }, + "anglePrev": 0, + "axes": { + "#": 945 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 926 + }, + "sleepCounter": 0, + "region": { + "#": 948 + } + }, + [ + { + "#": 926 + } + ], + [ + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + }, + { + "#": 932 + } + ], + { + "x": 90, + "y": 137.73575, + "index": 0, + "body": { + "#": 926 + }, + "isInternal": false + }, + { + "x": 125, + "y": 137.73575, + "index": 1, + "body": { + "#": 926 + }, + "isInternal": false + }, + { + "x": 125, + "y": 172.73575, + "index": 2, + "body": { + "#": 926 + }, + "isInternal": false + }, + { + "x": 90, + "y": 172.73575, + "index": 3, + "body": { + "#": 926 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 155.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 940 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 942 + }, + "max": { + "#": 943 + } + }, + { + "x": 90, + "y": 137.73575 + }, + { + "x": 125, + "y": 172.73575 + }, + { + "x": 107.5, + "y": 152.32848 + }, + [ + { + "#": 946 + }, + { + "#": 947 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "1,2,2,3", + "startCol": 1, + "endCol": 2, + "startRow": 2, + "endRow": 3 + }, + { + "id": 42, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 950 + }, + "angle": 0, + "vertices": { + "#": 951 + }, + "position": { + "#": 956 + }, + "force": { + "#": 957 + }, + "torque": 0, + "positionImpulse": { + "#": 958 + }, + "constraintImpulse": { + "#": 959 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 960 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 961 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 962 + }, + "bounds": { + "#": 964 + }, + "positionPrev": { + "#": 967 + }, + "anglePrev": 0, + "axes": { + "#": 968 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 949 + }, + "sleepCounter": 0, + "region": { + "#": 971 + } + }, + [ + { + "#": 949 + } + ], + [ + { + "#": 952 + }, + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + } + ], + { + "x": 125, + "y": 137.73575, + "index": 0, + "body": { + "#": 949 + }, + "isInternal": false + }, + { + "x": 160, + "y": 137.73575, + "index": 1, + "body": { + "#": 949 + }, + "isInternal": false + }, + { + "x": 160, + "y": 172.73575, + "index": 2, + "body": { + "#": 949 + }, + "isInternal": false + }, + { + "x": 125, + "y": 172.73575, + "index": 3, + "body": { + "#": 949 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 155.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 963 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 965 + }, + "max": { + "#": 966 + } + }, + { + "x": 125, + "y": 137.73575 + }, + { + "x": 160, + "y": 172.73575 + }, + { + "x": 142.5, + "y": 152.32848 + }, + [ + { + "#": 969 + }, + { + "#": 970 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,2,3", + "startCol": 2, + "endCol": 3, + "startRow": 2, + "endRow": 3 + }, + { + "id": 43, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 973 + }, + "angle": 0, + "vertices": { + "#": 974 + }, + "position": { + "#": 979 + }, + "force": { + "#": 980 + }, + "torque": 0, + "positionImpulse": { + "#": 981 + }, + "constraintImpulse": { + "#": 982 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 983 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 984 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 985 + }, + "bounds": { + "#": 987 + }, + "positionPrev": { + "#": 990 + }, + "anglePrev": 0, + "axes": { + "#": 991 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 972 + }, + "sleepCounter": 0, + "region": { + "#": 994 + } + }, + [ + { + "#": 972 + } + ], + [ + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + }, + { + "#": 978 + } + ], + { + "x": 160, + "y": 137.73575, + "index": 0, + "body": { + "#": 972 + }, + "isInternal": false + }, + { + "x": 195, + "y": 137.73575, + "index": 1, + "body": { + "#": 972 + }, + "isInternal": false + }, + { + "x": 195, + "y": 172.73575, + "index": 2, + "body": { + "#": 972 + }, + "isInternal": false + }, + { + "x": 160, + "y": 172.73575, + "index": 3, + "body": { + "#": 972 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 155.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 986 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 988 + }, + "max": { + "#": 989 + } + }, + { + "x": 160, + "y": 137.73575 + }, + { + "x": 195, + "y": 172.73575 + }, + { + "x": 177.5, + "y": 152.32848 + }, + [ + { + "#": 992 + }, + { + "#": 993 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,2,3", + "startCol": 3, + "endCol": 4, + "startRow": 2, + "endRow": 3 + }, + { + "id": 44, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 996 + }, + "angle": 0, + "vertices": { + "#": 997 + }, + "position": { + "#": 1002 + }, + "force": { + "#": 1003 + }, + "torque": 0, + "positionImpulse": { + "#": 1004 + }, + "constraintImpulse": { + "#": 1005 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1006 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1007 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1008 + }, + "bounds": { + "#": 1010 + }, + "positionPrev": { + "#": 1013 + }, + "anglePrev": 0, + "axes": { + "#": 1014 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 995 + }, + "sleepCounter": 0, + "region": { + "#": 1017 + } + }, + [ + { + "#": 995 + } + ], + [ + { + "#": 998 + }, + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + } + ], + { + "x": 195, + "y": 137.73575, + "index": 0, + "body": { + "#": 995 + }, + "isInternal": false + }, + { + "x": 230, + "y": 137.73575, + "index": 1, + "body": { + "#": 995 + }, + "isInternal": false + }, + { + "x": 230, + "y": 172.73575, + "index": 2, + "body": { + "#": 995 + }, + "isInternal": false + }, + { + "x": 195, + "y": 172.73575, + "index": 3, + "body": { + "#": 995 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 155.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1009 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1011 + }, + "max": { + "#": 1012 + } + }, + { + "x": 195, + "y": 137.73575 + }, + { + "x": 230, + "y": 172.73575 + }, + { + "x": 212.5, + "y": 152.32848 + }, + [ + { + "#": 1015 + }, + { + "#": 1016 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,2,3", + "startCol": 4, + "endCol": 4, + "startRow": 2, + "endRow": 3 + }, + { + "id": 45, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1019 + }, + "angle": 0, + "vertices": { + "#": 1020 + }, + "position": { + "#": 1025 + }, + "force": { + "#": 1026 + }, + "torque": 0, + "positionImpulse": { + "#": 1027 + }, + "constraintImpulse": { + "#": 1028 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1029 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1030 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1031 + }, + "bounds": { + "#": 1033 + }, + "positionPrev": { + "#": 1036 + }, + "anglePrev": 0, + "axes": { + "#": 1037 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1018 + }, + "sleepCounter": 0, + "region": { + "#": 1040 + } + }, + [ + { + "#": 1018 + } + ], + [ + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + } + ], + { + "x": 230, + "y": 137.73575, + "index": 0, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 265, + "y": 137.73575, + "index": 1, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 265, + "y": 172.73575, + "index": 2, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 230, + "y": 172.73575, + "index": 3, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 155.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1032 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1034 + }, + "max": { + "#": 1035 + } + }, + { + "x": 230, + "y": 137.73575 + }, + { + "x": 265, + "y": 172.73575 + }, + { + "x": 247.5, + "y": 152.32848 + }, + [ + { + "#": 1038 + }, + { + "#": 1039 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,2,3", + "startCol": 4, + "endCol": 5, + "startRow": 2, + "endRow": 3 + }, + { + "id": 46, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1042 + }, + "angle": 0, + "vertices": { + "#": 1043 + }, + "position": { + "#": 1048 + }, + "force": { + "#": 1049 + }, + "torque": 0, + "positionImpulse": { + "#": 1050 + }, + "constraintImpulse": { + "#": 1051 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1052 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1053 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1054 + }, + "bounds": { + "#": 1056 + }, + "positionPrev": { + "#": 1059 + }, + "anglePrev": 0, + "axes": { + "#": 1060 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1041 + }, + "sleepCounter": 0, + "region": { + "#": 1063 + } + }, + [ + { + "#": 1041 + } + ], + [ + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + } + ], + { + "x": 265, + "y": 137.73575, + "index": 0, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 300, + "y": 137.73575, + "index": 1, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 300, + "y": 172.73575, + "index": 2, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 265, + "y": 172.73575, + "index": 3, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 155.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1055 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1057 + }, + "max": { + "#": 1058 + } + }, + { + "x": 265, + "y": 137.73575 + }, + { + "x": 300, + "y": 172.73575 + }, + { + "x": 282.5, + "y": 152.32848 + }, + [ + { + "#": 1061 + }, + { + "#": 1062 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,2,3", + "startCol": 5, + "endCol": 6, + "startRow": 2, + "endRow": 3 + }, + { + "id": 47, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1065 + }, + "angle": 0, + "vertices": { + "#": 1066 + }, + "position": { + "#": 1071 + }, + "force": { + "#": 1072 + }, + "torque": 0, + "positionImpulse": { + "#": 1073 + }, + "constraintImpulse": { + "#": 1074 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1075 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1076 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1077 + }, + "bounds": { + "#": 1079 + }, + "positionPrev": { + "#": 1082 + }, + "anglePrev": 0, + "axes": { + "#": 1083 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1064 + }, + "sleepCounter": 0, + "region": { + "#": 1086 + } + }, + [ + { + "#": 1064 + } + ], + [ + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + } + ], + { + "x": 300, + "y": 137.73575, + "index": 0, + "body": { + "#": 1064 + }, + "isInternal": false + }, + { + "x": 335, + "y": 137.73575, + "index": 1, + "body": { + "#": 1064 + }, + "isInternal": false + }, + { + "x": 335, + "y": 172.73575, + "index": 2, + "body": { + "#": 1064 + }, + "isInternal": false + }, + { + "x": 300, + "y": 172.73575, + "index": 3, + "body": { + "#": 1064 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 155.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1078 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1080 + }, + "max": { + "#": 1081 + } + }, + { + "x": 300, + "y": 137.73575 + }, + { + "x": 335, + "y": 172.73575 + }, + { + "x": 317.5, + "y": 152.32848 + }, + [ + { + "#": 1084 + }, + { + "#": 1085 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,2,3", + "startCol": 6, + "endCol": 6, + "startRow": 2, + "endRow": 3 + }, + { + "id": 48, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1088 + }, + "angle": 0, + "vertices": { + "#": 1089 + }, + "position": { + "#": 1094 + }, + "force": { + "#": 1095 + }, + "torque": 0, + "positionImpulse": { + "#": 1096 + }, + "constraintImpulse": { + "#": 1097 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1098 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1099 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1100 + }, + "bounds": { + "#": 1102 + }, + "positionPrev": { + "#": 1105 + }, + "anglePrev": 0, + "axes": { + "#": 1106 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1087 + }, + "sleepCounter": 0, + "region": { + "#": 1109 + } + }, + [ + { + "#": 1087 + } + ], + [ + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + } + ], + { + "x": 335, + "y": 137.73575, + "index": 0, + "body": { + "#": 1087 + }, + "isInternal": false + }, + { + "x": 370, + "y": 137.73575, + "index": 1, + "body": { + "#": 1087 + }, + "isInternal": false + }, + { + "x": 370, + "y": 172.73575, + "index": 2, + "body": { + "#": 1087 + }, + "isInternal": false + }, + { + "x": 335, + "y": 172.73575, + "index": 3, + "body": { + "#": 1087 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 155.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1101 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1103 + }, + "max": { + "#": 1104 + } + }, + { + "x": 335, + "y": 137.73575 + }, + { + "x": 370, + "y": 172.73575 + }, + { + "x": 352.5, + "y": 152.32848 + }, + [ + { + "#": 1107 + }, + { + "#": 1108 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,2,3", + "startCol": 6, + "endCol": 7, + "startRow": 2, + "endRow": 3 + }, + { + "id": 49, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1111 + }, + "angle": 0, + "vertices": { + "#": 1112 + }, + "position": { + "#": 1117 + }, + "force": { + "#": 1118 + }, + "torque": 0, + "positionImpulse": { + "#": 1119 + }, + "constraintImpulse": { + "#": 1120 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1121 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1122 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1123 + }, + "bounds": { + "#": 1125 + }, + "positionPrev": { + "#": 1128 + }, + "anglePrev": 0, + "axes": { + "#": 1129 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1110 + }, + "sleepCounter": 0, + "region": { + "#": 1132 + } + }, + [ + { + "#": 1110 + } + ], + [ + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + } + ], + { + "x": 370, + "y": 137.73575, + "index": 0, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 405, + "y": 137.73575, + "index": 1, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 405, + "y": 172.73575, + "index": 2, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 370, + "y": 172.73575, + "index": 3, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 155.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1124 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1126 + }, + "max": { + "#": 1127 + } + }, + { + "x": 370, + "y": 137.73575 + }, + { + "x": 405, + "y": 172.73575 + }, + { + "x": 387.5, + "y": 152.32848 + }, + [ + { + "#": 1130 + }, + { + "#": 1131 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,2,3", + "startCol": 7, + "endCol": 8, + "startRow": 2, + "endRow": 3 + }, + { + "id": 50, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1134 + }, + "angle": 0, + "vertices": { + "#": 1135 + }, + "position": { + "#": 1140 + }, + "force": { + "#": 1141 + }, + "torque": 0, + "positionImpulse": { + "#": 1142 + }, + "constraintImpulse": { + "#": 1143 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1144 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1145 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1146 + }, + "bounds": { + "#": 1148 + }, + "positionPrev": { + "#": 1151 + }, + "anglePrev": 0, + "axes": { + "#": 1152 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1133 + }, + "sleepCounter": 0, + "region": { + "#": 1155 + } + }, + [ + { + "#": 1133 + } + ], + [ + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + } + ], + { + "x": 405, + "y": 137.73575, + "index": 0, + "body": { + "#": 1133 + }, + "isInternal": false + }, + { + "x": 440, + "y": 137.73575, + "index": 1, + "body": { + "#": 1133 + }, + "isInternal": false + }, + { + "x": 440, + "y": 172.73575, + "index": 2, + "body": { + "#": 1133 + }, + "isInternal": false + }, + { + "x": 405, + "y": 172.73575, + "index": 3, + "body": { + "#": 1133 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 155.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1147 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1149 + }, + "max": { + "#": 1150 + } + }, + { + "x": 405, + "y": 137.73575 + }, + { + "x": 440, + "y": 172.73575 + }, + { + "x": 422.5, + "y": 152.32848 + }, + [ + { + "#": 1153 + }, + { + "#": 1154 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,2,3", + "startCol": 8, + "endCol": 9, + "startRow": 2, + "endRow": 3 + }, + { + "id": 51, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1157 + }, + "angle": 0, + "vertices": { + "#": 1158 + }, + "position": { + "#": 1163 + }, + "force": { + "#": 1164 + }, + "torque": 0, + "positionImpulse": { + "#": 1165 + }, + "constraintImpulse": { + "#": 1166 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1167 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1168 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1169 + }, + "bounds": { + "#": 1171 + }, + "positionPrev": { + "#": 1174 + }, + "anglePrev": 0, + "axes": { + "#": 1175 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1156 + }, + "sleepCounter": 0, + "region": { + "#": 1178 + } + }, + [ + { + "#": 1156 + } + ], + [ + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + } + ], + { + "x": 440, + "y": 137.73575, + "index": 0, + "body": { + "#": 1156 + }, + "isInternal": false + }, + { + "x": 475, + "y": 137.73575, + "index": 1, + "body": { + "#": 1156 + }, + "isInternal": false + }, + { + "x": 475, + "y": 172.73575, + "index": 2, + "body": { + "#": 1156 + }, + "isInternal": false + }, + { + "x": 440, + "y": 172.73575, + "index": 3, + "body": { + "#": 1156 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 155.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1170 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1172 + }, + "max": { + "#": 1173 + } + }, + { + "x": 440, + "y": 137.73575 + }, + { + "x": 475, + "y": 172.73575 + }, + { + "x": 457.5, + "y": 152.32848 + }, + [ + { + "#": 1176 + }, + { + "#": 1177 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,2,3", + "startCol": 9, + "endCol": 9, + "startRow": 2, + "endRow": 3 + }, + { + "id": 52, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1180 + }, + "angle": 0, + "vertices": { + "#": 1181 + }, + "position": { + "#": 1186 + }, + "force": { + "#": 1187 + }, + "torque": 0, + "positionImpulse": { + "#": 1188 + }, + "constraintImpulse": { + "#": 1189 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1190 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1191 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1192 + }, + "bounds": { + "#": 1194 + }, + "positionPrev": { + "#": 1197 + }, + "anglePrev": 0, + "axes": { + "#": 1198 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1179 + }, + "sleepCounter": 0, + "region": { + "#": 1201 + } + }, + [ + { + "#": 1179 + } + ], + [ + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + } + ], + { + "x": 475, + "y": 137.73575, + "index": 0, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 510, + "y": 137.73575, + "index": 1, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 510, + "y": 172.73575, + "index": 2, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 475, + "y": 172.73575, + "index": 3, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 155.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1193 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1195 + }, + "max": { + "#": 1196 + } + }, + { + "x": 475, + "y": 137.73575 + }, + { + "x": 510, + "y": 172.73575 + }, + { + "x": 492.5, + "y": 152.32848 + }, + [ + { + "#": 1199 + }, + { + "#": 1200 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,2,3", + "startCol": 9, + "endCol": 10, + "startRow": 2, + "endRow": 3 + }, + { + "id": 53, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1203 + }, + "angle": 0, + "vertices": { + "#": 1204 + }, + "position": { + "#": 1209 + }, + "force": { + "#": 1210 + }, + "torque": 0, + "positionImpulse": { + "#": 1211 + }, + "constraintImpulse": { + "#": 1212 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1213 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1214 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1215 + }, + "bounds": { + "#": 1217 + }, + "positionPrev": { + "#": 1220 + }, + "anglePrev": 0, + "axes": { + "#": 1221 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1202 + }, + "sleepCounter": 0, + "region": { + "#": 1224 + } + }, + [ + { + "#": 1202 + } + ], + [ + { + "#": 1205 + }, + { + "#": 1206 + }, + { + "#": 1207 + }, + { + "#": 1208 + } + ], + { + "x": 510, + "y": 137.73575, + "index": 0, + "body": { + "#": 1202 + }, + "isInternal": false + }, + { + "x": 545, + "y": 137.73575, + "index": 1, + "body": { + "#": 1202 + }, + "isInternal": false + }, + { + "x": 545, + "y": 172.73575, + "index": 2, + "body": { + "#": 1202 + }, + "isInternal": false + }, + { + "x": 510, + "y": 172.73575, + "index": 3, + "body": { + "#": 1202 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 155.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1216 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1218 + }, + "max": { + "#": 1219 + } + }, + { + "x": 510, + "y": 137.73575 + }, + { + "x": 545, + "y": 172.73575 + }, + { + "x": 527.5, + "y": 152.32848 + }, + [ + { + "#": 1222 + }, + { + "#": 1223 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,2,3", + "startCol": 10, + "endCol": 11, + "startRow": 2, + "endRow": 3 + }, + { + "id": 54, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1226 + }, + "angle": 0, + "vertices": { + "#": 1227 + }, + "position": { + "#": 1232 + }, + "force": { + "#": 1233 + }, + "torque": 0, + "positionImpulse": { + "#": 1234 + }, + "constraintImpulse": { + "#": 1235 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1236 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1237 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1238 + }, + "bounds": { + "#": 1240 + }, + "positionPrev": { + "#": 1243 + }, + "anglePrev": 0, + "axes": { + "#": 1244 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1225 + }, + "sleepCounter": 0, + "region": { + "#": 1247 + } + }, + [ + { + "#": 1225 + } + ], + [ + { + "#": 1228 + }, + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + } + ], + { + "x": 545, + "y": 137.73575, + "index": 0, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 580, + "y": 137.73575, + "index": 1, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 580, + "y": 172.73575, + "index": 2, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 545, + "y": 172.73575, + "index": 3, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 155.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1239 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1241 + }, + "max": { + "#": 1242 + } + }, + { + "x": 545, + "y": 137.73575 + }, + { + "x": 580, + "y": 172.73575 + }, + { + "x": 562.5, + "y": 152.32848 + }, + [ + { + "#": 1245 + }, + { + "#": 1246 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,2,3", + "startCol": 11, + "endCol": 12, + "startRow": 2, + "endRow": 3 + }, + { + "id": 55, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1249 + }, + "angle": 0, + "vertices": { + "#": 1250 + }, + "position": { + "#": 1255 + }, + "force": { + "#": 1256 + }, + "torque": 0, + "positionImpulse": { + "#": 1257 + }, + "constraintImpulse": { + "#": 1258 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1259 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1260 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1261 + }, + "bounds": { + "#": 1263 + }, + "positionPrev": { + "#": 1266 + }, + "anglePrev": 0, + "axes": { + "#": 1267 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1248 + }, + "sleepCounter": 0, + "region": { + "#": 1270 + } + }, + [ + { + "#": 1248 + } + ], + [ + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + }, + { + "#": 1254 + } + ], + { + "x": 580, + "y": 137.73575, + "index": 0, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 615, + "y": 137.73575, + "index": 1, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 615, + "y": 172.73575, + "index": 2, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 580, + "y": 172.73575, + "index": 3, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 155.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1262 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1264 + }, + "max": { + "#": 1265 + } + }, + { + "x": 580, + "y": 137.73575 + }, + { + "x": 615, + "y": 172.73575 + }, + { + "x": 597.5, + "y": 152.32848 + }, + [ + { + "#": 1268 + }, + { + "#": 1269 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,12,2,3", + "startCol": 12, + "endCol": 12, + "startRow": 2, + "endRow": 3 + }, + { + "id": 56, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1272 + }, + "angle": 0, + "vertices": { + "#": 1273 + }, + "position": { + "#": 1278 + }, + "force": { + "#": 1279 + }, + "torque": 0, + "positionImpulse": { + "#": 1280 + }, + "constraintImpulse": { + "#": 1281 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1282 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1283 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1284 + }, + "bounds": { + "#": 1286 + }, + "positionPrev": { + "#": 1289 + }, + "anglePrev": 0, + "axes": { + "#": 1290 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1271 + }, + "sleepCounter": 0, + "region": { + "#": 1293 + } + }, + [ + { + "#": 1271 + } + ], + [ + { + "#": 1274 + }, + { + "#": 1275 + }, + { + "#": 1276 + }, + { + "#": 1277 + } + ], + { + "x": 615, + "y": 137.73575, + "index": 0, + "body": { + "#": 1271 + }, + "isInternal": false + }, + { + "x": 650, + "y": 137.73575, + "index": 1, + "body": { + "#": 1271 + }, + "isInternal": false + }, + { + "x": 650, + "y": 172.73575, + "index": 2, + "body": { + "#": 1271 + }, + "isInternal": false + }, + { + "x": 615, + "y": 172.73575, + "index": 3, + "body": { + "#": 1271 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 155.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1285 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1287 + }, + "max": { + "#": 1288 + } + }, + { + "x": 615, + "y": 137.73575 + }, + { + "x": 650, + "y": 172.73575 + }, + { + "x": 632.5, + "y": 152.32848 + }, + [ + { + "#": 1291 + }, + { + "#": 1292 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,2,3", + "startCol": 12, + "endCol": 13, + "startRow": 2, + "endRow": 3 + }, + { + "id": 57, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1295 + }, + "angle": 0, + "vertices": { + "#": 1296 + }, + "position": { + "#": 1301 + }, + "force": { + "#": 1302 + }, + "torque": 0, + "positionImpulse": { + "#": 1303 + }, + "constraintImpulse": { + "#": 1304 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1305 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1306 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1307 + }, + "bounds": { + "#": 1309 + }, + "positionPrev": { + "#": 1312 + }, + "anglePrev": 0, + "axes": { + "#": 1313 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1294 + }, + "sleepCounter": 0, + "region": { + "#": 1316 + } + }, + [ + { + "#": 1294 + } + ], + [ + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + } + ], + { + "x": 650, + "y": 137.73575, + "index": 0, + "body": { + "#": 1294 + }, + "isInternal": false + }, + { + "x": 685, + "y": 137.73575, + "index": 1, + "body": { + "#": 1294 + }, + "isInternal": false + }, + { + "x": 685, + "y": 172.73575, + "index": 2, + "body": { + "#": 1294 + }, + "isInternal": false + }, + { + "x": 650, + "y": 172.73575, + "index": 3, + "body": { + "#": 1294 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 155.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1308 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1310 + }, + "max": { + "#": 1311 + } + }, + { + "x": 650, + "y": 137.73575 + }, + { + "x": 685, + "y": 172.73575 + }, + { + "x": 667.5, + "y": 152.32848 + }, + [ + { + "#": 1314 + }, + { + "#": 1315 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,2,3", + "startCol": 13, + "endCol": 14, + "startRow": 2, + "endRow": 3 + }, + { + "id": 58, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1318 + }, + "angle": 0, + "vertices": { + "#": 1319 + }, + "position": { + "#": 1324 + }, + "force": { + "#": 1325 + }, + "torque": 0, + "positionImpulse": { + "#": 1326 + }, + "constraintImpulse": { + "#": 1327 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1328 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1329 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1330 + }, + "bounds": { + "#": 1332 + }, + "positionPrev": { + "#": 1335 + }, + "anglePrev": 0, + "axes": { + "#": 1336 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1317 + }, + "sleepCounter": 0, + "region": { + "#": 1339 + } + }, + [ + { + "#": 1317 + } + ], + [ + { + "#": 1320 + }, + { + "#": 1321 + }, + { + "#": 1322 + }, + { + "#": 1323 + } + ], + { + "x": 685, + "y": 137.73575, + "index": 0, + "body": { + "#": 1317 + }, + "isInternal": false + }, + { + "x": 720, + "y": 137.73575, + "index": 1, + "body": { + "#": 1317 + }, + "isInternal": false + }, + { + "x": 720, + "y": 172.73575, + "index": 2, + "body": { + "#": 1317 + }, + "isInternal": false + }, + { + "x": 685, + "y": 172.73575, + "index": 3, + "body": { + "#": 1317 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 155.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1331 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1333 + }, + "max": { + "#": 1334 + } + }, + { + "x": 685, + "y": 137.73575 + }, + { + "x": 720, + "y": 172.73575 + }, + { + "x": 702.5, + "y": 152.32848 + }, + [ + { + "#": 1337 + }, + { + "#": 1338 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,2,3", + "startCol": 14, + "endCol": 15, + "startRow": 2, + "endRow": 3 + }, + { + "id": 59, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1341 + }, + "angle": 0, + "vertices": { + "#": 1342 + }, + "position": { + "#": 1347 + }, + "force": { + "#": 1348 + }, + "torque": 0, + "positionImpulse": { + "#": 1349 + }, + "constraintImpulse": { + "#": 1350 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1351 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1352 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1353 + }, + "bounds": { + "#": 1355 + }, + "positionPrev": { + "#": 1358 + }, + "anglePrev": 0, + "axes": { + "#": 1359 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1340 + }, + "sleepCounter": 0, + "region": { + "#": 1362 + } + }, + [ + { + "#": 1340 + } + ], + [ + { + "#": 1343 + }, + { + "#": 1344 + }, + { + "#": 1345 + }, + { + "#": 1346 + } + ], + { + "x": 90, + "y": 172.73575, + "index": 0, + "body": { + "#": 1340 + }, + "isInternal": false + }, + { + "x": 125, + "y": 172.73575, + "index": 1, + "body": { + "#": 1340 + }, + "isInternal": false + }, + { + "x": 125, + "y": 207.73575, + "index": 2, + "body": { + "#": 1340 + }, + "isInternal": false + }, + { + "x": 90, + "y": 207.73575, + "index": 3, + "body": { + "#": 1340 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 190.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1354 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1356 + }, + "max": { + "#": 1357 + } + }, + { + "x": 90, + "y": 172.73575 + }, + { + "x": 125, + "y": 207.73575 + }, + { + "x": 107.5, + "y": 187.32848 + }, + [ + { + "#": 1360 + }, + { + "#": 1361 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "1,2,3,4", + "startCol": 1, + "endCol": 2, + "startRow": 3, + "endRow": 4 + }, + { + "id": 60, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1364 + }, + "angle": 0, + "vertices": { + "#": 1365 + }, + "position": { + "#": 1370 + }, + "force": { + "#": 1371 + }, + "torque": 0, + "positionImpulse": { + "#": 1372 + }, + "constraintImpulse": { + "#": 1373 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1374 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1375 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1376 + }, + "bounds": { + "#": 1378 + }, + "positionPrev": { + "#": 1381 + }, + "anglePrev": 0, + "axes": { + "#": 1382 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1363 + }, + "sleepCounter": 0, + "region": { + "#": 1385 + } + }, + [ + { + "#": 1363 + } + ], + [ + { + "#": 1366 + }, + { + "#": 1367 + }, + { + "#": 1368 + }, + { + "#": 1369 + } + ], + { + "x": 125, + "y": 172.73575, + "index": 0, + "body": { + "#": 1363 + }, + "isInternal": false + }, + { + "x": 160, + "y": 172.73575, + "index": 1, + "body": { + "#": 1363 + }, + "isInternal": false + }, + { + "x": 160, + "y": 207.73575, + "index": 2, + "body": { + "#": 1363 + }, + "isInternal": false + }, + { + "x": 125, + "y": 207.73575, + "index": 3, + "body": { + "#": 1363 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 190.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1377 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1379 + }, + "max": { + "#": 1380 + } + }, + { + "x": 125, + "y": 172.73575 + }, + { + "x": 160, + "y": 207.73575 + }, + { + "x": 142.5, + "y": 187.32848 + }, + [ + { + "#": 1383 + }, + { + "#": 1384 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,3,4", + "startCol": 2, + "endCol": 3, + "startRow": 3, + "endRow": 4 + }, + { + "id": 61, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1387 + }, + "angle": 0, + "vertices": { + "#": 1388 + }, + "position": { + "#": 1393 + }, + "force": { + "#": 1394 + }, + "torque": 0, + "positionImpulse": { + "#": 1395 + }, + "constraintImpulse": { + "#": 1396 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1397 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1398 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1399 + }, + "bounds": { + "#": 1401 + }, + "positionPrev": { + "#": 1404 + }, + "anglePrev": 0, + "axes": { + "#": 1405 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1386 + }, + "sleepCounter": 0, + "region": { + "#": 1408 + } + }, + [ + { + "#": 1386 + } + ], + [ + { + "#": 1389 + }, + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + } + ], + { + "x": 160, + "y": 172.73575, + "index": 0, + "body": { + "#": 1386 + }, + "isInternal": false + }, + { + "x": 195, + "y": 172.73575, + "index": 1, + "body": { + "#": 1386 + }, + "isInternal": false + }, + { + "x": 195, + "y": 207.73575, + "index": 2, + "body": { + "#": 1386 + }, + "isInternal": false + }, + { + "x": 160, + "y": 207.73575, + "index": 3, + "body": { + "#": 1386 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 190.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1400 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1402 + }, + "max": { + "#": 1403 + } + }, + { + "x": 160, + "y": 172.73575 + }, + { + "x": 195, + "y": 207.73575 + }, + { + "x": 177.5, + "y": 187.32848 + }, + [ + { + "#": 1406 + }, + { + "#": 1407 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,3,4", + "startCol": 3, + "endCol": 4, + "startRow": 3, + "endRow": 4 + }, + { + "id": 62, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1410 + }, + "angle": 0, + "vertices": { + "#": 1411 + }, + "position": { + "#": 1416 + }, + "force": { + "#": 1417 + }, + "torque": 0, + "positionImpulse": { + "#": 1418 + }, + "constraintImpulse": { + "#": 1419 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1420 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1421 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1422 + }, + "bounds": { + "#": 1424 + }, + "positionPrev": { + "#": 1427 + }, + "anglePrev": 0, + "axes": { + "#": 1428 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1409 + }, + "sleepCounter": 0, + "region": { + "#": 1431 + } + }, + [ + { + "#": 1409 + } + ], + [ + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + }, + { + "#": 1415 + } + ], + { + "x": 195, + "y": 172.73575, + "index": 0, + "body": { + "#": 1409 + }, + "isInternal": false + }, + { + "x": 230, + "y": 172.73575, + "index": 1, + "body": { + "#": 1409 + }, + "isInternal": false + }, + { + "x": 230, + "y": 207.73575, + "index": 2, + "body": { + "#": 1409 + }, + "isInternal": false + }, + { + "x": 195, + "y": 207.73575, + "index": 3, + "body": { + "#": 1409 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 190.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1423 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1425 + }, + "max": { + "#": 1426 + } + }, + { + "x": 195, + "y": 172.73575 + }, + { + "x": 230, + "y": 207.73575 + }, + { + "x": 212.5, + "y": 187.32848 + }, + [ + { + "#": 1429 + }, + { + "#": 1430 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,3,4", + "startCol": 4, + "endCol": 4, + "startRow": 3, + "endRow": 4 + }, + { + "id": 63, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1433 + }, + "angle": 0, + "vertices": { + "#": 1434 + }, + "position": { + "#": 1439 + }, + "force": { + "#": 1440 + }, + "torque": 0, + "positionImpulse": { + "#": 1441 + }, + "constraintImpulse": { + "#": 1442 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1443 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1444 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1445 + }, + "bounds": { + "#": 1447 + }, + "positionPrev": { + "#": 1450 + }, + "anglePrev": 0, + "axes": { + "#": 1451 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1432 + }, + "sleepCounter": 0, + "region": { + "#": 1454 + } + }, + [ + { + "#": 1432 + } + ], + [ + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + }, + { + "#": 1438 + } + ], + { + "x": 230, + "y": 172.73575, + "index": 0, + "body": { + "#": 1432 + }, + "isInternal": false + }, + { + "x": 265, + "y": 172.73575, + "index": 1, + "body": { + "#": 1432 + }, + "isInternal": false + }, + { + "x": 265, + "y": 207.73575, + "index": 2, + "body": { + "#": 1432 + }, + "isInternal": false + }, + { + "x": 230, + "y": 207.73575, + "index": 3, + "body": { + "#": 1432 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 190.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1446 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1448 + }, + "max": { + "#": 1449 + } + }, + { + "x": 230, + "y": 172.73575 + }, + { + "x": 265, + "y": 207.73575 + }, + { + "x": 247.5, + "y": 187.32848 + }, + [ + { + "#": 1452 + }, + { + "#": 1453 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,3,4", + "startCol": 4, + "endCol": 5, + "startRow": 3, + "endRow": 4 + }, + { + "id": 64, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1456 + }, + "angle": 0, + "vertices": { + "#": 1457 + }, + "position": { + "#": 1462 + }, + "force": { + "#": 1463 + }, + "torque": 0, + "positionImpulse": { + "#": 1464 + }, + "constraintImpulse": { + "#": 1465 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1466 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1467 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1468 + }, + "bounds": { + "#": 1470 + }, + "positionPrev": { + "#": 1473 + }, + "anglePrev": 0, + "axes": { + "#": 1474 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1455 + }, + "sleepCounter": 0, + "region": { + "#": 1477 + } + }, + [ + { + "#": 1455 + } + ], + [ + { + "#": 1458 + }, + { + "#": 1459 + }, + { + "#": 1460 + }, + { + "#": 1461 + } + ], + { + "x": 265, + "y": 172.73575, + "index": 0, + "body": { + "#": 1455 + }, + "isInternal": false + }, + { + "x": 300, + "y": 172.73575, + "index": 1, + "body": { + "#": 1455 + }, + "isInternal": false + }, + { + "x": 300, + "y": 207.73575, + "index": 2, + "body": { + "#": 1455 + }, + "isInternal": false + }, + { + "x": 265, + "y": 207.73575, + "index": 3, + "body": { + "#": 1455 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 190.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1469 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1471 + }, + "max": { + "#": 1472 + } + }, + { + "x": 265, + "y": 172.73575 + }, + { + "x": 300, + "y": 207.73575 + }, + { + "x": 282.5, + "y": 187.32848 + }, + [ + { + "#": 1475 + }, + { + "#": 1476 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,3,4", + "startCol": 5, + "endCol": 6, + "startRow": 3, + "endRow": 4 + }, + { + "id": 65, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1479 + }, + "angle": 0, + "vertices": { + "#": 1480 + }, + "position": { + "#": 1485 + }, + "force": { + "#": 1486 + }, + "torque": 0, + "positionImpulse": { + "#": 1487 + }, + "constraintImpulse": { + "#": 1488 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1489 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1490 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1491 + }, + "bounds": { + "#": 1493 + }, + "positionPrev": { + "#": 1496 + }, + "anglePrev": 0, + "axes": { + "#": 1497 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1478 + }, + "sleepCounter": 0, + "region": { + "#": 1500 + } + }, + [ + { + "#": 1478 + } + ], + [ + { + "#": 1481 + }, + { + "#": 1482 + }, + { + "#": 1483 + }, + { + "#": 1484 + } + ], + { + "x": 300, + "y": 172.73575, + "index": 0, + "body": { + "#": 1478 + }, + "isInternal": false + }, + { + "x": 335, + "y": 172.73575, + "index": 1, + "body": { + "#": 1478 + }, + "isInternal": false + }, + { + "x": 335, + "y": 207.73575, + "index": 2, + "body": { + "#": 1478 + }, + "isInternal": false + }, + { + "x": 300, + "y": 207.73575, + "index": 3, + "body": { + "#": 1478 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 190.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1492 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1494 + }, + "max": { + "#": 1495 + } + }, + { + "x": 300, + "y": 172.73575 + }, + { + "x": 335, + "y": 207.73575 + }, + { + "x": 317.5, + "y": 187.32848 + }, + [ + { + "#": 1498 + }, + { + "#": 1499 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,3,4", + "startCol": 6, + "endCol": 6, + "startRow": 3, + "endRow": 4 + }, + { + "id": 66, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1502 + }, + "angle": 0, + "vertices": { + "#": 1503 + }, + "position": { + "#": 1508 + }, + "force": { + "#": 1509 + }, + "torque": 0, + "positionImpulse": { + "#": 1510 + }, + "constraintImpulse": { + "#": 1511 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1512 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1513 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1514 + }, + "bounds": { + "#": 1516 + }, + "positionPrev": { + "#": 1519 + }, + "anglePrev": 0, + "axes": { + "#": 1520 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1501 + }, + "sleepCounter": 0, + "region": { + "#": 1523 + } + }, + [ + { + "#": 1501 + } + ], + [ + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + } + ], + { + "x": 335, + "y": 172.73575, + "index": 0, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 370, + "y": 172.73575, + "index": 1, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 370, + "y": 207.73575, + "index": 2, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 335, + "y": 207.73575, + "index": 3, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 190.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1515 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1517 + }, + "max": { + "#": 1518 + } + }, + { + "x": 335, + "y": 172.73575 + }, + { + "x": 370, + "y": 207.73575 + }, + { + "x": 352.5, + "y": 187.32848 + }, + [ + { + "#": 1521 + }, + { + "#": 1522 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,3,4", + "startCol": 6, + "endCol": 7, + "startRow": 3, + "endRow": 4 + }, + { + "id": 67, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1525 + }, + "angle": 0, + "vertices": { + "#": 1526 + }, + "position": { + "#": 1531 + }, + "force": { + "#": 1532 + }, + "torque": 0, + "positionImpulse": { + "#": 1533 + }, + "constraintImpulse": { + "#": 1534 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1535 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1536 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1537 + }, + "bounds": { + "#": 1539 + }, + "positionPrev": { + "#": 1542 + }, + "anglePrev": 0, + "axes": { + "#": 1543 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1524 + }, + "sleepCounter": 0, + "region": { + "#": 1546 + } + }, + [ + { + "#": 1524 + } + ], + [ + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + } + ], + { + "x": 370, + "y": 172.73575, + "index": 0, + "body": { + "#": 1524 + }, + "isInternal": false + }, + { + "x": 405, + "y": 172.73575, + "index": 1, + "body": { + "#": 1524 + }, + "isInternal": false + }, + { + "x": 405, + "y": 207.73575, + "index": 2, + "body": { + "#": 1524 + }, + "isInternal": false + }, + { + "x": 370, + "y": 207.73575, + "index": 3, + "body": { + "#": 1524 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 190.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1538 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1540 + }, + "max": { + "#": 1541 + } + }, + { + "x": 370, + "y": 172.73575 + }, + { + "x": 405, + "y": 207.73575 + }, + { + "x": 387.5, + "y": 187.32848 + }, + [ + { + "#": 1544 + }, + { + "#": 1545 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,3,4", + "startCol": 7, + "endCol": 8, + "startRow": 3, + "endRow": 4 + }, + { + "id": 68, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1548 + }, + "angle": 0, + "vertices": { + "#": 1549 + }, + "position": { + "#": 1554 + }, + "force": { + "#": 1555 + }, + "torque": 0, + "positionImpulse": { + "#": 1556 + }, + "constraintImpulse": { + "#": 1557 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1558 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1559 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1560 + }, + "bounds": { + "#": 1562 + }, + "positionPrev": { + "#": 1565 + }, + "anglePrev": 0, + "axes": { + "#": 1566 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1547 + }, + "sleepCounter": 0, + "region": { + "#": 1569 + } + }, + [ + { + "#": 1547 + } + ], + [ + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + }, + { + "#": 1553 + } + ], + { + "x": 405, + "y": 172.73575, + "index": 0, + "body": { + "#": 1547 + }, + "isInternal": false + }, + { + "x": 440, + "y": 172.73575, + "index": 1, + "body": { + "#": 1547 + }, + "isInternal": false + }, + { + "x": 440, + "y": 207.73575, + "index": 2, + "body": { + "#": 1547 + }, + "isInternal": false + }, + { + "x": 405, + "y": 207.73575, + "index": 3, + "body": { + "#": 1547 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 190.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1561 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1563 + }, + "max": { + "#": 1564 + } + }, + { + "x": 405, + "y": 172.73575 + }, + { + "x": 440, + "y": 207.73575 + }, + { + "x": 422.5, + "y": 187.32848 + }, + [ + { + "#": 1567 + }, + { + "#": 1568 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,3,4", + "startCol": 8, + "endCol": 9, + "startRow": 3, + "endRow": 4 + }, + { + "id": 69, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1571 + }, + "angle": 0, + "vertices": { + "#": 1572 + }, + "position": { + "#": 1577 + }, + "force": { + "#": 1578 + }, + "torque": 0, + "positionImpulse": { + "#": 1579 + }, + "constraintImpulse": { + "#": 1580 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1581 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1582 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1583 + }, + "bounds": { + "#": 1585 + }, + "positionPrev": { + "#": 1588 + }, + "anglePrev": 0, + "axes": { + "#": 1589 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1570 + }, + "sleepCounter": 0, + "region": { + "#": 1592 + } + }, + [ + { + "#": 1570 + } + ], + [ + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + } + ], + { + "x": 440, + "y": 172.73575, + "index": 0, + "body": { + "#": 1570 + }, + "isInternal": false + }, + { + "x": 475, + "y": 172.73575, + "index": 1, + "body": { + "#": 1570 + }, + "isInternal": false + }, + { + "x": 475, + "y": 207.73575, + "index": 2, + "body": { + "#": 1570 + }, + "isInternal": false + }, + { + "x": 440, + "y": 207.73575, + "index": 3, + "body": { + "#": 1570 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 190.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1584 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1586 + }, + "max": { + "#": 1587 + } + }, + { + "x": 440, + "y": 172.73575 + }, + { + "x": 475, + "y": 207.73575 + }, + { + "x": 457.5, + "y": 187.32848 + }, + [ + { + "#": 1590 + }, + { + "#": 1591 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,3,4", + "startCol": 9, + "endCol": 9, + "startRow": 3, + "endRow": 4 + }, + { + "id": 70, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1594 + }, + "angle": 0, + "vertices": { + "#": 1595 + }, + "position": { + "#": 1600 + }, + "force": { + "#": 1601 + }, + "torque": 0, + "positionImpulse": { + "#": 1602 + }, + "constraintImpulse": { + "#": 1603 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1604 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1605 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1606 + }, + "bounds": { + "#": 1608 + }, + "positionPrev": { + "#": 1611 + }, + "anglePrev": 0, + "axes": { + "#": 1612 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1593 + }, + "sleepCounter": 0, + "region": { + "#": 1615 + } + }, + [ + { + "#": 1593 + } + ], + [ + { + "#": 1596 + }, + { + "#": 1597 + }, + { + "#": 1598 + }, + { + "#": 1599 + } + ], + { + "x": 475, + "y": 172.73575, + "index": 0, + "body": { + "#": 1593 + }, + "isInternal": false + }, + { + "x": 510, + "y": 172.73575, + "index": 1, + "body": { + "#": 1593 + }, + "isInternal": false + }, + { + "x": 510, + "y": 207.73575, + "index": 2, + "body": { + "#": 1593 + }, + "isInternal": false + }, + { + "x": 475, + "y": 207.73575, + "index": 3, + "body": { + "#": 1593 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 190.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1607 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1609 + }, + "max": { + "#": 1610 + } + }, + { + "x": 475, + "y": 172.73575 + }, + { + "x": 510, + "y": 207.73575 + }, + { + "x": 492.5, + "y": 187.32848 + }, + [ + { + "#": 1613 + }, + { + "#": 1614 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,3,4", + "startCol": 9, + "endCol": 10, + "startRow": 3, + "endRow": 4 + }, + { + "id": 71, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1617 + }, + "angle": 0, + "vertices": { + "#": 1618 + }, + "position": { + "#": 1623 + }, + "force": { + "#": 1624 + }, + "torque": 0, + "positionImpulse": { + "#": 1625 + }, + "constraintImpulse": { + "#": 1626 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1627 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1628 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1629 + }, + "bounds": { + "#": 1631 + }, + "positionPrev": { + "#": 1634 + }, + "anglePrev": 0, + "axes": { + "#": 1635 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1616 + }, + "sleepCounter": 0, + "region": { + "#": 1638 + } + }, + [ + { + "#": 1616 + } + ], + [ + { + "#": 1619 + }, + { + "#": 1620 + }, + { + "#": 1621 + }, + { + "#": 1622 + } + ], + { + "x": 510, + "y": 172.73575, + "index": 0, + "body": { + "#": 1616 + }, + "isInternal": false + }, + { + "x": 545, + "y": 172.73575, + "index": 1, + "body": { + "#": 1616 + }, + "isInternal": false + }, + { + "x": 545, + "y": 207.73575, + "index": 2, + "body": { + "#": 1616 + }, + "isInternal": false + }, + { + "x": 510, + "y": 207.73575, + "index": 3, + "body": { + "#": 1616 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 190.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1630 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1632 + }, + "max": { + "#": 1633 + } + }, + { + "x": 510, + "y": 172.73575 + }, + { + "x": 545, + "y": 207.73575 + }, + { + "x": 527.5, + "y": 187.32848 + }, + [ + { + "#": 1636 + }, + { + "#": 1637 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,3,4", + "startCol": 10, + "endCol": 11, + "startRow": 3, + "endRow": 4 + }, + { + "id": 72, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1640 + }, + "angle": 0, + "vertices": { + "#": 1641 + }, + "position": { + "#": 1646 + }, + "force": { + "#": 1647 + }, + "torque": 0, + "positionImpulse": { + "#": 1648 + }, + "constraintImpulse": { + "#": 1649 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1650 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1651 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1652 + }, + "bounds": { + "#": 1654 + }, + "positionPrev": { + "#": 1657 + }, + "anglePrev": 0, + "axes": { + "#": 1658 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1639 + }, + "sleepCounter": 0, + "region": { + "#": 1661 + } + }, + [ + { + "#": 1639 + } + ], + [ + { + "#": 1642 + }, + { + "#": 1643 + }, + { + "#": 1644 + }, + { + "#": 1645 + } + ], + { + "x": 545, + "y": 172.73575, + "index": 0, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 580, + "y": 172.73575, + "index": 1, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 580, + "y": 207.73575, + "index": 2, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 545, + "y": 207.73575, + "index": 3, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 190.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1653 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1655 + }, + "max": { + "#": 1656 + } + }, + { + "x": 545, + "y": 172.73575 + }, + { + "x": 580, + "y": 207.73575 + }, + { + "x": 562.5, + "y": 187.32848 + }, + [ + { + "#": 1659 + }, + { + "#": 1660 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,3,4", + "startCol": 11, + "endCol": 12, + "startRow": 3, + "endRow": 4 + }, + { + "id": 73, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1663 + }, + "angle": 0, + "vertices": { + "#": 1664 + }, + "position": { + "#": 1669 + }, + "force": { + "#": 1670 + }, + "torque": 0, + "positionImpulse": { + "#": 1671 + }, + "constraintImpulse": { + "#": 1672 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1673 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1674 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1675 + }, + "bounds": { + "#": 1677 + }, + "positionPrev": { + "#": 1680 + }, + "anglePrev": 0, + "axes": { + "#": 1681 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1662 + }, + "sleepCounter": 0, + "region": { + "#": 1684 + } + }, + [ + { + "#": 1662 + } + ], + [ + { + "#": 1665 + }, + { + "#": 1666 + }, + { + "#": 1667 + }, + { + "#": 1668 + } + ], + { + "x": 580, + "y": 172.73575, + "index": 0, + "body": { + "#": 1662 + }, + "isInternal": false + }, + { + "x": 615, + "y": 172.73575, + "index": 1, + "body": { + "#": 1662 + }, + "isInternal": false + }, + { + "x": 615, + "y": 207.73575, + "index": 2, + "body": { + "#": 1662 + }, + "isInternal": false + }, + { + "x": 580, + "y": 207.73575, + "index": 3, + "body": { + "#": 1662 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 190.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1676 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1678 + }, + "max": { + "#": 1679 + } + }, + { + "x": 580, + "y": 172.73575 + }, + { + "x": 615, + "y": 207.73575 + }, + { + "x": 597.5, + "y": 187.32848 + }, + [ + { + "#": 1682 + }, + { + "#": 1683 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,12,3,4", + "startCol": 12, + "endCol": 12, + "startRow": 3, + "endRow": 4 + }, + { + "id": 74, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1686 + }, + "angle": 0, + "vertices": { + "#": 1687 + }, + "position": { + "#": 1692 + }, + "force": { + "#": 1693 + }, + "torque": 0, + "positionImpulse": { + "#": 1694 + }, + "constraintImpulse": { + "#": 1695 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1696 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1697 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1698 + }, + "bounds": { + "#": 1700 + }, + "positionPrev": { + "#": 1703 + }, + "anglePrev": 0, + "axes": { + "#": 1704 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1685 + }, + "sleepCounter": 0, + "region": { + "#": 1707 + } + }, + [ + { + "#": 1685 + } + ], + [ + { + "#": 1688 + }, + { + "#": 1689 + }, + { + "#": 1690 + }, + { + "#": 1691 + } + ], + { + "x": 615, + "y": 172.73575, + "index": 0, + "body": { + "#": 1685 + }, + "isInternal": false + }, + { + "x": 650, + "y": 172.73575, + "index": 1, + "body": { + "#": 1685 + }, + "isInternal": false + }, + { + "x": 650, + "y": 207.73575, + "index": 2, + "body": { + "#": 1685 + }, + "isInternal": false + }, + { + "x": 615, + "y": 207.73575, + "index": 3, + "body": { + "#": 1685 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 190.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1699 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1701 + }, + "max": { + "#": 1702 + } + }, + { + "x": 615, + "y": 172.73575 + }, + { + "x": 650, + "y": 207.73575 + }, + { + "x": 632.5, + "y": 187.32848 + }, + [ + { + "#": 1705 + }, + { + "#": 1706 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,3,4", + "startCol": 12, + "endCol": 13, + "startRow": 3, + "endRow": 4 + }, + { + "id": 75, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1709 + }, + "angle": 0, + "vertices": { + "#": 1710 + }, + "position": { + "#": 1715 + }, + "force": { + "#": 1716 + }, + "torque": 0, + "positionImpulse": { + "#": 1717 + }, + "constraintImpulse": { + "#": 1718 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1719 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1720 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1721 + }, + "bounds": { + "#": 1723 + }, + "positionPrev": { + "#": 1726 + }, + "anglePrev": 0, + "axes": { + "#": 1727 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1708 + }, + "sleepCounter": 0, + "region": { + "#": 1730 + } + }, + [ + { + "#": 1708 + } + ], + [ + { + "#": 1711 + }, + { + "#": 1712 + }, + { + "#": 1713 + }, + { + "#": 1714 + } + ], + { + "x": 650, + "y": 172.73575, + "index": 0, + "body": { + "#": 1708 + }, + "isInternal": false + }, + { + "x": 685, + "y": 172.73575, + "index": 1, + "body": { + "#": 1708 + }, + "isInternal": false + }, + { + "x": 685, + "y": 207.73575, + "index": 2, + "body": { + "#": 1708 + }, + "isInternal": false + }, + { + "x": 650, + "y": 207.73575, + "index": 3, + "body": { + "#": 1708 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 190.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1722 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1724 + }, + "max": { + "#": 1725 + } + }, + { + "x": 650, + "y": 172.73575 + }, + { + "x": 685, + "y": 207.73575 + }, + { + "x": 667.5, + "y": 187.32848 + }, + [ + { + "#": 1728 + }, + { + "#": 1729 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,3,4", + "startCol": 13, + "endCol": 14, + "startRow": 3, + "endRow": 4 + }, + { + "id": 76, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1732 + }, + "angle": 0, + "vertices": { + "#": 1733 + }, + "position": { + "#": 1738 + }, + "force": { + "#": 1739 + }, + "torque": 0, + "positionImpulse": { + "#": 1740 + }, + "constraintImpulse": { + "#": 1741 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1742 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1743 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1744 + }, + "bounds": { + "#": 1746 + }, + "positionPrev": { + "#": 1749 + }, + "anglePrev": 0, + "axes": { + "#": 1750 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1731 + }, + "sleepCounter": 0, + "region": { + "#": 1753 + } + }, + [ + { + "#": 1731 + } + ], + [ + { + "#": 1734 + }, + { + "#": 1735 + }, + { + "#": 1736 + }, + { + "#": 1737 + } + ], + { + "x": 685, + "y": 172.73575, + "index": 0, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 720, + "y": 172.73575, + "index": 1, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 720, + "y": 207.73575, + "index": 2, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 685, + "y": 207.73575, + "index": 3, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 190.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1745 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1747 + }, + "max": { + "#": 1748 + } + }, + { + "x": 685, + "y": 172.73575 + }, + { + "x": 720, + "y": 207.73575 + }, + { + "x": 702.5, + "y": 187.32848 + }, + [ + { + "#": 1751 + }, + { + "#": 1752 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,3,4", + "startCol": 14, + "endCol": 15, + "startRow": 3, + "endRow": 4 + }, + { + "id": 77, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1755 + }, + "angle": 0, + "vertices": { + "#": 1756 + }, + "position": { + "#": 1761 + }, + "force": { + "#": 1762 + }, + "torque": 0, + "positionImpulse": { + "#": 1763 + }, + "constraintImpulse": { + "#": 1764 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1765 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1766 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1767 + }, + "bounds": { + "#": 1769 + }, + "positionPrev": { + "#": 1772 + }, + "anglePrev": 0, + "axes": { + "#": 1773 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1754 + }, + "sleepCounter": 0, + "region": { + "#": 1776 + } + }, + [ + { + "#": 1754 + } + ], + [ + { + "#": 1757 + }, + { + "#": 1758 + }, + { + "#": 1759 + }, + { + "#": 1760 + } + ], + { + "x": 90, + "y": 207.73575, + "index": 0, + "body": { + "#": 1754 + }, + "isInternal": false + }, + { + "x": 125, + "y": 207.73575, + "index": 1, + "body": { + "#": 1754 + }, + "isInternal": false + }, + { + "x": 125, + "y": 242.73575, + "index": 2, + "body": { + "#": 1754 + }, + "isInternal": false + }, + { + "x": 90, + "y": 242.73575, + "index": 3, + "body": { + "#": 1754 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1768 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1770 + }, + "max": { + "#": 1771 + } + }, + { + "x": 90, + "y": 207.73575 + }, + { + "x": 125, + "y": 242.73575 + }, + { + "x": 107.5, + "y": 222.32848 + }, + [ + { + "#": 1774 + }, + { + "#": 1775 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "1,2,4,5", + "startCol": 1, + "endCol": 2, + "startRow": 4, + "endRow": 5 + }, + { + "id": 78, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1778 + }, + "angle": 0, + "vertices": { + "#": 1779 + }, + "position": { + "#": 1784 + }, + "force": { + "#": 1785 + }, + "torque": 0, + "positionImpulse": { + "#": 1786 + }, + "constraintImpulse": { + "#": 1787 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1788 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1789 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1790 + }, + "bounds": { + "#": 1792 + }, + "positionPrev": { + "#": 1795 + }, + "anglePrev": 0, + "axes": { + "#": 1796 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1777 + }, + "sleepCounter": 0, + "region": { + "#": 1799 + } + }, + [ + { + "#": 1777 + } + ], + [ + { + "#": 1780 + }, + { + "#": 1781 + }, + { + "#": 1782 + }, + { + "#": 1783 + } + ], + { + "x": 125, + "y": 207.73575, + "index": 0, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 160, + "y": 207.73575, + "index": 1, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 160, + "y": 242.73575, + "index": 2, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 125, + "y": 242.73575, + "index": 3, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1791 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1793 + }, + "max": { + "#": 1794 + } + }, + { + "x": 125, + "y": 207.73575 + }, + { + "x": 160, + "y": 242.73575 + }, + { + "x": 142.5, + "y": 222.32848 + }, + [ + { + "#": 1797 + }, + { + "#": 1798 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,4,5", + "startCol": 2, + "endCol": 3, + "startRow": 4, + "endRow": 5 + }, + { + "id": 79, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1801 + }, + "angle": 0, + "vertices": { + "#": 1802 + }, + "position": { + "#": 1807 + }, + "force": { + "#": 1808 + }, + "torque": 0, + "positionImpulse": { + "#": 1809 + }, + "constraintImpulse": { + "#": 1810 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1811 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1812 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1813 + }, + "bounds": { + "#": 1815 + }, + "positionPrev": { + "#": 1818 + }, + "anglePrev": 0, + "axes": { + "#": 1819 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1800 + }, + "sleepCounter": 0, + "region": { + "#": 1822 + } + }, + [ + { + "#": 1800 + } + ], + [ + { + "#": 1803 + }, + { + "#": 1804 + }, + { + "#": 1805 + }, + { + "#": 1806 + } + ], + { + "x": 160, + "y": 207.73575, + "index": 0, + "body": { + "#": 1800 + }, + "isInternal": false + }, + { + "x": 195, + "y": 207.73575, + "index": 1, + "body": { + "#": 1800 + }, + "isInternal": false + }, + { + "x": 195, + "y": 242.73575, + "index": 2, + "body": { + "#": 1800 + }, + "isInternal": false + }, + { + "x": 160, + "y": 242.73575, + "index": 3, + "body": { + "#": 1800 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1814 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1816 + }, + "max": { + "#": 1817 + } + }, + { + "x": 160, + "y": 207.73575 + }, + { + "x": 195, + "y": 242.73575 + }, + { + "x": 177.5, + "y": 222.32848 + }, + [ + { + "#": 1820 + }, + { + "#": 1821 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,4,5", + "startCol": 3, + "endCol": 4, + "startRow": 4, + "endRow": 5 + }, + { + "id": 80, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1824 + }, + "angle": 0, + "vertices": { + "#": 1825 + }, + "position": { + "#": 1830 + }, + "force": { + "#": 1831 + }, + "torque": 0, + "positionImpulse": { + "#": 1832 + }, + "constraintImpulse": { + "#": 1833 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1834 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1835 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1836 + }, + "bounds": { + "#": 1838 + }, + "positionPrev": { + "#": 1841 + }, + "anglePrev": 0, + "axes": { + "#": 1842 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1823 + }, + "sleepCounter": 0, + "region": { + "#": 1845 + } + }, + [ + { + "#": 1823 + } + ], + [ + { + "#": 1826 + }, + { + "#": 1827 + }, + { + "#": 1828 + }, + { + "#": 1829 + } + ], + { + "x": 195, + "y": 207.73575, + "index": 0, + "body": { + "#": 1823 + }, + "isInternal": false + }, + { + "x": 230, + "y": 207.73575, + "index": 1, + "body": { + "#": 1823 + }, + "isInternal": false + }, + { + "x": 230, + "y": 242.73575, + "index": 2, + "body": { + "#": 1823 + }, + "isInternal": false + }, + { + "x": 195, + "y": 242.73575, + "index": 3, + "body": { + "#": 1823 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1837 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1839 + }, + "max": { + "#": 1840 + } + }, + { + "x": 195, + "y": 207.73575 + }, + { + "x": 230, + "y": 242.73575 + }, + { + "x": 212.5, + "y": 222.32848 + }, + [ + { + "#": 1843 + }, + { + "#": 1844 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,4,5", + "startCol": 4, + "endCol": 4, + "startRow": 4, + "endRow": 5 + }, + { + "id": 81, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1847 + }, + "angle": 0, + "vertices": { + "#": 1848 + }, + "position": { + "#": 1853 + }, + "force": { + "#": 1854 + }, + "torque": 0, + "positionImpulse": { + "#": 1855 + }, + "constraintImpulse": { + "#": 1856 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1857 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1858 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1859 + }, + "bounds": { + "#": 1861 + }, + "positionPrev": { + "#": 1864 + }, + "anglePrev": 0, + "axes": { + "#": 1865 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1846 + }, + "sleepCounter": 0, + "region": { + "#": 1868 + } + }, + [ + { + "#": 1846 + } + ], + [ + { + "#": 1849 + }, + { + "#": 1850 + }, + { + "#": 1851 + }, + { + "#": 1852 + } + ], + { + "x": 230, + "y": 207.73575, + "index": 0, + "body": { + "#": 1846 + }, + "isInternal": false + }, + { + "x": 265, + "y": 207.73575, + "index": 1, + "body": { + "#": 1846 + }, + "isInternal": false + }, + { + "x": 265, + "y": 242.73575, + "index": 2, + "body": { + "#": 1846 + }, + "isInternal": false + }, + { + "x": 230, + "y": 242.73575, + "index": 3, + "body": { + "#": 1846 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1860 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1862 + }, + "max": { + "#": 1863 + } + }, + { + "x": 230, + "y": 207.73575 + }, + { + "x": 265, + "y": 242.73575 + }, + { + "x": 247.5, + "y": 222.32848 + }, + [ + { + "#": 1866 + }, + { + "#": 1867 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,4,5", + "startCol": 4, + "endCol": 5, + "startRow": 4, + "endRow": 5 + }, + { + "id": 82, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1870 + }, + "angle": 0, + "vertices": { + "#": 1871 + }, + "position": { + "#": 1876 + }, + "force": { + "#": 1877 + }, + "torque": 0, + "positionImpulse": { + "#": 1878 + }, + "constraintImpulse": { + "#": 1879 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1880 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1881 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1882 + }, + "bounds": { + "#": 1884 + }, + "positionPrev": { + "#": 1887 + }, + "anglePrev": 0, + "axes": { + "#": 1888 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1869 + }, + "sleepCounter": 0, + "region": { + "#": 1891 + } + }, + [ + { + "#": 1869 + } + ], + [ + { + "#": 1872 + }, + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + } + ], + { + "x": 265, + "y": 207.73575, + "index": 0, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 300, + "y": 207.73575, + "index": 1, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 300, + "y": 242.73575, + "index": 2, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 265, + "y": 242.73575, + "index": 3, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1883 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1885 + }, + "max": { + "#": 1886 + } + }, + { + "x": 265, + "y": 207.73575 + }, + { + "x": 300, + "y": 242.73575 + }, + { + "x": 282.5, + "y": 222.32848 + }, + [ + { + "#": 1889 + }, + { + "#": 1890 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,4,5", + "startCol": 5, + "endCol": 6, + "startRow": 4, + "endRow": 5 + }, + { + "id": 83, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1893 + }, + "angle": 0, + "vertices": { + "#": 1894 + }, + "position": { + "#": 1899 + }, + "force": { + "#": 1900 + }, + "torque": 0, + "positionImpulse": { + "#": 1901 + }, + "constraintImpulse": { + "#": 1902 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1903 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1904 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1905 + }, + "bounds": { + "#": 1907 + }, + "positionPrev": { + "#": 1910 + }, + "anglePrev": 0, + "axes": { + "#": 1911 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1892 + }, + "sleepCounter": 0, + "region": { + "#": 1914 + } + }, + [ + { + "#": 1892 + } + ], + [ + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + } + ], + { + "x": 300, + "y": 207.73575, + "index": 0, + "body": { + "#": 1892 + }, + "isInternal": false + }, + { + "x": 335, + "y": 207.73575, + "index": 1, + "body": { + "#": 1892 + }, + "isInternal": false + }, + { + "x": 335, + "y": 242.73575, + "index": 2, + "body": { + "#": 1892 + }, + "isInternal": false + }, + { + "x": 300, + "y": 242.73575, + "index": 3, + "body": { + "#": 1892 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1906 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1908 + }, + "max": { + "#": 1909 + } + }, + { + "x": 300, + "y": 207.73575 + }, + { + "x": 335, + "y": 242.73575 + }, + { + "x": 317.5, + "y": 222.32848 + }, + [ + { + "#": 1912 + }, + { + "#": 1913 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,4,5", + "startCol": 6, + "endCol": 6, + "startRow": 4, + "endRow": 5 + }, + { + "id": 84, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1916 + }, + "angle": 0, + "vertices": { + "#": 1917 + }, + "position": { + "#": 1922 + }, + "force": { + "#": 1923 + }, + "torque": 0, + "positionImpulse": { + "#": 1924 + }, + "constraintImpulse": { + "#": 1925 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1926 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1927 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1928 + }, + "bounds": { + "#": 1930 + }, + "positionPrev": { + "#": 1933 + }, + "anglePrev": 0, + "axes": { + "#": 1934 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1915 + }, + "sleepCounter": 0, + "region": { + "#": 1937 + } + }, + [ + { + "#": 1915 + } + ], + [ + { + "#": 1918 + }, + { + "#": 1919 + }, + { + "#": 1920 + }, + { + "#": 1921 + } + ], + { + "x": 335, + "y": 207.73575, + "index": 0, + "body": { + "#": 1915 + }, + "isInternal": false + }, + { + "x": 370, + "y": 207.73575, + "index": 1, + "body": { + "#": 1915 + }, + "isInternal": false + }, + { + "x": 370, + "y": 242.73575, + "index": 2, + "body": { + "#": 1915 + }, + "isInternal": false + }, + { + "x": 335, + "y": 242.73575, + "index": 3, + "body": { + "#": 1915 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1929 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1931 + }, + "max": { + "#": 1932 + } + }, + { + "x": 335, + "y": 207.73575 + }, + { + "x": 370, + "y": 242.73575 + }, + { + "x": 352.5, + "y": 222.32848 + }, + [ + { + "#": 1935 + }, + { + "#": 1936 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,4,5", + "startCol": 6, + "endCol": 7, + "startRow": 4, + "endRow": 5 + }, + { + "id": 85, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1939 + }, + "angle": 0, + "vertices": { + "#": 1940 + }, + "position": { + "#": 1945 + }, + "force": { + "#": 1946 + }, + "torque": 0, + "positionImpulse": { + "#": 1947 + }, + "constraintImpulse": { + "#": 1948 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1949 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1950 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1951 + }, + "bounds": { + "#": 1953 + }, + "positionPrev": { + "#": 1956 + }, + "anglePrev": 0, + "axes": { + "#": 1957 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1938 + }, + "sleepCounter": 0, + "region": { + "#": 1960 + } + }, + [ + { + "#": 1938 + } + ], + [ + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + }, + { + "#": 1944 + } + ], + { + "x": 370, + "y": 207.73575, + "index": 0, + "body": { + "#": 1938 + }, + "isInternal": false + }, + { + "x": 405, + "y": 207.73575, + "index": 1, + "body": { + "#": 1938 + }, + "isInternal": false + }, + { + "x": 405, + "y": 242.73575, + "index": 2, + "body": { + "#": 1938 + }, + "isInternal": false + }, + { + "x": 370, + "y": 242.73575, + "index": 3, + "body": { + "#": 1938 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1952 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1954 + }, + "max": { + "#": 1955 + } + }, + { + "x": 370, + "y": 207.73575 + }, + { + "x": 405, + "y": 242.73575 + }, + { + "x": 387.5, + "y": 222.32848 + }, + [ + { + "#": 1958 + }, + { + "#": 1959 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,4,5", + "startCol": 7, + "endCol": 8, + "startRow": 4, + "endRow": 5 + }, + { + "id": 86, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1962 + }, + "angle": 0, + "vertices": { + "#": 1963 + }, + "position": { + "#": 1968 + }, + "force": { + "#": 1969 + }, + "torque": 0, + "positionImpulse": { + "#": 1970 + }, + "constraintImpulse": { + "#": 1971 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1972 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1973 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1974 + }, + "bounds": { + "#": 1976 + }, + "positionPrev": { + "#": 1979 + }, + "anglePrev": 0, + "axes": { + "#": 1980 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1961 + }, + "sleepCounter": 0, + "region": { + "#": 1983 + } + }, + [ + { + "#": 1961 + } + ], + [ + { + "#": 1964 + }, + { + "#": 1965 + }, + { + "#": 1966 + }, + { + "#": 1967 + } + ], + { + "x": 405, + "y": 207.73575, + "index": 0, + "body": { + "#": 1961 + }, + "isInternal": false + }, + { + "x": 440, + "y": 207.73575, + "index": 1, + "body": { + "#": 1961 + }, + "isInternal": false + }, + { + "x": 440, + "y": 242.73575, + "index": 2, + "body": { + "#": 1961 + }, + "isInternal": false + }, + { + "x": 405, + "y": 242.73575, + "index": 3, + "body": { + "#": 1961 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1975 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1977 + }, + "max": { + "#": 1978 + } + }, + { + "x": 405, + "y": 207.73575 + }, + { + "x": 440, + "y": 242.73575 + }, + { + "x": 422.5, + "y": 222.32848 + }, + [ + { + "#": 1981 + }, + { + "#": 1982 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,4,5", + "startCol": 8, + "endCol": 9, + "startRow": 4, + "endRow": 5 + }, + { + "id": 87, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1985 + }, + "angle": 0, + "vertices": { + "#": 1986 + }, + "position": { + "#": 1991 + }, + "force": { + "#": 1992 + }, + "torque": 0, + "positionImpulse": { + "#": 1993 + }, + "constraintImpulse": { + "#": 1994 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1995 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1996 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1997 + }, + "bounds": { + "#": 1999 + }, + "positionPrev": { + "#": 2002 + }, + "anglePrev": 0, + "axes": { + "#": 2003 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 1984 + }, + "sleepCounter": 0, + "region": { + "#": 2006 + } + }, + [ + { + "#": 1984 + } + ], + [ + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + } + ], + { + "x": 440, + "y": 207.73575, + "index": 0, + "body": { + "#": 1984 + }, + "isInternal": false + }, + { + "x": 475, + "y": 207.73575, + "index": 1, + "body": { + "#": 1984 + }, + "isInternal": false + }, + { + "x": 475, + "y": 242.73575, + "index": 2, + "body": { + "#": 1984 + }, + "isInternal": false + }, + { + "x": 440, + "y": 242.73575, + "index": 3, + "body": { + "#": 1984 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1998 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2000 + }, + "max": { + "#": 2001 + } + }, + { + "x": 440, + "y": 207.73575 + }, + { + "x": 475, + "y": 242.73575 + }, + { + "x": 457.5, + "y": 222.32848 + }, + [ + { + "#": 2004 + }, + { + "#": 2005 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,4,5", + "startCol": 9, + "endCol": 9, + "startRow": 4, + "endRow": 5 + }, + { + "id": 88, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2008 + }, + "angle": 0, + "vertices": { + "#": 2009 + }, + "position": { + "#": 2014 + }, + "force": { + "#": 2015 + }, + "torque": 0, + "positionImpulse": { + "#": 2016 + }, + "constraintImpulse": { + "#": 2017 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2018 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2019 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2020 + }, + "bounds": { + "#": 2022 + }, + "positionPrev": { + "#": 2025 + }, + "anglePrev": 0, + "axes": { + "#": 2026 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2007 + }, + "sleepCounter": 0, + "region": { + "#": 2029 + } + }, + [ + { + "#": 2007 + } + ], + [ + { + "#": 2010 + }, + { + "#": 2011 + }, + { + "#": 2012 + }, + { + "#": 2013 + } + ], + { + "x": 475, + "y": 207.73575, + "index": 0, + "body": { + "#": 2007 + }, + "isInternal": false + }, + { + "x": 510, + "y": 207.73575, + "index": 1, + "body": { + "#": 2007 + }, + "isInternal": false + }, + { + "x": 510, + "y": 242.73575, + "index": 2, + "body": { + "#": 2007 + }, + "isInternal": false + }, + { + "x": 475, + "y": 242.73575, + "index": 3, + "body": { + "#": 2007 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2021 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2023 + }, + "max": { + "#": 2024 + } + }, + { + "x": 475, + "y": 207.73575 + }, + { + "x": 510, + "y": 242.73575 + }, + { + "x": 492.5, + "y": 222.32848 + }, + [ + { + "#": 2027 + }, + { + "#": 2028 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,4,5", + "startCol": 9, + "endCol": 10, + "startRow": 4, + "endRow": 5 + }, + { + "id": 89, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2031 + }, + "angle": 0, + "vertices": { + "#": 2032 + }, + "position": { + "#": 2037 + }, + "force": { + "#": 2038 + }, + "torque": 0, + "positionImpulse": { + "#": 2039 + }, + "constraintImpulse": { + "#": 2040 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2041 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2042 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2043 + }, + "bounds": { + "#": 2045 + }, + "positionPrev": { + "#": 2048 + }, + "anglePrev": 0, + "axes": { + "#": 2049 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2030 + }, + "sleepCounter": 0, + "region": { + "#": 2052 + } + }, + [ + { + "#": 2030 + } + ], + [ + { + "#": 2033 + }, + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + } + ], + { + "x": 510, + "y": 207.73575, + "index": 0, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 545, + "y": 207.73575, + "index": 1, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 545, + "y": 242.73575, + "index": 2, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 510, + "y": 242.73575, + "index": 3, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2044 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2046 + }, + "max": { + "#": 2047 + } + }, + { + "x": 510, + "y": 207.73575 + }, + { + "x": 545, + "y": 242.73575 + }, + { + "x": 527.5, + "y": 222.32848 + }, + [ + { + "#": 2050 + }, + { + "#": 2051 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,4,5", + "startCol": 10, + "endCol": 11, + "startRow": 4, + "endRow": 5 + }, + { + "id": 90, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2054 + }, + "angle": 0, + "vertices": { + "#": 2055 + }, + "position": { + "#": 2060 + }, + "force": { + "#": 2061 + }, + "torque": 0, + "positionImpulse": { + "#": 2062 + }, + "constraintImpulse": { + "#": 2063 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2064 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2065 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2066 + }, + "bounds": { + "#": 2068 + }, + "positionPrev": { + "#": 2071 + }, + "anglePrev": 0, + "axes": { + "#": 2072 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2053 + }, + "sleepCounter": 0, + "region": { + "#": 2075 + } + }, + [ + { + "#": 2053 + } + ], + [ + { + "#": 2056 + }, + { + "#": 2057 + }, + { + "#": 2058 + }, + { + "#": 2059 + } + ], + { + "x": 545, + "y": 207.73575, + "index": 0, + "body": { + "#": 2053 + }, + "isInternal": false + }, + { + "x": 580, + "y": 207.73575, + "index": 1, + "body": { + "#": 2053 + }, + "isInternal": false + }, + { + "x": 580, + "y": 242.73575, + "index": 2, + "body": { + "#": 2053 + }, + "isInternal": false + }, + { + "x": 545, + "y": 242.73575, + "index": 3, + "body": { + "#": 2053 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2067 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2069 + }, + "max": { + "#": 2070 + } + }, + { + "x": 545, + "y": 207.73575 + }, + { + "x": 580, + "y": 242.73575 + }, + { + "x": 562.5, + "y": 222.32848 + }, + [ + { + "#": 2073 + }, + { + "#": 2074 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,4,5", + "startCol": 11, + "endCol": 12, + "startRow": 4, + "endRow": 5 + }, + { + "id": 91, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2077 + }, + "angle": 0, + "vertices": { + "#": 2078 + }, + "position": { + "#": 2083 + }, + "force": { + "#": 2084 + }, + "torque": 0, + "positionImpulse": { + "#": 2085 + }, + "constraintImpulse": { + "#": 2086 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2087 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2088 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2089 + }, + "bounds": { + "#": 2091 + }, + "positionPrev": { + "#": 2094 + }, + "anglePrev": 0, + "axes": { + "#": 2095 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2076 + }, + "sleepCounter": 0, + "region": { + "#": 2098 + } + }, + [ + { + "#": 2076 + } + ], + [ + { + "#": 2079 + }, + { + "#": 2080 + }, + { + "#": 2081 + }, + { + "#": 2082 + } + ], + { + "x": 580, + "y": 207.73575, + "index": 0, + "body": { + "#": 2076 + }, + "isInternal": false + }, + { + "x": 615, + "y": 207.73575, + "index": 1, + "body": { + "#": 2076 + }, + "isInternal": false + }, + { + "x": 615, + "y": 242.73575, + "index": 2, + "body": { + "#": 2076 + }, + "isInternal": false + }, + { + "x": 580, + "y": 242.73575, + "index": 3, + "body": { + "#": 2076 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2090 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2092 + }, + "max": { + "#": 2093 + } + }, + { + "x": 580, + "y": 207.73575 + }, + { + "x": 615, + "y": 242.73575 + }, + { + "x": 597.5, + "y": 222.32848 + }, + [ + { + "#": 2096 + }, + { + "#": 2097 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,12,4,5", + "startCol": 12, + "endCol": 12, + "startRow": 4, + "endRow": 5 + }, + { + "id": 92, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2100 + }, + "angle": 0, + "vertices": { + "#": 2101 + }, + "position": { + "#": 2106 + }, + "force": { + "#": 2107 + }, + "torque": 0, + "positionImpulse": { + "#": 2108 + }, + "constraintImpulse": { + "#": 2109 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2110 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2111 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2112 + }, + "bounds": { + "#": 2114 + }, + "positionPrev": { + "#": 2117 + }, + "anglePrev": 0, + "axes": { + "#": 2118 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2099 + }, + "sleepCounter": 0, + "region": { + "#": 2121 + } + }, + [ + { + "#": 2099 + } + ], + [ + { + "#": 2102 + }, + { + "#": 2103 + }, + { + "#": 2104 + }, + { + "#": 2105 + } + ], + { + "x": 615, + "y": 207.73575, + "index": 0, + "body": { + "#": 2099 + }, + "isInternal": false + }, + { + "x": 650, + "y": 207.73575, + "index": 1, + "body": { + "#": 2099 + }, + "isInternal": false + }, + { + "x": 650, + "y": 242.73575, + "index": 2, + "body": { + "#": 2099 + }, + "isInternal": false + }, + { + "x": 615, + "y": 242.73575, + "index": 3, + "body": { + "#": 2099 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2113 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2115 + }, + "max": { + "#": 2116 + } + }, + { + "x": 615, + "y": 207.73575 + }, + { + "x": 650, + "y": 242.73575 + }, + { + "x": 632.5, + "y": 222.32848 + }, + [ + { + "#": 2119 + }, + { + "#": 2120 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,4,5", + "startCol": 12, + "endCol": 13, + "startRow": 4, + "endRow": 5 + }, + { + "id": 93, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2123 + }, + "angle": 0, + "vertices": { + "#": 2124 + }, + "position": { + "#": 2129 + }, + "force": { + "#": 2130 + }, + "torque": 0, + "positionImpulse": { + "#": 2131 + }, + "constraintImpulse": { + "#": 2132 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2133 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2134 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2135 + }, + "bounds": { + "#": 2137 + }, + "positionPrev": { + "#": 2140 + }, + "anglePrev": 0, + "axes": { + "#": 2141 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2122 + }, + "sleepCounter": 0, + "region": { + "#": 2144 + } + }, + [ + { + "#": 2122 + } + ], + [ + { + "#": 2125 + }, + { + "#": 2126 + }, + { + "#": 2127 + }, + { + "#": 2128 + } + ], + { + "x": 650, + "y": 207.73575, + "index": 0, + "body": { + "#": 2122 + }, + "isInternal": false + }, + { + "x": 685, + "y": 207.73575, + "index": 1, + "body": { + "#": 2122 + }, + "isInternal": false + }, + { + "x": 685, + "y": 242.73575, + "index": 2, + "body": { + "#": 2122 + }, + "isInternal": false + }, + { + "x": 650, + "y": 242.73575, + "index": 3, + "body": { + "#": 2122 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2136 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2138 + }, + "max": { + "#": 2139 + } + }, + { + "x": 650, + "y": 207.73575 + }, + { + "x": 685, + "y": 242.73575 + }, + { + "x": 667.5, + "y": 222.32848 + }, + [ + { + "#": 2142 + }, + { + "#": 2143 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,4,5", + "startCol": 13, + "endCol": 14, + "startRow": 4, + "endRow": 5 + }, + { + "id": 94, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2146 + }, + "angle": 0, + "vertices": { + "#": 2147 + }, + "position": { + "#": 2152 + }, + "force": { + "#": 2153 + }, + "torque": 0, + "positionImpulse": { + "#": 2154 + }, + "constraintImpulse": { + "#": 2155 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2156 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2157 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2158 + }, + "bounds": { + "#": 2160 + }, + "positionPrev": { + "#": 2163 + }, + "anglePrev": 0, + "axes": { + "#": 2164 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2145 + }, + "sleepCounter": 0, + "region": { + "#": 2167 + } + }, + [ + { + "#": 2145 + } + ], + [ + { + "#": 2148 + }, + { + "#": 2149 + }, + { + "#": 2150 + }, + { + "#": 2151 + } + ], + { + "x": 685, + "y": 207.73575, + "index": 0, + "body": { + "#": 2145 + }, + "isInternal": false + }, + { + "x": 720, + "y": 207.73575, + "index": 1, + "body": { + "#": 2145 + }, + "isInternal": false + }, + { + "x": 720, + "y": 242.73575, + "index": 2, + "body": { + "#": 2145 + }, + "isInternal": false + }, + { + "x": 685, + "y": 242.73575, + "index": 3, + "body": { + "#": 2145 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2159 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2161 + }, + "max": { + "#": 2162 + } + }, + { + "x": 685, + "y": 207.73575 + }, + { + "x": 720, + "y": 242.73575 + }, + { + "x": 702.5, + "y": 222.32848 + }, + [ + { + "#": 2165 + }, + { + "#": 2166 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,4,5", + "startCol": 14, + "endCol": 15, + "startRow": 4, + "endRow": 5 + }, + { + "id": 95, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2169 + }, + "angle": 0, + "vertices": { + "#": 2170 + }, + "position": { + "#": 2175 + }, + "force": { + "#": 2176 + }, + "torque": 0, + "positionImpulse": { + "#": 2177 + }, + "constraintImpulse": { + "#": 2178 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2179 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2180 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2181 + }, + "bounds": { + "#": 2183 + }, + "positionPrev": { + "#": 2186 + }, + "anglePrev": 0, + "axes": { + "#": 2187 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2168 + }, + "sleepCounter": 0, + "region": { + "#": 2190 + } + }, + [ + { + "#": 2168 + } + ], + [ + { + "#": 2171 + }, + { + "#": 2172 + }, + { + "#": 2173 + }, + { + "#": 2174 + } + ], + { + "x": 90, + "y": 242.82558, + "index": 0, + "body": { + "#": 2168 + }, + "isInternal": false + }, + { + "x": 125, + "y": 242.82558, + "index": 1, + "body": { + "#": 2168 + }, + "isInternal": false + }, + { + "x": 125, + "y": 277.82558, + "index": 2, + "body": { + "#": 2168 + }, + "isInternal": false + }, + { + "x": 90, + "y": 277.82558, + "index": 3, + "body": { + "#": 2168 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 260.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2182 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2184 + }, + "max": { + "#": 2185 + } + }, + { + "x": 90, + "y": 242.82558 + }, + { + "x": 125, + "y": 280.73285 + }, + { + "x": 107.5, + "y": 257.41831 + }, + [ + { + "#": 2188 + }, + { + "#": 2189 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "1,2,5,5", + "startCol": 1, + "endCol": 2, + "startRow": 5, + "endRow": 5 + }, + { + "id": 96, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2192 + }, + "angle": 0, + "vertices": { + "#": 2193 + }, + "position": { + "#": 2198 + }, + "force": { + "#": 2199 + }, + "torque": 0, + "positionImpulse": { + "#": 2200 + }, + "constraintImpulse": { + "#": 2201 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2202 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2203 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2204 + }, + "bounds": { + "#": 2206 + }, + "positionPrev": { + "#": 2209 + }, + "anglePrev": 0, + "axes": { + "#": 2210 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2191 + }, + "sleepCounter": 0, + "region": { + "#": 2213 + } + }, + [ + { + "#": 2191 + } + ], + [ + { + "#": 2194 + }, + { + "#": 2195 + }, + { + "#": 2196 + }, + { + "#": 2197 + } + ], + { + "x": 125, + "y": 242.82558, + "index": 0, + "body": { + "#": 2191 + }, + "isInternal": false + }, + { + "x": 160, + "y": 242.82558, + "index": 1, + "body": { + "#": 2191 + }, + "isInternal": false + }, + { + "x": 160, + "y": 277.82558, + "index": 2, + "body": { + "#": 2191 + }, + "isInternal": false + }, + { + "x": 125, + "y": 277.82558, + "index": 3, + "body": { + "#": 2191 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 260.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2205 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2207 + }, + "max": { + "#": 2208 + } + }, + { + "x": 125, + "y": 242.82558 + }, + { + "x": 160, + "y": 280.73285 + }, + { + "x": 142.5, + "y": 257.41831 + }, + [ + { + "#": 2211 + }, + { + "#": 2212 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,5,5", + "startCol": 2, + "endCol": 3, + "startRow": 5, + "endRow": 5 + }, + { + "id": 97, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2215 + }, + "angle": 0, + "vertices": { + "#": 2216 + }, + "position": { + "#": 2221 + }, + "force": { + "#": 2222 + }, + "torque": 0, + "positionImpulse": { + "#": 2223 + }, + "constraintImpulse": { + "#": 2224 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2225 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2226 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2227 + }, + "bounds": { + "#": 2229 + }, + "positionPrev": { + "#": 2232 + }, + "anglePrev": 0, + "axes": { + "#": 2233 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2214 + }, + "sleepCounter": 0, + "region": { + "#": 2236 + } + }, + [ + { + "#": 2214 + } + ], + [ + { + "#": 2217 + }, + { + "#": 2218 + }, + { + "#": 2219 + }, + { + "#": 2220 + } + ], + { + "x": 160, + "y": 242.82558, + "index": 0, + "body": { + "#": 2214 + }, + "isInternal": false + }, + { + "x": 195, + "y": 242.82558, + "index": 1, + "body": { + "#": 2214 + }, + "isInternal": false + }, + { + "x": 195, + "y": 277.82558, + "index": 2, + "body": { + "#": 2214 + }, + "isInternal": false + }, + { + "x": 160, + "y": 277.82558, + "index": 3, + "body": { + "#": 2214 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 260.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2228 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2230 + }, + "max": { + "#": 2231 + } + }, + { + "x": 160, + "y": 242.82558 + }, + { + "x": 195, + "y": 280.73285 + }, + { + "x": 177.5, + "y": 257.41831 + }, + [ + { + "#": 2234 + }, + { + "#": 2235 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,5,5", + "startCol": 3, + "endCol": 4, + "startRow": 5, + "endRow": 5 + }, + { + "id": 98, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2238 + }, + "angle": 0, + "vertices": { + "#": 2239 + }, + "position": { + "#": 2244 + }, + "force": { + "#": 2245 + }, + "torque": 0, + "positionImpulse": { + "#": 2246 + }, + "constraintImpulse": { + "#": 2247 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2248 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2249 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2250 + }, + "bounds": { + "#": 2252 + }, + "positionPrev": { + "#": 2255 + }, + "anglePrev": 0, + "axes": { + "#": 2256 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2237 + }, + "sleepCounter": 0, + "region": { + "#": 2259 + } + }, + [ + { + "#": 2237 + } + ], + [ + { + "#": 2240 + }, + { + "#": 2241 + }, + { + "#": 2242 + }, + { + "#": 2243 + } + ], + { + "x": 195, + "y": 242.82558, + "index": 0, + "body": { + "#": 2237 + }, + "isInternal": false + }, + { + "x": 230, + "y": 242.82558, + "index": 1, + "body": { + "#": 2237 + }, + "isInternal": false + }, + { + "x": 230, + "y": 277.82558, + "index": 2, + "body": { + "#": 2237 + }, + "isInternal": false + }, + { + "x": 195, + "y": 277.82558, + "index": 3, + "body": { + "#": 2237 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 260.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2251 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2253 + }, + "max": { + "#": 2254 + } + }, + { + "x": 195, + "y": 242.82558 + }, + { + "x": 230, + "y": 280.73285 + }, + { + "x": 212.5, + "y": 257.41831 + }, + [ + { + "#": 2257 + }, + { + "#": 2258 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,5,5", + "startCol": 4, + "endCol": 4, + "startRow": 5, + "endRow": 5 + }, + { + "id": 99, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2261 + }, + "angle": 0, + "vertices": { + "#": 2262 + }, + "position": { + "#": 2267 + }, + "force": { + "#": 2268 + }, + "torque": 0, + "positionImpulse": { + "#": 2269 + }, + "constraintImpulse": { + "#": 2270 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2271 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2272 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2273 + }, + "bounds": { + "#": 2275 + }, + "positionPrev": { + "#": 2278 + }, + "anglePrev": 0, + "axes": { + "#": 2279 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2260 + }, + "sleepCounter": 0, + "region": { + "#": 2282 + } + }, + [ + { + "#": 2260 + } + ], + [ + { + "#": 2263 + }, + { + "#": 2264 + }, + { + "#": 2265 + }, + { + "#": 2266 + } + ], + { + "x": 230, + "y": 242.82558, + "index": 0, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 265, + "y": 242.82558, + "index": 1, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 265, + "y": 277.82558, + "index": 2, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 230, + "y": 277.82558, + "index": 3, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 260.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2274 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2276 + }, + "max": { + "#": 2277 + } + }, + { + "x": 230, + "y": 242.82558 + }, + { + "x": 265, + "y": 280.73285 + }, + { + "x": 247.5, + "y": 257.41831 + }, + [ + { + "#": 2280 + }, + { + "#": 2281 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,5,5", + "startCol": 4, + "endCol": 5, + "startRow": 5, + "endRow": 5 + }, + { + "id": 100, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2284 + }, + "angle": 0, + "vertices": { + "#": 2285 + }, + "position": { + "#": 2290 + }, + "force": { + "#": 2291 + }, + "torque": 0, + "positionImpulse": { + "#": 2292 + }, + "constraintImpulse": { + "#": 2293 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2294 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2295 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2296 + }, + "bounds": { + "#": 2298 + }, + "positionPrev": { + "#": 2301 + }, + "anglePrev": 0, + "axes": { + "#": 2302 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2283 + }, + "sleepCounter": 0, + "region": { + "#": 2305 + } + }, + [ + { + "#": 2283 + } + ], + [ + { + "#": 2286 + }, + { + "#": 2287 + }, + { + "#": 2288 + }, + { + "#": 2289 + } + ], + { + "x": 265, + "y": 242.82558, + "index": 0, + "body": { + "#": 2283 + }, + "isInternal": false + }, + { + "x": 300, + "y": 242.82558, + "index": 1, + "body": { + "#": 2283 + }, + "isInternal": false + }, + { + "x": 300, + "y": 277.82558, + "index": 2, + "body": { + "#": 2283 + }, + "isInternal": false + }, + { + "x": 265, + "y": 277.82558, + "index": 3, + "body": { + "#": 2283 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 260.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2297 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2299 + }, + "max": { + "#": 2300 + } + }, + { + "x": 265, + "y": 242.82558 + }, + { + "x": 300, + "y": 280.73285 + }, + { + "x": 282.5, + "y": 257.41831 + }, + [ + { + "#": 2303 + }, + { + "#": 2304 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,5,5", + "startCol": 5, + "endCol": 6, + "startRow": 5, + "endRow": 5 + }, + { + "id": 101, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2307 + }, + "angle": 0, + "vertices": { + "#": 2308 + }, + "position": { + "#": 2313 + }, + "force": { + "#": 2314 + }, + "torque": 0, + "positionImpulse": { + "#": 2315 + }, + "constraintImpulse": { + "#": 2316 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2317 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2318 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2319 + }, + "bounds": { + "#": 2321 + }, + "positionPrev": { + "#": 2324 + }, + "anglePrev": 0, + "axes": { + "#": 2325 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2306 + }, + "sleepCounter": 0, + "region": { + "#": 2328 + } + }, + [ + { + "#": 2306 + } + ], + [ + { + "#": 2309 + }, + { + "#": 2310 + }, + { + "#": 2311 + }, + { + "#": 2312 + } + ], + { + "x": 300, + "y": 242.82558, + "index": 0, + "body": { + "#": 2306 + }, + "isInternal": false + }, + { + "x": 335, + "y": 242.82558, + "index": 1, + "body": { + "#": 2306 + }, + "isInternal": false + }, + { + "x": 335, + "y": 277.82558, + "index": 2, + "body": { + "#": 2306 + }, + "isInternal": false + }, + { + "x": 300, + "y": 277.82558, + "index": 3, + "body": { + "#": 2306 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 260.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2320 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2322 + }, + "max": { + "#": 2323 + } + }, + { + "x": 300, + "y": 242.82558 + }, + { + "x": 335, + "y": 280.73285 + }, + { + "x": 317.5, + "y": 257.41831 + }, + [ + { + "#": 2326 + }, + { + "#": 2327 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,5,5", + "startCol": 6, + "endCol": 6, + "startRow": 5, + "endRow": 5 + }, + { + "id": 102, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2330 + }, + "angle": 0, + "vertices": { + "#": 2331 + }, + "position": { + "#": 2336 + }, + "force": { + "#": 2337 + }, + "torque": 0, + "positionImpulse": { + "#": 2338 + }, + "constraintImpulse": { + "#": 2339 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2340 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2341 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2342 + }, + "bounds": { + "#": 2344 + }, + "positionPrev": { + "#": 2347 + }, + "anglePrev": 0, + "axes": { + "#": 2348 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2329 + }, + "sleepCounter": 0, + "region": { + "#": 2351 + } + }, + [ + { + "#": 2329 + } + ], + [ + { + "#": 2332 + }, + { + "#": 2333 + }, + { + "#": 2334 + }, + { + "#": 2335 + } + ], + { + "x": 335, + "y": 242.82558, + "index": 0, + "body": { + "#": 2329 + }, + "isInternal": false + }, + { + "x": 370, + "y": 242.82558, + "index": 1, + "body": { + "#": 2329 + }, + "isInternal": false + }, + { + "x": 370, + "y": 277.82558, + "index": 2, + "body": { + "#": 2329 + }, + "isInternal": false + }, + { + "x": 335, + "y": 277.82558, + "index": 3, + "body": { + "#": 2329 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 260.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2343 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2345 + }, + "max": { + "#": 2346 + } + }, + { + "x": 335, + "y": 242.82558 + }, + { + "x": 370, + "y": 280.73285 + }, + { + "x": 352.5, + "y": 257.41831 + }, + [ + { + "#": 2349 + }, + { + "#": 2350 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,5,5", + "startCol": 6, + "endCol": 7, + "startRow": 5, + "endRow": 5 + }, + { + "id": 103, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2353 + }, + "angle": 0, + "vertices": { + "#": 2354 + }, + "position": { + "#": 2359 + }, + "force": { + "#": 2360 + }, + "torque": 0, + "positionImpulse": { + "#": 2361 + }, + "constraintImpulse": { + "#": 2362 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2363 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2364 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2365 + }, + "bounds": { + "#": 2367 + }, + "positionPrev": { + "#": 2370 + }, + "anglePrev": 0, + "axes": { + "#": 2371 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2352 + }, + "sleepCounter": 0, + "region": { + "#": 2374 + } + }, + [ + { + "#": 2352 + } + ], + [ + { + "#": 2355 + }, + { + "#": 2356 + }, + { + "#": 2357 + }, + { + "#": 2358 + } + ], + { + "x": 370, + "y": 242.82558, + "index": 0, + "body": { + "#": 2352 + }, + "isInternal": false + }, + { + "x": 405, + "y": 242.82558, + "index": 1, + "body": { + "#": 2352 + }, + "isInternal": false + }, + { + "x": 405, + "y": 277.82558, + "index": 2, + "body": { + "#": 2352 + }, + "isInternal": false + }, + { + "x": 370, + "y": 277.82558, + "index": 3, + "body": { + "#": 2352 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 260.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2366 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2368 + }, + "max": { + "#": 2369 + } + }, + { + "x": 370, + "y": 242.82558 + }, + { + "x": 405, + "y": 280.73285 + }, + { + "x": 387.5, + "y": 257.41831 + }, + [ + { + "#": 2372 + }, + { + "#": 2373 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,5,5", + "startCol": 7, + "endCol": 8, + "startRow": 5, + "endRow": 5 + }, + { + "id": 104, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2376 + }, + "angle": 0, + "vertices": { + "#": 2377 + }, + "position": { + "#": 2382 + }, + "force": { + "#": 2383 + }, + "torque": 0, + "positionImpulse": { + "#": 2384 + }, + "constraintImpulse": { + "#": 2385 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2386 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2387 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2388 + }, + "bounds": { + "#": 2390 + }, + "positionPrev": { + "#": 2393 + }, + "anglePrev": 0, + "axes": { + "#": 2394 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2375 + }, + "sleepCounter": 0, + "region": { + "#": 2397 + } + }, + [ + { + "#": 2375 + } + ], + [ + { + "#": 2378 + }, + { + "#": 2379 + }, + { + "#": 2380 + }, + { + "#": 2381 + } + ], + { + "x": 405, + "y": 242.82558, + "index": 0, + "body": { + "#": 2375 + }, + "isInternal": false + }, + { + "x": 440, + "y": 242.82558, + "index": 1, + "body": { + "#": 2375 + }, + "isInternal": false + }, + { + "x": 440, + "y": 277.82558, + "index": 2, + "body": { + "#": 2375 + }, + "isInternal": false + }, + { + "x": 405, + "y": 277.82558, + "index": 3, + "body": { + "#": 2375 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 260.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2389 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2391 + }, + "max": { + "#": 2392 + } + }, + { + "x": 405, + "y": 242.82558 + }, + { + "x": 440, + "y": 280.73285 + }, + { + "x": 422.5, + "y": 257.41831 + }, + [ + { + "#": 2395 + }, + { + "#": 2396 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,5,5", + "startCol": 8, + "endCol": 9, + "startRow": 5, + "endRow": 5 + }, + { + "id": 105, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2399 + }, + "angle": 0, + "vertices": { + "#": 2400 + }, + "position": { + "#": 2405 + }, + "force": { + "#": 2406 + }, + "torque": 0, + "positionImpulse": { + "#": 2407 + }, + "constraintImpulse": { + "#": 2408 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2409 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2410 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2411 + }, + "bounds": { + "#": 2413 + }, + "positionPrev": { + "#": 2416 + }, + "anglePrev": 0, + "axes": { + "#": 2417 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2398 + }, + "sleepCounter": 0, + "region": { + "#": 2420 + } + }, + [ + { + "#": 2398 + } + ], + [ + { + "#": 2401 + }, + { + "#": 2402 + }, + { + "#": 2403 + }, + { + "#": 2404 + } + ], + { + "x": 440, + "y": 242.82558, + "index": 0, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 475, + "y": 242.82558, + "index": 1, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 475, + "y": 277.82558, + "index": 2, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 440, + "y": 277.82558, + "index": 3, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 260.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2412 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2414 + }, + "max": { + "#": 2415 + } + }, + { + "x": 440, + "y": 242.82558 + }, + { + "x": 475, + "y": 280.73285 + }, + { + "x": 457.5, + "y": 257.41831 + }, + [ + { + "#": 2418 + }, + { + "#": 2419 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,5,5", + "startCol": 9, + "endCol": 9, + "startRow": 5, + "endRow": 5 + }, + { + "id": 106, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2422 + }, + "angle": 0, + "vertices": { + "#": 2423 + }, + "position": { + "#": 2428 + }, + "force": { + "#": 2429 + }, + "torque": 0, + "positionImpulse": { + "#": 2430 + }, + "constraintImpulse": { + "#": 2431 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2432 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2433 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2434 + }, + "bounds": { + "#": 2436 + }, + "positionPrev": { + "#": 2439 + }, + "anglePrev": 0, + "axes": { + "#": 2440 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2421 + }, + "sleepCounter": 0, + "region": { + "#": 2443 + } + }, + [ + { + "#": 2421 + } + ], + [ + { + "#": 2424 + }, + { + "#": 2425 + }, + { + "#": 2426 + }, + { + "#": 2427 + } + ], + { + "x": 475, + "y": 242.82558, + "index": 0, + "body": { + "#": 2421 + }, + "isInternal": false + }, + { + "x": 510, + "y": 242.82558, + "index": 1, + "body": { + "#": 2421 + }, + "isInternal": false + }, + { + "x": 510, + "y": 277.82558, + "index": 2, + "body": { + "#": 2421 + }, + "isInternal": false + }, + { + "x": 475, + "y": 277.82558, + "index": 3, + "body": { + "#": 2421 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 260.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2435 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2437 + }, + "max": { + "#": 2438 + } + }, + { + "x": 475, + "y": 242.82558 + }, + { + "x": 510, + "y": 280.73285 + }, + { + "x": 492.5, + "y": 257.41831 + }, + [ + { + "#": 2441 + }, + { + "#": 2442 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,5,5", + "startCol": 9, + "endCol": 10, + "startRow": 5, + "endRow": 5 + }, + { + "id": 107, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2445 + }, + "angle": 0, + "vertices": { + "#": 2446 + }, + "position": { + "#": 2451 + }, + "force": { + "#": 2452 + }, + "torque": 0, + "positionImpulse": { + "#": 2453 + }, + "constraintImpulse": { + "#": 2454 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2455 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2456 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2457 + }, + "bounds": { + "#": 2459 + }, + "positionPrev": { + "#": 2462 + }, + "anglePrev": 0, + "axes": { + "#": 2463 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2444 + }, + "sleepCounter": 0, + "region": { + "#": 2466 + } + }, + [ + { + "#": 2444 + } + ], + [ + { + "#": 2447 + }, + { + "#": 2448 + }, + { + "#": 2449 + }, + { + "#": 2450 + } + ], + { + "x": 510, + "y": 242.82558, + "index": 0, + "body": { + "#": 2444 + }, + "isInternal": false + }, + { + "x": 545, + "y": 242.82558, + "index": 1, + "body": { + "#": 2444 + }, + "isInternal": false + }, + { + "x": 545, + "y": 277.82558, + "index": 2, + "body": { + "#": 2444 + }, + "isInternal": false + }, + { + "x": 510, + "y": 277.82558, + "index": 3, + "body": { + "#": 2444 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 260.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2458 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2460 + }, + "max": { + "#": 2461 + } + }, + { + "x": 510, + "y": 242.82558 + }, + { + "x": 545, + "y": 280.73285 + }, + { + "x": 527.5, + "y": 257.41831 + }, + [ + { + "#": 2464 + }, + { + "#": 2465 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,5,5", + "startCol": 10, + "endCol": 11, + "startRow": 5, + "endRow": 5 + }, + { + "id": 108, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2468 + }, + "angle": 0, + "vertices": { + "#": 2469 + }, + "position": { + "#": 2474 + }, + "force": { + "#": 2475 + }, + "torque": 0, + "positionImpulse": { + "#": 2476 + }, + "constraintImpulse": { + "#": 2477 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2478 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2479 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2480 + }, + "bounds": { + "#": 2482 + }, + "positionPrev": { + "#": 2485 + }, + "anglePrev": 0, + "axes": { + "#": 2486 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2467 + }, + "sleepCounter": 0, + "region": { + "#": 2489 + } + }, + [ + { + "#": 2467 + } + ], + [ + { + "#": 2470 + }, + { + "#": 2471 + }, + { + "#": 2472 + }, + { + "#": 2473 + } + ], + { + "x": 545, + "y": 242.82558, + "index": 0, + "body": { + "#": 2467 + }, + "isInternal": false + }, + { + "x": 580, + "y": 242.82558, + "index": 1, + "body": { + "#": 2467 + }, + "isInternal": false + }, + { + "x": 580, + "y": 277.82558, + "index": 2, + "body": { + "#": 2467 + }, + "isInternal": false + }, + { + "x": 545, + "y": 277.82558, + "index": 3, + "body": { + "#": 2467 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 260.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2481 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2483 + }, + "max": { + "#": 2484 + } + }, + { + "x": 545, + "y": 242.82558 + }, + { + "x": 580, + "y": 280.73285 + }, + { + "x": 562.5, + "y": 257.41831 + }, + [ + { + "#": 2487 + }, + { + "#": 2488 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,5,5", + "startCol": 11, + "endCol": 12, + "startRow": 5, + "endRow": 5 + }, + { + "id": 109, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2491 + }, + "angle": 0, + "vertices": { + "#": 2492 + }, + "position": { + "#": 2497 + }, + "force": { + "#": 2498 + }, + "torque": 0, + "positionImpulse": { + "#": 2499 + }, + "constraintImpulse": { + "#": 2500 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2501 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2502 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2503 + }, + "bounds": { + "#": 2505 + }, + "positionPrev": { + "#": 2508 + }, + "anglePrev": 0, + "axes": { + "#": 2509 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2490 + }, + "sleepCounter": 0, + "region": { + "#": 2512 + } + }, + [ + { + "#": 2490 + } + ], + [ + { + "#": 2493 + }, + { + "#": 2494 + }, + { + "#": 2495 + }, + { + "#": 2496 + } + ], + { + "x": 580, + "y": 242.82558, + "index": 0, + "body": { + "#": 2490 + }, + "isInternal": false + }, + { + "x": 615, + "y": 242.82558, + "index": 1, + "body": { + "#": 2490 + }, + "isInternal": false + }, + { + "x": 615, + "y": 277.82558, + "index": 2, + "body": { + "#": 2490 + }, + "isInternal": false + }, + { + "x": 580, + "y": 277.82558, + "index": 3, + "body": { + "#": 2490 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 260.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2504 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2506 + }, + "max": { + "#": 2507 + } + }, + { + "x": 580, + "y": 242.82558 + }, + { + "x": 615, + "y": 280.73285 + }, + { + "x": 597.5, + "y": 257.41831 + }, + [ + { + "#": 2510 + }, + { + "#": 2511 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,12,5,5", + "startCol": 12, + "endCol": 12, + "startRow": 5, + "endRow": 5 + }, + { + "id": 110, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2514 + }, + "angle": 0, + "vertices": { + "#": 2515 + }, + "position": { + "#": 2520 + }, + "force": { + "#": 2521 + }, + "torque": 0, + "positionImpulse": { + "#": 2522 + }, + "constraintImpulse": { + "#": 2523 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2524 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2525 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2526 + }, + "bounds": { + "#": 2528 + }, + "positionPrev": { + "#": 2531 + }, + "anglePrev": 0, + "axes": { + "#": 2532 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2513 + }, + "sleepCounter": 0, + "region": { + "#": 2535 + } + }, + [ + { + "#": 2513 + } + ], + [ + { + "#": 2516 + }, + { + "#": 2517 + }, + { + "#": 2518 + }, + { + "#": 2519 + } + ], + { + "x": 615, + "y": 242.82558, + "index": 0, + "body": { + "#": 2513 + }, + "isInternal": false + }, + { + "x": 650, + "y": 242.82558, + "index": 1, + "body": { + "#": 2513 + }, + "isInternal": false + }, + { + "x": 650, + "y": 277.82558, + "index": 2, + "body": { + "#": 2513 + }, + "isInternal": false + }, + { + "x": 615, + "y": 277.82558, + "index": 3, + "body": { + "#": 2513 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 260.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2527 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2529 + }, + "max": { + "#": 2530 + } + }, + { + "x": 615, + "y": 242.82558 + }, + { + "x": 650, + "y": 280.73285 + }, + { + "x": 632.5, + "y": 257.41831 + }, + [ + { + "#": 2533 + }, + { + "#": 2534 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,5,5", + "startCol": 12, + "endCol": 13, + "startRow": 5, + "endRow": 5 + }, + { + "id": 111, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2537 + }, + "angle": 0, + "vertices": { + "#": 2538 + }, + "position": { + "#": 2543 + }, + "force": { + "#": 2544 + }, + "torque": 0, + "positionImpulse": { + "#": 2545 + }, + "constraintImpulse": { + "#": 2546 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2547 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2548 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2549 + }, + "bounds": { + "#": 2551 + }, + "positionPrev": { + "#": 2554 + }, + "anglePrev": 0, + "axes": { + "#": 2555 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2536 + }, + "sleepCounter": 0, + "region": { + "#": 2558 + } + }, + [ + { + "#": 2536 + } + ], + [ + { + "#": 2539 + }, + { + "#": 2540 + }, + { + "#": 2541 + }, + { + "#": 2542 + } + ], + { + "x": 650, + "y": 242.82558, + "index": 0, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 685, + "y": 242.82558, + "index": 1, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 685, + "y": 277.82558, + "index": 2, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 650, + "y": 277.82558, + "index": 3, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 260.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2550 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2552 + }, + "max": { + "#": 2553 + } + }, + { + "x": 650, + "y": 242.82558 + }, + { + "x": 685, + "y": 280.73285 + }, + { + "x": 667.5, + "y": 257.41831 + }, + [ + { + "#": 2556 + }, + { + "#": 2557 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,5,5", + "startCol": 13, + "endCol": 14, + "startRow": 5, + "endRow": 5 + }, + { + "id": 112, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2560 + }, + "angle": 0, + "vertices": { + "#": 2561 + }, + "position": { + "#": 2566 + }, + "force": { + "#": 2567 + }, + "torque": 0, + "positionImpulse": { + "#": 2568 + }, + "constraintImpulse": { + "#": 2569 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2570 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2571 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2572 + }, + "bounds": { + "#": 2574 + }, + "positionPrev": { + "#": 2577 + }, + "anglePrev": 0, + "axes": { + "#": 2578 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2559 + }, + "sleepCounter": 0, + "region": { + "#": 2581 + } + }, + [ + { + "#": 2559 + } + ], + [ + { + "#": 2562 + }, + { + "#": 2563 + }, + { + "#": 2564 + }, + { + "#": 2565 + } + ], + { + "x": 685, + "y": 242.82558, + "index": 0, + "body": { + "#": 2559 + }, + "isInternal": false + }, + { + "x": 720, + "y": 242.82558, + "index": 1, + "body": { + "#": 2559 + }, + "isInternal": false + }, + { + "x": 720, + "y": 277.82558, + "index": 2, + "body": { + "#": 2559 + }, + "isInternal": false + }, + { + "x": 685, + "y": 277.82558, + "index": 3, + "body": { + "#": 2559 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 260.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2573 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2575 + }, + "max": { + "#": 2576 + } + }, + { + "x": 685, + "y": 242.82558 + }, + { + "x": 720, + "y": 280.73285 + }, + { + "x": 702.5, + "y": 257.41831 + }, + [ + { + "#": 2579 + }, + { + "#": 2580 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,5,5", + "startCol": 14, + "endCol": 15, + "startRow": 5, + "endRow": 5 + }, + { + "id": 113, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2583 + }, + "angle": 0, + "vertices": { + "#": 2584 + }, + "position": { + "#": 2589 + }, + "force": { + "#": 2590 + }, + "torque": 0, + "positionImpulse": { + "#": 2591 + }, + "constraintImpulse": { + "#": 2592 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2593 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2594 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2595 + }, + "bounds": { + "#": 2597 + }, + "positionPrev": { + "#": 2600 + }, + "anglePrev": 0, + "axes": { + "#": 2601 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2582 + }, + "sleepCounter": 0, + "region": { + "#": 2604 + } + }, + [ + { + "#": 2582 + } + ], + [ + { + "#": 2585 + }, + { + "#": 2586 + }, + { + "#": 2587 + }, + { + "#": 2588 + } + ], + { + "x": 90, + "y": 277.77558, + "index": 0, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 125, + "y": 277.77558, + "index": 1, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 125, + "y": 312.77558, + "index": 2, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 90, + "y": 312.77558, + "index": 3, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 295.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2596 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2598 + }, + "max": { + "#": 2599 + } + }, + { + "x": 90, + "y": 277.77558 + }, + { + "x": 125, + "y": 315.68285 + }, + { + "x": 107.5, + "y": 292.36831 + }, + [ + { + "#": 2602 + }, + { + "#": 2603 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "1,2,5,6", + "startCol": 1, + "endCol": 2, + "startRow": 5, + "endRow": 6 + }, + { + "id": 114, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2606 + }, + "angle": 0, + "vertices": { + "#": 2607 + }, + "position": { + "#": 2612 + }, + "force": { + "#": 2613 + }, + "torque": 0, + "positionImpulse": { + "#": 2614 + }, + "constraintImpulse": { + "#": 2615 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2616 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2617 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2618 + }, + "bounds": { + "#": 2620 + }, + "positionPrev": { + "#": 2623 + }, + "anglePrev": 0, + "axes": { + "#": 2624 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2605 + }, + "sleepCounter": 0, + "region": { + "#": 2627 + } + }, + [ + { + "#": 2605 + } + ], + [ + { + "#": 2608 + }, + { + "#": 2609 + }, + { + "#": 2610 + }, + { + "#": 2611 + } + ], + { + "x": 125, + "y": 277.77558, + "index": 0, + "body": { + "#": 2605 + }, + "isInternal": false + }, + { + "x": 160, + "y": 277.77558, + "index": 1, + "body": { + "#": 2605 + }, + "isInternal": false + }, + { + "x": 160, + "y": 312.77558, + "index": 2, + "body": { + "#": 2605 + }, + "isInternal": false + }, + { + "x": 125, + "y": 312.77558, + "index": 3, + "body": { + "#": 2605 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 295.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2619 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2621 + }, + "max": { + "#": 2622 + } + }, + { + "x": 125, + "y": 277.77558 + }, + { + "x": 160, + "y": 315.68285 + }, + { + "x": 142.5, + "y": 292.36831 + }, + [ + { + "#": 2625 + }, + { + "#": 2626 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,5,6", + "startCol": 2, + "endCol": 3, + "startRow": 5, + "endRow": 6 + }, + { + "id": 115, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2629 + }, + "angle": 0, + "vertices": { + "#": 2630 + }, + "position": { + "#": 2635 + }, + "force": { + "#": 2636 + }, + "torque": 0, + "positionImpulse": { + "#": 2637 + }, + "constraintImpulse": { + "#": 2638 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2639 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2640 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2641 + }, + "bounds": { + "#": 2643 + }, + "positionPrev": { + "#": 2646 + }, + "anglePrev": 0, + "axes": { + "#": 2647 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2628 + }, + "sleepCounter": 0, + "region": { + "#": 2650 + } + }, + [ + { + "#": 2628 + } + ], + [ + { + "#": 2631 + }, + { + "#": 2632 + }, + { + "#": 2633 + }, + { + "#": 2634 + } + ], + { + "x": 160, + "y": 277.77558, + "index": 0, + "body": { + "#": 2628 + }, + "isInternal": false + }, + { + "x": 195, + "y": 277.77558, + "index": 1, + "body": { + "#": 2628 + }, + "isInternal": false + }, + { + "x": 195, + "y": 312.77558, + "index": 2, + "body": { + "#": 2628 + }, + "isInternal": false + }, + { + "x": 160, + "y": 312.77558, + "index": 3, + "body": { + "#": 2628 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 295.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2642 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2644 + }, + "max": { + "#": 2645 + } + }, + { + "x": 160, + "y": 277.77558 + }, + { + "x": 195, + "y": 315.68285 + }, + { + "x": 177.5, + "y": 292.36831 + }, + [ + { + "#": 2648 + }, + { + "#": 2649 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,5,6", + "startCol": 3, + "endCol": 4, + "startRow": 5, + "endRow": 6 + }, + { + "id": 116, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2652 + }, + "angle": 0, + "vertices": { + "#": 2653 + }, + "position": { + "#": 2658 + }, + "force": { + "#": 2659 + }, + "torque": 0, + "positionImpulse": { + "#": 2660 + }, + "constraintImpulse": { + "#": 2661 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2662 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2663 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2664 + }, + "bounds": { + "#": 2666 + }, + "positionPrev": { + "#": 2669 + }, + "anglePrev": 0, + "axes": { + "#": 2670 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2651 + }, + "sleepCounter": 0, + "region": { + "#": 2673 + } + }, + [ + { + "#": 2651 + } + ], + [ + { + "#": 2654 + }, + { + "#": 2655 + }, + { + "#": 2656 + }, + { + "#": 2657 + } + ], + { + "x": 195, + "y": 277.77558, + "index": 0, + "body": { + "#": 2651 + }, + "isInternal": false + }, + { + "x": 230, + "y": 277.77558, + "index": 1, + "body": { + "#": 2651 + }, + "isInternal": false + }, + { + "x": 230, + "y": 312.77558, + "index": 2, + "body": { + "#": 2651 + }, + "isInternal": false + }, + { + "x": 195, + "y": 312.77558, + "index": 3, + "body": { + "#": 2651 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 295.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2665 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2667 + }, + "max": { + "#": 2668 + } + }, + { + "x": 195, + "y": 277.77558 + }, + { + "x": 230, + "y": 315.68285 + }, + { + "x": 212.5, + "y": 292.36831 + }, + [ + { + "#": 2671 + }, + { + "#": 2672 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,5,6", + "startCol": 4, + "endCol": 4, + "startRow": 5, + "endRow": 6 + }, + { + "id": 117, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2675 + }, + "angle": 0, + "vertices": { + "#": 2676 + }, + "position": { + "#": 2681 + }, + "force": { + "#": 2682 + }, + "torque": 0, + "positionImpulse": { + "#": 2683 + }, + "constraintImpulse": { + "#": 2684 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2685 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2686 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2687 + }, + "bounds": { + "#": 2689 + }, + "positionPrev": { + "#": 2692 + }, + "anglePrev": 0, + "axes": { + "#": 2693 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2674 + }, + "sleepCounter": 0, + "region": { + "#": 2696 + } + }, + [ + { + "#": 2674 + } + ], + [ + { + "#": 2677 + }, + { + "#": 2678 + }, + { + "#": 2679 + }, + { + "#": 2680 + } + ], + { + "x": 230, + "y": 277.77558, + "index": 0, + "body": { + "#": 2674 + }, + "isInternal": false + }, + { + "x": 265, + "y": 277.77558, + "index": 1, + "body": { + "#": 2674 + }, + "isInternal": false + }, + { + "x": 265, + "y": 312.77558, + "index": 2, + "body": { + "#": 2674 + }, + "isInternal": false + }, + { + "x": 230, + "y": 312.77558, + "index": 3, + "body": { + "#": 2674 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 295.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2688 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2690 + }, + "max": { + "#": 2691 + } + }, + { + "x": 230, + "y": 277.77558 + }, + { + "x": 265, + "y": 315.68285 + }, + { + "x": 247.5, + "y": 292.36831 + }, + [ + { + "#": 2694 + }, + { + "#": 2695 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,5,6", + "startCol": 4, + "endCol": 5, + "startRow": 5, + "endRow": 6 + }, + { + "id": 118, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2698 + }, + "angle": 0, + "vertices": { + "#": 2699 + }, + "position": { + "#": 2704 + }, + "force": { + "#": 2705 + }, + "torque": 0, + "positionImpulse": { + "#": 2706 + }, + "constraintImpulse": { + "#": 2707 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2708 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2709 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2710 + }, + "bounds": { + "#": 2712 + }, + "positionPrev": { + "#": 2715 + }, + "anglePrev": 0, + "axes": { + "#": 2716 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2697 + }, + "sleepCounter": 0, + "region": { + "#": 2719 + } + }, + [ + { + "#": 2697 + } + ], + [ + { + "#": 2700 + }, + { + "#": 2701 + }, + { + "#": 2702 + }, + { + "#": 2703 + } + ], + { + "x": 265, + "y": 277.77558, + "index": 0, + "body": { + "#": 2697 + }, + "isInternal": false + }, + { + "x": 300, + "y": 277.77558, + "index": 1, + "body": { + "#": 2697 + }, + "isInternal": false + }, + { + "x": 300, + "y": 312.77558, + "index": 2, + "body": { + "#": 2697 + }, + "isInternal": false + }, + { + "x": 265, + "y": 312.77558, + "index": 3, + "body": { + "#": 2697 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 295.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2711 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2713 + }, + "max": { + "#": 2714 + } + }, + { + "x": 265, + "y": 277.77558 + }, + { + "x": 300, + "y": 315.68285 + }, + { + "x": 282.5, + "y": 292.36831 + }, + [ + { + "#": 2717 + }, + { + "#": 2718 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,5,6", + "startCol": 5, + "endCol": 6, + "startRow": 5, + "endRow": 6 + }, + { + "id": 119, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2721 + }, + "angle": 0, + "vertices": { + "#": 2722 + }, + "position": { + "#": 2727 + }, + "force": { + "#": 2728 + }, + "torque": 0, + "positionImpulse": { + "#": 2729 + }, + "constraintImpulse": { + "#": 2730 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2731 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2732 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2733 + }, + "bounds": { + "#": 2735 + }, + "positionPrev": { + "#": 2738 + }, + "anglePrev": 0, + "axes": { + "#": 2739 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2720 + }, + "sleepCounter": 0, + "region": { + "#": 2742 + } + }, + [ + { + "#": 2720 + } + ], + [ + { + "#": 2723 + }, + { + "#": 2724 + }, + { + "#": 2725 + }, + { + "#": 2726 + } + ], + { + "x": 300, + "y": 277.77558, + "index": 0, + "body": { + "#": 2720 + }, + "isInternal": false + }, + { + "x": 335, + "y": 277.77558, + "index": 1, + "body": { + "#": 2720 + }, + "isInternal": false + }, + { + "x": 335, + "y": 312.77558, + "index": 2, + "body": { + "#": 2720 + }, + "isInternal": false + }, + { + "x": 300, + "y": 312.77558, + "index": 3, + "body": { + "#": 2720 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 295.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2734 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2736 + }, + "max": { + "#": 2737 + } + }, + { + "x": 300, + "y": 277.77558 + }, + { + "x": 335, + "y": 315.68285 + }, + { + "x": 317.5, + "y": 292.36831 + }, + [ + { + "#": 2740 + }, + { + "#": 2741 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,5,6", + "startCol": 6, + "endCol": 6, + "startRow": 5, + "endRow": 6 + }, + { + "id": 120, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2744 + }, + "angle": 0, + "vertices": { + "#": 2745 + }, + "position": { + "#": 2750 + }, + "force": { + "#": 2751 + }, + "torque": 0, + "positionImpulse": { + "#": 2752 + }, + "constraintImpulse": { + "#": 2753 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2754 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2755 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2756 + }, + "bounds": { + "#": 2758 + }, + "positionPrev": { + "#": 2761 + }, + "anglePrev": 0, + "axes": { + "#": 2762 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2743 + }, + "sleepCounter": 0, + "region": { + "#": 2765 + } + }, + [ + { + "#": 2743 + } + ], + [ + { + "#": 2746 + }, + { + "#": 2747 + }, + { + "#": 2748 + }, + { + "#": 2749 + } + ], + { + "x": 335, + "y": 277.77558, + "index": 0, + "body": { + "#": 2743 + }, + "isInternal": false + }, + { + "x": 370, + "y": 277.77558, + "index": 1, + "body": { + "#": 2743 + }, + "isInternal": false + }, + { + "x": 370, + "y": 312.77558, + "index": 2, + "body": { + "#": 2743 + }, + "isInternal": false + }, + { + "x": 335, + "y": 312.77558, + "index": 3, + "body": { + "#": 2743 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 295.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2757 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2759 + }, + "max": { + "#": 2760 + } + }, + { + "x": 335, + "y": 277.77558 + }, + { + "x": 370, + "y": 315.68285 + }, + { + "x": 352.5, + "y": 292.36831 + }, + [ + { + "#": 2763 + }, + { + "#": 2764 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,5,6", + "startCol": 6, + "endCol": 7, + "startRow": 5, + "endRow": 6 + }, + { + "id": 121, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2767 + }, + "angle": 0, + "vertices": { + "#": 2768 + }, + "position": { + "#": 2773 + }, + "force": { + "#": 2774 + }, + "torque": 0, + "positionImpulse": { + "#": 2775 + }, + "constraintImpulse": { + "#": 2776 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2777 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2778 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2779 + }, + "bounds": { + "#": 2781 + }, + "positionPrev": { + "#": 2784 + }, + "anglePrev": 0, + "axes": { + "#": 2785 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2766 + }, + "sleepCounter": 0, + "region": { + "#": 2788 + } + }, + [ + { + "#": 2766 + } + ], + [ + { + "#": 2769 + }, + { + "#": 2770 + }, + { + "#": 2771 + }, + { + "#": 2772 + } + ], + { + "x": 370, + "y": 277.77558, + "index": 0, + "body": { + "#": 2766 + }, + "isInternal": false + }, + { + "x": 405, + "y": 277.77558, + "index": 1, + "body": { + "#": 2766 + }, + "isInternal": false + }, + { + "x": 405, + "y": 312.77558, + "index": 2, + "body": { + "#": 2766 + }, + "isInternal": false + }, + { + "x": 370, + "y": 312.77558, + "index": 3, + "body": { + "#": 2766 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 295.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2780 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2782 + }, + "max": { + "#": 2783 + } + }, + { + "x": 370, + "y": 277.77558 + }, + { + "x": 405, + "y": 315.68285 + }, + { + "x": 387.5, + "y": 292.36831 + }, + [ + { + "#": 2786 + }, + { + "#": 2787 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,5,6", + "startCol": 7, + "endCol": 8, + "startRow": 5, + "endRow": 6 + }, + { + "id": 122, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2790 + }, + "angle": 0, + "vertices": { + "#": 2791 + }, + "position": { + "#": 2796 + }, + "force": { + "#": 2797 + }, + "torque": 0, + "positionImpulse": { + "#": 2798 + }, + "constraintImpulse": { + "#": 2799 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2800 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2801 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2802 + }, + "bounds": { + "#": 2804 + }, + "positionPrev": { + "#": 2807 + }, + "anglePrev": 0, + "axes": { + "#": 2808 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2789 + }, + "sleepCounter": 0, + "region": { + "#": 2811 + } + }, + [ + { + "#": 2789 + } + ], + [ + { + "#": 2792 + }, + { + "#": 2793 + }, + { + "#": 2794 + }, + { + "#": 2795 + } + ], + { + "x": 405, + "y": 277.77558, + "index": 0, + "body": { + "#": 2789 + }, + "isInternal": false + }, + { + "x": 440, + "y": 277.77558, + "index": 1, + "body": { + "#": 2789 + }, + "isInternal": false + }, + { + "x": 440, + "y": 312.77558, + "index": 2, + "body": { + "#": 2789 + }, + "isInternal": false + }, + { + "x": 405, + "y": 312.77558, + "index": 3, + "body": { + "#": 2789 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 295.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2803 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2805 + }, + "max": { + "#": 2806 + } + }, + { + "x": 405, + "y": 277.77558 + }, + { + "x": 440, + "y": 315.68285 + }, + { + "x": 422.5, + "y": 292.36831 + }, + [ + { + "#": 2809 + }, + { + "#": 2810 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,5,6", + "startCol": 8, + "endCol": 9, + "startRow": 5, + "endRow": 6 + }, + { + "id": 123, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2813 + }, + "angle": 0, + "vertices": { + "#": 2814 + }, + "position": { + "#": 2819 + }, + "force": { + "#": 2820 + }, + "torque": 0, + "positionImpulse": { + "#": 2821 + }, + "constraintImpulse": { + "#": 2822 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2823 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2824 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2825 + }, + "bounds": { + "#": 2827 + }, + "positionPrev": { + "#": 2830 + }, + "anglePrev": 0, + "axes": { + "#": 2831 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2812 + }, + "sleepCounter": 0, + "region": { + "#": 2834 + } + }, + [ + { + "#": 2812 + } + ], + [ + { + "#": 2815 + }, + { + "#": 2816 + }, + { + "#": 2817 + }, + { + "#": 2818 + } + ], + { + "x": 440, + "y": 277.77558, + "index": 0, + "body": { + "#": 2812 + }, + "isInternal": false + }, + { + "x": 475, + "y": 277.77558, + "index": 1, + "body": { + "#": 2812 + }, + "isInternal": false + }, + { + "x": 475, + "y": 312.77558, + "index": 2, + "body": { + "#": 2812 + }, + "isInternal": false + }, + { + "x": 440, + "y": 312.77558, + "index": 3, + "body": { + "#": 2812 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 295.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2826 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2828 + }, + "max": { + "#": 2829 + } + }, + { + "x": 440, + "y": 277.77558 + }, + { + "x": 475, + "y": 315.68285 + }, + { + "x": 457.5, + "y": 292.36831 + }, + [ + { + "#": 2832 + }, + { + "#": 2833 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,5,6", + "startCol": 9, + "endCol": 9, + "startRow": 5, + "endRow": 6 + }, + { + "id": 124, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2836 + }, + "angle": 0, + "vertices": { + "#": 2837 + }, + "position": { + "#": 2842 + }, + "force": { + "#": 2843 + }, + "torque": 0, + "positionImpulse": { + "#": 2844 + }, + "constraintImpulse": { + "#": 2845 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2846 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2847 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2848 + }, + "bounds": { + "#": 2850 + }, + "positionPrev": { + "#": 2853 + }, + "anglePrev": 0, + "axes": { + "#": 2854 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2835 + }, + "sleepCounter": 0, + "region": { + "#": 2857 + } + }, + [ + { + "#": 2835 + } + ], + [ + { + "#": 2838 + }, + { + "#": 2839 + }, + { + "#": 2840 + }, + { + "#": 2841 + } + ], + { + "x": 475, + "y": 277.77558, + "index": 0, + "body": { + "#": 2835 + }, + "isInternal": false + }, + { + "x": 510, + "y": 277.77558, + "index": 1, + "body": { + "#": 2835 + }, + "isInternal": false + }, + { + "x": 510, + "y": 312.77558, + "index": 2, + "body": { + "#": 2835 + }, + "isInternal": false + }, + { + "x": 475, + "y": 312.77558, + "index": 3, + "body": { + "#": 2835 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 295.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2849 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2851 + }, + "max": { + "#": 2852 + } + }, + { + "x": 475, + "y": 277.77558 + }, + { + "x": 510, + "y": 315.68285 + }, + { + "x": 492.5, + "y": 292.36831 + }, + [ + { + "#": 2855 + }, + { + "#": 2856 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,5,6", + "startCol": 9, + "endCol": 10, + "startRow": 5, + "endRow": 6 + }, + { + "id": 125, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2859 + }, + "angle": 0, + "vertices": { + "#": 2860 + }, + "position": { + "#": 2865 + }, + "force": { + "#": 2866 + }, + "torque": 0, + "positionImpulse": { + "#": 2867 + }, + "constraintImpulse": { + "#": 2868 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2869 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2870 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2871 + }, + "bounds": { + "#": 2873 + }, + "positionPrev": { + "#": 2876 + }, + "anglePrev": 0, + "axes": { + "#": 2877 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2858 + }, + "sleepCounter": 0, + "region": { + "#": 2880 + } + }, + [ + { + "#": 2858 + } + ], + [ + { + "#": 2861 + }, + { + "#": 2862 + }, + { + "#": 2863 + }, + { + "#": 2864 + } + ], + { + "x": 510, + "y": 277.77558, + "index": 0, + "body": { + "#": 2858 + }, + "isInternal": false + }, + { + "x": 545, + "y": 277.77558, + "index": 1, + "body": { + "#": 2858 + }, + "isInternal": false + }, + { + "x": 545, + "y": 312.77558, + "index": 2, + "body": { + "#": 2858 + }, + "isInternal": false + }, + { + "x": 510, + "y": 312.77558, + "index": 3, + "body": { + "#": 2858 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 295.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2872 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2874 + }, + "max": { + "#": 2875 + } + }, + { + "x": 510, + "y": 277.77558 + }, + { + "x": 545, + "y": 315.68285 + }, + { + "x": 527.5, + "y": 292.36831 + }, + [ + { + "#": 2878 + }, + { + "#": 2879 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,5,6", + "startCol": 10, + "endCol": 11, + "startRow": 5, + "endRow": 6 + }, + { + "id": 126, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2882 + }, + "angle": 0, + "vertices": { + "#": 2883 + }, + "position": { + "#": 2888 + }, + "force": { + "#": 2889 + }, + "torque": 0, + "positionImpulse": { + "#": 2890 + }, + "constraintImpulse": { + "#": 2891 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2892 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2893 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2894 + }, + "bounds": { + "#": 2896 + }, + "positionPrev": { + "#": 2899 + }, + "anglePrev": 0, + "axes": { + "#": 2900 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2881 + }, + "sleepCounter": 0, + "region": { + "#": 2903 + } + }, + [ + { + "#": 2881 + } + ], + [ + { + "#": 2884 + }, + { + "#": 2885 + }, + { + "#": 2886 + }, + { + "#": 2887 + } + ], + { + "x": 545, + "y": 277.77558, + "index": 0, + "body": { + "#": 2881 + }, + "isInternal": false + }, + { + "x": 580, + "y": 277.77558, + "index": 1, + "body": { + "#": 2881 + }, + "isInternal": false + }, + { + "x": 580, + "y": 312.77558, + "index": 2, + "body": { + "#": 2881 + }, + "isInternal": false + }, + { + "x": 545, + "y": 312.77558, + "index": 3, + "body": { + "#": 2881 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 295.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2895 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2897 + }, + "max": { + "#": 2898 + } + }, + { + "x": 545, + "y": 277.77558 + }, + { + "x": 580, + "y": 315.68285 + }, + { + "x": 562.5, + "y": 292.36831 + }, + [ + { + "#": 2901 + }, + { + "#": 2902 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,5,6", + "startCol": 11, + "endCol": 12, + "startRow": 5, + "endRow": 6 + }, + { + "id": 127, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2905 + }, + "angle": 0, + "vertices": { + "#": 2906 + }, + "position": { + "#": 2911 + }, + "force": { + "#": 2912 + }, + "torque": 0, + "positionImpulse": { + "#": 2913 + }, + "constraintImpulse": { + "#": 2914 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2915 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2916 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2917 + }, + "bounds": { + "#": 2919 + }, + "positionPrev": { + "#": 2922 + }, + "anglePrev": 0, + "axes": { + "#": 2923 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2904 + }, + "sleepCounter": 0, + "region": { + "#": 2926 + } + }, + [ + { + "#": 2904 + } + ], + [ + { + "#": 2907 + }, + { + "#": 2908 + }, + { + "#": 2909 + }, + { + "#": 2910 + } + ], + { + "x": 580, + "y": 277.77558, + "index": 0, + "body": { + "#": 2904 + }, + "isInternal": false + }, + { + "x": 615, + "y": 277.77558, + "index": 1, + "body": { + "#": 2904 + }, + "isInternal": false + }, + { + "x": 615, + "y": 312.77558, + "index": 2, + "body": { + "#": 2904 + }, + "isInternal": false + }, + { + "x": 580, + "y": 312.77558, + "index": 3, + "body": { + "#": 2904 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 295.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2918 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2920 + }, + "max": { + "#": 2921 + } + }, + { + "x": 580, + "y": 277.77558 + }, + { + "x": 615, + "y": 315.68285 + }, + { + "x": 597.5, + "y": 292.36831 + }, + [ + { + "#": 2924 + }, + { + "#": 2925 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,12,5,6", + "startCol": 12, + "endCol": 12, + "startRow": 5, + "endRow": 6 + }, + { + "id": 128, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2928 + }, + "angle": 0, + "vertices": { + "#": 2929 + }, + "position": { + "#": 2934 + }, + "force": { + "#": 2935 + }, + "torque": 0, + "positionImpulse": { + "#": 2936 + }, + "constraintImpulse": { + "#": 2937 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2938 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2939 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2940 + }, + "bounds": { + "#": 2942 + }, + "positionPrev": { + "#": 2945 + }, + "anglePrev": 0, + "axes": { + "#": 2946 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2927 + }, + "sleepCounter": 0, + "region": { + "#": 2949 + } + }, + [ + { + "#": 2927 + } + ], + [ + { + "#": 2930 + }, + { + "#": 2931 + }, + { + "#": 2932 + }, + { + "#": 2933 + } + ], + { + "x": 615, + "y": 277.77558, + "index": 0, + "body": { + "#": 2927 + }, + "isInternal": false + }, + { + "x": 650, + "y": 277.77558, + "index": 1, + "body": { + "#": 2927 + }, + "isInternal": false + }, + { + "x": 650, + "y": 312.77558, + "index": 2, + "body": { + "#": 2927 + }, + "isInternal": false + }, + { + "x": 615, + "y": 312.77558, + "index": 3, + "body": { + "#": 2927 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 295.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2941 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2943 + }, + "max": { + "#": 2944 + } + }, + { + "x": 615, + "y": 277.77558 + }, + { + "x": 650, + "y": 315.68285 + }, + { + "x": 632.5, + "y": 292.36831 + }, + [ + { + "#": 2947 + }, + { + "#": 2948 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,5,6", + "startCol": 12, + "endCol": 13, + "startRow": 5, + "endRow": 6 + }, + { + "id": 129, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2951 + }, + "angle": 0, + "vertices": { + "#": 2952 + }, + "position": { + "#": 2957 + }, + "force": { + "#": 2958 + }, + "torque": 0, + "positionImpulse": { + "#": 2959 + }, + "constraintImpulse": { + "#": 2960 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2961 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2962 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2963 + }, + "bounds": { + "#": 2965 + }, + "positionPrev": { + "#": 2968 + }, + "anglePrev": 0, + "axes": { + "#": 2969 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2950 + }, + "sleepCounter": 0, + "region": { + "#": 2972 + } + }, + [ + { + "#": 2950 + } + ], + [ + { + "#": 2953 + }, + { + "#": 2954 + }, + { + "#": 2955 + }, + { + "#": 2956 + } + ], + { + "x": 650, + "y": 277.77558, + "index": 0, + "body": { + "#": 2950 + }, + "isInternal": false + }, + { + "x": 685, + "y": 277.77558, + "index": 1, + "body": { + "#": 2950 + }, + "isInternal": false + }, + { + "x": 685, + "y": 312.77558, + "index": 2, + "body": { + "#": 2950 + }, + "isInternal": false + }, + { + "x": 650, + "y": 312.77558, + "index": 3, + "body": { + "#": 2950 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 295.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2964 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2966 + }, + "max": { + "#": 2967 + } + }, + { + "x": 650, + "y": 277.77558 + }, + { + "x": 685, + "y": 315.68285 + }, + { + "x": 667.5, + "y": 292.36831 + }, + [ + { + "#": 2970 + }, + { + "#": 2971 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,5,6", + "startCol": 13, + "endCol": 14, + "startRow": 5, + "endRow": 6 + }, + { + "id": 130, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2974 + }, + "angle": 0, + "vertices": { + "#": 2975 + }, + "position": { + "#": 2980 + }, + "force": { + "#": 2981 + }, + "torque": 0, + "positionImpulse": { + "#": 2982 + }, + "constraintImpulse": { + "#": 2983 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2984 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2985 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2986 + }, + "bounds": { + "#": 2988 + }, + "positionPrev": { + "#": 2991 + }, + "anglePrev": 0, + "axes": { + "#": 2992 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2973 + }, + "sleepCounter": 0, + "region": { + "#": 2995 + } + }, + [ + { + "#": 2973 + } + ], + [ + { + "#": 2976 + }, + { + "#": 2977 + }, + { + "#": 2978 + }, + { + "#": 2979 + } + ], + { + "x": 685, + "y": 277.77558, + "index": 0, + "body": { + "#": 2973 + }, + "isInternal": false + }, + { + "x": 720, + "y": 277.77558, + "index": 1, + "body": { + "#": 2973 + }, + "isInternal": false + }, + { + "x": 720, + "y": 312.77558, + "index": 2, + "body": { + "#": 2973 + }, + "isInternal": false + }, + { + "x": 685, + "y": 312.77558, + "index": 3, + "body": { + "#": 2973 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 295.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2987 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2989 + }, + "max": { + "#": 2990 + } + }, + { + "x": 685, + "y": 277.77558 + }, + { + "x": 720, + "y": 315.68285 + }, + { + "x": 702.5, + "y": 292.36831 + }, + [ + { + "#": 2993 + }, + { + "#": 2994 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,5,6", + "startCol": 14, + "endCol": 15, + "startRow": 5, + "endRow": 6 + }, + { + "id": 131, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2997 + }, + "angle": 0, + "vertices": { + "#": 2998 + }, + "position": { + "#": 3003 + }, + "force": { + "#": 3004 + }, + "torque": 0, + "positionImpulse": { + "#": 3005 + }, + "constraintImpulse": { + "#": 3006 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3007 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3008 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3009 + }, + "bounds": { + "#": 3011 + }, + "positionPrev": { + "#": 3014 + }, + "anglePrev": 0, + "axes": { + "#": 3015 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 2996 + }, + "sleepCounter": 0, + "region": { + "#": 3018 + } + }, + [ + { + "#": 2996 + } + ], + [ + { + "#": 2999 + }, + { + "#": 3000 + }, + { + "#": 3001 + }, + { + "#": 3002 + } + ], + { + "x": 90, + "y": 312.72558, + "index": 0, + "body": { + "#": 2996 + }, + "isInternal": false + }, + { + "x": 125, + "y": 312.72558, + "index": 1, + "body": { + "#": 2996 + }, + "isInternal": false + }, + { + "x": 125, + "y": 347.72558, + "index": 2, + "body": { + "#": 2996 + }, + "isInternal": false + }, + { + "x": 90, + "y": 347.72558, + "index": 3, + "body": { + "#": 2996 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 330.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3010 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3012 + }, + "max": { + "#": 3013 + } + }, + { + "x": 90, + "y": 312.72558 + }, + { + "x": 125, + "y": 350.63285 + }, + { + "x": 107.5, + "y": 327.31831 + }, + [ + { + "#": 3016 + }, + { + "#": 3017 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "1,2,6,7", + "startCol": 1, + "endCol": 2, + "startRow": 6, + "endRow": 7 + }, + { + "id": 132, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3020 + }, + "angle": 0, + "vertices": { + "#": 3021 + }, + "position": { + "#": 3026 + }, + "force": { + "#": 3027 + }, + "torque": 0, + "positionImpulse": { + "#": 3028 + }, + "constraintImpulse": { + "#": 3029 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3030 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3031 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3032 + }, + "bounds": { + "#": 3034 + }, + "positionPrev": { + "#": 3037 + }, + "anglePrev": 0, + "axes": { + "#": 3038 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3019 + }, + "sleepCounter": 0, + "region": { + "#": 3041 + } + }, + [ + { + "#": 3019 + } + ], + [ + { + "#": 3022 + }, + { + "#": 3023 + }, + { + "#": 3024 + }, + { + "#": 3025 + } + ], + { + "x": 125, + "y": 312.72558, + "index": 0, + "body": { + "#": 3019 + }, + "isInternal": false + }, + { + "x": 160, + "y": 312.72558, + "index": 1, + "body": { + "#": 3019 + }, + "isInternal": false + }, + { + "x": 160, + "y": 347.72558, + "index": 2, + "body": { + "#": 3019 + }, + "isInternal": false + }, + { + "x": 125, + "y": 347.72558, + "index": 3, + "body": { + "#": 3019 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 330.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3033 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3035 + }, + "max": { + "#": 3036 + } + }, + { + "x": 125, + "y": 312.72558 + }, + { + "x": 160, + "y": 350.63285 + }, + { + "x": 142.5, + "y": 327.31831 + }, + [ + { + "#": 3039 + }, + { + "#": 3040 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,6,7", + "startCol": 2, + "endCol": 3, + "startRow": 6, + "endRow": 7 + }, + { + "id": 133, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3043 + }, + "angle": 0, + "vertices": { + "#": 3044 + }, + "position": { + "#": 3049 + }, + "force": { + "#": 3050 + }, + "torque": 0, + "positionImpulse": { + "#": 3051 + }, + "constraintImpulse": { + "#": 3052 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3053 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3054 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3055 + }, + "bounds": { + "#": 3057 + }, + "positionPrev": { + "#": 3060 + }, + "anglePrev": 0, + "axes": { + "#": 3061 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3042 + }, + "sleepCounter": 0, + "region": { + "#": 3064 + } + }, + [ + { + "#": 3042 + } + ], + [ + { + "#": 3045 + }, + { + "#": 3046 + }, + { + "#": 3047 + }, + { + "#": 3048 + } + ], + { + "x": 160, + "y": 312.72558, + "index": 0, + "body": { + "#": 3042 + }, + "isInternal": false + }, + { + "x": 195, + "y": 312.72558, + "index": 1, + "body": { + "#": 3042 + }, + "isInternal": false + }, + { + "x": 195, + "y": 347.72558, + "index": 2, + "body": { + "#": 3042 + }, + "isInternal": false + }, + { + "x": 160, + "y": 347.72558, + "index": 3, + "body": { + "#": 3042 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 330.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3056 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3058 + }, + "max": { + "#": 3059 + } + }, + { + "x": 160, + "y": 312.72558 + }, + { + "x": 195, + "y": 350.63285 + }, + { + "x": 177.5, + "y": 327.31831 + }, + [ + { + "#": 3062 + }, + { + "#": 3063 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,6,7", + "startCol": 3, + "endCol": 4, + "startRow": 6, + "endRow": 7 + }, + { + "id": 134, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3066 + }, + "angle": 0, + "vertices": { + "#": 3067 + }, + "position": { + "#": 3072 + }, + "force": { + "#": 3073 + }, + "torque": 0, + "positionImpulse": { + "#": 3074 + }, + "constraintImpulse": { + "#": 3075 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3076 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3077 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3078 + }, + "bounds": { + "#": 3080 + }, + "positionPrev": { + "#": 3083 + }, + "anglePrev": 0, + "axes": { + "#": 3084 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3065 + }, + "sleepCounter": 0, + "region": { + "#": 3087 + } + }, + [ + { + "#": 3065 + } + ], + [ + { + "#": 3068 + }, + { + "#": 3069 + }, + { + "#": 3070 + }, + { + "#": 3071 + } + ], + { + "x": 195, + "y": 312.72558, + "index": 0, + "body": { + "#": 3065 + }, + "isInternal": false + }, + { + "x": 230, + "y": 312.72558, + "index": 1, + "body": { + "#": 3065 + }, + "isInternal": false + }, + { + "x": 230, + "y": 347.72558, + "index": 2, + "body": { + "#": 3065 + }, + "isInternal": false + }, + { + "x": 195, + "y": 347.72558, + "index": 3, + "body": { + "#": 3065 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 330.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3079 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3081 + }, + "max": { + "#": 3082 + } + }, + { + "x": 195, + "y": 312.72558 + }, + { + "x": 230, + "y": 350.63285 + }, + { + "x": 212.5, + "y": 327.31831 + }, + [ + { + "#": 3085 + }, + { + "#": 3086 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,6,7", + "startCol": 4, + "endCol": 4, + "startRow": 6, + "endRow": 7 + }, + { + "id": 135, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3089 + }, + "angle": 0, + "vertices": { + "#": 3090 + }, + "position": { + "#": 3095 + }, + "force": { + "#": 3096 + }, + "torque": 0, + "positionImpulse": { + "#": 3097 + }, + "constraintImpulse": { + "#": 3098 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3099 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3100 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3101 + }, + "bounds": { + "#": 3103 + }, + "positionPrev": { + "#": 3106 + }, + "anglePrev": 0, + "axes": { + "#": 3107 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3088 + }, + "sleepCounter": 0, + "region": { + "#": 3110 + } + }, + [ + { + "#": 3088 + } + ], + [ + { + "#": 3091 + }, + { + "#": 3092 + }, + { + "#": 3093 + }, + { + "#": 3094 + } + ], + { + "x": 230, + "y": 312.72558, + "index": 0, + "body": { + "#": 3088 + }, + "isInternal": false + }, + { + "x": 265, + "y": 312.72558, + "index": 1, + "body": { + "#": 3088 + }, + "isInternal": false + }, + { + "x": 265, + "y": 347.72558, + "index": 2, + "body": { + "#": 3088 + }, + "isInternal": false + }, + { + "x": 230, + "y": 347.72558, + "index": 3, + "body": { + "#": 3088 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 330.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3102 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3104 + }, + "max": { + "#": 3105 + } + }, + { + "x": 230, + "y": 312.72558 + }, + { + "x": 265, + "y": 350.63285 + }, + { + "x": 247.5, + "y": 327.31831 + }, + [ + { + "#": 3108 + }, + { + "#": 3109 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,6,7", + "startCol": 4, + "endCol": 5, + "startRow": 6, + "endRow": 7 + }, + { + "id": 136, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3112 + }, + "angle": 0, + "vertices": { + "#": 3113 + }, + "position": { + "#": 3118 + }, + "force": { + "#": 3119 + }, + "torque": 0, + "positionImpulse": { + "#": 3120 + }, + "constraintImpulse": { + "#": 3121 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3122 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3123 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3124 + }, + "bounds": { + "#": 3126 + }, + "positionPrev": { + "#": 3129 + }, + "anglePrev": 0, + "axes": { + "#": 3130 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3111 + }, + "sleepCounter": 0, + "region": { + "#": 3133 + } + }, + [ + { + "#": 3111 + } + ], + [ + { + "#": 3114 + }, + { + "#": 3115 + }, + { + "#": 3116 + }, + { + "#": 3117 + } + ], + { + "x": 265, + "y": 312.72558, + "index": 0, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 300, + "y": 312.72558, + "index": 1, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 300, + "y": 347.72558, + "index": 2, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 265, + "y": 347.72558, + "index": 3, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 330.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3125 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3127 + }, + "max": { + "#": 3128 + } + }, + { + "x": 265, + "y": 312.72558 + }, + { + "x": 300, + "y": 350.63285 + }, + { + "x": 282.5, + "y": 327.31831 + }, + [ + { + "#": 3131 + }, + { + "#": 3132 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,6,7", + "startCol": 5, + "endCol": 6, + "startRow": 6, + "endRow": 7 + }, + { + "id": 137, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3135 + }, + "angle": 0, + "vertices": { + "#": 3136 + }, + "position": { + "#": 3141 + }, + "force": { + "#": 3142 + }, + "torque": 0, + "positionImpulse": { + "#": 3143 + }, + "constraintImpulse": { + "#": 3144 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3145 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3146 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3147 + }, + "bounds": { + "#": 3149 + }, + "positionPrev": { + "#": 3152 + }, + "anglePrev": 0, + "axes": { + "#": 3153 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3134 + }, + "sleepCounter": 0, + "region": { + "#": 3156 + } + }, + [ + { + "#": 3134 + } + ], + [ + { + "#": 3137 + }, + { + "#": 3138 + }, + { + "#": 3139 + }, + { + "#": 3140 + } + ], + { + "x": 300, + "y": 312.72558, + "index": 0, + "body": { + "#": 3134 + }, + "isInternal": false + }, + { + "x": 335, + "y": 312.72558, + "index": 1, + "body": { + "#": 3134 + }, + "isInternal": false + }, + { + "x": 335, + "y": 347.72558, + "index": 2, + "body": { + "#": 3134 + }, + "isInternal": false + }, + { + "x": 300, + "y": 347.72558, + "index": 3, + "body": { + "#": 3134 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 330.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3148 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3150 + }, + "max": { + "#": 3151 + } + }, + { + "x": 300, + "y": 312.72558 + }, + { + "x": 335, + "y": 350.63285 + }, + { + "x": 317.5, + "y": 327.31831 + }, + [ + { + "#": 3154 + }, + { + "#": 3155 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,6,7", + "startCol": 6, + "endCol": 6, + "startRow": 6, + "endRow": 7 + }, + { + "id": 138, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3158 + }, + "angle": 0, + "vertices": { + "#": 3159 + }, + "position": { + "#": 3164 + }, + "force": { + "#": 3165 + }, + "torque": 0, + "positionImpulse": { + "#": 3166 + }, + "constraintImpulse": { + "#": 3167 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3168 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3169 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3170 + }, + "bounds": { + "#": 3172 + }, + "positionPrev": { + "#": 3175 + }, + "anglePrev": 0, + "axes": { + "#": 3176 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3157 + }, + "sleepCounter": 0, + "region": { + "#": 3179 + } + }, + [ + { + "#": 3157 + } + ], + [ + { + "#": 3160 + }, + { + "#": 3161 + }, + { + "#": 3162 + }, + { + "#": 3163 + } + ], + { + "x": 335, + "y": 312.72558, + "index": 0, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 370, + "y": 312.72558, + "index": 1, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 370, + "y": 347.72558, + "index": 2, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 335, + "y": 347.72558, + "index": 3, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 330.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3171 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3173 + }, + "max": { + "#": 3174 + } + }, + { + "x": 335, + "y": 312.72558 + }, + { + "x": 370, + "y": 350.63285 + }, + { + "x": 352.5, + "y": 327.31831 + }, + [ + { + "#": 3177 + }, + { + "#": 3178 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,6,7", + "startCol": 6, + "endCol": 7, + "startRow": 6, + "endRow": 7 + }, + { + "id": 139, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3181 + }, + "angle": 0, + "vertices": { + "#": 3182 + }, + "position": { + "#": 3187 + }, + "force": { + "#": 3188 + }, + "torque": 0, + "positionImpulse": { + "#": 3189 + }, + "constraintImpulse": { + "#": 3190 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3191 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3192 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3193 + }, + "bounds": { + "#": 3195 + }, + "positionPrev": { + "#": 3198 + }, + "anglePrev": 0, + "axes": { + "#": 3199 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3180 + }, + "sleepCounter": 0, + "region": { + "#": 3202 + } + }, + [ + { + "#": 3180 + } + ], + [ + { + "#": 3183 + }, + { + "#": 3184 + }, + { + "#": 3185 + }, + { + "#": 3186 + } + ], + { + "x": 370, + "y": 312.72558, + "index": 0, + "body": { + "#": 3180 + }, + "isInternal": false + }, + { + "x": 405, + "y": 312.72558, + "index": 1, + "body": { + "#": 3180 + }, + "isInternal": false + }, + { + "x": 405, + "y": 347.72558, + "index": 2, + "body": { + "#": 3180 + }, + "isInternal": false + }, + { + "x": 370, + "y": 347.72558, + "index": 3, + "body": { + "#": 3180 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 330.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3194 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3196 + }, + "max": { + "#": 3197 + } + }, + { + "x": 370, + "y": 312.72558 + }, + { + "x": 405, + "y": 350.63285 + }, + { + "x": 387.5, + "y": 327.31831 + }, + [ + { + "#": 3200 + }, + { + "#": 3201 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,6,7", + "startCol": 7, + "endCol": 8, + "startRow": 6, + "endRow": 7 + }, + { + "id": 140, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3204 + }, + "angle": 0, + "vertices": { + "#": 3205 + }, + "position": { + "#": 3210 + }, + "force": { + "#": 3211 + }, + "torque": 0, + "positionImpulse": { + "#": 3212 + }, + "constraintImpulse": { + "#": 3213 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3214 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3215 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3216 + }, + "bounds": { + "#": 3218 + }, + "positionPrev": { + "#": 3221 + }, + "anglePrev": 0, + "axes": { + "#": 3222 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3203 + }, + "sleepCounter": 0, + "region": { + "#": 3225 + } + }, + [ + { + "#": 3203 + } + ], + [ + { + "#": 3206 + }, + { + "#": 3207 + }, + { + "#": 3208 + }, + { + "#": 3209 + } + ], + { + "x": 405, + "y": 312.72558, + "index": 0, + "body": { + "#": 3203 + }, + "isInternal": false + }, + { + "x": 440, + "y": 312.72558, + "index": 1, + "body": { + "#": 3203 + }, + "isInternal": false + }, + { + "x": 440, + "y": 347.72558, + "index": 2, + "body": { + "#": 3203 + }, + "isInternal": false + }, + { + "x": 405, + "y": 347.72558, + "index": 3, + "body": { + "#": 3203 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 330.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3217 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3219 + }, + "max": { + "#": 3220 + } + }, + { + "x": 405, + "y": 312.72558 + }, + { + "x": 440, + "y": 350.63285 + }, + { + "x": 422.5, + "y": 327.31831 + }, + [ + { + "#": 3223 + }, + { + "#": 3224 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,6,7", + "startCol": 8, + "endCol": 9, + "startRow": 6, + "endRow": 7 + }, + { + "id": 141, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3227 + }, + "angle": 0, + "vertices": { + "#": 3228 + }, + "position": { + "#": 3233 + }, + "force": { + "#": 3234 + }, + "torque": 0, + "positionImpulse": { + "#": 3235 + }, + "constraintImpulse": { + "#": 3236 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3237 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3238 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3239 + }, + "bounds": { + "#": 3241 + }, + "positionPrev": { + "#": 3244 + }, + "anglePrev": 0, + "axes": { + "#": 3245 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3226 + }, + "sleepCounter": 0, + "region": { + "#": 3248 + } + }, + [ + { + "#": 3226 + } + ], + [ + { + "#": 3229 + }, + { + "#": 3230 + }, + { + "#": 3231 + }, + { + "#": 3232 + } + ], + { + "x": 440, + "y": 312.72558, + "index": 0, + "body": { + "#": 3226 + }, + "isInternal": false + }, + { + "x": 475, + "y": 312.72558, + "index": 1, + "body": { + "#": 3226 + }, + "isInternal": false + }, + { + "x": 475, + "y": 347.72558, + "index": 2, + "body": { + "#": 3226 + }, + "isInternal": false + }, + { + "x": 440, + "y": 347.72558, + "index": 3, + "body": { + "#": 3226 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 330.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3240 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3242 + }, + "max": { + "#": 3243 + } + }, + { + "x": 440, + "y": 312.72558 + }, + { + "x": 475, + "y": 350.63285 + }, + { + "x": 457.5, + "y": 327.31831 + }, + [ + { + "#": 3246 + }, + { + "#": 3247 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,6,7", + "startCol": 9, + "endCol": 9, + "startRow": 6, + "endRow": 7 + }, + { + "id": 142, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3250 + }, + "angle": 0, + "vertices": { + "#": 3251 + }, + "position": { + "#": 3256 + }, + "force": { + "#": 3257 + }, + "torque": 0, + "positionImpulse": { + "#": 3258 + }, + "constraintImpulse": { + "#": 3259 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3260 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3261 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3262 + }, + "bounds": { + "#": 3264 + }, + "positionPrev": { + "#": 3267 + }, + "anglePrev": 0, + "axes": { + "#": 3268 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3249 + }, + "sleepCounter": 0, + "region": { + "#": 3271 + } + }, + [ + { + "#": 3249 + } + ], + [ + { + "#": 3252 + }, + { + "#": 3253 + }, + { + "#": 3254 + }, + { + "#": 3255 + } + ], + { + "x": 475, + "y": 312.72558, + "index": 0, + "body": { + "#": 3249 + }, + "isInternal": false + }, + { + "x": 510, + "y": 312.72558, + "index": 1, + "body": { + "#": 3249 + }, + "isInternal": false + }, + { + "x": 510, + "y": 347.72558, + "index": 2, + "body": { + "#": 3249 + }, + "isInternal": false + }, + { + "x": 475, + "y": 347.72558, + "index": 3, + "body": { + "#": 3249 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 330.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3263 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3265 + }, + "max": { + "#": 3266 + } + }, + { + "x": 475, + "y": 312.72558 + }, + { + "x": 510, + "y": 350.63285 + }, + { + "x": 492.5, + "y": 327.31831 + }, + [ + { + "#": 3269 + }, + { + "#": 3270 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,6,7", + "startCol": 9, + "endCol": 10, + "startRow": 6, + "endRow": 7 + }, + { + "id": 143, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3273 + }, + "angle": 0, + "vertices": { + "#": 3274 + }, + "position": { + "#": 3279 + }, + "force": { + "#": 3280 + }, + "torque": 0, + "positionImpulse": { + "#": 3281 + }, + "constraintImpulse": { + "#": 3282 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3283 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3284 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3285 + }, + "bounds": { + "#": 3287 + }, + "positionPrev": { + "#": 3290 + }, + "anglePrev": 0, + "axes": { + "#": 3291 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3272 + }, + "sleepCounter": 0, + "region": { + "#": 3294 + } + }, + [ + { + "#": 3272 + } + ], + [ + { + "#": 3275 + }, + { + "#": 3276 + }, + { + "#": 3277 + }, + { + "#": 3278 + } + ], + { + "x": 510, + "y": 312.72558, + "index": 0, + "body": { + "#": 3272 + }, + "isInternal": false + }, + { + "x": 545, + "y": 312.72558, + "index": 1, + "body": { + "#": 3272 + }, + "isInternal": false + }, + { + "x": 545, + "y": 347.72558, + "index": 2, + "body": { + "#": 3272 + }, + "isInternal": false + }, + { + "x": 510, + "y": 347.72558, + "index": 3, + "body": { + "#": 3272 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 330.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3286 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3288 + }, + "max": { + "#": 3289 + } + }, + { + "x": 510, + "y": 312.72558 + }, + { + "x": 545, + "y": 350.63285 + }, + { + "x": 527.5, + "y": 327.31831 + }, + [ + { + "#": 3292 + }, + { + "#": 3293 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,6,7", + "startCol": 10, + "endCol": 11, + "startRow": 6, + "endRow": 7 + }, + { + "id": 144, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3296 + }, + "angle": 0, + "vertices": { + "#": 3297 + }, + "position": { + "#": 3302 + }, + "force": { + "#": 3303 + }, + "torque": 0, + "positionImpulse": { + "#": 3304 + }, + "constraintImpulse": { + "#": 3305 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3306 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3307 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3308 + }, + "bounds": { + "#": 3310 + }, + "positionPrev": { + "#": 3313 + }, + "anglePrev": 0, + "axes": { + "#": 3314 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3295 + }, + "sleepCounter": 0, + "region": { + "#": 3317 + } + }, + [ + { + "#": 3295 + } + ], + [ + { + "#": 3298 + }, + { + "#": 3299 + }, + { + "#": 3300 + }, + { + "#": 3301 + } + ], + { + "x": 545, + "y": 312.72558, + "index": 0, + "body": { + "#": 3295 + }, + "isInternal": false + }, + { + "x": 580, + "y": 312.72558, + "index": 1, + "body": { + "#": 3295 + }, + "isInternal": false + }, + { + "x": 580, + "y": 347.72558, + "index": 2, + "body": { + "#": 3295 + }, + "isInternal": false + }, + { + "x": 545, + "y": 347.72558, + "index": 3, + "body": { + "#": 3295 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 330.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3309 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3311 + }, + "max": { + "#": 3312 + } + }, + { + "x": 545, + "y": 312.72558 + }, + { + "x": 580, + "y": 350.63285 + }, + { + "x": 562.5, + "y": 327.31831 + }, + [ + { + "#": 3315 + }, + { + "#": 3316 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,6,7", + "startCol": 11, + "endCol": 12, + "startRow": 6, + "endRow": 7 + }, + { + "id": 145, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3319 + }, + "angle": 0, + "vertices": { + "#": 3320 + }, + "position": { + "#": 3325 + }, + "force": { + "#": 3326 + }, + "torque": 0, + "positionImpulse": { + "#": 3327 + }, + "constraintImpulse": { + "#": 3328 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3329 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3330 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3331 + }, + "bounds": { + "#": 3333 + }, + "positionPrev": { + "#": 3336 + }, + "anglePrev": 0, + "axes": { + "#": 3337 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3318 + }, + "sleepCounter": 0, + "region": { + "#": 3340 + } + }, + [ + { + "#": 3318 + } + ], + [ + { + "#": 3321 + }, + { + "#": 3322 + }, + { + "#": 3323 + }, + { + "#": 3324 + } + ], + { + "x": 580, + "y": 312.72558, + "index": 0, + "body": { + "#": 3318 + }, + "isInternal": false + }, + { + "x": 615, + "y": 312.72558, + "index": 1, + "body": { + "#": 3318 + }, + "isInternal": false + }, + { + "x": 615, + "y": 347.72558, + "index": 2, + "body": { + "#": 3318 + }, + "isInternal": false + }, + { + "x": 580, + "y": 347.72558, + "index": 3, + "body": { + "#": 3318 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 330.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3332 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3334 + }, + "max": { + "#": 3335 + } + }, + { + "x": 580, + "y": 312.72558 + }, + { + "x": 615, + "y": 350.63285 + }, + { + "x": 597.5, + "y": 327.31831 + }, + [ + { + "#": 3338 + }, + { + "#": 3339 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,12,6,7", + "startCol": 12, + "endCol": 12, + "startRow": 6, + "endRow": 7 + }, + { + "id": 146, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3342 + }, + "angle": 0, + "vertices": { + "#": 3343 + }, + "position": { + "#": 3348 + }, + "force": { + "#": 3349 + }, + "torque": 0, + "positionImpulse": { + "#": 3350 + }, + "constraintImpulse": { + "#": 3351 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3352 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3353 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3354 + }, + "bounds": { + "#": 3356 + }, + "positionPrev": { + "#": 3359 + }, + "anglePrev": 0, + "axes": { + "#": 3360 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3341 + }, + "sleepCounter": 0, + "region": { + "#": 3363 + } + }, + [ + { + "#": 3341 + } + ], + [ + { + "#": 3344 + }, + { + "#": 3345 + }, + { + "#": 3346 + }, + { + "#": 3347 + } + ], + { + "x": 615, + "y": 312.72558, + "index": 0, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 650, + "y": 312.72558, + "index": 1, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 650, + "y": 347.72558, + "index": 2, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 615, + "y": 347.72558, + "index": 3, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 330.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3355 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3357 + }, + "max": { + "#": 3358 + } + }, + { + "x": 615, + "y": 312.72558 + }, + { + "x": 650, + "y": 350.63285 + }, + { + "x": 632.5, + "y": 327.31831 + }, + [ + { + "#": 3361 + }, + { + "#": 3362 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,6,7", + "startCol": 12, + "endCol": 13, + "startRow": 6, + "endRow": 7 + }, + { + "id": 147, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3365 + }, + "angle": 0, + "vertices": { + "#": 3366 + }, + "position": { + "#": 3371 + }, + "force": { + "#": 3372 + }, + "torque": 0, + "positionImpulse": { + "#": 3373 + }, + "constraintImpulse": { + "#": 3374 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3375 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3376 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3377 + }, + "bounds": { + "#": 3379 + }, + "positionPrev": { + "#": 3382 + }, + "anglePrev": 0, + "axes": { + "#": 3383 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3364 + }, + "sleepCounter": 0, + "region": { + "#": 3386 + } + }, + [ + { + "#": 3364 + } + ], + [ + { + "#": 3367 + }, + { + "#": 3368 + }, + { + "#": 3369 + }, + { + "#": 3370 + } + ], + { + "x": 650, + "y": 312.72558, + "index": 0, + "body": { + "#": 3364 + }, + "isInternal": false + }, + { + "x": 685, + "y": 312.72558, + "index": 1, + "body": { + "#": 3364 + }, + "isInternal": false + }, + { + "x": 685, + "y": 347.72558, + "index": 2, + "body": { + "#": 3364 + }, + "isInternal": false + }, + { + "x": 650, + "y": 347.72558, + "index": 3, + "body": { + "#": 3364 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 330.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3378 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3380 + }, + "max": { + "#": 3381 + } + }, + { + "x": 650, + "y": 312.72558 + }, + { + "x": 685, + "y": 350.63285 + }, + { + "x": 667.5, + "y": 327.31831 + }, + [ + { + "#": 3384 + }, + { + "#": 3385 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,6,7", + "startCol": 13, + "endCol": 14, + "startRow": 6, + "endRow": 7 + }, + { + "id": 148, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3388 + }, + "angle": 0, + "vertices": { + "#": 3389 + }, + "position": { + "#": 3394 + }, + "force": { + "#": 3395 + }, + "torque": 0, + "positionImpulse": { + "#": 3396 + }, + "constraintImpulse": { + "#": 3397 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3398 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3399 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3400 + }, + "bounds": { + "#": 3402 + }, + "positionPrev": { + "#": 3405 + }, + "anglePrev": 0, + "axes": { + "#": 3406 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3387 + }, + "sleepCounter": 0, + "region": { + "#": 3409 + } + }, + [ + { + "#": 3387 + } + ], + [ + { + "#": 3390 + }, + { + "#": 3391 + }, + { + "#": 3392 + }, + { + "#": 3393 + } + ], + { + "x": 685, + "y": 312.72558, + "index": 0, + "body": { + "#": 3387 + }, + "isInternal": false + }, + { + "x": 720, + "y": 312.72558, + "index": 1, + "body": { + "#": 3387 + }, + "isInternal": false + }, + { + "x": 720, + "y": 347.72558, + "index": 2, + "body": { + "#": 3387 + }, + "isInternal": false + }, + { + "x": 685, + "y": 347.72558, + "index": 3, + "body": { + "#": 3387 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 330.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3401 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3403 + }, + "max": { + "#": 3404 + } + }, + { + "x": 685, + "y": 312.72558 + }, + { + "x": 720, + "y": 350.63285 + }, + { + "x": 702.5, + "y": 327.31831 + }, + [ + { + "#": 3407 + }, + { + "#": 3408 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,6,7", + "startCol": 14, + "endCol": 15, + "startRow": 6, + "endRow": 7 + }, + { + "id": 149, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3411 + }, + "angle": 0, + "vertices": { + "#": 3412 + }, + "position": { + "#": 3417 + }, + "force": { + "#": 3418 + }, + "torque": 0, + "positionImpulse": { + "#": 3419 + }, + "constraintImpulse": { + "#": 3420 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3421 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3422 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3423 + }, + "bounds": { + "#": 3425 + }, + "positionPrev": { + "#": 3428 + }, + "anglePrev": 0, + "axes": { + "#": 3429 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3410 + }, + "sleepCounter": 0, + "region": { + "#": 3432 + } + }, + [ + { + "#": 3410 + } + ], + [ + { + "#": 3413 + }, + { + "#": 3414 + }, + { + "#": 3415 + }, + { + "#": 3416 + } + ], + { + "x": 90, + "y": 347.73575, + "index": 0, + "body": { + "#": 3410 + }, + "isInternal": false + }, + { + "x": 125, + "y": 347.73575, + "index": 1, + "body": { + "#": 3410 + }, + "isInternal": false + }, + { + "x": 125, + "y": 382.73575, + "index": 2, + "body": { + "#": 3410 + }, + "isInternal": false + }, + { + "x": 90, + "y": 382.73575, + "index": 3, + "body": { + "#": 3410 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 365.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3424 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3426 + }, + "max": { + "#": 3427 + } + }, + { + "x": 90, + "y": 347.73575 + }, + { + "x": 125, + "y": 382.73575 + }, + { + "x": 107.5, + "y": 362.32848 + }, + [ + { + "#": 3430 + }, + { + "#": 3431 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "1,2,7,7", + "startCol": 1, + "endCol": 2, + "startRow": 7, + "endRow": 7 + }, + { + "id": 150, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3434 + }, + "angle": 0, + "vertices": { + "#": 3435 + }, + "position": { + "#": 3440 + }, + "force": { + "#": 3441 + }, + "torque": 0, + "positionImpulse": { + "#": 3442 + }, + "constraintImpulse": { + "#": 3443 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3444 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3445 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3446 + }, + "bounds": { + "#": 3448 + }, + "positionPrev": { + "#": 3451 + }, + "anglePrev": 0, + "axes": { + "#": 3452 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3433 + }, + "sleepCounter": 0, + "region": { + "#": 3455 + } + }, + [ + { + "#": 3433 + } + ], + [ + { + "#": 3436 + }, + { + "#": 3437 + }, + { + "#": 3438 + }, + { + "#": 3439 + } + ], + { + "x": 125, + "y": 347.73575, + "index": 0, + "body": { + "#": 3433 + }, + "isInternal": false + }, + { + "x": 160, + "y": 347.73575, + "index": 1, + "body": { + "#": 3433 + }, + "isInternal": false + }, + { + "x": 160, + "y": 382.73575, + "index": 2, + "body": { + "#": 3433 + }, + "isInternal": false + }, + { + "x": 125, + "y": 382.73575, + "index": 3, + "body": { + "#": 3433 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 365.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3447 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3449 + }, + "max": { + "#": 3450 + } + }, + { + "x": 125, + "y": 347.73575 + }, + { + "x": 160, + "y": 382.73575 + }, + { + "x": 142.5, + "y": 362.32848 + }, + [ + { + "#": 3453 + }, + { + "#": 3454 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,7,7", + "startCol": 2, + "endCol": 3, + "startRow": 7, + "endRow": 7 + }, + { + "id": 151, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3457 + }, + "angle": 0, + "vertices": { + "#": 3458 + }, + "position": { + "#": 3463 + }, + "force": { + "#": 3464 + }, + "torque": 0, + "positionImpulse": { + "#": 3465 + }, + "constraintImpulse": { + "#": 3466 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3467 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3468 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3469 + }, + "bounds": { + "#": 3471 + }, + "positionPrev": { + "#": 3474 + }, + "anglePrev": 0, + "axes": { + "#": 3475 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3456 + }, + "sleepCounter": 0, + "region": { + "#": 3478 + } + }, + [ + { + "#": 3456 + } + ], + [ + { + "#": 3459 + }, + { + "#": 3460 + }, + { + "#": 3461 + }, + { + "#": 3462 + } + ], + { + "x": 160, + "y": 347.73575, + "index": 0, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 195, + "y": 347.73575, + "index": 1, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 195, + "y": 382.73575, + "index": 2, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 160, + "y": 382.73575, + "index": 3, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 365.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3470 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3472 + }, + "max": { + "#": 3473 + } + }, + { + "x": 160, + "y": 347.73575 + }, + { + "x": 195, + "y": 382.73575 + }, + { + "x": 177.5, + "y": 362.32848 + }, + [ + { + "#": 3476 + }, + { + "#": 3477 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,7,7", + "startCol": 3, + "endCol": 4, + "startRow": 7, + "endRow": 7 + }, + { + "id": 152, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3480 + }, + "angle": 0, + "vertices": { + "#": 3481 + }, + "position": { + "#": 3486 + }, + "force": { + "#": 3487 + }, + "torque": 0, + "positionImpulse": { + "#": 3488 + }, + "constraintImpulse": { + "#": 3489 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3490 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3491 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3492 + }, + "bounds": { + "#": 3494 + }, + "positionPrev": { + "#": 3497 + }, + "anglePrev": 0, + "axes": { + "#": 3498 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3479 + }, + "sleepCounter": 0, + "region": { + "#": 3501 + } + }, + [ + { + "#": 3479 + } + ], + [ + { + "#": 3482 + }, + { + "#": 3483 + }, + { + "#": 3484 + }, + { + "#": 3485 + } + ], + { + "x": 195, + "y": 347.73575, + "index": 0, + "body": { + "#": 3479 + }, + "isInternal": false + }, + { + "x": 230, + "y": 347.73575, + "index": 1, + "body": { + "#": 3479 + }, + "isInternal": false + }, + { + "x": 230, + "y": 382.73575, + "index": 2, + "body": { + "#": 3479 + }, + "isInternal": false + }, + { + "x": 195, + "y": 382.73575, + "index": 3, + "body": { + "#": 3479 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 365.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3493 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3495 + }, + "max": { + "#": 3496 + } + }, + { + "x": 195, + "y": 347.73575 + }, + { + "x": 230, + "y": 382.73575 + }, + { + "x": 212.5, + "y": 362.32848 + }, + [ + { + "#": 3499 + }, + { + "#": 3500 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,7,7", + "startCol": 4, + "endCol": 4, + "startRow": 7, + "endRow": 7 + }, + { + "id": 153, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3503 + }, + "angle": 0, + "vertices": { + "#": 3504 + }, + "position": { + "#": 3509 + }, + "force": { + "#": 3510 + }, + "torque": 0, + "positionImpulse": { + "#": 3511 + }, + "constraintImpulse": { + "#": 3512 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3513 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3514 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3515 + }, + "bounds": { + "#": 3517 + }, + "positionPrev": { + "#": 3520 + }, + "anglePrev": 0, + "axes": { + "#": 3521 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3502 + }, + "sleepCounter": 0, + "region": { + "#": 3524 + } + }, + [ + { + "#": 3502 + } + ], + [ + { + "#": 3505 + }, + { + "#": 3506 + }, + { + "#": 3507 + }, + { + "#": 3508 + } + ], + { + "x": 230, + "y": 347.73575, + "index": 0, + "body": { + "#": 3502 + }, + "isInternal": false + }, + { + "x": 265, + "y": 347.73575, + "index": 1, + "body": { + "#": 3502 + }, + "isInternal": false + }, + { + "x": 265, + "y": 382.73575, + "index": 2, + "body": { + "#": 3502 + }, + "isInternal": false + }, + { + "x": 230, + "y": 382.73575, + "index": 3, + "body": { + "#": 3502 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 365.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3516 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3518 + }, + "max": { + "#": 3519 + } + }, + { + "x": 230, + "y": 347.73575 + }, + { + "x": 265, + "y": 382.73575 + }, + { + "x": 247.5, + "y": 362.32848 + }, + [ + { + "#": 3522 + }, + { + "#": 3523 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,7,7", + "startCol": 4, + "endCol": 5, + "startRow": 7, + "endRow": 7 + }, + { + "id": 154, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3526 + }, + "angle": 0, + "vertices": { + "#": 3527 + }, + "position": { + "#": 3532 + }, + "force": { + "#": 3533 + }, + "torque": 0, + "positionImpulse": { + "#": 3534 + }, + "constraintImpulse": { + "#": 3535 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3536 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3537 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3538 + }, + "bounds": { + "#": 3540 + }, + "positionPrev": { + "#": 3543 + }, + "anglePrev": 0, + "axes": { + "#": 3544 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3525 + }, + "sleepCounter": 0, + "region": { + "#": 3547 + } + }, + [ + { + "#": 3525 + } + ], + [ + { + "#": 3528 + }, + { + "#": 3529 + }, + { + "#": 3530 + }, + { + "#": 3531 + } + ], + { + "x": 265, + "y": 347.73575, + "index": 0, + "body": { + "#": 3525 + }, + "isInternal": false + }, + { + "x": 300, + "y": 347.73575, + "index": 1, + "body": { + "#": 3525 + }, + "isInternal": false + }, + { + "x": 300, + "y": 382.73575, + "index": 2, + "body": { + "#": 3525 + }, + "isInternal": false + }, + { + "x": 265, + "y": 382.73575, + "index": 3, + "body": { + "#": 3525 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 365.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3539 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3541 + }, + "max": { + "#": 3542 + } + }, + { + "x": 265, + "y": 347.73575 + }, + { + "x": 300, + "y": 382.73575 + }, + { + "x": 282.5, + "y": 362.32848 + }, + [ + { + "#": 3545 + }, + { + "#": 3546 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,7,7", + "startCol": 5, + "endCol": 6, + "startRow": 7, + "endRow": 7 + }, + { + "id": 155, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3549 + }, + "angle": 0, + "vertices": { + "#": 3550 + }, + "position": { + "#": 3555 + }, + "force": { + "#": 3556 + }, + "torque": 0, + "positionImpulse": { + "#": 3557 + }, + "constraintImpulse": { + "#": 3558 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3559 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3560 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3561 + }, + "bounds": { + "#": 3563 + }, + "positionPrev": { + "#": 3566 + }, + "anglePrev": 0, + "axes": { + "#": 3567 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3548 + }, + "sleepCounter": 0, + "region": { + "#": 3570 + } + }, + [ + { + "#": 3548 + } + ], + [ + { + "#": 3551 + }, + { + "#": 3552 + }, + { + "#": 3553 + }, + { + "#": 3554 + } + ], + { + "x": 300, + "y": 347.73575, + "index": 0, + "body": { + "#": 3548 + }, + "isInternal": false + }, + { + "x": 335, + "y": 347.73575, + "index": 1, + "body": { + "#": 3548 + }, + "isInternal": false + }, + { + "x": 335, + "y": 382.73575, + "index": 2, + "body": { + "#": 3548 + }, + "isInternal": false + }, + { + "x": 300, + "y": 382.73575, + "index": 3, + "body": { + "#": 3548 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 365.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3562 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3564 + }, + "max": { + "#": 3565 + } + }, + { + "x": 300, + "y": 347.73575 + }, + { + "x": 335, + "y": 382.73575 + }, + { + "x": 317.5, + "y": 362.32848 + }, + [ + { + "#": 3568 + }, + { + "#": 3569 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,7,7", + "startCol": 6, + "endCol": 6, + "startRow": 7, + "endRow": 7 + }, + { + "id": 156, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3572 + }, + "angle": 0, + "vertices": { + "#": 3573 + }, + "position": { + "#": 3578 + }, + "force": { + "#": 3579 + }, + "torque": 0, + "positionImpulse": { + "#": 3580 + }, + "constraintImpulse": { + "#": 3581 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3582 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3583 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3584 + }, + "bounds": { + "#": 3586 + }, + "positionPrev": { + "#": 3589 + }, + "anglePrev": 0, + "axes": { + "#": 3590 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3571 + }, + "sleepCounter": 0, + "region": { + "#": 3593 + } + }, + [ + { + "#": 3571 + } + ], + [ + { + "#": 3574 + }, + { + "#": 3575 + }, + { + "#": 3576 + }, + { + "#": 3577 + } + ], + { + "x": 335, + "y": 347.73575, + "index": 0, + "body": { + "#": 3571 + }, + "isInternal": false + }, + { + "x": 370, + "y": 347.73575, + "index": 1, + "body": { + "#": 3571 + }, + "isInternal": false + }, + { + "x": 370, + "y": 382.73575, + "index": 2, + "body": { + "#": 3571 + }, + "isInternal": false + }, + { + "x": 335, + "y": 382.73575, + "index": 3, + "body": { + "#": 3571 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 365.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3585 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3587 + }, + "max": { + "#": 3588 + } + }, + { + "x": 335, + "y": 347.73575 + }, + { + "x": 370, + "y": 382.73575 + }, + { + "x": 352.5, + "y": 362.32848 + }, + [ + { + "#": 3591 + }, + { + "#": 3592 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,7,7", + "startCol": 6, + "endCol": 7, + "startRow": 7, + "endRow": 7 + }, + { + "id": 157, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3595 + }, + "angle": 0, + "vertices": { + "#": 3596 + }, + "position": { + "#": 3601 + }, + "force": { + "#": 3602 + }, + "torque": 0, + "positionImpulse": { + "#": 3603 + }, + "constraintImpulse": { + "#": 3604 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3605 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3606 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3607 + }, + "bounds": { + "#": 3609 + }, + "positionPrev": { + "#": 3612 + }, + "anglePrev": 0, + "axes": { + "#": 3613 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3594 + }, + "sleepCounter": 0, + "region": { + "#": 3616 + } + }, + [ + { + "#": 3594 + } + ], + [ + { + "#": 3597 + }, + { + "#": 3598 + }, + { + "#": 3599 + }, + { + "#": 3600 + } + ], + { + "x": 370, + "y": 347.73575, + "index": 0, + "body": { + "#": 3594 + }, + "isInternal": false + }, + { + "x": 405, + "y": 347.73575, + "index": 1, + "body": { + "#": 3594 + }, + "isInternal": false + }, + { + "x": 405, + "y": 382.73575, + "index": 2, + "body": { + "#": 3594 + }, + "isInternal": false + }, + { + "x": 370, + "y": 382.73575, + "index": 3, + "body": { + "#": 3594 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 365.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3608 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3610 + }, + "max": { + "#": 3611 + } + }, + { + "x": 370, + "y": 347.73575 + }, + { + "x": 405, + "y": 382.73575 + }, + { + "x": 387.5, + "y": 362.32848 + }, + [ + { + "#": 3614 + }, + { + "#": 3615 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,7,7", + "startCol": 7, + "endCol": 8, + "startRow": 7, + "endRow": 7 + }, + { + "id": 158, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3618 + }, + "angle": 0, + "vertices": { + "#": 3619 + }, + "position": { + "#": 3624 + }, + "force": { + "#": 3625 + }, + "torque": 0, + "positionImpulse": { + "#": 3626 + }, + "constraintImpulse": { + "#": 3627 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3628 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3629 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3630 + }, + "bounds": { + "#": 3632 + }, + "positionPrev": { + "#": 3635 + }, + "anglePrev": 0, + "axes": { + "#": 3636 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3617 + }, + "sleepCounter": 0, + "region": { + "#": 3639 + } + }, + [ + { + "#": 3617 + } + ], + [ + { + "#": 3620 + }, + { + "#": 3621 + }, + { + "#": 3622 + }, + { + "#": 3623 + } + ], + { + "x": 405, + "y": 347.73575, + "index": 0, + "body": { + "#": 3617 + }, + "isInternal": false + }, + { + "x": 440, + "y": 347.73575, + "index": 1, + "body": { + "#": 3617 + }, + "isInternal": false + }, + { + "x": 440, + "y": 382.73575, + "index": 2, + "body": { + "#": 3617 + }, + "isInternal": false + }, + { + "x": 405, + "y": 382.73575, + "index": 3, + "body": { + "#": 3617 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 365.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3631 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3633 + }, + "max": { + "#": 3634 + } + }, + { + "x": 405, + "y": 347.73575 + }, + { + "x": 440, + "y": 382.73575 + }, + { + "x": 422.5, + "y": 362.32848 + }, + [ + { + "#": 3637 + }, + { + "#": 3638 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,7,7", + "startCol": 8, + "endCol": 9, + "startRow": 7, + "endRow": 7 + }, + { + "id": 159, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3641 + }, + "angle": 0, + "vertices": { + "#": 3642 + }, + "position": { + "#": 3647 + }, + "force": { + "#": 3648 + }, + "torque": 0, + "positionImpulse": { + "#": 3649 + }, + "constraintImpulse": { + "#": 3650 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3651 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3652 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3653 + }, + "bounds": { + "#": 3655 + }, + "positionPrev": { + "#": 3658 + }, + "anglePrev": 0, + "axes": { + "#": 3659 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3640 + }, + "sleepCounter": 0, + "region": { + "#": 3662 + } + }, + [ + { + "#": 3640 + } + ], + [ + { + "#": 3643 + }, + { + "#": 3644 + }, + { + "#": 3645 + }, + { + "#": 3646 + } + ], + { + "x": 440, + "y": 347.73575, + "index": 0, + "body": { + "#": 3640 + }, + "isInternal": false + }, + { + "x": 475, + "y": 347.73575, + "index": 1, + "body": { + "#": 3640 + }, + "isInternal": false + }, + { + "x": 475, + "y": 382.73575, + "index": 2, + "body": { + "#": 3640 + }, + "isInternal": false + }, + { + "x": 440, + "y": 382.73575, + "index": 3, + "body": { + "#": 3640 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 365.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3654 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3656 + }, + "max": { + "#": 3657 + } + }, + { + "x": 440, + "y": 347.73575 + }, + { + "x": 475, + "y": 382.73575 + }, + { + "x": 457.5, + "y": 362.32848 + }, + [ + { + "#": 3660 + }, + { + "#": 3661 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,7,7", + "startCol": 9, + "endCol": 9, + "startRow": 7, + "endRow": 7 + }, + { + "id": 160, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3664 + }, + "angle": 0, + "vertices": { + "#": 3665 + }, + "position": { + "#": 3670 + }, + "force": { + "#": 3671 + }, + "torque": 0, + "positionImpulse": { + "#": 3672 + }, + "constraintImpulse": { + "#": 3673 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3674 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3675 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3676 + }, + "bounds": { + "#": 3678 + }, + "positionPrev": { + "#": 3681 + }, + "anglePrev": 0, + "axes": { + "#": 3682 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3663 + }, + "sleepCounter": 0, + "region": { + "#": 3685 + } + }, + [ + { + "#": 3663 + } + ], + [ + { + "#": 3666 + }, + { + "#": 3667 + }, + { + "#": 3668 + }, + { + "#": 3669 + } + ], + { + "x": 475, + "y": 347.73575, + "index": 0, + "body": { + "#": 3663 + }, + "isInternal": false + }, + { + "x": 510, + "y": 347.73575, + "index": 1, + "body": { + "#": 3663 + }, + "isInternal": false + }, + { + "x": 510, + "y": 382.73575, + "index": 2, + "body": { + "#": 3663 + }, + "isInternal": false + }, + { + "x": 475, + "y": 382.73575, + "index": 3, + "body": { + "#": 3663 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 365.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3677 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3679 + }, + "max": { + "#": 3680 + } + }, + { + "x": 475, + "y": 347.73575 + }, + { + "x": 510, + "y": 382.73575 + }, + { + "x": 492.5, + "y": 362.32848 + }, + [ + { + "#": 3683 + }, + { + "#": 3684 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,7,7", + "startCol": 9, + "endCol": 10, + "startRow": 7, + "endRow": 7 + }, + { + "id": 161, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3687 + }, + "angle": 0, + "vertices": { + "#": 3688 + }, + "position": { + "#": 3693 + }, + "force": { + "#": 3694 + }, + "torque": 0, + "positionImpulse": { + "#": 3695 + }, + "constraintImpulse": { + "#": 3696 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3697 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3698 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3699 + }, + "bounds": { + "#": 3701 + }, + "positionPrev": { + "#": 3704 + }, + "anglePrev": 0, + "axes": { + "#": 3705 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3686 + }, + "sleepCounter": 0, + "region": { + "#": 3708 + } + }, + [ + { + "#": 3686 + } + ], + [ + { + "#": 3689 + }, + { + "#": 3690 + }, + { + "#": 3691 + }, + { + "#": 3692 + } + ], + { + "x": 510, + "y": 347.73575, + "index": 0, + "body": { + "#": 3686 + }, + "isInternal": false + }, + { + "x": 545, + "y": 347.73575, + "index": 1, + "body": { + "#": 3686 + }, + "isInternal": false + }, + { + "x": 545, + "y": 382.73575, + "index": 2, + "body": { + "#": 3686 + }, + "isInternal": false + }, + { + "x": 510, + "y": 382.73575, + "index": 3, + "body": { + "#": 3686 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 365.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3700 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3702 + }, + "max": { + "#": 3703 + } + }, + { + "x": 510, + "y": 347.73575 + }, + { + "x": 545, + "y": 382.73575 + }, + { + "x": 527.5, + "y": 362.32848 + }, + [ + { + "#": 3706 + }, + { + "#": 3707 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,7,7", + "startCol": 10, + "endCol": 11, + "startRow": 7, + "endRow": 7 + }, + { + "id": 162, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3710 + }, + "angle": 0, + "vertices": { + "#": 3711 + }, + "position": { + "#": 3716 + }, + "force": { + "#": 3717 + }, + "torque": 0, + "positionImpulse": { + "#": 3718 + }, + "constraintImpulse": { + "#": 3719 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3720 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3721 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3722 + }, + "bounds": { + "#": 3724 + }, + "positionPrev": { + "#": 3727 + }, + "anglePrev": 0, + "axes": { + "#": 3728 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3709 + }, + "sleepCounter": 0, + "region": { + "#": 3731 + } + }, + [ + { + "#": 3709 + } + ], + [ + { + "#": 3712 + }, + { + "#": 3713 + }, + { + "#": 3714 + }, + { + "#": 3715 + } + ], + { + "x": 545, + "y": 347.73575, + "index": 0, + "body": { + "#": 3709 + }, + "isInternal": false + }, + { + "x": 580, + "y": 347.73575, + "index": 1, + "body": { + "#": 3709 + }, + "isInternal": false + }, + { + "x": 580, + "y": 382.73575, + "index": 2, + "body": { + "#": 3709 + }, + "isInternal": false + }, + { + "x": 545, + "y": 382.73575, + "index": 3, + "body": { + "#": 3709 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 365.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3723 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3725 + }, + "max": { + "#": 3726 + } + }, + { + "x": 545, + "y": 347.73575 + }, + { + "x": 580, + "y": 382.73575 + }, + { + "x": 562.5, + "y": 362.32848 + }, + [ + { + "#": 3729 + }, + { + "#": 3730 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,7,7", + "startCol": 11, + "endCol": 12, + "startRow": 7, + "endRow": 7 + }, + { + "id": 163, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3733 + }, + "angle": 0, + "vertices": { + "#": 3734 + }, + "position": { + "#": 3739 + }, + "force": { + "#": 3740 + }, + "torque": 0, + "positionImpulse": { + "#": 3741 + }, + "constraintImpulse": { + "#": 3742 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3743 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3744 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3745 + }, + "bounds": { + "#": 3747 + }, + "positionPrev": { + "#": 3750 + }, + "anglePrev": 0, + "axes": { + "#": 3751 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3732 + }, + "sleepCounter": 0, + "region": { + "#": 3754 + } + }, + [ + { + "#": 3732 + } + ], + [ + { + "#": 3735 + }, + { + "#": 3736 + }, + { + "#": 3737 + }, + { + "#": 3738 + } + ], + { + "x": 580, + "y": 347.73575, + "index": 0, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 615, + "y": 347.73575, + "index": 1, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 615, + "y": 382.73575, + "index": 2, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 580, + "y": 382.73575, + "index": 3, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 365.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3746 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3748 + }, + "max": { + "#": 3749 + } + }, + { + "x": 580, + "y": 347.73575 + }, + { + "x": 615, + "y": 382.73575 + }, + { + "x": 597.5, + "y": 362.32848 + }, + [ + { + "#": 3752 + }, + { + "#": 3753 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,12,7,7", + "startCol": 12, + "endCol": 12, + "startRow": 7, + "endRow": 7 + }, + { + "id": 164, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3756 + }, + "angle": 0, + "vertices": { + "#": 3757 + }, + "position": { + "#": 3762 + }, + "force": { + "#": 3763 + }, + "torque": 0, + "positionImpulse": { + "#": 3764 + }, + "constraintImpulse": { + "#": 3765 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3766 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3767 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3768 + }, + "bounds": { + "#": 3770 + }, + "positionPrev": { + "#": 3773 + }, + "anglePrev": 0, + "axes": { + "#": 3774 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3755 + }, + "sleepCounter": 0, + "region": { + "#": 3777 + } + }, + [ + { + "#": 3755 + } + ], + [ + { + "#": 3758 + }, + { + "#": 3759 + }, + { + "#": 3760 + }, + { + "#": 3761 + } + ], + { + "x": 615, + "y": 347.73575, + "index": 0, + "body": { + "#": 3755 + }, + "isInternal": false + }, + { + "x": 650, + "y": 347.73575, + "index": 1, + "body": { + "#": 3755 + }, + "isInternal": false + }, + { + "x": 650, + "y": 382.73575, + "index": 2, + "body": { + "#": 3755 + }, + "isInternal": false + }, + { + "x": 615, + "y": 382.73575, + "index": 3, + "body": { + "#": 3755 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 365.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3769 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3771 + }, + "max": { + "#": 3772 + } + }, + { + "x": 615, + "y": 347.73575 + }, + { + "x": 650, + "y": 382.73575 + }, + { + "x": 632.5, + "y": 362.32848 + }, + [ + { + "#": 3775 + }, + { + "#": 3776 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,7,7", + "startCol": 12, + "endCol": 13, + "startRow": 7, + "endRow": 7 + }, + { + "id": 165, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3779 + }, + "angle": 0, + "vertices": { + "#": 3780 + }, + "position": { + "#": 3785 + }, + "force": { + "#": 3786 + }, + "torque": 0, + "positionImpulse": { + "#": 3787 + }, + "constraintImpulse": { + "#": 3788 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3789 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3790 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3791 + }, + "bounds": { + "#": 3793 + }, + "positionPrev": { + "#": 3796 + }, + "anglePrev": 0, + "axes": { + "#": 3797 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3778 + }, + "sleepCounter": 0, + "region": { + "#": 3800 + } + }, + [ + { + "#": 3778 + } + ], + [ + { + "#": 3781 + }, + { + "#": 3782 + }, + { + "#": 3783 + }, + { + "#": 3784 + } + ], + { + "x": 650, + "y": 347.73575, + "index": 0, + "body": { + "#": 3778 + }, + "isInternal": false + }, + { + "x": 685, + "y": 347.73575, + "index": 1, + "body": { + "#": 3778 + }, + "isInternal": false + }, + { + "x": 685, + "y": 382.73575, + "index": 2, + "body": { + "#": 3778 + }, + "isInternal": false + }, + { + "x": 650, + "y": 382.73575, + "index": 3, + "body": { + "#": 3778 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 365.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3792 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3794 + }, + "max": { + "#": 3795 + } + }, + { + "x": 650, + "y": 347.73575 + }, + { + "x": 685, + "y": 382.73575 + }, + { + "x": 667.5, + "y": 362.32848 + }, + [ + { + "#": 3798 + }, + { + "#": 3799 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,7,7", + "startCol": 13, + "endCol": 14, + "startRow": 7, + "endRow": 7 + }, + { + "id": 166, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3802 + }, + "angle": 0, + "vertices": { + "#": 3803 + }, + "position": { + "#": 3808 + }, + "force": { + "#": 3809 + }, + "torque": 0, + "positionImpulse": { + "#": 3810 + }, + "constraintImpulse": { + "#": 3811 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3812 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3813 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3814 + }, + "bounds": { + "#": 3816 + }, + "positionPrev": { + "#": 3819 + }, + "anglePrev": 0, + "axes": { + "#": 3820 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3801 + }, + "sleepCounter": 0, + "region": { + "#": 3823 + } + }, + [ + { + "#": 3801 + } + ], + [ + { + "#": 3804 + }, + { + "#": 3805 + }, + { + "#": 3806 + }, + { + "#": 3807 + } + ], + { + "x": 685, + "y": 347.73575, + "index": 0, + "body": { + "#": 3801 + }, + "isInternal": false + }, + { + "x": 720, + "y": 347.73575, + "index": 1, + "body": { + "#": 3801 + }, + "isInternal": false + }, + { + "x": 720, + "y": 382.73575, + "index": 2, + "body": { + "#": 3801 + }, + "isInternal": false + }, + { + "x": 685, + "y": 382.73575, + "index": 3, + "body": { + "#": 3801 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 365.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3815 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3817 + }, + "max": { + "#": 3818 + } + }, + { + "x": 685, + "y": 347.73575 + }, + { + "x": 720, + "y": 382.73575 + }, + { + "x": 702.5, + "y": 362.32848 + }, + [ + { + "#": 3821 + }, + { + "#": 3822 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,7,7", + "startCol": 14, + "endCol": 15, + "startRow": 7, + "endRow": 7 + }, + { + "id": 167, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3825 + }, + "angle": 0, + "vertices": { + "#": 3826 + }, + "position": { + "#": 3831 + }, + "force": { + "#": 3832 + }, + "torque": 0, + "positionImpulse": { + "#": 3833 + }, + "constraintImpulse": { + "#": 3834 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3835 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3836 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3837 + }, + "bounds": { + "#": 3839 + }, + "positionPrev": { + "#": 3842 + }, + "anglePrev": 0, + "axes": { + "#": 3843 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3824 + }, + "sleepCounter": 0, + "region": { + "#": 3846 + } + }, + [ + { + "#": 3824 + } + ], + [ + { + "#": 3827 + }, + { + "#": 3828 + }, + { + "#": 3829 + }, + { + "#": 3830 + } + ], + { + "x": 90, + "y": 378.12184, + "index": 0, + "body": { + "#": 3824 + }, + "isInternal": false + }, + { + "x": 125, + "y": 378.12184, + "index": 1, + "body": { + "#": 3824 + }, + "isInternal": false + }, + { + "x": 125, + "y": 413.12184, + "index": 2, + "body": { + "#": 3824 + }, + "isInternal": false + }, + { + "x": 90, + "y": 413.12184, + "index": 3, + "body": { + "#": 3824 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 395.62184 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.55191 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3838 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3840 + }, + "max": { + "#": 3841 + } + }, + { + "x": 90, + "y": 378.12184 + }, + { + "x": 125, + "y": 416.02911 + }, + { + "x": 107.5, + "y": 394.20488 + }, + [ + { + "#": 3844 + }, + { + "#": 3845 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "1,2,7,8", + "startCol": 1, + "endCol": 2, + "startRow": 7, + "endRow": 8 + }, + { + "id": 168, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3848 + }, + "angle": 0, + "vertices": { + "#": 3849 + }, + "position": { + "#": 3854 + }, + "force": { + "#": 3855 + }, + "torque": 0, + "positionImpulse": { + "#": 3856 + }, + "constraintImpulse": { + "#": 3857 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3858 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3859 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3860 + }, + "bounds": { + "#": 3862 + }, + "positionPrev": { + "#": 3865 + }, + "anglePrev": 0, + "axes": { + "#": 3866 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3847 + }, + "sleepCounter": 0, + "region": { + "#": 3869 + } + }, + [ + { + "#": 3847 + } + ], + [ + { + "#": 3850 + }, + { + "#": 3851 + }, + { + "#": 3852 + }, + { + "#": 3853 + } + ], + { + "x": 125, + "y": 378.12184, + "index": 0, + "body": { + "#": 3847 + }, + "isInternal": false + }, + { + "x": 160, + "y": 378.12184, + "index": 1, + "body": { + "#": 3847 + }, + "isInternal": false + }, + { + "x": 160, + "y": 413.12184, + "index": 2, + "body": { + "#": 3847 + }, + "isInternal": false + }, + { + "x": 125, + "y": 413.12184, + "index": 3, + "body": { + "#": 3847 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 395.62184 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.55191 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3861 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3863 + }, + "max": { + "#": 3864 + } + }, + { + "x": 125, + "y": 378.12184 + }, + { + "x": 160, + "y": 416.02911 + }, + { + "x": 142.5, + "y": 394.20488 + }, + [ + { + "#": 3867 + }, + { + "#": 3868 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,7,8", + "startCol": 2, + "endCol": 3, + "startRow": 7, + "endRow": 8 + }, + { + "id": 169, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3871 + }, + "angle": 0, + "vertices": { + "#": 3872 + }, + "position": { + "#": 3877 + }, + "force": { + "#": 3878 + }, + "torque": 0, + "positionImpulse": { + "#": 3879 + }, + "constraintImpulse": { + "#": 3880 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3881 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3882 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3883 + }, + "bounds": { + "#": 3885 + }, + "positionPrev": { + "#": 3888 + }, + "anglePrev": 0, + "axes": { + "#": 3889 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3870 + }, + "sleepCounter": 0, + "region": { + "#": 3892 + } + }, + [ + { + "#": 3870 + } + ], + [ + { + "#": 3873 + }, + { + "#": 3874 + }, + { + "#": 3875 + }, + { + "#": 3876 + } + ], + { + "x": 160, + "y": 378.12184, + "index": 0, + "body": { + "#": 3870 + }, + "isInternal": false + }, + { + "x": 195, + "y": 378.12184, + "index": 1, + "body": { + "#": 3870 + }, + "isInternal": false + }, + { + "x": 195, + "y": 413.12184, + "index": 2, + "body": { + "#": 3870 + }, + "isInternal": false + }, + { + "x": 160, + "y": 413.12184, + "index": 3, + "body": { + "#": 3870 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 395.62184 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.55191 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3884 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3886 + }, + "max": { + "#": 3887 + } + }, + { + "x": 160, + "y": 378.12184 + }, + { + "x": 195, + "y": 416.02911 + }, + { + "x": 177.5, + "y": 394.20488 + }, + [ + { + "#": 3890 + }, + { + "#": 3891 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,7,8", + "startCol": 3, + "endCol": 4, + "startRow": 7, + "endRow": 8 + }, + { + "id": 170, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3894 + }, + "angle": 0, + "vertices": { + "#": 3895 + }, + "position": { + "#": 3900 + }, + "force": { + "#": 3901 + }, + "torque": 0, + "positionImpulse": { + "#": 3902 + }, + "constraintImpulse": { + "#": 3903 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3904 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3905 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3906 + }, + "bounds": { + "#": 3908 + }, + "positionPrev": { + "#": 3911 + }, + "anglePrev": 0, + "axes": { + "#": 3912 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3893 + }, + "sleepCounter": 0, + "region": { + "#": 3915 + } + }, + [ + { + "#": 3893 + } + ], + [ + { + "#": 3896 + }, + { + "#": 3897 + }, + { + "#": 3898 + }, + { + "#": 3899 + } + ], + { + "x": 195, + "y": 378.12184, + "index": 0, + "body": { + "#": 3893 + }, + "isInternal": false + }, + { + "x": 230, + "y": 378.12184, + "index": 1, + "body": { + "#": 3893 + }, + "isInternal": false + }, + { + "x": 230, + "y": 413.12184, + "index": 2, + "body": { + "#": 3893 + }, + "isInternal": false + }, + { + "x": 195, + "y": 413.12184, + "index": 3, + "body": { + "#": 3893 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 395.62184 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.55191 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3907 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3909 + }, + "max": { + "#": 3910 + } + }, + { + "x": 195, + "y": 378.12184 + }, + { + "x": 230, + "y": 416.02911 + }, + { + "x": 212.5, + "y": 394.20488 + }, + [ + { + "#": 3913 + }, + { + "#": 3914 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,7,8", + "startCol": 4, + "endCol": 4, + "startRow": 7, + "endRow": 8 + }, + { + "id": 171, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3917 + }, + "angle": 0, + "vertices": { + "#": 3918 + }, + "position": { + "#": 3923 + }, + "force": { + "#": 3924 + }, + "torque": 0, + "positionImpulse": { + "#": 3925 + }, + "constraintImpulse": { + "#": 3926 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3927 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3928 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3929 + }, + "bounds": { + "#": 3931 + }, + "positionPrev": { + "#": 3934 + }, + "anglePrev": 0, + "axes": { + "#": 3935 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3916 + }, + "sleepCounter": 0, + "region": { + "#": 3938 + } + }, + [ + { + "#": 3916 + } + ], + [ + { + "#": 3919 + }, + { + "#": 3920 + }, + { + "#": 3921 + }, + { + "#": 3922 + } + ], + { + "x": 230, + "y": 378.12184, + "index": 0, + "body": { + "#": 3916 + }, + "isInternal": false + }, + { + "x": 265, + "y": 378.12184, + "index": 1, + "body": { + "#": 3916 + }, + "isInternal": false + }, + { + "x": 265, + "y": 413.12184, + "index": 2, + "body": { + "#": 3916 + }, + "isInternal": false + }, + { + "x": 230, + "y": 413.12184, + "index": 3, + "body": { + "#": 3916 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 395.62184 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.55191 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3930 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3932 + }, + "max": { + "#": 3933 + } + }, + { + "x": 230, + "y": 378.12184 + }, + { + "x": 265, + "y": 416.02911 + }, + { + "x": 247.5, + "y": 394.20488 + }, + [ + { + "#": 3936 + }, + { + "#": 3937 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,7,8", + "startCol": 4, + "endCol": 5, + "startRow": 7, + "endRow": 8 + }, + { + "id": 172, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3940 + }, + "angle": 0, + "vertices": { + "#": 3941 + }, + "position": { + "#": 3946 + }, + "force": { + "#": 3947 + }, + "torque": 0, + "positionImpulse": { + "#": 3948 + }, + "constraintImpulse": { + "#": 3949 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3950 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3951 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3952 + }, + "bounds": { + "#": 3954 + }, + "positionPrev": { + "#": 3957 + }, + "anglePrev": 0, + "axes": { + "#": 3958 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3939 + }, + "sleepCounter": 0, + "region": { + "#": 3961 + } + }, + [ + { + "#": 3939 + } + ], + [ + { + "#": 3942 + }, + { + "#": 3943 + }, + { + "#": 3944 + }, + { + "#": 3945 + } + ], + { + "x": 265, + "y": 378.12184, + "index": 0, + "body": { + "#": 3939 + }, + "isInternal": false + }, + { + "x": 300, + "y": 378.12184, + "index": 1, + "body": { + "#": 3939 + }, + "isInternal": false + }, + { + "x": 300, + "y": 413.12184, + "index": 2, + "body": { + "#": 3939 + }, + "isInternal": false + }, + { + "x": 265, + "y": 413.12184, + "index": 3, + "body": { + "#": 3939 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 395.62184 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.55191 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3953 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3955 + }, + "max": { + "#": 3956 + } + }, + { + "x": 265, + "y": 378.12184 + }, + { + "x": 300, + "y": 416.02911 + }, + { + "x": 282.5, + "y": 394.20488 + }, + [ + { + "#": 3959 + }, + { + "#": 3960 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,7,8", + "startCol": 5, + "endCol": 6, + "startRow": 7, + "endRow": 8 + }, + { + "id": 173, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3963 + }, + "angle": 0, + "vertices": { + "#": 3964 + }, + "position": { + "#": 3969 + }, + "force": { + "#": 3970 + }, + "torque": 0, + "positionImpulse": { + "#": 3971 + }, + "constraintImpulse": { + "#": 3972 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3973 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3974 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3975 + }, + "bounds": { + "#": 3977 + }, + "positionPrev": { + "#": 3980 + }, + "anglePrev": 0, + "axes": { + "#": 3981 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3962 + }, + "sleepCounter": 0, + "region": { + "#": 3984 + } + }, + [ + { + "#": 3962 + } + ], + [ + { + "#": 3965 + }, + { + "#": 3966 + }, + { + "#": 3967 + }, + { + "#": 3968 + } + ], + { + "x": 300, + "y": 378.12184, + "index": 0, + "body": { + "#": 3962 + }, + "isInternal": false + }, + { + "x": 335, + "y": 378.12184, + "index": 1, + "body": { + "#": 3962 + }, + "isInternal": false + }, + { + "x": 335, + "y": 413.12184, + "index": 2, + "body": { + "#": 3962 + }, + "isInternal": false + }, + { + "x": 300, + "y": 413.12184, + "index": 3, + "body": { + "#": 3962 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 395.62184 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.55191 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3976 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3978 + }, + "max": { + "#": 3979 + } + }, + { + "x": 300, + "y": 378.12184 + }, + { + "x": 335, + "y": 416.02911 + }, + { + "x": 317.5, + "y": 394.20488 + }, + [ + { + "#": 3982 + }, + { + "#": 3983 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,7,8", + "startCol": 6, + "endCol": 6, + "startRow": 7, + "endRow": 8 + }, + { + "id": 174, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3986 + }, + "angle": 0, + "vertices": { + "#": 3987 + }, + "position": { + "#": 3992 + }, + "force": { + "#": 3993 + }, + "torque": 0, + "positionImpulse": { + "#": 3994 + }, + "constraintImpulse": { + "#": 3995 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3996 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3997 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3998 + }, + "bounds": { + "#": 4000 + }, + "positionPrev": { + "#": 4003 + }, + "anglePrev": 0, + "axes": { + "#": 4004 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 3985 + }, + "sleepCounter": 0, + "region": { + "#": 4007 + } + }, + [ + { + "#": 3985 + } + ], + [ + { + "#": 3988 + }, + { + "#": 3989 + }, + { + "#": 3990 + }, + { + "#": 3991 + } + ], + { + "x": 335, + "y": 378.12184, + "index": 0, + "body": { + "#": 3985 + }, + "isInternal": false + }, + { + "x": 370, + "y": 378.12184, + "index": 1, + "body": { + "#": 3985 + }, + "isInternal": false + }, + { + "x": 370, + "y": 413.12184, + "index": 2, + "body": { + "#": 3985 + }, + "isInternal": false + }, + { + "x": 335, + "y": 413.12184, + "index": 3, + "body": { + "#": 3985 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 395.62184 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.55191 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3999 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4001 + }, + "max": { + "#": 4002 + } + }, + { + "x": 335, + "y": 378.12184 + }, + { + "x": 370, + "y": 416.02911 + }, + { + "x": 352.5, + "y": 394.20488 + }, + [ + { + "#": 4005 + }, + { + "#": 4006 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,7,8", + "startCol": 6, + "endCol": 7, + "startRow": 7, + "endRow": 8 + }, + { + "id": 175, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4009 + }, + "angle": 0, + "vertices": { + "#": 4010 + }, + "position": { + "#": 4015 + }, + "force": { + "#": 4016 + }, + "torque": 0, + "positionImpulse": { + "#": 4017 + }, + "constraintImpulse": { + "#": 4018 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4019 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4020 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4021 + }, + "bounds": { + "#": 4023 + }, + "positionPrev": { + "#": 4026 + }, + "anglePrev": 0, + "axes": { + "#": 4027 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4008 + }, + "sleepCounter": 0, + "region": { + "#": 4030 + } + }, + [ + { + "#": 4008 + } + ], + [ + { + "#": 4011 + }, + { + "#": 4012 + }, + { + "#": 4013 + }, + { + "#": 4014 + } + ], + { + "x": 370, + "y": 378.12184, + "index": 0, + "body": { + "#": 4008 + }, + "isInternal": false + }, + { + "x": 405, + "y": 378.12184, + "index": 1, + "body": { + "#": 4008 + }, + "isInternal": false + }, + { + "x": 405, + "y": 413.12184, + "index": 2, + "body": { + "#": 4008 + }, + "isInternal": false + }, + { + "x": 370, + "y": 413.12184, + "index": 3, + "body": { + "#": 4008 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 395.62184 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.55191 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4022 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4024 + }, + "max": { + "#": 4025 + } + }, + { + "x": 370, + "y": 378.12184 + }, + { + "x": 405, + "y": 416.02911 + }, + { + "x": 387.5, + "y": 394.20488 + }, + [ + { + "#": 4028 + }, + { + "#": 4029 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,7,8", + "startCol": 7, + "endCol": 8, + "startRow": 7, + "endRow": 8 + }, + { + "id": 176, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4032 + }, + "angle": 0, + "vertices": { + "#": 4033 + }, + "position": { + "#": 4038 + }, + "force": { + "#": 4039 + }, + "torque": 0, + "positionImpulse": { + "#": 4040 + }, + "constraintImpulse": { + "#": 4041 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4042 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4043 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4044 + }, + "bounds": { + "#": 4046 + }, + "positionPrev": { + "#": 4049 + }, + "anglePrev": 0, + "axes": { + "#": 4050 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4031 + }, + "sleepCounter": 0, + "region": { + "#": 4053 + } + }, + [ + { + "#": 4031 + } + ], + [ + { + "#": 4034 + }, + { + "#": 4035 + }, + { + "#": 4036 + }, + { + "#": 4037 + } + ], + { + "x": 405, + "y": 378.12184, + "index": 0, + "body": { + "#": 4031 + }, + "isInternal": false + }, + { + "x": 440, + "y": 378.12184, + "index": 1, + "body": { + "#": 4031 + }, + "isInternal": false + }, + { + "x": 440, + "y": 413.12184, + "index": 2, + "body": { + "#": 4031 + }, + "isInternal": false + }, + { + "x": 405, + "y": 413.12184, + "index": 3, + "body": { + "#": 4031 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 395.62184 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.55191 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4045 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4047 + }, + "max": { + "#": 4048 + } + }, + { + "x": 405, + "y": 378.12184 + }, + { + "x": 440, + "y": 416.02911 + }, + { + "x": 422.5, + "y": 394.20488 + }, + [ + { + "#": 4051 + }, + { + "#": 4052 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,7,8", + "startCol": 8, + "endCol": 9, + "startRow": 7, + "endRow": 8 + }, + { + "id": 177, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4055 + }, + "angle": 0, + "vertices": { + "#": 4056 + }, + "position": { + "#": 4061 + }, + "force": { + "#": 4062 + }, + "torque": 0, + "positionImpulse": { + "#": 4063 + }, + "constraintImpulse": { + "#": 4064 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4065 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4066 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4067 + }, + "bounds": { + "#": 4069 + }, + "positionPrev": { + "#": 4072 + }, + "anglePrev": 0, + "axes": { + "#": 4073 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4054 + }, + "sleepCounter": 0, + "region": { + "#": 4076 + } + }, + [ + { + "#": 4054 + } + ], + [ + { + "#": 4057 + }, + { + "#": 4058 + }, + { + "#": 4059 + }, + { + "#": 4060 + } + ], + { + "x": 440, + "y": 378.12184, + "index": 0, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 475, + "y": 378.12184, + "index": 1, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 475, + "y": 413.12184, + "index": 2, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 440, + "y": 413.12184, + "index": 3, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 395.62184 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.55191 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4068 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4070 + }, + "max": { + "#": 4071 + } + }, + { + "x": 440, + "y": 378.12184 + }, + { + "x": 475, + "y": 416.02911 + }, + { + "x": 457.5, + "y": 394.20488 + }, + [ + { + "#": 4074 + }, + { + "#": 4075 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,7,8", + "startCol": 9, + "endCol": 9, + "startRow": 7, + "endRow": 8 + }, + { + "id": 178, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4078 + }, + "angle": 0, + "vertices": { + "#": 4079 + }, + "position": { + "#": 4084 + }, + "force": { + "#": 4085 + }, + "torque": 0, + "positionImpulse": { + "#": 4086 + }, + "constraintImpulse": { + "#": 4087 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4088 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4089 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4090 + }, + "bounds": { + "#": 4092 + }, + "positionPrev": { + "#": 4095 + }, + "anglePrev": 0, + "axes": { + "#": 4096 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4077 + }, + "sleepCounter": 0, + "region": { + "#": 4099 + } + }, + [ + { + "#": 4077 + } + ], + [ + { + "#": 4080 + }, + { + "#": 4081 + }, + { + "#": 4082 + }, + { + "#": 4083 + } + ], + { + "x": 475, + "y": 378.12184, + "index": 0, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 510, + "y": 378.12184, + "index": 1, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 510, + "y": 413.12184, + "index": 2, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 475, + "y": 413.12184, + "index": 3, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 395.62184 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.55191 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4091 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4093 + }, + "max": { + "#": 4094 + } + }, + { + "x": 475, + "y": 378.12184 + }, + { + "x": 510, + "y": 416.02911 + }, + { + "x": 492.5, + "y": 394.20488 + }, + [ + { + "#": 4097 + }, + { + "#": 4098 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,7,8", + "startCol": 9, + "endCol": 10, + "startRow": 7, + "endRow": 8 + }, + { + "id": 179, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4101 + }, + "angle": 0, + "vertices": { + "#": 4102 + }, + "position": { + "#": 4107 + }, + "force": { + "#": 4108 + }, + "torque": 0, + "positionImpulse": { + "#": 4109 + }, + "constraintImpulse": { + "#": 4110 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4111 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4112 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4113 + }, + "bounds": { + "#": 4115 + }, + "positionPrev": { + "#": 4118 + }, + "anglePrev": 0, + "axes": { + "#": 4119 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4100 + }, + "sleepCounter": 0, + "region": { + "#": 4122 + } + }, + [ + { + "#": 4100 + } + ], + [ + { + "#": 4103 + }, + { + "#": 4104 + }, + { + "#": 4105 + }, + { + "#": 4106 + } + ], + { + "x": 510, + "y": 378.12184, + "index": 0, + "body": { + "#": 4100 + }, + "isInternal": false + }, + { + "x": 545, + "y": 378.12184, + "index": 1, + "body": { + "#": 4100 + }, + "isInternal": false + }, + { + "x": 545, + "y": 413.12184, + "index": 2, + "body": { + "#": 4100 + }, + "isInternal": false + }, + { + "x": 510, + "y": 413.12184, + "index": 3, + "body": { + "#": 4100 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 395.62184 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.55191 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4114 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4116 + }, + "max": { + "#": 4117 + } + }, + { + "x": 510, + "y": 378.12184 + }, + { + "x": 545, + "y": 416.02911 + }, + { + "x": 527.5, + "y": 394.20488 + }, + [ + { + "#": 4120 + }, + { + "#": 4121 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,7,8", + "startCol": 10, + "endCol": 11, + "startRow": 7, + "endRow": 8 + }, + { + "id": 180, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4124 + }, + "angle": 0, + "vertices": { + "#": 4125 + }, + "position": { + "#": 4130 + }, + "force": { + "#": 4131 + }, + "torque": 0, + "positionImpulse": { + "#": 4132 + }, + "constraintImpulse": { + "#": 4133 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4134 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4135 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4136 + }, + "bounds": { + "#": 4138 + }, + "positionPrev": { + "#": 4141 + }, + "anglePrev": 0, + "axes": { + "#": 4142 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4123 + }, + "sleepCounter": 0, + "region": { + "#": 4145 + } + }, + [ + { + "#": 4123 + } + ], + [ + { + "#": 4126 + }, + { + "#": 4127 + }, + { + "#": 4128 + }, + { + "#": 4129 + } + ], + { + "x": 545, + "y": 378.12184, + "index": 0, + "body": { + "#": 4123 + }, + "isInternal": false + }, + { + "x": 580, + "y": 378.12184, + "index": 1, + "body": { + "#": 4123 + }, + "isInternal": false + }, + { + "x": 580, + "y": 413.12184, + "index": 2, + "body": { + "#": 4123 + }, + "isInternal": false + }, + { + "x": 545, + "y": 413.12184, + "index": 3, + "body": { + "#": 4123 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 395.62184 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.55191 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4137 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4139 + }, + "max": { + "#": 4140 + } + }, + { + "x": 545, + "y": 378.12184 + }, + { + "x": 580, + "y": 416.02911 + }, + { + "x": 562.5, + "y": 394.20488 + }, + [ + { + "#": 4143 + }, + { + "#": 4144 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,7,8", + "startCol": 11, + "endCol": 12, + "startRow": 7, + "endRow": 8 + }, + { + "id": 181, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4147 + }, + "angle": 0, + "vertices": { + "#": 4148 + }, + "position": { + "#": 4153 + }, + "force": { + "#": 4154 + }, + "torque": 0, + "positionImpulse": { + "#": 4155 + }, + "constraintImpulse": { + "#": 4156 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4157 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4158 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4159 + }, + "bounds": { + "#": 4161 + }, + "positionPrev": { + "#": 4164 + }, + "anglePrev": 0, + "axes": { + "#": 4165 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4146 + }, + "sleepCounter": 0, + "region": { + "#": 4168 + } + }, + [ + { + "#": 4146 + } + ], + [ + { + "#": 4149 + }, + { + "#": 4150 + }, + { + "#": 4151 + }, + { + "#": 4152 + } + ], + { + "x": 580, + "y": 378.12184, + "index": 0, + "body": { + "#": 4146 + }, + "isInternal": false + }, + { + "x": 615, + "y": 378.12184, + "index": 1, + "body": { + "#": 4146 + }, + "isInternal": false + }, + { + "x": 615, + "y": 413.12184, + "index": 2, + "body": { + "#": 4146 + }, + "isInternal": false + }, + { + "x": 580, + "y": 413.12184, + "index": 3, + "body": { + "#": 4146 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 395.62184 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.55191 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4160 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4162 + }, + "max": { + "#": 4163 + } + }, + { + "x": 580, + "y": 378.12184 + }, + { + "x": 615, + "y": 416.02911 + }, + { + "x": 597.5, + "y": 394.20488 + }, + [ + { + "#": 4166 + }, + { + "#": 4167 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,12,7,8", + "startCol": 12, + "endCol": 12, + "startRow": 7, + "endRow": 8 + }, + { + "id": 182, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4170 + }, + "angle": 0, + "vertices": { + "#": 4171 + }, + "position": { + "#": 4176 + }, + "force": { + "#": 4177 + }, + "torque": 0, + "positionImpulse": { + "#": 4178 + }, + "constraintImpulse": { + "#": 4179 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4180 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4181 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4182 + }, + "bounds": { + "#": 4184 + }, + "positionPrev": { + "#": 4187 + }, + "anglePrev": 0, + "axes": { + "#": 4188 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4169 + }, + "sleepCounter": 0, + "region": { + "#": 4191 + } + }, + [ + { + "#": 4169 + } + ], + [ + { + "#": 4172 + }, + { + "#": 4173 + }, + { + "#": 4174 + }, + { + "#": 4175 + } + ], + { + "x": 615, + "y": 378.12184, + "index": 0, + "body": { + "#": 4169 + }, + "isInternal": false + }, + { + "x": 650, + "y": 378.12184, + "index": 1, + "body": { + "#": 4169 + }, + "isInternal": false + }, + { + "x": 650, + "y": 413.12184, + "index": 2, + "body": { + "#": 4169 + }, + "isInternal": false + }, + { + "x": 615, + "y": 413.12184, + "index": 3, + "body": { + "#": 4169 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 395.62184 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.55191 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4183 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4185 + }, + "max": { + "#": 4186 + } + }, + { + "x": 615, + "y": 378.12184 + }, + { + "x": 650, + "y": 416.02911 + }, + { + "x": 632.5, + "y": 394.20488 + }, + [ + { + "#": 4189 + }, + { + "#": 4190 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,7,8", + "startCol": 12, + "endCol": 13, + "startRow": 7, + "endRow": 8 + }, + { + "id": 183, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4193 + }, + "angle": 0, + "vertices": { + "#": 4194 + }, + "position": { + "#": 4199 + }, + "force": { + "#": 4200 + }, + "torque": 0, + "positionImpulse": { + "#": 4201 + }, + "constraintImpulse": { + "#": 4202 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4203 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4204 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4205 + }, + "bounds": { + "#": 4207 + }, + "positionPrev": { + "#": 4210 + }, + "anglePrev": 0, + "axes": { + "#": 4211 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4192 + }, + "sleepCounter": 0, + "region": { + "#": 4214 + } + }, + [ + { + "#": 4192 + } + ], + [ + { + "#": 4195 + }, + { + "#": 4196 + }, + { + "#": 4197 + }, + { + "#": 4198 + } + ], + { + "x": 650, + "y": 378.12184, + "index": 0, + "body": { + "#": 4192 + }, + "isInternal": false + }, + { + "x": 685, + "y": 378.12184, + "index": 1, + "body": { + "#": 4192 + }, + "isInternal": false + }, + { + "x": 685, + "y": 413.12184, + "index": 2, + "body": { + "#": 4192 + }, + "isInternal": false + }, + { + "x": 650, + "y": 413.12184, + "index": 3, + "body": { + "#": 4192 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 395.62184 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.55191 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4206 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4208 + }, + "max": { + "#": 4209 + } + }, + { + "x": 650, + "y": 378.12184 + }, + { + "x": 685, + "y": 416.02911 + }, + { + "x": 667.5, + "y": 394.20488 + }, + [ + { + "#": 4212 + }, + { + "#": 4213 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,7,8", + "startCol": 13, + "endCol": 14, + "startRow": 7, + "endRow": 8 + }, + { + "id": 184, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4216 + }, + "angle": 0, + "vertices": { + "#": 4217 + }, + "position": { + "#": 4222 + }, + "force": { + "#": 4223 + }, + "torque": 0, + "positionImpulse": { + "#": 4224 + }, + "constraintImpulse": { + "#": 4225 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4226 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4227 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4228 + }, + "bounds": { + "#": 4230 + }, + "positionPrev": { + "#": 4233 + }, + "anglePrev": 0, + "axes": { + "#": 4234 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4215 + }, + "sleepCounter": 0, + "region": { + "#": 4237 + } + }, + [ + { + "#": 4215 + } + ], + [ + { + "#": 4218 + }, + { + "#": 4219 + }, + { + "#": 4220 + }, + { + "#": 4221 + } + ], + { + "x": 685, + "y": 378.12184, + "index": 0, + "body": { + "#": 4215 + }, + "isInternal": false + }, + { + "x": 720, + "y": 378.12184, + "index": 1, + "body": { + "#": 4215 + }, + "isInternal": false + }, + { + "x": 720, + "y": 413.12184, + "index": 2, + "body": { + "#": 4215 + }, + "isInternal": false + }, + { + "x": 685, + "y": 413.12184, + "index": 3, + "body": { + "#": 4215 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 395.62184 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.55191 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4229 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4231 + }, + "max": { + "#": 4232 + } + }, + { + "x": 685, + "y": 378.12184 + }, + { + "x": 720, + "y": 416.02911 + }, + { + "x": 702.5, + "y": 394.20488 + }, + [ + { + "#": 4235 + }, + { + "#": 4236 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,7,8", + "startCol": 14, + "endCol": 15, + "startRow": 7, + "endRow": 8 + }, + { + "id": 185, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4239 + }, + "angle": 0, + "vertices": { + "#": 4240 + }, + "position": { + "#": 4245 + }, + "force": { + "#": 4246 + }, + "torque": 0, + "positionImpulse": { + "#": 4247 + }, + "constraintImpulse": { + "#": 4248 + }, + "totalContacts": 0, + "speed": 1.46386, + "angularSpeed": 0, + "velocity": { + "#": 4249 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4250 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4251 + }, + "bounds": { + "#": 4253 + }, + "positionPrev": { + "#": 4256 + }, + "anglePrev": 0, + "axes": { + "#": 4257 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4238 + }, + "sleepCounter": 0, + "region": { + "#": 4260 + } + }, + [ + { + "#": 4238 + } + ], + [ + { + "#": 4241 + }, + { + "#": 4242 + }, + { + "#": 4243 + }, + { + "#": 4244 + } + ], + { + "x": 90, + "y": 412.63004, + "index": 0, + "body": { + "#": 4238 + }, + "isInternal": false + }, + { + "x": 125, + "y": 412.63004, + "index": 1, + "body": { + "#": 4238 + }, + "isInternal": false + }, + { + "x": 125, + "y": 447.63004, + "index": 2, + "body": { + "#": 4238 + }, + "isInternal": false + }, + { + "x": 90, + "y": 447.63004, + "index": 3, + "body": { + "#": 4238 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 430.13004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.47037 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.18079 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4252 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4254 + }, + "max": { + "#": 4255 + } + }, + { + "x": 90, + "y": 412.63004 + }, + { + "x": 125, + "y": 449.0939 + }, + { + "x": 107.5, + "y": 428.8143 + }, + [ + { + "#": 4258 + }, + { + "#": 4259 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "1,2,8,9", + "startCol": 1, + "endCol": 2, + "startRow": 8, + "endRow": 9 + }, + { + "id": 186, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4262 + }, + "angle": 0, + "vertices": { + "#": 4263 + }, + "position": { + "#": 4268 + }, + "force": { + "#": 4269 + }, + "torque": 0, + "positionImpulse": { + "#": 4270 + }, + "constraintImpulse": { + "#": 4271 + }, + "totalContacts": 0, + "speed": 1.46386, + "angularSpeed": 0, + "velocity": { + "#": 4272 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4273 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4274 + }, + "bounds": { + "#": 4276 + }, + "positionPrev": { + "#": 4279 + }, + "anglePrev": 0, + "axes": { + "#": 4280 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4261 + }, + "sleepCounter": 0, + "region": { + "#": 4283 + } + }, + [ + { + "#": 4261 + } + ], + [ + { + "#": 4264 + }, + { + "#": 4265 + }, + { + "#": 4266 + }, + { + "#": 4267 + } + ], + { + "x": 125, + "y": 412.63004, + "index": 0, + "body": { + "#": 4261 + }, + "isInternal": false + }, + { + "x": 160, + "y": 412.63004, + "index": 1, + "body": { + "#": 4261 + }, + "isInternal": false + }, + { + "x": 160, + "y": 447.63004, + "index": 2, + "body": { + "#": 4261 + }, + "isInternal": false + }, + { + "x": 125, + "y": 447.63004, + "index": 3, + "body": { + "#": 4261 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 430.13004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.47037 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.18079 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4275 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4277 + }, + "max": { + "#": 4278 + } + }, + { + "x": 125, + "y": 412.63004 + }, + { + "x": 160, + "y": 449.0939 + }, + { + "x": 142.5, + "y": 428.8143 + }, + [ + { + "#": 4281 + }, + { + "#": 4282 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,8,9", + "startCol": 2, + "endCol": 3, + "startRow": 8, + "endRow": 9 + }, + { + "id": 187, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4285 + }, + "angle": 0, + "vertices": { + "#": 4286 + }, + "position": { + "#": 4291 + }, + "force": { + "#": 4292 + }, + "torque": 0, + "positionImpulse": { + "#": 4293 + }, + "constraintImpulse": { + "#": 4294 + }, + "totalContacts": 0, + "speed": 1.46386, + "angularSpeed": 0, + "velocity": { + "#": 4295 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4296 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4297 + }, + "bounds": { + "#": 4299 + }, + "positionPrev": { + "#": 4302 + }, + "anglePrev": 0, + "axes": { + "#": 4303 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4284 + }, + "sleepCounter": 0, + "region": { + "#": 4306 + } + }, + [ + { + "#": 4284 + } + ], + [ + { + "#": 4287 + }, + { + "#": 4288 + }, + { + "#": 4289 + }, + { + "#": 4290 + } + ], + { + "x": 160, + "y": 412.63004, + "index": 0, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 195, + "y": 412.63004, + "index": 1, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 195, + "y": 447.63004, + "index": 2, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 160, + "y": 447.63004, + "index": 3, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 430.13004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.47037 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.18079 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4298 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4300 + }, + "max": { + "#": 4301 + } + }, + { + "x": 160, + "y": 412.63004 + }, + { + "x": 195, + "y": 449.0939 + }, + { + "x": 177.5, + "y": 428.8143 + }, + [ + { + "#": 4304 + }, + { + "#": 4305 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,8,9", + "startCol": 3, + "endCol": 4, + "startRow": 8, + "endRow": 9 + }, + { + "id": 188, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4308 + }, + "angle": 0, + "vertices": { + "#": 4309 + }, + "position": { + "#": 4314 + }, + "force": { + "#": 4315 + }, + "torque": 0, + "positionImpulse": { + "#": 4316 + }, + "constraintImpulse": { + "#": 4317 + }, + "totalContacts": 0, + "speed": 1.46386, + "angularSpeed": 0, + "velocity": { + "#": 4318 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4319 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4320 + }, + "bounds": { + "#": 4322 + }, + "positionPrev": { + "#": 4325 + }, + "anglePrev": 0, + "axes": { + "#": 4326 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4307 + }, + "sleepCounter": 0, + "region": { + "#": 4329 + } + }, + [ + { + "#": 4307 + } + ], + [ + { + "#": 4310 + }, + { + "#": 4311 + }, + { + "#": 4312 + }, + { + "#": 4313 + } + ], + { + "x": 195, + "y": 412.63004, + "index": 0, + "body": { + "#": 4307 + }, + "isInternal": false + }, + { + "x": 230, + "y": 412.63004, + "index": 1, + "body": { + "#": 4307 + }, + "isInternal": false + }, + { + "x": 230, + "y": 447.63004, + "index": 2, + "body": { + "#": 4307 + }, + "isInternal": false + }, + { + "x": 195, + "y": 447.63004, + "index": 3, + "body": { + "#": 4307 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 430.13004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.47037 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.18079 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4321 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4323 + }, + "max": { + "#": 4324 + } + }, + { + "x": 195, + "y": 412.63004 + }, + { + "x": 230, + "y": 449.0939 + }, + { + "x": 212.5, + "y": 428.8143 + }, + [ + { + "#": 4327 + }, + { + "#": 4328 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,8,9", + "startCol": 4, + "endCol": 4, + "startRow": 8, + "endRow": 9 + }, + { + "id": 189, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4331 + }, + "angle": 0, + "vertices": { + "#": 4332 + }, + "position": { + "#": 4337 + }, + "force": { + "#": 4338 + }, + "torque": 0, + "positionImpulse": { + "#": 4339 + }, + "constraintImpulse": { + "#": 4340 + }, + "totalContacts": 0, + "speed": 1.46386, + "angularSpeed": 0, + "velocity": { + "#": 4341 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4342 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4343 + }, + "bounds": { + "#": 4345 + }, + "positionPrev": { + "#": 4348 + }, + "anglePrev": 0, + "axes": { + "#": 4349 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4330 + }, + "sleepCounter": 0, + "region": { + "#": 4352 + } + }, + [ + { + "#": 4330 + } + ], + [ + { + "#": 4333 + }, + { + "#": 4334 + }, + { + "#": 4335 + }, + { + "#": 4336 + } + ], + { + "x": 230, + "y": 412.63004, + "index": 0, + "body": { + "#": 4330 + }, + "isInternal": false + }, + { + "x": 265, + "y": 412.63004, + "index": 1, + "body": { + "#": 4330 + }, + "isInternal": false + }, + { + "x": 265, + "y": 447.63004, + "index": 2, + "body": { + "#": 4330 + }, + "isInternal": false + }, + { + "x": 230, + "y": 447.63004, + "index": 3, + "body": { + "#": 4330 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 430.13004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.47037 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.18079 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4344 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4346 + }, + "max": { + "#": 4347 + } + }, + { + "x": 230, + "y": 412.63004 + }, + { + "x": 265, + "y": 449.0939 + }, + { + "x": 247.5, + "y": 428.8143 + }, + [ + { + "#": 4350 + }, + { + "#": 4351 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,8,9", + "startCol": 4, + "endCol": 5, + "startRow": 8, + "endRow": 9 + }, + { + "id": 190, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4354 + }, + "angle": 0, + "vertices": { + "#": 4355 + }, + "position": { + "#": 4360 + }, + "force": { + "#": 4361 + }, + "torque": 0, + "positionImpulse": { + "#": 4362 + }, + "constraintImpulse": { + "#": 4363 + }, + "totalContacts": 0, + "speed": 1.46386, + "angularSpeed": 0, + "velocity": { + "#": 4364 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4365 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4366 + }, + "bounds": { + "#": 4368 + }, + "positionPrev": { + "#": 4371 + }, + "anglePrev": 0, + "axes": { + "#": 4372 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4353 + }, + "sleepCounter": 0, + "region": { + "#": 4375 + } + }, + [ + { + "#": 4353 + } + ], + [ + { + "#": 4356 + }, + { + "#": 4357 + }, + { + "#": 4358 + }, + { + "#": 4359 + } + ], + { + "x": 265, + "y": 412.63004, + "index": 0, + "body": { + "#": 4353 + }, + "isInternal": false + }, + { + "x": 300, + "y": 412.63004, + "index": 1, + "body": { + "#": 4353 + }, + "isInternal": false + }, + { + "x": 300, + "y": 447.63004, + "index": 2, + "body": { + "#": 4353 + }, + "isInternal": false + }, + { + "x": 265, + "y": 447.63004, + "index": 3, + "body": { + "#": 4353 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 430.13004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.47037 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.18079 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4367 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4369 + }, + "max": { + "#": 4370 + } + }, + { + "x": 265, + "y": 412.63004 + }, + { + "x": 300, + "y": 449.0939 + }, + { + "x": 282.5, + "y": 428.8143 + }, + [ + { + "#": 4373 + }, + { + "#": 4374 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,8,9", + "startCol": 5, + "endCol": 6, + "startRow": 8, + "endRow": 9 + }, + { + "id": 191, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4377 + }, + "angle": 0, + "vertices": { + "#": 4378 + }, + "position": { + "#": 4383 + }, + "force": { + "#": 4384 + }, + "torque": 0, + "positionImpulse": { + "#": 4385 + }, + "constraintImpulse": { + "#": 4386 + }, + "totalContacts": 0, + "speed": 1.46386, + "angularSpeed": 0, + "velocity": { + "#": 4387 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4388 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4389 + }, + "bounds": { + "#": 4391 + }, + "positionPrev": { + "#": 4394 + }, + "anglePrev": 0, + "axes": { + "#": 4395 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4376 + }, + "sleepCounter": 0, + "region": { + "#": 4398 + } + }, + [ + { + "#": 4376 + } + ], + [ + { + "#": 4379 + }, + { + "#": 4380 + }, + { + "#": 4381 + }, + { + "#": 4382 + } + ], + { + "x": 300, + "y": 412.63004, + "index": 0, + "body": { + "#": 4376 + }, + "isInternal": false + }, + { + "x": 335, + "y": 412.63004, + "index": 1, + "body": { + "#": 4376 + }, + "isInternal": false + }, + { + "x": 335, + "y": 447.63004, + "index": 2, + "body": { + "#": 4376 + }, + "isInternal": false + }, + { + "x": 300, + "y": 447.63004, + "index": 3, + "body": { + "#": 4376 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 430.13004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.47037 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.18079 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4390 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4392 + }, + "max": { + "#": 4393 + } + }, + { + "x": 300, + "y": 412.63004 + }, + { + "x": 335, + "y": 449.0939 + }, + { + "x": 317.5, + "y": 428.8143 + }, + [ + { + "#": 4396 + }, + { + "#": 4397 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,8,9", + "startCol": 6, + "endCol": 6, + "startRow": 8, + "endRow": 9 + }, + { + "id": 192, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4400 + }, + "angle": 0, + "vertices": { + "#": 4401 + }, + "position": { + "#": 4406 + }, + "force": { + "#": 4407 + }, + "torque": 0, + "positionImpulse": { + "#": 4408 + }, + "constraintImpulse": { + "#": 4409 + }, + "totalContacts": 0, + "speed": 1.46386, + "angularSpeed": 0, + "velocity": { + "#": 4410 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4411 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4412 + }, + "bounds": { + "#": 4414 + }, + "positionPrev": { + "#": 4417 + }, + "anglePrev": 0, + "axes": { + "#": 4418 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4399 + }, + "sleepCounter": 0, + "region": { + "#": 4421 + } + }, + [ + { + "#": 4399 + } + ], + [ + { + "#": 4402 + }, + { + "#": 4403 + }, + { + "#": 4404 + }, + { + "#": 4405 + } + ], + { + "x": 335, + "y": 412.63004, + "index": 0, + "body": { + "#": 4399 + }, + "isInternal": false + }, + { + "x": 370, + "y": 412.63004, + "index": 1, + "body": { + "#": 4399 + }, + "isInternal": false + }, + { + "x": 370, + "y": 447.63004, + "index": 2, + "body": { + "#": 4399 + }, + "isInternal": false + }, + { + "x": 335, + "y": 447.63004, + "index": 3, + "body": { + "#": 4399 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 430.13004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.47037 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.18079 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4413 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4415 + }, + "max": { + "#": 4416 + } + }, + { + "x": 335, + "y": 412.63004 + }, + { + "x": 370, + "y": 449.0939 + }, + { + "x": 352.5, + "y": 428.8143 + }, + [ + { + "#": 4419 + }, + { + "#": 4420 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,8,9", + "startCol": 6, + "endCol": 7, + "startRow": 8, + "endRow": 9 + }, + { + "id": 193, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4423 + }, + "angle": 0, + "vertices": { + "#": 4424 + }, + "position": { + "#": 4429 + }, + "force": { + "#": 4430 + }, + "torque": 0, + "positionImpulse": { + "#": 4431 + }, + "constraintImpulse": { + "#": 4432 + }, + "totalContacts": 0, + "speed": 1.46386, + "angularSpeed": 0, + "velocity": { + "#": 4433 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4434 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4435 + }, + "bounds": { + "#": 4437 + }, + "positionPrev": { + "#": 4440 + }, + "anglePrev": 0, + "axes": { + "#": 4441 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4422 + }, + "sleepCounter": 0, + "region": { + "#": 4444 + } + }, + [ + { + "#": 4422 + } + ], + [ + { + "#": 4425 + }, + { + "#": 4426 + }, + { + "#": 4427 + }, + { + "#": 4428 + } + ], + { + "x": 370, + "y": 412.63004, + "index": 0, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 405, + "y": 412.63004, + "index": 1, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 405, + "y": 447.63004, + "index": 2, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 370, + "y": 447.63004, + "index": 3, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 430.13004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.47037 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.18079 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4436 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4438 + }, + "max": { + "#": 4439 + } + }, + { + "x": 370, + "y": 412.63004 + }, + { + "x": 405, + "y": 449.0939 + }, + { + "x": 387.5, + "y": 428.8143 + }, + [ + { + "#": 4442 + }, + { + "#": 4443 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,8,9", + "startCol": 7, + "endCol": 8, + "startRow": 8, + "endRow": 9 + }, + { + "id": 194, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4446 + }, + "angle": 0, + "vertices": { + "#": 4447 + }, + "position": { + "#": 4452 + }, + "force": { + "#": 4453 + }, + "torque": 0, + "positionImpulse": { + "#": 4454 + }, + "constraintImpulse": { + "#": 4455 + }, + "totalContacts": 0, + "speed": 1.46386, + "angularSpeed": 0, + "velocity": { + "#": 4456 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4457 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4458 + }, + "bounds": { + "#": 4460 + }, + "positionPrev": { + "#": 4463 + }, + "anglePrev": 0, + "axes": { + "#": 4464 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4445 + }, + "sleepCounter": 0, + "region": { + "#": 4467 + } + }, + [ + { + "#": 4445 + } + ], + [ + { + "#": 4448 + }, + { + "#": 4449 + }, + { + "#": 4450 + }, + { + "#": 4451 + } + ], + { + "x": 405, + "y": 412.63004, + "index": 0, + "body": { + "#": 4445 + }, + "isInternal": false + }, + { + "x": 440, + "y": 412.63004, + "index": 1, + "body": { + "#": 4445 + }, + "isInternal": false + }, + { + "x": 440, + "y": 447.63004, + "index": 2, + "body": { + "#": 4445 + }, + "isInternal": false + }, + { + "x": 405, + "y": 447.63004, + "index": 3, + "body": { + "#": 4445 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 430.13004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.47037 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.18079 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4459 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4461 + }, + "max": { + "#": 4462 + } + }, + { + "x": 405, + "y": 412.63004 + }, + { + "x": 440, + "y": 449.0939 + }, + { + "x": 422.5, + "y": 428.8143 + }, + [ + { + "#": 4465 + }, + { + "#": 4466 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,8,9", + "startCol": 8, + "endCol": 9, + "startRow": 8, + "endRow": 9 + }, + { + "id": 195, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4469 + }, + "angle": 0, + "vertices": { + "#": 4470 + }, + "position": { + "#": 4475 + }, + "force": { + "#": 4476 + }, + "torque": 0, + "positionImpulse": { + "#": 4477 + }, + "constraintImpulse": { + "#": 4478 + }, + "totalContacts": 0, + "speed": 1.46386, + "angularSpeed": 0, + "velocity": { + "#": 4479 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4480 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4481 + }, + "bounds": { + "#": 4483 + }, + "positionPrev": { + "#": 4486 + }, + "anglePrev": 0, + "axes": { + "#": 4487 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4468 + }, + "sleepCounter": 0, + "region": { + "#": 4490 + } + }, + [ + { + "#": 4468 + } + ], + [ + { + "#": 4471 + }, + { + "#": 4472 + }, + { + "#": 4473 + }, + { + "#": 4474 + } + ], + { + "x": 440, + "y": 412.63004, + "index": 0, + "body": { + "#": 4468 + }, + "isInternal": false + }, + { + "x": 475, + "y": 412.63004, + "index": 1, + "body": { + "#": 4468 + }, + "isInternal": false + }, + { + "x": 475, + "y": 447.63004, + "index": 2, + "body": { + "#": 4468 + }, + "isInternal": false + }, + { + "x": 440, + "y": 447.63004, + "index": 3, + "body": { + "#": 4468 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 430.13004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.47037 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.18079 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4482 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4484 + }, + "max": { + "#": 4485 + } + }, + { + "x": 440, + "y": 412.63004 + }, + { + "x": 475, + "y": 449.0939 + }, + { + "x": 457.5, + "y": 428.8143 + }, + [ + { + "#": 4488 + }, + { + "#": 4489 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,8,9", + "startCol": 9, + "endCol": 9, + "startRow": 8, + "endRow": 9 + }, + { + "id": 196, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4492 + }, + "angle": 0, + "vertices": { + "#": 4493 + }, + "position": { + "#": 4498 + }, + "force": { + "#": 4499 + }, + "torque": 0, + "positionImpulse": { + "#": 4500 + }, + "constraintImpulse": { + "#": 4501 + }, + "totalContacts": 0, + "speed": 1.46386, + "angularSpeed": 0, + "velocity": { + "#": 4502 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4503 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4504 + }, + "bounds": { + "#": 4506 + }, + "positionPrev": { + "#": 4509 + }, + "anglePrev": 0, + "axes": { + "#": 4510 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4491 + }, + "sleepCounter": 0, + "region": { + "#": 4513 + } + }, + [ + { + "#": 4491 + } + ], + [ + { + "#": 4494 + }, + { + "#": 4495 + }, + { + "#": 4496 + }, + { + "#": 4497 + } + ], + { + "x": 475, + "y": 412.63004, + "index": 0, + "body": { + "#": 4491 + }, + "isInternal": false + }, + { + "x": 510, + "y": 412.63004, + "index": 1, + "body": { + "#": 4491 + }, + "isInternal": false + }, + { + "x": 510, + "y": 447.63004, + "index": 2, + "body": { + "#": 4491 + }, + "isInternal": false + }, + { + "x": 475, + "y": 447.63004, + "index": 3, + "body": { + "#": 4491 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 430.13004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.47037 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.18079 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4505 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4507 + }, + "max": { + "#": 4508 + } + }, + { + "x": 475, + "y": 412.63004 + }, + { + "x": 510, + "y": 449.0939 + }, + { + "x": 492.5, + "y": 428.8143 + }, + [ + { + "#": 4511 + }, + { + "#": 4512 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,8,9", + "startCol": 9, + "endCol": 10, + "startRow": 8, + "endRow": 9 + }, + { + "id": 197, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4515 + }, + "angle": 0, + "vertices": { + "#": 4516 + }, + "position": { + "#": 4521 + }, + "force": { + "#": 4522 + }, + "torque": 0, + "positionImpulse": { + "#": 4523 + }, + "constraintImpulse": { + "#": 4524 + }, + "totalContacts": 0, + "speed": 1.46386, + "angularSpeed": 0, + "velocity": { + "#": 4525 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4526 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4527 + }, + "bounds": { + "#": 4529 + }, + "positionPrev": { + "#": 4532 + }, + "anglePrev": 0, + "axes": { + "#": 4533 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4514 + }, + "sleepCounter": 0, + "region": { + "#": 4536 + } + }, + [ + { + "#": 4514 + } + ], + [ + { + "#": 4517 + }, + { + "#": 4518 + }, + { + "#": 4519 + }, + { + "#": 4520 + } + ], + { + "x": 510, + "y": 412.63004, + "index": 0, + "body": { + "#": 4514 + }, + "isInternal": false + }, + { + "x": 545, + "y": 412.63004, + "index": 1, + "body": { + "#": 4514 + }, + "isInternal": false + }, + { + "x": 545, + "y": 447.63004, + "index": 2, + "body": { + "#": 4514 + }, + "isInternal": false + }, + { + "x": 510, + "y": 447.63004, + "index": 3, + "body": { + "#": 4514 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 430.13004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.47037 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.18079 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4528 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4530 + }, + "max": { + "#": 4531 + } + }, + { + "x": 510, + "y": 412.63004 + }, + { + "x": 545, + "y": 449.0939 + }, + { + "x": 527.5, + "y": 428.8143 + }, + [ + { + "#": 4534 + }, + { + "#": 4535 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,8,9", + "startCol": 10, + "endCol": 11, + "startRow": 8, + "endRow": 9 + }, + { + "id": 198, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4538 + }, + "angle": 0, + "vertices": { + "#": 4539 + }, + "position": { + "#": 4544 + }, + "force": { + "#": 4545 + }, + "torque": 0, + "positionImpulse": { + "#": 4546 + }, + "constraintImpulse": { + "#": 4547 + }, + "totalContacts": 0, + "speed": 1.46386, + "angularSpeed": 0, + "velocity": { + "#": 4548 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4549 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4550 + }, + "bounds": { + "#": 4552 + }, + "positionPrev": { + "#": 4555 + }, + "anglePrev": 0, + "axes": { + "#": 4556 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4537 + }, + "sleepCounter": 0, + "region": { + "#": 4559 + } + }, + [ + { + "#": 4537 + } + ], + [ + { + "#": 4540 + }, + { + "#": 4541 + }, + { + "#": 4542 + }, + { + "#": 4543 + } + ], + { + "x": 545, + "y": 412.63004, + "index": 0, + "body": { + "#": 4537 + }, + "isInternal": false + }, + { + "x": 580, + "y": 412.63004, + "index": 1, + "body": { + "#": 4537 + }, + "isInternal": false + }, + { + "x": 580, + "y": 447.63004, + "index": 2, + "body": { + "#": 4537 + }, + "isInternal": false + }, + { + "x": 545, + "y": 447.63004, + "index": 3, + "body": { + "#": 4537 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 430.13004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.47037 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.18079 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4551 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4553 + }, + "max": { + "#": 4554 + } + }, + { + "x": 545, + "y": 412.63004 + }, + { + "x": 580, + "y": 449.0939 + }, + { + "x": 562.5, + "y": 428.8143 + }, + [ + { + "#": 4557 + }, + { + "#": 4558 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,8,9", + "startCol": 11, + "endCol": 12, + "startRow": 8, + "endRow": 9 + }, + { + "id": 199, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4561 + }, + "angle": 0, + "vertices": { + "#": 4562 + }, + "position": { + "#": 4567 + }, + "force": { + "#": 4568 + }, + "torque": 0, + "positionImpulse": { + "#": 4569 + }, + "constraintImpulse": { + "#": 4570 + }, + "totalContacts": 0, + "speed": 1.46386, + "angularSpeed": 0, + "velocity": { + "#": 4571 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4572 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4573 + }, + "bounds": { + "#": 4575 + }, + "positionPrev": { + "#": 4578 + }, + "anglePrev": 0, + "axes": { + "#": 4579 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4560 + }, + "sleepCounter": 0, + "region": { + "#": 4582 + } + }, + [ + { + "#": 4560 + } + ], + [ + { + "#": 4563 + }, + { + "#": 4564 + }, + { + "#": 4565 + }, + { + "#": 4566 + } + ], + { + "x": 580, + "y": 412.63004, + "index": 0, + "body": { + "#": 4560 + }, + "isInternal": false + }, + { + "x": 615, + "y": 412.63004, + "index": 1, + "body": { + "#": 4560 + }, + "isInternal": false + }, + { + "x": 615, + "y": 447.63004, + "index": 2, + "body": { + "#": 4560 + }, + "isInternal": false + }, + { + "x": 580, + "y": 447.63004, + "index": 3, + "body": { + "#": 4560 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 430.13004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.47037 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.18079 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4574 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4576 + }, + "max": { + "#": 4577 + } + }, + { + "x": 580, + "y": 412.63004 + }, + { + "x": 615, + "y": 449.0939 + }, + { + "x": 597.5, + "y": 428.8143 + }, + [ + { + "#": 4580 + }, + { + "#": 4581 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,12,8,9", + "startCol": 12, + "endCol": 12, + "startRow": 8, + "endRow": 9 + }, + { + "id": 200, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4584 + }, + "angle": 0, + "vertices": { + "#": 4585 + }, + "position": { + "#": 4590 + }, + "force": { + "#": 4591 + }, + "torque": 0, + "positionImpulse": { + "#": 4592 + }, + "constraintImpulse": { + "#": 4593 + }, + "totalContacts": 0, + "speed": 1.46386, + "angularSpeed": 0, + "velocity": { + "#": 4594 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4595 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4596 + }, + "bounds": { + "#": 4598 + }, + "positionPrev": { + "#": 4601 + }, + "anglePrev": 0, + "axes": { + "#": 4602 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4583 + }, + "sleepCounter": 0, + "region": { + "#": 4605 + } + }, + [ + { + "#": 4583 + } + ], + [ + { + "#": 4586 + }, + { + "#": 4587 + }, + { + "#": 4588 + }, + { + "#": 4589 + } + ], + { + "x": 615, + "y": 412.63004, + "index": 0, + "body": { + "#": 4583 + }, + "isInternal": false + }, + { + "x": 650, + "y": 412.63004, + "index": 1, + "body": { + "#": 4583 + }, + "isInternal": false + }, + { + "x": 650, + "y": 447.63004, + "index": 2, + "body": { + "#": 4583 + }, + "isInternal": false + }, + { + "x": 615, + "y": 447.63004, + "index": 3, + "body": { + "#": 4583 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 430.13004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.47037 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.18079 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4597 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4599 + }, + "max": { + "#": 4600 + } + }, + { + "x": 615, + "y": 412.63004 + }, + { + "x": 650, + "y": 449.0939 + }, + { + "x": 632.5, + "y": 428.8143 + }, + [ + { + "#": 4603 + }, + { + "#": 4604 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,8,9", + "startCol": 12, + "endCol": 13, + "startRow": 8, + "endRow": 9 + }, + { + "id": 201, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4607 + }, + "angle": 0, + "vertices": { + "#": 4608 + }, + "position": { + "#": 4613 + }, + "force": { + "#": 4614 + }, + "torque": 0, + "positionImpulse": { + "#": 4615 + }, + "constraintImpulse": { + "#": 4616 + }, + "totalContacts": 0, + "speed": 1.46386, + "angularSpeed": 0, + "velocity": { + "#": 4617 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4618 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4619 + }, + "bounds": { + "#": 4621 + }, + "positionPrev": { + "#": 4624 + }, + "anglePrev": 0, + "axes": { + "#": 4625 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4606 + }, + "sleepCounter": 0, + "region": { + "#": 4628 + } + }, + [ + { + "#": 4606 + } + ], + [ + { + "#": 4609 + }, + { + "#": 4610 + }, + { + "#": 4611 + }, + { + "#": 4612 + } + ], + { + "x": 650, + "y": 412.63004, + "index": 0, + "body": { + "#": 4606 + }, + "isInternal": false + }, + { + "x": 685, + "y": 412.63004, + "index": 1, + "body": { + "#": 4606 + }, + "isInternal": false + }, + { + "x": 685, + "y": 447.63004, + "index": 2, + "body": { + "#": 4606 + }, + "isInternal": false + }, + { + "x": 650, + "y": 447.63004, + "index": 3, + "body": { + "#": 4606 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 430.13004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.47037 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.18079 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4620 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4622 + }, + "max": { + "#": 4623 + } + }, + { + "x": 650, + "y": 412.63004 + }, + { + "x": 685, + "y": 449.0939 + }, + { + "x": 667.5, + "y": 428.8143 + }, + [ + { + "#": 4626 + }, + { + "#": 4627 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,8,9", + "startCol": 13, + "endCol": 14, + "startRow": 8, + "endRow": 9 + }, + { + "id": 202, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4630 + }, + "angle": 0, + "vertices": { + "#": 4631 + }, + "position": { + "#": 4636 + }, + "force": { + "#": 4637 + }, + "torque": 0, + "positionImpulse": { + "#": 4638 + }, + "constraintImpulse": { + "#": 4639 + }, + "totalContacts": 0, + "speed": 1.46386, + "angularSpeed": 0, + "velocity": { + "#": 4640 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4641 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4642 + }, + "bounds": { + "#": 4644 + }, + "positionPrev": { + "#": 4647 + }, + "anglePrev": 0, + "axes": { + "#": 4648 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4629 + }, + "sleepCounter": 0, + "region": { + "#": 4651 + } + }, + [ + { + "#": 4629 + } + ], + [ + { + "#": 4632 + }, + { + "#": 4633 + }, + { + "#": 4634 + }, + { + "#": 4635 + } + ], + { + "x": 685, + "y": 412.63004, + "index": 0, + "body": { + "#": 4629 + }, + "isInternal": false + }, + { + "x": 720, + "y": 412.63004, + "index": 1, + "body": { + "#": 4629 + }, + "isInternal": false + }, + { + "x": 720, + "y": 447.63004, + "index": 2, + "body": { + "#": 4629 + }, + "isInternal": false + }, + { + "x": 685, + "y": 447.63004, + "index": 3, + "body": { + "#": 4629 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 430.13004 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.47037 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.18079 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4643 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4645 + }, + "max": { + "#": 4646 + } + }, + { + "x": 685, + "y": 412.63004 + }, + { + "x": 720, + "y": 449.0939 + }, + { + "x": 702.5, + "y": 428.8143 + }, + [ + { + "#": 4649 + }, + { + "#": 4650 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,8,9", + "startCol": 14, + "endCol": 15, + "startRow": 8, + "endRow": 9 + }, + { + "id": 203, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4653 + }, + "angle": 0, + "vertices": { + "#": 4654 + }, + "position": { + "#": 4659 + }, + "force": { + "#": 4660 + }, + "torque": 0, + "positionImpulse": { + "#": 4661 + }, + "constraintImpulse": { + "#": 4662 + }, + "totalContacts": 0, + "speed": 1.3661, + "angularSpeed": 0, + "velocity": { + "#": 4663 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4664 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4665 + }, + "bounds": { + "#": 4667 + }, + "positionPrev": { + "#": 4670 + }, + "anglePrev": 0, + "axes": { + "#": 4671 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4652 + }, + "sleepCounter": 0, + "region": { + "#": 4674 + } + }, + [ + { + "#": 4652 + } + ], + [ + { + "#": 4655 + }, + { + "#": 4656 + }, + { + "#": 4657 + }, + { + "#": 4658 + } + ], + { + "x": 90, + "y": 446.41081, + "index": 0, + "body": { + "#": 4652 + }, + "isInternal": false + }, + { + "x": 125, + "y": 446.41081, + "index": 1, + "body": { + "#": 4652 + }, + "isInternal": false + }, + { + "x": 125, + "y": 481.41081, + "index": 2, + "body": { + "#": 4652 + }, + "isInternal": false + }, + { + "x": 90, + "y": 481.41081, + "index": 3, + "body": { + "#": 4652 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 463.91081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.79212 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4666 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4668 + }, + "max": { + "#": 4669 + } + }, + { + "x": 90, + "y": 446.41081 + }, + { + "x": 125, + "y": 482.77691 + }, + { + "x": 107.5, + "y": 462.89659 + }, + [ + { + "#": 4672 + }, + { + "#": 4673 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "1,2,9,10", + "startCol": 1, + "endCol": 2, + "startRow": 9, + "endRow": 10 + }, + { + "id": 204, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4676 + }, + "angle": 0, + "vertices": { + "#": 4677 + }, + "position": { + "#": 4682 + }, + "force": { + "#": 4683 + }, + "torque": 0, + "positionImpulse": { + "#": 4684 + }, + "constraintImpulse": { + "#": 4685 + }, + "totalContacts": 0, + "speed": 1.3661, + "angularSpeed": 0, + "velocity": { + "#": 4686 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4687 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4688 + }, + "bounds": { + "#": 4690 + }, + "positionPrev": { + "#": 4693 + }, + "anglePrev": 0, + "axes": { + "#": 4694 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4675 + }, + "sleepCounter": 0, + "region": { + "#": 4697 + } + }, + [ + { + "#": 4675 + } + ], + [ + { + "#": 4678 + }, + { + "#": 4679 + }, + { + "#": 4680 + }, + { + "#": 4681 + } + ], + { + "x": 125, + "y": 446.41081, + "index": 0, + "body": { + "#": 4675 + }, + "isInternal": false + }, + { + "x": 160, + "y": 446.41081, + "index": 1, + "body": { + "#": 4675 + }, + "isInternal": false + }, + { + "x": 160, + "y": 481.41081, + "index": 2, + "body": { + "#": 4675 + }, + "isInternal": false + }, + { + "x": 125, + "y": 481.41081, + "index": 3, + "body": { + "#": 4675 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 463.91081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.79212 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4689 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4691 + }, + "max": { + "#": 4692 + } + }, + { + "x": 125, + "y": 446.41081 + }, + { + "x": 160, + "y": 482.77691 + }, + { + "x": 142.5, + "y": 462.89659 + }, + [ + { + "#": 4695 + }, + { + "#": 4696 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,9,10", + "startCol": 2, + "endCol": 3, + "startRow": 9, + "endRow": 10 + }, + { + "id": 205, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4699 + }, + "angle": 0, + "vertices": { + "#": 4700 + }, + "position": { + "#": 4705 + }, + "force": { + "#": 4706 + }, + "torque": 0, + "positionImpulse": { + "#": 4707 + }, + "constraintImpulse": { + "#": 4708 + }, + "totalContacts": 0, + "speed": 1.3661, + "angularSpeed": 0, + "velocity": { + "#": 4709 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4710 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4711 + }, + "bounds": { + "#": 4713 + }, + "positionPrev": { + "#": 4716 + }, + "anglePrev": 0, + "axes": { + "#": 4717 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4698 + }, + "sleepCounter": 0, + "region": { + "#": 4720 + } + }, + [ + { + "#": 4698 + } + ], + [ + { + "#": 4701 + }, + { + "#": 4702 + }, + { + "#": 4703 + }, + { + "#": 4704 + } + ], + { + "x": 160, + "y": 446.41081, + "index": 0, + "body": { + "#": 4698 + }, + "isInternal": false + }, + { + "x": 195, + "y": 446.41081, + "index": 1, + "body": { + "#": 4698 + }, + "isInternal": false + }, + { + "x": 195, + "y": 481.41081, + "index": 2, + "body": { + "#": 4698 + }, + "isInternal": false + }, + { + "x": 160, + "y": 481.41081, + "index": 3, + "body": { + "#": 4698 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 463.91081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.79212 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4712 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4714 + }, + "max": { + "#": 4715 + } + }, + { + "x": 160, + "y": 446.41081 + }, + { + "x": 195, + "y": 482.77691 + }, + { + "x": 177.5, + "y": 462.89659 + }, + [ + { + "#": 4718 + }, + { + "#": 4719 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,9,10", + "startCol": 3, + "endCol": 4, + "startRow": 9, + "endRow": 10 + }, + { + "id": 206, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4722 + }, + "angle": 0, + "vertices": { + "#": 4723 + }, + "position": { + "#": 4728 + }, + "force": { + "#": 4729 + }, + "torque": 0, + "positionImpulse": { + "#": 4730 + }, + "constraintImpulse": { + "#": 4731 + }, + "totalContacts": 0, + "speed": 1.3661, + "angularSpeed": 0, + "velocity": { + "#": 4732 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4733 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4734 + }, + "bounds": { + "#": 4736 + }, + "positionPrev": { + "#": 4739 + }, + "anglePrev": 0, + "axes": { + "#": 4740 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4721 + }, + "sleepCounter": 0, + "region": { + "#": 4743 + } + }, + [ + { + "#": 4721 + } + ], + [ + { + "#": 4724 + }, + { + "#": 4725 + }, + { + "#": 4726 + }, + { + "#": 4727 + } + ], + { + "x": 195, + "y": 446.41081, + "index": 0, + "body": { + "#": 4721 + }, + "isInternal": false + }, + { + "x": 230, + "y": 446.41081, + "index": 1, + "body": { + "#": 4721 + }, + "isInternal": false + }, + { + "x": 230, + "y": 481.41081, + "index": 2, + "body": { + "#": 4721 + }, + "isInternal": false + }, + { + "x": 195, + "y": 481.41081, + "index": 3, + "body": { + "#": 4721 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 463.91081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.79212 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4735 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4737 + }, + "max": { + "#": 4738 + } + }, + { + "x": 195, + "y": 446.41081 + }, + { + "x": 230, + "y": 482.77691 + }, + { + "x": 212.5, + "y": 462.89659 + }, + [ + { + "#": 4741 + }, + { + "#": 4742 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,9,10", + "startCol": 4, + "endCol": 4, + "startRow": 9, + "endRow": 10 + }, + { + "id": 207, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4745 + }, + "angle": 0, + "vertices": { + "#": 4746 + }, + "position": { + "#": 4751 + }, + "force": { + "#": 4752 + }, + "torque": 0, + "positionImpulse": { + "#": 4753 + }, + "constraintImpulse": { + "#": 4754 + }, + "totalContacts": 0, + "speed": 1.3661, + "angularSpeed": 0, + "velocity": { + "#": 4755 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4756 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4757 + }, + "bounds": { + "#": 4759 + }, + "positionPrev": { + "#": 4762 + }, + "anglePrev": 0, + "axes": { + "#": 4763 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4744 + }, + "sleepCounter": 0, + "region": { + "#": 4766 + } + }, + [ + { + "#": 4744 + } + ], + [ + { + "#": 4747 + }, + { + "#": 4748 + }, + { + "#": 4749 + }, + { + "#": 4750 + } + ], + { + "x": 230, + "y": 446.41081, + "index": 0, + "body": { + "#": 4744 + }, + "isInternal": false + }, + { + "x": 265, + "y": 446.41081, + "index": 1, + "body": { + "#": 4744 + }, + "isInternal": false + }, + { + "x": 265, + "y": 481.41081, + "index": 2, + "body": { + "#": 4744 + }, + "isInternal": false + }, + { + "x": 230, + "y": 481.41081, + "index": 3, + "body": { + "#": 4744 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 463.91081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.79212 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4758 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4760 + }, + "max": { + "#": 4761 + } + }, + { + "x": 230, + "y": 446.41081 + }, + { + "x": 265, + "y": 482.77691 + }, + { + "x": 247.5, + "y": 462.89659 + }, + [ + { + "#": 4764 + }, + { + "#": 4765 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,9,10", + "startCol": 4, + "endCol": 5, + "startRow": 9, + "endRow": 10 + }, + { + "id": 208, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4768 + }, + "angle": 0, + "vertices": { + "#": 4769 + }, + "position": { + "#": 4774 + }, + "force": { + "#": 4775 + }, + "torque": 0, + "positionImpulse": { + "#": 4776 + }, + "constraintImpulse": { + "#": 4777 + }, + "totalContacts": 0, + "speed": 1.3661, + "angularSpeed": 0, + "velocity": { + "#": 4778 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4779 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4780 + }, + "bounds": { + "#": 4782 + }, + "positionPrev": { + "#": 4785 + }, + "anglePrev": 0, + "axes": { + "#": 4786 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4767 + }, + "sleepCounter": 0, + "region": { + "#": 4789 + } + }, + [ + { + "#": 4767 + } + ], + [ + { + "#": 4770 + }, + { + "#": 4771 + }, + { + "#": 4772 + }, + { + "#": 4773 + } + ], + { + "x": 265, + "y": 446.41081, + "index": 0, + "body": { + "#": 4767 + }, + "isInternal": false + }, + { + "x": 300, + "y": 446.41081, + "index": 1, + "body": { + "#": 4767 + }, + "isInternal": false + }, + { + "x": 300, + "y": 481.41081, + "index": 2, + "body": { + "#": 4767 + }, + "isInternal": false + }, + { + "x": 265, + "y": 481.41081, + "index": 3, + "body": { + "#": 4767 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 463.91081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.79212 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4781 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4783 + }, + "max": { + "#": 4784 + } + }, + { + "x": 265, + "y": 446.41081 + }, + { + "x": 300, + "y": 482.77691 + }, + { + "x": 282.5, + "y": 462.89659 + }, + [ + { + "#": 4787 + }, + { + "#": 4788 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,9,10", + "startCol": 5, + "endCol": 6, + "startRow": 9, + "endRow": 10 + }, + { + "id": 209, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4791 + }, + "angle": 0, + "vertices": { + "#": 4792 + }, + "position": { + "#": 4797 + }, + "force": { + "#": 4798 + }, + "torque": 0, + "positionImpulse": { + "#": 4799 + }, + "constraintImpulse": { + "#": 4800 + }, + "totalContacts": 0, + "speed": 1.3661, + "angularSpeed": 0, + "velocity": { + "#": 4801 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4802 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4803 + }, + "bounds": { + "#": 4805 + }, + "positionPrev": { + "#": 4808 + }, + "anglePrev": 0, + "axes": { + "#": 4809 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4790 + }, + "sleepCounter": 0, + "region": { + "#": 4812 + } + }, + [ + { + "#": 4790 + } + ], + [ + { + "#": 4793 + }, + { + "#": 4794 + }, + { + "#": 4795 + }, + { + "#": 4796 + } + ], + { + "x": 300, + "y": 446.41081, + "index": 0, + "body": { + "#": 4790 + }, + "isInternal": false + }, + { + "x": 335, + "y": 446.41081, + "index": 1, + "body": { + "#": 4790 + }, + "isInternal": false + }, + { + "x": 335, + "y": 481.41081, + "index": 2, + "body": { + "#": 4790 + }, + "isInternal": false + }, + { + "x": 300, + "y": 481.41081, + "index": 3, + "body": { + "#": 4790 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 463.91081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.79212 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4804 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4806 + }, + "max": { + "#": 4807 + } + }, + { + "x": 300, + "y": 446.41081 + }, + { + "x": 335, + "y": 482.77691 + }, + { + "x": 317.5, + "y": 462.89659 + }, + [ + { + "#": 4810 + }, + { + "#": 4811 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,9,10", + "startCol": 6, + "endCol": 6, + "startRow": 9, + "endRow": 10 + }, + { + "id": 210, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4814 + }, + "angle": 0, + "vertices": { + "#": 4815 + }, + "position": { + "#": 4820 + }, + "force": { + "#": 4821 + }, + "torque": 0, + "positionImpulse": { + "#": 4822 + }, + "constraintImpulse": { + "#": 4823 + }, + "totalContacts": 0, + "speed": 1.3661, + "angularSpeed": 0, + "velocity": { + "#": 4824 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4825 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4826 + }, + "bounds": { + "#": 4828 + }, + "positionPrev": { + "#": 4831 + }, + "anglePrev": 0, + "axes": { + "#": 4832 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4813 + }, + "sleepCounter": 0, + "region": { + "#": 4835 + } + }, + [ + { + "#": 4813 + } + ], + [ + { + "#": 4816 + }, + { + "#": 4817 + }, + { + "#": 4818 + }, + { + "#": 4819 + } + ], + { + "x": 335, + "y": 446.41081, + "index": 0, + "body": { + "#": 4813 + }, + "isInternal": false + }, + { + "x": 370, + "y": 446.41081, + "index": 1, + "body": { + "#": 4813 + }, + "isInternal": false + }, + { + "x": 370, + "y": 481.41081, + "index": 2, + "body": { + "#": 4813 + }, + "isInternal": false + }, + { + "x": 335, + "y": 481.41081, + "index": 3, + "body": { + "#": 4813 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 463.91081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.79212 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4827 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4829 + }, + "max": { + "#": 4830 + } + }, + { + "x": 335, + "y": 446.41081 + }, + { + "x": 370, + "y": 482.77691 + }, + { + "x": 352.5, + "y": 462.89659 + }, + [ + { + "#": 4833 + }, + { + "#": 4834 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,9,10", + "startCol": 6, + "endCol": 7, + "startRow": 9, + "endRow": 10 + }, + { + "id": 211, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4837 + }, + "angle": 0, + "vertices": { + "#": 4838 + }, + "position": { + "#": 4843 + }, + "force": { + "#": 4844 + }, + "torque": 0, + "positionImpulse": { + "#": 4845 + }, + "constraintImpulse": { + "#": 4846 + }, + "totalContacts": 0, + "speed": 1.3661, + "angularSpeed": 0, + "velocity": { + "#": 4847 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4848 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4849 + }, + "bounds": { + "#": 4851 + }, + "positionPrev": { + "#": 4854 + }, + "anglePrev": 0, + "axes": { + "#": 4855 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4836 + }, + "sleepCounter": 0, + "region": { + "#": 4858 + } + }, + [ + { + "#": 4836 + } + ], + [ + { + "#": 4839 + }, + { + "#": 4840 + }, + { + "#": 4841 + }, + { + "#": 4842 + } + ], + { + "x": 370, + "y": 446.41081, + "index": 0, + "body": { + "#": 4836 + }, + "isInternal": false + }, + { + "x": 405, + "y": 446.41081, + "index": 1, + "body": { + "#": 4836 + }, + "isInternal": false + }, + { + "x": 405, + "y": 481.41081, + "index": 2, + "body": { + "#": 4836 + }, + "isInternal": false + }, + { + "x": 370, + "y": 481.41081, + "index": 3, + "body": { + "#": 4836 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 463.91081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.79212 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4850 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4852 + }, + "max": { + "#": 4853 + } + }, + { + "x": 370, + "y": 446.41081 + }, + { + "x": 405, + "y": 482.77691 + }, + { + "x": 387.5, + "y": 462.89659 + }, + [ + { + "#": 4856 + }, + { + "#": 4857 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,9,10", + "startCol": 7, + "endCol": 8, + "startRow": 9, + "endRow": 10 + }, + { + "id": 212, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4860 + }, + "angle": 0, + "vertices": { + "#": 4861 + }, + "position": { + "#": 4866 + }, + "force": { + "#": 4867 + }, + "torque": 0, + "positionImpulse": { + "#": 4868 + }, + "constraintImpulse": { + "#": 4869 + }, + "totalContacts": 0, + "speed": 1.3661, + "angularSpeed": 0, + "velocity": { + "#": 4870 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4871 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4872 + }, + "bounds": { + "#": 4874 + }, + "positionPrev": { + "#": 4877 + }, + "anglePrev": 0, + "axes": { + "#": 4878 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4859 + }, + "sleepCounter": 0, + "region": { + "#": 4881 + } + }, + [ + { + "#": 4859 + } + ], + [ + { + "#": 4862 + }, + { + "#": 4863 + }, + { + "#": 4864 + }, + { + "#": 4865 + } + ], + { + "x": 405, + "y": 446.41081, + "index": 0, + "body": { + "#": 4859 + }, + "isInternal": false + }, + { + "x": 440, + "y": 446.41081, + "index": 1, + "body": { + "#": 4859 + }, + "isInternal": false + }, + { + "x": 440, + "y": 481.41081, + "index": 2, + "body": { + "#": 4859 + }, + "isInternal": false + }, + { + "x": 405, + "y": 481.41081, + "index": 3, + "body": { + "#": 4859 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 463.91081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.79212 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4873 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4875 + }, + "max": { + "#": 4876 + } + }, + { + "x": 405, + "y": 446.41081 + }, + { + "x": 440, + "y": 482.77691 + }, + { + "x": 422.5, + "y": 462.89659 + }, + [ + { + "#": 4879 + }, + { + "#": 4880 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,9,10", + "startCol": 8, + "endCol": 9, + "startRow": 9, + "endRow": 10 + }, + { + "id": 213, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4883 + }, + "angle": 0, + "vertices": { + "#": 4884 + }, + "position": { + "#": 4889 + }, + "force": { + "#": 4890 + }, + "torque": 0, + "positionImpulse": { + "#": 4891 + }, + "constraintImpulse": { + "#": 4892 + }, + "totalContacts": 0, + "speed": 1.3661, + "angularSpeed": 0, + "velocity": { + "#": 4893 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4894 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4895 + }, + "bounds": { + "#": 4897 + }, + "positionPrev": { + "#": 4900 + }, + "anglePrev": 0, + "axes": { + "#": 4901 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4882 + }, + "sleepCounter": 0, + "region": { + "#": 4904 + } + }, + [ + { + "#": 4882 + } + ], + [ + { + "#": 4885 + }, + { + "#": 4886 + }, + { + "#": 4887 + }, + { + "#": 4888 + } + ], + { + "x": 440, + "y": 446.41081, + "index": 0, + "body": { + "#": 4882 + }, + "isInternal": false + }, + { + "x": 475, + "y": 446.41081, + "index": 1, + "body": { + "#": 4882 + }, + "isInternal": false + }, + { + "x": 475, + "y": 481.41081, + "index": 2, + "body": { + "#": 4882 + }, + "isInternal": false + }, + { + "x": 440, + "y": 481.41081, + "index": 3, + "body": { + "#": 4882 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 463.91081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.79212 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4896 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4898 + }, + "max": { + "#": 4899 + } + }, + { + "x": 440, + "y": 446.41081 + }, + { + "x": 475, + "y": 482.77691 + }, + { + "x": 457.5, + "y": 462.89659 + }, + [ + { + "#": 4902 + }, + { + "#": 4903 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,9,10", + "startCol": 9, + "endCol": 9, + "startRow": 9, + "endRow": 10 + }, + { + "id": 214, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4906 + }, + "angle": 0, + "vertices": { + "#": 4907 + }, + "position": { + "#": 4912 + }, + "force": { + "#": 4913 + }, + "torque": 0, + "positionImpulse": { + "#": 4914 + }, + "constraintImpulse": { + "#": 4915 + }, + "totalContacts": 0, + "speed": 1.3661, + "angularSpeed": 0, + "velocity": { + "#": 4916 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4917 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4918 + }, + "bounds": { + "#": 4920 + }, + "positionPrev": { + "#": 4923 + }, + "anglePrev": 0, + "axes": { + "#": 4924 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4905 + }, + "sleepCounter": 0, + "region": { + "#": 4927 + } + }, + [ + { + "#": 4905 + } + ], + [ + { + "#": 4908 + }, + { + "#": 4909 + }, + { + "#": 4910 + }, + { + "#": 4911 + } + ], + { + "x": 475, + "y": 446.41081, + "index": 0, + "body": { + "#": 4905 + }, + "isInternal": false + }, + { + "x": 510, + "y": 446.41081, + "index": 1, + "body": { + "#": 4905 + }, + "isInternal": false + }, + { + "x": 510, + "y": 481.41081, + "index": 2, + "body": { + "#": 4905 + }, + "isInternal": false + }, + { + "x": 475, + "y": 481.41081, + "index": 3, + "body": { + "#": 4905 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 463.91081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.79212 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4919 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4921 + }, + "max": { + "#": 4922 + } + }, + { + "x": 475, + "y": 446.41081 + }, + { + "x": 510, + "y": 482.77691 + }, + { + "x": 492.5, + "y": 462.89659 + }, + [ + { + "#": 4925 + }, + { + "#": 4926 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,9,10", + "startCol": 9, + "endCol": 10, + "startRow": 9, + "endRow": 10 + }, + { + "id": 215, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4929 + }, + "angle": 0, + "vertices": { + "#": 4930 + }, + "position": { + "#": 4935 + }, + "force": { + "#": 4936 + }, + "torque": 0, + "positionImpulse": { + "#": 4937 + }, + "constraintImpulse": { + "#": 4938 + }, + "totalContacts": 0, + "speed": 1.3661, + "angularSpeed": 0, + "velocity": { + "#": 4939 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4940 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4941 + }, + "bounds": { + "#": 4943 + }, + "positionPrev": { + "#": 4946 + }, + "anglePrev": 0, + "axes": { + "#": 4947 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4928 + }, + "sleepCounter": 0, + "region": { + "#": 4950 + } + }, + [ + { + "#": 4928 + } + ], + [ + { + "#": 4931 + }, + { + "#": 4932 + }, + { + "#": 4933 + }, + { + "#": 4934 + } + ], + { + "x": 510, + "y": 446.41081, + "index": 0, + "body": { + "#": 4928 + }, + "isInternal": false + }, + { + "x": 545, + "y": 446.41081, + "index": 1, + "body": { + "#": 4928 + }, + "isInternal": false + }, + { + "x": 545, + "y": 481.41081, + "index": 2, + "body": { + "#": 4928 + }, + "isInternal": false + }, + { + "x": 510, + "y": 481.41081, + "index": 3, + "body": { + "#": 4928 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 463.91081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.79212 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4942 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4944 + }, + "max": { + "#": 4945 + } + }, + { + "x": 510, + "y": 446.41081 + }, + { + "x": 545, + "y": 482.77691 + }, + { + "x": 527.5, + "y": 462.89659 + }, + [ + { + "#": 4948 + }, + { + "#": 4949 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,9,10", + "startCol": 10, + "endCol": 11, + "startRow": 9, + "endRow": 10 + }, + { + "id": 216, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4952 + }, + "angle": 0, + "vertices": { + "#": 4953 + }, + "position": { + "#": 4958 + }, + "force": { + "#": 4959 + }, + "torque": 0, + "positionImpulse": { + "#": 4960 + }, + "constraintImpulse": { + "#": 4961 + }, + "totalContacts": 0, + "speed": 1.3661, + "angularSpeed": 0, + "velocity": { + "#": 4962 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4963 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4964 + }, + "bounds": { + "#": 4966 + }, + "positionPrev": { + "#": 4969 + }, + "anglePrev": 0, + "axes": { + "#": 4970 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4951 + }, + "sleepCounter": 0, + "region": { + "#": 4973 + } + }, + [ + { + "#": 4951 + } + ], + [ + { + "#": 4954 + }, + { + "#": 4955 + }, + { + "#": 4956 + }, + { + "#": 4957 + } + ], + { + "x": 545, + "y": 446.41081, + "index": 0, + "body": { + "#": 4951 + }, + "isInternal": false + }, + { + "x": 580, + "y": 446.41081, + "index": 1, + "body": { + "#": 4951 + }, + "isInternal": false + }, + { + "x": 580, + "y": 481.41081, + "index": 2, + "body": { + "#": 4951 + }, + "isInternal": false + }, + { + "x": 545, + "y": 481.41081, + "index": 3, + "body": { + "#": 4951 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 463.91081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.79212 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4965 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4967 + }, + "max": { + "#": 4968 + } + }, + { + "x": 545, + "y": 446.41081 + }, + { + "x": 580, + "y": 482.77691 + }, + { + "x": 562.5, + "y": 462.89659 + }, + [ + { + "#": 4971 + }, + { + "#": 4972 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,9,10", + "startCol": 11, + "endCol": 12, + "startRow": 9, + "endRow": 10 + }, + { + "id": 217, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4975 + }, + "angle": 0, + "vertices": { + "#": 4976 + }, + "position": { + "#": 4981 + }, + "force": { + "#": 4982 + }, + "torque": 0, + "positionImpulse": { + "#": 4983 + }, + "constraintImpulse": { + "#": 4984 + }, + "totalContacts": 0, + "speed": 1.3661, + "angularSpeed": 0, + "velocity": { + "#": 4985 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4986 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4987 + }, + "bounds": { + "#": 4989 + }, + "positionPrev": { + "#": 4992 + }, + "anglePrev": 0, + "axes": { + "#": 4993 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4974 + }, + "sleepCounter": 0, + "region": { + "#": 4996 + } + }, + [ + { + "#": 4974 + } + ], + [ + { + "#": 4977 + }, + { + "#": 4978 + }, + { + "#": 4979 + }, + { + "#": 4980 + } + ], + { + "x": 580, + "y": 446.41081, + "index": 0, + "body": { + "#": 4974 + }, + "isInternal": false + }, + { + "x": 615, + "y": 446.41081, + "index": 1, + "body": { + "#": 4974 + }, + "isInternal": false + }, + { + "x": 615, + "y": 481.41081, + "index": 2, + "body": { + "#": 4974 + }, + "isInternal": false + }, + { + "x": 580, + "y": 481.41081, + "index": 3, + "body": { + "#": 4974 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 463.91081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.79212 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4988 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4990 + }, + "max": { + "#": 4991 + } + }, + { + "x": 580, + "y": 446.41081 + }, + { + "x": 615, + "y": 482.77691 + }, + { + "x": 597.5, + "y": 462.89659 + }, + [ + { + "#": 4994 + }, + { + "#": 4995 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,12,9,10", + "startCol": 12, + "endCol": 12, + "startRow": 9, + "endRow": 10 + }, + { + "id": 218, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4998 + }, + "angle": 0, + "vertices": { + "#": 4999 + }, + "position": { + "#": 5004 + }, + "force": { + "#": 5005 + }, + "torque": 0, + "positionImpulse": { + "#": 5006 + }, + "constraintImpulse": { + "#": 5007 + }, + "totalContacts": 0, + "speed": 1.3661, + "angularSpeed": 0, + "velocity": { + "#": 5008 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5009 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5010 + }, + "bounds": { + "#": 5012 + }, + "positionPrev": { + "#": 5015 + }, + "anglePrev": 0, + "axes": { + "#": 5016 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 4997 + }, + "sleepCounter": 0, + "region": { + "#": 5019 + } + }, + [ + { + "#": 4997 + } + ], + [ + { + "#": 5000 + }, + { + "#": 5001 + }, + { + "#": 5002 + }, + { + "#": 5003 + } + ], + { + "x": 615, + "y": 446.41081, + "index": 0, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 650, + "y": 446.41081, + "index": 1, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 650, + "y": 481.41081, + "index": 2, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 615, + "y": 481.41081, + "index": 3, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 463.91081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.79212 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5011 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5013 + }, + "max": { + "#": 5014 + } + }, + { + "x": 615, + "y": 446.41081 + }, + { + "x": 650, + "y": 482.77691 + }, + { + "x": 632.5, + "y": 462.89659 + }, + [ + { + "#": 5017 + }, + { + "#": 5018 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,9,10", + "startCol": 12, + "endCol": 13, + "startRow": 9, + "endRow": 10 + }, + { + "id": 219, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5021 + }, + "angle": 0, + "vertices": { + "#": 5022 + }, + "position": { + "#": 5027 + }, + "force": { + "#": 5028 + }, + "torque": 0, + "positionImpulse": { + "#": 5029 + }, + "constraintImpulse": { + "#": 5030 + }, + "totalContacts": 0, + "speed": 1.3661, + "angularSpeed": 0, + "velocity": { + "#": 5031 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5032 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5033 + }, + "bounds": { + "#": 5035 + }, + "positionPrev": { + "#": 5038 + }, + "anglePrev": 0, + "axes": { + "#": 5039 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5020 + }, + "sleepCounter": 0, + "region": { + "#": 5042 + } + }, + [ + { + "#": 5020 + } + ], + [ + { + "#": 5023 + }, + { + "#": 5024 + }, + { + "#": 5025 + }, + { + "#": 5026 + } + ], + { + "x": 650, + "y": 446.41081, + "index": 0, + "body": { + "#": 5020 + }, + "isInternal": false + }, + { + "x": 685, + "y": 446.41081, + "index": 1, + "body": { + "#": 5020 + }, + "isInternal": false + }, + { + "x": 685, + "y": 481.41081, + "index": 2, + "body": { + "#": 5020 + }, + "isInternal": false + }, + { + "x": 650, + "y": 481.41081, + "index": 3, + "body": { + "#": 5020 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 463.91081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.79212 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5034 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5036 + }, + "max": { + "#": 5037 + } + }, + { + "x": 650, + "y": 446.41081 + }, + { + "x": 685, + "y": 482.77691 + }, + { + "x": 667.5, + "y": 462.89659 + }, + [ + { + "#": 5040 + }, + { + "#": 5041 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,9,10", + "startCol": 13, + "endCol": 14, + "startRow": 9, + "endRow": 10 + }, + { + "id": 220, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5044 + }, + "angle": 0, + "vertices": { + "#": 5045 + }, + "position": { + "#": 5050 + }, + "force": { + "#": 5051 + }, + "torque": 0, + "positionImpulse": { + "#": 5052 + }, + "constraintImpulse": { + "#": 5053 + }, + "totalContacts": 0, + "speed": 1.3661, + "angularSpeed": 0, + "velocity": { + "#": 5054 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5055 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5056 + }, + "bounds": { + "#": 5058 + }, + "positionPrev": { + "#": 5061 + }, + "anglePrev": 0, + "axes": { + "#": 5062 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5043 + }, + "sleepCounter": 0, + "region": { + "#": 5065 + } + }, + [ + { + "#": 5043 + } + ], + [ + { + "#": 5046 + }, + { + "#": 5047 + }, + { + "#": 5048 + }, + { + "#": 5049 + } + ], + { + "x": 685, + "y": 446.41081, + "index": 0, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 720, + "y": 446.41081, + "index": 1, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 720, + "y": 481.41081, + "index": 2, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 685, + "y": 481.41081, + "index": 3, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 463.91081 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.79212 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5057 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5059 + }, + "max": { + "#": 5060 + } + }, + { + "x": 685, + "y": 446.41081 + }, + { + "x": 720, + "y": 482.77691 + }, + { + "x": 702.5, + "y": 462.89659 + }, + [ + { + "#": 5063 + }, + { + "#": 5064 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,9,10", + "startCol": 14, + "endCol": 15, + "startRow": 9, + "endRow": 10 + }, + { + "id": 221, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5067 + }, + "angle": 0, + "vertices": { + "#": 5068 + }, + "position": { + "#": 5073 + }, + "force": { + "#": 5074 + }, + "torque": 0, + "positionImpulse": { + "#": 5075 + }, + "constraintImpulse": { + "#": 5076 + }, + "totalContacts": 0, + "speed": 1.07489, + "angularSpeed": 0, + "velocity": { + "#": 5077 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5078 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5079 + }, + "bounds": { + "#": 5081 + }, + "positionPrev": { + "#": 5084 + }, + "anglePrev": 0, + "axes": { + "#": 5085 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5066 + }, + "sleepCounter": 0, + "region": { + "#": 5088 + } + }, + [ + { + "#": 5066 + } + ], + [ + { + "#": 5069 + }, + { + "#": 5070 + }, + { + "#": 5071 + }, + { + "#": 5072 + } + ], + { + "x": 90, + "y": 479.75995, + "index": 0, + "body": { + "#": 5066 + }, + "isInternal": false + }, + { + "x": 125, + "y": 479.75995, + "index": 1, + "body": { + "#": 5066 + }, + "isInternal": false + }, + { + "x": 125, + "y": 514.75995, + "index": 2, + "body": { + "#": 5066 + }, + "isInternal": false + }, + { + "x": 90, + "y": 514.75995, + "index": 3, + "body": { + "#": 5066 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 497.25995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.446 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5080 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5082 + }, + "max": { + "#": 5083 + } + }, + { + "x": 90, + "y": 479.75995 + }, + { + "x": 125, + "y": 515.83484 + }, + { + "x": 107.5, + "y": 496.61617 + }, + [ + { + "#": 5086 + }, + { + "#": 5087 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "1,2,10,10", + "startCol": 1, + "endCol": 2, + "startRow": 10, + "endRow": 10 + }, + { + "id": 222, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5090 + }, + "angle": 0, + "vertices": { + "#": 5091 + }, + "position": { + "#": 5096 + }, + "force": { + "#": 5097 + }, + "torque": 0, + "positionImpulse": { + "#": 5098 + }, + "constraintImpulse": { + "#": 5099 + }, + "totalContacts": 0, + "speed": 1.07489, + "angularSpeed": 0, + "velocity": { + "#": 5100 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5101 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5102 + }, + "bounds": { + "#": 5104 + }, + "positionPrev": { + "#": 5107 + }, + "anglePrev": 0, + "axes": { + "#": 5108 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5089 + }, + "sleepCounter": 0, + "region": { + "#": 5111 + } + }, + [ + { + "#": 5089 + } + ], + [ + { + "#": 5092 + }, + { + "#": 5093 + }, + { + "#": 5094 + }, + { + "#": 5095 + } + ], + { + "x": 125, + "y": 479.75995, + "index": 0, + "body": { + "#": 5089 + }, + "isInternal": false + }, + { + "x": 160, + "y": 479.75995, + "index": 1, + "body": { + "#": 5089 + }, + "isInternal": false + }, + { + "x": 160, + "y": 514.75995, + "index": 2, + "body": { + "#": 5089 + }, + "isInternal": false + }, + { + "x": 125, + "y": 514.75995, + "index": 3, + "body": { + "#": 5089 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 497.25995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.446 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5103 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5105 + }, + "max": { + "#": 5106 + } + }, + { + "x": 125, + "y": 479.75995 + }, + { + "x": 160, + "y": 515.83484 + }, + { + "x": 142.5, + "y": 496.61617 + }, + [ + { + "#": 5109 + }, + { + "#": 5110 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,10,10", + "startCol": 2, + "endCol": 3, + "startRow": 10, + "endRow": 10 + }, + { + "id": 223, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5113 + }, + "angle": 0, + "vertices": { + "#": 5114 + }, + "position": { + "#": 5119 + }, + "force": { + "#": 5120 + }, + "torque": 0, + "positionImpulse": { + "#": 5121 + }, + "constraintImpulse": { + "#": 5122 + }, + "totalContacts": 0, + "speed": 1.07489, + "angularSpeed": 0, + "velocity": { + "#": 5123 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5124 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5125 + }, + "bounds": { + "#": 5127 + }, + "positionPrev": { + "#": 5130 + }, + "anglePrev": 0, + "axes": { + "#": 5131 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5112 + }, + "sleepCounter": 0, + "region": { + "#": 5134 + } + }, + [ + { + "#": 5112 + } + ], + [ + { + "#": 5115 + }, + { + "#": 5116 + }, + { + "#": 5117 + }, + { + "#": 5118 + } + ], + { + "x": 160, + "y": 479.75995, + "index": 0, + "body": { + "#": 5112 + }, + "isInternal": false + }, + { + "x": 195, + "y": 479.75995, + "index": 1, + "body": { + "#": 5112 + }, + "isInternal": false + }, + { + "x": 195, + "y": 514.75995, + "index": 2, + "body": { + "#": 5112 + }, + "isInternal": false + }, + { + "x": 160, + "y": 514.75995, + "index": 3, + "body": { + "#": 5112 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 497.25995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.446 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5126 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5128 + }, + "max": { + "#": 5129 + } + }, + { + "x": 160, + "y": 479.75995 + }, + { + "x": 195, + "y": 515.83484 + }, + { + "x": 177.5, + "y": 496.61617 + }, + [ + { + "#": 5132 + }, + { + "#": 5133 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,10,10", + "startCol": 3, + "endCol": 4, + "startRow": 10, + "endRow": 10 + }, + { + "id": 224, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5136 + }, + "angle": 0, + "vertices": { + "#": 5137 + }, + "position": { + "#": 5142 + }, + "force": { + "#": 5143 + }, + "torque": 0, + "positionImpulse": { + "#": 5144 + }, + "constraintImpulse": { + "#": 5145 + }, + "totalContacts": 0, + "speed": 1.07489, + "angularSpeed": 0, + "velocity": { + "#": 5146 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5147 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5148 + }, + "bounds": { + "#": 5150 + }, + "positionPrev": { + "#": 5153 + }, + "anglePrev": 0, + "axes": { + "#": 5154 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5135 + }, + "sleepCounter": 0, + "region": { + "#": 5157 + } + }, + [ + { + "#": 5135 + } + ], + [ + { + "#": 5138 + }, + { + "#": 5139 + }, + { + "#": 5140 + }, + { + "#": 5141 + } + ], + { + "x": 195, + "y": 479.75995, + "index": 0, + "body": { + "#": 5135 + }, + "isInternal": false + }, + { + "x": 230, + "y": 479.75995, + "index": 1, + "body": { + "#": 5135 + }, + "isInternal": false + }, + { + "x": 230, + "y": 514.75995, + "index": 2, + "body": { + "#": 5135 + }, + "isInternal": false + }, + { + "x": 195, + "y": 514.75995, + "index": 3, + "body": { + "#": 5135 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 497.25995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.446 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5149 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5151 + }, + "max": { + "#": 5152 + } + }, + { + "x": 195, + "y": 479.75995 + }, + { + "x": 230, + "y": 515.83484 + }, + { + "x": 212.5, + "y": 496.61617 + }, + [ + { + "#": 5155 + }, + { + "#": 5156 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,10,10", + "startCol": 4, + "endCol": 4, + "startRow": 10, + "endRow": 10 + }, + { + "id": 225, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5159 + }, + "angle": 0, + "vertices": { + "#": 5160 + }, + "position": { + "#": 5165 + }, + "force": { + "#": 5166 + }, + "torque": 0, + "positionImpulse": { + "#": 5167 + }, + "constraintImpulse": { + "#": 5168 + }, + "totalContacts": 0, + "speed": 1.07489, + "angularSpeed": 0, + "velocity": { + "#": 5169 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5170 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5171 + }, + "bounds": { + "#": 5173 + }, + "positionPrev": { + "#": 5176 + }, + "anglePrev": 0, + "axes": { + "#": 5177 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5158 + }, + "sleepCounter": 0, + "region": { + "#": 5180 + } + }, + [ + { + "#": 5158 + } + ], + [ + { + "#": 5161 + }, + { + "#": 5162 + }, + { + "#": 5163 + }, + { + "#": 5164 + } + ], + { + "x": 230, + "y": 479.75995, + "index": 0, + "body": { + "#": 5158 + }, + "isInternal": false + }, + { + "x": 265, + "y": 479.75995, + "index": 1, + "body": { + "#": 5158 + }, + "isInternal": false + }, + { + "x": 265, + "y": 514.75995, + "index": 2, + "body": { + "#": 5158 + }, + "isInternal": false + }, + { + "x": 230, + "y": 514.75995, + "index": 3, + "body": { + "#": 5158 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 497.25995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.446 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5172 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5174 + }, + "max": { + "#": 5175 + } + }, + { + "x": 230, + "y": 479.75995 + }, + { + "x": 265, + "y": 515.83484 + }, + { + "x": 247.5, + "y": 496.61617 + }, + [ + { + "#": 5178 + }, + { + "#": 5179 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,10,10", + "startCol": 4, + "endCol": 5, + "startRow": 10, + "endRow": 10 + }, + { + "id": 226, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5182 + }, + "angle": 0, + "vertices": { + "#": 5183 + }, + "position": { + "#": 5188 + }, + "force": { + "#": 5189 + }, + "torque": 0, + "positionImpulse": { + "#": 5190 + }, + "constraintImpulse": { + "#": 5191 + }, + "totalContacts": 0, + "speed": 1.07489, + "angularSpeed": 0, + "velocity": { + "#": 5192 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5193 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5194 + }, + "bounds": { + "#": 5196 + }, + "positionPrev": { + "#": 5199 + }, + "anglePrev": 0, + "axes": { + "#": 5200 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5181 + }, + "sleepCounter": 0, + "region": { + "#": 5203 + } + }, + [ + { + "#": 5181 + } + ], + [ + { + "#": 5184 + }, + { + "#": 5185 + }, + { + "#": 5186 + }, + { + "#": 5187 + } + ], + { + "x": 265, + "y": 479.75995, + "index": 0, + "body": { + "#": 5181 + }, + "isInternal": false + }, + { + "x": 300, + "y": 479.75995, + "index": 1, + "body": { + "#": 5181 + }, + "isInternal": false + }, + { + "x": 300, + "y": 514.75995, + "index": 2, + "body": { + "#": 5181 + }, + "isInternal": false + }, + { + "x": 265, + "y": 514.75995, + "index": 3, + "body": { + "#": 5181 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 497.25995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.446 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5195 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5197 + }, + "max": { + "#": 5198 + } + }, + { + "x": 265, + "y": 479.75995 + }, + { + "x": 300, + "y": 515.83484 + }, + { + "x": 282.5, + "y": 496.61617 + }, + [ + { + "#": 5201 + }, + { + "#": 5202 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,10,10", + "startCol": 5, + "endCol": 6, + "startRow": 10, + "endRow": 10 + }, + { + "id": 227, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5205 + }, + "angle": 0, + "vertices": { + "#": 5206 + }, + "position": { + "#": 5211 + }, + "force": { + "#": 5212 + }, + "torque": 0, + "positionImpulse": { + "#": 5213 + }, + "constraintImpulse": { + "#": 5214 + }, + "totalContacts": 0, + "speed": 1.07489, + "angularSpeed": 0, + "velocity": { + "#": 5215 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5216 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5217 + }, + "bounds": { + "#": 5219 + }, + "positionPrev": { + "#": 5222 + }, + "anglePrev": 0, + "axes": { + "#": 5223 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5204 + }, + "sleepCounter": 0, + "region": { + "#": 5226 + } + }, + [ + { + "#": 5204 + } + ], + [ + { + "#": 5207 + }, + { + "#": 5208 + }, + { + "#": 5209 + }, + { + "#": 5210 + } + ], + { + "x": 300, + "y": 479.75995, + "index": 0, + "body": { + "#": 5204 + }, + "isInternal": false + }, + { + "x": 335, + "y": 479.75995, + "index": 1, + "body": { + "#": 5204 + }, + "isInternal": false + }, + { + "x": 335, + "y": 514.75995, + "index": 2, + "body": { + "#": 5204 + }, + "isInternal": false + }, + { + "x": 300, + "y": 514.75995, + "index": 3, + "body": { + "#": 5204 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 497.25995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.446 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5218 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5220 + }, + "max": { + "#": 5221 + } + }, + { + "x": 300, + "y": 479.75995 + }, + { + "x": 335, + "y": 515.83484 + }, + { + "x": 317.5, + "y": 496.61617 + }, + [ + { + "#": 5224 + }, + { + "#": 5225 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,10,10", + "startCol": 6, + "endCol": 6, + "startRow": 10, + "endRow": 10 + }, + { + "id": 228, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5228 + }, + "angle": 0, + "vertices": { + "#": 5229 + }, + "position": { + "#": 5234 + }, + "force": { + "#": 5235 + }, + "torque": 0, + "positionImpulse": { + "#": 5236 + }, + "constraintImpulse": { + "#": 5237 + }, + "totalContacts": 0, + "speed": 1.07489, + "angularSpeed": 0, + "velocity": { + "#": 5238 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5239 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5240 + }, + "bounds": { + "#": 5242 + }, + "positionPrev": { + "#": 5245 + }, + "anglePrev": 0, + "axes": { + "#": 5246 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5227 + }, + "sleepCounter": 0, + "region": { + "#": 5249 + } + }, + [ + { + "#": 5227 + } + ], + [ + { + "#": 5230 + }, + { + "#": 5231 + }, + { + "#": 5232 + }, + { + "#": 5233 + } + ], + { + "x": 335, + "y": 479.75995, + "index": 0, + "body": { + "#": 5227 + }, + "isInternal": false + }, + { + "x": 370, + "y": 479.75995, + "index": 1, + "body": { + "#": 5227 + }, + "isInternal": false + }, + { + "x": 370, + "y": 514.75995, + "index": 2, + "body": { + "#": 5227 + }, + "isInternal": false + }, + { + "x": 335, + "y": 514.75995, + "index": 3, + "body": { + "#": 5227 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 497.25995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.446 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5241 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5243 + }, + "max": { + "#": 5244 + } + }, + { + "x": 335, + "y": 479.75995 + }, + { + "x": 370, + "y": 515.83484 + }, + { + "x": 352.5, + "y": 496.61617 + }, + [ + { + "#": 5247 + }, + { + "#": 5248 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,10,10", + "startCol": 6, + "endCol": 7, + "startRow": 10, + "endRow": 10 + }, + { + "id": 229, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5251 + }, + "angle": 0, + "vertices": { + "#": 5252 + }, + "position": { + "#": 5257 + }, + "force": { + "#": 5258 + }, + "torque": 0, + "positionImpulse": { + "#": 5259 + }, + "constraintImpulse": { + "#": 5260 + }, + "totalContacts": 0, + "speed": 1.07489, + "angularSpeed": 0, + "velocity": { + "#": 5261 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5262 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5263 + }, + "bounds": { + "#": 5265 + }, + "positionPrev": { + "#": 5268 + }, + "anglePrev": 0, + "axes": { + "#": 5269 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5250 + }, + "sleepCounter": 0, + "region": { + "#": 5272 + } + }, + [ + { + "#": 5250 + } + ], + [ + { + "#": 5253 + }, + { + "#": 5254 + }, + { + "#": 5255 + }, + { + "#": 5256 + } + ], + { + "x": 370, + "y": 479.75995, + "index": 0, + "body": { + "#": 5250 + }, + "isInternal": false + }, + { + "x": 405, + "y": 479.75995, + "index": 1, + "body": { + "#": 5250 + }, + "isInternal": false + }, + { + "x": 405, + "y": 514.75995, + "index": 2, + "body": { + "#": 5250 + }, + "isInternal": false + }, + { + "x": 370, + "y": 514.75995, + "index": 3, + "body": { + "#": 5250 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 497.25995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.446 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5264 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5266 + }, + "max": { + "#": 5267 + } + }, + { + "x": 370, + "y": 479.75995 + }, + { + "x": 405, + "y": 515.83484 + }, + { + "x": 387.5, + "y": 496.61617 + }, + [ + { + "#": 5270 + }, + { + "#": 5271 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,10,10", + "startCol": 7, + "endCol": 8, + "startRow": 10, + "endRow": 10 + }, + { + "id": 230, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5274 + }, + "angle": 0, + "vertices": { + "#": 5275 + }, + "position": { + "#": 5280 + }, + "force": { + "#": 5281 + }, + "torque": 0, + "positionImpulse": { + "#": 5282 + }, + "constraintImpulse": { + "#": 5283 + }, + "totalContacts": 0, + "speed": 1.07489, + "angularSpeed": 0, + "velocity": { + "#": 5284 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5285 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5286 + }, + "bounds": { + "#": 5288 + }, + "positionPrev": { + "#": 5291 + }, + "anglePrev": 0, + "axes": { + "#": 5292 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5273 + }, + "sleepCounter": 0, + "region": { + "#": 5295 + } + }, + [ + { + "#": 5273 + } + ], + [ + { + "#": 5276 + }, + { + "#": 5277 + }, + { + "#": 5278 + }, + { + "#": 5279 + } + ], + { + "x": 405, + "y": 479.75995, + "index": 0, + "body": { + "#": 5273 + }, + "isInternal": false + }, + { + "x": 440, + "y": 479.75995, + "index": 1, + "body": { + "#": 5273 + }, + "isInternal": false + }, + { + "x": 440, + "y": 514.75995, + "index": 2, + "body": { + "#": 5273 + }, + "isInternal": false + }, + { + "x": 405, + "y": 514.75995, + "index": 3, + "body": { + "#": 5273 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 497.25995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.446 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5287 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5289 + }, + "max": { + "#": 5290 + } + }, + { + "x": 405, + "y": 479.75995 + }, + { + "x": 440, + "y": 515.83484 + }, + { + "x": 422.5, + "y": 496.61617 + }, + [ + { + "#": 5293 + }, + { + "#": 5294 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,10,10", + "startCol": 8, + "endCol": 9, + "startRow": 10, + "endRow": 10 + }, + { + "id": 231, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5297 + }, + "angle": 0, + "vertices": { + "#": 5298 + }, + "position": { + "#": 5303 + }, + "force": { + "#": 5304 + }, + "torque": 0, + "positionImpulse": { + "#": 5305 + }, + "constraintImpulse": { + "#": 5306 + }, + "totalContacts": 0, + "speed": 1.07489, + "angularSpeed": 0, + "velocity": { + "#": 5307 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5308 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5309 + }, + "bounds": { + "#": 5311 + }, + "positionPrev": { + "#": 5314 + }, + "anglePrev": 0, + "axes": { + "#": 5315 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5296 + }, + "sleepCounter": 0, + "region": { + "#": 5318 + } + }, + [ + { + "#": 5296 + } + ], + [ + { + "#": 5299 + }, + { + "#": 5300 + }, + { + "#": 5301 + }, + { + "#": 5302 + } + ], + { + "x": 440, + "y": 479.75995, + "index": 0, + "body": { + "#": 5296 + }, + "isInternal": false + }, + { + "x": 475, + "y": 479.75995, + "index": 1, + "body": { + "#": 5296 + }, + "isInternal": false + }, + { + "x": 475, + "y": 514.75995, + "index": 2, + "body": { + "#": 5296 + }, + "isInternal": false + }, + { + "x": 440, + "y": 514.75995, + "index": 3, + "body": { + "#": 5296 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 497.25995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.446 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5310 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5312 + }, + "max": { + "#": 5313 + } + }, + { + "x": 440, + "y": 479.75995 + }, + { + "x": 475, + "y": 515.83484 + }, + { + "x": 457.5, + "y": 496.61617 + }, + [ + { + "#": 5316 + }, + { + "#": 5317 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,10,10", + "startCol": 9, + "endCol": 9, + "startRow": 10, + "endRow": 10 + }, + { + "id": 232, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5320 + }, + "angle": 0, + "vertices": { + "#": 5321 + }, + "position": { + "#": 5326 + }, + "force": { + "#": 5327 + }, + "torque": 0, + "positionImpulse": { + "#": 5328 + }, + "constraintImpulse": { + "#": 5329 + }, + "totalContacts": 0, + "speed": 1.07489, + "angularSpeed": 0, + "velocity": { + "#": 5330 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5331 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5332 + }, + "bounds": { + "#": 5334 + }, + "positionPrev": { + "#": 5337 + }, + "anglePrev": 0, + "axes": { + "#": 5338 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5319 + }, + "sleepCounter": 0, + "region": { + "#": 5341 + } + }, + [ + { + "#": 5319 + } + ], + [ + { + "#": 5322 + }, + { + "#": 5323 + }, + { + "#": 5324 + }, + { + "#": 5325 + } + ], + { + "x": 475, + "y": 479.75995, + "index": 0, + "body": { + "#": 5319 + }, + "isInternal": false + }, + { + "x": 510, + "y": 479.75995, + "index": 1, + "body": { + "#": 5319 + }, + "isInternal": false + }, + { + "x": 510, + "y": 514.75995, + "index": 2, + "body": { + "#": 5319 + }, + "isInternal": false + }, + { + "x": 475, + "y": 514.75995, + "index": 3, + "body": { + "#": 5319 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 497.25995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.446 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5333 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5335 + }, + "max": { + "#": 5336 + } + }, + { + "x": 475, + "y": 479.75995 + }, + { + "x": 510, + "y": 515.83484 + }, + { + "x": 492.5, + "y": 496.61617 + }, + [ + { + "#": 5339 + }, + { + "#": 5340 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,10,10", + "startCol": 9, + "endCol": 10, + "startRow": 10, + "endRow": 10 + }, + { + "id": 233, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5343 + }, + "angle": 0, + "vertices": { + "#": 5344 + }, + "position": { + "#": 5349 + }, + "force": { + "#": 5350 + }, + "torque": 0, + "positionImpulse": { + "#": 5351 + }, + "constraintImpulse": { + "#": 5352 + }, + "totalContacts": 0, + "speed": 1.07489, + "angularSpeed": 0, + "velocity": { + "#": 5353 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5354 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5355 + }, + "bounds": { + "#": 5357 + }, + "positionPrev": { + "#": 5360 + }, + "anglePrev": 0, + "axes": { + "#": 5361 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5342 + }, + "sleepCounter": 0, + "region": { + "#": 5364 + } + }, + [ + { + "#": 5342 + } + ], + [ + { + "#": 5345 + }, + { + "#": 5346 + }, + { + "#": 5347 + }, + { + "#": 5348 + } + ], + { + "x": 510, + "y": 479.75995, + "index": 0, + "body": { + "#": 5342 + }, + "isInternal": false + }, + { + "x": 545, + "y": 479.75995, + "index": 1, + "body": { + "#": 5342 + }, + "isInternal": false + }, + { + "x": 545, + "y": 514.75995, + "index": 2, + "body": { + "#": 5342 + }, + "isInternal": false + }, + { + "x": 510, + "y": 514.75995, + "index": 3, + "body": { + "#": 5342 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 497.25995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.446 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5356 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5358 + }, + "max": { + "#": 5359 + } + }, + { + "x": 510, + "y": 479.75995 + }, + { + "x": 545, + "y": 515.83484 + }, + { + "x": 527.5, + "y": 496.61617 + }, + [ + { + "#": 5362 + }, + { + "#": 5363 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,10,10", + "startCol": 10, + "endCol": 11, + "startRow": 10, + "endRow": 10 + }, + { + "id": 234, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5366 + }, + "angle": 0, + "vertices": { + "#": 5367 + }, + "position": { + "#": 5372 + }, + "force": { + "#": 5373 + }, + "torque": 0, + "positionImpulse": { + "#": 5374 + }, + "constraintImpulse": { + "#": 5375 + }, + "totalContacts": 0, + "speed": 1.07489, + "angularSpeed": 0, + "velocity": { + "#": 5376 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5377 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5378 + }, + "bounds": { + "#": 5380 + }, + "positionPrev": { + "#": 5383 + }, + "anglePrev": 0, + "axes": { + "#": 5384 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5365 + }, + "sleepCounter": 0, + "region": { + "#": 5387 + } + }, + [ + { + "#": 5365 + } + ], + [ + { + "#": 5368 + }, + { + "#": 5369 + }, + { + "#": 5370 + }, + { + "#": 5371 + } + ], + { + "x": 545, + "y": 479.75995, + "index": 0, + "body": { + "#": 5365 + }, + "isInternal": false + }, + { + "x": 580, + "y": 479.75995, + "index": 1, + "body": { + "#": 5365 + }, + "isInternal": false + }, + { + "x": 580, + "y": 514.75995, + "index": 2, + "body": { + "#": 5365 + }, + "isInternal": false + }, + { + "x": 545, + "y": 514.75995, + "index": 3, + "body": { + "#": 5365 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 497.25995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.446 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5379 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5381 + }, + "max": { + "#": 5382 + } + }, + { + "x": 545, + "y": 479.75995 + }, + { + "x": 580, + "y": 515.83484 + }, + { + "x": 562.5, + "y": 496.61617 + }, + [ + { + "#": 5385 + }, + { + "#": 5386 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,10,10", + "startCol": 11, + "endCol": 12, + "startRow": 10, + "endRow": 10 + }, + { + "id": 235, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5389 + }, + "angle": 0, + "vertices": { + "#": 5390 + }, + "position": { + "#": 5395 + }, + "force": { + "#": 5396 + }, + "torque": 0, + "positionImpulse": { + "#": 5397 + }, + "constraintImpulse": { + "#": 5398 + }, + "totalContacts": 0, + "speed": 1.07489, + "angularSpeed": 0, + "velocity": { + "#": 5399 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5400 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5401 + }, + "bounds": { + "#": 5403 + }, + "positionPrev": { + "#": 5406 + }, + "anglePrev": 0, + "axes": { + "#": 5407 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5388 + }, + "sleepCounter": 0, + "region": { + "#": 5410 + } + }, + [ + { + "#": 5388 + } + ], + [ + { + "#": 5391 + }, + { + "#": 5392 + }, + { + "#": 5393 + }, + { + "#": 5394 + } + ], + { + "x": 580, + "y": 479.75995, + "index": 0, + "body": { + "#": 5388 + }, + "isInternal": false + }, + { + "x": 615, + "y": 479.75995, + "index": 1, + "body": { + "#": 5388 + }, + "isInternal": false + }, + { + "x": 615, + "y": 514.75995, + "index": 2, + "body": { + "#": 5388 + }, + "isInternal": false + }, + { + "x": 580, + "y": 514.75995, + "index": 3, + "body": { + "#": 5388 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 497.25995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.446 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5402 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5404 + }, + "max": { + "#": 5405 + } + }, + { + "x": 580, + "y": 479.75995 + }, + { + "x": 615, + "y": 515.83484 + }, + { + "x": 597.5, + "y": 496.61617 + }, + [ + { + "#": 5408 + }, + { + "#": 5409 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,12,10,10", + "startCol": 12, + "endCol": 12, + "startRow": 10, + "endRow": 10 + }, + { + "id": 236, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5412 + }, + "angle": 0, + "vertices": { + "#": 5413 + }, + "position": { + "#": 5418 + }, + "force": { + "#": 5419 + }, + "torque": 0, + "positionImpulse": { + "#": 5420 + }, + "constraintImpulse": { + "#": 5421 + }, + "totalContacts": 0, + "speed": 1.07489, + "angularSpeed": 0, + "velocity": { + "#": 5422 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5423 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5424 + }, + "bounds": { + "#": 5426 + }, + "positionPrev": { + "#": 5429 + }, + "anglePrev": 0, + "axes": { + "#": 5430 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5411 + }, + "sleepCounter": 0, + "region": { + "#": 5433 + } + }, + [ + { + "#": 5411 + } + ], + [ + { + "#": 5414 + }, + { + "#": 5415 + }, + { + "#": 5416 + }, + { + "#": 5417 + } + ], + { + "x": 615, + "y": 479.75995, + "index": 0, + "body": { + "#": 5411 + }, + "isInternal": false + }, + { + "x": 650, + "y": 479.75995, + "index": 1, + "body": { + "#": 5411 + }, + "isInternal": false + }, + { + "x": 650, + "y": 514.75995, + "index": 2, + "body": { + "#": 5411 + }, + "isInternal": false + }, + { + "x": 615, + "y": 514.75995, + "index": 3, + "body": { + "#": 5411 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 497.25995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.446 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5425 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5427 + }, + "max": { + "#": 5428 + } + }, + { + "x": 615, + "y": 479.75995 + }, + { + "x": 650, + "y": 515.83484 + }, + { + "x": 632.5, + "y": 496.61617 + }, + [ + { + "#": 5431 + }, + { + "#": 5432 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,10,10", + "startCol": 12, + "endCol": 13, + "startRow": 10, + "endRow": 10 + }, + { + "id": 237, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5435 + }, + "angle": 0, + "vertices": { + "#": 5436 + }, + "position": { + "#": 5441 + }, + "force": { + "#": 5442 + }, + "torque": 0, + "positionImpulse": { + "#": 5443 + }, + "constraintImpulse": { + "#": 5444 + }, + "totalContacts": 0, + "speed": 1.07489, + "angularSpeed": 0, + "velocity": { + "#": 5445 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5446 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5447 + }, + "bounds": { + "#": 5449 + }, + "positionPrev": { + "#": 5452 + }, + "anglePrev": 0, + "axes": { + "#": 5453 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5434 + }, + "sleepCounter": 0, + "region": { + "#": 5456 + } + }, + [ + { + "#": 5434 + } + ], + [ + { + "#": 5437 + }, + { + "#": 5438 + }, + { + "#": 5439 + }, + { + "#": 5440 + } + ], + { + "x": 650, + "y": 479.75995, + "index": 0, + "body": { + "#": 5434 + }, + "isInternal": false + }, + { + "x": 685, + "y": 479.75995, + "index": 1, + "body": { + "#": 5434 + }, + "isInternal": false + }, + { + "x": 685, + "y": 514.75995, + "index": 2, + "body": { + "#": 5434 + }, + "isInternal": false + }, + { + "x": 650, + "y": 514.75995, + "index": 3, + "body": { + "#": 5434 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 497.25995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.446 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5448 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5450 + }, + "max": { + "#": 5451 + } + }, + { + "x": 650, + "y": 479.75995 + }, + { + "x": 685, + "y": 515.83484 + }, + { + "x": 667.5, + "y": 496.61617 + }, + [ + { + "#": 5454 + }, + { + "#": 5455 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,10,10", + "startCol": 13, + "endCol": 14, + "startRow": 10, + "endRow": 10 + }, + { + "id": 238, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5458 + }, + "angle": 0, + "vertices": { + "#": 5459 + }, + "position": { + "#": 5464 + }, + "force": { + "#": 5465 + }, + "torque": 0, + "positionImpulse": { + "#": 5466 + }, + "constraintImpulse": { + "#": 5467 + }, + "totalContacts": 0, + "speed": 1.07489, + "angularSpeed": 0, + "velocity": { + "#": 5468 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5469 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5470 + }, + "bounds": { + "#": 5472 + }, + "positionPrev": { + "#": 5475 + }, + "anglePrev": 0, + "axes": { + "#": 5476 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5457 + }, + "sleepCounter": 0, + "region": { + "#": 5479 + } + }, + [ + { + "#": 5457 + } + ], + [ + { + "#": 5460 + }, + { + "#": 5461 + }, + { + "#": 5462 + }, + { + "#": 5463 + } + ], + { + "x": 685, + "y": 479.75995, + "index": 0, + "body": { + "#": 5457 + }, + "isInternal": false + }, + { + "x": 720, + "y": 479.75995, + "index": 1, + "body": { + "#": 5457 + }, + "isInternal": false + }, + { + "x": 720, + "y": 514.75995, + "index": 2, + "body": { + "#": 5457 + }, + "isInternal": false + }, + { + "x": 685, + "y": 514.75995, + "index": 3, + "body": { + "#": 5457 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 497.25995 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.446 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5471 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5473 + }, + "max": { + "#": 5474 + } + }, + { + "x": 685, + "y": 479.75995 + }, + { + "x": 720, + "y": 515.83484 + }, + { + "x": 702.5, + "y": 496.61617 + }, + [ + { + "#": 5477 + }, + { + "#": 5478 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,10,10", + "startCol": 14, + "endCol": 15, + "startRow": 10, + "endRow": 10 + }, + { + "id": 239, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5481 + }, + "angle": 0, + "vertices": { + "#": 5482 + }, + "position": { + "#": 5487 + }, + "force": { + "#": 5488 + }, + "torque": 0, + "positionImpulse": { + "#": 5489 + }, + "constraintImpulse": { + "#": 5490 + }, + "totalContacts": 0, + "speed": 0.71716, + "angularSpeed": 0, + "velocity": { + "#": 5491 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5492 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5493 + }, + "bounds": { + "#": 5495 + }, + "positionPrev": { + "#": 5498 + }, + "anglePrev": 0, + "axes": { + "#": 5499 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5480 + }, + "sleepCounter": 0, + "region": { + "#": 5502 + } + }, + [ + { + "#": 5480 + } + ], + [ + { + "#": 5483 + }, + { + "#": 5484 + }, + { + "#": 5485 + }, + { + "#": 5486 + } + ], + { + "x": 90, + "y": 512.8698, + "index": 0, + "body": { + "#": 5480 + }, + "isInternal": false + }, + { + "x": 125, + "y": 512.8698, + "index": 1, + "body": { + "#": 5480 + }, + "isInternal": false + }, + { + "x": 125, + "y": 547.8698, + "index": 2, + "body": { + "#": 5480 + }, + "isInternal": false + }, + { + "x": 90, + "y": 547.8698, + "index": 3, + "body": { + "#": 5480 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 530.3698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.22553 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5494 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5496 + }, + "max": { + "#": 5497 + } + }, + { + "x": 90, + "y": 512.8698 + }, + { + "x": 125, + "y": 548.58696 + }, + { + "x": 107.5, + "y": 530.01829 + }, + [ + { + "#": 5500 + }, + { + "#": 5501 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "1,2,10,11", + "startCol": 1, + "endCol": 2, + "startRow": 10, + "endRow": 11 + }, + { + "id": 240, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5504 + }, + "angle": 0, + "vertices": { + "#": 5505 + }, + "position": { + "#": 5510 + }, + "force": { + "#": 5511 + }, + "torque": 0, + "positionImpulse": { + "#": 5512 + }, + "constraintImpulse": { + "#": 5513 + }, + "totalContacts": 0, + "speed": 0.71716, + "angularSpeed": 0, + "velocity": { + "#": 5514 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5515 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5516 + }, + "bounds": { + "#": 5518 + }, + "positionPrev": { + "#": 5521 + }, + "anglePrev": 0, + "axes": { + "#": 5522 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5503 + }, + "sleepCounter": 0, + "region": { + "#": 5525 + } + }, + [ + { + "#": 5503 + } + ], + [ + { + "#": 5506 + }, + { + "#": 5507 + }, + { + "#": 5508 + }, + { + "#": 5509 + } + ], + { + "x": 125, + "y": 512.8698, + "index": 0, + "body": { + "#": 5503 + }, + "isInternal": false + }, + { + "x": 160, + "y": 512.8698, + "index": 1, + "body": { + "#": 5503 + }, + "isInternal": false + }, + { + "x": 160, + "y": 547.8698, + "index": 2, + "body": { + "#": 5503 + }, + "isInternal": false + }, + { + "x": 125, + "y": 547.8698, + "index": 3, + "body": { + "#": 5503 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 530.3698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.22553 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5517 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5519 + }, + "max": { + "#": 5520 + } + }, + { + "x": 125, + "y": 512.8698 + }, + { + "x": 160, + "y": 548.58696 + }, + { + "x": 142.5, + "y": 530.01829 + }, + [ + { + "#": 5523 + }, + { + "#": 5524 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,10,11", + "startCol": 2, + "endCol": 3, + "startRow": 10, + "endRow": 11 + }, + { + "id": 241, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5527 + }, + "angle": 0, + "vertices": { + "#": 5528 + }, + "position": { + "#": 5533 + }, + "force": { + "#": 5534 + }, + "torque": 0, + "positionImpulse": { + "#": 5535 + }, + "constraintImpulse": { + "#": 5536 + }, + "totalContacts": 0, + "speed": 0.71716, + "angularSpeed": 0, + "velocity": { + "#": 5537 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5538 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5539 + }, + "bounds": { + "#": 5541 + }, + "positionPrev": { + "#": 5544 + }, + "anglePrev": 0, + "axes": { + "#": 5545 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5526 + }, + "sleepCounter": 0, + "region": { + "#": 5548 + } + }, + [ + { + "#": 5526 + } + ], + [ + { + "#": 5529 + }, + { + "#": 5530 + }, + { + "#": 5531 + }, + { + "#": 5532 + } + ], + { + "x": 160, + "y": 512.8698, + "index": 0, + "body": { + "#": 5526 + }, + "isInternal": false + }, + { + "x": 195, + "y": 512.8698, + "index": 1, + "body": { + "#": 5526 + }, + "isInternal": false + }, + { + "x": 195, + "y": 547.8698, + "index": 2, + "body": { + "#": 5526 + }, + "isInternal": false + }, + { + "x": 160, + "y": 547.8698, + "index": 3, + "body": { + "#": 5526 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 530.3698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.22553 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5540 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5542 + }, + "max": { + "#": 5543 + } + }, + { + "x": 160, + "y": 512.8698 + }, + { + "x": 195, + "y": 548.58696 + }, + { + "x": 177.5, + "y": 530.01829 + }, + [ + { + "#": 5546 + }, + { + "#": 5547 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,10,11", + "startCol": 3, + "endCol": 4, + "startRow": 10, + "endRow": 11 + }, + { + "id": 242, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5550 + }, + "angle": 0, + "vertices": { + "#": 5551 + }, + "position": { + "#": 5556 + }, + "force": { + "#": 5557 + }, + "torque": 0, + "positionImpulse": { + "#": 5558 + }, + "constraintImpulse": { + "#": 5559 + }, + "totalContacts": 0, + "speed": 0.71716, + "angularSpeed": 0, + "velocity": { + "#": 5560 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5561 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5562 + }, + "bounds": { + "#": 5564 + }, + "positionPrev": { + "#": 5567 + }, + "anglePrev": 0, + "axes": { + "#": 5568 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5549 + }, + "sleepCounter": 0, + "region": { + "#": 5571 + } + }, + [ + { + "#": 5549 + } + ], + [ + { + "#": 5552 + }, + { + "#": 5553 + }, + { + "#": 5554 + }, + { + "#": 5555 + } + ], + { + "x": 195, + "y": 512.8698, + "index": 0, + "body": { + "#": 5549 + }, + "isInternal": false + }, + { + "x": 230, + "y": 512.8698, + "index": 1, + "body": { + "#": 5549 + }, + "isInternal": false + }, + { + "x": 230, + "y": 547.8698, + "index": 2, + "body": { + "#": 5549 + }, + "isInternal": false + }, + { + "x": 195, + "y": 547.8698, + "index": 3, + "body": { + "#": 5549 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 530.3698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.22553 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5563 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5565 + }, + "max": { + "#": 5566 + } + }, + { + "x": 195, + "y": 512.8698 + }, + { + "x": 230, + "y": 548.58696 + }, + { + "x": 212.5, + "y": 530.01829 + }, + [ + { + "#": 5569 + }, + { + "#": 5570 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,10,11", + "startCol": 4, + "endCol": 4, + "startRow": 10, + "endRow": 11 + }, + { + "id": 243, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5573 + }, + "angle": 0, + "vertices": { + "#": 5574 + }, + "position": { + "#": 5579 + }, + "force": { + "#": 5580 + }, + "torque": 0, + "positionImpulse": { + "#": 5581 + }, + "constraintImpulse": { + "#": 5582 + }, + "totalContacts": 0, + "speed": 0.71716, + "angularSpeed": 0, + "velocity": { + "#": 5583 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5584 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5585 + }, + "bounds": { + "#": 5587 + }, + "positionPrev": { + "#": 5590 + }, + "anglePrev": 0, + "axes": { + "#": 5591 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5572 + }, + "sleepCounter": 0, + "region": { + "#": 5594 + } + }, + [ + { + "#": 5572 + } + ], + [ + { + "#": 5575 + }, + { + "#": 5576 + }, + { + "#": 5577 + }, + { + "#": 5578 + } + ], + { + "x": 230, + "y": 512.8698, + "index": 0, + "body": { + "#": 5572 + }, + "isInternal": false + }, + { + "x": 265, + "y": 512.8698, + "index": 1, + "body": { + "#": 5572 + }, + "isInternal": false + }, + { + "x": 265, + "y": 547.8698, + "index": 2, + "body": { + "#": 5572 + }, + "isInternal": false + }, + { + "x": 230, + "y": 547.8698, + "index": 3, + "body": { + "#": 5572 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 530.3698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.22553 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5586 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5588 + }, + "max": { + "#": 5589 + } + }, + { + "x": 230, + "y": 512.8698 + }, + { + "x": 265, + "y": 548.58696 + }, + { + "x": 247.5, + "y": 530.01829 + }, + [ + { + "#": 5592 + }, + { + "#": 5593 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,10,11", + "startCol": 4, + "endCol": 5, + "startRow": 10, + "endRow": 11 + }, + { + "id": 244, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5596 + }, + "angle": 0, + "vertices": { + "#": 5597 + }, + "position": { + "#": 5602 + }, + "force": { + "#": 5603 + }, + "torque": 0, + "positionImpulse": { + "#": 5604 + }, + "constraintImpulse": { + "#": 5605 + }, + "totalContacts": 0, + "speed": 0.71716, + "angularSpeed": 0, + "velocity": { + "#": 5606 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5607 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5608 + }, + "bounds": { + "#": 5610 + }, + "positionPrev": { + "#": 5613 + }, + "anglePrev": 0, + "axes": { + "#": 5614 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5595 + }, + "sleepCounter": 0, + "region": { + "#": 5617 + } + }, + [ + { + "#": 5595 + } + ], + [ + { + "#": 5598 + }, + { + "#": 5599 + }, + { + "#": 5600 + }, + { + "#": 5601 + } + ], + { + "x": 265, + "y": 512.8698, + "index": 0, + "body": { + "#": 5595 + }, + "isInternal": false + }, + { + "x": 300, + "y": 512.8698, + "index": 1, + "body": { + "#": 5595 + }, + "isInternal": false + }, + { + "x": 300, + "y": 547.8698, + "index": 2, + "body": { + "#": 5595 + }, + "isInternal": false + }, + { + "x": 265, + "y": 547.8698, + "index": 3, + "body": { + "#": 5595 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 530.3698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.22553 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5609 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5611 + }, + "max": { + "#": 5612 + } + }, + { + "x": 265, + "y": 512.8698 + }, + { + "x": 300, + "y": 548.58696 + }, + { + "x": 282.5, + "y": 530.01829 + }, + [ + { + "#": 5615 + }, + { + "#": 5616 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,10,11", + "startCol": 5, + "endCol": 6, + "startRow": 10, + "endRow": 11 + }, + { + "id": 245, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5619 + }, + "angle": 0, + "vertices": { + "#": 5620 + }, + "position": { + "#": 5625 + }, + "force": { + "#": 5626 + }, + "torque": 0, + "positionImpulse": { + "#": 5627 + }, + "constraintImpulse": { + "#": 5628 + }, + "totalContacts": 0, + "speed": 0.71716, + "angularSpeed": 0, + "velocity": { + "#": 5629 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5630 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5631 + }, + "bounds": { + "#": 5633 + }, + "positionPrev": { + "#": 5636 + }, + "anglePrev": 0, + "axes": { + "#": 5637 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5618 + }, + "sleepCounter": 0, + "region": { + "#": 5640 + } + }, + [ + { + "#": 5618 + } + ], + [ + { + "#": 5621 + }, + { + "#": 5622 + }, + { + "#": 5623 + }, + { + "#": 5624 + } + ], + { + "x": 300, + "y": 512.8698, + "index": 0, + "body": { + "#": 5618 + }, + "isInternal": false + }, + { + "x": 335, + "y": 512.8698, + "index": 1, + "body": { + "#": 5618 + }, + "isInternal": false + }, + { + "x": 335, + "y": 547.8698, + "index": 2, + "body": { + "#": 5618 + }, + "isInternal": false + }, + { + "x": 300, + "y": 547.8698, + "index": 3, + "body": { + "#": 5618 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 530.3698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.22553 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5632 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5634 + }, + "max": { + "#": 5635 + } + }, + { + "x": 300, + "y": 512.8698 + }, + { + "x": 335, + "y": 548.58696 + }, + { + "x": 317.5, + "y": 530.01829 + }, + [ + { + "#": 5638 + }, + { + "#": 5639 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,10,11", + "startCol": 6, + "endCol": 6, + "startRow": 10, + "endRow": 11 + }, + { + "id": 246, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5642 + }, + "angle": 0, + "vertices": { + "#": 5643 + }, + "position": { + "#": 5648 + }, + "force": { + "#": 5649 + }, + "torque": 0, + "positionImpulse": { + "#": 5650 + }, + "constraintImpulse": { + "#": 5651 + }, + "totalContacts": 0, + "speed": 0.71716, + "angularSpeed": 0, + "velocity": { + "#": 5652 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5653 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5654 + }, + "bounds": { + "#": 5656 + }, + "positionPrev": { + "#": 5659 + }, + "anglePrev": 0, + "axes": { + "#": 5660 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5641 + }, + "sleepCounter": 0, + "region": { + "#": 5663 + } + }, + [ + { + "#": 5641 + } + ], + [ + { + "#": 5644 + }, + { + "#": 5645 + }, + { + "#": 5646 + }, + { + "#": 5647 + } + ], + { + "x": 335, + "y": 512.8698, + "index": 0, + "body": { + "#": 5641 + }, + "isInternal": false + }, + { + "x": 370, + "y": 512.8698, + "index": 1, + "body": { + "#": 5641 + }, + "isInternal": false + }, + { + "x": 370, + "y": 547.8698, + "index": 2, + "body": { + "#": 5641 + }, + "isInternal": false + }, + { + "x": 335, + "y": 547.8698, + "index": 3, + "body": { + "#": 5641 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 530.3698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.22553 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5655 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5657 + }, + "max": { + "#": 5658 + } + }, + { + "x": 335, + "y": 512.8698 + }, + { + "x": 370, + "y": 548.58696 + }, + { + "x": 352.5, + "y": 530.01829 + }, + [ + { + "#": 5661 + }, + { + "#": 5662 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,10,11", + "startCol": 6, + "endCol": 7, + "startRow": 10, + "endRow": 11 + }, + { + "id": 247, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5665 + }, + "angle": 0, + "vertices": { + "#": 5666 + }, + "position": { + "#": 5671 + }, + "force": { + "#": 5672 + }, + "torque": 0, + "positionImpulse": { + "#": 5673 + }, + "constraintImpulse": { + "#": 5674 + }, + "totalContacts": 0, + "speed": 0.71716, + "angularSpeed": 0, + "velocity": { + "#": 5675 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5676 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5677 + }, + "bounds": { + "#": 5679 + }, + "positionPrev": { + "#": 5682 + }, + "anglePrev": 0, + "axes": { + "#": 5683 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5664 + }, + "sleepCounter": 0, + "region": { + "#": 5686 + } + }, + [ + { + "#": 5664 + } + ], + [ + { + "#": 5667 + }, + { + "#": 5668 + }, + { + "#": 5669 + }, + { + "#": 5670 + } + ], + { + "x": 370, + "y": 512.8698, + "index": 0, + "body": { + "#": 5664 + }, + "isInternal": false + }, + { + "x": 405, + "y": 512.8698, + "index": 1, + "body": { + "#": 5664 + }, + "isInternal": false + }, + { + "x": 405, + "y": 547.8698, + "index": 2, + "body": { + "#": 5664 + }, + "isInternal": false + }, + { + "x": 370, + "y": 547.8698, + "index": 3, + "body": { + "#": 5664 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 530.3698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.22553 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5678 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5680 + }, + "max": { + "#": 5681 + } + }, + { + "x": 370, + "y": 512.8698 + }, + { + "x": 405, + "y": 548.58696 + }, + { + "x": 387.5, + "y": 530.01829 + }, + [ + { + "#": 5684 + }, + { + "#": 5685 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,10,11", + "startCol": 7, + "endCol": 8, + "startRow": 10, + "endRow": 11 + }, + { + "id": 248, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5688 + }, + "angle": 0, + "vertices": { + "#": 5689 + }, + "position": { + "#": 5694 + }, + "force": { + "#": 5695 + }, + "torque": 0, + "positionImpulse": { + "#": 5696 + }, + "constraintImpulse": { + "#": 5697 + }, + "totalContacts": 0, + "speed": 0.71716, + "angularSpeed": 0, + "velocity": { + "#": 5698 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5699 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5700 + }, + "bounds": { + "#": 5702 + }, + "positionPrev": { + "#": 5705 + }, + "anglePrev": 0, + "axes": { + "#": 5706 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5687 + }, + "sleepCounter": 0, + "region": { + "#": 5709 + } + }, + [ + { + "#": 5687 + } + ], + [ + { + "#": 5690 + }, + { + "#": 5691 + }, + { + "#": 5692 + }, + { + "#": 5693 + } + ], + { + "x": 405, + "y": 512.8698, + "index": 0, + "body": { + "#": 5687 + }, + "isInternal": false + }, + { + "x": 440, + "y": 512.8698, + "index": 1, + "body": { + "#": 5687 + }, + "isInternal": false + }, + { + "x": 440, + "y": 547.8698, + "index": 2, + "body": { + "#": 5687 + }, + "isInternal": false + }, + { + "x": 405, + "y": 547.8698, + "index": 3, + "body": { + "#": 5687 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 530.3698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.22553 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5701 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5703 + }, + "max": { + "#": 5704 + } + }, + { + "x": 405, + "y": 512.8698 + }, + { + "x": 440, + "y": 548.58696 + }, + { + "x": 422.5, + "y": 530.01829 + }, + [ + { + "#": 5707 + }, + { + "#": 5708 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,10,11", + "startCol": 8, + "endCol": 9, + "startRow": 10, + "endRow": 11 + }, + { + "id": 249, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5711 + }, + "angle": 0, + "vertices": { + "#": 5712 + }, + "position": { + "#": 5717 + }, + "force": { + "#": 5718 + }, + "torque": 0, + "positionImpulse": { + "#": 5719 + }, + "constraintImpulse": { + "#": 5720 + }, + "totalContacts": 0, + "speed": 0.71716, + "angularSpeed": 0, + "velocity": { + "#": 5721 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5722 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5723 + }, + "bounds": { + "#": 5725 + }, + "positionPrev": { + "#": 5728 + }, + "anglePrev": 0, + "axes": { + "#": 5729 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5710 + }, + "sleepCounter": 0, + "region": { + "#": 5732 + } + }, + [ + { + "#": 5710 + } + ], + [ + { + "#": 5713 + }, + { + "#": 5714 + }, + { + "#": 5715 + }, + { + "#": 5716 + } + ], + { + "x": 440, + "y": 512.8698, + "index": 0, + "body": { + "#": 5710 + }, + "isInternal": false + }, + { + "x": 475, + "y": 512.8698, + "index": 1, + "body": { + "#": 5710 + }, + "isInternal": false + }, + { + "x": 475, + "y": 547.8698, + "index": 2, + "body": { + "#": 5710 + }, + "isInternal": false + }, + { + "x": 440, + "y": 547.8698, + "index": 3, + "body": { + "#": 5710 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 530.3698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.22553 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5724 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5726 + }, + "max": { + "#": 5727 + } + }, + { + "x": 440, + "y": 512.8698 + }, + { + "x": 475, + "y": 548.58696 + }, + { + "x": 457.5, + "y": 530.01829 + }, + [ + { + "#": 5730 + }, + { + "#": 5731 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,10,11", + "startCol": 9, + "endCol": 9, + "startRow": 10, + "endRow": 11 + }, + { + "id": 250, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5734 + }, + "angle": 0, + "vertices": { + "#": 5735 + }, + "position": { + "#": 5740 + }, + "force": { + "#": 5741 + }, + "torque": 0, + "positionImpulse": { + "#": 5742 + }, + "constraintImpulse": { + "#": 5743 + }, + "totalContacts": 0, + "speed": 0.71716, + "angularSpeed": 0, + "velocity": { + "#": 5744 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5745 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5746 + }, + "bounds": { + "#": 5748 + }, + "positionPrev": { + "#": 5751 + }, + "anglePrev": 0, + "axes": { + "#": 5752 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5733 + }, + "sleepCounter": 0, + "region": { + "#": 5755 + } + }, + [ + { + "#": 5733 + } + ], + [ + { + "#": 5736 + }, + { + "#": 5737 + }, + { + "#": 5738 + }, + { + "#": 5739 + } + ], + { + "x": 475, + "y": 512.8698, + "index": 0, + "body": { + "#": 5733 + }, + "isInternal": false + }, + { + "x": 510, + "y": 512.8698, + "index": 1, + "body": { + "#": 5733 + }, + "isInternal": false + }, + { + "x": 510, + "y": 547.8698, + "index": 2, + "body": { + "#": 5733 + }, + "isInternal": false + }, + { + "x": 475, + "y": 547.8698, + "index": 3, + "body": { + "#": 5733 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 530.3698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.22553 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5747 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5749 + }, + "max": { + "#": 5750 + } + }, + { + "x": 475, + "y": 512.8698 + }, + { + "x": 510, + "y": 548.58696 + }, + { + "x": 492.5, + "y": 530.01829 + }, + [ + { + "#": 5753 + }, + { + "#": 5754 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,10,11", + "startCol": 9, + "endCol": 10, + "startRow": 10, + "endRow": 11 + }, + { + "id": 251, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5757 + }, + "angle": 0, + "vertices": { + "#": 5758 + }, + "position": { + "#": 5763 + }, + "force": { + "#": 5764 + }, + "torque": 0, + "positionImpulse": { + "#": 5765 + }, + "constraintImpulse": { + "#": 5766 + }, + "totalContacts": 0, + "speed": 0.71716, + "angularSpeed": 0, + "velocity": { + "#": 5767 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5768 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5769 + }, + "bounds": { + "#": 5771 + }, + "positionPrev": { + "#": 5774 + }, + "anglePrev": 0, + "axes": { + "#": 5775 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5756 + }, + "sleepCounter": 0, + "region": { + "#": 5778 + } + }, + [ + { + "#": 5756 + } + ], + [ + { + "#": 5759 + }, + { + "#": 5760 + }, + { + "#": 5761 + }, + { + "#": 5762 + } + ], + { + "x": 510, + "y": 512.8698, + "index": 0, + "body": { + "#": 5756 + }, + "isInternal": false + }, + { + "x": 545, + "y": 512.8698, + "index": 1, + "body": { + "#": 5756 + }, + "isInternal": false + }, + { + "x": 545, + "y": 547.8698, + "index": 2, + "body": { + "#": 5756 + }, + "isInternal": false + }, + { + "x": 510, + "y": 547.8698, + "index": 3, + "body": { + "#": 5756 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 530.3698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.22553 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5770 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5772 + }, + "max": { + "#": 5773 + } + }, + { + "x": 510, + "y": 512.8698 + }, + { + "x": 545, + "y": 548.58696 + }, + { + "x": 527.5, + "y": 530.01829 + }, + [ + { + "#": 5776 + }, + { + "#": 5777 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,10,11", + "startCol": 10, + "endCol": 11, + "startRow": 10, + "endRow": 11 + }, + { + "id": 252, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5780 + }, + "angle": 0, + "vertices": { + "#": 5781 + }, + "position": { + "#": 5786 + }, + "force": { + "#": 5787 + }, + "torque": 0, + "positionImpulse": { + "#": 5788 + }, + "constraintImpulse": { + "#": 5789 + }, + "totalContacts": 0, + "speed": 0.71716, + "angularSpeed": 0, + "velocity": { + "#": 5790 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5791 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5792 + }, + "bounds": { + "#": 5794 + }, + "positionPrev": { + "#": 5797 + }, + "anglePrev": 0, + "axes": { + "#": 5798 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5779 + }, + "sleepCounter": 0, + "region": { + "#": 5801 + } + }, + [ + { + "#": 5779 + } + ], + [ + { + "#": 5782 + }, + { + "#": 5783 + }, + { + "#": 5784 + }, + { + "#": 5785 + } + ], + { + "x": 545, + "y": 512.8698, + "index": 0, + "body": { + "#": 5779 + }, + "isInternal": false + }, + { + "x": 580, + "y": 512.8698, + "index": 1, + "body": { + "#": 5779 + }, + "isInternal": false + }, + { + "x": 580, + "y": 547.8698, + "index": 2, + "body": { + "#": 5779 + }, + "isInternal": false + }, + { + "x": 545, + "y": 547.8698, + "index": 3, + "body": { + "#": 5779 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 530.3698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.22553 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5793 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5795 + }, + "max": { + "#": 5796 + } + }, + { + "x": 545, + "y": 512.8698 + }, + { + "x": 580, + "y": 548.58696 + }, + { + "x": 562.5, + "y": 530.01829 + }, + [ + { + "#": 5799 + }, + { + "#": 5800 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,10,11", + "startCol": 11, + "endCol": 12, + "startRow": 10, + "endRow": 11 + }, + { + "id": 253, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5803 + }, + "angle": 0, + "vertices": { + "#": 5804 + }, + "position": { + "#": 5809 + }, + "force": { + "#": 5810 + }, + "torque": 0, + "positionImpulse": { + "#": 5811 + }, + "constraintImpulse": { + "#": 5812 + }, + "totalContacts": 0, + "speed": 0.71716, + "angularSpeed": 0, + "velocity": { + "#": 5813 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5814 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5815 + }, + "bounds": { + "#": 5817 + }, + "positionPrev": { + "#": 5820 + }, + "anglePrev": 0, + "axes": { + "#": 5821 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5802 + }, + "sleepCounter": 0, + "region": { + "#": 5824 + } + }, + [ + { + "#": 5802 + } + ], + [ + { + "#": 5805 + }, + { + "#": 5806 + }, + { + "#": 5807 + }, + { + "#": 5808 + } + ], + { + "x": 580, + "y": 512.8698, + "index": 0, + "body": { + "#": 5802 + }, + "isInternal": false + }, + { + "x": 615, + "y": 512.8698, + "index": 1, + "body": { + "#": 5802 + }, + "isInternal": false + }, + { + "x": 615, + "y": 547.8698, + "index": 2, + "body": { + "#": 5802 + }, + "isInternal": false + }, + { + "x": 580, + "y": 547.8698, + "index": 3, + "body": { + "#": 5802 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 530.3698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.22553 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5816 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5818 + }, + "max": { + "#": 5819 + } + }, + { + "x": 580, + "y": 512.8698 + }, + { + "x": 615, + "y": 548.58696 + }, + { + "x": 597.5, + "y": 530.01829 + }, + [ + { + "#": 5822 + }, + { + "#": 5823 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,12,10,11", + "startCol": 12, + "endCol": 12, + "startRow": 10, + "endRow": 11 + }, + { + "id": 254, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5826 + }, + "angle": 0, + "vertices": { + "#": 5827 + }, + "position": { + "#": 5832 + }, + "force": { + "#": 5833 + }, + "torque": 0, + "positionImpulse": { + "#": 5834 + }, + "constraintImpulse": { + "#": 5835 + }, + "totalContacts": 0, + "speed": 0.71716, + "angularSpeed": 0, + "velocity": { + "#": 5836 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5837 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5838 + }, + "bounds": { + "#": 5840 + }, + "positionPrev": { + "#": 5843 + }, + "anglePrev": 0, + "axes": { + "#": 5844 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5825 + }, + "sleepCounter": 0, + "region": { + "#": 5847 + } + }, + [ + { + "#": 5825 + } + ], + [ + { + "#": 5828 + }, + { + "#": 5829 + }, + { + "#": 5830 + }, + { + "#": 5831 + } + ], + { + "x": 615, + "y": 512.8698, + "index": 0, + "body": { + "#": 5825 + }, + "isInternal": false + }, + { + "x": 650, + "y": 512.8698, + "index": 1, + "body": { + "#": 5825 + }, + "isInternal": false + }, + { + "x": 650, + "y": 547.8698, + "index": 2, + "body": { + "#": 5825 + }, + "isInternal": false + }, + { + "x": 615, + "y": 547.8698, + "index": 3, + "body": { + "#": 5825 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 530.3698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.22553 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5839 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5841 + }, + "max": { + "#": 5842 + } + }, + { + "x": 615, + "y": 512.8698 + }, + { + "x": 650, + "y": 548.58696 + }, + { + "x": 632.5, + "y": 530.01829 + }, + [ + { + "#": 5845 + }, + { + "#": 5846 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,10,11", + "startCol": 12, + "endCol": 13, + "startRow": 10, + "endRow": 11 + }, + { + "id": 255, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5849 + }, + "angle": 0, + "vertices": { + "#": 5850 + }, + "position": { + "#": 5855 + }, + "force": { + "#": 5856 + }, + "torque": 0, + "positionImpulse": { + "#": 5857 + }, + "constraintImpulse": { + "#": 5858 + }, + "totalContacts": 0, + "speed": 0.71716, + "angularSpeed": 0, + "velocity": { + "#": 5859 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5860 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5861 + }, + "bounds": { + "#": 5863 + }, + "positionPrev": { + "#": 5866 + }, + "anglePrev": 0, + "axes": { + "#": 5867 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5848 + }, + "sleepCounter": 0, + "region": { + "#": 5870 + } + }, + [ + { + "#": 5848 + } + ], + [ + { + "#": 5851 + }, + { + "#": 5852 + }, + { + "#": 5853 + }, + { + "#": 5854 + } + ], + { + "x": 650, + "y": 512.8698, + "index": 0, + "body": { + "#": 5848 + }, + "isInternal": false + }, + { + "x": 685, + "y": 512.8698, + "index": 1, + "body": { + "#": 5848 + }, + "isInternal": false + }, + { + "x": 685, + "y": 547.8698, + "index": 2, + "body": { + "#": 5848 + }, + "isInternal": false + }, + { + "x": 650, + "y": 547.8698, + "index": 3, + "body": { + "#": 5848 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 530.3698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.22553 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5862 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5864 + }, + "max": { + "#": 5865 + } + }, + { + "x": 650, + "y": 512.8698 + }, + { + "x": 685, + "y": 548.58696 + }, + { + "x": 667.5, + "y": 530.01829 + }, + [ + { + "#": 5868 + }, + { + "#": 5869 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,10,11", + "startCol": 13, + "endCol": 14, + "startRow": 10, + "endRow": 11 + }, + { + "id": 256, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5872 + }, + "angle": 0, + "vertices": { + "#": 5873 + }, + "position": { + "#": 5878 + }, + "force": { + "#": 5879 + }, + "torque": 0, + "positionImpulse": { + "#": 5880 + }, + "constraintImpulse": { + "#": 5881 + }, + "totalContacts": 0, + "speed": 0.71716, + "angularSpeed": 0, + "velocity": { + "#": 5882 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5883 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5884 + }, + "bounds": { + "#": 5886 + }, + "positionPrev": { + "#": 5889 + }, + "anglePrev": 0, + "axes": { + "#": 5890 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5871 + }, + "sleepCounter": 0, + "region": { + "#": 5893 + } + }, + [ + { + "#": 5871 + } + ], + [ + { + "#": 5874 + }, + { + "#": 5875 + }, + { + "#": 5876 + }, + { + "#": 5877 + } + ], + { + "x": 685, + "y": 512.8698, + "index": 0, + "body": { + "#": 5871 + }, + "isInternal": false + }, + { + "x": 720, + "y": 512.8698, + "index": 1, + "body": { + "#": 5871 + }, + "isInternal": false + }, + { + "x": 720, + "y": 547.8698, + "index": 2, + "body": { + "#": 5871 + }, + "isInternal": false + }, + { + "x": 685, + "y": 547.8698, + "index": 3, + "body": { + "#": 5871 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 530.3698 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.22553 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5885 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5887 + }, + "max": { + "#": 5888 + } + }, + { + "x": 685, + "y": 512.8698 + }, + { + "x": 720, + "y": 548.58696 + }, + { + "x": 702.5, + "y": 530.01829 + }, + [ + { + "#": 5891 + }, + { + "#": 5892 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,10,11", + "startCol": 14, + "endCol": 15, + "startRow": 10, + "endRow": 11 + }, + { + "id": 257, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5895 + }, + "angle": 0, + "vertices": { + "#": 5896 + }, + "position": { + "#": 5901 + }, + "force": { + "#": 5902 + }, + "torque": 0, + "positionImpulse": { + "#": 5903 + }, + "constraintImpulse": { + "#": 5904 + }, + "totalContacts": 0, + "speed": 0.43515, + "angularSpeed": 0, + "velocity": { + "#": 5905 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5906 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5907 + }, + "bounds": { + "#": 5909 + }, + "positionPrev": { + "#": 5912 + }, + "anglePrev": 0, + "axes": { + "#": 5913 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5894 + }, + "sleepCounter": 0, + "region": { + "#": 5916 + } + }, + [ + { + "#": 5894 + } + ], + [ + { + "#": 5897 + }, + { + "#": 5898 + }, + { + "#": 5899 + }, + { + "#": 5900 + } + ], + { + "x": 90, + "y": 545.82653, + "index": 0, + "body": { + "#": 5894 + }, + "isInternal": false + }, + { + "x": 125, + "y": 545.82653, + "index": 1, + "body": { + "#": 5894 + }, + "isInternal": false + }, + { + "x": 125, + "y": 580.82653, + "index": 2, + "body": { + "#": 5894 + }, + "isInternal": false + }, + { + "x": 90, + "y": 580.82653, + "index": 3, + "body": { + "#": 5894 + }, + "isInternal": false + }, + { + "x": 107.5, + "y": 563.32653 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.04303 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5908 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5910 + }, + "max": { + "#": 5911 + } + }, + { + "x": 90, + "y": 545.82653 + }, + { + "x": 125, + "y": 581.26168 + }, + { + "x": 107.5, + "y": 563.17922 + }, + [ + { + "#": 5914 + }, + { + "#": 5915 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "1,2,11,12", + "startCol": 1, + "endCol": 2, + "startRow": 11, + "endRow": 12 + }, + { + "id": 258, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5918 + }, + "angle": 0, + "vertices": { + "#": 5919 + }, + "position": { + "#": 5924 + }, + "force": { + "#": 5925 + }, + "torque": 0, + "positionImpulse": { + "#": 5926 + }, + "constraintImpulse": { + "#": 5927 + }, + "totalContacts": 0, + "speed": 0.43515, + "angularSpeed": 0, + "velocity": { + "#": 5928 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5929 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5930 + }, + "bounds": { + "#": 5932 + }, + "positionPrev": { + "#": 5935 + }, + "anglePrev": 0, + "axes": { + "#": 5936 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5917 + }, + "sleepCounter": 0, + "region": { + "#": 5939 + } + }, + [ + { + "#": 5917 + } + ], + [ + { + "#": 5920 + }, + { + "#": 5921 + }, + { + "#": 5922 + }, + { + "#": 5923 + } + ], + { + "x": 125, + "y": 545.82653, + "index": 0, + "body": { + "#": 5917 + }, + "isInternal": false + }, + { + "x": 160, + "y": 545.82653, + "index": 1, + "body": { + "#": 5917 + }, + "isInternal": false + }, + { + "x": 160, + "y": 580.82653, + "index": 2, + "body": { + "#": 5917 + }, + "isInternal": false + }, + { + "x": 125, + "y": 580.82653, + "index": 3, + "body": { + "#": 5917 + }, + "isInternal": false + }, + { + "x": 142.5, + "y": 563.32653 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.04303 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5931 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5933 + }, + "max": { + "#": 5934 + } + }, + { + "x": 125, + "y": 545.82653 + }, + { + "x": 160, + "y": 581.26168 + }, + { + "x": 142.5, + "y": 563.17922 + }, + [ + { + "#": 5937 + }, + { + "#": 5938 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,11,12", + "startCol": 2, + "endCol": 3, + "startRow": 11, + "endRow": 12 + }, + { + "id": 259, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5941 + }, + "angle": 0, + "vertices": { + "#": 5942 + }, + "position": { + "#": 5947 + }, + "force": { + "#": 5948 + }, + "torque": 0, + "positionImpulse": { + "#": 5949 + }, + "constraintImpulse": { + "#": 5950 + }, + "totalContacts": 0, + "speed": 0.43515, + "angularSpeed": 0, + "velocity": { + "#": 5951 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5952 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5953 + }, + "bounds": { + "#": 5955 + }, + "positionPrev": { + "#": 5958 + }, + "anglePrev": 0, + "axes": { + "#": 5959 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5940 + }, + "sleepCounter": 0, + "region": { + "#": 5962 + } + }, + [ + { + "#": 5940 + } + ], + [ + { + "#": 5943 + }, + { + "#": 5944 + }, + { + "#": 5945 + }, + { + "#": 5946 + } + ], + { + "x": 160, + "y": 545.82653, + "index": 0, + "body": { + "#": 5940 + }, + "isInternal": false + }, + { + "x": 195, + "y": 545.82653, + "index": 1, + "body": { + "#": 5940 + }, + "isInternal": false + }, + { + "x": 195, + "y": 580.82653, + "index": 2, + "body": { + "#": 5940 + }, + "isInternal": false + }, + { + "x": 160, + "y": 580.82653, + "index": 3, + "body": { + "#": 5940 + }, + "isInternal": false + }, + { + "x": 177.5, + "y": 563.32653 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.04303 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5954 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5956 + }, + "max": { + "#": 5957 + } + }, + { + "x": 160, + "y": 545.82653 + }, + { + "x": 195, + "y": 581.26168 + }, + { + "x": 177.5, + "y": 563.17922 + }, + [ + { + "#": 5960 + }, + { + "#": 5961 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,11,12", + "startCol": 3, + "endCol": 4, + "startRow": 11, + "endRow": 12 + }, + { + "id": 260, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5964 + }, + "angle": 0, + "vertices": { + "#": 5965 + }, + "position": { + "#": 5970 + }, + "force": { + "#": 5971 + }, + "torque": 0, + "positionImpulse": { + "#": 5972 + }, + "constraintImpulse": { + "#": 5973 + }, + "totalContacts": 0, + "speed": 0.43515, + "angularSpeed": 0, + "velocity": { + "#": 5974 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5975 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5976 + }, + "bounds": { + "#": 5978 + }, + "positionPrev": { + "#": 5981 + }, + "anglePrev": 0, + "axes": { + "#": 5982 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5963 + }, + "sleepCounter": 0, + "region": { + "#": 5985 + } + }, + [ + { + "#": 5963 + } + ], + [ + { + "#": 5966 + }, + { + "#": 5967 + }, + { + "#": 5968 + }, + { + "#": 5969 + } + ], + { + "x": 195, + "y": 545.82653, + "index": 0, + "body": { + "#": 5963 + }, + "isInternal": false + }, + { + "x": 230, + "y": 545.82653, + "index": 1, + "body": { + "#": 5963 + }, + "isInternal": false + }, + { + "x": 230, + "y": 580.82653, + "index": 2, + "body": { + "#": 5963 + }, + "isInternal": false + }, + { + "x": 195, + "y": 580.82653, + "index": 3, + "body": { + "#": 5963 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 563.32653 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.04303 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5977 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5979 + }, + "max": { + "#": 5980 + } + }, + { + "x": 195, + "y": 545.82653 + }, + { + "x": 230, + "y": 581.26168 + }, + { + "x": 212.5, + "y": 563.17922 + }, + [ + { + "#": 5983 + }, + { + "#": 5984 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,11,12", + "startCol": 4, + "endCol": 4, + "startRow": 11, + "endRow": 12 + }, + { + "id": 261, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5987 + }, + "angle": 0, + "vertices": { + "#": 5988 + }, + "position": { + "#": 5993 + }, + "force": { + "#": 5994 + }, + "torque": 0, + "positionImpulse": { + "#": 5995 + }, + "constraintImpulse": { + "#": 5996 + }, + "totalContacts": 0, + "speed": 0.43515, + "angularSpeed": 0, + "velocity": { + "#": 5997 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5998 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5999 + }, + "bounds": { + "#": 6001 + }, + "positionPrev": { + "#": 6004 + }, + "anglePrev": 0, + "axes": { + "#": 6005 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 5986 + }, + "sleepCounter": 0, + "region": { + "#": 6008 + } + }, + [ + { + "#": 5986 + } + ], + [ + { + "#": 5989 + }, + { + "#": 5990 + }, + { + "#": 5991 + }, + { + "#": 5992 + } + ], + { + "x": 230, + "y": 545.82653, + "index": 0, + "body": { + "#": 5986 + }, + "isInternal": false + }, + { + "x": 265, + "y": 545.82653, + "index": 1, + "body": { + "#": 5986 + }, + "isInternal": false + }, + { + "x": 265, + "y": 580.82653, + "index": 2, + "body": { + "#": 5986 + }, + "isInternal": false + }, + { + "x": 230, + "y": 580.82653, + "index": 3, + "body": { + "#": 5986 + }, + "isInternal": false + }, + { + "x": 247.5, + "y": 563.32653 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.04303 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6000 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6002 + }, + "max": { + "#": 6003 + } + }, + { + "x": 230, + "y": 545.82653 + }, + { + "x": 265, + "y": 581.26168 + }, + { + "x": 247.5, + "y": 563.17922 + }, + [ + { + "#": 6006 + }, + { + "#": 6007 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,11,12", + "startCol": 4, + "endCol": 5, + "startRow": 11, + "endRow": 12 + }, + { + "id": 262, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6010 + }, + "angle": 0, + "vertices": { + "#": 6011 + }, + "position": { + "#": 6016 + }, + "force": { + "#": 6017 + }, + "torque": 0, + "positionImpulse": { + "#": 6018 + }, + "constraintImpulse": { + "#": 6019 + }, + "totalContacts": 0, + "speed": 0.43515, + "angularSpeed": 0, + "velocity": { + "#": 6020 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6021 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6022 + }, + "bounds": { + "#": 6024 + }, + "positionPrev": { + "#": 6027 + }, + "anglePrev": 0, + "axes": { + "#": 6028 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 6009 + }, + "sleepCounter": 0, + "region": { + "#": 6031 + } + }, + [ + { + "#": 6009 + } + ], + [ + { + "#": 6012 + }, + { + "#": 6013 + }, + { + "#": 6014 + }, + { + "#": 6015 + } + ], + { + "x": 265, + "y": 545.82653, + "index": 0, + "body": { + "#": 6009 + }, + "isInternal": false + }, + { + "x": 300, + "y": 545.82653, + "index": 1, + "body": { + "#": 6009 + }, + "isInternal": false + }, + { + "x": 300, + "y": 580.82653, + "index": 2, + "body": { + "#": 6009 + }, + "isInternal": false + }, + { + "x": 265, + "y": 580.82653, + "index": 3, + "body": { + "#": 6009 + }, + "isInternal": false + }, + { + "x": 282.5, + "y": 563.32653 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.04303 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6023 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6025 + }, + "max": { + "#": 6026 + } + }, + { + "x": 265, + "y": 545.82653 + }, + { + "x": 300, + "y": 581.26168 + }, + { + "x": 282.5, + "y": 563.17922 + }, + [ + { + "#": 6029 + }, + { + "#": 6030 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,11,12", + "startCol": 5, + "endCol": 6, + "startRow": 11, + "endRow": 12 + }, + { + "id": 263, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6033 + }, + "angle": 0, + "vertices": { + "#": 6034 + }, + "position": { + "#": 6039 + }, + "force": { + "#": 6040 + }, + "torque": 0, + "positionImpulse": { + "#": 6041 + }, + "constraintImpulse": { + "#": 6042 + }, + "totalContacts": 0, + "speed": 0.43515, + "angularSpeed": 0, + "velocity": { + "#": 6043 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6044 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6045 + }, + "bounds": { + "#": 6047 + }, + "positionPrev": { + "#": 6050 + }, + "anglePrev": 0, + "axes": { + "#": 6051 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 6032 + }, + "sleepCounter": 0, + "region": { + "#": 6054 + } + }, + [ + { + "#": 6032 + } + ], + [ + { + "#": 6035 + }, + { + "#": 6036 + }, + { + "#": 6037 + }, + { + "#": 6038 + } + ], + { + "x": 300, + "y": 545.82653, + "index": 0, + "body": { + "#": 6032 + }, + "isInternal": false + }, + { + "x": 335, + "y": 545.82653, + "index": 1, + "body": { + "#": 6032 + }, + "isInternal": false + }, + { + "x": 335, + "y": 580.82653, + "index": 2, + "body": { + "#": 6032 + }, + "isInternal": false + }, + { + "x": 300, + "y": 580.82653, + "index": 3, + "body": { + "#": 6032 + }, + "isInternal": false + }, + { + "x": 317.5, + "y": 563.32653 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.04303 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6046 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6048 + }, + "max": { + "#": 6049 + } + }, + { + "x": 300, + "y": 545.82653 + }, + { + "x": 335, + "y": 581.26168 + }, + { + "x": 317.5, + "y": 563.17922 + }, + [ + { + "#": 6052 + }, + { + "#": 6053 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,11,12", + "startCol": 6, + "endCol": 6, + "startRow": 11, + "endRow": 12 + }, + { + "id": 264, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6056 + }, + "angle": 0, + "vertices": { + "#": 6057 + }, + "position": { + "#": 6062 + }, + "force": { + "#": 6063 + }, + "torque": 0, + "positionImpulse": { + "#": 6064 + }, + "constraintImpulse": { + "#": 6065 + }, + "totalContacts": 0, + "speed": 0.43515, + "angularSpeed": 0, + "velocity": { + "#": 6066 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6067 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6068 + }, + "bounds": { + "#": 6070 + }, + "positionPrev": { + "#": 6073 + }, + "anglePrev": 0, + "axes": { + "#": 6074 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 6055 + }, + "sleepCounter": 0, + "region": { + "#": 6077 + } + }, + [ + { + "#": 6055 + } + ], + [ + { + "#": 6058 + }, + { + "#": 6059 + }, + { + "#": 6060 + }, + { + "#": 6061 + } + ], + { + "x": 335, + "y": 545.82653, + "index": 0, + "body": { + "#": 6055 + }, + "isInternal": false + }, + { + "x": 370, + "y": 545.82653, + "index": 1, + "body": { + "#": 6055 + }, + "isInternal": false + }, + { + "x": 370, + "y": 580.82653, + "index": 2, + "body": { + "#": 6055 + }, + "isInternal": false + }, + { + "x": 335, + "y": 580.82653, + "index": 3, + "body": { + "#": 6055 + }, + "isInternal": false + }, + { + "x": 352.5, + "y": 563.32653 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.04303 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6069 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6071 + }, + "max": { + "#": 6072 + } + }, + { + "x": 335, + "y": 545.82653 + }, + { + "x": 370, + "y": 581.26168 + }, + { + "x": 352.5, + "y": 563.17922 + }, + [ + { + "#": 6075 + }, + { + "#": 6076 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,11,12", + "startCol": 6, + "endCol": 7, + "startRow": 11, + "endRow": 12 + }, + { + "id": 265, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6079 + }, + "angle": 0, + "vertices": { + "#": 6080 + }, + "position": { + "#": 6085 + }, + "force": { + "#": 6086 + }, + "torque": 0, + "positionImpulse": { + "#": 6087 + }, + "constraintImpulse": { + "#": 6088 + }, + "totalContacts": 0, + "speed": 0.43515, + "angularSpeed": 0, + "velocity": { + "#": 6089 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6090 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6091 + }, + "bounds": { + "#": 6093 + }, + "positionPrev": { + "#": 6096 + }, + "anglePrev": 0, + "axes": { + "#": 6097 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 6078 + }, + "sleepCounter": 0, + "region": { + "#": 6100 + } + }, + [ + { + "#": 6078 + } + ], + [ + { + "#": 6081 + }, + { + "#": 6082 + }, + { + "#": 6083 + }, + { + "#": 6084 + } + ], + { + "x": 370, + "y": 545.82653, + "index": 0, + "body": { + "#": 6078 + }, + "isInternal": false + }, + { + "x": 405, + "y": 545.82653, + "index": 1, + "body": { + "#": 6078 + }, + "isInternal": false + }, + { + "x": 405, + "y": 580.82653, + "index": 2, + "body": { + "#": 6078 + }, + "isInternal": false + }, + { + "x": 370, + "y": 580.82653, + "index": 3, + "body": { + "#": 6078 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 563.32653 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.04303 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6092 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6094 + }, + "max": { + "#": 6095 + } + }, + { + "x": 370, + "y": 545.82653 + }, + { + "x": 405, + "y": 581.26168 + }, + { + "x": 387.5, + "y": 563.17922 + }, + [ + { + "#": 6098 + }, + { + "#": 6099 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,11,12", + "startCol": 7, + "endCol": 8, + "startRow": 11, + "endRow": 12 + }, + { + "id": 266, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6102 + }, + "angle": 0, + "vertices": { + "#": 6103 + }, + "position": { + "#": 6108 + }, + "force": { + "#": 6109 + }, + "torque": 0, + "positionImpulse": { + "#": 6110 + }, + "constraintImpulse": { + "#": 6111 + }, + "totalContacts": 0, + "speed": 0.43515, + "angularSpeed": 0, + "velocity": { + "#": 6112 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6113 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6114 + }, + "bounds": { + "#": 6116 + }, + "positionPrev": { + "#": 6119 + }, + "anglePrev": 0, + "axes": { + "#": 6120 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 6101 + }, + "sleepCounter": 0, + "region": { + "#": 6123 + } + }, + [ + { + "#": 6101 + } + ], + [ + { + "#": 6104 + }, + { + "#": 6105 + }, + { + "#": 6106 + }, + { + "#": 6107 + } + ], + { + "x": 405, + "y": 545.82653, + "index": 0, + "body": { + "#": 6101 + }, + "isInternal": false + }, + { + "x": 440, + "y": 545.82653, + "index": 1, + "body": { + "#": 6101 + }, + "isInternal": false + }, + { + "x": 440, + "y": 580.82653, + "index": 2, + "body": { + "#": 6101 + }, + "isInternal": false + }, + { + "x": 405, + "y": 580.82653, + "index": 3, + "body": { + "#": 6101 + }, + "isInternal": false + }, + { + "x": 422.5, + "y": 563.32653 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.04303 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6115 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6117 + }, + "max": { + "#": 6118 + } + }, + { + "x": 405, + "y": 545.82653 + }, + { + "x": 440, + "y": 581.26168 + }, + { + "x": 422.5, + "y": 563.17922 + }, + [ + { + "#": 6121 + }, + { + "#": 6122 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,11,12", + "startCol": 8, + "endCol": 9, + "startRow": 11, + "endRow": 12 + }, + { + "id": 267, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6125 + }, + "angle": 0, + "vertices": { + "#": 6126 + }, + "position": { + "#": 6131 + }, + "force": { + "#": 6132 + }, + "torque": 0, + "positionImpulse": { + "#": 6133 + }, + "constraintImpulse": { + "#": 6134 + }, + "totalContacts": 0, + "speed": 0.43515, + "angularSpeed": 0, + "velocity": { + "#": 6135 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6136 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6137 + }, + "bounds": { + "#": 6139 + }, + "positionPrev": { + "#": 6142 + }, + "anglePrev": 0, + "axes": { + "#": 6143 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 6124 + }, + "sleepCounter": 0, + "region": { + "#": 6146 + } + }, + [ + { + "#": 6124 + } + ], + [ + { + "#": 6127 + }, + { + "#": 6128 + }, + { + "#": 6129 + }, + { + "#": 6130 + } + ], + { + "x": 440, + "y": 545.82653, + "index": 0, + "body": { + "#": 6124 + }, + "isInternal": false + }, + { + "x": 475, + "y": 545.82653, + "index": 1, + "body": { + "#": 6124 + }, + "isInternal": false + }, + { + "x": 475, + "y": 580.82653, + "index": 2, + "body": { + "#": 6124 + }, + "isInternal": false + }, + { + "x": 440, + "y": 580.82653, + "index": 3, + "body": { + "#": 6124 + }, + "isInternal": false + }, + { + "x": 457.5, + "y": 563.32653 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.04303 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6138 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6140 + }, + "max": { + "#": 6141 + } + }, + { + "x": 440, + "y": 545.82653 + }, + { + "x": 475, + "y": 581.26168 + }, + { + "x": 457.5, + "y": 563.17922 + }, + [ + { + "#": 6144 + }, + { + "#": 6145 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,11,12", + "startCol": 9, + "endCol": 9, + "startRow": 11, + "endRow": 12 + }, + { + "id": 268, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6148 + }, + "angle": 0, + "vertices": { + "#": 6149 + }, + "position": { + "#": 6154 + }, + "force": { + "#": 6155 + }, + "torque": 0, + "positionImpulse": { + "#": 6156 + }, + "constraintImpulse": { + "#": 6157 + }, + "totalContacts": 0, + "speed": 0.43515, + "angularSpeed": 0, + "velocity": { + "#": 6158 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6159 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6160 + }, + "bounds": { + "#": 6162 + }, + "positionPrev": { + "#": 6165 + }, + "anglePrev": 0, + "axes": { + "#": 6166 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 6147 + }, + "sleepCounter": 0, + "region": { + "#": 6169 + } + }, + [ + { + "#": 6147 + } + ], + [ + { + "#": 6150 + }, + { + "#": 6151 + }, + { + "#": 6152 + }, + { + "#": 6153 + } + ], + { + "x": 475, + "y": 545.82653, + "index": 0, + "body": { + "#": 6147 + }, + "isInternal": false + }, + { + "x": 510, + "y": 545.82653, + "index": 1, + "body": { + "#": 6147 + }, + "isInternal": false + }, + { + "x": 510, + "y": 580.82653, + "index": 2, + "body": { + "#": 6147 + }, + "isInternal": false + }, + { + "x": 475, + "y": 580.82653, + "index": 3, + "body": { + "#": 6147 + }, + "isInternal": false + }, + { + "x": 492.5, + "y": 563.32653 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.04303 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6161 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6163 + }, + "max": { + "#": 6164 + } + }, + { + "x": 475, + "y": 545.82653 + }, + { + "x": 510, + "y": 581.26168 + }, + { + "x": 492.5, + "y": 563.17922 + }, + [ + { + "#": 6167 + }, + { + "#": 6168 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,11,12", + "startCol": 9, + "endCol": 10, + "startRow": 11, + "endRow": 12 + }, + { + "id": 269, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6171 + }, + "angle": 0, + "vertices": { + "#": 6172 + }, + "position": { + "#": 6177 + }, + "force": { + "#": 6178 + }, + "torque": 0, + "positionImpulse": { + "#": 6179 + }, + "constraintImpulse": { + "#": 6180 + }, + "totalContacts": 0, + "speed": 0.43515, + "angularSpeed": 0, + "velocity": { + "#": 6181 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6182 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6183 + }, + "bounds": { + "#": 6185 + }, + "positionPrev": { + "#": 6188 + }, + "anglePrev": 0, + "axes": { + "#": 6189 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 6170 + }, + "sleepCounter": 0, + "region": { + "#": 6192 + } + }, + [ + { + "#": 6170 + } + ], + [ + { + "#": 6173 + }, + { + "#": 6174 + }, + { + "#": 6175 + }, + { + "#": 6176 + } + ], + { + "x": 510, + "y": 545.82653, + "index": 0, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 545, + "y": 545.82653, + "index": 1, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 545, + "y": 580.82653, + "index": 2, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 510, + "y": 580.82653, + "index": 3, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 527.5, + "y": 563.32653 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.04303 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6184 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6186 + }, + "max": { + "#": 6187 + } + }, + { + "x": 510, + "y": 545.82653 + }, + { + "x": 545, + "y": 581.26168 + }, + { + "x": 527.5, + "y": 563.17922 + }, + [ + { + "#": 6190 + }, + { + "#": 6191 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,11,12", + "startCol": 10, + "endCol": 11, + "startRow": 11, + "endRow": 12 + }, + { + "id": 270, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6194 + }, + "angle": 0, + "vertices": { + "#": 6195 + }, + "position": { + "#": 6200 + }, + "force": { + "#": 6201 + }, + "torque": 0, + "positionImpulse": { + "#": 6202 + }, + "constraintImpulse": { + "#": 6203 + }, + "totalContacts": 0, + "speed": 0.43515, + "angularSpeed": 0, + "velocity": { + "#": 6204 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6205 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6206 + }, + "bounds": { + "#": 6208 + }, + "positionPrev": { + "#": 6211 + }, + "anglePrev": 0, + "axes": { + "#": 6212 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 6193 + }, + "sleepCounter": 0, + "region": { + "#": 6215 + } + }, + [ + { + "#": 6193 + } + ], + [ + { + "#": 6196 + }, + { + "#": 6197 + }, + { + "#": 6198 + }, + { + "#": 6199 + } + ], + { + "x": 545, + "y": 545.82653, + "index": 0, + "body": { + "#": 6193 + }, + "isInternal": false + }, + { + "x": 580, + "y": 545.82653, + "index": 1, + "body": { + "#": 6193 + }, + "isInternal": false + }, + { + "x": 580, + "y": 580.82653, + "index": 2, + "body": { + "#": 6193 + }, + "isInternal": false + }, + { + "x": 545, + "y": 580.82653, + "index": 3, + "body": { + "#": 6193 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 563.32653 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.04303 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6207 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6209 + }, + "max": { + "#": 6210 + } + }, + { + "x": 545, + "y": 545.82653 + }, + { + "x": 580, + "y": 581.26168 + }, + { + "x": 562.5, + "y": 563.17922 + }, + [ + { + "#": 6213 + }, + { + "#": 6214 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,11,12", + "startCol": 11, + "endCol": 12, + "startRow": 11, + "endRow": 12 + }, + { + "id": 271, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6217 + }, + "angle": 0, + "vertices": { + "#": 6218 + }, + "position": { + "#": 6223 + }, + "force": { + "#": 6224 + }, + "torque": 0, + "positionImpulse": { + "#": 6225 + }, + "constraintImpulse": { + "#": 6226 + }, + "totalContacts": 0, + "speed": 0.43515, + "angularSpeed": 0, + "velocity": { + "#": 6227 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6228 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6229 + }, + "bounds": { + "#": 6231 + }, + "positionPrev": { + "#": 6234 + }, + "anglePrev": 0, + "axes": { + "#": 6235 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 6216 + }, + "sleepCounter": 0, + "region": { + "#": 6238 + } + }, + [ + { + "#": 6216 + } + ], + [ + { + "#": 6219 + }, + { + "#": 6220 + }, + { + "#": 6221 + }, + { + "#": 6222 + } + ], + { + "x": 580, + "y": 545.82653, + "index": 0, + "body": { + "#": 6216 + }, + "isInternal": false + }, + { + "x": 615, + "y": 545.82653, + "index": 1, + "body": { + "#": 6216 + }, + "isInternal": false + }, + { + "x": 615, + "y": 580.82653, + "index": 2, + "body": { + "#": 6216 + }, + "isInternal": false + }, + { + "x": 580, + "y": 580.82653, + "index": 3, + "body": { + "#": 6216 + }, + "isInternal": false + }, + { + "x": 597.5, + "y": 563.32653 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.04303 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6230 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6232 + }, + "max": { + "#": 6233 + } + }, + { + "x": 580, + "y": 545.82653 + }, + { + "x": 615, + "y": 581.26168 + }, + { + "x": 597.5, + "y": 563.17922 + }, + [ + { + "#": 6236 + }, + { + "#": 6237 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,12,11,12", + "startCol": 12, + "endCol": 12, + "startRow": 11, + "endRow": 12 + }, + { + "id": 272, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6240 + }, + "angle": 0, + "vertices": { + "#": 6241 + }, + "position": { + "#": 6246 + }, + "force": { + "#": 6247 + }, + "torque": 0, + "positionImpulse": { + "#": 6248 + }, + "constraintImpulse": { + "#": 6249 + }, + "totalContacts": 0, + "speed": 0.43515, + "angularSpeed": 0, + "velocity": { + "#": 6250 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6251 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6252 + }, + "bounds": { + "#": 6254 + }, + "positionPrev": { + "#": 6257 + }, + "anglePrev": 0, + "axes": { + "#": 6258 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 6239 + }, + "sleepCounter": 0, + "region": { + "#": 6261 + } + }, + [ + { + "#": 6239 + } + ], + [ + { + "#": 6242 + }, + { + "#": 6243 + }, + { + "#": 6244 + }, + { + "#": 6245 + } + ], + { + "x": 615, + "y": 545.82653, + "index": 0, + "body": { + "#": 6239 + }, + "isInternal": false + }, + { + "x": 650, + "y": 545.82653, + "index": 1, + "body": { + "#": 6239 + }, + "isInternal": false + }, + { + "x": 650, + "y": 580.82653, + "index": 2, + "body": { + "#": 6239 + }, + "isInternal": false + }, + { + "x": 615, + "y": 580.82653, + "index": 3, + "body": { + "#": 6239 + }, + "isInternal": false + }, + { + "x": 632.5, + "y": 563.32653 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.04303 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6253 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6255 + }, + "max": { + "#": 6256 + } + }, + { + "x": 615, + "y": 545.82653 + }, + { + "x": 650, + "y": 581.26168 + }, + { + "x": 632.5, + "y": 563.17922 + }, + [ + { + "#": 6259 + }, + { + "#": 6260 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,11,12", + "startCol": 12, + "endCol": 13, + "startRow": 11, + "endRow": 12 + }, + { + "id": 273, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6263 + }, + "angle": 0, + "vertices": { + "#": 6264 + }, + "position": { + "#": 6269 + }, + "force": { + "#": 6270 + }, + "torque": 0, + "positionImpulse": { + "#": 6271 + }, + "constraintImpulse": { + "#": 6272 + }, + "totalContacts": 0, + "speed": 0.43515, + "angularSpeed": 0, + "velocity": { + "#": 6273 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6274 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6275 + }, + "bounds": { + "#": 6277 + }, + "positionPrev": { + "#": 6280 + }, + "anglePrev": 0, + "axes": { + "#": 6281 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 6262 + }, + "sleepCounter": 0, + "region": { + "#": 6284 + } + }, + [ + { + "#": 6262 + } + ], + [ + { + "#": 6265 + }, + { + "#": 6266 + }, + { + "#": 6267 + }, + { + "#": 6268 + } + ], + { + "x": 650, + "y": 545.82653, + "index": 0, + "body": { + "#": 6262 + }, + "isInternal": false + }, + { + "x": 685, + "y": 545.82653, + "index": 1, + "body": { + "#": 6262 + }, + "isInternal": false + }, + { + "x": 685, + "y": 580.82653, + "index": 2, + "body": { + "#": 6262 + }, + "isInternal": false + }, + { + "x": 650, + "y": 580.82653, + "index": 3, + "body": { + "#": 6262 + }, + "isInternal": false + }, + { + "x": 667.5, + "y": 563.32653 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.04303 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6276 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6278 + }, + "max": { + "#": 6279 + } + }, + { + "x": 650, + "y": 545.82653 + }, + { + "x": 685, + "y": 581.26168 + }, + { + "x": 667.5, + "y": 563.17922 + }, + [ + { + "#": 6282 + }, + { + "#": 6283 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,11,12", + "startCol": 13, + "endCol": 14, + "startRow": 11, + "endRow": 12 + }, + { + "id": 274, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6286 + }, + "angle": 0, + "vertices": { + "#": 6287 + }, + "position": { + "#": 6292 + }, + "force": { + "#": 6293 + }, + "torque": 0, + "positionImpulse": { + "#": 6294 + }, + "constraintImpulse": { + "#": 6295 + }, + "totalContacts": 0, + "speed": 0.43515, + "angularSpeed": 0, + "velocity": { + "#": 6296 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6297 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6298 + }, + "bounds": { + "#": 6300 + }, + "positionPrev": { + "#": 6303 + }, + "anglePrev": 0, + "axes": { + "#": 6304 + }, + "area": 1225, + "mass": 1.225, + "inverseMass": 0.81633, + "inertia": 1000.41667, + "inverseInertia": 0.001, + "parent": { + "#": 6285 + }, + "sleepCounter": 0, + "region": { + "#": 6307 + } + }, + [ + { + "#": 6285 + } + ], + [ + { + "#": 6288 + }, + { + "#": 6289 + }, + { + "#": 6290 + }, + { + "#": 6291 + } + ], + { + "x": 685, + "y": 545.82653, + "index": 0, + "body": { + "#": 6285 + }, + "isInternal": false + }, + { + "x": 720, + "y": 545.82653, + "index": 1, + "body": { + "#": 6285 + }, + "isInternal": false + }, + { + "x": 720, + "y": 580.82653, + "index": 2, + "body": { + "#": 6285 + }, + "isInternal": false + }, + { + "x": 685, + "y": 580.82653, + "index": 3, + "body": { + "#": 6285 + }, + "isInternal": false + }, + { + "x": 702.5, + "y": 563.32653 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.04303 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6299 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6301 + }, + "max": { + "#": 6302 + } + }, + { + "x": 685, + "y": 545.82653 + }, + { + "x": 720, + "y": 581.26168 + }, + { + "x": 702.5, + "y": 563.17922 + }, + [ + { + "#": 6305 + }, + { + "#": 6306 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,11,12", + "startCol": 14, + "endCol": 15, + "startRow": 11, + "endRow": 12 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 6312 + }, + "max": { + "#": 6313 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/stress2/stress2-0.json b/test/node/refs/stress2/stress2-0.json new file mode 100644 index 00000000..44c2a6ca --- /dev/null +++ b/test/node/refs/stress2/stress2-0.json @@ -0,0 +1,91408 @@ +[ + { + "id": 275, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 90 + }, + "composites": { + "#": 91 + }, + "label": "World", + "gravity": { + "#": 9996 + }, + "bounds": { + "#": 9997 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [ + { + "#": 92 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 93 + }, + "constraints": { + "#": 9994 + }, + "composites": { + "#": 9995 + }, + "label": "Stack" + }, + [ + { + "#": 94 + }, + { + "#": 116 + }, + { + "#": 138 + }, + { + "#": 160 + }, + { + "#": 182 + }, + { + "#": 204 + }, + { + "#": 226 + }, + { + "#": 248 + }, + { + "#": 270 + }, + { + "#": 292 + }, + { + "#": 314 + }, + { + "#": 336 + }, + { + "#": 358 + }, + { + "#": 380 + }, + { + "#": 402 + }, + { + "#": 424 + }, + { + "#": 446 + }, + { + "#": 468 + }, + { + "#": 490 + }, + { + "#": 512 + }, + { + "#": 534 + }, + { + "#": 556 + }, + { + "#": 578 + }, + { + "#": 600 + }, + { + "#": 622 + }, + { + "#": 644 + }, + { + "#": 666 + }, + { + "#": 688 + }, + { + "#": 710 + }, + { + "#": 732 + }, + { + "#": 754 + }, + { + "#": 776 + }, + { + "#": 798 + }, + { + "#": 820 + }, + { + "#": 842 + }, + { + "#": 864 + }, + { + "#": 886 + }, + { + "#": 908 + }, + { + "#": 930 + }, + { + "#": 952 + }, + { + "#": 974 + }, + { + "#": 996 + }, + { + "#": 1018 + }, + { + "#": 1040 + }, + { + "#": 1062 + }, + { + "#": 1084 + }, + { + "#": 1106 + }, + { + "#": 1128 + }, + { + "#": 1150 + }, + { + "#": 1172 + }, + { + "#": 1194 + }, + { + "#": 1216 + }, + { + "#": 1238 + }, + { + "#": 1260 + }, + { + "#": 1282 + }, + { + "#": 1304 + }, + { + "#": 1326 + }, + { + "#": 1348 + }, + { + "#": 1370 + }, + { + "#": 1392 + }, + { + "#": 1414 + }, + { + "#": 1436 + }, + { + "#": 1458 + }, + { + "#": 1480 + }, + { + "#": 1502 + }, + { + "#": 1524 + }, + { + "#": 1546 + }, + { + "#": 1568 + }, + { + "#": 1590 + }, + { + "#": 1612 + }, + { + "#": 1634 + }, + { + "#": 1656 + }, + { + "#": 1678 + }, + { + "#": 1700 + }, + { + "#": 1722 + }, + { + "#": 1744 + }, + { + "#": 1766 + }, + { + "#": 1788 + }, + { + "#": 1810 + }, + { + "#": 1832 + }, + { + "#": 1854 + }, + { + "#": 1876 + }, + { + "#": 1898 + }, + { + "#": 1920 + }, + { + "#": 1942 + }, + { + "#": 1964 + }, + { + "#": 1986 + }, + { + "#": 2008 + }, + { + "#": 2030 + }, + { + "#": 2052 + }, + { + "#": 2074 + }, + { + "#": 2096 + }, + { + "#": 2118 + }, + { + "#": 2140 + }, + { + "#": 2162 + }, + { + "#": 2184 + }, + { + "#": 2206 + }, + { + "#": 2228 + }, + { + "#": 2250 + }, + { + "#": 2272 + }, + { + "#": 2294 + }, + { + "#": 2316 + }, + { + "#": 2338 + }, + { + "#": 2360 + }, + { + "#": 2382 + }, + { + "#": 2404 + }, + { + "#": 2426 + }, + { + "#": 2448 + }, + { + "#": 2470 + }, + { + "#": 2492 + }, + { + "#": 2514 + }, + { + "#": 2536 + }, + { + "#": 2558 + }, + { + "#": 2580 + }, + { + "#": 2602 + }, + { + "#": 2624 + }, + { + "#": 2646 + }, + { + "#": 2668 + }, + { + "#": 2690 + }, + { + "#": 2712 + }, + { + "#": 2734 + }, + { + "#": 2756 + }, + { + "#": 2778 + }, + { + "#": 2800 + }, + { + "#": 2822 + }, + { + "#": 2844 + }, + { + "#": 2866 + }, + { + "#": 2888 + }, + { + "#": 2910 + }, + { + "#": 2932 + }, + { + "#": 2954 + }, + { + "#": 2976 + }, + { + "#": 2998 + }, + { + "#": 3020 + }, + { + "#": 3042 + }, + { + "#": 3064 + }, + { + "#": 3086 + }, + { + "#": 3108 + }, + { + "#": 3130 + }, + { + "#": 3152 + }, + { + "#": 3174 + }, + { + "#": 3196 + }, + { + "#": 3218 + }, + { + "#": 3240 + }, + { + "#": 3262 + }, + { + "#": 3284 + }, + { + "#": 3306 + }, + { + "#": 3328 + }, + { + "#": 3350 + }, + { + "#": 3372 + }, + { + "#": 3394 + }, + { + "#": 3416 + }, + { + "#": 3438 + }, + { + "#": 3460 + }, + { + "#": 3482 + }, + { + "#": 3504 + }, + { + "#": 3526 + }, + { + "#": 3548 + }, + { + "#": 3570 + }, + { + "#": 3592 + }, + { + "#": 3614 + }, + { + "#": 3636 + }, + { + "#": 3658 + }, + { + "#": 3680 + }, + { + "#": 3702 + }, + { + "#": 3724 + }, + { + "#": 3746 + }, + { + "#": 3768 + }, + { + "#": 3790 + }, + { + "#": 3812 + }, + { + "#": 3834 + }, + { + "#": 3856 + }, + { + "#": 3878 + }, + { + "#": 3900 + }, + { + "#": 3922 + }, + { + "#": 3944 + }, + { + "#": 3966 + }, + { + "#": 3988 + }, + { + "#": 4010 + }, + { + "#": 4032 + }, + { + "#": 4054 + }, + { + "#": 4076 + }, + { + "#": 4098 + }, + { + "#": 4120 + }, + { + "#": 4142 + }, + { + "#": 4164 + }, + { + "#": 4186 + }, + { + "#": 4208 + }, + { + "#": 4230 + }, + { + "#": 4252 + }, + { + "#": 4274 + }, + { + "#": 4296 + }, + { + "#": 4318 + }, + { + "#": 4340 + }, + { + "#": 4362 + }, + { + "#": 4384 + }, + { + "#": 4406 + }, + { + "#": 4428 + }, + { + "#": 4450 + }, + { + "#": 4472 + }, + { + "#": 4494 + }, + { + "#": 4516 + }, + { + "#": 4538 + }, + { + "#": 4560 + }, + { + "#": 4582 + }, + { + "#": 4604 + }, + { + "#": 4626 + }, + { + "#": 4648 + }, + { + "#": 4670 + }, + { + "#": 4692 + }, + { + "#": 4714 + }, + { + "#": 4736 + }, + { + "#": 4758 + }, + { + "#": 4780 + }, + { + "#": 4802 + }, + { + "#": 4824 + }, + { + "#": 4846 + }, + { + "#": 4868 + }, + { + "#": 4890 + }, + { + "#": 4912 + }, + { + "#": 4934 + }, + { + "#": 4956 + }, + { + "#": 4978 + }, + { + "#": 5000 + }, + { + "#": 5022 + }, + { + "#": 5044 + }, + { + "#": 5066 + }, + { + "#": 5088 + }, + { + "#": 5110 + }, + { + "#": 5132 + }, + { + "#": 5154 + }, + { + "#": 5176 + }, + { + "#": 5198 + }, + { + "#": 5220 + }, + { + "#": 5242 + }, + { + "#": 5264 + }, + { + "#": 5286 + }, + { + "#": 5308 + }, + { + "#": 5330 + }, + { + "#": 5352 + }, + { + "#": 5374 + }, + { + "#": 5396 + }, + { + "#": 5418 + }, + { + "#": 5440 + }, + { + "#": 5462 + }, + { + "#": 5484 + }, + { + "#": 5506 + }, + { + "#": 5528 + }, + { + "#": 5550 + }, + { + "#": 5572 + }, + { + "#": 5594 + }, + { + "#": 5616 + }, + { + "#": 5638 + }, + { + "#": 5660 + }, + { + "#": 5682 + }, + { + "#": 5704 + }, + { + "#": 5726 + }, + { + "#": 5748 + }, + { + "#": 5770 + }, + { + "#": 5792 + }, + { + "#": 5814 + }, + { + "#": 5836 + }, + { + "#": 5858 + }, + { + "#": 5880 + }, + { + "#": 5902 + }, + { + "#": 5924 + }, + { + "#": 5946 + }, + { + "#": 5968 + }, + { + "#": 5990 + }, + { + "#": 6012 + }, + { + "#": 6034 + }, + { + "#": 6056 + }, + { + "#": 6078 + }, + { + "#": 6100 + }, + { + "#": 6122 + }, + { + "#": 6144 + }, + { + "#": 6166 + }, + { + "#": 6188 + }, + { + "#": 6210 + }, + { + "#": 6232 + }, + { + "#": 6254 + }, + { + "#": 6276 + }, + { + "#": 6298 + }, + { + "#": 6320 + }, + { + "#": 6342 + }, + { + "#": 6364 + }, + { + "#": 6386 + }, + { + "#": 6408 + }, + { + "#": 6430 + }, + { + "#": 6452 + }, + { + "#": 6474 + }, + { + "#": 6496 + }, + { + "#": 6518 + }, + { + "#": 6540 + }, + { + "#": 6562 + }, + { + "#": 6584 + }, + { + "#": 6606 + }, + { + "#": 6628 + }, + { + "#": 6650 + }, + { + "#": 6672 + }, + { + "#": 6694 + }, + { + "#": 6716 + }, + { + "#": 6738 + }, + { + "#": 6760 + }, + { + "#": 6782 + }, + { + "#": 6804 + }, + { + "#": 6826 + }, + { + "#": 6848 + }, + { + "#": 6870 + }, + { + "#": 6892 + }, + { + "#": 6914 + }, + { + "#": 6936 + }, + { + "#": 6958 + }, + { + "#": 6980 + }, + { + "#": 7002 + }, + { + "#": 7024 + }, + { + "#": 7046 + }, + { + "#": 7068 + }, + { + "#": 7090 + }, + { + "#": 7112 + }, + { + "#": 7134 + }, + { + "#": 7156 + }, + { + "#": 7178 + }, + { + "#": 7200 + }, + { + "#": 7222 + }, + { + "#": 7244 + }, + { + "#": 7266 + }, + { + "#": 7288 + }, + { + "#": 7310 + }, + { + "#": 7332 + }, + { + "#": 7354 + }, + { + "#": 7376 + }, + { + "#": 7398 + }, + { + "#": 7420 + }, + { + "#": 7442 + }, + { + "#": 7464 + }, + { + "#": 7486 + }, + { + "#": 7508 + }, + { + "#": 7530 + }, + { + "#": 7552 + }, + { + "#": 7574 + }, + { + "#": 7596 + }, + { + "#": 7618 + }, + { + "#": 7640 + }, + { + "#": 7662 + }, + { + "#": 7684 + }, + { + "#": 7706 + }, + { + "#": 7728 + }, + { + "#": 7750 + }, + { + "#": 7772 + }, + { + "#": 7794 + }, + { + "#": 7816 + }, + { + "#": 7838 + }, + { + "#": 7860 + }, + { + "#": 7882 + }, + { + "#": 7904 + }, + { + "#": 7926 + }, + { + "#": 7948 + }, + { + "#": 7970 + }, + { + "#": 7992 + }, + { + "#": 8014 + }, + { + "#": 8036 + }, + { + "#": 8058 + }, + { + "#": 8080 + }, + { + "#": 8102 + }, + { + "#": 8124 + }, + { + "#": 8146 + }, + { + "#": 8168 + }, + { + "#": 8190 + }, + { + "#": 8212 + }, + { + "#": 8234 + }, + { + "#": 8256 + }, + { + "#": 8278 + }, + { + "#": 8300 + }, + { + "#": 8322 + }, + { + "#": 8344 + }, + { + "#": 8366 + }, + { + "#": 8388 + }, + { + "#": 8410 + }, + { + "#": 8432 + }, + { + "#": 8454 + }, + { + "#": 8476 + }, + { + "#": 8498 + }, + { + "#": 8520 + }, + { + "#": 8542 + }, + { + "#": 8564 + }, + { + "#": 8586 + }, + { + "#": 8608 + }, + { + "#": 8630 + }, + { + "#": 8652 + }, + { + "#": 8674 + }, + { + "#": 8696 + }, + { + "#": 8718 + }, + { + "#": 8740 + }, + { + "#": 8762 + }, + { + "#": 8784 + }, + { + "#": 8806 + }, + { + "#": 8828 + }, + { + "#": 8850 + }, + { + "#": 8872 + }, + { + "#": 8894 + }, + { + "#": 8916 + }, + { + "#": 8938 + }, + { + "#": 8960 + }, + { + "#": 8982 + }, + { + "#": 9004 + }, + { + "#": 9026 + }, + { + "#": 9048 + }, + { + "#": 9070 + }, + { + "#": 9092 + }, + { + "#": 9114 + }, + { + "#": 9136 + }, + { + "#": 9158 + }, + { + "#": 9180 + }, + { + "#": 9202 + }, + { + "#": 9224 + }, + { + "#": 9246 + }, + { + "#": 9268 + }, + { + "#": 9290 + }, + { + "#": 9312 + }, + { + "#": 9334 + }, + { + "#": 9356 + }, + { + "#": 9378 + }, + { + "#": 9400 + }, + { + "#": 9422 + }, + { + "#": 9444 + }, + { + "#": 9466 + }, + { + "#": 9488 + }, + { + "#": 9510 + }, + { + "#": 9532 + }, + { + "#": 9554 + }, + { + "#": 9576 + }, + { + "#": 9598 + }, + { + "#": 9620 + }, + { + "#": 9642 + }, + { + "#": 9664 + }, + { + "#": 9686 + }, + { + "#": 9708 + }, + { + "#": 9730 + }, + { + "#": 9752 + }, + { + "#": 9774 + }, + { + "#": 9796 + }, + { + "#": 9818 + }, + { + "#": 9840 + }, + { + "#": 9862 + }, + { + "#": 9884 + }, + { + "#": 9906 + }, + { + "#": 9928 + }, + { + "#": 9950 + }, + { + "#": 9972 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 96 + }, + "position": { + "#": 101 + }, + "force": { + "#": 102 + }, + "torque": 0, + "positionImpulse": { + "#": 103 + }, + "constraintImpulse": { + "#": 104 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 105 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 106 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 107 + }, + "bounds": { + "#": 109 + }, + "positionPrev": { + "#": 112 + }, + "anglePrev": 0, + "axes": { + "#": 113 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 94 + }, + "sleepCounter": 0 + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + } + ], + { + "x": 100, + "y": 120, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 125, + "y": 120, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 125, + "y": 145, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 100, + "y": 145, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 108 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 110 + }, + "max": { + "#": 111 + } + }, + { + "x": 100, + "y": 120 + }, + { + "x": 125, + "y": 145 + }, + { + "x": 112.5, + "y": 132.5 + }, + [ + { + "#": 114 + }, + { + "#": 115 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 117 + }, + "angle": 0, + "vertices": { + "#": 118 + }, + "position": { + "#": 123 + }, + "force": { + "#": 124 + }, + "torque": 0, + "positionImpulse": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 127 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 128 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 129 + }, + "bounds": { + "#": 131 + }, + "positionPrev": { + "#": 134 + }, + "anglePrev": 0, + "axes": { + "#": 135 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 116 + }, + "sleepCounter": 0 + }, + [ + { + "#": 116 + } + ], + [ + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + } + ], + { + "x": 125, + "y": 120, + "index": 0, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 150, + "y": 120, + "index": 1, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 150, + "y": 145, + "index": 2, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 125, + "y": 145, + "index": 3, + "body": { + "#": 116 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 130 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 132 + }, + "max": { + "#": 133 + } + }, + { + "x": 125, + "y": 120 + }, + { + "x": 150, + "y": 145 + }, + { + "x": 137.5, + "y": 132.5 + }, + [ + { + "#": 136 + }, + { + "#": 137 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 139 + }, + "angle": 0, + "vertices": { + "#": 140 + }, + "position": { + "#": 145 + }, + "force": { + "#": 146 + }, + "torque": 0, + "positionImpulse": { + "#": 147 + }, + "constraintImpulse": { + "#": 148 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 149 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 150 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 151 + }, + "bounds": { + "#": 153 + }, + "positionPrev": { + "#": 156 + }, + "anglePrev": 0, + "axes": { + "#": 157 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 138 + }, + "sleepCounter": 0 + }, + [ + { + "#": 138 + } + ], + [ + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + } + ], + { + "x": 150, + "y": 120, + "index": 0, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 175, + "y": 120, + "index": 1, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 175, + "y": 145, + "index": 2, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 150, + "y": 145, + "index": 3, + "body": { + "#": 138 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 152 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 154 + }, + "max": { + "#": 155 + } + }, + { + "x": 150, + "y": 120 + }, + { + "x": 175, + "y": 145 + }, + { + "x": 162.5, + "y": 132.5 + }, + [ + { + "#": 158 + }, + { + "#": 159 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 161 + }, + "angle": 0, + "vertices": { + "#": 162 + }, + "position": { + "#": 167 + }, + "force": { + "#": 168 + }, + "torque": 0, + "positionImpulse": { + "#": 169 + }, + "constraintImpulse": { + "#": 170 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 171 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 172 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 173 + }, + "bounds": { + "#": 175 + }, + "positionPrev": { + "#": 178 + }, + "anglePrev": 0, + "axes": { + "#": 179 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 160 + }, + "sleepCounter": 0 + }, + [ + { + "#": 160 + } + ], + [ + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + } + ], + { + "x": 175, + "y": 120, + "index": 0, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 200, + "y": 120, + "index": 1, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 200, + "y": 145, + "index": 2, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 175, + "y": 145, + "index": 3, + "body": { + "#": 160 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 174 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 176 + }, + "max": { + "#": 177 + } + }, + { + "x": 175, + "y": 120 + }, + { + "x": 200, + "y": 145 + }, + { + "x": 187.5, + "y": 132.5 + }, + [ + { + "#": 180 + }, + { + "#": 181 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 183 + }, + "angle": 0, + "vertices": { + "#": 184 + }, + "position": { + "#": 189 + }, + "force": { + "#": 190 + }, + "torque": 0, + "positionImpulse": { + "#": 191 + }, + "constraintImpulse": { + "#": 192 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 193 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 194 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 195 + }, + "bounds": { + "#": 197 + }, + "positionPrev": { + "#": 200 + }, + "anglePrev": 0, + "axes": { + "#": 201 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 182 + }, + "sleepCounter": 0 + }, + [ + { + "#": 182 + } + ], + [ + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + } + ], + { + "x": 200, + "y": 120, + "index": 0, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 225, + "y": 120, + "index": 1, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 225, + "y": 145, + "index": 2, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 200, + "y": 145, + "index": 3, + "body": { + "#": 182 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 196 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 198 + }, + "max": { + "#": 199 + } + }, + { + "x": 200, + "y": 120 + }, + { + "x": 225, + "y": 145 + }, + { + "x": 212.5, + "y": 132.5 + }, + [ + { + "#": 202 + }, + { + "#": 203 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 205 + }, + "angle": 0, + "vertices": { + "#": 206 + }, + "position": { + "#": 211 + }, + "force": { + "#": 212 + }, + "torque": 0, + "positionImpulse": { + "#": 213 + }, + "constraintImpulse": { + "#": 214 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 215 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 216 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 217 + }, + "bounds": { + "#": 219 + }, + "positionPrev": { + "#": 222 + }, + "anglePrev": 0, + "axes": { + "#": 223 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 204 + }, + "sleepCounter": 0 + }, + [ + { + "#": 204 + } + ], + [ + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + } + ], + { + "x": 225, + "y": 120, + "index": 0, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 250, + "y": 120, + "index": 1, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 250, + "y": 145, + "index": 2, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 225, + "y": 145, + "index": 3, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 218 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 220 + }, + "max": { + "#": 221 + } + }, + { + "x": 225, + "y": 120 + }, + { + "x": 250, + "y": 145 + }, + { + "x": 237.5, + "y": 132.5 + }, + [ + { + "#": 224 + }, + { + "#": 225 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 227 + }, + "angle": 0, + "vertices": { + "#": 228 + }, + "position": { + "#": 233 + }, + "force": { + "#": 234 + }, + "torque": 0, + "positionImpulse": { + "#": 235 + }, + "constraintImpulse": { + "#": 236 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 237 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 238 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 239 + }, + "bounds": { + "#": 241 + }, + "positionPrev": { + "#": 244 + }, + "anglePrev": 0, + "axes": { + "#": 245 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 226 + }, + "sleepCounter": 0 + }, + [ + { + "#": 226 + } + ], + [ + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + } + ], + { + "x": 250, + "y": 120, + "index": 0, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 275, + "y": 120, + "index": 1, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 275, + "y": 145, + "index": 2, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 250, + "y": 145, + "index": 3, + "body": { + "#": 226 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 240 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 242 + }, + "max": { + "#": 243 + } + }, + { + "x": 250, + "y": 120 + }, + { + "x": 275, + "y": 145 + }, + { + "x": 262.5, + "y": 132.5 + }, + [ + { + "#": 246 + }, + { + "#": 247 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 249 + }, + "angle": 0, + "vertices": { + "#": 250 + }, + "position": { + "#": 255 + }, + "force": { + "#": 256 + }, + "torque": 0, + "positionImpulse": { + "#": 257 + }, + "constraintImpulse": { + "#": 258 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 259 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 260 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 261 + }, + "bounds": { + "#": 263 + }, + "positionPrev": { + "#": 266 + }, + "anglePrev": 0, + "axes": { + "#": 267 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 248 + }, + "sleepCounter": 0 + }, + [ + { + "#": 248 + } + ], + [ + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + }, + { + "#": 254 + } + ], + { + "x": 275, + "y": 120, + "index": 0, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 300, + "y": 120, + "index": 1, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 300, + "y": 145, + "index": 2, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 275, + "y": 145, + "index": 3, + "body": { + "#": 248 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 262 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 264 + }, + "max": { + "#": 265 + } + }, + { + "x": 275, + "y": 120 + }, + { + "x": 300, + "y": 145 + }, + { + "x": 287.5, + "y": 132.5 + }, + [ + { + "#": 268 + }, + { + "#": 269 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 271 + }, + "angle": 0, + "vertices": { + "#": 272 + }, + "position": { + "#": 277 + }, + "force": { + "#": 278 + }, + "torque": 0, + "positionImpulse": { + "#": 279 + }, + "constraintImpulse": { + "#": 280 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 281 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 282 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 283 + }, + "bounds": { + "#": 285 + }, + "positionPrev": { + "#": 288 + }, + "anglePrev": 0, + "axes": { + "#": 289 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 270 + }, + "sleepCounter": 0 + }, + [ + { + "#": 270 + } + ], + [ + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + } + ], + { + "x": 300, + "y": 120, + "index": 0, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 325, + "y": 120, + "index": 1, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 325, + "y": 145, + "index": 2, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 300, + "y": 145, + "index": 3, + "body": { + "#": 270 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 284 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 286 + }, + "max": { + "#": 287 + } + }, + { + "x": 300, + "y": 120 + }, + { + "x": 325, + "y": 145 + }, + { + "x": 312.5, + "y": 132.5 + }, + [ + { + "#": 290 + }, + { + "#": 291 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 293 + }, + "angle": 0, + "vertices": { + "#": 294 + }, + "position": { + "#": 299 + }, + "force": { + "#": 300 + }, + "torque": 0, + "positionImpulse": { + "#": 301 + }, + "constraintImpulse": { + "#": 302 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 303 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 304 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 305 + }, + "bounds": { + "#": 307 + }, + "positionPrev": { + "#": 310 + }, + "anglePrev": 0, + "axes": { + "#": 311 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 292 + }, + "sleepCounter": 0 + }, + [ + { + "#": 292 + } + ], + [ + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + } + ], + { + "x": 325, + "y": 120, + "index": 0, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 350, + "y": 120, + "index": 1, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 350, + "y": 145, + "index": 2, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 325, + "y": 145, + "index": 3, + "body": { + "#": 292 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 306 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 308 + }, + "max": { + "#": 309 + } + }, + { + "x": 325, + "y": 120 + }, + { + "x": 350, + "y": 145 + }, + { + "x": 337.5, + "y": 132.5 + }, + [ + { + "#": 312 + }, + { + "#": 313 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 15, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 315 + }, + "angle": 0, + "vertices": { + "#": 316 + }, + "position": { + "#": 321 + }, + "force": { + "#": 322 + }, + "torque": 0, + "positionImpulse": { + "#": 323 + }, + "constraintImpulse": { + "#": 324 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 325 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 326 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 327 + }, + "bounds": { + "#": 329 + }, + "positionPrev": { + "#": 332 + }, + "anglePrev": 0, + "axes": { + "#": 333 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 314 + }, + "sleepCounter": 0 + }, + [ + { + "#": 314 + } + ], + [ + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + } + ], + { + "x": 350, + "y": 120, + "index": 0, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 375, + "y": 120, + "index": 1, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 375, + "y": 145, + "index": 2, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 350, + "y": 145, + "index": 3, + "body": { + "#": 314 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 328 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 330 + }, + "max": { + "#": 331 + } + }, + { + "x": 350, + "y": 120 + }, + { + "x": 375, + "y": 145 + }, + { + "x": 362.5, + "y": 132.5 + }, + [ + { + "#": 334 + }, + { + "#": 335 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 16, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 337 + }, + "angle": 0, + "vertices": { + "#": 338 + }, + "position": { + "#": 343 + }, + "force": { + "#": 344 + }, + "torque": 0, + "positionImpulse": { + "#": 345 + }, + "constraintImpulse": { + "#": 346 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 347 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 348 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 349 + }, + "bounds": { + "#": 351 + }, + "positionPrev": { + "#": 354 + }, + "anglePrev": 0, + "axes": { + "#": 355 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 336 + }, + "sleepCounter": 0 + }, + [ + { + "#": 336 + } + ], + [ + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + } + ], + { + "x": 375, + "y": 120, + "index": 0, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 400, + "y": 120, + "index": 1, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 400, + "y": 145, + "index": 2, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 375, + "y": 145, + "index": 3, + "body": { + "#": 336 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 350 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 352 + }, + "max": { + "#": 353 + } + }, + { + "x": 375, + "y": 120 + }, + { + "x": 400, + "y": 145 + }, + { + "x": 387.5, + "y": 132.5 + }, + [ + { + "#": 356 + }, + { + "#": 357 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 17, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 359 + }, + "angle": 0, + "vertices": { + "#": 360 + }, + "position": { + "#": 365 + }, + "force": { + "#": 366 + }, + "torque": 0, + "positionImpulse": { + "#": 367 + }, + "constraintImpulse": { + "#": 368 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 369 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 370 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 371 + }, + "bounds": { + "#": 373 + }, + "positionPrev": { + "#": 376 + }, + "anglePrev": 0, + "axes": { + "#": 377 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 358 + }, + "sleepCounter": 0 + }, + [ + { + "#": 358 + } + ], + [ + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + } + ], + { + "x": 400, + "y": 120, + "index": 0, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 425, + "y": 120, + "index": 1, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 425, + "y": 145, + "index": 2, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 400, + "y": 145, + "index": 3, + "body": { + "#": 358 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 372 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 374 + }, + "max": { + "#": 375 + } + }, + { + "x": 400, + "y": 120 + }, + { + "x": 425, + "y": 145 + }, + { + "x": 412.5, + "y": 132.5 + }, + [ + { + "#": 378 + }, + { + "#": 379 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 18, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 381 + }, + "angle": 0, + "vertices": { + "#": 382 + }, + "position": { + "#": 387 + }, + "force": { + "#": 388 + }, + "torque": 0, + "positionImpulse": { + "#": 389 + }, + "constraintImpulse": { + "#": 390 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 391 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 392 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 393 + }, + "bounds": { + "#": 395 + }, + "positionPrev": { + "#": 398 + }, + "anglePrev": 0, + "axes": { + "#": 399 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 380 + }, + "sleepCounter": 0 + }, + [ + { + "#": 380 + } + ], + [ + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + } + ], + { + "x": 425, + "y": 120, + "index": 0, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 450, + "y": 120, + "index": 1, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 450, + "y": 145, + "index": 2, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 425, + "y": 145, + "index": 3, + "body": { + "#": 380 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 394 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 396 + }, + "max": { + "#": 397 + } + }, + { + "x": 425, + "y": 120 + }, + { + "x": 450, + "y": 145 + }, + { + "x": 437.5, + "y": 132.5 + }, + [ + { + "#": 400 + }, + { + "#": 401 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 19, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 403 + }, + "angle": 0, + "vertices": { + "#": 404 + }, + "position": { + "#": 409 + }, + "force": { + "#": 410 + }, + "torque": 0, + "positionImpulse": { + "#": 411 + }, + "constraintImpulse": { + "#": 412 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 413 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 414 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 415 + }, + "bounds": { + "#": 417 + }, + "positionPrev": { + "#": 420 + }, + "anglePrev": 0, + "axes": { + "#": 421 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 402 + }, + "sleepCounter": 0 + }, + [ + { + "#": 402 + } + ], + [ + { + "#": 405 + }, + { + "#": 406 + }, + { + "#": 407 + }, + { + "#": 408 + } + ], + { + "x": 450, + "y": 120, + "index": 0, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 475, + "y": 120, + "index": 1, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 475, + "y": 145, + "index": 2, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 450, + "y": 145, + "index": 3, + "body": { + "#": 402 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 416 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 418 + }, + "max": { + "#": 419 + } + }, + { + "x": 450, + "y": 120 + }, + { + "x": 475, + "y": 145 + }, + { + "x": 462.5, + "y": 132.5 + }, + [ + { + "#": 422 + }, + { + "#": 423 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 20, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 425 + }, + "angle": 0, + "vertices": { + "#": 426 + }, + "position": { + "#": 431 + }, + "force": { + "#": 432 + }, + "torque": 0, + "positionImpulse": { + "#": 433 + }, + "constraintImpulse": { + "#": 434 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 435 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 436 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 437 + }, + "bounds": { + "#": 439 + }, + "positionPrev": { + "#": 442 + }, + "anglePrev": 0, + "axes": { + "#": 443 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 424 + }, + "sleepCounter": 0 + }, + [ + { + "#": 424 + } + ], + [ + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + } + ], + { + "x": 475, + "y": 120, + "index": 0, + "body": { + "#": 424 + }, + "isInternal": false + }, + { + "x": 500, + "y": 120, + "index": 1, + "body": { + "#": 424 + }, + "isInternal": false + }, + { + "x": 500, + "y": 145, + "index": 2, + "body": { + "#": 424 + }, + "isInternal": false + }, + { + "x": 475, + "y": 145, + "index": 3, + "body": { + "#": 424 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 438 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 440 + }, + "max": { + "#": 441 + } + }, + { + "x": 475, + "y": 120 + }, + { + "x": 500, + "y": 145 + }, + { + "x": 487.5, + "y": 132.5 + }, + [ + { + "#": 444 + }, + { + "#": 445 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 21, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 447 + }, + "angle": 0, + "vertices": { + "#": 448 + }, + "position": { + "#": 453 + }, + "force": { + "#": 454 + }, + "torque": 0, + "positionImpulse": { + "#": 455 + }, + "constraintImpulse": { + "#": 456 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 457 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 458 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 459 + }, + "bounds": { + "#": 461 + }, + "positionPrev": { + "#": 464 + }, + "anglePrev": 0, + "axes": { + "#": 465 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 446 + }, + "sleepCounter": 0 + }, + [ + { + "#": 446 + } + ], + [ + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + } + ], + { + "x": 500, + "y": 120, + "index": 0, + "body": { + "#": 446 + }, + "isInternal": false + }, + { + "x": 525, + "y": 120, + "index": 1, + "body": { + "#": 446 + }, + "isInternal": false + }, + { + "x": 525, + "y": 145, + "index": 2, + "body": { + "#": 446 + }, + "isInternal": false + }, + { + "x": 500, + "y": 145, + "index": 3, + "body": { + "#": 446 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 460 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 462 + }, + "max": { + "#": 463 + } + }, + { + "x": 500, + "y": 120 + }, + { + "x": 525, + "y": 145 + }, + { + "x": 512.5, + "y": 132.5 + }, + [ + { + "#": 466 + }, + { + "#": 467 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 22, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 469 + }, + "angle": 0, + "vertices": { + "#": 470 + }, + "position": { + "#": 475 + }, + "force": { + "#": 476 + }, + "torque": 0, + "positionImpulse": { + "#": 477 + }, + "constraintImpulse": { + "#": 478 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 479 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 480 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 481 + }, + "bounds": { + "#": 483 + }, + "positionPrev": { + "#": 486 + }, + "anglePrev": 0, + "axes": { + "#": 487 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 468 + }, + "sleepCounter": 0 + }, + [ + { + "#": 468 + } + ], + [ + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + }, + { + "#": 474 + } + ], + { + "x": 525, + "y": 120, + "index": 0, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 550, + "y": 120, + "index": 1, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 550, + "y": 145, + "index": 2, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 525, + "y": 145, + "index": 3, + "body": { + "#": 468 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 482 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 484 + }, + "max": { + "#": 485 + } + }, + { + "x": 525, + "y": 120 + }, + { + "x": 550, + "y": 145 + }, + { + "x": 537.5, + "y": 132.5 + }, + [ + { + "#": 488 + }, + { + "#": 489 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 23, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 491 + }, + "angle": 0, + "vertices": { + "#": 492 + }, + "position": { + "#": 497 + }, + "force": { + "#": 498 + }, + "torque": 0, + "positionImpulse": { + "#": 499 + }, + "constraintImpulse": { + "#": 500 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 501 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 502 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 503 + }, + "bounds": { + "#": 505 + }, + "positionPrev": { + "#": 508 + }, + "anglePrev": 0, + "axes": { + "#": 509 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 490 + }, + "sleepCounter": 0 + }, + [ + { + "#": 490 + } + ], + [ + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + }, + { + "#": 496 + } + ], + { + "x": 550, + "y": 120, + "index": 0, + "body": { + "#": 490 + }, + "isInternal": false + }, + { + "x": 575, + "y": 120, + "index": 1, + "body": { + "#": 490 + }, + "isInternal": false + }, + { + "x": 575, + "y": 145, + "index": 2, + "body": { + "#": 490 + }, + "isInternal": false + }, + { + "x": 550, + "y": 145, + "index": 3, + "body": { + "#": 490 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 504 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 506 + }, + "max": { + "#": 507 + } + }, + { + "x": 550, + "y": 120 + }, + { + "x": 575, + "y": 145 + }, + { + "x": 562.5, + "y": 132.5 + }, + [ + { + "#": 510 + }, + { + "#": 511 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 24, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 513 + }, + "angle": 0, + "vertices": { + "#": 514 + }, + "position": { + "#": 519 + }, + "force": { + "#": 520 + }, + "torque": 0, + "positionImpulse": { + "#": 521 + }, + "constraintImpulse": { + "#": 522 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 523 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 524 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 525 + }, + "bounds": { + "#": 527 + }, + "positionPrev": { + "#": 530 + }, + "anglePrev": 0, + "axes": { + "#": 531 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 512 + }, + "sleepCounter": 0 + }, + [ + { + "#": 512 + } + ], + [ + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + } + ], + { + "x": 575, + "y": 120, + "index": 0, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 600, + "y": 120, + "index": 1, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 600, + "y": 145, + "index": 2, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 575, + "y": 145, + "index": 3, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 526 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 528 + }, + "max": { + "#": 529 + } + }, + { + "x": 575, + "y": 120 + }, + { + "x": 600, + "y": 145 + }, + { + "x": 587.5, + "y": 132.5 + }, + [ + { + "#": 532 + }, + { + "#": 533 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 25, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 535 + }, + "angle": 0, + "vertices": { + "#": 536 + }, + "position": { + "#": 541 + }, + "force": { + "#": 542 + }, + "torque": 0, + "positionImpulse": { + "#": 543 + }, + "constraintImpulse": { + "#": 544 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 545 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 546 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 547 + }, + "bounds": { + "#": 549 + }, + "positionPrev": { + "#": 552 + }, + "anglePrev": 0, + "axes": { + "#": 553 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 534 + }, + "sleepCounter": 0 + }, + [ + { + "#": 534 + } + ], + [ + { + "#": 537 + }, + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + } + ], + { + "x": 600, + "y": 120, + "index": 0, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 625, + "y": 120, + "index": 1, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 625, + "y": 145, + "index": 2, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 600, + "y": 145, + "index": 3, + "body": { + "#": 534 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 548 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 550 + }, + "max": { + "#": 551 + } + }, + { + "x": 600, + "y": 120 + }, + { + "x": 625, + "y": 145 + }, + { + "x": 612.5, + "y": 132.5 + }, + [ + { + "#": 554 + }, + { + "#": 555 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 26, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 557 + }, + "angle": 0, + "vertices": { + "#": 558 + }, + "position": { + "#": 563 + }, + "force": { + "#": 564 + }, + "torque": 0, + "positionImpulse": { + "#": 565 + }, + "constraintImpulse": { + "#": 566 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 567 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 568 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 569 + }, + "bounds": { + "#": 571 + }, + "positionPrev": { + "#": 574 + }, + "anglePrev": 0, + "axes": { + "#": 575 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 556 + }, + "sleepCounter": 0 + }, + [ + { + "#": 556 + } + ], + [ + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + } + ], + { + "x": 625, + "y": 120, + "index": 0, + "body": { + "#": 556 + }, + "isInternal": false + }, + { + "x": 650, + "y": 120, + "index": 1, + "body": { + "#": 556 + }, + "isInternal": false + }, + { + "x": 650, + "y": 145, + "index": 2, + "body": { + "#": 556 + }, + "isInternal": false + }, + { + "x": 625, + "y": 145, + "index": 3, + "body": { + "#": 556 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 570 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 572 + }, + "max": { + "#": 573 + } + }, + { + "x": 625, + "y": 120 + }, + { + "x": 650, + "y": 145 + }, + { + "x": 637.5, + "y": 132.5 + }, + [ + { + "#": 576 + }, + { + "#": 577 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 27, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 579 + }, + "angle": 0, + "vertices": { + "#": 580 + }, + "position": { + "#": 585 + }, + "force": { + "#": 586 + }, + "torque": 0, + "positionImpulse": { + "#": 587 + }, + "constraintImpulse": { + "#": 588 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 589 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 590 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 591 + }, + "bounds": { + "#": 593 + }, + "positionPrev": { + "#": 596 + }, + "anglePrev": 0, + "axes": { + "#": 597 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 578 + }, + "sleepCounter": 0 + }, + [ + { + "#": 578 + } + ], + [ + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + } + ], + { + "x": 650, + "y": 120, + "index": 0, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 675, + "y": 120, + "index": 1, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 675, + "y": 145, + "index": 2, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 650, + "y": 145, + "index": 3, + "body": { + "#": 578 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 592 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 594 + }, + "max": { + "#": 595 + } + }, + { + "x": 650, + "y": 120 + }, + { + "x": 675, + "y": 145 + }, + { + "x": 662.5, + "y": 132.5 + }, + [ + { + "#": 598 + }, + { + "#": 599 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 28, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 601 + }, + "angle": 0, + "vertices": { + "#": 602 + }, + "position": { + "#": 607 + }, + "force": { + "#": 608 + }, + "torque": 0, + "positionImpulse": { + "#": 609 + }, + "constraintImpulse": { + "#": 610 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 611 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 612 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 613 + }, + "bounds": { + "#": 615 + }, + "positionPrev": { + "#": 618 + }, + "anglePrev": 0, + "axes": { + "#": 619 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 600 + }, + "sleepCounter": 0 + }, + [ + { + "#": 600 + } + ], + [ + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + } + ], + { + "x": 675, + "y": 120, + "index": 0, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 700, + "y": 120, + "index": 1, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 700, + "y": 145, + "index": 2, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 675, + "y": 145, + "index": 3, + "body": { + "#": 600 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 614 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 616 + }, + "max": { + "#": 617 + } + }, + { + "x": 675, + "y": 120 + }, + { + "x": 700, + "y": 145 + }, + { + "x": 687.5, + "y": 132.5 + }, + [ + { + "#": 620 + }, + { + "#": 621 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 29, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 623 + }, + "angle": 0, + "vertices": { + "#": 624 + }, + "position": { + "#": 629 + }, + "force": { + "#": 630 + }, + "torque": 0, + "positionImpulse": { + "#": 631 + }, + "constraintImpulse": { + "#": 632 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 633 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 634 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 635 + }, + "bounds": { + "#": 637 + }, + "positionPrev": { + "#": 640 + }, + "anglePrev": 0, + "axes": { + "#": 641 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 622 + }, + "sleepCounter": 0 + }, + [ + { + "#": 622 + } + ], + [ + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + } + ], + { + "x": 700, + "y": 120, + "index": 0, + "body": { + "#": 622 + }, + "isInternal": false + }, + { + "x": 725, + "y": 120, + "index": 1, + "body": { + "#": 622 + }, + "isInternal": false + }, + { + "x": 725, + "y": 145, + "index": 2, + "body": { + "#": 622 + }, + "isInternal": false + }, + { + "x": 700, + "y": 145, + "index": 3, + "body": { + "#": 622 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 132.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 636 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 638 + }, + "max": { + "#": 639 + } + }, + { + "x": 700, + "y": 120 + }, + { + "x": 725, + "y": 145 + }, + { + "x": 712.5, + "y": 132.5 + }, + [ + { + "#": 642 + }, + { + "#": 643 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 30, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 645 + }, + "angle": 0, + "vertices": { + "#": 646 + }, + "position": { + "#": 651 + }, + "force": { + "#": 652 + }, + "torque": 0, + "positionImpulse": { + "#": 653 + }, + "constraintImpulse": { + "#": 654 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 655 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 656 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 657 + }, + "bounds": { + "#": 659 + }, + "positionPrev": { + "#": 662 + }, + "anglePrev": 0, + "axes": { + "#": 663 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 644 + }, + "sleepCounter": 0 + }, + [ + { + "#": 644 + } + ], + [ + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + } + ], + { + "x": 100, + "y": 145, + "index": 0, + "body": { + "#": 644 + }, + "isInternal": false + }, + { + "x": 125, + "y": 145, + "index": 1, + "body": { + "#": 644 + }, + "isInternal": false + }, + { + "x": 125, + "y": 170, + "index": 2, + "body": { + "#": 644 + }, + "isInternal": false + }, + { + "x": 100, + "y": 170, + "index": 3, + "body": { + "#": 644 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 658 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 660 + }, + "max": { + "#": 661 + } + }, + { + "x": 100, + "y": 145 + }, + { + "x": 125, + "y": 170 + }, + { + "x": 112.5, + "y": 157.5 + }, + [ + { + "#": 664 + }, + { + "#": 665 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 31, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 667 + }, + "angle": 0, + "vertices": { + "#": 668 + }, + "position": { + "#": 673 + }, + "force": { + "#": 674 + }, + "torque": 0, + "positionImpulse": { + "#": 675 + }, + "constraintImpulse": { + "#": 676 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 677 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 678 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 679 + }, + "bounds": { + "#": 681 + }, + "positionPrev": { + "#": 684 + }, + "anglePrev": 0, + "axes": { + "#": 685 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 666 + }, + "sleepCounter": 0 + }, + [ + { + "#": 666 + } + ], + [ + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + } + ], + { + "x": 125, + "y": 145, + "index": 0, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 150, + "y": 145, + "index": 1, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 150, + "y": 170, + "index": 2, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 125, + "y": 170, + "index": 3, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 680 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 682 + }, + "max": { + "#": 683 + } + }, + { + "x": 125, + "y": 145 + }, + { + "x": 150, + "y": 170 + }, + { + "x": 137.5, + "y": 157.5 + }, + [ + { + "#": 686 + }, + { + "#": 687 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 32, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 689 + }, + "angle": 0, + "vertices": { + "#": 690 + }, + "position": { + "#": 695 + }, + "force": { + "#": 696 + }, + "torque": 0, + "positionImpulse": { + "#": 697 + }, + "constraintImpulse": { + "#": 698 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 699 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 700 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 701 + }, + "bounds": { + "#": 703 + }, + "positionPrev": { + "#": 706 + }, + "anglePrev": 0, + "axes": { + "#": 707 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 688 + }, + "sleepCounter": 0 + }, + [ + { + "#": 688 + } + ], + [ + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + } + ], + { + "x": 150, + "y": 145, + "index": 0, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 175, + "y": 145, + "index": 1, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 175, + "y": 170, + "index": 2, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 150, + "y": 170, + "index": 3, + "body": { + "#": 688 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 702 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 704 + }, + "max": { + "#": 705 + } + }, + { + "x": 150, + "y": 145 + }, + { + "x": 175, + "y": 170 + }, + { + "x": 162.5, + "y": 157.5 + }, + [ + { + "#": 708 + }, + { + "#": 709 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 33, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 711 + }, + "angle": 0, + "vertices": { + "#": 712 + }, + "position": { + "#": 717 + }, + "force": { + "#": 718 + }, + "torque": 0, + "positionImpulse": { + "#": 719 + }, + "constraintImpulse": { + "#": 720 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 721 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 722 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 723 + }, + "bounds": { + "#": 725 + }, + "positionPrev": { + "#": 728 + }, + "anglePrev": 0, + "axes": { + "#": 729 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 710 + }, + "sleepCounter": 0 + }, + [ + { + "#": 710 + } + ], + [ + { + "#": 713 + }, + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + } + ], + { + "x": 175, + "y": 145, + "index": 0, + "body": { + "#": 710 + }, + "isInternal": false + }, + { + "x": 200, + "y": 145, + "index": 1, + "body": { + "#": 710 + }, + "isInternal": false + }, + { + "x": 200, + "y": 170, + "index": 2, + "body": { + "#": 710 + }, + "isInternal": false + }, + { + "x": 175, + "y": 170, + "index": 3, + "body": { + "#": 710 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 724 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 726 + }, + "max": { + "#": 727 + } + }, + { + "x": 175, + "y": 145 + }, + { + "x": 200, + "y": 170 + }, + { + "x": 187.5, + "y": 157.5 + }, + [ + { + "#": 730 + }, + { + "#": 731 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 34, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 733 + }, + "angle": 0, + "vertices": { + "#": 734 + }, + "position": { + "#": 739 + }, + "force": { + "#": 740 + }, + "torque": 0, + "positionImpulse": { + "#": 741 + }, + "constraintImpulse": { + "#": 742 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 743 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 744 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 745 + }, + "bounds": { + "#": 747 + }, + "positionPrev": { + "#": 750 + }, + "anglePrev": 0, + "axes": { + "#": 751 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 732 + }, + "sleepCounter": 0 + }, + [ + { + "#": 732 + } + ], + [ + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + } + ], + { + "x": 200, + "y": 145, + "index": 0, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 225, + "y": 145, + "index": 1, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 225, + "y": 170, + "index": 2, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 200, + "y": 170, + "index": 3, + "body": { + "#": 732 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 746 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 748 + }, + "max": { + "#": 749 + } + }, + { + "x": 200, + "y": 145 + }, + { + "x": 225, + "y": 170 + }, + { + "x": 212.5, + "y": 157.5 + }, + [ + { + "#": 752 + }, + { + "#": 753 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 35, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 755 + }, + "angle": 0, + "vertices": { + "#": 756 + }, + "position": { + "#": 761 + }, + "force": { + "#": 762 + }, + "torque": 0, + "positionImpulse": { + "#": 763 + }, + "constraintImpulse": { + "#": 764 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 765 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 766 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 767 + }, + "bounds": { + "#": 769 + }, + "positionPrev": { + "#": 772 + }, + "anglePrev": 0, + "axes": { + "#": 773 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 754 + }, + "sleepCounter": 0 + }, + [ + { + "#": 754 + } + ], + [ + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + } + ], + { + "x": 225, + "y": 145, + "index": 0, + "body": { + "#": 754 + }, + "isInternal": false + }, + { + "x": 250, + "y": 145, + "index": 1, + "body": { + "#": 754 + }, + "isInternal": false + }, + { + "x": 250, + "y": 170, + "index": 2, + "body": { + "#": 754 + }, + "isInternal": false + }, + { + "x": 225, + "y": 170, + "index": 3, + "body": { + "#": 754 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 768 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 770 + }, + "max": { + "#": 771 + } + }, + { + "x": 225, + "y": 145 + }, + { + "x": 250, + "y": 170 + }, + { + "x": 237.5, + "y": 157.5 + }, + [ + { + "#": 774 + }, + { + "#": 775 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 36, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 777 + }, + "angle": 0, + "vertices": { + "#": 778 + }, + "position": { + "#": 783 + }, + "force": { + "#": 784 + }, + "torque": 0, + "positionImpulse": { + "#": 785 + }, + "constraintImpulse": { + "#": 786 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 787 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 788 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 789 + }, + "bounds": { + "#": 791 + }, + "positionPrev": { + "#": 794 + }, + "anglePrev": 0, + "axes": { + "#": 795 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 776 + }, + "sleepCounter": 0 + }, + [ + { + "#": 776 + } + ], + [ + { + "#": 779 + }, + { + "#": 780 + }, + { + "#": 781 + }, + { + "#": 782 + } + ], + { + "x": 250, + "y": 145, + "index": 0, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 275, + "y": 145, + "index": 1, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 275, + "y": 170, + "index": 2, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 250, + "y": 170, + "index": 3, + "body": { + "#": 776 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 790 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 792 + }, + "max": { + "#": 793 + } + }, + { + "x": 250, + "y": 145 + }, + { + "x": 275, + "y": 170 + }, + { + "x": 262.5, + "y": 157.5 + }, + [ + { + "#": 796 + }, + { + "#": 797 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 37, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 799 + }, + "angle": 0, + "vertices": { + "#": 800 + }, + "position": { + "#": 805 + }, + "force": { + "#": 806 + }, + "torque": 0, + "positionImpulse": { + "#": 807 + }, + "constraintImpulse": { + "#": 808 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 809 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 810 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 811 + }, + "bounds": { + "#": 813 + }, + "positionPrev": { + "#": 816 + }, + "anglePrev": 0, + "axes": { + "#": 817 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 798 + }, + "sleepCounter": 0 + }, + [ + { + "#": 798 + } + ], + [ + { + "#": 801 + }, + { + "#": 802 + }, + { + "#": 803 + }, + { + "#": 804 + } + ], + { + "x": 275, + "y": 145, + "index": 0, + "body": { + "#": 798 + }, + "isInternal": false + }, + { + "x": 300, + "y": 145, + "index": 1, + "body": { + "#": 798 + }, + "isInternal": false + }, + { + "x": 300, + "y": 170, + "index": 2, + "body": { + "#": 798 + }, + "isInternal": false + }, + { + "x": 275, + "y": 170, + "index": 3, + "body": { + "#": 798 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 812 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 814 + }, + "max": { + "#": 815 + } + }, + { + "x": 275, + "y": 145 + }, + { + "x": 300, + "y": 170 + }, + { + "x": 287.5, + "y": 157.5 + }, + [ + { + "#": 818 + }, + { + "#": 819 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 38, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 821 + }, + "angle": 0, + "vertices": { + "#": 822 + }, + "position": { + "#": 827 + }, + "force": { + "#": 828 + }, + "torque": 0, + "positionImpulse": { + "#": 829 + }, + "constraintImpulse": { + "#": 830 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 831 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 832 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 833 + }, + "bounds": { + "#": 835 + }, + "positionPrev": { + "#": 838 + }, + "anglePrev": 0, + "axes": { + "#": 839 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 820 + }, + "sleepCounter": 0 + }, + [ + { + "#": 820 + } + ], + [ + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + }, + { + "#": 826 + } + ], + { + "x": 300, + "y": 145, + "index": 0, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 325, + "y": 145, + "index": 1, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 325, + "y": 170, + "index": 2, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 300, + "y": 170, + "index": 3, + "body": { + "#": 820 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 834 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 836 + }, + "max": { + "#": 837 + } + }, + { + "x": 300, + "y": 145 + }, + { + "x": 325, + "y": 170 + }, + { + "x": 312.5, + "y": 157.5 + }, + [ + { + "#": 840 + }, + { + "#": 841 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 39, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 843 + }, + "angle": 0, + "vertices": { + "#": 844 + }, + "position": { + "#": 849 + }, + "force": { + "#": 850 + }, + "torque": 0, + "positionImpulse": { + "#": 851 + }, + "constraintImpulse": { + "#": 852 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 853 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 854 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 855 + }, + "bounds": { + "#": 857 + }, + "positionPrev": { + "#": 860 + }, + "anglePrev": 0, + "axes": { + "#": 861 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 842 + }, + "sleepCounter": 0 + }, + [ + { + "#": 842 + } + ], + [ + { + "#": 845 + }, + { + "#": 846 + }, + { + "#": 847 + }, + { + "#": 848 + } + ], + { + "x": 325, + "y": 145, + "index": 0, + "body": { + "#": 842 + }, + "isInternal": false + }, + { + "x": 350, + "y": 145, + "index": 1, + "body": { + "#": 842 + }, + "isInternal": false + }, + { + "x": 350, + "y": 170, + "index": 2, + "body": { + "#": 842 + }, + "isInternal": false + }, + { + "x": 325, + "y": 170, + "index": 3, + "body": { + "#": 842 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 856 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 858 + }, + "max": { + "#": 859 + } + }, + { + "x": 325, + "y": 145 + }, + { + "x": 350, + "y": 170 + }, + { + "x": 337.5, + "y": 157.5 + }, + [ + { + "#": 862 + }, + { + "#": 863 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 40, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 865 + }, + "angle": 0, + "vertices": { + "#": 866 + }, + "position": { + "#": 871 + }, + "force": { + "#": 872 + }, + "torque": 0, + "positionImpulse": { + "#": 873 + }, + "constraintImpulse": { + "#": 874 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 875 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 876 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 877 + }, + "bounds": { + "#": 879 + }, + "positionPrev": { + "#": 882 + }, + "anglePrev": 0, + "axes": { + "#": 883 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 864 + }, + "sleepCounter": 0 + }, + [ + { + "#": 864 + } + ], + [ + { + "#": 867 + }, + { + "#": 868 + }, + { + "#": 869 + }, + { + "#": 870 + } + ], + { + "x": 350, + "y": 145, + "index": 0, + "body": { + "#": 864 + }, + "isInternal": false + }, + { + "x": 375, + "y": 145, + "index": 1, + "body": { + "#": 864 + }, + "isInternal": false + }, + { + "x": 375, + "y": 170, + "index": 2, + "body": { + "#": 864 + }, + "isInternal": false + }, + { + "x": 350, + "y": 170, + "index": 3, + "body": { + "#": 864 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 878 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 880 + }, + "max": { + "#": 881 + } + }, + { + "x": 350, + "y": 145 + }, + { + "x": 375, + "y": 170 + }, + { + "x": 362.5, + "y": 157.5 + }, + [ + { + "#": 884 + }, + { + "#": 885 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 41, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 887 + }, + "angle": 0, + "vertices": { + "#": 888 + }, + "position": { + "#": 893 + }, + "force": { + "#": 894 + }, + "torque": 0, + "positionImpulse": { + "#": 895 + }, + "constraintImpulse": { + "#": 896 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 897 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 898 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 899 + }, + "bounds": { + "#": 901 + }, + "positionPrev": { + "#": 904 + }, + "anglePrev": 0, + "axes": { + "#": 905 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 886 + }, + "sleepCounter": 0 + }, + [ + { + "#": 886 + } + ], + [ + { + "#": 889 + }, + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + } + ], + { + "x": 375, + "y": 145, + "index": 0, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 400, + "y": 145, + "index": 1, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 400, + "y": 170, + "index": 2, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 375, + "y": 170, + "index": 3, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 900 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 902 + }, + "max": { + "#": 903 + } + }, + { + "x": 375, + "y": 145 + }, + { + "x": 400, + "y": 170 + }, + { + "x": 387.5, + "y": 157.5 + }, + [ + { + "#": 906 + }, + { + "#": 907 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 42, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 909 + }, + "angle": 0, + "vertices": { + "#": 910 + }, + "position": { + "#": 915 + }, + "force": { + "#": 916 + }, + "torque": 0, + "positionImpulse": { + "#": 917 + }, + "constraintImpulse": { + "#": 918 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 919 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 920 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 921 + }, + "bounds": { + "#": 923 + }, + "positionPrev": { + "#": 926 + }, + "anglePrev": 0, + "axes": { + "#": 927 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 908 + }, + "sleepCounter": 0 + }, + [ + { + "#": 908 + } + ], + [ + { + "#": 911 + }, + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + } + ], + { + "x": 400, + "y": 145, + "index": 0, + "body": { + "#": 908 + }, + "isInternal": false + }, + { + "x": 425, + "y": 145, + "index": 1, + "body": { + "#": 908 + }, + "isInternal": false + }, + { + "x": 425, + "y": 170, + "index": 2, + "body": { + "#": 908 + }, + "isInternal": false + }, + { + "x": 400, + "y": 170, + "index": 3, + "body": { + "#": 908 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 922 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 924 + }, + "max": { + "#": 925 + } + }, + { + "x": 400, + "y": 145 + }, + { + "x": 425, + "y": 170 + }, + { + "x": 412.5, + "y": 157.5 + }, + [ + { + "#": 928 + }, + { + "#": 929 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 43, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 931 + }, + "angle": 0, + "vertices": { + "#": 932 + }, + "position": { + "#": 937 + }, + "force": { + "#": 938 + }, + "torque": 0, + "positionImpulse": { + "#": 939 + }, + "constraintImpulse": { + "#": 940 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 941 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 942 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 943 + }, + "bounds": { + "#": 945 + }, + "positionPrev": { + "#": 948 + }, + "anglePrev": 0, + "axes": { + "#": 949 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 930 + }, + "sleepCounter": 0 + }, + [ + { + "#": 930 + } + ], + [ + { + "#": 933 + }, + { + "#": 934 + }, + { + "#": 935 + }, + { + "#": 936 + } + ], + { + "x": 425, + "y": 145, + "index": 0, + "body": { + "#": 930 + }, + "isInternal": false + }, + { + "x": 450, + "y": 145, + "index": 1, + "body": { + "#": 930 + }, + "isInternal": false + }, + { + "x": 450, + "y": 170, + "index": 2, + "body": { + "#": 930 + }, + "isInternal": false + }, + { + "x": 425, + "y": 170, + "index": 3, + "body": { + "#": 930 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 944 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 946 + }, + "max": { + "#": 947 + } + }, + { + "x": 425, + "y": 145 + }, + { + "x": 450, + "y": 170 + }, + { + "x": 437.5, + "y": 157.5 + }, + [ + { + "#": 950 + }, + { + "#": 951 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 44, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 953 + }, + "angle": 0, + "vertices": { + "#": 954 + }, + "position": { + "#": 959 + }, + "force": { + "#": 960 + }, + "torque": 0, + "positionImpulse": { + "#": 961 + }, + "constraintImpulse": { + "#": 962 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 963 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 964 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 965 + }, + "bounds": { + "#": 967 + }, + "positionPrev": { + "#": 970 + }, + "anglePrev": 0, + "axes": { + "#": 971 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 952 + }, + "sleepCounter": 0 + }, + [ + { + "#": 952 + } + ], + [ + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + } + ], + { + "x": 450, + "y": 145, + "index": 0, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 475, + "y": 145, + "index": 1, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 475, + "y": 170, + "index": 2, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 450, + "y": 170, + "index": 3, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 966 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 968 + }, + "max": { + "#": 969 + } + }, + { + "x": 450, + "y": 145 + }, + { + "x": 475, + "y": 170 + }, + { + "x": 462.5, + "y": 157.5 + }, + [ + { + "#": 972 + }, + { + "#": 973 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 45, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 975 + }, + "angle": 0, + "vertices": { + "#": 976 + }, + "position": { + "#": 981 + }, + "force": { + "#": 982 + }, + "torque": 0, + "positionImpulse": { + "#": 983 + }, + "constraintImpulse": { + "#": 984 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 985 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 986 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 987 + }, + "bounds": { + "#": 989 + }, + "positionPrev": { + "#": 992 + }, + "anglePrev": 0, + "axes": { + "#": 993 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 974 + }, + "sleepCounter": 0 + }, + [ + { + "#": 974 + } + ], + [ + { + "#": 977 + }, + { + "#": 978 + }, + { + "#": 979 + }, + { + "#": 980 + } + ], + { + "x": 475, + "y": 145, + "index": 0, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 500, + "y": 145, + "index": 1, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 500, + "y": 170, + "index": 2, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 475, + "y": 170, + "index": 3, + "body": { + "#": 974 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 988 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 990 + }, + "max": { + "#": 991 + } + }, + { + "x": 475, + "y": 145 + }, + { + "x": 500, + "y": 170 + }, + { + "x": 487.5, + "y": 157.5 + }, + [ + { + "#": 994 + }, + { + "#": 995 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 46, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 997 + }, + "angle": 0, + "vertices": { + "#": 998 + }, + "position": { + "#": 1003 + }, + "force": { + "#": 1004 + }, + "torque": 0, + "positionImpulse": { + "#": 1005 + }, + "constraintImpulse": { + "#": 1006 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1007 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1008 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1009 + }, + "bounds": { + "#": 1011 + }, + "positionPrev": { + "#": 1014 + }, + "anglePrev": 0, + "axes": { + "#": 1015 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 996 + }, + "sleepCounter": 0 + }, + [ + { + "#": 996 + } + ], + [ + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + }, + { + "#": 1002 + } + ], + { + "x": 500, + "y": 145, + "index": 0, + "body": { + "#": 996 + }, + "isInternal": false + }, + { + "x": 525, + "y": 145, + "index": 1, + "body": { + "#": 996 + }, + "isInternal": false + }, + { + "x": 525, + "y": 170, + "index": 2, + "body": { + "#": 996 + }, + "isInternal": false + }, + { + "x": 500, + "y": 170, + "index": 3, + "body": { + "#": 996 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1010 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1012 + }, + "max": { + "#": 1013 + } + }, + { + "x": 500, + "y": 145 + }, + { + "x": 525, + "y": 170 + }, + { + "x": 512.5, + "y": 157.5 + }, + [ + { + "#": 1016 + }, + { + "#": 1017 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 47, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1019 + }, + "angle": 0, + "vertices": { + "#": 1020 + }, + "position": { + "#": 1025 + }, + "force": { + "#": 1026 + }, + "torque": 0, + "positionImpulse": { + "#": 1027 + }, + "constraintImpulse": { + "#": 1028 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1029 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1030 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1031 + }, + "bounds": { + "#": 1033 + }, + "positionPrev": { + "#": 1036 + }, + "anglePrev": 0, + "axes": { + "#": 1037 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1018 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1018 + } + ], + [ + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + } + ], + { + "x": 525, + "y": 145, + "index": 0, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 550, + "y": 145, + "index": 1, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 550, + "y": 170, + "index": 2, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 525, + "y": 170, + "index": 3, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1032 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1034 + }, + "max": { + "#": 1035 + } + }, + { + "x": 525, + "y": 145 + }, + { + "x": 550, + "y": 170 + }, + { + "x": 537.5, + "y": 157.5 + }, + [ + { + "#": 1038 + }, + { + "#": 1039 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 48, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1041 + }, + "angle": 0, + "vertices": { + "#": 1042 + }, + "position": { + "#": 1047 + }, + "force": { + "#": 1048 + }, + "torque": 0, + "positionImpulse": { + "#": 1049 + }, + "constraintImpulse": { + "#": 1050 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1051 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1052 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1053 + }, + "bounds": { + "#": 1055 + }, + "positionPrev": { + "#": 1058 + }, + "anglePrev": 0, + "axes": { + "#": 1059 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1040 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1040 + } + ], + [ + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + } + ], + { + "x": 550, + "y": 145, + "index": 0, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 575, + "y": 145, + "index": 1, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 575, + "y": 170, + "index": 2, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 550, + "y": 170, + "index": 3, + "body": { + "#": 1040 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1054 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1056 + }, + "max": { + "#": 1057 + } + }, + { + "x": 550, + "y": 145 + }, + { + "x": 575, + "y": 170 + }, + { + "x": 562.5, + "y": 157.5 + }, + [ + { + "#": 1060 + }, + { + "#": 1061 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 49, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1063 + }, + "angle": 0, + "vertices": { + "#": 1064 + }, + "position": { + "#": 1069 + }, + "force": { + "#": 1070 + }, + "torque": 0, + "positionImpulse": { + "#": 1071 + }, + "constraintImpulse": { + "#": 1072 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1073 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1074 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1075 + }, + "bounds": { + "#": 1077 + }, + "positionPrev": { + "#": 1080 + }, + "anglePrev": 0, + "axes": { + "#": 1081 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1062 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1062 + } + ], + [ + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + } + ], + { + "x": 575, + "y": 145, + "index": 0, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 600, + "y": 145, + "index": 1, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 600, + "y": 170, + "index": 2, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 575, + "y": 170, + "index": 3, + "body": { + "#": 1062 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1076 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1078 + }, + "max": { + "#": 1079 + } + }, + { + "x": 575, + "y": 145 + }, + { + "x": 600, + "y": 170 + }, + { + "x": 587.5, + "y": 157.5 + }, + [ + { + "#": 1082 + }, + { + "#": 1083 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 50, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1085 + }, + "angle": 0, + "vertices": { + "#": 1086 + }, + "position": { + "#": 1091 + }, + "force": { + "#": 1092 + }, + "torque": 0, + "positionImpulse": { + "#": 1093 + }, + "constraintImpulse": { + "#": 1094 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1095 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1096 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1097 + }, + "bounds": { + "#": 1099 + }, + "positionPrev": { + "#": 1102 + }, + "anglePrev": 0, + "axes": { + "#": 1103 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1084 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1084 + } + ], + [ + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + }, + { + "#": 1090 + } + ], + { + "x": 600, + "y": 145, + "index": 0, + "body": { + "#": 1084 + }, + "isInternal": false + }, + { + "x": 625, + "y": 145, + "index": 1, + "body": { + "#": 1084 + }, + "isInternal": false + }, + { + "x": 625, + "y": 170, + "index": 2, + "body": { + "#": 1084 + }, + "isInternal": false + }, + { + "x": 600, + "y": 170, + "index": 3, + "body": { + "#": 1084 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1098 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1100 + }, + "max": { + "#": 1101 + } + }, + { + "x": 600, + "y": 145 + }, + { + "x": 625, + "y": 170 + }, + { + "x": 612.5, + "y": 157.5 + }, + [ + { + "#": 1104 + }, + { + "#": 1105 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 51, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1107 + }, + "angle": 0, + "vertices": { + "#": 1108 + }, + "position": { + "#": 1113 + }, + "force": { + "#": 1114 + }, + "torque": 0, + "positionImpulse": { + "#": 1115 + }, + "constraintImpulse": { + "#": 1116 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1117 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1118 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1119 + }, + "bounds": { + "#": 1121 + }, + "positionPrev": { + "#": 1124 + }, + "anglePrev": 0, + "axes": { + "#": 1125 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1106 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1106 + } + ], + [ + { + "#": 1109 + }, + { + "#": 1110 + }, + { + "#": 1111 + }, + { + "#": 1112 + } + ], + { + "x": 625, + "y": 145, + "index": 0, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 650, + "y": 145, + "index": 1, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 650, + "y": 170, + "index": 2, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 625, + "y": 170, + "index": 3, + "body": { + "#": 1106 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1120 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1122 + }, + "max": { + "#": 1123 + } + }, + { + "x": 625, + "y": 145 + }, + { + "x": 650, + "y": 170 + }, + { + "x": 637.5, + "y": 157.5 + }, + [ + { + "#": 1126 + }, + { + "#": 1127 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 52, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1129 + }, + "angle": 0, + "vertices": { + "#": 1130 + }, + "position": { + "#": 1135 + }, + "force": { + "#": 1136 + }, + "torque": 0, + "positionImpulse": { + "#": 1137 + }, + "constraintImpulse": { + "#": 1138 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1139 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1140 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1141 + }, + "bounds": { + "#": 1143 + }, + "positionPrev": { + "#": 1146 + }, + "anglePrev": 0, + "axes": { + "#": 1147 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1128 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1128 + } + ], + [ + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + } + ], + { + "x": 650, + "y": 145, + "index": 0, + "body": { + "#": 1128 + }, + "isInternal": false + }, + { + "x": 675, + "y": 145, + "index": 1, + "body": { + "#": 1128 + }, + "isInternal": false + }, + { + "x": 675, + "y": 170, + "index": 2, + "body": { + "#": 1128 + }, + "isInternal": false + }, + { + "x": 650, + "y": 170, + "index": 3, + "body": { + "#": 1128 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1142 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1144 + }, + "max": { + "#": 1145 + } + }, + { + "x": 650, + "y": 145 + }, + { + "x": 675, + "y": 170 + }, + { + "x": 662.5, + "y": 157.5 + }, + [ + { + "#": 1148 + }, + { + "#": 1149 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 53, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1151 + }, + "angle": 0, + "vertices": { + "#": 1152 + }, + "position": { + "#": 1157 + }, + "force": { + "#": 1158 + }, + "torque": 0, + "positionImpulse": { + "#": 1159 + }, + "constraintImpulse": { + "#": 1160 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1161 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1162 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1163 + }, + "bounds": { + "#": 1165 + }, + "positionPrev": { + "#": 1168 + }, + "anglePrev": 0, + "axes": { + "#": 1169 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1150 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1150 + } + ], + [ + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + }, + { + "#": 1156 + } + ], + { + "x": 675, + "y": 145, + "index": 0, + "body": { + "#": 1150 + }, + "isInternal": false + }, + { + "x": 700, + "y": 145, + "index": 1, + "body": { + "#": 1150 + }, + "isInternal": false + }, + { + "x": 700, + "y": 170, + "index": 2, + "body": { + "#": 1150 + }, + "isInternal": false + }, + { + "x": 675, + "y": 170, + "index": 3, + "body": { + "#": 1150 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1164 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1166 + }, + "max": { + "#": 1167 + } + }, + { + "x": 675, + "y": 145 + }, + { + "x": 700, + "y": 170 + }, + { + "x": 687.5, + "y": 157.5 + }, + [ + { + "#": 1170 + }, + { + "#": 1171 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 54, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1173 + }, + "angle": 0, + "vertices": { + "#": 1174 + }, + "position": { + "#": 1179 + }, + "force": { + "#": 1180 + }, + "torque": 0, + "positionImpulse": { + "#": 1181 + }, + "constraintImpulse": { + "#": 1182 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1183 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1184 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1185 + }, + "bounds": { + "#": 1187 + }, + "positionPrev": { + "#": 1190 + }, + "anglePrev": 0, + "axes": { + "#": 1191 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1172 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1172 + } + ], + [ + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + }, + { + "#": 1178 + } + ], + { + "x": 700, + "y": 145, + "index": 0, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 725, + "y": 145, + "index": 1, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 725, + "y": 170, + "index": 2, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 700, + "y": 170, + "index": 3, + "body": { + "#": 1172 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 157.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1186 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1188 + }, + "max": { + "#": 1189 + } + }, + { + "x": 700, + "y": 145 + }, + { + "x": 725, + "y": 170 + }, + { + "x": 712.5, + "y": 157.5 + }, + [ + { + "#": 1192 + }, + { + "#": 1193 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 55, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1195 + }, + "angle": 0, + "vertices": { + "#": 1196 + }, + "position": { + "#": 1201 + }, + "force": { + "#": 1202 + }, + "torque": 0, + "positionImpulse": { + "#": 1203 + }, + "constraintImpulse": { + "#": 1204 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1205 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1206 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1207 + }, + "bounds": { + "#": 1209 + }, + "positionPrev": { + "#": 1212 + }, + "anglePrev": 0, + "axes": { + "#": 1213 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1194 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1194 + } + ], + [ + { + "#": 1197 + }, + { + "#": 1198 + }, + { + "#": 1199 + }, + { + "#": 1200 + } + ], + { + "x": 100, + "y": 170, + "index": 0, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 125, + "y": 170, + "index": 1, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 125, + "y": 195, + "index": 2, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 100, + "y": 195, + "index": 3, + "body": { + "#": 1194 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1208 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1210 + }, + "max": { + "#": 1211 + } + }, + { + "x": 100, + "y": 170 + }, + { + "x": 125, + "y": 195 + }, + { + "x": 112.5, + "y": 182.5 + }, + [ + { + "#": 1214 + }, + { + "#": 1215 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 56, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1217 + }, + "angle": 0, + "vertices": { + "#": 1218 + }, + "position": { + "#": 1223 + }, + "force": { + "#": 1224 + }, + "torque": 0, + "positionImpulse": { + "#": 1225 + }, + "constraintImpulse": { + "#": 1226 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1227 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1228 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1229 + }, + "bounds": { + "#": 1231 + }, + "positionPrev": { + "#": 1234 + }, + "anglePrev": 0, + "axes": { + "#": 1235 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1216 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1216 + } + ], + [ + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + } + ], + { + "x": 125, + "y": 170, + "index": 0, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 150, + "y": 170, + "index": 1, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 150, + "y": 195, + "index": 2, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 125, + "y": 195, + "index": 3, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1230 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1232 + }, + "max": { + "#": 1233 + } + }, + { + "x": 125, + "y": 170 + }, + { + "x": 150, + "y": 195 + }, + { + "x": 137.5, + "y": 182.5 + }, + [ + { + "#": 1236 + }, + { + "#": 1237 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 57, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1239 + }, + "angle": 0, + "vertices": { + "#": 1240 + }, + "position": { + "#": 1245 + }, + "force": { + "#": 1246 + }, + "torque": 0, + "positionImpulse": { + "#": 1247 + }, + "constraintImpulse": { + "#": 1248 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1249 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1250 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1251 + }, + "bounds": { + "#": 1253 + }, + "positionPrev": { + "#": 1256 + }, + "anglePrev": 0, + "axes": { + "#": 1257 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1238 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1238 + } + ], + [ + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + } + ], + { + "x": 150, + "y": 170, + "index": 0, + "body": { + "#": 1238 + }, + "isInternal": false + }, + { + "x": 175, + "y": 170, + "index": 1, + "body": { + "#": 1238 + }, + "isInternal": false + }, + { + "x": 175, + "y": 195, + "index": 2, + "body": { + "#": 1238 + }, + "isInternal": false + }, + { + "x": 150, + "y": 195, + "index": 3, + "body": { + "#": 1238 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1252 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1254 + }, + "max": { + "#": 1255 + } + }, + { + "x": 150, + "y": 170 + }, + { + "x": 175, + "y": 195 + }, + { + "x": 162.5, + "y": 182.5 + }, + [ + { + "#": 1258 + }, + { + "#": 1259 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 58, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1261 + }, + "angle": 0, + "vertices": { + "#": 1262 + }, + "position": { + "#": 1267 + }, + "force": { + "#": 1268 + }, + "torque": 0, + "positionImpulse": { + "#": 1269 + }, + "constraintImpulse": { + "#": 1270 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1271 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1272 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1273 + }, + "bounds": { + "#": 1275 + }, + "positionPrev": { + "#": 1278 + }, + "anglePrev": 0, + "axes": { + "#": 1279 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1260 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1260 + } + ], + [ + { + "#": 1263 + }, + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + } + ], + { + "x": 175, + "y": 170, + "index": 0, + "body": { + "#": 1260 + }, + "isInternal": false + }, + { + "x": 200, + "y": 170, + "index": 1, + "body": { + "#": 1260 + }, + "isInternal": false + }, + { + "x": 200, + "y": 195, + "index": 2, + "body": { + "#": 1260 + }, + "isInternal": false + }, + { + "x": 175, + "y": 195, + "index": 3, + "body": { + "#": 1260 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1274 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1276 + }, + "max": { + "#": 1277 + } + }, + { + "x": 175, + "y": 170 + }, + { + "x": 200, + "y": 195 + }, + { + "x": 187.5, + "y": 182.5 + }, + [ + { + "#": 1280 + }, + { + "#": 1281 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 59, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1283 + }, + "angle": 0, + "vertices": { + "#": 1284 + }, + "position": { + "#": 1289 + }, + "force": { + "#": 1290 + }, + "torque": 0, + "positionImpulse": { + "#": 1291 + }, + "constraintImpulse": { + "#": 1292 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1293 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1294 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1295 + }, + "bounds": { + "#": 1297 + }, + "positionPrev": { + "#": 1300 + }, + "anglePrev": 0, + "axes": { + "#": 1301 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1282 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1282 + } + ], + [ + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + } + ], + { + "x": 200, + "y": 170, + "index": 0, + "body": { + "#": 1282 + }, + "isInternal": false + }, + { + "x": 225, + "y": 170, + "index": 1, + "body": { + "#": 1282 + }, + "isInternal": false + }, + { + "x": 225, + "y": 195, + "index": 2, + "body": { + "#": 1282 + }, + "isInternal": false + }, + { + "x": 200, + "y": 195, + "index": 3, + "body": { + "#": 1282 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1296 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1298 + }, + "max": { + "#": 1299 + } + }, + { + "x": 200, + "y": 170 + }, + { + "x": 225, + "y": 195 + }, + { + "x": 212.5, + "y": 182.5 + }, + [ + { + "#": 1302 + }, + { + "#": 1303 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 60, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1305 + }, + "angle": 0, + "vertices": { + "#": 1306 + }, + "position": { + "#": 1311 + }, + "force": { + "#": 1312 + }, + "torque": 0, + "positionImpulse": { + "#": 1313 + }, + "constraintImpulse": { + "#": 1314 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1315 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1316 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1317 + }, + "bounds": { + "#": 1319 + }, + "positionPrev": { + "#": 1322 + }, + "anglePrev": 0, + "axes": { + "#": 1323 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1304 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1304 + } + ], + [ + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + }, + { + "#": 1310 + } + ], + { + "x": 225, + "y": 170, + "index": 0, + "body": { + "#": 1304 + }, + "isInternal": false + }, + { + "x": 250, + "y": 170, + "index": 1, + "body": { + "#": 1304 + }, + "isInternal": false + }, + { + "x": 250, + "y": 195, + "index": 2, + "body": { + "#": 1304 + }, + "isInternal": false + }, + { + "x": 225, + "y": 195, + "index": 3, + "body": { + "#": 1304 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1318 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1320 + }, + "max": { + "#": 1321 + } + }, + { + "x": 225, + "y": 170 + }, + { + "x": 250, + "y": 195 + }, + { + "x": 237.5, + "y": 182.5 + }, + [ + { + "#": 1324 + }, + { + "#": 1325 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 61, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1327 + }, + "angle": 0, + "vertices": { + "#": 1328 + }, + "position": { + "#": 1333 + }, + "force": { + "#": 1334 + }, + "torque": 0, + "positionImpulse": { + "#": 1335 + }, + "constraintImpulse": { + "#": 1336 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1337 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1338 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1339 + }, + "bounds": { + "#": 1341 + }, + "positionPrev": { + "#": 1344 + }, + "anglePrev": 0, + "axes": { + "#": 1345 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1326 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1326 + } + ], + [ + { + "#": 1329 + }, + { + "#": 1330 + }, + { + "#": 1331 + }, + { + "#": 1332 + } + ], + { + "x": 250, + "y": 170, + "index": 0, + "body": { + "#": 1326 + }, + "isInternal": false + }, + { + "x": 275, + "y": 170, + "index": 1, + "body": { + "#": 1326 + }, + "isInternal": false + }, + { + "x": 275, + "y": 195, + "index": 2, + "body": { + "#": 1326 + }, + "isInternal": false + }, + { + "x": 250, + "y": 195, + "index": 3, + "body": { + "#": 1326 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1340 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1342 + }, + "max": { + "#": 1343 + } + }, + { + "x": 250, + "y": 170 + }, + { + "x": 275, + "y": 195 + }, + { + "x": 262.5, + "y": 182.5 + }, + [ + { + "#": 1346 + }, + { + "#": 1347 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 62, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1349 + }, + "angle": 0, + "vertices": { + "#": 1350 + }, + "position": { + "#": 1355 + }, + "force": { + "#": 1356 + }, + "torque": 0, + "positionImpulse": { + "#": 1357 + }, + "constraintImpulse": { + "#": 1358 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1359 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1360 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1361 + }, + "bounds": { + "#": 1363 + }, + "positionPrev": { + "#": 1366 + }, + "anglePrev": 0, + "axes": { + "#": 1367 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1348 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1348 + } + ], + [ + { + "#": 1351 + }, + { + "#": 1352 + }, + { + "#": 1353 + }, + { + "#": 1354 + } + ], + { + "x": 275, + "y": 170, + "index": 0, + "body": { + "#": 1348 + }, + "isInternal": false + }, + { + "x": 300, + "y": 170, + "index": 1, + "body": { + "#": 1348 + }, + "isInternal": false + }, + { + "x": 300, + "y": 195, + "index": 2, + "body": { + "#": 1348 + }, + "isInternal": false + }, + { + "x": 275, + "y": 195, + "index": 3, + "body": { + "#": 1348 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1362 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1364 + }, + "max": { + "#": 1365 + } + }, + { + "x": 275, + "y": 170 + }, + { + "x": 300, + "y": 195 + }, + { + "x": 287.5, + "y": 182.5 + }, + [ + { + "#": 1368 + }, + { + "#": 1369 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 63, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1371 + }, + "angle": 0, + "vertices": { + "#": 1372 + }, + "position": { + "#": 1377 + }, + "force": { + "#": 1378 + }, + "torque": 0, + "positionImpulse": { + "#": 1379 + }, + "constraintImpulse": { + "#": 1380 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1381 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1382 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1383 + }, + "bounds": { + "#": 1385 + }, + "positionPrev": { + "#": 1388 + }, + "anglePrev": 0, + "axes": { + "#": 1389 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1370 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1370 + } + ], + [ + { + "#": 1373 + }, + { + "#": 1374 + }, + { + "#": 1375 + }, + { + "#": 1376 + } + ], + { + "x": 300, + "y": 170, + "index": 0, + "body": { + "#": 1370 + }, + "isInternal": false + }, + { + "x": 325, + "y": 170, + "index": 1, + "body": { + "#": 1370 + }, + "isInternal": false + }, + { + "x": 325, + "y": 195, + "index": 2, + "body": { + "#": 1370 + }, + "isInternal": false + }, + { + "x": 300, + "y": 195, + "index": 3, + "body": { + "#": 1370 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1384 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1386 + }, + "max": { + "#": 1387 + } + }, + { + "x": 300, + "y": 170 + }, + { + "x": 325, + "y": 195 + }, + { + "x": 312.5, + "y": 182.5 + }, + [ + { + "#": 1390 + }, + { + "#": 1391 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 64, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1393 + }, + "angle": 0, + "vertices": { + "#": 1394 + }, + "position": { + "#": 1399 + }, + "force": { + "#": 1400 + }, + "torque": 0, + "positionImpulse": { + "#": 1401 + }, + "constraintImpulse": { + "#": 1402 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1403 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1404 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1405 + }, + "bounds": { + "#": 1407 + }, + "positionPrev": { + "#": 1410 + }, + "anglePrev": 0, + "axes": { + "#": 1411 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1392 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1392 + } + ], + [ + { + "#": 1395 + }, + { + "#": 1396 + }, + { + "#": 1397 + }, + { + "#": 1398 + } + ], + { + "x": 325, + "y": 170, + "index": 0, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 350, + "y": 170, + "index": 1, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 350, + "y": 195, + "index": 2, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 325, + "y": 195, + "index": 3, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1406 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1408 + }, + "max": { + "#": 1409 + } + }, + { + "x": 325, + "y": 170 + }, + { + "x": 350, + "y": 195 + }, + { + "x": 337.5, + "y": 182.5 + }, + [ + { + "#": 1412 + }, + { + "#": 1413 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 65, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1415 + }, + "angle": 0, + "vertices": { + "#": 1416 + }, + "position": { + "#": 1421 + }, + "force": { + "#": 1422 + }, + "torque": 0, + "positionImpulse": { + "#": 1423 + }, + "constraintImpulse": { + "#": 1424 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1425 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1426 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1427 + }, + "bounds": { + "#": 1429 + }, + "positionPrev": { + "#": 1432 + }, + "anglePrev": 0, + "axes": { + "#": 1433 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1414 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1414 + } + ], + [ + { + "#": 1417 + }, + { + "#": 1418 + }, + { + "#": 1419 + }, + { + "#": 1420 + } + ], + { + "x": 350, + "y": 170, + "index": 0, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 375, + "y": 170, + "index": 1, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 375, + "y": 195, + "index": 2, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 350, + "y": 195, + "index": 3, + "body": { + "#": 1414 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1428 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1430 + }, + "max": { + "#": 1431 + } + }, + { + "x": 350, + "y": 170 + }, + { + "x": 375, + "y": 195 + }, + { + "x": 362.5, + "y": 182.5 + }, + [ + { + "#": 1434 + }, + { + "#": 1435 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 66, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1437 + }, + "angle": 0, + "vertices": { + "#": 1438 + }, + "position": { + "#": 1443 + }, + "force": { + "#": 1444 + }, + "torque": 0, + "positionImpulse": { + "#": 1445 + }, + "constraintImpulse": { + "#": 1446 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1447 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1448 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1449 + }, + "bounds": { + "#": 1451 + }, + "positionPrev": { + "#": 1454 + }, + "anglePrev": 0, + "axes": { + "#": 1455 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1436 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1436 + } + ], + [ + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + }, + { + "#": 1442 + } + ], + { + "x": 375, + "y": 170, + "index": 0, + "body": { + "#": 1436 + }, + "isInternal": false + }, + { + "x": 400, + "y": 170, + "index": 1, + "body": { + "#": 1436 + }, + "isInternal": false + }, + { + "x": 400, + "y": 195, + "index": 2, + "body": { + "#": 1436 + }, + "isInternal": false + }, + { + "x": 375, + "y": 195, + "index": 3, + "body": { + "#": 1436 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1450 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1452 + }, + "max": { + "#": 1453 + } + }, + { + "x": 375, + "y": 170 + }, + { + "x": 400, + "y": 195 + }, + { + "x": 387.5, + "y": 182.5 + }, + [ + { + "#": 1456 + }, + { + "#": 1457 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 67, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1459 + }, + "angle": 0, + "vertices": { + "#": 1460 + }, + "position": { + "#": 1465 + }, + "force": { + "#": 1466 + }, + "torque": 0, + "positionImpulse": { + "#": 1467 + }, + "constraintImpulse": { + "#": 1468 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1469 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1470 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1471 + }, + "bounds": { + "#": 1473 + }, + "positionPrev": { + "#": 1476 + }, + "anglePrev": 0, + "axes": { + "#": 1477 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1458 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1458 + } + ], + [ + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + } + ], + { + "x": 400, + "y": 170, + "index": 0, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 425, + "y": 170, + "index": 1, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 425, + "y": 195, + "index": 2, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 400, + "y": 195, + "index": 3, + "body": { + "#": 1458 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1472 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1474 + }, + "max": { + "#": 1475 + } + }, + { + "x": 400, + "y": 170 + }, + { + "x": 425, + "y": 195 + }, + { + "x": 412.5, + "y": 182.5 + }, + [ + { + "#": 1478 + }, + { + "#": 1479 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 68, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1481 + }, + "angle": 0, + "vertices": { + "#": 1482 + }, + "position": { + "#": 1487 + }, + "force": { + "#": 1488 + }, + "torque": 0, + "positionImpulse": { + "#": 1489 + }, + "constraintImpulse": { + "#": 1490 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1491 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1492 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1493 + }, + "bounds": { + "#": 1495 + }, + "positionPrev": { + "#": 1498 + }, + "anglePrev": 0, + "axes": { + "#": 1499 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1480 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1480 + } + ], + [ + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + } + ], + { + "x": 425, + "y": 170, + "index": 0, + "body": { + "#": 1480 + }, + "isInternal": false + }, + { + "x": 450, + "y": 170, + "index": 1, + "body": { + "#": 1480 + }, + "isInternal": false + }, + { + "x": 450, + "y": 195, + "index": 2, + "body": { + "#": 1480 + }, + "isInternal": false + }, + { + "x": 425, + "y": 195, + "index": 3, + "body": { + "#": 1480 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1494 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1496 + }, + "max": { + "#": 1497 + } + }, + { + "x": 425, + "y": 170 + }, + { + "x": 450, + "y": 195 + }, + { + "x": 437.5, + "y": 182.5 + }, + [ + { + "#": 1500 + }, + { + "#": 1501 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 69, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1503 + }, + "angle": 0, + "vertices": { + "#": 1504 + }, + "position": { + "#": 1509 + }, + "force": { + "#": 1510 + }, + "torque": 0, + "positionImpulse": { + "#": 1511 + }, + "constraintImpulse": { + "#": 1512 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1513 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1514 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1515 + }, + "bounds": { + "#": 1517 + }, + "positionPrev": { + "#": 1520 + }, + "anglePrev": 0, + "axes": { + "#": 1521 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1502 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1502 + } + ], + [ + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + } + ], + { + "x": 450, + "y": 170, + "index": 0, + "body": { + "#": 1502 + }, + "isInternal": false + }, + { + "x": 475, + "y": 170, + "index": 1, + "body": { + "#": 1502 + }, + "isInternal": false + }, + { + "x": 475, + "y": 195, + "index": 2, + "body": { + "#": 1502 + }, + "isInternal": false + }, + { + "x": 450, + "y": 195, + "index": 3, + "body": { + "#": 1502 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1516 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1518 + }, + "max": { + "#": 1519 + } + }, + { + "x": 450, + "y": 170 + }, + { + "x": 475, + "y": 195 + }, + { + "x": 462.5, + "y": 182.5 + }, + [ + { + "#": 1522 + }, + { + "#": 1523 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 70, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1525 + }, + "angle": 0, + "vertices": { + "#": 1526 + }, + "position": { + "#": 1531 + }, + "force": { + "#": 1532 + }, + "torque": 0, + "positionImpulse": { + "#": 1533 + }, + "constraintImpulse": { + "#": 1534 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1535 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1536 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1537 + }, + "bounds": { + "#": 1539 + }, + "positionPrev": { + "#": 1542 + }, + "anglePrev": 0, + "axes": { + "#": 1543 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1524 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1524 + } + ], + [ + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + } + ], + { + "x": 475, + "y": 170, + "index": 0, + "body": { + "#": 1524 + }, + "isInternal": false + }, + { + "x": 500, + "y": 170, + "index": 1, + "body": { + "#": 1524 + }, + "isInternal": false + }, + { + "x": 500, + "y": 195, + "index": 2, + "body": { + "#": 1524 + }, + "isInternal": false + }, + { + "x": 475, + "y": 195, + "index": 3, + "body": { + "#": 1524 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1538 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1540 + }, + "max": { + "#": 1541 + } + }, + { + "x": 475, + "y": 170 + }, + { + "x": 500, + "y": 195 + }, + { + "x": 487.5, + "y": 182.5 + }, + [ + { + "#": 1544 + }, + { + "#": 1545 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 71, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1547 + }, + "angle": 0, + "vertices": { + "#": 1548 + }, + "position": { + "#": 1553 + }, + "force": { + "#": 1554 + }, + "torque": 0, + "positionImpulse": { + "#": 1555 + }, + "constraintImpulse": { + "#": 1556 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1557 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1558 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1559 + }, + "bounds": { + "#": 1561 + }, + "positionPrev": { + "#": 1564 + }, + "anglePrev": 0, + "axes": { + "#": 1565 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1546 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1546 + } + ], + [ + { + "#": 1549 + }, + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + } + ], + { + "x": 500, + "y": 170, + "index": 0, + "body": { + "#": 1546 + }, + "isInternal": false + }, + { + "x": 525, + "y": 170, + "index": 1, + "body": { + "#": 1546 + }, + "isInternal": false + }, + { + "x": 525, + "y": 195, + "index": 2, + "body": { + "#": 1546 + }, + "isInternal": false + }, + { + "x": 500, + "y": 195, + "index": 3, + "body": { + "#": 1546 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1560 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1562 + }, + "max": { + "#": 1563 + } + }, + { + "x": 500, + "y": 170 + }, + { + "x": 525, + "y": 195 + }, + { + "x": 512.5, + "y": 182.5 + }, + [ + { + "#": 1566 + }, + { + "#": 1567 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 72, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1569 + }, + "angle": 0, + "vertices": { + "#": 1570 + }, + "position": { + "#": 1575 + }, + "force": { + "#": 1576 + }, + "torque": 0, + "positionImpulse": { + "#": 1577 + }, + "constraintImpulse": { + "#": 1578 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1579 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1580 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1581 + }, + "bounds": { + "#": 1583 + }, + "positionPrev": { + "#": 1586 + }, + "anglePrev": 0, + "axes": { + "#": 1587 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1568 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1568 + } + ], + [ + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + } + ], + { + "x": 525, + "y": 170, + "index": 0, + "body": { + "#": 1568 + }, + "isInternal": false + }, + { + "x": 550, + "y": 170, + "index": 1, + "body": { + "#": 1568 + }, + "isInternal": false + }, + { + "x": 550, + "y": 195, + "index": 2, + "body": { + "#": 1568 + }, + "isInternal": false + }, + { + "x": 525, + "y": 195, + "index": 3, + "body": { + "#": 1568 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1582 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1584 + }, + "max": { + "#": 1585 + } + }, + { + "x": 525, + "y": 170 + }, + { + "x": 550, + "y": 195 + }, + { + "x": 537.5, + "y": 182.5 + }, + [ + { + "#": 1588 + }, + { + "#": 1589 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 73, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1591 + }, + "angle": 0, + "vertices": { + "#": 1592 + }, + "position": { + "#": 1597 + }, + "force": { + "#": 1598 + }, + "torque": 0, + "positionImpulse": { + "#": 1599 + }, + "constraintImpulse": { + "#": 1600 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1601 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1602 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1603 + }, + "bounds": { + "#": 1605 + }, + "positionPrev": { + "#": 1608 + }, + "anglePrev": 0, + "axes": { + "#": 1609 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1590 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1590 + } + ], + [ + { + "#": 1593 + }, + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + } + ], + { + "x": 550, + "y": 170, + "index": 0, + "body": { + "#": 1590 + }, + "isInternal": false + }, + { + "x": 575, + "y": 170, + "index": 1, + "body": { + "#": 1590 + }, + "isInternal": false + }, + { + "x": 575, + "y": 195, + "index": 2, + "body": { + "#": 1590 + }, + "isInternal": false + }, + { + "x": 550, + "y": 195, + "index": 3, + "body": { + "#": 1590 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1604 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1606 + }, + "max": { + "#": 1607 + } + }, + { + "x": 550, + "y": 170 + }, + { + "x": 575, + "y": 195 + }, + { + "x": 562.5, + "y": 182.5 + }, + [ + { + "#": 1610 + }, + { + "#": 1611 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 74, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1613 + }, + "angle": 0, + "vertices": { + "#": 1614 + }, + "position": { + "#": 1619 + }, + "force": { + "#": 1620 + }, + "torque": 0, + "positionImpulse": { + "#": 1621 + }, + "constraintImpulse": { + "#": 1622 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1623 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1624 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1625 + }, + "bounds": { + "#": 1627 + }, + "positionPrev": { + "#": 1630 + }, + "anglePrev": 0, + "axes": { + "#": 1631 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1612 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1612 + } + ], + [ + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + }, + { + "#": 1618 + } + ], + { + "x": 575, + "y": 170, + "index": 0, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 600, + "y": 170, + "index": 1, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 600, + "y": 195, + "index": 2, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 575, + "y": 195, + "index": 3, + "body": { + "#": 1612 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1626 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1628 + }, + "max": { + "#": 1629 + } + }, + { + "x": 575, + "y": 170 + }, + { + "x": 600, + "y": 195 + }, + { + "x": 587.5, + "y": 182.5 + }, + [ + { + "#": 1632 + }, + { + "#": 1633 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 75, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1635 + }, + "angle": 0, + "vertices": { + "#": 1636 + }, + "position": { + "#": 1641 + }, + "force": { + "#": 1642 + }, + "torque": 0, + "positionImpulse": { + "#": 1643 + }, + "constraintImpulse": { + "#": 1644 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1645 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1646 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1647 + }, + "bounds": { + "#": 1649 + }, + "positionPrev": { + "#": 1652 + }, + "anglePrev": 0, + "axes": { + "#": 1653 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1634 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1634 + } + ], + [ + { + "#": 1637 + }, + { + "#": 1638 + }, + { + "#": 1639 + }, + { + "#": 1640 + } + ], + { + "x": 600, + "y": 170, + "index": 0, + "body": { + "#": 1634 + }, + "isInternal": false + }, + { + "x": 625, + "y": 170, + "index": 1, + "body": { + "#": 1634 + }, + "isInternal": false + }, + { + "x": 625, + "y": 195, + "index": 2, + "body": { + "#": 1634 + }, + "isInternal": false + }, + { + "x": 600, + "y": 195, + "index": 3, + "body": { + "#": 1634 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1648 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1650 + }, + "max": { + "#": 1651 + } + }, + { + "x": 600, + "y": 170 + }, + { + "x": 625, + "y": 195 + }, + { + "x": 612.5, + "y": 182.5 + }, + [ + { + "#": 1654 + }, + { + "#": 1655 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 76, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1657 + }, + "angle": 0, + "vertices": { + "#": 1658 + }, + "position": { + "#": 1663 + }, + "force": { + "#": 1664 + }, + "torque": 0, + "positionImpulse": { + "#": 1665 + }, + "constraintImpulse": { + "#": 1666 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1667 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1668 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1669 + }, + "bounds": { + "#": 1671 + }, + "positionPrev": { + "#": 1674 + }, + "anglePrev": 0, + "axes": { + "#": 1675 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1656 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1656 + } + ], + [ + { + "#": 1659 + }, + { + "#": 1660 + }, + { + "#": 1661 + }, + { + "#": 1662 + } + ], + { + "x": 625, + "y": 170, + "index": 0, + "body": { + "#": 1656 + }, + "isInternal": false + }, + { + "x": 650, + "y": 170, + "index": 1, + "body": { + "#": 1656 + }, + "isInternal": false + }, + { + "x": 650, + "y": 195, + "index": 2, + "body": { + "#": 1656 + }, + "isInternal": false + }, + { + "x": 625, + "y": 195, + "index": 3, + "body": { + "#": 1656 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1670 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1672 + }, + "max": { + "#": 1673 + } + }, + { + "x": 625, + "y": 170 + }, + { + "x": 650, + "y": 195 + }, + { + "x": 637.5, + "y": 182.5 + }, + [ + { + "#": 1676 + }, + { + "#": 1677 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 77, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1679 + }, + "angle": 0, + "vertices": { + "#": 1680 + }, + "position": { + "#": 1685 + }, + "force": { + "#": 1686 + }, + "torque": 0, + "positionImpulse": { + "#": 1687 + }, + "constraintImpulse": { + "#": 1688 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1689 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1690 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1691 + }, + "bounds": { + "#": 1693 + }, + "positionPrev": { + "#": 1696 + }, + "anglePrev": 0, + "axes": { + "#": 1697 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1678 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1678 + } + ], + [ + { + "#": 1681 + }, + { + "#": 1682 + }, + { + "#": 1683 + }, + { + "#": 1684 + } + ], + { + "x": 650, + "y": 170, + "index": 0, + "body": { + "#": 1678 + }, + "isInternal": false + }, + { + "x": 675, + "y": 170, + "index": 1, + "body": { + "#": 1678 + }, + "isInternal": false + }, + { + "x": 675, + "y": 195, + "index": 2, + "body": { + "#": 1678 + }, + "isInternal": false + }, + { + "x": 650, + "y": 195, + "index": 3, + "body": { + "#": 1678 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1692 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1694 + }, + "max": { + "#": 1695 + } + }, + { + "x": 650, + "y": 170 + }, + { + "x": 675, + "y": 195 + }, + { + "x": 662.5, + "y": 182.5 + }, + [ + { + "#": 1698 + }, + { + "#": 1699 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 78, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1701 + }, + "angle": 0, + "vertices": { + "#": 1702 + }, + "position": { + "#": 1707 + }, + "force": { + "#": 1708 + }, + "torque": 0, + "positionImpulse": { + "#": 1709 + }, + "constraintImpulse": { + "#": 1710 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1711 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1712 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1713 + }, + "bounds": { + "#": 1715 + }, + "positionPrev": { + "#": 1718 + }, + "anglePrev": 0, + "axes": { + "#": 1719 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1700 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1700 + } + ], + [ + { + "#": 1703 + }, + { + "#": 1704 + }, + { + "#": 1705 + }, + { + "#": 1706 + } + ], + { + "x": 675, + "y": 170, + "index": 0, + "body": { + "#": 1700 + }, + "isInternal": false + }, + { + "x": 700, + "y": 170, + "index": 1, + "body": { + "#": 1700 + }, + "isInternal": false + }, + { + "x": 700, + "y": 195, + "index": 2, + "body": { + "#": 1700 + }, + "isInternal": false + }, + { + "x": 675, + "y": 195, + "index": 3, + "body": { + "#": 1700 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1714 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1716 + }, + "max": { + "#": 1717 + } + }, + { + "x": 675, + "y": 170 + }, + { + "x": 700, + "y": 195 + }, + { + "x": 687.5, + "y": 182.5 + }, + [ + { + "#": 1720 + }, + { + "#": 1721 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 79, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1723 + }, + "angle": 0, + "vertices": { + "#": 1724 + }, + "position": { + "#": 1729 + }, + "force": { + "#": 1730 + }, + "torque": 0, + "positionImpulse": { + "#": 1731 + }, + "constraintImpulse": { + "#": 1732 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1733 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1734 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1735 + }, + "bounds": { + "#": 1737 + }, + "positionPrev": { + "#": 1740 + }, + "anglePrev": 0, + "axes": { + "#": 1741 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1722 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1722 + } + ], + [ + { + "#": 1725 + }, + { + "#": 1726 + }, + { + "#": 1727 + }, + { + "#": 1728 + } + ], + { + "x": 700, + "y": 170, + "index": 0, + "body": { + "#": 1722 + }, + "isInternal": false + }, + { + "x": 725, + "y": 170, + "index": 1, + "body": { + "#": 1722 + }, + "isInternal": false + }, + { + "x": 725, + "y": 195, + "index": 2, + "body": { + "#": 1722 + }, + "isInternal": false + }, + { + "x": 700, + "y": 195, + "index": 3, + "body": { + "#": 1722 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 182.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1736 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1738 + }, + "max": { + "#": 1739 + } + }, + { + "x": 700, + "y": 170 + }, + { + "x": 725, + "y": 195 + }, + { + "x": 712.5, + "y": 182.5 + }, + [ + { + "#": 1742 + }, + { + "#": 1743 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 80, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1745 + }, + "angle": 0, + "vertices": { + "#": 1746 + }, + "position": { + "#": 1751 + }, + "force": { + "#": 1752 + }, + "torque": 0, + "positionImpulse": { + "#": 1753 + }, + "constraintImpulse": { + "#": 1754 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1755 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1756 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1757 + }, + "bounds": { + "#": 1759 + }, + "positionPrev": { + "#": 1762 + }, + "anglePrev": 0, + "axes": { + "#": 1763 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1744 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1744 + } + ], + [ + { + "#": 1747 + }, + { + "#": 1748 + }, + { + "#": 1749 + }, + { + "#": 1750 + } + ], + { + "x": 100, + "y": 195, + "index": 0, + "body": { + "#": 1744 + }, + "isInternal": false + }, + { + "x": 125, + "y": 195, + "index": 1, + "body": { + "#": 1744 + }, + "isInternal": false + }, + { + "x": 125, + "y": 220, + "index": 2, + "body": { + "#": 1744 + }, + "isInternal": false + }, + { + "x": 100, + "y": 220, + "index": 3, + "body": { + "#": 1744 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1758 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1760 + }, + "max": { + "#": 1761 + } + }, + { + "x": 100, + "y": 195 + }, + { + "x": 125, + "y": 220 + }, + { + "x": 112.5, + "y": 207.5 + }, + [ + { + "#": 1764 + }, + { + "#": 1765 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 81, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1767 + }, + "angle": 0, + "vertices": { + "#": 1768 + }, + "position": { + "#": 1773 + }, + "force": { + "#": 1774 + }, + "torque": 0, + "positionImpulse": { + "#": 1775 + }, + "constraintImpulse": { + "#": 1776 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1777 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1778 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1779 + }, + "bounds": { + "#": 1781 + }, + "positionPrev": { + "#": 1784 + }, + "anglePrev": 0, + "axes": { + "#": 1785 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1766 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1766 + } + ], + [ + { + "#": 1769 + }, + { + "#": 1770 + }, + { + "#": 1771 + }, + { + "#": 1772 + } + ], + { + "x": 125, + "y": 195, + "index": 0, + "body": { + "#": 1766 + }, + "isInternal": false + }, + { + "x": 150, + "y": 195, + "index": 1, + "body": { + "#": 1766 + }, + "isInternal": false + }, + { + "x": 150, + "y": 220, + "index": 2, + "body": { + "#": 1766 + }, + "isInternal": false + }, + { + "x": 125, + "y": 220, + "index": 3, + "body": { + "#": 1766 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1780 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1782 + }, + "max": { + "#": 1783 + } + }, + { + "x": 125, + "y": 195 + }, + { + "x": 150, + "y": 220 + }, + { + "x": 137.5, + "y": 207.5 + }, + [ + { + "#": 1786 + }, + { + "#": 1787 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 82, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1789 + }, + "angle": 0, + "vertices": { + "#": 1790 + }, + "position": { + "#": 1795 + }, + "force": { + "#": 1796 + }, + "torque": 0, + "positionImpulse": { + "#": 1797 + }, + "constraintImpulse": { + "#": 1798 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1799 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1800 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1801 + }, + "bounds": { + "#": 1803 + }, + "positionPrev": { + "#": 1806 + }, + "anglePrev": 0, + "axes": { + "#": 1807 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1788 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1788 + } + ], + [ + { + "#": 1791 + }, + { + "#": 1792 + }, + { + "#": 1793 + }, + { + "#": 1794 + } + ], + { + "x": 150, + "y": 195, + "index": 0, + "body": { + "#": 1788 + }, + "isInternal": false + }, + { + "x": 175, + "y": 195, + "index": 1, + "body": { + "#": 1788 + }, + "isInternal": false + }, + { + "x": 175, + "y": 220, + "index": 2, + "body": { + "#": 1788 + }, + "isInternal": false + }, + { + "x": 150, + "y": 220, + "index": 3, + "body": { + "#": 1788 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1802 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1804 + }, + "max": { + "#": 1805 + } + }, + { + "x": 150, + "y": 195 + }, + { + "x": 175, + "y": 220 + }, + { + "x": 162.5, + "y": 207.5 + }, + [ + { + "#": 1808 + }, + { + "#": 1809 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 83, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1811 + }, + "angle": 0, + "vertices": { + "#": 1812 + }, + "position": { + "#": 1817 + }, + "force": { + "#": 1818 + }, + "torque": 0, + "positionImpulse": { + "#": 1819 + }, + "constraintImpulse": { + "#": 1820 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1821 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1822 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1823 + }, + "bounds": { + "#": 1825 + }, + "positionPrev": { + "#": 1828 + }, + "anglePrev": 0, + "axes": { + "#": 1829 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1810 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1810 + } + ], + [ + { + "#": 1813 + }, + { + "#": 1814 + }, + { + "#": 1815 + }, + { + "#": 1816 + } + ], + { + "x": 175, + "y": 195, + "index": 0, + "body": { + "#": 1810 + }, + "isInternal": false + }, + { + "x": 200, + "y": 195, + "index": 1, + "body": { + "#": 1810 + }, + "isInternal": false + }, + { + "x": 200, + "y": 220, + "index": 2, + "body": { + "#": 1810 + }, + "isInternal": false + }, + { + "x": 175, + "y": 220, + "index": 3, + "body": { + "#": 1810 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1824 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1826 + }, + "max": { + "#": 1827 + } + }, + { + "x": 175, + "y": 195 + }, + { + "x": 200, + "y": 220 + }, + { + "x": 187.5, + "y": 207.5 + }, + [ + { + "#": 1830 + }, + { + "#": 1831 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 84, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1833 + }, + "angle": 0, + "vertices": { + "#": 1834 + }, + "position": { + "#": 1839 + }, + "force": { + "#": 1840 + }, + "torque": 0, + "positionImpulse": { + "#": 1841 + }, + "constraintImpulse": { + "#": 1842 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1843 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1844 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1845 + }, + "bounds": { + "#": 1847 + }, + "positionPrev": { + "#": 1850 + }, + "anglePrev": 0, + "axes": { + "#": 1851 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1832 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1832 + } + ], + [ + { + "#": 1835 + }, + { + "#": 1836 + }, + { + "#": 1837 + }, + { + "#": 1838 + } + ], + { + "x": 200, + "y": 195, + "index": 0, + "body": { + "#": 1832 + }, + "isInternal": false + }, + { + "x": 225, + "y": 195, + "index": 1, + "body": { + "#": 1832 + }, + "isInternal": false + }, + { + "x": 225, + "y": 220, + "index": 2, + "body": { + "#": 1832 + }, + "isInternal": false + }, + { + "x": 200, + "y": 220, + "index": 3, + "body": { + "#": 1832 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1846 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1848 + }, + "max": { + "#": 1849 + } + }, + { + "x": 200, + "y": 195 + }, + { + "x": 225, + "y": 220 + }, + { + "x": 212.5, + "y": 207.5 + }, + [ + { + "#": 1852 + }, + { + "#": 1853 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 85, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1855 + }, + "angle": 0, + "vertices": { + "#": 1856 + }, + "position": { + "#": 1861 + }, + "force": { + "#": 1862 + }, + "torque": 0, + "positionImpulse": { + "#": 1863 + }, + "constraintImpulse": { + "#": 1864 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1865 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1866 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1867 + }, + "bounds": { + "#": 1869 + }, + "positionPrev": { + "#": 1872 + }, + "anglePrev": 0, + "axes": { + "#": 1873 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1854 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1854 + } + ], + [ + { + "#": 1857 + }, + { + "#": 1858 + }, + { + "#": 1859 + }, + { + "#": 1860 + } + ], + { + "x": 225, + "y": 195, + "index": 0, + "body": { + "#": 1854 + }, + "isInternal": false + }, + { + "x": 250, + "y": 195, + "index": 1, + "body": { + "#": 1854 + }, + "isInternal": false + }, + { + "x": 250, + "y": 220, + "index": 2, + "body": { + "#": 1854 + }, + "isInternal": false + }, + { + "x": 225, + "y": 220, + "index": 3, + "body": { + "#": 1854 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1868 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1870 + }, + "max": { + "#": 1871 + } + }, + { + "x": 225, + "y": 195 + }, + { + "x": 250, + "y": 220 + }, + { + "x": 237.5, + "y": 207.5 + }, + [ + { + "#": 1874 + }, + { + "#": 1875 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 86, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1877 + }, + "angle": 0, + "vertices": { + "#": 1878 + }, + "position": { + "#": 1883 + }, + "force": { + "#": 1884 + }, + "torque": 0, + "positionImpulse": { + "#": 1885 + }, + "constraintImpulse": { + "#": 1886 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1887 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1888 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1889 + }, + "bounds": { + "#": 1891 + }, + "positionPrev": { + "#": 1894 + }, + "anglePrev": 0, + "axes": { + "#": 1895 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1876 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1876 + } + ], + [ + { + "#": 1879 + }, + { + "#": 1880 + }, + { + "#": 1881 + }, + { + "#": 1882 + } + ], + { + "x": 250, + "y": 195, + "index": 0, + "body": { + "#": 1876 + }, + "isInternal": false + }, + { + "x": 275, + "y": 195, + "index": 1, + "body": { + "#": 1876 + }, + "isInternal": false + }, + { + "x": 275, + "y": 220, + "index": 2, + "body": { + "#": 1876 + }, + "isInternal": false + }, + { + "x": 250, + "y": 220, + "index": 3, + "body": { + "#": 1876 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1890 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1892 + }, + "max": { + "#": 1893 + } + }, + { + "x": 250, + "y": 195 + }, + { + "x": 275, + "y": 220 + }, + { + "x": 262.5, + "y": 207.5 + }, + [ + { + "#": 1896 + }, + { + "#": 1897 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 87, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1899 + }, + "angle": 0, + "vertices": { + "#": 1900 + }, + "position": { + "#": 1905 + }, + "force": { + "#": 1906 + }, + "torque": 0, + "positionImpulse": { + "#": 1907 + }, + "constraintImpulse": { + "#": 1908 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1909 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1910 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1911 + }, + "bounds": { + "#": 1913 + }, + "positionPrev": { + "#": 1916 + }, + "anglePrev": 0, + "axes": { + "#": 1917 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1898 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1898 + } + ], + [ + { + "#": 1901 + }, + { + "#": 1902 + }, + { + "#": 1903 + }, + { + "#": 1904 + } + ], + { + "x": 275, + "y": 195, + "index": 0, + "body": { + "#": 1898 + }, + "isInternal": false + }, + { + "x": 300, + "y": 195, + "index": 1, + "body": { + "#": 1898 + }, + "isInternal": false + }, + { + "x": 300, + "y": 220, + "index": 2, + "body": { + "#": 1898 + }, + "isInternal": false + }, + { + "x": 275, + "y": 220, + "index": 3, + "body": { + "#": 1898 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1912 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1914 + }, + "max": { + "#": 1915 + } + }, + { + "x": 275, + "y": 195 + }, + { + "x": 300, + "y": 220 + }, + { + "x": 287.5, + "y": 207.5 + }, + [ + { + "#": 1918 + }, + { + "#": 1919 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 88, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1921 + }, + "angle": 0, + "vertices": { + "#": 1922 + }, + "position": { + "#": 1927 + }, + "force": { + "#": 1928 + }, + "torque": 0, + "positionImpulse": { + "#": 1929 + }, + "constraintImpulse": { + "#": 1930 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1931 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1932 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1933 + }, + "bounds": { + "#": 1935 + }, + "positionPrev": { + "#": 1938 + }, + "anglePrev": 0, + "axes": { + "#": 1939 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1920 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1920 + } + ], + [ + { + "#": 1923 + }, + { + "#": 1924 + }, + { + "#": 1925 + }, + { + "#": 1926 + } + ], + { + "x": 300, + "y": 195, + "index": 0, + "body": { + "#": 1920 + }, + "isInternal": false + }, + { + "x": 325, + "y": 195, + "index": 1, + "body": { + "#": 1920 + }, + "isInternal": false + }, + { + "x": 325, + "y": 220, + "index": 2, + "body": { + "#": 1920 + }, + "isInternal": false + }, + { + "x": 300, + "y": 220, + "index": 3, + "body": { + "#": 1920 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1934 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1936 + }, + "max": { + "#": 1937 + } + }, + { + "x": 300, + "y": 195 + }, + { + "x": 325, + "y": 220 + }, + { + "x": 312.5, + "y": 207.5 + }, + [ + { + "#": 1940 + }, + { + "#": 1941 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 89, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1943 + }, + "angle": 0, + "vertices": { + "#": 1944 + }, + "position": { + "#": 1949 + }, + "force": { + "#": 1950 + }, + "torque": 0, + "positionImpulse": { + "#": 1951 + }, + "constraintImpulse": { + "#": 1952 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1953 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1954 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1955 + }, + "bounds": { + "#": 1957 + }, + "positionPrev": { + "#": 1960 + }, + "anglePrev": 0, + "axes": { + "#": 1961 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1942 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1942 + } + ], + [ + { + "#": 1945 + }, + { + "#": 1946 + }, + { + "#": 1947 + }, + { + "#": 1948 + } + ], + { + "x": 325, + "y": 195, + "index": 0, + "body": { + "#": 1942 + }, + "isInternal": false + }, + { + "x": 350, + "y": 195, + "index": 1, + "body": { + "#": 1942 + }, + "isInternal": false + }, + { + "x": 350, + "y": 220, + "index": 2, + "body": { + "#": 1942 + }, + "isInternal": false + }, + { + "x": 325, + "y": 220, + "index": 3, + "body": { + "#": 1942 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1956 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1958 + }, + "max": { + "#": 1959 + } + }, + { + "x": 325, + "y": 195 + }, + { + "x": 350, + "y": 220 + }, + { + "x": 337.5, + "y": 207.5 + }, + [ + { + "#": 1962 + }, + { + "#": 1963 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 90, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1965 + }, + "angle": 0, + "vertices": { + "#": 1966 + }, + "position": { + "#": 1971 + }, + "force": { + "#": 1972 + }, + "torque": 0, + "positionImpulse": { + "#": 1973 + }, + "constraintImpulse": { + "#": 1974 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1975 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1976 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1977 + }, + "bounds": { + "#": 1979 + }, + "positionPrev": { + "#": 1982 + }, + "anglePrev": 0, + "axes": { + "#": 1983 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1964 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1964 + } + ], + [ + { + "#": 1967 + }, + { + "#": 1968 + }, + { + "#": 1969 + }, + { + "#": 1970 + } + ], + { + "x": 350, + "y": 195, + "index": 0, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 375, + "y": 195, + "index": 1, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 375, + "y": 220, + "index": 2, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 350, + "y": 220, + "index": 3, + "body": { + "#": 1964 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1978 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1980 + }, + "max": { + "#": 1981 + } + }, + { + "x": 350, + "y": 195 + }, + { + "x": 375, + "y": 220 + }, + { + "x": 362.5, + "y": 207.5 + }, + [ + { + "#": 1984 + }, + { + "#": 1985 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 91, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1987 + }, + "angle": 0, + "vertices": { + "#": 1988 + }, + "position": { + "#": 1993 + }, + "force": { + "#": 1994 + }, + "torque": 0, + "positionImpulse": { + "#": 1995 + }, + "constraintImpulse": { + "#": 1996 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1997 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1998 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1999 + }, + "bounds": { + "#": 2001 + }, + "positionPrev": { + "#": 2004 + }, + "anglePrev": 0, + "axes": { + "#": 2005 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1986 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1986 + } + ], + [ + { + "#": 1989 + }, + { + "#": 1990 + }, + { + "#": 1991 + }, + { + "#": 1992 + } + ], + { + "x": 375, + "y": 195, + "index": 0, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 400, + "y": 195, + "index": 1, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 400, + "y": 220, + "index": 2, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 375, + "y": 220, + "index": 3, + "body": { + "#": 1986 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2000 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2002 + }, + "max": { + "#": 2003 + } + }, + { + "x": 375, + "y": 195 + }, + { + "x": 400, + "y": 220 + }, + { + "x": 387.5, + "y": 207.5 + }, + [ + { + "#": 2006 + }, + { + "#": 2007 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 92, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2009 + }, + "angle": 0, + "vertices": { + "#": 2010 + }, + "position": { + "#": 2015 + }, + "force": { + "#": 2016 + }, + "torque": 0, + "positionImpulse": { + "#": 2017 + }, + "constraintImpulse": { + "#": 2018 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2019 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2020 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2021 + }, + "bounds": { + "#": 2023 + }, + "positionPrev": { + "#": 2026 + }, + "anglePrev": 0, + "axes": { + "#": 2027 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2008 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2008 + } + ], + [ + { + "#": 2011 + }, + { + "#": 2012 + }, + { + "#": 2013 + }, + { + "#": 2014 + } + ], + { + "x": 400, + "y": 195, + "index": 0, + "body": { + "#": 2008 + }, + "isInternal": false + }, + { + "x": 425, + "y": 195, + "index": 1, + "body": { + "#": 2008 + }, + "isInternal": false + }, + { + "x": 425, + "y": 220, + "index": 2, + "body": { + "#": 2008 + }, + "isInternal": false + }, + { + "x": 400, + "y": 220, + "index": 3, + "body": { + "#": 2008 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2022 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2024 + }, + "max": { + "#": 2025 + } + }, + { + "x": 400, + "y": 195 + }, + { + "x": 425, + "y": 220 + }, + { + "x": 412.5, + "y": 207.5 + }, + [ + { + "#": 2028 + }, + { + "#": 2029 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 93, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2031 + }, + "angle": 0, + "vertices": { + "#": 2032 + }, + "position": { + "#": 2037 + }, + "force": { + "#": 2038 + }, + "torque": 0, + "positionImpulse": { + "#": 2039 + }, + "constraintImpulse": { + "#": 2040 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2041 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2042 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2043 + }, + "bounds": { + "#": 2045 + }, + "positionPrev": { + "#": 2048 + }, + "anglePrev": 0, + "axes": { + "#": 2049 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2030 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2030 + } + ], + [ + { + "#": 2033 + }, + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + } + ], + { + "x": 425, + "y": 195, + "index": 0, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 450, + "y": 195, + "index": 1, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 450, + "y": 220, + "index": 2, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 425, + "y": 220, + "index": 3, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2044 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2046 + }, + "max": { + "#": 2047 + } + }, + { + "x": 425, + "y": 195 + }, + { + "x": 450, + "y": 220 + }, + { + "x": 437.5, + "y": 207.5 + }, + [ + { + "#": 2050 + }, + { + "#": 2051 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 94, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2053 + }, + "angle": 0, + "vertices": { + "#": 2054 + }, + "position": { + "#": 2059 + }, + "force": { + "#": 2060 + }, + "torque": 0, + "positionImpulse": { + "#": 2061 + }, + "constraintImpulse": { + "#": 2062 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2063 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2064 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2065 + }, + "bounds": { + "#": 2067 + }, + "positionPrev": { + "#": 2070 + }, + "anglePrev": 0, + "axes": { + "#": 2071 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2052 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2052 + } + ], + [ + { + "#": 2055 + }, + { + "#": 2056 + }, + { + "#": 2057 + }, + { + "#": 2058 + } + ], + { + "x": 450, + "y": 195, + "index": 0, + "body": { + "#": 2052 + }, + "isInternal": false + }, + { + "x": 475, + "y": 195, + "index": 1, + "body": { + "#": 2052 + }, + "isInternal": false + }, + { + "x": 475, + "y": 220, + "index": 2, + "body": { + "#": 2052 + }, + "isInternal": false + }, + { + "x": 450, + "y": 220, + "index": 3, + "body": { + "#": 2052 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2066 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2068 + }, + "max": { + "#": 2069 + } + }, + { + "x": 450, + "y": 195 + }, + { + "x": 475, + "y": 220 + }, + { + "x": 462.5, + "y": 207.5 + }, + [ + { + "#": 2072 + }, + { + "#": 2073 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 95, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2075 + }, + "angle": 0, + "vertices": { + "#": 2076 + }, + "position": { + "#": 2081 + }, + "force": { + "#": 2082 + }, + "torque": 0, + "positionImpulse": { + "#": 2083 + }, + "constraintImpulse": { + "#": 2084 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2085 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2086 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2087 + }, + "bounds": { + "#": 2089 + }, + "positionPrev": { + "#": 2092 + }, + "anglePrev": 0, + "axes": { + "#": 2093 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2074 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2074 + } + ], + [ + { + "#": 2077 + }, + { + "#": 2078 + }, + { + "#": 2079 + }, + { + "#": 2080 + } + ], + { + "x": 475, + "y": 195, + "index": 0, + "body": { + "#": 2074 + }, + "isInternal": false + }, + { + "x": 500, + "y": 195, + "index": 1, + "body": { + "#": 2074 + }, + "isInternal": false + }, + { + "x": 500, + "y": 220, + "index": 2, + "body": { + "#": 2074 + }, + "isInternal": false + }, + { + "x": 475, + "y": 220, + "index": 3, + "body": { + "#": 2074 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2088 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2090 + }, + "max": { + "#": 2091 + } + }, + { + "x": 475, + "y": 195 + }, + { + "x": 500, + "y": 220 + }, + { + "x": 487.5, + "y": 207.5 + }, + [ + { + "#": 2094 + }, + { + "#": 2095 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 96, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2097 + }, + "angle": 0, + "vertices": { + "#": 2098 + }, + "position": { + "#": 2103 + }, + "force": { + "#": 2104 + }, + "torque": 0, + "positionImpulse": { + "#": 2105 + }, + "constraintImpulse": { + "#": 2106 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2107 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2108 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2109 + }, + "bounds": { + "#": 2111 + }, + "positionPrev": { + "#": 2114 + }, + "anglePrev": 0, + "axes": { + "#": 2115 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2096 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2096 + } + ], + [ + { + "#": 2099 + }, + { + "#": 2100 + }, + { + "#": 2101 + }, + { + "#": 2102 + } + ], + { + "x": 500, + "y": 195, + "index": 0, + "body": { + "#": 2096 + }, + "isInternal": false + }, + { + "x": 525, + "y": 195, + "index": 1, + "body": { + "#": 2096 + }, + "isInternal": false + }, + { + "x": 525, + "y": 220, + "index": 2, + "body": { + "#": 2096 + }, + "isInternal": false + }, + { + "x": 500, + "y": 220, + "index": 3, + "body": { + "#": 2096 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2110 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2112 + }, + "max": { + "#": 2113 + } + }, + { + "x": 500, + "y": 195 + }, + { + "x": 525, + "y": 220 + }, + { + "x": 512.5, + "y": 207.5 + }, + [ + { + "#": 2116 + }, + { + "#": 2117 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 97, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2119 + }, + "angle": 0, + "vertices": { + "#": 2120 + }, + "position": { + "#": 2125 + }, + "force": { + "#": 2126 + }, + "torque": 0, + "positionImpulse": { + "#": 2127 + }, + "constraintImpulse": { + "#": 2128 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2129 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2130 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2131 + }, + "bounds": { + "#": 2133 + }, + "positionPrev": { + "#": 2136 + }, + "anglePrev": 0, + "axes": { + "#": 2137 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2118 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2118 + } + ], + [ + { + "#": 2121 + }, + { + "#": 2122 + }, + { + "#": 2123 + }, + { + "#": 2124 + } + ], + { + "x": 525, + "y": 195, + "index": 0, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 550, + "y": 195, + "index": 1, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 550, + "y": 220, + "index": 2, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 525, + "y": 220, + "index": 3, + "body": { + "#": 2118 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2132 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2134 + }, + "max": { + "#": 2135 + } + }, + { + "x": 525, + "y": 195 + }, + { + "x": 550, + "y": 220 + }, + { + "x": 537.5, + "y": 207.5 + }, + [ + { + "#": 2138 + }, + { + "#": 2139 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 98, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2141 + }, + "angle": 0, + "vertices": { + "#": 2142 + }, + "position": { + "#": 2147 + }, + "force": { + "#": 2148 + }, + "torque": 0, + "positionImpulse": { + "#": 2149 + }, + "constraintImpulse": { + "#": 2150 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2151 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2152 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2153 + }, + "bounds": { + "#": 2155 + }, + "positionPrev": { + "#": 2158 + }, + "anglePrev": 0, + "axes": { + "#": 2159 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2140 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2140 + } + ], + [ + { + "#": 2143 + }, + { + "#": 2144 + }, + { + "#": 2145 + }, + { + "#": 2146 + } + ], + { + "x": 550, + "y": 195, + "index": 0, + "body": { + "#": 2140 + }, + "isInternal": false + }, + { + "x": 575, + "y": 195, + "index": 1, + "body": { + "#": 2140 + }, + "isInternal": false + }, + { + "x": 575, + "y": 220, + "index": 2, + "body": { + "#": 2140 + }, + "isInternal": false + }, + { + "x": 550, + "y": 220, + "index": 3, + "body": { + "#": 2140 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2154 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2156 + }, + "max": { + "#": 2157 + } + }, + { + "x": 550, + "y": 195 + }, + { + "x": 575, + "y": 220 + }, + { + "x": 562.5, + "y": 207.5 + }, + [ + { + "#": 2160 + }, + { + "#": 2161 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 99, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2163 + }, + "angle": 0, + "vertices": { + "#": 2164 + }, + "position": { + "#": 2169 + }, + "force": { + "#": 2170 + }, + "torque": 0, + "positionImpulse": { + "#": 2171 + }, + "constraintImpulse": { + "#": 2172 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2173 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2174 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2175 + }, + "bounds": { + "#": 2177 + }, + "positionPrev": { + "#": 2180 + }, + "anglePrev": 0, + "axes": { + "#": 2181 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2162 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2162 + } + ], + [ + { + "#": 2165 + }, + { + "#": 2166 + }, + { + "#": 2167 + }, + { + "#": 2168 + } + ], + { + "x": 575, + "y": 195, + "index": 0, + "body": { + "#": 2162 + }, + "isInternal": false + }, + { + "x": 600, + "y": 195, + "index": 1, + "body": { + "#": 2162 + }, + "isInternal": false + }, + { + "x": 600, + "y": 220, + "index": 2, + "body": { + "#": 2162 + }, + "isInternal": false + }, + { + "x": 575, + "y": 220, + "index": 3, + "body": { + "#": 2162 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2176 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2178 + }, + "max": { + "#": 2179 + } + }, + { + "x": 575, + "y": 195 + }, + { + "x": 600, + "y": 220 + }, + { + "x": 587.5, + "y": 207.5 + }, + [ + { + "#": 2182 + }, + { + "#": 2183 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 100, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2185 + }, + "angle": 0, + "vertices": { + "#": 2186 + }, + "position": { + "#": 2191 + }, + "force": { + "#": 2192 + }, + "torque": 0, + "positionImpulse": { + "#": 2193 + }, + "constraintImpulse": { + "#": 2194 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2195 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2196 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2197 + }, + "bounds": { + "#": 2199 + }, + "positionPrev": { + "#": 2202 + }, + "anglePrev": 0, + "axes": { + "#": 2203 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2184 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2184 + } + ], + [ + { + "#": 2187 + }, + { + "#": 2188 + }, + { + "#": 2189 + }, + { + "#": 2190 + } + ], + { + "x": 600, + "y": 195, + "index": 0, + "body": { + "#": 2184 + }, + "isInternal": false + }, + { + "x": 625, + "y": 195, + "index": 1, + "body": { + "#": 2184 + }, + "isInternal": false + }, + { + "x": 625, + "y": 220, + "index": 2, + "body": { + "#": 2184 + }, + "isInternal": false + }, + { + "x": 600, + "y": 220, + "index": 3, + "body": { + "#": 2184 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2198 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2200 + }, + "max": { + "#": 2201 + } + }, + { + "x": 600, + "y": 195 + }, + { + "x": 625, + "y": 220 + }, + { + "x": 612.5, + "y": 207.5 + }, + [ + { + "#": 2204 + }, + { + "#": 2205 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 101, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2207 + }, + "angle": 0, + "vertices": { + "#": 2208 + }, + "position": { + "#": 2213 + }, + "force": { + "#": 2214 + }, + "torque": 0, + "positionImpulse": { + "#": 2215 + }, + "constraintImpulse": { + "#": 2216 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2217 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2218 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2219 + }, + "bounds": { + "#": 2221 + }, + "positionPrev": { + "#": 2224 + }, + "anglePrev": 0, + "axes": { + "#": 2225 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2206 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2206 + } + ], + [ + { + "#": 2209 + }, + { + "#": 2210 + }, + { + "#": 2211 + }, + { + "#": 2212 + } + ], + { + "x": 625, + "y": 195, + "index": 0, + "body": { + "#": 2206 + }, + "isInternal": false + }, + { + "x": 650, + "y": 195, + "index": 1, + "body": { + "#": 2206 + }, + "isInternal": false + }, + { + "x": 650, + "y": 220, + "index": 2, + "body": { + "#": 2206 + }, + "isInternal": false + }, + { + "x": 625, + "y": 220, + "index": 3, + "body": { + "#": 2206 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2220 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2222 + }, + "max": { + "#": 2223 + } + }, + { + "x": 625, + "y": 195 + }, + { + "x": 650, + "y": 220 + }, + { + "x": 637.5, + "y": 207.5 + }, + [ + { + "#": 2226 + }, + { + "#": 2227 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 102, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2229 + }, + "angle": 0, + "vertices": { + "#": 2230 + }, + "position": { + "#": 2235 + }, + "force": { + "#": 2236 + }, + "torque": 0, + "positionImpulse": { + "#": 2237 + }, + "constraintImpulse": { + "#": 2238 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2239 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2240 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2241 + }, + "bounds": { + "#": 2243 + }, + "positionPrev": { + "#": 2246 + }, + "anglePrev": 0, + "axes": { + "#": 2247 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2228 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2228 + } + ], + [ + { + "#": 2231 + }, + { + "#": 2232 + }, + { + "#": 2233 + }, + { + "#": 2234 + } + ], + { + "x": 650, + "y": 195, + "index": 0, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 675, + "y": 195, + "index": 1, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 675, + "y": 220, + "index": 2, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 650, + "y": 220, + "index": 3, + "body": { + "#": 2228 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2242 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2244 + }, + "max": { + "#": 2245 + } + }, + { + "x": 650, + "y": 195 + }, + { + "x": 675, + "y": 220 + }, + { + "x": 662.5, + "y": 207.5 + }, + [ + { + "#": 2248 + }, + { + "#": 2249 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 103, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2251 + }, + "angle": 0, + "vertices": { + "#": 2252 + }, + "position": { + "#": 2257 + }, + "force": { + "#": 2258 + }, + "torque": 0, + "positionImpulse": { + "#": 2259 + }, + "constraintImpulse": { + "#": 2260 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2261 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2262 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2263 + }, + "bounds": { + "#": 2265 + }, + "positionPrev": { + "#": 2268 + }, + "anglePrev": 0, + "axes": { + "#": 2269 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2250 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2250 + } + ], + [ + { + "#": 2253 + }, + { + "#": 2254 + }, + { + "#": 2255 + }, + { + "#": 2256 + } + ], + { + "x": 675, + "y": 195, + "index": 0, + "body": { + "#": 2250 + }, + "isInternal": false + }, + { + "x": 700, + "y": 195, + "index": 1, + "body": { + "#": 2250 + }, + "isInternal": false + }, + { + "x": 700, + "y": 220, + "index": 2, + "body": { + "#": 2250 + }, + "isInternal": false + }, + { + "x": 675, + "y": 220, + "index": 3, + "body": { + "#": 2250 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2264 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2266 + }, + "max": { + "#": 2267 + } + }, + { + "x": 675, + "y": 195 + }, + { + "x": 700, + "y": 220 + }, + { + "x": 687.5, + "y": 207.5 + }, + [ + { + "#": 2270 + }, + { + "#": 2271 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 104, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2273 + }, + "angle": 0, + "vertices": { + "#": 2274 + }, + "position": { + "#": 2279 + }, + "force": { + "#": 2280 + }, + "torque": 0, + "positionImpulse": { + "#": 2281 + }, + "constraintImpulse": { + "#": 2282 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2283 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2284 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2285 + }, + "bounds": { + "#": 2287 + }, + "positionPrev": { + "#": 2290 + }, + "anglePrev": 0, + "axes": { + "#": 2291 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2272 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2272 + } + ], + [ + { + "#": 2275 + }, + { + "#": 2276 + }, + { + "#": 2277 + }, + { + "#": 2278 + } + ], + { + "x": 700, + "y": 195, + "index": 0, + "body": { + "#": 2272 + }, + "isInternal": false + }, + { + "x": 725, + "y": 195, + "index": 1, + "body": { + "#": 2272 + }, + "isInternal": false + }, + { + "x": 725, + "y": 220, + "index": 2, + "body": { + "#": 2272 + }, + "isInternal": false + }, + { + "x": 700, + "y": 220, + "index": 3, + "body": { + "#": 2272 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 207.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2286 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2288 + }, + "max": { + "#": 2289 + } + }, + { + "x": 700, + "y": 195 + }, + { + "x": 725, + "y": 220 + }, + { + "x": 712.5, + "y": 207.5 + }, + [ + { + "#": 2292 + }, + { + "#": 2293 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 105, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2295 + }, + "angle": 0, + "vertices": { + "#": 2296 + }, + "position": { + "#": 2301 + }, + "force": { + "#": 2302 + }, + "torque": 0, + "positionImpulse": { + "#": 2303 + }, + "constraintImpulse": { + "#": 2304 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2305 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2306 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2307 + }, + "bounds": { + "#": 2309 + }, + "positionPrev": { + "#": 2312 + }, + "anglePrev": 0, + "axes": { + "#": 2313 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2294 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2294 + } + ], + [ + { + "#": 2297 + }, + { + "#": 2298 + }, + { + "#": 2299 + }, + { + "#": 2300 + } + ], + { + "x": 100, + "y": 220, + "index": 0, + "body": { + "#": 2294 + }, + "isInternal": false + }, + { + "x": 125, + "y": 220, + "index": 1, + "body": { + "#": 2294 + }, + "isInternal": false + }, + { + "x": 125, + "y": 245, + "index": 2, + "body": { + "#": 2294 + }, + "isInternal": false + }, + { + "x": 100, + "y": 245, + "index": 3, + "body": { + "#": 2294 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2308 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2310 + }, + "max": { + "#": 2311 + } + }, + { + "x": 100, + "y": 220 + }, + { + "x": 125, + "y": 245 + }, + { + "x": 112.5, + "y": 232.5 + }, + [ + { + "#": 2314 + }, + { + "#": 2315 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 106, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2317 + }, + "angle": 0, + "vertices": { + "#": 2318 + }, + "position": { + "#": 2323 + }, + "force": { + "#": 2324 + }, + "torque": 0, + "positionImpulse": { + "#": 2325 + }, + "constraintImpulse": { + "#": 2326 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2327 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2328 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2329 + }, + "bounds": { + "#": 2331 + }, + "positionPrev": { + "#": 2334 + }, + "anglePrev": 0, + "axes": { + "#": 2335 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2316 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2316 + } + ], + [ + { + "#": 2319 + }, + { + "#": 2320 + }, + { + "#": 2321 + }, + { + "#": 2322 + } + ], + { + "x": 125, + "y": 220, + "index": 0, + "body": { + "#": 2316 + }, + "isInternal": false + }, + { + "x": 150, + "y": 220, + "index": 1, + "body": { + "#": 2316 + }, + "isInternal": false + }, + { + "x": 150, + "y": 245, + "index": 2, + "body": { + "#": 2316 + }, + "isInternal": false + }, + { + "x": 125, + "y": 245, + "index": 3, + "body": { + "#": 2316 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2330 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2332 + }, + "max": { + "#": 2333 + } + }, + { + "x": 125, + "y": 220 + }, + { + "x": 150, + "y": 245 + }, + { + "x": 137.5, + "y": 232.5 + }, + [ + { + "#": 2336 + }, + { + "#": 2337 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 107, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2339 + }, + "angle": 0, + "vertices": { + "#": 2340 + }, + "position": { + "#": 2345 + }, + "force": { + "#": 2346 + }, + "torque": 0, + "positionImpulse": { + "#": 2347 + }, + "constraintImpulse": { + "#": 2348 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2349 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2350 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2351 + }, + "bounds": { + "#": 2353 + }, + "positionPrev": { + "#": 2356 + }, + "anglePrev": 0, + "axes": { + "#": 2357 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2338 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2338 + } + ], + [ + { + "#": 2341 + }, + { + "#": 2342 + }, + { + "#": 2343 + }, + { + "#": 2344 + } + ], + { + "x": 150, + "y": 220, + "index": 0, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 175, + "y": 220, + "index": 1, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 175, + "y": 245, + "index": 2, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 150, + "y": 245, + "index": 3, + "body": { + "#": 2338 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2352 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2354 + }, + "max": { + "#": 2355 + } + }, + { + "x": 150, + "y": 220 + }, + { + "x": 175, + "y": 245 + }, + { + "x": 162.5, + "y": 232.5 + }, + [ + { + "#": 2358 + }, + { + "#": 2359 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 108, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2361 + }, + "angle": 0, + "vertices": { + "#": 2362 + }, + "position": { + "#": 2367 + }, + "force": { + "#": 2368 + }, + "torque": 0, + "positionImpulse": { + "#": 2369 + }, + "constraintImpulse": { + "#": 2370 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2371 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2372 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2373 + }, + "bounds": { + "#": 2375 + }, + "positionPrev": { + "#": 2378 + }, + "anglePrev": 0, + "axes": { + "#": 2379 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2360 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2360 + } + ], + [ + { + "#": 2363 + }, + { + "#": 2364 + }, + { + "#": 2365 + }, + { + "#": 2366 + } + ], + { + "x": 175, + "y": 220, + "index": 0, + "body": { + "#": 2360 + }, + "isInternal": false + }, + { + "x": 200, + "y": 220, + "index": 1, + "body": { + "#": 2360 + }, + "isInternal": false + }, + { + "x": 200, + "y": 245, + "index": 2, + "body": { + "#": 2360 + }, + "isInternal": false + }, + { + "x": 175, + "y": 245, + "index": 3, + "body": { + "#": 2360 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2374 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2376 + }, + "max": { + "#": 2377 + } + }, + { + "x": 175, + "y": 220 + }, + { + "x": 200, + "y": 245 + }, + { + "x": 187.5, + "y": 232.5 + }, + [ + { + "#": 2380 + }, + { + "#": 2381 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 109, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2383 + }, + "angle": 0, + "vertices": { + "#": 2384 + }, + "position": { + "#": 2389 + }, + "force": { + "#": 2390 + }, + "torque": 0, + "positionImpulse": { + "#": 2391 + }, + "constraintImpulse": { + "#": 2392 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2393 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2394 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2395 + }, + "bounds": { + "#": 2397 + }, + "positionPrev": { + "#": 2400 + }, + "anglePrev": 0, + "axes": { + "#": 2401 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2382 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2382 + } + ], + [ + { + "#": 2385 + }, + { + "#": 2386 + }, + { + "#": 2387 + }, + { + "#": 2388 + } + ], + { + "x": 200, + "y": 220, + "index": 0, + "body": { + "#": 2382 + }, + "isInternal": false + }, + { + "x": 225, + "y": 220, + "index": 1, + "body": { + "#": 2382 + }, + "isInternal": false + }, + { + "x": 225, + "y": 245, + "index": 2, + "body": { + "#": 2382 + }, + "isInternal": false + }, + { + "x": 200, + "y": 245, + "index": 3, + "body": { + "#": 2382 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2396 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2398 + }, + "max": { + "#": 2399 + } + }, + { + "x": 200, + "y": 220 + }, + { + "x": 225, + "y": 245 + }, + { + "x": 212.5, + "y": 232.5 + }, + [ + { + "#": 2402 + }, + { + "#": 2403 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 110, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2405 + }, + "angle": 0, + "vertices": { + "#": 2406 + }, + "position": { + "#": 2411 + }, + "force": { + "#": 2412 + }, + "torque": 0, + "positionImpulse": { + "#": 2413 + }, + "constraintImpulse": { + "#": 2414 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2415 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2416 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2417 + }, + "bounds": { + "#": 2419 + }, + "positionPrev": { + "#": 2422 + }, + "anglePrev": 0, + "axes": { + "#": 2423 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2404 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2404 + } + ], + [ + { + "#": 2407 + }, + { + "#": 2408 + }, + { + "#": 2409 + }, + { + "#": 2410 + } + ], + { + "x": 225, + "y": 220, + "index": 0, + "body": { + "#": 2404 + }, + "isInternal": false + }, + { + "x": 250, + "y": 220, + "index": 1, + "body": { + "#": 2404 + }, + "isInternal": false + }, + { + "x": 250, + "y": 245, + "index": 2, + "body": { + "#": 2404 + }, + "isInternal": false + }, + { + "x": 225, + "y": 245, + "index": 3, + "body": { + "#": 2404 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2418 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2420 + }, + "max": { + "#": 2421 + } + }, + { + "x": 225, + "y": 220 + }, + { + "x": 250, + "y": 245 + }, + { + "x": 237.5, + "y": 232.5 + }, + [ + { + "#": 2424 + }, + { + "#": 2425 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 111, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2427 + }, + "angle": 0, + "vertices": { + "#": 2428 + }, + "position": { + "#": 2433 + }, + "force": { + "#": 2434 + }, + "torque": 0, + "positionImpulse": { + "#": 2435 + }, + "constraintImpulse": { + "#": 2436 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2437 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2438 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2439 + }, + "bounds": { + "#": 2441 + }, + "positionPrev": { + "#": 2444 + }, + "anglePrev": 0, + "axes": { + "#": 2445 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2426 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2426 + } + ], + [ + { + "#": 2429 + }, + { + "#": 2430 + }, + { + "#": 2431 + }, + { + "#": 2432 + } + ], + { + "x": 250, + "y": 220, + "index": 0, + "body": { + "#": 2426 + }, + "isInternal": false + }, + { + "x": 275, + "y": 220, + "index": 1, + "body": { + "#": 2426 + }, + "isInternal": false + }, + { + "x": 275, + "y": 245, + "index": 2, + "body": { + "#": 2426 + }, + "isInternal": false + }, + { + "x": 250, + "y": 245, + "index": 3, + "body": { + "#": 2426 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2440 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2442 + }, + "max": { + "#": 2443 + } + }, + { + "x": 250, + "y": 220 + }, + { + "x": 275, + "y": 245 + }, + { + "x": 262.5, + "y": 232.5 + }, + [ + { + "#": 2446 + }, + { + "#": 2447 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 112, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2449 + }, + "angle": 0, + "vertices": { + "#": 2450 + }, + "position": { + "#": 2455 + }, + "force": { + "#": 2456 + }, + "torque": 0, + "positionImpulse": { + "#": 2457 + }, + "constraintImpulse": { + "#": 2458 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2459 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2460 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2461 + }, + "bounds": { + "#": 2463 + }, + "positionPrev": { + "#": 2466 + }, + "anglePrev": 0, + "axes": { + "#": 2467 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2448 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2448 + } + ], + [ + { + "#": 2451 + }, + { + "#": 2452 + }, + { + "#": 2453 + }, + { + "#": 2454 + } + ], + { + "x": 275, + "y": 220, + "index": 0, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 300, + "y": 220, + "index": 1, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 300, + "y": 245, + "index": 2, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 275, + "y": 245, + "index": 3, + "body": { + "#": 2448 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2462 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2464 + }, + "max": { + "#": 2465 + } + }, + { + "x": 275, + "y": 220 + }, + { + "x": 300, + "y": 245 + }, + { + "x": 287.5, + "y": 232.5 + }, + [ + { + "#": 2468 + }, + { + "#": 2469 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 113, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2471 + }, + "angle": 0, + "vertices": { + "#": 2472 + }, + "position": { + "#": 2477 + }, + "force": { + "#": 2478 + }, + "torque": 0, + "positionImpulse": { + "#": 2479 + }, + "constraintImpulse": { + "#": 2480 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2481 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2482 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2483 + }, + "bounds": { + "#": 2485 + }, + "positionPrev": { + "#": 2488 + }, + "anglePrev": 0, + "axes": { + "#": 2489 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2470 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2470 + } + ], + [ + { + "#": 2473 + }, + { + "#": 2474 + }, + { + "#": 2475 + }, + { + "#": 2476 + } + ], + { + "x": 300, + "y": 220, + "index": 0, + "body": { + "#": 2470 + }, + "isInternal": false + }, + { + "x": 325, + "y": 220, + "index": 1, + "body": { + "#": 2470 + }, + "isInternal": false + }, + { + "x": 325, + "y": 245, + "index": 2, + "body": { + "#": 2470 + }, + "isInternal": false + }, + { + "x": 300, + "y": 245, + "index": 3, + "body": { + "#": 2470 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2484 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2486 + }, + "max": { + "#": 2487 + } + }, + { + "x": 300, + "y": 220 + }, + { + "x": 325, + "y": 245 + }, + { + "x": 312.5, + "y": 232.5 + }, + [ + { + "#": 2490 + }, + { + "#": 2491 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 114, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2493 + }, + "angle": 0, + "vertices": { + "#": 2494 + }, + "position": { + "#": 2499 + }, + "force": { + "#": 2500 + }, + "torque": 0, + "positionImpulse": { + "#": 2501 + }, + "constraintImpulse": { + "#": 2502 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2503 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2504 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2505 + }, + "bounds": { + "#": 2507 + }, + "positionPrev": { + "#": 2510 + }, + "anglePrev": 0, + "axes": { + "#": 2511 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2492 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2492 + } + ], + [ + { + "#": 2495 + }, + { + "#": 2496 + }, + { + "#": 2497 + }, + { + "#": 2498 + } + ], + { + "x": 325, + "y": 220, + "index": 0, + "body": { + "#": 2492 + }, + "isInternal": false + }, + { + "x": 350, + "y": 220, + "index": 1, + "body": { + "#": 2492 + }, + "isInternal": false + }, + { + "x": 350, + "y": 245, + "index": 2, + "body": { + "#": 2492 + }, + "isInternal": false + }, + { + "x": 325, + "y": 245, + "index": 3, + "body": { + "#": 2492 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2506 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2508 + }, + "max": { + "#": 2509 + } + }, + { + "x": 325, + "y": 220 + }, + { + "x": 350, + "y": 245 + }, + { + "x": 337.5, + "y": 232.5 + }, + [ + { + "#": 2512 + }, + { + "#": 2513 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 115, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2515 + }, + "angle": 0, + "vertices": { + "#": 2516 + }, + "position": { + "#": 2521 + }, + "force": { + "#": 2522 + }, + "torque": 0, + "positionImpulse": { + "#": 2523 + }, + "constraintImpulse": { + "#": 2524 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2525 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2526 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2527 + }, + "bounds": { + "#": 2529 + }, + "positionPrev": { + "#": 2532 + }, + "anglePrev": 0, + "axes": { + "#": 2533 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2514 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2514 + } + ], + [ + { + "#": 2517 + }, + { + "#": 2518 + }, + { + "#": 2519 + }, + { + "#": 2520 + } + ], + { + "x": 350, + "y": 220, + "index": 0, + "body": { + "#": 2514 + }, + "isInternal": false + }, + { + "x": 375, + "y": 220, + "index": 1, + "body": { + "#": 2514 + }, + "isInternal": false + }, + { + "x": 375, + "y": 245, + "index": 2, + "body": { + "#": 2514 + }, + "isInternal": false + }, + { + "x": 350, + "y": 245, + "index": 3, + "body": { + "#": 2514 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2528 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2530 + }, + "max": { + "#": 2531 + } + }, + { + "x": 350, + "y": 220 + }, + { + "x": 375, + "y": 245 + }, + { + "x": 362.5, + "y": 232.5 + }, + [ + { + "#": 2534 + }, + { + "#": 2535 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 116, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2537 + }, + "angle": 0, + "vertices": { + "#": 2538 + }, + "position": { + "#": 2543 + }, + "force": { + "#": 2544 + }, + "torque": 0, + "positionImpulse": { + "#": 2545 + }, + "constraintImpulse": { + "#": 2546 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2547 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2548 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2549 + }, + "bounds": { + "#": 2551 + }, + "positionPrev": { + "#": 2554 + }, + "anglePrev": 0, + "axes": { + "#": 2555 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2536 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2536 + } + ], + [ + { + "#": 2539 + }, + { + "#": 2540 + }, + { + "#": 2541 + }, + { + "#": 2542 + } + ], + { + "x": 375, + "y": 220, + "index": 0, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 400, + "y": 220, + "index": 1, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 400, + "y": 245, + "index": 2, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 375, + "y": 245, + "index": 3, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2550 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2552 + }, + "max": { + "#": 2553 + } + }, + { + "x": 375, + "y": 220 + }, + { + "x": 400, + "y": 245 + }, + { + "x": 387.5, + "y": 232.5 + }, + [ + { + "#": 2556 + }, + { + "#": 2557 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 117, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2559 + }, + "angle": 0, + "vertices": { + "#": 2560 + }, + "position": { + "#": 2565 + }, + "force": { + "#": 2566 + }, + "torque": 0, + "positionImpulse": { + "#": 2567 + }, + "constraintImpulse": { + "#": 2568 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2569 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2570 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2571 + }, + "bounds": { + "#": 2573 + }, + "positionPrev": { + "#": 2576 + }, + "anglePrev": 0, + "axes": { + "#": 2577 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2558 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2558 + } + ], + [ + { + "#": 2561 + }, + { + "#": 2562 + }, + { + "#": 2563 + }, + { + "#": 2564 + } + ], + { + "x": 400, + "y": 220, + "index": 0, + "body": { + "#": 2558 + }, + "isInternal": false + }, + { + "x": 425, + "y": 220, + "index": 1, + "body": { + "#": 2558 + }, + "isInternal": false + }, + { + "x": 425, + "y": 245, + "index": 2, + "body": { + "#": 2558 + }, + "isInternal": false + }, + { + "x": 400, + "y": 245, + "index": 3, + "body": { + "#": 2558 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2572 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2574 + }, + "max": { + "#": 2575 + } + }, + { + "x": 400, + "y": 220 + }, + { + "x": 425, + "y": 245 + }, + { + "x": 412.5, + "y": 232.5 + }, + [ + { + "#": 2578 + }, + { + "#": 2579 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 118, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2581 + }, + "angle": 0, + "vertices": { + "#": 2582 + }, + "position": { + "#": 2587 + }, + "force": { + "#": 2588 + }, + "torque": 0, + "positionImpulse": { + "#": 2589 + }, + "constraintImpulse": { + "#": 2590 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2591 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2592 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2593 + }, + "bounds": { + "#": 2595 + }, + "positionPrev": { + "#": 2598 + }, + "anglePrev": 0, + "axes": { + "#": 2599 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2580 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2580 + } + ], + [ + { + "#": 2583 + }, + { + "#": 2584 + }, + { + "#": 2585 + }, + { + "#": 2586 + } + ], + { + "x": 425, + "y": 220, + "index": 0, + "body": { + "#": 2580 + }, + "isInternal": false + }, + { + "x": 450, + "y": 220, + "index": 1, + "body": { + "#": 2580 + }, + "isInternal": false + }, + { + "x": 450, + "y": 245, + "index": 2, + "body": { + "#": 2580 + }, + "isInternal": false + }, + { + "x": 425, + "y": 245, + "index": 3, + "body": { + "#": 2580 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2594 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2596 + }, + "max": { + "#": 2597 + } + }, + { + "x": 425, + "y": 220 + }, + { + "x": 450, + "y": 245 + }, + { + "x": 437.5, + "y": 232.5 + }, + [ + { + "#": 2600 + }, + { + "#": 2601 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 119, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2603 + }, + "angle": 0, + "vertices": { + "#": 2604 + }, + "position": { + "#": 2609 + }, + "force": { + "#": 2610 + }, + "torque": 0, + "positionImpulse": { + "#": 2611 + }, + "constraintImpulse": { + "#": 2612 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2613 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2614 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2615 + }, + "bounds": { + "#": 2617 + }, + "positionPrev": { + "#": 2620 + }, + "anglePrev": 0, + "axes": { + "#": 2621 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2602 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2602 + } + ], + [ + { + "#": 2605 + }, + { + "#": 2606 + }, + { + "#": 2607 + }, + { + "#": 2608 + } + ], + { + "x": 450, + "y": 220, + "index": 0, + "body": { + "#": 2602 + }, + "isInternal": false + }, + { + "x": 475, + "y": 220, + "index": 1, + "body": { + "#": 2602 + }, + "isInternal": false + }, + { + "x": 475, + "y": 245, + "index": 2, + "body": { + "#": 2602 + }, + "isInternal": false + }, + { + "x": 450, + "y": 245, + "index": 3, + "body": { + "#": 2602 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2616 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2618 + }, + "max": { + "#": 2619 + } + }, + { + "x": 450, + "y": 220 + }, + { + "x": 475, + "y": 245 + }, + { + "x": 462.5, + "y": 232.5 + }, + [ + { + "#": 2622 + }, + { + "#": 2623 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 120, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2625 + }, + "angle": 0, + "vertices": { + "#": 2626 + }, + "position": { + "#": 2631 + }, + "force": { + "#": 2632 + }, + "torque": 0, + "positionImpulse": { + "#": 2633 + }, + "constraintImpulse": { + "#": 2634 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2635 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2636 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2637 + }, + "bounds": { + "#": 2639 + }, + "positionPrev": { + "#": 2642 + }, + "anglePrev": 0, + "axes": { + "#": 2643 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2624 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2624 + } + ], + [ + { + "#": 2627 + }, + { + "#": 2628 + }, + { + "#": 2629 + }, + { + "#": 2630 + } + ], + { + "x": 475, + "y": 220, + "index": 0, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 500, + "y": 220, + "index": 1, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 500, + "y": 245, + "index": 2, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 475, + "y": 245, + "index": 3, + "body": { + "#": 2624 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2638 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2640 + }, + "max": { + "#": 2641 + } + }, + { + "x": 475, + "y": 220 + }, + { + "x": 500, + "y": 245 + }, + { + "x": 487.5, + "y": 232.5 + }, + [ + { + "#": 2644 + }, + { + "#": 2645 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 121, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2647 + }, + "angle": 0, + "vertices": { + "#": 2648 + }, + "position": { + "#": 2653 + }, + "force": { + "#": 2654 + }, + "torque": 0, + "positionImpulse": { + "#": 2655 + }, + "constraintImpulse": { + "#": 2656 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2657 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2658 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2659 + }, + "bounds": { + "#": 2661 + }, + "positionPrev": { + "#": 2664 + }, + "anglePrev": 0, + "axes": { + "#": 2665 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2646 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2646 + } + ], + [ + { + "#": 2649 + }, + { + "#": 2650 + }, + { + "#": 2651 + }, + { + "#": 2652 + } + ], + { + "x": 500, + "y": 220, + "index": 0, + "body": { + "#": 2646 + }, + "isInternal": false + }, + { + "x": 525, + "y": 220, + "index": 1, + "body": { + "#": 2646 + }, + "isInternal": false + }, + { + "x": 525, + "y": 245, + "index": 2, + "body": { + "#": 2646 + }, + "isInternal": false + }, + { + "x": 500, + "y": 245, + "index": 3, + "body": { + "#": 2646 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2660 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2662 + }, + "max": { + "#": 2663 + } + }, + { + "x": 500, + "y": 220 + }, + { + "x": 525, + "y": 245 + }, + { + "x": 512.5, + "y": 232.5 + }, + [ + { + "#": 2666 + }, + { + "#": 2667 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 122, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2669 + }, + "angle": 0, + "vertices": { + "#": 2670 + }, + "position": { + "#": 2675 + }, + "force": { + "#": 2676 + }, + "torque": 0, + "positionImpulse": { + "#": 2677 + }, + "constraintImpulse": { + "#": 2678 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2679 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2680 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2681 + }, + "bounds": { + "#": 2683 + }, + "positionPrev": { + "#": 2686 + }, + "anglePrev": 0, + "axes": { + "#": 2687 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2668 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2668 + } + ], + [ + { + "#": 2671 + }, + { + "#": 2672 + }, + { + "#": 2673 + }, + { + "#": 2674 + } + ], + { + "x": 525, + "y": 220, + "index": 0, + "body": { + "#": 2668 + }, + "isInternal": false + }, + { + "x": 550, + "y": 220, + "index": 1, + "body": { + "#": 2668 + }, + "isInternal": false + }, + { + "x": 550, + "y": 245, + "index": 2, + "body": { + "#": 2668 + }, + "isInternal": false + }, + { + "x": 525, + "y": 245, + "index": 3, + "body": { + "#": 2668 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2682 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2684 + }, + "max": { + "#": 2685 + } + }, + { + "x": 525, + "y": 220 + }, + { + "x": 550, + "y": 245 + }, + { + "x": 537.5, + "y": 232.5 + }, + [ + { + "#": 2688 + }, + { + "#": 2689 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 123, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2691 + }, + "angle": 0, + "vertices": { + "#": 2692 + }, + "position": { + "#": 2697 + }, + "force": { + "#": 2698 + }, + "torque": 0, + "positionImpulse": { + "#": 2699 + }, + "constraintImpulse": { + "#": 2700 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2701 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2702 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2703 + }, + "bounds": { + "#": 2705 + }, + "positionPrev": { + "#": 2708 + }, + "anglePrev": 0, + "axes": { + "#": 2709 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2690 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2690 + } + ], + [ + { + "#": 2693 + }, + { + "#": 2694 + }, + { + "#": 2695 + }, + { + "#": 2696 + } + ], + { + "x": 550, + "y": 220, + "index": 0, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 575, + "y": 220, + "index": 1, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 575, + "y": 245, + "index": 2, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 550, + "y": 245, + "index": 3, + "body": { + "#": 2690 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2704 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2706 + }, + "max": { + "#": 2707 + } + }, + { + "x": 550, + "y": 220 + }, + { + "x": 575, + "y": 245 + }, + { + "x": 562.5, + "y": 232.5 + }, + [ + { + "#": 2710 + }, + { + "#": 2711 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 124, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2713 + }, + "angle": 0, + "vertices": { + "#": 2714 + }, + "position": { + "#": 2719 + }, + "force": { + "#": 2720 + }, + "torque": 0, + "positionImpulse": { + "#": 2721 + }, + "constraintImpulse": { + "#": 2722 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2723 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2724 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2725 + }, + "bounds": { + "#": 2727 + }, + "positionPrev": { + "#": 2730 + }, + "anglePrev": 0, + "axes": { + "#": 2731 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2712 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2712 + } + ], + [ + { + "#": 2715 + }, + { + "#": 2716 + }, + { + "#": 2717 + }, + { + "#": 2718 + } + ], + { + "x": 575, + "y": 220, + "index": 0, + "body": { + "#": 2712 + }, + "isInternal": false + }, + { + "x": 600, + "y": 220, + "index": 1, + "body": { + "#": 2712 + }, + "isInternal": false + }, + { + "x": 600, + "y": 245, + "index": 2, + "body": { + "#": 2712 + }, + "isInternal": false + }, + { + "x": 575, + "y": 245, + "index": 3, + "body": { + "#": 2712 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2726 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2728 + }, + "max": { + "#": 2729 + } + }, + { + "x": 575, + "y": 220 + }, + { + "x": 600, + "y": 245 + }, + { + "x": 587.5, + "y": 232.5 + }, + [ + { + "#": 2732 + }, + { + "#": 2733 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 125, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2735 + }, + "angle": 0, + "vertices": { + "#": 2736 + }, + "position": { + "#": 2741 + }, + "force": { + "#": 2742 + }, + "torque": 0, + "positionImpulse": { + "#": 2743 + }, + "constraintImpulse": { + "#": 2744 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2745 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2746 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2747 + }, + "bounds": { + "#": 2749 + }, + "positionPrev": { + "#": 2752 + }, + "anglePrev": 0, + "axes": { + "#": 2753 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2734 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2734 + } + ], + [ + { + "#": 2737 + }, + { + "#": 2738 + }, + { + "#": 2739 + }, + { + "#": 2740 + } + ], + { + "x": 600, + "y": 220, + "index": 0, + "body": { + "#": 2734 + }, + "isInternal": false + }, + { + "x": 625, + "y": 220, + "index": 1, + "body": { + "#": 2734 + }, + "isInternal": false + }, + { + "x": 625, + "y": 245, + "index": 2, + "body": { + "#": 2734 + }, + "isInternal": false + }, + { + "x": 600, + "y": 245, + "index": 3, + "body": { + "#": 2734 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2748 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2750 + }, + "max": { + "#": 2751 + } + }, + { + "x": 600, + "y": 220 + }, + { + "x": 625, + "y": 245 + }, + { + "x": 612.5, + "y": 232.5 + }, + [ + { + "#": 2754 + }, + { + "#": 2755 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 126, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2757 + }, + "angle": 0, + "vertices": { + "#": 2758 + }, + "position": { + "#": 2763 + }, + "force": { + "#": 2764 + }, + "torque": 0, + "positionImpulse": { + "#": 2765 + }, + "constraintImpulse": { + "#": 2766 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2767 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2768 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2769 + }, + "bounds": { + "#": 2771 + }, + "positionPrev": { + "#": 2774 + }, + "anglePrev": 0, + "axes": { + "#": 2775 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2756 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2756 + } + ], + [ + { + "#": 2759 + }, + { + "#": 2760 + }, + { + "#": 2761 + }, + { + "#": 2762 + } + ], + { + "x": 625, + "y": 220, + "index": 0, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 650, + "y": 220, + "index": 1, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 650, + "y": 245, + "index": 2, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 625, + "y": 245, + "index": 3, + "body": { + "#": 2756 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2770 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2772 + }, + "max": { + "#": 2773 + } + }, + { + "x": 625, + "y": 220 + }, + { + "x": 650, + "y": 245 + }, + { + "x": 637.5, + "y": 232.5 + }, + [ + { + "#": 2776 + }, + { + "#": 2777 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 127, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2779 + }, + "angle": 0, + "vertices": { + "#": 2780 + }, + "position": { + "#": 2785 + }, + "force": { + "#": 2786 + }, + "torque": 0, + "positionImpulse": { + "#": 2787 + }, + "constraintImpulse": { + "#": 2788 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2789 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2790 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2791 + }, + "bounds": { + "#": 2793 + }, + "positionPrev": { + "#": 2796 + }, + "anglePrev": 0, + "axes": { + "#": 2797 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2778 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2778 + } + ], + [ + { + "#": 2781 + }, + { + "#": 2782 + }, + { + "#": 2783 + }, + { + "#": 2784 + } + ], + { + "x": 650, + "y": 220, + "index": 0, + "body": { + "#": 2778 + }, + "isInternal": false + }, + { + "x": 675, + "y": 220, + "index": 1, + "body": { + "#": 2778 + }, + "isInternal": false + }, + { + "x": 675, + "y": 245, + "index": 2, + "body": { + "#": 2778 + }, + "isInternal": false + }, + { + "x": 650, + "y": 245, + "index": 3, + "body": { + "#": 2778 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2792 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2794 + }, + "max": { + "#": 2795 + } + }, + { + "x": 650, + "y": 220 + }, + { + "x": 675, + "y": 245 + }, + { + "x": 662.5, + "y": 232.5 + }, + [ + { + "#": 2798 + }, + { + "#": 2799 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 128, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2801 + }, + "angle": 0, + "vertices": { + "#": 2802 + }, + "position": { + "#": 2807 + }, + "force": { + "#": 2808 + }, + "torque": 0, + "positionImpulse": { + "#": 2809 + }, + "constraintImpulse": { + "#": 2810 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2811 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2812 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2813 + }, + "bounds": { + "#": 2815 + }, + "positionPrev": { + "#": 2818 + }, + "anglePrev": 0, + "axes": { + "#": 2819 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2800 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2800 + } + ], + [ + { + "#": 2803 + }, + { + "#": 2804 + }, + { + "#": 2805 + }, + { + "#": 2806 + } + ], + { + "x": 675, + "y": 220, + "index": 0, + "body": { + "#": 2800 + }, + "isInternal": false + }, + { + "x": 700, + "y": 220, + "index": 1, + "body": { + "#": 2800 + }, + "isInternal": false + }, + { + "x": 700, + "y": 245, + "index": 2, + "body": { + "#": 2800 + }, + "isInternal": false + }, + { + "x": 675, + "y": 245, + "index": 3, + "body": { + "#": 2800 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2814 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2816 + }, + "max": { + "#": 2817 + } + }, + { + "x": 675, + "y": 220 + }, + { + "x": 700, + "y": 245 + }, + { + "x": 687.5, + "y": 232.5 + }, + [ + { + "#": 2820 + }, + { + "#": 2821 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 129, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2823 + }, + "angle": 0, + "vertices": { + "#": 2824 + }, + "position": { + "#": 2829 + }, + "force": { + "#": 2830 + }, + "torque": 0, + "positionImpulse": { + "#": 2831 + }, + "constraintImpulse": { + "#": 2832 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2833 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2834 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2835 + }, + "bounds": { + "#": 2837 + }, + "positionPrev": { + "#": 2840 + }, + "anglePrev": 0, + "axes": { + "#": 2841 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2822 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2822 + } + ], + [ + { + "#": 2825 + }, + { + "#": 2826 + }, + { + "#": 2827 + }, + { + "#": 2828 + } + ], + { + "x": 700, + "y": 220, + "index": 0, + "body": { + "#": 2822 + }, + "isInternal": false + }, + { + "x": 725, + "y": 220, + "index": 1, + "body": { + "#": 2822 + }, + "isInternal": false + }, + { + "x": 725, + "y": 245, + "index": 2, + "body": { + "#": 2822 + }, + "isInternal": false + }, + { + "x": 700, + "y": 245, + "index": 3, + "body": { + "#": 2822 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 232.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2836 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2838 + }, + "max": { + "#": 2839 + } + }, + { + "x": 700, + "y": 220 + }, + { + "x": 725, + "y": 245 + }, + { + "x": 712.5, + "y": 232.5 + }, + [ + { + "#": 2842 + }, + { + "#": 2843 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 130, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2845 + }, + "angle": 0, + "vertices": { + "#": 2846 + }, + "position": { + "#": 2851 + }, + "force": { + "#": 2852 + }, + "torque": 0, + "positionImpulse": { + "#": 2853 + }, + "constraintImpulse": { + "#": 2854 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2855 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2856 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2857 + }, + "bounds": { + "#": 2859 + }, + "positionPrev": { + "#": 2862 + }, + "anglePrev": 0, + "axes": { + "#": 2863 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2844 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2844 + } + ], + [ + { + "#": 2847 + }, + { + "#": 2848 + }, + { + "#": 2849 + }, + { + "#": 2850 + } + ], + { + "x": 100, + "y": 245, + "index": 0, + "body": { + "#": 2844 + }, + "isInternal": false + }, + { + "x": 125, + "y": 245, + "index": 1, + "body": { + "#": 2844 + }, + "isInternal": false + }, + { + "x": 125, + "y": 270, + "index": 2, + "body": { + "#": 2844 + }, + "isInternal": false + }, + { + "x": 100, + "y": 270, + "index": 3, + "body": { + "#": 2844 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2858 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2860 + }, + "max": { + "#": 2861 + } + }, + { + "x": 100, + "y": 245 + }, + { + "x": 125, + "y": 270 + }, + { + "x": 112.5, + "y": 257.5 + }, + [ + { + "#": 2864 + }, + { + "#": 2865 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 131, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2867 + }, + "angle": 0, + "vertices": { + "#": 2868 + }, + "position": { + "#": 2873 + }, + "force": { + "#": 2874 + }, + "torque": 0, + "positionImpulse": { + "#": 2875 + }, + "constraintImpulse": { + "#": 2876 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2877 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2878 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2879 + }, + "bounds": { + "#": 2881 + }, + "positionPrev": { + "#": 2884 + }, + "anglePrev": 0, + "axes": { + "#": 2885 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2866 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2866 + } + ], + [ + { + "#": 2869 + }, + { + "#": 2870 + }, + { + "#": 2871 + }, + { + "#": 2872 + } + ], + { + "x": 125, + "y": 245, + "index": 0, + "body": { + "#": 2866 + }, + "isInternal": false + }, + { + "x": 150, + "y": 245, + "index": 1, + "body": { + "#": 2866 + }, + "isInternal": false + }, + { + "x": 150, + "y": 270, + "index": 2, + "body": { + "#": 2866 + }, + "isInternal": false + }, + { + "x": 125, + "y": 270, + "index": 3, + "body": { + "#": 2866 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2880 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2882 + }, + "max": { + "#": 2883 + } + }, + { + "x": 125, + "y": 245 + }, + { + "x": 150, + "y": 270 + }, + { + "x": 137.5, + "y": 257.5 + }, + [ + { + "#": 2886 + }, + { + "#": 2887 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 132, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2889 + }, + "angle": 0, + "vertices": { + "#": 2890 + }, + "position": { + "#": 2895 + }, + "force": { + "#": 2896 + }, + "torque": 0, + "positionImpulse": { + "#": 2897 + }, + "constraintImpulse": { + "#": 2898 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2899 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2900 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2901 + }, + "bounds": { + "#": 2903 + }, + "positionPrev": { + "#": 2906 + }, + "anglePrev": 0, + "axes": { + "#": 2907 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2888 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2888 + } + ], + [ + { + "#": 2891 + }, + { + "#": 2892 + }, + { + "#": 2893 + }, + { + "#": 2894 + } + ], + { + "x": 150, + "y": 245, + "index": 0, + "body": { + "#": 2888 + }, + "isInternal": false + }, + { + "x": 175, + "y": 245, + "index": 1, + "body": { + "#": 2888 + }, + "isInternal": false + }, + { + "x": 175, + "y": 270, + "index": 2, + "body": { + "#": 2888 + }, + "isInternal": false + }, + { + "x": 150, + "y": 270, + "index": 3, + "body": { + "#": 2888 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2902 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2904 + }, + "max": { + "#": 2905 + } + }, + { + "x": 150, + "y": 245 + }, + { + "x": 175, + "y": 270 + }, + { + "x": 162.5, + "y": 257.5 + }, + [ + { + "#": 2908 + }, + { + "#": 2909 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 133, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2911 + }, + "angle": 0, + "vertices": { + "#": 2912 + }, + "position": { + "#": 2917 + }, + "force": { + "#": 2918 + }, + "torque": 0, + "positionImpulse": { + "#": 2919 + }, + "constraintImpulse": { + "#": 2920 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2921 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2922 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2923 + }, + "bounds": { + "#": 2925 + }, + "positionPrev": { + "#": 2928 + }, + "anglePrev": 0, + "axes": { + "#": 2929 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2910 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2910 + } + ], + [ + { + "#": 2913 + }, + { + "#": 2914 + }, + { + "#": 2915 + }, + { + "#": 2916 + } + ], + { + "x": 175, + "y": 245, + "index": 0, + "body": { + "#": 2910 + }, + "isInternal": false + }, + { + "x": 200, + "y": 245, + "index": 1, + "body": { + "#": 2910 + }, + "isInternal": false + }, + { + "x": 200, + "y": 270, + "index": 2, + "body": { + "#": 2910 + }, + "isInternal": false + }, + { + "x": 175, + "y": 270, + "index": 3, + "body": { + "#": 2910 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2924 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2926 + }, + "max": { + "#": 2927 + } + }, + { + "x": 175, + "y": 245 + }, + { + "x": 200, + "y": 270 + }, + { + "x": 187.5, + "y": 257.5 + }, + [ + { + "#": 2930 + }, + { + "#": 2931 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 134, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2933 + }, + "angle": 0, + "vertices": { + "#": 2934 + }, + "position": { + "#": 2939 + }, + "force": { + "#": 2940 + }, + "torque": 0, + "positionImpulse": { + "#": 2941 + }, + "constraintImpulse": { + "#": 2942 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2943 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2944 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2945 + }, + "bounds": { + "#": 2947 + }, + "positionPrev": { + "#": 2950 + }, + "anglePrev": 0, + "axes": { + "#": 2951 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2932 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2932 + } + ], + [ + { + "#": 2935 + }, + { + "#": 2936 + }, + { + "#": 2937 + }, + { + "#": 2938 + } + ], + { + "x": 200, + "y": 245, + "index": 0, + "body": { + "#": 2932 + }, + "isInternal": false + }, + { + "x": 225, + "y": 245, + "index": 1, + "body": { + "#": 2932 + }, + "isInternal": false + }, + { + "x": 225, + "y": 270, + "index": 2, + "body": { + "#": 2932 + }, + "isInternal": false + }, + { + "x": 200, + "y": 270, + "index": 3, + "body": { + "#": 2932 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2946 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2948 + }, + "max": { + "#": 2949 + } + }, + { + "x": 200, + "y": 245 + }, + { + "x": 225, + "y": 270 + }, + { + "x": 212.5, + "y": 257.5 + }, + [ + { + "#": 2952 + }, + { + "#": 2953 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 135, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2955 + }, + "angle": 0, + "vertices": { + "#": 2956 + }, + "position": { + "#": 2961 + }, + "force": { + "#": 2962 + }, + "torque": 0, + "positionImpulse": { + "#": 2963 + }, + "constraintImpulse": { + "#": 2964 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2965 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2966 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2967 + }, + "bounds": { + "#": 2969 + }, + "positionPrev": { + "#": 2972 + }, + "anglePrev": 0, + "axes": { + "#": 2973 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2954 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2954 + } + ], + [ + { + "#": 2957 + }, + { + "#": 2958 + }, + { + "#": 2959 + }, + { + "#": 2960 + } + ], + { + "x": 225, + "y": 245, + "index": 0, + "body": { + "#": 2954 + }, + "isInternal": false + }, + { + "x": 250, + "y": 245, + "index": 1, + "body": { + "#": 2954 + }, + "isInternal": false + }, + { + "x": 250, + "y": 270, + "index": 2, + "body": { + "#": 2954 + }, + "isInternal": false + }, + { + "x": 225, + "y": 270, + "index": 3, + "body": { + "#": 2954 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2968 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2970 + }, + "max": { + "#": 2971 + } + }, + { + "x": 225, + "y": 245 + }, + { + "x": 250, + "y": 270 + }, + { + "x": 237.5, + "y": 257.5 + }, + [ + { + "#": 2974 + }, + { + "#": 2975 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 136, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2977 + }, + "angle": 0, + "vertices": { + "#": 2978 + }, + "position": { + "#": 2983 + }, + "force": { + "#": 2984 + }, + "torque": 0, + "positionImpulse": { + "#": 2985 + }, + "constraintImpulse": { + "#": 2986 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2987 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2988 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2989 + }, + "bounds": { + "#": 2991 + }, + "positionPrev": { + "#": 2994 + }, + "anglePrev": 0, + "axes": { + "#": 2995 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2976 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2976 + } + ], + [ + { + "#": 2979 + }, + { + "#": 2980 + }, + { + "#": 2981 + }, + { + "#": 2982 + } + ], + { + "x": 250, + "y": 245, + "index": 0, + "body": { + "#": 2976 + }, + "isInternal": false + }, + { + "x": 275, + "y": 245, + "index": 1, + "body": { + "#": 2976 + }, + "isInternal": false + }, + { + "x": 275, + "y": 270, + "index": 2, + "body": { + "#": 2976 + }, + "isInternal": false + }, + { + "x": 250, + "y": 270, + "index": 3, + "body": { + "#": 2976 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2990 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2992 + }, + "max": { + "#": 2993 + } + }, + { + "x": 250, + "y": 245 + }, + { + "x": 275, + "y": 270 + }, + { + "x": 262.5, + "y": 257.5 + }, + [ + { + "#": 2996 + }, + { + "#": 2997 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 137, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2999 + }, + "angle": 0, + "vertices": { + "#": 3000 + }, + "position": { + "#": 3005 + }, + "force": { + "#": 3006 + }, + "torque": 0, + "positionImpulse": { + "#": 3007 + }, + "constraintImpulse": { + "#": 3008 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3009 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3010 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3011 + }, + "bounds": { + "#": 3013 + }, + "positionPrev": { + "#": 3016 + }, + "anglePrev": 0, + "axes": { + "#": 3017 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2998 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2998 + } + ], + [ + { + "#": 3001 + }, + { + "#": 3002 + }, + { + "#": 3003 + }, + { + "#": 3004 + } + ], + { + "x": 275, + "y": 245, + "index": 0, + "body": { + "#": 2998 + }, + "isInternal": false + }, + { + "x": 300, + "y": 245, + "index": 1, + "body": { + "#": 2998 + }, + "isInternal": false + }, + { + "x": 300, + "y": 270, + "index": 2, + "body": { + "#": 2998 + }, + "isInternal": false + }, + { + "x": 275, + "y": 270, + "index": 3, + "body": { + "#": 2998 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3012 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3014 + }, + "max": { + "#": 3015 + } + }, + { + "x": 275, + "y": 245 + }, + { + "x": 300, + "y": 270 + }, + { + "x": 287.5, + "y": 257.5 + }, + [ + { + "#": 3018 + }, + { + "#": 3019 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 138, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3021 + }, + "angle": 0, + "vertices": { + "#": 3022 + }, + "position": { + "#": 3027 + }, + "force": { + "#": 3028 + }, + "torque": 0, + "positionImpulse": { + "#": 3029 + }, + "constraintImpulse": { + "#": 3030 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3031 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3032 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3033 + }, + "bounds": { + "#": 3035 + }, + "positionPrev": { + "#": 3038 + }, + "anglePrev": 0, + "axes": { + "#": 3039 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3020 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3020 + } + ], + [ + { + "#": 3023 + }, + { + "#": 3024 + }, + { + "#": 3025 + }, + { + "#": 3026 + } + ], + { + "x": 300, + "y": 245, + "index": 0, + "body": { + "#": 3020 + }, + "isInternal": false + }, + { + "x": 325, + "y": 245, + "index": 1, + "body": { + "#": 3020 + }, + "isInternal": false + }, + { + "x": 325, + "y": 270, + "index": 2, + "body": { + "#": 3020 + }, + "isInternal": false + }, + { + "x": 300, + "y": 270, + "index": 3, + "body": { + "#": 3020 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3034 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3036 + }, + "max": { + "#": 3037 + } + }, + { + "x": 300, + "y": 245 + }, + { + "x": 325, + "y": 270 + }, + { + "x": 312.5, + "y": 257.5 + }, + [ + { + "#": 3040 + }, + { + "#": 3041 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 139, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3043 + }, + "angle": 0, + "vertices": { + "#": 3044 + }, + "position": { + "#": 3049 + }, + "force": { + "#": 3050 + }, + "torque": 0, + "positionImpulse": { + "#": 3051 + }, + "constraintImpulse": { + "#": 3052 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3053 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3054 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3055 + }, + "bounds": { + "#": 3057 + }, + "positionPrev": { + "#": 3060 + }, + "anglePrev": 0, + "axes": { + "#": 3061 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3042 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3042 + } + ], + [ + { + "#": 3045 + }, + { + "#": 3046 + }, + { + "#": 3047 + }, + { + "#": 3048 + } + ], + { + "x": 325, + "y": 245, + "index": 0, + "body": { + "#": 3042 + }, + "isInternal": false + }, + { + "x": 350, + "y": 245, + "index": 1, + "body": { + "#": 3042 + }, + "isInternal": false + }, + { + "x": 350, + "y": 270, + "index": 2, + "body": { + "#": 3042 + }, + "isInternal": false + }, + { + "x": 325, + "y": 270, + "index": 3, + "body": { + "#": 3042 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3056 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3058 + }, + "max": { + "#": 3059 + } + }, + { + "x": 325, + "y": 245 + }, + { + "x": 350, + "y": 270 + }, + { + "x": 337.5, + "y": 257.5 + }, + [ + { + "#": 3062 + }, + { + "#": 3063 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 140, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3065 + }, + "angle": 0, + "vertices": { + "#": 3066 + }, + "position": { + "#": 3071 + }, + "force": { + "#": 3072 + }, + "torque": 0, + "positionImpulse": { + "#": 3073 + }, + "constraintImpulse": { + "#": 3074 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3075 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3076 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3077 + }, + "bounds": { + "#": 3079 + }, + "positionPrev": { + "#": 3082 + }, + "anglePrev": 0, + "axes": { + "#": 3083 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3064 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3064 + } + ], + [ + { + "#": 3067 + }, + { + "#": 3068 + }, + { + "#": 3069 + }, + { + "#": 3070 + } + ], + { + "x": 350, + "y": 245, + "index": 0, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 375, + "y": 245, + "index": 1, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 375, + "y": 270, + "index": 2, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 350, + "y": 270, + "index": 3, + "body": { + "#": 3064 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3078 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3080 + }, + "max": { + "#": 3081 + } + }, + { + "x": 350, + "y": 245 + }, + { + "x": 375, + "y": 270 + }, + { + "x": 362.5, + "y": 257.5 + }, + [ + { + "#": 3084 + }, + { + "#": 3085 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 141, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3087 + }, + "angle": 0, + "vertices": { + "#": 3088 + }, + "position": { + "#": 3093 + }, + "force": { + "#": 3094 + }, + "torque": 0, + "positionImpulse": { + "#": 3095 + }, + "constraintImpulse": { + "#": 3096 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3097 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3098 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3099 + }, + "bounds": { + "#": 3101 + }, + "positionPrev": { + "#": 3104 + }, + "anglePrev": 0, + "axes": { + "#": 3105 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3086 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3086 + } + ], + [ + { + "#": 3089 + }, + { + "#": 3090 + }, + { + "#": 3091 + }, + { + "#": 3092 + } + ], + { + "x": 375, + "y": 245, + "index": 0, + "body": { + "#": 3086 + }, + "isInternal": false + }, + { + "x": 400, + "y": 245, + "index": 1, + "body": { + "#": 3086 + }, + "isInternal": false + }, + { + "x": 400, + "y": 270, + "index": 2, + "body": { + "#": 3086 + }, + "isInternal": false + }, + { + "x": 375, + "y": 270, + "index": 3, + "body": { + "#": 3086 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3100 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3102 + }, + "max": { + "#": 3103 + } + }, + { + "x": 375, + "y": 245 + }, + { + "x": 400, + "y": 270 + }, + { + "x": 387.5, + "y": 257.5 + }, + [ + { + "#": 3106 + }, + { + "#": 3107 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 142, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3109 + }, + "angle": 0, + "vertices": { + "#": 3110 + }, + "position": { + "#": 3115 + }, + "force": { + "#": 3116 + }, + "torque": 0, + "positionImpulse": { + "#": 3117 + }, + "constraintImpulse": { + "#": 3118 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3119 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3120 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3121 + }, + "bounds": { + "#": 3123 + }, + "positionPrev": { + "#": 3126 + }, + "anglePrev": 0, + "axes": { + "#": 3127 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3108 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3108 + } + ], + [ + { + "#": 3111 + }, + { + "#": 3112 + }, + { + "#": 3113 + }, + { + "#": 3114 + } + ], + { + "x": 400, + "y": 245, + "index": 0, + "body": { + "#": 3108 + }, + "isInternal": false + }, + { + "x": 425, + "y": 245, + "index": 1, + "body": { + "#": 3108 + }, + "isInternal": false + }, + { + "x": 425, + "y": 270, + "index": 2, + "body": { + "#": 3108 + }, + "isInternal": false + }, + { + "x": 400, + "y": 270, + "index": 3, + "body": { + "#": 3108 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3122 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3124 + }, + "max": { + "#": 3125 + } + }, + { + "x": 400, + "y": 245 + }, + { + "x": 425, + "y": 270 + }, + { + "x": 412.5, + "y": 257.5 + }, + [ + { + "#": 3128 + }, + { + "#": 3129 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 143, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3131 + }, + "angle": 0, + "vertices": { + "#": 3132 + }, + "position": { + "#": 3137 + }, + "force": { + "#": 3138 + }, + "torque": 0, + "positionImpulse": { + "#": 3139 + }, + "constraintImpulse": { + "#": 3140 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3141 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3142 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3143 + }, + "bounds": { + "#": 3145 + }, + "positionPrev": { + "#": 3148 + }, + "anglePrev": 0, + "axes": { + "#": 3149 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3130 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3130 + } + ], + [ + { + "#": 3133 + }, + { + "#": 3134 + }, + { + "#": 3135 + }, + { + "#": 3136 + } + ], + { + "x": 425, + "y": 245, + "index": 0, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 450, + "y": 245, + "index": 1, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 450, + "y": 270, + "index": 2, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 425, + "y": 270, + "index": 3, + "body": { + "#": 3130 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3144 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3146 + }, + "max": { + "#": 3147 + } + }, + { + "x": 425, + "y": 245 + }, + { + "x": 450, + "y": 270 + }, + { + "x": 437.5, + "y": 257.5 + }, + [ + { + "#": 3150 + }, + { + "#": 3151 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 144, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3153 + }, + "angle": 0, + "vertices": { + "#": 3154 + }, + "position": { + "#": 3159 + }, + "force": { + "#": 3160 + }, + "torque": 0, + "positionImpulse": { + "#": 3161 + }, + "constraintImpulse": { + "#": 3162 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3163 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3164 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3165 + }, + "bounds": { + "#": 3167 + }, + "positionPrev": { + "#": 3170 + }, + "anglePrev": 0, + "axes": { + "#": 3171 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3152 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3152 + } + ], + [ + { + "#": 3155 + }, + { + "#": 3156 + }, + { + "#": 3157 + }, + { + "#": 3158 + } + ], + { + "x": 450, + "y": 245, + "index": 0, + "body": { + "#": 3152 + }, + "isInternal": false + }, + { + "x": 475, + "y": 245, + "index": 1, + "body": { + "#": 3152 + }, + "isInternal": false + }, + { + "x": 475, + "y": 270, + "index": 2, + "body": { + "#": 3152 + }, + "isInternal": false + }, + { + "x": 450, + "y": 270, + "index": 3, + "body": { + "#": 3152 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3166 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3168 + }, + "max": { + "#": 3169 + } + }, + { + "x": 450, + "y": 245 + }, + { + "x": 475, + "y": 270 + }, + { + "x": 462.5, + "y": 257.5 + }, + [ + { + "#": 3172 + }, + { + "#": 3173 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 145, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3175 + }, + "angle": 0, + "vertices": { + "#": 3176 + }, + "position": { + "#": 3181 + }, + "force": { + "#": 3182 + }, + "torque": 0, + "positionImpulse": { + "#": 3183 + }, + "constraintImpulse": { + "#": 3184 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3185 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3186 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3187 + }, + "bounds": { + "#": 3189 + }, + "positionPrev": { + "#": 3192 + }, + "anglePrev": 0, + "axes": { + "#": 3193 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3174 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3174 + } + ], + [ + { + "#": 3177 + }, + { + "#": 3178 + }, + { + "#": 3179 + }, + { + "#": 3180 + } + ], + { + "x": 475, + "y": 245, + "index": 0, + "body": { + "#": 3174 + }, + "isInternal": false + }, + { + "x": 500, + "y": 245, + "index": 1, + "body": { + "#": 3174 + }, + "isInternal": false + }, + { + "x": 500, + "y": 270, + "index": 2, + "body": { + "#": 3174 + }, + "isInternal": false + }, + { + "x": 475, + "y": 270, + "index": 3, + "body": { + "#": 3174 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3188 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3190 + }, + "max": { + "#": 3191 + } + }, + { + "x": 475, + "y": 245 + }, + { + "x": 500, + "y": 270 + }, + { + "x": 487.5, + "y": 257.5 + }, + [ + { + "#": 3194 + }, + { + "#": 3195 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 146, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3197 + }, + "angle": 0, + "vertices": { + "#": 3198 + }, + "position": { + "#": 3203 + }, + "force": { + "#": 3204 + }, + "torque": 0, + "positionImpulse": { + "#": 3205 + }, + "constraintImpulse": { + "#": 3206 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3207 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3208 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3209 + }, + "bounds": { + "#": 3211 + }, + "positionPrev": { + "#": 3214 + }, + "anglePrev": 0, + "axes": { + "#": 3215 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3196 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3196 + } + ], + [ + { + "#": 3199 + }, + { + "#": 3200 + }, + { + "#": 3201 + }, + { + "#": 3202 + } + ], + { + "x": 500, + "y": 245, + "index": 0, + "body": { + "#": 3196 + }, + "isInternal": false + }, + { + "x": 525, + "y": 245, + "index": 1, + "body": { + "#": 3196 + }, + "isInternal": false + }, + { + "x": 525, + "y": 270, + "index": 2, + "body": { + "#": 3196 + }, + "isInternal": false + }, + { + "x": 500, + "y": 270, + "index": 3, + "body": { + "#": 3196 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3210 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3212 + }, + "max": { + "#": 3213 + } + }, + { + "x": 500, + "y": 245 + }, + { + "x": 525, + "y": 270 + }, + { + "x": 512.5, + "y": 257.5 + }, + [ + { + "#": 3216 + }, + { + "#": 3217 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 147, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3219 + }, + "angle": 0, + "vertices": { + "#": 3220 + }, + "position": { + "#": 3225 + }, + "force": { + "#": 3226 + }, + "torque": 0, + "positionImpulse": { + "#": 3227 + }, + "constraintImpulse": { + "#": 3228 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3229 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3230 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3231 + }, + "bounds": { + "#": 3233 + }, + "positionPrev": { + "#": 3236 + }, + "anglePrev": 0, + "axes": { + "#": 3237 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3218 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3218 + } + ], + [ + { + "#": 3221 + }, + { + "#": 3222 + }, + { + "#": 3223 + }, + { + "#": 3224 + } + ], + { + "x": 525, + "y": 245, + "index": 0, + "body": { + "#": 3218 + }, + "isInternal": false + }, + { + "x": 550, + "y": 245, + "index": 1, + "body": { + "#": 3218 + }, + "isInternal": false + }, + { + "x": 550, + "y": 270, + "index": 2, + "body": { + "#": 3218 + }, + "isInternal": false + }, + { + "x": 525, + "y": 270, + "index": 3, + "body": { + "#": 3218 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3232 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3234 + }, + "max": { + "#": 3235 + } + }, + { + "x": 525, + "y": 245 + }, + { + "x": 550, + "y": 270 + }, + { + "x": 537.5, + "y": 257.5 + }, + [ + { + "#": 3238 + }, + { + "#": 3239 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 148, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3241 + }, + "angle": 0, + "vertices": { + "#": 3242 + }, + "position": { + "#": 3247 + }, + "force": { + "#": 3248 + }, + "torque": 0, + "positionImpulse": { + "#": 3249 + }, + "constraintImpulse": { + "#": 3250 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3251 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3252 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3253 + }, + "bounds": { + "#": 3255 + }, + "positionPrev": { + "#": 3258 + }, + "anglePrev": 0, + "axes": { + "#": 3259 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3240 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3240 + } + ], + [ + { + "#": 3243 + }, + { + "#": 3244 + }, + { + "#": 3245 + }, + { + "#": 3246 + } + ], + { + "x": 550, + "y": 245, + "index": 0, + "body": { + "#": 3240 + }, + "isInternal": false + }, + { + "x": 575, + "y": 245, + "index": 1, + "body": { + "#": 3240 + }, + "isInternal": false + }, + { + "x": 575, + "y": 270, + "index": 2, + "body": { + "#": 3240 + }, + "isInternal": false + }, + { + "x": 550, + "y": 270, + "index": 3, + "body": { + "#": 3240 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3254 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3256 + }, + "max": { + "#": 3257 + } + }, + { + "x": 550, + "y": 245 + }, + { + "x": 575, + "y": 270 + }, + { + "x": 562.5, + "y": 257.5 + }, + [ + { + "#": 3260 + }, + { + "#": 3261 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 149, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3263 + }, + "angle": 0, + "vertices": { + "#": 3264 + }, + "position": { + "#": 3269 + }, + "force": { + "#": 3270 + }, + "torque": 0, + "positionImpulse": { + "#": 3271 + }, + "constraintImpulse": { + "#": 3272 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3273 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3274 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3275 + }, + "bounds": { + "#": 3277 + }, + "positionPrev": { + "#": 3280 + }, + "anglePrev": 0, + "axes": { + "#": 3281 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3262 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3262 + } + ], + [ + { + "#": 3265 + }, + { + "#": 3266 + }, + { + "#": 3267 + }, + { + "#": 3268 + } + ], + { + "x": 575, + "y": 245, + "index": 0, + "body": { + "#": 3262 + }, + "isInternal": false + }, + { + "x": 600, + "y": 245, + "index": 1, + "body": { + "#": 3262 + }, + "isInternal": false + }, + { + "x": 600, + "y": 270, + "index": 2, + "body": { + "#": 3262 + }, + "isInternal": false + }, + { + "x": 575, + "y": 270, + "index": 3, + "body": { + "#": 3262 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3276 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3278 + }, + "max": { + "#": 3279 + } + }, + { + "x": 575, + "y": 245 + }, + { + "x": 600, + "y": 270 + }, + { + "x": 587.5, + "y": 257.5 + }, + [ + { + "#": 3282 + }, + { + "#": 3283 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 150, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3285 + }, + "angle": 0, + "vertices": { + "#": 3286 + }, + "position": { + "#": 3291 + }, + "force": { + "#": 3292 + }, + "torque": 0, + "positionImpulse": { + "#": 3293 + }, + "constraintImpulse": { + "#": 3294 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3295 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3296 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3297 + }, + "bounds": { + "#": 3299 + }, + "positionPrev": { + "#": 3302 + }, + "anglePrev": 0, + "axes": { + "#": 3303 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3284 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3284 + } + ], + [ + { + "#": 3287 + }, + { + "#": 3288 + }, + { + "#": 3289 + }, + { + "#": 3290 + } + ], + { + "x": 600, + "y": 245, + "index": 0, + "body": { + "#": 3284 + }, + "isInternal": false + }, + { + "x": 625, + "y": 245, + "index": 1, + "body": { + "#": 3284 + }, + "isInternal": false + }, + { + "x": 625, + "y": 270, + "index": 2, + "body": { + "#": 3284 + }, + "isInternal": false + }, + { + "x": 600, + "y": 270, + "index": 3, + "body": { + "#": 3284 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3298 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3300 + }, + "max": { + "#": 3301 + } + }, + { + "x": 600, + "y": 245 + }, + { + "x": 625, + "y": 270 + }, + { + "x": 612.5, + "y": 257.5 + }, + [ + { + "#": 3304 + }, + { + "#": 3305 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 151, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3307 + }, + "angle": 0, + "vertices": { + "#": 3308 + }, + "position": { + "#": 3313 + }, + "force": { + "#": 3314 + }, + "torque": 0, + "positionImpulse": { + "#": 3315 + }, + "constraintImpulse": { + "#": 3316 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3317 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3318 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3319 + }, + "bounds": { + "#": 3321 + }, + "positionPrev": { + "#": 3324 + }, + "anglePrev": 0, + "axes": { + "#": 3325 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3306 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3306 + } + ], + [ + { + "#": 3309 + }, + { + "#": 3310 + }, + { + "#": 3311 + }, + { + "#": 3312 + } + ], + { + "x": 625, + "y": 245, + "index": 0, + "body": { + "#": 3306 + }, + "isInternal": false + }, + { + "x": 650, + "y": 245, + "index": 1, + "body": { + "#": 3306 + }, + "isInternal": false + }, + { + "x": 650, + "y": 270, + "index": 2, + "body": { + "#": 3306 + }, + "isInternal": false + }, + { + "x": 625, + "y": 270, + "index": 3, + "body": { + "#": 3306 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3320 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3322 + }, + "max": { + "#": 3323 + } + }, + { + "x": 625, + "y": 245 + }, + { + "x": 650, + "y": 270 + }, + { + "x": 637.5, + "y": 257.5 + }, + [ + { + "#": 3326 + }, + { + "#": 3327 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 152, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3329 + }, + "angle": 0, + "vertices": { + "#": 3330 + }, + "position": { + "#": 3335 + }, + "force": { + "#": 3336 + }, + "torque": 0, + "positionImpulse": { + "#": 3337 + }, + "constraintImpulse": { + "#": 3338 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3339 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3340 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3341 + }, + "bounds": { + "#": 3343 + }, + "positionPrev": { + "#": 3346 + }, + "anglePrev": 0, + "axes": { + "#": 3347 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3328 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3328 + } + ], + [ + { + "#": 3331 + }, + { + "#": 3332 + }, + { + "#": 3333 + }, + { + "#": 3334 + } + ], + { + "x": 650, + "y": 245, + "index": 0, + "body": { + "#": 3328 + }, + "isInternal": false + }, + { + "x": 675, + "y": 245, + "index": 1, + "body": { + "#": 3328 + }, + "isInternal": false + }, + { + "x": 675, + "y": 270, + "index": 2, + "body": { + "#": 3328 + }, + "isInternal": false + }, + { + "x": 650, + "y": 270, + "index": 3, + "body": { + "#": 3328 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3342 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3344 + }, + "max": { + "#": 3345 + } + }, + { + "x": 650, + "y": 245 + }, + { + "x": 675, + "y": 270 + }, + { + "x": 662.5, + "y": 257.5 + }, + [ + { + "#": 3348 + }, + { + "#": 3349 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 153, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3351 + }, + "angle": 0, + "vertices": { + "#": 3352 + }, + "position": { + "#": 3357 + }, + "force": { + "#": 3358 + }, + "torque": 0, + "positionImpulse": { + "#": 3359 + }, + "constraintImpulse": { + "#": 3360 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3361 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3362 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3363 + }, + "bounds": { + "#": 3365 + }, + "positionPrev": { + "#": 3368 + }, + "anglePrev": 0, + "axes": { + "#": 3369 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3350 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3350 + } + ], + [ + { + "#": 3353 + }, + { + "#": 3354 + }, + { + "#": 3355 + }, + { + "#": 3356 + } + ], + { + "x": 675, + "y": 245, + "index": 0, + "body": { + "#": 3350 + }, + "isInternal": false + }, + { + "x": 700, + "y": 245, + "index": 1, + "body": { + "#": 3350 + }, + "isInternal": false + }, + { + "x": 700, + "y": 270, + "index": 2, + "body": { + "#": 3350 + }, + "isInternal": false + }, + { + "x": 675, + "y": 270, + "index": 3, + "body": { + "#": 3350 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3364 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3366 + }, + "max": { + "#": 3367 + } + }, + { + "x": 675, + "y": 245 + }, + { + "x": 700, + "y": 270 + }, + { + "x": 687.5, + "y": 257.5 + }, + [ + { + "#": 3370 + }, + { + "#": 3371 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 154, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3373 + }, + "angle": 0, + "vertices": { + "#": 3374 + }, + "position": { + "#": 3379 + }, + "force": { + "#": 3380 + }, + "torque": 0, + "positionImpulse": { + "#": 3381 + }, + "constraintImpulse": { + "#": 3382 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3383 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3384 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3385 + }, + "bounds": { + "#": 3387 + }, + "positionPrev": { + "#": 3390 + }, + "anglePrev": 0, + "axes": { + "#": 3391 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3372 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3372 + } + ], + [ + { + "#": 3375 + }, + { + "#": 3376 + }, + { + "#": 3377 + }, + { + "#": 3378 + } + ], + { + "x": 700, + "y": 245, + "index": 0, + "body": { + "#": 3372 + }, + "isInternal": false + }, + { + "x": 725, + "y": 245, + "index": 1, + "body": { + "#": 3372 + }, + "isInternal": false + }, + { + "x": 725, + "y": 270, + "index": 2, + "body": { + "#": 3372 + }, + "isInternal": false + }, + { + "x": 700, + "y": 270, + "index": 3, + "body": { + "#": 3372 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 257.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3386 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3388 + }, + "max": { + "#": 3389 + } + }, + { + "x": 700, + "y": 245 + }, + { + "x": 725, + "y": 270 + }, + { + "x": 712.5, + "y": 257.5 + }, + [ + { + "#": 3392 + }, + { + "#": 3393 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 155, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3395 + }, + "angle": 0, + "vertices": { + "#": 3396 + }, + "position": { + "#": 3401 + }, + "force": { + "#": 3402 + }, + "torque": 0, + "positionImpulse": { + "#": 3403 + }, + "constraintImpulse": { + "#": 3404 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3405 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3406 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3407 + }, + "bounds": { + "#": 3409 + }, + "positionPrev": { + "#": 3412 + }, + "anglePrev": 0, + "axes": { + "#": 3413 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3394 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3394 + } + ], + [ + { + "#": 3397 + }, + { + "#": 3398 + }, + { + "#": 3399 + }, + { + "#": 3400 + } + ], + { + "x": 100, + "y": 270, + "index": 0, + "body": { + "#": 3394 + }, + "isInternal": false + }, + { + "x": 125, + "y": 270, + "index": 1, + "body": { + "#": 3394 + }, + "isInternal": false + }, + { + "x": 125, + "y": 295, + "index": 2, + "body": { + "#": 3394 + }, + "isInternal": false + }, + { + "x": 100, + "y": 295, + "index": 3, + "body": { + "#": 3394 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3408 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3410 + }, + "max": { + "#": 3411 + } + }, + { + "x": 100, + "y": 270 + }, + { + "x": 125, + "y": 295 + }, + { + "x": 112.5, + "y": 282.5 + }, + [ + { + "#": 3414 + }, + { + "#": 3415 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 156, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3417 + }, + "angle": 0, + "vertices": { + "#": 3418 + }, + "position": { + "#": 3423 + }, + "force": { + "#": 3424 + }, + "torque": 0, + "positionImpulse": { + "#": 3425 + }, + "constraintImpulse": { + "#": 3426 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3427 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3428 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3429 + }, + "bounds": { + "#": 3431 + }, + "positionPrev": { + "#": 3434 + }, + "anglePrev": 0, + "axes": { + "#": 3435 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3416 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3416 + } + ], + [ + { + "#": 3419 + }, + { + "#": 3420 + }, + { + "#": 3421 + }, + { + "#": 3422 + } + ], + { + "x": 125, + "y": 270, + "index": 0, + "body": { + "#": 3416 + }, + "isInternal": false + }, + { + "x": 150, + "y": 270, + "index": 1, + "body": { + "#": 3416 + }, + "isInternal": false + }, + { + "x": 150, + "y": 295, + "index": 2, + "body": { + "#": 3416 + }, + "isInternal": false + }, + { + "x": 125, + "y": 295, + "index": 3, + "body": { + "#": 3416 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3430 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3432 + }, + "max": { + "#": 3433 + } + }, + { + "x": 125, + "y": 270 + }, + { + "x": 150, + "y": 295 + }, + { + "x": 137.5, + "y": 282.5 + }, + [ + { + "#": 3436 + }, + { + "#": 3437 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 157, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3439 + }, + "angle": 0, + "vertices": { + "#": 3440 + }, + "position": { + "#": 3445 + }, + "force": { + "#": 3446 + }, + "torque": 0, + "positionImpulse": { + "#": 3447 + }, + "constraintImpulse": { + "#": 3448 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3449 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3450 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3451 + }, + "bounds": { + "#": 3453 + }, + "positionPrev": { + "#": 3456 + }, + "anglePrev": 0, + "axes": { + "#": 3457 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3438 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3438 + } + ], + [ + { + "#": 3441 + }, + { + "#": 3442 + }, + { + "#": 3443 + }, + { + "#": 3444 + } + ], + { + "x": 150, + "y": 270, + "index": 0, + "body": { + "#": 3438 + }, + "isInternal": false + }, + { + "x": 175, + "y": 270, + "index": 1, + "body": { + "#": 3438 + }, + "isInternal": false + }, + { + "x": 175, + "y": 295, + "index": 2, + "body": { + "#": 3438 + }, + "isInternal": false + }, + { + "x": 150, + "y": 295, + "index": 3, + "body": { + "#": 3438 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3452 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3454 + }, + "max": { + "#": 3455 + } + }, + { + "x": 150, + "y": 270 + }, + { + "x": 175, + "y": 295 + }, + { + "x": 162.5, + "y": 282.5 + }, + [ + { + "#": 3458 + }, + { + "#": 3459 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 158, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3461 + }, + "angle": 0, + "vertices": { + "#": 3462 + }, + "position": { + "#": 3467 + }, + "force": { + "#": 3468 + }, + "torque": 0, + "positionImpulse": { + "#": 3469 + }, + "constraintImpulse": { + "#": 3470 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3471 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3472 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3473 + }, + "bounds": { + "#": 3475 + }, + "positionPrev": { + "#": 3478 + }, + "anglePrev": 0, + "axes": { + "#": 3479 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3460 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3460 + } + ], + [ + { + "#": 3463 + }, + { + "#": 3464 + }, + { + "#": 3465 + }, + { + "#": 3466 + } + ], + { + "x": 175, + "y": 270, + "index": 0, + "body": { + "#": 3460 + }, + "isInternal": false + }, + { + "x": 200, + "y": 270, + "index": 1, + "body": { + "#": 3460 + }, + "isInternal": false + }, + { + "x": 200, + "y": 295, + "index": 2, + "body": { + "#": 3460 + }, + "isInternal": false + }, + { + "x": 175, + "y": 295, + "index": 3, + "body": { + "#": 3460 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3474 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3476 + }, + "max": { + "#": 3477 + } + }, + { + "x": 175, + "y": 270 + }, + { + "x": 200, + "y": 295 + }, + { + "x": 187.5, + "y": 282.5 + }, + [ + { + "#": 3480 + }, + { + "#": 3481 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 159, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3483 + }, + "angle": 0, + "vertices": { + "#": 3484 + }, + "position": { + "#": 3489 + }, + "force": { + "#": 3490 + }, + "torque": 0, + "positionImpulse": { + "#": 3491 + }, + "constraintImpulse": { + "#": 3492 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3493 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3494 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3495 + }, + "bounds": { + "#": 3497 + }, + "positionPrev": { + "#": 3500 + }, + "anglePrev": 0, + "axes": { + "#": 3501 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3482 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3482 + } + ], + [ + { + "#": 3485 + }, + { + "#": 3486 + }, + { + "#": 3487 + }, + { + "#": 3488 + } + ], + { + "x": 200, + "y": 270, + "index": 0, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 225, + "y": 270, + "index": 1, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 225, + "y": 295, + "index": 2, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 200, + "y": 295, + "index": 3, + "body": { + "#": 3482 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3496 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3498 + }, + "max": { + "#": 3499 + } + }, + { + "x": 200, + "y": 270 + }, + { + "x": 225, + "y": 295 + }, + { + "x": 212.5, + "y": 282.5 + }, + [ + { + "#": 3502 + }, + { + "#": 3503 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 160, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3505 + }, + "angle": 0, + "vertices": { + "#": 3506 + }, + "position": { + "#": 3511 + }, + "force": { + "#": 3512 + }, + "torque": 0, + "positionImpulse": { + "#": 3513 + }, + "constraintImpulse": { + "#": 3514 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3515 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3516 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3517 + }, + "bounds": { + "#": 3519 + }, + "positionPrev": { + "#": 3522 + }, + "anglePrev": 0, + "axes": { + "#": 3523 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3504 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3504 + } + ], + [ + { + "#": 3507 + }, + { + "#": 3508 + }, + { + "#": 3509 + }, + { + "#": 3510 + } + ], + { + "x": 225, + "y": 270, + "index": 0, + "body": { + "#": 3504 + }, + "isInternal": false + }, + { + "x": 250, + "y": 270, + "index": 1, + "body": { + "#": 3504 + }, + "isInternal": false + }, + { + "x": 250, + "y": 295, + "index": 2, + "body": { + "#": 3504 + }, + "isInternal": false + }, + { + "x": 225, + "y": 295, + "index": 3, + "body": { + "#": 3504 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3518 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3520 + }, + "max": { + "#": 3521 + } + }, + { + "x": 225, + "y": 270 + }, + { + "x": 250, + "y": 295 + }, + { + "x": 237.5, + "y": 282.5 + }, + [ + { + "#": 3524 + }, + { + "#": 3525 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 161, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3527 + }, + "angle": 0, + "vertices": { + "#": 3528 + }, + "position": { + "#": 3533 + }, + "force": { + "#": 3534 + }, + "torque": 0, + "positionImpulse": { + "#": 3535 + }, + "constraintImpulse": { + "#": 3536 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3537 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3538 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3539 + }, + "bounds": { + "#": 3541 + }, + "positionPrev": { + "#": 3544 + }, + "anglePrev": 0, + "axes": { + "#": 3545 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3526 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3526 + } + ], + [ + { + "#": 3529 + }, + { + "#": 3530 + }, + { + "#": 3531 + }, + { + "#": 3532 + } + ], + { + "x": 250, + "y": 270, + "index": 0, + "body": { + "#": 3526 + }, + "isInternal": false + }, + { + "x": 275, + "y": 270, + "index": 1, + "body": { + "#": 3526 + }, + "isInternal": false + }, + { + "x": 275, + "y": 295, + "index": 2, + "body": { + "#": 3526 + }, + "isInternal": false + }, + { + "x": 250, + "y": 295, + "index": 3, + "body": { + "#": 3526 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3540 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3542 + }, + "max": { + "#": 3543 + } + }, + { + "x": 250, + "y": 270 + }, + { + "x": 275, + "y": 295 + }, + { + "x": 262.5, + "y": 282.5 + }, + [ + { + "#": 3546 + }, + { + "#": 3547 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 162, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3549 + }, + "angle": 0, + "vertices": { + "#": 3550 + }, + "position": { + "#": 3555 + }, + "force": { + "#": 3556 + }, + "torque": 0, + "positionImpulse": { + "#": 3557 + }, + "constraintImpulse": { + "#": 3558 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3559 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3560 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3561 + }, + "bounds": { + "#": 3563 + }, + "positionPrev": { + "#": 3566 + }, + "anglePrev": 0, + "axes": { + "#": 3567 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3548 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3548 + } + ], + [ + { + "#": 3551 + }, + { + "#": 3552 + }, + { + "#": 3553 + }, + { + "#": 3554 + } + ], + { + "x": 275, + "y": 270, + "index": 0, + "body": { + "#": 3548 + }, + "isInternal": false + }, + { + "x": 300, + "y": 270, + "index": 1, + "body": { + "#": 3548 + }, + "isInternal": false + }, + { + "x": 300, + "y": 295, + "index": 2, + "body": { + "#": 3548 + }, + "isInternal": false + }, + { + "x": 275, + "y": 295, + "index": 3, + "body": { + "#": 3548 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3562 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3564 + }, + "max": { + "#": 3565 + } + }, + { + "x": 275, + "y": 270 + }, + { + "x": 300, + "y": 295 + }, + { + "x": 287.5, + "y": 282.5 + }, + [ + { + "#": 3568 + }, + { + "#": 3569 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 163, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3571 + }, + "angle": 0, + "vertices": { + "#": 3572 + }, + "position": { + "#": 3577 + }, + "force": { + "#": 3578 + }, + "torque": 0, + "positionImpulse": { + "#": 3579 + }, + "constraintImpulse": { + "#": 3580 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3581 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3582 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3583 + }, + "bounds": { + "#": 3585 + }, + "positionPrev": { + "#": 3588 + }, + "anglePrev": 0, + "axes": { + "#": 3589 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3570 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3570 + } + ], + [ + { + "#": 3573 + }, + { + "#": 3574 + }, + { + "#": 3575 + }, + { + "#": 3576 + } + ], + { + "x": 300, + "y": 270, + "index": 0, + "body": { + "#": 3570 + }, + "isInternal": false + }, + { + "x": 325, + "y": 270, + "index": 1, + "body": { + "#": 3570 + }, + "isInternal": false + }, + { + "x": 325, + "y": 295, + "index": 2, + "body": { + "#": 3570 + }, + "isInternal": false + }, + { + "x": 300, + "y": 295, + "index": 3, + "body": { + "#": 3570 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3584 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3586 + }, + "max": { + "#": 3587 + } + }, + { + "x": 300, + "y": 270 + }, + { + "x": 325, + "y": 295 + }, + { + "x": 312.5, + "y": 282.5 + }, + [ + { + "#": 3590 + }, + { + "#": 3591 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 164, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3593 + }, + "angle": 0, + "vertices": { + "#": 3594 + }, + "position": { + "#": 3599 + }, + "force": { + "#": 3600 + }, + "torque": 0, + "positionImpulse": { + "#": 3601 + }, + "constraintImpulse": { + "#": 3602 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3603 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3604 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3605 + }, + "bounds": { + "#": 3607 + }, + "positionPrev": { + "#": 3610 + }, + "anglePrev": 0, + "axes": { + "#": 3611 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3592 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3592 + } + ], + [ + { + "#": 3595 + }, + { + "#": 3596 + }, + { + "#": 3597 + }, + { + "#": 3598 + } + ], + { + "x": 325, + "y": 270, + "index": 0, + "body": { + "#": 3592 + }, + "isInternal": false + }, + { + "x": 350, + "y": 270, + "index": 1, + "body": { + "#": 3592 + }, + "isInternal": false + }, + { + "x": 350, + "y": 295, + "index": 2, + "body": { + "#": 3592 + }, + "isInternal": false + }, + { + "x": 325, + "y": 295, + "index": 3, + "body": { + "#": 3592 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3606 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3608 + }, + "max": { + "#": 3609 + } + }, + { + "x": 325, + "y": 270 + }, + { + "x": 350, + "y": 295 + }, + { + "x": 337.5, + "y": 282.5 + }, + [ + { + "#": 3612 + }, + { + "#": 3613 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 165, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3615 + }, + "angle": 0, + "vertices": { + "#": 3616 + }, + "position": { + "#": 3621 + }, + "force": { + "#": 3622 + }, + "torque": 0, + "positionImpulse": { + "#": 3623 + }, + "constraintImpulse": { + "#": 3624 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3625 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3626 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3627 + }, + "bounds": { + "#": 3629 + }, + "positionPrev": { + "#": 3632 + }, + "anglePrev": 0, + "axes": { + "#": 3633 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3614 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3614 + } + ], + [ + { + "#": 3617 + }, + { + "#": 3618 + }, + { + "#": 3619 + }, + { + "#": 3620 + } + ], + { + "x": 350, + "y": 270, + "index": 0, + "body": { + "#": 3614 + }, + "isInternal": false + }, + { + "x": 375, + "y": 270, + "index": 1, + "body": { + "#": 3614 + }, + "isInternal": false + }, + { + "x": 375, + "y": 295, + "index": 2, + "body": { + "#": 3614 + }, + "isInternal": false + }, + { + "x": 350, + "y": 295, + "index": 3, + "body": { + "#": 3614 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3628 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3630 + }, + "max": { + "#": 3631 + } + }, + { + "x": 350, + "y": 270 + }, + { + "x": 375, + "y": 295 + }, + { + "x": 362.5, + "y": 282.5 + }, + [ + { + "#": 3634 + }, + { + "#": 3635 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 166, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3637 + }, + "angle": 0, + "vertices": { + "#": 3638 + }, + "position": { + "#": 3643 + }, + "force": { + "#": 3644 + }, + "torque": 0, + "positionImpulse": { + "#": 3645 + }, + "constraintImpulse": { + "#": 3646 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3647 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3648 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3649 + }, + "bounds": { + "#": 3651 + }, + "positionPrev": { + "#": 3654 + }, + "anglePrev": 0, + "axes": { + "#": 3655 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3636 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3636 + } + ], + [ + { + "#": 3639 + }, + { + "#": 3640 + }, + { + "#": 3641 + }, + { + "#": 3642 + } + ], + { + "x": 375, + "y": 270, + "index": 0, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 400, + "y": 270, + "index": 1, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 400, + "y": 295, + "index": 2, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 375, + "y": 295, + "index": 3, + "body": { + "#": 3636 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3650 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3652 + }, + "max": { + "#": 3653 + } + }, + { + "x": 375, + "y": 270 + }, + { + "x": 400, + "y": 295 + }, + { + "x": 387.5, + "y": 282.5 + }, + [ + { + "#": 3656 + }, + { + "#": 3657 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 167, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3659 + }, + "angle": 0, + "vertices": { + "#": 3660 + }, + "position": { + "#": 3665 + }, + "force": { + "#": 3666 + }, + "torque": 0, + "positionImpulse": { + "#": 3667 + }, + "constraintImpulse": { + "#": 3668 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3669 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3670 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3671 + }, + "bounds": { + "#": 3673 + }, + "positionPrev": { + "#": 3676 + }, + "anglePrev": 0, + "axes": { + "#": 3677 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3658 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3658 + } + ], + [ + { + "#": 3661 + }, + { + "#": 3662 + }, + { + "#": 3663 + }, + { + "#": 3664 + } + ], + { + "x": 400, + "y": 270, + "index": 0, + "body": { + "#": 3658 + }, + "isInternal": false + }, + { + "x": 425, + "y": 270, + "index": 1, + "body": { + "#": 3658 + }, + "isInternal": false + }, + { + "x": 425, + "y": 295, + "index": 2, + "body": { + "#": 3658 + }, + "isInternal": false + }, + { + "x": 400, + "y": 295, + "index": 3, + "body": { + "#": 3658 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3672 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3674 + }, + "max": { + "#": 3675 + } + }, + { + "x": 400, + "y": 270 + }, + { + "x": 425, + "y": 295 + }, + { + "x": 412.5, + "y": 282.5 + }, + [ + { + "#": 3678 + }, + { + "#": 3679 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 168, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3681 + }, + "angle": 0, + "vertices": { + "#": 3682 + }, + "position": { + "#": 3687 + }, + "force": { + "#": 3688 + }, + "torque": 0, + "positionImpulse": { + "#": 3689 + }, + "constraintImpulse": { + "#": 3690 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3691 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3692 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3693 + }, + "bounds": { + "#": 3695 + }, + "positionPrev": { + "#": 3698 + }, + "anglePrev": 0, + "axes": { + "#": 3699 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3680 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3680 + } + ], + [ + { + "#": 3683 + }, + { + "#": 3684 + }, + { + "#": 3685 + }, + { + "#": 3686 + } + ], + { + "x": 425, + "y": 270, + "index": 0, + "body": { + "#": 3680 + }, + "isInternal": false + }, + { + "x": 450, + "y": 270, + "index": 1, + "body": { + "#": 3680 + }, + "isInternal": false + }, + { + "x": 450, + "y": 295, + "index": 2, + "body": { + "#": 3680 + }, + "isInternal": false + }, + { + "x": 425, + "y": 295, + "index": 3, + "body": { + "#": 3680 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3694 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3696 + }, + "max": { + "#": 3697 + } + }, + { + "x": 425, + "y": 270 + }, + { + "x": 450, + "y": 295 + }, + { + "x": 437.5, + "y": 282.5 + }, + [ + { + "#": 3700 + }, + { + "#": 3701 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 169, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3703 + }, + "angle": 0, + "vertices": { + "#": 3704 + }, + "position": { + "#": 3709 + }, + "force": { + "#": 3710 + }, + "torque": 0, + "positionImpulse": { + "#": 3711 + }, + "constraintImpulse": { + "#": 3712 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3713 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3714 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3715 + }, + "bounds": { + "#": 3717 + }, + "positionPrev": { + "#": 3720 + }, + "anglePrev": 0, + "axes": { + "#": 3721 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3702 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3702 + } + ], + [ + { + "#": 3705 + }, + { + "#": 3706 + }, + { + "#": 3707 + }, + { + "#": 3708 + } + ], + { + "x": 450, + "y": 270, + "index": 0, + "body": { + "#": 3702 + }, + "isInternal": false + }, + { + "x": 475, + "y": 270, + "index": 1, + "body": { + "#": 3702 + }, + "isInternal": false + }, + { + "x": 475, + "y": 295, + "index": 2, + "body": { + "#": 3702 + }, + "isInternal": false + }, + { + "x": 450, + "y": 295, + "index": 3, + "body": { + "#": 3702 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3716 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3718 + }, + "max": { + "#": 3719 + } + }, + { + "x": 450, + "y": 270 + }, + { + "x": 475, + "y": 295 + }, + { + "x": 462.5, + "y": 282.5 + }, + [ + { + "#": 3722 + }, + { + "#": 3723 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 170, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3725 + }, + "angle": 0, + "vertices": { + "#": 3726 + }, + "position": { + "#": 3731 + }, + "force": { + "#": 3732 + }, + "torque": 0, + "positionImpulse": { + "#": 3733 + }, + "constraintImpulse": { + "#": 3734 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3735 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3736 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3737 + }, + "bounds": { + "#": 3739 + }, + "positionPrev": { + "#": 3742 + }, + "anglePrev": 0, + "axes": { + "#": 3743 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3724 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3724 + } + ], + [ + { + "#": 3727 + }, + { + "#": 3728 + }, + { + "#": 3729 + }, + { + "#": 3730 + } + ], + { + "x": 475, + "y": 270, + "index": 0, + "body": { + "#": 3724 + }, + "isInternal": false + }, + { + "x": 500, + "y": 270, + "index": 1, + "body": { + "#": 3724 + }, + "isInternal": false + }, + { + "x": 500, + "y": 295, + "index": 2, + "body": { + "#": 3724 + }, + "isInternal": false + }, + { + "x": 475, + "y": 295, + "index": 3, + "body": { + "#": 3724 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3738 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3740 + }, + "max": { + "#": 3741 + } + }, + { + "x": 475, + "y": 270 + }, + { + "x": 500, + "y": 295 + }, + { + "x": 487.5, + "y": 282.5 + }, + [ + { + "#": 3744 + }, + { + "#": 3745 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 171, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3747 + }, + "angle": 0, + "vertices": { + "#": 3748 + }, + "position": { + "#": 3753 + }, + "force": { + "#": 3754 + }, + "torque": 0, + "positionImpulse": { + "#": 3755 + }, + "constraintImpulse": { + "#": 3756 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3757 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3758 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3759 + }, + "bounds": { + "#": 3761 + }, + "positionPrev": { + "#": 3764 + }, + "anglePrev": 0, + "axes": { + "#": 3765 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3746 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3746 + } + ], + [ + { + "#": 3749 + }, + { + "#": 3750 + }, + { + "#": 3751 + }, + { + "#": 3752 + } + ], + { + "x": 500, + "y": 270, + "index": 0, + "body": { + "#": 3746 + }, + "isInternal": false + }, + { + "x": 525, + "y": 270, + "index": 1, + "body": { + "#": 3746 + }, + "isInternal": false + }, + { + "x": 525, + "y": 295, + "index": 2, + "body": { + "#": 3746 + }, + "isInternal": false + }, + { + "x": 500, + "y": 295, + "index": 3, + "body": { + "#": 3746 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3760 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3762 + }, + "max": { + "#": 3763 + } + }, + { + "x": 500, + "y": 270 + }, + { + "x": 525, + "y": 295 + }, + { + "x": 512.5, + "y": 282.5 + }, + [ + { + "#": 3766 + }, + { + "#": 3767 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 172, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3769 + }, + "angle": 0, + "vertices": { + "#": 3770 + }, + "position": { + "#": 3775 + }, + "force": { + "#": 3776 + }, + "torque": 0, + "positionImpulse": { + "#": 3777 + }, + "constraintImpulse": { + "#": 3778 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3779 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3780 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3781 + }, + "bounds": { + "#": 3783 + }, + "positionPrev": { + "#": 3786 + }, + "anglePrev": 0, + "axes": { + "#": 3787 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3768 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3768 + } + ], + [ + { + "#": 3771 + }, + { + "#": 3772 + }, + { + "#": 3773 + }, + { + "#": 3774 + } + ], + { + "x": 525, + "y": 270, + "index": 0, + "body": { + "#": 3768 + }, + "isInternal": false + }, + { + "x": 550, + "y": 270, + "index": 1, + "body": { + "#": 3768 + }, + "isInternal": false + }, + { + "x": 550, + "y": 295, + "index": 2, + "body": { + "#": 3768 + }, + "isInternal": false + }, + { + "x": 525, + "y": 295, + "index": 3, + "body": { + "#": 3768 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3782 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3784 + }, + "max": { + "#": 3785 + } + }, + { + "x": 525, + "y": 270 + }, + { + "x": 550, + "y": 295 + }, + { + "x": 537.5, + "y": 282.5 + }, + [ + { + "#": 3788 + }, + { + "#": 3789 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 173, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3791 + }, + "angle": 0, + "vertices": { + "#": 3792 + }, + "position": { + "#": 3797 + }, + "force": { + "#": 3798 + }, + "torque": 0, + "positionImpulse": { + "#": 3799 + }, + "constraintImpulse": { + "#": 3800 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3801 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3802 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3803 + }, + "bounds": { + "#": 3805 + }, + "positionPrev": { + "#": 3808 + }, + "anglePrev": 0, + "axes": { + "#": 3809 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3790 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3790 + } + ], + [ + { + "#": 3793 + }, + { + "#": 3794 + }, + { + "#": 3795 + }, + { + "#": 3796 + } + ], + { + "x": 550, + "y": 270, + "index": 0, + "body": { + "#": 3790 + }, + "isInternal": false + }, + { + "x": 575, + "y": 270, + "index": 1, + "body": { + "#": 3790 + }, + "isInternal": false + }, + { + "x": 575, + "y": 295, + "index": 2, + "body": { + "#": 3790 + }, + "isInternal": false + }, + { + "x": 550, + "y": 295, + "index": 3, + "body": { + "#": 3790 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3804 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3806 + }, + "max": { + "#": 3807 + } + }, + { + "x": 550, + "y": 270 + }, + { + "x": 575, + "y": 295 + }, + { + "x": 562.5, + "y": 282.5 + }, + [ + { + "#": 3810 + }, + { + "#": 3811 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 174, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3813 + }, + "angle": 0, + "vertices": { + "#": 3814 + }, + "position": { + "#": 3819 + }, + "force": { + "#": 3820 + }, + "torque": 0, + "positionImpulse": { + "#": 3821 + }, + "constraintImpulse": { + "#": 3822 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3823 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3824 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3825 + }, + "bounds": { + "#": 3827 + }, + "positionPrev": { + "#": 3830 + }, + "anglePrev": 0, + "axes": { + "#": 3831 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3812 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3812 + } + ], + [ + { + "#": 3815 + }, + { + "#": 3816 + }, + { + "#": 3817 + }, + { + "#": 3818 + } + ], + { + "x": 575, + "y": 270, + "index": 0, + "body": { + "#": 3812 + }, + "isInternal": false + }, + { + "x": 600, + "y": 270, + "index": 1, + "body": { + "#": 3812 + }, + "isInternal": false + }, + { + "x": 600, + "y": 295, + "index": 2, + "body": { + "#": 3812 + }, + "isInternal": false + }, + { + "x": 575, + "y": 295, + "index": 3, + "body": { + "#": 3812 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3826 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3828 + }, + "max": { + "#": 3829 + } + }, + { + "x": 575, + "y": 270 + }, + { + "x": 600, + "y": 295 + }, + { + "x": 587.5, + "y": 282.5 + }, + [ + { + "#": 3832 + }, + { + "#": 3833 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 175, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3835 + }, + "angle": 0, + "vertices": { + "#": 3836 + }, + "position": { + "#": 3841 + }, + "force": { + "#": 3842 + }, + "torque": 0, + "positionImpulse": { + "#": 3843 + }, + "constraintImpulse": { + "#": 3844 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3845 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3846 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3847 + }, + "bounds": { + "#": 3849 + }, + "positionPrev": { + "#": 3852 + }, + "anglePrev": 0, + "axes": { + "#": 3853 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3834 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3834 + } + ], + [ + { + "#": 3837 + }, + { + "#": 3838 + }, + { + "#": 3839 + }, + { + "#": 3840 + } + ], + { + "x": 600, + "y": 270, + "index": 0, + "body": { + "#": 3834 + }, + "isInternal": false + }, + { + "x": 625, + "y": 270, + "index": 1, + "body": { + "#": 3834 + }, + "isInternal": false + }, + { + "x": 625, + "y": 295, + "index": 2, + "body": { + "#": 3834 + }, + "isInternal": false + }, + { + "x": 600, + "y": 295, + "index": 3, + "body": { + "#": 3834 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3848 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3850 + }, + "max": { + "#": 3851 + } + }, + { + "x": 600, + "y": 270 + }, + { + "x": 625, + "y": 295 + }, + { + "x": 612.5, + "y": 282.5 + }, + [ + { + "#": 3854 + }, + { + "#": 3855 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 176, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3857 + }, + "angle": 0, + "vertices": { + "#": 3858 + }, + "position": { + "#": 3863 + }, + "force": { + "#": 3864 + }, + "torque": 0, + "positionImpulse": { + "#": 3865 + }, + "constraintImpulse": { + "#": 3866 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3867 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3868 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3869 + }, + "bounds": { + "#": 3871 + }, + "positionPrev": { + "#": 3874 + }, + "anglePrev": 0, + "axes": { + "#": 3875 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3856 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3856 + } + ], + [ + { + "#": 3859 + }, + { + "#": 3860 + }, + { + "#": 3861 + }, + { + "#": 3862 + } + ], + { + "x": 625, + "y": 270, + "index": 0, + "body": { + "#": 3856 + }, + "isInternal": false + }, + { + "x": 650, + "y": 270, + "index": 1, + "body": { + "#": 3856 + }, + "isInternal": false + }, + { + "x": 650, + "y": 295, + "index": 2, + "body": { + "#": 3856 + }, + "isInternal": false + }, + { + "x": 625, + "y": 295, + "index": 3, + "body": { + "#": 3856 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3870 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3872 + }, + "max": { + "#": 3873 + } + }, + { + "x": 625, + "y": 270 + }, + { + "x": 650, + "y": 295 + }, + { + "x": 637.5, + "y": 282.5 + }, + [ + { + "#": 3876 + }, + { + "#": 3877 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 177, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3879 + }, + "angle": 0, + "vertices": { + "#": 3880 + }, + "position": { + "#": 3885 + }, + "force": { + "#": 3886 + }, + "torque": 0, + "positionImpulse": { + "#": 3887 + }, + "constraintImpulse": { + "#": 3888 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3889 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3890 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3891 + }, + "bounds": { + "#": 3893 + }, + "positionPrev": { + "#": 3896 + }, + "anglePrev": 0, + "axes": { + "#": 3897 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3878 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3878 + } + ], + [ + { + "#": 3881 + }, + { + "#": 3882 + }, + { + "#": 3883 + }, + { + "#": 3884 + } + ], + { + "x": 650, + "y": 270, + "index": 0, + "body": { + "#": 3878 + }, + "isInternal": false + }, + { + "x": 675, + "y": 270, + "index": 1, + "body": { + "#": 3878 + }, + "isInternal": false + }, + { + "x": 675, + "y": 295, + "index": 2, + "body": { + "#": 3878 + }, + "isInternal": false + }, + { + "x": 650, + "y": 295, + "index": 3, + "body": { + "#": 3878 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3892 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3894 + }, + "max": { + "#": 3895 + } + }, + { + "x": 650, + "y": 270 + }, + { + "x": 675, + "y": 295 + }, + { + "x": 662.5, + "y": 282.5 + }, + [ + { + "#": 3898 + }, + { + "#": 3899 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 178, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3901 + }, + "angle": 0, + "vertices": { + "#": 3902 + }, + "position": { + "#": 3907 + }, + "force": { + "#": 3908 + }, + "torque": 0, + "positionImpulse": { + "#": 3909 + }, + "constraintImpulse": { + "#": 3910 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3911 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3912 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3913 + }, + "bounds": { + "#": 3915 + }, + "positionPrev": { + "#": 3918 + }, + "anglePrev": 0, + "axes": { + "#": 3919 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3900 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3900 + } + ], + [ + { + "#": 3903 + }, + { + "#": 3904 + }, + { + "#": 3905 + }, + { + "#": 3906 + } + ], + { + "x": 675, + "y": 270, + "index": 0, + "body": { + "#": 3900 + }, + "isInternal": false + }, + { + "x": 700, + "y": 270, + "index": 1, + "body": { + "#": 3900 + }, + "isInternal": false + }, + { + "x": 700, + "y": 295, + "index": 2, + "body": { + "#": 3900 + }, + "isInternal": false + }, + { + "x": 675, + "y": 295, + "index": 3, + "body": { + "#": 3900 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3914 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3916 + }, + "max": { + "#": 3917 + } + }, + { + "x": 675, + "y": 270 + }, + { + "x": 700, + "y": 295 + }, + { + "x": 687.5, + "y": 282.5 + }, + [ + { + "#": 3920 + }, + { + "#": 3921 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 179, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3923 + }, + "angle": 0, + "vertices": { + "#": 3924 + }, + "position": { + "#": 3929 + }, + "force": { + "#": 3930 + }, + "torque": 0, + "positionImpulse": { + "#": 3931 + }, + "constraintImpulse": { + "#": 3932 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3933 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3934 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3935 + }, + "bounds": { + "#": 3937 + }, + "positionPrev": { + "#": 3940 + }, + "anglePrev": 0, + "axes": { + "#": 3941 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3922 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3922 + } + ], + [ + { + "#": 3925 + }, + { + "#": 3926 + }, + { + "#": 3927 + }, + { + "#": 3928 + } + ], + { + "x": 700, + "y": 270, + "index": 0, + "body": { + "#": 3922 + }, + "isInternal": false + }, + { + "x": 725, + "y": 270, + "index": 1, + "body": { + "#": 3922 + }, + "isInternal": false + }, + { + "x": 725, + "y": 295, + "index": 2, + "body": { + "#": 3922 + }, + "isInternal": false + }, + { + "x": 700, + "y": 295, + "index": 3, + "body": { + "#": 3922 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 282.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3936 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3938 + }, + "max": { + "#": 3939 + } + }, + { + "x": 700, + "y": 270 + }, + { + "x": 725, + "y": 295 + }, + { + "x": 712.5, + "y": 282.5 + }, + [ + { + "#": 3942 + }, + { + "#": 3943 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 180, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3945 + }, + "angle": 0, + "vertices": { + "#": 3946 + }, + "position": { + "#": 3951 + }, + "force": { + "#": 3952 + }, + "torque": 0, + "positionImpulse": { + "#": 3953 + }, + "constraintImpulse": { + "#": 3954 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3955 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3956 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3957 + }, + "bounds": { + "#": 3959 + }, + "positionPrev": { + "#": 3962 + }, + "anglePrev": 0, + "axes": { + "#": 3963 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3944 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3944 + } + ], + [ + { + "#": 3947 + }, + { + "#": 3948 + }, + { + "#": 3949 + }, + { + "#": 3950 + } + ], + { + "x": 100, + "y": 295, + "index": 0, + "body": { + "#": 3944 + }, + "isInternal": false + }, + { + "x": 125, + "y": 295, + "index": 1, + "body": { + "#": 3944 + }, + "isInternal": false + }, + { + "x": 125, + "y": 320, + "index": 2, + "body": { + "#": 3944 + }, + "isInternal": false + }, + { + "x": 100, + "y": 320, + "index": 3, + "body": { + "#": 3944 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3958 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3960 + }, + "max": { + "#": 3961 + } + }, + { + "x": 100, + "y": 295 + }, + { + "x": 125, + "y": 320 + }, + { + "x": 112.5, + "y": 307.5 + }, + [ + { + "#": 3964 + }, + { + "#": 3965 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 181, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3967 + }, + "angle": 0, + "vertices": { + "#": 3968 + }, + "position": { + "#": 3973 + }, + "force": { + "#": 3974 + }, + "torque": 0, + "positionImpulse": { + "#": 3975 + }, + "constraintImpulse": { + "#": 3976 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3977 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3978 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3979 + }, + "bounds": { + "#": 3981 + }, + "positionPrev": { + "#": 3984 + }, + "anglePrev": 0, + "axes": { + "#": 3985 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3966 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3966 + } + ], + [ + { + "#": 3969 + }, + { + "#": 3970 + }, + { + "#": 3971 + }, + { + "#": 3972 + } + ], + { + "x": 125, + "y": 295, + "index": 0, + "body": { + "#": 3966 + }, + "isInternal": false + }, + { + "x": 150, + "y": 295, + "index": 1, + "body": { + "#": 3966 + }, + "isInternal": false + }, + { + "x": 150, + "y": 320, + "index": 2, + "body": { + "#": 3966 + }, + "isInternal": false + }, + { + "x": 125, + "y": 320, + "index": 3, + "body": { + "#": 3966 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3980 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3982 + }, + "max": { + "#": 3983 + } + }, + { + "x": 125, + "y": 295 + }, + { + "x": 150, + "y": 320 + }, + { + "x": 137.5, + "y": 307.5 + }, + [ + { + "#": 3986 + }, + { + "#": 3987 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 182, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3989 + }, + "angle": 0, + "vertices": { + "#": 3990 + }, + "position": { + "#": 3995 + }, + "force": { + "#": 3996 + }, + "torque": 0, + "positionImpulse": { + "#": 3997 + }, + "constraintImpulse": { + "#": 3998 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 3999 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4000 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4001 + }, + "bounds": { + "#": 4003 + }, + "positionPrev": { + "#": 4006 + }, + "anglePrev": 0, + "axes": { + "#": 4007 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3988 + }, + "sleepCounter": 0 + }, + [ + { + "#": 3988 + } + ], + [ + { + "#": 3991 + }, + { + "#": 3992 + }, + { + "#": 3993 + }, + { + "#": 3994 + } + ], + { + "x": 150, + "y": 295, + "index": 0, + "body": { + "#": 3988 + }, + "isInternal": false + }, + { + "x": 175, + "y": 295, + "index": 1, + "body": { + "#": 3988 + }, + "isInternal": false + }, + { + "x": 175, + "y": 320, + "index": 2, + "body": { + "#": 3988 + }, + "isInternal": false + }, + { + "x": 150, + "y": 320, + "index": 3, + "body": { + "#": 3988 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4002 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4004 + }, + "max": { + "#": 4005 + } + }, + { + "x": 150, + "y": 295 + }, + { + "x": 175, + "y": 320 + }, + { + "x": 162.5, + "y": 307.5 + }, + [ + { + "#": 4008 + }, + { + "#": 4009 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 183, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4011 + }, + "angle": 0, + "vertices": { + "#": 4012 + }, + "position": { + "#": 4017 + }, + "force": { + "#": 4018 + }, + "torque": 0, + "positionImpulse": { + "#": 4019 + }, + "constraintImpulse": { + "#": 4020 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4021 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4022 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4023 + }, + "bounds": { + "#": 4025 + }, + "positionPrev": { + "#": 4028 + }, + "anglePrev": 0, + "axes": { + "#": 4029 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4010 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4010 + } + ], + [ + { + "#": 4013 + }, + { + "#": 4014 + }, + { + "#": 4015 + }, + { + "#": 4016 + } + ], + { + "x": 175, + "y": 295, + "index": 0, + "body": { + "#": 4010 + }, + "isInternal": false + }, + { + "x": 200, + "y": 295, + "index": 1, + "body": { + "#": 4010 + }, + "isInternal": false + }, + { + "x": 200, + "y": 320, + "index": 2, + "body": { + "#": 4010 + }, + "isInternal": false + }, + { + "x": 175, + "y": 320, + "index": 3, + "body": { + "#": 4010 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4024 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4026 + }, + "max": { + "#": 4027 + } + }, + { + "x": 175, + "y": 295 + }, + { + "x": 200, + "y": 320 + }, + { + "x": 187.5, + "y": 307.5 + }, + [ + { + "#": 4030 + }, + { + "#": 4031 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 184, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4033 + }, + "angle": 0, + "vertices": { + "#": 4034 + }, + "position": { + "#": 4039 + }, + "force": { + "#": 4040 + }, + "torque": 0, + "positionImpulse": { + "#": 4041 + }, + "constraintImpulse": { + "#": 4042 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4043 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4044 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4045 + }, + "bounds": { + "#": 4047 + }, + "positionPrev": { + "#": 4050 + }, + "anglePrev": 0, + "axes": { + "#": 4051 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4032 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4032 + } + ], + [ + { + "#": 4035 + }, + { + "#": 4036 + }, + { + "#": 4037 + }, + { + "#": 4038 + } + ], + { + "x": 200, + "y": 295, + "index": 0, + "body": { + "#": 4032 + }, + "isInternal": false + }, + { + "x": 225, + "y": 295, + "index": 1, + "body": { + "#": 4032 + }, + "isInternal": false + }, + { + "x": 225, + "y": 320, + "index": 2, + "body": { + "#": 4032 + }, + "isInternal": false + }, + { + "x": 200, + "y": 320, + "index": 3, + "body": { + "#": 4032 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4046 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4048 + }, + "max": { + "#": 4049 + } + }, + { + "x": 200, + "y": 295 + }, + { + "x": 225, + "y": 320 + }, + { + "x": 212.5, + "y": 307.5 + }, + [ + { + "#": 4052 + }, + { + "#": 4053 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 185, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4055 + }, + "angle": 0, + "vertices": { + "#": 4056 + }, + "position": { + "#": 4061 + }, + "force": { + "#": 4062 + }, + "torque": 0, + "positionImpulse": { + "#": 4063 + }, + "constraintImpulse": { + "#": 4064 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4065 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4066 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4067 + }, + "bounds": { + "#": 4069 + }, + "positionPrev": { + "#": 4072 + }, + "anglePrev": 0, + "axes": { + "#": 4073 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4054 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4054 + } + ], + [ + { + "#": 4057 + }, + { + "#": 4058 + }, + { + "#": 4059 + }, + { + "#": 4060 + } + ], + { + "x": 225, + "y": 295, + "index": 0, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 250, + "y": 295, + "index": 1, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 250, + "y": 320, + "index": 2, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 225, + "y": 320, + "index": 3, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4068 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4070 + }, + "max": { + "#": 4071 + } + }, + { + "x": 225, + "y": 295 + }, + { + "x": 250, + "y": 320 + }, + { + "x": 237.5, + "y": 307.5 + }, + [ + { + "#": 4074 + }, + { + "#": 4075 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 186, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4077 + }, + "angle": 0, + "vertices": { + "#": 4078 + }, + "position": { + "#": 4083 + }, + "force": { + "#": 4084 + }, + "torque": 0, + "positionImpulse": { + "#": 4085 + }, + "constraintImpulse": { + "#": 4086 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4087 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4088 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4089 + }, + "bounds": { + "#": 4091 + }, + "positionPrev": { + "#": 4094 + }, + "anglePrev": 0, + "axes": { + "#": 4095 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4076 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4076 + } + ], + [ + { + "#": 4079 + }, + { + "#": 4080 + }, + { + "#": 4081 + }, + { + "#": 4082 + } + ], + { + "x": 250, + "y": 295, + "index": 0, + "body": { + "#": 4076 + }, + "isInternal": false + }, + { + "x": 275, + "y": 295, + "index": 1, + "body": { + "#": 4076 + }, + "isInternal": false + }, + { + "x": 275, + "y": 320, + "index": 2, + "body": { + "#": 4076 + }, + "isInternal": false + }, + { + "x": 250, + "y": 320, + "index": 3, + "body": { + "#": 4076 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4090 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4092 + }, + "max": { + "#": 4093 + } + }, + { + "x": 250, + "y": 295 + }, + { + "x": 275, + "y": 320 + }, + { + "x": 262.5, + "y": 307.5 + }, + [ + { + "#": 4096 + }, + { + "#": 4097 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 187, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4099 + }, + "angle": 0, + "vertices": { + "#": 4100 + }, + "position": { + "#": 4105 + }, + "force": { + "#": 4106 + }, + "torque": 0, + "positionImpulse": { + "#": 4107 + }, + "constraintImpulse": { + "#": 4108 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4109 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4110 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4111 + }, + "bounds": { + "#": 4113 + }, + "positionPrev": { + "#": 4116 + }, + "anglePrev": 0, + "axes": { + "#": 4117 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4098 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4098 + } + ], + [ + { + "#": 4101 + }, + { + "#": 4102 + }, + { + "#": 4103 + }, + { + "#": 4104 + } + ], + { + "x": 275, + "y": 295, + "index": 0, + "body": { + "#": 4098 + }, + "isInternal": false + }, + { + "x": 300, + "y": 295, + "index": 1, + "body": { + "#": 4098 + }, + "isInternal": false + }, + { + "x": 300, + "y": 320, + "index": 2, + "body": { + "#": 4098 + }, + "isInternal": false + }, + { + "x": 275, + "y": 320, + "index": 3, + "body": { + "#": 4098 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4112 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4114 + }, + "max": { + "#": 4115 + } + }, + { + "x": 275, + "y": 295 + }, + { + "x": 300, + "y": 320 + }, + { + "x": 287.5, + "y": 307.5 + }, + [ + { + "#": 4118 + }, + { + "#": 4119 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 188, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4121 + }, + "angle": 0, + "vertices": { + "#": 4122 + }, + "position": { + "#": 4127 + }, + "force": { + "#": 4128 + }, + "torque": 0, + "positionImpulse": { + "#": 4129 + }, + "constraintImpulse": { + "#": 4130 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4131 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4132 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4133 + }, + "bounds": { + "#": 4135 + }, + "positionPrev": { + "#": 4138 + }, + "anglePrev": 0, + "axes": { + "#": 4139 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4120 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4120 + } + ], + [ + { + "#": 4123 + }, + { + "#": 4124 + }, + { + "#": 4125 + }, + { + "#": 4126 + } + ], + { + "x": 300, + "y": 295, + "index": 0, + "body": { + "#": 4120 + }, + "isInternal": false + }, + { + "x": 325, + "y": 295, + "index": 1, + "body": { + "#": 4120 + }, + "isInternal": false + }, + { + "x": 325, + "y": 320, + "index": 2, + "body": { + "#": 4120 + }, + "isInternal": false + }, + { + "x": 300, + "y": 320, + "index": 3, + "body": { + "#": 4120 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4134 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4136 + }, + "max": { + "#": 4137 + } + }, + { + "x": 300, + "y": 295 + }, + { + "x": 325, + "y": 320 + }, + { + "x": 312.5, + "y": 307.5 + }, + [ + { + "#": 4140 + }, + { + "#": 4141 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 189, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4143 + }, + "angle": 0, + "vertices": { + "#": 4144 + }, + "position": { + "#": 4149 + }, + "force": { + "#": 4150 + }, + "torque": 0, + "positionImpulse": { + "#": 4151 + }, + "constraintImpulse": { + "#": 4152 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4153 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4154 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4155 + }, + "bounds": { + "#": 4157 + }, + "positionPrev": { + "#": 4160 + }, + "anglePrev": 0, + "axes": { + "#": 4161 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4142 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4142 + } + ], + [ + { + "#": 4145 + }, + { + "#": 4146 + }, + { + "#": 4147 + }, + { + "#": 4148 + } + ], + { + "x": 325, + "y": 295, + "index": 0, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 350, + "y": 295, + "index": 1, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 350, + "y": 320, + "index": 2, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 325, + "y": 320, + "index": 3, + "body": { + "#": 4142 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4156 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4158 + }, + "max": { + "#": 4159 + } + }, + { + "x": 325, + "y": 295 + }, + { + "x": 350, + "y": 320 + }, + { + "x": 337.5, + "y": 307.5 + }, + [ + { + "#": 4162 + }, + { + "#": 4163 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 190, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4165 + }, + "angle": 0, + "vertices": { + "#": 4166 + }, + "position": { + "#": 4171 + }, + "force": { + "#": 4172 + }, + "torque": 0, + "positionImpulse": { + "#": 4173 + }, + "constraintImpulse": { + "#": 4174 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4175 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4176 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4177 + }, + "bounds": { + "#": 4179 + }, + "positionPrev": { + "#": 4182 + }, + "anglePrev": 0, + "axes": { + "#": 4183 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4164 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4164 + } + ], + [ + { + "#": 4167 + }, + { + "#": 4168 + }, + { + "#": 4169 + }, + { + "#": 4170 + } + ], + { + "x": 350, + "y": 295, + "index": 0, + "body": { + "#": 4164 + }, + "isInternal": false + }, + { + "x": 375, + "y": 295, + "index": 1, + "body": { + "#": 4164 + }, + "isInternal": false + }, + { + "x": 375, + "y": 320, + "index": 2, + "body": { + "#": 4164 + }, + "isInternal": false + }, + { + "x": 350, + "y": 320, + "index": 3, + "body": { + "#": 4164 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4178 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4180 + }, + "max": { + "#": 4181 + } + }, + { + "x": 350, + "y": 295 + }, + { + "x": 375, + "y": 320 + }, + { + "x": 362.5, + "y": 307.5 + }, + [ + { + "#": 4184 + }, + { + "#": 4185 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 191, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4187 + }, + "angle": 0, + "vertices": { + "#": 4188 + }, + "position": { + "#": 4193 + }, + "force": { + "#": 4194 + }, + "torque": 0, + "positionImpulse": { + "#": 4195 + }, + "constraintImpulse": { + "#": 4196 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4197 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4198 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4199 + }, + "bounds": { + "#": 4201 + }, + "positionPrev": { + "#": 4204 + }, + "anglePrev": 0, + "axes": { + "#": 4205 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4186 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4186 + } + ], + [ + { + "#": 4189 + }, + { + "#": 4190 + }, + { + "#": 4191 + }, + { + "#": 4192 + } + ], + { + "x": 375, + "y": 295, + "index": 0, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 400, + "y": 295, + "index": 1, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 400, + "y": 320, + "index": 2, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 375, + "y": 320, + "index": 3, + "body": { + "#": 4186 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4200 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4202 + }, + "max": { + "#": 4203 + } + }, + { + "x": 375, + "y": 295 + }, + { + "x": 400, + "y": 320 + }, + { + "x": 387.5, + "y": 307.5 + }, + [ + { + "#": 4206 + }, + { + "#": 4207 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 192, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4209 + }, + "angle": 0, + "vertices": { + "#": 4210 + }, + "position": { + "#": 4215 + }, + "force": { + "#": 4216 + }, + "torque": 0, + "positionImpulse": { + "#": 4217 + }, + "constraintImpulse": { + "#": 4218 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4219 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4220 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4221 + }, + "bounds": { + "#": 4223 + }, + "positionPrev": { + "#": 4226 + }, + "anglePrev": 0, + "axes": { + "#": 4227 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4208 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4208 + } + ], + [ + { + "#": 4211 + }, + { + "#": 4212 + }, + { + "#": 4213 + }, + { + "#": 4214 + } + ], + { + "x": 400, + "y": 295, + "index": 0, + "body": { + "#": 4208 + }, + "isInternal": false + }, + { + "x": 425, + "y": 295, + "index": 1, + "body": { + "#": 4208 + }, + "isInternal": false + }, + { + "x": 425, + "y": 320, + "index": 2, + "body": { + "#": 4208 + }, + "isInternal": false + }, + { + "x": 400, + "y": 320, + "index": 3, + "body": { + "#": 4208 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4222 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4224 + }, + "max": { + "#": 4225 + } + }, + { + "x": 400, + "y": 295 + }, + { + "x": 425, + "y": 320 + }, + { + "x": 412.5, + "y": 307.5 + }, + [ + { + "#": 4228 + }, + { + "#": 4229 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 193, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4231 + }, + "angle": 0, + "vertices": { + "#": 4232 + }, + "position": { + "#": 4237 + }, + "force": { + "#": 4238 + }, + "torque": 0, + "positionImpulse": { + "#": 4239 + }, + "constraintImpulse": { + "#": 4240 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4241 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4242 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4243 + }, + "bounds": { + "#": 4245 + }, + "positionPrev": { + "#": 4248 + }, + "anglePrev": 0, + "axes": { + "#": 4249 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4230 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4230 + } + ], + [ + { + "#": 4233 + }, + { + "#": 4234 + }, + { + "#": 4235 + }, + { + "#": 4236 + } + ], + { + "x": 425, + "y": 295, + "index": 0, + "body": { + "#": 4230 + }, + "isInternal": false + }, + { + "x": 450, + "y": 295, + "index": 1, + "body": { + "#": 4230 + }, + "isInternal": false + }, + { + "x": 450, + "y": 320, + "index": 2, + "body": { + "#": 4230 + }, + "isInternal": false + }, + { + "x": 425, + "y": 320, + "index": 3, + "body": { + "#": 4230 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4244 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4246 + }, + "max": { + "#": 4247 + } + }, + { + "x": 425, + "y": 295 + }, + { + "x": 450, + "y": 320 + }, + { + "x": 437.5, + "y": 307.5 + }, + [ + { + "#": 4250 + }, + { + "#": 4251 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 194, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4253 + }, + "angle": 0, + "vertices": { + "#": 4254 + }, + "position": { + "#": 4259 + }, + "force": { + "#": 4260 + }, + "torque": 0, + "positionImpulse": { + "#": 4261 + }, + "constraintImpulse": { + "#": 4262 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4263 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4264 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4265 + }, + "bounds": { + "#": 4267 + }, + "positionPrev": { + "#": 4270 + }, + "anglePrev": 0, + "axes": { + "#": 4271 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4252 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4252 + } + ], + [ + { + "#": 4255 + }, + { + "#": 4256 + }, + { + "#": 4257 + }, + { + "#": 4258 + } + ], + { + "x": 450, + "y": 295, + "index": 0, + "body": { + "#": 4252 + }, + "isInternal": false + }, + { + "x": 475, + "y": 295, + "index": 1, + "body": { + "#": 4252 + }, + "isInternal": false + }, + { + "x": 475, + "y": 320, + "index": 2, + "body": { + "#": 4252 + }, + "isInternal": false + }, + { + "x": 450, + "y": 320, + "index": 3, + "body": { + "#": 4252 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4266 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4268 + }, + "max": { + "#": 4269 + } + }, + { + "x": 450, + "y": 295 + }, + { + "x": 475, + "y": 320 + }, + { + "x": 462.5, + "y": 307.5 + }, + [ + { + "#": 4272 + }, + { + "#": 4273 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 195, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4275 + }, + "angle": 0, + "vertices": { + "#": 4276 + }, + "position": { + "#": 4281 + }, + "force": { + "#": 4282 + }, + "torque": 0, + "positionImpulse": { + "#": 4283 + }, + "constraintImpulse": { + "#": 4284 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4285 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4286 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4287 + }, + "bounds": { + "#": 4289 + }, + "positionPrev": { + "#": 4292 + }, + "anglePrev": 0, + "axes": { + "#": 4293 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4274 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4274 + } + ], + [ + { + "#": 4277 + }, + { + "#": 4278 + }, + { + "#": 4279 + }, + { + "#": 4280 + } + ], + { + "x": 475, + "y": 295, + "index": 0, + "body": { + "#": 4274 + }, + "isInternal": false + }, + { + "x": 500, + "y": 295, + "index": 1, + "body": { + "#": 4274 + }, + "isInternal": false + }, + { + "x": 500, + "y": 320, + "index": 2, + "body": { + "#": 4274 + }, + "isInternal": false + }, + { + "x": 475, + "y": 320, + "index": 3, + "body": { + "#": 4274 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4288 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4290 + }, + "max": { + "#": 4291 + } + }, + { + "x": 475, + "y": 295 + }, + { + "x": 500, + "y": 320 + }, + { + "x": 487.5, + "y": 307.5 + }, + [ + { + "#": 4294 + }, + { + "#": 4295 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 196, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4297 + }, + "angle": 0, + "vertices": { + "#": 4298 + }, + "position": { + "#": 4303 + }, + "force": { + "#": 4304 + }, + "torque": 0, + "positionImpulse": { + "#": 4305 + }, + "constraintImpulse": { + "#": 4306 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4307 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4308 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4309 + }, + "bounds": { + "#": 4311 + }, + "positionPrev": { + "#": 4314 + }, + "anglePrev": 0, + "axes": { + "#": 4315 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4296 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4296 + } + ], + [ + { + "#": 4299 + }, + { + "#": 4300 + }, + { + "#": 4301 + }, + { + "#": 4302 + } + ], + { + "x": 500, + "y": 295, + "index": 0, + "body": { + "#": 4296 + }, + "isInternal": false + }, + { + "x": 525, + "y": 295, + "index": 1, + "body": { + "#": 4296 + }, + "isInternal": false + }, + { + "x": 525, + "y": 320, + "index": 2, + "body": { + "#": 4296 + }, + "isInternal": false + }, + { + "x": 500, + "y": 320, + "index": 3, + "body": { + "#": 4296 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4310 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4312 + }, + "max": { + "#": 4313 + } + }, + { + "x": 500, + "y": 295 + }, + { + "x": 525, + "y": 320 + }, + { + "x": 512.5, + "y": 307.5 + }, + [ + { + "#": 4316 + }, + { + "#": 4317 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 197, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4319 + }, + "angle": 0, + "vertices": { + "#": 4320 + }, + "position": { + "#": 4325 + }, + "force": { + "#": 4326 + }, + "torque": 0, + "positionImpulse": { + "#": 4327 + }, + "constraintImpulse": { + "#": 4328 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4329 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4330 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4331 + }, + "bounds": { + "#": 4333 + }, + "positionPrev": { + "#": 4336 + }, + "anglePrev": 0, + "axes": { + "#": 4337 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4318 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4318 + } + ], + [ + { + "#": 4321 + }, + { + "#": 4322 + }, + { + "#": 4323 + }, + { + "#": 4324 + } + ], + { + "x": 525, + "y": 295, + "index": 0, + "body": { + "#": 4318 + }, + "isInternal": false + }, + { + "x": 550, + "y": 295, + "index": 1, + "body": { + "#": 4318 + }, + "isInternal": false + }, + { + "x": 550, + "y": 320, + "index": 2, + "body": { + "#": 4318 + }, + "isInternal": false + }, + { + "x": 525, + "y": 320, + "index": 3, + "body": { + "#": 4318 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4332 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4334 + }, + "max": { + "#": 4335 + } + }, + { + "x": 525, + "y": 295 + }, + { + "x": 550, + "y": 320 + }, + { + "x": 537.5, + "y": 307.5 + }, + [ + { + "#": 4338 + }, + { + "#": 4339 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 198, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4341 + }, + "angle": 0, + "vertices": { + "#": 4342 + }, + "position": { + "#": 4347 + }, + "force": { + "#": 4348 + }, + "torque": 0, + "positionImpulse": { + "#": 4349 + }, + "constraintImpulse": { + "#": 4350 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4351 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4352 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4353 + }, + "bounds": { + "#": 4355 + }, + "positionPrev": { + "#": 4358 + }, + "anglePrev": 0, + "axes": { + "#": 4359 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4340 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4340 + } + ], + [ + { + "#": 4343 + }, + { + "#": 4344 + }, + { + "#": 4345 + }, + { + "#": 4346 + } + ], + { + "x": 550, + "y": 295, + "index": 0, + "body": { + "#": 4340 + }, + "isInternal": false + }, + { + "x": 575, + "y": 295, + "index": 1, + "body": { + "#": 4340 + }, + "isInternal": false + }, + { + "x": 575, + "y": 320, + "index": 2, + "body": { + "#": 4340 + }, + "isInternal": false + }, + { + "x": 550, + "y": 320, + "index": 3, + "body": { + "#": 4340 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4354 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4356 + }, + "max": { + "#": 4357 + } + }, + { + "x": 550, + "y": 295 + }, + { + "x": 575, + "y": 320 + }, + { + "x": 562.5, + "y": 307.5 + }, + [ + { + "#": 4360 + }, + { + "#": 4361 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 199, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4363 + }, + "angle": 0, + "vertices": { + "#": 4364 + }, + "position": { + "#": 4369 + }, + "force": { + "#": 4370 + }, + "torque": 0, + "positionImpulse": { + "#": 4371 + }, + "constraintImpulse": { + "#": 4372 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4373 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4374 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4375 + }, + "bounds": { + "#": 4377 + }, + "positionPrev": { + "#": 4380 + }, + "anglePrev": 0, + "axes": { + "#": 4381 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4362 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4362 + } + ], + [ + { + "#": 4365 + }, + { + "#": 4366 + }, + { + "#": 4367 + }, + { + "#": 4368 + } + ], + { + "x": 575, + "y": 295, + "index": 0, + "body": { + "#": 4362 + }, + "isInternal": false + }, + { + "x": 600, + "y": 295, + "index": 1, + "body": { + "#": 4362 + }, + "isInternal": false + }, + { + "x": 600, + "y": 320, + "index": 2, + "body": { + "#": 4362 + }, + "isInternal": false + }, + { + "x": 575, + "y": 320, + "index": 3, + "body": { + "#": 4362 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4376 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4378 + }, + "max": { + "#": 4379 + } + }, + { + "x": 575, + "y": 295 + }, + { + "x": 600, + "y": 320 + }, + { + "x": 587.5, + "y": 307.5 + }, + [ + { + "#": 4382 + }, + { + "#": 4383 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 200, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4385 + }, + "angle": 0, + "vertices": { + "#": 4386 + }, + "position": { + "#": 4391 + }, + "force": { + "#": 4392 + }, + "torque": 0, + "positionImpulse": { + "#": 4393 + }, + "constraintImpulse": { + "#": 4394 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4395 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4396 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4397 + }, + "bounds": { + "#": 4399 + }, + "positionPrev": { + "#": 4402 + }, + "anglePrev": 0, + "axes": { + "#": 4403 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4384 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4384 + } + ], + [ + { + "#": 4387 + }, + { + "#": 4388 + }, + { + "#": 4389 + }, + { + "#": 4390 + } + ], + { + "x": 600, + "y": 295, + "index": 0, + "body": { + "#": 4384 + }, + "isInternal": false + }, + { + "x": 625, + "y": 295, + "index": 1, + "body": { + "#": 4384 + }, + "isInternal": false + }, + { + "x": 625, + "y": 320, + "index": 2, + "body": { + "#": 4384 + }, + "isInternal": false + }, + { + "x": 600, + "y": 320, + "index": 3, + "body": { + "#": 4384 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4398 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4400 + }, + "max": { + "#": 4401 + } + }, + { + "x": 600, + "y": 295 + }, + { + "x": 625, + "y": 320 + }, + { + "x": 612.5, + "y": 307.5 + }, + [ + { + "#": 4404 + }, + { + "#": 4405 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 201, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4407 + }, + "angle": 0, + "vertices": { + "#": 4408 + }, + "position": { + "#": 4413 + }, + "force": { + "#": 4414 + }, + "torque": 0, + "positionImpulse": { + "#": 4415 + }, + "constraintImpulse": { + "#": 4416 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4417 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4418 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4419 + }, + "bounds": { + "#": 4421 + }, + "positionPrev": { + "#": 4424 + }, + "anglePrev": 0, + "axes": { + "#": 4425 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4406 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4406 + } + ], + [ + { + "#": 4409 + }, + { + "#": 4410 + }, + { + "#": 4411 + }, + { + "#": 4412 + } + ], + { + "x": 625, + "y": 295, + "index": 0, + "body": { + "#": 4406 + }, + "isInternal": false + }, + { + "x": 650, + "y": 295, + "index": 1, + "body": { + "#": 4406 + }, + "isInternal": false + }, + { + "x": 650, + "y": 320, + "index": 2, + "body": { + "#": 4406 + }, + "isInternal": false + }, + { + "x": 625, + "y": 320, + "index": 3, + "body": { + "#": 4406 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4420 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4422 + }, + "max": { + "#": 4423 + } + }, + { + "x": 625, + "y": 295 + }, + { + "x": 650, + "y": 320 + }, + { + "x": 637.5, + "y": 307.5 + }, + [ + { + "#": 4426 + }, + { + "#": 4427 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 202, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4429 + }, + "angle": 0, + "vertices": { + "#": 4430 + }, + "position": { + "#": 4435 + }, + "force": { + "#": 4436 + }, + "torque": 0, + "positionImpulse": { + "#": 4437 + }, + "constraintImpulse": { + "#": 4438 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4439 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4440 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4441 + }, + "bounds": { + "#": 4443 + }, + "positionPrev": { + "#": 4446 + }, + "anglePrev": 0, + "axes": { + "#": 4447 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4428 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4428 + } + ], + [ + { + "#": 4431 + }, + { + "#": 4432 + }, + { + "#": 4433 + }, + { + "#": 4434 + } + ], + { + "x": 650, + "y": 295, + "index": 0, + "body": { + "#": 4428 + }, + "isInternal": false + }, + { + "x": 675, + "y": 295, + "index": 1, + "body": { + "#": 4428 + }, + "isInternal": false + }, + { + "x": 675, + "y": 320, + "index": 2, + "body": { + "#": 4428 + }, + "isInternal": false + }, + { + "x": 650, + "y": 320, + "index": 3, + "body": { + "#": 4428 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4442 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4444 + }, + "max": { + "#": 4445 + } + }, + { + "x": 650, + "y": 295 + }, + { + "x": 675, + "y": 320 + }, + { + "x": 662.5, + "y": 307.5 + }, + [ + { + "#": 4448 + }, + { + "#": 4449 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 203, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4451 + }, + "angle": 0, + "vertices": { + "#": 4452 + }, + "position": { + "#": 4457 + }, + "force": { + "#": 4458 + }, + "torque": 0, + "positionImpulse": { + "#": 4459 + }, + "constraintImpulse": { + "#": 4460 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4461 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4462 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4463 + }, + "bounds": { + "#": 4465 + }, + "positionPrev": { + "#": 4468 + }, + "anglePrev": 0, + "axes": { + "#": 4469 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4450 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4450 + } + ], + [ + { + "#": 4453 + }, + { + "#": 4454 + }, + { + "#": 4455 + }, + { + "#": 4456 + } + ], + { + "x": 675, + "y": 295, + "index": 0, + "body": { + "#": 4450 + }, + "isInternal": false + }, + { + "x": 700, + "y": 295, + "index": 1, + "body": { + "#": 4450 + }, + "isInternal": false + }, + { + "x": 700, + "y": 320, + "index": 2, + "body": { + "#": 4450 + }, + "isInternal": false + }, + { + "x": 675, + "y": 320, + "index": 3, + "body": { + "#": 4450 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4464 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4466 + }, + "max": { + "#": 4467 + } + }, + { + "x": 675, + "y": 295 + }, + { + "x": 700, + "y": 320 + }, + { + "x": 687.5, + "y": 307.5 + }, + [ + { + "#": 4470 + }, + { + "#": 4471 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 204, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4473 + }, + "angle": 0, + "vertices": { + "#": 4474 + }, + "position": { + "#": 4479 + }, + "force": { + "#": 4480 + }, + "torque": 0, + "positionImpulse": { + "#": 4481 + }, + "constraintImpulse": { + "#": 4482 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4483 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4484 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4485 + }, + "bounds": { + "#": 4487 + }, + "positionPrev": { + "#": 4490 + }, + "anglePrev": 0, + "axes": { + "#": 4491 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4472 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4472 + } + ], + [ + { + "#": 4475 + }, + { + "#": 4476 + }, + { + "#": 4477 + }, + { + "#": 4478 + } + ], + { + "x": 700, + "y": 295, + "index": 0, + "body": { + "#": 4472 + }, + "isInternal": false + }, + { + "x": 725, + "y": 295, + "index": 1, + "body": { + "#": 4472 + }, + "isInternal": false + }, + { + "x": 725, + "y": 320, + "index": 2, + "body": { + "#": 4472 + }, + "isInternal": false + }, + { + "x": 700, + "y": 320, + "index": 3, + "body": { + "#": 4472 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 307.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4486 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4488 + }, + "max": { + "#": 4489 + } + }, + { + "x": 700, + "y": 295 + }, + { + "x": 725, + "y": 320 + }, + { + "x": 712.5, + "y": 307.5 + }, + [ + { + "#": 4492 + }, + { + "#": 4493 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 205, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4495 + }, + "angle": 0, + "vertices": { + "#": 4496 + }, + "position": { + "#": 4501 + }, + "force": { + "#": 4502 + }, + "torque": 0, + "positionImpulse": { + "#": 4503 + }, + "constraintImpulse": { + "#": 4504 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4505 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4506 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4507 + }, + "bounds": { + "#": 4509 + }, + "positionPrev": { + "#": 4512 + }, + "anglePrev": 0, + "axes": { + "#": 4513 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4494 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4494 + } + ], + [ + { + "#": 4497 + }, + { + "#": 4498 + }, + { + "#": 4499 + }, + { + "#": 4500 + } + ], + { + "x": 100, + "y": 320, + "index": 0, + "body": { + "#": 4494 + }, + "isInternal": false + }, + { + "x": 125, + "y": 320, + "index": 1, + "body": { + "#": 4494 + }, + "isInternal": false + }, + { + "x": 125, + "y": 345, + "index": 2, + "body": { + "#": 4494 + }, + "isInternal": false + }, + { + "x": 100, + "y": 345, + "index": 3, + "body": { + "#": 4494 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4508 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4510 + }, + "max": { + "#": 4511 + } + }, + { + "x": 100, + "y": 320 + }, + { + "x": 125, + "y": 345 + }, + { + "x": 112.5, + "y": 332.5 + }, + [ + { + "#": 4514 + }, + { + "#": 4515 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 206, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4517 + }, + "angle": 0, + "vertices": { + "#": 4518 + }, + "position": { + "#": 4523 + }, + "force": { + "#": 4524 + }, + "torque": 0, + "positionImpulse": { + "#": 4525 + }, + "constraintImpulse": { + "#": 4526 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4527 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4528 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4529 + }, + "bounds": { + "#": 4531 + }, + "positionPrev": { + "#": 4534 + }, + "anglePrev": 0, + "axes": { + "#": 4535 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4516 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4516 + } + ], + [ + { + "#": 4519 + }, + { + "#": 4520 + }, + { + "#": 4521 + }, + { + "#": 4522 + } + ], + { + "x": 125, + "y": 320, + "index": 0, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 150, + "y": 320, + "index": 1, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 150, + "y": 345, + "index": 2, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 125, + "y": 345, + "index": 3, + "body": { + "#": 4516 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4530 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4532 + }, + "max": { + "#": 4533 + } + }, + { + "x": 125, + "y": 320 + }, + { + "x": 150, + "y": 345 + }, + { + "x": 137.5, + "y": 332.5 + }, + [ + { + "#": 4536 + }, + { + "#": 4537 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 207, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4539 + }, + "angle": 0, + "vertices": { + "#": 4540 + }, + "position": { + "#": 4545 + }, + "force": { + "#": 4546 + }, + "torque": 0, + "positionImpulse": { + "#": 4547 + }, + "constraintImpulse": { + "#": 4548 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4549 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4550 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4551 + }, + "bounds": { + "#": 4553 + }, + "positionPrev": { + "#": 4556 + }, + "anglePrev": 0, + "axes": { + "#": 4557 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4538 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4538 + } + ], + [ + { + "#": 4541 + }, + { + "#": 4542 + }, + { + "#": 4543 + }, + { + "#": 4544 + } + ], + { + "x": 150, + "y": 320, + "index": 0, + "body": { + "#": 4538 + }, + "isInternal": false + }, + { + "x": 175, + "y": 320, + "index": 1, + "body": { + "#": 4538 + }, + "isInternal": false + }, + { + "x": 175, + "y": 345, + "index": 2, + "body": { + "#": 4538 + }, + "isInternal": false + }, + { + "x": 150, + "y": 345, + "index": 3, + "body": { + "#": 4538 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4552 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4554 + }, + "max": { + "#": 4555 + } + }, + { + "x": 150, + "y": 320 + }, + { + "x": 175, + "y": 345 + }, + { + "x": 162.5, + "y": 332.5 + }, + [ + { + "#": 4558 + }, + { + "#": 4559 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 208, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4561 + }, + "angle": 0, + "vertices": { + "#": 4562 + }, + "position": { + "#": 4567 + }, + "force": { + "#": 4568 + }, + "torque": 0, + "positionImpulse": { + "#": 4569 + }, + "constraintImpulse": { + "#": 4570 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4571 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4572 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4573 + }, + "bounds": { + "#": 4575 + }, + "positionPrev": { + "#": 4578 + }, + "anglePrev": 0, + "axes": { + "#": 4579 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4560 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4560 + } + ], + [ + { + "#": 4563 + }, + { + "#": 4564 + }, + { + "#": 4565 + }, + { + "#": 4566 + } + ], + { + "x": 175, + "y": 320, + "index": 0, + "body": { + "#": 4560 + }, + "isInternal": false + }, + { + "x": 200, + "y": 320, + "index": 1, + "body": { + "#": 4560 + }, + "isInternal": false + }, + { + "x": 200, + "y": 345, + "index": 2, + "body": { + "#": 4560 + }, + "isInternal": false + }, + { + "x": 175, + "y": 345, + "index": 3, + "body": { + "#": 4560 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4574 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4576 + }, + "max": { + "#": 4577 + } + }, + { + "x": 175, + "y": 320 + }, + { + "x": 200, + "y": 345 + }, + { + "x": 187.5, + "y": 332.5 + }, + [ + { + "#": 4580 + }, + { + "#": 4581 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 209, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4583 + }, + "angle": 0, + "vertices": { + "#": 4584 + }, + "position": { + "#": 4589 + }, + "force": { + "#": 4590 + }, + "torque": 0, + "positionImpulse": { + "#": 4591 + }, + "constraintImpulse": { + "#": 4592 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4593 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4594 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4595 + }, + "bounds": { + "#": 4597 + }, + "positionPrev": { + "#": 4600 + }, + "anglePrev": 0, + "axes": { + "#": 4601 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4582 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4582 + } + ], + [ + { + "#": 4585 + }, + { + "#": 4586 + }, + { + "#": 4587 + }, + { + "#": 4588 + } + ], + { + "x": 200, + "y": 320, + "index": 0, + "body": { + "#": 4582 + }, + "isInternal": false + }, + { + "x": 225, + "y": 320, + "index": 1, + "body": { + "#": 4582 + }, + "isInternal": false + }, + { + "x": 225, + "y": 345, + "index": 2, + "body": { + "#": 4582 + }, + "isInternal": false + }, + { + "x": 200, + "y": 345, + "index": 3, + "body": { + "#": 4582 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4596 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4598 + }, + "max": { + "#": 4599 + } + }, + { + "x": 200, + "y": 320 + }, + { + "x": 225, + "y": 345 + }, + { + "x": 212.5, + "y": 332.5 + }, + [ + { + "#": 4602 + }, + { + "#": 4603 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 210, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4605 + }, + "angle": 0, + "vertices": { + "#": 4606 + }, + "position": { + "#": 4611 + }, + "force": { + "#": 4612 + }, + "torque": 0, + "positionImpulse": { + "#": 4613 + }, + "constraintImpulse": { + "#": 4614 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4615 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4616 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4617 + }, + "bounds": { + "#": 4619 + }, + "positionPrev": { + "#": 4622 + }, + "anglePrev": 0, + "axes": { + "#": 4623 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4604 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4604 + } + ], + [ + { + "#": 4607 + }, + { + "#": 4608 + }, + { + "#": 4609 + }, + { + "#": 4610 + } + ], + { + "x": 225, + "y": 320, + "index": 0, + "body": { + "#": 4604 + }, + "isInternal": false + }, + { + "x": 250, + "y": 320, + "index": 1, + "body": { + "#": 4604 + }, + "isInternal": false + }, + { + "x": 250, + "y": 345, + "index": 2, + "body": { + "#": 4604 + }, + "isInternal": false + }, + { + "x": 225, + "y": 345, + "index": 3, + "body": { + "#": 4604 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4618 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4620 + }, + "max": { + "#": 4621 + } + }, + { + "x": 225, + "y": 320 + }, + { + "x": 250, + "y": 345 + }, + { + "x": 237.5, + "y": 332.5 + }, + [ + { + "#": 4624 + }, + { + "#": 4625 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 211, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4627 + }, + "angle": 0, + "vertices": { + "#": 4628 + }, + "position": { + "#": 4633 + }, + "force": { + "#": 4634 + }, + "torque": 0, + "positionImpulse": { + "#": 4635 + }, + "constraintImpulse": { + "#": 4636 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4637 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4638 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4639 + }, + "bounds": { + "#": 4641 + }, + "positionPrev": { + "#": 4644 + }, + "anglePrev": 0, + "axes": { + "#": 4645 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4626 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4626 + } + ], + [ + { + "#": 4629 + }, + { + "#": 4630 + }, + { + "#": 4631 + }, + { + "#": 4632 + } + ], + { + "x": 250, + "y": 320, + "index": 0, + "body": { + "#": 4626 + }, + "isInternal": false + }, + { + "x": 275, + "y": 320, + "index": 1, + "body": { + "#": 4626 + }, + "isInternal": false + }, + { + "x": 275, + "y": 345, + "index": 2, + "body": { + "#": 4626 + }, + "isInternal": false + }, + { + "x": 250, + "y": 345, + "index": 3, + "body": { + "#": 4626 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4640 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4642 + }, + "max": { + "#": 4643 + } + }, + { + "x": 250, + "y": 320 + }, + { + "x": 275, + "y": 345 + }, + { + "x": 262.5, + "y": 332.5 + }, + [ + { + "#": 4646 + }, + { + "#": 4647 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 212, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4649 + }, + "angle": 0, + "vertices": { + "#": 4650 + }, + "position": { + "#": 4655 + }, + "force": { + "#": 4656 + }, + "torque": 0, + "positionImpulse": { + "#": 4657 + }, + "constraintImpulse": { + "#": 4658 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4659 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4660 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4661 + }, + "bounds": { + "#": 4663 + }, + "positionPrev": { + "#": 4666 + }, + "anglePrev": 0, + "axes": { + "#": 4667 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4648 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4648 + } + ], + [ + { + "#": 4651 + }, + { + "#": 4652 + }, + { + "#": 4653 + }, + { + "#": 4654 + } + ], + { + "x": 275, + "y": 320, + "index": 0, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 300, + "y": 320, + "index": 1, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 300, + "y": 345, + "index": 2, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 275, + "y": 345, + "index": 3, + "body": { + "#": 4648 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4662 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4664 + }, + "max": { + "#": 4665 + } + }, + { + "x": 275, + "y": 320 + }, + { + "x": 300, + "y": 345 + }, + { + "x": 287.5, + "y": 332.5 + }, + [ + { + "#": 4668 + }, + { + "#": 4669 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 213, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4671 + }, + "angle": 0, + "vertices": { + "#": 4672 + }, + "position": { + "#": 4677 + }, + "force": { + "#": 4678 + }, + "torque": 0, + "positionImpulse": { + "#": 4679 + }, + "constraintImpulse": { + "#": 4680 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4681 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4682 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4683 + }, + "bounds": { + "#": 4685 + }, + "positionPrev": { + "#": 4688 + }, + "anglePrev": 0, + "axes": { + "#": 4689 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4670 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4670 + } + ], + [ + { + "#": 4673 + }, + { + "#": 4674 + }, + { + "#": 4675 + }, + { + "#": 4676 + } + ], + { + "x": 300, + "y": 320, + "index": 0, + "body": { + "#": 4670 + }, + "isInternal": false + }, + { + "x": 325, + "y": 320, + "index": 1, + "body": { + "#": 4670 + }, + "isInternal": false + }, + { + "x": 325, + "y": 345, + "index": 2, + "body": { + "#": 4670 + }, + "isInternal": false + }, + { + "x": 300, + "y": 345, + "index": 3, + "body": { + "#": 4670 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4684 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4686 + }, + "max": { + "#": 4687 + } + }, + { + "x": 300, + "y": 320 + }, + { + "x": 325, + "y": 345 + }, + { + "x": 312.5, + "y": 332.5 + }, + [ + { + "#": 4690 + }, + { + "#": 4691 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 214, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4693 + }, + "angle": 0, + "vertices": { + "#": 4694 + }, + "position": { + "#": 4699 + }, + "force": { + "#": 4700 + }, + "torque": 0, + "positionImpulse": { + "#": 4701 + }, + "constraintImpulse": { + "#": 4702 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4703 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4704 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4705 + }, + "bounds": { + "#": 4707 + }, + "positionPrev": { + "#": 4710 + }, + "anglePrev": 0, + "axes": { + "#": 4711 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4692 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4692 + } + ], + [ + { + "#": 4695 + }, + { + "#": 4696 + }, + { + "#": 4697 + }, + { + "#": 4698 + } + ], + { + "x": 325, + "y": 320, + "index": 0, + "body": { + "#": 4692 + }, + "isInternal": false + }, + { + "x": 350, + "y": 320, + "index": 1, + "body": { + "#": 4692 + }, + "isInternal": false + }, + { + "x": 350, + "y": 345, + "index": 2, + "body": { + "#": 4692 + }, + "isInternal": false + }, + { + "x": 325, + "y": 345, + "index": 3, + "body": { + "#": 4692 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4706 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4708 + }, + "max": { + "#": 4709 + } + }, + { + "x": 325, + "y": 320 + }, + { + "x": 350, + "y": 345 + }, + { + "x": 337.5, + "y": 332.5 + }, + [ + { + "#": 4712 + }, + { + "#": 4713 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 215, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4715 + }, + "angle": 0, + "vertices": { + "#": 4716 + }, + "position": { + "#": 4721 + }, + "force": { + "#": 4722 + }, + "torque": 0, + "positionImpulse": { + "#": 4723 + }, + "constraintImpulse": { + "#": 4724 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4725 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4726 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4727 + }, + "bounds": { + "#": 4729 + }, + "positionPrev": { + "#": 4732 + }, + "anglePrev": 0, + "axes": { + "#": 4733 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4714 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4714 + } + ], + [ + { + "#": 4717 + }, + { + "#": 4718 + }, + { + "#": 4719 + }, + { + "#": 4720 + } + ], + { + "x": 350, + "y": 320, + "index": 0, + "body": { + "#": 4714 + }, + "isInternal": false + }, + { + "x": 375, + "y": 320, + "index": 1, + "body": { + "#": 4714 + }, + "isInternal": false + }, + { + "x": 375, + "y": 345, + "index": 2, + "body": { + "#": 4714 + }, + "isInternal": false + }, + { + "x": 350, + "y": 345, + "index": 3, + "body": { + "#": 4714 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4728 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4730 + }, + "max": { + "#": 4731 + } + }, + { + "x": 350, + "y": 320 + }, + { + "x": 375, + "y": 345 + }, + { + "x": 362.5, + "y": 332.5 + }, + [ + { + "#": 4734 + }, + { + "#": 4735 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 216, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4737 + }, + "angle": 0, + "vertices": { + "#": 4738 + }, + "position": { + "#": 4743 + }, + "force": { + "#": 4744 + }, + "torque": 0, + "positionImpulse": { + "#": 4745 + }, + "constraintImpulse": { + "#": 4746 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4747 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4748 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4749 + }, + "bounds": { + "#": 4751 + }, + "positionPrev": { + "#": 4754 + }, + "anglePrev": 0, + "axes": { + "#": 4755 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4736 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4736 + } + ], + [ + { + "#": 4739 + }, + { + "#": 4740 + }, + { + "#": 4741 + }, + { + "#": 4742 + } + ], + { + "x": 375, + "y": 320, + "index": 0, + "body": { + "#": 4736 + }, + "isInternal": false + }, + { + "x": 400, + "y": 320, + "index": 1, + "body": { + "#": 4736 + }, + "isInternal": false + }, + { + "x": 400, + "y": 345, + "index": 2, + "body": { + "#": 4736 + }, + "isInternal": false + }, + { + "x": 375, + "y": 345, + "index": 3, + "body": { + "#": 4736 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4750 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4752 + }, + "max": { + "#": 4753 + } + }, + { + "x": 375, + "y": 320 + }, + { + "x": 400, + "y": 345 + }, + { + "x": 387.5, + "y": 332.5 + }, + [ + { + "#": 4756 + }, + { + "#": 4757 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 217, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4759 + }, + "angle": 0, + "vertices": { + "#": 4760 + }, + "position": { + "#": 4765 + }, + "force": { + "#": 4766 + }, + "torque": 0, + "positionImpulse": { + "#": 4767 + }, + "constraintImpulse": { + "#": 4768 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4769 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4770 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4771 + }, + "bounds": { + "#": 4773 + }, + "positionPrev": { + "#": 4776 + }, + "anglePrev": 0, + "axes": { + "#": 4777 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4758 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4758 + } + ], + [ + { + "#": 4761 + }, + { + "#": 4762 + }, + { + "#": 4763 + }, + { + "#": 4764 + } + ], + { + "x": 400, + "y": 320, + "index": 0, + "body": { + "#": 4758 + }, + "isInternal": false + }, + { + "x": 425, + "y": 320, + "index": 1, + "body": { + "#": 4758 + }, + "isInternal": false + }, + { + "x": 425, + "y": 345, + "index": 2, + "body": { + "#": 4758 + }, + "isInternal": false + }, + { + "x": 400, + "y": 345, + "index": 3, + "body": { + "#": 4758 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4772 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4774 + }, + "max": { + "#": 4775 + } + }, + { + "x": 400, + "y": 320 + }, + { + "x": 425, + "y": 345 + }, + { + "x": 412.5, + "y": 332.5 + }, + [ + { + "#": 4778 + }, + { + "#": 4779 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 218, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4781 + }, + "angle": 0, + "vertices": { + "#": 4782 + }, + "position": { + "#": 4787 + }, + "force": { + "#": 4788 + }, + "torque": 0, + "positionImpulse": { + "#": 4789 + }, + "constraintImpulse": { + "#": 4790 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4791 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4792 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4793 + }, + "bounds": { + "#": 4795 + }, + "positionPrev": { + "#": 4798 + }, + "anglePrev": 0, + "axes": { + "#": 4799 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4780 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4780 + } + ], + [ + { + "#": 4783 + }, + { + "#": 4784 + }, + { + "#": 4785 + }, + { + "#": 4786 + } + ], + { + "x": 425, + "y": 320, + "index": 0, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 450, + "y": 320, + "index": 1, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 450, + "y": 345, + "index": 2, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 425, + "y": 345, + "index": 3, + "body": { + "#": 4780 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4794 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4796 + }, + "max": { + "#": 4797 + } + }, + { + "x": 425, + "y": 320 + }, + { + "x": 450, + "y": 345 + }, + { + "x": 437.5, + "y": 332.5 + }, + [ + { + "#": 4800 + }, + { + "#": 4801 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 219, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4803 + }, + "angle": 0, + "vertices": { + "#": 4804 + }, + "position": { + "#": 4809 + }, + "force": { + "#": 4810 + }, + "torque": 0, + "positionImpulse": { + "#": 4811 + }, + "constraintImpulse": { + "#": 4812 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4813 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4814 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4815 + }, + "bounds": { + "#": 4817 + }, + "positionPrev": { + "#": 4820 + }, + "anglePrev": 0, + "axes": { + "#": 4821 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4802 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4802 + } + ], + [ + { + "#": 4805 + }, + { + "#": 4806 + }, + { + "#": 4807 + }, + { + "#": 4808 + } + ], + { + "x": 450, + "y": 320, + "index": 0, + "body": { + "#": 4802 + }, + "isInternal": false + }, + { + "x": 475, + "y": 320, + "index": 1, + "body": { + "#": 4802 + }, + "isInternal": false + }, + { + "x": 475, + "y": 345, + "index": 2, + "body": { + "#": 4802 + }, + "isInternal": false + }, + { + "x": 450, + "y": 345, + "index": 3, + "body": { + "#": 4802 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4816 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4818 + }, + "max": { + "#": 4819 + } + }, + { + "x": 450, + "y": 320 + }, + { + "x": 475, + "y": 345 + }, + { + "x": 462.5, + "y": 332.5 + }, + [ + { + "#": 4822 + }, + { + "#": 4823 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 220, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4825 + }, + "angle": 0, + "vertices": { + "#": 4826 + }, + "position": { + "#": 4831 + }, + "force": { + "#": 4832 + }, + "torque": 0, + "positionImpulse": { + "#": 4833 + }, + "constraintImpulse": { + "#": 4834 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4835 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4836 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4837 + }, + "bounds": { + "#": 4839 + }, + "positionPrev": { + "#": 4842 + }, + "anglePrev": 0, + "axes": { + "#": 4843 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4824 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4824 + } + ], + [ + { + "#": 4827 + }, + { + "#": 4828 + }, + { + "#": 4829 + }, + { + "#": 4830 + } + ], + { + "x": 475, + "y": 320, + "index": 0, + "body": { + "#": 4824 + }, + "isInternal": false + }, + { + "x": 500, + "y": 320, + "index": 1, + "body": { + "#": 4824 + }, + "isInternal": false + }, + { + "x": 500, + "y": 345, + "index": 2, + "body": { + "#": 4824 + }, + "isInternal": false + }, + { + "x": 475, + "y": 345, + "index": 3, + "body": { + "#": 4824 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4838 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4840 + }, + "max": { + "#": 4841 + } + }, + { + "x": 475, + "y": 320 + }, + { + "x": 500, + "y": 345 + }, + { + "x": 487.5, + "y": 332.5 + }, + [ + { + "#": 4844 + }, + { + "#": 4845 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 221, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4847 + }, + "angle": 0, + "vertices": { + "#": 4848 + }, + "position": { + "#": 4853 + }, + "force": { + "#": 4854 + }, + "torque": 0, + "positionImpulse": { + "#": 4855 + }, + "constraintImpulse": { + "#": 4856 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4857 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4858 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4859 + }, + "bounds": { + "#": 4861 + }, + "positionPrev": { + "#": 4864 + }, + "anglePrev": 0, + "axes": { + "#": 4865 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4846 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4846 + } + ], + [ + { + "#": 4849 + }, + { + "#": 4850 + }, + { + "#": 4851 + }, + { + "#": 4852 + } + ], + { + "x": 500, + "y": 320, + "index": 0, + "body": { + "#": 4846 + }, + "isInternal": false + }, + { + "x": 525, + "y": 320, + "index": 1, + "body": { + "#": 4846 + }, + "isInternal": false + }, + { + "x": 525, + "y": 345, + "index": 2, + "body": { + "#": 4846 + }, + "isInternal": false + }, + { + "x": 500, + "y": 345, + "index": 3, + "body": { + "#": 4846 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4860 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4862 + }, + "max": { + "#": 4863 + } + }, + { + "x": 500, + "y": 320 + }, + { + "x": 525, + "y": 345 + }, + { + "x": 512.5, + "y": 332.5 + }, + [ + { + "#": 4866 + }, + { + "#": 4867 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 222, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4869 + }, + "angle": 0, + "vertices": { + "#": 4870 + }, + "position": { + "#": 4875 + }, + "force": { + "#": 4876 + }, + "torque": 0, + "positionImpulse": { + "#": 4877 + }, + "constraintImpulse": { + "#": 4878 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4879 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4880 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4881 + }, + "bounds": { + "#": 4883 + }, + "positionPrev": { + "#": 4886 + }, + "anglePrev": 0, + "axes": { + "#": 4887 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4868 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4868 + } + ], + [ + { + "#": 4871 + }, + { + "#": 4872 + }, + { + "#": 4873 + }, + { + "#": 4874 + } + ], + { + "x": 525, + "y": 320, + "index": 0, + "body": { + "#": 4868 + }, + "isInternal": false + }, + { + "x": 550, + "y": 320, + "index": 1, + "body": { + "#": 4868 + }, + "isInternal": false + }, + { + "x": 550, + "y": 345, + "index": 2, + "body": { + "#": 4868 + }, + "isInternal": false + }, + { + "x": 525, + "y": 345, + "index": 3, + "body": { + "#": 4868 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4882 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4884 + }, + "max": { + "#": 4885 + } + }, + { + "x": 525, + "y": 320 + }, + { + "x": 550, + "y": 345 + }, + { + "x": 537.5, + "y": 332.5 + }, + [ + { + "#": 4888 + }, + { + "#": 4889 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 223, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4891 + }, + "angle": 0, + "vertices": { + "#": 4892 + }, + "position": { + "#": 4897 + }, + "force": { + "#": 4898 + }, + "torque": 0, + "positionImpulse": { + "#": 4899 + }, + "constraintImpulse": { + "#": 4900 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4901 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4902 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4903 + }, + "bounds": { + "#": 4905 + }, + "positionPrev": { + "#": 4908 + }, + "anglePrev": 0, + "axes": { + "#": 4909 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4890 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4890 + } + ], + [ + { + "#": 4893 + }, + { + "#": 4894 + }, + { + "#": 4895 + }, + { + "#": 4896 + } + ], + { + "x": 550, + "y": 320, + "index": 0, + "body": { + "#": 4890 + }, + "isInternal": false + }, + { + "x": 575, + "y": 320, + "index": 1, + "body": { + "#": 4890 + }, + "isInternal": false + }, + { + "x": 575, + "y": 345, + "index": 2, + "body": { + "#": 4890 + }, + "isInternal": false + }, + { + "x": 550, + "y": 345, + "index": 3, + "body": { + "#": 4890 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4904 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4906 + }, + "max": { + "#": 4907 + } + }, + { + "x": 550, + "y": 320 + }, + { + "x": 575, + "y": 345 + }, + { + "x": 562.5, + "y": 332.5 + }, + [ + { + "#": 4910 + }, + { + "#": 4911 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 224, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4913 + }, + "angle": 0, + "vertices": { + "#": 4914 + }, + "position": { + "#": 4919 + }, + "force": { + "#": 4920 + }, + "torque": 0, + "positionImpulse": { + "#": 4921 + }, + "constraintImpulse": { + "#": 4922 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4923 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4924 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4925 + }, + "bounds": { + "#": 4927 + }, + "positionPrev": { + "#": 4930 + }, + "anglePrev": 0, + "axes": { + "#": 4931 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4912 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4912 + } + ], + [ + { + "#": 4915 + }, + { + "#": 4916 + }, + { + "#": 4917 + }, + { + "#": 4918 + } + ], + { + "x": 575, + "y": 320, + "index": 0, + "body": { + "#": 4912 + }, + "isInternal": false + }, + { + "x": 600, + "y": 320, + "index": 1, + "body": { + "#": 4912 + }, + "isInternal": false + }, + { + "x": 600, + "y": 345, + "index": 2, + "body": { + "#": 4912 + }, + "isInternal": false + }, + { + "x": 575, + "y": 345, + "index": 3, + "body": { + "#": 4912 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4926 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4928 + }, + "max": { + "#": 4929 + } + }, + { + "x": 575, + "y": 320 + }, + { + "x": 600, + "y": 345 + }, + { + "x": 587.5, + "y": 332.5 + }, + [ + { + "#": 4932 + }, + { + "#": 4933 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 225, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4935 + }, + "angle": 0, + "vertices": { + "#": 4936 + }, + "position": { + "#": 4941 + }, + "force": { + "#": 4942 + }, + "torque": 0, + "positionImpulse": { + "#": 4943 + }, + "constraintImpulse": { + "#": 4944 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4945 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4946 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4947 + }, + "bounds": { + "#": 4949 + }, + "positionPrev": { + "#": 4952 + }, + "anglePrev": 0, + "axes": { + "#": 4953 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4934 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4934 + } + ], + [ + { + "#": 4937 + }, + { + "#": 4938 + }, + { + "#": 4939 + }, + { + "#": 4940 + } + ], + { + "x": 600, + "y": 320, + "index": 0, + "body": { + "#": 4934 + }, + "isInternal": false + }, + { + "x": 625, + "y": 320, + "index": 1, + "body": { + "#": 4934 + }, + "isInternal": false + }, + { + "x": 625, + "y": 345, + "index": 2, + "body": { + "#": 4934 + }, + "isInternal": false + }, + { + "x": 600, + "y": 345, + "index": 3, + "body": { + "#": 4934 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4948 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4950 + }, + "max": { + "#": 4951 + } + }, + { + "x": 600, + "y": 320 + }, + { + "x": 625, + "y": 345 + }, + { + "x": 612.5, + "y": 332.5 + }, + [ + { + "#": 4954 + }, + { + "#": 4955 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 226, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4957 + }, + "angle": 0, + "vertices": { + "#": 4958 + }, + "position": { + "#": 4963 + }, + "force": { + "#": 4964 + }, + "torque": 0, + "positionImpulse": { + "#": 4965 + }, + "constraintImpulse": { + "#": 4966 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4967 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4968 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4969 + }, + "bounds": { + "#": 4971 + }, + "positionPrev": { + "#": 4974 + }, + "anglePrev": 0, + "axes": { + "#": 4975 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4956 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4956 + } + ], + [ + { + "#": 4959 + }, + { + "#": 4960 + }, + { + "#": 4961 + }, + { + "#": 4962 + } + ], + { + "x": 625, + "y": 320, + "index": 0, + "body": { + "#": 4956 + }, + "isInternal": false + }, + { + "x": 650, + "y": 320, + "index": 1, + "body": { + "#": 4956 + }, + "isInternal": false + }, + { + "x": 650, + "y": 345, + "index": 2, + "body": { + "#": 4956 + }, + "isInternal": false + }, + { + "x": 625, + "y": 345, + "index": 3, + "body": { + "#": 4956 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4970 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4972 + }, + "max": { + "#": 4973 + } + }, + { + "x": 625, + "y": 320 + }, + { + "x": 650, + "y": 345 + }, + { + "x": 637.5, + "y": 332.5 + }, + [ + { + "#": 4976 + }, + { + "#": 4977 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 227, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4979 + }, + "angle": 0, + "vertices": { + "#": 4980 + }, + "position": { + "#": 4985 + }, + "force": { + "#": 4986 + }, + "torque": 0, + "positionImpulse": { + "#": 4987 + }, + "constraintImpulse": { + "#": 4988 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 4989 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4990 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4991 + }, + "bounds": { + "#": 4993 + }, + "positionPrev": { + "#": 4996 + }, + "anglePrev": 0, + "axes": { + "#": 4997 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4978 + }, + "sleepCounter": 0 + }, + [ + { + "#": 4978 + } + ], + [ + { + "#": 4981 + }, + { + "#": 4982 + }, + { + "#": 4983 + }, + { + "#": 4984 + } + ], + { + "x": 650, + "y": 320, + "index": 0, + "body": { + "#": 4978 + }, + "isInternal": false + }, + { + "x": 675, + "y": 320, + "index": 1, + "body": { + "#": 4978 + }, + "isInternal": false + }, + { + "x": 675, + "y": 345, + "index": 2, + "body": { + "#": 4978 + }, + "isInternal": false + }, + { + "x": 650, + "y": 345, + "index": 3, + "body": { + "#": 4978 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4992 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4994 + }, + "max": { + "#": 4995 + } + }, + { + "x": 650, + "y": 320 + }, + { + "x": 675, + "y": 345 + }, + { + "x": 662.5, + "y": 332.5 + }, + [ + { + "#": 4998 + }, + { + "#": 4999 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 228, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5001 + }, + "angle": 0, + "vertices": { + "#": 5002 + }, + "position": { + "#": 5007 + }, + "force": { + "#": 5008 + }, + "torque": 0, + "positionImpulse": { + "#": 5009 + }, + "constraintImpulse": { + "#": 5010 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5011 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5012 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5013 + }, + "bounds": { + "#": 5015 + }, + "positionPrev": { + "#": 5018 + }, + "anglePrev": 0, + "axes": { + "#": 5019 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5000 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5000 + } + ], + [ + { + "#": 5003 + }, + { + "#": 5004 + }, + { + "#": 5005 + }, + { + "#": 5006 + } + ], + { + "x": 675, + "y": 320, + "index": 0, + "body": { + "#": 5000 + }, + "isInternal": false + }, + { + "x": 700, + "y": 320, + "index": 1, + "body": { + "#": 5000 + }, + "isInternal": false + }, + { + "x": 700, + "y": 345, + "index": 2, + "body": { + "#": 5000 + }, + "isInternal": false + }, + { + "x": 675, + "y": 345, + "index": 3, + "body": { + "#": 5000 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5014 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5016 + }, + "max": { + "#": 5017 + } + }, + { + "x": 675, + "y": 320 + }, + { + "x": 700, + "y": 345 + }, + { + "x": 687.5, + "y": 332.5 + }, + [ + { + "#": 5020 + }, + { + "#": 5021 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 229, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5023 + }, + "angle": 0, + "vertices": { + "#": 5024 + }, + "position": { + "#": 5029 + }, + "force": { + "#": 5030 + }, + "torque": 0, + "positionImpulse": { + "#": 5031 + }, + "constraintImpulse": { + "#": 5032 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5033 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5034 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5035 + }, + "bounds": { + "#": 5037 + }, + "positionPrev": { + "#": 5040 + }, + "anglePrev": 0, + "axes": { + "#": 5041 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5022 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5022 + } + ], + [ + { + "#": 5025 + }, + { + "#": 5026 + }, + { + "#": 5027 + }, + { + "#": 5028 + } + ], + { + "x": 700, + "y": 320, + "index": 0, + "body": { + "#": 5022 + }, + "isInternal": false + }, + { + "x": 725, + "y": 320, + "index": 1, + "body": { + "#": 5022 + }, + "isInternal": false + }, + { + "x": 725, + "y": 345, + "index": 2, + "body": { + "#": 5022 + }, + "isInternal": false + }, + { + "x": 700, + "y": 345, + "index": 3, + "body": { + "#": 5022 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 332.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5036 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5038 + }, + "max": { + "#": 5039 + } + }, + { + "x": 700, + "y": 320 + }, + { + "x": 725, + "y": 345 + }, + { + "x": 712.5, + "y": 332.5 + }, + [ + { + "#": 5042 + }, + { + "#": 5043 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 230, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5045 + }, + "angle": 0, + "vertices": { + "#": 5046 + }, + "position": { + "#": 5051 + }, + "force": { + "#": 5052 + }, + "torque": 0, + "positionImpulse": { + "#": 5053 + }, + "constraintImpulse": { + "#": 5054 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5055 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5056 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5057 + }, + "bounds": { + "#": 5059 + }, + "positionPrev": { + "#": 5062 + }, + "anglePrev": 0, + "axes": { + "#": 5063 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5044 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5044 + } + ], + [ + { + "#": 5047 + }, + { + "#": 5048 + }, + { + "#": 5049 + }, + { + "#": 5050 + } + ], + { + "x": 100, + "y": 345, + "index": 0, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 125, + "y": 345, + "index": 1, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 125, + "y": 370, + "index": 2, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 100, + "y": 370, + "index": 3, + "body": { + "#": 5044 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5058 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5060 + }, + "max": { + "#": 5061 + } + }, + { + "x": 100, + "y": 345 + }, + { + "x": 125, + "y": 370 + }, + { + "x": 112.5, + "y": 357.5 + }, + [ + { + "#": 5064 + }, + { + "#": 5065 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 231, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5067 + }, + "angle": 0, + "vertices": { + "#": 5068 + }, + "position": { + "#": 5073 + }, + "force": { + "#": 5074 + }, + "torque": 0, + "positionImpulse": { + "#": 5075 + }, + "constraintImpulse": { + "#": 5076 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5077 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5078 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5079 + }, + "bounds": { + "#": 5081 + }, + "positionPrev": { + "#": 5084 + }, + "anglePrev": 0, + "axes": { + "#": 5085 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5066 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5066 + } + ], + [ + { + "#": 5069 + }, + { + "#": 5070 + }, + { + "#": 5071 + }, + { + "#": 5072 + } + ], + { + "x": 125, + "y": 345, + "index": 0, + "body": { + "#": 5066 + }, + "isInternal": false + }, + { + "x": 150, + "y": 345, + "index": 1, + "body": { + "#": 5066 + }, + "isInternal": false + }, + { + "x": 150, + "y": 370, + "index": 2, + "body": { + "#": 5066 + }, + "isInternal": false + }, + { + "x": 125, + "y": 370, + "index": 3, + "body": { + "#": 5066 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5080 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5082 + }, + "max": { + "#": 5083 + } + }, + { + "x": 125, + "y": 345 + }, + { + "x": 150, + "y": 370 + }, + { + "x": 137.5, + "y": 357.5 + }, + [ + { + "#": 5086 + }, + { + "#": 5087 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 232, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5089 + }, + "angle": 0, + "vertices": { + "#": 5090 + }, + "position": { + "#": 5095 + }, + "force": { + "#": 5096 + }, + "torque": 0, + "positionImpulse": { + "#": 5097 + }, + "constraintImpulse": { + "#": 5098 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5099 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5100 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5101 + }, + "bounds": { + "#": 5103 + }, + "positionPrev": { + "#": 5106 + }, + "anglePrev": 0, + "axes": { + "#": 5107 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5088 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5088 + } + ], + [ + { + "#": 5091 + }, + { + "#": 5092 + }, + { + "#": 5093 + }, + { + "#": 5094 + } + ], + { + "x": 150, + "y": 345, + "index": 0, + "body": { + "#": 5088 + }, + "isInternal": false + }, + { + "x": 175, + "y": 345, + "index": 1, + "body": { + "#": 5088 + }, + "isInternal": false + }, + { + "x": 175, + "y": 370, + "index": 2, + "body": { + "#": 5088 + }, + "isInternal": false + }, + { + "x": 150, + "y": 370, + "index": 3, + "body": { + "#": 5088 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5102 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5104 + }, + "max": { + "#": 5105 + } + }, + { + "x": 150, + "y": 345 + }, + { + "x": 175, + "y": 370 + }, + { + "x": 162.5, + "y": 357.5 + }, + [ + { + "#": 5108 + }, + { + "#": 5109 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 233, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5111 + }, + "angle": 0, + "vertices": { + "#": 5112 + }, + "position": { + "#": 5117 + }, + "force": { + "#": 5118 + }, + "torque": 0, + "positionImpulse": { + "#": 5119 + }, + "constraintImpulse": { + "#": 5120 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5121 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5122 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5123 + }, + "bounds": { + "#": 5125 + }, + "positionPrev": { + "#": 5128 + }, + "anglePrev": 0, + "axes": { + "#": 5129 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5110 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5110 + } + ], + [ + { + "#": 5113 + }, + { + "#": 5114 + }, + { + "#": 5115 + }, + { + "#": 5116 + } + ], + { + "x": 175, + "y": 345, + "index": 0, + "body": { + "#": 5110 + }, + "isInternal": false + }, + { + "x": 200, + "y": 345, + "index": 1, + "body": { + "#": 5110 + }, + "isInternal": false + }, + { + "x": 200, + "y": 370, + "index": 2, + "body": { + "#": 5110 + }, + "isInternal": false + }, + { + "x": 175, + "y": 370, + "index": 3, + "body": { + "#": 5110 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5124 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5126 + }, + "max": { + "#": 5127 + } + }, + { + "x": 175, + "y": 345 + }, + { + "x": 200, + "y": 370 + }, + { + "x": 187.5, + "y": 357.5 + }, + [ + { + "#": 5130 + }, + { + "#": 5131 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 234, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5133 + }, + "angle": 0, + "vertices": { + "#": 5134 + }, + "position": { + "#": 5139 + }, + "force": { + "#": 5140 + }, + "torque": 0, + "positionImpulse": { + "#": 5141 + }, + "constraintImpulse": { + "#": 5142 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5143 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5144 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5145 + }, + "bounds": { + "#": 5147 + }, + "positionPrev": { + "#": 5150 + }, + "anglePrev": 0, + "axes": { + "#": 5151 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5132 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5132 + } + ], + [ + { + "#": 5135 + }, + { + "#": 5136 + }, + { + "#": 5137 + }, + { + "#": 5138 + } + ], + { + "x": 200, + "y": 345, + "index": 0, + "body": { + "#": 5132 + }, + "isInternal": false + }, + { + "x": 225, + "y": 345, + "index": 1, + "body": { + "#": 5132 + }, + "isInternal": false + }, + { + "x": 225, + "y": 370, + "index": 2, + "body": { + "#": 5132 + }, + "isInternal": false + }, + { + "x": 200, + "y": 370, + "index": 3, + "body": { + "#": 5132 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5146 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5148 + }, + "max": { + "#": 5149 + } + }, + { + "x": 200, + "y": 345 + }, + { + "x": 225, + "y": 370 + }, + { + "x": 212.5, + "y": 357.5 + }, + [ + { + "#": 5152 + }, + { + "#": 5153 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 235, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5155 + }, + "angle": 0, + "vertices": { + "#": 5156 + }, + "position": { + "#": 5161 + }, + "force": { + "#": 5162 + }, + "torque": 0, + "positionImpulse": { + "#": 5163 + }, + "constraintImpulse": { + "#": 5164 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5165 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5166 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5167 + }, + "bounds": { + "#": 5169 + }, + "positionPrev": { + "#": 5172 + }, + "anglePrev": 0, + "axes": { + "#": 5173 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5154 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5154 + } + ], + [ + { + "#": 5157 + }, + { + "#": 5158 + }, + { + "#": 5159 + }, + { + "#": 5160 + } + ], + { + "x": 225, + "y": 345, + "index": 0, + "body": { + "#": 5154 + }, + "isInternal": false + }, + { + "x": 250, + "y": 345, + "index": 1, + "body": { + "#": 5154 + }, + "isInternal": false + }, + { + "x": 250, + "y": 370, + "index": 2, + "body": { + "#": 5154 + }, + "isInternal": false + }, + { + "x": 225, + "y": 370, + "index": 3, + "body": { + "#": 5154 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5168 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5170 + }, + "max": { + "#": 5171 + } + }, + { + "x": 225, + "y": 345 + }, + { + "x": 250, + "y": 370 + }, + { + "x": 237.5, + "y": 357.5 + }, + [ + { + "#": 5174 + }, + { + "#": 5175 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 236, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5177 + }, + "angle": 0, + "vertices": { + "#": 5178 + }, + "position": { + "#": 5183 + }, + "force": { + "#": 5184 + }, + "torque": 0, + "positionImpulse": { + "#": 5185 + }, + "constraintImpulse": { + "#": 5186 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5187 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5188 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5189 + }, + "bounds": { + "#": 5191 + }, + "positionPrev": { + "#": 5194 + }, + "anglePrev": 0, + "axes": { + "#": 5195 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5176 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5176 + } + ], + [ + { + "#": 5179 + }, + { + "#": 5180 + }, + { + "#": 5181 + }, + { + "#": 5182 + } + ], + { + "x": 250, + "y": 345, + "index": 0, + "body": { + "#": 5176 + }, + "isInternal": false + }, + { + "x": 275, + "y": 345, + "index": 1, + "body": { + "#": 5176 + }, + "isInternal": false + }, + { + "x": 275, + "y": 370, + "index": 2, + "body": { + "#": 5176 + }, + "isInternal": false + }, + { + "x": 250, + "y": 370, + "index": 3, + "body": { + "#": 5176 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5190 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5192 + }, + "max": { + "#": 5193 + } + }, + { + "x": 250, + "y": 345 + }, + { + "x": 275, + "y": 370 + }, + { + "x": 262.5, + "y": 357.5 + }, + [ + { + "#": 5196 + }, + { + "#": 5197 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 237, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5199 + }, + "angle": 0, + "vertices": { + "#": 5200 + }, + "position": { + "#": 5205 + }, + "force": { + "#": 5206 + }, + "torque": 0, + "positionImpulse": { + "#": 5207 + }, + "constraintImpulse": { + "#": 5208 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5209 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5210 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5211 + }, + "bounds": { + "#": 5213 + }, + "positionPrev": { + "#": 5216 + }, + "anglePrev": 0, + "axes": { + "#": 5217 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5198 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5198 + } + ], + [ + { + "#": 5201 + }, + { + "#": 5202 + }, + { + "#": 5203 + }, + { + "#": 5204 + } + ], + { + "x": 275, + "y": 345, + "index": 0, + "body": { + "#": 5198 + }, + "isInternal": false + }, + { + "x": 300, + "y": 345, + "index": 1, + "body": { + "#": 5198 + }, + "isInternal": false + }, + { + "x": 300, + "y": 370, + "index": 2, + "body": { + "#": 5198 + }, + "isInternal": false + }, + { + "x": 275, + "y": 370, + "index": 3, + "body": { + "#": 5198 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5212 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5214 + }, + "max": { + "#": 5215 + } + }, + { + "x": 275, + "y": 345 + }, + { + "x": 300, + "y": 370 + }, + { + "x": 287.5, + "y": 357.5 + }, + [ + { + "#": 5218 + }, + { + "#": 5219 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 238, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5221 + }, + "angle": 0, + "vertices": { + "#": 5222 + }, + "position": { + "#": 5227 + }, + "force": { + "#": 5228 + }, + "torque": 0, + "positionImpulse": { + "#": 5229 + }, + "constraintImpulse": { + "#": 5230 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5231 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5232 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5233 + }, + "bounds": { + "#": 5235 + }, + "positionPrev": { + "#": 5238 + }, + "anglePrev": 0, + "axes": { + "#": 5239 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5220 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5220 + } + ], + [ + { + "#": 5223 + }, + { + "#": 5224 + }, + { + "#": 5225 + }, + { + "#": 5226 + } + ], + { + "x": 300, + "y": 345, + "index": 0, + "body": { + "#": 5220 + }, + "isInternal": false + }, + { + "x": 325, + "y": 345, + "index": 1, + "body": { + "#": 5220 + }, + "isInternal": false + }, + { + "x": 325, + "y": 370, + "index": 2, + "body": { + "#": 5220 + }, + "isInternal": false + }, + { + "x": 300, + "y": 370, + "index": 3, + "body": { + "#": 5220 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5234 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5236 + }, + "max": { + "#": 5237 + } + }, + { + "x": 300, + "y": 345 + }, + { + "x": 325, + "y": 370 + }, + { + "x": 312.5, + "y": 357.5 + }, + [ + { + "#": 5240 + }, + { + "#": 5241 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 239, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5243 + }, + "angle": 0, + "vertices": { + "#": 5244 + }, + "position": { + "#": 5249 + }, + "force": { + "#": 5250 + }, + "torque": 0, + "positionImpulse": { + "#": 5251 + }, + "constraintImpulse": { + "#": 5252 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5253 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5254 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5255 + }, + "bounds": { + "#": 5257 + }, + "positionPrev": { + "#": 5260 + }, + "anglePrev": 0, + "axes": { + "#": 5261 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5242 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5242 + } + ], + [ + { + "#": 5245 + }, + { + "#": 5246 + }, + { + "#": 5247 + }, + { + "#": 5248 + } + ], + { + "x": 325, + "y": 345, + "index": 0, + "body": { + "#": 5242 + }, + "isInternal": false + }, + { + "x": 350, + "y": 345, + "index": 1, + "body": { + "#": 5242 + }, + "isInternal": false + }, + { + "x": 350, + "y": 370, + "index": 2, + "body": { + "#": 5242 + }, + "isInternal": false + }, + { + "x": 325, + "y": 370, + "index": 3, + "body": { + "#": 5242 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5256 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5258 + }, + "max": { + "#": 5259 + } + }, + { + "x": 325, + "y": 345 + }, + { + "x": 350, + "y": 370 + }, + { + "x": 337.5, + "y": 357.5 + }, + [ + { + "#": 5262 + }, + { + "#": 5263 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 240, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5265 + }, + "angle": 0, + "vertices": { + "#": 5266 + }, + "position": { + "#": 5271 + }, + "force": { + "#": 5272 + }, + "torque": 0, + "positionImpulse": { + "#": 5273 + }, + "constraintImpulse": { + "#": 5274 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5275 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5276 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5277 + }, + "bounds": { + "#": 5279 + }, + "positionPrev": { + "#": 5282 + }, + "anglePrev": 0, + "axes": { + "#": 5283 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5264 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5264 + } + ], + [ + { + "#": 5267 + }, + { + "#": 5268 + }, + { + "#": 5269 + }, + { + "#": 5270 + } + ], + { + "x": 350, + "y": 345, + "index": 0, + "body": { + "#": 5264 + }, + "isInternal": false + }, + { + "x": 375, + "y": 345, + "index": 1, + "body": { + "#": 5264 + }, + "isInternal": false + }, + { + "x": 375, + "y": 370, + "index": 2, + "body": { + "#": 5264 + }, + "isInternal": false + }, + { + "x": 350, + "y": 370, + "index": 3, + "body": { + "#": 5264 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5278 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5280 + }, + "max": { + "#": 5281 + } + }, + { + "x": 350, + "y": 345 + }, + { + "x": 375, + "y": 370 + }, + { + "x": 362.5, + "y": 357.5 + }, + [ + { + "#": 5284 + }, + { + "#": 5285 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 241, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5287 + }, + "angle": 0, + "vertices": { + "#": 5288 + }, + "position": { + "#": 5293 + }, + "force": { + "#": 5294 + }, + "torque": 0, + "positionImpulse": { + "#": 5295 + }, + "constraintImpulse": { + "#": 5296 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5297 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5298 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5299 + }, + "bounds": { + "#": 5301 + }, + "positionPrev": { + "#": 5304 + }, + "anglePrev": 0, + "axes": { + "#": 5305 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5286 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5286 + } + ], + [ + { + "#": 5289 + }, + { + "#": 5290 + }, + { + "#": 5291 + }, + { + "#": 5292 + } + ], + { + "x": 375, + "y": 345, + "index": 0, + "body": { + "#": 5286 + }, + "isInternal": false + }, + { + "x": 400, + "y": 345, + "index": 1, + "body": { + "#": 5286 + }, + "isInternal": false + }, + { + "x": 400, + "y": 370, + "index": 2, + "body": { + "#": 5286 + }, + "isInternal": false + }, + { + "x": 375, + "y": 370, + "index": 3, + "body": { + "#": 5286 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5300 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5302 + }, + "max": { + "#": 5303 + } + }, + { + "x": 375, + "y": 345 + }, + { + "x": 400, + "y": 370 + }, + { + "x": 387.5, + "y": 357.5 + }, + [ + { + "#": 5306 + }, + { + "#": 5307 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 242, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5309 + }, + "angle": 0, + "vertices": { + "#": 5310 + }, + "position": { + "#": 5315 + }, + "force": { + "#": 5316 + }, + "torque": 0, + "positionImpulse": { + "#": 5317 + }, + "constraintImpulse": { + "#": 5318 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5319 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5320 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5321 + }, + "bounds": { + "#": 5323 + }, + "positionPrev": { + "#": 5326 + }, + "anglePrev": 0, + "axes": { + "#": 5327 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5308 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5308 + } + ], + [ + { + "#": 5311 + }, + { + "#": 5312 + }, + { + "#": 5313 + }, + { + "#": 5314 + } + ], + { + "x": 400, + "y": 345, + "index": 0, + "body": { + "#": 5308 + }, + "isInternal": false + }, + { + "x": 425, + "y": 345, + "index": 1, + "body": { + "#": 5308 + }, + "isInternal": false + }, + { + "x": 425, + "y": 370, + "index": 2, + "body": { + "#": 5308 + }, + "isInternal": false + }, + { + "x": 400, + "y": 370, + "index": 3, + "body": { + "#": 5308 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5322 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5324 + }, + "max": { + "#": 5325 + } + }, + { + "x": 400, + "y": 345 + }, + { + "x": 425, + "y": 370 + }, + { + "x": 412.5, + "y": 357.5 + }, + [ + { + "#": 5328 + }, + { + "#": 5329 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 243, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5331 + }, + "angle": 0, + "vertices": { + "#": 5332 + }, + "position": { + "#": 5337 + }, + "force": { + "#": 5338 + }, + "torque": 0, + "positionImpulse": { + "#": 5339 + }, + "constraintImpulse": { + "#": 5340 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5341 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5342 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5343 + }, + "bounds": { + "#": 5345 + }, + "positionPrev": { + "#": 5348 + }, + "anglePrev": 0, + "axes": { + "#": 5349 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5330 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5330 + } + ], + [ + { + "#": 5333 + }, + { + "#": 5334 + }, + { + "#": 5335 + }, + { + "#": 5336 + } + ], + { + "x": 425, + "y": 345, + "index": 0, + "body": { + "#": 5330 + }, + "isInternal": false + }, + { + "x": 450, + "y": 345, + "index": 1, + "body": { + "#": 5330 + }, + "isInternal": false + }, + { + "x": 450, + "y": 370, + "index": 2, + "body": { + "#": 5330 + }, + "isInternal": false + }, + { + "x": 425, + "y": 370, + "index": 3, + "body": { + "#": 5330 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5344 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5346 + }, + "max": { + "#": 5347 + } + }, + { + "x": 425, + "y": 345 + }, + { + "x": 450, + "y": 370 + }, + { + "x": 437.5, + "y": 357.5 + }, + [ + { + "#": 5350 + }, + { + "#": 5351 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 244, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5353 + }, + "angle": 0, + "vertices": { + "#": 5354 + }, + "position": { + "#": 5359 + }, + "force": { + "#": 5360 + }, + "torque": 0, + "positionImpulse": { + "#": 5361 + }, + "constraintImpulse": { + "#": 5362 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5363 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5364 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5365 + }, + "bounds": { + "#": 5367 + }, + "positionPrev": { + "#": 5370 + }, + "anglePrev": 0, + "axes": { + "#": 5371 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5352 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5352 + } + ], + [ + { + "#": 5355 + }, + { + "#": 5356 + }, + { + "#": 5357 + }, + { + "#": 5358 + } + ], + { + "x": 450, + "y": 345, + "index": 0, + "body": { + "#": 5352 + }, + "isInternal": false + }, + { + "x": 475, + "y": 345, + "index": 1, + "body": { + "#": 5352 + }, + "isInternal": false + }, + { + "x": 475, + "y": 370, + "index": 2, + "body": { + "#": 5352 + }, + "isInternal": false + }, + { + "x": 450, + "y": 370, + "index": 3, + "body": { + "#": 5352 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5366 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5368 + }, + "max": { + "#": 5369 + } + }, + { + "x": 450, + "y": 345 + }, + { + "x": 475, + "y": 370 + }, + { + "x": 462.5, + "y": 357.5 + }, + [ + { + "#": 5372 + }, + { + "#": 5373 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 245, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5375 + }, + "angle": 0, + "vertices": { + "#": 5376 + }, + "position": { + "#": 5381 + }, + "force": { + "#": 5382 + }, + "torque": 0, + "positionImpulse": { + "#": 5383 + }, + "constraintImpulse": { + "#": 5384 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5385 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5386 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5387 + }, + "bounds": { + "#": 5389 + }, + "positionPrev": { + "#": 5392 + }, + "anglePrev": 0, + "axes": { + "#": 5393 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5374 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5374 + } + ], + [ + { + "#": 5377 + }, + { + "#": 5378 + }, + { + "#": 5379 + }, + { + "#": 5380 + } + ], + { + "x": 475, + "y": 345, + "index": 0, + "body": { + "#": 5374 + }, + "isInternal": false + }, + { + "x": 500, + "y": 345, + "index": 1, + "body": { + "#": 5374 + }, + "isInternal": false + }, + { + "x": 500, + "y": 370, + "index": 2, + "body": { + "#": 5374 + }, + "isInternal": false + }, + { + "x": 475, + "y": 370, + "index": 3, + "body": { + "#": 5374 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5388 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5390 + }, + "max": { + "#": 5391 + } + }, + { + "x": 475, + "y": 345 + }, + { + "x": 500, + "y": 370 + }, + { + "x": 487.5, + "y": 357.5 + }, + [ + { + "#": 5394 + }, + { + "#": 5395 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 246, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5397 + }, + "angle": 0, + "vertices": { + "#": 5398 + }, + "position": { + "#": 5403 + }, + "force": { + "#": 5404 + }, + "torque": 0, + "positionImpulse": { + "#": 5405 + }, + "constraintImpulse": { + "#": 5406 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5407 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5408 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5409 + }, + "bounds": { + "#": 5411 + }, + "positionPrev": { + "#": 5414 + }, + "anglePrev": 0, + "axes": { + "#": 5415 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5396 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5396 + } + ], + [ + { + "#": 5399 + }, + { + "#": 5400 + }, + { + "#": 5401 + }, + { + "#": 5402 + } + ], + { + "x": 500, + "y": 345, + "index": 0, + "body": { + "#": 5396 + }, + "isInternal": false + }, + { + "x": 525, + "y": 345, + "index": 1, + "body": { + "#": 5396 + }, + "isInternal": false + }, + { + "x": 525, + "y": 370, + "index": 2, + "body": { + "#": 5396 + }, + "isInternal": false + }, + { + "x": 500, + "y": 370, + "index": 3, + "body": { + "#": 5396 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5410 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5412 + }, + "max": { + "#": 5413 + } + }, + { + "x": 500, + "y": 345 + }, + { + "x": 525, + "y": 370 + }, + { + "x": 512.5, + "y": 357.5 + }, + [ + { + "#": 5416 + }, + { + "#": 5417 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 247, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5419 + }, + "angle": 0, + "vertices": { + "#": 5420 + }, + "position": { + "#": 5425 + }, + "force": { + "#": 5426 + }, + "torque": 0, + "positionImpulse": { + "#": 5427 + }, + "constraintImpulse": { + "#": 5428 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5429 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5430 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5431 + }, + "bounds": { + "#": 5433 + }, + "positionPrev": { + "#": 5436 + }, + "anglePrev": 0, + "axes": { + "#": 5437 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5418 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5418 + } + ], + [ + { + "#": 5421 + }, + { + "#": 5422 + }, + { + "#": 5423 + }, + { + "#": 5424 + } + ], + { + "x": 525, + "y": 345, + "index": 0, + "body": { + "#": 5418 + }, + "isInternal": false + }, + { + "x": 550, + "y": 345, + "index": 1, + "body": { + "#": 5418 + }, + "isInternal": false + }, + { + "x": 550, + "y": 370, + "index": 2, + "body": { + "#": 5418 + }, + "isInternal": false + }, + { + "x": 525, + "y": 370, + "index": 3, + "body": { + "#": 5418 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5432 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5434 + }, + "max": { + "#": 5435 + } + }, + { + "x": 525, + "y": 345 + }, + { + "x": 550, + "y": 370 + }, + { + "x": 537.5, + "y": 357.5 + }, + [ + { + "#": 5438 + }, + { + "#": 5439 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 248, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5441 + }, + "angle": 0, + "vertices": { + "#": 5442 + }, + "position": { + "#": 5447 + }, + "force": { + "#": 5448 + }, + "torque": 0, + "positionImpulse": { + "#": 5449 + }, + "constraintImpulse": { + "#": 5450 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5451 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5452 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5453 + }, + "bounds": { + "#": 5455 + }, + "positionPrev": { + "#": 5458 + }, + "anglePrev": 0, + "axes": { + "#": 5459 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5440 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5440 + } + ], + [ + { + "#": 5443 + }, + { + "#": 5444 + }, + { + "#": 5445 + }, + { + "#": 5446 + } + ], + { + "x": 550, + "y": 345, + "index": 0, + "body": { + "#": 5440 + }, + "isInternal": false + }, + { + "x": 575, + "y": 345, + "index": 1, + "body": { + "#": 5440 + }, + "isInternal": false + }, + { + "x": 575, + "y": 370, + "index": 2, + "body": { + "#": 5440 + }, + "isInternal": false + }, + { + "x": 550, + "y": 370, + "index": 3, + "body": { + "#": 5440 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5454 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5456 + }, + "max": { + "#": 5457 + } + }, + { + "x": 550, + "y": 345 + }, + { + "x": 575, + "y": 370 + }, + { + "x": 562.5, + "y": 357.5 + }, + [ + { + "#": 5460 + }, + { + "#": 5461 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 249, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5463 + }, + "angle": 0, + "vertices": { + "#": 5464 + }, + "position": { + "#": 5469 + }, + "force": { + "#": 5470 + }, + "torque": 0, + "positionImpulse": { + "#": 5471 + }, + "constraintImpulse": { + "#": 5472 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5473 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5474 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5475 + }, + "bounds": { + "#": 5477 + }, + "positionPrev": { + "#": 5480 + }, + "anglePrev": 0, + "axes": { + "#": 5481 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5462 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5462 + } + ], + [ + { + "#": 5465 + }, + { + "#": 5466 + }, + { + "#": 5467 + }, + { + "#": 5468 + } + ], + { + "x": 575, + "y": 345, + "index": 0, + "body": { + "#": 5462 + }, + "isInternal": false + }, + { + "x": 600, + "y": 345, + "index": 1, + "body": { + "#": 5462 + }, + "isInternal": false + }, + { + "x": 600, + "y": 370, + "index": 2, + "body": { + "#": 5462 + }, + "isInternal": false + }, + { + "x": 575, + "y": 370, + "index": 3, + "body": { + "#": 5462 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5476 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5478 + }, + "max": { + "#": 5479 + } + }, + { + "x": 575, + "y": 345 + }, + { + "x": 600, + "y": 370 + }, + { + "x": 587.5, + "y": 357.5 + }, + [ + { + "#": 5482 + }, + { + "#": 5483 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 250, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5485 + }, + "angle": 0, + "vertices": { + "#": 5486 + }, + "position": { + "#": 5491 + }, + "force": { + "#": 5492 + }, + "torque": 0, + "positionImpulse": { + "#": 5493 + }, + "constraintImpulse": { + "#": 5494 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5495 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5496 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5497 + }, + "bounds": { + "#": 5499 + }, + "positionPrev": { + "#": 5502 + }, + "anglePrev": 0, + "axes": { + "#": 5503 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5484 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5484 + } + ], + [ + { + "#": 5487 + }, + { + "#": 5488 + }, + { + "#": 5489 + }, + { + "#": 5490 + } + ], + { + "x": 600, + "y": 345, + "index": 0, + "body": { + "#": 5484 + }, + "isInternal": false + }, + { + "x": 625, + "y": 345, + "index": 1, + "body": { + "#": 5484 + }, + "isInternal": false + }, + { + "x": 625, + "y": 370, + "index": 2, + "body": { + "#": 5484 + }, + "isInternal": false + }, + { + "x": 600, + "y": 370, + "index": 3, + "body": { + "#": 5484 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5498 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5500 + }, + "max": { + "#": 5501 + } + }, + { + "x": 600, + "y": 345 + }, + { + "x": 625, + "y": 370 + }, + { + "x": 612.5, + "y": 357.5 + }, + [ + { + "#": 5504 + }, + { + "#": 5505 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 251, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5507 + }, + "angle": 0, + "vertices": { + "#": 5508 + }, + "position": { + "#": 5513 + }, + "force": { + "#": 5514 + }, + "torque": 0, + "positionImpulse": { + "#": 5515 + }, + "constraintImpulse": { + "#": 5516 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5517 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5518 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5519 + }, + "bounds": { + "#": 5521 + }, + "positionPrev": { + "#": 5524 + }, + "anglePrev": 0, + "axes": { + "#": 5525 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5506 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5506 + } + ], + [ + { + "#": 5509 + }, + { + "#": 5510 + }, + { + "#": 5511 + }, + { + "#": 5512 + } + ], + { + "x": 625, + "y": 345, + "index": 0, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 650, + "y": 345, + "index": 1, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 650, + "y": 370, + "index": 2, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 625, + "y": 370, + "index": 3, + "body": { + "#": 5506 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5520 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5522 + }, + "max": { + "#": 5523 + } + }, + { + "x": 625, + "y": 345 + }, + { + "x": 650, + "y": 370 + }, + { + "x": 637.5, + "y": 357.5 + }, + [ + { + "#": 5526 + }, + { + "#": 5527 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 252, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5529 + }, + "angle": 0, + "vertices": { + "#": 5530 + }, + "position": { + "#": 5535 + }, + "force": { + "#": 5536 + }, + "torque": 0, + "positionImpulse": { + "#": 5537 + }, + "constraintImpulse": { + "#": 5538 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5539 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5540 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5541 + }, + "bounds": { + "#": 5543 + }, + "positionPrev": { + "#": 5546 + }, + "anglePrev": 0, + "axes": { + "#": 5547 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5528 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5528 + } + ], + [ + { + "#": 5531 + }, + { + "#": 5532 + }, + { + "#": 5533 + }, + { + "#": 5534 + } + ], + { + "x": 650, + "y": 345, + "index": 0, + "body": { + "#": 5528 + }, + "isInternal": false + }, + { + "x": 675, + "y": 345, + "index": 1, + "body": { + "#": 5528 + }, + "isInternal": false + }, + { + "x": 675, + "y": 370, + "index": 2, + "body": { + "#": 5528 + }, + "isInternal": false + }, + { + "x": 650, + "y": 370, + "index": 3, + "body": { + "#": 5528 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5542 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5544 + }, + "max": { + "#": 5545 + } + }, + { + "x": 650, + "y": 345 + }, + { + "x": 675, + "y": 370 + }, + { + "x": 662.5, + "y": 357.5 + }, + [ + { + "#": 5548 + }, + { + "#": 5549 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 253, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5551 + }, + "angle": 0, + "vertices": { + "#": 5552 + }, + "position": { + "#": 5557 + }, + "force": { + "#": 5558 + }, + "torque": 0, + "positionImpulse": { + "#": 5559 + }, + "constraintImpulse": { + "#": 5560 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5561 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5562 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5563 + }, + "bounds": { + "#": 5565 + }, + "positionPrev": { + "#": 5568 + }, + "anglePrev": 0, + "axes": { + "#": 5569 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5550 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5550 + } + ], + [ + { + "#": 5553 + }, + { + "#": 5554 + }, + { + "#": 5555 + }, + { + "#": 5556 + } + ], + { + "x": 675, + "y": 345, + "index": 0, + "body": { + "#": 5550 + }, + "isInternal": false + }, + { + "x": 700, + "y": 345, + "index": 1, + "body": { + "#": 5550 + }, + "isInternal": false + }, + { + "x": 700, + "y": 370, + "index": 2, + "body": { + "#": 5550 + }, + "isInternal": false + }, + { + "x": 675, + "y": 370, + "index": 3, + "body": { + "#": 5550 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5564 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5566 + }, + "max": { + "#": 5567 + } + }, + { + "x": 675, + "y": 345 + }, + { + "x": 700, + "y": 370 + }, + { + "x": 687.5, + "y": 357.5 + }, + [ + { + "#": 5570 + }, + { + "#": 5571 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 254, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5573 + }, + "angle": 0, + "vertices": { + "#": 5574 + }, + "position": { + "#": 5579 + }, + "force": { + "#": 5580 + }, + "torque": 0, + "positionImpulse": { + "#": 5581 + }, + "constraintImpulse": { + "#": 5582 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5583 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5584 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5585 + }, + "bounds": { + "#": 5587 + }, + "positionPrev": { + "#": 5590 + }, + "anglePrev": 0, + "axes": { + "#": 5591 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5572 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5572 + } + ], + [ + { + "#": 5575 + }, + { + "#": 5576 + }, + { + "#": 5577 + }, + { + "#": 5578 + } + ], + { + "x": 700, + "y": 345, + "index": 0, + "body": { + "#": 5572 + }, + "isInternal": false + }, + { + "x": 725, + "y": 345, + "index": 1, + "body": { + "#": 5572 + }, + "isInternal": false + }, + { + "x": 725, + "y": 370, + "index": 2, + "body": { + "#": 5572 + }, + "isInternal": false + }, + { + "x": 700, + "y": 370, + "index": 3, + "body": { + "#": 5572 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 357.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5586 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5588 + }, + "max": { + "#": 5589 + } + }, + { + "x": 700, + "y": 345 + }, + { + "x": 725, + "y": 370 + }, + { + "x": 712.5, + "y": 357.5 + }, + [ + { + "#": 5592 + }, + { + "#": 5593 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 255, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5595 + }, + "angle": 0, + "vertices": { + "#": 5596 + }, + "position": { + "#": 5601 + }, + "force": { + "#": 5602 + }, + "torque": 0, + "positionImpulse": { + "#": 5603 + }, + "constraintImpulse": { + "#": 5604 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5605 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5606 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5607 + }, + "bounds": { + "#": 5609 + }, + "positionPrev": { + "#": 5612 + }, + "anglePrev": 0, + "axes": { + "#": 5613 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5594 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5594 + } + ], + [ + { + "#": 5597 + }, + { + "#": 5598 + }, + { + "#": 5599 + }, + { + "#": 5600 + } + ], + { + "x": 100, + "y": 370, + "index": 0, + "body": { + "#": 5594 + }, + "isInternal": false + }, + { + "x": 125, + "y": 370, + "index": 1, + "body": { + "#": 5594 + }, + "isInternal": false + }, + { + "x": 125, + "y": 395, + "index": 2, + "body": { + "#": 5594 + }, + "isInternal": false + }, + { + "x": 100, + "y": 395, + "index": 3, + "body": { + "#": 5594 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5608 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5610 + }, + "max": { + "#": 5611 + } + }, + { + "x": 100, + "y": 370 + }, + { + "x": 125, + "y": 395 + }, + { + "x": 112.5, + "y": 382.5 + }, + [ + { + "#": 5614 + }, + { + "#": 5615 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 256, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5617 + }, + "angle": 0, + "vertices": { + "#": 5618 + }, + "position": { + "#": 5623 + }, + "force": { + "#": 5624 + }, + "torque": 0, + "positionImpulse": { + "#": 5625 + }, + "constraintImpulse": { + "#": 5626 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5627 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5628 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5629 + }, + "bounds": { + "#": 5631 + }, + "positionPrev": { + "#": 5634 + }, + "anglePrev": 0, + "axes": { + "#": 5635 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5616 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5616 + } + ], + [ + { + "#": 5619 + }, + { + "#": 5620 + }, + { + "#": 5621 + }, + { + "#": 5622 + } + ], + { + "x": 125, + "y": 370, + "index": 0, + "body": { + "#": 5616 + }, + "isInternal": false + }, + { + "x": 150, + "y": 370, + "index": 1, + "body": { + "#": 5616 + }, + "isInternal": false + }, + { + "x": 150, + "y": 395, + "index": 2, + "body": { + "#": 5616 + }, + "isInternal": false + }, + { + "x": 125, + "y": 395, + "index": 3, + "body": { + "#": 5616 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5630 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5632 + }, + "max": { + "#": 5633 + } + }, + { + "x": 125, + "y": 370 + }, + { + "x": 150, + "y": 395 + }, + { + "x": 137.5, + "y": 382.5 + }, + [ + { + "#": 5636 + }, + { + "#": 5637 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 257, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5639 + }, + "angle": 0, + "vertices": { + "#": 5640 + }, + "position": { + "#": 5645 + }, + "force": { + "#": 5646 + }, + "torque": 0, + "positionImpulse": { + "#": 5647 + }, + "constraintImpulse": { + "#": 5648 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5649 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5650 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5651 + }, + "bounds": { + "#": 5653 + }, + "positionPrev": { + "#": 5656 + }, + "anglePrev": 0, + "axes": { + "#": 5657 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5638 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5638 + } + ], + [ + { + "#": 5641 + }, + { + "#": 5642 + }, + { + "#": 5643 + }, + { + "#": 5644 + } + ], + { + "x": 150, + "y": 370, + "index": 0, + "body": { + "#": 5638 + }, + "isInternal": false + }, + { + "x": 175, + "y": 370, + "index": 1, + "body": { + "#": 5638 + }, + "isInternal": false + }, + { + "x": 175, + "y": 395, + "index": 2, + "body": { + "#": 5638 + }, + "isInternal": false + }, + { + "x": 150, + "y": 395, + "index": 3, + "body": { + "#": 5638 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5652 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5654 + }, + "max": { + "#": 5655 + } + }, + { + "x": 150, + "y": 370 + }, + { + "x": 175, + "y": 395 + }, + { + "x": 162.5, + "y": 382.5 + }, + [ + { + "#": 5658 + }, + { + "#": 5659 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 258, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5661 + }, + "angle": 0, + "vertices": { + "#": 5662 + }, + "position": { + "#": 5667 + }, + "force": { + "#": 5668 + }, + "torque": 0, + "positionImpulse": { + "#": 5669 + }, + "constraintImpulse": { + "#": 5670 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5671 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5672 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5673 + }, + "bounds": { + "#": 5675 + }, + "positionPrev": { + "#": 5678 + }, + "anglePrev": 0, + "axes": { + "#": 5679 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5660 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5660 + } + ], + [ + { + "#": 5663 + }, + { + "#": 5664 + }, + { + "#": 5665 + }, + { + "#": 5666 + } + ], + { + "x": 175, + "y": 370, + "index": 0, + "body": { + "#": 5660 + }, + "isInternal": false + }, + { + "x": 200, + "y": 370, + "index": 1, + "body": { + "#": 5660 + }, + "isInternal": false + }, + { + "x": 200, + "y": 395, + "index": 2, + "body": { + "#": 5660 + }, + "isInternal": false + }, + { + "x": 175, + "y": 395, + "index": 3, + "body": { + "#": 5660 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5674 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5676 + }, + "max": { + "#": 5677 + } + }, + { + "x": 175, + "y": 370 + }, + { + "x": 200, + "y": 395 + }, + { + "x": 187.5, + "y": 382.5 + }, + [ + { + "#": 5680 + }, + { + "#": 5681 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 259, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5683 + }, + "angle": 0, + "vertices": { + "#": 5684 + }, + "position": { + "#": 5689 + }, + "force": { + "#": 5690 + }, + "torque": 0, + "positionImpulse": { + "#": 5691 + }, + "constraintImpulse": { + "#": 5692 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5693 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5694 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5695 + }, + "bounds": { + "#": 5697 + }, + "positionPrev": { + "#": 5700 + }, + "anglePrev": 0, + "axes": { + "#": 5701 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5682 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5682 + } + ], + [ + { + "#": 5685 + }, + { + "#": 5686 + }, + { + "#": 5687 + }, + { + "#": 5688 + } + ], + { + "x": 200, + "y": 370, + "index": 0, + "body": { + "#": 5682 + }, + "isInternal": false + }, + { + "x": 225, + "y": 370, + "index": 1, + "body": { + "#": 5682 + }, + "isInternal": false + }, + { + "x": 225, + "y": 395, + "index": 2, + "body": { + "#": 5682 + }, + "isInternal": false + }, + { + "x": 200, + "y": 395, + "index": 3, + "body": { + "#": 5682 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5696 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5698 + }, + "max": { + "#": 5699 + } + }, + { + "x": 200, + "y": 370 + }, + { + "x": 225, + "y": 395 + }, + { + "x": 212.5, + "y": 382.5 + }, + [ + { + "#": 5702 + }, + { + "#": 5703 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 260, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5705 + }, + "angle": 0, + "vertices": { + "#": 5706 + }, + "position": { + "#": 5711 + }, + "force": { + "#": 5712 + }, + "torque": 0, + "positionImpulse": { + "#": 5713 + }, + "constraintImpulse": { + "#": 5714 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5715 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5716 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5717 + }, + "bounds": { + "#": 5719 + }, + "positionPrev": { + "#": 5722 + }, + "anglePrev": 0, + "axes": { + "#": 5723 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5704 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5704 + } + ], + [ + { + "#": 5707 + }, + { + "#": 5708 + }, + { + "#": 5709 + }, + { + "#": 5710 + } + ], + { + "x": 225, + "y": 370, + "index": 0, + "body": { + "#": 5704 + }, + "isInternal": false + }, + { + "x": 250, + "y": 370, + "index": 1, + "body": { + "#": 5704 + }, + "isInternal": false + }, + { + "x": 250, + "y": 395, + "index": 2, + "body": { + "#": 5704 + }, + "isInternal": false + }, + { + "x": 225, + "y": 395, + "index": 3, + "body": { + "#": 5704 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5718 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5720 + }, + "max": { + "#": 5721 + } + }, + { + "x": 225, + "y": 370 + }, + { + "x": 250, + "y": 395 + }, + { + "x": 237.5, + "y": 382.5 + }, + [ + { + "#": 5724 + }, + { + "#": 5725 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 261, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5727 + }, + "angle": 0, + "vertices": { + "#": 5728 + }, + "position": { + "#": 5733 + }, + "force": { + "#": 5734 + }, + "torque": 0, + "positionImpulse": { + "#": 5735 + }, + "constraintImpulse": { + "#": 5736 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5737 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5738 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5739 + }, + "bounds": { + "#": 5741 + }, + "positionPrev": { + "#": 5744 + }, + "anglePrev": 0, + "axes": { + "#": 5745 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5726 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5726 + } + ], + [ + { + "#": 5729 + }, + { + "#": 5730 + }, + { + "#": 5731 + }, + { + "#": 5732 + } + ], + { + "x": 250, + "y": 370, + "index": 0, + "body": { + "#": 5726 + }, + "isInternal": false + }, + { + "x": 275, + "y": 370, + "index": 1, + "body": { + "#": 5726 + }, + "isInternal": false + }, + { + "x": 275, + "y": 395, + "index": 2, + "body": { + "#": 5726 + }, + "isInternal": false + }, + { + "x": 250, + "y": 395, + "index": 3, + "body": { + "#": 5726 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5740 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5742 + }, + "max": { + "#": 5743 + } + }, + { + "x": 250, + "y": 370 + }, + { + "x": 275, + "y": 395 + }, + { + "x": 262.5, + "y": 382.5 + }, + [ + { + "#": 5746 + }, + { + "#": 5747 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 262, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5749 + }, + "angle": 0, + "vertices": { + "#": 5750 + }, + "position": { + "#": 5755 + }, + "force": { + "#": 5756 + }, + "torque": 0, + "positionImpulse": { + "#": 5757 + }, + "constraintImpulse": { + "#": 5758 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5759 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5760 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5761 + }, + "bounds": { + "#": 5763 + }, + "positionPrev": { + "#": 5766 + }, + "anglePrev": 0, + "axes": { + "#": 5767 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5748 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5748 + } + ], + [ + { + "#": 5751 + }, + { + "#": 5752 + }, + { + "#": 5753 + }, + { + "#": 5754 + } + ], + { + "x": 275, + "y": 370, + "index": 0, + "body": { + "#": 5748 + }, + "isInternal": false + }, + { + "x": 300, + "y": 370, + "index": 1, + "body": { + "#": 5748 + }, + "isInternal": false + }, + { + "x": 300, + "y": 395, + "index": 2, + "body": { + "#": 5748 + }, + "isInternal": false + }, + { + "x": 275, + "y": 395, + "index": 3, + "body": { + "#": 5748 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5762 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5764 + }, + "max": { + "#": 5765 + } + }, + { + "x": 275, + "y": 370 + }, + { + "x": 300, + "y": 395 + }, + { + "x": 287.5, + "y": 382.5 + }, + [ + { + "#": 5768 + }, + { + "#": 5769 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 263, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5771 + }, + "angle": 0, + "vertices": { + "#": 5772 + }, + "position": { + "#": 5777 + }, + "force": { + "#": 5778 + }, + "torque": 0, + "positionImpulse": { + "#": 5779 + }, + "constraintImpulse": { + "#": 5780 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5781 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5782 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5783 + }, + "bounds": { + "#": 5785 + }, + "positionPrev": { + "#": 5788 + }, + "anglePrev": 0, + "axes": { + "#": 5789 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5770 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5770 + } + ], + [ + { + "#": 5773 + }, + { + "#": 5774 + }, + { + "#": 5775 + }, + { + "#": 5776 + } + ], + { + "x": 300, + "y": 370, + "index": 0, + "body": { + "#": 5770 + }, + "isInternal": false + }, + { + "x": 325, + "y": 370, + "index": 1, + "body": { + "#": 5770 + }, + "isInternal": false + }, + { + "x": 325, + "y": 395, + "index": 2, + "body": { + "#": 5770 + }, + "isInternal": false + }, + { + "x": 300, + "y": 395, + "index": 3, + "body": { + "#": 5770 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5784 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5786 + }, + "max": { + "#": 5787 + } + }, + { + "x": 300, + "y": 370 + }, + { + "x": 325, + "y": 395 + }, + { + "x": 312.5, + "y": 382.5 + }, + [ + { + "#": 5790 + }, + { + "#": 5791 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 264, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5793 + }, + "angle": 0, + "vertices": { + "#": 5794 + }, + "position": { + "#": 5799 + }, + "force": { + "#": 5800 + }, + "torque": 0, + "positionImpulse": { + "#": 5801 + }, + "constraintImpulse": { + "#": 5802 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5803 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5804 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5805 + }, + "bounds": { + "#": 5807 + }, + "positionPrev": { + "#": 5810 + }, + "anglePrev": 0, + "axes": { + "#": 5811 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5792 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5792 + } + ], + [ + { + "#": 5795 + }, + { + "#": 5796 + }, + { + "#": 5797 + }, + { + "#": 5798 + } + ], + { + "x": 325, + "y": 370, + "index": 0, + "body": { + "#": 5792 + }, + "isInternal": false + }, + { + "x": 350, + "y": 370, + "index": 1, + "body": { + "#": 5792 + }, + "isInternal": false + }, + { + "x": 350, + "y": 395, + "index": 2, + "body": { + "#": 5792 + }, + "isInternal": false + }, + { + "x": 325, + "y": 395, + "index": 3, + "body": { + "#": 5792 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5806 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5808 + }, + "max": { + "#": 5809 + } + }, + { + "x": 325, + "y": 370 + }, + { + "x": 350, + "y": 395 + }, + { + "x": 337.5, + "y": 382.5 + }, + [ + { + "#": 5812 + }, + { + "#": 5813 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 265, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5815 + }, + "angle": 0, + "vertices": { + "#": 5816 + }, + "position": { + "#": 5821 + }, + "force": { + "#": 5822 + }, + "torque": 0, + "positionImpulse": { + "#": 5823 + }, + "constraintImpulse": { + "#": 5824 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5825 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5826 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5827 + }, + "bounds": { + "#": 5829 + }, + "positionPrev": { + "#": 5832 + }, + "anglePrev": 0, + "axes": { + "#": 5833 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5814 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5814 + } + ], + [ + { + "#": 5817 + }, + { + "#": 5818 + }, + { + "#": 5819 + }, + { + "#": 5820 + } + ], + { + "x": 350, + "y": 370, + "index": 0, + "body": { + "#": 5814 + }, + "isInternal": false + }, + { + "x": 375, + "y": 370, + "index": 1, + "body": { + "#": 5814 + }, + "isInternal": false + }, + { + "x": 375, + "y": 395, + "index": 2, + "body": { + "#": 5814 + }, + "isInternal": false + }, + { + "x": 350, + "y": 395, + "index": 3, + "body": { + "#": 5814 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5828 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5830 + }, + "max": { + "#": 5831 + } + }, + { + "x": 350, + "y": 370 + }, + { + "x": 375, + "y": 395 + }, + { + "x": 362.5, + "y": 382.5 + }, + [ + { + "#": 5834 + }, + { + "#": 5835 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 266, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5837 + }, + "angle": 0, + "vertices": { + "#": 5838 + }, + "position": { + "#": 5843 + }, + "force": { + "#": 5844 + }, + "torque": 0, + "positionImpulse": { + "#": 5845 + }, + "constraintImpulse": { + "#": 5846 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5847 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5848 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5849 + }, + "bounds": { + "#": 5851 + }, + "positionPrev": { + "#": 5854 + }, + "anglePrev": 0, + "axes": { + "#": 5855 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5836 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5836 + } + ], + [ + { + "#": 5839 + }, + { + "#": 5840 + }, + { + "#": 5841 + }, + { + "#": 5842 + } + ], + { + "x": 375, + "y": 370, + "index": 0, + "body": { + "#": 5836 + }, + "isInternal": false + }, + { + "x": 400, + "y": 370, + "index": 1, + "body": { + "#": 5836 + }, + "isInternal": false + }, + { + "x": 400, + "y": 395, + "index": 2, + "body": { + "#": 5836 + }, + "isInternal": false + }, + { + "x": 375, + "y": 395, + "index": 3, + "body": { + "#": 5836 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5850 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5852 + }, + "max": { + "#": 5853 + } + }, + { + "x": 375, + "y": 370 + }, + { + "x": 400, + "y": 395 + }, + { + "x": 387.5, + "y": 382.5 + }, + [ + { + "#": 5856 + }, + { + "#": 5857 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 267, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5859 + }, + "angle": 0, + "vertices": { + "#": 5860 + }, + "position": { + "#": 5865 + }, + "force": { + "#": 5866 + }, + "torque": 0, + "positionImpulse": { + "#": 5867 + }, + "constraintImpulse": { + "#": 5868 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5869 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5870 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5871 + }, + "bounds": { + "#": 5873 + }, + "positionPrev": { + "#": 5876 + }, + "anglePrev": 0, + "axes": { + "#": 5877 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5858 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5858 + } + ], + [ + { + "#": 5861 + }, + { + "#": 5862 + }, + { + "#": 5863 + }, + { + "#": 5864 + } + ], + { + "x": 400, + "y": 370, + "index": 0, + "body": { + "#": 5858 + }, + "isInternal": false + }, + { + "x": 425, + "y": 370, + "index": 1, + "body": { + "#": 5858 + }, + "isInternal": false + }, + { + "x": 425, + "y": 395, + "index": 2, + "body": { + "#": 5858 + }, + "isInternal": false + }, + { + "x": 400, + "y": 395, + "index": 3, + "body": { + "#": 5858 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5872 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5874 + }, + "max": { + "#": 5875 + } + }, + { + "x": 400, + "y": 370 + }, + { + "x": 425, + "y": 395 + }, + { + "x": 412.5, + "y": 382.5 + }, + [ + { + "#": 5878 + }, + { + "#": 5879 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 268, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5881 + }, + "angle": 0, + "vertices": { + "#": 5882 + }, + "position": { + "#": 5887 + }, + "force": { + "#": 5888 + }, + "torque": 0, + "positionImpulse": { + "#": 5889 + }, + "constraintImpulse": { + "#": 5890 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5891 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5892 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5893 + }, + "bounds": { + "#": 5895 + }, + "positionPrev": { + "#": 5898 + }, + "anglePrev": 0, + "axes": { + "#": 5899 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5880 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5880 + } + ], + [ + { + "#": 5883 + }, + { + "#": 5884 + }, + { + "#": 5885 + }, + { + "#": 5886 + } + ], + { + "x": 425, + "y": 370, + "index": 0, + "body": { + "#": 5880 + }, + "isInternal": false + }, + { + "x": 450, + "y": 370, + "index": 1, + "body": { + "#": 5880 + }, + "isInternal": false + }, + { + "x": 450, + "y": 395, + "index": 2, + "body": { + "#": 5880 + }, + "isInternal": false + }, + { + "x": 425, + "y": 395, + "index": 3, + "body": { + "#": 5880 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5894 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5896 + }, + "max": { + "#": 5897 + } + }, + { + "x": 425, + "y": 370 + }, + { + "x": 450, + "y": 395 + }, + { + "x": 437.5, + "y": 382.5 + }, + [ + { + "#": 5900 + }, + { + "#": 5901 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 269, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5903 + }, + "angle": 0, + "vertices": { + "#": 5904 + }, + "position": { + "#": 5909 + }, + "force": { + "#": 5910 + }, + "torque": 0, + "positionImpulse": { + "#": 5911 + }, + "constraintImpulse": { + "#": 5912 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5913 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5914 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5915 + }, + "bounds": { + "#": 5917 + }, + "positionPrev": { + "#": 5920 + }, + "anglePrev": 0, + "axes": { + "#": 5921 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5902 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5902 + } + ], + [ + { + "#": 5905 + }, + { + "#": 5906 + }, + { + "#": 5907 + }, + { + "#": 5908 + } + ], + { + "x": 450, + "y": 370, + "index": 0, + "body": { + "#": 5902 + }, + "isInternal": false + }, + { + "x": 475, + "y": 370, + "index": 1, + "body": { + "#": 5902 + }, + "isInternal": false + }, + { + "x": 475, + "y": 395, + "index": 2, + "body": { + "#": 5902 + }, + "isInternal": false + }, + { + "x": 450, + "y": 395, + "index": 3, + "body": { + "#": 5902 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5916 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5918 + }, + "max": { + "#": 5919 + } + }, + { + "x": 450, + "y": 370 + }, + { + "x": 475, + "y": 395 + }, + { + "x": 462.5, + "y": 382.5 + }, + [ + { + "#": 5922 + }, + { + "#": 5923 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 270, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5925 + }, + "angle": 0, + "vertices": { + "#": 5926 + }, + "position": { + "#": 5931 + }, + "force": { + "#": 5932 + }, + "torque": 0, + "positionImpulse": { + "#": 5933 + }, + "constraintImpulse": { + "#": 5934 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5935 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5936 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5937 + }, + "bounds": { + "#": 5939 + }, + "positionPrev": { + "#": 5942 + }, + "anglePrev": 0, + "axes": { + "#": 5943 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5924 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5924 + } + ], + [ + { + "#": 5927 + }, + { + "#": 5928 + }, + { + "#": 5929 + }, + { + "#": 5930 + } + ], + { + "x": 475, + "y": 370, + "index": 0, + "body": { + "#": 5924 + }, + "isInternal": false + }, + { + "x": 500, + "y": 370, + "index": 1, + "body": { + "#": 5924 + }, + "isInternal": false + }, + { + "x": 500, + "y": 395, + "index": 2, + "body": { + "#": 5924 + }, + "isInternal": false + }, + { + "x": 475, + "y": 395, + "index": 3, + "body": { + "#": 5924 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5938 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5940 + }, + "max": { + "#": 5941 + } + }, + { + "x": 475, + "y": 370 + }, + { + "x": 500, + "y": 395 + }, + { + "x": 487.5, + "y": 382.5 + }, + [ + { + "#": 5944 + }, + { + "#": 5945 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 271, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5947 + }, + "angle": 0, + "vertices": { + "#": 5948 + }, + "position": { + "#": 5953 + }, + "force": { + "#": 5954 + }, + "torque": 0, + "positionImpulse": { + "#": 5955 + }, + "constraintImpulse": { + "#": 5956 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5957 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5958 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5959 + }, + "bounds": { + "#": 5961 + }, + "positionPrev": { + "#": 5964 + }, + "anglePrev": 0, + "axes": { + "#": 5965 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5946 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5946 + } + ], + [ + { + "#": 5949 + }, + { + "#": 5950 + }, + { + "#": 5951 + }, + { + "#": 5952 + } + ], + { + "x": 500, + "y": 370, + "index": 0, + "body": { + "#": 5946 + }, + "isInternal": false + }, + { + "x": 525, + "y": 370, + "index": 1, + "body": { + "#": 5946 + }, + "isInternal": false + }, + { + "x": 525, + "y": 395, + "index": 2, + "body": { + "#": 5946 + }, + "isInternal": false + }, + { + "x": 500, + "y": 395, + "index": 3, + "body": { + "#": 5946 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5960 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5962 + }, + "max": { + "#": 5963 + } + }, + { + "x": 500, + "y": 370 + }, + { + "x": 525, + "y": 395 + }, + { + "x": 512.5, + "y": 382.5 + }, + [ + { + "#": 5966 + }, + { + "#": 5967 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 272, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5969 + }, + "angle": 0, + "vertices": { + "#": 5970 + }, + "position": { + "#": 5975 + }, + "force": { + "#": 5976 + }, + "torque": 0, + "positionImpulse": { + "#": 5977 + }, + "constraintImpulse": { + "#": 5978 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 5979 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5980 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5981 + }, + "bounds": { + "#": 5983 + }, + "positionPrev": { + "#": 5986 + }, + "anglePrev": 0, + "axes": { + "#": 5987 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5968 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5968 + } + ], + [ + { + "#": 5971 + }, + { + "#": 5972 + }, + { + "#": 5973 + }, + { + "#": 5974 + } + ], + { + "x": 525, + "y": 370, + "index": 0, + "body": { + "#": 5968 + }, + "isInternal": false + }, + { + "x": 550, + "y": 370, + "index": 1, + "body": { + "#": 5968 + }, + "isInternal": false + }, + { + "x": 550, + "y": 395, + "index": 2, + "body": { + "#": 5968 + }, + "isInternal": false + }, + { + "x": 525, + "y": 395, + "index": 3, + "body": { + "#": 5968 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5982 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5984 + }, + "max": { + "#": 5985 + } + }, + { + "x": 525, + "y": 370 + }, + { + "x": 550, + "y": 395 + }, + { + "x": 537.5, + "y": 382.5 + }, + [ + { + "#": 5988 + }, + { + "#": 5989 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 273, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5991 + }, + "angle": 0, + "vertices": { + "#": 5992 + }, + "position": { + "#": 5997 + }, + "force": { + "#": 5998 + }, + "torque": 0, + "positionImpulse": { + "#": 5999 + }, + "constraintImpulse": { + "#": 6000 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6001 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6002 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6003 + }, + "bounds": { + "#": 6005 + }, + "positionPrev": { + "#": 6008 + }, + "anglePrev": 0, + "axes": { + "#": 6009 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5990 + }, + "sleepCounter": 0 + }, + [ + { + "#": 5990 + } + ], + [ + { + "#": 5993 + }, + { + "#": 5994 + }, + { + "#": 5995 + }, + { + "#": 5996 + } + ], + { + "x": 550, + "y": 370, + "index": 0, + "body": { + "#": 5990 + }, + "isInternal": false + }, + { + "x": 575, + "y": 370, + "index": 1, + "body": { + "#": 5990 + }, + "isInternal": false + }, + { + "x": 575, + "y": 395, + "index": 2, + "body": { + "#": 5990 + }, + "isInternal": false + }, + { + "x": 550, + "y": 395, + "index": 3, + "body": { + "#": 5990 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6004 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6006 + }, + "max": { + "#": 6007 + } + }, + { + "x": 550, + "y": 370 + }, + { + "x": 575, + "y": 395 + }, + { + "x": 562.5, + "y": 382.5 + }, + [ + { + "#": 6010 + }, + { + "#": 6011 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 274, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6013 + }, + "angle": 0, + "vertices": { + "#": 6014 + }, + "position": { + "#": 6019 + }, + "force": { + "#": 6020 + }, + "torque": 0, + "positionImpulse": { + "#": 6021 + }, + "constraintImpulse": { + "#": 6022 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6023 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6024 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6025 + }, + "bounds": { + "#": 6027 + }, + "positionPrev": { + "#": 6030 + }, + "anglePrev": 0, + "axes": { + "#": 6031 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6012 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6012 + } + ], + [ + { + "#": 6015 + }, + { + "#": 6016 + }, + { + "#": 6017 + }, + { + "#": 6018 + } + ], + { + "x": 575, + "y": 370, + "index": 0, + "body": { + "#": 6012 + }, + "isInternal": false + }, + { + "x": 600, + "y": 370, + "index": 1, + "body": { + "#": 6012 + }, + "isInternal": false + }, + { + "x": 600, + "y": 395, + "index": 2, + "body": { + "#": 6012 + }, + "isInternal": false + }, + { + "x": 575, + "y": 395, + "index": 3, + "body": { + "#": 6012 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6026 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6028 + }, + "max": { + "#": 6029 + } + }, + { + "x": 575, + "y": 370 + }, + { + "x": 600, + "y": 395 + }, + { + "x": 587.5, + "y": 382.5 + }, + [ + { + "#": 6032 + }, + { + "#": 6033 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 275, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6035 + }, + "angle": 0, + "vertices": { + "#": 6036 + }, + "position": { + "#": 6041 + }, + "force": { + "#": 6042 + }, + "torque": 0, + "positionImpulse": { + "#": 6043 + }, + "constraintImpulse": { + "#": 6044 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6045 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6046 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6047 + }, + "bounds": { + "#": 6049 + }, + "positionPrev": { + "#": 6052 + }, + "anglePrev": 0, + "axes": { + "#": 6053 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6034 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6034 + } + ], + [ + { + "#": 6037 + }, + { + "#": 6038 + }, + { + "#": 6039 + }, + { + "#": 6040 + } + ], + { + "x": 600, + "y": 370, + "index": 0, + "body": { + "#": 6034 + }, + "isInternal": false + }, + { + "x": 625, + "y": 370, + "index": 1, + "body": { + "#": 6034 + }, + "isInternal": false + }, + { + "x": 625, + "y": 395, + "index": 2, + "body": { + "#": 6034 + }, + "isInternal": false + }, + { + "x": 600, + "y": 395, + "index": 3, + "body": { + "#": 6034 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6048 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6050 + }, + "max": { + "#": 6051 + } + }, + { + "x": 600, + "y": 370 + }, + { + "x": 625, + "y": 395 + }, + { + "x": 612.5, + "y": 382.5 + }, + [ + { + "#": 6054 + }, + { + "#": 6055 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 276, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6057 + }, + "angle": 0, + "vertices": { + "#": 6058 + }, + "position": { + "#": 6063 + }, + "force": { + "#": 6064 + }, + "torque": 0, + "positionImpulse": { + "#": 6065 + }, + "constraintImpulse": { + "#": 6066 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6067 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6068 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6069 + }, + "bounds": { + "#": 6071 + }, + "positionPrev": { + "#": 6074 + }, + "anglePrev": 0, + "axes": { + "#": 6075 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6056 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6056 + } + ], + [ + { + "#": 6059 + }, + { + "#": 6060 + }, + { + "#": 6061 + }, + { + "#": 6062 + } + ], + { + "x": 625, + "y": 370, + "index": 0, + "body": { + "#": 6056 + }, + "isInternal": false + }, + { + "x": 650, + "y": 370, + "index": 1, + "body": { + "#": 6056 + }, + "isInternal": false + }, + { + "x": 650, + "y": 395, + "index": 2, + "body": { + "#": 6056 + }, + "isInternal": false + }, + { + "x": 625, + "y": 395, + "index": 3, + "body": { + "#": 6056 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6070 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6072 + }, + "max": { + "#": 6073 + } + }, + { + "x": 625, + "y": 370 + }, + { + "x": 650, + "y": 395 + }, + { + "x": 637.5, + "y": 382.5 + }, + [ + { + "#": 6076 + }, + { + "#": 6077 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 277, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6079 + }, + "angle": 0, + "vertices": { + "#": 6080 + }, + "position": { + "#": 6085 + }, + "force": { + "#": 6086 + }, + "torque": 0, + "positionImpulse": { + "#": 6087 + }, + "constraintImpulse": { + "#": 6088 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6089 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6090 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6091 + }, + "bounds": { + "#": 6093 + }, + "positionPrev": { + "#": 6096 + }, + "anglePrev": 0, + "axes": { + "#": 6097 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6078 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6078 + } + ], + [ + { + "#": 6081 + }, + { + "#": 6082 + }, + { + "#": 6083 + }, + { + "#": 6084 + } + ], + { + "x": 650, + "y": 370, + "index": 0, + "body": { + "#": 6078 + }, + "isInternal": false + }, + { + "x": 675, + "y": 370, + "index": 1, + "body": { + "#": 6078 + }, + "isInternal": false + }, + { + "x": 675, + "y": 395, + "index": 2, + "body": { + "#": 6078 + }, + "isInternal": false + }, + { + "x": 650, + "y": 395, + "index": 3, + "body": { + "#": 6078 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6092 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6094 + }, + "max": { + "#": 6095 + } + }, + { + "x": 650, + "y": 370 + }, + { + "x": 675, + "y": 395 + }, + { + "x": 662.5, + "y": 382.5 + }, + [ + { + "#": 6098 + }, + { + "#": 6099 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 278, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6101 + }, + "angle": 0, + "vertices": { + "#": 6102 + }, + "position": { + "#": 6107 + }, + "force": { + "#": 6108 + }, + "torque": 0, + "positionImpulse": { + "#": 6109 + }, + "constraintImpulse": { + "#": 6110 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6111 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6112 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6113 + }, + "bounds": { + "#": 6115 + }, + "positionPrev": { + "#": 6118 + }, + "anglePrev": 0, + "axes": { + "#": 6119 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6100 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6100 + } + ], + [ + { + "#": 6103 + }, + { + "#": 6104 + }, + { + "#": 6105 + }, + { + "#": 6106 + } + ], + { + "x": 675, + "y": 370, + "index": 0, + "body": { + "#": 6100 + }, + "isInternal": false + }, + { + "x": 700, + "y": 370, + "index": 1, + "body": { + "#": 6100 + }, + "isInternal": false + }, + { + "x": 700, + "y": 395, + "index": 2, + "body": { + "#": 6100 + }, + "isInternal": false + }, + { + "x": 675, + "y": 395, + "index": 3, + "body": { + "#": 6100 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6114 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6116 + }, + "max": { + "#": 6117 + } + }, + { + "x": 675, + "y": 370 + }, + { + "x": 700, + "y": 395 + }, + { + "x": 687.5, + "y": 382.5 + }, + [ + { + "#": 6120 + }, + { + "#": 6121 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 279, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6123 + }, + "angle": 0, + "vertices": { + "#": 6124 + }, + "position": { + "#": 6129 + }, + "force": { + "#": 6130 + }, + "torque": 0, + "positionImpulse": { + "#": 6131 + }, + "constraintImpulse": { + "#": 6132 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6133 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6134 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6135 + }, + "bounds": { + "#": 6137 + }, + "positionPrev": { + "#": 6140 + }, + "anglePrev": 0, + "axes": { + "#": 6141 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6122 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6122 + } + ], + [ + { + "#": 6125 + }, + { + "#": 6126 + }, + { + "#": 6127 + }, + { + "#": 6128 + } + ], + { + "x": 700, + "y": 370, + "index": 0, + "body": { + "#": 6122 + }, + "isInternal": false + }, + { + "x": 725, + "y": 370, + "index": 1, + "body": { + "#": 6122 + }, + "isInternal": false + }, + { + "x": 725, + "y": 395, + "index": 2, + "body": { + "#": 6122 + }, + "isInternal": false + }, + { + "x": 700, + "y": 395, + "index": 3, + "body": { + "#": 6122 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 382.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6136 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6138 + }, + "max": { + "#": 6139 + } + }, + { + "x": 700, + "y": 370 + }, + { + "x": 725, + "y": 395 + }, + { + "x": 712.5, + "y": 382.5 + }, + [ + { + "#": 6142 + }, + { + "#": 6143 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 280, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6145 + }, + "angle": 0, + "vertices": { + "#": 6146 + }, + "position": { + "#": 6151 + }, + "force": { + "#": 6152 + }, + "torque": 0, + "positionImpulse": { + "#": 6153 + }, + "constraintImpulse": { + "#": 6154 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6155 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6156 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6157 + }, + "bounds": { + "#": 6159 + }, + "positionPrev": { + "#": 6162 + }, + "anglePrev": 0, + "axes": { + "#": 6163 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6144 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6144 + } + ], + [ + { + "#": 6147 + }, + { + "#": 6148 + }, + { + "#": 6149 + }, + { + "#": 6150 + } + ], + { + "x": 100, + "y": 395, + "index": 0, + "body": { + "#": 6144 + }, + "isInternal": false + }, + { + "x": 125, + "y": 395, + "index": 1, + "body": { + "#": 6144 + }, + "isInternal": false + }, + { + "x": 125, + "y": 420, + "index": 2, + "body": { + "#": 6144 + }, + "isInternal": false + }, + { + "x": 100, + "y": 420, + "index": 3, + "body": { + "#": 6144 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6158 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6160 + }, + "max": { + "#": 6161 + } + }, + { + "x": 100, + "y": 395 + }, + { + "x": 125, + "y": 420 + }, + { + "x": 112.5, + "y": 407.5 + }, + [ + { + "#": 6164 + }, + { + "#": 6165 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 281, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6167 + }, + "angle": 0, + "vertices": { + "#": 6168 + }, + "position": { + "#": 6173 + }, + "force": { + "#": 6174 + }, + "torque": 0, + "positionImpulse": { + "#": 6175 + }, + "constraintImpulse": { + "#": 6176 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6177 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6178 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6179 + }, + "bounds": { + "#": 6181 + }, + "positionPrev": { + "#": 6184 + }, + "anglePrev": 0, + "axes": { + "#": 6185 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6166 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6166 + } + ], + [ + { + "#": 6169 + }, + { + "#": 6170 + }, + { + "#": 6171 + }, + { + "#": 6172 + } + ], + { + "x": 125, + "y": 395, + "index": 0, + "body": { + "#": 6166 + }, + "isInternal": false + }, + { + "x": 150, + "y": 395, + "index": 1, + "body": { + "#": 6166 + }, + "isInternal": false + }, + { + "x": 150, + "y": 420, + "index": 2, + "body": { + "#": 6166 + }, + "isInternal": false + }, + { + "x": 125, + "y": 420, + "index": 3, + "body": { + "#": 6166 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6180 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6182 + }, + "max": { + "#": 6183 + } + }, + { + "x": 125, + "y": 395 + }, + { + "x": 150, + "y": 420 + }, + { + "x": 137.5, + "y": 407.5 + }, + [ + { + "#": 6186 + }, + { + "#": 6187 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 282, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6189 + }, + "angle": 0, + "vertices": { + "#": 6190 + }, + "position": { + "#": 6195 + }, + "force": { + "#": 6196 + }, + "torque": 0, + "positionImpulse": { + "#": 6197 + }, + "constraintImpulse": { + "#": 6198 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6199 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6200 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6201 + }, + "bounds": { + "#": 6203 + }, + "positionPrev": { + "#": 6206 + }, + "anglePrev": 0, + "axes": { + "#": 6207 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6188 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6188 + } + ], + [ + { + "#": 6191 + }, + { + "#": 6192 + }, + { + "#": 6193 + }, + { + "#": 6194 + } + ], + { + "x": 150, + "y": 395, + "index": 0, + "body": { + "#": 6188 + }, + "isInternal": false + }, + { + "x": 175, + "y": 395, + "index": 1, + "body": { + "#": 6188 + }, + "isInternal": false + }, + { + "x": 175, + "y": 420, + "index": 2, + "body": { + "#": 6188 + }, + "isInternal": false + }, + { + "x": 150, + "y": 420, + "index": 3, + "body": { + "#": 6188 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6202 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6204 + }, + "max": { + "#": 6205 + } + }, + { + "x": 150, + "y": 395 + }, + { + "x": 175, + "y": 420 + }, + { + "x": 162.5, + "y": 407.5 + }, + [ + { + "#": 6208 + }, + { + "#": 6209 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 283, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6211 + }, + "angle": 0, + "vertices": { + "#": 6212 + }, + "position": { + "#": 6217 + }, + "force": { + "#": 6218 + }, + "torque": 0, + "positionImpulse": { + "#": 6219 + }, + "constraintImpulse": { + "#": 6220 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6221 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6222 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6223 + }, + "bounds": { + "#": 6225 + }, + "positionPrev": { + "#": 6228 + }, + "anglePrev": 0, + "axes": { + "#": 6229 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6210 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6210 + } + ], + [ + { + "#": 6213 + }, + { + "#": 6214 + }, + { + "#": 6215 + }, + { + "#": 6216 + } + ], + { + "x": 175, + "y": 395, + "index": 0, + "body": { + "#": 6210 + }, + "isInternal": false + }, + { + "x": 200, + "y": 395, + "index": 1, + "body": { + "#": 6210 + }, + "isInternal": false + }, + { + "x": 200, + "y": 420, + "index": 2, + "body": { + "#": 6210 + }, + "isInternal": false + }, + { + "x": 175, + "y": 420, + "index": 3, + "body": { + "#": 6210 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6224 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6226 + }, + "max": { + "#": 6227 + } + }, + { + "x": 175, + "y": 395 + }, + { + "x": 200, + "y": 420 + }, + { + "x": 187.5, + "y": 407.5 + }, + [ + { + "#": 6230 + }, + { + "#": 6231 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 284, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6233 + }, + "angle": 0, + "vertices": { + "#": 6234 + }, + "position": { + "#": 6239 + }, + "force": { + "#": 6240 + }, + "torque": 0, + "positionImpulse": { + "#": 6241 + }, + "constraintImpulse": { + "#": 6242 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6243 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6244 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6245 + }, + "bounds": { + "#": 6247 + }, + "positionPrev": { + "#": 6250 + }, + "anglePrev": 0, + "axes": { + "#": 6251 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6232 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6232 + } + ], + [ + { + "#": 6235 + }, + { + "#": 6236 + }, + { + "#": 6237 + }, + { + "#": 6238 + } + ], + { + "x": 200, + "y": 395, + "index": 0, + "body": { + "#": 6232 + }, + "isInternal": false + }, + { + "x": 225, + "y": 395, + "index": 1, + "body": { + "#": 6232 + }, + "isInternal": false + }, + { + "x": 225, + "y": 420, + "index": 2, + "body": { + "#": 6232 + }, + "isInternal": false + }, + { + "x": 200, + "y": 420, + "index": 3, + "body": { + "#": 6232 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6246 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6248 + }, + "max": { + "#": 6249 + } + }, + { + "x": 200, + "y": 395 + }, + { + "x": 225, + "y": 420 + }, + { + "x": 212.5, + "y": 407.5 + }, + [ + { + "#": 6252 + }, + { + "#": 6253 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 285, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6255 + }, + "angle": 0, + "vertices": { + "#": 6256 + }, + "position": { + "#": 6261 + }, + "force": { + "#": 6262 + }, + "torque": 0, + "positionImpulse": { + "#": 6263 + }, + "constraintImpulse": { + "#": 6264 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6265 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6266 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6267 + }, + "bounds": { + "#": 6269 + }, + "positionPrev": { + "#": 6272 + }, + "anglePrev": 0, + "axes": { + "#": 6273 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6254 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6254 + } + ], + [ + { + "#": 6257 + }, + { + "#": 6258 + }, + { + "#": 6259 + }, + { + "#": 6260 + } + ], + { + "x": 225, + "y": 395, + "index": 0, + "body": { + "#": 6254 + }, + "isInternal": false + }, + { + "x": 250, + "y": 395, + "index": 1, + "body": { + "#": 6254 + }, + "isInternal": false + }, + { + "x": 250, + "y": 420, + "index": 2, + "body": { + "#": 6254 + }, + "isInternal": false + }, + { + "x": 225, + "y": 420, + "index": 3, + "body": { + "#": 6254 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6268 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6270 + }, + "max": { + "#": 6271 + } + }, + { + "x": 225, + "y": 395 + }, + { + "x": 250, + "y": 420 + }, + { + "x": 237.5, + "y": 407.5 + }, + [ + { + "#": 6274 + }, + { + "#": 6275 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 286, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6277 + }, + "angle": 0, + "vertices": { + "#": 6278 + }, + "position": { + "#": 6283 + }, + "force": { + "#": 6284 + }, + "torque": 0, + "positionImpulse": { + "#": 6285 + }, + "constraintImpulse": { + "#": 6286 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6287 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6288 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6289 + }, + "bounds": { + "#": 6291 + }, + "positionPrev": { + "#": 6294 + }, + "anglePrev": 0, + "axes": { + "#": 6295 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6276 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6276 + } + ], + [ + { + "#": 6279 + }, + { + "#": 6280 + }, + { + "#": 6281 + }, + { + "#": 6282 + } + ], + { + "x": 250, + "y": 395, + "index": 0, + "body": { + "#": 6276 + }, + "isInternal": false + }, + { + "x": 275, + "y": 395, + "index": 1, + "body": { + "#": 6276 + }, + "isInternal": false + }, + { + "x": 275, + "y": 420, + "index": 2, + "body": { + "#": 6276 + }, + "isInternal": false + }, + { + "x": 250, + "y": 420, + "index": 3, + "body": { + "#": 6276 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6290 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6292 + }, + "max": { + "#": 6293 + } + }, + { + "x": 250, + "y": 395 + }, + { + "x": 275, + "y": 420 + }, + { + "x": 262.5, + "y": 407.5 + }, + [ + { + "#": 6296 + }, + { + "#": 6297 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 287, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6299 + }, + "angle": 0, + "vertices": { + "#": 6300 + }, + "position": { + "#": 6305 + }, + "force": { + "#": 6306 + }, + "torque": 0, + "positionImpulse": { + "#": 6307 + }, + "constraintImpulse": { + "#": 6308 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6309 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6310 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6311 + }, + "bounds": { + "#": 6313 + }, + "positionPrev": { + "#": 6316 + }, + "anglePrev": 0, + "axes": { + "#": 6317 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6298 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6298 + } + ], + [ + { + "#": 6301 + }, + { + "#": 6302 + }, + { + "#": 6303 + }, + { + "#": 6304 + } + ], + { + "x": 275, + "y": 395, + "index": 0, + "body": { + "#": 6298 + }, + "isInternal": false + }, + { + "x": 300, + "y": 395, + "index": 1, + "body": { + "#": 6298 + }, + "isInternal": false + }, + { + "x": 300, + "y": 420, + "index": 2, + "body": { + "#": 6298 + }, + "isInternal": false + }, + { + "x": 275, + "y": 420, + "index": 3, + "body": { + "#": 6298 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6312 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6314 + }, + "max": { + "#": 6315 + } + }, + { + "x": 275, + "y": 395 + }, + { + "x": 300, + "y": 420 + }, + { + "x": 287.5, + "y": 407.5 + }, + [ + { + "#": 6318 + }, + { + "#": 6319 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 288, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6321 + }, + "angle": 0, + "vertices": { + "#": 6322 + }, + "position": { + "#": 6327 + }, + "force": { + "#": 6328 + }, + "torque": 0, + "positionImpulse": { + "#": 6329 + }, + "constraintImpulse": { + "#": 6330 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6331 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6332 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6333 + }, + "bounds": { + "#": 6335 + }, + "positionPrev": { + "#": 6338 + }, + "anglePrev": 0, + "axes": { + "#": 6339 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6320 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6320 + } + ], + [ + { + "#": 6323 + }, + { + "#": 6324 + }, + { + "#": 6325 + }, + { + "#": 6326 + } + ], + { + "x": 300, + "y": 395, + "index": 0, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 325, + "y": 395, + "index": 1, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 325, + "y": 420, + "index": 2, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 300, + "y": 420, + "index": 3, + "body": { + "#": 6320 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6334 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6336 + }, + "max": { + "#": 6337 + } + }, + { + "x": 300, + "y": 395 + }, + { + "x": 325, + "y": 420 + }, + { + "x": 312.5, + "y": 407.5 + }, + [ + { + "#": 6340 + }, + { + "#": 6341 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 289, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6343 + }, + "angle": 0, + "vertices": { + "#": 6344 + }, + "position": { + "#": 6349 + }, + "force": { + "#": 6350 + }, + "torque": 0, + "positionImpulse": { + "#": 6351 + }, + "constraintImpulse": { + "#": 6352 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6353 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6354 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6355 + }, + "bounds": { + "#": 6357 + }, + "positionPrev": { + "#": 6360 + }, + "anglePrev": 0, + "axes": { + "#": 6361 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6342 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6342 + } + ], + [ + { + "#": 6345 + }, + { + "#": 6346 + }, + { + "#": 6347 + }, + { + "#": 6348 + } + ], + { + "x": 325, + "y": 395, + "index": 0, + "body": { + "#": 6342 + }, + "isInternal": false + }, + { + "x": 350, + "y": 395, + "index": 1, + "body": { + "#": 6342 + }, + "isInternal": false + }, + { + "x": 350, + "y": 420, + "index": 2, + "body": { + "#": 6342 + }, + "isInternal": false + }, + { + "x": 325, + "y": 420, + "index": 3, + "body": { + "#": 6342 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6356 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6358 + }, + "max": { + "#": 6359 + } + }, + { + "x": 325, + "y": 395 + }, + { + "x": 350, + "y": 420 + }, + { + "x": 337.5, + "y": 407.5 + }, + [ + { + "#": 6362 + }, + { + "#": 6363 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 290, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6365 + }, + "angle": 0, + "vertices": { + "#": 6366 + }, + "position": { + "#": 6371 + }, + "force": { + "#": 6372 + }, + "torque": 0, + "positionImpulse": { + "#": 6373 + }, + "constraintImpulse": { + "#": 6374 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6375 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6376 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6377 + }, + "bounds": { + "#": 6379 + }, + "positionPrev": { + "#": 6382 + }, + "anglePrev": 0, + "axes": { + "#": 6383 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6364 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6364 + } + ], + [ + { + "#": 6367 + }, + { + "#": 6368 + }, + { + "#": 6369 + }, + { + "#": 6370 + } + ], + { + "x": 350, + "y": 395, + "index": 0, + "body": { + "#": 6364 + }, + "isInternal": false + }, + { + "x": 375, + "y": 395, + "index": 1, + "body": { + "#": 6364 + }, + "isInternal": false + }, + { + "x": 375, + "y": 420, + "index": 2, + "body": { + "#": 6364 + }, + "isInternal": false + }, + { + "x": 350, + "y": 420, + "index": 3, + "body": { + "#": 6364 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6378 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6380 + }, + "max": { + "#": 6381 + } + }, + { + "x": 350, + "y": 395 + }, + { + "x": 375, + "y": 420 + }, + { + "x": 362.5, + "y": 407.5 + }, + [ + { + "#": 6384 + }, + { + "#": 6385 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 291, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6387 + }, + "angle": 0, + "vertices": { + "#": 6388 + }, + "position": { + "#": 6393 + }, + "force": { + "#": 6394 + }, + "torque": 0, + "positionImpulse": { + "#": 6395 + }, + "constraintImpulse": { + "#": 6396 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6397 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6398 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6399 + }, + "bounds": { + "#": 6401 + }, + "positionPrev": { + "#": 6404 + }, + "anglePrev": 0, + "axes": { + "#": 6405 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6386 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6386 + } + ], + [ + { + "#": 6389 + }, + { + "#": 6390 + }, + { + "#": 6391 + }, + { + "#": 6392 + } + ], + { + "x": 375, + "y": 395, + "index": 0, + "body": { + "#": 6386 + }, + "isInternal": false + }, + { + "x": 400, + "y": 395, + "index": 1, + "body": { + "#": 6386 + }, + "isInternal": false + }, + { + "x": 400, + "y": 420, + "index": 2, + "body": { + "#": 6386 + }, + "isInternal": false + }, + { + "x": 375, + "y": 420, + "index": 3, + "body": { + "#": 6386 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6400 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6402 + }, + "max": { + "#": 6403 + } + }, + { + "x": 375, + "y": 395 + }, + { + "x": 400, + "y": 420 + }, + { + "x": 387.5, + "y": 407.5 + }, + [ + { + "#": 6406 + }, + { + "#": 6407 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 292, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6409 + }, + "angle": 0, + "vertices": { + "#": 6410 + }, + "position": { + "#": 6415 + }, + "force": { + "#": 6416 + }, + "torque": 0, + "positionImpulse": { + "#": 6417 + }, + "constraintImpulse": { + "#": 6418 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6419 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6420 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6421 + }, + "bounds": { + "#": 6423 + }, + "positionPrev": { + "#": 6426 + }, + "anglePrev": 0, + "axes": { + "#": 6427 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6408 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6408 + } + ], + [ + { + "#": 6411 + }, + { + "#": 6412 + }, + { + "#": 6413 + }, + { + "#": 6414 + } + ], + { + "x": 400, + "y": 395, + "index": 0, + "body": { + "#": 6408 + }, + "isInternal": false + }, + { + "x": 425, + "y": 395, + "index": 1, + "body": { + "#": 6408 + }, + "isInternal": false + }, + { + "x": 425, + "y": 420, + "index": 2, + "body": { + "#": 6408 + }, + "isInternal": false + }, + { + "x": 400, + "y": 420, + "index": 3, + "body": { + "#": 6408 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6422 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6424 + }, + "max": { + "#": 6425 + } + }, + { + "x": 400, + "y": 395 + }, + { + "x": 425, + "y": 420 + }, + { + "x": 412.5, + "y": 407.5 + }, + [ + { + "#": 6428 + }, + { + "#": 6429 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 293, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6431 + }, + "angle": 0, + "vertices": { + "#": 6432 + }, + "position": { + "#": 6437 + }, + "force": { + "#": 6438 + }, + "torque": 0, + "positionImpulse": { + "#": 6439 + }, + "constraintImpulse": { + "#": 6440 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6441 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6442 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6443 + }, + "bounds": { + "#": 6445 + }, + "positionPrev": { + "#": 6448 + }, + "anglePrev": 0, + "axes": { + "#": 6449 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6430 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6430 + } + ], + [ + { + "#": 6433 + }, + { + "#": 6434 + }, + { + "#": 6435 + }, + { + "#": 6436 + } + ], + { + "x": 425, + "y": 395, + "index": 0, + "body": { + "#": 6430 + }, + "isInternal": false + }, + { + "x": 450, + "y": 395, + "index": 1, + "body": { + "#": 6430 + }, + "isInternal": false + }, + { + "x": 450, + "y": 420, + "index": 2, + "body": { + "#": 6430 + }, + "isInternal": false + }, + { + "x": 425, + "y": 420, + "index": 3, + "body": { + "#": 6430 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6444 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6446 + }, + "max": { + "#": 6447 + } + }, + { + "x": 425, + "y": 395 + }, + { + "x": 450, + "y": 420 + }, + { + "x": 437.5, + "y": 407.5 + }, + [ + { + "#": 6450 + }, + { + "#": 6451 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 294, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6453 + }, + "angle": 0, + "vertices": { + "#": 6454 + }, + "position": { + "#": 6459 + }, + "force": { + "#": 6460 + }, + "torque": 0, + "positionImpulse": { + "#": 6461 + }, + "constraintImpulse": { + "#": 6462 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6463 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6464 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6465 + }, + "bounds": { + "#": 6467 + }, + "positionPrev": { + "#": 6470 + }, + "anglePrev": 0, + "axes": { + "#": 6471 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6452 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6452 + } + ], + [ + { + "#": 6455 + }, + { + "#": 6456 + }, + { + "#": 6457 + }, + { + "#": 6458 + } + ], + { + "x": 450, + "y": 395, + "index": 0, + "body": { + "#": 6452 + }, + "isInternal": false + }, + { + "x": 475, + "y": 395, + "index": 1, + "body": { + "#": 6452 + }, + "isInternal": false + }, + { + "x": 475, + "y": 420, + "index": 2, + "body": { + "#": 6452 + }, + "isInternal": false + }, + { + "x": 450, + "y": 420, + "index": 3, + "body": { + "#": 6452 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6466 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6468 + }, + "max": { + "#": 6469 + } + }, + { + "x": 450, + "y": 395 + }, + { + "x": 475, + "y": 420 + }, + { + "x": 462.5, + "y": 407.5 + }, + [ + { + "#": 6472 + }, + { + "#": 6473 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 295, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6475 + }, + "angle": 0, + "vertices": { + "#": 6476 + }, + "position": { + "#": 6481 + }, + "force": { + "#": 6482 + }, + "torque": 0, + "positionImpulse": { + "#": 6483 + }, + "constraintImpulse": { + "#": 6484 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6485 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6486 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6487 + }, + "bounds": { + "#": 6489 + }, + "positionPrev": { + "#": 6492 + }, + "anglePrev": 0, + "axes": { + "#": 6493 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6474 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6474 + } + ], + [ + { + "#": 6477 + }, + { + "#": 6478 + }, + { + "#": 6479 + }, + { + "#": 6480 + } + ], + { + "x": 475, + "y": 395, + "index": 0, + "body": { + "#": 6474 + }, + "isInternal": false + }, + { + "x": 500, + "y": 395, + "index": 1, + "body": { + "#": 6474 + }, + "isInternal": false + }, + { + "x": 500, + "y": 420, + "index": 2, + "body": { + "#": 6474 + }, + "isInternal": false + }, + { + "x": 475, + "y": 420, + "index": 3, + "body": { + "#": 6474 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6488 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6490 + }, + "max": { + "#": 6491 + } + }, + { + "x": 475, + "y": 395 + }, + { + "x": 500, + "y": 420 + }, + { + "x": 487.5, + "y": 407.5 + }, + [ + { + "#": 6494 + }, + { + "#": 6495 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 296, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6497 + }, + "angle": 0, + "vertices": { + "#": 6498 + }, + "position": { + "#": 6503 + }, + "force": { + "#": 6504 + }, + "torque": 0, + "positionImpulse": { + "#": 6505 + }, + "constraintImpulse": { + "#": 6506 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6507 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6508 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6509 + }, + "bounds": { + "#": 6511 + }, + "positionPrev": { + "#": 6514 + }, + "anglePrev": 0, + "axes": { + "#": 6515 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6496 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6496 + } + ], + [ + { + "#": 6499 + }, + { + "#": 6500 + }, + { + "#": 6501 + }, + { + "#": 6502 + } + ], + { + "x": 500, + "y": 395, + "index": 0, + "body": { + "#": 6496 + }, + "isInternal": false + }, + { + "x": 525, + "y": 395, + "index": 1, + "body": { + "#": 6496 + }, + "isInternal": false + }, + { + "x": 525, + "y": 420, + "index": 2, + "body": { + "#": 6496 + }, + "isInternal": false + }, + { + "x": 500, + "y": 420, + "index": 3, + "body": { + "#": 6496 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6510 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6512 + }, + "max": { + "#": 6513 + } + }, + { + "x": 500, + "y": 395 + }, + { + "x": 525, + "y": 420 + }, + { + "x": 512.5, + "y": 407.5 + }, + [ + { + "#": 6516 + }, + { + "#": 6517 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 297, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6519 + }, + "angle": 0, + "vertices": { + "#": 6520 + }, + "position": { + "#": 6525 + }, + "force": { + "#": 6526 + }, + "torque": 0, + "positionImpulse": { + "#": 6527 + }, + "constraintImpulse": { + "#": 6528 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6529 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6530 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6531 + }, + "bounds": { + "#": 6533 + }, + "positionPrev": { + "#": 6536 + }, + "anglePrev": 0, + "axes": { + "#": 6537 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6518 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6518 + } + ], + [ + { + "#": 6521 + }, + { + "#": 6522 + }, + { + "#": 6523 + }, + { + "#": 6524 + } + ], + { + "x": 525, + "y": 395, + "index": 0, + "body": { + "#": 6518 + }, + "isInternal": false + }, + { + "x": 550, + "y": 395, + "index": 1, + "body": { + "#": 6518 + }, + "isInternal": false + }, + { + "x": 550, + "y": 420, + "index": 2, + "body": { + "#": 6518 + }, + "isInternal": false + }, + { + "x": 525, + "y": 420, + "index": 3, + "body": { + "#": 6518 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6532 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6534 + }, + "max": { + "#": 6535 + } + }, + { + "x": 525, + "y": 395 + }, + { + "x": 550, + "y": 420 + }, + { + "x": 537.5, + "y": 407.5 + }, + [ + { + "#": 6538 + }, + { + "#": 6539 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 298, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6541 + }, + "angle": 0, + "vertices": { + "#": 6542 + }, + "position": { + "#": 6547 + }, + "force": { + "#": 6548 + }, + "torque": 0, + "positionImpulse": { + "#": 6549 + }, + "constraintImpulse": { + "#": 6550 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6551 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6552 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6553 + }, + "bounds": { + "#": 6555 + }, + "positionPrev": { + "#": 6558 + }, + "anglePrev": 0, + "axes": { + "#": 6559 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6540 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6540 + } + ], + [ + { + "#": 6543 + }, + { + "#": 6544 + }, + { + "#": 6545 + }, + { + "#": 6546 + } + ], + { + "x": 550, + "y": 395, + "index": 0, + "body": { + "#": 6540 + }, + "isInternal": false + }, + { + "x": 575, + "y": 395, + "index": 1, + "body": { + "#": 6540 + }, + "isInternal": false + }, + { + "x": 575, + "y": 420, + "index": 2, + "body": { + "#": 6540 + }, + "isInternal": false + }, + { + "x": 550, + "y": 420, + "index": 3, + "body": { + "#": 6540 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6554 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6556 + }, + "max": { + "#": 6557 + } + }, + { + "x": 550, + "y": 395 + }, + { + "x": 575, + "y": 420 + }, + { + "x": 562.5, + "y": 407.5 + }, + [ + { + "#": 6560 + }, + { + "#": 6561 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 299, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6563 + }, + "angle": 0, + "vertices": { + "#": 6564 + }, + "position": { + "#": 6569 + }, + "force": { + "#": 6570 + }, + "torque": 0, + "positionImpulse": { + "#": 6571 + }, + "constraintImpulse": { + "#": 6572 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6573 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6574 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6575 + }, + "bounds": { + "#": 6577 + }, + "positionPrev": { + "#": 6580 + }, + "anglePrev": 0, + "axes": { + "#": 6581 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6562 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6562 + } + ], + [ + { + "#": 6565 + }, + { + "#": 6566 + }, + { + "#": 6567 + }, + { + "#": 6568 + } + ], + { + "x": 575, + "y": 395, + "index": 0, + "body": { + "#": 6562 + }, + "isInternal": false + }, + { + "x": 600, + "y": 395, + "index": 1, + "body": { + "#": 6562 + }, + "isInternal": false + }, + { + "x": 600, + "y": 420, + "index": 2, + "body": { + "#": 6562 + }, + "isInternal": false + }, + { + "x": 575, + "y": 420, + "index": 3, + "body": { + "#": 6562 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6576 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6578 + }, + "max": { + "#": 6579 + } + }, + { + "x": 575, + "y": 395 + }, + { + "x": 600, + "y": 420 + }, + { + "x": 587.5, + "y": 407.5 + }, + [ + { + "#": 6582 + }, + { + "#": 6583 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 300, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6585 + }, + "angle": 0, + "vertices": { + "#": 6586 + }, + "position": { + "#": 6591 + }, + "force": { + "#": 6592 + }, + "torque": 0, + "positionImpulse": { + "#": 6593 + }, + "constraintImpulse": { + "#": 6594 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6595 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6596 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6597 + }, + "bounds": { + "#": 6599 + }, + "positionPrev": { + "#": 6602 + }, + "anglePrev": 0, + "axes": { + "#": 6603 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6584 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6584 + } + ], + [ + { + "#": 6587 + }, + { + "#": 6588 + }, + { + "#": 6589 + }, + { + "#": 6590 + } + ], + { + "x": 600, + "y": 395, + "index": 0, + "body": { + "#": 6584 + }, + "isInternal": false + }, + { + "x": 625, + "y": 395, + "index": 1, + "body": { + "#": 6584 + }, + "isInternal": false + }, + { + "x": 625, + "y": 420, + "index": 2, + "body": { + "#": 6584 + }, + "isInternal": false + }, + { + "x": 600, + "y": 420, + "index": 3, + "body": { + "#": 6584 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6598 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6600 + }, + "max": { + "#": 6601 + } + }, + { + "x": 600, + "y": 395 + }, + { + "x": 625, + "y": 420 + }, + { + "x": 612.5, + "y": 407.5 + }, + [ + { + "#": 6604 + }, + { + "#": 6605 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 301, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6607 + }, + "angle": 0, + "vertices": { + "#": 6608 + }, + "position": { + "#": 6613 + }, + "force": { + "#": 6614 + }, + "torque": 0, + "positionImpulse": { + "#": 6615 + }, + "constraintImpulse": { + "#": 6616 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6617 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6618 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6619 + }, + "bounds": { + "#": 6621 + }, + "positionPrev": { + "#": 6624 + }, + "anglePrev": 0, + "axes": { + "#": 6625 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6606 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6606 + } + ], + [ + { + "#": 6609 + }, + { + "#": 6610 + }, + { + "#": 6611 + }, + { + "#": 6612 + } + ], + { + "x": 625, + "y": 395, + "index": 0, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 650, + "y": 395, + "index": 1, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 650, + "y": 420, + "index": 2, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 625, + "y": 420, + "index": 3, + "body": { + "#": 6606 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6620 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6622 + }, + "max": { + "#": 6623 + } + }, + { + "x": 625, + "y": 395 + }, + { + "x": 650, + "y": 420 + }, + { + "x": 637.5, + "y": 407.5 + }, + [ + { + "#": 6626 + }, + { + "#": 6627 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 302, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6629 + }, + "angle": 0, + "vertices": { + "#": 6630 + }, + "position": { + "#": 6635 + }, + "force": { + "#": 6636 + }, + "torque": 0, + "positionImpulse": { + "#": 6637 + }, + "constraintImpulse": { + "#": 6638 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6639 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6640 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6641 + }, + "bounds": { + "#": 6643 + }, + "positionPrev": { + "#": 6646 + }, + "anglePrev": 0, + "axes": { + "#": 6647 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6628 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6628 + } + ], + [ + { + "#": 6631 + }, + { + "#": 6632 + }, + { + "#": 6633 + }, + { + "#": 6634 + } + ], + { + "x": 650, + "y": 395, + "index": 0, + "body": { + "#": 6628 + }, + "isInternal": false + }, + { + "x": 675, + "y": 395, + "index": 1, + "body": { + "#": 6628 + }, + "isInternal": false + }, + { + "x": 675, + "y": 420, + "index": 2, + "body": { + "#": 6628 + }, + "isInternal": false + }, + { + "x": 650, + "y": 420, + "index": 3, + "body": { + "#": 6628 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6642 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6644 + }, + "max": { + "#": 6645 + } + }, + { + "x": 650, + "y": 395 + }, + { + "x": 675, + "y": 420 + }, + { + "x": 662.5, + "y": 407.5 + }, + [ + { + "#": 6648 + }, + { + "#": 6649 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 303, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6651 + }, + "angle": 0, + "vertices": { + "#": 6652 + }, + "position": { + "#": 6657 + }, + "force": { + "#": 6658 + }, + "torque": 0, + "positionImpulse": { + "#": 6659 + }, + "constraintImpulse": { + "#": 6660 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6661 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6662 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6663 + }, + "bounds": { + "#": 6665 + }, + "positionPrev": { + "#": 6668 + }, + "anglePrev": 0, + "axes": { + "#": 6669 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6650 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6650 + } + ], + [ + { + "#": 6653 + }, + { + "#": 6654 + }, + { + "#": 6655 + }, + { + "#": 6656 + } + ], + { + "x": 675, + "y": 395, + "index": 0, + "body": { + "#": 6650 + }, + "isInternal": false + }, + { + "x": 700, + "y": 395, + "index": 1, + "body": { + "#": 6650 + }, + "isInternal": false + }, + { + "x": 700, + "y": 420, + "index": 2, + "body": { + "#": 6650 + }, + "isInternal": false + }, + { + "x": 675, + "y": 420, + "index": 3, + "body": { + "#": 6650 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6664 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6666 + }, + "max": { + "#": 6667 + } + }, + { + "x": 675, + "y": 395 + }, + { + "x": 700, + "y": 420 + }, + { + "x": 687.5, + "y": 407.5 + }, + [ + { + "#": 6670 + }, + { + "#": 6671 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 304, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6673 + }, + "angle": 0, + "vertices": { + "#": 6674 + }, + "position": { + "#": 6679 + }, + "force": { + "#": 6680 + }, + "torque": 0, + "positionImpulse": { + "#": 6681 + }, + "constraintImpulse": { + "#": 6682 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6683 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6684 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6685 + }, + "bounds": { + "#": 6687 + }, + "positionPrev": { + "#": 6690 + }, + "anglePrev": 0, + "axes": { + "#": 6691 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6672 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6672 + } + ], + [ + { + "#": 6675 + }, + { + "#": 6676 + }, + { + "#": 6677 + }, + { + "#": 6678 + } + ], + { + "x": 700, + "y": 395, + "index": 0, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 725, + "y": 395, + "index": 1, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 725, + "y": 420, + "index": 2, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 700, + "y": 420, + "index": 3, + "body": { + "#": 6672 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 407.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6686 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6688 + }, + "max": { + "#": 6689 + } + }, + { + "x": 700, + "y": 395 + }, + { + "x": 725, + "y": 420 + }, + { + "x": 712.5, + "y": 407.5 + }, + [ + { + "#": 6692 + }, + { + "#": 6693 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 305, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6695 + }, + "angle": 0, + "vertices": { + "#": 6696 + }, + "position": { + "#": 6701 + }, + "force": { + "#": 6702 + }, + "torque": 0, + "positionImpulse": { + "#": 6703 + }, + "constraintImpulse": { + "#": 6704 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6705 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6706 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6707 + }, + "bounds": { + "#": 6709 + }, + "positionPrev": { + "#": 6712 + }, + "anglePrev": 0, + "axes": { + "#": 6713 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6694 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6694 + } + ], + [ + { + "#": 6697 + }, + { + "#": 6698 + }, + { + "#": 6699 + }, + { + "#": 6700 + } + ], + { + "x": 100, + "y": 420, + "index": 0, + "body": { + "#": 6694 + }, + "isInternal": false + }, + { + "x": 125, + "y": 420, + "index": 1, + "body": { + "#": 6694 + }, + "isInternal": false + }, + { + "x": 125, + "y": 445, + "index": 2, + "body": { + "#": 6694 + }, + "isInternal": false + }, + { + "x": 100, + "y": 445, + "index": 3, + "body": { + "#": 6694 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6708 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6710 + }, + "max": { + "#": 6711 + } + }, + { + "x": 100, + "y": 420 + }, + { + "x": 125, + "y": 445 + }, + { + "x": 112.5, + "y": 432.5 + }, + [ + { + "#": 6714 + }, + { + "#": 6715 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 306, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6717 + }, + "angle": 0, + "vertices": { + "#": 6718 + }, + "position": { + "#": 6723 + }, + "force": { + "#": 6724 + }, + "torque": 0, + "positionImpulse": { + "#": 6725 + }, + "constraintImpulse": { + "#": 6726 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6727 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6728 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6729 + }, + "bounds": { + "#": 6731 + }, + "positionPrev": { + "#": 6734 + }, + "anglePrev": 0, + "axes": { + "#": 6735 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6716 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6716 + } + ], + [ + { + "#": 6719 + }, + { + "#": 6720 + }, + { + "#": 6721 + }, + { + "#": 6722 + } + ], + { + "x": 125, + "y": 420, + "index": 0, + "body": { + "#": 6716 + }, + "isInternal": false + }, + { + "x": 150, + "y": 420, + "index": 1, + "body": { + "#": 6716 + }, + "isInternal": false + }, + { + "x": 150, + "y": 445, + "index": 2, + "body": { + "#": 6716 + }, + "isInternal": false + }, + { + "x": 125, + "y": 445, + "index": 3, + "body": { + "#": 6716 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6730 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6732 + }, + "max": { + "#": 6733 + } + }, + { + "x": 125, + "y": 420 + }, + { + "x": 150, + "y": 445 + }, + { + "x": 137.5, + "y": 432.5 + }, + [ + { + "#": 6736 + }, + { + "#": 6737 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 307, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6739 + }, + "angle": 0, + "vertices": { + "#": 6740 + }, + "position": { + "#": 6745 + }, + "force": { + "#": 6746 + }, + "torque": 0, + "positionImpulse": { + "#": 6747 + }, + "constraintImpulse": { + "#": 6748 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6749 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6750 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6751 + }, + "bounds": { + "#": 6753 + }, + "positionPrev": { + "#": 6756 + }, + "anglePrev": 0, + "axes": { + "#": 6757 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6738 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6738 + } + ], + [ + { + "#": 6741 + }, + { + "#": 6742 + }, + { + "#": 6743 + }, + { + "#": 6744 + } + ], + { + "x": 150, + "y": 420, + "index": 0, + "body": { + "#": 6738 + }, + "isInternal": false + }, + { + "x": 175, + "y": 420, + "index": 1, + "body": { + "#": 6738 + }, + "isInternal": false + }, + { + "x": 175, + "y": 445, + "index": 2, + "body": { + "#": 6738 + }, + "isInternal": false + }, + { + "x": 150, + "y": 445, + "index": 3, + "body": { + "#": 6738 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6752 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6754 + }, + "max": { + "#": 6755 + } + }, + { + "x": 150, + "y": 420 + }, + { + "x": 175, + "y": 445 + }, + { + "x": 162.5, + "y": 432.5 + }, + [ + { + "#": 6758 + }, + { + "#": 6759 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 308, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6761 + }, + "angle": 0, + "vertices": { + "#": 6762 + }, + "position": { + "#": 6767 + }, + "force": { + "#": 6768 + }, + "torque": 0, + "positionImpulse": { + "#": 6769 + }, + "constraintImpulse": { + "#": 6770 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6771 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6772 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6773 + }, + "bounds": { + "#": 6775 + }, + "positionPrev": { + "#": 6778 + }, + "anglePrev": 0, + "axes": { + "#": 6779 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6760 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6760 + } + ], + [ + { + "#": 6763 + }, + { + "#": 6764 + }, + { + "#": 6765 + }, + { + "#": 6766 + } + ], + { + "x": 175, + "y": 420, + "index": 0, + "body": { + "#": 6760 + }, + "isInternal": false + }, + { + "x": 200, + "y": 420, + "index": 1, + "body": { + "#": 6760 + }, + "isInternal": false + }, + { + "x": 200, + "y": 445, + "index": 2, + "body": { + "#": 6760 + }, + "isInternal": false + }, + { + "x": 175, + "y": 445, + "index": 3, + "body": { + "#": 6760 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6774 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6776 + }, + "max": { + "#": 6777 + } + }, + { + "x": 175, + "y": 420 + }, + { + "x": 200, + "y": 445 + }, + { + "x": 187.5, + "y": 432.5 + }, + [ + { + "#": 6780 + }, + { + "#": 6781 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 309, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6783 + }, + "angle": 0, + "vertices": { + "#": 6784 + }, + "position": { + "#": 6789 + }, + "force": { + "#": 6790 + }, + "torque": 0, + "positionImpulse": { + "#": 6791 + }, + "constraintImpulse": { + "#": 6792 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6793 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6794 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6795 + }, + "bounds": { + "#": 6797 + }, + "positionPrev": { + "#": 6800 + }, + "anglePrev": 0, + "axes": { + "#": 6801 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6782 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6782 + } + ], + [ + { + "#": 6785 + }, + { + "#": 6786 + }, + { + "#": 6787 + }, + { + "#": 6788 + } + ], + { + "x": 200, + "y": 420, + "index": 0, + "body": { + "#": 6782 + }, + "isInternal": false + }, + { + "x": 225, + "y": 420, + "index": 1, + "body": { + "#": 6782 + }, + "isInternal": false + }, + { + "x": 225, + "y": 445, + "index": 2, + "body": { + "#": 6782 + }, + "isInternal": false + }, + { + "x": 200, + "y": 445, + "index": 3, + "body": { + "#": 6782 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6796 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6798 + }, + "max": { + "#": 6799 + } + }, + { + "x": 200, + "y": 420 + }, + { + "x": 225, + "y": 445 + }, + { + "x": 212.5, + "y": 432.5 + }, + [ + { + "#": 6802 + }, + { + "#": 6803 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 310, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6805 + }, + "angle": 0, + "vertices": { + "#": 6806 + }, + "position": { + "#": 6811 + }, + "force": { + "#": 6812 + }, + "torque": 0, + "positionImpulse": { + "#": 6813 + }, + "constraintImpulse": { + "#": 6814 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6815 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6816 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6817 + }, + "bounds": { + "#": 6819 + }, + "positionPrev": { + "#": 6822 + }, + "anglePrev": 0, + "axes": { + "#": 6823 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6804 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6804 + } + ], + [ + { + "#": 6807 + }, + { + "#": 6808 + }, + { + "#": 6809 + }, + { + "#": 6810 + } + ], + { + "x": 225, + "y": 420, + "index": 0, + "body": { + "#": 6804 + }, + "isInternal": false + }, + { + "x": 250, + "y": 420, + "index": 1, + "body": { + "#": 6804 + }, + "isInternal": false + }, + { + "x": 250, + "y": 445, + "index": 2, + "body": { + "#": 6804 + }, + "isInternal": false + }, + { + "x": 225, + "y": 445, + "index": 3, + "body": { + "#": 6804 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6818 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6820 + }, + "max": { + "#": 6821 + } + }, + { + "x": 225, + "y": 420 + }, + { + "x": 250, + "y": 445 + }, + { + "x": 237.5, + "y": 432.5 + }, + [ + { + "#": 6824 + }, + { + "#": 6825 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 311, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6827 + }, + "angle": 0, + "vertices": { + "#": 6828 + }, + "position": { + "#": 6833 + }, + "force": { + "#": 6834 + }, + "torque": 0, + "positionImpulse": { + "#": 6835 + }, + "constraintImpulse": { + "#": 6836 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6837 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6838 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6839 + }, + "bounds": { + "#": 6841 + }, + "positionPrev": { + "#": 6844 + }, + "anglePrev": 0, + "axes": { + "#": 6845 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6826 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6826 + } + ], + [ + { + "#": 6829 + }, + { + "#": 6830 + }, + { + "#": 6831 + }, + { + "#": 6832 + } + ], + { + "x": 250, + "y": 420, + "index": 0, + "body": { + "#": 6826 + }, + "isInternal": false + }, + { + "x": 275, + "y": 420, + "index": 1, + "body": { + "#": 6826 + }, + "isInternal": false + }, + { + "x": 275, + "y": 445, + "index": 2, + "body": { + "#": 6826 + }, + "isInternal": false + }, + { + "x": 250, + "y": 445, + "index": 3, + "body": { + "#": 6826 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6840 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6842 + }, + "max": { + "#": 6843 + } + }, + { + "x": 250, + "y": 420 + }, + { + "x": 275, + "y": 445 + }, + { + "x": 262.5, + "y": 432.5 + }, + [ + { + "#": 6846 + }, + { + "#": 6847 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 312, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6849 + }, + "angle": 0, + "vertices": { + "#": 6850 + }, + "position": { + "#": 6855 + }, + "force": { + "#": 6856 + }, + "torque": 0, + "positionImpulse": { + "#": 6857 + }, + "constraintImpulse": { + "#": 6858 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6859 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6860 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6861 + }, + "bounds": { + "#": 6863 + }, + "positionPrev": { + "#": 6866 + }, + "anglePrev": 0, + "axes": { + "#": 6867 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6848 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6848 + } + ], + [ + { + "#": 6851 + }, + { + "#": 6852 + }, + { + "#": 6853 + }, + { + "#": 6854 + } + ], + { + "x": 275, + "y": 420, + "index": 0, + "body": { + "#": 6848 + }, + "isInternal": false + }, + { + "x": 300, + "y": 420, + "index": 1, + "body": { + "#": 6848 + }, + "isInternal": false + }, + { + "x": 300, + "y": 445, + "index": 2, + "body": { + "#": 6848 + }, + "isInternal": false + }, + { + "x": 275, + "y": 445, + "index": 3, + "body": { + "#": 6848 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6862 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6864 + }, + "max": { + "#": 6865 + } + }, + { + "x": 275, + "y": 420 + }, + { + "x": 300, + "y": 445 + }, + { + "x": 287.5, + "y": 432.5 + }, + [ + { + "#": 6868 + }, + { + "#": 6869 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 313, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6871 + }, + "angle": 0, + "vertices": { + "#": 6872 + }, + "position": { + "#": 6877 + }, + "force": { + "#": 6878 + }, + "torque": 0, + "positionImpulse": { + "#": 6879 + }, + "constraintImpulse": { + "#": 6880 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6881 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6882 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6883 + }, + "bounds": { + "#": 6885 + }, + "positionPrev": { + "#": 6888 + }, + "anglePrev": 0, + "axes": { + "#": 6889 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6870 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6870 + } + ], + [ + { + "#": 6873 + }, + { + "#": 6874 + }, + { + "#": 6875 + }, + { + "#": 6876 + } + ], + { + "x": 300, + "y": 420, + "index": 0, + "body": { + "#": 6870 + }, + "isInternal": false + }, + { + "x": 325, + "y": 420, + "index": 1, + "body": { + "#": 6870 + }, + "isInternal": false + }, + { + "x": 325, + "y": 445, + "index": 2, + "body": { + "#": 6870 + }, + "isInternal": false + }, + { + "x": 300, + "y": 445, + "index": 3, + "body": { + "#": 6870 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6884 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6886 + }, + "max": { + "#": 6887 + } + }, + { + "x": 300, + "y": 420 + }, + { + "x": 325, + "y": 445 + }, + { + "x": 312.5, + "y": 432.5 + }, + [ + { + "#": 6890 + }, + { + "#": 6891 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 314, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6893 + }, + "angle": 0, + "vertices": { + "#": 6894 + }, + "position": { + "#": 6899 + }, + "force": { + "#": 6900 + }, + "torque": 0, + "positionImpulse": { + "#": 6901 + }, + "constraintImpulse": { + "#": 6902 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6903 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6904 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6905 + }, + "bounds": { + "#": 6907 + }, + "positionPrev": { + "#": 6910 + }, + "anglePrev": 0, + "axes": { + "#": 6911 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6892 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6892 + } + ], + [ + { + "#": 6895 + }, + { + "#": 6896 + }, + { + "#": 6897 + }, + { + "#": 6898 + } + ], + { + "x": 325, + "y": 420, + "index": 0, + "body": { + "#": 6892 + }, + "isInternal": false + }, + { + "x": 350, + "y": 420, + "index": 1, + "body": { + "#": 6892 + }, + "isInternal": false + }, + { + "x": 350, + "y": 445, + "index": 2, + "body": { + "#": 6892 + }, + "isInternal": false + }, + { + "x": 325, + "y": 445, + "index": 3, + "body": { + "#": 6892 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6906 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6908 + }, + "max": { + "#": 6909 + } + }, + { + "x": 325, + "y": 420 + }, + { + "x": 350, + "y": 445 + }, + { + "x": 337.5, + "y": 432.5 + }, + [ + { + "#": 6912 + }, + { + "#": 6913 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 315, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6915 + }, + "angle": 0, + "vertices": { + "#": 6916 + }, + "position": { + "#": 6921 + }, + "force": { + "#": 6922 + }, + "torque": 0, + "positionImpulse": { + "#": 6923 + }, + "constraintImpulse": { + "#": 6924 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6925 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6926 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6927 + }, + "bounds": { + "#": 6929 + }, + "positionPrev": { + "#": 6932 + }, + "anglePrev": 0, + "axes": { + "#": 6933 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6914 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6914 + } + ], + [ + { + "#": 6917 + }, + { + "#": 6918 + }, + { + "#": 6919 + }, + { + "#": 6920 + } + ], + { + "x": 350, + "y": 420, + "index": 0, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 375, + "y": 420, + "index": 1, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 375, + "y": 445, + "index": 2, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 350, + "y": 445, + "index": 3, + "body": { + "#": 6914 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6928 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6930 + }, + "max": { + "#": 6931 + } + }, + { + "x": 350, + "y": 420 + }, + { + "x": 375, + "y": 445 + }, + { + "x": 362.5, + "y": 432.5 + }, + [ + { + "#": 6934 + }, + { + "#": 6935 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 316, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6937 + }, + "angle": 0, + "vertices": { + "#": 6938 + }, + "position": { + "#": 6943 + }, + "force": { + "#": 6944 + }, + "torque": 0, + "positionImpulse": { + "#": 6945 + }, + "constraintImpulse": { + "#": 6946 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6947 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6948 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6949 + }, + "bounds": { + "#": 6951 + }, + "positionPrev": { + "#": 6954 + }, + "anglePrev": 0, + "axes": { + "#": 6955 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6936 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6936 + } + ], + [ + { + "#": 6939 + }, + { + "#": 6940 + }, + { + "#": 6941 + }, + { + "#": 6942 + } + ], + { + "x": 375, + "y": 420, + "index": 0, + "body": { + "#": 6936 + }, + "isInternal": false + }, + { + "x": 400, + "y": 420, + "index": 1, + "body": { + "#": 6936 + }, + "isInternal": false + }, + { + "x": 400, + "y": 445, + "index": 2, + "body": { + "#": 6936 + }, + "isInternal": false + }, + { + "x": 375, + "y": 445, + "index": 3, + "body": { + "#": 6936 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6950 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6952 + }, + "max": { + "#": 6953 + } + }, + { + "x": 375, + "y": 420 + }, + { + "x": 400, + "y": 445 + }, + { + "x": 387.5, + "y": 432.5 + }, + [ + { + "#": 6956 + }, + { + "#": 6957 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 317, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6959 + }, + "angle": 0, + "vertices": { + "#": 6960 + }, + "position": { + "#": 6965 + }, + "force": { + "#": 6966 + }, + "torque": 0, + "positionImpulse": { + "#": 6967 + }, + "constraintImpulse": { + "#": 6968 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6969 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6970 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6971 + }, + "bounds": { + "#": 6973 + }, + "positionPrev": { + "#": 6976 + }, + "anglePrev": 0, + "axes": { + "#": 6977 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6958 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6958 + } + ], + [ + { + "#": 6961 + }, + { + "#": 6962 + }, + { + "#": 6963 + }, + { + "#": 6964 + } + ], + { + "x": 400, + "y": 420, + "index": 0, + "body": { + "#": 6958 + }, + "isInternal": false + }, + { + "x": 425, + "y": 420, + "index": 1, + "body": { + "#": 6958 + }, + "isInternal": false + }, + { + "x": 425, + "y": 445, + "index": 2, + "body": { + "#": 6958 + }, + "isInternal": false + }, + { + "x": 400, + "y": 445, + "index": 3, + "body": { + "#": 6958 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6972 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6974 + }, + "max": { + "#": 6975 + } + }, + { + "x": 400, + "y": 420 + }, + { + "x": 425, + "y": 445 + }, + { + "x": 412.5, + "y": 432.5 + }, + [ + { + "#": 6978 + }, + { + "#": 6979 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 318, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6981 + }, + "angle": 0, + "vertices": { + "#": 6982 + }, + "position": { + "#": 6987 + }, + "force": { + "#": 6988 + }, + "torque": 0, + "positionImpulse": { + "#": 6989 + }, + "constraintImpulse": { + "#": 6990 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 6991 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6992 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6993 + }, + "bounds": { + "#": 6995 + }, + "positionPrev": { + "#": 6998 + }, + "anglePrev": 0, + "axes": { + "#": 6999 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6980 + }, + "sleepCounter": 0 + }, + [ + { + "#": 6980 + } + ], + [ + { + "#": 6983 + }, + { + "#": 6984 + }, + { + "#": 6985 + }, + { + "#": 6986 + } + ], + { + "x": 425, + "y": 420, + "index": 0, + "body": { + "#": 6980 + }, + "isInternal": false + }, + { + "x": 450, + "y": 420, + "index": 1, + "body": { + "#": 6980 + }, + "isInternal": false + }, + { + "x": 450, + "y": 445, + "index": 2, + "body": { + "#": 6980 + }, + "isInternal": false + }, + { + "x": 425, + "y": 445, + "index": 3, + "body": { + "#": 6980 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6994 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6996 + }, + "max": { + "#": 6997 + } + }, + { + "x": 425, + "y": 420 + }, + { + "x": 450, + "y": 445 + }, + { + "x": 437.5, + "y": 432.5 + }, + [ + { + "#": 7000 + }, + { + "#": 7001 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 319, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7003 + }, + "angle": 0, + "vertices": { + "#": 7004 + }, + "position": { + "#": 7009 + }, + "force": { + "#": 7010 + }, + "torque": 0, + "positionImpulse": { + "#": 7011 + }, + "constraintImpulse": { + "#": 7012 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7013 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7014 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7015 + }, + "bounds": { + "#": 7017 + }, + "positionPrev": { + "#": 7020 + }, + "anglePrev": 0, + "axes": { + "#": 7021 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7002 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7002 + } + ], + [ + { + "#": 7005 + }, + { + "#": 7006 + }, + { + "#": 7007 + }, + { + "#": 7008 + } + ], + { + "x": 450, + "y": 420, + "index": 0, + "body": { + "#": 7002 + }, + "isInternal": false + }, + { + "x": 475, + "y": 420, + "index": 1, + "body": { + "#": 7002 + }, + "isInternal": false + }, + { + "x": 475, + "y": 445, + "index": 2, + "body": { + "#": 7002 + }, + "isInternal": false + }, + { + "x": 450, + "y": 445, + "index": 3, + "body": { + "#": 7002 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7016 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7018 + }, + "max": { + "#": 7019 + } + }, + { + "x": 450, + "y": 420 + }, + { + "x": 475, + "y": 445 + }, + { + "x": 462.5, + "y": 432.5 + }, + [ + { + "#": 7022 + }, + { + "#": 7023 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 320, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7025 + }, + "angle": 0, + "vertices": { + "#": 7026 + }, + "position": { + "#": 7031 + }, + "force": { + "#": 7032 + }, + "torque": 0, + "positionImpulse": { + "#": 7033 + }, + "constraintImpulse": { + "#": 7034 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7035 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7036 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7037 + }, + "bounds": { + "#": 7039 + }, + "positionPrev": { + "#": 7042 + }, + "anglePrev": 0, + "axes": { + "#": 7043 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7024 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7024 + } + ], + [ + { + "#": 7027 + }, + { + "#": 7028 + }, + { + "#": 7029 + }, + { + "#": 7030 + } + ], + { + "x": 475, + "y": 420, + "index": 0, + "body": { + "#": 7024 + }, + "isInternal": false + }, + { + "x": 500, + "y": 420, + "index": 1, + "body": { + "#": 7024 + }, + "isInternal": false + }, + { + "x": 500, + "y": 445, + "index": 2, + "body": { + "#": 7024 + }, + "isInternal": false + }, + { + "x": 475, + "y": 445, + "index": 3, + "body": { + "#": 7024 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7038 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7040 + }, + "max": { + "#": 7041 + } + }, + { + "x": 475, + "y": 420 + }, + { + "x": 500, + "y": 445 + }, + { + "x": 487.5, + "y": 432.5 + }, + [ + { + "#": 7044 + }, + { + "#": 7045 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 321, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7047 + }, + "angle": 0, + "vertices": { + "#": 7048 + }, + "position": { + "#": 7053 + }, + "force": { + "#": 7054 + }, + "torque": 0, + "positionImpulse": { + "#": 7055 + }, + "constraintImpulse": { + "#": 7056 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7057 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7058 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7059 + }, + "bounds": { + "#": 7061 + }, + "positionPrev": { + "#": 7064 + }, + "anglePrev": 0, + "axes": { + "#": 7065 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7046 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7046 + } + ], + [ + { + "#": 7049 + }, + { + "#": 7050 + }, + { + "#": 7051 + }, + { + "#": 7052 + } + ], + { + "x": 500, + "y": 420, + "index": 0, + "body": { + "#": 7046 + }, + "isInternal": false + }, + { + "x": 525, + "y": 420, + "index": 1, + "body": { + "#": 7046 + }, + "isInternal": false + }, + { + "x": 525, + "y": 445, + "index": 2, + "body": { + "#": 7046 + }, + "isInternal": false + }, + { + "x": 500, + "y": 445, + "index": 3, + "body": { + "#": 7046 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7060 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7062 + }, + "max": { + "#": 7063 + } + }, + { + "x": 500, + "y": 420 + }, + { + "x": 525, + "y": 445 + }, + { + "x": 512.5, + "y": 432.5 + }, + [ + { + "#": 7066 + }, + { + "#": 7067 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 322, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7069 + }, + "angle": 0, + "vertices": { + "#": 7070 + }, + "position": { + "#": 7075 + }, + "force": { + "#": 7076 + }, + "torque": 0, + "positionImpulse": { + "#": 7077 + }, + "constraintImpulse": { + "#": 7078 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7079 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7080 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7081 + }, + "bounds": { + "#": 7083 + }, + "positionPrev": { + "#": 7086 + }, + "anglePrev": 0, + "axes": { + "#": 7087 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7068 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7068 + } + ], + [ + { + "#": 7071 + }, + { + "#": 7072 + }, + { + "#": 7073 + }, + { + "#": 7074 + } + ], + { + "x": 525, + "y": 420, + "index": 0, + "body": { + "#": 7068 + }, + "isInternal": false + }, + { + "x": 550, + "y": 420, + "index": 1, + "body": { + "#": 7068 + }, + "isInternal": false + }, + { + "x": 550, + "y": 445, + "index": 2, + "body": { + "#": 7068 + }, + "isInternal": false + }, + { + "x": 525, + "y": 445, + "index": 3, + "body": { + "#": 7068 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7082 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7084 + }, + "max": { + "#": 7085 + } + }, + { + "x": 525, + "y": 420 + }, + { + "x": 550, + "y": 445 + }, + { + "x": 537.5, + "y": 432.5 + }, + [ + { + "#": 7088 + }, + { + "#": 7089 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 323, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7091 + }, + "angle": 0, + "vertices": { + "#": 7092 + }, + "position": { + "#": 7097 + }, + "force": { + "#": 7098 + }, + "torque": 0, + "positionImpulse": { + "#": 7099 + }, + "constraintImpulse": { + "#": 7100 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7101 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7102 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7103 + }, + "bounds": { + "#": 7105 + }, + "positionPrev": { + "#": 7108 + }, + "anglePrev": 0, + "axes": { + "#": 7109 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7090 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7090 + } + ], + [ + { + "#": 7093 + }, + { + "#": 7094 + }, + { + "#": 7095 + }, + { + "#": 7096 + } + ], + { + "x": 550, + "y": 420, + "index": 0, + "body": { + "#": 7090 + }, + "isInternal": false + }, + { + "x": 575, + "y": 420, + "index": 1, + "body": { + "#": 7090 + }, + "isInternal": false + }, + { + "x": 575, + "y": 445, + "index": 2, + "body": { + "#": 7090 + }, + "isInternal": false + }, + { + "x": 550, + "y": 445, + "index": 3, + "body": { + "#": 7090 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7104 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7106 + }, + "max": { + "#": 7107 + } + }, + { + "x": 550, + "y": 420 + }, + { + "x": 575, + "y": 445 + }, + { + "x": 562.5, + "y": 432.5 + }, + [ + { + "#": 7110 + }, + { + "#": 7111 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 324, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7113 + }, + "angle": 0, + "vertices": { + "#": 7114 + }, + "position": { + "#": 7119 + }, + "force": { + "#": 7120 + }, + "torque": 0, + "positionImpulse": { + "#": 7121 + }, + "constraintImpulse": { + "#": 7122 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7123 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7124 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7125 + }, + "bounds": { + "#": 7127 + }, + "positionPrev": { + "#": 7130 + }, + "anglePrev": 0, + "axes": { + "#": 7131 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7112 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7112 + } + ], + [ + { + "#": 7115 + }, + { + "#": 7116 + }, + { + "#": 7117 + }, + { + "#": 7118 + } + ], + { + "x": 575, + "y": 420, + "index": 0, + "body": { + "#": 7112 + }, + "isInternal": false + }, + { + "x": 600, + "y": 420, + "index": 1, + "body": { + "#": 7112 + }, + "isInternal": false + }, + { + "x": 600, + "y": 445, + "index": 2, + "body": { + "#": 7112 + }, + "isInternal": false + }, + { + "x": 575, + "y": 445, + "index": 3, + "body": { + "#": 7112 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7126 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7128 + }, + "max": { + "#": 7129 + } + }, + { + "x": 575, + "y": 420 + }, + { + "x": 600, + "y": 445 + }, + { + "x": 587.5, + "y": 432.5 + }, + [ + { + "#": 7132 + }, + { + "#": 7133 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 325, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7135 + }, + "angle": 0, + "vertices": { + "#": 7136 + }, + "position": { + "#": 7141 + }, + "force": { + "#": 7142 + }, + "torque": 0, + "positionImpulse": { + "#": 7143 + }, + "constraintImpulse": { + "#": 7144 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7145 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7146 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7147 + }, + "bounds": { + "#": 7149 + }, + "positionPrev": { + "#": 7152 + }, + "anglePrev": 0, + "axes": { + "#": 7153 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7134 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7134 + } + ], + [ + { + "#": 7137 + }, + { + "#": 7138 + }, + { + "#": 7139 + }, + { + "#": 7140 + } + ], + { + "x": 600, + "y": 420, + "index": 0, + "body": { + "#": 7134 + }, + "isInternal": false + }, + { + "x": 625, + "y": 420, + "index": 1, + "body": { + "#": 7134 + }, + "isInternal": false + }, + { + "x": 625, + "y": 445, + "index": 2, + "body": { + "#": 7134 + }, + "isInternal": false + }, + { + "x": 600, + "y": 445, + "index": 3, + "body": { + "#": 7134 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7148 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7150 + }, + "max": { + "#": 7151 + } + }, + { + "x": 600, + "y": 420 + }, + { + "x": 625, + "y": 445 + }, + { + "x": 612.5, + "y": 432.5 + }, + [ + { + "#": 7154 + }, + { + "#": 7155 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 326, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7157 + }, + "angle": 0, + "vertices": { + "#": 7158 + }, + "position": { + "#": 7163 + }, + "force": { + "#": 7164 + }, + "torque": 0, + "positionImpulse": { + "#": 7165 + }, + "constraintImpulse": { + "#": 7166 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7167 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7168 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7169 + }, + "bounds": { + "#": 7171 + }, + "positionPrev": { + "#": 7174 + }, + "anglePrev": 0, + "axes": { + "#": 7175 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7156 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7156 + } + ], + [ + { + "#": 7159 + }, + { + "#": 7160 + }, + { + "#": 7161 + }, + { + "#": 7162 + } + ], + { + "x": 625, + "y": 420, + "index": 0, + "body": { + "#": 7156 + }, + "isInternal": false + }, + { + "x": 650, + "y": 420, + "index": 1, + "body": { + "#": 7156 + }, + "isInternal": false + }, + { + "x": 650, + "y": 445, + "index": 2, + "body": { + "#": 7156 + }, + "isInternal": false + }, + { + "x": 625, + "y": 445, + "index": 3, + "body": { + "#": 7156 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7170 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7172 + }, + "max": { + "#": 7173 + } + }, + { + "x": 625, + "y": 420 + }, + { + "x": 650, + "y": 445 + }, + { + "x": 637.5, + "y": 432.5 + }, + [ + { + "#": 7176 + }, + { + "#": 7177 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 327, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7179 + }, + "angle": 0, + "vertices": { + "#": 7180 + }, + "position": { + "#": 7185 + }, + "force": { + "#": 7186 + }, + "torque": 0, + "positionImpulse": { + "#": 7187 + }, + "constraintImpulse": { + "#": 7188 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7189 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7190 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7191 + }, + "bounds": { + "#": 7193 + }, + "positionPrev": { + "#": 7196 + }, + "anglePrev": 0, + "axes": { + "#": 7197 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7178 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7178 + } + ], + [ + { + "#": 7181 + }, + { + "#": 7182 + }, + { + "#": 7183 + }, + { + "#": 7184 + } + ], + { + "x": 650, + "y": 420, + "index": 0, + "body": { + "#": 7178 + }, + "isInternal": false + }, + { + "x": 675, + "y": 420, + "index": 1, + "body": { + "#": 7178 + }, + "isInternal": false + }, + { + "x": 675, + "y": 445, + "index": 2, + "body": { + "#": 7178 + }, + "isInternal": false + }, + { + "x": 650, + "y": 445, + "index": 3, + "body": { + "#": 7178 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7192 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7194 + }, + "max": { + "#": 7195 + } + }, + { + "x": 650, + "y": 420 + }, + { + "x": 675, + "y": 445 + }, + { + "x": 662.5, + "y": 432.5 + }, + [ + { + "#": 7198 + }, + { + "#": 7199 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 328, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7201 + }, + "angle": 0, + "vertices": { + "#": 7202 + }, + "position": { + "#": 7207 + }, + "force": { + "#": 7208 + }, + "torque": 0, + "positionImpulse": { + "#": 7209 + }, + "constraintImpulse": { + "#": 7210 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7211 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7212 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7213 + }, + "bounds": { + "#": 7215 + }, + "positionPrev": { + "#": 7218 + }, + "anglePrev": 0, + "axes": { + "#": 7219 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7200 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7200 + } + ], + [ + { + "#": 7203 + }, + { + "#": 7204 + }, + { + "#": 7205 + }, + { + "#": 7206 + } + ], + { + "x": 675, + "y": 420, + "index": 0, + "body": { + "#": 7200 + }, + "isInternal": false + }, + { + "x": 700, + "y": 420, + "index": 1, + "body": { + "#": 7200 + }, + "isInternal": false + }, + { + "x": 700, + "y": 445, + "index": 2, + "body": { + "#": 7200 + }, + "isInternal": false + }, + { + "x": 675, + "y": 445, + "index": 3, + "body": { + "#": 7200 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7214 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7216 + }, + "max": { + "#": 7217 + } + }, + { + "x": 675, + "y": 420 + }, + { + "x": 700, + "y": 445 + }, + { + "x": 687.5, + "y": 432.5 + }, + [ + { + "#": 7220 + }, + { + "#": 7221 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 329, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7223 + }, + "angle": 0, + "vertices": { + "#": 7224 + }, + "position": { + "#": 7229 + }, + "force": { + "#": 7230 + }, + "torque": 0, + "positionImpulse": { + "#": 7231 + }, + "constraintImpulse": { + "#": 7232 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7233 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7234 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7235 + }, + "bounds": { + "#": 7237 + }, + "positionPrev": { + "#": 7240 + }, + "anglePrev": 0, + "axes": { + "#": 7241 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7222 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7222 + } + ], + [ + { + "#": 7225 + }, + { + "#": 7226 + }, + { + "#": 7227 + }, + { + "#": 7228 + } + ], + { + "x": 700, + "y": 420, + "index": 0, + "body": { + "#": 7222 + }, + "isInternal": false + }, + { + "x": 725, + "y": 420, + "index": 1, + "body": { + "#": 7222 + }, + "isInternal": false + }, + { + "x": 725, + "y": 445, + "index": 2, + "body": { + "#": 7222 + }, + "isInternal": false + }, + { + "x": 700, + "y": 445, + "index": 3, + "body": { + "#": 7222 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 432.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7236 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7238 + }, + "max": { + "#": 7239 + } + }, + { + "x": 700, + "y": 420 + }, + { + "x": 725, + "y": 445 + }, + { + "x": 712.5, + "y": 432.5 + }, + [ + { + "#": 7242 + }, + { + "#": 7243 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 330, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7245 + }, + "angle": 0, + "vertices": { + "#": 7246 + }, + "position": { + "#": 7251 + }, + "force": { + "#": 7252 + }, + "torque": 0, + "positionImpulse": { + "#": 7253 + }, + "constraintImpulse": { + "#": 7254 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7255 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7256 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7257 + }, + "bounds": { + "#": 7259 + }, + "positionPrev": { + "#": 7262 + }, + "anglePrev": 0, + "axes": { + "#": 7263 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7244 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7244 + } + ], + [ + { + "#": 7247 + }, + { + "#": 7248 + }, + { + "#": 7249 + }, + { + "#": 7250 + } + ], + { + "x": 100, + "y": 445, + "index": 0, + "body": { + "#": 7244 + }, + "isInternal": false + }, + { + "x": 125, + "y": 445, + "index": 1, + "body": { + "#": 7244 + }, + "isInternal": false + }, + { + "x": 125, + "y": 470, + "index": 2, + "body": { + "#": 7244 + }, + "isInternal": false + }, + { + "x": 100, + "y": 470, + "index": 3, + "body": { + "#": 7244 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7258 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7260 + }, + "max": { + "#": 7261 + } + }, + { + "x": 100, + "y": 445 + }, + { + "x": 125, + "y": 470 + }, + { + "x": 112.5, + "y": 457.5 + }, + [ + { + "#": 7264 + }, + { + "#": 7265 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 331, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7267 + }, + "angle": 0, + "vertices": { + "#": 7268 + }, + "position": { + "#": 7273 + }, + "force": { + "#": 7274 + }, + "torque": 0, + "positionImpulse": { + "#": 7275 + }, + "constraintImpulse": { + "#": 7276 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7277 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7278 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7279 + }, + "bounds": { + "#": 7281 + }, + "positionPrev": { + "#": 7284 + }, + "anglePrev": 0, + "axes": { + "#": 7285 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7266 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7266 + } + ], + [ + { + "#": 7269 + }, + { + "#": 7270 + }, + { + "#": 7271 + }, + { + "#": 7272 + } + ], + { + "x": 125, + "y": 445, + "index": 0, + "body": { + "#": 7266 + }, + "isInternal": false + }, + { + "x": 150, + "y": 445, + "index": 1, + "body": { + "#": 7266 + }, + "isInternal": false + }, + { + "x": 150, + "y": 470, + "index": 2, + "body": { + "#": 7266 + }, + "isInternal": false + }, + { + "x": 125, + "y": 470, + "index": 3, + "body": { + "#": 7266 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7280 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7282 + }, + "max": { + "#": 7283 + } + }, + { + "x": 125, + "y": 445 + }, + { + "x": 150, + "y": 470 + }, + { + "x": 137.5, + "y": 457.5 + }, + [ + { + "#": 7286 + }, + { + "#": 7287 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 332, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7289 + }, + "angle": 0, + "vertices": { + "#": 7290 + }, + "position": { + "#": 7295 + }, + "force": { + "#": 7296 + }, + "torque": 0, + "positionImpulse": { + "#": 7297 + }, + "constraintImpulse": { + "#": 7298 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7299 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7300 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7301 + }, + "bounds": { + "#": 7303 + }, + "positionPrev": { + "#": 7306 + }, + "anglePrev": 0, + "axes": { + "#": 7307 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7288 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7288 + } + ], + [ + { + "#": 7291 + }, + { + "#": 7292 + }, + { + "#": 7293 + }, + { + "#": 7294 + } + ], + { + "x": 150, + "y": 445, + "index": 0, + "body": { + "#": 7288 + }, + "isInternal": false + }, + { + "x": 175, + "y": 445, + "index": 1, + "body": { + "#": 7288 + }, + "isInternal": false + }, + { + "x": 175, + "y": 470, + "index": 2, + "body": { + "#": 7288 + }, + "isInternal": false + }, + { + "x": 150, + "y": 470, + "index": 3, + "body": { + "#": 7288 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7302 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7304 + }, + "max": { + "#": 7305 + } + }, + { + "x": 150, + "y": 445 + }, + { + "x": 175, + "y": 470 + }, + { + "x": 162.5, + "y": 457.5 + }, + [ + { + "#": 7308 + }, + { + "#": 7309 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 333, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7311 + }, + "angle": 0, + "vertices": { + "#": 7312 + }, + "position": { + "#": 7317 + }, + "force": { + "#": 7318 + }, + "torque": 0, + "positionImpulse": { + "#": 7319 + }, + "constraintImpulse": { + "#": 7320 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7321 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7322 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7323 + }, + "bounds": { + "#": 7325 + }, + "positionPrev": { + "#": 7328 + }, + "anglePrev": 0, + "axes": { + "#": 7329 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7310 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7310 + } + ], + [ + { + "#": 7313 + }, + { + "#": 7314 + }, + { + "#": 7315 + }, + { + "#": 7316 + } + ], + { + "x": 175, + "y": 445, + "index": 0, + "body": { + "#": 7310 + }, + "isInternal": false + }, + { + "x": 200, + "y": 445, + "index": 1, + "body": { + "#": 7310 + }, + "isInternal": false + }, + { + "x": 200, + "y": 470, + "index": 2, + "body": { + "#": 7310 + }, + "isInternal": false + }, + { + "x": 175, + "y": 470, + "index": 3, + "body": { + "#": 7310 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7324 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7326 + }, + "max": { + "#": 7327 + } + }, + { + "x": 175, + "y": 445 + }, + { + "x": 200, + "y": 470 + }, + { + "x": 187.5, + "y": 457.5 + }, + [ + { + "#": 7330 + }, + { + "#": 7331 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 334, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7333 + }, + "angle": 0, + "vertices": { + "#": 7334 + }, + "position": { + "#": 7339 + }, + "force": { + "#": 7340 + }, + "torque": 0, + "positionImpulse": { + "#": 7341 + }, + "constraintImpulse": { + "#": 7342 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7343 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7344 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7345 + }, + "bounds": { + "#": 7347 + }, + "positionPrev": { + "#": 7350 + }, + "anglePrev": 0, + "axes": { + "#": 7351 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7332 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7332 + } + ], + [ + { + "#": 7335 + }, + { + "#": 7336 + }, + { + "#": 7337 + }, + { + "#": 7338 + } + ], + { + "x": 200, + "y": 445, + "index": 0, + "body": { + "#": 7332 + }, + "isInternal": false + }, + { + "x": 225, + "y": 445, + "index": 1, + "body": { + "#": 7332 + }, + "isInternal": false + }, + { + "x": 225, + "y": 470, + "index": 2, + "body": { + "#": 7332 + }, + "isInternal": false + }, + { + "x": 200, + "y": 470, + "index": 3, + "body": { + "#": 7332 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7346 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7348 + }, + "max": { + "#": 7349 + } + }, + { + "x": 200, + "y": 445 + }, + { + "x": 225, + "y": 470 + }, + { + "x": 212.5, + "y": 457.5 + }, + [ + { + "#": 7352 + }, + { + "#": 7353 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 335, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7355 + }, + "angle": 0, + "vertices": { + "#": 7356 + }, + "position": { + "#": 7361 + }, + "force": { + "#": 7362 + }, + "torque": 0, + "positionImpulse": { + "#": 7363 + }, + "constraintImpulse": { + "#": 7364 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7365 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7366 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7367 + }, + "bounds": { + "#": 7369 + }, + "positionPrev": { + "#": 7372 + }, + "anglePrev": 0, + "axes": { + "#": 7373 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7354 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7354 + } + ], + [ + { + "#": 7357 + }, + { + "#": 7358 + }, + { + "#": 7359 + }, + { + "#": 7360 + } + ], + { + "x": 225, + "y": 445, + "index": 0, + "body": { + "#": 7354 + }, + "isInternal": false + }, + { + "x": 250, + "y": 445, + "index": 1, + "body": { + "#": 7354 + }, + "isInternal": false + }, + { + "x": 250, + "y": 470, + "index": 2, + "body": { + "#": 7354 + }, + "isInternal": false + }, + { + "x": 225, + "y": 470, + "index": 3, + "body": { + "#": 7354 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7368 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7370 + }, + "max": { + "#": 7371 + } + }, + { + "x": 225, + "y": 445 + }, + { + "x": 250, + "y": 470 + }, + { + "x": 237.5, + "y": 457.5 + }, + [ + { + "#": 7374 + }, + { + "#": 7375 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 336, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7377 + }, + "angle": 0, + "vertices": { + "#": 7378 + }, + "position": { + "#": 7383 + }, + "force": { + "#": 7384 + }, + "torque": 0, + "positionImpulse": { + "#": 7385 + }, + "constraintImpulse": { + "#": 7386 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7387 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7388 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7389 + }, + "bounds": { + "#": 7391 + }, + "positionPrev": { + "#": 7394 + }, + "anglePrev": 0, + "axes": { + "#": 7395 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7376 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7376 + } + ], + [ + { + "#": 7379 + }, + { + "#": 7380 + }, + { + "#": 7381 + }, + { + "#": 7382 + } + ], + { + "x": 250, + "y": 445, + "index": 0, + "body": { + "#": 7376 + }, + "isInternal": false + }, + { + "x": 275, + "y": 445, + "index": 1, + "body": { + "#": 7376 + }, + "isInternal": false + }, + { + "x": 275, + "y": 470, + "index": 2, + "body": { + "#": 7376 + }, + "isInternal": false + }, + { + "x": 250, + "y": 470, + "index": 3, + "body": { + "#": 7376 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7390 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7392 + }, + "max": { + "#": 7393 + } + }, + { + "x": 250, + "y": 445 + }, + { + "x": 275, + "y": 470 + }, + { + "x": 262.5, + "y": 457.5 + }, + [ + { + "#": 7396 + }, + { + "#": 7397 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 337, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7399 + }, + "angle": 0, + "vertices": { + "#": 7400 + }, + "position": { + "#": 7405 + }, + "force": { + "#": 7406 + }, + "torque": 0, + "positionImpulse": { + "#": 7407 + }, + "constraintImpulse": { + "#": 7408 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7409 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7410 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7411 + }, + "bounds": { + "#": 7413 + }, + "positionPrev": { + "#": 7416 + }, + "anglePrev": 0, + "axes": { + "#": 7417 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7398 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7398 + } + ], + [ + { + "#": 7401 + }, + { + "#": 7402 + }, + { + "#": 7403 + }, + { + "#": 7404 + } + ], + { + "x": 275, + "y": 445, + "index": 0, + "body": { + "#": 7398 + }, + "isInternal": false + }, + { + "x": 300, + "y": 445, + "index": 1, + "body": { + "#": 7398 + }, + "isInternal": false + }, + { + "x": 300, + "y": 470, + "index": 2, + "body": { + "#": 7398 + }, + "isInternal": false + }, + { + "x": 275, + "y": 470, + "index": 3, + "body": { + "#": 7398 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7412 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7414 + }, + "max": { + "#": 7415 + } + }, + { + "x": 275, + "y": 445 + }, + { + "x": 300, + "y": 470 + }, + { + "x": 287.5, + "y": 457.5 + }, + [ + { + "#": 7418 + }, + { + "#": 7419 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 338, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7421 + }, + "angle": 0, + "vertices": { + "#": 7422 + }, + "position": { + "#": 7427 + }, + "force": { + "#": 7428 + }, + "torque": 0, + "positionImpulse": { + "#": 7429 + }, + "constraintImpulse": { + "#": 7430 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7431 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7432 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7433 + }, + "bounds": { + "#": 7435 + }, + "positionPrev": { + "#": 7438 + }, + "anglePrev": 0, + "axes": { + "#": 7439 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7420 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7420 + } + ], + [ + { + "#": 7423 + }, + { + "#": 7424 + }, + { + "#": 7425 + }, + { + "#": 7426 + } + ], + { + "x": 300, + "y": 445, + "index": 0, + "body": { + "#": 7420 + }, + "isInternal": false + }, + { + "x": 325, + "y": 445, + "index": 1, + "body": { + "#": 7420 + }, + "isInternal": false + }, + { + "x": 325, + "y": 470, + "index": 2, + "body": { + "#": 7420 + }, + "isInternal": false + }, + { + "x": 300, + "y": 470, + "index": 3, + "body": { + "#": 7420 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7434 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7436 + }, + "max": { + "#": 7437 + } + }, + { + "x": 300, + "y": 445 + }, + { + "x": 325, + "y": 470 + }, + { + "x": 312.5, + "y": 457.5 + }, + [ + { + "#": 7440 + }, + { + "#": 7441 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 339, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7443 + }, + "angle": 0, + "vertices": { + "#": 7444 + }, + "position": { + "#": 7449 + }, + "force": { + "#": 7450 + }, + "torque": 0, + "positionImpulse": { + "#": 7451 + }, + "constraintImpulse": { + "#": 7452 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7453 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7454 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7455 + }, + "bounds": { + "#": 7457 + }, + "positionPrev": { + "#": 7460 + }, + "anglePrev": 0, + "axes": { + "#": 7461 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7442 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7442 + } + ], + [ + { + "#": 7445 + }, + { + "#": 7446 + }, + { + "#": 7447 + }, + { + "#": 7448 + } + ], + { + "x": 325, + "y": 445, + "index": 0, + "body": { + "#": 7442 + }, + "isInternal": false + }, + { + "x": 350, + "y": 445, + "index": 1, + "body": { + "#": 7442 + }, + "isInternal": false + }, + { + "x": 350, + "y": 470, + "index": 2, + "body": { + "#": 7442 + }, + "isInternal": false + }, + { + "x": 325, + "y": 470, + "index": 3, + "body": { + "#": 7442 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7456 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7458 + }, + "max": { + "#": 7459 + } + }, + { + "x": 325, + "y": 445 + }, + { + "x": 350, + "y": 470 + }, + { + "x": 337.5, + "y": 457.5 + }, + [ + { + "#": 7462 + }, + { + "#": 7463 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 340, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7465 + }, + "angle": 0, + "vertices": { + "#": 7466 + }, + "position": { + "#": 7471 + }, + "force": { + "#": 7472 + }, + "torque": 0, + "positionImpulse": { + "#": 7473 + }, + "constraintImpulse": { + "#": 7474 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7475 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7476 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7477 + }, + "bounds": { + "#": 7479 + }, + "positionPrev": { + "#": 7482 + }, + "anglePrev": 0, + "axes": { + "#": 7483 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7464 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7464 + } + ], + [ + { + "#": 7467 + }, + { + "#": 7468 + }, + { + "#": 7469 + }, + { + "#": 7470 + } + ], + { + "x": 350, + "y": 445, + "index": 0, + "body": { + "#": 7464 + }, + "isInternal": false + }, + { + "x": 375, + "y": 445, + "index": 1, + "body": { + "#": 7464 + }, + "isInternal": false + }, + { + "x": 375, + "y": 470, + "index": 2, + "body": { + "#": 7464 + }, + "isInternal": false + }, + { + "x": 350, + "y": 470, + "index": 3, + "body": { + "#": 7464 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7478 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7480 + }, + "max": { + "#": 7481 + } + }, + { + "x": 350, + "y": 445 + }, + { + "x": 375, + "y": 470 + }, + { + "x": 362.5, + "y": 457.5 + }, + [ + { + "#": 7484 + }, + { + "#": 7485 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 341, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7487 + }, + "angle": 0, + "vertices": { + "#": 7488 + }, + "position": { + "#": 7493 + }, + "force": { + "#": 7494 + }, + "torque": 0, + "positionImpulse": { + "#": 7495 + }, + "constraintImpulse": { + "#": 7496 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7497 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7498 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7499 + }, + "bounds": { + "#": 7501 + }, + "positionPrev": { + "#": 7504 + }, + "anglePrev": 0, + "axes": { + "#": 7505 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7486 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7486 + } + ], + [ + { + "#": 7489 + }, + { + "#": 7490 + }, + { + "#": 7491 + }, + { + "#": 7492 + } + ], + { + "x": 375, + "y": 445, + "index": 0, + "body": { + "#": 7486 + }, + "isInternal": false + }, + { + "x": 400, + "y": 445, + "index": 1, + "body": { + "#": 7486 + }, + "isInternal": false + }, + { + "x": 400, + "y": 470, + "index": 2, + "body": { + "#": 7486 + }, + "isInternal": false + }, + { + "x": 375, + "y": 470, + "index": 3, + "body": { + "#": 7486 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7500 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7502 + }, + "max": { + "#": 7503 + } + }, + { + "x": 375, + "y": 445 + }, + { + "x": 400, + "y": 470 + }, + { + "x": 387.5, + "y": 457.5 + }, + [ + { + "#": 7506 + }, + { + "#": 7507 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 342, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7509 + }, + "angle": 0, + "vertices": { + "#": 7510 + }, + "position": { + "#": 7515 + }, + "force": { + "#": 7516 + }, + "torque": 0, + "positionImpulse": { + "#": 7517 + }, + "constraintImpulse": { + "#": 7518 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7519 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7520 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7521 + }, + "bounds": { + "#": 7523 + }, + "positionPrev": { + "#": 7526 + }, + "anglePrev": 0, + "axes": { + "#": 7527 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7508 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7508 + } + ], + [ + { + "#": 7511 + }, + { + "#": 7512 + }, + { + "#": 7513 + }, + { + "#": 7514 + } + ], + { + "x": 400, + "y": 445, + "index": 0, + "body": { + "#": 7508 + }, + "isInternal": false + }, + { + "x": 425, + "y": 445, + "index": 1, + "body": { + "#": 7508 + }, + "isInternal": false + }, + { + "x": 425, + "y": 470, + "index": 2, + "body": { + "#": 7508 + }, + "isInternal": false + }, + { + "x": 400, + "y": 470, + "index": 3, + "body": { + "#": 7508 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7522 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7524 + }, + "max": { + "#": 7525 + } + }, + { + "x": 400, + "y": 445 + }, + { + "x": 425, + "y": 470 + }, + { + "x": 412.5, + "y": 457.5 + }, + [ + { + "#": 7528 + }, + { + "#": 7529 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 343, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7531 + }, + "angle": 0, + "vertices": { + "#": 7532 + }, + "position": { + "#": 7537 + }, + "force": { + "#": 7538 + }, + "torque": 0, + "positionImpulse": { + "#": 7539 + }, + "constraintImpulse": { + "#": 7540 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7541 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7542 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7543 + }, + "bounds": { + "#": 7545 + }, + "positionPrev": { + "#": 7548 + }, + "anglePrev": 0, + "axes": { + "#": 7549 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7530 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7530 + } + ], + [ + { + "#": 7533 + }, + { + "#": 7534 + }, + { + "#": 7535 + }, + { + "#": 7536 + } + ], + { + "x": 425, + "y": 445, + "index": 0, + "body": { + "#": 7530 + }, + "isInternal": false + }, + { + "x": 450, + "y": 445, + "index": 1, + "body": { + "#": 7530 + }, + "isInternal": false + }, + { + "x": 450, + "y": 470, + "index": 2, + "body": { + "#": 7530 + }, + "isInternal": false + }, + { + "x": 425, + "y": 470, + "index": 3, + "body": { + "#": 7530 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7544 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7546 + }, + "max": { + "#": 7547 + } + }, + { + "x": 425, + "y": 445 + }, + { + "x": 450, + "y": 470 + }, + { + "x": 437.5, + "y": 457.5 + }, + [ + { + "#": 7550 + }, + { + "#": 7551 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 344, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7553 + }, + "angle": 0, + "vertices": { + "#": 7554 + }, + "position": { + "#": 7559 + }, + "force": { + "#": 7560 + }, + "torque": 0, + "positionImpulse": { + "#": 7561 + }, + "constraintImpulse": { + "#": 7562 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7563 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7564 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7565 + }, + "bounds": { + "#": 7567 + }, + "positionPrev": { + "#": 7570 + }, + "anglePrev": 0, + "axes": { + "#": 7571 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7552 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7552 + } + ], + [ + { + "#": 7555 + }, + { + "#": 7556 + }, + { + "#": 7557 + }, + { + "#": 7558 + } + ], + { + "x": 450, + "y": 445, + "index": 0, + "body": { + "#": 7552 + }, + "isInternal": false + }, + { + "x": 475, + "y": 445, + "index": 1, + "body": { + "#": 7552 + }, + "isInternal": false + }, + { + "x": 475, + "y": 470, + "index": 2, + "body": { + "#": 7552 + }, + "isInternal": false + }, + { + "x": 450, + "y": 470, + "index": 3, + "body": { + "#": 7552 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7566 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7568 + }, + "max": { + "#": 7569 + } + }, + { + "x": 450, + "y": 445 + }, + { + "x": 475, + "y": 470 + }, + { + "x": 462.5, + "y": 457.5 + }, + [ + { + "#": 7572 + }, + { + "#": 7573 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 345, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7575 + }, + "angle": 0, + "vertices": { + "#": 7576 + }, + "position": { + "#": 7581 + }, + "force": { + "#": 7582 + }, + "torque": 0, + "positionImpulse": { + "#": 7583 + }, + "constraintImpulse": { + "#": 7584 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7585 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7586 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7587 + }, + "bounds": { + "#": 7589 + }, + "positionPrev": { + "#": 7592 + }, + "anglePrev": 0, + "axes": { + "#": 7593 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7574 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7574 + } + ], + [ + { + "#": 7577 + }, + { + "#": 7578 + }, + { + "#": 7579 + }, + { + "#": 7580 + } + ], + { + "x": 475, + "y": 445, + "index": 0, + "body": { + "#": 7574 + }, + "isInternal": false + }, + { + "x": 500, + "y": 445, + "index": 1, + "body": { + "#": 7574 + }, + "isInternal": false + }, + { + "x": 500, + "y": 470, + "index": 2, + "body": { + "#": 7574 + }, + "isInternal": false + }, + { + "x": 475, + "y": 470, + "index": 3, + "body": { + "#": 7574 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7588 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7590 + }, + "max": { + "#": 7591 + } + }, + { + "x": 475, + "y": 445 + }, + { + "x": 500, + "y": 470 + }, + { + "x": 487.5, + "y": 457.5 + }, + [ + { + "#": 7594 + }, + { + "#": 7595 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 346, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7597 + }, + "angle": 0, + "vertices": { + "#": 7598 + }, + "position": { + "#": 7603 + }, + "force": { + "#": 7604 + }, + "torque": 0, + "positionImpulse": { + "#": 7605 + }, + "constraintImpulse": { + "#": 7606 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7607 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7608 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7609 + }, + "bounds": { + "#": 7611 + }, + "positionPrev": { + "#": 7614 + }, + "anglePrev": 0, + "axes": { + "#": 7615 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7596 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7596 + } + ], + [ + { + "#": 7599 + }, + { + "#": 7600 + }, + { + "#": 7601 + }, + { + "#": 7602 + } + ], + { + "x": 500, + "y": 445, + "index": 0, + "body": { + "#": 7596 + }, + "isInternal": false + }, + { + "x": 525, + "y": 445, + "index": 1, + "body": { + "#": 7596 + }, + "isInternal": false + }, + { + "x": 525, + "y": 470, + "index": 2, + "body": { + "#": 7596 + }, + "isInternal": false + }, + { + "x": 500, + "y": 470, + "index": 3, + "body": { + "#": 7596 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7610 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7612 + }, + "max": { + "#": 7613 + } + }, + { + "x": 500, + "y": 445 + }, + { + "x": 525, + "y": 470 + }, + { + "x": 512.5, + "y": 457.5 + }, + [ + { + "#": 7616 + }, + { + "#": 7617 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 347, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7619 + }, + "angle": 0, + "vertices": { + "#": 7620 + }, + "position": { + "#": 7625 + }, + "force": { + "#": 7626 + }, + "torque": 0, + "positionImpulse": { + "#": 7627 + }, + "constraintImpulse": { + "#": 7628 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7629 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7630 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7631 + }, + "bounds": { + "#": 7633 + }, + "positionPrev": { + "#": 7636 + }, + "anglePrev": 0, + "axes": { + "#": 7637 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7618 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7618 + } + ], + [ + { + "#": 7621 + }, + { + "#": 7622 + }, + { + "#": 7623 + }, + { + "#": 7624 + } + ], + { + "x": 525, + "y": 445, + "index": 0, + "body": { + "#": 7618 + }, + "isInternal": false + }, + { + "x": 550, + "y": 445, + "index": 1, + "body": { + "#": 7618 + }, + "isInternal": false + }, + { + "x": 550, + "y": 470, + "index": 2, + "body": { + "#": 7618 + }, + "isInternal": false + }, + { + "x": 525, + "y": 470, + "index": 3, + "body": { + "#": 7618 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7632 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7634 + }, + "max": { + "#": 7635 + } + }, + { + "x": 525, + "y": 445 + }, + { + "x": 550, + "y": 470 + }, + { + "x": 537.5, + "y": 457.5 + }, + [ + { + "#": 7638 + }, + { + "#": 7639 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 348, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7641 + }, + "angle": 0, + "vertices": { + "#": 7642 + }, + "position": { + "#": 7647 + }, + "force": { + "#": 7648 + }, + "torque": 0, + "positionImpulse": { + "#": 7649 + }, + "constraintImpulse": { + "#": 7650 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7651 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7652 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7653 + }, + "bounds": { + "#": 7655 + }, + "positionPrev": { + "#": 7658 + }, + "anglePrev": 0, + "axes": { + "#": 7659 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7640 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7640 + } + ], + [ + { + "#": 7643 + }, + { + "#": 7644 + }, + { + "#": 7645 + }, + { + "#": 7646 + } + ], + { + "x": 550, + "y": 445, + "index": 0, + "body": { + "#": 7640 + }, + "isInternal": false + }, + { + "x": 575, + "y": 445, + "index": 1, + "body": { + "#": 7640 + }, + "isInternal": false + }, + { + "x": 575, + "y": 470, + "index": 2, + "body": { + "#": 7640 + }, + "isInternal": false + }, + { + "x": 550, + "y": 470, + "index": 3, + "body": { + "#": 7640 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7654 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7656 + }, + "max": { + "#": 7657 + } + }, + { + "x": 550, + "y": 445 + }, + { + "x": 575, + "y": 470 + }, + { + "x": 562.5, + "y": 457.5 + }, + [ + { + "#": 7660 + }, + { + "#": 7661 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 349, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7663 + }, + "angle": 0, + "vertices": { + "#": 7664 + }, + "position": { + "#": 7669 + }, + "force": { + "#": 7670 + }, + "torque": 0, + "positionImpulse": { + "#": 7671 + }, + "constraintImpulse": { + "#": 7672 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7673 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7674 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7675 + }, + "bounds": { + "#": 7677 + }, + "positionPrev": { + "#": 7680 + }, + "anglePrev": 0, + "axes": { + "#": 7681 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7662 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7662 + } + ], + [ + { + "#": 7665 + }, + { + "#": 7666 + }, + { + "#": 7667 + }, + { + "#": 7668 + } + ], + { + "x": 575, + "y": 445, + "index": 0, + "body": { + "#": 7662 + }, + "isInternal": false + }, + { + "x": 600, + "y": 445, + "index": 1, + "body": { + "#": 7662 + }, + "isInternal": false + }, + { + "x": 600, + "y": 470, + "index": 2, + "body": { + "#": 7662 + }, + "isInternal": false + }, + { + "x": 575, + "y": 470, + "index": 3, + "body": { + "#": 7662 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7676 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7678 + }, + "max": { + "#": 7679 + } + }, + { + "x": 575, + "y": 445 + }, + { + "x": 600, + "y": 470 + }, + { + "x": 587.5, + "y": 457.5 + }, + [ + { + "#": 7682 + }, + { + "#": 7683 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 350, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7685 + }, + "angle": 0, + "vertices": { + "#": 7686 + }, + "position": { + "#": 7691 + }, + "force": { + "#": 7692 + }, + "torque": 0, + "positionImpulse": { + "#": 7693 + }, + "constraintImpulse": { + "#": 7694 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7695 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7696 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7697 + }, + "bounds": { + "#": 7699 + }, + "positionPrev": { + "#": 7702 + }, + "anglePrev": 0, + "axes": { + "#": 7703 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7684 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7684 + } + ], + [ + { + "#": 7687 + }, + { + "#": 7688 + }, + { + "#": 7689 + }, + { + "#": 7690 + } + ], + { + "x": 600, + "y": 445, + "index": 0, + "body": { + "#": 7684 + }, + "isInternal": false + }, + { + "x": 625, + "y": 445, + "index": 1, + "body": { + "#": 7684 + }, + "isInternal": false + }, + { + "x": 625, + "y": 470, + "index": 2, + "body": { + "#": 7684 + }, + "isInternal": false + }, + { + "x": 600, + "y": 470, + "index": 3, + "body": { + "#": 7684 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7698 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7700 + }, + "max": { + "#": 7701 + } + }, + { + "x": 600, + "y": 445 + }, + { + "x": 625, + "y": 470 + }, + { + "x": 612.5, + "y": 457.5 + }, + [ + { + "#": 7704 + }, + { + "#": 7705 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 351, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7707 + }, + "angle": 0, + "vertices": { + "#": 7708 + }, + "position": { + "#": 7713 + }, + "force": { + "#": 7714 + }, + "torque": 0, + "positionImpulse": { + "#": 7715 + }, + "constraintImpulse": { + "#": 7716 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7717 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7718 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7719 + }, + "bounds": { + "#": 7721 + }, + "positionPrev": { + "#": 7724 + }, + "anglePrev": 0, + "axes": { + "#": 7725 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7706 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7706 + } + ], + [ + { + "#": 7709 + }, + { + "#": 7710 + }, + { + "#": 7711 + }, + { + "#": 7712 + } + ], + { + "x": 625, + "y": 445, + "index": 0, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 650, + "y": 445, + "index": 1, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 650, + "y": 470, + "index": 2, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 625, + "y": 470, + "index": 3, + "body": { + "#": 7706 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7720 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7722 + }, + "max": { + "#": 7723 + } + }, + { + "x": 625, + "y": 445 + }, + { + "x": 650, + "y": 470 + }, + { + "x": 637.5, + "y": 457.5 + }, + [ + { + "#": 7726 + }, + { + "#": 7727 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 352, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7729 + }, + "angle": 0, + "vertices": { + "#": 7730 + }, + "position": { + "#": 7735 + }, + "force": { + "#": 7736 + }, + "torque": 0, + "positionImpulse": { + "#": 7737 + }, + "constraintImpulse": { + "#": 7738 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7739 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7740 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7741 + }, + "bounds": { + "#": 7743 + }, + "positionPrev": { + "#": 7746 + }, + "anglePrev": 0, + "axes": { + "#": 7747 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7728 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7728 + } + ], + [ + { + "#": 7731 + }, + { + "#": 7732 + }, + { + "#": 7733 + }, + { + "#": 7734 + } + ], + { + "x": 650, + "y": 445, + "index": 0, + "body": { + "#": 7728 + }, + "isInternal": false + }, + { + "x": 675, + "y": 445, + "index": 1, + "body": { + "#": 7728 + }, + "isInternal": false + }, + { + "x": 675, + "y": 470, + "index": 2, + "body": { + "#": 7728 + }, + "isInternal": false + }, + { + "x": 650, + "y": 470, + "index": 3, + "body": { + "#": 7728 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7742 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7744 + }, + "max": { + "#": 7745 + } + }, + { + "x": 650, + "y": 445 + }, + { + "x": 675, + "y": 470 + }, + { + "x": 662.5, + "y": 457.5 + }, + [ + { + "#": 7748 + }, + { + "#": 7749 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 353, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7751 + }, + "angle": 0, + "vertices": { + "#": 7752 + }, + "position": { + "#": 7757 + }, + "force": { + "#": 7758 + }, + "torque": 0, + "positionImpulse": { + "#": 7759 + }, + "constraintImpulse": { + "#": 7760 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7761 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7762 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7763 + }, + "bounds": { + "#": 7765 + }, + "positionPrev": { + "#": 7768 + }, + "anglePrev": 0, + "axes": { + "#": 7769 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7750 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7750 + } + ], + [ + { + "#": 7753 + }, + { + "#": 7754 + }, + { + "#": 7755 + }, + { + "#": 7756 + } + ], + { + "x": 675, + "y": 445, + "index": 0, + "body": { + "#": 7750 + }, + "isInternal": false + }, + { + "x": 700, + "y": 445, + "index": 1, + "body": { + "#": 7750 + }, + "isInternal": false + }, + { + "x": 700, + "y": 470, + "index": 2, + "body": { + "#": 7750 + }, + "isInternal": false + }, + { + "x": 675, + "y": 470, + "index": 3, + "body": { + "#": 7750 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7764 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7766 + }, + "max": { + "#": 7767 + } + }, + { + "x": 675, + "y": 445 + }, + { + "x": 700, + "y": 470 + }, + { + "x": 687.5, + "y": 457.5 + }, + [ + { + "#": 7770 + }, + { + "#": 7771 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 354, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7773 + }, + "angle": 0, + "vertices": { + "#": 7774 + }, + "position": { + "#": 7779 + }, + "force": { + "#": 7780 + }, + "torque": 0, + "positionImpulse": { + "#": 7781 + }, + "constraintImpulse": { + "#": 7782 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7783 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7784 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7785 + }, + "bounds": { + "#": 7787 + }, + "positionPrev": { + "#": 7790 + }, + "anglePrev": 0, + "axes": { + "#": 7791 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7772 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7772 + } + ], + [ + { + "#": 7775 + }, + { + "#": 7776 + }, + { + "#": 7777 + }, + { + "#": 7778 + } + ], + { + "x": 700, + "y": 445, + "index": 0, + "body": { + "#": 7772 + }, + "isInternal": false + }, + { + "x": 725, + "y": 445, + "index": 1, + "body": { + "#": 7772 + }, + "isInternal": false + }, + { + "x": 725, + "y": 470, + "index": 2, + "body": { + "#": 7772 + }, + "isInternal": false + }, + { + "x": 700, + "y": 470, + "index": 3, + "body": { + "#": 7772 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 457.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7786 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7788 + }, + "max": { + "#": 7789 + } + }, + { + "x": 700, + "y": 445 + }, + { + "x": 725, + "y": 470 + }, + { + "x": 712.5, + "y": 457.5 + }, + [ + { + "#": 7792 + }, + { + "#": 7793 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 355, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7795 + }, + "angle": 0, + "vertices": { + "#": 7796 + }, + "position": { + "#": 7801 + }, + "force": { + "#": 7802 + }, + "torque": 0, + "positionImpulse": { + "#": 7803 + }, + "constraintImpulse": { + "#": 7804 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7805 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7806 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7807 + }, + "bounds": { + "#": 7809 + }, + "positionPrev": { + "#": 7812 + }, + "anglePrev": 0, + "axes": { + "#": 7813 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7794 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7794 + } + ], + [ + { + "#": 7797 + }, + { + "#": 7798 + }, + { + "#": 7799 + }, + { + "#": 7800 + } + ], + { + "x": 100, + "y": 470, + "index": 0, + "body": { + "#": 7794 + }, + "isInternal": false + }, + { + "x": 125, + "y": 470, + "index": 1, + "body": { + "#": 7794 + }, + "isInternal": false + }, + { + "x": 125, + "y": 495, + "index": 2, + "body": { + "#": 7794 + }, + "isInternal": false + }, + { + "x": 100, + "y": 495, + "index": 3, + "body": { + "#": 7794 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7808 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7810 + }, + "max": { + "#": 7811 + } + }, + { + "x": 100, + "y": 470 + }, + { + "x": 125, + "y": 495 + }, + { + "x": 112.5, + "y": 482.5 + }, + [ + { + "#": 7814 + }, + { + "#": 7815 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 356, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7817 + }, + "angle": 0, + "vertices": { + "#": 7818 + }, + "position": { + "#": 7823 + }, + "force": { + "#": 7824 + }, + "torque": 0, + "positionImpulse": { + "#": 7825 + }, + "constraintImpulse": { + "#": 7826 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7827 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7828 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7829 + }, + "bounds": { + "#": 7831 + }, + "positionPrev": { + "#": 7834 + }, + "anglePrev": 0, + "axes": { + "#": 7835 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7816 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7816 + } + ], + [ + { + "#": 7819 + }, + { + "#": 7820 + }, + { + "#": 7821 + }, + { + "#": 7822 + } + ], + { + "x": 125, + "y": 470, + "index": 0, + "body": { + "#": 7816 + }, + "isInternal": false + }, + { + "x": 150, + "y": 470, + "index": 1, + "body": { + "#": 7816 + }, + "isInternal": false + }, + { + "x": 150, + "y": 495, + "index": 2, + "body": { + "#": 7816 + }, + "isInternal": false + }, + { + "x": 125, + "y": 495, + "index": 3, + "body": { + "#": 7816 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7830 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7832 + }, + "max": { + "#": 7833 + } + }, + { + "x": 125, + "y": 470 + }, + { + "x": 150, + "y": 495 + }, + { + "x": 137.5, + "y": 482.5 + }, + [ + { + "#": 7836 + }, + { + "#": 7837 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 357, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7839 + }, + "angle": 0, + "vertices": { + "#": 7840 + }, + "position": { + "#": 7845 + }, + "force": { + "#": 7846 + }, + "torque": 0, + "positionImpulse": { + "#": 7847 + }, + "constraintImpulse": { + "#": 7848 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7849 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7850 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7851 + }, + "bounds": { + "#": 7853 + }, + "positionPrev": { + "#": 7856 + }, + "anglePrev": 0, + "axes": { + "#": 7857 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7838 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7838 + } + ], + [ + { + "#": 7841 + }, + { + "#": 7842 + }, + { + "#": 7843 + }, + { + "#": 7844 + } + ], + { + "x": 150, + "y": 470, + "index": 0, + "body": { + "#": 7838 + }, + "isInternal": false + }, + { + "x": 175, + "y": 470, + "index": 1, + "body": { + "#": 7838 + }, + "isInternal": false + }, + { + "x": 175, + "y": 495, + "index": 2, + "body": { + "#": 7838 + }, + "isInternal": false + }, + { + "x": 150, + "y": 495, + "index": 3, + "body": { + "#": 7838 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7852 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7854 + }, + "max": { + "#": 7855 + } + }, + { + "x": 150, + "y": 470 + }, + { + "x": 175, + "y": 495 + }, + { + "x": 162.5, + "y": 482.5 + }, + [ + { + "#": 7858 + }, + { + "#": 7859 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 358, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7861 + }, + "angle": 0, + "vertices": { + "#": 7862 + }, + "position": { + "#": 7867 + }, + "force": { + "#": 7868 + }, + "torque": 0, + "positionImpulse": { + "#": 7869 + }, + "constraintImpulse": { + "#": 7870 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7871 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7872 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7873 + }, + "bounds": { + "#": 7875 + }, + "positionPrev": { + "#": 7878 + }, + "anglePrev": 0, + "axes": { + "#": 7879 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7860 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7860 + } + ], + [ + { + "#": 7863 + }, + { + "#": 7864 + }, + { + "#": 7865 + }, + { + "#": 7866 + } + ], + { + "x": 175, + "y": 470, + "index": 0, + "body": { + "#": 7860 + }, + "isInternal": false + }, + { + "x": 200, + "y": 470, + "index": 1, + "body": { + "#": 7860 + }, + "isInternal": false + }, + { + "x": 200, + "y": 495, + "index": 2, + "body": { + "#": 7860 + }, + "isInternal": false + }, + { + "x": 175, + "y": 495, + "index": 3, + "body": { + "#": 7860 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7874 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7876 + }, + "max": { + "#": 7877 + } + }, + { + "x": 175, + "y": 470 + }, + { + "x": 200, + "y": 495 + }, + { + "x": 187.5, + "y": 482.5 + }, + [ + { + "#": 7880 + }, + { + "#": 7881 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 359, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7883 + }, + "angle": 0, + "vertices": { + "#": 7884 + }, + "position": { + "#": 7889 + }, + "force": { + "#": 7890 + }, + "torque": 0, + "positionImpulse": { + "#": 7891 + }, + "constraintImpulse": { + "#": 7892 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7893 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7894 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7895 + }, + "bounds": { + "#": 7897 + }, + "positionPrev": { + "#": 7900 + }, + "anglePrev": 0, + "axes": { + "#": 7901 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7882 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7882 + } + ], + [ + { + "#": 7885 + }, + { + "#": 7886 + }, + { + "#": 7887 + }, + { + "#": 7888 + } + ], + { + "x": 200, + "y": 470, + "index": 0, + "body": { + "#": 7882 + }, + "isInternal": false + }, + { + "x": 225, + "y": 470, + "index": 1, + "body": { + "#": 7882 + }, + "isInternal": false + }, + { + "x": 225, + "y": 495, + "index": 2, + "body": { + "#": 7882 + }, + "isInternal": false + }, + { + "x": 200, + "y": 495, + "index": 3, + "body": { + "#": 7882 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7896 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7898 + }, + "max": { + "#": 7899 + } + }, + { + "x": 200, + "y": 470 + }, + { + "x": 225, + "y": 495 + }, + { + "x": 212.5, + "y": 482.5 + }, + [ + { + "#": 7902 + }, + { + "#": 7903 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 360, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7905 + }, + "angle": 0, + "vertices": { + "#": 7906 + }, + "position": { + "#": 7911 + }, + "force": { + "#": 7912 + }, + "torque": 0, + "positionImpulse": { + "#": 7913 + }, + "constraintImpulse": { + "#": 7914 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7915 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7916 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7917 + }, + "bounds": { + "#": 7919 + }, + "positionPrev": { + "#": 7922 + }, + "anglePrev": 0, + "axes": { + "#": 7923 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7904 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7904 + } + ], + [ + { + "#": 7907 + }, + { + "#": 7908 + }, + { + "#": 7909 + }, + { + "#": 7910 + } + ], + { + "x": 225, + "y": 470, + "index": 0, + "body": { + "#": 7904 + }, + "isInternal": false + }, + { + "x": 250, + "y": 470, + "index": 1, + "body": { + "#": 7904 + }, + "isInternal": false + }, + { + "x": 250, + "y": 495, + "index": 2, + "body": { + "#": 7904 + }, + "isInternal": false + }, + { + "x": 225, + "y": 495, + "index": 3, + "body": { + "#": 7904 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7918 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7920 + }, + "max": { + "#": 7921 + } + }, + { + "x": 225, + "y": 470 + }, + { + "x": 250, + "y": 495 + }, + { + "x": 237.5, + "y": 482.5 + }, + [ + { + "#": 7924 + }, + { + "#": 7925 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 361, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7927 + }, + "angle": 0, + "vertices": { + "#": 7928 + }, + "position": { + "#": 7933 + }, + "force": { + "#": 7934 + }, + "torque": 0, + "positionImpulse": { + "#": 7935 + }, + "constraintImpulse": { + "#": 7936 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7937 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7938 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7939 + }, + "bounds": { + "#": 7941 + }, + "positionPrev": { + "#": 7944 + }, + "anglePrev": 0, + "axes": { + "#": 7945 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7926 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7926 + } + ], + [ + { + "#": 7929 + }, + { + "#": 7930 + }, + { + "#": 7931 + }, + { + "#": 7932 + } + ], + { + "x": 250, + "y": 470, + "index": 0, + "body": { + "#": 7926 + }, + "isInternal": false + }, + { + "x": 275, + "y": 470, + "index": 1, + "body": { + "#": 7926 + }, + "isInternal": false + }, + { + "x": 275, + "y": 495, + "index": 2, + "body": { + "#": 7926 + }, + "isInternal": false + }, + { + "x": 250, + "y": 495, + "index": 3, + "body": { + "#": 7926 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7940 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7942 + }, + "max": { + "#": 7943 + } + }, + { + "x": 250, + "y": 470 + }, + { + "x": 275, + "y": 495 + }, + { + "x": 262.5, + "y": 482.5 + }, + [ + { + "#": 7946 + }, + { + "#": 7947 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 362, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7949 + }, + "angle": 0, + "vertices": { + "#": 7950 + }, + "position": { + "#": 7955 + }, + "force": { + "#": 7956 + }, + "torque": 0, + "positionImpulse": { + "#": 7957 + }, + "constraintImpulse": { + "#": 7958 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7959 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7960 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7961 + }, + "bounds": { + "#": 7963 + }, + "positionPrev": { + "#": 7966 + }, + "anglePrev": 0, + "axes": { + "#": 7967 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7948 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7948 + } + ], + [ + { + "#": 7951 + }, + { + "#": 7952 + }, + { + "#": 7953 + }, + { + "#": 7954 + } + ], + { + "x": 275, + "y": 470, + "index": 0, + "body": { + "#": 7948 + }, + "isInternal": false + }, + { + "x": 300, + "y": 470, + "index": 1, + "body": { + "#": 7948 + }, + "isInternal": false + }, + { + "x": 300, + "y": 495, + "index": 2, + "body": { + "#": 7948 + }, + "isInternal": false + }, + { + "x": 275, + "y": 495, + "index": 3, + "body": { + "#": 7948 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7962 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7964 + }, + "max": { + "#": 7965 + } + }, + { + "x": 275, + "y": 470 + }, + { + "x": 300, + "y": 495 + }, + { + "x": 287.5, + "y": 482.5 + }, + [ + { + "#": 7968 + }, + { + "#": 7969 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 363, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7971 + }, + "angle": 0, + "vertices": { + "#": 7972 + }, + "position": { + "#": 7977 + }, + "force": { + "#": 7978 + }, + "torque": 0, + "positionImpulse": { + "#": 7979 + }, + "constraintImpulse": { + "#": 7980 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 7981 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7982 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7983 + }, + "bounds": { + "#": 7985 + }, + "positionPrev": { + "#": 7988 + }, + "anglePrev": 0, + "axes": { + "#": 7989 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7970 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7970 + } + ], + [ + { + "#": 7973 + }, + { + "#": 7974 + }, + { + "#": 7975 + }, + { + "#": 7976 + } + ], + { + "x": 300, + "y": 470, + "index": 0, + "body": { + "#": 7970 + }, + "isInternal": false + }, + { + "x": 325, + "y": 470, + "index": 1, + "body": { + "#": 7970 + }, + "isInternal": false + }, + { + "x": 325, + "y": 495, + "index": 2, + "body": { + "#": 7970 + }, + "isInternal": false + }, + { + "x": 300, + "y": 495, + "index": 3, + "body": { + "#": 7970 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7984 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7986 + }, + "max": { + "#": 7987 + } + }, + { + "x": 300, + "y": 470 + }, + { + "x": 325, + "y": 495 + }, + { + "x": 312.5, + "y": 482.5 + }, + [ + { + "#": 7990 + }, + { + "#": 7991 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 364, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7993 + }, + "angle": 0, + "vertices": { + "#": 7994 + }, + "position": { + "#": 7999 + }, + "force": { + "#": 8000 + }, + "torque": 0, + "positionImpulse": { + "#": 8001 + }, + "constraintImpulse": { + "#": 8002 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8003 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8004 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8005 + }, + "bounds": { + "#": 8007 + }, + "positionPrev": { + "#": 8010 + }, + "anglePrev": 0, + "axes": { + "#": 8011 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7992 + }, + "sleepCounter": 0 + }, + [ + { + "#": 7992 + } + ], + [ + { + "#": 7995 + }, + { + "#": 7996 + }, + { + "#": 7997 + }, + { + "#": 7998 + } + ], + { + "x": 325, + "y": 470, + "index": 0, + "body": { + "#": 7992 + }, + "isInternal": false + }, + { + "x": 350, + "y": 470, + "index": 1, + "body": { + "#": 7992 + }, + "isInternal": false + }, + { + "x": 350, + "y": 495, + "index": 2, + "body": { + "#": 7992 + }, + "isInternal": false + }, + { + "x": 325, + "y": 495, + "index": 3, + "body": { + "#": 7992 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8006 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8008 + }, + "max": { + "#": 8009 + } + }, + { + "x": 325, + "y": 470 + }, + { + "x": 350, + "y": 495 + }, + { + "x": 337.5, + "y": 482.5 + }, + [ + { + "#": 8012 + }, + { + "#": 8013 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 365, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8015 + }, + "angle": 0, + "vertices": { + "#": 8016 + }, + "position": { + "#": 8021 + }, + "force": { + "#": 8022 + }, + "torque": 0, + "positionImpulse": { + "#": 8023 + }, + "constraintImpulse": { + "#": 8024 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8025 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8026 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8027 + }, + "bounds": { + "#": 8029 + }, + "positionPrev": { + "#": 8032 + }, + "anglePrev": 0, + "axes": { + "#": 8033 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8014 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8014 + } + ], + [ + { + "#": 8017 + }, + { + "#": 8018 + }, + { + "#": 8019 + }, + { + "#": 8020 + } + ], + { + "x": 350, + "y": 470, + "index": 0, + "body": { + "#": 8014 + }, + "isInternal": false + }, + { + "x": 375, + "y": 470, + "index": 1, + "body": { + "#": 8014 + }, + "isInternal": false + }, + { + "x": 375, + "y": 495, + "index": 2, + "body": { + "#": 8014 + }, + "isInternal": false + }, + { + "x": 350, + "y": 495, + "index": 3, + "body": { + "#": 8014 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8028 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8030 + }, + "max": { + "#": 8031 + } + }, + { + "x": 350, + "y": 470 + }, + { + "x": 375, + "y": 495 + }, + { + "x": 362.5, + "y": 482.5 + }, + [ + { + "#": 8034 + }, + { + "#": 8035 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 366, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8037 + }, + "angle": 0, + "vertices": { + "#": 8038 + }, + "position": { + "#": 8043 + }, + "force": { + "#": 8044 + }, + "torque": 0, + "positionImpulse": { + "#": 8045 + }, + "constraintImpulse": { + "#": 8046 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8047 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8048 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8049 + }, + "bounds": { + "#": 8051 + }, + "positionPrev": { + "#": 8054 + }, + "anglePrev": 0, + "axes": { + "#": 8055 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8036 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8036 + } + ], + [ + { + "#": 8039 + }, + { + "#": 8040 + }, + { + "#": 8041 + }, + { + "#": 8042 + } + ], + { + "x": 375, + "y": 470, + "index": 0, + "body": { + "#": 8036 + }, + "isInternal": false + }, + { + "x": 400, + "y": 470, + "index": 1, + "body": { + "#": 8036 + }, + "isInternal": false + }, + { + "x": 400, + "y": 495, + "index": 2, + "body": { + "#": 8036 + }, + "isInternal": false + }, + { + "x": 375, + "y": 495, + "index": 3, + "body": { + "#": 8036 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8050 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8052 + }, + "max": { + "#": 8053 + } + }, + { + "x": 375, + "y": 470 + }, + { + "x": 400, + "y": 495 + }, + { + "x": 387.5, + "y": 482.5 + }, + [ + { + "#": 8056 + }, + { + "#": 8057 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 367, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8059 + }, + "angle": 0, + "vertices": { + "#": 8060 + }, + "position": { + "#": 8065 + }, + "force": { + "#": 8066 + }, + "torque": 0, + "positionImpulse": { + "#": 8067 + }, + "constraintImpulse": { + "#": 8068 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8069 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8070 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8071 + }, + "bounds": { + "#": 8073 + }, + "positionPrev": { + "#": 8076 + }, + "anglePrev": 0, + "axes": { + "#": 8077 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8058 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8058 + } + ], + [ + { + "#": 8061 + }, + { + "#": 8062 + }, + { + "#": 8063 + }, + { + "#": 8064 + } + ], + { + "x": 400, + "y": 470, + "index": 0, + "body": { + "#": 8058 + }, + "isInternal": false + }, + { + "x": 425, + "y": 470, + "index": 1, + "body": { + "#": 8058 + }, + "isInternal": false + }, + { + "x": 425, + "y": 495, + "index": 2, + "body": { + "#": 8058 + }, + "isInternal": false + }, + { + "x": 400, + "y": 495, + "index": 3, + "body": { + "#": 8058 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8072 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8074 + }, + "max": { + "#": 8075 + } + }, + { + "x": 400, + "y": 470 + }, + { + "x": 425, + "y": 495 + }, + { + "x": 412.5, + "y": 482.5 + }, + [ + { + "#": 8078 + }, + { + "#": 8079 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 368, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8081 + }, + "angle": 0, + "vertices": { + "#": 8082 + }, + "position": { + "#": 8087 + }, + "force": { + "#": 8088 + }, + "torque": 0, + "positionImpulse": { + "#": 8089 + }, + "constraintImpulse": { + "#": 8090 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8091 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8092 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8093 + }, + "bounds": { + "#": 8095 + }, + "positionPrev": { + "#": 8098 + }, + "anglePrev": 0, + "axes": { + "#": 8099 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8080 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8080 + } + ], + [ + { + "#": 8083 + }, + { + "#": 8084 + }, + { + "#": 8085 + }, + { + "#": 8086 + } + ], + { + "x": 425, + "y": 470, + "index": 0, + "body": { + "#": 8080 + }, + "isInternal": false + }, + { + "x": 450, + "y": 470, + "index": 1, + "body": { + "#": 8080 + }, + "isInternal": false + }, + { + "x": 450, + "y": 495, + "index": 2, + "body": { + "#": 8080 + }, + "isInternal": false + }, + { + "x": 425, + "y": 495, + "index": 3, + "body": { + "#": 8080 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8094 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8096 + }, + "max": { + "#": 8097 + } + }, + { + "x": 425, + "y": 470 + }, + { + "x": 450, + "y": 495 + }, + { + "x": 437.5, + "y": 482.5 + }, + [ + { + "#": 8100 + }, + { + "#": 8101 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 369, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8103 + }, + "angle": 0, + "vertices": { + "#": 8104 + }, + "position": { + "#": 8109 + }, + "force": { + "#": 8110 + }, + "torque": 0, + "positionImpulse": { + "#": 8111 + }, + "constraintImpulse": { + "#": 8112 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8113 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8114 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8115 + }, + "bounds": { + "#": 8117 + }, + "positionPrev": { + "#": 8120 + }, + "anglePrev": 0, + "axes": { + "#": 8121 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8102 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8102 + } + ], + [ + { + "#": 8105 + }, + { + "#": 8106 + }, + { + "#": 8107 + }, + { + "#": 8108 + } + ], + { + "x": 450, + "y": 470, + "index": 0, + "body": { + "#": 8102 + }, + "isInternal": false + }, + { + "x": 475, + "y": 470, + "index": 1, + "body": { + "#": 8102 + }, + "isInternal": false + }, + { + "x": 475, + "y": 495, + "index": 2, + "body": { + "#": 8102 + }, + "isInternal": false + }, + { + "x": 450, + "y": 495, + "index": 3, + "body": { + "#": 8102 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8116 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8118 + }, + "max": { + "#": 8119 + } + }, + { + "x": 450, + "y": 470 + }, + { + "x": 475, + "y": 495 + }, + { + "x": 462.5, + "y": 482.5 + }, + [ + { + "#": 8122 + }, + { + "#": 8123 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 370, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8125 + }, + "angle": 0, + "vertices": { + "#": 8126 + }, + "position": { + "#": 8131 + }, + "force": { + "#": 8132 + }, + "torque": 0, + "positionImpulse": { + "#": 8133 + }, + "constraintImpulse": { + "#": 8134 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8135 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8136 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8137 + }, + "bounds": { + "#": 8139 + }, + "positionPrev": { + "#": 8142 + }, + "anglePrev": 0, + "axes": { + "#": 8143 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8124 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8124 + } + ], + [ + { + "#": 8127 + }, + { + "#": 8128 + }, + { + "#": 8129 + }, + { + "#": 8130 + } + ], + { + "x": 475, + "y": 470, + "index": 0, + "body": { + "#": 8124 + }, + "isInternal": false + }, + { + "x": 500, + "y": 470, + "index": 1, + "body": { + "#": 8124 + }, + "isInternal": false + }, + { + "x": 500, + "y": 495, + "index": 2, + "body": { + "#": 8124 + }, + "isInternal": false + }, + { + "x": 475, + "y": 495, + "index": 3, + "body": { + "#": 8124 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8138 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8140 + }, + "max": { + "#": 8141 + } + }, + { + "x": 475, + "y": 470 + }, + { + "x": 500, + "y": 495 + }, + { + "x": 487.5, + "y": 482.5 + }, + [ + { + "#": 8144 + }, + { + "#": 8145 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 371, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8147 + }, + "angle": 0, + "vertices": { + "#": 8148 + }, + "position": { + "#": 8153 + }, + "force": { + "#": 8154 + }, + "torque": 0, + "positionImpulse": { + "#": 8155 + }, + "constraintImpulse": { + "#": 8156 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8157 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8158 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8159 + }, + "bounds": { + "#": 8161 + }, + "positionPrev": { + "#": 8164 + }, + "anglePrev": 0, + "axes": { + "#": 8165 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8146 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8146 + } + ], + [ + { + "#": 8149 + }, + { + "#": 8150 + }, + { + "#": 8151 + }, + { + "#": 8152 + } + ], + { + "x": 500, + "y": 470, + "index": 0, + "body": { + "#": 8146 + }, + "isInternal": false + }, + { + "x": 525, + "y": 470, + "index": 1, + "body": { + "#": 8146 + }, + "isInternal": false + }, + { + "x": 525, + "y": 495, + "index": 2, + "body": { + "#": 8146 + }, + "isInternal": false + }, + { + "x": 500, + "y": 495, + "index": 3, + "body": { + "#": 8146 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8160 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8162 + }, + "max": { + "#": 8163 + } + }, + { + "x": 500, + "y": 470 + }, + { + "x": 525, + "y": 495 + }, + { + "x": 512.5, + "y": 482.5 + }, + [ + { + "#": 8166 + }, + { + "#": 8167 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 372, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8169 + }, + "angle": 0, + "vertices": { + "#": 8170 + }, + "position": { + "#": 8175 + }, + "force": { + "#": 8176 + }, + "torque": 0, + "positionImpulse": { + "#": 8177 + }, + "constraintImpulse": { + "#": 8178 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8179 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8180 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8181 + }, + "bounds": { + "#": 8183 + }, + "positionPrev": { + "#": 8186 + }, + "anglePrev": 0, + "axes": { + "#": 8187 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8168 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8168 + } + ], + [ + { + "#": 8171 + }, + { + "#": 8172 + }, + { + "#": 8173 + }, + { + "#": 8174 + } + ], + { + "x": 525, + "y": 470, + "index": 0, + "body": { + "#": 8168 + }, + "isInternal": false + }, + { + "x": 550, + "y": 470, + "index": 1, + "body": { + "#": 8168 + }, + "isInternal": false + }, + { + "x": 550, + "y": 495, + "index": 2, + "body": { + "#": 8168 + }, + "isInternal": false + }, + { + "x": 525, + "y": 495, + "index": 3, + "body": { + "#": 8168 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8182 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8184 + }, + "max": { + "#": 8185 + } + }, + { + "x": 525, + "y": 470 + }, + { + "x": 550, + "y": 495 + }, + { + "x": 537.5, + "y": 482.5 + }, + [ + { + "#": 8188 + }, + { + "#": 8189 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 373, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8191 + }, + "angle": 0, + "vertices": { + "#": 8192 + }, + "position": { + "#": 8197 + }, + "force": { + "#": 8198 + }, + "torque": 0, + "positionImpulse": { + "#": 8199 + }, + "constraintImpulse": { + "#": 8200 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8201 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8202 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8203 + }, + "bounds": { + "#": 8205 + }, + "positionPrev": { + "#": 8208 + }, + "anglePrev": 0, + "axes": { + "#": 8209 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8190 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8190 + } + ], + [ + { + "#": 8193 + }, + { + "#": 8194 + }, + { + "#": 8195 + }, + { + "#": 8196 + } + ], + { + "x": 550, + "y": 470, + "index": 0, + "body": { + "#": 8190 + }, + "isInternal": false + }, + { + "x": 575, + "y": 470, + "index": 1, + "body": { + "#": 8190 + }, + "isInternal": false + }, + { + "x": 575, + "y": 495, + "index": 2, + "body": { + "#": 8190 + }, + "isInternal": false + }, + { + "x": 550, + "y": 495, + "index": 3, + "body": { + "#": 8190 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8204 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8206 + }, + "max": { + "#": 8207 + } + }, + { + "x": 550, + "y": 470 + }, + { + "x": 575, + "y": 495 + }, + { + "x": 562.5, + "y": 482.5 + }, + [ + { + "#": 8210 + }, + { + "#": 8211 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 374, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8213 + }, + "angle": 0, + "vertices": { + "#": 8214 + }, + "position": { + "#": 8219 + }, + "force": { + "#": 8220 + }, + "torque": 0, + "positionImpulse": { + "#": 8221 + }, + "constraintImpulse": { + "#": 8222 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8223 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8224 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8225 + }, + "bounds": { + "#": 8227 + }, + "positionPrev": { + "#": 8230 + }, + "anglePrev": 0, + "axes": { + "#": 8231 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8212 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8212 + } + ], + [ + { + "#": 8215 + }, + { + "#": 8216 + }, + { + "#": 8217 + }, + { + "#": 8218 + } + ], + { + "x": 575, + "y": 470, + "index": 0, + "body": { + "#": 8212 + }, + "isInternal": false + }, + { + "x": 600, + "y": 470, + "index": 1, + "body": { + "#": 8212 + }, + "isInternal": false + }, + { + "x": 600, + "y": 495, + "index": 2, + "body": { + "#": 8212 + }, + "isInternal": false + }, + { + "x": 575, + "y": 495, + "index": 3, + "body": { + "#": 8212 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8226 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8228 + }, + "max": { + "#": 8229 + } + }, + { + "x": 575, + "y": 470 + }, + { + "x": 600, + "y": 495 + }, + { + "x": 587.5, + "y": 482.5 + }, + [ + { + "#": 8232 + }, + { + "#": 8233 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 375, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8235 + }, + "angle": 0, + "vertices": { + "#": 8236 + }, + "position": { + "#": 8241 + }, + "force": { + "#": 8242 + }, + "torque": 0, + "positionImpulse": { + "#": 8243 + }, + "constraintImpulse": { + "#": 8244 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8245 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8246 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8247 + }, + "bounds": { + "#": 8249 + }, + "positionPrev": { + "#": 8252 + }, + "anglePrev": 0, + "axes": { + "#": 8253 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8234 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8234 + } + ], + [ + { + "#": 8237 + }, + { + "#": 8238 + }, + { + "#": 8239 + }, + { + "#": 8240 + } + ], + { + "x": 600, + "y": 470, + "index": 0, + "body": { + "#": 8234 + }, + "isInternal": false + }, + { + "x": 625, + "y": 470, + "index": 1, + "body": { + "#": 8234 + }, + "isInternal": false + }, + { + "x": 625, + "y": 495, + "index": 2, + "body": { + "#": 8234 + }, + "isInternal": false + }, + { + "x": 600, + "y": 495, + "index": 3, + "body": { + "#": 8234 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8248 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8250 + }, + "max": { + "#": 8251 + } + }, + { + "x": 600, + "y": 470 + }, + { + "x": 625, + "y": 495 + }, + { + "x": 612.5, + "y": 482.5 + }, + [ + { + "#": 8254 + }, + { + "#": 8255 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 376, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8257 + }, + "angle": 0, + "vertices": { + "#": 8258 + }, + "position": { + "#": 8263 + }, + "force": { + "#": 8264 + }, + "torque": 0, + "positionImpulse": { + "#": 8265 + }, + "constraintImpulse": { + "#": 8266 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8267 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8268 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8269 + }, + "bounds": { + "#": 8271 + }, + "positionPrev": { + "#": 8274 + }, + "anglePrev": 0, + "axes": { + "#": 8275 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8256 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8256 + } + ], + [ + { + "#": 8259 + }, + { + "#": 8260 + }, + { + "#": 8261 + }, + { + "#": 8262 + } + ], + { + "x": 625, + "y": 470, + "index": 0, + "body": { + "#": 8256 + }, + "isInternal": false + }, + { + "x": 650, + "y": 470, + "index": 1, + "body": { + "#": 8256 + }, + "isInternal": false + }, + { + "x": 650, + "y": 495, + "index": 2, + "body": { + "#": 8256 + }, + "isInternal": false + }, + { + "x": 625, + "y": 495, + "index": 3, + "body": { + "#": 8256 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8270 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8272 + }, + "max": { + "#": 8273 + } + }, + { + "x": 625, + "y": 470 + }, + { + "x": 650, + "y": 495 + }, + { + "x": 637.5, + "y": 482.5 + }, + [ + { + "#": 8276 + }, + { + "#": 8277 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 377, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8279 + }, + "angle": 0, + "vertices": { + "#": 8280 + }, + "position": { + "#": 8285 + }, + "force": { + "#": 8286 + }, + "torque": 0, + "positionImpulse": { + "#": 8287 + }, + "constraintImpulse": { + "#": 8288 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8289 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8290 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8291 + }, + "bounds": { + "#": 8293 + }, + "positionPrev": { + "#": 8296 + }, + "anglePrev": 0, + "axes": { + "#": 8297 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8278 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8278 + } + ], + [ + { + "#": 8281 + }, + { + "#": 8282 + }, + { + "#": 8283 + }, + { + "#": 8284 + } + ], + { + "x": 650, + "y": 470, + "index": 0, + "body": { + "#": 8278 + }, + "isInternal": false + }, + { + "x": 675, + "y": 470, + "index": 1, + "body": { + "#": 8278 + }, + "isInternal": false + }, + { + "x": 675, + "y": 495, + "index": 2, + "body": { + "#": 8278 + }, + "isInternal": false + }, + { + "x": 650, + "y": 495, + "index": 3, + "body": { + "#": 8278 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8292 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8294 + }, + "max": { + "#": 8295 + } + }, + { + "x": 650, + "y": 470 + }, + { + "x": 675, + "y": 495 + }, + { + "x": 662.5, + "y": 482.5 + }, + [ + { + "#": 8298 + }, + { + "#": 8299 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 378, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8301 + }, + "angle": 0, + "vertices": { + "#": 8302 + }, + "position": { + "#": 8307 + }, + "force": { + "#": 8308 + }, + "torque": 0, + "positionImpulse": { + "#": 8309 + }, + "constraintImpulse": { + "#": 8310 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8311 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8312 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8313 + }, + "bounds": { + "#": 8315 + }, + "positionPrev": { + "#": 8318 + }, + "anglePrev": 0, + "axes": { + "#": 8319 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8300 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8300 + } + ], + [ + { + "#": 8303 + }, + { + "#": 8304 + }, + { + "#": 8305 + }, + { + "#": 8306 + } + ], + { + "x": 675, + "y": 470, + "index": 0, + "body": { + "#": 8300 + }, + "isInternal": false + }, + { + "x": 700, + "y": 470, + "index": 1, + "body": { + "#": 8300 + }, + "isInternal": false + }, + { + "x": 700, + "y": 495, + "index": 2, + "body": { + "#": 8300 + }, + "isInternal": false + }, + { + "x": 675, + "y": 495, + "index": 3, + "body": { + "#": 8300 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8314 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8316 + }, + "max": { + "#": 8317 + } + }, + { + "x": 675, + "y": 470 + }, + { + "x": 700, + "y": 495 + }, + { + "x": 687.5, + "y": 482.5 + }, + [ + { + "#": 8320 + }, + { + "#": 8321 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 379, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8323 + }, + "angle": 0, + "vertices": { + "#": 8324 + }, + "position": { + "#": 8329 + }, + "force": { + "#": 8330 + }, + "torque": 0, + "positionImpulse": { + "#": 8331 + }, + "constraintImpulse": { + "#": 8332 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8333 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8334 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8335 + }, + "bounds": { + "#": 8337 + }, + "positionPrev": { + "#": 8340 + }, + "anglePrev": 0, + "axes": { + "#": 8341 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8322 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8322 + } + ], + [ + { + "#": 8325 + }, + { + "#": 8326 + }, + { + "#": 8327 + }, + { + "#": 8328 + } + ], + { + "x": 700, + "y": 470, + "index": 0, + "body": { + "#": 8322 + }, + "isInternal": false + }, + { + "x": 725, + "y": 470, + "index": 1, + "body": { + "#": 8322 + }, + "isInternal": false + }, + { + "x": 725, + "y": 495, + "index": 2, + "body": { + "#": 8322 + }, + "isInternal": false + }, + { + "x": 700, + "y": 495, + "index": 3, + "body": { + "#": 8322 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 482.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8336 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8338 + }, + "max": { + "#": 8339 + } + }, + { + "x": 700, + "y": 470 + }, + { + "x": 725, + "y": 495 + }, + { + "x": 712.5, + "y": 482.5 + }, + [ + { + "#": 8342 + }, + { + "#": 8343 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 380, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8345 + }, + "angle": 0, + "vertices": { + "#": 8346 + }, + "position": { + "#": 8351 + }, + "force": { + "#": 8352 + }, + "torque": 0, + "positionImpulse": { + "#": 8353 + }, + "constraintImpulse": { + "#": 8354 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8355 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8356 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8357 + }, + "bounds": { + "#": 8359 + }, + "positionPrev": { + "#": 8362 + }, + "anglePrev": 0, + "axes": { + "#": 8363 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8344 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8344 + } + ], + [ + { + "#": 8347 + }, + { + "#": 8348 + }, + { + "#": 8349 + }, + { + "#": 8350 + } + ], + { + "x": 100, + "y": 495, + "index": 0, + "body": { + "#": 8344 + }, + "isInternal": false + }, + { + "x": 125, + "y": 495, + "index": 1, + "body": { + "#": 8344 + }, + "isInternal": false + }, + { + "x": 125, + "y": 520, + "index": 2, + "body": { + "#": 8344 + }, + "isInternal": false + }, + { + "x": 100, + "y": 520, + "index": 3, + "body": { + "#": 8344 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8358 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8360 + }, + "max": { + "#": 8361 + } + }, + { + "x": 100, + "y": 495 + }, + { + "x": 125, + "y": 520 + }, + { + "x": 112.5, + "y": 507.5 + }, + [ + { + "#": 8364 + }, + { + "#": 8365 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 381, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8367 + }, + "angle": 0, + "vertices": { + "#": 8368 + }, + "position": { + "#": 8373 + }, + "force": { + "#": 8374 + }, + "torque": 0, + "positionImpulse": { + "#": 8375 + }, + "constraintImpulse": { + "#": 8376 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8377 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8378 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8379 + }, + "bounds": { + "#": 8381 + }, + "positionPrev": { + "#": 8384 + }, + "anglePrev": 0, + "axes": { + "#": 8385 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8366 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8366 + } + ], + [ + { + "#": 8369 + }, + { + "#": 8370 + }, + { + "#": 8371 + }, + { + "#": 8372 + } + ], + { + "x": 125, + "y": 495, + "index": 0, + "body": { + "#": 8366 + }, + "isInternal": false + }, + { + "x": 150, + "y": 495, + "index": 1, + "body": { + "#": 8366 + }, + "isInternal": false + }, + { + "x": 150, + "y": 520, + "index": 2, + "body": { + "#": 8366 + }, + "isInternal": false + }, + { + "x": 125, + "y": 520, + "index": 3, + "body": { + "#": 8366 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8380 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8382 + }, + "max": { + "#": 8383 + } + }, + { + "x": 125, + "y": 495 + }, + { + "x": 150, + "y": 520 + }, + { + "x": 137.5, + "y": 507.5 + }, + [ + { + "#": 8386 + }, + { + "#": 8387 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 382, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8389 + }, + "angle": 0, + "vertices": { + "#": 8390 + }, + "position": { + "#": 8395 + }, + "force": { + "#": 8396 + }, + "torque": 0, + "positionImpulse": { + "#": 8397 + }, + "constraintImpulse": { + "#": 8398 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8399 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8400 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8401 + }, + "bounds": { + "#": 8403 + }, + "positionPrev": { + "#": 8406 + }, + "anglePrev": 0, + "axes": { + "#": 8407 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8388 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8388 + } + ], + [ + { + "#": 8391 + }, + { + "#": 8392 + }, + { + "#": 8393 + }, + { + "#": 8394 + } + ], + { + "x": 150, + "y": 495, + "index": 0, + "body": { + "#": 8388 + }, + "isInternal": false + }, + { + "x": 175, + "y": 495, + "index": 1, + "body": { + "#": 8388 + }, + "isInternal": false + }, + { + "x": 175, + "y": 520, + "index": 2, + "body": { + "#": 8388 + }, + "isInternal": false + }, + { + "x": 150, + "y": 520, + "index": 3, + "body": { + "#": 8388 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8402 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8404 + }, + "max": { + "#": 8405 + } + }, + { + "x": 150, + "y": 495 + }, + { + "x": 175, + "y": 520 + }, + { + "x": 162.5, + "y": 507.5 + }, + [ + { + "#": 8408 + }, + { + "#": 8409 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 383, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8411 + }, + "angle": 0, + "vertices": { + "#": 8412 + }, + "position": { + "#": 8417 + }, + "force": { + "#": 8418 + }, + "torque": 0, + "positionImpulse": { + "#": 8419 + }, + "constraintImpulse": { + "#": 8420 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8421 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8422 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8423 + }, + "bounds": { + "#": 8425 + }, + "positionPrev": { + "#": 8428 + }, + "anglePrev": 0, + "axes": { + "#": 8429 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8410 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8410 + } + ], + [ + { + "#": 8413 + }, + { + "#": 8414 + }, + { + "#": 8415 + }, + { + "#": 8416 + } + ], + { + "x": 175, + "y": 495, + "index": 0, + "body": { + "#": 8410 + }, + "isInternal": false + }, + { + "x": 200, + "y": 495, + "index": 1, + "body": { + "#": 8410 + }, + "isInternal": false + }, + { + "x": 200, + "y": 520, + "index": 2, + "body": { + "#": 8410 + }, + "isInternal": false + }, + { + "x": 175, + "y": 520, + "index": 3, + "body": { + "#": 8410 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8424 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8426 + }, + "max": { + "#": 8427 + } + }, + { + "x": 175, + "y": 495 + }, + { + "x": 200, + "y": 520 + }, + { + "x": 187.5, + "y": 507.5 + }, + [ + { + "#": 8430 + }, + { + "#": 8431 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 384, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8433 + }, + "angle": 0, + "vertices": { + "#": 8434 + }, + "position": { + "#": 8439 + }, + "force": { + "#": 8440 + }, + "torque": 0, + "positionImpulse": { + "#": 8441 + }, + "constraintImpulse": { + "#": 8442 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8443 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8444 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8445 + }, + "bounds": { + "#": 8447 + }, + "positionPrev": { + "#": 8450 + }, + "anglePrev": 0, + "axes": { + "#": 8451 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8432 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8432 + } + ], + [ + { + "#": 8435 + }, + { + "#": 8436 + }, + { + "#": 8437 + }, + { + "#": 8438 + } + ], + { + "x": 200, + "y": 495, + "index": 0, + "body": { + "#": 8432 + }, + "isInternal": false + }, + { + "x": 225, + "y": 495, + "index": 1, + "body": { + "#": 8432 + }, + "isInternal": false + }, + { + "x": 225, + "y": 520, + "index": 2, + "body": { + "#": 8432 + }, + "isInternal": false + }, + { + "x": 200, + "y": 520, + "index": 3, + "body": { + "#": 8432 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8446 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8448 + }, + "max": { + "#": 8449 + } + }, + { + "x": 200, + "y": 495 + }, + { + "x": 225, + "y": 520 + }, + { + "x": 212.5, + "y": 507.5 + }, + [ + { + "#": 8452 + }, + { + "#": 8453 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 385, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8455 + }, + "angle": 0, + "vertices": { + "#": 8456 + }, + "position": { + "#": 8461 + }, + "force": { + "#": 8462 + }, + "torque": 0, + "positionImpulse": { + "#": 8463 + }, + "constraintImpulse": { + "#": 8464 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8465 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8466 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8467 + }, + "bounds": { + "#": 8469 + }, + "positionPrev": { + "#": 8472 + }, + "anglePrev": 0, + "axes": { + "#": 8473 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8454 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8454 + } + ], + [ + { + "#": 8457 + }, + { + "#": 8458 + }, + { + "#": 8459 + }, + { + "#": 8460 + } + ], + { + "x": 225, + "y": 495, + "index": 0, + "body": { + "#": 8454 + }, + "isInternal": false + }, + { + "x": 250, + "y": 495, + "index": 1, + "body": { + "#": 8454 + }, + "isInternal": false + }, + { + "x": 250, + "y": 520, + "index": 2, + "body": { + "#": 8454 + }, + "isInternal": false + }, + { + "x": 225, + "y": 520, + "index": 3, + "body": { + "#": 8454 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8468 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8470 + }, + "max": { + "#": 8471 + } + }, + { + "x": 225, + "y": 495 + }, + { + "x": 250, + "y": 520 + }, + { + "x": 237.5, + "y": 507.5 + }, + [ + { + "#": 8474 + }, + { + "#": 8475 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 386, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8477 + }, + "angle": 0, + "vertices": { + "#": 8478 + }, + "position": { + "#": 8483 + }, + "force": { + "#": 8484 + }, + "torque": 0, + "positionImpulse": { + "#": 8485 + }, + "constraintImpulse": { + "#": 8486 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8487 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8488 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8489 + }, + "bounds": { + "#": 8491 + }, + "positionPrev": { + "#": 8494 + }, + "anglePrev": 0, + "axes": { + "#": 8495 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8476 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8476 + } + ], + [ + { + "#": 8479 + }, + { + "#": 8480 + }, + { + "#": 8481 + }, + { + "#": 8482 + } + ], + { + "x": 250, + "y": 495, + "index": 0, + "body": { + "#": 8476 + }, + "isInternal": false + }, + { + "x": 275, + "y": 495, + "index": 1, + "body": { + "#": 8476 + }, + "isInternal": false + }, + { + "x": 275, + "y": 520, + "index": 2, + "body": { + "#": 8476 + }, + "isInternal": false + }, + { + "x": 250, + "y": 520, + "index": 3, + "body": { + "#": 8476 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8490 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8492 + }, + "max": { + "#": 8493 + } + }, + { + "x": 250, + "y": 495 + }, + { + "x": 275, + "y": 520 + }, + { + "x": 262.5, + "y": 507.5 + }, + [ + { + "#": 8496 + }, + { + "#": 8497 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 387, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8499 + }, + "angle": 0, + "vertices": { + "#": 8500 + }, + "position": { + "#": 8505 + }, + "force": { + "#": 8506 + }, + "torque": 0, + "positionImpulse": { + "#": 8507 + }, + "constraintImpulse": { + "#": 8508 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8509 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8510 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8511 + }, + "bounds": { + "#": 8513 + }, + "positionPrev": { + "#": 8516 + }, + "anglePrev": 0, + "axes": { + "#": 8517 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8498 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8498 + } + ], + [ + { + "#": 8501 + }, + { + "#": 8502 + }, + { + "#": 8503 + }, + { + "#": 8504 + } + ], + { + "x": 275, + "y": 495, + "index": 0, + "body": { + "#": 8498 + }, + "isInternal": false + }, + { + "x": 300, + "y": 495, + "index": 1, + "body": { + "#": 8498 + }, + "isInternal": false + }, + { + "x": 300, + "y": 520, + "index": 2, + "body": { + "#": 8498 + }, + "isInternal": false + }, + { + "x": 275, + "y": 520, + "index": 3, + "body": { + "#": 8498 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8512 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8514 + }, + "max": { + "#": 8515 + } + }, + { + "x": 275, + "y": 495 + }, + { + "x": 300, + "y": 520 + }, + { + "x": 287.5, + "y": 507.5 + }, + [ + { + "#": 8518 + }, + { + "#": 8519 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 388, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8521 + }, + "angle": 0, + "vertices": { + "#": 8522 + }, + "position": { + "#": 8527 + }, + "force": { + "#": 8528 + }, + "torque": 0, + "positionImpulse": { + "#": 8529 + }, + "constraintImpulse": { + "#": 8530 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8531 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8532 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8533 + }, + "bounds": { + "#": 8535 + }, + "positionPrev": { + "#": 8538 + }, + "anglePrev": 0, + "axes": { + "#": 8539 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8520 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8520 + } + ], + [ + { + "#": 8523 + }, + { + "#": 8524 + }, + { + "#": 8525 + }, + { + "#": 8526 + } + ], + { + "x": 300, + "y": 495, + "index": 0, + "body": { + "#": 8520 + }, + "isInternal": false + }, + { + "x": 325, + "y": 495, + "index": 1, + "body": { + "#": 8520 + }, + "isInternal": false + }, + { + "x": 325, + "y": 520, + "index": 2, + "body": { + "#": 8520 + }, + "isInternal": false + }, + { + "x": 300, + "y": 520, + "index": 3, + "body": { + "#": 8520 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8534 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8536 + }, + "max": { + "#": 8537 + } + }, + { + "x": 300, + "y": 495 + }, + { + "x": 325, + "y": 520 + }, + { + "x": 312.5, + "y": 507.5 + }, + [ + { + "#": 8540 + }, + { + "#": 8541 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 389, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8543 + }, + "angle": 0, + "vertices": { + "#": 8544 + }, + "position": { + "#": 8549 + }, + "force": { + "#": 8550 + }, + "torque": 0, + "positionImpulse": { + "#": 8551 + }, + "constraintImpulse": { + "#": 8552 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8553 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8554 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8555 + }, + "bounds": { + "#": 8557 + }, + "positionPrev": { + "#": 8560 + }, + "anglePrev": 0, + "axes": { + "#": 8561 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8542 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8542 + } + ], + [ + { + "#": 8545 + }, + { + "#": 8546 + }, + { + "#": 8547 + }, + { + "#": 8548 + } + ], + { + "x": 325, + "y": 495, + "index": 0, + "body": { + "#": 8542 + }, + "isInternal": false + }, + { + "x": 350, + "y": 495, + "index": 1, + "body": { + "#": 8542 + }, + "isInternal": false + }, + { + "x": 350, + "y": 520, + "index": 2, + "body": { + "#": 8542 + }, + "isInternal": false + }, + { + "x": 325, + "y": 520, + "index": 3, + "body": { + "#": 8542 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8556 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8558 + }, + "max": { + "#": 8559 + } + }, + { + "x": 325, + "y": 495 + }, + { + "x": 350, + "y": 520 + }, + { + "x": 337.5, + "y": 507.5 + }, + [ + { + "#": 8562 + }, + { + "#": 8563 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 390, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8565 + }, + "angle": 0, + "vertices": { + "#": 8566 + }, + "position": { + "#": 8571 + }, + "force": { + "#": 8572 + }, + "torque": 0, + "positionImpulse": { + "#": 8573 + }, + "constraintImpulse": { + "#": 8574 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8575 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8576 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8577 + }, + "bounds": { + "#": 8579 + }, + "positionPrev": { + "#": 8582 + }, + "anglePrev": 0, + "axes": { + "#": 8583 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8564 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8564 + } + ], + [ + { + "#": 8567 + }, + { + "#": 8568 + }, + { + "#": 8569 + }, + { + "#": 8570 + } + ], + { + "x": 350, + "y": 495, + "index": 0, + "body": { + "#": 8564 + }, + "isInternal": false + }, + { + "x": 375, + "y": 495, + "index": 1, + "body": { + "#": 8564 + }, + "isInternal": false + }, + { + "x": 375, + "y": 520, + "index": 2, + "body": { + "#": 8564 + }, + "isInternal": false + }, + { + "x": 350, + "y": 520, + "index": 3, + "body": { + "#": 8564 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8578 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8580 + }, + "max": { + "#": 8581 + } + }, + { + "x": 350, + "y": 495 + }, + { + "x": 375, + "y": 520 + }, + { + "x": 362.5, + "y": 507.5 + }, + [ + { + "#": 8584 + }, + { + "#": 8585 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 391, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8587 + }, + "angle": 0, + "vertices": { + "#": 8588 + }, + "position": { + "#": 8593 + }, + "force": { + "#": 8594 + }, + "torque": 0, + "positionImpulse": { + "#": 8595 + }, + "constraintImpulse": { + "#": 8596 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8597 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8598 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8599 + }, + "bounds": { + "#": 8601 + }, + "positionPrev": { + "#": 8604 + }, + "anglePrev": 0, + "axes": { + "#": 8605 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8586 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8586 + } + ], + [ + { + "#": 8589 + }, + { + "#": 8590 + }, + { + "#": 8591 + }, + { + "#": 8592 + } + ], + { + "x": 375, + "y": 495, + "index": 0, + "body": { + "#": 8586 + }, + "isInternal": false + }, + { + "x": 400, + "y": 495, + "index": 1, + "body": { + "#": 8586 + }, + "isInternal": false + }, + { + "x": 400, + "y": 520, + "index": 2, + "body": { + "#": 8586 + }, + "isInternal": false + }, + { + "x": 375, + "y": 520, + "index": 3, + "body": { + "#": 8586 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8600 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8602 + }, + "max": { + "#": 8603 + } + }, + { + "x": 375, + "y": 495 + }, + { + "x": 400, + "y": 520 + }, + { + "x": 387.5, + "y": 507.5 + }, + [ + { + "#": 8606 + }, + { + "#": 8607 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 392, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8609 + }, + "angle": 0, + "vertices": { + "#": 8610 + }, + "position": { + "#": 8615 + }, + "force": { + "#": 8616 + }, + "torque": 0, + "positionImpulse": { + "#": 8617 + }, + "constraintImpulse": { + "#": 8618 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8619 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8620 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8621 + }, + "bounds": { + "#": 8623 + }, + "positionPrev": { + "#": 8626 + }, + "anglePrev": 0, + "axes": { + "#": 8627 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8608 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8608 + } + ], + [ + { + "#": 8611 + }, + { + "#": 8612 + }, + { + "#": 8613 + }, + { + "#": 8614 + } + ], + { + "x": 400, + "y": 495, + "index": 0, + "body": { + "#": 8608 + }, + "isInternal": false + }, + { + "x": 425, + "y": 495, + "index": 1, + "body": { + "#": 8608 + }, + "isInternal": false + }, + { + "x": 425, + "y": 520, + "index": 2, + "body": { + "#": 8608 + }, + "isInternal": false + }, + { + "x": 400, + "y": 520, + "index": 3, + "body": { + "#": 8608 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8622 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8624 + }, + "max": { + "#": 8625 + } + }, + { + "x": 400, + "y": 495 + }, + { + "x": 425, + "y": 520 + }, + { + "x": 412.5, + "y": 507.5 + }, + [ + { + "#": 8628 + }, + { + "#": 8629 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 393, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8631 + }, + "angle": 0, + "vertices": { + "#": 8632 + }, + "position": { + "#": 8637 + }, + "force": { + "#": 8638 + }, + "torque": 0, + "positionImpulse": { + "#": 8639 + }, + "constraintImpulse": { + "#": 8640 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8641 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8642 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8643 + }, + "bounds": { + "#": 8645 + }, + "positionPrev": { + "#": 8648 + }, + "anglePrev": 0, + "axes": { + "#": 8649 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8630 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8630 + } + ], + [ + { + "#": 8633 + }, + { + "#": 8634 + }, + { + "#": 8635 + }, + { + "#": 8636 + } + ], + { + "x": 425, + "y": 495, + "index": 0, + "body": { + "#": 8630 + }, + "isInternal": false + }, + { + "x": 450, + "y": 495, + "index": 1, + "body": { + "#": 8630 + }, + "isInternal": false + }, + { + "x": 450, + "y": 520, + "index": 2, + "body": { + "#": 8630 + }, + "isInternal": false + }, + { + "x": 425, + "y": 520, + "index": 3, + "body": { + "#": 8630 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8644 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8646 + }, + "max": { + "#": 8647 + } + }, + { + "x": 425, + "y": 495 + }, + { + "x": 450, + "y": 520 + }, + { + "x": 437.5, + "y": 507.5 + }, + [ + { + "#": 8650 + }, + { + "#": 8651 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 394, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8653 + }, + "angle": 0, + "vertices": { + "#": 8654 + }, + "position": { + "#": 8659 + }, + "force": { + "#": 8660 + }, + "torque": 0, + "positionImpulse": { + "#": 8661 + }, + "constraintImpulse": { + "#": 8662 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8663 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8664 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8665 + }, + "bounds": { + "#": 8667 + }, + "positionPrev": { + "#": 8670 + }, + "anglePrev": 0, + "axes": { + "#": 8671 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8652 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8652 + } + ], + [ + { + "#": 8655 + }, + { + "#": 8656 + }, + { + "#": 8657 + }, + { + "#": 8658 + } + ], + { + "x": 450, + "y": 495, + "index": 0, + "body": { + "#": 8652 + }, + "isInternal": false + }, + { + "x": 475, + "y": 495, + "index": 1, + "body": { + "#": 8652 + }, + "isInternal": false + }, + { + "x": 475, + "y": 520, + "index": 2, + "body": { + "#": 8652 + }, + "isInternal": false + }, + { + "x": 450, + "y": 520, + "index": 3, + "body": { + "#": 8652 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8666 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8668 + }, + "max": { + "#": 8669 + } + }, + { + "x": 450, + "y": 495 + }, + { + "x": 475, + "y": 520 + }, + { + "x": 462.5, + "y": 507.5 + }, + [ + { + "#": 8672 + }, + { + "#": 8673 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 395, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8675 + }, + "angle": 0, + "vertices": { + "#": 8676 + }, + "position": { + "#": 8681 + }, + "force": { + "#": 8682 + }, + "torque": 0, + "positionImpulse": { + "#": 8683 + }, + "constraintImpulse": { + "#": 8684 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8685 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8686 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8687 + }, + "bounds": { + "#": 8689 + }, + "positionPrev": { + "#": 8692 + }, + "anglePrev": 0, + "axes": { + "#": 8693 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8674 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8674 + } + ], + [ + { + "#": 8677 + }, + { + "#": 8678 + }, + { + "#": 8679 + }, + { + "#": 8680 + } + ], + { + "x": 475, + "y": 495, + "index": 0, + "body": { + "#": 8674 + }, + "isInternal": false + }, + { + "x": 500, + "y": 495, + "index": 1, + "body": { + "#": 8674 + }, + "isInternal": false + }, + { + "x": 500, + "y": 520, + "index": 2, + "body": { + "#": 8674 + }, + "isInternal": false + }, + { + "x": 475, + "y": 520, + "index": 3, + "body": { + "#": 8674 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8688 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8690 + }, + "max": { + "#": 8691 + } + }, + { + "x": 475, + "y": 495 + }, + { + "x": 500, + "y": 520 + }, + { + "x": 487.5, + "y": 507.5 + }, + [ + { + "#": 8694 + }, + { + "#": 8695 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 396, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8697 + }, + "angle": 0, + "vertices": { + "#": 8698 + }, + "position": { + "#": 8703 + }, + "force": { + "#": 8704 + }, + "torque": 0, + "positionImpulse": { + "#": 8705 + }, + "constraintImpulse": { + "#": 8706 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8707 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8708 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8709 + }, + "bounds": { + "#": 8711 + }, + "positionPrev": { + "#": 8714 + }, + "anglePrev": 0, + "axes": { + "#": 8715 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8696 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8696 + } + ], + [ + { + "#": 8699 + }, + { + "#": 8700 + }, + { + "#": 8701 + }, + { + "#": 8702 + } + ], + { + "x": 500, + "y": 495, + "index": 0, + "body": { + "#": 8696 + }, + "isInternal": false + }, + { + "x": 525, + "y": 495, + "index": 1, + "body": { + "#": 8696 + }, + "isInternal": false + }, + { + "x": 525, + "y": 520, + "index": 2, + "body": { + "#": 8696 + }, + "isInternal": false + }, + { + "x": 500, + "y": 520, + "index": 3, + "body": { + "#": 8696 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8710 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8712 + }, + "max": { + "#": 8713 + } + }, + { + "x": 500, + "y": 495 + }, + { + "x": 525, + "y": 520 + }, + { + "x": 512.5, + "y": 507.5 + }, + [ + { + "#": 8716 + }, + { + "#": 8717 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 397, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8719 + }, + "angle": 0, + "vertices": { + "#": 8720 + }, + "position": { + "#": 8725 + }, + "force": { + "#": 8726 + }, + "torque": 0, + "positionImpulse": { + "#": 8727 + }, + "constraintImpulse": { + "#": 8728 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8729 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8730 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8731 + }, + "bounds": { + "#": 8733 + }, + "positionPrev": { + "#": 8736 + }, + "anglePrev": 0, + "axes": { + "#": 8737 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8718 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8718 + } + ], + [ + { + "#": 8721 + }, + { + "#": 8722 + }, + { + "#": 8723 + }, + { + "#": 8724 + } + ], + { + "x": 525, + "y": 495, + "index": 0, + "body": { + "#": 8718 + }, + "isInternal": false + }, + { + "x": 550, + "y": 495, + "index": 1, + "body": { + "#": 8718 + }, + "isInternal": false + }, + { + "x": 550, + "y": 520, + "index": 2, + "body": { + "#": 8718 + }, + "isInternal": false + }, + { + "x": 525, + "y": 520, + "index": 3, + "body": { + "#": 8718 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8732 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8734 + }, + "max": { + "#": 8735 + } + }, + { + "x": 525, + "y": 495 + }, + { + "x": 550, + "y": 520 + }, + { + "x": 537.5, + "y": 507.5 + }, + [ + { + "#": 8738 + }, + { + "#": 8739 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 398, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8741 + }, + "angle": 0, + "vertices": { + "#": 8742 + }, + "position": { + "#": 8747 + }, + "force": { + "#": 8748 + }, + "torque": 0, + "positionImpulse": { + "#": 8749 + }, + "constraintImpulse": { + "#": 8750 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8751 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8752 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8753 + }, + "bounds": { + "#": 8755 + }, + "positionPrev": { + "#": 8758 + }, + "anglePrev": 0, + "axes": { + "#": 8759 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8740 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8740 + } + ], + [ + { + "#": 8743 + }, + { + "#": 8744 + }, + { + "#": 8745 + }, + { + "#": 8746 + } + ], + { + "x": 550, + "y": 495, + "index": 0, + "body": { + "#": 8740 + }, + "isInternal": false + }, + { + "x": 575, + "y": 495, + "index": 1, + "body": { + "#": 8740 + }, + "isInternal": false + }, + { + "x": 575, + "y": 520, + "index": 2, + "body": { + "#": 8740 + }, + "isInternal": false + }, + { + "x": 550, + "y": 520, + "index": 3, + "body": { + "#": 8740 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8754 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8756 + }, + "max": { + "#": 8757 + } + }, + { + "x": 550, + "y": 495 + }, + { + "x": 575, + "y": 520 + }, + { + "x": 562.5, + "y": 507.5 + }, + [ + { + "#": 8760 + }, + { + "#": 8761 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 399, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8763 + }, + "angle": 0, + "vertices": { + "#": 8764 + }, + "position": { + "#": 8769 + }, + "force": { + "#": 8770 + }, + "torque": 0, + "positionImpulse": { + "#": 8771 + }, + "constraintImpulse": { + "#": 8772 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8773 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8774 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8775 + }, + "bounds": { + "#": 8777 + }, + "positionPrev": { + "#": 8780 + }, + "anglePrev": 0, + "axes": { + "#": 8781 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8762 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8762 + } + ], + [ + { + "#": 8765 + }, + { + "#": 8766 + }, + { + "#": 8767 + }, + { + "#": 8768 + } + ], + { + "x": 575, + "y": 495, + "index": 0, + "body": { + "#": 8762 + }, + "isInternal": false + }, + { + "x": 600, + "y": 495, + "index": 1, + "body": { + "#": 8762 + }, + "isInternal": false + }, + { + "x": 600, + "y": 520, + "index": 2, + "body": { + "#": 8762 + }, + "isInternal": false + }, + { + "x": 575, + "y": 520, + "index": 3, + "body": { + "#": 8762 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8776 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8778 + }, + "max": { + "#": 8779 + } + }, + { + "x": 575, + "y": 495 + }, + { + "x": 600, + "y": 520 + }, + { + "x": 587.5, + "y": 507.5 + }, + [ + { + "#": 8782 + }, + { + "#": 8783 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 400, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8785 + }, + "angle": 0, + "vertices": { + "#": 8786 + }, + "position": { + "#": 8791 + }, + "force": { + "#": 8792 + }, + "torque": 0, + "positionImpulse": { + "#": 8793 + }, + "constraintImpulse": { + "#": 8794 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8795 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8796 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8797 + }, + "bounds": { + "#": 8799 + }, + "positionPrev": { + "#": 8802 + }, + "anglePrev": 0, + "axes": { + "#": 8803 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8784 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8784 + } + ], + [ + { + "#": 8787 + }, + { + "#": 8788 + }, + { + "#": 8789 + }, + { + "#": 8790 + } + ], + { + "x": 600, + "y": 495, + "index": 0, + "body": { + "#": 8784 + }, + "isInternal": false + }, + { + "x": 625, + "y": 495, + "index": 1, + "body": { + "#": 8784 + }, + "isInternal": false + }, + { + "x": 625, + "y": 520, + "index": 2, + "body": { + "#": 8784 + }, + "isInternal": false + }, + { + "x": 600, + "y": 520, + "index": 3, + "body": { + "#": 8784 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8798 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8800 + }, + "max": { + "#": 8801 + } + }, + { + "x": 600, + "y": 495 + }, + { + "x": 625, + "y": 520 + }, + { + "x": 612.5, + "y": 507.5 + }, + [ + { + "#": 8804 + }, + { + "#": 8805 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 401, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8807 + }, + "angle": 0, + "vertices": { + "#": 8808 + }, + "position": { + "#": 8813 + }, + "force": { + "#": 8814 + }, + "torque": 0, + "positionImpulse": { + "#": 8815 + }, + "constraintImpulse": { + "#": 8816 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8817 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8818 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8819 + }, + "bounds": { + "#": 8821 + }, + "positionPrev": { + "#": 8824 + }, + "anglePrev": 0, + "axes": { + "#": 8825 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8806 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8806 + } + ], + [ + { + "#": 8809 + }, + { + "#": 8810 + }, + { + "#": 8811 + }, + { + "#": 8812 + } + ], + { + "x": 625, + "y": 495, + "index": 0, + "body": { + "#": 8806 + }, + "isInternal": false + }, + { + "x": 650, + "y": 495, + "index": 1, + "body": { + "#": 8806 + }, + "isInternal": false + }, + { + "x": 650, + "y": 520, + "index": 2, + "body": { + "#": 8806 + }, + "isInternal": false + }, + { + "x": 625, + "y": 520, + "index": 3, + "body": { + "#": 8806 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8820 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8822 + }, + "max": { + "#": 8823 + } + }, + { + "x": 625, + "y": 495 + }, + { + "x": 650, + "y": 520 + }, + { + "x": 637.5, + "y": 507.5 + }, + [ + { + "#": 8826 + }, + { + "#": 8827 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 402, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8829 + }, + "angle": 0, + "vertices": { + "#": 8830 + }, + "position": { + "#": 8835 + }, + "force": { + "#": 8836 + }, + "torque": 0, + "positionImpulse": { + "#": 8837 + }, + "constraintImpulse": { + "#": 8838 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8839 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8840 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8841 + }, + "bounds": { + "#": 8843 + }, + "positionPrev": { + "#": 8846 + }, + "anglePrev": 0, + "axes": { + "#": 8847 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8828 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8828 + } + ], + [ + { + "#": 8831 + }, + { + "#": 8832 + }, + { + "#": 8833 + }, + { + "#": 8834 + } + ], + { + "x": 650, + "y": 495, + "index": 0, + "body": { + "#": 8828 + }, + "isInternal": false + }, + { + "x": 675, + "y": 495, + "index": 1, + "body": { + "#": 8828 + }, + "isInternal": false + }, + { + "x": 675, + "y": 520, + "index": 2, + "body": { + "#": 8828 + }, + "isInternal": false + }, + { + "x": 650, + "y": 520, + "index": 3, + "body": { + "#": 8828 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8842 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8844 + }, + "max": { + "#": 8845 + } + }, + { + "x": 650, + "y": 495 + }, + { + "x": 675, + "y": 520 + }, + { + "x": 662.5, + "y": 507.5 + }, + [ + { + "#": 8848 + }, + { + "#": 8849 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 403, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8851 + }, + "angle": 0, + "vertices": { + "#": 8852 + }, + "position": { + "#": 8857 + }, + "force": { + "#": 8858 + }, + "torque": 0, + "positionImpulse": { + "#": 8859 + }, + "constraintImpulse": { + "#": 8860 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8861 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8862 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8863 + }, + "bounds": { + "#": 8865 + }, + "positionPrev": { + "#": 8868 + }, + "anglePrev": 0, + "axes": { + "#": 8869 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8850 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8850 + } + ], + [ + { + "#": 8853 + }, + { + "#": 8854 + }, + { + "#": 8855 + }, + { + "#": 8856 + } + ], + { + "x": 675, + "y": 495, + "index": 0, + "body": { + "#": 8850 + }, + "isInternal": false + }, + { + "x": 700, + "y": 495, + "index": 1, + "body": { + "#": 8850 + }, + "isInternal": false + }, + { + "x": 700, + "y": 520, + "index": 2, + "body": { + "#": 8850 + }, + "isInternal": false + }, + { + "x": 675, + "y": 520, + "index": 3, + "body": { + "#": 8850 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8864 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8866 + }, + "max": { + "#": 8867 + } + }, + { + "x": 675, + "y": 495 + }, + { + "x": 700, + "y": 520 + }, + { + "x": 687.5, + "y": 507.5 + }, + [ + { + "#": 8870 + }, + { + "#": 8871 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 404, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8873 + }, + "angle": 0, + "vertices": { + "#": 8874 + }, + "position": { + "#": 8879 + }, + "force": { + "#": 8880 + }, + "torque": 0, + "positionImpulse": { + "#": 8881 + }, + "constraintImpulse": { + "#": 8882 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8883 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8884 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8885 + }, + "bounds": { + "#": 8887 + }, + "positionPrev": { + "#": 8890 + }, + "anglePrev": 0, + "axes": { + "#": 8891 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8872 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8872 + } + ], + [ + { + "#": 8875 + }, + { + "#": 8876 + }, + { + "#": 8877 + }, + { + "#": 8878 + } + ], + { + "x": 700, + "y": 495, + "index": 0, + "body": { + "#": 8872 + }, + "isInternal": false + }, + { + "x": 725, + "y": 495, + "index": 1, + "body": { + "#": 8872 + }, + "isInternal": false + }, + { + "x": 725, + "y": 520, + "index": 2, + "body": { + "#": 8872 + }, + "isInternal": false + }, + { + "x": 700, + "y": 520, + "index": 3, + "body": { + "#": 8872 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 507.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8886 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8888 + }, + "max": { + "#": 8889 + } + }, + { + "x": 700, + "y": 495 + }, + { + "x": 725, + "y": 520 + }, + { + "x": 712.5, + "y": 507.5 + }, + [ + { + "#": 8892 + }, + { + "#": 8893 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 405, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8895 + }, + "angle": 0, + "vertices": { + "#": 8896 + }, + "position": { + "#": 8901 + }, + "force": { + "#": 8902 + }, + "torque": 0, + "positionImpulse": { + "#": 8903 + }, + "constraintImpulse": { + "#": 8904 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8905 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8906 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8907 + }, + "bounds": { + "#": 8909 + }, + "positionPrev": { + "#": 8912 + }, + "anglePrev": 0, + "axes": { + "#": 8913 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8894 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8894 + } + ], + [ + { + "#": 8897 + }, + { + "#": 8898 + }, + { + "#": 8899 + }, + { + "#": 8900 + } + ], + { + "x": 100, + "y": 520, + "index": 0, + "body": { + "#": 8894 + }, + "isInternal": false + }, + { + "x": 125, + "y": 520, + "index": 1, + "body": { + "#": 8894 + }, + "isInternal": false + }, + { + "x": 125, + "y": 545, + "index": 2, + "body": { + "#": 8894 + }, + "isInternal": false + }, + { + "x": 100, + "y": 545, + "index": 3, + "body": { + "#": 8894 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8908 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8910 + }, + "max": { + "#": 8911 + } + }, + { + "x": 100, + "y": 520 + }, + { + "x": 125, + "y": 545 + }, + { + "x": 112.5, + "y": 532.5 + }, + [ + { + "#": 8914 + }, + { + "#": 8915 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 406, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8917 + }, + "angle": 0, + "vertices": { + "#": 8918 + }, + "position": { + "#": 8923 + }, + "force": { + "#": 8924 + }, + "torque": 0, + "positionImpulse": { + "#": 8925 + }, + "constraintImpulse": { + "#": 8926 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8927 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8928 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8929 + }, + "bounds": { + "#": 8931 + }, + "positionPrev": { + "#": 8934 + }, + "anglePrev": 0, + "axes": { + "#": 8935 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8916 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8916 + } + ], + [ + { + "#": 8919 + }, + { + "#": 8920 + }, + { + "#": 8921 + }, + { + "#": 8922 + } + ], + { + "x": 125, + "y": 520, + "index": 0, + "body": { + "#": 8916 + }, + "isInternal": false + }, + { + "x": 150, + "y": 520, + "index": 1, + "body": { + "#": 8916 + }, + "isInternal": false + }, + { + "x": 150, + "y": 545, + "index": 2, + "body": { + "#": 8916 + }, + "isInternal": false + }, + { + "x": 125, + "y": 545, + "index": 3, + "body": { + "#": 8916 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8930 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8932 + }, + "max": { + "#": 8933 + } + }, + { + "x": 125, + "y": 520 + }, + { + "x": 150, + "y": 545 + }, + { + "x": 137.5, + "y": 532.5 + }, + [ + { + "#": 8936 + }, + { + "#": 8937 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 407, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8939 + }, + "angle": 0, + "vertices": { + "#": 8940 + }, + "position": { + "#": 8945 + }, + "force": { + "#": 8946 + }, + "torque": 0, + "positionImpulse": { + "#": 8947 + }, + "constraintImpulse": { + "#": 8948 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8949 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8950 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8951 + }, + "bounds": { + "#": 8953 + }, + "positionPrev": { + "#": 8956 + }, + "anglePrev": 0, + "axes": { + "#": 8957 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8938 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8938 + } + ], + [ + { + "#": 8941 + }, + { + "#": 8942 + }, + { + "#": 8943 + }, + { + "#": 8944 + } + ], + { + "x": 150, + "y": 520, + "index": 0, + "body": { + "#": 8938 + }, + "isInternal": false + }, + { + "x": 175, + "y": 520, + "index": 1, + "body": { + "#": 8938 + }, + "isInternal": false + }, + { + "x": 175, + "y": 545, + "index": 2, + "body": { + "#": 8938 + }, + "isInternal": false + }, + { + "x": 150, + "y": 545, + "index": 3, + "body": { + "#": 8938 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8952 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8954 + }, + "max": { + "#": 8955 + } + }, + { + "x": 150, + "y": 520 + }, + { + "x": 175, + "y": 545 + }, + { + "x": 162.5, + "y": 532.5 + }, + [ + { + "#": 8958 + }, + { + "#": 8959 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 408, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8961 + }, + "angle": 0, + "vertices": { + "#": 8962 + }, + "position": { + "#": 8967 + }, + "force": { + "#": 8968 + }, + "torque": 0, + "positionImpulse": { + "#": 8969 + }, + "constraintImpulse": { + "#": 8970 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8971 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8972 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8973 + }, + "bounds": { + "#": 8975 + }, + "positionPrev": { + "#": 8978 + }, + "anglePrev": 0, + "axes": { + "#": 8979 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8960 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8960 + } + ], + [ + { + "#": 8963 + }, + { + "#": 8964 + }, + { + "#": 8965 + }, + { + "#": 8966 + } + ], + { + "x": 175, + "y": 520, + "index": 0, + "body": { + "#": 8960 + }, + "isInternal": false + }, + { + "x": 200, + "y": 520, + "index": 1, + "body": { + "#": 8960 + }, + "isInternal": false + }, + { + "x": 200, + "y": 545, + "index": 2, + "body": { + "#": 8960 + }, + "isInternal": false + }, + { + "x": 175, + "y": 545, + "index": 3, + "body": { + "#": 8960 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8974 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8976 + }, + "max": { + "#": 8977 + } + }, + { + "x": 175, + "y": 520 + }, + { + "x": 200, + "y": 545 + }, + { + "x": 187.5, + "y": 532.5 + }, + [ + { + "#": 8980 + }, + { + "#": 8981 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 409, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8983 + }, + "angle": 0, + "vertices": { + "#": 8984 + }, + "position": { + "#": 8989 + }, + "force": { + "#": 8990 + }, + "torque": 0, + "positionImpulse": { + "#": 8991 + }, + "constraintImpulse": { + "#": 8992 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 8993 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8994 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8995 + }, + "bounds": { + "#": 8997 + }, + "positionPrev": { + "#": 9000 + }, + "anglePrev": 0, + "axes": { + "#": 9001 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8982 + }, + "sleepCounter": 0 + }, + [ + { + "#": 8982 + } + ], + [ + { + "#": 8985 + }, + { + "#": 8986 + }, + { + "#": 8987 + }, + { + "#": 8988 + } + ], + { + "x": 200, + "y": 520, + "index": 0, + "body": { + "#": 8982 + }, + "isInternal": false + }, + { + "x": 225, + "y": 520, + "index": 1, + "body": { + "#": 8982 + }, + "isInternal": false + }, + { + "x": 225, + "y": 545, + "index": 2, + "body": { + "#": 8982 + }, + "isInternal": false + }, + { + "x": 200, + "y": 545, + "index": 3, + "body": { + "#": 8982 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8996 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8998 + }, + "max": { + "#": 8999 + } + }, + { + "x": 200, + "y": 520 + }, + { + "x": 225, + "y": 545 + }, + { + "x": 212.5, + "y": 532.5 + }, + [ + { + "#": 9002 + }, + { + "#": 9003 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 410, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9005 + }, + "angle": 0, + "vertices": { + "#": 9006 + }, + "position": { + "#": 9011 + }, + "force": { + "#": 9012 + }, + "torque": 0, + "positionImpulse": { + "#": 9013 + }, + "constraintImpulse": { + "#": 9014 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9015 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9016 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9017 + }, + "bounds": { + "#": 9019 + }, + "positionPrev": { + "#": 9022 + }, + "anglePrev": 0, + "axes": { + "#": 9023 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9004 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9004 + } + ], + [ + { + "#": 9007 + }, + { + "#": 9008 + }, + { + "#": 9009 + }, + { + "#": 9010 + } + ], + { + "x": 225, + "y": 520, + "index": 0, + "body": { + "#": 9004 + }, + "isInternal": false + }, + { + "x": 250, + "y": 520, + "index": 1, + "body": { + "#": 9004 + }, + "isInternal": false + }, + { + "x": 250, + "y": 545, + "index": 2, + "body": { + "#": 9004 + }, + "isInternal": false + }, + { + "x": 225, + "y": 545, + "index": 3, + "body": { + "#": 9004 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9018 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9020 + }, + "max": { + "#": 9021 + } + }, + { + "x": 225, + "y": 520 + }, + { + "x": 250, + "y": 545 + }, + { + "x": 237.5, + "y": 532.5 + }, + [ + { + "#": 9024 + }, + { + "#": 9025 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 411, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9027 + }, + "angle": 0, + "vertices": { + "#": 9028 + }, + "position": { + "#": 9033 + }, + "force": { + "#": 9034 + }, + "torque": 0, + "positionImpulse": { + "#": 9035 + }, + "constraintImpulse": { + "#": 9036 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9037 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9038 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9039 + }, + "bounds": { + "#": 9041 + }, + "positionPrev": { + "#": 9044 + }, + "anglePrev": 0, + "axes": { + "#": 9045 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9026 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9026 + } + ], + [ + { + "#": 9029 + }, + { + "#": 9030 + }, + { + "#": 9031 + }, + { + "#": 9032 + } + ], + { + "x": 250, + "y": 520, + "index": 0, + "body": { + "#": 9026 + }, + "isInternal": false + }, + { + "x": 275, + "y": 520, + "index": 1, + "body": { + "#": 9026 + }, + "isInternal": false + }, + { + "x": 275, + "y": 545, + "index": 2, + "body": { + "#": 9026 + }, + "isInternal": false + }, + { + "x": 250, + "y": 545, + "index": 3, + "body": { + "#": 9026 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9040 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9042 + }, + "max": { + "#": 9043 + } + }, + { + "x": 250, + "y": 520 + }, + { + "x": 275, + "y": 545 + }, + { + "x": 262.5, + "y": 532.5 + }, + [ + { + "#": 9046 + }, + { + "#": 9047 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 412, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9049 + }, + "angle": 0, + "vertices": { + "#": 9050 + }, + "position": { + "#": 9055 + }, + "force": { + "#": 9056 + }, + "torque": 0, + "positionImpulse": { + "#": 9057 + }, + "constraintImpulse": { + "#": 9058 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9059 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9060 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9061 + }, + "bounds": { + "#": 9063 + }, + "positionPrev": { + "#": 9066 + }, + "anglePrev": 0, + "axes": { + "#": 9067 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9048 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9048 + } + ], + [ + { + "#": 9051 + }, + { + "#": 9052 + }, + { + "#": 9053 + }, + { + "#": 9054 + } + ], + { + "x": 275, + "y": 520, + "index": 0, + "body": { + "#": 9048 + }, + "isInternal": false + }, + { + "x": 300, + "y": 520, + "index": 1, + "body": { + "#": 9048 + }, + "isInternal": false + }, + { + "x": 300, + "y": 545, + "index": 2, + "body": { + "#": 9048 + }, + "isInternal": false + }, + { + "x": 275, + "y": 545, + "index": 3, + "body": { + "#": 9048 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9062 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9064 + }, + "max": { + "#": 9065 + } + }, + { + "x": 275, + "y": 520 + }, + { + "x": 300, + "y": 545 + }, + { + "x": 287.5, + "y": 532.5 + }, + [ + { + "#": 9068 + }, + { + "#": 9069 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 413, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9071 + }, + "angle": 0, + "vertices": { + "#": 9072 + }, + "position": { + "#": 9077 + }, + "force": { + "#": 9078 + }, + "torque": 0, + "positionImpulse": { + "#": 9079 + }, + "constraintImpulse": { + "#": 9080 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9081 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9082 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9083 + }, + "bounds": { + "#": 9085 + }, + "positionPrev": { + "#": 9088 + }, + "anglePrev": 0, + "axes": { + "#": 9089 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9070 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9070 + } + ], + [ + { + "#": 9073 + }, + { + "#": 9074 + }, + { + "#": 9075 + }, + { + "#": 9076 + } + ], + { + "x": 300, + "y": 520, + "index": 0, + "body": { + "#": 9070 + }, + "isInternal": false + }, + { + "x": 325, + "y": 520, + "index": 1, + "body": { + "#": 9070 + }, + "isInternal": false + }, + { + "x": 325, + "y": 545, + "index": 2, + "body": { + "#": 9070 + }, + "isInternal": false + }, + { + "x": 300, + "y": 545, + "index": 3, + "body": { + "#": 9070 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9084 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9086 + }, + "max": { + "#": 9087 + } + }, + { + "x": 300, + "y": 520 + }, + { + "x": 325, + "y": 545 + }, + { + "x": 312.5, + "y": 532.5 + }, + [ + { + "#": 9090 + }, + { + "#": 9091 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 414, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9093 + }, + "angle": 0, + "vertices": { + "#": 9094 + }, + "position": { + "#": 9099 + }, + "force": { + "#": 9100 + }, + "torque": 0, + "positionImpulse": { + "#": 9101 + }, + "constraintImpulse": { + "#": 9102 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9103 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9104 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9105 + }, + "bounds": { + "#": 9107 + }, + "positionPrev": { + "#": 9110 + }, + "anglePrev": 0, + "axes": { + "#": 9111 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9092 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9092 + } + ], + [ + { + "#": 9095 + }, + { + "#": 9096 + }, + { + "#": 9097 + }, + { + "#": 9098 + } + ], + { + "x": 325, + "y": 520, + "index": 0, + "body": { + "#": 9092 + }, + "isInternal": false + }, + { + "x": 350, + "y": 520, + "index": 1, + "body": { + "#": 9092 + }, + "isInternal": false + }, + { + "x": 350, + "y": 545, + "index": 2, + "body": { + "#": 9092 + }, + "isInternal": false + }, + { + "x": 325, + "y": 545, + "index": 3, + "body": { + "#": 9092 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9106 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9108 + }, + "max": { + "#": 9109 + } + }, + { + "x": 325, + "y": 520 + }, + { + "x": 350, + "y": 545 + }, + { + "x": 337.5, + "y": 532.5 + }, + [ + { + "#": 9112 + }, + { + "#": 9113 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 415, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9115 + }, + "angle": 0, + "vertices": { + "#": 9116 + }, + "position": { + "#": 9121 + }, + "force": { + "#": 9122 + }, + "torque": 0, + "positionImpulse": { + "#": 9123 + }, + "constraintImpulse": { + "#": 9124 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9125 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9126 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9127 + }, + "bounds": { + "#": 9129 + }, + "positionPrev": { + "#": 9132 + }, + "anglePrev": 0, + "axes": { + "#": 9133 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9114 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9114 + } + ], + [ + { + "#": 9117 + }, + { + "#": 9118 + }, + { + "#": 9119 + }, + { + "#": 9120 + } + ], + { + "x": 350, + "y": 520, + "index": 0, + "body": { + "#": 9114 + }, + "isInternal": false + }, + { + "x": 375, + "y": 520, + "index": 1, + "body": { + "#": 9114 + }, + "isInternal": false + }, + { + "x": 375, + "y": 545, + "index": 2, + "body": { + "#": 9114 + }, + "isInternal": false + }, + { + "x": 350, + "y": 545, + "index": 3, + "body": { + "#": 9114 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9128 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9130 + }, + "max": { + "#": 9131 + } + }, + { + "x": 350, + "y": 520 + }, + { + "x": 375, + "y": 545 + }, + { + "x": 362.5, + "y": 532.5 + }, + [ + { + "#": 9134 + }, + { + "#": 9135 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 416, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9137 + }, + "angle": 0, + "vertices": { + "#": 9138 + }, + "position": { + "#": 9143 + }, + "force": { + "#": 9144 + }, + "torque": 0, + "positionImpulse": { + "#": 9145 + }, + "constraintImpulse": { + "#": 9146 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9147 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9148 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9149 + }, + "bounds": { + "#": 9151 + }, + "positionPrev": { + "#": 9154 + }, + "anglePrev": 0, + "axes": { + "#": 9155 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9136 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9136 + } + ], + [ + { + "#": 9139 + }, + { + "#": 9140 + }, + { + "#": 9141 + }, + { + "#": 9142 + } + ], + { + "x": 375, + "y": 520, + "index": 0, + "body": { + "#": 9136 + }, + "isInternal": false + }, + { + "x": 400, + "y": 520, + "index": 1, + "body": { + "#": 9136 + }, + "isInternal": false + }, + { + "x": 400, + "y": 545, + "index": 2, + "body": { + "#": 9136 + }, + "isInternal": false + }, + { + "x": 375, + "y": 545, + "index": 3, + "body": { + "#": 9136 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9150 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9152 + }, + "max": { + "#": 9153 + } + }, + { + "x": 375, + "y": 520 + }, + { + "x": 400, + "y": 545 + }, + { + "x": 387.5, + "y": 532.5 + }, + [ + { + "#": 9156 + }, + { + "#": 9157 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 417, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9159 + }, + "angle": 0, + "vertices": { + "#": 9160 + }, + "position": { + "#": 9165 + }, + "force": { + "#": 9166 + }, + "torque": 0, + "positionImpulse": { + "#": 9167 + }, + "constraintImpulse": { + "#": 9168 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9169 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9170 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9171 + }, + "bounds": { + "#": 9173 + }, + "positionPrev": { + "#": 9176 + }, + "anglePrev": 0, + "axes": { + "#": 9177 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9158 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9158 + } + ], + [ + { + "#": 9161 + }, + { + "#": 9162 + }, + { + "#": 9163 + }, + { + "#": 9164 + } + ], + { + "x": 400, + "y": 520, + "index": 0, + "body": { + "#": 9158 + }, + "isInternal": false + }, + { + "x": 425, + "y": 520, + "index": 1, + "body": { + "#": 9158 + }, + "isInternal": false + }, + { + "x": 425, + "y": 545, + "index": 2, + "body": { + "#": 9158 + }, + "isInternal": false + }, + { + "x": 400, + "y": 545, + "index": 3, + "body": { + "#": 9158 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9172 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9174 + }, + "max": { + "#": 9175 + } + }, + { + "x": 400, + "y": 520 + }, + { + "x": 425, + "y": 545 + }, + { + "x": 412.5, + "y": 532.5 + }, + [ + { + "#": 9178 + }, + { + "#": 9179 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 418, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9181 + }, + "angle": 0, + "vertices": { + "#": 9182 + }, + "position": { + "#": 9187 + }, + "force": { + "#": 9188 + }, + "torque": 0, + "positionImpulse": { + "#": 9189 + }, + "constraintImpulse": { + "#": 9190 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9191 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9192 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9193 + }, + "bounds": { + "#": 9195 + }, + "positionPrev": { + "#": 9198 + }, + "anglePrev": 0, + "axes": { + "#": 9199 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9180 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9180 + } + ], + [ + { + "#": 9183 + }, + { + "#": 9184 + }, + { + "#": 9185 + }, + { + "#": 9186 + } + ], + { + "x": 425, + "y": 520, + "index": 0, + "body": { + "#": 9180 + }, + "isInternal": false + }, + { + "x": 450, + "y": 520, + "index": 1, + "body": { + "#": 9180 + }, + "isInternal": false + }, + { + "x": 450, + "y": 545, + "index": 2, + "body": { + "#": 9180 + }, + "isInternal": false + }, + { + "x": 425, + "y": 545, + "index": 3, + "body": { + "#": 9180 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9194 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9196 + }, + "max": { + "#": 9197 + } + }, + { + "x": 425, + "y": 520 + }, + { + "x": 450, + "y": 545 + }, + { + "x": 437.5, + "y": 532.5 + }, + [ + { + "#": 9200 + }, + { + "#": 9201 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 419, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9203 + }, + "angle": 0, + "vertices": { + "#": 9204 + }, + "position": { + "#": 9209 + }, + "force": { + "#": 9210 + }, + "torque": 0, + "positionImpulse": { + "#": 9211 + }, + "constraintImpulse": { + "#": 9212 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9213 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9214 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9215 + }, + "bounds": { + "#": 9217 + }, + "positionPrev": { + "#": 9220 + }, + "anglePrev": 0, + "axes": { + "#": 9221 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9202 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9202 + } + ], + [ + { + "#": 9205 + }, + { + "#": 9206 + }, + { + "#": 9207 + }, + { + "#": 9208 + } + ], + { + "x": 450, + "y": 520, + "index": 0, + "body": { + "#": 9202 + }, + "isInternal": false + }, + { + "x": 475, + "y": 520, + "index": 1, + "body": { + "#": 9202 + }, + "isInternal": false + }, + { + "x": 475, + "y": 545, + "index": 2, + "body": { + "#": 9202 + }, + "isInternal": false + }, + { + "x": 450, + "y": 545, + "index": 3, + "body": { + "#": 9202 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9216 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9218 + }, + "max": { + "#": 9219 + } + }, + { + "x": 450, + "y": 520 + }, + { + "x": 475, + "y": 545 + }, + { + "x": 462.5, + "y": 532.5 + }, + [ + { + "#": 9222 + }, + { + "#": 9223 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 420, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9225 + }, + "angle": 0, + "vertices": { + "#": 9226 + }, + "position": { + "#": 9231 + }, + "force": { + "#": 9232 + }, + "torque": 0, + "positionImpulse": { + "#": 9233 + }, + "constraintImpulse": { + "#": 9234 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9235 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9236 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9237 + }, + "bounds": { + "#": 9239 + }, + "positionPrev": { + "#": 9242 + }, + "anglePrev": 0, + "axes": { + "#": 9243 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9224 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9224 + } + ], + [ + { + "#": 9227 + }, + { + "#": 9228 + }, + { + "#": 9229 + }, + { + "#": 9230 + } + ], + { + "x": 475, + "y": 520, + "index": 0, + "body": { + "#": 9224 + }, + "isInternal": false + }, + { + "x": 500, + "y": 520, + "index": 1, + "body": { + "#": 9224 + }, + "isInternal": false + }, + { + "x": 500, + "y": 545, + "index": 2, + "body": { + "#": 9224 + }, + "isInternal": false + }, + { + "x": 475, + "y": 545, + "index": 3, + "body": { + "#": 9224 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9238 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9240 + }, + "max": { + "#": 9241 + } + }, + { + "x": 475, + "y": 520 + }, + { + "x": 500, + "y": 545 + }, + { + "x": 487.5, + "y": 532.5 + }, + [ + { + "#": 9244 + }, + { + "#": 9245 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 421, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9247 + }, + "angle": 0, + "vertices": { + "#": 9248 + }, + "position": { + "#": 9253 + }, + "force": { + "#": 9254 + }, + "torque": 0, + "positionImpulse": { + "#": 9255 + }, + "constraintImpulse": { + "#": 9256 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9257 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9258 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9259 + }, + "bounds": { + "#": 9261 + }, + "positionPrev": { + "#": 9264 + }, + "anglePrev": 0, + "axes": { + "#": 9265 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9246 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9246 + } + ], + [ + { + "#": 9249 + }, + { + "#": 9250 + }, + { + "#": 9251 + }, + { + "#": 9252 + } + ], + { + "x": 500, + "y": 520, + "index": 0, + "body": { + "#": 9246 + }, + "isInternal": false + }, + { + "x": 525, + "y": 520, + "index": 1, + "body": { + "#": 9246 + }, + "isInternal": false + }, + { + "x": 525, + "y": 545, + "index": 2, + "body": { + "#": 9246 + }, + "isInternal": false + }, + { + "x": 500, + "y": 545, + "index": 3, + "body": { + "#": 9246 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9260 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9262 + }, + "max": { + "#": 9263 + } + }, + { + "x": 500, + "y": 520 + }, + { + "x": 525, + "y": 545 + }, + { + "x": 512.5, + "y": 532.5 + }, + [ + { + "#": 9266 + }, + { + "#": 9267 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 422, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9269 + }, + "angle": 0, + "vertices": { + "#": 9270 + }, + "position": { + "#": 9275 + }, + "force": { + "#": 9276 + }, + "torque": 0, + "positionImpulse": { + "#": 9277 + }, + "constraintImpulse": { + "#": 9278 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9279 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9280 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9281 + }, + "bounds": { + "#": 9283 + }, + "positionPrev": { + "#": 9286 + }, + "anglePrev": 0, + "axes": { + "#": 9287 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9268 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9268 + } + ], + [ + { + "#": 9271 + }, + { + "#": 9272 + }, + { + "#": 9273 + }, + { + "#": 9274 + } + ], + { + "x": 525, + "y": 520, + "index": 0, + "body": { + "#": 9268 + }, + "isInternal": false + }, + { + "x": 550, + "y": 520, + "index": 1, + "body": { + "#": 9268 + }, + "isInternal": false + }, + { + "x": 550, + "y": 545, + "index": 2, + "body": { + "#": 9268 + }, + "isInternal": false + }, + { + "x": 525, + "y": 545, + "index": 3, + "body": { + "#": 9268 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9282 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9284 + }, + "max": { + "#": 9285 + } + }, + { + "x": 525, + "y": 520 + }, + { + "x": 550, + "y": 545 + }, + { + "x": 537.5, + "y": 532.5 + }, + [ + { + "#": 9288 + }, + { + "#": 9289 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 423, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9291 + }, + "angle": 0, + "vertices": { + "#": 9292 + }, + "position": { + "#": 9297 + }, + "force": { + "#": 9298 + }, + "torque": 0, + "positionImpulse": { + "#": 9299 + }, + "constraintImpulse": { + "#": 9300 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9301 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9302 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9303 + }, + "bounds": { + "#": 9305 + }, + "positionPrev": { + "#": 9308 + }, + "anglePrev": 0, + "axes": { + "#": 9309 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9290 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9290 + } + ], + [ + { + "#": 9293 + }, + { + "#": 9294 + }, + { + "#": 9295 + }, + { + "#": 9296 + } + ], + { + "x": 550, + "y": 520, + "index": 0, + "body": { + "#": 9290 + }, + "isInternal": false + }, + { + "x": 575, + "y": 520, + "index": 1, + "body": { + "#": 9290 + }, + "isInternal": false + }, + { + "x": 575, + "y": 545, + "index": 2, + "body": { + "#": 9290 + }, + "isInternal": false + }, + { + "x": 550, + "y": 545, + "index": 3, + "body": { + "#": 9290 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9304 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9306 + }, + "max": { + "#": 9307 + } + }, + { + "x": 550, + "y": 520 + }, + { + "x": 575, + "y": 545 + }, + { + "x": 562.5, + "y": 532.5 + }, + [ + { + "#": 9310 + }, + { + "#": 9311 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 424, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9313 + }, + "angle": 0, + "vertices": { + "#": 9314 + }, + "position": { + "#": 9319 + }, + "force": { + "#": 9320 + }, + "torque": 0, + "positionImpulse": { + "#": 9321 + }, + "constraintImpulse": { + "#": 9322 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9323 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9324 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9325 + }, + "bounds": { + "#": 9327 + }, + "positionPrev": { + "#": 9330 + }, + "anglePrev": 0, + "axes": { + "#": 9331 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9312 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9312 + } + ], + [ + { + "#": 9315 + }, + { + "#": 9316 + }, + { + "#": 9317 + }, + { + "#": 9318 + } + ], + { + "x": 575, + "y": 520, + "index": 0, + "body": { + "#": 9312 + }, + "isInternal": false + }, + { + "x": 600, + "y": 520, + "index": 1, + "body": { + "#": 9312 + }, + "isInternal": false + }, + { + "x": 600, + "y": 545, + "index": 2, + "body": { + "#": 9312 + }, + "isInternal": false + }, + { + "x": 575, + "y": 545, + "index": 3, + "body": { + "#": 9312 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9326 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9328 + }, + "max": { + "#": 9329 + } + }, + { + "x": 575, + "y": 520 + }, + { + "x": 600, + "y": 545 + }, + { + "x": 587.5, + "y": 532.5 + }, + [ + { + "#": 9332 + }, + { + "#": 9333 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 425, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9335 + }, + "angle": 0, + "vertices": { + "#": 9336 + }, + "position": { + "#": 9341 + }, + "force": { + "#": 9342 + }, + "torque": 0, + "positionImpulse": { + "#": 9343 + }, + "constraintImpulse": { + "#": 9344 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9345 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9346 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9347 + }, + "bounds": { + "#": 9349 + }, + "positionPrev": { + "#": 9352 + }, + "anglePrev": 0, + "axes": { + "#": 9353 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9334 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9334 + } + ], + [ + { + "#": 9337 + }, + { + "#": 9338 + }, + { + "#": 9339 + }, + { + "#": 9340 + } + ], + { + "x": 600, + "y": 520, + "index": 0, + "body": { + "#": 9334 + }, + "isInternal": false + }, + { + "x": 625, + "y": 520, + "index": 1, + "body": { + "#": 9334 + }, + "isInternal": false + }, + { + "x": 625, + "y": 545, + "index": 2, + "body": { + "#": 9334 + }, + "isInternal": false + }, + { + "x": 600, + "y": 545, + "index": 3, + "body": { + "#": 9334 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9348 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9350 + }, + "max": { + "#": 9351 + } + }, + { + "x": 600, + "y": 520 + }, + { + "x": 625, + "y": 545 + }, + { + "x": 612.5, + "y": 532.5 + }, + [ + { + "#": 9354 + }, + { + "#": 9355 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 426, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9357 + }, + "angle": 0, + "vertices": { + "#": 9358 + }, + "position": { + "#": 9363 + }, + "force": { + "#": 9364 + }, + "torque": 0, + "positionImpulse": { + "#": 9365 + }, + "constraintImpulse": { + "#": 9366 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9367 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9368 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9369 + }, + "bounds": { + "#": 9371 + }, + "positionPrev": { + "#": 9374 + }, + "anglePrev": 0, + "axes": { + "#": 9375 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9356 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9356 + } + ], + [ + { + "#": 9359 + }, + { + "#": 9360 + }, + { + "#": 9361 + }, + { + "#": 9362 + } + ], + { + "x": 625, + "y": 520, + "index": 0, + "body": { + "#": 9356 + }, + "isInternal": false + }, + { + "x": 650, + "y": 520, + "index": 1, + "body": { + "#": 9356 + }, + "isInternal": false + }, + { + "x": 650, + "y": 545, + "index": 2, + "body": { + "#": 9356 + }, + "isInternal": false + }, + { + "x": 625, + "y": 545, + "index": 3, + "body": { + "#": 9356 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9370 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9372 + }, + "max": { + "#": 9373 + } + }, + { + "x": 625, + "y": 520 + }, + { + "x": 650, + "y": 545 + }, + { + "x": 637.5, + "y": 532.5 + }, + [ + { + "#": 9376 + }, + { + "#": 9377 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 427, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9379 + }, + "angle": 0, + "vertices": { + "#": 9380 + }, + "position": { + "#": 9385 + }, + "force": { + "#": 9386 + }, + "torque": 0, + "positionImpulse": { + "#": 9387 + }, + "constraintImpulse": { + "#": 9388 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9389 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9390 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9391 + }, + "bounds": { + "#": 9393 + }, + "positionPrev": { + "#": 9396 + }, + "anglePrev": 0, + "axes": { + "#": 9397 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9378 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9378 + } + ], + [ + { + "#": 9381 + }, + { + "#": 9382 + }, + { + "#": 9383 + }, + { + "#": 9384 + } + ], + { + "x": 650, + "y": 520, + "index": 0, + "body": { + "#": 9378 + }, + "isInternal": false + }, + { + "x": 675, + "y": 520, + "index": 1, + "body": { + "#": 9378 + }, + "isInternal": false + }, + { + "x": 675, + "y": 545, + "index": 2, + "body": { + "#": 9378 + }, + "isInternal": false + }, + { + "x": 650, + "y": 545, + "index": 3, + "body": { + "#": 9378 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9392 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9394 + }, + "max": { + "#": 9395 + } + }, + { + "x": 650, + "y": 520 + }, + { + "x": 675, + "y": 545 + }, + { + "x": 662.5, + "y": 532.5 + }, + [ + { + "#": 9398 + }, + { + "#": 9399 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 428, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9401 + }, + "angle": 0, + "vertices": { + "#": 9402 + }, + "position": { + "#": 9407 + }, + "force": { + "#": 9408 + }, + "torque": 0, + "positionImpulse": { + "#": 9409 + }, + "constraintImpulse": { + "#": 9410 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9411 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9412 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9413 + }, + "bounds": { + "#": 9415 + }, + "positionPrev": { + "#": 9418 + }, + "anglePrev": 0, + "axes": { + "#": 9419 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9400 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9400 + } + ], + [ + { + "#": 9403 + }, + { + "#": 9404 + }, + { + "#": 9405 + }, + { + "#": 9406 + } + ], + { + "x": 675, + "y": 520, + "index": 0, + "body": { + "#": 9400 + }, + "isInternal": false + }, + { + "x": 700, + "y": 520, + "index": 1, + "body": { + "#": 9400 + }, + "isInternal": false + }, + { + "x": 700, + "y": 545, + "index": 2, + "body": { + "#": 9400 + }, + "isInternal": false + }, + { + "x": 675, + "y": 545, + "index": 3, + "body": { + "#": 9400 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9414 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9416 + }, + "max": { + "#": 9417 + } + }, + { + "x": 675, + "y": 520 + }, + { + "x": 700, + "y": 545 + }, + { + "x": 687.5, + "y": 532.5 + }, + [ + { + "#": 9420 + }, + { + "#": 9421 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 429, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9423 + }, + "angle": 0, + "vertices": { + "#": 9424 + }, + "position": { + "#": 9429 + }, + "force": { + "#": 9430 + }, + "torque": 0, + "positionImpulse": { + "#": 9431 + }, + "constraintImpulse": { + "#": 9432 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9433 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9434 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9435 + }, + "bounds": { + "#": 9437 + }, + "positionPrev": { + "#": 9440 + }, + "anglePrev": 0, + "axes": { + "#": 9441 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9422 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9422 + } + ], + [ + { + "#": 9425 + }, + { + "#": 9426 + }, + { + "#": 9427 + }, + { + "#": 9428 + } + ], + { + "x": 700, + "y": 520, + "index": 0, + "body": { + "#": 9422 + }, + "isInternal": false + }, + { + "x": 725, + "y": 520, + "index": 1, + "body": { + "#": 9422 + }, + "isInternal": false + }, + { + "x": 725, + "y": 545, + "index": 2, + "body": { + "#": 9422 + }, + "isInternal": false + }, + { + "x": 700, + "y": 545, + "index": 3, + "body": { + "#": 9422 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 532.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9436 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9438 + }, + "max": { + "#": 9439 + } + }, + { + "x": 700, + "y": 520 + }, + { + "x": 725, + "y": 545 + }, + { + "x": 712.5, + "y": 532.5 + }, + [ + { + "#": 9442 + }, + { + "#": 9443 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 430, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9445 + }, + "angle": 0, + "vertices": { + "#": 9446 + }, + "position": { + "#": 9451 + }, + "force": { + "#": 9452 + }, + "torque": 0, + "positionImpulse": { + "#": 9453 + }, + "constraintImpulse": { + "#": 9454 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9455 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9456 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9457 + }, + "bounds": { + "#": 9459 + }, + "positionPrev": { + "#": 9462 + }, + "anglePrev": 0, + "axes": { + "#": 9463 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9444 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9444 + } + ], + [ + { + "#": 9447 + }, + { + "#": 9448 + }, + { + "#": 9449 + }, + { + "#": 9450 + } + ], + { + "x": 100, + "y": 545, + "index": 0, + "body": { + "#": 9444 + }, + "isInternal": false + }, + { + "x": 125, + "y": 545, + "index": 1, + "body": { + "#": 9444 + }, + "isInternal": false + }, + { + "x": 125, + "y": 570, + "index": 2, + "body": { + "#": 9444 + }, + "isInternal": false + }, + { + "x": 100, + "y": 570, + "index": 3, + "body": { + "#": 9444 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9458 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9460 + }, + "max": { + "#": 9461 + } + }, + { + "x": 100, + "y": 545 + }, + { + "x": 125, + "y": 570 + }, + { + "x": 112.5, + "y": 557.5 + }, + [ + { + "#": 9464 + }, + { + "#": 9465 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 431, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9467 + }, + "angle": 0, + "vertices": { + "#": 9468 + }, + "position": { + "#": 9473 + }, + "force": { + "#": 9474 + }, + "torque": 0, + "positionImpulse": { + "#": 9475 + }, + "constraintImpulse": { + "#": 9476 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9477 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9478 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9479 + }, + "bounds": { + "#": 9481 + }, + "positionPrev": { + "#": 9484 + }, + "anglePrev": 0, + "axes": { + "#": 9485 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9466 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9466 + } + ], + [ + { + "#": 9469 + }, + { + "#": 9470 + }, + { + "#": 9471 + }, + { + "#": 9472 + } + ], + { + "x": 125, + "y": 545, + "index": 0, + "body": { + "#": 9466 + }, + "isInternal": false + }, + { + "x": 150, + "y": 545, + "index": 1, + "body": { + "#": 9466 + }, + "isInternal": false + }, + { + "x": 150, + "y": 570, + "index": 2, + "body": { + "#": 9466 + }, + "isInternal": false + }, + { + "x": 125, + "y": 570, + "index": 3, + "body": { + "#": 9466 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9480 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9482 + }, + "max": { + "#": 9483 + } + }, + { + "x": 125, + "y": 545 + }, + { + "x": 150, + "y": 570 + }, + { + "x": 137.5, + "y": 557.5 + }, + [ + { + "#": 9486 + }, + { + "#": 9487 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 432, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9489 + }, + "angle": 0, + "vertices": { + "#": 9490 + }, + "position": { + "#": 9495 + }, + "force": { + "#": 9496 + }, + "torque": 0, + "positionImpulse": { + "#": 9497 + }, + "constraintImpulse": { + "#": 9498 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9499 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9500 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9501 + }, + "bounds": { + "#": 9503 + }, + "positionPrev": { + "#": 9506 + }, + "anglePrev": 0, + "axes": { + "#": 9507 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9488 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9488 + } + ], + [ + { + "#": 9491 + }, + { + "#": 9492 + }, + { + "#": 9493 + }, + { + "#": 9494 + } + ], + { + "x": 150, + "y": 545, + "index": 0, + "body": { + "#": 9488 + }, + "isInternal": false + }, + { + "x": 175, + "y": 545, + "index": 1, + "body": { + "#": 9488 + }, + "isInternal": false + }, + { + "x": 175, + "y": 570, + "index": 2, + "body": { + "#": 9488 + }, + "isInternal": false + }, + { + "x": 150, + "y": 570, + "index": 3, + "body": { + "#": 9488 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9502 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9504 + }, + "max": { + "#": 9505 + } + }, + { + "x": 150, + "y": 545 + }, + { + "x": 175, + "y": 570 + }, + { + "x": 162.5, + "y": 557.5 + }, + [ + { + "#": 9508 + }, + { + "#": 9509 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 433, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9511 + }, + "angle": 0, + "vertices": { + "#": 9512 + }, + "position": { + "#": 9517 + }, + "force": { + "#": 9518 + }, + "torque": 0, + "positionImpulse": { + "#": 9519 + }, + "constraintImpulse": { + "#": 9520 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9521 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9522 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9523 + }, + "bounds": { + "#": 9525 + }, + "positionPrev": { + "#": 9528 + }, + "anglePrev": 0, + "axes": { + "#": 9529 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9510 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9510 + } + ], + [ + { + "#": 9513 + }, + { + "#": 9514 + }, + { + "#": 9515 + }, + { + "#": 9516 + } + ], + { + "x": 175, + "y": 545, + "index": 0, + "body": { + "#": 9510 + }, + "isInternal": false + }, + { + "x": 200, + "y": 545, + "index": 1, + "body": { + "#": 9510 + }, + "isInternal": false + }, + { + "x": 200, + "y": 570, + "index": 2, + "body": { + "#": 9510 + }, + "isInternal": false + }, + { + "x": 175, + "y": 570, + "index": 3, + "body": { + "#": 9510 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9524 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9526 + }, + "max": { + "#": 9527 + } + }, + { + "x": 175, + "y": 545 + }, + { + "x": 200, + "y": 570 + }, + { + "x": 187.5, + "y": 557.5 + }, + [ + { + "#": 9530 + }, + { + "#": 9531 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 434, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9533 + }, + "angle": 0, + "vertices": { + "#": 9534 + }, + "position": { + "#": 9539 + }, + "force": { + "#": 9540 + }, + "torque": 0, + "positionImpulse": { + "#": 9541 + }, + "constraintImpulse": { + "#": 9542 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9543 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9544 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9545 + }, + "bounds": { + "#": 9547 + }, + "positionPrev": { + "#": 9550 + }, + "anglePrev": 0, + "axes": { + "#": 9551 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9532 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9532 + } + ], + [ + { + "#": 9535 + }, + { + "#": 9536 + }, + { + "#": 9537 + }, + { + "#": 9538 + } + ], + { + "x": 200, + "y": 545, + "index": 0, + "body": { + "#": 9532 + }, + "isInternal": false + }, + { + "x": 225, + "y": 545, + "index": 1, + "body": { + "#": 9532 + }, + "isInternal": false + }, + { + "x": 225, + "y": 570, + "index": 2, + "body": { + "#": 9532 + }, + "isInternal": false + }, + { + "x": 200, + "y": 570, + "index": 3, + "body": { + "#": 9532 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9546 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9548 + }, + "max": { + "#": 9549 + } + }, + { + "x": 200, + "y": 545 + }, + { + "x": 225, + "y": 570 + }, + { + "x": 212.5, + "y": 557.5 + }, + [ + { + "#": 9552 + }, + { + "#": 9553 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 435, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9555 + }, + "angle": 0, + "vertices": { + "#": 9556 + }, + "position": { + "#": 9561 + }, + "force": { + "#": 9562 + }, + "torque": 0, + "positionImpulse": { + "#": 9563 + }, + "constraintImpulse": { + "#": 9564 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9565 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9566 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9567 + }, + "bounds": { + "#": 9569 + }, + "positionPrev": { + "#": 9572 + }, + "anglePrev": 0, + "axes": { + "#": 9573 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9554 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9554 + } + ], + [ + { + "#": 9557 + }, + { + "#": 9558 + }, + { + "#": 9559 + }, + { + "#": 9560 + } + ], + { + "x": 225, + "y": 545, + "index": 0, + "body": { + "#": 9554 + }, + "isInternal": false + }, + { + "x": 250, + "y": 545, + "index": 1, + "body": { + "#": 9554 + }, + "isInternal": false + }, + { + "x": 250, + "y": 570, + "index": 2, + "body": { + "#": 9554 + }, + "isInternal": false + }, + { + "x": 225, + "y": 570, + "index": 3, + "body": { + "#": 9554 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9568 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9570 + }, + "max": { + "#": 9571 + } + }, + { + "x": 225, + "y": 545 + }, + { + "x": 250, + "y": 570 + }, + { + "x": 237.5, + "y": 557.5 + }, + [ + { + "#": 9574 + }, + { + "#": 9575 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 436, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9577 + }, + "angle": 0, + "vertices": { + "#": 9578 + }, + "position": { + "#": 9583 + }, + "force": { + "#": 9584 + }, + "torque": 0, + "positionImpulse": { + "#": 9585 + }, + "constraintImpulse": { + "#": 9586 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9587 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9588 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9589 + }, + "bounds": { + "#": 9591 + }, + "positionPrev": { + "#": 9594 + }, + "anglePrev": 0, + "axes": { + "#": 9595 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9576 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9576 + } + ], + [ + { + "#": 9579 + }, + { + "#": 9580 + }, + { + "#": 9581 + }, + { + "#": 9582 + } + ], + { + "x": 250, + "y": 545, + "index": 0, + "body": { + "#": 9576 + }, + "isInternal": false + }, + { + "x": 275, + "y": 545, + "index": 1, + "body": { + "#": 9576 + }, + "isInternal": false + }, + { + "x": 275, + "y": 570, + "index": 2, + "body": { + "#": 9576 + }, + "isInternal": false + }, + { + "x": 250, + "y": 570, + "index": 3, + "body": { + "#": 9576 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9590 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9592 + }, + "max": { + "#": 9593 + } + }, + { + "x": 250, + "y": 545 + }, + { + "x": 275, + "y": 570 + }, + { + "x": 262.5, + "y": 557.5 + }, + [ + { + "#": 9596 + }, + { + "#": 9597 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 437, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9599 + }, + "angle": 0, + "vertices": { + "#": 9600 + }, + "position": { + "#": 9605 + }, + "force": { + "#": 9606 + }, + "torque": 0, + "positionImpulse": { + "#": 9607 + }, + "constraintImpulse": { + "#": 9608 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9609 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9610 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9611 + }, + "bounds": { + "#": 9613 + }, + "positionPrev": { + "#": 9616 + }, + "anglePrev": 0, + "axes": { + "#": 9617 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9598 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9598 + } + ], + [ + { + "#": 9601 + }, + { + "#": 9602 + }, + { + "#": 9603 + }, + { + "#": 9604 + } + ], + { + "x": 275, + "y": 545, + "index": 0, + "body": { + "#": 9598 + }, + "isInternal": false + }, + { + "x": 300, + "y": 545, + "index": 1, + "body": { + "#": 9598 + }, + "isInternal": false + }, + { + "x": 300, + "y": 570, + "index": 2, + "body": { + "#": 9598 + }, + "isInternal": false + }, + { + "x": 275, + "y": 570, + "index": 3, + "body": { + "#": 9598 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9612 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9614 + }, + "max": { + "#": 9615 + } + }, + { + "x": 275, + "y": 545 + }, + { + "x": 300, + "y": 570 + }, + { + "x": 287.5, + "y": 557.5 + }, + [ + { + "#": 9618 + }, + { + "#": 9619 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 438, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9621 + }, + "angle": 0, + "vertices": { + "#": 9622 + }, + "position": { + "#": 9627 + }, + "force": { + "#": 9628 + }, + "torque": 0, + "positionImpulse": { + "#": 9629 + }, + "constraintImpulse": { + "#": 9630 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9631 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9632 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9633 + }, + "bounds": { + "#": 9635 + }, + "positionPrev": { + "#": 9638 + }, + "anglePrev": 0, + "axes": { + "#": 9639 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9620 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9620 + } + ], + [ + { + "#": 9623 + }, + { + "#": 9624 + }, + { + "#": 9625 + }, + { + "#": 9626 + } + ], + { + "x": 300, + "y": 545, + "index": 0, + "body": { + "#": 9620 + }, + "isInternal": false + }, + { + "x": 325, + "y": 545, + "index": 1, + "body": { + "#": 9620 + }, + "isInternal": false + }, + { + "x": 325, + "y": 570, + "index": 2, + "body": { + "#": 9620 + }, + "isInternal": false + }, + { + "x": 300, + "y": 570, + "index": 3, + "body": { + "#": 9620 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9634 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9636 + }, + "max": { + "#": 9637 + } + }, + { + "x": 300, + "y": 545 + }, + { + "x": 325, + "y": 570 + }, + { + "x": 312.5, + "y": 557.5 + }, + [ + { + "#": 9640 + }, + { + "#": 9641 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 439, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9643 + }, + "angle": 0, + "vertices": { + "#": 9644 + }, + "position": { + "#": 9649 + }, + "force": { + "#": 9650 + }, + "torque": 0, + "positionImpulse": { + "#": 9651 + }, + "constraintImpulse": { + "#": 9652 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9653 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9654 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9655 + }, + "bounds": { + "#": 9657 + }, + "positionPrev": { + "#": 9660 + }, + "anglePrev": 0, + "axes": { + "#": 9661 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9642 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9642 + } + ], + [ + { + "#": 9645 + }, + { + "#": 9646 + }, + { + "#": 9647 + }, + { + "#": 9648 + } + ], + { + "x": 325, + "y": 545, + "index": 0, + "body": { + "#": 9642 + }, + "isInternal": false + }, + { + "x": 350, + "y": 545, + "index": 1, + "body": { + "#": 9642 + }, + "isInternal": false + }, + { + "x": 350, + "y": 570, + "index": 2, + "body": { + "#": 9642 + }, + "isInternal": false + }, + { + "x": 325, + "y": 570, + "index": 3, + "body": { + "#": 9642 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9656 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9658 + }, + "max": { + "#": 9659 + } + }, + { + "x": 325, + "y": 545 + }, + { + "x": 350, + "y": 570 + }, + { + "x": 337.5, + "y": 557.5 + }, + [ + { + "#": 9662 + }, + { + "#": 9663 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 440, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9665 + }, + "angle": 0, + "vertices": { + "#": 9666 + }, + "position": { + "#": 9671 + }, + "force": { + "#": 9672 + }, + "torque": 0, + "positionImpulse": { + "#": 9673 + }, + "constraintImpulse": { + "#": 9674 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9675 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9676 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9677 + }, + "bounds": { + "#": 9679 + }, + "positionPrev": { + "#": 9682 + }, + "anglePrev": 0, + "axes": { + "#": 9683 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9664 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9664 + } + ], + [ + { + "#": 9667 + }, + { + "#": 9668 + }, + { + "#": 9669 + }, + { + "#": 9670 + } + ], + { + "x": 350, + "y": 545, + "index": 0, + "body": { + "#": 9664 + }, + "isInternal": false + }, + { + "x": 375, + "y": 545, + "index": 1, + "body": { + "#": 9664 + }, + "isInternal": false + }, + { + "x": 375, + "y": 570, + "index": 2, + "body": { + "#": 9664 + }, + "isInternal": false + }, + { + "x": 350, + "y": 570, + "index": 3, + "body": { + "#": 9664 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9678 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9680 + }, + "max": { + "#": 9681 + } + }, + { + "x": 350, + "y": 545 + }, + { + "x": 375, + "y": 570 + }, + { + "x": 362.5, + "y": 557.5 + }, + [ + { + "#": 9684 + }, + { + "#": 9685 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 441, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9687 + }, + "angle": 0, + "vertices": { + "#": 9688 + }, + "position": { + "#": 9693 + }, + "force": { + "#": 9694 + }, + "torque": 0, + "positionImpulse": { + "#": 9695 + }, + "constraintImpulse": { + "#": 9696 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9697 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9698 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9699 + }, + "bounds": { + "#": 9701 + }, + "positionPrev": { + "#": 9704 + }, + "anglePrev": 0, + "axes": { + "#": 9705 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9686 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9686 + } + ], + [ + { + "#": 9689 + }, + { + "#": 9690 + }, + { + "#": 9691 + }, + { + "#": 9692 + } + ], + { + "x": 375, + "y": 545, + "index": 0, + "body": { + "#": 9686 + }, + "isInternal": false + }, + { + "x": 400, + "y": 545, + "index": 1, + "body": { + "#": 9686 + }, + "isInternal": false + }, + { + "x": 400, + "y": 570, + "index": 2, + "body": { + "#": 9686 + }, + "isInternal": false + }, + { + "x": 375, + "y": 570, + "index": 3, + "body": { + "#": 9686 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9700 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9702 + }, + "max": { + "#": 9703 + } + }, + { + "x": 375, + "y": 545 + }, + { + "x": 400, + "y": 570 + }, + { + "x": 387.5, + "y": 557.5 + }, + [ + { + "#": 9706 + }, + { + "#": 9707 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 442, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9709 + }, + "angle": 0, + "vertices": { + "#": 9710 + }, + "position": { + "#": 9715 + }, + "force": { + "#": 9716 + }, + "torque": 0, + "positionImpulse": { + "#": 9717 + }, + "constraintImpulse": { + "#": 9718 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9719 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9720 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9721 + }, + "bounds": { + "#": 9723 + }, + "positionPrev": { + "#": 9726 + }, + "anglePrev": 0, + "axes": { + "#": 9727 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9708 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9708 + } + ], + [ + { + "#": 9711 + }, + { + "#": 9712 + }, + { + "#": 9713 + }, + { + "#": 9714 + } + ], + { + "x": 400, + "y": 545, + "index": 0, + "body": { + "#": 9708 + }, + "isInternal": false + }, + { + "x": 425, + "y": 545, + "index": 1, + "body": { + "#": 9708 + }, + "isInternal": false + }, + { + "x": 425, + "y": 570, + "index": 2, + "body": { + "#": 9708 + }, + "isInternal": false + }, + { + "x": 400, + "y": 570, + "index": 3, + "body": { + "#": 9708 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9722 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9724 + }, + "max": { + "#": 9725 + } + }, + { + "x": 400, + "y": 545 + }, + { + "x": 425, + "y": 570 + }, + { + "x": 412.5, + "y": 557.5 + }, + [ + { + "#": 9728 + }, + { + "#": 9729 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 443, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9731 + }, + "angle": 0, + "vertices": { + "#": 9732 + }, + "position": { + "#": 9737 + }, + "force": { + "#": 9738 + }, + "torque": 0, + "positionImpulse": { + "#": 9739 + }, + "constraintImpulse": { + "#": 9740 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9741 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9742 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9743 + }, + "bounds": { + "#": 9745 + }, + "positionPrev": { + "#": 9748 + }, + "anglePrev": 0, + "axes": { + "#": 9749 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9730 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9730 + } + ], + [ + { + "#": 9733 + }, + { + "#": 9734 + }, + { + "#": 9735 + }, + { + "#": 9736 + } + ], + { + "x": 425, + "y": 545, + "index": 0, + "body": { + "#": 9730 + }, + "isInternal": false + }, + { + "x": 450, + "y": 545, + "index": 1, + "body": { + "#": 9730 + }, + "isInternal": false + }, + { + "x": 450, + "y": 570, + "index": 2, + "body": { + "#": 9730 + }, + "isInternal": false + }, + { + "x": 425, + "y": 570, + "index": 3, + "body": { + "#": 9730 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9744 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9746 + }, + "max": { + "#": 9747 + } + }, + { + "x": 425, + "y": 545 + }, + { + "x": 450, + "y": 570 + }, + { + "x": 437.5, + "y": 557.5 + }, + [ + { + "#": 9750 + }, + { + "#": 9751 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 444, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9753 + }, + "angle": 0, + "vertices": { + "#": 9754 + }, + "position": { + "#": 9759 + }, + "force": { + "#": 9760 + }, + "torque": 0, + "positionImpulse": { + "#": 9761 + }, + "constraintImpulse": { + "#": 9762 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9763 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9764 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9765 + }, + "bounds": { + "#": 9767 + }, + "positionPrev": { + "#": 9770 + }, + "anglePrev": 0, + "axes": { + "#": 9771 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9752 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9752 + } + ], + [ + { + "#": 9755 + }, + { + "#": 9756 + }, + { + "#": 9757 + }, + { + "#": 9758 + } + ], + { + "x": 450, + "y": 545, + "index": 0, + "body": { + "#": 9752 + }, + "isInternal": false + }, + { + "x": 475, + "y": 545, + "index": 1, + "body": { + "#": 9752 + }, + "isInternal": false + }, + { + "x": 475, + "y": 570, + "index": 2, + "body": { + "#": 9752 + }, + "isInternal": false + }, + { + "x": 450, + "y": 570, + "index": 3, + "body": { + "#": 9752 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9766 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9768 + }, + "max": { + "#": 9769 + } + }, + { + "x": 450, + "y": 545 + }, + { + "x": 475, + "y": 570 + }, + { + "x": 462.5, + "y": 557.5 + }, + [ + { + "#": 9772 + }, + { + "#": 9773 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 445, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9775 + }, + "angle": 0, + "vertices": { + "#": 9776 + }, + "position": { + "#": 9781 + }, + "force": { + "#": 9782 + }, + "torque": 0, + "positionImpulse": { + "#": 9783 + }, + "constraintImpulse": { + "#": 9784 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9785 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9786 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9787 + }, + "bounds": { + "#": 9789 + }, + "positionPrev": { + "#": 9792 + }, + "anglePrev": 0, + "axes": { + "#": 9793 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9774 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9774 + } + ], + [ + { + "#": 9777 + }, + { + "#": 9778 + }, + { + "#": 9779 + }, + { + "#": 9780 + } + ], + { + "x": 475, + "y": 545, + "index": 0, + "body": { + "#": 9774 + }, + "isInternal": false + }, + { + "x": 500, + "y": 545, + "index": 1, + "body": { + "#": 9774 + }, + "isInternal": false + }, + { + "x": 500, + "y": 570, + "index": 2, + "body": { + "#": 9774 + }, + "isInternal": false + }, + { + "x": 475, + "y": 570, + "index": 3, + "body": { + "#": 9774 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9788 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9790 + }, + "max": { + "#": 9791 + } + }, + { + "x": 475, + "y": 545 + }, + { + "x": 500, + "y": 570 + }, + { + "x": 487.5, + "y": 557.5 + }, + [ + { + "#": 9794 + }, + { + "#": 9795 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 446, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9797 + }, + "angle": 0, + "vertices": { + "#": 9798 + }, + "position": { + "#": 9803 + }, + "force": { + "#": 9804 + }, + "torque": 0, + "positionImpulse": { + "#": 9805 + }, + "constraintImpulse": { + "#": 9806 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9807 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9808 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9809 + }, + "bounds": { + "#": 9811 + }, + "positionPrev": { + "#": 9814 + }, + "anglePrev": 0, + "axes": { + "#": 9815 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9796 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9796 + } + ], + [ + { + "#": 9799 + }, + { + "#": 9800 + }, + { + "#": 9801 + }, + { + "#": 9802 + } + ], + { + "x": 500, + "y": 545, + "index": 0, + "body": { + "#": 9796 + }, + "isInternal": false + }, + { + "x": 525, + "y": 545, + "index": 1, + "body": { + "#": 9796 + }, + "isInternal": false + }, + { + "x": 525, + "y": 570, + "index": 2, + "body": { + "#": 9796 + }, + "isInternal": false + }, + { + "x": 500, + "y": 570, + "index": 3, + "body": { + "#": 9796 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9810 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9812 + }, + "max": { + "#": 9813 + } + }, + { + "x": 500, + "y": 545 + }, + { + "x": 525, + "y": 570 + }, + { + "x": 512.5, + "y": 557.5 + }, + [ + { + "#": 9816 + }, + { + "#": 9817 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 447, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9819 + }, + "angle": 0, + "vertices": { + "#": 9820 + }, + "position": { + "#": 9825 + }, + "force": { + "#": 9826 + }, + "torque": 0, + "positionImpulse": { + "#": 9827 + }, + "constraintImpulse": { + "#": 9828 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9829 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9830 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9831 + }, + "bounds": { + "#": 9833 + }, + "positionPrev": { + "#": 9836 + }, + "anglePrev": 0, + "axes": { + "#": 9837 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9818 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9818 + } + ], + [ + { + "#": 9821 + }, + { + "#": 9822 + }, + { + "#": 9823 + }, + { + "#": 9824 + } + ], + { + "x": 525, + "y": 545, + "index": 0, + "body": { + "#": 9818 + }, + "isInternal": false + }, + { + "x": 550, + "y": 545, + "index": 1, + "body": { + "#": 9818 + }, + "isInternal": false + }, + { + "x": 550, + "y": 570, + "index": 2, + "body": { + "#": 9818 + }, + "isInternal": false + }, + { + "x": 525, + "y": 570, + "index": 3, + "body": { + "#": 9818 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9832 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9834 + }, + "max": { + "#": 9835 + } + }, + { + "x": 525, + "y": 545 + }, + { + "x": 550, + "y": 570 + }, + { + "x": 537.5, + "y": 557.5 + }, + [ + { + "#": 9838 + }, + { + "#": 9839 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 448, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9841 + }, + "angle": 0, + "vertices": { + "#": 9842 + }, + "position": { + "#": 9847 + }, + "force": { + "#": 9848 + }, + "torque": 0, + "positionImpulse": { + "#": 9849 + }, + "constraintImpulse": { + "#": 9850 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9851 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9852 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9853 + }, + "bounds": { + "#": 9855 + }, + "positionPrev": { + "#": 9858 + }, + "anglePrev": 0, + "axes": { + "#": 9859 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9840 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9840 + } + ], + [ + { + "#": 9843 + }, + { + "#": 9844 + }, + { + "#": 9845 + }, + { + "#": 9846 + } + ], + { + "x": 550, + "y": 545, + "index": 0, + "body": { + "#": 9840 + }, + "isInternal": false + }, + { + "x": 575, + "y": 545, + "index": 1, + "body": { + "#": 9840 + }, + "isInternal": false + }, + { + "x": 575, + "y": 570, + "index": 2, + "body": { + "#": 9840 + }, + "isInternal": false + }, + { + "x": 550, + "y": 570, + "index": 3, + "body": { + "#": 9840 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9854 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9856 + }, + "max": { + "#": 9857 + } + }, + { + "x": 550, + "y": 545 + }, + { + "x": 575, + "y": 570 + }, + { + "x": 562.5, + "y": 557.5 + }, + [ + { + "#": 9860 + }, + { + "#": 9861 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 449, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9863 + }, + "angle": 0, + "vertices": { + "#": 9864 + }, + "position": { + "#": 9869 + }, + "force": { + "#": 9870 + }, + "torque": 0, + "positionImpulse": { + "#": 9871 + }, + "constraintImpulse": { + "#": 9872 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9873 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9874 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9875 + }, + "bounds": { + "#": 9877 + }, + "positionPrev": { + "#": 9880 + }, + "anglePrev": 0, + "axes": { + "#": 9881 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9862 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9862 + } + ], + [ + { + "#": 9865 + }, + { + "#": 9866 + }, + { + "#": 9867 + }, + { + "#": 9868 + } + ], + { + "x": 575, + "y": 545, + "index": 0, + "body": { + "#": 9862 + }, + "isInternal": false + }, + { + "x": 600, + "y": 545, + "index": 1, + "body": { + "#": 9862 + }, + "isInternal": false + }, + { + "x": 600, + "y": 570, + "index": 2, + "body": { + "#": 9862 + }, + "isInternal": false + }, + { + "x": 575, + "y": 570, + "index": 3, + "body": { + "#": 9862 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9876 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9878 + }, + "max": { + "#": 9879 + } + }, + { + "x": 575, + "y": 545 + }, + { + "x": 600, + "y": 570 + }, + { + "x": 587.5, + "y": 557.5 + }, + [ + { + "#": 9882 + }, + { + "#": 9883 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 450, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9885 + }, + "angle": 0, + "vertices": { + "#": 9886 + }, + "position": { + "#": 9891 + }, + "force": { + "#": 9892 + }, + "torque": 0, + "positionImpulse": { + "#": 9893 + }, + "constraintImpulse": { + "#": 9894 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9895 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9896 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9897 + }, + "bounds": { + "#": 9899 + }, + "positionPrev": { + "#": 9902 + }, + "anglePrev": 0, + "axes": { + "#": 9903 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9884 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9884 + } + ], + [ + { + "#": 9887 + }, + { + "#": 9888 + }, + { + "#": 9889 + }, + { + "#": 9890 + } + ], + { + "x": 600, + "y": 545, + "index": 0, + "body": { + "#": 9884 + }, + "isInternal": false + }, + { + "x": 625, + "y": 545, + "index": 1, + "body": { + "#": 9884 + }, + "isInternal": false + }, + { + "x": 625, + "y": 570, + "index": 2, + "body": { + "#": 9884 + }, + "isInternal": false + }, + { + "x": 600, + "y": 570, + "index": 3, + "body": { + "#": 9884 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9898 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9900 + }, + "max": { + "#": 9901 + } + }, + { + "x": 600, + "y": 545 + }, + { + "x": 625, + "y": 570 + }, + { + "x": 612.5, + "y": 557.5 + }, + [ + { + "#": 9904 + }, + { + "#": 9905 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 451, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9907 + }, + "angle": 0, + "vertices": { + "#": 9908 + }, + "position": { + "#": 9913 + }, + "force": { + "#": 9914 + }, + "torque": 0, + "positionImpulse": { + "#": 9915 + }, + "constraintImpulse": { + "#": 9916 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9917 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9918 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9919 + }, + "bounds": { + "#": 9921 + }, + "positionPrev": { + "#": 9924 + }, + "anglePrev": 0, + "axes": { + "#": 9925 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9906 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9906 + } + ], + [ + { + "#": 9909 + }, + { + "#": 9910 + }, + { + "#": 9911 + }, + { + "#": 9912 + } + ], + { + "x": 625, + "y": 545, + "index": 0, + "body": { + "#": 9906 + }, + "isInternal": false + }, + { + "x": 650, + "y": 545, + "index": 1, + "body": { + "#": 9906 + }, + "isInternal": false + }, + { + "x": 650, + "y": 570, + "index": 2, + "body": { + "#": 9906 + }, + "isInternal": false + }, + { + "x": 625, + "y": 570, + "index": 3, + "body": { + "#": 9906 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9920 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9922 + }, + "max": { + "#": 9923 + } + }, + { + "x": 625, + "y": 545 + }, + { + "x": 650, + "y": 570 + }, + { + "x": 637.5, + "y": 557.5 + }, + [ + { + "#": 9926 + }, + { + "#": 9927 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 452, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9929 + }, + "angle": 0, + "vertices": { + "#": 9930 + }, + "position": { + "#": 9935 + }, + "force": { + "#": 9936 + }, + "torque": 0, + "positionImpulse": { + "#": 9937 + }, + "constraintImpulse": { + "#": 9938 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9939 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9940 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9941 + }, + "bounds": { + "#": 9943 + }, + "positionPrev": { + "#": 9946 + }, + "anglePrev": 0, + "axes": { + "#": 9947 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9928 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9928 + } + ], + [ + { + "#": 9931 + }, + { + "#": 9932 + }, + { + "#": 9933 + }, + { + "#": 9934 + } + ], + { + "x": 650, + "y": 545, + "index": 0, + "body": { + "#": 9928 + }, + "isInternal": false + }, + { + "x": 675, + "y": 545, + "index": 1, + "body": { + "#": 9928 + }, + "isInternal": false + }, + { + "x": 675, + "y": 570, + "index": 2, + "body": { + "#": 9928 + }, + "isInternal": false + }, + { + "x": 650, + "y": 570, + "index": 3, + "body": { + "#": 9928 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9942 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9944 + }, + "max": { + "#": 9945 + } + }, + { + "x": 650, + "y": 545 + }, + { + "x": 675, + "y": 570 + }, + { + "x": 662.5, + "y": 557.5 + }, + [ + { + "#": 9948 + }, + { + "#": 9949 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 453, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9951 + }, + "angle": 0, + "vertices": { + "#": 9952 + }, + "position": { + "#": 9957 + }, + "force": { + "#": 9958 + }, + "torque": 0, + "positionImpulse": { + "#": 9959 + }, + "constraintImpulse": { + "#": 9960 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9961 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9962 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9963 + }, + "bounds": { + "#": 9965 + }, + "positionPrev": { + "#": 9968 + }, + "anglePrev": 0, + "axes": { + "#": 9969 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9950 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9950 + } + ], + [ + { + "#": 9953 + }, + { + "#": 9954 + }, + { + "#": 9955 + }, + { + "#": 9956 + } + ], + { + "x": 675, + "y": 545, + "index": 0, + "body": { + "#": 9950 + }, + "isInternal": false + }, + { + "x": 700, + "y": 545, + "index": 1, + "body": { + "#": 9950 + }, + "isInternal": false + }, + { + "x": 700, + "y": 570, + "index": 2, + "body": { + "#": 9950 + }, + "isInternal": false + }, + { + "x": 675, + "y": 570, + "index": 3, + "body": { + "#": 9950 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9964 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9966 + }, + "max": { + "#": 9967 + } + }, + { + "x": 675, + "y": 545 + }, + { + "x": 700, + "y": 570 + }, + { + "x": 687.5, + "y": 557.5 + }, + [ + { + "#": 9970 + }, + { + "#": 9971 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 454, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9973 + }, + "angle": 0, + "vertices": { + "#": 9974 + }, + "position": { + "#": 9979 + }, + "force": { + "#": 9980 + }, + "torque": 0, + "positionImpulse": { + "#": 9981 + }, + "constraintImpulse": { + "#": 9982 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 9983 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9984 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9985 + }, + "bounds": { + "#": 9987 + }, + "positionPrev": { + "#": 9990 + }, + "anglePrev": 0, + "axes": { + "#": 9991 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9972 + }, + "sleepCounter": 0 + }, + [ + { + "#": 9972 + } + ], + [ + { + "#": 9975 + }, + { + "#": 9976 + }, + { + "#": 9977 + }, + { + "#": 9978 + } + ], + { + "x": 700, + "y": 545, + "index": 0, + "body": { + "#": 9972 + }, + "isInternal": false + }, + { + "x": 725, + "y": 545, + "index": 1, + "body": { + "#": 9972 + }, + "isInternal": false + }, + { + "x": 725, + "y": 570, + "index": 2, + "body": { + "#": 9972 + }, + "isInternal": false + }, + { + "x": 700, + "y": 570, + "index": 3, + "body": { + "#": 9972 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 557.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9986 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9988 + }, + "max": { + "#": 9989 + } + }, + { + "x": 700, + "y": 545 + }, + { + "x": 725, + "y": 570 + }, + { + "x": 712.5, + "y": 557.5 + }, + [ + { + "#": 9992 + }, + { + "#": 9993 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 9998 + }, + "max": { + "#": 9999 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/stress2/stress2-10.json b/test/node/refs/stress2/stress2-10.json new file mode 100644 index 00000000..9fbc7eb1 --- /dev/null +++ b/test/node/refs/stress2/stress2-10.json @@ -0,0 +1,95948 @@ +[ + { + "id": 275, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 94 + }, + "composites": { + "#": 95 + }, + "label": "World", + "gravity": { + "#": 10450 + }, + "bounds": { + "#": 10451 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + [], + [ + { + "#": 96 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 97 + }, + "constraints": { + "#": 10448 + }, + "composites": { + "#": 10449 + }, + "label": "Stack" + }, + [ + { + "#": 98 + }, + { + "#": 121 + }, + { + "#": 144 + }, + { + "#": 167 + }, + { + "#": 190 + }, + { + "#": 213 + }, + { + "#": 236 + }, + { + "#": 259 + }, + { + "#": 282 + }, + { + "#": 305 + }, + { + "#": 328 + }, + { + "#": 351 + }, + { + "#": 374 + }, + { + "#": 397 + }, + { + "#": 420 + }, + { + "#": 443 + }, + { + "#": 466 + }, + { + "#": 489 + }, + { + "#": 512 + }, + { + "#": 535 + }, + { + "#": 558 + }, + { + "#": 581 + }, + { + "#": 604 + }, + { + "#": 627 + }, + { + "#": 650 + }, + { + "#": 673 + }, + { + "#": 696 + }, + { + "#": 719 + }, + { + "#": 742 + }, + { + "#": 765 + }, + { + "#": 788 + }, + { + "#": 811 + }, + { + "#": 834 + }, + { + "#": 857 + }, + { + "#": 880 + }, + { + "#": 903 + }, + { + "#": 926 + }, + { + "#": 949 + }, + { + "#": 972 + }, + { + "#": 995 + }, + { + "#": 1018 + }, + { + "#": 1041 + }, + { + "#": 1064 + }, + { + "#": 1087 + }, + { + "#": 1110 + }, + { + "#": 1133 + }, + { + "#": 1156 + }, + { + "#": 1179 + }, + { + "#": 1202 + }, + { + "#": 1225 + }, + { + "#": 1248 + }, + { + "#": 1271 + }, + { + "#": 1294 + }, + { + "#": 1317 + }, + { + "#": 1340 + }, + { + "#": 1363 + }, + { + "#": 1386 + }, + { + "#": 1409 + }, + { + "#": 1432 + }, + { + "#": 1455 + }, + { + "#": 1478 + }, + { + "#": 1501 + }, + { + "#": 1524 + }, + { + "#": 1547 + }, + { + "#": 1570 + }, + { + "#": 1593 + }, + { + "#": 1616 + }, + { + "#": 1639 + }, + { + "#": 1662 + }, + { + "#": 1685 + }, + { + "#": 1708 + }, + { + "#": 1731 + }, + { + "#": 1754 + }, + { + "#": 1777 + }, + { + "#": 1800 + }, + { + "#": 1823 + }, + { + "#": 1846 + }, + { + "#": 1869 + }, + { + "#": 1892 + }, + { + "#": 1915 + }, + { + "#": 1938 + }, + { + "#": 1961 + }, + { + "#": 1984 + }, + { + "#": 2007 + }, + { + "#": 2030 + }, + { + "#": 2053 + }, + { + "#": 2076 + }, + { + "#": 2099 + }, + { + "#": 2122 + }, + { + "#": 2145 + }, + { + "#": 2168 + }, + { + "#": 2191 + }, + { + "#": 2214 + }, + { + "#": 2237 + }, + { + "#": 2260 + }, + { + "#": 2283 + }, + { + "#": 2306 + }, + { + "#": 2329 + }, + { + "#": 2352 + }, + { + "#": 2375 + }, + { + "#": 2398 + }, + { + "#": 2421 + }, + { + "#": 2444 + }, + { + "#": 2467 + }, + { + "#": 2490 + }, + { + "#": 2513 + }, + { + "#": 2536 + }, + { + "#": 2559 + }, + { + "#": 2582 + }, + { + "#": 2605 + }, + { + "#": 2628 + }, + { + "#": 2651 + }, + { + "#": 2674 + }, + { + "#": 2697 + }, + { + "#": 2720 + }, + { + "#": 2743 + }, + { + "#": 2766 + }, + { + "#": 2789 + }, + { + "#": 2812 + }, + { + "#": 2835 + }, + { + "#": 2858 + }, + { + "#": 2881 + }, + { + "#": 2904 + }, + { + "#": 2927 + }, + { + "#": 2950 + }, + { + "#": 2973 + }, + { + "#": 2996 + }, + { + "#": 3019 + }, + { + "#": 3042 + }, + { + "#": 3065 + }, + { + "#": 3088 + }, + { + "#": 3111 + }, + { + "#": 3134 + }, + { + "#": 3157 + }, + { + "#": 3180 + }, + { + "#": 3203 + }, + { + "#": 3226 + }, + { + "#": 3249 + }, + { + "#": 3272 + }, + { + "#": 3295 + }, + { + "#": 3318 + }, + { + "#": 3341 + }, + { + "#": 3364 + }, + { + "#": 3387 + }, + { + "#": 3410 + }, + { + "#": 3433 + }, + { + "#": 3456 + }, + { + "#": 3479 + }, + { + "#": 3502 + }, + { + "#": 3525 + }, + { + "#": 3548 + }, + { + "#": 3571 + }, + { + "#": 3594 + }, + { + "#": 3617 + }, + { + "#": 3640 + }, + { + "#": 3663 + }, + { + "#": 3686 + }, + { + "#": 3709 + }, + { + "#": 3732 + }, + { + "#": 3755 + }, + { + "#": 3778 + }, + { + "#": 3801 + }, + { + "#": 3824 + }, + { + "#": 3847 + }, + { + "#": 3870 + }, + { + "#": 3893 + }, + { + "#": 3916 + }, + { + "#": 3939 + }, + { + "#": 3962 + }, + { + "#": 3985 + }, + { + "#": 4008 + }, + { + "#": 4031 + }, + { + "#": 4054 + }, + { + "#": 4077 + }, + { + "#": 4100 + }, + { + "#": 4123 + }, + { + "#": 4146 + }, + { + "#": 4169 + }, + { + "#": 4192 + }, + { + "#": 4215 + }, + { + "#": 4238 + }, + { + "#": 4261 + }, + { + "#": 4284 + }, + { + "#": 4307 + }, + { + "#": 4330 + }, + { + "#": 4353 + }, + { + "#": 4376 + }, + { + "#": 4399 + }, + { + "#": 4422 + }, + { + "#": 4445 + }, + { + "#": 4468 + }, + { + "#": 4491 + }, + { + "#": 4514 + }, + { + "#": 4537 + }, + { + "#": 4560 + }, + { + "#": 4583 + }, + { + "#": 4606 + }, + { + "#": 4629 + }, + { + "#": 4652 + }, + { + "#": 4675 + }, + { + "#": 4698 + }, + { + "#": 4721 + }, + { + "#": 4744 + }, + { + "#": 4767 + }, + { + "#": 4790 + }, + { + "#": 4813 + }, + { + "#": 4836 + }, + { + "#": 4859 + }, + { + "#": 4882 + }, + { + "#": 4905 + }, + { + "#": 4928 + }, + { + "#": 4951 + }, + { + "#": 4974 + }, + { + "#": 4997 + }, + { + "#": 5020 + }, + { + "#": 5043 + }, + { + "#": 5066 + }, + { + "#": 5089 + }, + { + "#": 5112 + }, + { + "#": 5135 + }, + { + "#": 5158 + }, + { + "#": 5181 + }, + { + "#": 5204 + }, + { + "#": 5227 + }, + { + "#": 5250 + }, + { + "#": 5273 + }, + { + "#": 5296 + }, + { + "#": 5319 + }, + { + "#": 5342 + }, + { + "#": 5365 + }, + { + "#": 5388 + }, + { + "#": 5411 + }, + { + "#": 5434 + }, + { + "#": 5457 + }, + { + "#": 5480 + }, + { + "#": 5503 + }, + { + "#": 5526 + }, + { + "#": 5549 + }, + { + "#": 5572 + }, + { + "#": 5595 + }, + { + "#": 5618 + }, + { + "#": 5641 + }, + { + "#": 5664 + }, + { + "#": 5687 + }, + { + "#": 5710 + }, + { + "#": 5733 + }, + { + "#": 5756 + }, + { + "#": 5779 + }, + { + "#": 5802 + }, + { + "#": 5825 + }, + { + "#": 5848 + }, + { + "#": 5871 + }, + { + "#": 5894 + }, + { + "#": 5917 + }, + { + "#": 5940 + }, + { + "#": 5963 + }, + { + "#": 5986 + }, + { + "#": 6009 + }, + { + "#": 6032 + }, + { + "#": 6055 + }, + { + "#": 6078 + }, + { + "#": 6101 + }, + { + "#": 6124 + }, + { + "#": 6147 + }, + { + "#": 6170 + }, + { + "#": 6193 + }, + { + "#": 6216 + }, + { + "#": 6239 + }, + { + "#": 6262 + }, + { + "#": 6285 + }, + { + "#": 6308 + }, + { + "#": 6331 + }, + { + "#": 6354 + }, + { + "#": 6377 + }, + { + "#": 6400 + }, + { + "#": 6423 + }, + { + "#": 6446 + }, + { + "#": 6469 + }, + { + "#": 6492 + }, + { + "#": 6515 + }, + { + "#": 6538 + }, + { + "#": 6561 + }, + { + "#": 6584 + }, + { + "#": 6607 + }, + { + "#": 6630 + }, + { + "#": 6653 + }, + { + "#": 6676 + }, + { + "#": 6699 + }, + { + "#": 6722 + }, + { + "#": 6745 + }, + { + "#": 6768 + }, + { + "#": 6791 + }, + { + "#": 6814 + }, + { + "#": 6837 + }, + { + "#": 6860 + }, + { + "#": 6883 + }, + { + "#": 6906 + }, + { + "#": 6929 + }, + { + "#": 6952 + }, + { + "#": 6975 + }, + { + "#": 6998 + }, + { + "#": 7021 + }, + { + "#": 7044 + }, + { + "#": 7067 + }, + { + "#": 7090 + }, + { + "#": 7113 + }, + { + "#": 7136 + }, + { + "#": 7159 + }, + { + "#": 7182 + }, + { + "#": 7205 + }, + { + "#": 7228 + }, + { + "#": 7251 + }, + { + "#": 7274 + }, + { + "#": 7297 + }, + { + "#": 7320 + }, + { + "#": 7343 + }, + { + "#": 7366 + }, + { + "#": 7389 + }, + { + "#": 7412 + }, + { + "#": 7435 + }, + { + "#": 7458 + }, + { + "#": 7481 + }, + { + "#": 7504 + }, + { + "#": 7527 + }, + { + "#": 7550 + }, + { + "#": 7573 + }, + { + "#": 7596 + }, + { + "#": 7619 + }, + { + "#": 7642 + }, + { + "#": 7665 + }, + { + "#": 7688 + }, + { + "#": 7711 + }, + { + "#": 7734 + }, + { + "#": 7757 + }, + { + "#": 7780 + }, + { + "#": 7803 + }, + { + "#": 7826 + }, + { + "#": 7849 + }, + { + "#": 7872 + }, + { + "#": 7895 + }, + { + "#": 7918 + }, + { + "#": 7941 + }, + { + "#": 7964 + }, + { + "#": 7987 + }, + { + "#": 8010 + }, + { + "#": 8033 + }, + { + "#": 8056 + }, + { + "#": 8079 + }, + { + "#": 8102 + }, + { + "#": 8125 + }, + { + "#": 8148 + }, + { + "#": 8171 + }, + { + "#": 8194 + }, + { + "#": 8217 + }, + { + "#": 8240 + }, + { + "#": 8263 + }, + { + "#": 8286 + }, + { + "#": 8309 + }, + { + "#": 8332 + }, + { + "#": 8355 + }, + { + "#": 8378 + }, + { + "#": 8401 + }, + { + "#": 8424 + }, + { + "#": 8447 + }, + { + "#": 8470 + }, + { + "#": 8493 + }, + { + "#": 8516 + }, + { + "#": 8539 + }, + { + "#": 8562 + }, + { + "#": 8585 + }, + { + "#": 8608 + }, + { + "#": 8631 + }, + { + "#": 8654 + }, + { + "#": 8677 + }, + { + "#": 8700 + }, + { + "#": 8723 + }, + { + "#": 8746 + }, + { + "#": 8769 + }, + { + "#": 8792 + }, + { + "#": 8815 + }, + { + "#": 8838 + }, + { + "#": 8861 + }, + { + "#": 8884 + }, + { + "#": 8907 + }, + { + "#": 8930 + }, + { + "#": 8953 + }, + { + "#": 8976 + }, + { + "#": 8999 + }, + { + "#": 9022 + }, + { + "#": 9045 + }, + { + "#": 9068 + }, + { + "#": 9091 + }, + { + "#": 9114 + }, + { + "#": 9137 + }, + { + "#": 9160 + }, + { + "#": 9183 + }, + { + "#": 9206 + }, + { + "#": 9229 + }, + { + "#": 9252 + }, + { + "#": 9275 + }, + { + "#": 9298 + }, + { + "#": 9321 + }, + { + "#": 9344 + }, + { + "#": 9367 + }, + { + "#": 9390 + }, + { + "#": 9413 + }, + { + "#": 9436 + }, + { + "#": 9459 + }, + { + "#": 9482 + }, + { + "#": 9505 + }, + { + "#": 9528 + }, + { + "#": 9551 + }, + { + "#": 9574 + }, + { + "#": 9597 + }, + { + "#": 9620 + }, + { + "#": 9643 + }, + { + "#": 9666 + }, + { + "#": 9689 + }, + { + "#": 9712 + }, + { + "#": 9735 + }, + { + "#": 9758 + }, + { + "#": 9781 + }, + { + "#": 9804 + }, + { + "#": 9827 + }, + { + "#": 9850 + }, + { + "#": 9873 + }, + { + "#": 9896 + }, + { + "#": 9919 + }, + { + "#": 9942 + }, + { + "#": 9965 + }, + { + "#": 9988 + }, + { + "#": 10011 + }, + { + "#": 10034 + }, + { + "#": 10057 + }, + { + "#": 10080 + }, + { + "#": 10103 + }, + { + "#": 10126 + }, + { + "#": 10149 + }, + { + "#": 10172 + }, + { + "#": 10195 + }, + { + "#": 10218 + }, + { + "#": 10241 + }, + { + "#": 10264 + }, + { + "#": 10287 + }, + { + "#": 10310 + }, + { + "#": 10333 + }, + { + "#": 10356 + }, + { + "#": 10379 + }, + { + "#": 10402 + }, + { + "#": 10425 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 99 + }, + "angle": 0, + "vertices": { + "#": 100 + }, + "position": { + "#": 105 + }, + "force": { + "#": 106 + }, + "torque": 0, + "positionImpulse": { + "#": 107 + }, + "constraintImpulse": { + "#": 108 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 109 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 110 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 111 + }, + "bounds": { + "#": 113 + }, + "positionPrev": { + "#": 116 + }, + "anglePrev": 0, + "axes": { + "#": 117 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 98 + }, + "sleepCounter": 0, + "region": { + "#": 120 + } + }, + [ + { + "#": 98 + } + ], + [ + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + } + ], + { + "x": 100, + "y": 137.73575, + "index": 0, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 125, + "y": 137.73575, + "index": 1, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 125, + "y": 162.73575, + "index": 2, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 100, + "y": 162.73575, + "index": 3, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 112 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 114 + }, + "max": { + "#": 115 + } + }, + { + "x": 100, + "y": 137.73575 + }, + { + "x": 125, + "y": 162.73575 + }, + { + "x": 112.5, + "y": 147.32848 + }, + [ + { + "#": 118 + }, + { + "#": 119 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,2,3", + "startCol": 2, + "endCol": 2, + "startRow": 2, + "endRow": 3 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 122 + }, + "angle": 0, + "vertices": { + "#": 123 + }, + "position": { + "#": 128 + }, + "force": { + "#": 129 + }, + "torque": 0, + "positionImpulse": { + "#": 130 + }, + "constraintImpulse": { + "#": 131 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 132 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 133 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 134 + }, + "bounds": { + "#": 136 + }, + "positionPrev": { + "#": 139 + }, + "anglePrev": 0, + "axes": { + "#": 140 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 121 + }, + "sleepCounter": 0, + "region": { + "#": 143 + } + }, + [ + { + "#": 121 + } + ], + [ + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + } + ], + { + "x": 125, + "y": 137.73575, + "index": 0, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 150, + "y": 137.73575, + "index": 1, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 150, + "y": 162.73575, + "index": 2, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 125, + "y": 162.73575, + "index": 3, + "body": { + "#": 121 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 135 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 137 + }, + "max": { + "#": 138 + } + }, + { + "x": 125, + "y": 137.73575 + }, + { + "x": 150, + "y": 162.73575 + }, + { + "x": 137.5, + "y": 147.32848 + }, + [ + { + "#": 141 + }, + { + "#": 142 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,2,3", + "startCol": 2, + "endCol": 3, + "startRow": 2, + "endRow": 3 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 145 + }, + "angle": 0, + "vertices": { + "#": 146 + }, + "position": { + "#": 151 + }, + "force": { + "#": 152 + }, + "torque": 0, + "positionImpulse": { + "#": 153 + }, + "constraintImpulse": { + "#": 154 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 155 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 156 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 157 + }, + "bounds": { + "#": 159 + }, + "positionPrev": { + "#": 162 + }, + "anglePrev": 0, + "axes": { + "#": 163 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 144 + }, + "sleepCounter": 0, + "region": { + "#": 166 + } + }, + [ + { + "#": 144 + } + ], + [ + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + } + ], + { + "x": 150, + "y": 137.73575, + "index": 0, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 175, + "y": 137.73575, + "index": 1, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 175, + "y": 162.73575, + "index": 2, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 150, + "y": 162.73575, + "index": 3, + "body": { + "#": 144 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 158 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 160 + }, + "max": { + "#": 161 + } + }, + { + "x": 150, + "y": 137.73575 + }, + { + "x": 175, + "y": 162.73575 + }, + { + "x": 162.5, + "y": 147.32848 + }, + [ + { + "#": 164 + }, + { + "#": 165 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,3,2,3", + "startCol": 3, + "endCol": 3, + "startRow": 2, + "endRow": 3 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 168 + }, + "angle": 0, + "vertices": { + "#": 169 + }, + "position": { + "#": 174 + }, + "force": { + "#": 175 + }, + "torque": 0, + "positionImpulse": { + "#": 176 + }, + "constraintImpulse": { + "#": 177 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 178 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 179 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 180 + }, + "bounds": { + "#": 182 + }, + "positionPrev": { + "#": 185 + }, + "anglePrev": 0, + "axes": { + "#": 186 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 167 + }, + "sleepCounter": 0, + "region": { + "#": 189 + } + }, + [ + { + "#": 167 + } + ], + [ + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + } + ], + { + "x": 175, + "y": 137.73575, + "index": 0, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 200, + "y": 137.73575, + "index": 1, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 200, + "y": 162.73575, + "index": 2, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 175, + "y": 162.73575, + "index": 3, + "body": { + "#": 167 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 181 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 183 + }, + "max": { + "#": 184 + } + }, + { + "x": 175, + "y": 137.73575 + }, + { + "x": 200, + "y": 162.73575 + }, + { + "x": 187.5, + "y": 147.32848 + }, + [ + { + "#": 187 + }, + { + "#": 188 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,2,3", + "startCol": 3, + "endCol": 4, + "startRow": 2, + "endRow": 3 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 191 + }, + "angle": 0, + "vertices": { + "#": 192 + }, + "position": { + "#": 197 + }, + "force": { + "#": 198 + }, + "torque": 0, + "positionImpulse": { + "#": 199 + }, + "constraintImpulse": { + "#": 200 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 201 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 202 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 203 + }, + "bounds": { + "#": 205 + }, + "positionPrev": { + "#": 208 + }, + "anglePrev": 0, + "axes": { + "#": 209 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 190 + }, + "sleepCounter": 0, + "region": { + "#": 212 + } + }, + [ + { + "#": 190 + } + ], + [ + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + } + ], + { + "x": 200, + "y": 137.73575, + "index": 0, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 225, + "y": 137.73575, + "index": 1, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 225, + "y": 162.73575, + "index": 2, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 200, + "y": 162.73575, + "index": 3, + "body": { + "#": 190 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 204 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 206 + }, + "max": { + "#": 207 + } + }, + { + "x": 200, + "y": 137.73575 + }, + { + "x": 225, + "y": 162.73575 + }, + { + "x": 212.5, + "y": 147.32848 + }, + [ + { + "#": 210 + }, + { + "#": 211 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,2,3", + "startCol": 4, + "endCol": 4, + "startRow": 2, + "endRow": 3 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 214 + }, + "angle": 0, + "vertices": { + "#": 215 + }, + "position": { + "#": 220 + }, + "force": { + "#": 221 + }, + "torque": 0, + "positionImpulse": { + "#": 222 + }, + "constraintImpulse": { + "#": 223 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 224 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 225 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 226 + }, + "bounds": { + "#": 228 + }, + "positionPrev": { + "#": 231 + }, + "anglePrev": 0, + "axes": { + "#": 232 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 213 + }, + "sleepCounter": 0, + "region": { + "#": 235 + } + }, + [ + { + "#": 213 + } + ], + [ + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + } + ], + { + "x": 225, + "y": 137.73575, + "index": 0, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 250, + "y": 137.73575, + "index": 1, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 250, + "y": 162.73575, + "index": 2, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 225, + "y": 162.73575, + "index": 3, + "body": { + "#": 213 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 227 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 229 + }, + "max": { + "#": 230 + } + }, + { + "x": 225, + "y": 137.73575 + }, + { + "x": 250, + "y": 162.73575 + }, + { + "x": 237.5, + "y": 147.32848 + }, + [ + { + "#": 233 + }, + { + "#": 234 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,2,3", + "startCol": 4, + "endCol": 5, + "startRow": 2, + "endRow": 3 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 237 + }, + "angle": 0, + "vertices": { + "#": 238 + }, + "position": { + "#": 243 + }, + "force": { + "#": 244 + }, + "torque": 0, + "positionImpulse": { + "#": 245 + }, + "constraintImpulse": { + "#": 246 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 247 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 248 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 249 + }, + "bounds": { + "#": 251 + }, + "positionPrev": { + "#": 254 + }, + "anglePrev": 0, + "axes": { + "#": 255 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 236 + }, + "sleepCounter": 0, + "region": { + "#": 258 + } + }, + [ + { + "#": 236 + } + ], + [ + { + "#": 239 + }, + { + "#": 240 + }, + { + "#": 241 + }, + { + "#": 242 + } + ], + { + "x": 250, + "y": 137.73575, + "index": 0, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 275, + "y": 137.73575, + "index": 1, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 275, + "y": 162.73575, + "index": 2, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 250, + "y": 162.73575, + "index": 3, + "body": { + "#": 236 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 250 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 252 + }, + "max": { + "#": 253 + } + }, + { + "x": 250, + "y": 137.73575 + }, + { + "x": 275, + "y": 162.73575 + }, + { + "x": 262.5, + "y": 147.32848 + }, + [ + { + "#": 256 + }, + { + "#": 257 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,2,3", + "startCol": 5, + "endCol": 5, + "startRow": 2, + "endRow": 3 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 260 + }, + "angle": 0, + "vertices": { + "#": 261 + }, + "position": { + "#": 266 + }, + "force": { + "#": 267 + }, + "torque": 0, + "positionImpulse": { + "#": 268 + }, + "constraintImpulse": { + "#": 269 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 270 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 271 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 272 + }, + "bounds": { + "#": 274 + }, + "positionPrev": { + "#": 277 + }, + "anglePrev": 0, + "axes": { + "#": 278 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 259 + }, + "sleepCounter": 0, + "region": { + "#": 281 + } + }, + [ + { + "#": 259 + } + ], + [ + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + } + ], + { + "x": 275, + "y": 137.73575, + "index": 0, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 300, + "y": 137.73575, + "index": 1, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 300, + "y": 162.73575, + "index": 2, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 275, + "y": 162.73575, + "index": 3, + "body": { + "#": 259 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 273 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 275 + }, + "max": { + "#": 276 + } + }, + { + "x": 275, + "y": 137.73575 + }, + { + "x": 300, + "y": 162.73575 + }, + { + "x": 287.5, + "y": 147.32848 + }, + [ + { + "#": 279 + }, + { + "#": 280 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,2,3", + "startCol": 5, + "endCol": 6, + "startRow": 2, + "endRow": 3 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 283 + }, + "angle": 0, + "vertices": { + "#": 284 + }, + "position": { + "#": 289 + }, + "force": { + "#": 290 + }, + "torque": 0, + "positionImpulse": { + "#": 291 + }, + "constraintImpulse": { + "#": 292 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 293 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 294 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 295 + }, + "bounds": { + "#": 297 + }, + "positionPrev": { + "#": 300 + }, + "anglePrev": 0, + "axes": { + "#": 301 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 282 + }, + "sleepCounter": 0, + "region": { + "#": 304 + } + }, + [ + { + "#": 282 + } + ], + [ + { + "#": 285 + }, + { + "#": 286 + }, + { + "#": 287 + }, + { + "#": 288 + } + ], + { + "x": 300, + "y": 137.73575, + "index": 0, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 325, + "y": 137.73575, + "index": 1, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 325, + "y": 162.73575, + "index": 2, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 300, + "y": 162.73575, + "index": 3, + "body": { + "#": 282 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 296 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 298 + }, + "max": { + "#": 299 + } + }, + { + "x": 300, + "y": 137.73575 + }, + { + "x": 325, + "y": 162.73575 + }, + { + "x": 312.5, + "y": 147.32848 + }, + [ + { + "#": 302 + }, + { + "#": 303 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,2,3", + "startCol": 6, + "endCol": 6, + "startRow": 2, + "endRow": 3 + }, + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 306 + }, + "angle": 0, + "vertices": { + "#": 307 + }, + "position": { + "#": 312 + }, + "force": { + "#": 313 + }, + "torque": 0, + "positionImpulse": { + "#": 314 + }, + "constraintImpulse": { + "#": 315 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 316 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 317 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 318 + }, + "bounds": { + "#": 320 + }, + "positionPrev": { + "#": 323 + }, + "anglePrev": 0, + "axes": { + "#": 324 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 305 + }, + "sleepCounter": 0, + "region": { + "#": 327 + } + }, + [ + { + "#": 305 + } + ], + [ + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + } + ], + { + "x": 325, + "y": 137.73575, + "index": 0, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 350, + "y": 137.73575, + "index": 1, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 350, + "y": 162.73575, + "index": 2, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 325, + "y": 162.73575, + "index": 3, + "body": { + "#": 305 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 319 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 321 + }, + "max": { + "#": 322 + } + }, + { + "x": 325, + "y": 137.73575 + }, + { + "x": 350, + "y": 162.73575 + }, + { + "x": 337.5, + "y": 147.32848 + }, + [ + { + "#": 325 + }, + { + "#": 326 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,2,3", + "startCol": 6, + "endCol": 7, + "startRow": 2, + "endRow": 3 + }, + { + "id": 15, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 329 + }, + "angle": 0, + "vertices": { + "#": 330 + }, + "position": { + "#": 335 + }, + "force": { + "#": 336 + }, + "torque": 0, + "positionImpulse": { + "#": 337 + }, + "constraintImpulse": { + "#": 338 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 339 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 340 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 341 + }, + "bounds": { + "#": 343 + }, + "positionPrev": { + "#": 346 + }, + "anglePrev": 0, + "axes": { + "#": 347 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 328 + }, + "sleepCounter": 0, + "region": { + "#": 350 + } + }, + [ + { + "#": 328 + } + ], + [ + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + } + ], + { + "x": 350, + "y": 137.73575, + "index": 0, + "body": { + "#": 328 + }, + "isInternal": false + }, + { + "x": 375, + "y": 137.73575, + "index": 1, + "body": { + "#": 328 + }, + "isInternal": false + }, + { + "x": 375, + "y": 162.73575, + "index": 2, + "body": { + "#": 328 + }, + "isInternal": false + }, + { + "x": 350, + "y": 162.73575, + "index": 3, + "body": { + "#": 328 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 342 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 344 + }, + "max": { + "#": 345 + } + }, + { + "x": 350, + "y": 137.73575 + }, + { + "x": 375, + "y": 162.73575 + }, + { + "x": 362.5, + "y": 147.32848 + }, + [ + { + "#": 348 + }, + { + "#": 349 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,2,3", + "startCol": 7, + "endCol": 7, + "startRow": 2, + "endRow": 3 + }, + { + "id": 16, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 352 + }, + "angle": 0, + "vertices": { + "#": 353 + }, + "position": { + "#": 358 + }, + "force": { + "#": 359 + }, + "torque": 0, + "positionImpulse": { + "#": 360 + }, + "constraintImpulse": { + "#": 361 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 362 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 363 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 364 + }, + "bounds": { + "#": 366 + }, + "positionPrev": { + "#": 369 + }, + "anglePrev": 0, + "axes": { + "#": 370 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 351 + }, + "sleepCounter": 0, + "region": { + "#": 373 + } + }, + [ + { + "#": 351 + } + ], + [ + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + } + ], + { + "x": 375, + "y": 137.73575, + "index": 0, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 400, + "y": 137.73575, + "index": 1, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 400, + "y": 162.73575, + "index": 2, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 375, + "y": 162.73575, + "index": 3, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 365 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 367 + }, + "max": { + "#": 368 + } + }, + { + "x": 375, + "y": 137.73575 + }, + { + "x": 400, + "y": 162.73575 + }, + { + "x": 387.5, + "y": 147.32848 + }, + [ + { + "#": 371 + }, + { + "#": 372 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,2,3", + "startCol": 7, + "endCol": 8, + "startRow": 2, + "endRow": 3 + }, + { + "id": 17, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 375 + }, + "angle": 0, + "vertices": { + "#": 376 + }, + "position": { + "#": 381 + }, + "force": { + "#": 382 + }, + "torque": 0, + "positionImpulse": { + "#": 383 + }, + "constraintImpulse": { + "#": 384 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 385 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 386 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 387 + }, + "bounds": { + "#": 389 + }, + "positionPrev": { + "#": 392 + }, + "anglePrev": 0, + "axes": { + "#": 393 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 374 + }, + "sleepCounter": 0, + "region": { + "#": 396 + } + }, + [ + { + "#": 374 + } + ], + [ + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + } + ], + { + "x": 400, + "y": 137.73575, + "index": 0, + "body": { + "#": 374 + }, + "isInternal": false + }, + { + "x": 425, + "y": 137.73575, + "index": 1, + "body": { + "#": 374 + }, + "isInternal": false + }, + { + "x": 425, + "y": 162.73575, + "index": 2, + "body": { + "#": 374 + }, + "isInternal": false + }, + { + "x": 400, + "y": 162.73575, + "index": 3, + "body": { + "#": 374 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 388 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 390 + }, + "max": { + "#": 391 + } + }, + { + "x": 400, + "y": 137.73575 + }, + { + "x": 425, + "y": 162.73575 + }, + { + "x": 412.5, + "y": 147.32848 + }, + [ + { + "#": 394 + }, + { + "#": 395 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,8,2,3", + "startCol": 8, + "endCol": 8, + "startRow": 2, + "endRow": 3 + }, + { + "id": 18, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 398 + }, + "angle": 0, + "vertices": { + "#": 399 + }, + "position": { + "#": 404 + }, + "force": { + "#": 405 + }, + "torque": 0, + "positionImpulse": { + "#": 406 + }, + "constraintImpulse": { + "#": 407 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 408 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 409 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 410 + }, + "bounds": { + "#": 412 + }, + "positionPrev": { + "#": 415 + }, + "anglePrev": 0, + "axes": { + "#": 416 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 397 + }, + "sleepCounter": 0, + "region": { + "#": 419 + } + }, + [ + { + "#": 397 + } + ], + [ + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + } + ], + { + "x": 425, + "y": 137.73575, + "index": 0, + "body": { + "#": 397 + }, + "isInternal": false + }, + { + "x": 450, + "y": 137.73575, + "index": 1, + "body": { + "#": 397 + }, + "isInternal": false + }, + { + "x": 450, + "y": 162.73575, + "index": 2, + "body": { + "#": 397 + }, + "isInternal": false + }, + { + "x": 425, + "y": 162.73575, + "index": 3, + "body": { + "#": 397 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 411 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 413 + }, + "max": { + "#": 414 + } + }, + { + "x": 425, + "y": 137.73575 + }, + { + "x": 450, + "y": 162.73575 + }, + { + "x": 437.5, + "y": 147.32848 + }, + [ + { + "#": 417 + }, + { + "#": 418 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,2,3", + "startCol": 8, + "endCol": 9, + "startRow": 2, + "endRow": 3 + }, + { + "id": 19, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 421 + }, + "angle": 0, + "vertices": { + "#": 422 + }, + "position": { + "#": 427 + }, + "force": { + "#": 428 + }, + "torque": 0, + "positionImpulse": { + "#": 429 + }, + "constraintImpulse": { + "#": 430 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 431 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 432 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 433 + }, + "bounds": { + "#": 435 + }, + "positionPrev": { + "#": 438 + }, + "anglePrev": 0, + "axes": { + "#": 439 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 420 + }, + "sleepCounter": 0, + "region": { + "#": 442 + } + }, + [ + { + "#": 420 + } + ], + [ + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + } + ], + { + "x": 450, + "y": 137.73575, + "index": 0, + "body": { + "#": 420 + }, + "isInternal": false + }, + { + "x": 475, + "y": 137.73575, + "index": 1, + "body": { + "#": 420 + }, + "isInternal": false + }, + { + "x": 475, + "y": 162.73575, + "index": 2, + "body": { + "#": 420 + }, + "isInternal": false + }, + { + "x": 450, + "y": 162.73575, + "index": 3, + "body": { + "#": 420 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 434 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 436 + }, + "max": { + "#": 437 + } + }, + { + "x": 450, + "y": 137.73575 + }, + { + "x": 475, + "y": 162.73575 + }, + { + "x": 462.5, + "y": 147.32848 + }, + [ + { + "#": 440 + }, + { + "#": 441 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,2,3", + "startCol": 9, + "endCol": 9, + "startRow": 2, + "endRow": 3 + }, + { + "id": 20, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 444 + }, + "angle": 0, + "vertices": { + "#": 445 + }, + "position": { + "#": 450 + }, + "force": { + "#": 451 + }, + "torque": 0, + "positionImpulse": { + "#": 452 + }, + "constraintImpulse": { + "#": 453 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 454 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 455 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 456 + }, + "bounds": { + "#": 458 + }, + "positionPrev": { + "#": 461 + }, + "anglePrev": 0, + "axes": { + "#": 462 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 443 + }, + "sleepCounter": 0, + "region": { + "#": 465 + } + }, + [ + { + "#": 443 + } + ], + [ + { + "#": 446 + }, + { + "#": 447 + }, + { + "#": 448 + }, + { + "#": 449 + } + ], + { + "x": 475, + "y": 137.73575, + "index": 0, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 500, + "y": 137.73575, + "index": 1, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 500, + "y": 162.73575, + "index": 2, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 475, + "y": 162.73575, + "index": 3, + "body": { + "#": 443 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 457 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 459 + }, + "max": { + "#": 460 + } + }, + { + "x": 475, + "y": 137.73575 + }, + { + "x": 500, + "y": 162.73575 + }, + { + "x": 487.5, + "y": 147.32848 + }, + [ + { + "#": 463 + }, + { + "#": 464 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,2,3", + "startCol": 9, + "endCol": 10, + "startRow": 2, + "endRow": 3 + }, + { + "id": 21, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 467 + }, + "angle": 0, + "vertices": { + "#": 468 + }, + "position": { + "#": 473 + }, + "force": { + "#": 474 + }, + "torque": 0, + "positionImpulse": { + "#": 475 + }, + "constraintImpulse": { + "#": 476 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 477 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 478 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 479 + }, + "bounds": { + "#": 481 + }, + "positionPrev": { + "#": 484 + }, + "anglePrev": 0, + "axes": { + "#": 485 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 466 + }, + "sleepCounter": 0, + "region": { + "#": 488 + } + }, + [ + { + "#": 466 + } + ], + [ + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + } + ], + { + "x": 500, + "y": 137.73575, + "index": 0, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 525, + "y": 137.73575, + "index": 1, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 525, + "y": 162.73575, + "index": 2, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 500, + "y": 162.73575, + "index": 3, + "body": { + "#": 466 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 480 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 482 + }, + "max": { + "#": 483 + } + }, + { + "x": 500, + "y": 137.73575 + }, + { + "x": 525, + "y": 162.73575 + }, + { + "x": 512.5, + "y": 147.32848 + }, + [ + { + "#": 486 + }, + { + "#": 487 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,2,3", + "startCol": 10, + "endCol": 10, + "startRow": 2, + "endRow": 3 + }, + { + "id": 22, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 490 + }, + "angle": 0, + "vertices": { + "#": 491 + }, + "position": { + "#": 496 + }, + "force": { + "#": 497 + }, + "torque": 0, + "positionImpulse": { + "#": 498 + }, + "constraintImpulse": { + "#": 499 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 500 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 501 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 502 + }, + "bounds": { + "#": 504 + }, + "positionPrev": { + "#": 507 + }, + "anglePrev": 0, + "axes": { + "#": 508 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 489 + }, + "sleepCounter": 0, + "region": { + "#": 511 + } + }, + [ + { + "#": 489 + } + ], + [ + { + "#": 492 + }, + { + "#": 493 + }, + { + "#": 494 + }, + { + "#": 495 + } + ], + { + "x": 525, + "y": 137.73575, + "index": 0, + "body": { + "#": 489 + }, + "isInternal": false + }, + { + "x": 550, + "y": 137.73575, + "index": 1, + "body": { + "#": 489 + }, + "isInternal": false + }, + { + "x": 550, + "y": 162.73575, + "index": 2, + "body": { + "#": 489 + }, + "isInternal": false + }, + { + "x": 525, + "y": 162.73575, + "index": 3, + "body": { + "#": 489 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 503 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 505 + }, + "max": { + "#": 506 + } + }, + { + "x": 525, + "y": 137.73575 + }, + { + "x": 550, + "y": 162.73575 + }, + { + "x": 537.5, + "y": 147.32848 + }, + [ + { + "#": 509 + }, + { + "#": 510 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,2,3", + "startCol": 10, + "endCol": 11, + "startRow": 2, + "endRow": 3 + }, + { + "id": 23, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 513 + }, + "angle": 0, + "vertices": { + "#": 514 + }, + "position": { + "#": 519 + }, + "force": { + "#": 520 + }, + "torque": 0, + "positionImpulse": { + "#": 521 + }, + "constraintImpulse": { + "#": 522 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 523 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 524 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 525 + }, + "bounds": { + "#": 527 + }, + "positionPrev": { + "#": 530 + }, + "anglePrev": 0, + "axes": { + "#": 531 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 512 + }, + "sleepCounter": 0, + "region": { + "#": 534 + } + }, + [ + { + "#": 512 + } + ], + [ + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + } + ], + { + "x": 550, + "y": 137.73575, + "index": 0, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 575, + "y": 137.73575, + "index": 1, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 575, + "y": 162.73575, + "index": 2, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 550, + "y": 162.73575, + "index": 3, + "body": { + "#": 512 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 526 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 528 + }, + "max": { + "#": 529 + } + }, + { + "x": 550, + "y": 137.73575 + }, + { + "x": 575, + "y": 162.73575 + }, + { + "x": 562.5, + "y": 147.32848 + }, + [ + { + "#": 532 + }, + { + "#": 533 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,11,2,3", + "startCol": 11, + "endCol": 11, + "startRow": 2, + "endRow": 3 + }, + { + "id": 24, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 536 + }, + "angle": 0, + "vertices": { + "#": 537 + }, + "position": { + "#": 542 + }, + "force": { + "#": 543 + }, + "torque": 0, + "positionImpulse": { + "#": 544 + }, + "constraintImpulse": { + "#": 545 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 546 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 547 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 548 + }, + "bounds": { + "#": 550 + }, + "positionPrev": { + "#": 553 + }, + "anglePrev": 0, + "axes": { + "#": 554 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 535 + }, + "sleepCounter": 0, + "region": { + "#": 557 + } + }, + [ + { + "#": 535 + } + ], + [ + { + "#": 538 + }, + { + "#": 539 + }, + { + "#": 540 + }, + { + "#": 541 + } + ], + { + "x": 575, + "y": 137.73575, + "index": 0, + "body": { + "#": 535 + }, + "isInternal": false + }, + { + "x": 600, + "y": 137.73575, + "index": 1, + "body": { + "#": 535 + }, + "isInternal": false + }, + { + "x": 600, + "y": 162.73575, + "index": 2, + "body": { + "#": 535 + }, + "isInternal": false + }, + { + "x": 575, + "y": 162.73575, + "index": 3, + "body": { + "#": 535 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 549 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 551 + }, + "max": { + "#": 552 + } + }, + { + "x": 575, + "y": 137.73575 + }, + { + "x": 600, + "y": 162.73575 + }, + { + "x": 587.5, + "y": 147.32848 + }, + [ + { + "#": 555 + }, + { + "#": 556 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,2,3", + "startCol": 11, + "endCol": 12, + "startRow": 2, + "endRow": 3 + }, + { + "id": 25, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 559 + }, + "angle": 0, + "vertices": { + "#": 560 + }, + "position": { + "#": 565 + }, + "force": { + "#": 566 + }, + "torque": 0, + "positionImpulse": { + "#": 567 + }, + "constraintImpulse": { + "#": 568 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 569 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 570 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 571 + }, + "bounds": { + "#": 573 + }, + "positionPrev": { + "#": 576 + }, + "anglePrev": 0, + "axes": { + "#": 577 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 558 + }, + "sleepCounter": 0, + "region": { + "#": 580 + } + }, + [ + { + "#": 558 + } + ], + [ + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + } + ], + { + "x": 600, + "y": 137.73575, + "index": 0, + "body": { + "#": 558 + }, + "isInternal": false + }, + { + "x": 625, + "y": 137.73575, + "index": 1, + "body": { + "#": 558 + }, + "isInternal": false + }, + { + "x": 625, + "y": 162.73575, + "index": 2, + "body": { + "#": 558 + }, + "isInternal": false + }, + { + "x": 600, + "y": 162.73575, + "index": 3, + "body": { + "#": 558 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 572 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 574 + }, + "max": { + "#": 575 + } + }, + { + "x": 600, + "y": 137.73575 + }, + { + "x": 625, + "y": 162.73575 + }, + { + "x": 612.5, + "y": 147.32848 + }, + [ + { + "#": 578 + }, + { + "#": 579 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,2,3", + "startCol": 12, + "endCol": 13, + "startRow": 2, + "endRow": 3 + }, + { + "id": 26, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 582 + }, + "angle": 0, + "vertices": { + "#": 583 + }, + "position": { + "#": 588 + }, + "force": { + "#": 589 + }, + "torque": 0, + "positionImpulse": { + "#": 590 + }, + "constraintImpulse": { + "#": 591 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 592 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 593 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 594 + }, + "bounds": { + "#": 596 + }, + "positionPrev": { + "#": 599 + }, + "anglePrev": 0, + "axes": { + "#": 600 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 581 + }, + "sleepCounter": 0, + "region": { + "#": 603 + } + }, + [ + { + "#": 581 + } + ], + [ + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + } + ], + { + "x": 625, + "y": 137.73575, + "index": 0, + "body": { + "#": 581 + }, + "isInternal": false + }, + { + "x": 650, + "y": 137.73575, + "index": 1, + "body": { + "#": 581 + }, + "isInternal": false + }, + { + "x": 650, + "y": 162.73575, + "index": 2, + "body": { + "#": 581 + }, + "isInternal": false + }, + { + "x": 625, + "y": 162.73575, + "index": 3, + "body": { + "#": 581 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 595 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 597 + }, + "max": { + "#": 598 + } + }, + { + "x": 625, + "y": 137.73575 + }, + { + "x": 650, + "y": 162.73575 + }, + { + "x": 637.5, + "y": 147.32848 + }, + [ + { + "#": 601 + }, + { + "#": 602 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,13,2,3", + "startCol": 13, + "endCol": 13, + "startRow": 2, + "endRow": 3 + }, + { + "id": 27, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 605 + }, + "angle": 0, + "vertices": { + "#": 606 + }, + "position": { + "#": 611 + }, + "force": { + "#": 612 + }, + "torque": 0, + "positionImpulse": { + "#": 613 + }, + "constraintImpulse": { + "#": 614 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 615 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 616 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 617 + }, + "bounds": { + "#": 619 + }, + "positionPrev": { + "#": 622 + }, + "anglePrev": 0, + "axes": { + "#": 623 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 604 + }, + "sleepCounter": 0, + "region": { + "#": 626 + } + }, + [ + { + "#": 604 + } + ], + [ + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + } + ], + { + "x": 650, + "y": 137.73575, + "index": 0, + "body": { + "#": 604 + }, + "isInternal": false + }, + { + "x": 675, + "y": 137.73575, + "index": 1, + "body": { + "#": 604 + }, + "isInternal": false + }, + { + "x": 675, + "y": 162.73575, + "index": 2, + "body": { + "#": 604 + }, + "isInternal": false + }, + { + "x": 650, + "y": 162.73575, + "index": 3, + "body": { + "#": 604 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 618 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 620 + }, + "max": { + "#": 621 + } + }, + { + "x": 650, + "y": 137.73575 + }, + { + "x": 675, + "y": 162.73575 + }, + { + "x": 662.5, + "y": 147.32848 + }, + [ + { + "#": 624 + }, + { + "#": 625 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,2,3", + "startCol": 13, + "endCol": 14, + "startRow": 2, + "endRow": 3 + }, + { + "id": 28, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 628 + }, + "angle": 0, + "vertices": { + "#": 629 + }, + "position": { + "#": 634 + }, + "force": { + "#": 635 + }, + "torque": 0, + "positionImpulse": { + "#": 636 + }, + "constraintImpulse": { + "#": 637 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 638 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 639 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 640 + }, + "bounds": { + "#": 642 + }, + "positionPrev": { + "#": 645 + }, + "anglePrev": 0, + "axes": { + "#": 646 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 627 + }, + "sleepCounter": 0, + "region": { + "#": 649 + } + }, + [ + { + "#": 627 + } + ], + [ + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + } + ], + { + "x": 675, + "y": 137.73575, + "index": 0, + "body": { + "#": 627 + }, + "isInternal": false + }, + { + "x": 700, + "y": 137.73575, + "index": 1, + "body": { + "#": 627 + }, + "isInternal": false + }, + { + "x": 700, + "y": 162.73575, + "index": 2, + "body": { + "#": 627 + }, + "isInternal": false + }, + { + "x": 675, + "y": 162.73575, + "index": 3, + "body": { + "#": 627 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 641 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 643 + }, + "max": { + "#": 644 + } + }, + { + "x": 675, + "y": 137.73575 + }, + { + "x": 700, + "y": 162.73575 + }, + { + "x": 687.5, + "y": 147.32848 + }, + [ + { + "#": 647 + }, + { + "#": 648 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,14,2,3", + "startCol": 14, + "endCol": 14, + "startRow": 2, + "endRow": 3 + }, + { + "id": 29, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 651 + }, + "angle": 0, + "vertices": { + "#": 652 + }, + "position": { + "#": 657 + }, + "force": { + "#": 658 + }, + "torque": 0, + "positionImpulse": { + "#": 659 + }, + "constraintImpulse": { + "#": 660 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 661 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 662 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 663 + }, + "bounds": { + "#": 665 + }, + "positionPrev": { + "#": 668 + }, + "anglePrev": 0, + "axes": { + "#": 669 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 650 + }, + "sleepCounter": 0, + "region": { + "#": 672 + } + }, + [ + { + "#": 650 + } + ], + [ + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + } + ], + { + "x": 700, + "y": 137.73575, + "index": 0, + "body": { + "#": 650 + }, + "isInternal": false + }, + { + "x": 725, + "y": 137.73575, + "index": 1, + "body": { + "#": 650 + }, + "isInternal": false + }, + { + "x": 725, + "y": 162.73575, + "index": 2, + "body": { + "#": 650 + }, + "isInternal": false + }, + { + "x": 700, + "y": 162.73575, + "index": 3, + "body": { + "#": 650 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 150.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 664 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 666 + }, + "max": { + "#": 667 + } + }, + { + "x": 700, + "y": 137.73575 + }, + { + "x": 725, + "y": 162.73575 + }, + { + "x": 712.5, + "y": 147.32848 + }, + [ + { + "#": 670 + }, + { + "#": 671 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,2,3", + "startCol": 14, + "endCol": 15, + "startRow": 2, + "endRow": 3 + }, + { + "id": 30, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 674 + }, + "angle": 0, + "vertices": { + "#": 675 + }, + "position": { + "#": 680 + }, + "force": { + "#": 681 + }, + "torque": 0, + "positionImpulse": { + "#": 682 + }, + "constraintImpulse": { + "#": 683 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 684 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 685 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 686 + }, + "bounds": { + "#": 688 + }, + "positionPrev": { + "#": 691 + }, + "anglePrev": 0, + "axes": { + "#": 692 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 673 + }, + "sleepCounter": 0, + "region": { + "#": 695 + } + }, + [ + { + "#": 673 + } + ], + [ + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + } + ], + { + "x": 100, + "y": 162.73575, + "index": 0, + "body": { + "#": 673 + }, + "isInternal": false + }, + { + "x": 125, + "y": 162.73575, + "index": 1, + "body": { + "#": 673 + }, + "isInternal": false + }, + { + "x": 125, + "y": 187.73575, + "index": 2, + "body": { + "#": 673 + }, + "isInternal": false + }, + { + "x": 100, + "y": 187.73575, + "index": 3, + "body": { + "#": 673 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 687 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 689 + }, + "max": { + "#": 690 + } + }, + { + "x": 100, + "y": 162.73575 + }, + { + "x": 125, + "y": 187.73575 + }, + { + "x": 112.5, + "y": 172.32848 + }, + [ + { + "#": 693 + }, + { + "#": 694 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,3,3", + "startCol": 2, + "endCol": 2, + "startRow": 3, + "endRow": 3 + }, + { + "id": 31, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 697 + }, + "angle": 0, + "vertices": { + "#": 698 + }, + "position": { + "#": 703 + }, + "force": { + "#": 704 + }, + "torque": 0, + "positionImpulse": { + "#": 705 + }, + "constraintImpulse": { + "#": 706 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 707 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 708 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 709 + }, + "bounds": { + "#": 711 + }, + "positionPrev": { + "#": 714 + }, + "anglePrev": 0, + "axes": { + "#": 715 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 696 + }, + "sleepCounter": 0, + "region": { + "#": 718 + } + }, + [ + { + "#": 696 + } + ], + [ + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + } + ], + { + "x": 125, + "y": 162.73575, + "index": 0, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 150, + "y": 162.73575, + "index": 1, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 150, + "y": 187.73575, + "index": 2, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 125, + "y": 187.73575, + "index": 3, + "body": { + "#": 696 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 710 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 712 + }, + "max": { + "#": 713 + } + }, + { + "x": 125, + "y": 162.73575 + }, + { + "x": 150, + "y": 187.73575 + }, + { + "x": 137.5, + "y": 172.32848 + }, + [ + { + "#": 716 + }, + { + "#": 717 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,3,3", + "startCol": 2, + "endCol": 3, + "startRow": 3, + "endRow": 3 + }, + { + "id": 32, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 720 + }, + "angle": 0, + "vertices": { + "#": 721 + }, + "position": { + "#": 726 + }, + "force": { + "#": 727 + }, + "torque": 0, + "positionImpulse": { + "#": 728 + }, + "constraintImpulse": { + "#": 729 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 730 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 731 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 732 + }, + "bounds": { + "#": 734 + }, + "positionPrev": { + "#": 737 + }, + "anglePrev": 0, + "axes": { + "#": 738 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 719 + }, + "sleepCounter": 0, + "region": { + "#": 741 + } + }, + [ + { + "#": 719 + } + ], + [ + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + } + ], + { + "x": 150, + "y": 162.73575, + "index": 0, + "body": { + "#": 719 + }, + "isInternal": false + }, + { + "x": 175, + "y": 162.73575, + "index": 1, + "body": { + "#": 719 + }, + "isInternal": false + }, + { + "x": 175, + "y": 187.73575, + "index": 2, + "body": { + "#": 719 + }, + "isInternal": false + }, + { + "x": 150, + "y": 187.73575, + "index": 3, + "body": { + "#": 719 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 733 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 735 + }, + "max": { + "#": 736 + } + }, + { + "x": 150, + "y": 162.73575 + }, + { + "x": 175, + "y": 187.73575 + }, + { + "x": 162.5, + "y": 172.32848 + }, + [ + { + "#": 739 + }, + { + "#": 740 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,3,3,3", + "startCol": 3, + "endCol": 3, + "startRow": 3, + "endRow": 3 + }, + { + "id": 33, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 743 + }, + "angle": 0, + "vertices": { + "#": 744 + }, + "position": { + "#": 749 + }, + "force": { + "#": 750 + }, + "torque": 0, + "positionImpulse": { + "#": 751 + }, + "constraintImpulse": { + "#": 752 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 753 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 754 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 755 + }, + "bounds": { + "#": 757 + }, + "positionPrev": { + "#": 760 + }, + "anglePrev": 0, + "axes": { + "#": 761 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 742 + }, + "sleepCounter": 0, + "region": { + "#": 764 + } + }, + [ + { + "#": 742 + } + ], + [ + { + "#": 745 + }, + { + "#": 746 + }, + { + "#": 747 + }, + { + "#": 748 + } + ], + { + "x": 175, + "y": 162.73575, + "index": 0, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 200, + "y": 162.73575, + "index": 1, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 200, + "y": 187.73575, + "index": 2, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 175, + "y": 187.73575, + "index": 3, + "body": { + "#": 742 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 756 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 758 + }, + "max": { + "#": 759 + } + }, + { + "x": 175, + "y": 162.73575 + }, + { + "x": 200, + "y": 187.73575 + }, + { + "x": 187.5, + "y": 172.32848 + }, + [ + { + "#": 762 + }, + { + "#": 763 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,3,3", + "startCol": 3, + "endCol": 4, + "startRow": 3, + "endRow": 3 + }, + { + "id": 34, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 766 + }, + "angle": 0, + "vertices": { + "#": 767 + }, + "position": { + "#": 772 + }, + "force": { + "#": 773 + }, + "torque": 0, + "positionImpulse": { + "#": 774 + }, + "constraintImpulse": { + "#": 775 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 776 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 777 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 778 + }, + "bounds": { + "#": 780 + }, + "positionPrev": { + "#": 783 + }, + "anglePrev": 0, + "axes": { + "#": 784 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 765 + }, + "sleepCounter": 0, + "region": { + "#": 787 + } + }, + [ + { + "#": 765 + } + ], + [ + { + "#": 768 + }, + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + } + ], + { + "x": 200, + "y": 162.73575, + "index": 0, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 225, + "y": 162.73575, + "index": 1, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 225, + "y": 187.73575, + "index": 2, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 200, + "y": 187.73575, + "index": 3, + "body": { + "#": 765 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 779 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 781 + }, + "max": { + "#": 782 + } + }, + { + "x": 200, + "y": 162.73575 + }, + { + "x": 225, + "y": 187.73575 + }, + { + "x": 212.5, + "y": 172.32848 + }, + [ + { + "#": 785 + }, + { + "#": 786 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,3,3", + "startCol": 4, + "endCol": 4, + "startRow": 3, + "endRow": 3 + }, + { + "id": 35, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 789 + }, + "angle": 0, + "vertices": { + "#": 790 + }, + "position": { + "#": 795 + }, + "force": { + "#": 796 + }, + "torque": 0, + "positionImpulse": { + "#": 797 + }, + "constraintImpulse": { + "#": 798 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 799 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 800 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 801 + }, + "bounds": { + "#": 803 + }, + "positionPrev": { + "#": 806 + }, + "anglePrev": 0, + "axes": { + "#": 807 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 788 + }, + "sleepCounter": 0, + "region": { + "#": 810 + } + }, + [ + { + "#": 788 + } + ], + [ + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + } + ], + { + "x": 225, + "y": 162.73575, + "index": 0, + "body": { + "#": 788 + }, + "isInternal": false + }, + { + "x": 250, + "y": 162.73575, + "index": 1, + "body": { + "#": 788 + }, + "isInternal": false + }, + { + "x": 250, + "y": 187.73575, + "index": 2, + "body": { + "#": 788 + }, + "isInternal": false + }, + { + "x": 225, + "y": 187.73575, + "index": 3, + "body": { + "#": 788 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 802 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 804 + }, + "max": { + "#": 805 + } + }, + { + "x": 225, + "y": 162.73575 + }, + { + "x": 250, + "y": 187.73575 + }, + { + "x": 237.5, + "y": 172.32848 + }, + [ + { + "#": 808 + }, + { + "#": 809 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,3,3", + "startCol": 4, + "endCol": 5, + "startRow": 3, + "endRow": 3 + }, + { + "id": 36, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 812 + }, + "angle": 0, + "vertices": { + "#": 813 + }, + "position": { + "#": 818 + }, + "force": { + "#": 819 + }, + "torque": 0, + "positionImpulse": { + "#": 820 + }, + "constraintImpulse": { + "#": 821 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 822 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 823 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 824 + }, + "bounds": { + "#": 826 + }, + "positionPrev": { + "#": 829 + }, + "anglePrev": 0, + "axes": { + "#": 830 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 811 + }, + "sleepCounter": 0, + "region": { + "#": 833 + } + }, + [ + { + "#": 811 + } + ], + [ + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + } + ], + { + "x": 250, + "y": 162.73575, + "index": 0, + "body": { + "#": 811 + }, + "isInternal": false + }, + { + "x": 275, + "y": 162.73575, + "index": 1, + "body": { + "#": 811 + }, + "isInternal": false + }, + { + "x": 275, + "y": 187.73575, + "index": 2, + "body": { + "#": 811 + }, + "isInternal": false + }, + { + "x": 250, + "y": 187.73575, + "index": 3, + "body": { + "#": 811 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 825 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 827 + }, + "max": { + "#": 828 + } + }, + { + "x": 250, + "y": 162.73575 + }, + { + "x": 275, + "y": 187.73575 + }, + { + "x": 262.5, + "y": 172.32848 + }, + [ + { + "#": 831 + }, + { + "#": 832 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,3,3", + "startCol": 5, + "endCol": 5, + "startRow": 3, + "endRow": 3 + }, + { + "id": 37, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 835 + }, + "angle": 0, + "vertices": { + "#": 836 + }, + "position": { + "#": 841 + }, + "force": { + "#": 842 + }, + "torque": 0, + "positionImpulse": { + "#": 843 + }, + "constraintImpulse": { + "#": 844 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 845 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 846 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 847 + }, + "bounds": { + "#": 849 + }, + "positionPrev": { + "#": 852 + }, + "anglePrev": 0, + "axes": { + "#": 853 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 834 + }, + "sleepCounter": 0, + "region": { + "#": 856 + } + }, + [ + { + "#": 834 + } + ], + [ + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + } + ], + { + "x": 275, + "y": 162.73575, + "index": 0, + "body": { + "#": 834 + }, + "isInternal": false + }, + { + "x": 300, + "y": 162.73575, + "index": 1, + "body": { + "#": 834 + }, + "isInternal": false + }, + { + "x": 300, + "y": 187.73575, + "index": 2, + "body": { + "#": 834 + }, + "isInternal": false + }, + { + "x": 275, + "y": 187.73575, + "index": 3, + "body": { + "#": 834 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 848 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 850 + }, + "max": { + "#": 851 + } + }, + { + "x": 275, + "y": 162.73575 + }, + { + "x": 300, + "y": 187.73575 + }, + { + "x": 287.5, + "y": 172.32848 + }, + [ + { + "#": 854 + }, + { + "#": 855 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,3,3", + "startCol": 5, + "endCol": 6, + "startRow": 3, + "endRow": 3 + }, + { + "id": 38, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 858 + }, + "angle": 0, + "vertices": { + "#": 859 + }, + "position": { + "#": 864 + }, + "force": { + "#": 865 + }, + "torque": 0, + "positionImpulse": { + "#": 866 + }, + "constraintImpulse": { + "#": 867 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 868 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 869 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 870 + }, + "bounds": { + "#": 872 + }, + "positionPrev": { + "#": 875 + }, + "anglePrev": 0, + "axes": { + "#": 876 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 857 + }, + "sleepCounter": 0, + "region": { + "#": 879 + } + }, + [ + { + "#": 857 + } + ], + [ + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + } + ], + { + "x": 300, + "y": 162.73575, + "index": 0, + "body": { + "#": 857 + }, + "isInternal": false + }, + { + "x": 325, + "y": 162.73575, + "index": 1, + "body": { + "#": 857 + }, + "isInternal": false + }, + { + "x": 325, + "y": 187.73575, + "index": 2, + "body": { + "#": 857 + }, + "isInternal": false + }, + { + "x": 300, + "y": 187.73575, + "index": 3, + "body": { + "#": 857 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 871 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 873 + }, + "max": { + "#": 874 + } + }, + { + "x": 300, + "y": 162.73575 + }, + { + "x": 325, + "y": 187.73575 + }, + { + "x": 312.5, + "y": 172.32848 + }, + [ + { + "#": 877 + }, + { + "#": 878 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,3,3", + "startCol": 6, + "endCol": 6, + "startRow": 3, + "endRow": 3 + }, + { + "id": 39, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 881 + }, + "angle": 0, + "vertices": { + "#": 882 + }, + "position": { + "#": 887 + }, + "force": { + "#": 888 + }, + "torque": 0, + "positionImpulse": { + "#": 889 + }, + "constraintImpulse": { + "#": 890 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 891 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 892 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 893 + }, + "bounds": { + "#": 895 + }, + "positionPrev": { + "#": 898 + }, + "anglePrev": 0, + "axes": { + "#": 899 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 880 + }, + "sleepCounter": 0, + "region": { + "#": 902 + } + }, + [ + { + "#": 880 + } + ], + [ + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + }, + { + "#": 886 + } + ], + { + "x": 325, + "y": 162.73575, + "index": 0, + "body": { + "#": 880 + }, + "isInternal": false + }, + { + "x": 350, + "y": 162.73575, + "index": 1, + "body": { + "#": 880 + }, + "isInternal": false + }, + { + "x": 350, + "y": 187.73575, + "index": 2, + "body": { + "#": 880 + }, + "isInternal": false + }, + { + "x": 325, + "y": 187.73575, + "index": 3, + "body": { + "#": 880 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 894 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 896 + }, + "max": { + "#": 897 + } + }, + { + "x": 325, + "y": 162.73575 + }, + { + "x": 350, + "y": 187.73575 + }, + { + "x": 337.5, + "y": 172.32848 + }, + [ + { + "#": 900 + }, + { + "#": 901 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,3,3", + "startCol": 6, + "endCol": 7, + "startRow": 3, + "endRow": 3 + }, + { + "id": 40, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 904 + }, + "angle": 0, + "vertices": { + "#": 905 + }, + "position": { + "#": 910 + }, + "force": { + "#": 911 + }, + "torque": 0, + "positionImpulse": { + "#": 912 + }, + "constraintImpulse": { + "#": 913 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 914 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 915 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 916 + }, + "bounds": { + "#": 918 + }, + "positionPrev": { + "#": 921 + }, + "anglePrev": 0, + "axes": { + "#": 922 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 903 + }, + "sleepCounter": 0, + "region": { + "#": 925 + } + }, + [ + { + "#": 903 + } + ], + [ + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + }, + { + "#": 909 + } + ], + { + "x": 350, + "y": 162.73575, + "index": 0, + "body": { + "#": 903 + }, + "isInternal": false + }, + { + "x": 375, + "y": 162.73575, + "index": 1, + "body": { + "#": 903 + }, + "isInternal": false + }, + { + "x": 375, + "y": 187.73575, + "index": 2, + "body": { + "#": 903 + }, + "isInternal": false + }, + { + "x": 350, + "y": 187.73575, + "index": 3, + "body": { + "#": 903 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 917 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 919 + }, + "max": { + "#": 920 + } + }, + { + "x": 350, + "y": 162.73575 + }, + { + "x": 375, + "y": 187.73575 + }, + { + "x": 362.5, + "y": 172.32848 + }, + [ + { + "#": 923 + }, + { + "#": 924 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,3,3", + "startCol": 7, + "endCol": 7, + "startRow": 3, + "endRow": 3 + }, + { + "id": 41, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 927 + }, + "angle": 0, + "vertices": { + "#": 928 + }, + "position": { + "#": 933 + }, + "force": { + "#": 934 + }, + "torque": 0, + "positionImpulse": { + "#": 935 + }, + "constraintImpulse": { + "#": 936 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 937 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 938 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 939 + }, + "bounds": { + "#": 941 + }, + "positionPrev": { + "#": 944 + }, + "anglePrev": 0, + "axes": { + "#": 945 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 926 + }, + "sleepCounter": 0, + "region": { + "#": 948 + } + }, + [ + { + "#": 926 + } + ], + [ + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + }, + { + "#": 932 + } + ], + { + "x": 375, + "y": 162.73575, + "index": 0, + "body": { + "#": 926 + }, + "isInternal": false + }, + { + "x": 400, + "y": 162.73575, + "index": 1, + "body": { + "#": 926 + }, + "isInternal": false + }, + { + "x": 400, + "y": 187.73575, + "index": 2, + "body": { + "#": 926 + }, + "isInternal": false + }, + { + "x": 375, + "y": 187.73575, + "index": 3, + "body": { + "#": 926 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 940 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 942 + }, + "max": { + "#": 943 + } + }, + { + "x": 375, + "y": 162.73575 + }, + { + "x": 400, + "y": 187.73575 + }, + { + "x": 387.5, + "y": 172.32848 + }, + [ + { + "#": 946 + }, + { + "#": 947 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,3,3", + "startCol": 7, + "endCol": 8, + "startRow": 3, + "endRow": 3 + }, + { + "id": 42, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 950 + }, + "angle": 0, + "vertices": { + "#": 951 + }, + "position": { + "#": 956 + }, + "force": { + "#": 957 + }, + "torque": 0, + "positionImpulse": { + "#": 958 + }, + "constraintImpulse": { + "#": 959 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 960 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 961 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 962 + }, + "bounds": { + "#": 964 + }, + "positionPrev": { + "#": 967 + }, + "anglePrev": 0, + "axes": { + "#": 968 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 949 + }, + "sleepCounter": 0, + "region": { + "#": 971 + } + }, + [ + { + "#": 949 + } + ], + [ + { + "#": 952 + }, + { + "#": 953 + }, + { + "#": 954 + }, + { + "#": 955 + } + ], + { + "x": 400, + "y": 162.73575, + "index": 0, + "body": { + "#": 949 + }, + "isInternal": false + }, + { + "x": 425, + "y": 162.73575, + "index": 1, + "body": { + "#": 949 + }, + "isInternal": false + }, + { + "x": 425, + "y": 187.73575, + "index": 2, + "body": { + "#": 949 + }, + "isInternal": false + }, + { + "x": 400, + "y": 187.73575, + "index": 3, + "body": { + "#": 949 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 963 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 965 + }, + "max": { + "#": 966 + } + }, + { + "x": 400, + "y": 162.73575 + }, + { + "x": 425, + "y": 187.73575 + }, + { + "x": 412.5, + "y": 172.32848 + }, + [ + { + "#": 969 + }, + { + "#": 970 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,8,3,3", + "startCol": 8, + "endCol": 8, + "startRow": 3, + "endRow": 3 + }, + { + "id": 43, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 973 + }, + "angle": 0, + "vertices": { + "#": 974 + }, + "position": { + "#": 979 + }, + "force": { + "#": 980 + }, + "torque": 0, + "positionImpulse": { + "#": 981 + }, + "constraintImpulse": { + "#": 982 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 983 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 984 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 985 + }, + "bounds": { + "#": 987 + }, + "positionPrev": { + "#": 990 + }, + "anglePrev": 0, + "axes": { + "#": 991 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 972 + }, + "sleepCounter": 0, + "region": { + "#": 994 + } + }, + [ + { + "#": 972 + } + ], + [ + { + "#": 975 + }, + { + "#": 976 + }, + { + "#": 977 + }, + { + "#": 978 + } + ], + { + "x": 425, + "y": 162.73575, + "index": 0, + "body": { + "#": 972 + }, + "isInternal": false + }, + { + "x": 450, + "y": 162.73575, + "index": 1, + "body": { + "#": 972 + }, + "isInternal": false + }, + { + "x": 450, + "y": 187.73575, + "index": 2, + "body": { + "#": 972 + }, + "isInternal": false + }, + { + "x": 425, + "y": 187.73575, + "index": 3, + "body": { + "#": 972 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 986 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 988 + }, + "max": { + "#": 989 + } + }, + { + "x": 425, + "y": 162.73575 + }, + { + "x": 450, + "y": 187.73575 + }, + { + "x": 437.5, + "y": 172.32848 + }, + [ + { + "#": 992 + }, + { + "#": 993 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,3,3", + "startCol": 8, + "endCol": 9, + "startRow": 3, + "endRow": 3 + }, + { + "id": 44, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 996 + }, + "angle": 0, + "vertices": { + "#": 997 + }, + "position": { + "#": 1002 + }, + "force": { + "#": 1003 + }, + "torque": 0, + "positionImpulse": { + "#": 1004 + }, + "constraintImpulse": { + "#": 1005 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1006 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1007 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1008 + }, + "bounds": { + "#": 1010 + }, + "positionPrev": { + "#": 1013 + }, + "anglePrev": 0, + "axes": { + "#": 1014 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 995 + }, + "sleepCounter": 0, + "region": { + "#": 1017 + } + }, + [ + { + "#": 995 + } + ], + [ + { + "#": 998 + }, + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + } + ], + { + "x": 450, + "y": 162.73575, + "index": 0, + "body": { + "#": 995 + }, + "isInternal": false + }, + { + "x": 475, + "y": 162.73575, + "index": 1, + "body": { + "#": 995 + }, + "isInternal": false + }, + { + "x": 475, + "y": 187.73575, + "index": 2, + "body": { + "#": 995 + }, + "isInternal": false + }, + { + "x": 450, + "y": 187.73575, + "index": 3, + "body": { + "#": 995 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1009 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1011 + }, + "max": { + "#": 1012 + } + }, + { + "x": 450, + "y": 162.73575 + }, + { + "x": 475, + "y": 187.73575 + }, + { + "x": 462.5, + "y": 172.32848 + }, + [ + { + "#": 1015 + }, + { + "#": 1016 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,3,3", + "startCol": 9, + "endCol": 9, + "startRow": 3, + "endRow": 3 + }, + { + "id": 45, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1019 + }, + "angle": 0, + "vertices": { + "#": 1020 + }, + "position": { + "#": 1025 + }, + "force": { + "#": 1026 + }, + "torque": 0, + "positionImpulse": { + "#": 1027 + }, + "constraintImpulse": { + "#": 1028 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1029 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1030 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1031 + }, + "bounds": { + "#": 1033 + }, + "positionPrev": { + "#": 1036 + }, + "anglePrev": 0, + "axes": { + "#": 1037 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1018 + }, + "sleepCounter": 0, + "region": { + "#": 1040 + } + }, + [ + { + "#": 1018 + } + ], + [ + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + } + ], + { + "x": 475, + "y": 162.73575, + "index": 0, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 500, + "y": 162.73575, + "index": 1, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 500, + "y": 187.73575, + "index": 2, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 475, + "y": 187.73575, + "index": 3, + "body": { + "#": 1018 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1032 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1034 + }, + "max": { + "#": 1035 + } + }, + { + "x": 475, + "y": 162.73575 + }, + { + "x": 500, + "y": 187.73575 + }, + { + "x": 487.5, + "y": 172.32848 + }, + [ + { + "#": 1038 + }, + { + "#": 1039 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,3,3", + "startCol": 9, + "endCol": 10, + "startRow": 3, + "endRow": 3 + }, + { + "id": 46, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1042 + }, + "angle": 0, + "vertices": { + "#": 1043 + }, + "position": { + "#": 1048 + }, + "force": { + "#": 1049 + }, + "torque": 0, + "positionImpulse": { + "#": 1050 + }, + "constraintImpulse": { + "#": 1051 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1052 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1053 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1054 + }, + "bounds": { + "#": 1056 + }, + "positionPrev": { + "#": 1059 + }, + "anglePrev": 0, + "axes": { + "#": 1060 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1041 + }, + "sleepCounter": 0, + "region": { + "#": 1063 + } + }, + [ + { + "#": 1041 + } + ], + [ + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + } + ], + { + "x": 500, + "y": 162.73575, + "index": 0, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 525, + "y": 162.73575, + "index": 1, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 525, + "y": 187.73575, + "index": 2, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 500, + "y": 187.73575, + "index": 3, + "body": { + "#": 1041 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1055 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1057 + }, + "max": { + "#": 1058 + } + }, + { + "x": 500, + "y": 162.73575 + }, + { + "x": 525, + "y": 187.73575 + }, + { + "x": 512.5, + "y": 172.32848 + }, + [ + { + "#": 1061 + }, + { + "#": 1062 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,3,3", + "startCol": 10, + "endCol": 10, + "startRow": 3, + "endRow": 3 + }, + { + "id": 47, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1065 + }, + "angle": 0, + "vertices": { + "#": 1066 + }, + "position": { + "#": 1071 + }, + "force": { + "#": 1072 + }, + "torque": 0, + "positionImpulse": { + "#": 1073 + }, + "constraintImpulse": { + "#": 1074 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1075 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1076 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1077 + }, + "bounds": { + "#": 1079 + }, + "positionPrev": { + "#": 1082 + }, + "anglePrev": 0, + "axes": { + "#": 1083 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1064 + }, + "sleepCounter": 0, + "region": { + "#": 1086 + } + }, + [ + { + "#": 1064 + } + ], + [ + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + } + ], + { + "x": 525, + "y": 162.73575, + "index": 0, + "body": { + "#": 1064 + }, + "isInternal": false + }, + { + "x": 550, + "y": 162.73575, + "index": 1, + "body": { + "#": 1064 + }, + "isInternal": false + }, + { + "x": 550, + "y": 187.73575, + "index": 2, + "body": { + "#": 1064 + }, + "isInternal": false + }, + { + "x": 525, + "y": 187.73575, + "index": 3, + "body": { + "#": 1064 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1078 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1080 + }, + "max": { + "#": 1081 + } + }, + { + "x": 525, + "y": 162.73575 + }, + { + "x": 550, + "y": 187.73575 + }, + { + "x": 537.5, + "y": 172.32848 + }, + [ + { + "#": 1084 + }, + { + "#": 1085 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,3,3", + "startCol": 10, + "endCol": 11, + "startRow": 3, + "endRow": 3 + }, + { + "id": 48, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1088 + }, + "angle": 0, + "vertices": { + "#": 1089 + }, + "position": { + "#": 1094 + }, + "force": { + "#": 1095 + }, + "torque": 0, + "positionImpulse": { + "#": 1096 + }, + "constraintImpulse": { + "#": 1097 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1098 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1099 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1100 + }, + "bounds": { + "#": 1102 + }, + "positionPrev": { + "#": 1105 + }, + "anglePrev": 0, + "axes": { + "#": 1106 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1087 + }, + "sleepCounter": 0, + "region": { + "#": 1109 + } + }, + [ + { + "#": 1087 + } + ], + [ + { + "#": 1090 + }, + { + "#": 1091 + }, + { + "#": 1092 + }, + { + "#": 1093 + } + ], + { + "x": 550, + "y": 162.73575, + "index": 0, + "body": { + "#": 1087 + }, + "isInternal": false + }, + { + "x": 575, + "y": 162.73575, + "index": 1, + "body": { + "#": 1087 + }, + "isInternal": false + }, + { + "x": 575, + "y": 187.73575, + "index": 2, + "body": { + "#": 1087 + }, + "isInternal": false + }, + { + "x": 550, + "y": 187.73575, + "index": 3, + "body": { + "#": 1087 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1101 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1103 + }, + "max": { + "#": 1104 + } + }, + { + "x": 550, + "y": 162.73575 + }, + { + "x": 575, + "y": 187.73575 + }, + { + "x": 562.5, + "y": 172.32848 + }, + [ + { + "#": 1107 + }, + { + "#": 1108 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,11,3,3", + "startCol": 11, + "endCol": 11, + "startRow": 3, + "endRow": 3 + }, + { + "id": 49, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1111 + }, + "angle": 0, + "vertices": { + "#": 1112 + }, + "position": { + "#": 1117 + }, + "force": { + "#": 1118 + }, + "torque": 0, + "positionImpulse": { + "#": 1119 + }, + "constraintImpulse": { + "#": 1120 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1121 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1122 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1123 + }, + "bounds": { + "#": 1125 + }, + "positionPrev": { + "#": 1128 + }, + "anglePrev": 0, + "axes": { + "#": 1129 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1110 + }, + "sleepCounter": 0, + "region": { + "#": 1132 + } + }, + [ + { + "#": 1110 + } + ], + [ + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + } + ], + { + "x": 575, + "y": 162.73575, + "index": 0, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 600, + "y": 162.73575, + "index": 1, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 600, + "y": 187.73575, + "index": 2, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 575, + "y": 187.73575, + "index": 3, + "body": { + "#": 1110 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1124 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1126 + }, + "max": { + "#": 1127 + } + }, + { + "x": 575, + "y": 162.73575 + }, + { + "x": 600, + "y": 187.73575 + }, + { + "x": 587.5, + "y": 172.32848 + }, + [ + { + "#": 1130 + }, + { + "#": 1131 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,3,3", + "startCol": 11, + "endCol": 12, + "startRow": 3, + "endRow": 3 + }, + { + "id": 50, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1134 + }, + "angle": 0, + "vertices": { + "#": 1135 + }, + "position": { + "#": 1140 + }, + "force": { + "#": 1141 + }, + "torque": 0, + "positionImpulse": { + "#": 1142 + }, + "constraintImpulse": { + "#": 1143 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1144 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1145 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1146 + }, + "bounds": { + "#": 1148 + }, + "positionPrev": { + "#": 1151 + }, + "anglePrev": 0, + "axes": { + "#": 1152 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1133 + }, + "sleepCounter": 0, + "region": { + "#": 1155 + } + }, + [ + { + "#": 1133 + } + ], + [ + { + "#": 1136 + }, + { + "#": 1137 + }, + { + "#": 1138 + }, + { + "#": 1139 + } + ], + { + "x": 600, + "y": 162.73575, + "index": 0, + "body": { + "#": 1133 + }, + "isInternal": false + }, + { + "x": 625, + "y": 162.73575, + "index": 1, + "body": { + "#": 1133 + }, + "isInternal": false + }, + { + "x": 625, + "y": 187.73575, + "index": 2, + "body": { + "#": 1133 + }, + "isInternal": false + }, + { + "x": 600, + "y": 187.73575, + "index": 3, + "body": { + "#": 1133 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1147 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1149 + }, + "max": { + "#": 1150 + } + }, + { + "x": 600, + "y": 162.73575 + }, + { + "x": 625, + "y": 187.73575 + }, + { + "x": 612.5, + "y": 172.32848 + }, + [ + { + "#": 1153 + }, + { + "#": 1154 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,3,3", + "startCol": 12, + "endCol": 13, + "startRow": 3, + "endRow": 3 + }, + { + "id": 51, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1157 + }, + "angle": 0, + "vertices": { + "#": 1158 + }, + "position": { + "#": 1163 + }, + "force": { + "#": 1164 + }, + "torque": 0, + "positionImpulse": { + "#": 1165 + }, + "constraintImpulse": { + "#": 1166 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1167 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1168 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1169 + }, + "bounds": { + "#": 1171 + }, + "positionPrev": { + "#": 1174 + }, + "anglePrev": 0, + "axes": { + "#": 1175 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1156 + }, + "sleepCounter": 0, + "region": { + "#": 1178 + } + }, + [ + { + "#": 1156 + } + ], + [ + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + } + ], + { + "x": 625, + "y": 162.73575, + "index": 0, + "body": { + "#": 1156 + }, + "isInternal": false + }, + { + "x": 650, + "y": 162.73575, + "index": 1, + "body": { + "#": 1156 + }, + "isInternal": false + }, + { + "x": 650, + "y": 187.73575, + "index": 2, + "body": { + "#": 1156 + }, + "isInternal": false + }, + { + "x": 625, + "y": 187.73575, + "index": 3, + "body": { + "#": 1156 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1170 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1172 + }, + "max": { + "#": 1173 + } + }, + { + "x": 625, + "y": 162.73575 + }, + { + "x": 650, + "y": 187.73575 + }, + { + "x": 637.5, + "y": 172.32848 + }, + [ + { + "#": 1176 + }, + { + "#": 1177 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,13,3,3", + "startCol": 13, + "endCol": 13, + "startRow": 3, + "endRow": 3 + }, + { + "id": 52, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1180 + }, + "angle": 0, + "vertices": { + "#": 1181 + }, + "position": { + "#": 1186 + }, + "force": { + "#": 1187 + }, + "torque": 0, + "positionImpulse": { + "#": 1188 + }, + "constraintImpulse": { + "#": 1189 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1190 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1191 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1192 + }, + "bounds": { + "#": 1194 + }, + "positionPrev": { + "#": 1197 + }, + "anglePrev": 0, + "axes": { + "#": 1198 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1179 + }, + "sleepCounter": 0, + "region": { + "#": 1201 + } + }, + [ + { + "#": 1179 + } + ], + [ + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + } + ], + { + "x": 650, + "y": 162.73575, + "index": 0, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 675, + "y": 162.73575, + "index": 1, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 675, + "y": 187.73575, + "index": 2, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 650, + "y": 187.73575, + "index": 3, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1193 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1195 + }, + "max": { + "#": 1196 + } + }, + { + "x": 650, + "y": 162.73575 + }, + { + "x": 675, + "y": 187.73575 + }, + { + "x": 662.5, + "y": 172.32848 + }, + [ + { + "#": 1199 + }, + { + "#": 1200 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,3,3", + "startCol": 13, + "endCol": 14, + "startRow": 3, + "endRow": 3 + }, + { + "id": 53, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1203 + }, + "angle": 0, + "vertices": { + "#": 1204 + }, + "position": { + "#": 1209 + }, + "force": { + "#": 1210 + }, + "torque": 0, + "positionImpulse": { + "#": 1211 + }, + "constraintImpulse": { + "#": 1212 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1213 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1214 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1215 + }, + "bounds": { + "#": 1217 + }, + "positionPrev": { + "#": 1220 + }, + "anglePrev": 0, + "axes": { + "#": 1221 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1202 + }, + "sleepCounter": 0, + "region": { + "#": 1224 + } + }, + [ + { + "#": 1202 + } + ], + [ + { + "#": 1205 + }, + { + "#": 1206 + }, + { + "#": 1207 + }, + { + "#": 1208 + } + ], + { + "x": 675, + "y": 162.73575, + "index": 0, + "body": { + "#": 1202 + }, + "isInternal": false + }, + { + "x": 700, + "y": 162.73575, + "index": 1, + "body": { + "#": 1202 + }, + "isInternal": false + }, + { + "x": 700, + "y": 187.73575, + "index": 2, + "body": { + "#": 1202 + }, + "isInternal": false + }, + { + "x": 675, + "y": 187.73575, + "index": 3, + "body": { + "#": 1202 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1216 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1218 + }, + "max": { + "#": 1219 + } + }, + { + "x": 675, + "y": 162.73575 + }, + { + "x": 700, + "y": 187.73575 + }, + { + "x": 687.5, + "y": 172.32848 + }, + [ + { + "#": 1222 + }, + { + "#": 1223 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,14,3,3", + "startCol": 14, + "endCol": 14, + "startRow": 3, + "endRow": 3 + }, + { + "id": 54, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1226 + }, + "angle": 0, + "vertices": { + "#": 1227 + }, + "position": { + "#": 1232 + }, + "force": { + "#": 1233 + }, + "torque": 0, + "positionImpulse": { + "#": 1234 + }, + "constraintImpulse": { + "#": 1235 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1236 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1237 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1238 + }, + "bounds": { + "#": 1240 + }, + "positionPrev": { + "#": 1243 + }, + "anglePrev": 0, + "axes": { + "#": 1244 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1225 + }, + "sleepCounter": 0, + "region": { + "#": 1247 + } + }, + [ + { + "#": 1225 + } + ], + [ + { + "#": 1228 + }, + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + } + ], + { + "x": 700, + "y": 162.73575, + "index": 0, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 725, + "y": 162.73575, + "index": 1, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 725, + "y": 187.73575, + "index": 2, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 700, + "y": 187.73575, + "index": 3, + "body": { + "#": 1225 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 175.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1239 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1241 + }, + "max": { + "#": 1242 + } + }, + { + "x": 700, + "y": 162.73575 + }, + { + "x": 725, + "y": 187.73575 + }, + { + "x": 712.5, + "y": 172.32848 + }, + [ + { + "#": 1245 + }, + { + "#": 1246 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,3,3", + "startCol": 14, + "endCol": 15, + "startRow": 3, + "endRow": 3 + }, + { + "id": 55, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1249 + }, + "angle": 0, + "vertices": { + "#": 1250 + }, + "position": { + "#": 1255 + }, + "force": { + "#": 1256 + }, + "torque": 0, + "positionImpulse": { + "#": 1257 + }, + "constraintImpulse": { + "#": 1258 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1259 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1260 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1261 + }, + "bounds": { + "#": 1263 + }, + "positionPrev": { + "#": 1266 + }, + "anglePrev": 0, + "axes": { + "#": 1267 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1248 + }, + "sleepCounter": 0, + "region": { + "#": 1270 + } + }, + [ + { + "#": 1248 + } + ], + [ + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + }, + { + "#": 1254 + } + ], + { + "x": 100, + "y": 187.73575, + "index": 0, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 125, + "y": 187.73575, + "index": 1, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 125, + "y": 212.73575, + "index": 2, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 100, + "y": 212.73575, + "index": 3, + "body": { + "#": 1248 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1262 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1264 + }, + "max": { + "#": 1265 + } + }, + { + "x": 100, + "y": 187.73575 + }, + { + "x": 125, + "y": 212.73575 + }, + { + "x": 112.5, + "y": 197.32848 + }, + [ + { + "#": 1268 + }, + { + "#": 1269 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,3,4", + "startCol": 2, + "endCol": 2, + "startRow": 3, + "endRow": 4 + }, + { + "id": 56, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1272 + }, + "angle": 0, + "vertices": { + "#": 1273 + }, + "position": { + "#": 1278 + }, + "force": { + "#": 1279 + }, + "torque": 0, + "positionImpulse": { + "#": 1280 + }, + "constraintImpulse": { + "#": 1281 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1282 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1283 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1284 + }, + "bounds": { + "#": 1286 + }, + "positionPrev": { + "#": 1289 + }, + "anglePrev": 0, + "axes": { + "#": 1290 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1271 + }, + "sleepCounter": 0, + "region": { + "#": 1293 + } + }, + [ + { + "#": 1271 + } + ], + [ + { + "#": 1274 + }, + { + "#": 1275 + }, + { + "#": 1276 + }, + { + "#": 1277 + } + ], + { + "x": 125, + "y": 187.73575, + "index": 0, + "body": { + "#": 1271 + }, + "isInternal": false + }, + { + "x": 150, + "y": 187.73575, + "index": 1, + "body": { + "#": 1271 + }, + "isInternal": false + }, + { + "x": 150, + "y": 212.73575, + "index": 2, + "body": { + "#": 1271 + }, + "isInternal": false + }, + { + "x": 125, + "y": 212.73575, + "index": 3, + "body": { + "#": 1271 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1285 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1287 + }, + "max": { + "#": 1288 + } + }, + { + "x": 125, + "y": 187.73575 + }, + { + "x": 150, + "y": 212.73575 + }, + { + "x": 137.5, + "y": 197.32848 + }, + [ + { + "#": 1291 + }, + { + "#": 1292 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,3,4", + "startCol": 2, + "endCol": 3, + "startRow": 3, + "endRow": 4 + }, + { + "id": 57, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1295 + }, + "angle": 0, + "vertices": { + "#": 1296 + }, + "position": { + "#": 1301 + }, + "force": { + "#": 1302 + }, + "torque": 0, + "positionImpulse": { + "#": 1303 + }, + "constraintImpulse": { + "#": 1304 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1305 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1306 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1307 + }, + "bounds": { + "#": 1309 + }, + "positionPrev": { + "#": 1312 + }, + "anglePrev": 0, + "axes": { + "#": 1313 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1294 + }, + "sleepCounter": 0, + "region": { + "#": 1316 + } + }, + [ + { + "#": 1294 + } + ], + [ + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + } + ], + { + "x": 150, + "y": 187.73575, + "index": 0, + "body": { + "#": 1294 + }, + "isInternal": false + }, + { + "x": 175, + "y": 187.73575, + "index": 1, + "body": { + "#": 1294 + }, + "isInternal": false + }, + { + "x": 175, + "y": 212.73575, + "index": 2, + "body": { + "#": 1294 + }, + "isInternal": false + }, + { + "x": 150, + "y": 212.73575, + "index": 3, + "body": { + "#": 1294 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1308 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1310 + }, + "max": { + "#": 1311 + } + }, + { + "x": 150, + "y": 187.73575 + }, + { + "x": 175, + "y": 212.73575 + }, + { + "x": 162.5, + "y": 197.32848 + }, + [ + { + "#": 1314 + }, + { + "#": 1315 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,3,3,4", + "startCol": 3, + "endCol": 3, + "startRow": 3, + "endRow": 4 + }, + { + "id": 58, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1318 + }, + "angle": 0, + "vertices": { + "#": 1319 + }, + "position": { + "#": 1324 + }, + "force": { + "#": 1325 + }, + "torque": 0, + "positionImpulse": { + "#": 1326 + }, + "constraintImpulse": { + "#": 1327 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1328 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1329 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1330 + }, + "bounds": { + "#": 1332 + }, + "positionPrev": { + "#": 1335 + }, + "anglePrev": 0, + "axes": { + "#": 1336 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1317 + }, + "sleepCounter": 0, + "region": { + "#": 1339 + } + }, + [ + { + "#": 1317 + } + ], + [ + { + "#": 1320 + }, + { + "#": 1321 + }, + { + "#": 1322 + }, + { + "#": 1323 + } + ], + { + "x": 175, + "y": 187.73575, + "index": 0, + "body": { + "#": 1317 + }, + "isInternal": false + }, + { + "x": 200, + "y": 187.73575, + "index": 1, + "body": { + "#": 1317 + }, + "isInternal": false + }, + { + "x": 200, + "y": 212.73575, + "index": 2, + "body": { + "#": 1317 + }, + "isInternal": false + }, + { + "x": 175, + "y": 212.73575, + "index": 3, + "body": { + "#": 1317 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1331 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1333 + }, + "max": { + "#": 1334 + } + }, + { + "x": 175, + "y": 187.73575 + }, + { + "x": 200, + "y": 212.73575 + }, + { + "x": 187.5, + "y": 197.32848 + }, + [ + { + "#": 1337 + }, + { + "#": 1338 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,3,4", + "startCol": 3, + "endCol": 4, + "startRow": 3, + "endRow": 4 + }, + { + "id": 59, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1341 + }, + "angle": 0, + "vertices": { + "#": 1342 + }, + "position": { + "#": 1347 + }, + "force": { + "#": 1348 + }, + "torque": 0, + "positionImpulse": { + "#": 1349 + }, + "constraintImpulse": { + "#": 1350 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1351 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1352 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1353 + }, + "bounds": { + "#": 1355 + }, + "positionPrev": { + "#": 1358 + }, + "anglePrev": 0, + "axes": { + "#": 1359 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1340 + }, + "sleepCounter": 0, + "region": { + "#": 1362 + } + }, + [ + { + "#": 1340 + } + ], + [ + { + "#": 1343 + }, + { + "#": 1344 + }, + { + "#": 1345 + }, + { + "#": 1346 + } + ], + { + "x": 200, + "y": 187.73575, + "index": 0, + "body": { + "#": 1340 + }, + "isInternal": false + }, + { + "x": 225, + "y": 187.73575, + "index": 1, + "body": { + "#": 1340 + }, + "isInternal": false + }, + { + "x": 225, + "y": 212.73575, + "index": 2, + "body": { + "#": 1340 + }, + "isInternal": false + }, + { + "x": 200, + "y": 212.73575, + "index": 3, + "body": { + "#": 1340 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1354 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1356 + }, + "max": { + "#": 1357 + } + }, + { + "x": 200, + "y": 187.73575 + }, + { + "x": 225, + "y": 212.73575 + }, + { + "x": 212.5, + "y": 197.32848 + }, + [ + { + "#": 1360 + }, + { + "#": 1361 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,3,4", + "startCol": 4, + "endCol": 4, + "startRow": 3, + "endRow": 4 + }, + { + "id": 60, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1364 + }, + "angle": 0, + "vertices": { + "#": 1365 + }, + "position": { + "#": 1370 + }, + "force": { + "#": 1371 + }, + "torque": 0, + "positionImpulse": { + "#": 1372 + }, + "constraintImpulse": { + "#": 1373 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1374 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1375 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1376 + }, + "bounds": { + "#": 1378 + }, + "positionPrev": { + "#": 1381 + }, + "anglePrev": 0, + "axes": { + "#": 1382 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1363 + }, + "sleepCounter": 0, + "region": { + "#": 1385 + } + }, + [ + { + "#": 1363 + } + ], + [ + { + "#": 1366 + }, + { + "#": 1367 + }, + { + "#": 1368 + }, + { + "#": 1369 + } + ], + { + "x": 225, + "y": 187.73575, + "index": 0, + "body": { + "#": 1363 + }, + "isInternal": false + }, + { + "x": 250, + "y": 187.73575, + "index": 1, + "body": { + "#": 1363 + }, + "isInternal": false + }, + { + "x": 250, + "y": 212.73575, + "index": 2, + "body": { + "#": 1363 + }, + "isInternal": false + }, + { + "x": 225, + "y": 212.73575, + "index": 3, + "body": { + "#": 1363 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1377 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1379 + }, + "max": { + "#": 1380 + } + }, + { + "x": 225, + "y": 187.73575 + }, + { + "x": 250, + "y": 212.73575 + }, + { + "x": 237.5, + "y": 197.32848 + }, + [ + { + "#": 1383 + }, + { + "#": 1384 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,3,4", + "startCol": 4, + "endCol": 5, + "startRow": 3, + "endRow": 4 + }, + { + "id": 61, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1387 + }, + "angle": 0, + "vertices": { + "#": 1388 + }, + "position": { + "#": 1393 + }, + "force": { + "#": 1394 + }, + "torque": 0, + "positionImpulse": { + "#": 1395 + }, + "constraintImpulse": { + "#": 1396 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1397 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1398 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1399 + }, + "bounds": { + "#": 1401 + }, + "positionPrev": { + "#": 1404 + }, + "anglePrev": 0, + "axes": { + "#": 1405 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1386 + }, + "sleepCounter": 0, + "region": { + "#": 1408 + } + }, + [ + { + "#": 1386 + } + ], + [ + { + "#": 1389 + }, + { + "#": 1390 + }, + { + "#": 1391 + }, + { + "#": 1392 + } + ], + { + "x": 250, + "y": 187.73575, + "index": 0, + "body": { + "#": 1386 + }, + "isInternal": false + }, + { + "x": 275, + "y": 187.73575, + "index": 1, + "body": { + "#": 1386 + }, + "isInternal": false + }, + { + "x": 275, + "y": 212.73575, + "index": 2, + "body": { + "#": 1386 + }, + "isInternal": false + }, + { + "x": 250, + "y": 212.73575, + "index": 3, + "body": { + "#": 1386 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1400 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1402 + }, + "max": { + "#": 1403 + } + }, + { + "x": 250, + "y": 187.73575 + }, + { + "x": 275, + "y": 212.73575 + }, + { + "x": 262.5, + "y": 197.32848 + }, + [ + { + "#": 1406 + }, + { + "#": 1407 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,3,4", + "startCol": 5, + "endCol": 5, + "startRow": 3, + "endRow": 4 + }, + { + "id": 62, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1410 + }, + "angle": 0, + "vertices": { + "#": 1411 + }, + "position": { + "#": 1416 + }, + "force": { + "#": 1417 + }, + "torque": 0, + "positionImpulse": { + "#": 1418 + }, + "constraintImpulse": { + "#": 1419 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1420 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1421 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1422 + }, + "bounds": { + "#": 1424 + }, + "positionPrev": { + "#": 1427 + }, + "anglePrev": 0, + "axes": { + "#": 1428 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1409 + }, + "sleepCounter": 0, + "region": { + "#": 1431 + } + }, + [ + { + "#": 1409 + } + ], + [ + { + "#": 1412 + }, + { + "#": 1413 + }, + { + "#": 1414 + }, + { + "#": 1415 + } + ], + { + "x": 275, + "y": 187.73575, + "index": 0, + "body": { + "#": 1409 + }, + "isInternal": false + }, + { + "x": 300, + "y": 187.73575, + "index": 1, + "body": { + "#": 1409 + }, + "isInternal": false + }, + { + "x": 300, + "y": 212.73575, + "index": 2, + "body": { + "#": 1409 + }, + "isInternal": false + }, + { + "x": 275, + "y": 212.73575, + "index": 3, + "body": { + "#": 1409 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1423 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1425 + }, + "max": { + "#": 1426 + } + }, + { + "x": 275, + "y": 187.73575 + }, + { + "x": 300, + "y": 212.73575 + }, + { + "x": 287.5, + "y": 197.32848 + }, + [ + { + "#": 1429 + }, + { + "#": 1430 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,3,4", + "startCol": 5, + "endCol": 6, + "startRow": 3, + "endRow": 4 + }, + { + "id": 63, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1433 + }, + "angle": 0, + "vertices": { + "#": 1434 + }, + "position": { + "#": 1439 + }, + "force": { + "#": 1440 + }, + "torque": 0, + "positionImpulse": { + "#": 1441 + }, + "constraintImpulse": { + "#": 1442 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1443 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1444 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1445 + }, + "bounds": { + "#": 1447 + }, + "positionPrev": { + "#": 1450 + }, + "anglePrev": 0, + "axes": { + "#": 1451 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1432 + }, + "sleepCounter": 0, + "region": { + "#": 1454 + } + }, + [ + { + "#": 1432 + } + ], + [ + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + }, + { + "#": 1438 + } + ], + { + "x": 300, + "y": 187.73575, + "index": 0, + "body": { + "#": 1432 + }, + "isInternal": false + }, + { + "x": 325, + "y": 187.73575, + "index": 1, + "body": { + "#": 1432 + }, + "isInternal": false + }, + { + "x": 325, + "y": 212.73575, + "index": 2, + "body": { + "#": 1432 + }, + "isInternal": false + }, + { + "x": 300, + "y": 212.73575, + "index": 3, + "body": { + "#": 1432 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1446 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1448 + }, + "max": { + "#": 1449 + } + }, + { + "x": 300, + "y": 187.73575 + }, + { + "x": 325, + "y": 212.73575 + }, + { + "x": 312.5, + "y": 197.32848 + }, + [ + { + "#": 1452 + }, + { + "#": 1453 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,3,4", + "startCol": 6, + "endCol": 6, + "startRow": 3, + "endRow": 4 + }, + { + "id": 64, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1456 + }, + "angle": 0, + "vertices": { + "#": 1457 + }, + "position": { + "#": 1462 + }, + "force": { + "#": 1463 + }, + "torque": 0, + "positionImpulse": { + "#": 1464 + }, + "constraintImpulse": { + "#": 1465 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1466 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1467 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1468 + }, + "bounds": { + "#": 1470 + }, + "positionPrev": { + "#": 1473 + }, + "anglePrev": 0, + "axes": { + "#": 1474 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1455 + }, + "sleepCounter": 0, + "region": { + "#": 1477 + } + }, + [ + { + "#": 1455 + } + ], + [ + { + "#": 1458 + }, + { + "#": 1459 + }, + { + "#": 1460 + }, + { + "#": 1461 + } + ], + { + "x": 325, + "y": 187.73575, + "index": 0, + "body": { + "#": 1455 + }, + "isInternal": false + }, + { + "x": 350, + "y": 187.73575, + "index": 1, + "body": { + "#": 1455 + }, + "isInternal": false + }, + { + "x": 350, + "y": 212.73575, + "index": 2, + "body": { + "#": 1455 + }, + "isInternal": false + }, + { + "x": 325, + "y": 212.73575, + "index": 3, + "body": { + "#": 1455 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1469 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1471 + }, + "max": { + "#": 1472 + } + }, + { + "x": 325, + "y": 187.73575 + }, + { + "x": 350, + "y": 212.73575 + }, + { + "x": 337.5, + "y": 197.32848 + }, + [ + { + "#": 1475 + }, + { + "#": 1476 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,3,4", + "startCol": 6, + "endCol": 7, + "startRow": 3, + "endRow": 4 + }, + { + "id": 65, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1479 + }, + "angle": 0, + "vertices": { + "#": 1480 + }, + "position": { + "#": 1485 + }, + "force": { + "#": 1486 + }, + "torque": 0, + "positionImpulse": { + "#": 1487 + }, + "constraintImpulse": { + "#": 1488 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1489 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1490 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1491 + }, + "bounds": { + "#": 1493 + }, + "positionPrev": { + "#": 1496 + }, + "anglePrev": 0, + "axes": { + "#": 1497 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1478 + }, + "sleepCounter": 0, + "region": { + "#": 1500 + } + }, + [ + { + "#": 1478 + } + ], + [ + { + "#": 1481 + }, + { + "#": 1482 + }, + { + "#": 1483 + }, + { + "#": 1484 + } + ], + { + "x": 350, + "y": 187.73575, + "index": 0, + "body": { + "#": 1478 + }, + "isInternal": false + }, + { + "x": 375, + "y": 187.73575, + "index": 1, + "body": { + "#": 1478 + }, + "isInternal": false + }, + { + "x": 375, + "y": 212.73575, + "index": 2, + "body": { + "#": 1478 + }, + "isInternal": false + }, + { + "x": 350, + "y": 212.73575, + "index": 3, + "body": { + "#": 1478 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1492 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1494 + }, + "max": { + "#": 1495 + } + }, + { + "x": 350, + "y": 187.73575 + }, + { + "x": 375, + "y": 212.73575 + }, + { + "x": 362.5, + "y": 197.32848 + }, + [ + { + "#": 1498 + }, + { + "#": 1499 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,3,4", + "startCol": 7, + "endCol": 7, + "startRow": 3, + "endRow": 4 + }, + { + "id": 66, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1502 + }, + "angle": 0, + "vertices": { + "#": 1503 + }, + "position": { + "#": 1508 + }, + "force": { + "#": 1509 + }, + "torque": 0, + "positionImpulse": { + "#": 1510 + }, + "constraintImpulse": { + "#": 1511 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1512 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1513 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1514 + }, + "bounds": { + "#": 1516 + }, + "positionPrev": { + "#": 1519 + }, + "anglePrev": 0, + "axes": { + "#": 1520 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1501 + }, + "sleepCounter": 0, + "region": { + "#": 1523 + } + }, + [ + { + "#": 1501 + } + ], + [ + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + } + ], + { + "x": 375, + "y": 187.73575, + "index": 0, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 400, + "y": 187.73575, + "index": 1, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 400, + "y": 212.73575, + "index": 2, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 375, + "y": 212.73575, + "index": 3, + "body": { + "#": 1501 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1515 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1517 + }, + "max": { + "#": 1518 + } + }, + { + "x": 375, + "y": 187.73575 + }, + { + "x": 400, + "y": 212.73575 + }, + { + "x": 387.5, + "y": 197.32848 + }, + [ + { + "#": 1521 + }, + { + "#": 1522 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,3,4", + "startCol": 7, + "endCol": 8, + "startRow": 3, + "endRow": 4 + }, + { + "id": 67, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1525 + }, + "angle": 0, + "vertices": { + "#": 1526 + }, + "position": { + "#": 1531 + }, + "force": { + "#": 1532 + }, + "torque": 0, + "positionImpulse": { + "#": 1533 + }, + "constraintImpulse": { + "#": 1534 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1535 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1536 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1537 + }, + "bounds": { + "#": 1539 + }, + "positionPrev": { + "#": 1542 + }, + "anglePrev": 0, + "axes": { + "#": 1543 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1524 + }, + "sleepCounter": 0, + "region": { + "#": 1546 + } + }, + [ + { + "#": 1524 + } + ], + [ + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + } + ], + { + "x": 400, + "y": 187.73575, + "index": 0, + "body": { + "#": 1524 + }, + "isInternal": false + }, + { + "x": 425, + "y": 187.73575, + "index": 1, + "body": { + "#": 1524 + }, + "isInternal": false + }, + { + "x": 425, + "y": 212.73575, + "index": 2, + "body": { + "#": 1524 + }, + "isInternal": false + }, + { + "x": 400, + "y": 212.73575, + "index": 3, + "body": { + "#": 1524 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1538 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1540 + }, + "max": { + "#": 1541 + } + }, + { + "x": 400, + "y": 187.73575 + }, + { + "x": 425, + "y": 212.73575 + }, + { + "x": 412.5, + "y": 197.32848 + }, + [ + { + "#": 1544 + }, + { + "#": 1545 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,8,3,4", + "startCol": 8, + "endCol": 8, + "startRow": 3, + "endRow": 4 + }, + { + "id": 68, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1548 + }, + "angle": 0, + "vertices": { + "#": 1549 + }, + "position": { + "#": 1554 + }, + "force": { + "#": 1555 + }, + "torque": 0, + "positionImpulse": { + "#": 1556 + }, + "constraintImpulse": { + "#": 1557 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1558 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1559 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1560 + }, + "bounds": { + "#": 1562 + }, + "positionPrev": { + "#": 1565 + }, + "anglePrev": 0, + "axes": { + "#": 1566 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1547 + }, + "sleepCounter": 0, + "region": { + "#": 1569 + } + }, + [ + { + "#": 1547 + } + ], + [ + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + }, + { + "#": 1553 + } + ], + { + "x": 425, + "y": 187.73575, + "index": 0, + "body": { + "#": 1547 + }, + "isInternal": false + }, + { + "x": 450, + "y": 187.73575, + "index": 1, + "body": { + "#": 1547 + }, + "isInternal": false + }, + { + "x": 450, + "y": 212.73575, + "index": 2, + "body": { + "#": 1547 + }, + "isInternal": false + }, + { + "x": 425, + "y": 212.73575, + "index": 3, + "body": { + "#": 1547 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1561 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1563 + }, + "max": { + "#": 1564 + } + }, + { + "x": 425, + "y": 187.73575 + }, + { + "x": 450, + "y": 212.73575 + }, + { + "x": 437.5, + "y": 197.32848 + }, + [ + { + "#": 1567 + }, + { + "#": 1568 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,3,4", + "startCol": 8, + "endCol": 9, + "startRow": 3, + "endRow": 4 + }, + { + "id": 69, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1571 + }, + "angle": 0, + "vertices": { + "#": 1572 + }, + "position": { + "#": 1577 + }, + "force": { + "#": 1578 + }, + "torque": 0, + "positionImpulse": { + "#": 1579 + }, + "constraintImpulse": { + "#": 1580 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1581 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1582 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1583 + }, + "bounds": { + "#": 1585 + }, + "positionPrev": { + "#": 1588 + }, + "anglePrev": 0, + "axes": { + "#": 1589 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1570 + }, + "sleepCounter": 0, + "region": { + "#": 1592 + } + }, + [ + { + "#": 1570 + } + ], + [ + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + }, + { + "#": 1576 + } + ], + { + "x": 450, + "y": 187.73575, + "index": 0, + "body": { + "#": 1570 + }, + "isInternal": false + }, + { + "x": 475, + "y": 187.73575, + "index": 1, + "body": { + "#": 1570 + }, + "isInternal": false + }, + { + "x": 475, + "y": 212.73575, + "index": 2, + "body": { + "#": 1570 + }, + "isInternal": false + }, + { + "x": 450, + "y": 212.73575, + "index": 3, + "body": { + "#": 1570 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1584 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1586 + }, + "max": { + "#": 1587 + } + }, + { + "x": 450, + "y": 187.73575 + }, + { + "x": 475, + "y": 212.73575 + }, + { + "x": 462.5, + "y": 197.32848 + }, + [ + { + "#": 1590 + }, + { + "#": 1591 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,3,4", + "startCol": 9, + "endCol": 9, + "startRow": 3, + "endRow": 4 + }, + { + "id": 70, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1594 + }, + "angle": 0, + "vertices": { + "#": 1595 + }, + "position": { + "#": 1600 + }, + "force": { + "#": 1601 + }, + "torque": 0, + "positionImpulse": { + "#": 1602 + }, + "constraintImpulse": { + "#": 1603 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1604 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1605 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1606 + }, + "bounds": { + "#": 1608 + }, + "positionPrev": { + "#": 1611 + }, + "anglePrev": 0, + "axes": { + "#": 1612 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1593 + }, + "sleepCounter": 0, + "region": { + "#": 1615 + } + }, + [ + { + "#": 1593 + } + ], + [ + { + "#": 1596 + }, + { + "#": 1597 + }, + { + "#": 1598 + }, + { + "#": 1599 + } + ], + { + "x": 475, + "y": 187.73575, + "index": 0, + "body": { + "#": 1593 + }, + "isInternal": false + }, + { + "x": 500, + "y": 187.73575, + "index": 1, + "body": { + "#": 1593 + }, + "isInternal": false + }, + { + "x": 500, + "y": 212.73575, + "index": 2, + "body": { + "#": 1593 + }, + "isInternal": false + }, + { + "x": 475, + "y": 212.73575, + "index": 3, + "body": { + "#": 1593 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1607 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1609 + }, + "max": { + "#": 1610 + } + }, + { + "x": 475, + "y": 187.73575 + }, + { + "x": 500, + "y": 212.73575 + }, + { + "x": 487.5, + "y": 197.32848 + }, + [ + { + "#": 1613 + }, + { + "#": 1614 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,3,4", + "startCol": 9, + "endCol": 10, + "startRow": 3, + "endRow": 4 + }, + { + "id": 71, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1617 + }, + "angle": 0, + "vertices": { + "#": 1618 + }, + "position": { + "#": 1623 + }, + "force": { + "#": 1624 + }, + "torque": 0, + "positionImpulse": { + "#": 1625 + }, + "constraintImpulse": { + "#": 1626 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1627 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1628 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1629 + }, + "bounds": { + "#": 1631 + }, + "positionPrev": { + "#": 1634 + }, + "anglePrev": 0, + "axes": { + "#": 1635 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1616 + }, + "sleepCounter": 0, + "region": { + "#": 1638 + } + }, + [ + { + "#": 1616 + } + ], + [ + { + "#": 1619 + }, + { + "#": 1620 + }, + { + "#": 1621 + }, + { + "#": 1622 + } + ], + { + "x": 500, + "y": 187.73575, + "index": 0, + "body": { + "#": 1616 + }, + "isInternal": false + }, + { + "x": 525, + "y": 187.73575, + "index": 1, + "body": { + "#": 1616 + }, + "isInternal": false + }, + { + "x": 525, + "y": 212.73575, + "index": 2, + "body": { + "#": 1616 + }, + "isInternal": false + }, + { + "x": 500, + "y": 212.73575, + "index": 3, + "body": { + "#": 1616 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1630 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1632 + }, + "max": { + "#": 1633 + } + }, + { + "x": 500, + "y": 187.73575 + }, + { + "x": 525, + "y": 212.73575 + }, + { + "x": 512.5, + "y": 197.32848 + }, + [ + { + "#": 1636 + }, + { + "#": 1637 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,3,4", + "startCol": 10, + "endCol": 10, + "startRow": 3, + "endRow": 4 + }, + { + "id": 72, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1640 + }, + "angle": 0, + "vertices": { + "#": 1641 + }, + "position": { + "#": 1646 + }, + "force": { + "#": 1647 + }, + "torque": 0, + "positionImpulse": { + "#": 1648 + }, + "constraintImpulse": { + "#": 1649 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1650 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1651 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1652 + }, + "bounds": { + "#": 1654 + }, + "positionPrev": { + "#": 1657 + }, + "anglePrev": 0, + "axes": { + "#": 1658 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1639 + }, + "sleepCounter": 0, + "region": { + "#": 1661 + } + }, + [ + { + "#": 1639 + } + ], + [ + { + "#": 1642 + }, + { + "#": 1643 + }, + { + "#": 1644 + }, + { + "#": 1645 + } + ], + { + "x": 525, + "y": 187.73575, + "index": 0, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 550, + "y": 187.73575, + "index": 1, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 550, + "y": 212.73575, + "index": 2, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 525, + "y": 212.73575, + "index": 3, + "body": { + "#": 1639 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1653 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1655 + }, + "max": { + "#": 1656 + } + }, + { + "x": 525, + "y": 187.73575 + }, + { + "x": 550, + "y": 212.73575 + }, + { + "x": 537.5, + "y": 197.32848 + }, + [ + { + "#": 1659 + }, + { + "#": 1660 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,3,4", + "startCol": 10, + "endCol": 11, + "startRow": 3, + "endRow": 4 + }, + { + "id": 73, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1663 + }, + "angle": 0, + "vertices": { + "#": 1664 + }, + "position": { + "#": 1669 + }, + "force": { + "#": 1670 + }, + "torque": 0, + "positionImpulse": { + "#": 1671 + }, + "constraintImpulse": { + "#": 1672 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1673 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1674 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1675 + }, + "bounds": { + "#": 1677 + }, + "positionPrev": { + "#": 1680 + }, + "anglePrev": 0, + "axes": { + "#": 1681 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1662 + }, + "sleepCounter": 0, + "region": { + "#": 1684 + } + }, + [ + { + "#": 1662 + } + ], + [ + { + "#": 1665 + }, + { + "#": 1666 + }, + { + "#": 1667 + }, + { + "#": 1668 + } + ], + { + "x": 550, + "y": 187.73575, + "index": 0, + "body": { + "#": 1662 + }, + "isInternal": false + }, + { + "x": 575, + "y": 187.73575, + "index": 1, + "body": { + "#": 1662 + }, + "isInternal": false + }, + { + "x": 575, + "y": 212.73575, + "index": 2, + "body": { + "#": 1662 + }, + "isInternal": false + }, + { + "x": 550, + "y": 212.73575, + "index": 3, + "body": { + "#": 1662 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1676 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1678 + }, + "max": { + "#": 1679 + } + }, + { + "x": 550, + "y": 187.73575 + }, + { + "x": 575, + "y": 212.73575 + }, + { + "x": 562.5, + "y": 197.32848 + }, + [ + { + "#": 1682 + }, + { + "#": 1683 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,11,3,4", + "startCol": 11, + "endCol": 11, + "startRow": 3, + "endRow": 4 + }, + { + "id": 74, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1686 + }, + "angle": 0, + "vertices": { + "#": 1687 + }, + "position": { + "#": 1692 + }, + "force": { + "#": 1693 + }, + "torque": 0, + "positionImpulse": { + "#": 1694 + }, + "constraintImpulse": { + "#": 1695 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1696 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1697 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1698 + }, + "bounds": { + "#": 1700 + }, + "positionPrev": { + "#": 1703 + }, + "anglePrev": 0, + "axes": { + "#": 1704 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1685 + }, + "sleepCounter": 0, + "region": { + "#": 1707 + } + }, + [ + { + "#": 1685 + } + ], + [ + { + "#": 1688 + }, + { + "#": 1689 + }, + { + "#": 1690 + }, + { + "#": 1691 + } + ], + { + "x": 575, + "y": 187.73575, + "index": 0, + "body": { + "#": 1685 + }, + "isInternal": false + }, + { + "x": 600, + "y": 187.73575, + "index": 1, + "body": { + "#": 1685 + }, + "isInternal": false + }, + { + "x": 600, + "y": 212.73575, + "index": 2, + "body": { + "#": 1685 + }, + "isInternal": false + }, + { + "x": 575, + "y": 212.73575, + "index": 3, + "body": { + "#": 1685 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1699 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1701 + }, + "max": { + "#": 1702 + } + }, + { + "x": 575, + "y": 187.73575 + }, + { + "x": 600, + "y": 212.73575 + }, + { + "x": 587.5, + "y": 197.32848 + }, + [ + { + "#": 1705 + }, + { + "#": 1706 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,3,4", + "startCol": 11, + "endCol": 12, + "startRow": 3, + "endRow": 4 + }, + { + "id": 75, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1709 + }, + "angle": 0, + "vertices": { + "#": 1710 + }, + "position": { + "#": 1715 + }, + "force": { + "#": 1716 + }, + "torque": 0, + "positionImpulse": { + "#": 1717 + }, + "constraintImpulse": { + "#": 1718 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1719 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1720 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1721 + }, + "bounds": { + "#": 1723 + }, + "positionPrev": { + "#": 1726 + }, + "anglePrev": 0, + "axes": { + "#": 1727 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1708 + }, + "sleepCounter": 0, + "region": { + "#": 1730 + } + }, + [ + { + "#": 1708 + } + ], + [ + { + "#": 1711 + }, + { + "#": 1712 + }, + { + "#": 1713 + }, + { + "#": 1714 + } + ], + { + "x": 600, + "y": 187.73575, + "index": 0, + "body": { + "#": 1708 + }, + "isInternal": false + }, + { + "x": 625, + "y": 187.73575, + "index": 1, + "body": { + "#": 1708 + }, + "isInternal": false + }, + { + "x": 625, + "y": 212.73575, + "index": 2, + "body": { + "#": 1708 + }, + "isInternal": false + }, + { + "x": 600, + "y": 212.73575, + "index": 3, + "body": { + "#": 1708 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1722 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1724 + }, + "max": { + "#": 1725 + } + }, + { + "x": 600, + "y": 187.73575 + }, + { + "x": 625, + "y": 212.73575 + }, + { + "x": 612.5, + "y": 197.32848 + }, + [ + { + "#": 1728 + }, + { + "#": 1729 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,3,4", + "startCol": 12, + "endCol": 13, + "startRow": 3, + "endRow": 4 + }, + { + "id": 76, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1732 + }, + "angle": 0, + "vertices": { + "#": 1733 + }, + "position": { + "#": 1738 + }, + "force": { + "#": 1739 + }, + "torque": 0, + "positionImpulse": { + "#": 1740 + }, + "constraintImpulse": { + "#": 1741 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1742 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1743 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1744 + }, + "bounds": { + "#": 1746 + }, + "positionPrev": { + "#": 1749 + }, + "anglePrev": 0, + "axes": { + "#": 1750 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1731 + }, + "sleepCounter": 0, + "region": { + "#": 1753 + } + }, + [ + { + "#": 1731 + } + ], + [ + { + "#": 1734 + }, + { + "#": 1735 + }, + { + "#": 1736 + }, + { + "#": 1737 + } + ], + { + "x": 625, + "y": 187.73575, + "index": 0, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 650, + "y": 187.73575, + "index": 1, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 650, + "y": 212.73575, + "index": 2, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 625, + "y": 212.73575, + "index": 3, + "body": { + "#": 1731 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1745 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1747 + }, + "max": { + "#": 1748 + } + }, + { + "x": 625, + "y": 187.73575 + }, + { + "x": 650, + "y": 212.73575 + }, + { + "x": 637.5, + "y": 197.32848 + }, + [ + { + "#": 1751 + }, + { + "#": 1752 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,13,3,4", + "startCol": 13, + "endCol": 13, + "startRow": 3, + "endRow": 4 + }, + { + "id": 77, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1755 + }, + "angle": 0, + "vertices": { + "#": 1756 + }, + "position": { + "#": 1761 + }, + "force": { + "#": 1762 + }, + "torque": 0, + "positionImpulse": { + "#": 1763 + }, + "constraintImpulse": { + "#": 1764 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1765 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1766 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1767 + }, + "bounds": { + "#": 1769 + }, + "positionPrev": { + "#": 1772 + }, + "anglePrev": 0, + "axes": { + "#": 1773 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1754 + }, + "sleepCounter": 0, + "region": { + "#": 1776 + } + }, + [ + { + "#": 1754 + } + ], + [ + { + "#": 1757 + }, + { + "#": 1758 + }, + { + "#": 1759 + }, + { + "#": 1760 + } + ], + { + "x": 650, + "y": 187.73575, + "index": 0, + "body": { + "#": 1754 + }, + "isInternal": false + }, + { + "x": 675, + "y": 187.73575, + "index": 1, + "body": { + "#": 1754 + }, + "isInternal": false + }, + { + "x": 675, + "y": 212.73575, + "index": 2, + "body": { + "#": 1754 + }, + "isInternal": false + }, + { + "x": 650, + "y": 212.73575, + "index": 3, + "body": { + "#": 1754 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1768 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1770 + }, + "max": { + "#": 1771 + } + }, + { + "x": 650, + "y": 187.73575 + }, + { + "x": 675, + "y": 212.73575 + }, + { + "x": 662.5, + "y": 197.32848 + }, + [ + { + "#": 1774 + }, + { + "#": 1775 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,3,4", + "startCol": 13, + "endCol": 14, + "startRow": 3, + "endRow": 4 + }, + { + "id": 78, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1778 + }, + "angle": 0, + "vertices": { + "#": 1779 + }, + "position": { + "#": 1784 + }, + "force": { + "#": 1785 + }, + "torque": 0, + "positionImpulse": { + "#": 1786 + }, + "constraintImpulse": { + "#": 1787 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1788 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1789 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1790 + }, + "bounds": { + "#": 1792 + }, + "positionPrev": { + "#": 1795 + }, + "anglePrev": 0, + "axes": { + "#": 1796 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1777 + }, + "sleepCounter": 0, + "region": { + "#": 1799 + } + }, + [ + { + "#": 1777 + } + ], + [ + { + "#": 1780 + }, + { + "#": 1781 + }, + { + "#": 1782 + }, + { + "#": 1783 + } + ], + { + "x": 675, + "y": 187.73575, + "index": 0, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 700, + "y": 187.73575, + "index": 1, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 700, + "y": 212.73575, + "index": 2, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 675, + "y": 212.73575, + "index": 3, + "body": { + "#": 1777 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1791 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1793 + }, + "max": { + "#": 1794 + } + }, + { + "x": 675, + "y": 187.73575 + }, + { + "x": 700, + "y": 212.73575 + }, + { + "x": 687.5, + "y": 197.32848 + }, + [ + { + "#": 1797 + }, + { + "#": 1798 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,14,3,4", + "startCol": 14, + "endCol": 14, + "startRow": 3, + "endRow": 4 + }, + { + "id": 79, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1801 + }, + "angle": 0, + "vertices": { + "#": 1802 + }, + "position": { + "#": 1807 + }, + "force": { + "#": 1808 + }, + "torque": 0, + "positionImpulse": { + "#": 1809 + }, + "constraintImpulse": { + "#": 1810 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1811 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1812 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1813 + }, + "bounds": { + "#": 1815 + }, + "positionPrev": { + "#": 1818 + }, + "anglePrev": 0, + "axes": { + "#": 1819 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1800 + }, + "sleepCounter": 0, + "region": { + "#": 1822 + } + }, + [ + { + "#": 1800 + } + ], + [ + { + "#": 1803 + }, + { + "#": 1804 + }, + { + "#": 1805 + }, + { + "#": 1806 + } + ], + { + "x": 700, + "y": 187.73575, + "index": 0, + "body": { + "#": 1800 + }, + "isInternal": false + }, + { + "x": 725, + "y": 187.73575, + "index": 1, + "body": { + "#": 1800 + }, + "isInternal": false + }, + { + "x": 725, + "y": 212.73575, + "index": 2, + "body": { + "#": 1800 + }, + "isInternal": false + }, + { + "x": 700, + "y": 212.73575, + "index": 3, + "body": { + "#": 1800 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 200.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1814 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1816 + }, + "max": { + "#": 1817 + } + }, + { + "x": 700, + "y": 187.73575 + }, + { + "x": 725, + "y": 212.73575 + }, + { + "x": 712.5, + "y": 197.32848 + }, + [ + { + "#": 1820 + }, + { + "#": 1821 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,3,4", + "startCol": 14, + "endCol": 15, + "startRow": 3, + "endRow": 4 + }, + { + "id": 80, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1824 + }, + "angle": 0, + "vertices": { + "#": 1825 + }, + "position": { + "#": 1830 + }, + "force": { + "#": 1831 + }, + "torque": 0, + "positionImpulse": { + "#": 1832 + }, + "constraintImpulse": { + "#": 1833 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1834 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1835 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1836 + }, + "bounds": { + "#": 1838 + }, + "positionPrev": { + "#": 1841 + }, + "anglePrev": 0, + "axes": { + "#": 1842 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1823 + }, + "sleepCounter": 0, + "region": { + "#": 1845 + } + }, + [ + { + "#": 1823 + } + ], + [ + { + "#": 1826 + }, + { + "#": 1827 + }, + { + "#": 1828 + }, + { + "#": 1829 + } + ], + { + "x": 100, + "y": 212.73575, + "index": 0, + "body": { + "#": 1823 + }, + "isInternal": false + }, + { + "x": 125, + "y": 212.73575, + "index": 1, + "body": { + "#": 1823 + }, + "isInternal": false + }, + { + "x": 125, + "y": 237.73575, + "index": 2, + "body": { + "#": 1823 + }, + "isInternal": false + }, + { + "x": 100, + "y": 237.73575, + "index": 3, + "body": { + "#": 1823 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1837 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1839 + }, + "max": { + "#": 1840 + } + }, + { + "x": 100, + "y": 212.73575 + }, + { + "x": 125, + "y": 237.73575 + }, + { + "x": 112.5, + "y": 222.32848 + }, + [ + { + "#": 1843 + }, + { + "#": 1844 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,4,4", + "startCol": 2, + "endCol": 2, + "startRow": 4, + "endRow": 4 + }, + { + "id": 81, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1847 + }, + "angle": 0, + "vertices": { + "#": 1848 + }, + "position": { + "#": 1853 + }, + "force": { + "#": 1854 + }, + "torque": 0, + "positionImpulse": { + "#": 1855 + }, + "constraintImpulse": { + "#": 1856 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1857 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1858 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1859 + }, + "bounds": { + "#": 1861 + }, + "positionPrev": { + "#": 1864 + }, + "anglePrev": 0, + "axes": { + "#": 1865 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1846 + }, + "sleepCounter": 0, + "region": { + "#": 1868 + } + }, + [ + { + "#": 1846 + } + ], + [ + { + "#": 1849 + }, + { + "#": 1850 + }, + { + "#": 1851 + }, + { + "#": 1852 + } + ], + { + "x": 125, + "y": 212.73575, + "index": 0, + "body": { + "#": 1846 + }, + "isInternal": false + }, + { + "x": 150, + "y": 212.73575, + "index": 1, + "body": { + "#": 1846 + }, + "isInternal": false + }, + { + "x": 150, + "y": 237.73575, + "index": 2, + "body": { + "#": 1846 + }, + "isInternal": false + }, + { + "x": 125, + "y": 237.73575, + "index": 3, + "body": { + "#": 1846 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1860 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1862 + }, + "max": { + "#": 1863 + } + }, + { + "x": 125, + "y": 212.73575 + }, + { + "x": 150, + "y": 237.73575 + }, + { + "x": 137.5, + "y": 222.32848 + }, + [ + { + "#": 1866 + }, + { + "#": 1867 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,4,4", + "startCol": 2, + "endCol": 3, + "startRow": 4, + "endRow": 4 + }, + { + "id": 82, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1870 + }, + "angle": 0, + "vertices": { + "#": 1871 + }, + "position": { + "#": 1876 + }, + "force": { + "#": 1877 + }, + "torque": 0, + "positionImpulse": { + "#": 1878 + }, + "constraintImpulse": { + "#": 1879 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1880 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1881 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1882 + }, + "bounds": { + "#": 1884 + }, + "positionPrev": { + "#": 1887 + }, + "anglePrev": 0, + "axes": { + "#": 1888 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1869 + }, + "sleepCounter": 0, + "region": { + "#": 1891 + } + }, + [ + { + "#": 1869 + } + ], + [ + { + "#": 1872 + }, + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + } + ], + { + "x": 150, + "y": 212.73575, + "index": 0, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 175, + "y": 212.73575, + "index": 1, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 175, + "y": 237.73575, + "index": 2, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 150, + "y": 237.73575, + "index": 3, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1883 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1885 + }, + "max": { + "#": 1886 + } + }, + { + "x": 150, + "y": 212.73575 + }, + { + "x": 175, + "y": 237.73575 + }, + { + "x": 162.5, + "y": 222.32848 + }, + [ + { + "#": 1889 + }, + { + "#": 1890 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,3,4,4", + "startCol": 3, + "endCol": 3, + "startRow": 4, + "endRow": 4 + }, + { + "id": 83, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1893 + }, + "angle": 0, + "vertices": { + "#": 1894 + }, + "position": { + "#": 1899 + }, + "force": { + "#": 1900 + }, + "torque": 0, + "positionImpulse": { + "#": 1901 + }, + "constraintImpulse": { + "#": 1902 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1903 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1904 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1905 + }, + "bounds": { + "#": 1907 + }, + "positionPrev": { + "#": 1910 + }, + "anglePrev": 0, + "axes": { + "#": 1911 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1892 + }, + "sleepCounter": 0, + "region": { + "#": 1914 + } + }, + [ + { + "#": 1892 + } + ], + [ + { + "#": 1895 + }, + { + "#": 1896 + }, + { + "#": 1897 + }, + { + "#": 1898 + } + ], + { + "x": 175, + "y": 212.73575, + "index": 0, + "body": { + "#": 1892 + }, + "isInternal": false + }, + { + "x": 200, + "y": 212.73575, + "index": 1, + "body": { + "#": 1892 + }, + "isInternal": false + }, + { + "x": 200, + "y": 237.73575, + "index": 2, + "body": { + "#": 1892 + }, + "isInternal": false + }, + { + "x": 175, + "y": 237.73575, + "index": 3, + "body": { + "#": 1892 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1906 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1908 + }, + "max": { + "#": 1909 + } + }, + { + "x": 175, + "y": 212.73575 + }, + { + "x": 200, + "y": 237.73575 + }, + { + "x": 187.5, + "y": 222.32848 + }, + [ + { + "#": 1912 + }, + { + "#": 1913 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,4,4", + "startCol": 3, + "endCol": 4, + "startRow": 4, + "endRow": 4 + }, + { + "id": 84, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1916 + }, + "angle": 0, + "vertices": { + "#": 1917 + }, + "position": { + "#": 1922 + }, + "force": { + "#": 1923 + }, + "torque": 0, + "positionImpulse": { + "#": 1924 + }, + "constraintImpulse": { + "#": 1925 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1926 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1927 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1928 + }, + "bounds": { + "#": 1930 + }, + "positionPrev": { + "#": 1933 + }, + "anglePrev": 0, + "axes": { + "#": 1934 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1915 + }, + "sleepCounter": 0, + "region": { + "#": 1937 + } + }, + [ + { + "#": 1915 + } + ], + [ + { + "#": 1918 + }, + { + "#": 1919 + }, + { + "#": 1920 + }, + { + "#": 1921 + } + ], + { + "x": 200, + "y": 212.73575, + "index": 0, + "body": { + "#": 1915 + }, + "isInternal": false + }, + { + "x": 225, + "y": 212.73575, + "index": 1, + "body": { + "#": 1915 + }, + "isInternal": false + }, + { + "x": 225, + "y": 237.73575, + "index": 2, + "body": { + "#": 1915 + }, + "isInternal": false + }, + { + "x": 200, + "y": 237.73575, + "index": 3, + "body": { + "#": 1915 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1929 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1931 + }, + "max": { + "#": 1932 + } + }, + { + "x": 200, + "y": 212.73575 + }, + { + "x": 225, + "y": 237.73575 + }, + { + "x": 212.5, + "y": 222.32848 + }, + [ + { + "#": 1935 + }, + { + "#": 1936 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,4,4", + "startCol": 4, + "endCol": 4, + "startRow": 4, + "endRow": 4 + }, + { + "id": 85, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1939 + }, + "angle": 0, + "vertices": { + "#": 1940 + }, + "position": { + "#": 1945 + }, + "force": { + "#": 1946 + }, + "torque": 0, + "positionImpulse": { + "#": 1947 + }, + "constraintImpulse": { + "#": 1948 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1949 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1950 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1951 + }, + "bounds": { + "#": 1953 + }, + "positionPrev": { + "#": 1956 + }, + "anglePrev": 0, + "axes": { + "#": 1957 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1938 + }, + "sleepCounter": 0, + "region": { + "#": 1960 + } + }, + [ + { + "#": 1938 + } + ], + [ + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + }, + { + "#": 1944 + } + ], + { + "x": 225, + "y": 212.73575, + "index": 0, + "body": { + "#": 1938 + }, + "isInternal": false + }, + { + "x": 250, + "y": 212.73575, + "index": 1, + "body": { + "#": 1938 + }, + "isInternal": false + }, + { + "x": 250, + "y": 237.73575, + "index": 2, + "body": { + "#": 1938 + }, + "isInternal": false + }, + { + "x": 225, + "y": 237.73575, + "index": 3, + "body": { + "#": 1938 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1952 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1954 + }, + "max": { + "#": 1955 + } + }, + { + "x": 225, + "y": 212.73575 + }, + { + "x": 250, + "y": 237.73575 + }, + { + "x": 237.5, + "y": 222.32848 + }, + [ + { + "#": 1958 + }, + { + "#": 1959 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,4,4", + "startCol": 4, + "endCol": 5, + "startRow": 4, + "endRow": 4 + }, + { + "id": 86, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1962 + }, + "angle": 0, + "vertices": { + "#": 1963 + }, + "position": { + "#": 1968 + }, + "force": { + "#": 1969 + }, + "torque": 0, + "positionImpulse": { + "#": 1970 + }, + "constraintImpulse": { + "#": 1971 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1972 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1973 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1974 + }, + "bounds": { + "#": 1976 + }, + "positionPrev": { + "#": 1979 + }, + "anglePrev": 0, + "axes": { + "#": 1980 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1961 + }, + "sleepCounter": 0, + "region": { + "#": 1983 + } + }, + [ + { + "#": 1961 + } + ], + [ + { + "#": 1964 + }, + { + "#": 1965 + }, + { + "#": 1966 + }, + { + "#": 1967 + } + ], + { + "x": 250, + "y": 212.73575, + "index": 0, + "body": { + "#": 1961 + }, + "isInternal": false + }, + { + "x": 275, + "y": 212.73575, + "index": 1, + "body": { + "#": 1961 + }, + "isInternal": false + }, + { + "x": 275, + "y": 237.73575, + "index": 2, + "body": { + "#": 1961 + }, + "isInternal": false + }, + { + "x": 250, + "y": 237.73575, + "index": 3, + "body": { + "#": 1961 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1975 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1977 + }, + "max": { + "#": 1978 + } + }, + { + "x": 250, + "y": 212.73575 + }, + { + "x": 275, + "y": 237.73575 + }, + { + "x": 262.5, + "y": 222.32848 + }, + [ + { + "#": 1981 + }, + { + "#": 1982 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,4,4", + "startCol": 5, + "endCol": 5, + "startRow": 4, + "endRow": 4 + }, + { + "id": 87, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1985 + }, + "angle": 0, + "vertices": { + "#": 1986 + }, + "position": { + "#": 1991 + }, + "force": { + "#": 1992 + }, + "torque": 0, + "positionImpulse": { + "#": 1993 + }, + "constraintImpulse": { + "#": 1994 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 1995 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1996 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1997 + }, + "bounds": { + "#": 1999 + }, + "positionPrev": { + "#": 2002 + }, + "anglePrev": 0, + "axes": { + "#": 2003 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 1984 + }, + "sleepCounter": 0, + "region": { + "#": 2006 + } + }, + [ + { + "#": 1984 + } + ], + [ + { + "#": 1987 + }, + { + "#": 1988 + }, + { + "#": 1989 + }, + { + "#": 1990 + } + ], + { + "x": 275, + "y": 212.73575, + "index": 0, + "body": { + "#": 1984 + }, + "isInternal": false + }, + { + "x": 300, + "y": 212.73575, + "index": 1, + "body": { + "#": 1984 + }, + "isInternal": false + }, + { + "x": 300, + "y": 237.73575, + "index": 2, + "body": { + "#": 1984 + }, + "isInternal": false + }, + { + "x": 275, + "y": 237.73575, + "index": 3, + "body": { + "#": 1984 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1998 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2000 + }, + "max": { + "#": 2001 + } + }, + { + "x": 275, + "y": 212.73575 + }, + { + "x": 300, + "y": 237.73575 + }, + { + "x": 287.5, + "y": 222.32848 + }, + [ + { + "#": 2004 + }, + { + "#": 2005 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,4,4", + "startCol": 5, + "endCol": 6, + "startRow": 4, + "endRow": 4 + }, + { + "id": 88, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2008 + }, + "angle": 0, + "vertices": { + "#": 2009 + }, + "position": { + "#": 2014 + }, + "force": { + "#": 2015 + }, + "torque": 0, + "positionImpulse": { + "#": 2016 + }, + "constraintImpulse": { + "#": 2017 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2018 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2019 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2020 + }, + "bounds": { + "#": 2022 + }, + "positionPrev": { + "#": 2025 + }, + "anglePrev": 0, + "axes": { + "#": 2026 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2007 + }, + "sleepCounter": 0, + "region": { + "#": 2029 + } + }, + [ + { + "#": 2007 + } + ], + [ + { + "#": 2010 + }, + { + "#": 2011 + }, + { + "#": 2012 + }, + { + "#": 2013 + } + ], + { + "x": 300, + "y": 212.73575, + "index": 0, + "body": { + "#": 2007 + }, + "isInternal": false + }, + { + "x": 325, + "y": 212.73575, + "index": 1, + "body": { + "#": 2007 + }, + "isInternal": false + }, + { + "x": 325, + "y": 237.73575, + "index": 2, + "body": { + "#": 2007 + }, + "isInternal": false + }, + { + "x": 300, + "y": 237.73575, + "index": 3, + "body": { + "#": 2007 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2021 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2023 + }, + "max": { + "#": 2024 + } + }, + { + "x": 300, + "y": 212.73575 + }, + { + "x": 325, + "y": 237.73575 + }, + { + "x": 312.5, + "y": 222.32848 + }, + [ + { + "#": 2027 + }, + { + "#": 2028 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,4,4", + "startCol": 6, + "endCol": 6, + "startRow": 4, + "endRow": 4 + }, + { + "id": 89, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2031 + }, + "angle": 0, + "vertices": { + "#": 2032 + }, + "position": { + "#": 2037 + }, + "force": { + "#": 2038 + }, + "torque": 0, + "positionImpulse": { + "#": 2039 + }, + "constraintImpulse": { + "#": 2040 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2041 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2042 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2043 + }, + "bounds": { + "#": 2045 + }, + "positionPrev": { + "#": 2048 + }, + "anglePrev": 0, + "axes": { + "#": 2049 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2030 + }, + "sleepCounter": 0, + "region": { + "#": 2052 + } + }, + [ + { + "#": 2030 + } + ], + [ + { + "#": 2033 + }, + { + "#": 2034 + }, + { + "#": 2035 + }, + { + "#": 2036 + } + ], + { + "x": 325, + "y": 212.73575, + "index": 0, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 350, + "y": 212.73575, + "index": 1, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 350, + "y": 237.73575, + "index": 2, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 325, + "y": 237.73575, + "index": 3, + "body": { + "#": 2030 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2044 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2046 + }, + "max": { + "#": 2047 + } + }, + { + "x": 325, + "y": 212.73575 + }, + { + "x": 350, + "y": 237.73575 + }, + { + "x": 337.5, + "y": 222.32848 + }, + [ + { + "#": 2050 + }, + { + "#": 2051 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,4,4", + "startCol": 6, + "endCol": 7, + "startRow": 4, + "endRow": 4 + }, + { + "id": 90, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2054 + }, + "angle": 0, + "vertices": { + "#": 2055 + }, + "position": { + "#": 2060 + }, + "force": { + "#": 2061 + }, + "torque": 0, + "positionImpulse": { + "#": 2062 + }, + "constraintImpulse": { + "#": 2063 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2064 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2065 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2066 + }, + "bounds": { + "#": 2068 + }, + "positionPrev": { + "#": 2071 + }, + "anglePrev": 0, + "axes": { + "#": 2072 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2053 + }, + "sleepCounter": 0, + "region": { + "#": 2075 + } + }, + [ + { + "#": 2053 + } + ], + [ + { + "#": 2056 + }, + { + "#": 2057 + }, + { + "#": 2058 + }, + { + "#": 2059 + } + ], + { + "x": 350, + "y": 212.73575, + "index": 0, + "body": { + "#": 2053 + }, + "isInternal": false + }, + { + "x": 375, + "y": 212.73575, + "index": 1, + "body": { + "#": 2053 + }, + "isInternal": false + }, + { + "x": 375, + "y": 237.73575, + "index": 2, + "body": { + "#": 2053 + }, + "isInternal": false + }, + { + "x": 350, + "y": 237.73575, + "index": 3, + "body": { + "#": 2053 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2067 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2069 + }, + "max": { + "#": 2070 + } + }, + { + "x": 350, + "y": 212.73575 + }, + { + "x": 375, + "y": 237.73575 + }, + { + "x": 362.5, + "y": 222.32848 + }, + [ + { + "#": 2073 + }, + { + "#": 2074 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,4,4", + "startCol": 7, + "endCol": 7, + "startRow": 4, + "endRow": 4 + }, + { + "id": 91, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2077 + }, + "angle": 0, + "vertices": { + "#": 2078 + }, + "position": { + "#": 2083 + }, + "force": { + "#": 2084 + }, + "torque": 0, + "positionImpulse": { + "#": 2085 + }, + "constraintImpulse": { + "#": 2086 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2087 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2088 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2089 + }, + "bounds": { + "#": 2091 + }, + "positionPrev": { + "#": 2094 + }, + "anglePrev": 0, + "axes": { + "#": 2095 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2076 + }, + "sleepCounter": 0, + "region": { + "#": 2098 + } + }, + [ + { + "#": 2076 + } + ], + [ + { + "#": 2079 + }, + { + "#": 2080 + }, + { + "#": 2081 + }, + { + "#": 2082 + } + ], + { + "x": 375, + "y": 212.73575, + "index": 0, + "body": { + "#": 2076 + }, + "isInternal": false + }, + { + "x": 400, + "y": 212.73575, + "index": 1, + "body": { + "#": 2076 + }, + "isInternal": false + }, + { + "x": 400, + "y": 237.73575, + "index": 2, + "body": { + "#": 2076 + }, + "isInternal": false + }, + { + "x": 375, + "y": 237.73575, + "index": 3, + "body": { + "#": 2076 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2090 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2092 + }, + "max": { + "#": 2093 + } + }, + { + "x": 375, + "y": 212.73575 + }, + { + "x": 400, + "y": 237.73575 + }, + { + "x": 387.5, + "y": 222.32848 + }, + [ + { + "#": 2096 + }, + { + "#": 2097 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,4,4", + "startCol": 7, + "endCol": 8, + "startRow": 4, + "endRow": 4 + }, + { + "id": 92, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2100 + }, + "angle": 0, + "vertices": { + "#": 2101 + }, + "position": { + "#": 2106 + }, + "force": { + "#": 2107 + }, + "torque": 0, + "positionImpulse": { + "#": 2108 + }, + "constraintImpulse": { + "#": 2109 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2110 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2111 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2112 + }, + "bounds": { + "#": 2114 + }, + "positionPrev": { + "#": 2117 + }, + "anglePrev": 0, + "axes": { + "#": 2118 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2099 + }, + "sleepCounter": 0, + "region": { + "#": 2121 + } + }, + [ + { + "#": 2099 + } + ], + [ + { + "#": 2102 + }, + { + "#": 2103 + }, + { + "#": 2104 + }, + { + "#": 2105 + } + ], + { + "x": 400, + "y": 212.73575, + "index": 0, + "body": { + "#": 2099 + }, + "isInternal": false + }, + { + "x": 425, + "y": 212.73575, + "index": 1, + "body": { + "#": 2099 + }, + "isInternal": false + }, + { + "x": 425, + "y": 237.73575, + "index": 2, + "body": { + "#": 2099 + }, + "isInternal": false + }, + { + "x": 400, + "y": 237.73575, + "index": 3, + "body": { + "#": 2099 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2113 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2115 + }, + "max": { + "#": 2116 + } + }, + { + "x": 400, + "y": 212.73575 + }, + { + "x": 425, + "y": 237.73575 + }, + { + "x": 412.5, + "y": 222.32848 + }, + [ + { + "#": 2119 + }, + { + "#": 2120 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,8,4,4", + "startCol": 8, + "endCol": 8, + "startRow": 4, + "endRow": 4 + }, + { + "id": 93, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2123 + }, + "angle": 0, + "vertices": { + "#": 2124 + }, + "position": { + "#": 2129 + }, + "force": { + "#": 2130 + }, + "torque": 0, + "positionImpulse": { + "#": 2131 + }, + "constraintImpulse": { + "#": 2132 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2133 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2134 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2135 + }, + "bounds": { + "#": 2137 + }, + "positionPrev": { + "#": 2140 + }, + "anglePrev": 0, + "axes": { + "#": 2141 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2122 + }, + "sleepCounter": 0, + "region": { + "#": 2144 + } + }, + [ + { + "#": 2122 + } + ], + [ + { + "#": 2125 + }, + { + "#": 2126 + }, + { + "#": 2127 + }, + { + "#": 2128 + } + ], + { + "x": 425, + "y": 212.73575, + "index": 0, + "body": { + "#": 2122 + }, + "isInternal": false + }, + { + "x": 450, + "y": 212.73575, + "index": 1, + "body": { + "#": 2122 + }, + "isInternal": false + }, + { + "x": 450, + "y": 237.73575, + "index": 2, + "body": { + "#": 2122 + }, + "isInternal": false + }, + { + "x": 425, + "y": 237.73575, + "index": 3, + "body": { + "#": 2122 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2136 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2138 + }, + "max": { + "#": 2139 + } + }, + { + "x": 425, + "y": 212.73575 + }, + { + "x": 450, + "y": 237.73575 + }, + { + "x": 437.5, + "y": 222.32848 + }, + [ + { + "#": 2142 + }, + { + "#": 2143 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,4,4", + "startCol": 8, + "endCol": 9, + "startRow": 4, + "endRow": 4 + }, + { + "id": 94, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2146 + }, + "angle": 0, + "vertices": { + "#": 2147 + }, + "position": { + "#": 2152 + }, + "force": { + "#": 2153 + }, + "torque": 0, + "positionImpulse": { + "#": 2154 + }, + "constraintImpulse": { + "#": 2155 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2156 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2157 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2158 + }, + "bounds": { + "#": 2160 + }, + "positionPrev": { + "#": 2163 + }, + "anglePrev": 0, + "axes": { + "#": 2164 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2145 + }, + "sleepCounter": 0, + "region": { + "#": 2167 + } + }, + [ + { + "#": 2145 + } + ], + [ + { + "#": 2148 + }, + { + "#": 2149 + }, + { + "#": 2150 + }, + { + "#": 2151 + } + ], + { + "x": 450, + "y": 212.73575, + "index": 0, + "body": { + "#": 2145 + }, + "isInternal": false + }, + { + "x": 475, + "y": 212.73575, + "index": 1, + "body": { + "#": 2145 + }, + "isInternal": false + }, + { + "x": 475, + "y": 237.73575, + "index": 2, + "body": { + "#": 2145 + }, + "isInternal": false + }, + { + "x": 450, + "y": 237.73575, + "index": 3, + "body": { + "#": 2145 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2159 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2161 + }, + "max": { + "#": 2162 + } + }, + { + "x": 450, + "y": 212.73575 + }, + { + "x": 475, + "y": 237.73575 + }, + { + "x": 462.5, + "y": 222.32848 + }, + [ + { + "#": 2165 + }, + { + "#": 2166 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,4,4", + "startCol": 9, + "endCol": 9, + "startRow": 4, + "endRow": 4 + }, + { + "id": 95, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2169 + }, + "angle": 0, + "vertices": { + "#": 2170 + }, + "position": { + "#": 2175 + }, + "force": { + "#": 2176 + }, + "torque": 0, + "positionImpulse": { + "#": 2177 + }, + "constraintImpulse": { + "#": 2178 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2179 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2180 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2181 + }, + "bounds": { + "#": 2183 + }, + "positionPrev": { + "#": 2186 + }, + "anglePrev": 0, + "axes": { + "#": 2187 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2168 + }, + "sleepCounter": 0, + "region": { + "#": 2190 + } + }, + [ + { + "#": 2168 + } + ], + [ + { + "#": 2171 + }, + { + "#": 2172 + }, + { + "#": 2173 + }, + { + "#": 2174 + } + ], + { + "x": 475, + "y": 212.73575, + "index": 0, + "body": { + "#": 2168 + }, + "isInternal": false + }, + { + "x": 500, + "y": 212.73575, + "index": 1, + "body": { + "#": 2168 + }, + "isInternal": false + }, + { + "x": 500, + "y": 237.73575, + "index": 2, + "body": { + "#": 2168 + }, + "isInternal": false + }, + { + "x": 475, + "y": 237.73575, + "index": 3, + "body": { + "#": 2168 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2182 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2184 + }, + "max": { + "#": 2185 + } + }, + { + "x": 475, + "y": 212.73575 + }, + { + "x": 500, + "y": 237.73575 + }, + { + "x": 487.5, + "y": 222.32848 + }, + [ + { + "#": 2188 + }, + { + "#": 2189 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,4,4", + "startCol": 9, + "endCol": 10, + "startRow": 4, + "endRow": 4 + }, + { + "id": 96, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2192 + }, + "angle": 0, + "vertices": { + "#": 2193 + }, + "position": { + "#": 2198 + }, + "force": { + "#": 2199 + }, + "torque": 0, + "positionImpulse": { + "#": 2200 + }, + "constraintImpulse": { + "#": 2201 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2202 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2203 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2204 + }, + "bounds": { + "#": 2206 + }, + "positionPrev": { + "#": 2209 + }, + "anglePrev": 0, + "axes": { + "#": 2210 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2191 + }, + "sleepCounter": 0, + "region": { + "#": 2213 + } + }, + [ + { + "#": 2191 + } + ], + [ + { + "#": 2194 + }, + { + "#": 2195 + }, + { + "#": 2196 + }, + { + "#": 2197 + } + ], + { + "x": 500, + "y": 212.73575, + "index": 0, + "body": { + "#": 2191 + }, + "isInternal": false + }, + { + "x": 525, + "y": 212.73575, + "index": 1, + "body": { + "#": 2191 + }, + "isInternal": false + }, + { + "x": 525, + "y": 237.73575, + "index": 2, + "body": { + "#": 2191 + }, + "isInternal": false + }, + { + "x": 500, + "y": 237.73575, + "index": 3, + "body": { + "#": 2191 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2205 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2207 + }, + "max": { + "#": 2208 + } + }, + { + "x": 500, + "y": 212.73575 + }, + { + "x": 525, + "y": 237.73575 + }, + { + "x": 512.5, + "y": 222.32848 + }, + [ + { + "#": 2211 + }, + { + "#": 2212 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,4,4", + "startCol": 10, + "endCol": 10, + "startRow": 4, + "endRow": 4 + }, + { + "id": 97, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2215 + }, + "angle": 0, + "vertices": { + "#": 2216 + }, + "position": { + "#": 2221 + }, + "force": { + "#": 2222 + }, + "torque": 0, + "positionImpulse": { + "#": 2223 + }, + "constraintImpulse": { + "#": 2224 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2225 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2226 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2227 + }, + "bounds": { + "#": 2229 + }, + "positionPrev": { + "#": 2232 + }, + "anglePrev": 0, + "axes": { + "#": 2233 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2214 + }, + "sleepCounter": 0, + "region": { + "#": 2236 + } + }, + [ + { + "#": 2214 + } + ], + [ + { + "#": 2217 + }, + { + "#": 2218 + }, + { + "#": 2219 + }, + { + "#": 2220 + } + ], + { + "x": 525, + "y": 212.73575, + "index": 0, + "body": { + "#": 2214 + }, + "isInternal": false + }, + { + "x": 550, + "y": 212.73575, + "index": 1, + "body": { + "#": 2214 + }, + "isInternal": false + }, + { + "x": 550, + "y": 237.73575, + "index": 2, + "body": { + "#": 2214 + }, + "isInternal": false + }, + { + "x": 525, + "y": 237.73575, + "index": 3, + "body": { + "#": 2214 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2228 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2230 + }, + "max": { + "#": 2231 + } + }, + { + "x": 525, + "y": 212.73575 + }, + { + "x": 550, + "y": 237.73575 + }, + { + "x": 537.5, + "y": 222.32848 + }, + [ + { + "#": 2234 + }, + { + "#": 2235 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,4,4", + "startCol": 10, + "endCol": 11, + "startRow": 4, + "endRow": 4 + }, + { + "id": 98, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2238 + }, + "angle": 0, + "vertices": { + "#": 2239 + }, + "position": { + "#": 2244 + }, + "force": { + "#": 2245 + }, + "torque": 0, + "positionImpulse": { + "#": 2246 + }, + "constraintImpulse": { + "#": 2247 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2248 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2249 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2250 + }, + "bounds": { + "#": 2252 + }, + "positionPrev": { + "#": 2255 + }, + "anglePrev": 0, + "axes": { + "#": 2256 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2237 + }, + "sleepCounter": 0, + "region": { + "#": 2259 + } + }, + [ + { + "#": 2237 + } + ], + [ + { + "#": 2240 + }, + { + "#": 2241 + }, + { + "#": 2242 + }, + { + "#": 2243 + } + ], + { + "x": 550, + "y": 212.73575, + "index": 0, + "body": { + "#": 2237 + }, + "isInternal": false + }, + { + "x": 575, + "y": 212.73575, + "index": 1, + "body": { + "#": 2237 + }, + "isInternal": false + }, + { + "x": 575, + "y": 237.73575, + "index": 2, + "body": { + "#": 2237 + }, + "isInternal": false + }, + { + "x": 550, + "y": 237.73575, + "index": 3, + "body": { + "#": 2237 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2251 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2253 + }, + "max": { + "#": 2254 + } + }, + { + "x": 550, + "y": 212.73575 + }, + { + "x": 575, + "y": 237.73575 + }, + { + "x": 562.5, + "y": 222.32848 + }, + [ + { + "#": 2257 + }, + { + "#": 2258 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,11,4,4", + "startCol": 11, + "endCol": 11, + "startRow": 4, + "endRow": 4 + }, + { + "id": 99, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2261 + }, + "angle": 0, + "vertices": { + "#": 2262 + }, + "position": { + "#": 2267 + }, + "force": { + "#": 2268 + }, + "torque": 0, + "positionImpulse": { + "#": 2269 + }, + "constraintImpulse": { + "#": 2270 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2271 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2272 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2273 + }, + "bounds": { + "#": 2275 + }, + "positionPrev": { + "#": 2278 + }, + "anglePrev": 0, + "axes": { + "#": 2279 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2260 + }, + "sleepCounter": 0, + "region": { + "#": 2282 + } + }, + [ + { + "#": 2260 + } + ], + [ + { + "#": 2263 + }, + { + "#": 2264 + }, + { + "#": 2265 + }, + { + "#": 2266 + } + ], + { + "x": 575, + "y": 212.73575, + "index": 0, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 600, + "y": 212.73575, + "index": 1, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 600, + "y": 237.73575, + "index": 2, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 575, + "y": 237.73575, + "index": 3, + "body": { + "#": 2260 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2274 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2276 + }, + "max": { + "#": 2277 + } + }, + { + "x": 575, + "y": 212.73575 + }, + { + "x": 600, + "y": 237.73575 + }, + { + "x": 587.5, + "y": 222.32848 + }, + [ + { + "#": 2280 + }, + { + "#": 2281 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,4,4", + "startCol": 11, + "endCol": 12, + "startRow": 4, + "endRow": 4 + }, + { + "id": 100, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2284 + }, + "angle": 0, + "vertices": { + "#": 2285 + }, + "position": { + "#": 2290 + }, + "force": { + "#": 2291 + }, + "torque": 0, + "positionImpulse": { + "#": 2292 + }, + "constraintImpulse": { + "#": 2293 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2294 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2295 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2296 + }, + "bounds": { + "#": 2298 + }, + "positionPrev": { + "#": 2301 + }, + "anglePrev": 0, + "axes": { + "#": 2302 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2283 + }, + "sleepCounter": 0, + "region": { + "#": 2305 + } + }, + [ + { + "#": 2283 + } + ], + [ + { + "#": 2286 + }, + { + "#": 2287 + }, + { + "#": 2288 + }, + { + "#": 2289 + } + ], + { + "x": 600, + "y": 212.73575, + "index": 0, + "body": { + "#": 2283 + }, + "isInternal": false + }, + { + "x": 625, + "y": 212.73575, + "index": 1, + "body": { + "#": 2283 + }, + "isInternal": false + }, + { + "x": 625, + "y": 237.73575, + "index": 2, + "body": { + "#": 2283 + }, + "isInternal": false + }, + { + "x": 600, + "y": 237.73575, + "index": 3, + "body": { + "#": 2283 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2297 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2299 + }, + "max": { + "#": 2300 + } + }, + { + "x": 600, + "y": 212.73575 + }, + { + "x": 625, + "y": 237.73575 + }, + { + "x": 612.5, + "y": 222.32848 + }, + [ + { + "#": 2303 + }, + { + "#": 2304 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,4,4", + "startCol": 12, + "endCol": 13, + "startRow": 4, + "endRow": 4 + }, + { + "id": 101, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2307 + }, + "angle": 0, + "vertices": { + "#": 2308 + }, + "position": { + "#": 2313 + }, + "force": { + "#": 2314 + }, + "torque": 0, + "positionImpulse": { + "#": 2315 + }, + "constraintImpulse": { + "#": 2316 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2317 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2318 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2319 + }, + "bounds": { + "#": 2321 + }, + "positionPrev": { + "#": 2324 + }, + "anglePrev": 0, + "axes": { + "#": 2325 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2306 + }, + "sleepCounter": 0, + "region": { + "#": 2328 + } + }, + [ + { + "#": 2306 + } + ], + [ + { + "#": 2309 + }, + { + "#": 2310 + }, + { + "#": 2311 + }, + { + "#": 2312 + } + ], + { + "x": 625, + "y": 212.73575, + "index": 0, + "body": { + "#": 2306 + }, + "isInternal": false + }, + { + "x": 650, + "y": 212.73575, + "index": 1, + "body": { + "#": 2306 + }, + "isInternal": false + }, + { + "x": 650, + "y": 237.73575, + "index": 2, + "body": { + "#": 2306 + }, + "isInternal": false + }, + { + "x": 625, + "y": 237.73575, + "index": 3, + "body": { + "#": 2306 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2320 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2322 + }, + "max": { + "#": 2323 + } + }, + { + "x": 625, + "y": 212.73575 + }, + { + "x": 650, + "y": 237.73575 + }, + { + "x": 637.5, + "y": 222.32848 + }, + [ + { + "#": 2326 + }, + { + "#": 2327 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,13,4,4", + "startCol": 13, + "endCol": 13, + "startRow": 4, + "endRow": 4 + }, + { + "id": 102, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2330 + }, + "angle": 0, + "vertices": { + "#": 2331 + }, + "position": { + "#": 2336 + }, + "force": { + "#": 2337 + }, + "torque": 0, + "positionImpulse": { + "#": 2338 + }, + "constraintImpulse": { + "#": 2339 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2340 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2341 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2342 + }, + "bounds": { + "#": 2344 + }, + "positionPrev": { + "#": 2347 + }, + "anglePrev": 0, + "axes": { + "#": 2348 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2329 + }, + "sleepCounter": 0, + "region": { + "#": 2351 + } + }, + [ + { + "#": 2329 + } + ], + [ + { + "#": 2332 + }, + { + "#": 2333 + }, + { + "#": 2334 + }, + { + "#": 2335 + } + ], + { + "x": 650, + "y": 212.73575, + "index": 0, + "body": { + "#": 2329 + }, + "isInternal": false + }, + { + "x": 675, + "y": 212.73575, + "index": 1, + "body": { + "#": 2329 + }, + "isInternal": false + }, + { + "x": 675, + "y": 237.73575, + "index": 2, + "body": { + "#": 2329 + }, + "isInternal": false + }, + { + "x": 650, + "y": 237.73575, + "index": 3, + "body": { + "#": 2329 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2343 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2345 + }, + "max": { + "#": 2346 + } + }, + { + "x": 650, + "y": 212.73575 + }, + { + "x": 675, + "y": 237.73575 + }, + { + "x": 662.5, + "y": 222.32848 + }, + [ + { + "#": 2349 + }, + { + "#": 2350 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,4,4", + "startCol": 13, + "endCol": 14, + "startRow": 4, + "endRow": 4 + }, + { + "id": 103, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2353 + }, + "angle": 0, + "vertices": { + "#": 2354 + }, + "position": { + "#": 2359 + }, + "force": { + "#": 2360 + }, + "torque": 0, + "positionImpulse": { + "#": 2361 + }, + "constraintImpulse": { + "#": 2362 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2363 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2364 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2365 + }, + "bounds": { + "#": 2367 + }, + "positionPrev": { + "#": 2370 + }, + "anglePrev": 0, + "axes": { + "#": 2371 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2352 + }, + "sleepCounter": 0, + "region": { + "#": 2374 + } + }, + [ + { + "#": 2352 + } + ], + [ + { + "#": 2355 + }, + { + "#": 2356 + }, + { + "#": 2357 + }, + { + "#": 2358 + } + ], + { + "x": 675, + "y": 212.73575, + "index": 0, + "body": { + "#": 2352 + }, + "isInternal": false + }, + { + "x": 700, + "y": 212.73575, + "index": 1, + "body": { + "#": 2352 + }, + "isInternal": false + }, + { + "x": 700, + "y": 237.73575, + "index": 2, + "body": { + "#": 2352 + }, + "isInternal": false + }, + { + "x": 675, + "y": 237.73575, + "index": 3, + "body": { + "#": 2352 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2366 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2368 + }, + "max": { + "#": 2369 + } + }, + { + "x": 675, + "y": 212.73575 + }, + { + "x": 700, + "y": 237.73575 + }, + { + "x": 687.5, + "y": 222.32848 + }, + [ + { + "#": 2372 + }, + { + "#": 2373 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,14,4,4", + "startCol": 14, + "endCol": 14, + "startRow": 4, + "endRow": 4 + }, + { + "id": 104, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2376 + }, + "angle": 0, + "vertices": { + "#": 2377 + }, + "position": { + "#": 2382 + }, + "force": { + "#": 2383 + }, + "torque": 0, + "positionImpulse": { + "#": 2384 + }, + "constraintImpulse": { + "#": 2385 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2386 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2387 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2388 + }, + "bounds": { + "#": 2390 + }, + "positionPrev": { + "#": 2393 + }, + "anglePrev": 0, + "axes": { + "#": 2394 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2375 + }, + "sleepCounter": 0, + "region": { + "#": 2397 + } + }, + [ + { + "#": 2375 + } + ], + [ + { + "#": 2378 + }, + { + "#": 2379 + }, + { + "#": 2380 + }, + { + "#": 2381 + } + ], + { + "x": 700, + "y": 212.73575, + "index": 0, + "body": { + "#": 2375 + }, + "isInternal": false + }, + { + "x": 725, + "y": 212.73575, + "index": 1, + "body": { + "#": 2375 + }, + "isInternal": false + }, + { + "x": 725, + "y": 237.73575, + "index": 2, + "body": { + "#": 2375 + }, + "isInternal": false + }, + { + "x": 700, + "y": 237.73575, + "index": 3, + "body": { + "#": 2375 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 225.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2389 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2391 + }, + "max": { + "#": 2392 + } + }, + { + "x": 700, + "y": 212.73575 + }, + { + "x": 725, + "y": 237.73575 + }, + { + "x": 712.5, + "y": 222.32848 + }, + [ + { + "#": 2395 + }, + { + "#": 2396 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,4,4", + "startCol": 14, + "endCol": 15, + "startRow": 4, + "endRow": 4 + }, + { + "id": 105, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2399 + }, + "angle": 0, + "vertices": { + "#": 2400 + }, + "position": { + "#": 2405 + }, + "force": { + "#": 2406 + }, + "torque": 0, + "positionImpulse": { + "#": 2407 + }, + "constraintImpulse": { + "#": 2408 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2409 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2410 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2411 + }, + "bounds": { + "#": 2413 + }, + "positionPrev": { + "#": 2416 + }, + "anglePrev": 0, + "axes": { + "#": 2417 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2398 + }, + "sleepCounter": 0, + "region": { + "#": 2420 + } + }, + [ + { + "#": 2398 + } + ], + [ + { + "#": 2401 + }, + { + "#": 2402 + }, + { + "#": 2403 + }, + { + "#": 2404 + } + ], + { + "x": 100, + "y": 237.82558, + "index": 0, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 125, + "y": 237.82558, + "index": 1, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 125, + "y": 262.82558, + "index": 2, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 100, + "y": 262.82558, + "index": 3, + "body": { + "#": 2398 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2412 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2414 + }, + "max": { + "#": 2415 + } + }, + { + "x": 100, + "y": 237.82558 + }, + { + "x": 125, + "y": 265.73285 + }, + { + "x": 112.5, + "y": 247.41831 + }, + [ + { + "#": 2418 + }, + { + "#": 2419 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,4,5", + "startCol": 2, + "endCol": 2, + "startRow": 4, + "endRow": 5 + }, + { + "id": 106, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2422 + }, + "angle": 0, + "vertices": { + "#": 2423 + }, + "position": { + "#": 2428 + }, + "force": { + "#": 2429 + }, + "torque": 0, + "positionImpulse": { + "#": 2430 + }, + "constraintImpulse": { + "#": 2431 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2432 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2433 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2434 + }, + "bounds": { + "#": 2436 + }, + "positionPrev": { + "#": 2439 + }, + "anglePrev": 0, + "axes": { + "#": 2440 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2421 + }, + "sleepCounter": 0, + "region": { + "#": 2443 + } + }, + [ + { + "#": 2421 + } + ], + [ + { + "#": 2424 + }, + { + "#": 2425 + }, + { + "#": 2426 + }, + { + "#": 2427 + } + ], + { + "x": 125, + "y": 237.82558, + "index": 0, + "body": { + "#": 2421 + }, + "isInternal": false + }, + { + "x": 150, + "y": 237.82558, + "index": 1, + "body": { + "#": 2421 + }, + "isInternal": false + }, + { + "x": 150, + "y": 262.82558, + "index": 2, + "body": { + "#": 2421 + }, + "isInternal": false + }, + { + "x": 125, + "y": 262.82558, + "index": 3, + "body": { + "#": 2421 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2435 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2437 + }, + "max": { + "#": 2438 + } + }, + { + "x": 125, + "y": 237.82558 + }, + { + "x": 150, + "y": 265.73285 + }, + { + "x": 137.5, + "y": 247.41831 + }, + [ + { + "#": 2441 + }, + { + "#": 2442 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,4,5", + "startCol": 2, + "endCol": 3, + "startRow": 4, + "endRow": 5 + }, + { + "id": 107, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2445 + }, + "angle": 0, + "vertices": { + "#": 2446 + }, + "position": { + "#": 2451 + }, + "force": { + "#": 2452 + }, + "torque": 0, + "positionImpulse": { + "#": 2453 + }, + "constraintImpulse": { + "#": 2454 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2455 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2456 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2457 + }, + "bounds": { + "#": 2459 + }, + "positionPrev": { + "#": 2462 + }, + "anglePrev": 0, + "axes": { + "#": 2463 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2444 + }, + "sleepCounter": 0, + "region": { + "#": 2466 + } + }, + [ + { + "#": 2444 + } + ], + [ + { + "#": 2447 + }, + { + "#": 2448 + }, + { + "#": 2449 + }, + { + "#": 2450 + } + ], + { + "x": 150, + "y": 237.82558, + "index": 0, + "body": { + "#": 2444 + }, + "isInternal": false + }, + { + "x": 175, + "y": 237.82558, + "index": 1, + "body": { + "#": 2444 + }, + "isInternal": false + }, + { + "x": 175, + "y": 262.82558, + "index": 2, + "body": { + "#": 2444 + }, + "isInternal": false + }, + { + "x": 150, + "y": 262.82558, + "index": 3, + "body": { + "#": 2444 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2458 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2460 + }, + "max": { + "#": 2461 + } + }, + { + "x": 150, + "y": 237.82558 + }, + { + "x": 175, + "y": 265.73285 + }, + { + "x": 162.5, + "y": 247.41831 + }, + [ + { + "#": 2464 + }, + { + "#": 2465 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,3,4,5", + "startCol": 3, + "endCol": 3, + "startRow": 4, + "endRow": 5 + }, + { + "id": 108, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2468 + }, + "angle": 0, + "vertices": { + "#": 2469 + }, + "position": { + "#": 2474 + }, + "force": { + "#": 2475 + }, + "torque": 0, + "positionImpulse": { + "#": 2476 + }, + "constraintImpulse": { + "#": 2477 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2478 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2479 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2480 + }, + "bounds": { + "#": 2482 + }, + "positionPrev": { + "#": 2485 + }, + "anglePrev": 0, + "axes": { + "#": 2486 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2467 + }, + "sleepCounter": 0, + "region": { + "#": 2489 + } + }, + [ + { + "#": 2467 + } + ], + [ + { + "#": 2470 + }, + { + "#": 2471 + }, + { + "#": 2472 + }, + { + "#": 2473 + } + ], + { + "x": 175, + "y": 237.82558, + "index": 0, + "body": { + "#": 2467 + }, + "isInternal": false + }, + { + "x": 200, + "y": 237.82558, + "index": 1, + "body": { + "#": 2467 + }, + "isInternal": false + }, + { + "x": 200, + "y": 262.82558, + "index": 2, + "body": { + "#": 2467 + }, + "isInternal": false + }, + { + "x": 175, + "y": 262.82558, + "index": 3, + "body": { + "#": 2467 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2481 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2483 + }, + "max": { + "#": 2484 + } + }, + { + "x": 175, + "y": 237.82558 + }, + { + "x": 200, + "y": 265.73285 + }, + { + "x": 187.5, + "y": 247.41831 + }, + [ + { + "#": 2487 + }, + { + "#": 2488 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,4,5", + "startCol": 3, + "endCol": 4, + "startRow": 4, + "endRow": 5 + }, + { + "id": 109, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2491 + }, + "angle": 0, + "vertices": { + "#": 2492 + }, + "position": { + "#": 2497 + }, + "force": { + "#": 2498 + }, + "torque": 0, + "positionImpulse": { + "#": 2499 + }, + "constraintImpulse": { + "#": 2500 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2501 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2502 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2503 + }, + "bounds": { + "#": 2505 + }, + "positionPrev": { + "#": 2508 + }, + "anglePrev": 0, + "axes": { + "#": 2509 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2490 + }, + "sleepCounter": 0, + "region": { + "#": 2512 + } + }, + [ + { + "#": 2490 + } + ], + [ + { + "#": 2493 + }, + { + "#": 2494 + }, + { + "#": 2495 + }, + { + "#": 2496 + } + ], + { + "x": 200, + "y": 237.82558, + "index": 0, + "body": { + "#": 2490 + }, + "isInternal": false + }, + { + "x": 225, + "y": 237.82558, + "index": 1, + "body": { + "#": 2490 + }, + "isInternal": false + }, + { + "x": 225, + "y": 262.82558, + "index": 2, + "body": { + "#": 2490 + }, + "isInternal": false + }, + { + "x": 200, + "y": 262.82558, + "index": 3, + "body": { + "#": 2490 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2504 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2506 + }, + "max": { + "#": 2507 + } + }, + { + "x": 200, + "y": 237.82558 + }, + { + "x": 225, + "y": 265.73285 + }, + { + "x": 212.5, + "y": 247.41831 + }, + [ + { + "#": 2510 + }, + { + "#": 2511 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,4,5", + "startCol": 4, + "endCol": 4, + "startRow": 4, + "endRow": 5 + }, + { + "id": 110, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2514 + }, + "angle": 0, + "vertices": { + "#": 2515 + }, + "position": { + "#": 2520 + }, + "force": { + "#": 2521 + }, + "torque": 0, + "positionImpulse": { + "#": 2522 + }, + "constraintImpulse": { + "#": 2523 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2524 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2525 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2526 + }, + "bounds": { + "#": 2528 + }, + "positionPrev": { + "#": 2531 + }, + "anglePrev": 0, + "axes": { + "#": 2532 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2513 + }, + "sleepCounter": 0, + "region": { + "#": 2535 + } + }, + [ + { + "#": 2513 + } + ], + [ + { + "#": 2516 + }, + { + "#": 2517 + }, + { + "#": 2518 + }, + { + "#": 2519 + } + ], + { + "x": 225, + "y": 237.82558, + "index": 0, + "body": { + "#": 2513 + }, + "isInternal": false + }, + { + "x": 250, + "y": 237.82558, + "index": 1, + "body": { + "#": 2513 + }, + "isInternal": false + }, + { + "x": 250, + "y": 262.82558, + "index": 2, + "body": { + "#": 2513 + }, + "isInternal": false + }, + { + "x": 225, + "y": 262.82558, + "index": 3, + "body": { + "#": 2513 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2527 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2529 + }, + "max": { + "#": 2530 + } + }, + { + "x": 225, + "y": 237.82558 + }, + { + "x": 250, + "y": 265.73285 + }, + { + "x": 237.5, + "y": 247.41831 + }, + [ + { + "#": 2533 + }, + { + "#": 2534 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,4,5", + "startCol": 4, + "endCol": 5, + "startRow": 4, + "endRow": 5 + }, + { + "id": 111, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2537 + }, + "angle": 0, + "vertices": { + "#": 2538 + }, + "position": { + "#": 2543 + }, + "force": { + "#": 2544 + }, + "torque": 0, + "positionImpulse": { + "#": 2545 + }, + "constraintImpulse": { + "#": 2546 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2547 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2548 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2549 + }, + "bounds": { + "#": 2551 + }, + "positionPrev": { + "#": 2554 + }, + "anglePrev": 0, + "axes": { + "#": 2555 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2536 + }, + "sleepCounter": 0, + "region": { + "#": 2558 + } + }, + [ + { + "#": 2536 + } + ], + [ + { + "#": 2539 + }, + { + "#": 2540 + }, + { + "#": 2541 + }, + { + "#": 2542 + } + ], + { + "x": 250, + "y": 237.82558, + "index": 0, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 275, + "y": 237.82558, + "index": 1, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 275, + "y": 262.82558, + "index": 2, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 250, + "y": 262.82558, + "index": 3, + "body": { + "#": 2536 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2550 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2552 + }, + "max": { + "#": 2553 + } + }, + { + "x": 250, + "y": 237.82558 + }, + { + "x": 275, + "y": 265.73285 + }, + { + "x": 262.5, + "y": 247.41831 + }, + [ + { + "#": 2556 + }, + { + "#": 2557 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,4,5", + "startCol": 5, + "endCol": 5, + "startRow": 4, + "endRow": 5 + }, + { + "id": 112, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2560 + }, + "angle": 0, + "vertices": { + "#": 2561 + }, + "position": { + "#": 2566 + }, + "force": { + "#": 2567 + }, + "torque": 0, + "positionImpulse": { + "#": 2568 + }, + "constraintImpulse": { + "#": 2569 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2570 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2571 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2572 + }, + "bounds": { + "#": 2574 + }, + "positionPrev": { + "#": 2577 + }, + "anglePrev": 0, + "axes": { + "#": 2578 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2559 + }, + "sleepCounter": 0, + "region": { + "#": 2581 + } + }, + [ + { + "#": 2559 + } + ], + [ + { + "#": 2562 + }, + { + "#": 2563 + }, + { + "#": 2564 + }, + { + "#": 2565 + } + ], + { + "x": 275, + "y": 237.82558, + "index": 0, + "body": { + "#": 2559 + }, + "isInternal": false + }, + { + "x": 300, + "y": 237.82558, + "index": 1, + "body": { + "#": 2559 + }, + "isInternal": false + }, + { + "x": 300, + "y": 262.82558, + "index": 2, + "body": { + "#": 2559 + }, + "isInternal": false + }, + { + "x": 275, + "y": 262.82558, + "index": 3, + "body": { + "#": 2559 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2573 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2575 + }, + "max": { + "#": 2576 + } + }, + { + "x": 275, + "y": 237.82558 + }, + { + "x": 300, + "y": 265.73285 + }, + { + "x": 287.5, + "y": 247.41831 + }, + [ + { + "#": 2579 + }, + { + "#": 2580 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,4,5", + "startCol": 5, + "endCol": 6, + "startRow": 4, + "endRow": 5 + }, + { + "id": 113, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2583 + }, + "angle": 0, + "vertices": { + "#": 2584 + }, + "position": { + "#": 2589 + }, + "force": { + "#": 2590 + }, + "torque": 0, + "positionImpulse": { + "#": 2591 + }, + "constraintImpulse": { + "#": 2592 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2593 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2594 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2595 + }, + "bounds": { + "#": 2597 + }, + "positionPrev": { + "#": 2600 + }, + "anglePrev": 0, + "axes": { + "#": 2601 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2582 + }, + "sleepCounter": 0, + "region": { + "#": 2604 + } + }, + [ + { + "#": 2582 + } + ], + [ + { + "#": 2585 + }, + { + "#": 2586 + }, + { + "#": 2587 + }, + { + "#": 2588 + } + ], + { + "x": 300, + "y": 237.82558, + "index": 0, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 325, + "y": 237.82558, + "index": 1, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 325, + "y": 262.82558, + "index": 2, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 300, + "y": 262.82558, + "index": 3, + "body": { + "#": 2582 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2596 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2598 + }, + "max": { + "#": 2599 + } + }, + { + "x": 300, + "y": 237.82558 + }, + { + "x": 325, + "y": 265.73285 + }, + { + "x": 312.5, + "y": 247.41831 + }, + [ + { + "#": 2602 + }, + { + "#": 2603 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,4,5", + "startCol": 6, + "endCol": 6, + "startRow": 4, + "endRow": 5 + }, + { + "id": 114, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2606 + }, + "angle": 0, + "vertices": { + "#": 2607 + }, + "position": { + "#": 2612 + }, + "force": { + "#": 2613 + }, + "torque": 0, + "positionImpulse": { + "#": 2614 + }, + "constraintImpulse": { + "#": 2615 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2616 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2617 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2618 + }, + "bounds": { + "#": 2620 + }, + "positionPrev": { + "#": 2623 + }, + "anglePrev": 0, + "axes": { + "#": 2624 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2605 + }, + "sleepCounter": 0, + "region": { + "#": 2627 + } + }, + [ + { + "#": 2605 + } + ], + [ + { + "#": 2608 + }, + { + "#": 2609 + }, + { + "#": 2610 + }, + { + "#": 2611 + } + ], + { + "x": 325, + "y": 237.82558, + "index": 0, + "body": { + "#": 2605 + }, + "isInternal": false + }, + { + "x": 350, + "y": 237.82558, + "index": 1, + "body": { + "#": 2605 + }, + "isInternal": false + }, + { + "x": 350, + "y": 262.82558, + "index": 2, + "body": { + "#": 2605 + }, + "isInternal": false + }, + { + "x": 325, + "y": 262.82558, + "index": 3, + "body": { + "#": 2605 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2619 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2621 + }, + "max": { + "#": 2622 + } + }, + { + "x": 325, + "y": 237.82558 + }, + { + "x": 350, + "y": 265.73285 + }, + { + "x": 337.5, + "y": 247.41831 + }, + [ + { + "#": 2625 + }, + { + "#": 2626 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,4,5", + "startCol": 6, + "endCol": 7, + "startRow": 4, + "endRow": 5 + }, + { + "id": 115, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2629 + }, + "angle": 0, + "vertices": { + "#": 2630 + }, + "position": { + "#": 2635 + }, + "force": { + "#": 2636 + }, + "torque": 0, + "positionImpulse": { + "#": 2637 + }, + "constraintImpulse": { + "#": 2638 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2639 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2640 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2641 + }, + "bounds": { + "#": 2643 + }, + "positionPrev": { + "#": 2646 + }, + "anglePrev": 0, + "axes": { + "#": 2647 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2628 + }, + "sleepCounter": 0, + "region": { + "#": 2650 + } + }, + [ + { + "#": 2628 + } + ], + [ + { + "#": 2631 + }, + { + "#": 2632 + }, + { + "#": 2633 + }, + { + "#": 2634 + } + ], + { + "x": 350, + "y": 237.82558, + "index": 0, + "body": { + "#": 2628 + }, + "isInternal": false + }, + { + "x": 375, + "y": 237.82558, + "index": 1, + "body": { + "#": 2628 + }, + "isInternal": false + }, + { + "x": 375, + "y": 262.82558, + "index": 2, + "body": { + "#": 2628 + }, + "isInternal": false + }, + { + "x": 350, + "y": 262.82558, + "index": 3, + "body": { + "#": 2628 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2642 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2644 + }, + "max": { + "#": 2645 + } + }, + { + "x": 350, + "y": 237.82558 + }, + { + "x": 375, + "y": 265.73285 + }, + { + "x": 362.5, + "y": 247.41831 + }, + [ + { + "#": 2648 + }, + { + "#": 2649 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,4,5", + "startCol": 7, + "endCol": 7, + "startRow": 4, + "endRow": 5 + }, + { + "id": 116, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2652 + }, + "angle": 0, + "vertices": { + "#": 2653 + }, + "position": { + "#": 2658 + }, + "force": { + "#": 2659 + }, + "torque": 0, + "positionImpulse": { + "#": 2660 + }, + "constraintImpulse": { + "#": 2661 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2662 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2663 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2664 + }, + "bounds": { + "#": 2666 + }, + "positionPrev": { + "#": 2669 + }, + "anglePrev": 0, + "axes": { + "#": 2670 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2651 + }, + "sleepCounter": 0, + "region": { + "#": 2673 + } + }, + [ + { + "#": 2651 + } + ], + [ + { + "#": 2654 + }, + { + "#": 2655 + }, + { + "#": 2656 + }, + { + "#": 2657 + } + ], + { + "x": 375, + "y": 237.82558, + "index": 0, + "body": { + "#": 2651 + }, + "isInternal": false + }, + { + "x": 400, + "y": 237.82558, + "index": 1, + "body": { + "#": 2651 + }, + "isInternal": false + }, + { + "x": 400, + "y": 262.82558, + "index": 2, + "body": { + "#": 2651 + }, + "isInternal": false + }, + { + "x": 375, + "y": 262.82558, + "index": 3, + "body": { + "#": 2651 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2665 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2667 + }, + "max": { + "#": 2668 + } + }, + { + "x": 375, + "y": 237.82558 + }, + { + "x": 400, + "y": 265.73285 + }, + { + "x": 387.5, + "y": 247.41831 + }, + [ + { + "#": 2671 + }, + { + "#": 2672 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,4,5", + "startCol": 7, + "endCol": 8, + "startRow": 4, + "endRow": 5 + }, + { + "id": 117, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2675 + }, + "angle": 0, + "vertices": { + "#": 2676 + }, + "position": { + "#": 2681 + }, + "force": { + "#": 2682 + }, + "torque": 0, + "positionImpulse": { + "#": 2683 + }, + "constraintImpulse": { + "#": 2684 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2685 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2686 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2687 + }, + "bounds": { + "#": 2689 + }, + "positionPrev": { + "#": 2692 + }, + "anglePrev": 0, + "axes": { + "#": 2693 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2674 + }, + "sleepCounter": 0, + "region": { + "#": 2696 + } + }, + [ + { + "#": 2674 + } + ], + [ + { + "#": 2677 + }, + { + "#": 2678 + }, + { + "#": 2679 + }, + { + "#": 2680 + } + ], + { + "x": 400, + "y": 237.82558, + "index": 0, + "body": { + "#": 2674 + }, + "isInternal": false + }, + { + "x": 425, + "y": 237.82558, + "index": 1, + "body": { + "#": 2674 + }, + "isInternal": false + }, + { + "x": 425, + "y": 262.82558, + "index": 2, + "body": { + "#": 2674 + }, + "isInternal": false + }, + { + "x": 400, + "y": 262.82558, + "index": 3, + "body": { + "#": 2674 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2688 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2690 + }, + "max": { + "#": 2691 + } + }, + { + "x": 400, + "y": 237.82558 + }, + { + "x": 425, + "y": 265.73285 + }, + { + "x": 412.5, + "y": 247.41831 + }, + [ + { + "#": 2694 + }, + { + "#": 2695 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,8,4,5", + "startCol": 8, + "endCol": 8, + "startRow": 4, + "endRow": 5 + }, + { + "id": 118, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2698 + }, + "angle": 0, + "vertices": { + "#": 2699 + }, + "position": { + "#": 2704 + }, + "force": { + "#": 2705 + }, + "torque": 0, + "positionImpulse": { + "#": 2706 + }, + "constraintImpulse": { + "#": 2707 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2708 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2709 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2710 + }, + "bounds": { + "#": 2712 + }, + "positionPrev": { + "#": 2715 + }, + "anglePrev": 0, + "axes": { + "#": 2716 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2697 + }, + "sleepCounter": 0, + "region": { + "#": 2719 + } + }, + [ + { + "#": 2697 + } + ], + [ + { + "#": 2700 + }, + { + "#": 2701 + }, + { + "#": 2702 + }, + { + "#": 2703 + } + ], + { + "x": 425, + "y": 237.82558, + "index": 0, + "body": { + "#": 2697 + }, + "isInternal": false + }, + { + "x": 450, + "y": 237.82558, + "index": 1, + "body": { + "#": 2697 + }, + "isInternal": false + }, + { + "x": 450, + "y": 262.82558, + "index": 2, + "body": { + "#": 2697 + }, + "isInternal": false + }, + { + "x": 425, + "y": 262.82558, + "index": 3, + "body": { + "#": 2697 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2711 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2713 + }, + "max": { + "#": 2714 + } + }, + { + "x": 425, + "y": 237.82558 + }, + { + "x": 450, + "y": 265.73285 + }, + { + "x": 437.5, + "y": 247.41831 + }, + [ + { + "#": 2717 + }, + { + "#": 2718 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,4,5", + "startCol": 8, + "endCol": 9, + "startRow": 4, + "endRow": 5 + }, + { + "id": 119, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2721 + }, + "angle": 0, + "vertices": { + "#": 2722 + }, + "position": { + "#": 2727 + }, + "force": { + "#": 2728 + }, + "torque": 0, + "positionImpulse": { + "#": 2729 + }, + "constraintImpulse": { + "#": 2730 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2731 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2732 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2733 + }, + "bounds": { + "#": 2735 + }, + "positionPrev": { + "#": 2738 + }, + "anglePrev": 0, + "axes": { + "#": 2739 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2720 + }, + "sleepCounter": 0, + "region": { + "#": 2742 + } + }, + [ + { + "#": 2720 + } + ], + [ + { + "#": 2723 + }, + { + "#": 2724 + }, + { + "#": 2725 + }, + { + "#": 2726 + } + ], + { + "x": 450, + "y": 237.82558, + "index": 0, + "body": { + "#": 2720 + }, + "isInternal": false + }, + { + "x": 475, + "y": 237.82558, + "index": 1, + "body": { + "#": 2720 + }, + "isInternal": false + }, + { + "x": 475, + "y": 262.82558, + "index": 2, + "body": { + "#": 2720 + }, + "isInternal": false + }, + { + "x": 450, + "y": 262.82558, + "index": 3, + "body": { + "#": 2720 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2734 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2736 + }, + "max": { + "#": 2737 + } + }, + { + "x": 450, + "y": 237.82558 + }, + { + "x": 475, + "y": 265.73285 + }, + { + "x": 462.5, + "y": 247.41831 + }, + [ + { + "#": 2740 + }, + { + "#": 2741 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,4,5", + "startCol": 9, + "endCol": 9, + "startRow": 4, + "endRow": 5 + }, + { + "id": 120, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2744 + }, + "angle": 0, + "vertices": { + "#": 2745 + }, + "position": { + "#": 2750 + }, + "force": { + "#": 2751 + }, + "torque": 0, + "positionImpulse": { + "#": 2752 + }, + "constraintImpulse": { + "#": 2753 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2754 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2755 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2756 + }, + "bounds": { + "#": 2758 + }, + "positionPrev": { + "#": 2761 + }, + "anglePrev": 0, + "axes": { + "#": 2762 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2743 + }, + "sleepCounter": 0, + "region": { + "#": 2765 + } + }, + [ + { + "#": 2743 + } + ], + [ + { + "#": 2746 + }, + { + "#": 2747 + }, + { + "#": 2748 + }, + { + "#": 2749 + } + ], + { + "x": 475, + "y": 237.82558, + "index": 0, + "body": { + "#": 2743 + }, + "isInternal": false + }, + { + "x": 500, + "y": 237.82558, + "index": 1, + "body": { + "#": 2743 + }, + "isInternal": false + }, + { + "x": 500, + "y": 262.82558, + "index": 2, + "body": { + "#": 2743 + }, + "isInternal": false + }, + { + "x": 475, + "y": 262.82558, + "index": 3, + "body": { + "#": 2743 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2757 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2759 + }, + "max": { + "#": 2760 + } + }, + { + "x": 475, + "y": 237.82558 + }, + { + "x": 500, + "y": 265.73285 + }, + { + "x": 487.5, + "y": 247.41831 + }, + [ + { + "#": 2763 + }, + { + "#": 2764 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,4,5", + "startCol": 9, + "endCol": 10, + "startRow": 4, + "endRow": 5 + }, + { + "id": 121, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2767 + }, + "angle": 0, + "vertices": { + "#": 2768 + }, + "position": { + "#": 2773 + }, + "force": { + "#": 2774 + }, + "torque": 0, + "positionImpulse": { + "#": 2775 + }, + "constraintImpulse": { + "#": 2776 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2777 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2778 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2779 + }, + "bounds": { + "#": 2781 + }, + "positionPrev": { + "#": 2784 + }, + "anglePrev": 0, + "axes": { + "#": 2785 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2766 + }, + "sleepCounter": 0, + "region": { + "#": 2788 + } + }, + [ + { + "#": 2766 + } + ], + [ + { + "#": 2769 + }, + { + "#": 2770 + }, + { + "#": 2771 + }, + { + "#": 2772 + } + ], + { + "x": 500, + "y": 237.82558, + "index": 0, + "body": { + "#": 2766 + }, + "isInternal": false + }, + { + "x": 525, + "y": 237.82558, + "index": 1, + "body": { + "#": 2766 + }, + "isInternal": false + }, + { + "x": 525, + "y": 262.82558, + "index": 2, + "body": { + "#": 2766 + }, + "isInternal": false + }, + { + "x": 500, + "y": 262.82558, + "index": 3, + "body": { + "#": 2766 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2780 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2782 + }, + "max": { + "#": 2783 + } + }, + { + "x": 500, + "y": 237.82558 + }, + { + "x": 525, + "y": 265.73285 + }, + { + "x": 512.5, + "y": 247.41831 + }, + [ + { + "#": 2786 + }, + { + "#": 2787 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,4,5", + "startCol": 10, + "endCol": 10, + "startRow": 4, + "endRow": 5 + }, + { + "id": 122, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2790 + }, + "angle": 0, + "vertices": { + "#": 2791 + }, + "position": { + "#": 2796 + }, + "force": { + "#": 2797 + }, + "torque": 0, + "positionImpulse": { + "#": 2798 + }, + "constraintImpulse": { + "#": 2799 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2800 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2801 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2802 + }, + "bounds": { + "#": 2804 + }, + "positionPrev": { + "#": 2807 + }, + "anglePrev": 0, + "axes": { + "#": 2808 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2789 + }, + "sleepCounter": 0, + "region": { + "#": 2811 + } + }, + [ + { + "#": 2789 + } + ], + [ + { + "#": 2792 + }, + { + "#": 2793 + }, + { + "#": 2794 + }, + { + "#": 2795 + } + ], + { + "x": 525, + "y": 237.82558, + "index": 0, + "body": { + "#": 2789 + }, + "isInternal": false + }, + { + "x": 550, + "y": 237.82558, + "index": 1, + "body": { + "#": 2789 + }, + "isInternal": false + }, + { + "x": 550, + "y": 262.82558, + "index": 2, + "body": { + "#": 2789 + }, + "isInternal": false + }, + { + "x": 525, + "y": 262.82558, + "index": 3, + "body": { + "#": 2789 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2803 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2805 + }, + "max": { + "#": 2806 + } + }, + { + "x": 525, + "y": 237.82558 + }, + { + "x": 550, + "y": 265.73285 + }, + { + "x": 537.5, + "y": 247.41831 + }, + [ + { + "#": 2809 + }, + { + "#": 2810 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,4,5", + "startCol": 10, + "endCol": 11, + "startRow": 4, + "endRow": 5 + }, + { + "id": 123, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2813 + }, + "angle": 0, + "vertices": { + "#": 2814 + }, + "position": { + "#": 2819 + }, + "force": { + "#": 2820 + }, + "torque": 0, + "positionImpulse": { + "#": 2821 + }, + "constraintImpulse": { + "#": 2822 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2823 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2824 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2825 + }, + "bounds": { + "#": 2827 + }, + "positionPrev": { + "#": 2830 + }, + "anglePrev": 0, + "axes": { + "#": 2831 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2812 + }, + "sleepCounter": 0, + "region": { + "#": 2834 + } + }, + [ + { + "#": 2812 + } + ], + [ + { + "#": 2815 + }, + { + "#": 2816 + }, + { + "#": 2817 + }, + { + "#": 2818 + } + ], + { + "x": 550, + "y": 237.82558, + "index": 0, + "body": { + "#": 2812 + }, + "isInternal": false + }, + { + "x": 575, + "y": 237.82558, + "index": 1, + "body": { + "#": 2812 + }, + "isInternal": false + }, + { + "x": 575, + "y": 262.82558, + "index": 2, + "body": { + "#": 2812 + }, + "isInternal": false + }, + { + "x": 550, + "y": 262.82558, + "index": 3, + "body": { + "#": 2812 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2826 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2828 + }, + "max": { + "#": 2829 + } + }, + { + "x": 550, + "y": 237.82558 + }, + { + "x": 575, + "y": 265.73285 + }, + { + "x": 562.5, + "y": 247.41831 + }, + [ + { + "#": 2832 + }, + { + "#": 2833 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,11,4,5", + "startCol": 11, + "endCol": 11, + "startRow": 4, + "endRow": 5 + }, + { + "id": 124, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2836 + }, + "angle": 0, + "vertices": { + "#": 2837 + }, + "position": { + "#": 2842 + }, + "force": { + "#": 2843 + }, + "torque": 0, + "positionImpulse": { + "#": 2844 + }, + "constraintImpulse": { + "#": 2845 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2846 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2847 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2848 + }, + "bounds": { + "#": 2850 + }, + "positionPrev": { + "#": 2853 + }, + "anglePrev": 0, + "axes": { + "#": 2854 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2835 + }, + "sleepCounter": 0, + "region": { + "#": 2857 + } + }, + [ + { + "#": 2835 + } + ], + [ + { + "#": 2838 + }, + { + "#": 2839 + }, + { + "#": 2840 + }, + { + "#": 2841 + } + ], + { + "x": 575, + "y": 237.82558, + "index": 0, + "body": { + "#": 2835 + }, + "isInternal": false + }, + { + "x": 600, + "y": 237.82558, + "index": 1, + "body": { + "#": 2835 + }, + "isInternal": false + }, + { + "x": 600, + "y": 262.82558, + "index": 2, + "body": { + "#": 2835 + }, + "isInternal": false + }, + { + "x": 575, + "y": 262.82558, + "index": 3, + "body": { + "#": 2835 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2849 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2851 + }, + "max": { + "#": 2852 + } + }, + { + "x": 575, + "y": 237.82558 + }, + { + "x": 600, + "y": 265.73285 + }, + { + "x": 587.5, + "y": 247.41831 + }, + [ + { + "#": 2855 + }, + { + "#": 2856 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,4,5", + "startCol": 11, + "endCol": 12, + "startRow": 4, + "endRow": 5 + }, + { + "id": 125, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2859 + }, + "angle": 0, + "vertices": { + "#": 2860 + }, + "position": { + "#": 2865 + }, + "force": { + "#": 2866 + }, + "torque": 0, + "positionImpulse": { + "#": 2867 + }, + "constraintImpulse": { + "#": 2868 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2869 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2870 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2871 + }, + "bounds": { + "#": 2873 + }, + "positionPrev": { + "#": 2876 + }, + "anglePrev": 0, + "axes": { + "#": 2877 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2858 + }, + "sleepCounter": 0, + "region": { + "#": 2880 + } + }, + [ + { + "#": 2858 + } + ], + [ + { + "#": 2861 + }, + { + "#": 2862 + }, + { + "#": 2863 + }, + { + "#": 2864 + } + ], + { + "x": 600, + "y": 237.82558, + "index": 0, + "body": { + "#": 2858 + }, + "isInternal": false + }, + { + "x": 625, + "y": 237.82558, + "index": 1, + "body": { + "#": 2858 + }, + "isInternal": false + }, + { + "x": 625, + "y": 262.82558, + "index": 2, + "body": { + "#": 2858 + }, + "isInternal": false + }, + { + "x": 600, + "y": 262.82558, + "index": 3, + "body": { + "#": 2858 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2872 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2874 + }, + "max": { + "#": 2875 + } + }, + { + "x": 600, + "y": 237.82558 + }, + { + "x": 625, + "y": 265.73285 + }, + { + "x": 612.5, + "y": 247.41831 + }, + [ + { + "#": 2878 + }, + { + "#": 2879 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,4,5", + "startCol": 12, + "endCol": 13, + "startRow": 4, + "endRow": 5 + }, + { + "id": 126, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2882 + }, + "angle": 0, + "vertices": { + "#": 2883 + }, + "position": { + "#": 2888 + }, + "force": { + "#": 2889 + }, + "torque": 0, + "positionImpulse": { + "#": 2890 + }, + "constraintImpulse": { + "#": 2891 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2892 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2893 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2894 + }, + "bounds": { + "#": 2896 + }, + "positionPrev": { + "#": 2899 + }, + "anglePrev": 0, + "axes": { + "#": 2900 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2881 + }, + "sleepCounter": 0, + "region": { + "#": 2903 + } + }, + [ + { + "#": 2881 + } + ], + [ + { + "#": 2884 + }, + { + "#": 2885 + }, + { + "#": 2886 + }, + { + "#": 2887 + } + ], + { + "x": 625, + "y": 237.82558, + "index": 0, + "body": { + "#": 2881 + }, + "isInternal": false + }, + { + "x": 650, + "y": 237.82558, + "index": 1, + "body": { + "#": 2881 + }, + "isInternal": false + }, + { + "x": 650, + "y": 262.82558, + "index": 2, + "body": { + "#": 2881 + }, + "isInternal": false + }, + { + "x": 625, + "y": 262.82558, + "index": 3, + "body": { + "#": 2881 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2895 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2897 + }, + "max": { + "#": 2898 + } + }, + { + "x": 625, + "y": 237.82558 + }, + { + "x": 650, + "y": 265.73285 + }, + { + "x": 637.5, + "y": 247.41831 + }, + [ + { + "#": 2901 + }, + { + "#": 2902 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,13,4,5", + "startCol": 13, + "endCol": 13, + "startRow": 4, + "endRow": 5 + }, + { + "id": 127, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2905 + }, + "angle": 0, + "vertices": { + "#": 2906 + }, + "position": { + "#": 2911 + }, + "force": { + "#": 2912 + }, + "torque": 0, + "positionImpulse": { + "#": 2913 + }, + "constraintImpulse": { + "#": 2914 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2915 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2916 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2917 + }, + "bounds": { + "#": 2919 + }, + "positionPrev": { + "#": 2922 + }, + "anglePrev": 0, + "axes": { + "#": 2923 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2904 + }, + "sleepCounter": 0, + "region": { + "#": 2926 + } + }, + [ + { + "#": 2904 + } + ], + [ + { + "#": 2907 + }, + { + "#": 2908 + }, + { + "#": 2909 + }, + { + "#": 2910 + } + ], + { + "x": 650, + "y": 237.82558, + "index": 0, + "body": { + "#": 2904 + }, + "isInternal": false + }, + { + "x": 675, + "y": 237.82558, + "index": 1, + "body": { + "#": 2904 + }, + "isInternal": false + }, + { + "x": 675, + "y": 262.82558, + "index": 2, + "body": { + "#": 2904 + }, + "isInternal": false + }, + { + "x": 650, + "y": 262.82558, + "index": 3, + "body": { + "#": 2904 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2918 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2920 + }, + "max": { + "#": 2921 + } + }, + { + "x": 650, + "y": 237.82558 + }, + { + "x": 675, + "y": 265.73285 + }, + { + "x": 662.5, + "y": 247.41831 + }, + [ + { + "#": 2924 + }, + { + "#": 2925 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,4,5", + "startCol": 13, + "endCol": 14, + "startRow": 4, + "endRow": 5 + }, + { + "id": 128, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2928 + }, + "angle": 0, + "vertices": { + "#": 2929 + }, + "position": { + "#": 2934 + }, + "force": { + "#": 2935 + }, + "torque": 0, + "positionImpulse": { + "#": 2936 + }, + "constraintImpulse": { + "#": 2937 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2938 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2939 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2940 + }, + "bounds": { + "#": 2942 + }, + "positionPrev": { + "#": 2945 + }, + "anglePrev": 0, + "axes": { + "#": 2946 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2927 + }, + "sleepCounter": 0, + "region": { + "#": 2949 + } + }, + [ + { + "#": 2927 + } + ], + [ + { + "#": 2930 + }, + { + "#": 2931 + }, + { + "#": 2932 + }, + { + "#": 2933 + } + ], + { + "x": 675, + "y": 237.82558, + "index": 0, + "body": { + "#": 2927 + }, + "isInternal": false + }, + { + "x": 700, + "y": 237.82558, + "index": 1, + "body": { + "#": 2927 + }, + "isInternal": false + }, + { + "x": 700, + "y": 262.82558, + "index": 2, + "body": { + "#": 2927 + }, + "isInternal": false + }, + { + "x": 675, + "y": 262.82558, + "index": 3, + "body": { + "#": 2927 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2941 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2943 + }, + "max": { + "#": 2944 + } + }, + { + "x": 675, + "y": 237.82558 + }, + { + "x": 700, + "y": 265.73285 + }, + { + "x": 687.5, + "y": 247.41831 + }, + [ + { + "#": 2947 + }, + { + "#": 2948 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,14,4,5", + "startCol": 14, + "endCol": 14, + "startRow": 4, + "endRow": 5 + }, + { + "id": 129, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2951 + }, + "angle": 0, + "vertices": { + "#": 2952 + }, + "position": { + "#": 2957 + }, + "force": { + "#": 2958 + }, + "torque": 0, + "positionImpulse": { + "#": 2959 + }, + "constraintImpulse": { + "#": 2960 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2961 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2962 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2963 + }, + "bounds": { + "#": 2965 + }, + "positionPrev": { + "#": 2968 + }, + "anglePrev": 0, + "axes": { + "#": 2969 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2950 + }, + "sleepCounter": 0, + "region": { + "#": 2972 + } + }, + [ + { + "#": 2950 + } + ], + [ + { + "#": 2953 + }, + { + "#": 2954 + }, + { + "#": 2955 + }, + { + "#": 2956 + } + ], + { + "x": 700, + "y": 237.82558, + "index": 0, + "body": { + "#": 2950 + }, + "isInternal": false + }, + { + "x": 725, + "y": 237.82558, + "index": 1, + "body": { + "#": 2950 + }, + "isInternal": false + }, + { + "x": 725, + "y": 262.82558, + "index": 2, + "body": { + "#": 2950 + }, + "isInternal": false + }, + { + "x": 700, + "y": 262.82558, + "index": 3, + "body": { + "#": 2950 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 250.32558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00436 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2964 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2966 + }, + "max": { + "#": 2967 + } + }, + { + "x": 700, + "y": 237.82558 + }, + { + "x": 725, + "y": 265.73285 + }, + { + "x": 712.5, + "y": 247.41831 + }, + [ + { + "#": 2970 + }, + { + "#": 2971 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,4,5", + "startCol": 14, + "endCol": 15, + "startRow": 4, + "endRow": 5 + }, + { + "id": 130, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2974 + }, + "angle": 0, + "vertices": { + "#": 2975 + }, + "position": { + "#": 2980 + }, + "force": { + "#": 2981 + }, + "torque": 0, + "positionImpulse": { + "#": 2982 + }, + "constraintImpulse": { + "#": 2983 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 2984 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 2985 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2986 + }, + "bounds": { + "#": 2988 + }, + "positionPrev": { + "#": 2991 + }, + "anglePrev": 0, + "axes": { + "#": 2992 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2973 + }, + "sleepCounter": 0, + "region": { + "#": 2995 + } + }, + [ + { + "#": 2973 + } + ], + [ + { + "#": 2976 + }, + { + "#": 2977 + }, + { + "#": 2978 + }, + { + "#": 2979 + } + ], + { + "x": 100, + "y": 262.77558, + "index": 0, + "body": { + "#": 2973 + }, + "isInternal": false + }, + { + "x": 125, + "y": 262.77558, + "index": 1, + "body": { + "#": 2973 + }, + "isInternal": false + }, + { + "x": 125, + "y": 287.77558, + "index": 2, + "body": { + "#": 2973 + }, + "isInternal": false + }, + { + "x": 100, + "y": 287.77558, + "index": 3, + "body": { + "#": 2973 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2987 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2989 + }, + "max": { + "#": 2990 + } + }, + { + "x": 100, + "y": 262.77558 + }, + { + "x": 125, + "y": 290.68285 + }, + { + "x": 112.5, + "y": 272.36831 + }, + [ + { + "#": 2993 + }, + { + "#": 2994 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,5,5", + "startCol": 2, + "endCol": 2, + "startRow": 5, + "endRow": 5 + }, + { + "id": 131, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 2997 + }, + "angle": 0, + "vertices": { + "#": 2998 + }, + "position": { + "#": 3003 + }, + "force": { + "#": 3004 + }, + "torque": 0, + "positionImpulse": { + "#": 3005 + }, + "constraintImpulse": { + "#": 3006 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3007 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3008 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3009 + }, + "bounds": { + "#": 3011 + }, + "positionPrev": { + "#": 3014 + }, + "anglePrev": 0, + "axes": { + "#": 3015 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 2996 + }, + "sleepCounter": 0, + "region": { + "#": 3018 + } + }, + [ + { + "#": 2996 + } + ], + [ + { + "#": 2999 + }, + { + "#": 3000 + }, + { + "#": 3001 + }, + { + "#": 3002 + } + ], + { + "x": 125, + "y": 262.77558, + "index": 0, + "body": { + "#": 2996 + }, + "isInternal": false + }, + { + "x": 150, + "y": 262.77558, + "index": 1, + "body": { + "#": 2996 + }, + "isInternal": false + }, + { + "x": 150, + "y": 287.77558, + "index": 2, + "body": { + "#": 2996 + }, + "isInternal": false + }, + { + "x": 125, + "y": 287.77558, + "index": 3, + "body": { + "#": 2996 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3010 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3012 + }, + "max": { + "#": 3013 + } + }, + { + "x": 125, + "y": 262.77558 + }, + { + "x": 150, + "y": 290.68285 + }, + { + "x": 137.5, + "y": 272.36831 + }, + [ + { + "#": 3016 + }, + { + "#": 3017 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,5,5", + "startCol": 2, + "endCol": 3, + "startRow": 5, + "endRow": 5 + }, + { + "id": 132, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3020 + }, + "angle": 0, + "vertices": { + "#": 3021 + }, + "position": { + "#": 3026 + }, + "force": { + "#": 3027 + }, + "torque": 0, + "positionImpulse": { + "#": 3028 + }, + "constraintImpulse": { + "#": 3029 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3030 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3031 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3032 + }, + "bounds": { + "#": 3034 + }, + "positionPrev": { + "#": 3037 + }, + "anglePrev": 0, + "axes": { + "#": 3038 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3019 + }, + "sleepCounter": 0, + "region": { + "#": 3041 + } + }, + [ + { + "#": 3019 + } + ], + [ + { + "#": 3022 + }, + { + "#": 3023 + }, + { + "#": 3024 + }, + { + "#": 3025 + } + ], + { + "x": 150, + "y": 262.77558, + "index": 0, + "body": { + "#": 3019 + }, + "isInternal": false + }, + { + "x": 175, + "y": 262.77558, + "index": 1, + "body": { + "#": 3019 + }, + "isInternal": false + }, + { + "x": 175, + "y": 287.77558, + "index": 2, + "body": { + "#": 3019 + }, + "isInternal": false + }, + { + "x": 150, + "y": 287.77558, + "index": 3, + "body": { + "#": 3019 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3033 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3035 + }, + "max": { + "#": 3036 + } + }, + { + "x": 150, + "y": 262.77558 + }, + { + "x": 175, + "y": 290.68285 + }, + { + "x": 162.5, + "y": 272.36831 + }, + [ + { + "#": 3039 + }, + { + "#": 3040 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,3,5,5", + "startCol": 3, + "endCol": 3, + "startRow": 5, + "endRow": 5 + }, + { + "id": 133, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3043 + }, + "angle": 0, + "vertices": { + "#": 3044 + }, + "position": { + "#": 3049 + }, + "force": { + "#": 3050 + }, + "torque": 0, + "positionImpulse": { + "#": 3051 + }, + "constraintImpulse": { + "#": 3052 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3053 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3054 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3055 + }, + "bounds": { + "#": 3057 + }, + "positionPrev": { + "#": 3060 + }, + "anglePrev": 0, + "axes": { + "#": 3061 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3042 + }, + "sleepCounter": 0, + "region": { + "#": 3064 + } + }, + [ + { + "#": 3042 + } + ], + [ + { + "#": 3045 + }, + { + "#": 3046 + }, + { + "#": 3047 + }, + { + "#": 3048 + } + ], + { + "x": 175, + "y": 262.77558, + "index": 0, + "body": { + "#": 3042 + }, + "isInternal": false + }, + { + "x": 200, + "y": 262.77558, + "index": 1, + "body": { + "#": 3042 + }, + "isInternal": false + }, + { + "x": 200, + "y": 287.77558, + "index": 2, + "body": { + "#": 3042 + }, + "isInternal": false + }, + { + "x": 175, + "y": 287.77558, + "index": 3, + "body": { + "#": 3042 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3056 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3058 + }, + "max": { + "#": 3059 + } + }, + { + "x": 175, + "y": 262.77558 + }, + { + "x": 200, + "y": 290.68285 + }, + { + "x": 187.5, + "y": 272.36831 + }, + [ + { + "#": 3062 + }, + { + "#": 3063 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,5,5", + "startCol": 3, + "endCol": 4, + "startRow": 5, + "endRow": 5 + }, + { + "id": 134, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3066 + }, + "angle": 0, + "vertices": { + "#": 3067 + }, + "position": { + "#": 3072 + }, + "force": { + "#": 3073 + }, + "torque": 0, + "positionImpulse": { + "#": 3074 + }, + "constraintImpulse": { + "#": 3075 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3076 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3077 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3078 + }, + "bounds": { + "#": 3080 + }, + "positionPrev": { + "#": 3083 + }, + "anglePrev": 0, + "axes": { + "#": 3084 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3065 + }, + "sleepCounter": 0, + "region": { + "#": 3087 + } + }, + [ + { + "#": 3065 + } + ], + [ + { + "#": 3068 + }, + { + "#": 3069 + }, + { + "#": 3070 + }, + { + "#": 3071 + } + ], + { + "x": 200, + "y": 262.77558, + "index": 0, + "body": { + "#": 3065 + }, + "isInternal": false + }, + { + "x": 225, + "y": 262.77558, + "index": 1, + "body": { + "#": 3065 + }, + "isInternal": false + }, + { + "x": 225, + "y": 287.77558, + "index": 2, + "body": { + "#": 3065 + }, + "isInternal": false + }, + { + "x": 200, + "y": 287.77558, + "index": 3, + "body": { + "#": 3065 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3079 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3081 + }, + "max": { + "#": 3082 + } + }, + { + "x": 200, + "y": 262.77558 + }, + { + "x": 225, + "y": 290.68285 + }, + { + "x": 212.5, + "y": 272.36831 + }, + [ + { + "#": 3085 + }, + { + "#": 3086 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,5,5", + "startCol": 4, + "endCol": 4, + "startRow": 5, + "endRow": 5 + }, + { + "id": 135, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3089 + }, + "angle": 0, + "vertices": { + "#": 3090 + }, + "position": { + "#": 3095 + }, + "force": { + "#": 3096 + }, + "torque": 0, + "positionImpulse": { + "#": 3097 + }, + "constraintImpulse": { + "#": 3098 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3099 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3100 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3101 + }, + "bounds": { + "#": 3103 + }, + "positionPrev": { + "#": 3106 + }, + "anglePrev": 0, + "axes": { + "#": 3107 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3088 + }, + "sleepCounter": 0, + "region": { + "#": 3110 + } + }, + [ + { + "#": 3088 + } + ], + [ + { + "#": 3091 + }, + { + "#": 3092 + }, + { + "#": 3093 + }, + { + "#": 3094 + } + ], + { + "x": 225, + "y": 262.77558, + "index": 0, + "body": { + "#": 3088 + }, + "isInternal": false + }, + { + "x": 250, + "y": 262.77558, + "index": 1, + "body": { + "#": 3088 + }, + "isInternal": false + }, + { + "x": 250, + "y": 287.77558, + "index": 2, + "body": { + "#": 3088 + }, + "isInternal": false + }, + { + "x": 225, + "y": 287.77558, + "index": 3, + "body": { + "#": 3088 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3102 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3104 + }, + "max": { + "#": 3105 + } + }, + { + "x": 225, + "y": 262.77558 + }, + { + "x": 250, + "y": 290.68285 + }, + { + "x": 237.5, + "y": 272.36831 + }, + [ + { + "#": 3108 + }, + { + "#": 3109 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,5,5", + "startCol": 4, + "endCol": 5, + "startRow": 5, + "endRow": 5 + }, + { + "id": 136, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3112 + }, + "angle": 0, + "vertices": { + "#": 3113 + }, + "position": { + "#": 3118 + }, + "force": { + "#": 3119 + }, + "torque": 0, + "positionImpulse": { + "#": 3120 + }, + "constraintImpulse": { + "#": 3121 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3122 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3123 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3124 + }, + "bounds": { + "#": 3126 + }, + "positionPrev": { + "#": 3129 + }, + "anglePrev": 0, + "axes": { + "#": 3130 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3111 + }, + "sleepCounter": 0, + "region": { + "#": 3133 + } + }, + [ + { + "#": 3111 + } + ], + [ + { + "#": 3114 + }, + { + "#": 3115 + }, + { + "#": 3116 + }, + { + "#": 3117 + } + ], + { + "x": 250, + "y": 262.77558, + "index": 0, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 275, + "y": 262.77558, + "index": 1, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 275, + "y": 287.77558, + "index": 2, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 250, + "y": 287.77558, + "index": 3, + "body": { + "#": 3111 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3125 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3127 + }, + "max": { + "#": 3128 + } + }, + { + "x": 250, + "y": 262.77558 + }, + { + "x": 275, + "y": 290.68285 + }, + { + "x": 262.5, + "y": 272.36831 + }, + [ + { + "#": 3131 + }, + { + "#": 3132 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,5,5", + "startCol": 5, + "endCol": 5, + "startRow": 5, + "endRow": 5 + }, + { + "id": 137, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3135 + }, + "angle": 0, + "vertices": { + "#": 3136 + }, + "position": { + "#": 3141 + }, + "force": { + "#": 3142 + }, + "torque": 0, + "positionImpulse": { + "#": 3143 + }, + "constraintImpulse": { + "#": 3144 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3145 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3146 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3147 + }, + "bounds": { + "#": 3149 + }, + "positionPrev": { + "#": 3152 + }, + "anglePrev": 0, + "axes": { + "#": 3153 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3134 + }, + "sleepCounter": 0, + "region": { + "#": 3156 + } + }, + [ + { + "#": 3134 + } + ], + [ + { + "#": 3137 + }, + { + "#": 3138 + }, + { + "#": 3139 + }, + { + "#": 3140 + } + ], + { + "x": 275, + "y": 262.77558, + "index": 0, + "body": { + "#": 3134 + }, + "isInternal": false + }, + { + "x": 300, + "y": 262.77558, + "index": 1, + "body": { + "#": 3134 + }, + "isInternal": false + }, + { + "x": 300, + "y": 287.77558, + "index": 2, + "body": { + "#": 3134 + }, + "isInternal": false + }, + { + "x": 275, + "y": 287.77558, + "index": 3, + "body": { + "#": 3134 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3148 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3150 + }, + "max": { + "#": 3151 + } + }, + { + "x": 275, + "y": 262.77558 + }, + { + "x": 300, + "y": 290.68285 + }, + { + "x": 287.5, + "y": 272.36831 + }, + [ + { + "#": 3154 + }, + { + "#": 3155 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,5,5", + "startCol": 5, + "endCol": 6, + "startRow": 5, + "endRow": 5 + }, + { + "id": 138, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3158 + }, + "angle": 0, + "vertices": { + "#": 3159 + }, + "position": { + "#": 3164 + }, + "force": { + "#": 3165 + }, + "torque": 0, + "positionImpulse": { + "#": 3166 + }, + "constraintImpulse": { + "#": 3167 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3168 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3169 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3170 + }, + "bounds": { + "#": 3172 + }, + "positionPrev": { + "#": 3175 + }, + "anglePrev": 0, + "axes": { + "#": 3176 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3157 + }, + "sleepCounter": 0, + "region": { + "#": 3179 + } + }, + [ + { + "#": 3157 + } + ], + [ + { + "#": 3160 + }, + { + "#": 3161 + }, + { + "#": 3162 + }, + { + "#": 3163 + } + ], + { + "x": 300, + "y": 262.77558, + "index": 0, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 325, + "y": 262.77558, + "index": 1, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 325, + "y": 287.77558, + "index": 2, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 300, + "y": 287.77558, + "index": 3, + "body": { + "#": 3157 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3171 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3173 + }, + "max": { + "#": 3174 + } + }, + { + "x": 300, + "y": 262.77558 + }, + { + "x": 325, + "y": 290.68285 + }, + { + "x": 312.5, + "y": 272.36831 + }, + [ + { + "#": 3177 + }, + { + "#": 3178 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,5,5", + "startCol": 6, + "endCol": 6, + "startRow": 5, + "endRow": 5 + }, + { + "id": 139, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3181 + }, + "angle": 0, + "vertices": { + "#": 3182 + }, + "position": { + "#": 3187 + }, + "force": { + "#": 3188 + }, + "torque": 0, + "positionImpulse": { + "#": 3189 + }, + "constraintImpulse": { + "#": 3190 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3191 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3192 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3193 + }, + "bounds": { + "#": 3195 + }, + "positionPrev": { + "#": 3198 + }, + "anglePrev": 0, + "axes": { + "#": 3199 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3180 + }, + "sleepCounter": 0, + "region": { + "#": 3202 + } + }, + [ + { + "#": 3180 + } + ], + [ + { + "#": 3183 + }, + { + "#": 3184 + }, + { + "#": 3185 + }, + { + "#": 3186 + } + ], + { + "x": 325, + "y": 262.77558, + "index": 0, + "body": { + "#": 3180 + }, + "isInternal": false + }, + { + "x": 350, + "y": 262.77558, + "index": 1, + "body": { + "#": 3180 + }, + "isInternal": false + }, + { + "x": 350, + "y": 287.77558, + "index": 2, + "body": { + "#": 3180 + }, + "isInternal": false + }, + { + "x": 325, + "y": 287.77558, + "index": 3, + "body": { + "#": 3180 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3194 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3196 + }, + "max": { + "#": 3197 + } + }, + { + "x": 325, + "y": 262.77558 + }, + { + "x": 350, + "y": 290.68285 + }, + { + "x": 337.5, + "y": 272.36831 + }, + [ + { + "#": 3200 + }, + { + "#": 3201 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,5,5", + "startCol": 6, + "endCol": 7, + "startRow": 5, + "endRow": 5 + }, + { + "id": 140, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3204 + }, + "angle": 0, + "vertices": { + "#": 3205 + }, + "position": { + "#": 3210 + }, + "force": { + "#": 3211 + }, + "torque": 0, + "positionImpulse": { + "#": 3212 + }, + "constraintImpulse": { + "#": 3213 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3214 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3215 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3216 + }, + "bounds": { + "#": 3218 + }, + "positionPrev": { + "#": 3221 + }, + "anglePrev": 0, + "axes": { + "#": 3222 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3203 + }, + "sleepCounter": 0, + "region": { + "#": 3225 + } + }, + [ + { + "#": 3203 + } + ], + [ + { + "#": 3206 + }, + { + "#": 3207 + }, + { + "#": 3208 + }, + { + "#": 3209 + } + ], + { + "x": 350, + "y": 262.77558, + "index": 0, + "body": { + "#": 3203 + }, + "isInternal": false + }, + { + "x": 375, + "y": 262.77558, + "index": 1, + "body": { + "#": 3203 + }, + "isInternal": false + }, + { + "x": 375, + "y": 287.77558, + "index": 2, + "body": { + "#": 3203 + }, + "isInternal": false + }, + { + "x": 350, + "y": 287.77558, + "index": 3, + "body": { + "#": 3203 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3217 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3219 + }, + "max": { + "#": 3220 + } + }, + { + "x": 350, + "y": 262.77558 + }, + { + "x": 375, + "y": 290.68285 + }, + { + "x": 362.5, + "y": 272.36831 + }, + [ + { + "#": 3223 + }, + { + "#": 3224 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,5,5", + "startCol": 7, + "endCol": 7, + "startRow": 5, + "endRow": 5 + }, + { + "id": 141, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3227 + }, + "angle": 0, + "vertices": { + "#": 3228 + }, + "position": { + "#": 3233 + }, + "force": { + "#": 3234 + }, + "torque": 0, + "positionImpulse": { + "#": 3235 + }, + "constraintImpulse": { + "#": 3236 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3237 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3238 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3239 + }, + "bounds": { + "#": 3241 + }, + "positionPrev": { + "#": 3244 + }, + "anglePrev": 0, + "axes": { + "#": 3245 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3226 + }, + "sleepCounter": 0, + "region": { + "#": 3248 + } + }, + [ + { + "#": 3226 + } + ], + [ + { + "#": 3229 + }, + { + "#": 3230 + }, + { + "#": 3231 + }, + { + "#": 3232 + } + ], + { + "x": 375, + "y": 262.77558, + "index": 0, + "body": { + "#": 3226 + }, + "isInternal": false + }, + { + "x": 400, + "y": 262.77558, + "index": 1, + "body": { + "#": 3226 + }, + "isInternal": false + }, + { + "x": 400, + "y": 287.77558, + "index": 2, + "body": { + "#": 3226 + }, + "isInternal": false + }, + { + "x": 375, + "y": 287.77558, + "index": 3, + "body": { + "#": 3226 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3240 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3242 + }, + "max": { + "#": 3243 + } + }, + { + "x": 375, + "y": 262.77558 + }, + { + "x": 400, + "y": 290.68285 + }, + { + "x": 387.5, + "y": 272.36831 + }, + [ + { + "#": 3246 + }, + { + "#": 3247 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,5,5", + "startCol": 7, + "endCol": 8, + "startRow": 5, + "endRow": 5 + }, + { + "id": 142, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3250 + }, + "angle": 0, + "vertices": { + "#": 3251 + }, + "position": { + "#": 3256 + }, + "force": { + "#": 3257 + }, + "torque": 0, + "positionImpulse": { + "#": 3258 + }, + "constraintImpulse": { + "#": 3259 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3260 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3261 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3262 + }, + "bounds": { + "#": 3264 + }, + "positionPrev": { + "#": 3267 + }, + "anglePrev": 0, + "axes": { + "#": 3268 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3249 + }, + "sleepCounter": 0, + "region": { + "#": 3271 + } + }, + [ + { + "#": 3249 + } + ], + [ + { + "#": 3252 + }, + { + "#": 3253 + }, + { + "#": 3254 + }, + { + "#": 3255 + } + ], + { + "x": 400, + "y": 262.77558, + "index": 0, + "body": { + "#": 3249 + }, + "isInternal": false + }, + { + "x": 425, + "y": 262.77558, + "index": 1, + "body": { + "#": 3249 + }, + "isInternal": false + }, + { + "x": 425, + "y": 287.77558, + "index": 2, + "body": { + "#": 3249 + }, + "isInternal": false + }, + { + "x": 400, + "y": 287.77558, + "index": 3, + "body": { + "#": 3249 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3263 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3265 + }, + "max": { + "#": 3266 + } + }, + { + "x": 400, + "y": 262.77558 + }, + { + "x": 425, + "y": 290.68285 + }, + { + "x": 412.5, + "y": 272.36831 + }, + [ + { + "#": 3269 + }, + { + "#": 3270 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,8,5,5", + "startCol": 8, + "endCol": 8, + "startRow": 5, + "endRow": 5 + }, + { + "id": 143, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3273 + }, + "angle": 0, + "vertices": { + "#": 3274 + }, + "position": { + "#": 3279 + }, + "force": { + "#": 3280 + }, + "torque": 0, + "positionImpulse": { + "#": 3281 + }, + "constraintImpulse": { + "#": 3282 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3283 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3284 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3285 + }, + "bounds": { + "#": 3287 + }, + "positionPrev": { + "#": 3290 + }, + "anglePrev": 0, + "axes": { + "#": 3291 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3272 + }, + "sleepCounter": 0, + "region": { + "#": 3294 + } + }, + [ + { + "#": 3272 + } + ], + [ + { + "#": 3275 + }, + { + "#": 3276 + }, + { + "#": 3277 + }, + { + "#": 3278 + } + ], + { + "x": 425, + "y": 262.77558, + "index": 0, + "body": { + "#": 3272 + }, + "isInternal": false + }, + { + "x": 450, + "y": 262.77558, + "index": 1, + "body": { + "#": 3272 + }, + "isInternal": false + }, + { + "x": 450, + "y": 287.77558, + "index": 2, + "body": { + "#": 3272 + }, + "isInternal": false + }, + { + "x": 425, + "y": 287.77558, + "index": 3, + "body": { + "#": 3272 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3286 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3288 + }, + "max": { + "#": 3289 + } + }, + { + "x": 425, + "y": 262.77558 + }, + { + "x": 450, + "y": 290.68285 + }, + { + "x": 437.5, + "y": 272.36831 + }, + [ + { + "#": 3292 + }, + { + "#": 3293 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,5,5", + "startCol": 8, + "endCol": 9, + "startRow": 5, + "endRow": 5 + }, + { + "id": 144, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3296 + }, + "angle": 0, + "vertices": { + "#": 3297 + }, + "position": { + "#": 3302 + }, + "force": { + "#": 3303 + }, + "torque": 0, + "positionImpulse": { + "#": 3304 + }, + "constraintImpulse": { + "#": 3305 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3306 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3307 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3308 + }, + "bounds": { + "#": 3310 + }, + "positionPrev": { + "#": 3313 + }, + "anglePrev": 0, + "axes": { + "#": 3314 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3295 + }, + "sleepCounter": 0, + "region": { + "#": 3317 + } + }, + [ + { + "#": 3295 + } + ], + [ + { + "#": 3298 + }, + { + "#": 3299 + }, + { + "#": 3300 + }, + { + "#": 3301 + } + ], + { + "x": 450, + "y": 262.77558, + "index": 0, + "body": { + "#": 3295 + }, + "isInternal": false + }, + { + "x": 475, + "y": 262.77558, + "index": 1, + "body": { + "#": 3295 + }, + "isInternal": false + }, + { + "x": 475, + "y": 287.77558, + "index": 2, + "body": { + "#": 3295 + }, + "isInternal": false + }, + { + "x": 450, + "y": 287.77558, + "index": 3, + "body": { + "#": 3295 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3309 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3311 + }, + "max": { + "#": 3312 + } + }, + { + "x": 450, + "y": 262.77558 + }, + { + "x": 475, + "y": 290.68285 + }, + { + "x": 462.5, + "y": 272.36831 + }, + [ + { + "#": 3315 + }, + { + "#": 3316 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,5,5", + "startCol": 9, + "endCol": 9, + "startRow": 5, + "endRow": 5 + }, + { + "id": 145, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3319 + }, + "angle": 0, + "vertices": { + "#": 3320 + }, + "position": { + "#": 3325 + }, + "force": { + "#": 3326 + }, + "torque": 0, + "positionImpulse": { + "#": 3327 + }, + "constraintImpulse": { + "#": 3328 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3329 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3330 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3331 + }, + "bounds": { + "#": 3333 + }, + "positionPrev": { + "#": 3336 + }, + "anglePrev": 0, + "axes": { + "#": 3337 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3318 + }, + "sleepCounter": 0, + "region": { + "#": 3340 + } + }, + [ + { + "#": 3318 + } + ], + [ + { + "#": 3321 + }, + { + "#": 3322 + }, + { + "#": 3323 + }, + { + "#": 3324 + } + ], + { + "x": 475, + "y": 262.77558, + "index": 0, + "body": { + "#": 3318 + }, + "isInternal": false + }, + { + "x": 500, + "y": 262.77558, + "index": 1, + "body": { + "#": 3318 + }, + "isInternal": false + }, + { + "x": 500, + "y": 287.77558, + "index": 2, + "body": { + "#": 3318 + }, + "isInternal": false + }, + { + "x": 475, + "y": 287.77558, + "index": 3, + "body": { + "#": 3318 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3332 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3334 + }, + "max": { + "#": 3335 + } + }, + { + "x": 475, + "y": 262.77558 + }, + { + "x": 500, + "y": 290.68285 + }, + { + "x": 487.5, + "y": 272.36831 + }, + [ + { + "#": 3338 + }, + { + "#": 3339 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,5,5", + "startCol": 9, + "endCol": 10, + "startRow": 5, + "endRow": 5 + }, + { + "id": 146, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3342 + }, + "angle": 0, + "vertices": { + "#": 3343 + }, + "position": { + "#": 3348 + }, + "force": { + "#": 3349 + }, + "torque": 0, + "positionImpulse": { + "#": 3350 + }, + "constraintImpulse": { + "#": 3351 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3352 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3353 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3354 + }, + "bounds": { + "#": 3356 + }, + "positionPrev": { + "#": 3359 + }, + "anglePrev": 0, + "axes": { + "#": 3360 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3341 + }, + "sleepCounter": 0, + "region": { + "#": 3363 + } + }, + [ + { + "#": 3341 + } + ], + [ + { + "#": 3344 + }, + { + "#": 3345 + }, + { + "#": 3346 + }, + { + "#": 3347 + } + ], + { + "x": 500, + "y": 262.77558, + "index": 0, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 525, + "y": 262.77558, + "index": 1, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 525, + "y": 287.77558, + "index": 2, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 500, + "y": 287.77558, + "index": 3, + "body": { + "#": 3341 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3355 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3357 + }, + "max": { + "#": 3358 + } + }, + { + "x": 500, + "y": 262.77558 + }, + { + "x": 525, + "y": 290.68285 + }, + { + "x": 512.5, + "y": 272.36831 + }, + [ + { + "#": 3361 + }, + { + "#": 3362 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,5,5", + "startCol": 10, + "endCol": 10, + "startRow": 5, + "endRow": 5 + }, + { + "id": 147, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3365 + }, + "angle": 0, + "vertices": { + "#": 3366 + }, + "position": { + "#": 3371 + }, + "force": { + "#": 3372 + }, + "torque": 0, + "positionImpulse": { + "#": 3373 + }, + "constraintImpulse": { + "#": 3374 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3375 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3376 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3377 + }, + "bounds": { + "#": 3379 + }, + "positionPrev": { + "#": 3382 + }, + "anglePrev": 0, + "axes": { + "#": 3383 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3364 + }, + "sleepCounter": 0, + "region": { + "#": 3386 + } + }, + [ + { + "#": 3364 + } + ], + [ + { + "#": 3367 + }, + { + "#": 3368 + }, + { + "#": 3369 + }, + { + "#": 3370 + } + ], + { + "x": 525, + "y": 262.77558, + "index": 0, + "body": { + "#": 3364 + }, + "isInternal": false + }, + { + "x": 550, + "y": 262.77558, + "index": 1, + "body": { + "#": 3364 + }, + "isInternal": false + }, + { + "x": 550, + "y": 287.77558, + "index": 2, + "body": { + "#": 3364 + }, + "isInternal": false + }, + { + "x": 525, + "y": 287.77558, + "index": 3, + "body": { + "#": 3364 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3378 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3380 + }, + "max": { + "#": 3381 + } + }, + { + "x": 525, + "y": 262.77558 + }, + { + "x": 550, + "y": 290.68285 + }, + { + "x": 537.5, + "y": 272.36831 + }, + [ + { + "#": 3384 + }, + { + "#": 3385 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,5,5", + "startCol": 10, + "endCol": 11, + "startRow": 5, + "endRow": 5 + }, + { + "id": 148, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3388 + }, + "angle": 0, + "vertices": { + "#": 3389 + }, + "position": { + "#": 3394 + }, + "force": { + "#": 3395 + }, + "torque": 0, + "positionImpulse": { + "#": 3396 + }, + "constraintImpulse": { + "#": 3397 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3398 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3399 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3400 + }, + "bounds": { + "#": 3402 + }, + "positionPrev": { + "#": 3405 + }, + "anglePrev": 0, + "axes": { + "#": 3406 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3387 + }, + "sleepCounter": 0, + "region": { + "#": 3409 + } + }, + [ + { + "#": 3387 + } + ], + [ + { + "#": 3390 + }, + { + "#": 3391 + }, + { + "#": 3392 + }, + { + "#": 3393 + } + ], + { + "x": 550, + "y": 262.77558, + "index": 0, + "body": { + "#": 3387 + }, + "isInternal": false + }, + { + "x": 575, + "y": 262.77558, + "index": 1, + "body": { + "#": 3387 + }, + "isInternal": false + }, + { + "x": 575, + "y": 287.77558, + "index": 2, + "body": { + "#": 3387 + }, + "isInternal": false + }, + { + "x": 550, + "y": 287.77558, + "index": 3, + "body": { + "#": 3387 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3401 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3403 + }, + "max": { + "#": 3404 + } + }, + { + "x": 550, + "y": 262.77558 + }, + { + "x": 575, + "y": 290.68285 + }, + { + "x": 562.5, + "y": 272.36831 + }, + [ + { + "#": 3407 + }, + { + "#": 3408 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,11,5,5", + "startCol": 11, + "endCol": 11, + "startRow": 5, + "endRow": 5 + }, + { + "id": 149, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3411 + }, + "angle": 0, + "vertices": { + "#": 3412 + }, + "position": { + "#": 3417 + }, + "force": { + "#": 3418 + }, + "torque": 0, + "positionImpulse": { + "#": 3419 + }, + "constraintImpulse": { + "#": 3420 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3421 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3422 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3423 + }, + "bounds": { + "#": 3425 + }, + "positionPrev": { + "#": 3428 + }, + "anglePrev": 0, + "axes": { + "#": 3429 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3410 + }, + "sleepCounter": 0, + "region": { + "#": 3432 + } + }, + [ + { + "#": 3410 + } + ], + [ + { + "#": 3413 + }, + { + "#": 3414 + }, + { + "#": 3415 + }, + { + "#": 3416 + } + ], + { + "x": 575, + "y": 262.77558, + "index": 0, + "body": { + "#": 3410 + }, + "isInternal": false + }, + { + "x": 600, + "y": 262.77558, + "index": 1, + "body": { + "#": 3410 + }, + "isInternal": false + }, + { + "x": 600, + "y": 287.77558, + "index": 2, + "body": { + "#": 3410 + }, + "isInternal": false + }, + { + "x": 575, + "y": 287.77558, + "index": 3, + "body": { + "#": 3410 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3424 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3426 + }, + "max": { + "#": 3427 + } + }, + { + "x": 575, + "y": 262.77558 + }, + { + "x": 600, + "y": 290.68285 + }, + { + "x": 587.5, + "y": 272.36831 + }, + [ + { + "#": 3430 + }, + { + "#": 3431 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,5,5", + "startCol": 11, + "endCol": 12, + "startRow": 5, + "endRow": 5 + }, + { + "id": 150, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3434 + }, + "angle": 0, + "vertices": { + "#": 3435 + }, + "position": { + "#": 3440 + }, + "force": { + "#": 3441 + }, + "torque": 0, + "positionImpulse": { + "#": 3442 + }, + "constraintImpulse": { + "#": 3443 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3444 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3445 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3446 + }, + "bounds": { + "#": 3448 + }, + "positionPrev": { + "#": 3451 + }, + "anglePrev": 0, + "axes": { + "#": 3452 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3433 + }, + "sleepCounter": 0, + "region": { + "#": 3455 + } + }, + [ + { + "#": 3433 + } + ], + [ + { + "#": 3436 + }, + { + "#": 3437 + }, + { + "#": 3438 + }, + { + "#": 3439 + } + ], + { + "x": 600, + "y": 262.77558, + "index": 0, + "body": { + "#": 3433 + }, + "isInternal": false + }, + { + "x": 625, + "y": 262.77558, + "index": 1, + "body": { + "#": 3433 + }, + "isInternal": false + }, + { + "x": 625, + "y": 287.77558, + "index": 2, + "body": { + "#": 3433 + }, + "isInternal": false + }, + { + "x": 600, + "y": 287.77558, + "index": 3, + "body": { + "#": 3433 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3447 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3449 + }, + "max": { + "#": 3450 + } + }, + { + "x": 600, + "y": 262.77558 + }, + { + "x": 625, + "y": 290.68285 + }, + { + "x": 612.5, + "y": 272.36831 + }, + [ + { + "#": 3453 + }, + { + "#": 3454 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,5,5", + "startCol": 12, + "endCol": 13, + "startRow": 5, + "endRow": 5 + }, + { + "id": 151, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3457 + }, + "angle": 0, + "vertices": { + "#": 3458 + }, + "position": { + "#": 3463 + }, + "force": { + "#": 3464 + }, + "torque": 0, + "positionImpulse": { + "#": 3465 + }, + "constraintImpulse": { + "#": 3466 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3467 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3468 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3469 + }, + "bounds": { + "#": 3471 + }, + "positionPrev": { + "#": 3474 + }, + "anglePrev": 0, + "axes": { + "#": 3475 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3456 + }, + "sleepCounter": 0, + "region": { + "#": 3478 + } + }, + [ + { + "#": 3456 + } + ], + [ + { + "#": 3459 + }, + { + "#": 3460 + }, + { + "#": 3461 + }, + { + "#": 3462 + } + ], + { + "x": 625, + "y": 262.77558, + "index": 0, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 650, + "y": 262.77558, + "index": 1, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 650, + "y": 287.77558, + "index": 2, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 625, + "y": 287.77558, + "index": 3, + "body": { + "#": 3456 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3470 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3472 + }, + "max": { + "#": 3473 + } + }, + { + "x": 625, + "y": 262.77558 + }, + { + "x": 650, + "y": 290.68285 + }, + { + "x": 637.5, + "y": 272.36831 + }, + [ + { + "#": 3476 + }, + { + "#": 3477 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,13,5,5", + "startCol": 13, + "endCol": 13, + "startRow": 5, + "endRow": 5 + }, + { + "id": 152, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3480 + }, + "angle": 0, + "vertices": { + "#": 3481 + }, + "position": { + "#": 3486 + }, + "force": { + "#": 3487 + }, + "torque": 0, + "positionImpulse": { + "#": 3488 + }, + "constraintImpulse": { + "#": 3489 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3490 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3491 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3492 + }, + "bounds": { + "#": 3494 + }, + "positionPrev": { + "#": 3497 + }, + "anglePrev": 0, + "axes": { + "#": 3498 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3479 + }, + "sleepCounter": 0, + "region": { + "#": 3501 + } + }, + [ + { + "#": 3479 + } + ], + [ + { + "#": 3482 + }, + { + "#": 3483 + }, + { + "#": 3484 + }, + { + "#": 3485 + } + ], + { + "x": 650, + "y": 262.77558, + "index": 0, + "body": { + "#": 3479 + }, + "isInternal": false + }, + { + "x": 675, + "y": 262.77558, + "index": 1, + "body": { + "#": 3479 + }, + "isInternal": false + }, + { + "x": 675, + "y": 287.77558, + "index": 2, + "body": { + "#": 3479 + }, + "isInternal": false + }, + { + "x": 650, + "y": 287.77558, + "index": 3, + "body": { + "#": 3479 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3493 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3495 + }, + "max": { + "#": 3496 + } + }, + { + "x": 650, + "y": 262.77558 + }, + { + "x": 675, + "y": 290.68285 + }, + { + "x": 662.5, + "y": 272.36831 + }, + [ + { + "#": 3499 + }, + { + "#": 3500 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,5,5", + "startCol": 13, + "endCol": 14, + "startRow": 5, + "endRow": 5 + }, + { + "id": 153, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3503 + }, + "angle": 0, + "vertices": { + "#": 3504 + }, + "position": { + "#": 3509 + }, + "force": { + "#": 3510 + }, + "torque": 0, + "positionImpulse": { + "#": 3511 + }, + "constraintImpulse": { + "#": 3512 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3513 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3514 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3515 + }, + "bounds": { + "#": 3517 + }, + "positionPrev": { + "#": 3520 + }, + "anglePrev": 0, + "axes": { + "#": 3521 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3502 + }, + "sleepCounter": 0, + "region": { + "#": 3524 + } + }, + [ + { + "#": 3502 + } + ], + [ + { + "#": 3505 + }, + { + "#": 3506 + }, + { + "#": 3507 + }, + { + "#": 3508 + } + ], + { + "x": 675, + "y": 262.77558, + "index": 0, + "body": { + "#": 3502 + }, + "isInternal": false + }, + { + "x": 700, + "y": 262.77558, + "index": 1, + "body": { + "#": 3502 + }, + "isInternal": false + }, + { + "x": 700, + "y": 287.77558, + "index": 2, + "body": { + "#": 3502 + }, + "isInternal": false + }, + { + "x": 675, + "y": 287.77558, + "index": 3, + "body": { + "#": 3502 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3516 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3518 + }, + "max": { + "#": 3519 + } + }, + { + "x": 675, + "y": 262.77558 + }, + { + "x": 700, + "y": 290.68285 + }, + { + "x": 687.5, + "y": 272.36831 + }, + [ + { + "#": 3522 + }, + { + "#": 3523 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,14,5,5", + "startCol": 14, + "endCol": 14, + "startRow": 5, + "endRow": 5 + }, + { + "id": 154, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3526 + }, + "angle": 0, + "vertices": { + "#": 3527 + }, + "position": { + "#": 3532 + }, + "force": { + "#": 3533 + }, + "torque": 0, + "positionImpulse": { + "#": 3534 + }, + "constraintImpulse": { + "#": 3535 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3536 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3537 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3538 + }, + "bounds": { + "#": 3540 + }, + "positionPrev": { + "#": 3543 + }, + "anglePrev": 0, + "axes": { + "#": 3544 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3525 + }, + "sleepCounter": 0, + "region": { + "#": 3547 + } + }, + [ + { + "#": 3525 + } + ], + [ + { + "#": 3528 + }, + { + "#": 3529 + }, + { + "#": 3530 + }, + { + "#": 3531 + } + ], + { + "x": 700, + "y": 262.77558, + "index": 0, + "body": { + "#": 3525 + }, + "isInternal": false + }, + { + "x": 725, + "y": 262.77558, + "index": 1, + "body": { + "#": 3525 + }, + "isInternal": false + }, + { + "x": 725, + "y": 287.77558, + "index": 2, + "body": { + "#": 3525 + }, + "isInternal": false + }, + { + "x": 700, + "y": 287.77558, + "index": 3, + "body": { + "#": 3525 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 275.27558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.00438 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3539 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3541 + }, + "max": { + "#": 3542 + } + }, + { + "x": 700, + "y": 262.77558 + }, + { + "x": 725, + "y": 290.68285 + }, + { + "x": 712.5, + "y": 272.36831 + }, + [ + { + "#": 3545 + }, + { + "#": 3546 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,5,5", + "startCol": 14, + "endCol": 15, + "startRow": 5, + "endRow": 5 + }, + { + "id": 155, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3549 + }, + "angle": 0, + "vertices": { + "#": 3550 + }, + "position": { + "#": 3555 + }, + "force": { + "#": 3556 + }, + "torque": 0, + "positionImpulse": { + "#": 3557 + }, + "constraintImpulse": { + "#": 3558 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3559 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3560 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3561 + }, + "bounds": { + "#": 3563 + }, + "positionPrev": { + "#": 3566 + }, + "anglePrev": 0, + "axes": { + "#": 3567 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3548 + }, + "sleepCounter": 0, + "region": { + "#": 3570 + } + }, + [ + { + "#": 3548 + } + ], + [ + { + "#": 3551 + }, + { + "#": 3552 + }, + { + "#": 3553 + }, + { + "#": 3554 + } + ], + { + "x": 100, + "y": 287.72558, + "index": 0, + "body": { + "#": 3548 + }, + "isInternal": false + }, + { + "x": 125, + "y": 287.72558, + "index": 1, + "body": { + "#": 3548 + }, + "isInternal": false + }, + { + "x": 125, + "y": 312.72558, + "index": 2, + "body": { + "#": 3548 + }, + "isInternal": false + }, + { + "x": 100, + "y": 312.72558, + "index": 3, + "body": { + "#": 3548 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3562 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3564 + }, + "max": { + "#": 3565 + } + }, + { + "x": 100, + "y": 287.72558 + }, + { + "x": 125, + "y": 315.63285 + }, + { + "x": 112.5, + "y": 297.31831 + }, + [ + { + "#": 3568 + }, + { + "#": 3569 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,5,6", + "startCol": 2, + "endCol": 2, + "startRow": 5, + "endRow": 6 + }, + { + "id": 156, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3572 + }, + "angle": 0, + "vertices": { + "#": 3573 + }, + "position": { + "#": 3578 + }, + "force": { + "#": 3579 + }, + "torque": 0, + "positionImpulse": { + "#": 3580 + }, + "constraintImpulse": { + "#": 3581 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3582 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3583 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3584 + }, + "bounds": { + "#": 3586 + }, + "positionPrev": { + "#": 3589 + }, + "anglePrev": 0, + "axes": { + "#": 3590 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3571 + }, + "sleepCounter": 0, + "region": { + "#": 3593 + } + }, + [ + { + "#": 3571 + } + ], + [ + { + "#": 3574 + }, + { + "#": 3575 + }, + { + "#": 3576 + }, + { + "#": 3577 + } + ], + { + "x": 125, + "y": 287.72558, + "index": 0, + "body": { + "#": 3571 + }, + "isInternal": false + }, + { + "x": 150, + "y": 287.72558, + "index": 1, + "body": { + "#": 3571 + }, + "isInternal": false + }, + { + "x": 150, + "y": 312.72558, + "index": 2, + "body": { + "#": 3571 + }, + "isInternal": false + }, + { + "x": 125, + "y": 312.72558, + "index": 3, + "body": { + "#": 3571 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3585 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3587 + }, + "max": { + "#": 3588 + } + }, + { + "x": 125, + "y": 287.72558 + }, + { + "x": 150, + "y": 315.63285 + }, + { + "x": 137.5, + "y": 297.31831 + }, + [ + { + "#": 3591 + }, + { + "#": 3592 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,5,6", + "startCol": 2, + "endCol": 3, + "startRow": 5, + "endRow": 6 + }, + { + "id": 157, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3595 + }, + "angle": 0, + "vertices": { + "#": 3596 + }, + "position": { + "#": 3601 + }, + "force": { + "#": 3602 + }, + "torque": 0, + "positionImpulse": { + "#": 3603 + }, + "constraintImpulse": { + "#": 3604 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3605 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3606 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3607 + }, + "bounds": { + "#": 3609 + }, + "positionPrev": { + "#": 3612 + }, + "anglePrev": 0, + "axes": { + "#": 3613 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3594 + }, + "sleepCounter": 0, + "region": { + "#": 3616 + } + }, + [ + { + "#": 3594 + } + ], + [ + { + "#": 3597 + }, + { + "#": 3598 + }, + { + "#": 3599 + }, + { + "#": 3600 + } + ], + { + "x": 150, + "y": 287.72558, + "index": 0, + "body": { + "#": 3594 + }, + "isInternal": false + }, + { + "x": 175, + "y": 287.72558, + "index": 1, + "body": { + "#": 3594 + }, + "isInternal": false + }, + { + "x": 175, + "y": 312.72558, + "index": 2, + "body": { + "#": 3594 + }, + "isInternal": false + }, + { + "x": 150, + "y": 312.72558, + "index": 3, + "body": { + "#": 3594 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3608 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3610 + }, + "max": { + "#": 3611 + } + }, + { + "x": 150, + "y": 287.72558 + }, + { + "x": 175, + "y": 315.63285 + }, + { + "x": 162.5, + "y": 297.31831 + }, + [ + { + "#": 3614 + }, + { + "#": 3615 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,3,5,6", + "startCol": 3, + "endCol": 3, + "startRow": 5, + "endRow": 6 + }, + { + "id": 158, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3618 + }, + "angle": 0, + "vertices": { + "#": 3619 + }, + "position": { + "#": 3624 + }, + "force": { + "#": 3625 + }, + "torque": 0, + "positionImpulse": { + "#": 3626 + }, + "constraintImpulse": { + "#": 3627 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3628 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3629 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3630 + }, + "bounds": { + "#": 3632 + }, + "positionPrev": { + "#": 3635 + }, + "anglePrev": 0, + "axes": { + "#": 3636 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3617 + }, + "sleepCounter": 0, + "region": { + "#": 3639 + } + }, + [ + { + "#": 3617 + } + ], + [ + { + "#": 3620 + }, + { + "#": 3621 + }, + { + "#": 3622 + }, + { + "#": 3623 + } + ], + { + "x": 175, + "y": 287.72558, + "index": 0, + "body": { + "#": 3617 + }, + "isInternal": false + }, + { + "x": 200, + "y": 287.72558, + "index": 1, + "body": { + "#": 3617 + }, + "isInternal": false + }, + { + "x": 200, + "y": 312.72558, + "index": 2, + "body": { + "#": 3617 + }, + "isInternal": false + }, + { + "x": 175, + "y": 312.72558, + "index": 3, + "body": { + "#": 3617 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3631 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3633 + }, + "max": { + "#": 3634 + } + }, + { + "x": 175, + "y": 287.72558 + }, + { + "x": 200, + "y": 315.63285 + }, + { + "x": 187.5, + "y": 297.31831 + }, + [ + { + "#": 3637 + }, + { + "#": 3638 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,5,6", + "startCol": 3, + "endCol": 4, + "startRow": 5, + "endRow": 6 + }, + { + "id": 159, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3641 + }, + "angle": 0, + "vertices": { + "#": 3642 + }, + "position": { + "#": 3647 + }, + "force": { + "#": 3648 + }, + "torque": 0, + "positionImpulse": { + "#": 3649 + }, + "constraintImpulse": { + "#": 3650 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3651 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3652 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3653 + }, + "bounds": { + "#": 3655 + }, + "positionPrev": { + "#": 3658 + }, + "anglePrev": 0, + "axes": { + "#": 3659 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3640 + }, + "sleepCounter": 0, + "region": { + "#": 3662 + } + }, + [ + { + "#": 3640 + } + ], + [ + { + "#": 3643 + }, + { + "#": 3644 + }, + { + "#": 3645 + }, + { + "#": 3646 + } + ], + { + "x": 200, + "y": 287.72558, + "index": 0, + "body": { + "#": 3640 + }, + "isInternal": false + }, + { + "x": 225, + "y": 287.72558, + "index": 1, + "body": { + "#": 3640 + }, + "isInternal": false + }, + { + "x": 225, + "y": 312.72558, + "index": 2, + "body": { + "#": 3640 + }, + "isInternal": false + }, + { + "x": 200, + "y": 312.72558, + "index": 3, + "body": { + "#": 3640 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3654 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3656 + }, + "max": { + "#": 3657 + } + }, + { + "x": 200, + "y": 287.72558 + }, + { + "x": 225, + "y": 315.63285 + }, + { + "x": 212.5, + "y": 297.31831 + }, + [ + { + "#": 3660 + }, + { + "#": 3661 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,5,6", + "startCol": 4, + "endCol": 4, + "startRow": 5, + "endRow": 6 + }, + { + "id": 160, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3664 + }, + "angle": 0, + "vertices": { + "#": 3665 + }, + "position": { + "#": 3670 + }, + "force": { + "#": 3671 + }, + "torque": 0, + "positionImpulse": { + "#": 3672 + }, + "constraintImpulse": { + "#": 3673 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3674 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3675 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3676 + }, + "bounds": { + "#": 3678 + }, + "positionPrev": { + "#": 3681 + }, + "anglePrev": 0, + "axes": { + "#": 3682 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3663 + }, + "sleepCounter": 0, + "region": { + "#": 3685 + } + }, + [ + { + "#": 3663 + } + ], + [ + { + "#": 3666 + }, + { + "#": 3667 + }, + { + "#": 3668 + }, + { + "#": 3669 + } + ], + { + "x": 225, + "y": 287.72558, + "index": 0, + "body": { + "#": 3663 + }, + "isInternal": false + }, + { + "x": 250, + "y": 287.72558, + "index": 1, + "body": { + "#": 3663 + }, + "isInternal": false + }, + { + "x": 250, + "y": 312.72558, + "index": 2, + "body": { + "#": 3663 + }, + "isInternal": false + }, + { + "x": 225, + "y": 312.72558, + "index": 3, + "body": { + "#": 3663 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3677 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3679 + }, + "max": { + "#": 3680 + } + }, + { + "x": 225, + "y": 287.72558 + }, + { + "x": 250, + "y": 315.63285 + }, + { + "x": 237.5, + "y": 297.31831 + }, + [ + { + "#": 3683 + }, + { + "#": 3684 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,5,6", + "startCol": 4, + "endCol": 5, + "startRow": 5, + "endRow": 6 + }, + { + "id": 161, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3687 + }, + "angle": 0, + "vertices": { + "#": 3688 + }, + "position": { + "#": 3693 + }, + "force": { + "#": 3694 + }, + "torque": 0, + "positionImpulse": { + "#": 3695 + }, + "constraintImpulse": { + "#": 3696 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3697 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3698 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3699 + }, + "bounds": { + "#": 3701 + }, + "positionPrev": { + "#": 3704 + }, + "anglePrev": 0, + "axes": { + "#": 3705 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3686 + }, + "sleepCounter": 0, + "region": { + "#": 3708 + } + }, + [ + { + "#": 3686 + } + ], + [ + { + "#": 3689 + }, + { + "#": 3690 + }, + { + "#": 3691 + }, + { + "#": 3692 + } + ], + { + "x": 250, + "y": 287.72558, + "index": 0, + "body": { + "#": 3686 + }, + "isInternal": false + }, + { + "x": 275, + "y": 287.72558, + "index": 1, + "body": { + "#": 3686 + }, + "isInternal": false + }, + { + "x": 275, + "y": 312.72558, + "index": 2, + "body": { + "#": 3686 + }, + "isInternal": false + }, + { + "x": 250, + "y": 312.72558, + "index": 3, + "body": { + "#": 3686 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3700 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3702 + }, + "max": { + "#": 3703 + } + }, + { + "x": 250, + "y": 287.72558 + }, + { + "x": 275, + "y": 315.63285 + }, + { + "x": 262.5, + "y": 297.31831 + }, + [ + { + "#": 3706 + }, + { + "#": 3707 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,5,6", + "startCol": 5, + "endCol": 5, + "startRow": 5, + "endRow": 6 + }, + { + "id": 162, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3710 + }, + "angle": 0, + "vertices": { + "#": 3711 + }, + "position": { + "#": 3716 + }, + "force": { + "#": 3717 + }, + "torque": 0, + "positionImpulse": { + "#": 3718 + }, + "constraintImpulse": { + "#": 3719 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3720 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3721 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3722 + }, + "bounds": { + "#": 3724 + }, + "positionPrev": { + "#": 3727 + }, + "anglePrev": 0, + "axes": { + "#": 3728 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3709 + }, + "sleepCounter": 0, + "region": { + "#": 3731 + } + }, + [ + { + "#": 3709 + } + ], + [ + { + "#": 3712 + }, + { + "#": 3713 + }, + { + "#": 3714 + }, + { + "#": 3715 + } + ], + { + "x": 275, + "y": 287.72558, + "index": 0, + "body": { + "#": 3709 + }, + "isInternal": false + }, + { + "x": 300, + "y": 287.72558, + "index": 1, + "body": { + "#": 3709 + }, + "isInternal": false + }, + { + "x": 300, + "y": 312.72558, + "index": 2, + "body": { + "#": 3709 + }, + "isInternal": false + }, + { + "x": 275, + "y": 312.72558, + "index": 3, + "body": { + "#": 3709 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3723 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3725 + }, + "max": { + "#": 3726 + } + }, + { + "x": 275, + "y": 287.72558 + }, + { + "x": 300, + "y": 315.63285 + }, + { + "x": 287.5, + "y": 297.31831 + }, + [ + { + "#": 3729 + }, + { + "#": 3730 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,5,6", + "startCol": 5, + "endCol": 6, + "startRow": 5, + "endRow": 6 + }, + { + "id": 163, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3733 + }, + "angle": 0, + "vertices": { + "#": 3734 + }, + "position": { + "#": 3739 + }, + "force": { + "#": 3740 + }, + "torque": 0, + "positionImpulse": { + "#": 3741 + }, + "constraintImpulse": { + "#": 3742 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3743 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3744 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3745 + }, + "bounds": { + "#": 3747 + }, + "positionPrev": { + "#": 3750 + }, + "anglePrev": 0, + "axes": { + "#": 3751 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3732 + }, + "sleepCounter": 0, + "region": { + "#": 3754 + } + }, + [ + { + "#": 3732 + } + ], + [ + { + "#": 3735 + }, + { + "#": 3736 + }, + { + "#": 3737 + }, + { + "#": 3738 + } + ], + { + "x": 300, + "y": 287.72558, + "index": 0, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 325, + "y": 287.72558, + "index": 1, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 325, + "y": 312.72558, + "index": 2, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 300, + "y": 312.72558, + "index": 3, + "body": { + "#": 3732 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3746 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3748 + }, + "max": { + "#": 3749 + } + }, + { + "x": 300, + "y": 287.72558 + }, + { + "x": 325, + "y": 315.63285 + }, + { + "x": 312.5, + "y": 297.31831 + }, + [ + { + "#": 3752 + }, + { + "#": 3753 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,5,6", + "startCol": 6, + "endCol": 6, + "startRow": 5, + "endRow": 6 + }, + { + "id": 164, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3756 + }, + "angle": 0, + "vertices": { + "#": 3757 + }, + "position": { + "#": 3762 + }, + "force": { + "#": 3763 + }, + "torque": 0, + "positionImpulse": { + "#": 3764 + }, + "constraintImpulse": { + "#": 3765 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3766 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3767 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3768 + }, + "bounds": { + "#": 3770 + }, + "positionPrev": { + "#": 3773 + }, + "anglePrev": 0, + "axes": { + "#": 3774 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3755 + }, + "sleepCounter": 0, + "region": { + "#": 3777 + } + }, + [ + { + "#": 3755 + } + ], + [ + { + "#": 3758 + }, + { + "#": 3759 + }, + { + "#": 3760 + }, + { + "#": 3761 + } + ], + { + "x": 325, + "y": 287.72558, + "index": 0, + "body": { + "#": 3755 + }, + "isInternal": false + }, + { + "x": 350, + "y": 287.72558, + "index": 1, + "body": { + "#": 3755 + }, + "isInternal": false + }, + { + "x": 350, + "y": 312.72558, + "index": 2, + "body": { + "#": 3755 + }, + "isInternal": false + }, + { + "x": 325, + "y": 312.72558, + "index": 3, + "body": { + "#": 3755 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3769 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3771 + }, + "max": { + "#": 3772 + } + }, + { + "x": 325, + "y": 287.72558 + }, + { + "x": 350, + "y": 315.63285 + }, + { + "x": 337.5, + "y": 297.31831 + }, + [ + { + "#": 3775 + }, + { + "#": 3776 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,5,6", + "startCol": 6, + "endCol": 7, + "startRow": 5, + "endRow": 6 + }, + { + "id": 165, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3779 + }, + "angle": 0, + "vertices": { + "#": 3780 + }, + "position": { + "#": 3785 + }, + "force": { + "#": 3786 + }, + "torque": 0, + "positionImpulse": { + "#": 3787 + }, + "constraintImpulse": { + "#": 3788 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3789 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3790 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3791 + }, + "bounds": { + "#": 3793 + }, + "positionPrev": { + "#": 3796 + }, + "anglePrev": 0, + "axes": { + "#": 3797 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3778 + }, + "sleepCounter": 0, + "region": { + "#": 3800 + } + }, + [ + { + "#": 3778 + } + ], + [ + { + "#": 3781 + }, + { + "#": 3782 + }, + { + "#": 3783 + }, + { + "#": 3784 + } + ], + { + "x": 350, + "y": 287.72558, + "index": 0, + "body": { + "#": 3778 + }, + "isInternal": false + }, + { + "x": 375, + "y": 287.72558, + "index": 1, + "body": { + "#": 3778 + }, + "isInternal": false + }, + { + "x": 375, + "y": 312.72558, + "index": 2, + "body": { + "#": 3778 + }, + "isInternal": false + }, + { + "x": 350, + "y": 312.72558, + "index": 3, + "body": { + "#": 3778 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3792 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3794 + }, + "max": { + "#": 3795 + } + }, + { + "x": 350, + "y": 287.72558 + }, + { + "x": 375, + "y": 315.63285 + }, + { + "x": 362.5, + "y": 297.31831 + }, + [ + { + "#": 3798 + }, + { + "#": 3799 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,5,6", + "startCol": 7, + "endCol": 7, + "startRow": 5, + "endRow": 6 + }, + { + "id": 166, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3802 + }, + "angle": 0, + "vertices": { + "#": 3803 + }, + "position": { + "#": 3808 + }, + "force": { + "#": 3809 + }, + "torque": 0, + "positionImpulse": { + "#": 3810 + }, + "constraintImpulse": { + "#": 3811 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3812 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3813 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3814 + }, + "bounds": { + "#": 3816 + }, + "positionPrev": { + "#": 3819 + }, + "anglePrev": 0, + "axes": { + "#": 3820 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3801 + }, + "sleepCounter": 0, + "region": { + "#": 3823 + } + }, + [ + { + "#": 3801 + } + ], + [ + { + "#": 3804 + }, + { + "#": 3805 + }, + { + "#": 3806 + }, + { + "#": 3807 + } + ], + { + "x": 375, + "y": 287.72558, + "index": 0, + "body": { + "#": 3801 + }, + "isInternal": false + }, + { + "x": 400, + "y": 287.72558, + "index": 1, + "body": { + "#": 3801 + }, + "isInternal": false + }, + { + "x": 400, + "y": 312.72558, + "index": 2, + "body": { + "#": 3801 + }, + "isInternal": false + }, + { + "x": 375, + "y": 312.72558, + "index": 3, + "body": { + "#": 3801 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3815 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3817 + }, + "max": { + "#": 3818 + } + }, + { + "x": 375, + "y": 287.72558 + }, + { + "x": 400, + "y": 315.63285 + }, + { + "x": 387.5, + "y": 297.31831 + }, + [ + { + "#": 3821 + }, + { + "#": 3822 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,5,6", + "startCol": 7, + "endCol": 8, + "startRow": 5, + "endRow": 6 + }, + { + "id": 167, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3825 + }, + "angle": 0, + "vertices": { + "#": 3826 + }, + "position": { + "#": 3831 + }, + "force": { + "#": 3832 + }, + "torque": 0, + "positionImpulse": { + "#": 3833 + }, + "constraintImpulse": { + "#": 3834 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3835 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3836 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3837 + }, + "bounds": { + "#": 3839 + }, + "positionPrev": { + "#": 3842 + }, + "anglePrev": 0, + "axes": { + "#": 3843 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3824 + }, + "sleepCounter": 0, + "region": { + "#": 3846 + } + }, + [ + { + "#": 3824 + } + ], + [ + { + "#": 3827 + }, + { + "#": 3828 + }, + { + "#": 3829 + }, + { + "#": 3830 + } + ], + { + "x": 400, + "y": 287.72558, + "index": 0, + "body": { + "#": 3824 + }, + "isInternal": false + }, + { + "x": 425, + "y": 287.72558, + "index": 1, + "body": { + "#": 3824 + }, + "isInternal": false + }, + { + "x": 425, + "y": 312.72558, + "index": 2, + "body": { + "#": 3824 + }, + "isInternal": false + }, + { + "x": 400, + "y": 312.72558, + "index": 3, + "body": { + "#": 3824 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3838 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3840 + }, + "max": { + "#": 3841 + } + }, + { + "x": 400, + "y": 287.72558 + }, + { + "x": 425, + "y": 315.63285 + }, + { + "x": 412.5, + "y": 297.31831 + }, + [ + { + "#": 3844 + }, + { + "#": 3845 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,8,5,6", + "startCol": 8, + "endCol": 8, + "startRow": 5, + "endRow": 6 + }, + { + "id": 168, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3848 + }, + "angle": 0, + "vertices": { + "#": 3849 + }, + "position": { + "#": 3854 + }, + "force": { + "#": 3855 + }, + "torque": 0, + "positionImpulse": { + "#": 3856 + }, + "constraintImpulse": { + "#": 3857 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3858 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3859 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3860 + }, + "bounds": { + "#": 3862 + }, + "positionPrev": { + "#": 3865 + }, + "anglePrev": 0, + "axes": { + "#": 3866 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3847 + }, + "sleepCounter": 0, + "region": { + "#": 3869 + } + }, + [ + { + "#": 3847 + } + ], + [ + { + "#": 3850 + }, + { + "#": 3851 + }, + { + "#": 3852 + }, + { + "#": 3853 + } + ], + { + "x": 425, + "y": 287.72558, + "index": 0, + "body": { + "#": 3847 + }, + "isInternal": false + }, + { + "x": 450, + "y": 287.72558, + "index": 1, + "body": { + "#": 3847 + }, + "isInternal": false + }, + { + "x": 450, + "y": 312.72558, + "index": 2, + "body": { + "#": 3847 + }, + "isInternal": false + }, + { + "x": 425, + "y": 312.72558, + "index": 3, + "body": { + "#": 3847 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3861 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3863 + }, + "max": { + "#": 3864 + } + }, + { + "x": 425, + "y": 287.72558 + }, + { + "x": 450, + "y": 315.63285 + }, + { + "x": 437.5, + "y": 297.31831 + }, + [ + { + "#": 3867 + }, + { + "#": 3868 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,5,6", + "startCol": 8, + "endCol": 9, + "startRow": 5, + "endRow": 6 + }, + { + "id": 169, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3871 + }, + "angle": 0, + "vertices": { + "#": 3872 + }, + "position": { + "#": 3877 + }, + "force": { + "#": 3878 + }, + "torque": 0, + "positionImpulse": { + "#": 3879 + }, + "constraintImpulse": { + "#": 3880 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3881 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3882 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3883 + }, + "bounds": { + "#": 3885 + }, + "positionPrev": { + "#": 3888 + }, + "anglePrev": 0, + "axes": { + "#": 3889 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3870 + }, + "sleepCounter": 0, + "region": { + "#": 3892 + } + }, + [ + { + "#": 3870 + } + ], + [ + { + "#": 3873 + }, + { + "#": 3874 + }, + { + "#": 3875 + }, + { + "#": 3876 + } + ], + { + "x": 450, + "y": 287.72558, + "index": 0, + "body": { + "#": 3870 + }, + "isInternal": false + }, + { + "x": 475, + "y": 287.72558, + "index": 1, + "body": { + "#": 3870 + }, + "isInternal": false + }, + { + "x": 475, + "y": 312.72558, + "index": 2, + "body": { + "#": 3870 + }, + "isInternal": false + }, + { + "x": 450, + "y": 312.72558, + "index": 3, + "body": { + "#": 3870 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3884 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3886 + }, + "max": { + "#": 3887 + } + }, + { + "x": 450, + "y": 287.72558 + }, + { + "x": 475, + "y": 315.63285 + }, + { + "x": 462.5, + "y": 297.31831 + }, + [ + { + "#": 3890 + }, + { + "#": 3891 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,5,6", + "startCol": 9, + "endCol": 9, + "startRow": 5, + "endRow": 6 + }, + { + "id": 170, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3894 + }, + "angle": 0, + "vertices": { + "#": 3895 + }, + "position": { + "#": 3900 + }, + "force": { + "#": 3901 + }, + "torque": 0, + "positionImpulse": { + "#": 3902 + }, + "constraintImpulse": { + "#": 3903 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3904 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3905 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3906 + }, + "bounds": { + "#": 3908 + }, + "positionPrev": { + "#": 3911 + }, + "anglePrev": 0, + "axes": { + "#": 3912 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3893 + }, + "sleepCounter": 0, + "region": { + "#": 3915 + } + }, + [ + { + "#": 3893 + } + ], + [ + { + "#": 3896 + }, + { + "#": 3897 + }, + { + "#": 3898 + }, + { + "#": 3899 + } + ], + { + "x": 475, + "y": 287.72558, + "index": 0, + "body": { + "#": 3893 + }, + "isInternal": false + }, + { + "x": 500, + "y": 287.72558, + "index": 1, + "body": { + "#": 3893 + }, + "isInternal": false + }, + { + "x": 500, + "y": 312.72558, + "index": 2, + "body": { + "#": 3893 + }, + "isInternal": false + }, + { + "x": 475, + "y": 312.72558, + "index": 3, + "body": { + "#": 3893 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3907 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3909 + }, + "max": { + "#": 3910 + } + }, + { + "x": 475, + "y": 287.72558 + }, + { + "x": 500, + "y": 315.63285 + }, + { + "x": 487.5, + "y": 297.31831 + }, + [ + { + "#": 3913 + }, + { + "#": 3914 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,5,6", + "startCol": 9, + "endCol": 10, + "startRow": 5, + "endRow": 6 + }, + { + "id": 171, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3917 + }, + "angle": 0, + "vertices": { + "#": 3918 + }, + "position": { + "#": 3923 + }, + "force": { + "#": 3924 + }, + "torque": 0, + "positionImpulse": { + "#": 3925 + }, + "constraintImpulse": { + "#": 3926 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3927 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3928 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3929 + }, + "bounds": { + "#": 3931 + }, + "positionPrev": { + "#": 3934 + }, + "anglePrev": 0, + "axes": { + "#": 3935 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3916 + }, + "sleepCounter": 0, + "region": { + "#": 3938 + } + }, + [ + { + "#": 3916 + } + ], + [ + { + "#": 3919 + }, + { + "#": 3920 + }, + { + "#": 3921 + }, + { + "#": 3922 + } + ], + { + "x": 500, + "y": 287.72558, + "index": 0, + "body": { + "#": 3916 + }, + "isInternal": false + }, + { + "x": 525, + "y": 287.72558, + "index": 1, + "body": { + "#": 3916 + }, + "isInternal": false + }, + { + "x": 525, + "y": 312.72558, + "index": 2, + "body": { + "#": 3916 + }, + "isInternal": false + }, + { + "x": 500, + "y": 312.72558, + "index": 3, + "body": { + "#": 3916 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3930 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3932 + }, + "max": { + "#": 3933 + } + }, + { + "x": 500, + "y": 287.72558 + }, + { + "x": 525, + "y": 315.63285 + }, + { + "x": 512.5, + "y": 297.31831 + }, + [ + { + "#": 3936 + }, + { + "#": 3937 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,5,6", + "startCol": 10, + "endCol": 10, + "startRow": 5, + "endRow": 6 + }, + { + "id": 172, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3940 + }, + "angle": 0, + "vertices": { + "#": 3941 + }, + "position": { + "#": 3946 + }, + "force": { + "#": 3947 + }, + "torque": 0, + "positionImpulse": { + "#": 3948 + }, + "constraintImpulse": { + "#": 3949 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3950 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3951 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3952 + }, + "bounds": { + "#": 3954 + }, + "positionPrev": { + "#": 3957 + }, + "anglePrev": 0, + "axes": { + "#": 3958 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3939 + }, + "sleepCounter": 0, + "region": { + "#": 3961 + } + }, + [ + { + "#": 3939 + } + ], + [ + { + "#": 3942 + }, + { + "#": 3943 + }, + { + "#": 3944 + }, + { + "#": 3945 + } + ], + { + "x": 525, + "y": 287.72558, + "index": 0, + "body": { + "#": 3939 + }, + "isInternal": false + }, + { + "x": 550, + "y": 287.72558, + "index": 1, + "body": { + "#": 3939 + }, + "isInternal": false + }, + { + "x": 550, + "y": 312.72558, + "index": 2, + "body": { + "#": 3939 + }, + "isInternal": false + }, + { + "x": 525, + "y": 312.72558, + "index": 3, + "body": { + "#": 3939 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3953 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3955 + }, + "max": { + "#": 3956 + } + }, + { + "x": 525, + "y": 287.72558 + }, + { + "x": 550, + "y": 315.63285 + }, + { + "x": 537.5, + "y": 297.31831 + }, + [ + { + "#": 3959 + }, + { + "#": 3960 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,5,6", + "startCol": 10, + "endCol": 11, + "startRow": 5, + "endRow": 6 + }, + { + "id": 173, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3963 + }, + "angle": 0, + "vertices": { + "#": 3964 + }, + "position": { + "#": 3969 + }, + "force": { + "#": 3970 + }, + "torque": 0, + "positionImpulse": { + "#": 3971 + }, + "constraintImpulse": { + "#": 3972 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3973 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3974 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3975 + }, + "bounds": { + "#": 3977 + }, + "positionPrev": { + "#": 3980 + }, + "anglePrev": 0, + "axes": { + "#": 3981 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3962 + }, + "sleepCounter": 0, + "region": { + "#": 3984 + } + }, + [ + { + "#": 3962 + } + ], + [ + { + "#": 3965 + }, + { + "#": 3966 + }, + { + "#": 3967 + }, + { + "#": 3968 + } + ], + { + "x": 550, + "y": 287.72558, + "index": 0, + "body": { + "#": 3962 + }, + "isInternal": false + }, + { + "x": 575, + "y": 287.72558, + "index": 1, + "body": { + "#": 3962 + }, + "isInternal": false + }, + { + "x": 575, + "y": 312.72558, + "index": 2, + "body": { + "#": 3962 + }, + "isInternal": false + }, + { + "x": 550, + "y": 312.72558, + "index": 3, + "body": { + "#": 3962 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3976 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 3978 + }, + "max": { + "#": 3979 + } + }, + { + "x": 550, + "y": 287.72558 + }, + { + "x": 575, + "y": 315.63285 + }, + { + "x": 562.5, + "y": 297.31831 + }, + [ + { + "#": 3982 + }, + { + "#": 3983 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,11,5,6", + "startCol": 11, + "endCol": 11, + "startRow": 5, + "endRow": 6 + }, + { + "id": 174, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3986 + }, + "angle": 0, + "vertices": { + "#": 3987 + }, + "position": { + "#": 3992 + }, + "force": { + "#": 3993 + }, + "torque": 0, + "positionImpulse": { + "#": 3994 + }, + "constraintImpulse": { + "#": 3995 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 3996 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 3997 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 3998 + }, + "bounds": { + "#": 4000 + }, + "positionPrev": { + "#": 4003 + }, + "anglePrev": 0, + "axes": { + "#": 4004 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 3985 + }, + "sleepCounter": 0, + "region": { + "#": 4007 + } + }, + [ + { + "#": 3985 + } + ], + [ + { + "#": 3988 + }, + { + "#": 3989 + }, + { + "#": 3990 + }, + { + "#": 3991 + } + ], + { + "x": 575, + "y": 287.72558, + "index": 0, + "body": { + "#": 3985 + }, + "isInternal": false + }, + { + "x": 600, + "y": 287.72558, + "index": 1, + "body": { + "#": 3985 + }, + "isInternal": false + }, + { + "x": 600, + "y": 312.72558, + "index": 2, + "body": { + "#": 3985 + }, + "isInternal": false + }, + { + "x": 575, + "y": 312.72558, + "index": 3, + "body": { + "#": 3985 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 3999 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4001 + }, + "max": { + "#": 4002 + } + }, + { + "x": 575, + "y": 287.72558 + }, + { + "x": 600, + "y": 315.63285 + }, + { + "x": 587.5, + "y": 297.31831 + }, + [ + { + "#": 4005 + }, + { + "#": 4006 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,5,6", + "startCol": 11, + "endCol": 12, + "startRow": 5, + "endRow": 6 + }, + { + "id": 175, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4009 + }, + "angle": 0, + "vertices": { + "#": 4010 + }, + "position": { + "#": 4015 + }, + "force": { + "#": 4016 + }, + "torque": 0, + "positionImpulse": { + "#": 4017 + }, + "constraintImpulse": { + "#": 4018 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4019 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4020 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4021 + }, + "bounds": { + "#": 4023 + }, + "positionPrev": { + "#": 4026 + }, + "anglePrev": 0, + "axes": { + "#": 4027 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4008 + }, + "sleepCounter": 0, + "region": { + "#": 4030 + } + }, + [ + { + "#": 4008 + } + ], + [ + { + "#": 4011 + }, + { + "#": 4012 + }, + { + "#": 4013 + }, + { + "#": 4014 + } + ], + { + "x": 600, + "y": 287.72558, + "index": 0, + "body": { + "#": 4008 + }, + "isInternal": false + }, + { + "x": 625, + "y": 287.72558, + "index": 1, + "body": { + "#": 4008 + }, + "isInternal": false + }, + { + "x": 625, + "y": 312.72558, + "index": 2, + "body": { + "#": 4008 + }, + "isInternal": false + }, + { + "x": 600, + "y": 312.72558, + "index": 3, + "body": { + "#": 4008 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4022 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4024 + }, + "max": { + "#": 4025 + } + }, + { + "x": 600, + "y": 287.72558 + }, + { + "x": 625, + "y": 315.63285 + }, + { + "x": 612.5, + "y": 297.31831 + }, + [ + { + "#": 4028 + }, + { + "#": 4029 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,5,6", + "startCol": 12, + "endCol": 13, + "startRow": 5, + "endRow": 6 + }, + { + "id": 176, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4032 + }, + "angle": 0, + "vertices": { + "#": 4033 + }, + "position": { + "#": 4038 + }, + "force": { + "#": 4039 + }, + "torque": 0, + "positionImpulse": { + "#": 4040 + }, + "constraintImpulse": { + "#": 4041 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4042 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4043 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4044 + }, + "bounds": { + "#": 4046 + }, + "positionPrev": { + "#": 4049 + }, + "anglePrev": 0, + "axes": { + "#": 4050 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4031 + }, + "sleepCounter": 0, + "region": { + "#": 4053 + } + }, + [ + { + "#": 4031 + } + ], + [ + { + "#": 4034 + }, + { + "#": 4035 + }, + { + "#": 4036 + }, + { + "#": 4037 + } + ], + { + "x": 625, + "y": 287.72558, + "index": 0, + "body": { + "#": 4031 + }, + "isInternal": false + }, + { + "x": 650, + "y": 287.72558, + "index": 1, + "body": { + "#": 4031 + }, + "isInternal": false + }, + { + "x": 650, + "y": 312.72558, + "index": 2, + "body": { + "#": 4031 + }, + "isInternal": false + }, + { + "x": 625, + "y": 312.72558, + "index": 3, + "body": { + "#": 4031 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4045 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4047 + }, + "max": { + "#": 4048 + } + }, + { + "x": 625, + "y": 287.72558 + }, + { + "x": 650, + "y": 315.63285 + }, + { + "x": 637.5, + "y": 297.31831 + }, + [ + { + "#": 4051 + }, + { + "#": 4052 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,13,5,6", + "startCol": 13, + "endCol": 13, + "startRow": 5, + "endRow": 6 + }, + { + "id": 177, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4055 + }, + "angle": 0, + "vertices": { + "#": 4056 + }, + "position": { + "#": 4061 + }, + "force": { + "#": 4062 + }, + "torque": 0, + "positionImpulse": { + "#": 4063 + }, + "constraintImpulse": { + "#": 4064 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4065 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4066 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4067 + }, + "bounds": { + "#": 4069 + }, + "positionPrev": { + "#": 4072 + }, + "anglePrev": 0, + "axes": { + "#": 4073 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4054 + }, + "sleepCounter": 0, + "region": { + "#": 4076 + } + }, + [ + { + "#": 4054 + } + ], + [ + { + "#": 4057 + }, + { + "#": 4058 + }, + { + "#": 4059 + }, + { + "#": 4060 + } + ], + { + "x": 650, + "y": 287.72558, + "index": 0, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 675, + "y": 287.72558, + "index": 1, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 675, + "y": 312.72558, + "index": 2, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 650, + "y": 312.72558, + "index": 3, + "body": { + "#": 4054 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4068 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4070 + }, + "max": { + "#": 4071 + } + }, + { + "x": 650, + "y": 287.72558 + }, + { + "x": 675, + "y": 315.63285 + }, + { + "x": 662.5, + "y": 297.31831 + }, + [ + { + "#": 4074 + }, + { + "#": 4075 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,5,6", + "startCol": 13, + "endCol": 14, + "startRow": 5, + "endRow": 6 + }, + { + "id": 178, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4078 + }, + "angle": 0, + "vertices": { + "#": 4079 + }, + "position": { + "#": 4084 + }, + "force": { + "#": 4085 + }, + "torque": 0, + "positionImpulse": { + "#": 4086 + }, + "constraintImpulse": { + "#": 4087 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4088 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4089 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4090 + }, + "bounds": { + "#": 4092 + }, + "positionPrev": { + "#": 4095 + }, + "anglePrev": 0, + "axes": { + "#": 4096 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4077 + }, + "sleepCounter": 0, + "region": { + "#": 4099 + } + }, + [ + { + "#": 4077 + } + ], + [ + { + "#": 4080 + }, + { + "#": 4081 + }, + { + "#": 4082 + }, + { + "#": 4083 + } + ], + { + "x": 675, + "y": 287.72558, + "index": 0, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 700, + "y": 287.72558, + "index": 1, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 700, + "y": 312.72558, + "index": 2, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 675, + "y": 312.72558, + "index": 3, + "body": { + "#": 4077 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4091 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4093 + }, + "max": { + "#": 4094 + } + }, + { + "x": 675, + "y": 287.72558 + }, + { + "x": 700, + "y": 315.63285 + }, + { + "x": 687.5, + "y": 297.31831 + }, + [ + { + "#": 4097 + }, + { + "#": 4098 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,14,5,6", + "startCol": 14, + "endCol": 14, + "startRow": 5, + "endRow": 6 + }, + { + "id": 179, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4101 + }, + "angle": 0, + "vertices": { + "#": 4102 + }, + "position": { + "#": 4107 + }, + "force": { + "#": 4108 + }, + "torque": 0, + "positionImpulse": { + "#": 4109 + }, + "constraintImpulse": { + "#": 4110 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4111 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4112 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4113 + }, + "bounds": { + "#": 4115 + }, + "positionPrev": { + "#": 4118 + }, + "anglePrev": 0, + "axes": { + "#": 4119 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4100 + }, + "sleepCounter": 0, + "region": { + "#": 4122 + } + }, + [ + { + "#": 4100 + } + ], + [ + { + "#": 4103 + }, + { + "#": 4104 + }, + { + "#": 4105 + }, + { + "#": 4106 + } + ], + { + "x": 700, + "y": 287.72558, + "index": 0, + "body": { + "#": 4100 + }, + "isInternal": false + }, + { + "x": 725, + "y": 287.72558, + "index": 1, + "body": { + "#": 4100 + }, + "isInternal": false + }, + { + "x": 725, + "y": 312.72558, + "index": 2, + "body": { + "#": 4100 + }, + "isInternal": false + }, + { + "x": 700, + "y": 312.72558, + "index": 3, + "body": { + "#": 4100 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 300.22558 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.0044 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4114 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4116 + }, + "max": { + "#": 4117 + } + }, + { + "x": 700, + "y": 287.72558 + }, + { + "x": 725, + "y": 315.63285 + }, + { + "x": 712.5, + "y": 297.31831 + }, + [ + { + "#": 4120 + }, + { + "#": 4121 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,5,6", + "startCol": 14, + "endCol": 15, + "startRow": 5, + "endRow": 6 + }, + { + "id": 180, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4124 + }, + "angle": 0, + "vertices": { + "#": 4125 + }, + "position": { + "#": 4130 + }, + "force": { + "#": 4131 + }, + "torque": 0, + "positionImpulse": { + "#": 4132 + }, + "constraintImpulse": { + "#": 4133 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4134 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4135 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4136 + }, + "bounds": { + "#": 4138 + }, + "positionPrev": { + "#": 4141 + }, + "anglePrev": 0, + "axes": { + "#": 4142 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4123 + }, + "sleepCounter": 0, + "region": { + "#": 4145 + } + }, + [ + { + "#": 4123 + } + ], + [ + { + "#": 4126 + }, + { + "#": 4127 + }, + { + "#": 4128 + }, + { + "#": 4129 + } + ], + { + "x": 100, + "y": 312.73575, + "index": 0, + "body": { + "#": 4123 + }, + "isInternal": false + }, + { + "x": 125, + "y": 312.73575, + "index": 1, + "body": { + "#": 4123 + }, + "isInternal": false + }, + { + "x": 125, + "y": 337.73575, + "index": 2, + "body": { + "#": 4123 + }, + "isInternal": false + }, + { + "x": 100, + "y": 337.73575, + "index": 3, + "body": { + "#": 4123 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4137 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4139 + }, + "max": { + "#": 4140 + } + }, + { + "x": 100, + "y": 312.73575 + }, + { + "x": 125, + "y": 337.73575 + }, + { + "x": 112.5, + "y": 322.32848 + }, + [ + { + "#": 4143 + }, + { + "#": 4144 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,6,7", + "startCol": 2, + "endCol": 2, + "startRow": 6, + "endRow": 7 + }, + { + "id": 181, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4147 + }, + "angle": 0, + "vertices": { + "#": 4148 + }, + "position": { + "#": 4153 + }, + "force": { + "#": 4154 + }, + "torque": 0, + "positionImpulse": { + "#": 4155 + }, + "constraintImpulse": { + "#": 4156 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4157 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4158 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4159 + }, + "bounds": { + "#": 4161 + }, + "positionPrev": { + "#": 4164 + }, + "anglePrev": 0, + "axes": { + "#": 4165 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4146 + }, + "sleepCounter": 0, + "region": { + "#": 4168 + } + }, + [ + { + "#": 4146 + } + ], + [ + { + "#": 4149 + }, + { + "#": 4150 + }, + { + "#": 4151 + }, + { + "#": 4152 + } + ], + { + "x": 125, + "y": 312.73575, + "index": 0, + "body": { + "#": 4146 + }, + "isInternal": false + }, + { + "x": 150, + "y": 312.73575, + "index": 1, + "body": { + "#": 4146 + }, + "isInternal": false + }, + { + "x": 150, + "y": 337.73575, + "index": 2, + "body": { + "#": 4146 + }, + "isInternal": false + }, + { + "x": 125, + "y": 337.73575, + "index": 3, + "body": { + "#": 4146 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4160 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4162 + }, + "max": { + "#": 4163 + } + }, + { + "x": 125, + "y": 312.73575 + }, + { + "x": 150, + "y": 337.73575 + }, + { + "x": 137.5, + "y": 322.32848 + }, + [ + { + "#": 4166 + }, + { + "#": 4167 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,6,7", + "startCol": 2, + "endCol": 3, + "startRow": 6, + "endRow": 7 + }, + { + "id": 182, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4170 + }, + "angle": 0, + "vertices": { + "#": 4171 + }, + "position": { + "#": 4176 + }, + "force": { + "#": 4177 + }, + "torque": 0, + "positionImpulse": { + "#": 4178 + }, + "constraintImpulse": { + "#": 4179 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4180 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4181 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4182 + }, + "bounds": { + "#": 4184 + }, + "positionPrev": { + "#": 4187 + }, + "anglePrev": 0, + "axes": { + "#": 4188 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4169 + }, + "sleepCounter": 0, + "region": { + "#": 4191 + } + }, + [ + { + "#": 4169 + } + ], + [ + { + "#": 4172 + }, + { + "#": 4173 + }, + { + "#": 4174 + }, + { + "#": 4175 + } + ], + { + "x": 150, + "y": 312.73575, + "index": 0, + "body": { + "#": 4169 + }, + "isInternal": false + }, + { + "x": 175, + "y": 312.73575, + "index": 1, + "body": { + "#": 4169 + }, + "isInternal": false + }, + { + "x": 175, + "y": 337.73575, + "index": 2, + "body": { + "#": 4169 + }, + "isInternal": false + }, + { + "x": 150, + "y": 337.73575, + "index": 3, + "body": { + "#": 4169 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4183 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4185 + }, + "max": { + "#": 4186 + } + }, + { + "x": 150, + "y": 312.73575 + }, + { + "x": 175, + "y": 337.73575 + }, + { + "x": 162.5, + "y": 322.32848 + }, + [ + { + "#": 4189 + }, + { + "#": 4190 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,3,6,7", + "startCol": 3, + "endCol": 3, + "startRow": 6, + "endRow": 7 + }, + { + "id": 183, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4193 + }, + "angle": 0, + "vertices": { + "#": 4194 + }, + "position": { + "#": 4199 + }, + "force": { + "#": 4200 + }, + "torque": 0, + "positionImpulse": { + "#": 4201 + }, + "constraintImpulse": { + "#": 4202 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4203 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4204 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4205 + }, + "bounds": { + "#": 4207 + }, + "positionPrev": { + "#": 4210 + }, + "anglePrev": 0, + "axes": { + "#": 4211 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4192 + }, + "sleepCounter": 0, + "region": { + "#": 4214 + } + }, + [ + { + "#": 4192 + } + ], + [ + { + "#": 4195 + }, + { + "#": 4196 + }, + { + "#": 4197 + }, + { + "#": 4198 + } + ], + { + "x": 175, + "y": 312.73575, + "index": 0, + "body": { + "#": 4192 + }, + "isInternal": false + }, + { + "x": 200, + "y": 312.73575, + "index": 1, + "body": { + "#": 4192 + }, + "isInternal": false + }, + { + "x": 200, + "y": 337.73575, + "index": 2, + "body": { + "#": 4192 + }, + "isInternal": false + }, + { + "x": 175, + "y": 337.73575, + "index": 3, + "body": { + "#": 4192 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4206 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4208 + }, + "max": { + "#": 4209 + } + }, + { + "x": 175, + "y": 312.73575 + }, + { + "x": 200, + "y": 337.73575 + }, + { + "x": 187.5, + "y": 322.32848 + }, + [ + { + "#": 4212 + }, + { + "#": 4213 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,6,7", + "startCol": 3, + "endCol": 4, + "startRow": 6, + "endRow": 7 + }, + { + "id": 184, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4216 + }, + "angle": 0, + "vertices": { + "#": 4217 + }, + "position": { + "#": 4222 + }, + "force": { + "#": 4223 + }, + "torque": 0, + "positionImpulse": { + "#": 4224 + }, + "constraintImpulse": { + "#": 4225 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4226 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4227 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4228 + }, + "bounds": { + "#": 4230 + }, + "positionPrev": { + "#": 4233 + }, + "anglePrev": 0, + "axes": { + "#": 4234 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4215 + }, + "sleepCounter": 0, + "region": { + "#": 4237 + } + }, + [ + { + "#": 4215 + } + ], + [ + { + "#": 4218 + }, + { + "#": 4219 + }, + { + "#": 4220 + }, + { + "#": 4221 + } + ], + { + "x": 200, + "y": 312.73575, + "index": 0, + "body": { + "#": 4215 + }, + "isInternal": false + }, + { + "x": 225, + "y": 312.73575, + "index": 1, + "body": { + "#": 4215 + }, + "isInternal": false + }, + { + "x": 225, + "y": 337.73575, + "index": 2, + "body": { + "#": 4215 + }, + "isInternal": false + }, + { + "x": 200, + "y": 337.73575, + "index": 3, + "body": { + "#": 4215 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4229 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4231 + }, + "max": { + "#": 4232 + } + }, + { + "x": 200, + "y": 312.73575 + }, + { + "x": 225, + "y": 337.73575 + }, + { + "x": 212.5, + "y": 322.32848 + }, + [ + { + "#": 4235 + }, + { + "#": 4236 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,6,7", + "startCol": 4, + "endCol": 4, + "startRow": 6, + "endRow": 7 + }, + { + "id": 185, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4239 + }, + "angle": 0, + "vertices": { + "#": 4240 + }, + "position": { + "#": 4245 + }, + "force": { + "#": 4246 + }, + "torque": 0, + "positionImpulse": { + "#": 4247 + }, + "constraintImpulse": { + "#": 4248 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4249 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4250 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4251 + }, + "bounds": { + "#": 4253 + }, + "positionPrev": { + "#": 4256 + }, + "anglePrev": 0, + "axes": { + "#": 4257 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4238 + }, + "sleepCounter": 0, + "region": { + "#": 4260 + } + }, + [ + { + "#": 4238 + } + ], + [ + { + "#": 4241 + }, + { + "#": 4242 + }, + { + "#": 4243 + }, + { + "#": 4244 + } + ], + { + "x": 225, + "y": 312.73575, + "index": 0, + "body": { + "#": 4238 + }, + "isInternal": false + }, + { + "x": 250, + "y": 312.73575, + "index": 1, + "body": { + "#": 4238 + }, + "isInternal": false + }, + { + "x": 250, + "y": 337.73575, + "index": 2, + "body": { + "#": 4238 + }, + "isInternal": false + }, + { + "x": 225, + "y": 337.73575, + "index": 3, + "body": { + "#": 4238 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4252 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4254 + }, + "max": { + "#": 4255 + } + }, + { + "x": 225, + "y": 312.73575 + }, + { + "x": 250, + "y": 337.73575 + }, + { + "x": 237.5, + "y": 322.32848 + }, + [ + { + "#": 4258 + }, + { + "#": 4259 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,6,7", + "startCol": 4, + "endCol": 5, + "startRow": 6, + "endRow": 7 + }, + { + "id": 186, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4262 + }, + "angle": 0, + "vertices": { + "#": 4263 + }, + "position": { + "#": 4268 + }, + "force": { + "#": 4269 + }, + "torque": 0, + "positionImpulse": { + "#": 4270 + }, + "constraintImpulse": { + "#": 4271 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4272 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4273 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4274 + }, + "bounds": { + "#": 4276 + }, + "positionPrev": { + "#": 4279 + }, + "anglePrev": 0, + "axes": { + "#": 4280 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4261 + }, + "sleepCounter": 0, + "region": { + "#": 4283 + } + }, + [ + { + "#": 4261 + } + ], + [ + { + "#": 4264 + }, + { + "#": 4265 + }, + { + "#": 4266 + }, + { + "#": 4267 + } + ], + { + "x": 250, + "y": 312.73575, + "index": 0, + "body": { + "#": 4261 + }, + "isInternal": false + }, + { + "x": 275, + "y": 312.73575, + "index": 1, + "body": { + "#": 4261 + }, + "isInternal": false + }, + { + "x": 275, + "y": 337.73575, + "index": 2, + "body": { + "#": 4261 + }, + "isInternal": false + }, + { + "x": 250, + "y": 337.73575, + "index": 3, + "body": { + "#": 4261 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4275 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4277 + }, + "max": { + "#": 4278 + } + }, + { + "x": 250, + "y": 312.73575 + }, + { + "x": 275, + "y": 337.73575 + }, + { + "x": 262.5, + "y": 322.32848 + }, + [ + { + "#": 4281 + }, + { + "#": 4282 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,6,7", + "startCol": 5, + "endCol": 5, + "startRow": 6, + "endRow": 7 + }, + { + "id": 187, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4285 + }, + "angle": 0, + "vertices": { + "#": 4286 + }, + "position": { + "#": 4291 + }, + "force": { + "#": 4292 + }, + "torque": 0, + "positionImpulse": { + "#": 4293 + }, + "constraintImpulse": { + "#": 4294 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4295 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4296 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4297 + }, + "bounds": { + "#": 4299 + }, + "positionPrev": { + "#": 4302 + }, + "anglePrev": 0, + "axes": { + "#": 4303 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4284 + }, + "sleepCounter": 0, + "region": { + "#": 4306 + } + }, + [ + { + "#": 4284 + } + ], + [ + { + "#": 4287 + }, + { + "#": 4288 + }, + { + "#": 4289 + }, + { + "#": 4290 + } + ], + { + "x": 275, + "y": 312.73575, + "index": 0, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 300, + "y": 312.73575, + "index": 1, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 300, + "y": 337.73575, + "index": 2, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 275, + "y": 337.73575, + "index": 3, + "body": { + "#": 4284 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4298 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4300 + }, + "max": { + "#": 4301 + } + }, + { + "x": 275, + "y": 312.73575 + }, + { + "x": 300, + "y": 337.73575 + }, + { + "x": 287.5, + "y": 322.32848 + }, + [ + { + "#": 4304 + }, + { + "#": 4305 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,6,7", + "startCol": 5, + "endCol": 6, + "startRow": 6, + "endRow": 7 + }, + { + "id": 188, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4308 + }, + "angle": 0, + "vertices": { + "#": 4309 + }, + "position": { + "#": 4314 + }, + "force": { + "#": 4315 + }, + "torque": 0, + "positionImpulse": { + "#": 4316 + }, + "constraintImpulse": { + "#": 4317 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4318 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4319 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4320 + }, + "bounds": { + "#": 4322 + }, + "positionPrev": { + "#": 4325 + }, + "anglePrev": 0, + "axes": { + "#": 4326 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4307 + }, + "sleepCounter": 0, + "region": { + "#": 4329 + } + }, + [ + { + "#": 4307 + } + ], + [ + { + "#": 4310 + }, + { + "#": 4311 + }, + { + "#": 4312 + }, + { + "#": 4313 + } + ], + { + "x": 300, + "y": 312.73575, + "index": 0, + "body": { + "#": 4307 + }, + "isInternal": false + }, + { + "x": 325, + "y": 312.73575, + "index": 1, + "body": { + "#": 4307 + }, + "isInternal": false + }, + { + "x": 325, + "y": 337.73575, + "index": 2, + "body": { + "#": 4307 + }, + "isInternal": false + }, + { + "x": 300, + "y": 337.73575, + "index": 3, + "body": { + "#": 4307 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4321 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4323 + }, + "max": { + "#": 4324 + } + }, + { + "x": 300, + "y": 312.73575 + }, + { + "x": 325, + "y": 337.73575 + }, + { + "x": 312.5, + "y": 322.32848 + }, + [ + { + "#": 4327 + }, + { + "#": 4328 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,6,7", + "startCol": 6, + "endCol": 6, + "startRow": 6, + "endRow": 7 + }, + { + "id": 189, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4331 + }, + "angle": 0, + "vertices": { + "#": 4332 + }, + "position": { + "#": 4337 + }, + "force": { + "#": 4338 + }, + "torque": 0, + "positionImpulse": { + "#": 4339 + }, + "constraintImpulse": { + "#": 4340 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4341 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4342 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4343 + }, + "bounds": { + "#": 4345 + }, + "positionPrev": { + "#": 4348 + }, + "anglePrev": 0, + "axes": { + "#": 4349 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4330 + }, + "sleepCounter": 0, + "region": { + "#": 4352 + } + }, + [ + { + "#": 4330 + } + ], + [ + { + "#": 4333 + }, + { + "#": 4334 + }, + { + "#": 4335 + }, + { + "#": 4336 + } + ], + { + "x": 325, + "y": 312.73575, + "index": 0, + "body": { + "#": 4330 + }, + "isInternal": false + }, + { + "x": 350, + "y": 312.73575, + "index": 1, + "body": { + "#": 4330 + }, + "isInternal": false + }, + { + "x": 350, + "y": 337.73575, + "index": 2, + "body": { + "#": 4330 + }, + "isInternal": false + }, + { + "x": 325, + "y": 337.73575, + "index": 3, + "body": { + "#": 4330 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4344 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4346 + }, + "max": { + "#": 4347 + } + }, + { + "x": 325, + "y": 312.73575 + }, + { + "x": 350, + "y": 337.73575 + }, + { + "x": 337.5, + "y": 322.32848 + }, + [ + { + "#": 4350 + }, + { + "#": 4351 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,6,7", + "startCol": 6, + "endCol": 7, + "startRow": 6, + "endRow": 7 + }, + { + "id": 190, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4354 + }, + "angle": 0, + "vertices": { + "#": 4355 + }, + "position": { + "#": 4360 + }, + "force": { + "#": 4361 + }, + "torque": 0, + "positionImpulse": { + "#": 4362 + }, + "constraintImpulse": { + "#": 4363 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4364 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4365 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4366 + }, + "bounds": { + "#": 4368 + }, + "positionPrev": { + "#": 4371 + }, + "anglePrev": 0, + "axes": { + "#": 4372 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4353 + }, + "sleepCounter": 0, + "region": { + "#": 4375 + } + }, + [ + { + "#": 4353 + } + ], + [ + { + "#": 4356 + }, + { + "#": 4357 + }, + { + "#": 4358 + }, + { + "#": 4359 + } + ], + { + "x": 350, + "y": 312.73575, + "index": 0, + "body": { + "#": 4353 + }, + "isInternal": false + }, + { + "x": 375, + "y": 312.73575, + "index": 1, + "body": { + "#": 4353 + }, + "isInternal": false + }, + { + "x": 375, + "y": 337.73575, + "index": 2, + "body": { + "#": 4353 + }, + "isInternal": false + }, + { + "x": 350, + "y": 337.73575, + "index": 3, + "body": { + "#": 4353 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4367 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4369 + }, + "max": { + "#": 4370 + } + }, + { + "x": 350, + "y": 312.73575 + }, + { + "x": 375, + "y": 337.73575 + }, + { + "x": 362.5, + "y": 322.32848 + }, + [ + { + "#": 4373 + }, + { + "#": 4374 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,6,7", + "startCol": 7, + "endCol": 7, + "startRow": 6, + "endRow": 7 + }, + { + "id": 191, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4377 + }, + "angle": 0, + "vertices": { + "#": 4378 + }, + "position": { + "#": 4383 + }, + "force": { + "#": 4384 + }, + "torque": 0, + "positionImpulse": { + "#": 4385 + }, + "constraintImpulse": { + "#": 4386 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4387 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4388 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4389 + }, + "bounds": { + "#": 4391 + }, + "positionPrev": { + "#": 4394 + }, + "anglePrev": 0, + "axes": { + "#": 4395 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4376 + }, + "sleepCounter": 0, + "region": { + "#": 4398 + } + }, + [ + { + "#": 4376 + } + ], + [ + { + "#": 4379 + }, + { + "#": 4380 + }, + { + "#": 4381 + }, + { + "#": 4382 + } + ], + { + "x": 375, + "y": 312.73575, + "index": 0, + "body": { + "#": 4376 + }, + "isInternal": false + }, + { + "x": 400, + "y": 312.73575, + "index": 1, + "body": { + "#": 4376 + }, + "isInternal": false + }, + { + "x": 400, + "y": 337.73575, + "index": 2, + "body": { + "#": 4376 + }, + "isInternal": false + }, + { + "x": 375, + "y": 337.73575, + "index": 3, + "body": { + "#": 4376 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4390 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4392 + }, + "max": { + "#": 4393 + } + }, + { + "x": 375, + "y": 312.73575 + }, + { + "x": 400, + "y": 337.73575 + }, + { + "x": 387.5, + "y": 322.32848 + }, + [ + { + "#": 4396 + }, + { + "#": 4397 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,6,7", + "startCol": 7, + "endCol": 8, + "startRow": 6, + "endRow": 7 + }, + { + "id": 192, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4400 + }, + "angle": 0, + "vertices": { + "#": 4401 + }, + "position": { + "#": 4406 + }, + "force": { + "#": 4407 + }, + "torque": 0, + "positionImpulse": { + "#": 4408 + }, + "constraintImpulse": { + "#": 4409 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4410 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4411 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4412 + }, + "bounds": { + "#": 4414 + }, + "positionPrev": { + "#": 4417 + }, + "anglePrev": 0, + "axes": { + "#": 4418 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4399 + }, + "sleepCounter": 0, + "region": { + "#": 4421 + } + }, + [ + { + "#": 4399 + } + ], + [ + { + "#": 4402 + }, + { + "#": 4403 + }, + { + "#": 4404 + }, + { + "#": 4405 + } + ], + { + "x": 400, + "y": 312.73575, + "index": 0, + "body": { + "#": 4399 + }, + "isInternal": false + }, + { + "x": 425, + "y": 312.73575, + "index": 1, + "body": { + "#": 4399 + }, + "isInternal": false + }, + { + "x": 425, + "y": 337.73575, + "index": 2, + "body": { + "#": 4399 + }, + "isInternal": false + }, + { + "x": 400, + "y": 337.73575, + "index": 3, + "body": { + "#": 4399 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4413 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4415 + }, + "max": { + "#": 4416 + } + }, + { + "x": 400, + "y": 312.73575 + }, + { + "x": 425, + "y": 337.73575 + }, + { + "x": 412.5, + "y": 322.32848 + }, + [ + { + "#": 4419 + }, + { + "#": 4420 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,8,6,7", + "startCol": 8, + "endCol": 8, + "startRow": 6, + "endRow": 7 + }, + { + "id": 193, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4423 + }, + "angle": 0, + "vertices": { + "#": 4424 + }, + "position": { + "#": 4429 + }, + "force": { + "#": 4430 + }, + "torque": 0, + "positionImpulse": { + "#": 4431 + }, + "constraintImpulse": { + "#": 4432 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4433 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4434 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4435 + }, + "bounds": { + "#": 4437 + }, + "positionPrev": { + "#": 4440 + }, + "anglePrev": 0, + "axes": { + "#": 4441 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4422 + }, + "sleepCounter": 0, + "region": { + "#": 4444 + } + }, + [ + { + "#": 4422 + } + ], + [ + { + "#": 4425 + }, + { + "#": 4426 + }, + { + "#": 4427 + }, + { + "#": 4428 + } + ], + { + "x": 425, + "y": 312.73575, + "index": 0, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 450, + "y": 312.73575, + "index": 1, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 450, + "y": 337.73575, + "index": 2, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 425, + "y": 337.73575, + "index": 3, + "body": { + "#": 4422 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4436 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4438 + }, + "max": { + "#": 4439 + } + }, + { + "x": 425, + "y": 312.73575 + }, + { + "x": 450, + "y": 337.73575 + }, + { + "x": 437.5, + "y": 322.32848 + }, + [ + { + "#": 4442 + }, + { + "#": 4443 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,6,7", + "startCol": 8, + "endCol": 9, + "startRow": 6, + "endRow": 7 + }, + { + "id": 194, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4446 + }, + "angle": 0, + "vertices": { + "#": 4447 + }, + "position": { + "#": 4452 + }, + "force": { + "#": 4453 + }, + "torque": 0, + "positionImpulse": { + "#": 4454 + }, + "constraintImpulse": { + "#": 4455 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4456 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4457 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4458 + }, + "bounds": { + "#": 4460 + }, + "positionPrev": { + "#": 4463 + }, + "anglePrev": 0, + "axes": { + "#": 4464 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4445 + }, + "sleepCounter": 0, + "region": { + "#": 4467 + } + }, + [ + { + "#": 4445 + } + ], + [ + { + "#": 4448 + }, + { + "#": 4449 + }, + { + "#": 4450 + }, + { + "#": 4451 + } + ], + { + "x": 450, + "y": 312.73575, + "index": 0, + "body": { + "#": 4445 + }, + "isInternal": false + }, + { + "x": 475, + "y": 312.73575, + "index": 1, + "body": { + "#": 4445 + }, + "isInternal": false + }, + { + "x": 475, + "y": 337.73575, + "index": 2, + "body": { + "#": 4445 + }, + "isInternal": false + }, + { + "x": 450, + "y": 337.73575, + "index": 3, + "body": { + "#": 4445 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4459 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4461 + }, + "max": { + "#": 4462 + } + }, + { + "x": 450, + "y": 312.73575 + }, + { + "x": 475, + "y": 337.73575 + }, + { + "x": 462.5, + "y": 322.32848 + }, + [ + { + "#": 4465 + }, + { + "#": 4466 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,6,7", + "startCol": 9, + "endCol": 9, + "startRow": 6, + "endRow": 7 + }, + { + "id": 195, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4469 + }, + "angle": 0, + "vertices": { + "#": 4470 + }, + "position": { + "#": 4475 + }, + "force": { + "#": 4476 + }, + "torque": 0, + "positionImpulse": { + "#": 4477 + }, + "constraintImpulse": { + "#": 4478 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4479 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4480 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4481 + }, + "bounds": { + "#": 4483 + }, + "positionPrev": { + "#": 4486 + }, + "anglePrev": 0, + "axes": { + "#": 4487 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4468 + }, + "sleepCounter": 0, + "region": { + "#": 4490 + } + }, + [ + { + "#": 4468 + } + ], + [ + { + "#": 4471 + }, + { + "#": 4472 + }, + { + "#": 4473 + }, + { + "#": 4474 + } + ], + { + "x": 475, + "y": 312.73575, + "index": 0, + "body": { + "#": 4468 + }, + "isInternal": false + }, + { + "x": 500, + "y": 312.73575, + "index": 1, + "body": { + "#": 4468 + }, + "isInternal": false + }, + { + "x": 500, + "y": 337.73575, + "index": 2, + "body": { + "#": 4468 + }, + "isInternal": false + }, + { + "x": 475, + "y": 337.73575, + "index": 3, + "body": { + "#": 4468 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4482 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4484 + }, + "max": { + "#": 4485 + } + }, + { + "x": 475, + "y": 312.73575 + }, + { + "x": 500, + "y": 337.73575 + }, + { + "x": 487.5, + "y": 322.32848 + }, + [ + { + "#": 4488 + }, + { + "#": 4489 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,6,7", + "startCol": 9, + "endCol": 10, + "startRow": 6, + "endRow": 7 + }, + { + "id": 196, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4492 + }, + "angle": 0, + "vertices": { + "#": 4493 + }, + "position": { + "#": 4498 + }, + "force": { + "#": 4499 + }, + "torque": 0, + "positionImpulse": { + "#": 4500 + }, + "constraintImpulse": { + "#": 4501 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4502 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4503 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4504 + }, + "bounds": { + "#": 4506 + }, + "positionPrev": { + "#": 4509 + }, + "anglePrev": 0, + "axes": { + "#": 4510 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4491 + }, + "sleepCounter": 0, + "region": { + "#": 4513 + } + }, + [ + { + "#": 4491 + } + ], + [ + { + "#": 4494 + }, + { + "#": 4495 + }, + { + "#": 4496 + }, + { + "#": 4497 + } + ], + { + "x": 500, + "y": 312.73575, + "index": 0, + "body": { + "#": 4491 + }, + "isInternal": false + }, + { + "x": 525, + "y": 312.73575, + "index": 1, + "body": { + "#": 4491 + }, + "isInternal": false + }, + { + "x": 525, + "y": 337.73575, + "index": 2, + "body": { + "#": 4491 + }, + "isInternal": false + }, + { + "x": 500, + "y": 337.73575, + "index": 3, + "body": { + "#": 4491 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4505 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4507 + }, + "max": { + "#": 4508 + } + }, + { + "x": 500, + "y": 312.73575 + }, + { + "x": 525, + "y": 337.73575 + }, + { + "x": 512.5, + "y": 322.32848 + }, + [ + { + "#": 4511 + }, + { + "#": 4512 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,6,7", + "startCol": 10, + "endCol": 10, + "startRow": 6, + "endRow": 7 + }, + { + "id": 197, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4515 + }, + "angle": 0, + "vertices": { + "#": 4516 + }, + "position": { + "#": 4521 + }, + "force": { + "#": 4522 + }, + "torque": 0, + "positionImpulse": { + "#": 4523 + }, + "constraintImpulse": { + "#": 4524 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4525 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4526 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4527 + }, + "bounds": { + "#": 4529 + }, + "positionPrev": { + "#": 4532 + }, + "anglePrev": 0, + "axes": { + "#": 4533 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4514 + }, + "sleepCounter": 0, + "region": { + "#": 4536 + } + }, + [ + { + "#": 4514 + } + ], + [ + { + "#": 4517 + }, + { + "#": 4518 + }, + { + "#": 4519 + }, + { + "#": 4520 + } + ], + { + "x": 525, + "y": 312.73575, + "index": 0, + "body": { + "#": 4514 + }, + "isInternal": false + }, + { + "x": 550, + "y": 312.73575, + "index": 1, + "body": { + "#": 4514 + }, + "isInternal": false + }, + { + "x": 550, + "y": 337.73575, + "index": 2, + "body": { + "#": 4514 + }, + "isInternal": false + }, + { + "x": 525, + "y": 337.73575, + "index": 3, + "body": { + "#": 4514 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4528 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4530 + }, + "max": { + "#": 4531 + } + }, + { + "x": 525, + "y": 312.73575 + }, + { + "x": 550, + "y": 337.73575 + }, + { + "x": 537.5, + "y": 322.32848 + }, + [ + { + "#": 4534 + }, + { + "#": 4535 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,6,7", + "startCol": 10, + "endCol": 11, + "startRow": 6, + "endRow": 7 + }, + { + "id": 198, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4538 + }, + "angle": 0, + "vertices": { + "#": 4539 + }, + "position": { + "#": 4544 + }, + "force": { + "#": 4545 + }, + "torque": 0, + "positionImpulse": { + "#": 4546 + }, + "constraintImpulse": { + "#": 4547 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4548 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4549 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4550 + }, + "bounds": { + "#": 4552 + }, + "positionPrev": { + "#": 4555 + }, + "anglePrev": 0, + "axes": { + "#": 4556 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4537 + }, + "sleepCounter": 0, + "region": { + "#": 4559 + } + }, + [ + { + "#": 4537 + } + ], + [ + { + "#": 4540 + }, + { + "#": 4541 + }, + { + "#": 4542 + }, + { + "#": 4543 + } + ], + { + "x": 550, + "y": 312.73575, + "index": 0, + "body": { + "#": 4537 + }, + "isInternal": false + }, + { + "x": 575, + "y": 312.73575, + "index": 1, + "body": { + "#": 4537 + }, + "isInternal": false + }, + { + "x": 575, + "y": 337.73575, + "index": 2, + "body": { + "#": 4537 + }, + "isInternal": false + }, + { + "x": 550, + "y": 337.73575, + "index": 3, + "body": { + "#": 4537 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4551 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4553 + }, + "max": { + "#": 4554 + } + }, + { + "x": 550, + "y": 312.73575 + }, + { + "x": 575, + "y": 337.73575 + }, + { + "x": 562.5, + "y": 322.32848 + }, + [ + { + "#": 4557 + }, + { + "#": 4558 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,11,6,7", + "startCol": 11, + "endCol": 11, + "startRow": 6, + "endRow": 7 + }, + { + "id": 199, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4561 + }, + "angle": 0, + "vertices": { + "#": 4562 + }, + "position": { + "#": 4567 + }, + "force": { + "#": 4568 + }, + "torque": 0, + "positionImpulse": { + "#": 4569 + }, + "constraintImpulse": { + "#": 4570 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4571 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4572 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4573 + }, + "bounds": { + "#": 4575 + }, + "positionPrev": { + "#": 4578 + }, + "anglePrev": 0, + "axes": { + "#": 4579 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4560 + }, + "sleepCounter": 0, + "region": { + "#": 4582 + } + }, + [ + { + "#": 4560 + } + ], + [ + { + "#": 4563 + }, + { + "#": 4564 + }, + { + "#": 4565 + }, + { + "#": 4566 + } + ], + { + "x": 575, + "y": 312.73575, + "index": 0, + "body": { + "#": 4560 + }, + "isInternal": false + }, + { + "x": 600, + "y": 312.73575, + "index": 1, + "body": { + "#": 4560 + }, + "isInternal": false + }, + { + "x": 600, + "y": 337.73575, + "index": 2, + "body": { + "#": 4560 + }, + "isInternal": false + }, + { + "x": 575, + "y": 337.73575, + "index": 3, + "body": { + "#": 4560 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4574 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4576 + }, + "max": { + "#": 4577 + } + }, + { + "x": 575, + "y": 312.73575 + }, + { + "x": 600, + "y": 337.73575 + }, + { + "x": 587.5, + "y": 322.32848 + }, + [ + { + "#": 4580 + }, + { + "#": 4581 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,6,7", + "startCol": 11, + "endCol": 12, + "startRow": 6, + "endRow": 7 + }, + { + "id": 200, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4584 + }, + "angle": 0, + "vertices": { + "#": 4585 + }, + "position": { + "#": 4590 + }, + "force": { + "#": 4591 + }, + "torque": 0, + "positionImpulse": { + "#": 4592 + }, + "constraintImpulse": { + "#": 4593 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4594 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4595 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4596 + }, + "bounds": { + "#": 4598 + }, + "positionPrev": { + "#": 4601 + }, + "anglePrev": 0, + "axes": { + "#": 4602 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4583 + }, + "sleepCounter": 0, + "region": { + "#": 4605 + } + }, + [ + { + "#": 4583 + } + ], + [ + { + "#": 4586 + }, + { + "#": 4587 + }, + { + "#": 4588 + }, + { + "#": 4589 + } + ], + { + "x": 600, + "y": 312.73575, + "index": 0, + "body": { + "#": 4583 + }, + "isInternal": false + }, + { + "x": 625, + "y": 312.73575, + "index": 1, + "body": { + "#": 4583 + }, + "isInternal": false + }, + { + "x": 625, + "y": 337.73575, + "index": 2, + "body": { + "#": 4583 + }, + "isInternal": false + }, + { + "x": 600, + "y": 337.73575, + "index": 3, + "body": { + "#": 4583 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4597 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4599 + }, + "max": { + "#": 4600 + } + }, + { + "x": 600, + "y": 312.73575 + }, + { + "x": 625, + "y": 337.73575 + }, + { + "x": 612.5, + "y": 322.32848 + }, + [ + { + "#": 4603 + }, + { + "#": 4604 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,6,7", + "startCol": 12, + "endCol": 13, + "startRow": 6, + "endRow": 7 + }, + { + "id": 201, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4607 + }, + "angle": 0, + "vertices": { + "#": 4608 + }, + "position": { + "#": 4613 + }, + "force": { + "#": 4614 + }, + "torque": 0, + "positionImpulse": { + "#": 4615 + }, + "constraintImpulse": { + "#": 4616 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4617 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4618 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4619 + }, + "bounds": { + "#": 4621 + }, + "positionPrev": { + "#": 4624 + }, + "anglePrev": 0, + "axes": { + "#": 4625 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4606 + }, + "sleepCounter": 0, + "region": { + "#": 4628 + } + }, + [ + { + "#": 4606 + } + ], + [ + { + "#": 4609 + }, + { + "#": 4610 + }, + { + "#": 4611 + }, + { + "#": 4612 + } + ], + { + "x": 625, + "y": 312.73575, + "index": 0, + "body": { + "#": 4606 + }, + "isInternal": false + }, + { + "x": 650, + "y": 312.73575, + "index": 1, + "body": { + "#": 4606 + }, + "isInternal": false + }, + { + "x": 650, + "y": 337.73575, + "index": 2, + "body": { + "#": 4606 + }, + "isInternal": false + }, + { + "x": 625, + "y": 337.73575, + "index": 3, + "body": { + "#": 4606 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4620 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4622 + }, + "max": { + "#": 4623 + } + }, + { + "x": 625, + "y": 312.73575 + }, + { + "x": 650, + "y": 337.73575 + }, + { + "x": 637.5, + "y": 322.32848 + }, + [ + { + "#": 4626 + }, + { + "#": 4627 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,13,6,7", + "startCol": 13, + "endCol": 13, + "startRow": 6, + "endRow": 7 + }, + { + "id": 202, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4630 + }, + "angle": 0, + "vertices": { + "#": 4631 + }, + "position": { + "#": 4636 + }, + "force": { + "#": 4637 + }, + "torque": 0, + "positionImpulse": { + "#": 4638 + }, + "constraintImpulse": { + "#": 4639 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4640 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4641 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4642 + }, + "bounds": { + "#": 4644 + }, + "positionPrev": { + "#": 4647 + }, + "anglePrev": 0, + "axes": { + "#": 4648 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4629 + }, + "sleepCounter": 0, + "region": { + "#": 4651 + } + }, + [ + { + "#": 4629 + } + ], + [ + { + "#": 4632 + }, + { + "#": 4633 + }, + { + "#": 4634 + }, + { + "#": 4635 + } + ], + { + "x": 650, + "y": 312.73575, + "index": 0, + "body": { + "#": 4629 + }, + "isInternal": false + }, + { + "x": 675, + "y": 312.73575, + "index": 1, + "body": { + "#": 4629 + }, + "isInternal": false + }, + { + "x": 675, + "y": 337.73575, + "index": 2, + "body": { + "#": 4629 + }, + "isInternal": false + }, + { + "x": 650, + "y": 337.73575, + "index": 3, + "body": { + "#": 4629 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4643 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4645 + }, + "max": { + "#": 4646 + } + }, + { + "x": 650, + "y": 312.73575 + }, + { + "x": 675, + "y": 337.73575 + }, + { + "x": 662.5, + "y": 322.32848 + }, + [ + { + "#": 4649 + }, + { + "#": 4650 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,6,7", + "startCol": 13, + "endCol": 14, + "startRow": 6, + "endRow": 7 + }, + { + "id": 203, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4653 + }, + "angle": 0, + "vertices": { + "#": 4654 + }, + "position": { + "#": 4659 + }, + "force": { + "#": 4660 + }, + "torque": 0, + "positionImpulse": { + "#": 4661 + }, + "constraintImpulse": { + "#": 4662 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4663 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4664 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4665 + }, + "bounds": { + "#": 4667 + }, + "positionPrev": { + "#": 4670 + }, + "anglePrev": 0, + "axes": { + "#": 4671 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4652 + }, + "sleepCounter": 0, + "region": { + "#": 4674 + } + }, + [ + { + "#": 4652 + } + ], + [ + { + "#": 4655 + }, + { + "#": 4656 + }, + { + "#": 4657 + }, + { + "#": 4658 + } + ], + { + "x": 675, + "y": 312.73575, + "index": 0, + "body": { + "#": 4652 + }, + "isInternal": false + }, + { + "x": 700, + "y": 312.73575, + "index": 1, + "body": { + "#": 4652 + }, + "isInternal": false + }, + { + "x": 700, + "y": 337.73575, + "index": 2, + "body": { + "#": 4652 + }, + "isInternal": false + }, + { + "x": 675, + "y": 337.73575, + "index": 3, + "body": { + "#": 4652 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4666 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4668 + }, + "max": { + "#": 4669 + } + }, + { + "x": 675, + "y": 312.73575 + }, + { + "x": 700, + "y": 337.73575 + }, + { + "x": 687.5, + "y": 322.32848 + }, + [ + { + "#": 4672 + }, + { + "#": 4673 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,14,6,7", + "startCol": 14, + "endCol": 14, + "startRow": 6, + "endRow": 7 + }, + { + "id": 204, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4676 + }, + "angle": 0, + "vertices": { + "#": 4677 + }, + "position": { + "#": 4682 + }, + "force": { + "#": 4683 + }, + "torque": 0, + "positionImpulse": { + "#": 4684 + }, + "constraintImpulse": { + "#": 4685 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4686 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4687 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4688 + }, + "bounds": { + "#": 4690 + }, + "positionPrev": { + "#": 4693 + }, + "anglePrev": 0, + "axes": { + "#": 4694 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4675 + }, + "sleepCounter": 0, + "region": { + "#": 4697 + } + }, + [ + { + "#": 4675 + } + ], + [ + { + "#": 4678 + }, + { + "#": 4679 + }, + { + "#": 4680 + }, + { + "#": 4681 + } + ], + { + "x": 700, + "y": 312.73575, + "index": 0, + "body": { + "#": 4675 + }, + "isInternal": false + }, + { + "x": 725, + "y": 312.73575, + "index": 1, + "body": { + "#": 4675 + }, + "isInternal": false + }, + { + "x": 725, + "y": 337.73575, + "index": 2, + "body": { + "#": 4675 + }, + "isInternal": false + }, + { + "x": 700, + "y": 337.73575, + "index": 3, + "body": { + "#": 4675 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 325.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4689 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4691 + }, + "max": { + "#": 4692 + } + }, + { + "x": 700, + "y": 312.73575 + }, + { + "x": 725, + "y": 337.73575 + }, + { + "x": 712.5, + "y": 322.32848 + }, + [ + { + "#": 4695 + }, + { + "#": 4696 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,6,7", + "startCol": 14, + "endCol": 15, + "startRow": 6, + "endRow": 7 + }, + { + "id": 205, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4699 + }, + "angle": 0, + "vertices": { + "#": 4700 + }, + "position": { + "#": 4705 + }, + "force": { + "#": 4706 + }, + "torque": 0, + "positionImpulse": { + "#": 4707 + }, + "constraintImpulse": { + "#": 4708 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4709 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4710 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4711 + }, + "bounds": { + "#": 4713 + }, + "positionPrev": { + "#": 4716 + }, + "anglePrev": 0, + "axes": { + "#": 4717 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4698 + }, + "sleepCounter": 0, + "region": { + "#": 4720 + } + }, + [ + { + "#": 4698 + } + ], + [ + { + "#": 4701 + }, + { + "#": 4702 + }, + { + "#": 4703 + }, + { + "#": 4704 + } + ], + { + "x": 100, + "y": 337.73575, + "index": 0, + "body": { + "#": 4698 + }, + "isInternal": false + }, + { + "x": 125, + "y": 337.73575, + "index": 1, + "body": { + "#": 4698 + }, + "isInternal": false + }, + { + "x": 125, + "y": 362.73575, + "index": 2, + "body": { + "#": 4698 + }, + "isInternal": false + }, + { + "x": 100, + "y": 362.73575, + "index": 3, + "body": { + "#": 4698 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4712 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4714 + }, + "max": { + "#": 4715 + } + }, + { + "x": 100, + "y": 337.73575 + }, + { + "x": 125, + "y": 362.73575 + }, + { + "x": 112.5, + "y": 347.32848 + }, + [ + { + "#": 4718 + }, + { + "#": 4719 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,7,7", + "startCol": 2, + "endCol": 2, + "startRow": 7, + "endRow": 7 + }, + { + "id": 206, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4722 + }, + "angle": 0, + "vertices": { + "#": 4723 + }, + "position": { + "#": 4728 + }, + "force": { + "#": 4729 + }, + "torque": 0, + "positionImpulse": { + "#": 4730 + }, + "constraintImpulse": { + "#": 4731 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4732 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4733 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4734 + }, + "bounds": { + "#": 4736 + }, + "positionPrev": { + "#": 4739 + }, + "anglePrev": 0, + "axes": { + "#": 4740 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4721 + }, + "sleepCounter": 0, + "region": { + "#": 4743 + } + }, + [ + { + "#": 4721 + } + ], + [ + { + "#": 4724 + }, + { + "#": 4725 + }, + { + "#": 4726 + }, + { + "#": 4727 + } + ], + { + "x": 125, + "y": 337.73575, + "index": 0, + "body": { + "#": 4721 + }, + "isInternal": false + }, + { + "x": 150, + "y": 337.73575, + "index": 1, + "body": { + "#": 4721 + }, + "isInternal": false + }, + { + "x": 150, + "y": 362.73575, + "index": 2, + "body": { + "#": 4721 + }, + "isInternal": false + }, + { + "x": 125, + "y": 362.73575, + "index": 3, + "body": { + "#": 4721 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4735 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4737 + }, + "max": { + "#": 4738 + } + }, + { + "x": 125, + "y": 337.73575 + }, + { + "x": 150, + "y": 362.73575 + }, + { + "x": 137.5, + "y": 347.32848 + }, + [ + { + "#": 4741 + }, + { + "#": 4742 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,7,7", + "startCol": 2, + "endCol": 3, + "startRow": 7, + "endRow": 7 + }, + { + "id": 207, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4745 + }, + "angle": 0, + "vertices": { + "#": 4746 + }, + "position": { + "#": 4751 + }, + "force": { + "#": 4752 + }, + "torque": 0, + "positionImpulse": { + "#": 4753 + }, + "constraintImpulse": { + "#": 4754 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4755 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4756 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4757 + }, + "bounds": { + "#": 4759 + }, + "positionPrev": { + "#": 4762 + }, + "anglePrev": 0, + "axes": { + "#": 4763 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4744 + }, + "sleepCounter": 0, + "region": { + "#": 4766 + } + }, + [ + { + "#": 4744 + } + ], + [ + { + "#": 4747 + }, + { + "#": 4748 + }, + { + "#": 4749 + }, + { + "#": 4750 + } + ], + { + "x": 150, + "y": 337.73575, + "index": 0, + "body": { + "#": 4744 + }, + "isInternal": false + }, + { + "x": 175, + "y": 337.73575, + "index": 1, + "body": { + "#": 4744 + }, + "isInternal": false + }, + { + "x": 175, + "y": 362.73575, + "index": 2, + "body": { + "#": 4744 + }, + "isInternal": false + }, + { + "x": 150, + "y": 362.73575, + "index": 3, + "body": { + "#": 4744 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4758 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4760 + }, + "max": { + "#": 4761 + } + }, + { + "x": 150, + "y": 337.73575 + }, + { + "x": 175, + "y": 362.73575 + }, + { + "x": 162.5, + "y": 347.32848 + }, + [ + { + "#": 4764 + }, + { + "#": 4765 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,3,7,7", + "startCol": 3, + "endCol": 3, + "startRow": 7, + "endRow": 7 + }, + { + "id": 208, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4768 + }, + "angle": 0, + "vertices": { + "#": 4769 + }, + "position": { + "#": 4774 + }, + "force": { + "#": 4775 + }, + "torque": 0, + "positionImpulse": { + "#": 4776 + }, + "constraintImpulse": { + "#": 4777 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4778 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4779 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4780 + }, + "bounds": { + "#": 4782 + }, + "positionPrev": { + "#": 4785 + }, + "anglePrev": 0, + "axes": { + "#": 4786 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4767 + }, + "sleepCounter": 0, + "region": { + "#": 4789 + } + }, + [ + { + "#": 4767 + } + ], + [ + { + "#": 4770 + }, + { + "#": 4771 + }, + { + "#": 4772 + }, + { + "#": 4773 + } + ], + { + "x": 175, + "y": 337.73575, + "index": 0, + "body": { + "#": 4767 + }, + "isInternal": false + }, + { + "x": 200, + "y": 337.73575, + "index": 1, + "body": { + "#": 4767 + }, + "isInternal": false + }, + { + "x": 200, + "y": 362.73575, + "index": 2, + "body": { + "#": 4767 + }, + "isInternal": false + }, + { + "x": 175, + "y": 362.73575, + "index": 3, + "body": { + "#": 4767 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4781 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4783 + }, + "max": { + "#": 4784 + } + }, + { + "x": 175, + "y": 337.73575 + }, + { + "x": 200, + "y": 362.73575 + }, + { + "x": 187.5, + "y": 347.32848 + }, + [ + { + "#": 4787 + }, + { + "#": 4788 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,7,7", + "startCol": 3, + "endCol": 4, + "startRow": 7, + "endRow": 7 + }, + { + "id": 209, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4791 + }, + "angle": 0, + "vertices": { + "#": 4792 + }, + "position": { + "#": 4797 + }, + "force": { + "#": 4798 + }, + "torque": 0, + "positionImpulse": { + "#": 4799 + }, + "constraintImpulse": { + "#": 4800 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4801 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4802 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4803 + }, + "bounds": { + "#": 4805 + }, + "positionPrev": { + "#": 4808 + }, + "anglePrev": 0, + "axes": { + "#": 4809 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4790 + }, + "sleepCounter": 0, + "region": { + "#": 4812 + } + }, + [ + { + "#": 4790 + } + ], + [ + { + "#": 4793 + }, + { + "#": 4794 + }, + { + "#": 4795 + }, + { + "#": 4796 + } + ], + { + "x": 200, + "y": 337.73575, + "index": 0, + "body": { + "#": 4790 + }, + "isInternal": false + }, + { + "x": 225, + "y": 337.73575, + "index": 1, + "body": { + "#": 4790 + }, + "isInternal": false + }, + { + "x": 225, + "y": 362.73575, + "index": 2, + "body": { + "#": 4790 + }, + "isInternal": false + }, + { + "x": 200, + "y": 362.73575, + "index": 3, + "body": { + "#": 4790 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4804 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4806 + }, + "max": { + "#": 4807 + } + }, + { + "x": 200, + "y": 337.73575 + }, + { + "x": 225, + "y": 362.73575 + }, + { + "x": 212.5, + "y": 347.32848 + }, + [ + { + "#": 4810 + }, + { + "#": 4811 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,7,7", + "startCol": 4, + "endCol": 4, + "startRow": 7, + "endRow": 7 + }, + { + "id": 210, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4814 + }, + "angle": 0, + "vertices": { + "#": 4815 + }, + "position": { + "#": 4820 + }, + "force": { + "#": 4821 + }, + "torque": 0, + "positionImpulse": { + "#": 4822 + }, + "constraintImpulse": { + "#": 4823 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4824 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4825 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4826 + }, + "bounds": { + "#": 4828 + }, + "positionPrev": { + "#": 4831 + }, + "anglePrev": 0, + "axes": { + "#": 4832 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4813 + }, + "sleepCounter": 0, + "region": { + "#": 4835 + } + }, + [ + { + "#": 4813 + } + ], + [ + { + "#": 4816 + }, + { + "#": 4817 + }, + { + "#": 4818 + }, + { + "#": 4819 + } + ], + { + "x": 225, + "y": 337.73575, + "index": 0, + "body": { + "#": 4813 + }, + "isInternal": false + }, + { + "x": 250, + "y": 337.73575, + "index": 1, + "body": { + "#": 4813 + }, + "isInternal": false + }, + { + "x": 250, + "y": 362.73575, + "index": 2, + "body": { + "#": 4813 + }, + "isInternal": false + }, + { + "x": 225, + "y": 362.73575, + "index": 3, + "body": { + "#": 4813 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4827 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4829 + }, + "max": { + "#": 4830 + } + }, + { + "x": 225, + "y": 337.73575 + }, + { + "x": 250, + "y": 362.73575 + }, + { + "x": 237.5, + "y": 347.32848 + }, + [ + { + "#": 4833 + }, + { + "#": 4834 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,7,7", + "startCol": 4, + "endCol": 5, + "startRow": 7, + "endRow": 7 + }, + { + "id": 211, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4837 + }, + "angle": 0, + "vertices": { + "#": 4838 + }, + "position": { + "#": 4843 + }, + "force": { + "#": 4844 + }, + "torque": 0, + "positionImpulse": { + "#": 4845 + }, + "constraintImpulse": { + "#": 4846 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4847 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4848 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4849 + }, + "bounds": { + "#": 4851 + }, + "positionPrev": { + "#": 4854 + }, + "anglePrev": 0, + "axes": { + "#": 4855 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4836 + }, + "sleepCounter": 0, + "region": { + "#": 4858 + } + }, + [ + { + "#": 4836 + } + ], + [ + { + "#": 4839 + }, + { + "#": 4840 + }, + { + "#": 4841 + }, + { + "#": 4842 + } + ], + { + "x": 250, + "y": 337.73575, + "index": 0, + "body": { + "#": 4836 + }, + "isInternal": false + }, + { + "x": 275, + "y": 337.73575, + "index": 1, + "body": { + "#": 4836 + }, + "isInternal": false + }, + { + "x": 275, + "y": 362.73575, + "index": 2, + "body": { + "#": 4836 + }, + "isInternal": false + }, + { + "x": 250, + "y": 362.73575, + "index": 3, + "body": { + "#": 4836 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4850 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4852 + }, + "max": { + "#": 4853 + } + }, + { + "x": 250, + "y": 337.73575 + }, + { + "x": 275, + "y": 362.73575 + }, + { + "x": 262.5, + "y": 347.32848 + }, + [ + { + "#": 4856 + }, + { + "#": 4857 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,7,7", + "startCol": 5, + "endCol": 5, + "startRow": 7, + "endRow": 7 + }, + { + "id": 212, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4860 + }, + "angle": 0, + "vertices": { + "#": 4861 + }, + "position": { + "#": 4866 + }, + "force": { + "#": 4867 + }, + "torque": 0, + "positionImpulse": { + "#": 4868 + }, + "constraintImpulse": { + "#": 4869 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4870 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4871 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4872 + }, + "bounds": { + "#": 4874 + }, + "positionPrev": { + "#": 4877 + }, + "anglePrev": 0, + "axes": { + "#": 4878 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4859 + }, + "sleepCounter": 0, + "region": { + "#": 4881 + } + }, + [ + { + "#": 4859 + } + ], + [ + { + "#": 4862 + }, + { + "#": 4863 + }, + { + "#": 4864 + }, + { + "#": 4865 + } + ], + { + "x": 275, + "y": 337.73575, + "index": 0, + "body": { + "#": 4859 + }, + "isInternal": false + }, + { + "x": 300, + "y": 337.73575, + "index": 1, + "body": { + "#": 4859 + }, + "isInternal": false + }, + { + "x": 300, + "y": 362.73575, + "index": 2, + "body": { + "#": 4859 + }, + "isInternal": false + }, + { + "x": 275, + "y": 362.73575, + "index": 3, + "body": { + "#": 4859 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4873 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4875 + }, + "max": { + "#": 4876 + } + }, + { + "x": 275, + "y": 337.73575 + }, + { + "x": 300, + "y": 362.73575 + }, + { + "x": 287.5, + "y": 347.32848 + }, + [ + { + "#": 4879 + }, + { + "#": 4880 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,7,7", + "startCol": 5, + "endCol": 6, + "startRow": 7, + "endRow": 7 + }, + { + "id": 213, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4883 + }, + "angle": 0, + "vertices": { + "#": 4884 + }, + "position": { + "#": 4889 + }, + "force": { + "#": 4890 + }, + "torque": 0, + "positionImpulse": { + "#": 4891 + }, + "constraintImpulse": { + "#": 4892 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4893 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4894 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4895 + }, + "bounds": { + "#": 4897 + }, + "positionPrev": { + "#": 4900 + }, + "anglePrev": 0, + "axes": { + "#": 4901 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4882 + }, + "sleepCounter": 0, + "region": { + "#": 4904 + } + }, + [ + { + "#": 4882 + } + ], + [ + { + "#": 4885 + }, + { + "#": 4886 + }, + { + "#": 4887 + }, + { + "#": 4888 + } + ], + { + "x": 300, + "y": 337.73575, + "index": 0, + "body": { + "#": 4882 + }, + "isInternal": false + }, + { + "x": 325, + "y": 337.73575, + "index": 1, + "body": { + "#": 4882 + }, + "isInternal": false + }, + { + "x": 325, + "y": 362.73575, + "index": 2, + "body": { + "#": 4882 + }, + "isInternal": false + }, + { + "x": 300, + "y": 362.73575, + "index": 3, + "body": { + "#": 4882 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4896 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4898 + }, + "max": { + "#": 4899 + } + }, + { + "x": 300, + "y": 337.73575 + }, + { + "x": 325, + "y": 362.73575 + }, + { + "x": 312.5, + "y": 347.32848 + }, + [ + { + "#": 4902 + }, + { + "#": 4903 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,7,7", + "startCol": 6, + "endCol": 6, + "startRow": 7, + "endRow": 7 + }, + { + "id": 214, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4906 + }, + "angle": 0, + "vertices": { + "#": 4907 + }, + "position": { + "#": 4912 + }, + "force": { + "#": 4913 + }, + "torque": 0, + "positionImpulse": { + "#": 4914 + }, + "constraintImpulse": { + "#": 4915 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4916 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4917 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4918 + }, + "bounds": { + "#": 4920 + }, + "positionPrev": { + "#": 4923 + }, + "anglePrev": 0, + "axes": { + "#": 4924 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4905 + }, + "sleepCounter": 0, + "region": { + "#": 4927 + } + }, + [ + { + "#": 4905 + } + ], + [ + { + "#": 4908 + }, + { + "#": 4909 + }, + { + "#": 4910 + }, + { + "#": 4911 + } + ], + { + "x": 325, + "y": 337.73575, + "index": 0, + "body": { + "#": 4905 + }, + "isInternal": false + }, + { + "x": 350, + "y": 337.73575, + "index": 1, + "body": { + "#": 4905 + }, + "isInternal": false + }, + { + "x": 350, + "y": 362.73575, + "index": 2, + "body": { + "#": 4905 + }, + "isInternal": false + }, + { + "x": 325, + "y": 362.73575, + "index": 3, + "body": { + "#": 4905 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4919 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4921 + }, + "max": { + "#": 4922 + } + }, + { + "x": 325, + "y": 337.73575 + }, + { + "x": 350, + "y": 362.73575 + }, + { + "x": 337.5, + "y": 347.32848 + }, + [ + { + "#": 4925 + }, + { + "#": 4926 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,7,7", + "startCol": 6, + "endCol": 7, + "startRow": 7, + "endRow": 7 + }, + { + "id": 215, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4929 + }, + "angle": 0, + "vertices": { + "#": 4930 + }, + "position": { + "#": 4935 + }, + "force": { + "#": 4936 + }, + "torque": 0, + "positionImpulse": { + "#": 4937 + }, + "constraintImpulse": { + "#": 4938 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4939 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4940 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4941 + }, + "bounds": { + "#": 4943 + }, + "positionPrev": { + "#": 4946 + }, + "anglePrev": 0, + "axes": { + "#": 4947 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4928 + }, + "sleepCounter": 0, + "region": { + "#": 4950 + } + }, + [ + { + "#": 4928 + } + ], + [ + { + "#": 4931 + }, + { + "#": 4932 + }, + { + "#": 4933 + }, + { + "#": 4934 + } + ], + { + "x": 350, + "y": 337.73575, + "index": 0, + "body": { + "#": 4928 + }, + "isInternal": false + }, + { + "x": 375, + "y": 337.73575, + "index": 1, + "body": { + "#": 4928 + }, + "isInternal": false + }, + { + "x": 375, + "y": 362.73575, + "index": 2, + "body": { + "#": 4928 + }, + "isInternal": false + }, + { + "x": 350, + "y": 362.73575, + "index": 3, + "body": { + "#": 4928 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4942 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4944 + }, + "max": { + "#": 4945 + } + }, + { + "x": 350, + "y": 337.73575 + }, + { + "x": 375, + "y": 362.73575 + }, + { + "x": 362.5, + "y": 347.32848 + }, + [ + { + "#": 4948 + }, + { + "#": 4949 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,7,7", + "startCol": 7, + "endCol": 7, + "startRow": 7, + "endRow": 7 + }, + { + "id": 216, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4952 + }, + "angle": 0, + "vertices": { + "#": 4953 + }, + "position": { + "#": 4958 + }, + "force": { + "#": 4959 + }, + "torque": 0, + "positionImpulse": { + "#": 4960 + }, + "constraintImpulse": { + "#": 4961 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4962 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4963 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4964 + }, + "bounds": { + "#": 4966 + }, + "positionPrev": { + "#": 4969 + }, + "anglePrev": 0, + "axes": { + "#": 4970 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4951 + }, + "sleepCounter": 0, + "region": { + "#": 4973 + } + }, + [ + { + "#": 4951 + } + ], + [ + { + "#": 4954 + }, + { + "#": 4955 + }, + { + "#": 4956 + }, + { + "#": 4957 + } + ], + { + "x": 375, + "y": 337.73575, + "index": 0, + "body": { + "#": 4951 + }, + "isInternal": false + }, + { + "x": 400, + "y": 337.73575, + "index": 1, + "body": { + "#": 4951 + }, + "isInternal": false + }, + { + "x": 400, + "y": 362.73575, + "index": 2, + "body": { + "#": 4951 + }, + "isInternal": false + }, + { + "x": 375, + "y": 362.73575, + "index": 3, + "body": { + "#": 4951 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4965 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4967 + }, + "max": { + "#": 4968 + } + }, + { + "x": 375, + "y": 337.73575 + }, + { + "x": 400, + "y": 362.73575 + }, + { + "x": 387.5, + "y": 347.32848 + }, + [ + { + "#": 4971 + }, + { + "#": 4972 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,7,7", + "startCol": 7, + "endCol": 8, + "startRow": 7, + "endRow": 7 + }, + { + "id": 217, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4975 + }, + "angle": 0, + "vertices": { + "#": 4976 + }, + "position": { + "#": 4981 + }, + "force": { + "#": 4982 + }, + "torque": 0, + "positionImpulse": { + "#": 4983 + }, + "constraintImpulse": { + "#": 4984 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 4985 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 4986 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 4987 + }, + "bounds": { + "#": 4989 + }, + "positionPrev": { + "#": 4992 + }, + "anglePrev": 0, + "axes": { + "#": 4993 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4974 + }, + "sleepCounter": 0, + "region": { + "#": 4996 + } + }, + [ + { + "#": 4974 + } + ], + [ + { + "#": 4977 + }, + { + "#": 4978 + }, + { + "#": 4979 + }, + { + "#": 4980 + } + ], + { + "x": 400, + "y": 337.73575, + "index": 0, + "body": { + "#": 4974 + }, + "isInternal": false + }, + { + "x": 425, + "y": 337.73575, + "index": 1, + "body": { + "#": 4974 + }, + "isInternal": false + }, + { + "x": 425, + "y": 362.73575, + "index": 2, + "body": { + "#": 4974 + }, + "isInternal": false + }, + { + "x": 400, + "y": 362.73575, + "index": 3, + "body": { + "#": 4974 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 4988 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 4990 + }, + "max": { + "#": 4991 + } + }, + { + "x": 400, + "y": 337.73575 + }, + { + "x": 425, + "y": 362.73575 + }, + { + "x": 412.5, + "y": 347.32848 + }, + [ + { + "#": 4994 + }, + { + "#": 4995 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,8,7,7", + "startCol": 8, + "endCol": 8, + "startRow": 7, + "endRow": 7 + }, + { + "id": 218, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 4998 + }, + "angle": 0, + "vertices": { + "#": 4999 + }, + "position": { + "#": 5004 + }, + "force": { + "#": 5005 + }, + "torque": 0, + "positionImpulse": { + "#": 5006 + }, + "constraintImpulse": { + "#": 5007 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5008 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5009 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5010 + }, + "bounds": { + "#": 5012 + }, + "positionPrev": { + "#": 5015 + }, + "anglePrev": 0, + "axes": { + "#": 5016 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 4997 + }, + "sleepCounter": 0, + "region": { + "#": 5019 + } + }, + [ + { + "#": 4997 + } + ], + [ + { + "#": 5000 + }, + { + "#": 5001 + }, + { + "#": 5002 + }, + { + "#": 5003 + } + ], + { + "x": 425, + "y": 337.73575, + "index": 0, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 450, + "y": 337.73575, + "index": 1, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 450, + "y": 362.73575, + "index": 2, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 425, + "y": 362.73575, + "index": 3, + "body": { + "#": 4997 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5011 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5013 + }, + "max": { + "#": 5014 + } + }, + { + "x": 425, + "y": 337.73575 + }, + { + "x": 450, + "y": 362.73575 + }, + { + "x": 437.5, + "y": 347.32848 + }, + [ + { + "#": 5017 + }, + { + "#": 5018 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,7,7", + "startCol": 8, + "endCol": 9, + "startRow": 7, + "endRow": 7 + }, + { + "id": 219, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5021 + }, + "angle": 0, + "vertices": { + "#": 5022 + }, + "position": { + "#": 5027 + }, + "force": { + "#": 5028 + }, + "torque": 0, + "positionImpulse": { + "#": 5029 + }, + "constraintImpulse": { + "#": 5030 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5031 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5032 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5033 + }, + "bounds": { + "#": 5035 + }, + "positionPrev": { + "#": 5038 + }, + "anglePrev": 0, + "axes": { + "#": 5039 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5020 + }, + "sleepCounter": 0, + "region": { + "#": 5042 + } + }, + [ + { + "#": 5020 + } + ], + [ + { + "#": 5023 + }, + { + "#": 5024 + }, + { + "#": 5025 + }, + { + "#": 5026 + } + ], + { + "x": 450, + "y": 337.73575, + "index": 0, + "body": { + "#": 5020 + }, + "isInternal": false + }, + { + "x": 475, + "y": 337.73575, + "index": 1, + "body": { + "#": 5020 + }, + "isInternal": false + }, + { + "x": 475, + "y": 362.73575, + "index": 2, + "body": { + "#": 5020 + }, + "isInternal": false + }, + { + "x": 450, + "y": 362.73575, + "index": 3, + "body": { + "#": 5020 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5034 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5036 + }, + "max": { + "#": 5037 + } + }, + { + "x": 450, + "y": 337.73575 + }, + { + "x": 475, + "y": 362.73575 + }, + { + "x": 462.5, + "y": 347.32848 + }, + [ + { + "#": 5040 + }, + { + "#": 5041 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,7,7", + "startCol": 9, + "endCol": 9, + "startRow": 7, + "endRow": 7 + }, + { + "id": 220, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5044 + }, + "angle": 0, + "vertices": { + "#": 5045 + }, + "position": { + "#": 5050 + }, + "force": { + "#": 5051 + }, + "torque": 0, + "positionImpulse": { + "#": 5052 + }, + "constraintImpulse": { + "#": 5053 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5054 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5055 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5056 + }, + "bounds": { + "#": 5058 + }, + "positionPrev": { + "#": 5061 + }, + "anglePrev": 0, + "axes": { + "#": 5062 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5043 + }, + "sleepCounter": 0, + "region": { + "#": 5065 + } + }, + [ + { + "#": 5043 + } + ], + [ + { + "#": 5046 + }, + { + "#": 5047 + }, + { + "#": 5048 + }, + { + "#": 5049 + } + ], + { + "x": 475, + "y": 337.73575, + "index": 0, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 500, + "y": 337.73575, + "index": 1, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 500, + "y": 362.73575, + "index": 2, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 475, + "y": 362.73575, + "index": 3, + "body": { + "#": 5043 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5057 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5059 + }, + "max": { + "#": 5060 + } + }, + { + "x": 475, + "y": 337.73575 + }, + { + "x": 500, + "y": 362.73575 + }, + { + "x": 487.5, + "y": 347.32848 + }, + [ + { + "#": 5063 + }, + { + "#": 5064 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,7,7", + "startCol": 9, + "endCol": 10, + "startRow": 7, + "endRow": 7 + }, + { + "id": 221, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5067 + }, + "angle": 0, + "vertices": { + "#": 5068 + }, + "position": { + "#": 5073 + }, + "force": { + "#": 5074 + }, + "torque": 0, + "positionImpulse": { + "#": 5075 + }, + "constraintImpulse": { + "#": 5076 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5077 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5078 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5079 + }, + "bounds": { + "#": 5081 + }, + "positionPrev": { + "#": 5084 + }, + "anglePrev": 0, + "axes": { + "#": 5085 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5066 + }, + "sleepCounter": 0, + "region": { + "#": 5088 + } + }, + [ + { + "#": 5066 + } + ], + [ + { + "#": 5069 + }, + { + "#": 5070 + }, + { + "#": 5071 + }, + { + "#": 5072 + } + ], + { + "x": 500, + "y": 337.73575, + "index": 0, + "body": { + "#": 5066 + }, + "isInternal": false + }, + { + "x": 525, + "y": 337.73575, + "index": 1, + "body": { + "#": 5066 + }, + "isInternal": false + }, + { + "x": 525, + "y": 362.73575, + "index": 2, + "body": { + "#": 5066 + }, + "isInternal": false + }, + { + "x": 500, + "y": 362.73575, + "index": 3, + "body": { + "#": 5066 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5080 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5082 + }, + "max": { + "#": 5083 + } + }, + { + "x": 500, + "y": 337.73575 + }, + { + "x": 525, + "y": 362.73575 + }, + { + "x": 512.5, + "y": 347.32848 + }, + [ + { + "#": 5086 + }, + { + "#": 5087 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,7,7", + "startCol": 10, + "endCol": 10, + "startRow": 7, + "endRow": 7 + }, + { + "id": 222, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5090 + }, + "angle": 0, + "vertices": { + "#": 5091 + }, + "position": { + "#": 5096 + }, + "force": { + "#": 5097 + }, + "torque": 0, + "positionImpulse": { + "#": 5098 + }, + "constraintImpulse": { + "#": 5099 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5100 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5101 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5102 + }, + "bounds": { + "#": 5104 + }, + "positionPrev": { + "#": 5107 + }, + "anglePrev": 0, + "axes": { + "#": 5108 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5089 + }, + "sleepCounter": 0, + "region": { + "#": 5111 + } + }, + [ + { + "#": 5089 + } + ], + [ + { + "#": 5092 + }, + { + "#": 5093 + }, + { + "#": 5094 + }, + { + "#": 5095 + } + ], + { + "x": 525, + "y": 337.73575, + "index": 0, + "body": { + "#": 5089 + }, + "isInternal": false + }, + { + "x": 550, + "y": 337.73575, + "index": 1, + "body": { + "#": 5089 + }, + "isInternal": false + }, + { + "x": 550, + "y": 362.73575, + "index": 2, + "body": { + "#": 5089 + }, + "isInternal": false + }, + { + "x": 525, + "y": 362.73575, + "index": 3, + "body": { + "#": 5089 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5103 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5105 + }, + "max": { + "#": 5106 + } + }, + { + "x": 525, + "y": 337.73575 + }, + { + "x": 550, + "y": 362.73575 + }, + { + "x": 537.5, + "y": 347.32848 + }, + [ + { + "#": 5109 + }, + { + "#": 5110 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,7,7", + "startCol": 10, + "endCol": 11, + "startRow": 7, + "endRow": 7 + }, + { + "id": 223, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5113 + }, + "angle": 0, + "vertices": { + "#": 5114 + }, + "position": { + "#": 5119 + }, + "force": { + "#": 5120 + }, + "torque": 0, + "positionImpulse": { + "#": 5121 + }, + "constraintImpulse": { + "#": 5122 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5123 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5124 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5125 + }, + "bounds": { + "#": 5127 + }, + "positionPrev": { + "#": 5130 + }, + "anglePrev": 0, + "axes": { + "#": 5131 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5112 + }, + "sleepCounter": 0, + "region": { + "#": 5134 + } + }, + [ + { + "#": 5112 + } + ], + [ + { + "#": 5115 + }, + { + "#": 5116 + }, + { + "#": 5117 + }, + { + "#": 5118 + } + ], + { + "x": 550, + "y": 337.73575, + "index": 0, + "body": { + "#": 5112 + }, + "isInternal": false + }, + { + "x": 575, + "y": 337.73575, + "index": 1, + "body": { + "#": 5112 + }, + "isInternal": false + }, + { + "x": 575, + "y": 362.73575, + "index": 2, + "body": { + "#": 5112 + }, + "isInternal": false + }, + { + "x": 550, + "y": 362.73575, + "index": 3, + "body": { + "#": 5112 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5126 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5128 + }, + "max": { + "#": 5129 + } + }, + { + "x": 550, + "y": 337.73575 + }, + { + "x": 575, + "y": 362.73575 + }, + { + "x": 562.5, + "y": 347.32848 + }, + [ + { + "#": 5132 + }, + { + "#": 5133 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,11,7,7", + "startCol": 11, + "endCol": 11, + "startRow": 7, + "endRow": 7 + }, + { + "id": 224, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5136 + }, + "angle": 0, + "vertices": { + "#": 5137 + }, + "position": { + "#": 5142 + }, + "force": { + "#": 5143 + }, + "torque": 0, + "positionImpulse": { + "#": 5144 + }, + "constraintImpulse": { + "#": 5145 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5146 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5147 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5148 + }, + "bounds": { + "#": 5150 + }, + "positionPrev": { + "#": 5153 + }, + "anglePrev": 0, + "axes": { + "#": 5154 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5135 + }, + "sleepCounter": 0, + "region": { + "#": 5157 + } + }, + [ + { + "#": 5135 + } + ], + [ + { + "#": 5138 + }, + { + "#": 5139 + }, + { + "#": 5140 + }, + { + "#": 5141 + } + ], + { + "x": 575, + "y": 337.73575, + "index": 0, + "body": { + "#": 5135 + }, + "isInternal": false + }, + { + "x": 600, + "y": 337.73575, + "index": 1, + "body": { + "#": 5135 + }, + "isInternal": false + }, + { + "x": 600, + "y": 362.73575, + "index": 2, + "body": { + "#": 5135 + }, + "isInternal": false + }, + { + "x": 575, + "y": 362.73575, + "index": 3, + "body": { + "#": 5135 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5149 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5151 + }, + "max": { + "#": 5152 + } + }, + { + "x": 575, + "y": 337.73575 + }, + { + "x": 600, + "y": 362.73575 + }, + { + "x": 587.5, + "y": 347.32848 + }, + [ + { + "#": 5155 + }, + { + "#": 5156 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,7,7", + "startCol": 11, + "endCol": 12, + "startRow": 7, + "endRow": 7 + }, + { + "id": 225, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5159 + }, + "angle": 0, + "vertices": { + "#": 5160 + }, + "position": { + "#": 5165 + }, + "force": { + "#": 5166 + }, + "torque": 0, + "positionImpulse": { + "#": 5167 + }, + "constraintImpulse": { + "#": 5168 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5169 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5170 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5171 + }, + "bounds": { + "#": 5173 + }, + "positionPrev": { + "#": 5176 + }, + "anglePrev": 0, + "axes": { + "#": 5177 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5158 + }, + "sleepCounter": 0, + "region": { + "#": 5180 + } + }, + [ + { + "#": 5158 + } + ], + [ + { + "#": 5161 + }, + { + "#": 5162 + }, + { + "#": 5163 + }, + { + "#": 5164 + } + ], + { + "x": 600, + "y": 337.73575, + "index": 0, + "body": { + "#": 5158 + }, + "isInternal": false + }, + { + "x": 625, + "y": 337.73575, + "index": 1, + "body": { + "#": 5158 + }, + "isInternal": false + }, + { + "x": 625, + "y": 362.73575, + "index": 2, + "body": { + "#": 5158 + }, + "isInternal": false + }, + { + "x": 600, + "y": 362.73575, + "index": 3, + "body": { + "#": 5158 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5172 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5174 + }, + "max": { + "#": 5175 + } + }, + { + "x": 600, + "y": 337.73575 + }, + { + "x": 625, + "y": 362.73575 + }, + { + "x": 612.5, + "y": 347.32848 + }, + [ + { + "#": 5178 + }, + { + "#": 5179 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,7,7", + "startCol": 12, + "endCol": 13, + "startRow": 7, + "endRow": 7 + }, + { + "id": 226, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5182 + }, + "angle": 0, + "vertices": { + "#": 5183 + }, + "position": { + "#": 5188 + }, + "force": { + "#": 5189 + }, + "torque": 0, + "positionImpulse": { + "#": 5190 + }, + "constraintImpulse": { + "#": 5191 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5192 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5193 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5194 + }, + "bounds": { + "#": 5196 + }, + "positionPrev": { + "#": 5199 + }, + "anglePrev": 0, + "axes": { + "#": 5200 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5181 + }, + "sleepCounter": 0, + "region": { + "#": 5203 + } + }, + [ + { + "#": 5181 + } + ], + [ + { + "#": 5184 + }, + { + "#": 5185 + }, + { + "#": 5186 + }, + { + "#": 5187 + } + ], + { + "x": 625, + "y": 337.73575, + "index": 0, + "body": { + "#": 5181 + }, + "isInternal": false + }, + { + "x": 650, + "y": 337.73575, + "index": 1, + "body": { + "#": 5181 + }, + "isInternal": false + }, + { + "x": 650, + "y": 362.73575, + "index": 2, + "body": { + "#": 5181 + }, + "isInternal": false + }, + { + "x": 625, + "y": 362.73575, + "index": 3, + "body": { + "#": 5181 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5195 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5197 + }, + "max": { + "#": 5198 + } + }, + { + "x": 625, + "y": 337.73575 + }, + { + "x": 650, + "y": 362.73575 + }, + { + "x": 637.5, + "y": 347.32848 + }, + [ + { + "#": 5201 + }, + { + "#": 5202 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,13,7,7", + "startCol": 13, + "endCol": 13, + "startRow": 7, + "endRow": 7 + }, + { + "id": 227, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5205 + }, + "angle": 0, + "vertices": { + "#": 5206 + }, + "position": { + "#": 5211 + }, + "force": { + "#": 5212 + }, + "torque": 0, + "positionImpulse": { + "#": 5213 + }, + "constraintImpulse": { + "#": 5214 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5215 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5216 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5217 + }, + "bounds": { + "#": 5219 + }, + "positionPrev": { + "#": 5222 + }, + "anglePrev": 0, + "axes": { + "#": 5223 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5204 + }, + "sleepCounter": 0, + "region": { + "#": 5226 + } + }, + [ + { + "#": 5204 + } + ], + [ + { + "#": 5207 + }, + { + "#": 5208 + }, + { + "#": 5209 + }, + { + "#": 5210 + } + ], + { + "x": 650, + "y": 337.73575, + "index": 0, + "body": { + "#": 5204 + }, + "isInternal": false + }, + { + "x": 675, + "y": 337.73575, + "index": 1, + "body": { + "#": 5204 + }, + "isInternal": false + }, + { + "x": 675, + "y": 362.73575, + "index": 2, + "body": { + "#": 5204 + }, + "isInternal": false + }, + { + "x": 650, + "y": 362.73575, + "index": 3, + "body": { + "#": 5204 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5218 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5220 + }, + "max": { + "#": 5221 + } + }, + { + "x": 650, + "y": 337.73575 + }, + { + "x": 675, + "y": 362.73575 + }, + { + "x": 662.5, + "y": 347.32848 + }, + [ + { + "#": 5224 + }, + { + "#": 5225 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,7,7", + "startCol": 13, + "endCol": 14, + "startRow": 7, + "endRow": 7 + }, + { + "id": 228, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5228 + }, + "angle": 0, + "vertices": { + "#": 5229 + }, + "position": { + "#": 5234 + }, + "force": { + "#": 5235 + }, + "torque": 0, + "positionImpulse": { + "#": 5236 + }, + "constraintImpulse": { + "#": 5237 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5238 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5239 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5240 + }, + "bounds": { + "#": 5242 + }, + "positionPrev": { + "#": 5245 + }, + "anglePrev": 0, + "axes": { + "#": 5246 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5227 + }, + "sleepCounter": 0, + "region": { + "#": 5249 + } + }, + [ + { + "#": 5227 + } + ], + [ + { + "#": 5230 + }, + { + "#": 5231 + }, + { + "#": 5232 + }, + { + "#": 5233 + } + ], + { + "x": 675, + "y": 337.73575, + "index": 0, + "body": { + "#": 5227 + }, + "isInternal": false + }, + { + "x": 700, + "y": 337.73575, + "index": 1, + "body": { + "#": 5227 + }, + "isInternal": false + }, + { + "x": 700, + "y": 362.73575, + "index": 2, + "body": { + "#": 5227 + }, + "isInternal": false + }, + { + "x": 675, + "y": 362.73575, + "index": 3, + "body": { + "#": 5227 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5241 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5243 + }, + "max": { + "#": 5244 + } + }, + { + "x": 675, + "y": 337.73575 + }, + { + "x": 700, + "y": 362.73575 + }, + { + "x": 687.5, + "y": 347.32848 + }, + [ + { + "#": 5247 + }, + { + "#": 5248 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,14,7,7", + "startCol": 14, + "endCol": 14, + "startRow": 7, + "endRow": 7 + }, + { + "id": 229, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5251 + }, + "angle": 0, + "vertices": { + "#": 5252 + }, + "position": { + "#": 5257 + }, + "force": { + "#": 5258 + }, + "torque": 0, + "positionImpulse": { + "#": 5259 + }, + "constraintImpulse": { + "#": 5260 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5261 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5262 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5263 + }, + "bounds": { + "#": 5265 + }, + "positionPrev": { + "#": 5268 + }, + "anglePrev": 0, + "axes": { + "#": 5269 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5250 + }, + "sleepCounter": 0, + "region": { + "#": 5272 + } + }, + [ + { + "#": 5250 + } + ], + [ + { + "#": 5253 + }, + { + "#": 5254 + }, + { + "#": 5255 + }, + { + "#": 5256 + } + ], + { + "x": 700, + "y": 337.73575, + "index": 0, + "body": { + "#": 5250 + }, + "isInternal": false + }, + { + "x": 725, + "y": 337.73575, + "index": 1, + "body": { + "#": 5250 + }, + "isInternal": false + }, + { + "x": 725, + "y": 362.73575, + "index": 2, + "body": { + "#": 5250 + }, + "isInternal": false + }, + { + "x": 700, + "y": 362.73575, + "index": 3, + "body": { + "#": 5250 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 350.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5264 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5266 + }, + "max": { + "#": 5267 + } + }, + { + "x": 700, + "y": 337.73575 + }, + { + "x": 725, + "y": 362.73575 + }, + { + "x": 712.5, + "y": 347.32848 + }, + [ + { + "#": 5270 + }, + { + "#": 5271 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,7,7", + "startCol": 14, + "endCol": 15, + "startRow": 7, + "endRow": 7 + }, + { + "id": 230, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5274 + }, + "angle": 0, + "vertices": { + "#": 5275 + }, + "position": { + "#": 5280 + }, + "force": { + "#": 5281 + }, + "torque": 0, + "positionImpulse": { + "#": 5282 + }, + "constraintImpulse": { + "#": 5283 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5284 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5285 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5286 + }, + "bounds": { + "#": 5288 + }, + "positionPrev": { + "#": 5291 + }, + "anglePrev": 0, + "axes": { + "#": 5292 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5273 + }, + "sleepCounter": 0, + "region": { + "#": 5295 + } + }, + [ + { + "#": 5273 + } + ], + [ + { + "#": 5276 + }, + { + "#": 5277 + }, + { + "#": 5278 + }, + { + "#": 5279 + } + ], + { + "x": 100, + "y": 362.73575, + "index": 0, + "body": { + "#": 5273 + }, + "isInternal": false + }, + { + "x": 125, + "y": 362.73575, + "index": 1, + "body": { + "#": 5273 + }, + "isInternal": false + }, + { + "x": 125, + "y": 387.73575, + "index": 2, + "body": { + "#": 5273 + }, + "isInternal": false + }, + { + "x": 100, + "y": 387.73575, + "index": 3, + "body": { + "#": 5273 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5287 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5289 + }, + "max": { + "#": 5290 + } + }, + { + "x": 100, + "y": 362.73575 + }, + { + "x": 125, + "y": 387.73575 + }, + { + "x": 112.5, + "y": 372.32848 + }, + [ + { + "#": 5293 + }, + { + "#": 5294 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,7,8", + "startCol": 2, + "endCol": 2, + "startRow": 7, + "endRow": 8 + }, + { + "id": 231, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5297 + }, + "angle": 0, + "vertices": { + "#": 5298 + }, + "position": { + "#": 5303 + }, + "force": { + "#": 5304 + }, + "torque": 0, + "positionImpulse": { + "#": 5305 + }, + "constraintImpulse": { + "#": 5306 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5307 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5308 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5309 + }, + "bounds": { + "#": 5311 + }, + "positionPrev": { + "#": 5314 + }, + "anglePrev": 0, + "axes": { + "#": 5315 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5296 + }, + "sleepCounter": 0, + "region": { + "#": 5318 + } + }, + [ + { + "#": 5296 + } + ], + [ + { + "#": 5299 + }, + { + "#": 5300 + }, + { + "#": 5301 + }, + { + "#": 5302 + } + ], + { + "x": 125, + "y": 362.73575, + "index": 0, + "body": { + "#": 5296 + }, + "isInternal": false + }, + { + "x": 150, + "y": 362.73575, + "index": 1, + "body": { + "#": 5296 + }, + "isInternal": false + }, + { + "x": 150, + "y": 387.73575, + "index": 2, + "body": { + "#": 5296 + }, + "isInternal": false + }, + { + "x": 125, + "y": 387.73575, + "index": 3, + "body": { + "#": 5296 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5310 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5312 + }, + "max": { + "#": 5313 + } + }, + { + "x": 125, + "y": 362.73575 + }, + { + "x": 150, + "y": 387.73575 + }, + { + "x": 137.5, + "y": 372.32848 + }, + [ + { + "#": 5316 + }, + { + "#": 5317 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,7,8", + "startCol": 2, + "endCol": 3, + "startRow": 7, + "endRow": 8 + }, + { + "id": 232, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5320 + }, + "angle": 0, + "vertices": { + "#": 5321 + }, + "position": { + "#": 5326 + }, + "force": { + "#": 5327 + }, + "torque": 0, + "positionImpulse": { + "#": 5328 + }, + "constraintImpulse": { + "#": 5329 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5330 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5331 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5332 + }, + "bounds": { + "#": 5334 + }, + "positionPrev": { + "#": 5337 + }, + "anglePrev": 0, + "axes": { + "#": 5338 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5319 + }, + "sleepCounter": 0, + "region": { + "#": 5341 + } + }, + [ + { + "#": 5319 + } + ], + [ + { + "#": 5322 + }, + { + "#": 5323 + }, + { + "#": 5324 + }, + { + "#": 5325 + } + ], + { + "x": 150, + "y": 362.73575, + "index": 0, + "body": { + "#": 5319 + }, + "isInternal": false + }, + { + "x": 175, + "y": 362.73575, + "index": 1, + "body": { + "#": 5319 + }, + "isInternal": false + }, + { + "x": 175, + "y": 387.73575, + "index": 2, + "body": { + "#": 5319 + }, + "isInternal": false + }, + { + "x": 150, + "y": 387.73575, + "index": 3, + "body": { + "#": 5319 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5333 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5335 + }, + "max": { + "#": 5336 + } + }, + { + "x": 150, + "y": 362.73575 + }, + { + "x": 175, + "y": 387.73575 + }, + { + "x": 162.5, + "y": 372.32848 + }, + [ + { + "#": 5339 + }, + { + "#": 5340 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,3,7,8", + "startCol": 3, + "endCol": 3, + "startRow": 7, + "endRow": 8 + }, + { + "id": 233, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5343 + }, + "angle": 0, + "vertices": { + "#": 5344 + }, + "position": { + "#": 5349 + }, + "force": { + "#": 5350 + }, + "torque": 0, + "positionImpulse": { + "#": 5351 + }, + "constraintImpulse": { + "#": 5352 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5353 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5354 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5355 + }, + "bounds": { + "#": 5357 + }, + "positionPrev": { + "#": 5360 + }, + "anglePrev": 0, + "axes": { + "#": 5361 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5342 + }, + "sleepCounter": 0, + "region": { + "#": 5364 + } + }, + [ + { + "#": 5342 + } + ], + [ + { + "#": 5345 + }, + { + "#": 5346 + }, + { + "#": 5347 + }, + { + "#": 5348 + } + ], + { + "x": 175, + "y": 362.73575, + "index": 0, + "body": { + "#": 5342 + }, + "isInternal": false + }, + { + "x": 200, + "y": 362.73575, + "index": 1, + "body": { + "#": 5342 + }, + "isInternal": false + }, + { + "x": 200, + "y": 387.73575, + "index": 2, + "body": { + "#": 5342 + }, + "isInternal": false + }, + { + "x": 175, + "y": 387.73575, + "index": 3, + "body": { + "#": 5342 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5356 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5358 + }, + "max": { + "#": 5359 + } + }, + { + "x": 175, + "y": 362.73575 + }, + { + "x": 200, + "y": 387.73575 + }, + { + "x": 187.5, + "y": 372.32848 + }, + [ + { + "#": 5362 + }, + { + "#": 5363 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,7,8", + "startCol": 3, + "endCol": 4, + "startRow": 7, + "endRow": 8 + }, + { + "id": 234, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5366 + }, + "angle": 0, + "vertices": { + "#": 5367 + }, + "position": { + "#": 5372 + }, + "force": { + "#": 5373 + }, + "torque": 0, + "positionImpulse": { + "#": 5374 + }, + "constraintImpulse": { + "#": 5375 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5376 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5377 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5378 + }, + "bounds": { + "#": 5380 + }, + "positionPrev": { + "#": 5383 + }, + "anglePrev": 0, + "axes": { + "#": 5384 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5365 + }, + "sleepCounter": 0, + "region": { + "#": 5387 + } + }, + [ + { + "#": 5365 + } + ], + [ + { + "#": 5368 + }, + { + "#": 5369 + }, + { + "#": 5370 + }, + { + "#": 5371 + } + ], + { + "x": 200, + "y": 362.73575, + "index": 0, + "body": { + "#": 5365 + }, + "isInternal": false + }, + { + "x": 225, + "y": 362.73575, + "index": 1, + "body": { + "#": 5365 + }, + "isInternal": false + }, + { + "x": 225, + "y": 387.73575, + "index": 2, + "body": { + "#": 5365 + }, + "isInternal": false + }, + { + "x": 200, + "y": 387.73575, + "index": 3, + "body": { + "#": 5365 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5379 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5381 + }, + "max": { + "#": 5382 + } + }, + { + "x": 200, + "y": 362.73575 + }, + { + "x": 225, + "y": 387.73575 + }, + { + "x": 212.5, + "y": 372.32848 + }, + [ + { + "#": 5385 + }, + { + "#": 5386 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,7,8", + "startCol": 4, + "endCol": 4, + "startRow": 7, + "endRow": 8 + }, + { + "id": 235, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5389 + }, + "angle": 0, + "vertices": { + "#": 5390 + }, + "position": { + "#": 5395 + }, + "force": { + "#": 5396 + }, + "torque": 0, + "positionImpulse": { + "#": 5397 + }, + "constraintImpulse": { + "#": 5398 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5399 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5400 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5401 + }, + "bounds": { + "#": 5403 + }, + "positionPrev": { + "#": 5406 + }, + "anglePrev": 0, + "axes": { + "#": 5407 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5388 + }, + "sleepCounter": 0, + "region": { + "#": 5410 + } + }, + [ + { + "#": 5388 + } + ], + [ + { + "#": 5391 + }, + { + "#": 5392 + }, + { + "#": 5393 + }, + { + "#": 5394 + } + ], + { + "x": 225, + "y": 362.73575, + "index": 0, + "body": { + "#": 5388 + }, + "isInternal": false + }, + { + "x": 250, + "y": 362.73575, + "index": 1, + "body": { + "#": 5388 + }, + "isInternal": false + }, + { + "x": 250, + "y": 387.73575, + "index": 2, + "body": { + "#": 5388 + }, + "isInternal": false + }, + { + "x": 225, + "y": 387.73575, + "index": 3, + "body": { + "#": 5388 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5402 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5404 + }, + "max": { + "#": 5405 + } + }, + { + "x": 225, + "y": 362.73575 + }, + { + "x": 250, + "y": 387.73575 + }, + { + "x": 237.5, + "y": 372.32848 + }, + [ + { + "#": 5408 + }, + { + "#": 5409 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,7,8", + "startCol": 4, + "endCol": 5, + "startRow": 7, + "endRow": 8 + }, + { + "id": 236, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5412 + }, + "angle": 0, + "vertices": { + "#": 5413 + }, + "position": { + "#": 5418 + }, + "force": { + "#": 5419 + }, + "torque": 0, + "positionImpulse": { + "#": 5420 + }, + "constraintImpulse": { + "#": 5421 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5422 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5423 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5424 + }, + "bounds": { + "#": 5426 + }, + "positionPrev": { + "#": 5429 + }, + "anglePrev": 0, + "axes": { + "#": 5430 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5411 + }, + "sleepCounter": 0, + "region": { + "#": 5433 + } + }, + [ + { + "#": 5411 + } + ], + [ + { + "#": 5414 + }, + { + "#": 5415 + }, + { + "#": 5416 + }, + { + "#": 5417 + } + ], + { + "x": 250, + "y": 362.73575, + "index": 0, + "body": { + "#": 5411 + }, + "isInternal": false + }, + { + "x": 275, + "y": 362.73575, + "index": 1, + "body": { + "#": 5411 + }, + "isInternal": false + }, + { + "x": 275, + "y": 387.73575, + "index": 2, + "body": { + "#": 5411 + }, + "isInternal": false + }, + { + "x": 250, + "y": 387.73575, + "index": 3, + "body": { + "#": 5411 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5425 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5427 + }, + "max": { + "#": 5428 + } + }, + { + "x": 250, + "y": 362.73575 + }, + { + "x": 275, + "y": 387.73575 + }, + { + "x": 262.5, + "y": 372.32848 + }, + [ + { + "#": 5431 + }, + { + "#": 5432 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,7,8", + "startCol": 5, + "endCol": 5, + "startRow": 7, + "endRow": 8 + }, + { + "id": 237, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5435 + }, + "angle": 0, + "vertices": { + "#": 5436 + }, + "position": { + "#": 5441 + }, + "force": { + "#": 5442 + }, + "torque": 0, + "positionImpulse": { + "#": 5443 + }, + "constraintImpulse": { + "#": 5444 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5445 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5446 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5447 + }, + "bounds": { + "#": 5449 + }, + "positionPrev": { + "#": 5452 + }, + "anglePrev": 0, + "axes": { + "#": 5453 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5434 + }, + "sleepCounter": 0, + "region": { + "#": 5456 + } + }, + [ + { + "#": 5434 + } + ], + [ + { + "#": 5437 + }, + { + "#": 5438 + }, + { + "#": 5439 + }, + { + "#": 5440 + } + ], + { + "x": 275, + "y": 362.73575, + "index": 0, + "body": { + "#": 5434 + }, + "isInternal": false + }, + { + "x": 300, + "y": 362.73575, + "index": 1, + "body": { + "#": 5434 + }, + "isInternal": false + }, + { + "x": 300, + "y": 387.73575, + "index": 2, + "body": { + "#": 5434 + }, + "isInternal": false + }, + { + "x": 275, + "y": 387.73575, + "index": 3, + "body": { + "#": 5434 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5448 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5450 + }, + "max": { + "#": 5451 + } + }, + { + "x": 275, + "y": 362.73575 + }, + { + "x": 300, + "y": 387.73575 + }, + { + "x": 287.5, + "y": 372.32848 + }, + [ + { + "#": 5454 + }, + { + "#": 5455 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,7,8", + "startCol": 5, + "endCol": 6, + "startRow": 7, + "endRow": 8 + }, + { + "id": 238, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5458 + }, + "angle": 0, + "vertices": { + "#": 5459 + }, + "position": { + "#": 5464 + }, + "force": { + "#": 5465 + }, + "torque": 0, + "positionImpulse": { + "#": 5466 + }, + "constraintImpulse": { + "#": 5467 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5468 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5469 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5470 + }, + "bounds": { + "#": 5472 + }, + "positionPrev": { + "#": 5475 + }, + "anglePrev": 0, + "axes": { + "#": 5476 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5457 + }, + "sleepCounter": 0, + "region": { + "#": 5479 + } + }, + [ + { + "#": 5457 + } + ], + [ + { + "#": 5460 + }, + { + "#": 5461 + }, + { + "#": 5462 + }, + { + "#": 5463 + } + ], + { + "x": 300, + "y": 362.73575, + "index": 0, + "body": { + "#": 5457 + }, + "isInternal": false + }, + { + "x": 325, + "y": 362.73575, + "index": 1, + "body": { + "#": 5457 + }, + "isInternal": false + }, + { + "x": 325, + "y": 387.73575, + "index": 2, + "body": { + "#": 5457 + }, + "isInternal": false + }, + { + "x": 300, + "y": 387.73575, + "index": 3, + "body": { + "#": 5457 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5471 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5473 + }, + "max": { + "#": 5474 + } + }, + { + "x": 300, + "y": 362.73575 + }, + { + "x": 325, + "y": 387.73575 + }, + { + "x": 312.5, + "y": 372.32848 + }, + [ + { + "#": 5477 + }, + { + "#": 5478 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,7,8", + "startCol": 6, + "endCol": 6, + "startRow": 7, + "endRow": 8 + }, + { + "id": 239, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5481 + }, + "angle": 0, + "vertices": { + "#": 5482 + }, + "position": { + "#": 5487 + }, + "force": { + "#": 5488 + }, + "torque": 0, + "positionImpulse": { + "#": 5489 + }, + "constraintImpulse": { + "#": 5490 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5491 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5492 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5493 + }, + "bounds": { + "#": 5495 + }, + "positionPrev": { + "#": 5498 + }, + "anglePrev": 0, + "axes": { + "#": 5499 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5480 + }, + "sleepCounter": 0, + "region": { + "#": 5502 + } + }, + [ + { + "#": 5480 + } + ], + [ + { + "#": 5483 + }, + { + "#": 5484 + }, + { + "#": 5485 + }, + { + "#": 5486 + } + ], + { + "x": 325, + "y": 362.73575, + "index": 0, + "body": { + "#": 5480 + }, + "isInternal": false + }, + { + "x": 350, + "y": 362.73575, + "index": 1, + "body": { + "#": 5480 + }, + "isInternal": false + }, + { + "x": 350, + "y": 387.73575, + "index": 2, + "body": { + "#": 5480 + }, + "isInternal": false + }, + { + "x": 325, + "y": 387.73575, + "index": 3, + "body": { + "#": 5480 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5494 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5496 + }, + "max": { + "#": 5497 + } + }, + { + "x": 325, + "y": 362.73575 + }, + { + "x": 350, + "y": 387.73575 + }, + { + "x": 337.5, + "y": 372.32848 + }, + [ + { + "#": 5500 + }, + { + "#": 5501 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,7,8", + "startCol": 6, + "endCol": 7, + "startRow": 7, + "endRow": 8 + }, + { + "id": 240, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5504 + }, + "angle": 0, + "vertices": { + "#": 5505 + }, + "position": { + "#": 5510 + }, + "force": { + "#": 5511 + }, + "torque": 0, + "positionImpulse": { + "#": 5512 + }, + "constraintImpulse": { + "#": 5513 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5514 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5515 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5516 + }, + "bounds": { + "#": 5518 + }, + "positionPrev": { + "#": 5521 + }, + "anglePrev": 0, + "axes": { + "#": 5522 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5503 + }, + "sleepCounter": 0, + "region": { + "#": 5525 + } + }, + [ + { + "#": 5503 + } + ], + [ + { + "#": 5506 + }, + { + "#": 5507 + }, + { + "#": 5508 + }, + { + "#": 5509 + } + ], + { + "x": 350, + "y": 362.73575, + "index": 0, + "body": { + "#": 5503 + }, + "isInternal": false + }, + { + "x": 375, + "y": 362.73575, + "index": 1, + "body": { + "#": 5503 + }, + "isInternal": false + }, + { + "x": 375, + "y": 387.73575, + "index": 2, + "body": { + "#": 5503 + }, + "isInternal": false + }, + { + "x": 350, + "y": 387.73575, + "index": 3, + "body": { + "#": 5503 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5517 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5519 + }, + "max": { + "#": 5520 + } + }, + { + "x": 350, + "y": 362.73575 + }, + { + "x": 375, + "y": 387.73575 + }, + { + "x": 362.5, + "y": 372.32848 + }, + [ + { + "#": 5523 + }, + { + "#": 5524 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,7,8", + "startCol": 7, + "endCol": 7, + "startRow": 7, + "endRow": 8 + }, + { + "id": 241, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5527 + }, + "angle": 0, + "vertices": { + "#": 5528 + }, + "position": { + "#": 5533 + }, + "force": { + "#": 5534 + }, + "torque": 0, + "positionImpulse": { + "#": 5535 + }, + "constraintImpulse": { + "#": 5536 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5537 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5538 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5539 + }, + "bounds": { + "#": 5541 + }, + "positionPrev": { + "#": 5544 + }, + "anglePrev": 0, + "axes": { + "#": 5545 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5526 + }, + "sleepCounter": 0, + "region": { + "#": 5548 + } + }, + [ + { + "#": 5526 + } + ], + [ + { + "#": 5529 + }, + { + "#": 5530 + }, + { + "#": 5531 + }, + { + "#": 5532 + } + ], + { + "x": 375, + "y": 362.73575, + "index": 0, + "body": { + "#": 5526 + }, + "isInternal": false + }, + { + "x": 400, + "y": 362.73575, + "index": 1, + "body": { + "#": 5526 + }, + "isInternal": false + }, + { + "x": 400, + "y": 387.73575, + "index": 2, + "body": { + "#": 5526 + }, + "isInternal": false + }, + { + "x": 375, + "y": 387.73575, + "index": 3, + "body": { + "#": 5526 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5540 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5542 + }, + "max": { + "#": 5543 + } + }, + { + "x": 375, + "y": 362.73575 + }, + { + "x": 400, + "y": 387.73575 + }, + { + "x": 387.5, + "y": 372.32848 + }, + [ + { + "#": 5546 + }, + { + "#": 5547 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,7,8", + "startCol": 7, + "endCol": 8, + "startRow": 7, + "endRow": 8 + }, + { + "id": 242, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5550 + }, + "angle": 0, + "vertices": { + "#": 5551 + }, + "position": { + "#": 5556 + }, + "force": { + "#": 5557 + }, + "torque": 0, + "positionImpulse": { + "#": 5558 + }, + "constraintImpulse": { + "#": 5559 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5560 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5561 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5562 + }, + "bounds": { + "#": 5564 + }, + "positionPrev": { + "#": 5567 + }, + "anglePrev": 0, + "axes": { + "#": 5568 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5549 + }, + "sleepCounter": 0, + "region": { + "#": 5571 + } + }, + [ + { + "#": 5549 + } + ], + [ + { + "#": 5552 + }, + { + "#": 5553 + }, + { + "#": 5554 + }, + { + "#": 5555 + } + ], + { + "x": 400, + "y": 362.73575, + "index": 0, + "body": { + "#": 5549 + }, + "isInternal": false + }, + { + "x": 425, + "y": 362.73575, + "index": 1, + "body": { + "#": 5549 + }, + "isInternal": false + }, + { + "x": 425, + "y": 387.73575, + "index": 2, + "body": { + "#": 5549 + }, + "isInternal": false + }, + { + "x": 400, + "y": 387.73575, + "index": 3, + "body": { + "#": 5549 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5563 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5565 + }, + "max": { + "#": 5566 + } + }, + { + "x": 400, + "y": 362.73575 + }, + { + "x": 425, + "y": 387.73575 + }, + { + "x": 412.5, + "y": 372.32848 + }, + [ + { + "#": 5569 + }, + { + "#": 5570 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,8,7,8", + "startCol": 8, + "endCol": 8, + "startRow": 7, + "endRow": 8 + }, + { + "id": 243, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5573 + }, + "angle": 0, + "vertices": { + "#": 5574 + }, + "position": { + "#": 5579 + }, + "force": { + "#": 5580 + }, + "torque": 0, + "positionImpulse": { + "#": 5581 + }, + "constraintImpulse": { + "#": 5582 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5583 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5584 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5585 + }, + "bounds": { + "#": 5587 + }, + "positionPrev": { + "#": 5590 + }, + "anglePrev": 0, + "axes": { + "#": 5591 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5572 + }, + "sleepCounter": 0, + "region": { + "#": 5594 + } + }, + [ + { + "#": 5572 + } + ], + [ + { + "#": 5575 + }, + { + "#": 5576 + }, + { + "#": 5577 + }, + { + "#": 5578 + } + ], + { + "x": 425, + "y": 362.73575, + "index": 0, + "body": { + "#": 5572 + }, + "isInternal": false + }, + { + "x": 450, + "y": 362.73575, + "index": 1, + "body": { + "#": 5572 + }, + "isInternal": false + }, + { + "x": 450, + "y": 387.73575, + "index": 2, + "body": { + "#": 5572 + }, + "isInternal": false + }, + { + "x": 425, + "y": 387.73575, + "index": 3, + "body": { + "#": 5572 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5586 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5588 + }, + "max": { + "#": 5589 + } + }, + { + "x": 425, + "y": 362.73575 + }, + { + "x": 450, + "y": 387.73575 + }, + { + "x": 437.5, + "y": 372.32848 + }, + [ + { + "#": 5592 + }, + { + "#": 5593 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,7,8", + "startCol": 8, + "endCol": 9, + "startRow": 7, + "endRow": 8 + }, + { + "id": 244, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5596 + }, + "angle": 0, + "vertices": { + "#": 5597 + }, + "position": { + "#": 5602 + }, + "force": { + "#": 5603 + }, + "torque": 0, + "positionImpulse": { + "#": 5604 + }, + "constraintImpulse": { + "#": 5605 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5606 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5607 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5608 + }, + "bounds": { + "#": 5610 + }, + "positionPrev": { + "#": 5613 + }, + "anglePrev": 0, + "axes": { + "#": 5614 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5595 + }, + "sleepCounter": 0, + "region": { + "#": 5617 + } + }, + [ + { + "#": 5595 + } + ], + [ + { + "#": 5598 + }, + { + "#": 5599 + }, + { + "#": 5600 + }, + { + "#": 5601 + } + ], + { + "x": 450, + "y": 362.73575, + "index": 0, + "body": { + "#": 5595 + }, + "isInternal": false + }, + { + "x": 475, + "y": 362.73575, + "index": 1, + "body": { + "#": 5595 + }, + "isInternal": false + }, + { + "x": 475, + "y": 387.73575, + "index": 2, + "body": { + "#": 5595 + }, + "isInternal": false + }, + { + "x": 450, + "y": 387.73575, + "index": 3, + "body": { + "#": 5595 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5609 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5611 + }, + "max": { + "#": 5612 + } + }, + { + "x": 450, + "y": 362.73575 + }, + { + "x": 475, + "y": 387.73575 + }, + { + "x": 462.5, + "y": 372.32848 + }, + [ + { + "#": 5615 + }, + { + "#": 5616 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,7,8", + "startCol": 9, + "endCol": 9, + "startRow": 7, + "endRow": 8 + }, + { + "id": 245, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5619 + }, + "angle": 0, + "vertices": { + "#": 5620 + }, + "position": { + "#": 5625 + }, + "force": { + "#": 5626 + }, + "torque": 0, + "positionImpulse": { + "#": 5627 + }, + "constraintImpulse": { + "#": 5628 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5629 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5630 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5631 + }, + "bounds": { + "#": 5633 + }, + "positionPrev": { + "#": 5636 + }, + "anglePrev": 0, + "axes": { + "#": 5637 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5618 + }, + "sleepCounter": 0, + "region": { + "#": 5640 + } + }, + [ + { + "#": 5618 + } + ], + [ + { + "#": 5621 + }, + { + "#": 5622 + }, + { + "#": 5623 + }, + { + "#": 5624 + } + ], + { + "x": 475, + "y": 362.73575, + "index": 0, + "body": { + "#": 5618 + }, + "isInternal": false + }, + { + "x": 500, + "y": 362.73575, + "index": 1, + "body": { + "#": 5618 + }, + "isInternal": false + }, + { + "x": 500, + "y": 387.73575, + "index": 2, + "body": { + "#": 5618 + }, + "isInternal": false + }, + { + "x": 475, + "y": 387.73575, + "index": 3, + "body": { + "#": 5618 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5632 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5634 + }, + "max": { + "#": 5635 + } + }, + { + "x": 475, + "y": 362.73575 + }, + { + "x": 500, + "y": 387.73575 + }, + { + "x": 487.5, + "y": 372.32848 + }, + [ + { + "#": 5638 + }, + { + "#": 5639 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,7,8", + "startCol": 9, + "endCol": 10, + "startRow": 7, + "endRow": 8 + }, + { + "id": 246, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5642 + }, + "angle": 0, + "vertices": { + "#": 5643 + }, + "position": { + "#": 5648 + }, + "force": { + "#": 5649 + }, + "torque": 0, + "positionImpulse": { + "#": 5650 + }, + "constraintImpulse": { + "#": 5651 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5652 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5653 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5654 + }, + "bounds": { + "#": 5656 + }, + "positionPrev": { + "#": 5659 + }, + "anglePrev": 0, + "axes": { + "#": 5660 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5641 + }, + "sleepCounter": 0, + "region": { + "#": 5663 + } + }, + [ + { + "#": 5641 + } + ], + [ + { + "#": 5644 + }, + { + "#": 5645 + }, + { + "#": 5646 + }, + { + "#": 5647 + } + ], + { + "x": 500, + "y": 362.73575, + "index": 0, + "body": { + "#": 5641 + }, + "isInternal": false + }, + { + "x": 525, + "y": 362.73575, + "index": 1, + "body": { + "#": 5641 + }, + "isInternal": false + }, + { + "x": 525, + "y": 387.73575, + "index": 2, + "body": { + "#": 5641 + }, + "isInternal": false + }, + { + "x": 500, + "y": 387.73575, + "index": 3, + "body": { + "#": 5641 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5655 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5657 + }, + "max": { + "#": 5658 + } + }, + { + "x": 500, + "y": 362.73575 + }, + { + "x": 525, + "y": 387.73575 + }, + { + "x": 512.5, + "y": 372.32848 + }, + [ + { + "#": 5661 + }, + { + "#": 5662 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,7,8", + "startCol": 10, + "endCol": 10, + "startRow": 7, + "endRow": 8 + }, + { + "id": 247, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5665 + }, + "angle": 0, + "vertices": { + "#": 5666 + }, + "position": { + "#": 5671 + }, + "force": { + "#": 5672 + }, + "torque": 0, + "positionImpulse": { + "#": 5673 + }, + "constraintImpulse": { + "#": 5674 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5675 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5676 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5677 + }, + "bounds": { + "#": 5679 + }, + "positionPrev": { + "#": 5682 + }, + "anglePrev": 0, + "axes": { + "#": 5683 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5664 + }, + "sleepCounter": 0, + "region": { + "#": 5686 + } + }, + [ + { + "#": 5664 + } + ], + [ + { + "#": 5667 + }, + { + "#": 5668 + }, + { + "#": 5669 + }, + { + "#": 5670 + } + ], + { + "x": 525, + "y": 362.73575, + "index": 0, + "body": { + "#": 5664 + }, + "isInternal": false + }, + { + "x": 550, + "y": 362.73575, + "index": 1, + "body": { + "#": 5664 + }, + "isInternal": false + }, + { + "x": 550, + "y": 387.73575, + "index": 2, + "body": { + "#": 5664 + }, + "isInternal": false + }, + { + "x": 525, + "y": 387.73575, + "index": 3, + "body": { + "#": 5664 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5678 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5680 + }, + "max": { + "#": 5681 + } + }, + { + "x": 525, + "y": 362.73575 + }, + { + "x": 550, + "y": 387.73575 + }, + { + "x": 537.5, + "y": 372.32848 + }, + [ + { + "#": 5684 + }, + { + "#": 5685 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,7,8", + "startCol": 10, + "endCol": 11, + "startRow": 7, + "endRow": 8 + }, + { + "id": 248, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5688 + }, + "angle": 0, + "vertices": { + "#": 5689 + }, + "position": { + "#": 5694 + }, + "force": { + "#": 5695 + }, + "torque": 0, + "positionImpulse": { + "#": 5696 + }, + "constraintImpulse": { + "#": 5697 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5698 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5699 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5700 + }, + "bounds": { + "#": 5702 + }, + "positionPrev": { + "#": 5705 + }, + "anglePrev": 0, + "axes": { + "#": 5706 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5687 + }, + "sleepCounter": 0, + "region": { + "#": 5709 + } + }, + [ + { + "#": 5687 + } + ], + [ + { + "#": 5690 + }, + { + "#": 5691 + }, + { + "#": 5692 + }, + { + "#": 5693 + } + ], + { + "x": 550, + "y": 362.73575, + "index": 0, + "body": { + "#": 5687 + }, + "isInternal": false + }, + { + "x": 575, + "y": 362.73575, + "index": 1, + "body": { + "#": 5687 + }, + "isInternal": false + }, + { + "x": 575, + "y": 387.73575, + "index": 2, + "body": { + "#": 5687 + }, + "isInternal": false + }, + { + "x": 550, + "y": 387.73575, + "index": 3, + "body": { + "#": 5687 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5701 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5703 + }, + "max": { + "#": 5704 + } + }, + { + "x": 550, + "y": 362.73575 + }, + { + "x": 575, + "y": 387.73575 + }, + { + "x": 562.5, + "y": 372.32848 + }, + [ + { + "#": 5707 + }, + { + "#": 5708 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,11,7,8", + "startCol": 11, + "endCol": 11, + "startRow": 7, + "endRow": 8 + }, + { + "id": 249, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5711 + }, + "angle": 0, + "vertices": { + "#": 5712 + }, + "position": { + "#": 5717 + }, + "force": { + "#": 5718 + }, + "torque": 0, + "positionImpulse": { + "#": 5719 + }, + "constraintImpulse": { + "#": 5720 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5721 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5722 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5723 + }, + "bounds": { + "#": 5725 + }, + "positionPrev": { + "#": 5728 + }, + "anglePrev": 0, + "axes": { + "#": 5729 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5710 + }, + "sleepCounter": 0, + "region": { + "#": 5732 + } + }, + [ + { + "#": 5710 + } + ], + [ + { + "#": 5713 + }, + { + "#": 5714 + }, + { + "#": 5715 + }, + { + "#": 5716 + } + ], + { + "x": 575, + "y": 362.73575, + "index": 0, + "body": { + "#": 5710 + }, + "isInternal": false + }, + { + "x": 600, + "y": 362.73575, + "index": 1, + "body": { + "#": 5710 + }, + "isInternal": false + }, + { + "x": 600, + "y": 387.73575, + "index": 2, + "body": { + "#": 5710 + }, + "isInternal": false + }, + { + "x": 575, + "y": 387.73575, + "index": 3, + "body": { + "#": 5710 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5724 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5726 + }, + "max": { + "#": 5727 + } + }, + { + "x": 575, + "y": 362.73575 + }, + { + "x": 600, + "y": 387.73575 + }, + { + "x": 587.5, + "y": 372.32848 + }, + [ + { + "#": 5730 + }, + { + "#": 5731 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,7,8", + "startCol": 11, + "endCol": 12, + "startRow": 7, + "endRow": 8 + }, + { + "id": 250, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5734 + }, + "angle": 0, + "vertices": { + "#": 5735 + }, + "position": { + "#": 5740 + }, + "force": { + "#": 5741 + }, + "torque": 0, + "positionImpulse": { + "#": 5742 + }, + "constraintImpulse": { + "#": 5743 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5744 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5745 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5746 + }, + "bounds": { + "#": 5748 + }, + "positionPrev": { + "#": 5751 + }, + "anglePrev": 0, + "axes": { + "#": 5752 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5733 + }, + "sleepCounter": 0, + "region": { + "#": 5755 + } + }, + [ + { + "#": 5733 + } + ], + [ + { + "#": 5736 + }, + { + "#": 5737 + }, + { + "#": 5738 + }, + { + "#": 5739 + } + ], + { + "x": 600, + "y": 362.73575, + "index": 0, + "body": { + "#": 5733 + }, + "isInternal": false + }, + { + "x": 625, + "y": 362.73575, + "index": 1, + "body": { + "#": 5733 + }, + "isInternal": false + }, + { + "x": 625, + "y": 387.73575, + "index": 2, + "body": { + "#": 5733 + }, + "isInternal": false + }, + { + "x": 600, + "y": 387.73575, + "index": 3, + "body": { + "#": 5733 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5747 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5749 + }, + "max": { + "#": 5750 + } + }, + { + "x": 600, + "y": 362.73575 + }, + { + "x": 625, + "y": 387.73575 + }, + { + "x": 612.5, + "y": 372.32848 + }, + [ + { + "#": 5753 + }, + { + "#": 5754 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,7,8", + "startCol": 12, + "endCol": 13, + "startRow": 7, + "endRow": 8 + }, + { + "id": 251, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5757 + }, + "angle": 0, + "vertices": { + "#": 5758 + }, + "position": { + "#": 5763 + }, + "force": { + "#": 5764 + }, + "torque": 0, + "positionImpulse": { + "#": 5765 + }, + "constraintImpulse": { + "#": 5766 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5767 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5768 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5769 + }, + "bounds": { + "#": 5771 + }, + "positionPrev": { + "#": 5774 + }, + "anglePrev": 0, + "axes": { + "#": 5775 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5756 + }, + "sleepCounter": 0, + "region": { + "#": 5778 + } + }, + [ + { + "#": 5756 + } + ], + [ + { + "#": 5759 + }, + { + "#": 5760 + }, + { + "#": 5761 + }, + { + "#": 5762 + } + ], + { + "x": 625, + "y": 362.73575, + "index": 0, + "body": { + "#": 5756 + }, + "isInternal": false + }, + { + "x": 650, + "y": 362.73575, + "index": 1, + "body": { + "#": 5756 + }, + "isInternal": false + }, + { + "x": 650, + "y": 387.73575, + "index": 2, + "body": { + "#": 5756 + }, + "isInternal": false + }, + { + "x": 625, + "y": 387.73575, + "index": 3, + "body": { + "#": 5756 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5770 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5772 + }, + "max": { + "#": 5773 + } + }, + { + "x": 625, + "y": 362.73575 + }, + { + "x": 650, + "y": 387.73575 + }, + { + "x": 637.5, + "y": 372.32848 + }, + [ + { + "#": 5776 + }, + { + "#": 5777 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,13,7,8", + "startCol": 13, + "endCol": 13, + "startRow": 7, + "endRow": 8 + }, + { + "id": 252, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5780 + }, + "angle": 0, + "vertices": { + "#": 5781 + }, + "position": { + "#": 5786 + }, + "force": { + "#": 5787 + }, + "torque": 0, + "positionImpulse": { + "#": 5788 + }, + "constraintImpulse": { + "#": 5789 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5790 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5791 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5792 + }, + "bounds": { + "#": 5794 + }, + "positionPrev": { + "#": 5797 + }, + "anglePrev": 0, + "axes": { + "#": 5798 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5779 + }, + "sleepCounter": 0, + "region": { + "#": 5801 + } + }, + [ + { + "#": 5779 + } + ], + [ + { + "#": 5782 + }, + { + "#": 5783 + }, + { + "#": 5784 + }, + { + "#": 5785 + } + ], + { + "x": 650, + "y": 362.73575, + "index": 0, + "body": { + "#": 5779 + }, + "isInternal": false + }, + { + "x": 675, + "y": 362.73575, + "index": 1, + "body": { + "#": 5779 + }, + "isInternal": false + }, + { + "x": 675, + "y": 387.73575, + "index": 2, + "body": { + "#": 5779 + }, + "isInternal": false + }, + { + "x": 650, + "y": 387.73575, + "index": 3, + "body": { + "#": 5779 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5793 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5795 + }, + "max": { + "#": 5796 + } + }, + { + "x": 650, + "y": 362.73575 + }, + { + "x": 675, + "y": 387.73575 + }, + { + "x": 662.5, + "y": 372.32848 + }, + [ + { + "#": 5799 + }, + { + "#": 5800 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,7,8", + "startCol": 13, + "endCol": 14, + "startRow": 7, + "endRow": 8 + }, + { + "id": 253, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5803 + }, + "angle": 0, + "vertices": { + "#": 5804 + }, + "position": { + "#": 5809 + }, + "force": { + "#": 5810 + }, + "torque": 0, + "positionImpulse": { + "#": 5811 + }, + "constraintImpulse": { + "#": 5812 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5813 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5814 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5815 + }, + "bounds": { + "#": 5817 + }, + "positionPrev": { + "#": 5820 + }, + "anglePrev": 0, + "axes": { + "#": 5821 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5802 + }, + "sleepCounter": 0, + "region": { + "#": 5824 + } + }, + [ + { + "#": 5802 + } + ], + [ + { + "#": 5805 + }, + { + "#": 5806 + }, + { + "#": 5807 + }, + { + "#": 5808 + } + ], + { + "x": 675, + "y": 362.73575, + "index": 0, + "body": { + "#": 5802 + }, + "isInternal": false + }, + { + "x": 700, + "y": 362.73575, + "index": 1, + "body": { + "#": 5802 + }, + "isInternal": false + }, + { + "x": 700, + "y": 387.73575, + "index": 2, + "body": { + "#": 5802 + }, + "isInternal": false + }, + { + "x": 675, + "y": 387.73575, + "index": 3, + "body": { + "#": 5802 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5816 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5818 + }, + "max": { + "#": 5819 + } + }, + { + "x": 675, + "y": 362.73575 + }, + { + "x": 700, + "y": 387.73575 + }, + { + "x": 687.5, + "y": 372.32848 + }, + [ + { + "#": 5822 + }, + { + "#": 5823 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,14,7,8", + "startCol": 14, + "endCol": 14, + "startRow": 7, + "endRow": 8 + }, + { + "id": 254, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5826 + }, + "angle": 0, + "vertices": { + "#": 5827 + }, + "position": { + "#": 5832 + }, + "force": { + "#": 5833 + }, + "torque": 0, + "positionImpulse": { + "#": 5834 + }, + "constraintImpulse": { + "#": 5835 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5836 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5837 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5838 + }, + "bounds": { + "#": 5840 + }, + "positionPrev": { + "#": 5843 + }, + "anglePrev": 0, + "axes": { + "#": 5844 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5825 + }, + "sleepCounter": 0, + "region": { + "#": 5847 + } + }, + [ + { + "#": 5825 + } + ], + [ + { + "#": 5828 + }, + { + "#": 5829 + }, + { + "#": 5830 + }, + { + "#": 5831 + } + ], + { + "x": 700, + "y": 362.73575, + "index": 0, + "body": { + "#": 5825 + }, + "isInternal": false + }, + { + "x": 725, + "y": 362.73575, + "index": 1, + "body": { + "#": 5825 + }, + "isInternal": false + }, + { + "x": 725, + "y": 387.73575, + "index": 2, + "body": { + "#": 5825 + }, + "isInternal": false + }, + { + "x": 700, + "y": 387.73575, + "index": 3, + "body": { + "#": 5825 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 375.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5839 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5841 + }, + "max": { + "#": 5842 + } + }, + { + "x": 700, + "y": 362.73575 + }, + { + "x": 725, + "y": 387.73575 + }, + { + "x": 712.5, + "y": 372.32848 + }, + [ + { + "#": 5845 + }, + { + "#": 5846 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,7,8", + "startCol": 14, + "endCol": 15, + "startRow": 7, + "endRow": 8 + }, + { + "id": 255, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5849 + }, + "angle": 0, + "vertices": { + "#": 5850 + }, + "position": { + "#": 5855 + }, + "force": { + "#": 5856 + }, + "torque": 0, + "positionImpulse": { + "#": 5857 + }, + "constraintImpulse": { + "#": 5858 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5859 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5860 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5861 + }, + "bounds": { + "#": 5863 + }, + "positionPrev": { + "#": 5866 + }, + "anglePrev": 0, + "axes": { + "#": 5867 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5848 + }, + "sleepCounter": 0, + "region": { + "#": 5870 + } + }, + [ + { + "#": 5848 + } + ], + [ + { + "#": 5851 + }, + { + "#": 5852 + }, + { + "#": 5853 + }, + { + "#": 5854 + } + ], + { + "x": 100, + "y": 387.73575, + "index": 0, + "body": { + "#": 5848 + }, + "isInternal": false + }, + { + "x": 125, + "y": 387.73575, + "index": 1, + "body": { + "#": 5848 + }, + "isInternal": false + }, + { + "x": 125, + "y": 412.73575, + "index": 2, + "body": { + "#": 5848 + }, + "isInternal": false + }, + { + "x": 100, + "y": 412.73575, + "index": 3, + "body": { + "#": 5848 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5862 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5864 + }, + "max": { + "#": 5865 + } + }, + { + "x": 100, + "y": 387.73575 + }, + { + "x": 125, + "y": 412.73575 + }, + { + "x": 112.5, + "y": 397.32848 + }, + [ + { + "#": 5868 + }, + { + "#": 5869 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,8,8", + "startCol": 2, + "endCol": 2, + "startRow": 8, + "endRow": 8 + }, + { + "id": 256, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5872 + }, + "angle": 0, + "vertices": { + "#": 5873 + }, + "position": { + "#": 5878 + }, + "force": { + "#": 5879 + }, + "torque": 0, + "positionImpulse": { + "#": 5880 + }, + "constraintImpulse": { + "#": 5881 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5882 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5883 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5884 + }, + "bounds": { + "#": 5886 + }, + "positionPrev": { + "#": 5889 + }, + "anglePrev": 0, + "axes": { + "#": 5890 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5871 + }, + "sleepCounter": 0, + "region": { + "#": 5893 + } + }, + [ + { + "#": 5871 + } + ], + [ + { + "#": 5874 + }, + { + "#": 5875 + }, + { + "#": 5876 + }, + { + "#": 5877 + } + ], + { + "x": 125, + "y": 387.73575, + "index": 0, + "body": { + "#": 5871 + }, + "isInternal": false + }, + { + "x": 150, + "y": 387.73575, + "index": 1, + "body": { + "#": 5871 + }, + "isInternal": false + }, + { + "x": 150, + "y": 412.73575, + "index": 2, + "body": { + "#": 5871 + }, + "isInternal": false + }, + { + "x": 125, + "y": 412.73575, + "index": 3, + "body": { + "#": 5871 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5885 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5887 + }, + "max": { + "#": 5888 + } + }, + { + "x": 125, + "y": 387.73575 + }, + { + "x": 150, + "y": 412.73575 + }, + { + "x": 137.5, + "y": 397.32848 + }, + [ + { + "#": 5891 + }, + { + "#": 5892 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,8,8", + "startCol": 2, + "endCol": 3, + "startRow": 8, + "endRow": 8 + }, + { + "id": 257, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5895 + }, + "angle": 0, + "vertices": { + "#": 5896 + }, + "position": { + "#": 5901 + }, + "force": { + "#": 5902 + }, + "torque": 0, + "positionImpulse": { + "#": 5903 + }, + "constraintImpulse": { + "#": 5904 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5905 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5906 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5907 + }, + "bounds": { + "#": 5909 + }, + "positionPrev": { + "#": 5912 + }, + "anglePrev": 0, + "axes": { + "#": 5913 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5894 + }, + "sleepCounter": 0, + "region": { + "#": 5916 + } + }, + [ + { + "#": 5894 + } + ], + [ + { + "#": 5897 + }, + { + "#": 5898 + }, + { + "#": 5899 + }, + { + "#": 5900 + } + ], + { + "x": 150, + "y": 387.73575, + "index": 0, + "body": { + "#": 5894 + }, + "isInternal": false + }, + { + "x": 175, + "y": 387.73575, + "index": 1, + "body": { + "#": 5894 + }, + "isInternal": false + }, + { + "x": 175, + "y": 412.73575, + "index": 2, + "body": { + "#": 5894 + }, + "isInternal": false + }, + { + "x": 150, + "y": 412.73575, + "index": 3, + "body": { + "#": 5894 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5908 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5910 + }, + "max": { + "#": 5911 + } + }, + { + "x": 150, + "y": 387.73575 + }, + { + "x": 175, + "y": 412.73575 + }, + { + "x": 162.5, + "y": 397.32848 + }, + [ + { + "#": 5914 + }, + { + "#": 5915 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,3,8,8", + "startCol": 3, + "endCol": 3, + "startRow": 8, + "endRow": 8 + }, + { + "id": 258, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5918 + }, + "angle": 0, + "vertices": { + "#": 5919 + }, + "position": { + "#": 5924 + }, + "force": { + "#": 5925 + }, + "torque": 0, + "positionImpulse": { + "#": 5926 + }, + "constraintImpulse": { + "#": 5927 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5928 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5929 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5930 + }, + "bounds": { + "#": 5932 + }, + "positionPrev": { + "#": 5935 + }, + "anglePrev": 0, + "axes": { + "#": 5936 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5917 + }, + "sleepCounter": 0, + "region": { + "#": 5939 + } + }, + [ + { + "#": 5917 + } + ], + [ + { + "#": 5920 + }, + { + "#": 5921 + }, + { + "#": 5922 + }, + { + "#": 5923 + } + ], + { + "x": 175, + "y": 387.73575, + "index": 0, + "body": { + "#": 5917 + }, + "isInternal": false + }, + { + "x": 200, + "y": 387.73575, + "index": 1, + "body": { + "#": 5917 + }, + "isInternal": false + }, + { + "x": 200, + "y": 412.73575, + "index": 2, + "body": { + "#": 5917 + }, + "isInternal": false + }, + { + "x": 175, + "y": 412.73575, + "index": 3, + "body": { + "#": 5917 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5931 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5933 + }, + "max": { + "#": 5934 + } + }, + { + "x": 175, + "y": 387.73575 + }, + { + "x": 200, + "y": 412.73575 + }, + { + "x": 187.5, + "y": 397.32848 + }, + [ + { + "#": 5937 + }, + { + "#": 5938 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,8,8", + "startCol": 3, + "endCol": 4, + "startRow": 8, + "endRow": 8 + }, + { + "id": 259, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5941 + }, + "angle": 0, + "vertices": { + "#": 5942 + }, + "position": { + "#": 5947 + }, + "force": { + "#": 5948 + }, + "torque": 0, + "positionImpulse": { + "#": 5949 + }, + "constraintImpulse": { + "#": 5950 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5951 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5952 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5953 + }, + "bounds": { + "#": 5955 + }, + "positionPrev": { + "#": 5958 + }, + "anglePrev": 0, + "axes": { + "#": 5959 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5940 + }, + "sleepCounter": 0, + "region": { + "#": 5962 + } + }, + [ + { + "#": 5940 + } + ], + [ + { + "#": 5943 + }, + { + "#": 5944 + }, + { + "#": 5945 + }, + { + "#": 5946 + } + ], + { + "x": 200, + "y": 387.73575, + "index": 0, + "body": { + "#": 5940 + }, + "isInternal": false + }, + { + "x": 225, + "y": 387.73575, + "index": 1, + "body": { + "#": 5940 + }, + "isInternal": false + }, + { + "x": 225, + "y": 412.73575, + "index": 2, + "body": { + "#": 5940 + }, + "isInternal": false + }, + { + "x": 200, + "y": 412.73575, + "index": 3, + "body": { + "#": 5940 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5954 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5956 + }, + "max": { + "#": 5957 + } + }, + { + "x": 200, + "y": 387.73575 + }, + { + "x": 225, + "y": 412.73575 + }, + { + "x": 212.5, + "y": 397.32848 + }, + [ + { + "#": 5960 + }, + { + "#": 5961 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,8,8", + "startCol": 4, + "endCol": 4, + "startRow": 8, + "endRow": 8 + }, + { + "id": 260, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5964 + }, + "angle": 0, + "vertices": { + "#": 5965 + }, + "position": { + "#": 5970 + }, + "force": { + "#": 5971 + }, + "torque": 0, + "positionImpulse": { + "#": 5972 + }, + "constraintImpulse": { + "#": 5973 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5974 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5975 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5976 + }, + "bounds": { + "#": 5978 + }, + "positionPrev": { + "#": 5981 + }, + "anglePrev": 0, + "axes": { + "#": 5982 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5963 + }, + "sleepCounter": 0, + "region": { + "#": 5985 + } + }, + [ + { + "#": 5963 + } + ], + [ + { + "#": 5966 + }, + { + "#": 5967 + }, + { + "#": 5968 + }, + { + "#": 5969 + } + ], + { + "x": 225, + "y": 387.73575, + "index": 0, + "body": { + "#": 5963 + }, + "isInternal": false + }, + { + "x": 250, + "y": 387.73575, + "index": 1, + "body": { + "#": 5963 + }, + "isInternal": false + }, + { + "x": 250, + "y": 412.73575, + "index": 2, + "body": { + "#": 5963 + }, + "isInternal": false + }, + { + "x": 225, + "y": 412.73575, + "index": 3, + "body": { + "#": 5963 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 5977 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 5979 + }, + "max": { + "#": 5980 + } + }, + { + "x": 225, + "y": 387.73575 + }, + { + "x": 250, + "y": 412.73575 + }, + { + "x": 237.5, + "y": 397.32848 + }, + [ + { + "#": 5983 + }, + { + "#": 5984 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,8,8", + "startCol": 4, + "endCol": 5, + "startRow": 8, + "endRow": 8 + }, + { + "id": 261, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 5987 + }, + "angle": 0, + "vertices": { + "#": 5988 + }, + "position": { + "#": 5993 + }, + "force": { + "#": 5994 + }, + "torque": 0, + "positionImpulse": { + "#": 5995 + }, + "constraintImpulse": { + "#": 5996 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 5997 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 5998 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 5999 + }, + "bounds": { + "#": 6001 + }, + "positionPrev": { + "#": 6004 + }, + "anglePrev": 0, + "axes": { + "#": 6005 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 5986 + }, + "sleepCounter": 0, + "region": { + "#": 6008 + } + }, + [ + { + "#": 5986 + } + ], + [ + { + "#": 5989 + }, + { + "#": 5990 + }, + { + "#": 5991 + }, + { + "#": 5992 + } + ], + { + "x": 250, + "y": 387.73575, + "index": 0, + "body": { + "#": 5986 + }, + "isInternal": false + }, + { + "x": 275, + "y": 387.73575, + "index": 1, + "body": { + "#": 5986 + }, + "isInternal": false + }, + { + "x": 275, + "y": 412.73575, + "index": 2, + "body": { + "#": 5986 + }, + "isInternal": false + }, + { + "x": 250, + "y": 412.73575, + "index": 3, + "body": { + "#": 5986 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6000 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6002 + }, + "max": { + "#": 6003 + } + }, + { + "x": 250, + "y": 387.73575 + }, + { + "x": 275, + "y": 412.73575 + }, + { + "x": 262.5, + "y": 397.32848 + }, + [ + { + "#": 6006 + }, + { + "#": 6007 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,8,8", + "startCol": 5, + "endCol": 5, + "startRow": 8, + "endRow": 8 + }, + { + "id": 262, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6010 + }, + "angle": 0, + "vertices": { + "#": 6011 + }, + "position": { + "#": 6016 + }, + "force": { + "#": 6017 + }, + "torque": 0, + "positionImpulse": { + "#": 6018 + }, + "constraintImpulse": { + "#": 6019 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6020 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6021 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6022 + }, + "bounds": { + "#": 6024 + }, + "positionPrev": { + "#": 6027 + }, + "anglePrev": 0, + "axes": { + "#": 6028 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6009 + }, + "sleepCounter": 0, + "region": { + "#": 6031 + } + }, + [ + { + "#": 6009 + } + ], + [ + { + "#": 6012 + }, + { + "#": 6013 + }, + { + "#": 6014 + }, + { + "#": 6015 + } + ], + { + "x": 275, + "y": 387.73575, + "index": 0, + "body": { + "#": 6009 + }, + "isInternal": false + }, + { + "x": 300, + "y": 387.73575, + "index": 1, + "body": { + "#": 6009 + }, + "isInternal": false + }, + { + "x": 300, + "y": 412.73575, + "index": 2, + "body": { + "#": 6009 + }, + "isInternal": false + }, + { + "x": 275, + "y": 412.73575, + "index": 3, + "body": { + "#": 6009 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6023 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6025 + }, + "max": { + "#": 6026 + } + }, + { + "x": 275, + "y": 387.73575 + }, + { + "x": 300, + "y": 412.73575 + }, + { + "x": 287.5, + "y": 397.32848 + }, + [ + { + "#": 6029 + }, + { + "#": 6030 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,8,8", + "startCol": 5, + "endCol": 6, + "startRow": 8, + "endRow": 8 + }, + { + "id": 263, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6033 + }, + "angle": 0, + "vertices": { + "#": 6034 + }, + "position": { + "#": 6039 + }, + "force": { + "#": 6040 + }, + "torque": 0, + "positionImpulse": { + "#": 6041 + }, + "constraintImpulse": { + "#": 6042 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6043 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6044 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6045 + }, + "bounds": { + "#": 6047 + }, + "positionPrev": { + "#": 6050 + }, + "anglePrev": 0, + "axes": { + "#": 6051 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6032 + }, + "sleepCounter": 0, + "region": { + "#": 6054 + } + }, + [ + { + "#": 6032 + } + ], + [ + { + "#": 6035 + }, + { + "#": 6036 + }, + { + "#": 6037 + }, + { + "#": 6038 + } + ], + { + "x": 300, + "y": 387.73575, + "index": 0, + "body": { + "#": 6032 + }, + "isInternal": false + }, + { + "x": 325, + "y": 387.73575, + "index": 1, + "body": { + "#": 6032 + }, + "isInternal": false + }, + { + "x": 325, + "y": 412.73575, + "index": 2, + "body": { + "#": 6032 + }, + "isInternal": false + }, + { + "x": 300, + "y": 412.73575, + "index": 3, + "body": { + "#": 6032 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6046 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6048 + }, + "max": { + "#": 6049 + } + }, + { + "x": 300, + "y": 387.73575 + }, + { + "x": 325, + "y": 412.73575 + }, + { + "x": 312.5, + "y": 397.32848 + }, + [ + { + "#": 6052 + }, + { + "#": 6053 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,8,8", + "startCol": 6, + "endCol": 6, + "startRow": 8, + "endRow": 8 + }, + { + "id": 264, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6056 + }, + "angle": 0, + "vertices": { + "#": 6057 + }, + "position": { + "#": 6062 + }, + "force": { + "#": 6063 + }, + "torque": 0, + "positionImpulse": { + "#": 6064 + }, + "constraintImpulse": { + "#": 6065 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6066 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6067 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6068 + }, + "bounds": { + "#": 6070 + }, + "positionPrev": { + "#": 6073 + }, + "anglePrev": 0, + "axes": { + "#": 6074 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6055 + }, + "sleepCounter": 0, + "region": { + "#": 6077 + } + }, + [ + { + "#": 6055 + } + ], + [ + { + "#": 6058 + }, + { + "#": 6059 + }, + { + "#": 6060 + }, + { + "#": 6061 + } + ], + { + "x": 325, + "y": 387.73575, + "index": 0, + "body": { + "#": 6055 + }, + "isInternal": false + }, + { + "x": 350, + "y": 387.73575, + "index": 1, + "body": { + "#": 6055 + }, + "isInternal": false + }, + { + "x": 350, + "y": 412.73575, + "index": 2, + "body": { + "#": 6055 + }, + "isInternal": false + }, + { + "x": 325, + "y": 412.73575, + "index": 3, + "body": { + "#": 6055 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6069 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6071 + }, + "max": { + "#": 6072 + } + }, + { + "x": 325, + "y": 387.73575 + }, + { + "x": 350, + "y": 412.73575 + }, + { + "x": 337.5, + "y": 397.32848 + }, + [ + { + "#": 6075 + }, + { + "#": 6076 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,8,8", + "startCol": 6, + "endCol": 7, + "startRow": 8, + "endRow": 8 + }, + { + "id": 265, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6079 + }, + "angle": 0, + "vertices": { + "#": 6080 + }, + "position": { + "#": 6085 + }, + "force": { + "#": 6086 + }, + "torque": 0, + "positionImpulse": { + "#": 6087 + }, + "constraintImpulse": { + "#": 6088 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6089 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6090 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6091 + }, + "bounds": { + "#": 6093 + }, + "positionPrev": { + "#": 6096 + }, + "anglePrev": 0, + "axes": { + "#": 6097 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6078 + }, + "sleepCounter": 0, + "region": { + "#": 6100 + } + }, + [ + { + "#": 6078 + } + ], + [ + { + "#": 6081 + }, + { + "#": 6082 + }, + { + "#": 6083 + }, + { + "#": 6084 + } + ], + { + "x": 350, + "y": 387.73575, + "index": 0, + "body": { + "#": 6078 + }, + "isInternal": false + }, + { + "x": 375, + "y": 387.73575, + "index": 1, + "body": { + "#": 6078 + }, + "isInternal": false + }, + { + "x": 375, + "y": 412.73575, + "index": 2, + "body": { + "#": 6078 + }, + "isInternal": false + }, + { + "x": 350, + "y": 412.73575, + "index": 3, + "body": { + "#": 6078 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6092 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6094 + }, + "max": { + "#": 6095 + } + }, + { + "x": 350, + "y": 387.73575 + }, + { + "x": 375, + "y": 412.73575 + }, + { + "x": 362.5, + "y": 397.32848 + }, + [ + { + "#": 6098 + }, + { + "#": 6099 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,8,8", + "startCol": 7, + "endCol": 7, + "startRow": 8, + "endRow": 8 + }, + { + "id": 266, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6102 + }, + "angle": 0, + "vertices": { + "#": 6103 + }, + "position": { + "#": 6108 + }, + "force": { + "#": 6109 + }, + "torque": 0, + "positionImpulse": { + "#": 6110 + }, + "constraintImpulse": { + "#": 6111 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6112 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6113 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6114 + }, + "bounds": { + "#": 6116 + }, + "positionPrev": { + "#": 6119 + }, + "anglePrev": 0, + "axes": { + "#": 6120 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6101 + }, + "sleepCounter": 0, + "region": { + "#": 6123 + } + }, + [ + { + "#": 6101 + } + ], + [ + { + "#": 6104 + }, + { + "#": 6105 + }, + { + "#": 6106 + }, + { + "#": 6107 + } + ], + { + "x": 375, + "y": 387.73575, + "index": 0, + "body": { + "#": 6101 + }, + "isInternal": false + }, + { + "x": 400, + "y": 387.73575, + "index": 1, + "body": { + "#": 6101 + }, + "isInternal": false + }, + { + "x": 400, + "y": 412.73575, + "index": 2, + "body": { + "#": 6101 + }, + "isInternal": false + }, + { + "x": 375, + "y": 412.73575, + "index": 3, + "body": { + "#": 6101 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6115 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6117 + }, + "max": { + "#": 6118 + } + }, + { + "x": 375, + "y": 387.73575 + }, + { + "x": 400, + "y": 412.73575 + }, + { + "x": 387.5, + "y": 397.32848 + }, + [ + { + "#": 6121 + }, + { + "#": 6122 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,8,8", + "startCol": 7, + "endCol": 8, + "startRow": 8, + "endRow": 8 + }, + { + "id": 267, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6125 + }, + "angle": 0, + "vertices": { + "#": 6126 + }, + "position": { + "#": 6131 + }, + "force": { + "#": 6132 + }, + "torque": 0, + "positionImpulse": { + "#": 6133 + }, + "constraintImpulse": { + "#": 6134 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6135 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6136 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6137 + }, + "bounds": { + "#": 6139 + }, + "positionPrev": { + "#": 6142 + }, + "anglePrev": 0, + "axes": { + "#": 6143 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6124 + }, + "sleepCounter": 0, + "region": { + "#": 6146 + } + }, + [ + { + "#": 6124 + } + ], + [ + { + "#": 6127 + }, + { + "#": 6128 + }, + { + "#": 6129 + }, + { + "#": 6130 + } + ], + { + "x": 400, + "y": 387.73575, + "index": 0, + "body": { + "#": 6124 + }, + "isInternal": false + }, + { + "x": 425, + "y": 387.73575, + "index": 1, + "body": { + "#": 6124 + }, + "isInternal": false + }, + { + "x": 425, + "y": 412.73575, + "index": 2, + "body": { + "#": 6124 + }, + "isInternal": false + }, + { + "x": 400, + "y": 412.73575, + "index": 3, + "body": { + "#": 6124 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6138 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6140 + }, + "max": { + "#": 6141 + } + }, + { + "x": 400, + "y": 387.73575 + }, + { + "x": 425, + "y": 412.73575 + }, + { + "x": 412.5, + "y": 397.32848 + }, + [ + { + "#": 6144 + }, + { + "#": 6145 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,8,8,8", + "startCol": 8, + "endCol": 8, + "startRow": 8, + "endRow": 8 + }, + { + "id": 268, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6148 + }, + "angle": 0, + "vertices": { + "#": 6149 + }, + "position": { + "#": 6154 + }, + "force": { + "#": 6155 + }, + "torque": 0, + "positionImpulse": { + "#": 6156 + }, + "constraintImpulse": { + "#": 6157 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6158 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6159 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6160 + }, + "bounds": { + "#": 6162 + }, + "positionPrev": { + "#": 6165 + }, + "anglePrev": 0, + "axes": { + "#": 6166 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6147 + }, + "sleepCounter": 0, + "region": { + "#": 6169 + } + }, + [ + { + "#": 6147 + } + ], + [ + { + "#": 6150 + }, + { + "#": 6151 + }, + { + "#": 6152 + }, + { + "#": 6153 + } + ], + { + "x": 425, + "y": 387.73575, + "index": 0, + "body": { + "#": 6147 + }, + "isInternal": false + }, + { + "x": 450, + "y": 387.73575, + "index": 1, + "body": { + "#": 6147 + }, + "isInternal": false + }, + { + "x": 450, + "y": 412.73575, + "index": 2, + "body": { + "#": 6147 + }, + "isInternal": false + }, + { + "x": 425, + "y": 412.73575, + "index": 3, + "body": { + "#": 6147 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6161 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6163 + }, + "max": { + "#": 6164 + } + }, + { + "x": 425, + "y": 387.73575 + }, + { + "x": 450, + "y": 412.73575 + }, + { + "x": 437.5, + "y": 397.32848 + }, + [ + { + "#": 6167 + }, + { + "#": 6168 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,8,8", + "startCol": 8, + "endCol": 9, + "startRow": 8, + "endRow": 8 + }, + { + "id": 269, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6171 + }, + "angle": 0, + "vertices": { + "#": 6172 + }, + "position": { + "#": 6177 + }, + "force": { + "#": 6178 + }, + "torque": 0, + "positionImpulse": { + "#": 6179 + }, + "constraintImpulse": { + "#": 6180 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6181 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6182 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6183 + }, + "bounds": { + "#": 6185 + }, + "positionPrev": { + "#": 6188 + }, + "anglePrev": 0, + "axes": { + "#": 6189 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6170 + }, + "sleepCounter": 0, + "region": { + "#": 6192 + } + }, + [ + { + "#": 6170 + } + ], + [ + { + "#": 6173 + }, + { + "#": 6174 + }, + { + "#": 6175 + }, + { + "#": 6176 + } + ], + { + "x": 450, + "y": 387.73575, + "index": 0, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 475, + "y": 387.73575, + "index": 1, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 475, + "y": 412.73575, + "index": 2, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 450, + "y": 412.73575, + "index": 3, + "body": { + "#": 6170 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6184 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6186 + }, + "max": { + "#": 6187 + } + }, + { + "x": 450, + "y": 387.73575 + }, + { + "x": 475, + "y": 412.73575 + }, + { + "x": 462.5, + "y": 397.32848 + }, + [ + { + "#": 6190 + }, + { + "#": 6191 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,8,8", + "startCol": 9, + "endCol": 9, + "startRow": 8, + "endRow": 8 + }, + { + "id": 270, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6194 + }, + "angle": 0, + "vertices": { + "#": 6195 + }, + "position": { + "#": 6200 + }, + "force": { + "#": 6201 + }, + "torque": 0, + "positionImpulse": { + "#": 6202 + }, + "constraintImpulse": { + "#": 6203 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6204 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6205 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6206 + }, + "bounds": { + "#": 6208 + }, + "positionPrev": { + "#": 6211 + }, + "anglePrev": 0, + "axes": { + "#": 6212 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6193 + }, + "sleepCounter": 0, + "region": { + "#": 6215 + } + }, + [ + { + "#": 6193 + } + ], + [ + { + "#": 6196 + }, + { + "#": 6197 + }, + { + "#": 6198 + }, + { + "#": 6199 + } + ], + { + "x": 475, + "y": 387.73575, + "index": 0, + "body": { + "#": 6193 + }, + "isInternal": false + }, + { + "x": 500, + "y": 387.73575, + "index": 1, + "body": { + "#": 6193 + }, + "isInternal": false + }, + { + "x": 500, + "y": 412.73575, + "index": 2, + "body": { + "#": 6193 + }, + "isInternal": false + }, + { + "x": 475, + "y": 412.73575, + "index": 3, + "body": { + "#": 6193 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6207 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6209 + }, + "max": { + "#": 6210 + } + }, + { + "x": 475, + "y": 387.73575 + }, + { + "x": 500, + "y": 412.73575 + }, + { + "x": 487.5, + "y": 397.32848 + }, + [ + { + "#": 6213 + }, + { + "#": 6214 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,8,8", + "startCol": 9, + "endCol": 10, + "startRow": 8, + "endRow": 8 + }, + { + "id": 271, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6217 + }, + "angle": 0, + "vertices": { + "#": 6218 + }, + "position": { + "#": 6223 + }, + "force": { + "#": 6224 + }, + "torque": 0, + "positionImpulse": { + "#": 6225 + }, + "constraintImpulse": { + "#": 6226 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6227 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6228 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6229 + }, + "bounds": { + "#": 6231 + }, + "positionPrev": { + "#": 6234 + }, + "anglePrev": 0, + "axes": { + "#": 6235 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6216 + }, + "sleepCounter": 0, + "region": { + "#": 6238 + } + }, + [ + { + "#": 6216 + } + ], + [ + { + "#": 6219 + }, + { + "#": 6220 + }, + { + "#": 6221 + }, + { + "#": 6222 + } + ], + { + "x": 500, + "y": 387.73575, + "index": 0, + "body": { + "#": 6216 + }, + "isInternal": false + }, + { + "x": 525, + "y": 387.73575, + "index": 1, + "body": { + "#": 6216 + }, + "isInternal": false + }, + { + "x": 525, + "y": 412.73575, + "index": 2, + "body": { + "#": 6216 + }, + "isInternal": false + }, + { + "x": 500, + "y": 412.73575, + "index": 3, + "body": { + "#": 6216 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6230 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6232 + }, + "max": { + "#": 6233 + } + }, + { + "x": 500, + "y": 387.73575 + }, + { + "x": 525, + "y": 412.73575 + }, + { + "x": 512.5, + "y": 397.32848 + }, + [ + { + "#": 6236 + }, + { + "#": 6237 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,8,8", + "startCol": 10, + "endCol": 10, + "startRow": 8, + "endRow": 8 + }, + { + "id": 272, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6240 + }, + "angle": 0, + "vertices": { + "#": 6241 + }, + "position": { + "#": 6246 + }, + "force": { + "#": 6247 + }, + "torque": 0, + "positionImpulse": { + "#": 6248 + }, + "constraintImpulse": { + "#": 6249 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6250 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6251 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6252 + }, + "bounds": { + "#": 6254 + }, + "positionPrev": { + "#": 6257 + }, + "anglePrev": 0, + "axes": { + "#": 6258 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6239 + }, + "sleepCounter": 0, + "region": { + "#": 6261 + } + }, + [ + { + "#": 6239 + } + ], + [ + { + "#": 6242 + }, + { + "#": 6243 + }, + { + "#": 6244 + }, + { + "#": 6245 + } + ], + { + "x": 525, + "y": 387.73575, + "index": 0, + "body": { + "#": 6239 + }, + "isInternal": false + }, + { + "x": 550, + "y": 387.73575, + "index": 1, + "body": { + "#": 6239 + }, + "isInternal": false + }, + { + "x": 550, + "y": 412.73575, + "index": 2, + "body": { + "#": 6239 + }, + "isInternal": false + }, + { + "x": 525, + "y": 412.73575, + "index": 3, + "body": { + "#": 6239 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6253 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6255 + }, + "max": { + "#": 6256 + } + }, + { + "x": 525, + "y": 387.73575 + }, + { + "x": 550, + "y": 412.73575 + }, + { + "x": 537.5, + "y": 397.32848 + }, + [ + { + "#": 6259 + }, + { + "#": 6260 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,8,8", + "startCol": 10, + "endCol": 11, + "startRow": 8, + "endRow": 8 + }, + { + "id": 273, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6263 + }, + "angle": 0, + "vertices": { + "#": 6264 + }, + "position": { + "#": 6269 + }, + "force": { + "#": 6270 + }, + "torque": 0, + "positionImpulse": { + "#": 6271 + }, + "constraintImpulse": { + "#": 6272 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6273 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6274 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6275 + }, + "bounds": { + "#": 6277 + }, + "positionPrev": { + "#": 6280 + }, + "anglePrev": 0, + "axes": { + "#": 6281 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6262 + }, + "sleepCounter": 0, + "region": { + "#": 6284 + } + }, + [ + { + "#": 6262 + } + ], + [ + { + "#": 6265 + }, + { + "#": 6266 + }, + { + "#": 6267 + }, + { + "#": 6268 + } + ], + { + "x": 550, + "y": 387.73575, + "index": 0, + "body": { + "#": 6262 + }, + "isInternal": false + }, + { + "x": 575, + "y": 387.73575, + "index": 1, + "body": { + "#": 6262 + }, + "isInternal": false + }, + { + "x": 575, + "y": 412.73575, + "index": 2, + "body": { + "#": 6262 + }, + "isInternal": false + }, + { + "x": 550, + "y": 412.73575, + "index": 3, + "body": { + "#": 6262 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6276 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6278 + }, + "max": { + "#": 6279 + } + }, + { + "x": 550, + "y": 387.73575 + }, + { + "x": 575, + "y": 412.73575 + }, + { + "x": 562.5, + "y": 397.32848 + }, + [ + { + "#": 6282 + }, + { + "#": 6283 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,11,8,8", + "startCol": 11, + "endCol": 11, + "startRow": 8, + "endRow": 8 + }, + { + "id": 274, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6286 + }, + "angle": 0, + "vertices": { + "#": 6287 + }, + "position": { + "#": 6292 + }, + "force": { + "#": 6293 + }, + "torque": 0, + "positionImpulse": { + "#": 6294 + }, + "constraintImpulse": { + "#": 6295 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6296 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6297 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6298 + }, + "bounds": { + "#": 6300 + }, + "positionPrev": { + "#": 6303 + }, + "anglePrev": 0, + "axes": { + "#": 6304 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6285 + }, + "sleepCounter": 0, + "region": { + "#": 6307 + } + }, + [ + { + "#": 6285 + } + ], + [ + { + "#": 6288 + }, + { + "#": 6289 + }, + { + "#": 6290 + }, + { + "#": 6291 + } + ], + { + "x": 575, + "y": 387.73575, + "index": 0, + "body": { + "#": 6285 + }, + "isInternal": false + }, + { + "x": 600, + "y": 387.73575, + "index": 1, + "body": { + "#": 6285 + }, + "isInternal": false + }, + { + "x": 600, + "y": 412.73575, + "index": 2, + "body": { + "#": 6285 + }, + "isInternal": false + }, + { + "x": 575, + "y": 412.73575, + "index": 3, + "body": { + "#": 6285 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6299 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6301 + }, + "max": { + "#": 6302 + } + }, + { + "x": 575, + "y": 387.73575 + }, + { + "x": 600, + "y": 412.73575 + }, + { + "x": 587.5, + "y": 397.32848 + }, + [ + { + "#": 6305 + }, + { + "#": 6306 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,8,8", + "startCol": 11, + "endCol": 12, + "startRow": 8, + "endRow": 8 + }, + { + "id": 275, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6309 + }, + "angle": 0, + "vertices": { + "#": 6310 + }, + "position": { + "#": 6315 + }, + "force": { + "#": 6316 + }, + "torque": 0, + "positionImpulse": { + "#": 6317 + }, + "constraintImpulse": { + "#": 6318 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6319 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6320 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6321 + }, + "bounds": { + "#": 6323 + }, + "positionPrev": { + "#": 6326 + }, + "anglePrev": 0, + "axes": { + "#": 6327 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6308 + }, + "sleepCounter": 0, + "region": { + "#": 6330 + } + }, + [ + { + "#": 6308 + } + ], + [ + { + "#": 6311 + }, + { + "#": 6312 + }, + { + "#": 6313 + }, + { + "#": 6314 + } + ], + { + "x": 600, + "y": 387.73575, + "index": 0, + "body": { + "#": 6308 + }, + "isInternal": false + }, + { + "x": 625, + "y": 387.73575, + "index": 1, + "body": { + "#": 6308 + }, + "isInternal": false + }, + { + "x": 625, + "y": 412.73575, + "index": 2, + "body": { + "#": 6308 + }, + "isInternal": false + }, + { + "x": 600, + "y": 412.73575, + "index": 3, + "body": { + "#": 6308 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6322 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6324 + }, + "max": { + "#": 6325 + } + }, + { + "x": 600, + "y": 387.73575 + }, + { + "x": 625, + "y": 412.73575 + }, + { + "x": 612.5, + "y": 397.32848 + }, + [ + { + "#": 6328 + }, + { + "#": 6329 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,8,8", + "startCol": 12, + "endCol": 13, + "startRow": 8, + "endRow": 8 + }, + { + "id": 276, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6332 + }, + "angle": 0, + "vertices": { + "#": 6333 + }, + "position": { + "#": 6338 + }, + "force": { + "#": 6339 + }, + "torque": 0, + "positionImpulse": { + "#": 6340 + }, + "constraintImpulse": { + "#": 6341 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6342 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6343 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6344 + }, + "bounds": { + "#": 6346 + }, + "positionPrev": { + "#": 6349 + }, + "anglePrev": 0, + "axes": { + "#": 6350 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6331 + }, + "sleepCounter": 0, + "region": { + "#": 6353 + } + }, + [ + { + "#": 6331 + } + ], + [ + { + "#": 6334 + }, + { + "#": 6335 + }, + { + "#": 6336 + }, + { + "#": 6337 + } + ], + { + "x": 625, + "y": 387.73575, + "index": 0, + "body": { + "#": 6331 + }, + "isInternal": false + }, + { + "x": 650, + "y": 387.73575, + "index": 1, + "body": { + "#": 6331 + }, + "isInternal": false + }, + { + "x": 650, + "y": 412.73575, + "index": 2, + "body": { + "#": 6331 + }, + "isInternal": false + }, + { + "x": 625, + "y": 412.73575, + "index": 3, + "body": { + "#": 6331 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6345 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6347 + }, + "max": { + "#": 6348 + } + }, + { + "x": 625, + "y": 387.73575 + }, + { + "x": 650, + "y": 412.73575 + }, + { + "x": 637.5, + "y": 397.32848 + }, + [ + { + "#": 6351 + }, + { + "#": 6352 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,13,8,8", + "startCol": 13, + "endCol": 13, + "startRow": 8, + "endRow": 8 + }, + { + "id": 277, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6355 + }, + "angle": 0, + "vertices": { + "#": 6356 + }, + "position": { + "#": 6361 + }, + "force": { + "#": 6362 + }, + "torque": 0, + "positionImpulse": { + "#": 6363 + }, + "constraintImpulse": { + "#": 6364 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6365 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6366 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6367 + }, + "bounds": { + "#": 6369 + }, + "positionPrev": { + "#": 6372 + }, + "anglePrev": 0, + "axes": { + "#": 6373 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6354 + }, + "sleepCounter": 0, + "region": { + "#": 6376 + } + }, + [ + { + "#": 6354 + } + ], + [ + { + "#": 6357 + }, + { + "#": 6358 + }, + { + "#": 6359 + }, + { + "#": 6360 + } + ], + { + "x": 650, + "y": 387.73575, + "index": 0, + "body": { + "#": 6354 + }, + "isInternal": false + }, + { + "x": 675, + "y": 387.73575, + "index": 1, + "body": { + "#": 6354 + }, + "isInternal": false + }, + { + "x": 675, + "y": 412.73575, + "index": 2, + "body": { + "#": 6354 + }, + "isInternal": false + }, + { + "x": 650, + "y": 412.73575, + "index": 3, + "body": { + "#": 6354 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6368 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6370 + }, + "max": { + "#": 6371 + } + }, + { + "x": 650, + "y": 387.73575 + }, + { + "x": 675, + "y": 412.73575 + }, + { + "x": 662.5, + "y": 397.32848 + }, + [ + { + "#": 6374 + }, + { + "#": 6375 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,8,8", + "startCol": 13, + "endCol": 14, + "startRow": 8, + "endRow": 8 + }, + { + "id": 278, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6378 + }, + "angle": 0, + "vertices": { + "#": 6379 + }, + "position": { + "#": 6384 + }, + "force": { + "#": 6385 + }, + "torque": 0, + "positionImpulse": { + "#": 6386 + }, + "constraintImpulse": { + "#": 6387 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6388 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6389 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6390 + }, + "bounds": { + "#": 6392 + }, + "positionPrev": { + "#": 6395 + }, + "anglePrev": 0, + "axes": { + "#": 6396 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6377 + }, + "sleepCounter": 0, + "region": { + "#": 6399 + } + }, + [ + { + "#": 6377 + } + ], + [ + { + "#": 6380 + }, + { + "#": 6381 + }, + { + "#": 6382 + }, + { + "#": 6383 + } + ], + { + "x": 675, + "y": 387.73575, + "index": 0, + "body": { + "#": 6377 + }, + "isInternal": false + }, + { + "x": 700, + "y": 387.73575, + "index": 1, + "body": { + "#": 6377 + }, + "isInternal": false + }, + { + "x": 700, + "y": 412.73575, + "index": 2, + "body": { + "#": 6377 + }, + "isInternal": false + }, + { + "x": 675, + "y": 412.73575, + "index": 3, + "body": { + "#": 6377 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6391 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6393 + }, + "max": { + "#": 6394 + } + }, + { + "x": 675, + "y": 387.73575 + }, + { + "x": 700, + "y": 412.73575 + }, + { + "x": 687.5, + "y": 397.32848 + }, + [ + { + "#": 6397 + }, + { + "#": 6398 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,14,8,8", + "startCol": 14, + "endCol": 14, + "startRow": 8, + "endRow": 8 + }, + { + "id": 279, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6401 + }, + "angle": 0, + "vertices": { + "#": 6402 + }, + "position": { + "#": 6407 + }, + "force": { + "#": 6408 + }, + "torque": 0, + "positionImpulse": { + "#": 6409 + }, + "constraintImpulse": { + "#": 6410 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6411 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6412 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6413 + }, + "bounds": { + "#": 6415 + }, + "positionPrev": { + "#": 6418 + }, + "anglePrev": 0, + "axes": { + "#": 6419 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6400 + }, + "sleepCounter": 0, + "region": { + "#": 6422 + } + }, + [ + { + "#": 6400 + } + ], + [ + { + "#": 6403 + }, + { + "#": 6404 + }, + { + "#": 6405 + }, + { + "#": 6406 + } + ], + { + "x": 700, + "y": 387.73575, + "index": 0, + "body": { + "#": 6400 + }, + "isInternal": false + }, + { + "x": 725, + "y": 387.73575, + "index": 1, + "body": { + "#": 6400 + }, + "isInternal": false + }, + { + "x": 725, + "y": 412.73575, + "index": 2, + "body": { + "#": 6400 + }, + "isInternal": false + }, + { + "x": 700, + "y": 412.73575, + "index": 3, + "body": { + "#": 6400 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 400.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6414 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6416 + }, + "max": { + "#": 6417 + } + }, + { + "x": 700, + "y": 387.73575 + }, + { + "x": 725, + "y": 412.73575 + }, + { + "x": 712.5, + "y": 397.32848 + }, + [ + { + "#": 6420 + }, + { + "#": 6421 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,8,8", + "startCol": 14, + "endCol": 15, + "startRow": 8, + "endRow": 8 + }, + { + "id": 280, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6424 + }, + "angle": 0, + "vertices": { + "#": 6425 + }, + "position": { + "#": 6430 + }, + "force": { + "#": 6431 + }, + "torque": 0, + "positionImpulse": { + "#": 6432 + }, + "constraintImpulse": { + "#": 6433 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6434 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6435 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6436 + }, + "bounds": { + "#": 6438 + }, + "positionPrev": { + "#": 6441 + }, + "anglePrev": 0, + "axes": { + "#": 6442 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6423 + }, + "sleepCounter": 0, + "region": { + "#": 6445 + } + }, + [ + { + "#": 6423 + } + ], + [ + { + "#": 6426 + }, + { + "#": 6427 + }, + { + "#": 6428 + }, + { + "#": 6429 + } + ], + { + "x": 100, + "y": 412.73575, + "index": 0, + "body": { + "#": 6423 + }, + "isInternal": false + }, + { + "x": 125, + "y": 412.73575, + "index": 1, + "body": { + "#": 6423 + }, + "isInternal": false + }, + { + "x": 125, + "y": 437.73575, + "index": 2, + "body": { + "#": 6423 + }, + "isInternal": false + }, + { + "x": 100, + "y": 437.73575, + "index": 3, + "body": { + "#": 6423 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6437 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6439 + }, + "max": { + "#": 6440 + } + }, + { + "x": 100, + "y": 412.73575 + }, + { + "x": 125, + "y": 437.73575 + }, + { + "x": 112.5, + "y": 422.32848 + }, + [ + { + "#": 6443 + }, + { + "#": 6444 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,8,9", + "startCol": 2, + "endCol": 2, + "startRow": 8, + "endRow": 9 + }, + { + "id": 281, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6447 + }, + "angle": 0, + "vertices": { + "#": 6448 + }, + "position": { + "#": 6453 + }, + "force": { + "#": 6454 + }, + "torque": 0, + "positionImpulse": { + "#": 6455 + }, + "constraintImpulse": { + "#": 6456 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6457 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6458 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6459 + }, + "bounds": { + "#": 6461 + }, + "positionPrev": { + "#": 6464 + }, + "anglePrev": 0, + "axes": { + "#": 6465 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6446 + }, + "sleepCounter": 0, + "region": { + "#": 6468 + } + }, + [ + { + "#": 6446 + } + ], + [ + { + "#": 6449 + }, + { + "#": 6450 + }, + { + "#": 6451 + }, + { + "#": 6452 + } + ], + { + "x": 125, + "y": 412.73575, + "index": 0, + "body": { + "#": 6446 + }, + "isInternal": false + }, + { + "x": 150, + "y": 412.73575, + "index": 1, + "body": { + "#": 6446 + }, + "isInternal": false + }, + { + "x": 150, + "y": 437.73575, + "index": 2, + "body": { + "#": 6446 + }, + "isInternal": false + }, + { + "x": 125, + "y": 437.73575, + "index": 3, + "body": { + "#": 6446 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6460 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6462 + }, + "max": { + "#": 6463 + } + }, + { + "x": 125, + "y": 412.73575 + }, + { + "x": 150, + "y": 437.73575 + }, + { + "x": 137.5, + "y": 422.32848 + }, + [ + { + "#": 6466 + }, + { + "#": 6467 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,8,9", + "startCol": 2, + "endCol": 3, + "startRow": 8, + "endRow": 9 + }, + { + "id": 282, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6470 + }, + "angle": 0, + "vertices": { + "#": 6471 + }, + "position": { + "#": 6476 + }, + "force": { + "#": 6477 + }, + "torque": 0, + "positionImpulse": { + "#": 6478 + }, + "constraintImpulse": { + "#": 6479 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6480 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6481 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6482 + }, + "bounds": { + "#": 6484 + }, + "positionPrev": { + "#": 6487 + }, + "anglePrev": 0, + "axes": { + "#": 6488 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6469 + }, + "sleepCounter": 0, + "region": { + "#": 6491 + } + }, + [ + { + "#": 6469 + } + ], + [ + { + "#": 6472 + }, + { + "#": 6473 + }, + { + "#": 6474 + }, + { + "#": 6475 + } + ], + { + "x": 150, + "y": 412.73575, + "index": 0, + "body": { + "#": 6469 + }, + "isInternal": false + }, + { + "x": 175, + "y": 412.73575, + "index": 1, + "body": { + "#": 6469 + }, + "isInternal": false + }, + { + "x": 175, + "y": 437.73575, + "index": 2, + "body": { + "#": 6469 + }, + "isInternal": false + }, + { + "x": 150, + "y": 437.73575, + "index": 3, + "body": { + "#": 6469 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6483 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6485 + }, + "max": { + "#": 6486 + } + }, + { + "x": 150, + "y": 412.73575 + }, + { + "x": 175, + "y": 437.73575 + }, + { + "x": 162.5, + "y": 422.32848 + }, + [ + { + "#": 6489 + }, + { + "#": 6490 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,3,8,9", + "startCol": 3, + "endCol": 3, + "startRow": 8, + "endRow": 9 + }, + { + "id": 283, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6493 + }, + "angle": 0, + "vertices": { + "#": 6494 + }, + "position": { + "#": 6499 + }, + "force": { + "#": 6500 + }, + "torque": 0, + "positionImpulse": { + "#": 6501 + }, + "constraintImpulse": { + "#": 6502 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6503 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6504 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6505 + }, + "bounds": { + "#": 6507 + }, + "positionPrev": { + "#": 6510 + }, + "anglePrev": 0, + "axes": { + "#": 6511 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6492 + }, + "sleepCounter": 0, + "region": { + "#": 6514 + } + }, + [ + { + "#": 6492 + } + ], + [ + { + "#": 6495 + }, + { + "#": 6496 + }, + { + "#": 6497 + }, + { + "#": 6498 + } + ], + { + "x": 175, + "y": 412.73575, + "index": 0, + "body": { + "#": 6492 + }, + "isInternal": false + }, + { + "x": 200, + "y": 412.73575, + "index": 1, + "body": { + "#": 6492 + }, + "isInternal": false + }, + { + "x": 200, + "y": 437.73575, + "index": 2, + "body": { + "#": 6492 + }, + "isInternal": false + }, + { + "x": 175, + "y": 437.73575, + "index": 3, + "body": { + "#": 6492 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6506 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6508 + }, + "max": { + "#": 6509 + } + }, + { + "x": 175, + "y": 412.73575 + }, + { + "x": 200, + "y": 437.73575 + }, + { + "x": 187.5, + "y": 422.32848 + }, + [ + { + "#": 6512 + }, + { + "#": 6513 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,8,9", + "startCol": 3, + "endCol": 4, + "startRow": 8, + "endRow": 9 + }, + { + "id": 284, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6516 + }, + "angle": 0, + "vertices": { + "#": 6517 + }, + "position": { + "#": 6522 + }, + "force": { + "#": 6523 + }, + "torque": 0, + "positionImpulse": { + "#": 6524 + }, + "constraintImpulse": { + "#": 6525 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6526 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6527 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6528 + }, + "bounds": { + "#": 6530 + }, + "positionPrev": { + "#": 6533 + }, + "anglePrev": 0, + "axes": { + "#": 6534 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6515 + }, + "sleepCounter": 0, + "region": { + "#": 6537 + } + }, + [ + { + "#": 6515 + } + ], + [ + { + "#": 6518 + }, + { + "#": 6519 + }, + { + "#": 6520 + }, + { + "#": 6521 + } + ], + { + "x": 200, + "y": 412.73575, + "index": 0, + "body": { + "#": 6515 + }, + "isInternal": false + }, + { + "x": 225, + "y": 412.73575, + "index": 1, + "body": { + "#": 6515 + }, + "isInternal": false + }, + { + "x": 225, + "y": 437.73575, + "index": 2, + "body": { + "#": 6515 + }, + "isInternal": false + }, + { + "x": 200, + "y": 437.73575, + "index": 3, + "body": { + "#": 6515 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6529 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6531 + }, + "max": { + "#": 6532 + } + }, + { + "x": 200, + "y": 412.73575 + }, + { + "x": 225, + "y": 437.73575 + }, + { + "x": 212.5, + "y": 422.32848 + }, + [ + { + "#": 6535 + }, + { + "#": 6536 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,8,9", + "startCol": 4, + "endCol": 4, + "startRow": 8, + "endRow": 9 + }, + { + "id": 285, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6539 + }, + "angle": 0, + "vertices": { + "#": 6540 + }, + "position": { + "#": 6545 + }, + "force": { + "#": 6546 + }, + "torque": 0, + "positionImpulse": { + "#": 6547 + }, + "constraintImpulse": { + "#": 6548 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6549 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6550 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6551 + }, + "bounds": { + "#": 6553 + }, + "positionPrev": { + "#": 6556 + }, + "anglePrev": 0, + "axes": { + "#": 6557 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6538 + }, + "sleepCounter": 0, + "region": { + "#": 6560 + } + }, + [ + { + "#": 6538 + } + ], + [ + { + "#": 6541 + }, + { + "#": 6542 + }, + { + "#": 6543 + }, + { + "#": 6544 + } + ], + { + "x": 225, + "y": 412.73575, + "index": 0, + "body": { + "#": 6538 + }, + "isInternal": false + }, + { + "x": 250, + "y": 412.73575, + "index": 1, + "body": { + "#": 6538 + }, + "isInternal": false + }, + { + "x": 250, + "y": 437.73575, + "index": 2, + "body": { + "#": 6538 + }, + "isInternal": false + }, + { + "x": 225, + "y": 437.73575, + "index": 3, + "body": { + "#": 6538 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6552 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6554 + }, + "max": { + "#": 6555 + } + }, + { + "x": 225, + "y": 412.73575 + }, + { + "x": 250, + "y": 437.73575 + }, + { + "x": 237.5, + "y": 422.32848 + }, + [ + { + "#": 6558 + }, + { + "#": 6559 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,8,9", + "startCol": 4, + "endCol": 5, + "startRow": 8, + "endRow": 9 + }, + { + "id": 286, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6562 + }, + "angle": 0, + "vertices": { + "#": 6563 + }, + "position": { + "#": 6568 + }, + "force": { + "#": 6569 + }, + "torque": 0, + "positionImpulse": { + "#": 6570 + }, + "constraintImpulse": { + "#": 6571 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6572 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6573 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6574 + }, + "bounds": { + "#": 6576 + }, + "positionPrev": { + "#": 6579 + }, + "anglePrev": 0, + "axes": { + "#": 6580 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6561 + }, + "sleepCounter": 0, + "region": { + "#": 6583 + } + }, + [ + { + "#": 6561 + } + ], + [ + { + "#": 6564 + }, + { + "#": 6565 + }, + { + "#": 6566 + }, + { + "#": 6567 + } + ], + { + "x": 250, + "y": 412.73575, + "index": 0, + "body": { + "#": 6561 + }, + "isInternal": false + }, + { + "x": 275, + "y": 412.73575, + "index": 1, + "body": { + "#": 6561 + }, + "isInternal": false + }, + { + "x": 275, + "y": 437.73575, + "index": 2, + "body": { + "#": 6561 + }, + "isInternal": false + }, + { + "x": 250, + "y": 437.73575, + "index": 3, + "body": { + "#": 6561 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6575 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6577 + }, + "max": { + "#": 6578 + } + }, + { + "x": 250, + "y": 412.73575 + }, + { + "x": 275, + "y": 437.73575 + }, + { + "x": 262.5, + "y": 422.32848 + }, + [ + { + "#": 6581 + }, + { + "#": 6582 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,8,9", + "startCol": 5, + "endCol": 5, + "startRow": 8, + "endRow": 9 + }, + { + "id": 287, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6585 + }, + "angle": 0, + "vertices": { + "#": 6586 + }, + "position": { + "#": 6591 + }, + "force": { + "#": 6592 + }, + "torque": 0, + "positionImpulse": { + "#": 6593 + }, + "constraintImpulse": { + "#": 6594 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6595 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6596 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6597 + }, + "bounds": { + "#": 6599 + }, + "positionPrev": { + "#": 6602 + }, + "anglePrev": 0, + "axes": { + "#": 6603 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6584 + }, + "sleepCounter": 0, + "region": { + "#": 6606 + } + }, + [ + { + "#": 6584 + } + ], + [ + { + "#": 6587 + }, + { + "#": 6588 + }, + { + "#": 6589 + }, + { + "#": 6590 + } + ], + { + "x": 275, + "y": 412.73575, + "index": 0, + "body": { + "#": 6584 + }, + "isInternal": false + }, + { + "x": 300, + "y": 412.73575, + "index": 1, + "body": { + "#": 6584 + }, + "isInternal": false + }, + { + "x": 300, + "y": 437.73575, + "index": 2, + "body": { + "#": 6584 + }, + "isInternal": false + }, + { + "x": 275, + "y": 437.73575, + "index": 3, + "body": { + "#": 6584 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6598 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6600 + }, + "max": { + "#": 6601 + } + }, + { + "x": 275, + "y": 412.73575 + }, + { + "x": 300, + "y": 437.73575 + }, + { + "x": 287.5, + "y": 422.32848 + }, + [ + { + "#": 6604 + }, + { + "#": 6605 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,8,9", + "startCol": 5, + "endCol": 6, + "startRow": 8, + "endRow": 9 + }, + { + "id": 288, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6608 + }, + "angle": 0, + "vertices": { + "#": 6609 + }, + "position": { + "#": 6614 + }, + "force": { + "#": 6615 + }, + "torque": 0, + "positionImpulse": { + "#": 6616 + }, + "constraintImpulse": { + "#": 6617 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6618 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6619 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6620 + }, + "bounds": { + "#": 6622 + }, + "positionPrev": { + "#": 6625 + }, + "anglePrev": 0, + "axes": { + "#": 6626 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6607 + }, + "sleepCounter": 0, + "region": { + "#": 6629 + } + }, + [ + { + "#": 6607 + } + ], + [ + { + "#": 6610 + }, + { + "#": 6611 + }, + { + "#": 6612 + }, + { + "#": 6613 + } + ], + { + "x": 300, + "y": 412.73575, + "index": 0, + "body": { + "#": 6607 + }, + "isInternal": false + }, + { + "x": 325, + "y": 412.73575, + "index": 1, + "body": { + "#": 6607 + }, + "isInternal": false + }, + { + "x": 325, + "y": 437.73575, + "index": 2, + "body": { + "#": 6607 + }, + "isInternal": false + }, + { + "x": 300, + "y": 437.73575, + "index": 3, + "body": { + "#": 6607 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6621 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6623 + }, + "max": { + "#": 6624 + } + }, + { + "x": 300, + "y": 412.73575 + }, + { + "x": 325, + "y": 437.73575 + }, + { + "x": 312.5, + "y": 422.32848 + }, + [ + { + "#": 6627 + }, + { + "#": 6628 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,8,9", + "startCol": 6, + "endCol": 6, + "startRow": 8, + "endRow": 9 + }, + { + "id": 289, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6631 + }, + "angle": 0, + "vertices": { + "#": 6632 + }, + "position": { + "#": 6637 + }, + "force": { + "#": 6638 + }, + "torque": 0, + "positionImpulse": { + "#": 6639 + }, + "constraintImpulse": { + "#": 6640 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6641 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6642 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6643 + }, + "bounds": { + "#": 6645 + }, + "positionPrev": { + "#": 6648 + }, + "anglePrev": 0, + "axes": { + "#": 6649 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6630 + }, + "sleepCounter": 0, + "region": { + "#": 6652 + } + }, + [ + { + "#": 6630 + } + ], + [ + { + "#": 6633 + }, + { + "#": 6634 + }, + { + "#": 6635 + }, + { + "#": 6636 + } + ], + { + "x": 325, + "y": 412.73575, + "index": 0, + "body": { + "#": 6630 + }, + "isInternal": false + }, + { + "x": 350, + "y": 412.73575, + "index": 1, + "body": { + "#": 6630 + }, + "isInternal": false + }, + { + "x": 350, + "y": 437.73575, + "index": 2, + "body": { + "#": 6630 + }, + "isInternal": false + }, + { + "x": 325, + "y": 437.73575, + "index": 3, + "body": { + "#": 6630 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6644 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6646 + }, + "max": { + "#": 6647 + } + }, + { + "x": 325, + "y": 412.73575 + }, + { + "x": 350, + "y": 437.73575 + }, + { + "x": 337.5, + "y": 422.32848 + }, + [ + { + "#": 6650 + }, + { + "#": 6651 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,8,9", + "startCol": 6, + "endCol": 7, + "startRow": 8, + "endRow": 9 + }, + { + "id": 290, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6654 + }, + "angle": 0, + "vertices": { + "#": 6655 + }, + "position": { + "#": 6660 + }, + "force": { + "#": 6661 + }, + "torque": 0, + "positionImpulse": { + "#": 6662 + }, + "constraintImpulse": { + "#": 6663 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6664 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6665 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6666 + }, + "bounds": { + "#": 6668 + }, + "positionPrev": { + "#": 6671 + }, + "anglePrev": 0, + "axes": { + "#": 6672 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6653 + }, + "sleepCounter": 0, + "region": { + "#": 6675 + } + }, + [ + { + "#": 6653 + } + ], + [ + { + "#": 6656 + }, + { + "#": 6657 + }, + { + "#": 6658 + }, + { + "#": 6659 + } + ], + { + "x": 350, + "y": 412.73575, + "index": 0, + "body": { + "#": 6653 + }, + "isInternal": false + }, + { + "x": 375, + "y": 412.73575, + "index": 1, + "body": { + "#": 6653 + }, + "isInternal": false + }, + { + "x": 375, + "y": 437.73575, + "index": 2, + "body": { + "#": 6653 + }, + "isInternal": false + }, + { + "x": 350, + "y": 437.73575, + "index": 3, + "body": { + "#": 6653 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6667 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6669 + }, + "max": { + "#": 6670 + } + }, + { + "x": 350, + "y": 412.73575 + }, + { + "x": 375, + "y": 437.73575 + }, + { + "x": 362.5, + "y": 422.32848 + }, + [ + { + "#": 6673 + }, + { + "#": 6674 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,8,9", + "startCol": 7, + "endCol": 7, + "startRow": 8, + "endRow": 9 + }, + { + "id": 291, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6677 + }, + "angle": 0, + "vertices": { + "#": 6678 + }, + "position": { + "#": 6683 + }, + "force": { + "#": 6684 + }, + "torque": 0, + "positionImpulse": { + "#": 6685 + }, + "constraintImpulse": { + "#": 6686 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6687 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6688 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6689 + }, + "bounds": { + "#": 6691 + }, + "positionPrev": { + "#": 6694 + }, + "anglePrev": 0, + "axes": { + "#": 6695 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6676 + }, + "sleepCounter": 0, + "region": { + "#": 6698 + } + }, + [ + { + "#": 6676 + } + ], + [ + { + "#": 6679 + }, + { + "#": 6680 + }, + { + "#": 6681 + }, + { + "#": 6682 + } + ], + { + "x": 375, + "y": 412.73575, + "index": 0, + "body": { + "#": 6676 + }, + "isInternal": false + }, + { + "x": 400, + "y": 412.73575, + "index": 1, + "body": { + "#": 6676 + }, + "isInternal": false + }, + { + "x": 400, + "y": 437.73575, + "index": 2, + "body": { + "#": 6676 + }, + "isInternal": false + }, + { + "x": 375, + "y": 437.73575, + "index": 3, + "body": { + "#": 6676 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6690 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6692 + }, + "max": { + "#": 6693 + } + }, + { + "x": 375, + "y": 412.73575 + }, + { + "x": 400, + "y": 437.73575 + }, + { + "x": 387.5, + "y": 422.32848 + }, + [ + { + "#": 6696 + }, + { + "#": 6697 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,8,9", + "startCol": 7, + "endCol": 8, + "startRow": 8, + "endRow": 9 + }, + { + "id": 292, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6700 + }, + "angle": 0, + "vertices": { + "#": 6701 + }, + "position": { + "#": 6706 + }, + "force": { + "#": 6707 + }, + "torque": 0, + "positionImpulse": { + "#": 6708 + }, + "constraintImpulse": { + "#": 6709 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6710 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6711 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6712 + }, + "bounds": { + "#": 6714 + }, + "positionPrev": { + "#": 6717 + }, + "anglePrev": 0, + "axes": { + "#": 6718 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6699 + }, + "sleepCounter": 0, + "region": { + "#": 6721 + } + }, + [ + { + "#": 6699 + } + ], + [ + { + "#": 6702 + }, + { + "#": 6703 + }, + { + "#": 6704 + }, + { + "#": 6705 + } + ], + { + "x": 400, + "y": 412.73575, + "index": 0, + "body": { + "#": 6699 + }, + "isInternal": false + }, + { + "x": 425, + "y": 412.73575, + "index": 1, + "body": { + "#": 6699 + }, + "isInternal": false + }, + { + "x": 425, + "y": 437.73575, + "index": 2, + "body": { + "#": 6699 + }, + "isInternal": false + }, + { + "x": 400, + "y": 437.73575, + "index": 3, + "body": { + "#": 6699 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6713 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6715 + }, + "max": { + "#": 6716 + } + }, + { + "x": 400, + "y": 412.73575 + }, + { + "x": 425, + "y": 437.73575 + }, + { + "x": 412.5, + "y": 422.32848 + }, + [ + { + "#": 6719 + }, + { + "#": 6720 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,8,8,9", + "startCol": 8, + "endCol": 8, + "startRow": 8, + "endRow": 9 + }, + { + "id": 293, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6723 + }, + "angle": 0, + "vertices": { + "#": 6724 + }, + "position": { + "#": 6729 + }, + "force": { + "#": 6730 + }, + "torque": 0, + "positionImpulse": { + "#": 6731 + }, + "constraintImpulse": { + "#": 6732 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6733 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6734 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6735 + }, + "bounds": { + "#": 6737 + }, + "positionPrev": { + "#": 6740 + }, + "anglePrev": 0, + "axes": { + "#": 6741 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6722 + }, + "sleepCounter": 0, + "region": { + "#": 6744 + } + }, + [ + { + "#": 6722 + } + ], + [ + { + "#": 6725 + }, + { + "#": 6726 + }, + { + "#": 6727 + }, + { + "#": 6728 + } + ], + { + "x": 425, + "y": 412.73575, + "index": 0, + "body": { + "#": 6722 + }, + "isInternal": false + }, + { + "x": 450, + "y": 412.73575, + "index": 1, + "body": { + "#": 6722 + }, + "isInternal": false + }, + { + "x": 450, + "y": 437.73575, + "index": 2, + "body": { + "#": 6722 + }, + "isInternal": false + }, + { + "x": 425, + "y": 437.73575, + "index": 3, + "body": { + "#": 6722 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6736 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6738 + }, + "max": { + "#": 6739 + } + }, + { + "x": 425, + "y": 412.73575 + }, + { + "x": 450, + "y": 437.73575 + }, + { + "x": 437.5, + "y": 422.32848 + }, + [ + { + "#": 6742 + }, + { + "#": 6743 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,8,9", + "startCol": 8, + "endCol": 9, + "startRow": 8, + "endRow": 9 + }, + { + "id": 294, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6746 + }, + "angle": 0, + "vertices": { + "#": 6747 + }, + "position": { + "#": 6752 + }, + "force": { + "#": 6753 + }, + "torque": 0, + "positionImpulse": { + "#": 6754 + }, + "constraintImpulse": { + "#": 6755 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6756 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6757 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6758 + }, + "bounds": { + "#": 6760 + }, + "positionPrev": { + "#": 6763 + }, + "anglePrev": 0, + "axes": { + "#": 6764 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6745 + }, + "sleepCounter": 0, + "region": { + "#": 6767 + } + }, + [ + { + "#": 6745 + } + ], + [ + { + "#": 6748 + }, + { + "#": 6749 + }, + { + "#": 6750 + }, + { + "#": 6751 + } + ], + { + "x": 450, + "y": 412.73575, + "index": 0, + "body": { + "#": 6745 + }, + "isInternal": false + }, + { + "x": 475, + "y": 412.73575, + "index": 1, + "body": { + "#": 6745 + }, + "isInternal": false + }, + { + "x": 475, + "y": 437.73575, + "index": 2, + "body": { + "#": 6745 + }, + "isInternal": false + }, + { + "x": 450, + "y": 437.73575, + "index": 3, + "body": { + "#": 6745 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6759 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6761 + }, + "max": { + "#": 6762 + } + }, + { + "x": 450, + "y": 412.73575 + }, + { + "x": 475, + "y": 437.73575 + }, + { + "x": 462.5, + "y": 422.32848 + }, + [ + { + "#": 6765 + }, + { + "#": 6766 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,8,9", + "startCol": 9, + "endCol": 9, + "startRow": 8, + "endRow": 9 + }, + { + "id": 295, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6769 + }, + "angle": 0, + "vertices": { + "#": 6770 + }, + "position": { + "#": 6775 + }, + "force": { + "#": 6776 + }, + "torque": 0, + "positionImpulse": { + "#": 6777 + }, + "constraintImpulse": { + "#": 6778 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6779 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6780 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6781 + }, + "bounds": { + "#": 6783 + }, + "positionPrev": { + "#": 6786 + }, + "anglePrev": 0, + "axes": { + "#": 6787 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6768 + }, + "sleepCounter": 0, + "region": { + "#": 6790 + } + }, + [ + { + "#": 6768 + } + ], + [ + { + "#": 6771 + }, + { + "#": 6772 + }, + { + "#": 6773 + }, + { + "#": 6774 + } + ], + { + "x": 475, + "y": 412.73575, + "index": 0, + "body": { + "#": 6768 + }, + "isInternal": false + }, + { + "x": 500, + "y": 412.73575, + "index": 1, + "body": { + "#": 6768 + }, + "isInternal": false + }, + { + "x": 500, + "y": 437.73575, + "index": 2, + "body": { + "#": 6768 + }, + "isInternal": false + }, + { + "x": 475, + "y": 437.73575, + "index": 3, + "body": { + "#": 6768 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6782 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6784 + }, + "max": { + "#": 6785 + } + }, + { + "x": 475, + "y": 412.73575 + }, + { + "x": 500, + "y": 437.73575 + }, + { + "x": 487.5, + "y": 422.32848 + }, + [ + { + "#": 6788 + }, + { + "#": 6789 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,8,9", + "startCol": 9, + "endCol": 10, + "startRow": 8, + "endRow": 9 + }, + { + "id": 296, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6792 + }, + "angle": 0, + "vertices": { + "#": 6793 + }, + "position": { + "#": 6798 + }, + "force": { + "#": 6799 + }, + "torque": 0, + "positionImpulse": { + "#": 6800 + }, + "constraintImpulse": { + "#": 6801 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6802 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6803 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6804 + }, + "bounds": { + "#": 6806 + }, + "positionPrev": { + "#": 6809 + }, + "anglePrev": 0, + "axes": { + "#": 6810 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6791 + }, + "sleepCounter": 0, + "region": { + "#": 6813 + } + }, + [ + { + "#": 6791 + } + ], + [ + { + "#": 6794 + }, + { + "#": 6795 + }, + { + "#": 6796 + }, + { + "#": 6797 + } + ], + { + "x": 500, + "y": 412.73575, + "index": 0, + "body": { + "#": 6791 + }, + "isInternal": false + }, + { + "x": 525, + "y": 412.73575, + "index": 1, + "body": { + "#": 6791 + }, + "isInternal": false + }, + { + "x": 525, + "y": 437.73575, + "index": 2, + "body": { + "#": 6791 + }, + "isInternal": false + }, + { + "x": 500, + "y": 437.73575, + "index": 3, + "body": { + "#": 6791 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6805 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6807 + }, + "max": { + "#": 6808 + } + }, + { + "x": 500, + "y": 412.73575 + }, + { + "x": 525, + "y": 437.73575 + }, + { + "x": 512.5, + "y": 422.32848 + }, + [ + { + "#": 6811 + }, + { + "#": 6812 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,8,9", + "startCol": 10, + "endCol": 10, + "startRow": 8, + "endRow": 9 + }, + { + "id": 297, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6815 + }, + "angle": 0, + "vertices": { + "#": 6816 + }, + "position": { + "#": 6821 + }, + "force": { + "#": 6822 + }, + "torque": 0, + "positionImpulse": { + "#": 6823 + }, + "constraintImpulse": { + "#": 6824 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6825 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6826 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6827 + }, + "bounds": { + "#": 6829 + }, + "positionPrev": { + "#": 6832 + }, + "anglePrev": 0, + "axes": { + "#": 6833 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6814 + }, + "sleepCounter": 0, + "region": { + "#": 6836 + } + }, + [ + { + "#": 6814 + } + ], + [ + { + "#": 6817 + }, + { + "#": 6818 + }, + { + "#": 6819 + }, + { + "#": 6820 + } + ], + { + "x": 525, + "y": 412.73575, + "index": 0, + "body": { + "#": 6814 + }, + "isInternal": false + }, + { + "x": 550, + "y": 412.73575, + "index": 1, + "body": { + "#": 6814 + }, + "isInternal": false + }, + { + "x": 550, + "y": 437.73575, + "index": 2, + "body": { + "#": 6814 + }, + "isInternal": false + }, + { + "x": 525, + "y": 437.73575, + "index": 3, + "body": { + "#": 6814 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6828 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6830 + }, + "max": { + "#": 6831 + } + }, + { + "x": 525, + "y": 412.73575 + }, + { + "x": 550, + "y": 437.73575 + }, + { + "x": 537.5, + "y": 422.32848 + }, + [ + { + "#": 6834 + }, + { + "#": 6835 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,8,9", + "startCol": 10, + "endCol": 11, + "startRow": 8, + "endRow": 9 + }, + { + "id": 298, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6838 + }, + "angle": 0, + "vertices": { + "#": 6839 + }, + "position": { + "#": 6844 + }, + "force": { + "#": 6845 + }, + "torque": 0, + "positionImpulse": { + "#": 6846 + }, + "constraintImpulse": { + "#": 6847 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6848 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6849 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6850 + }, + "bounds": { + "#": 6852 + }, + "positionPrev": { + "#": 6855 + }, + "anglePrev": 0, + "axes": { + "#": 6856 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6837 + }, + "sleepCounter": 0, + "region": { + "#": 6859 + } + }, + [ + { + "#": 6837 + } + ], + [ + { + "#": 6840 + }, + { + "#": 6841 + }, + { + "#": 6842 + }, + { + "#": 6843 + } + ], + { + "x": 550, + "y": 412.73575, + "index": 0, + "body": { + "#": 6837 + }, + "isInternal": false + }, + { + "x": 575, + "y": 412.73575, + "index": 1, + "body": { + "#": 6837 + }, + "isInternal": false + }, + { + "x": 575, + "y": 437.73575, + "index": 2, + "body": { + "#": 6837 + }, + "isInternal": false + }, + { + "x": 550, + "y": 437.73575, + "index": 3, + "body": { + "#": 6837 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6851 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6853 + }, + "max": { + "#": 6854 + } + }, + { + "x": 550, + "y": 412.73575 + }, + { + "x": 575, + "y": 437.73575 + }, + { + "x": 562.5, + "y": 422.32848 + }, + [ + { + "#": 6857 + }, + { + "#": 6858 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,11,8,9", + "startCol": 11, + "endCol": 11, + "startRow": 8, + "endRow": 9 + }, + { + "id": 299, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6861 + }, + "angle": 0, + "vertices": { + "#": 6862 + }, + "position": { + "#": 6867 + }, + "force": { + "#": 6868 + }, + "torque": 0, + "positionImpulse": { + "#": 6869 + }, + "constraintImpulse": { + "#": 6870 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6871 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6872 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6873 + }, + "bounds": { + "#": 6875 + }, + "positionPrev": { + "#": 6878 + }, + "anglePrev": 0, + "axes": { + "#": 6879 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6860 + }, + "sleepCounter": 0, + "region": { + "#": 6882 + } + }, + [ + { + "#": 6860 + } + ], + [ + { + "#": 6863 + }, + { + "#": 6864 + }, + { + "#": 6865 + }, + { + "#": 6866 + } + ], + { + "x": 575, + "y": 412.73575, + "index": 0, + "body": { + "#": 6860 + }, + "isInternal": false + }, + { + "x": 600, + "y": 412.73575, + "index": 1, + "body": { + "#": 6860 + }, + "isInternal": false + }, + { + "x": 600, + "y": 437.73575, + "index": 2, + "body": { + "#": 6860 + }, + "isInternal": false + }, + { + "x": 575, + "y": 437.73575, + "index": 3, + "body": { + "#": 6860 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6874 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6876 + }, + "max": { + "#": 6877 + } + }, + { + "x": 575, + "y": 412.73575 + }, + { + "x": 600, + "y": 437.73575 + }, + { + "x": 587.5, + "y": 422.32848 + }, + [ + { + "#": 6880 + }, + { + "#": 6881 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,8,9", + "startCol": 11, + "endCol": 12, + "startRow": 8, + "endRow": 9 + }, + { + "id": 300, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6884 + }, + "angle": 0, + "vertices": { + "#": 6885 + }, + "position": { + "#": 6890 + }, + "force": { + "#": 6891 + }, + "torque": 0, + "positionImpulse": { + "#": 6892 + }, + "constraintImpulse": { + "#": 6893 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6894 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6895 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6896 + }, + "bounds": { + "#": 6898 + }, + "positionPrev": { + "#": 6901 + }, + "anglePrev": 0, + "axes": { + "#": 6902 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6883 + }, + "sleepCounter": 0, + "region": { + "#": 6905 + } + }, + [ + { + "#": 6883 + } + ], + [ + { + "#": 6886 + }, + { + "#": 6887 + }, + { + "#": 6888 + }, + { + "#": 6889 + } + ], + { + "x": 600, + "y": 412.73575, + "index": 0, + "body": { + "#": 6883 + }, + "isInternal": false + }, + { + "x": 625, + "y": 412.73575, + "index": 1, + "body": { + "#": 6883 + }, + "isInternal": false + }, + { + "x": 625, + "y": 437.73575, + "index": 2, + "body": { + "#": 6883 + }, + "isInternal": false + }, + { + "x": 600, + "y": 437.73575, + "index": 3, + "body": { + "#": 6883 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6897 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6899 + }, + "max": { + "#": 6900 + } + }, + { + "x": 600, + "y": 412.73575 + }, + { + "x": 625, + "y": 437.73575 + }, + { + "x": 612.5, + "y": 422.32848 + }, + [ + { + "#": 6903 + }, + { + "#": 6904 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,8,9", + "startCol": 12, + "endCol": 13, + "startRow": 8, + "endRow": 9 + }, + { + "id": 301, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6907 + }, + "angle": 0, + "vertices": { + "#": 6908 + }, + "position": { + "#": 6913 + }, + "force": { + "#": 6914 + }, + "torque": 0, + "positionImpulse": { + "#": 6915 + }, + "constraintImpulse": { + "#": 6916 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6917 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6918 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6919 + }, + "bounds": { + "#": 6921 + }, + "positionPrev": { + "#": 6924 + }, + "anglePrev": 0, + "axes": { + "#": 6925 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6906 + }, + "sleepCounter": 0, + "region": { + "#": 6928 + } + }, + [ + { + "#": 6906 + } + ], + [ + { + "#": 6909 + }, + { + "#": 6910 + }, + { + "#": 6911 + }, + { + "#": 6912 + } + ], + { + "x": 625, + "y": 412.73575, + "index": 0, + "body": { + "#": 6906 + }, + "isInternal": false + }, + { + "x": 650, + "y": 412.73575, + "index": 1, + "body": { + "#": 6906 + }, + "isInternal": false + }, + { + "x": 650, + "y": 437.73575, + "index": 2, + "body": { + "#": 6906 + }, + "isInternal": false + }, + { + "x": 625, + "y": 437.73575, + "index": 3, + "body": { + "#": 6906 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6920 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6922 + }, + "max": { + "#": 6923 + } + }, + { + "x": 625, + "y": 412.73575 + }, + { + "x": 650, + "y": 437.73575 + }, + { + "x": 637.5, + "y": 422.32848 + }, + [ + { + "#": 6926 + }, + { + "#": 6927 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,13,8,9", + "startCol": 13, + "endCol": 13, + "startRow": 8, + "endRow": 9 + }, + { + "id": 302, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6930 + }, + "angle": 0, + "vertices": { + "#": 6931 + }, + "position": { + "#": 6936 + }, + "force": { + "#": 6937 + }, + "torque": 0, + "positionImpulse": { + "#": 6938 + }, + "constraintImpulse": { + "#": 6939 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6940 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6941 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6942 + }, + "bounds": { + "#": 6944 + }, + "positionPrev": { + "#": 6947 + }, + "anglePrev": 0, + "axes": { + "#": 6948 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6929 + }, + "sleepCounter": 0, + "region": { + "#": 6951 + } + }, + [ + { + "#": 6929 + } + ], + [ + { + "#": 6932 + }, + { + "#": 6933 + }, + { + "#": 6934 + }, + { + "#": 6935 + } + ], + { + "x": 650, + "y": 412.73575, + "index": 0, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 675, + "y": 412.73575, + "index": 1, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 675, + "y": 437.73575, + "index": 2, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 650, + "y": 437.73575, + "index": 3, + "body": { + "#": 6929 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6943 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6945 + }, + "max": { + "#": 6946 + } + }, + { + "x": 650, + "y": 412.73575 + }, + { + "x": 675, + "y": 437.73575 + }, + { + "x": 662.5, + "y": 422.32848 + }, + [ + { + "#": 6949 + }, + { + "#": 6950 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,8,9", + "startCol": 13, + "endCol": 14, + "startRow": 8, + "endRow": 9 + }, + { + "id": 303, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6953 + }, + "angle": 0, + "vertices": { + "#": 6954 + }, + "position": { + "#": 6959 + }, + "force": { + "#": 6960 + }, + "torque": 0, + "positionImpulse": { + "#": 6961 + }, + "constraintImpulse": { + "#": 6962 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6963 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6964 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6965 + }, + "bounds": { + "#": 6967 + }, + "positionPrev": { + "#": 6970 + }, + "anglePrev": 0, + "axes": { + "#": 6971 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6952 + }, + "sleepCounter": 0, + "region": { + "#": 6974 + } + }, + [ + { + "#": 6952 + } + ], + [ + { + "#": 6955 + }, + { + "#": 6956 + }, + { + "#": 6957 + }, + { + "#": 6958 + } + ], + { + "x": 675, + "y": 412.73575, + "index": 0, + "body": { + "#": 6952 + }, + "isInternal": false + }, + { + "x": 700, + "y": 412.73575, + "index": 1, + "body": { + "#": 6952 + }, + "isInternal": false + }, + { + "x": 700, + "y": 437.73575, + "index": 2, + "body": { + "#": 6952 + }, + "isInternal": false + }, + { + "x": 675, + "y": 437.73575, + "index": 3, + "body": { + "#": 6952 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6966 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6968 + }, + "max": { + "#": 6969 + } + }, + { + "x": 675, + "y": 412.73575 + }, + { + "x": 700, + "y": 437.73575 + }, + { + "x": 687.5, + "y": 422.32848 + }, + [ + { + "#": 6972 + }, + { + "#": 6973 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,14,8,9", + "startCol": 14, + "endCol": 14, + "startRow": 8, + "endRow": 9 + }, + { + "id": 304, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6976 + }, + "angle": 0, + "vertices": { + "#": 6977 + }, + "position": { + "#": 6982 + }, + "force": { + "#": 6983 + }, + "torque": 0, + "positionImpulse": { + "#": 6984 + }, + "constraintImpulse": { + "#": 6985 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 6986 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 6987 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 6988 + }, + "bounds": { + "#": 6990 + }, + "positionPrev": { + "#": 6993 + }, + "anglePrev": 0, + "axes": { + "#": 6994 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6975 + }, + "sleepCounter": 0, + "region": { + "#": 6997 + } + }, + [ + { + "#": 6975 + } + ], + [ + { + "#": 6978 + }, + { + "#": 6979 + }, + { + "#": 6980 + }, + { + "#": 6981 + } + ], + { + "x": 700, + "y": 412.73575, + "index": 0, + "body": { + "#": 6975 + }, + "isInternal": false + }, + { + "x": 725, + "y": 412.73575, + "index": 1, + "body": { + "#": 6975 + }, + "isInternal": false + }, + { + "x": 725, + "y": 437.73575, + "index": 2, + "body": { + "#": 6975 + }, + "isInternal": false + }, + { + "x": 700, + "y": 437.73575, + "index": 3, + "body": { + "#": 6975 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 425.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 6989 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 6991 + }, + "max": { + "#": 6992 + } + }, + { + "x": 700, + "y": 412.73575 + }, + { + "x": 725, + "y": 437.73575 + }, + { + "x": 712.5, + "y": 422.32848 + }, + [ + { + "#": 6995 + }, + { + "#": 6996 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,8,9", + "startCol": 14, + "endCol": 15, + "startRow": 8, + "endRow": 9 + }, + { + "id": 305, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 6999 + }, + "angle": 0, + "vertices": { + "#": 7000 + }, + "position": { + "#": 7005 + }, + "force": { + "#": 7006 + }, + "torque": 0, + "positionImpulse": { + "#": 7007 + }, + "constraintImpulse": { + "#": 7008 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7009 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7010 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7011 + }, + "bounds": { + "#": 7013 + }, + "positionPrev": { + "#": 7016 + }, + "anglePrev": 0, + "axes": { + "#": 7017 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 6998 + }, + "sleepCounter": 0, + "region": { + "#": 7020 + } + }, + [ + { + "#": 6998 + } + ], + [ + { + "#": 7001 + }, + { + "#": 7002 + }, + { + "#": 7003 + }, + { + "#": 7004 + } + ], + { + "x": 100, + "y": 437.73575, + "index": 0, + "body": { + "#": 6998 + }, + "isInternal": false + }, + { + "x": 125, + "y": 437.73575, + "index": 1, + "body": { + "#": 6998 + }, + "isInternal": false + }, + { + "x": 125, + "y": 462.73575, + "index": 2, + "body": { + "#": 6998 + }, + "isInternal": false + }, + { + "x": 100, + "y": 462.73575, + "index": 3, + "body": { + "#": 6998 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7012 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7014 + }, + "max": { + "#": 7015 + } + }, + { + "x": 100, + "y": 437.73575 + }, + { + "x": 125, + "y": 462.73575 + }, + { + "x": 112.5, + "y": 447.32848 + }, + [ + { + "#": 7018 + }, + { + "#": 7019 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,9,9", + "startCol": 2, + "endCol": 2, + "startRow": 9, + "endRow": 9 + }, + { + "id": 306, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7022 + }, + "angle": 0, + "vertices": { + "#": 7023 + }, + "position": { + "#": 7028 + }, + "force": { + "#": 7029 + }, + "torque": 0, + "positionImpulse": { + "#": 7030 + }, + "constraintImpulse": { + "#": 7031 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7032 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7033 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7034 + }, + "bounds": { + "#": 7036 + }, + "positionPrev": { + "#": 7039 + }, + "anglePrev": 0, + "axes": { + "#": 7040 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7021 + }, + "sleepCounter": 0, + "region": { + "#": 7043 + } + }, + [ + { + "#": 7021 + } + ], + [ + { + "#": 7024 + }, + { + "#": 7025 + }, + { + "#": 7026 + }, + { + "#": 7027 + } + ], + { + "x": 125, + "y": 437.73575, + "index": 0, + "body": { + "#": 7021 + }, + "isInternal": false + }, + { + "x": 150, + "y": 437.73575, + "index": 1, + "body": { + "#": 7021 + }, + "isInternal": false + }, + { + "x": 150, + "y": 462.73575, + "index": 2, + "body": { + "#": 7021 + }, + "isInternal": false + }, + { + "x": 125, + "y": 462.73575, + "index": 3, + "body": { + "#": 7021 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7035 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7037 + }, + "max": { + "#": 7038 + } + }, + { + "x": 125, + "y": 437.73575 + }, + { + "x": 150, + "y": 462.73575 + }, + { + "x": 137.5, + "y": 447.32848 + }, + [ + { + "#": 7041 + }, + { + "#": 7042 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,9,9", + "startCol": 2, + "endCol": 3, + "startRow": 9, + "endRow": 9 + }, + { + "id": 307, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7045 + }, + "angle": 0, + "vertices": { + "#": 7046 + }, + "position": { + "#": 7051 + }, + "force": { + "#": 7052 + }, + "torque": 0, + "positionImpulse": { + "#": 7053 + }, + "constraintImpulse": { + "#": 7054 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7055 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7056 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7057 + }, + "bounds": { + "#": 7059 + }, + "positionPrev": { + "#": 7062 + }, + "anglePrev": 0, + "axes": { + "#": 7063 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7044 + }, + "sleepCounter": 0, + "region": { + "#": 7066 + } + }, + [ + { + "#": 7044 + } + ], + [ + { + "#": 7047 + }, + { + "#": 7048 + }, + { + "#": 7049 + }, + { + "#": 7050 + } + ], + { + "x": 150, + "y": 437.73575, + "index": 0, + "body": { + "#": 7044 + }, + "isInternal": false + }, + { + "x": 175, + "y": 437.73575, + "index": 1, + "body": { + "#": 7044 + }, + "isInternal": false + }, + { + "x": 175, + "y": 462.73575, + "index": 2, + "body": { + "#": 7044 + }, + "isInternal": false + }, + { + "x": 150, + "y": 462.73575, + "index": 3, + "body": { + "#": 7044 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7058 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7060 + }, + "max": { + "#": 7061 + } + }, + { + "x": 150, + "y": 437.73575 + }, + { + "x": 175, + "y": 462.73575 + }, + { + "x": 162.5, + "y": 447.32848 + }, + [ + { + "#": 7064 + }, + { + "#": 7065 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,3,9,9", + "startCol": 3, + "endCol": 3, + "startRow": 9, + "endRow": 9 + }, + { + "id": 308, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7068 + }, + "angle": 0, + "vertices": { + "#": 7069 + }, + "position": { + "#": 7074 + }, + "force": { + "#": 7075 + }, + "torque": 0, + "positionImpulse": { + "#": 7076 + }, + "constraintImpulse": { + "#": 7077 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7078 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7079 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7080 + }, + "bounds": { + "#": 7082 + }, + "positionPrev": { + "#": 7085 + }, + "anglePrev": 0, + "axes": { + "#": 7086 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7067 + }, + "sleepCounter": 0, + "region": { + "#": 7089 + } + }, + [ + { + "#": 7067 + } + ], + [ + { + "#": 7070 + }, + { + "#": 7071 + }, + { + "#": 7072 + }, + { + "#": 7073 + } + ], + { + "x": 175, + "y": 437.73575, + "index": 0, + "body": { + "#": 7067 + }, + "isInternal": false + }, + { + "x": 200, + "y": 437.73575, + "index": 1, + "body": { + "#": 7067 + }, + "isInternal": false + }, + { + "x": 200, + "y": 462.73575, + "index": 2, + "body": { + "#": 7067 + }, + "isInternal": false + }, + { + "x": 175, + "y": 462.73575, + "index": 3, + "body": { + "#": 7067 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7081 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7083 + }, + "max": { + "#": 7084 + } + }, + { + "x": 175, + "y": 437.73575 + }, + { + "x": 200, + "y": 462.73575 + }, + { + "x": 187.5, + "y": 447.32848 + }, + [ + { + "#": 7087 + }, + { + "#": 7088 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,9,9", + "startCol": 3, + "endCol": 4, + "startRow": 9, + "endRow": 9 + }, + { + "id": 309, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7091 + }, + "angle": 0, + "vertices": { + "#": 7092 + }, + "position": { + "#": 7097 + }, + "force": { + "#": 7098 + }, + "torque": 0, + "positionImpulse": { + "#": 7099 + }, + "constraintImpulse": { + "#": 7100 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7101 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7102 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7103 + }, + "bounds": { + "#": 7105 + }, + "positionPrev": { + "#": 7108 + }, + "anglePrev": 0, + "axes": { + "#": 7109 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7090 + }, + "sleepCounter": 0, + "region": { + "#": 7112 + } + }, + [ + { + "#": 7090 + } + ], + [ + { + "#": 7093 + }, + { + "#": 7094 + }, + { + "#": 7095 + }, + { + "#": 7096 + } + ], + { + "x": 200, + "y": 437.73575, + "index": 0, + "body": { + "#": 7090 + }, + "isInternal": false + }, + { + "x": 225, + "y": 437.73575, + "index": 1, + "body": { + "#": 7090 + }, + "isInternal": false + }, + { + "x": 225, + "y": 462.73575, + "index": 2, + "body": { + "#": 7090 + }, + "isInternal": false + }, + { + "x": 200, + "y": 462.73575, + "index": 3, + "body": { + "#": 7090 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7104 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7106 + }, + "max": { + "#": 7107 + } + }, + { + "x": 200, + "y": 437.73575 + }, + { + "x": 225, + "y": 462.73575 + }, + { + "x": 212.5, + "y": 447.32848 + }, + [ + { + "#": 7110 + }, + { + "#": 7111 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,9,9", + "startCol": 4, + "endCol": 4, + "startRow": 9, + "endRow": 9 + }, + { + "id": 310, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7114 + }, + "angle": 0, + "vertices": { + "#": 7115 + }, + "position": { + "#": 7120 + }, + "force": { + "#": 7121 + }, + "torque": 0, + "positionImpulse": { + "#": 7122 + }, + "constraintImpulse": { + "#": 7123 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7124 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7125 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7126 + }, + "bounds": { + "#": 7128 + }, + "positionPrev": { + "#": 7131 + }, + "anglePrev": 0, + "axes": { + "#": 7132 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7113 + }, + "sleepCounter": 0, + "region": { + "#": 7135 + } + }, + [ + { + "#": 7113 + } + ], + [ + { + "#": 7116 + }, + { + "#": 7117 + }, + { + "#": 7118 + }, + { + "#": 7119 + } + ], + { + "x": 225, + "y": 437.73575, + "index": 0, + "body": { + "#": 7113 + }, + "isInternal": false + }, + { + "x": 250, + "y": 437.73575, + "index": 1, + "body": { + "#": 7113 + }, + "isInternal": false + }, + { + "x": 250, + "y": 462.73575, + "index": 2, + "body": { + "#": 7113 + }, + "isInternal": false + }, + { + "x": 225, + "y": 462.73575, + "index": 3, + "body": { + "#": 7113 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7127 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7129 + }, + "max": { + "#": 7130 + } + }, + { + "x": 225, + "y": 437.73575 + }, + { + "x": 250, + "y": 462.73575 + }, + { + "x": 237.5, + "y": 447.32848 + }, + [ + { + "#": 7133 + }, + { + "#": 7134 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,9,9", + "startCol": 4, + "endCol": 5, + "startRow": 9, + "endRow": 9 + }, + { + "id": 311, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7137 + }, + "angle": 0, + "vertices": { + "#": 7138 + }, + "position": { + "#": 7143 + }, + "force": { + "#": 7144 + }, + "torque": 0, + "positionImpulse": { + "#": 7145 + }, + "constraintImpulse": { + "#": 7146 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7147 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7148 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7149 + }, + "bounds": { + "#": 7151 + }, + "positionPrev": { + "#": 7154 + }, + "anglePrev": 0, + "axes": { + "#": 7155 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7136 + }, + "sleepCounter": 0, + "region": { + "#": 7158 + } + }, + [ + { + "#": 7136 + } + ], + [ + { + "#": 7139 + }, + { + "#": 7140 + }, + { + "#": 7141 + }, + { + "#": 7142 + } + ], + { + "x": 250, + "y": 437.73575, + "index": 0, + "body": { + "#": 7136 + }, + "isInternal": false + }, + { + "x": 275, + "y": 437.73575, + "index": 1, + "body": { + "#": 7136 + }, + "isInternal": false + }, + { + "x": 275, + "y": 462.73575, + "index": 2, + "body": { + "#": 7136 + }, + "isInternal": false + }, + { + "x": 250, + "y": 462.73575, + "index": 3, + "body": { + "#": 7136 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7150 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7152 + }, + "max": { + "#": 7153 + } + }, + { + "x": 250, + "y": 437.73575 + }, + { + "x": 275, + "y": 462.73575 + }, + { + "x": 262.5, + "y": 447.32848 + }, + [ + { + "#": 7156 + }, + { + "#": 7157 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,9,9", + "startCol": 5, + "endCol": 5, + "startRow": 9, + "endRow": 9 + }, + { + "id": 312, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7160 + }, + "angle": 0, + "vertices": { + "#": 7161 + }, + "position": { + "#": 7166 + }, + "force": { + "#": 7167 + }, + "torque": 0, + "positionImpulse": { + "#": 7168 + }, + "constraintImpulse": { + "#": 7169 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7170 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7171 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7172 + }, + "bounds": { + "#": 7174 + }, + "positionPrev": { + "#": 7177 + }, + "anglePrev": 0, + "axes": { + "#": 7178 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7159 + }, + "sleepCounter": 0, + "region": { + "#": 7181 + } + }, + [ + { + "#": 7159 + } + ], + [ + { + "#": 7162 + }, + { + "#": 7163 + }, + { + "#": 7164 + }, + { + "#": 7165 + } + ], + { + "x": 275, + "y": 437.73575, + "index": 0, + "body": { + "#": 7159 + }, + "isInternal": false + }, + { + "x": 300, + "y": 437.73575, + "index": 1, + "body": { + "#": 7159 + }, + "isInternal": false + }, + { + "x": 300, + "y": 462.73575, + "index": 2, + "body": { + "#": 7159 + }, + "isInternal": false + }, + { + "x": 275, + "y": 462.73575, + "index": 3, + "body": { + "#": 7159 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7173 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7175 + }, + "max": { + "#": 7176 + } + }, + { + "x": 275, + "y": 437.73575 + }, + { + "x": 300, + "y": 462.73575 + }, + { + "x": 287.5, + "y": 447.32848 + }, + [ + { + "#": 7179 + }, + { + "#": 7180 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,9,9", + "startCol": 5, + "endCol": 6, + "startRow": 9, + "endRow": 9 + }, + { + "id": 313, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7183 + }, + "angle": 0, + "vertices": { + "#": 7184 + }, + "position": { + "#": 7189 + }, + "force": { + "#": 7190 + }, + "torque": 0, + "positionImpulse": { + "#": 7191 + }, + "constraintImpulse": { + "#": 7192 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7193 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7194 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7195 + }, + "bounds": { + "#": 7197 + }, + "positionPrev": { + "#": 7200 + }, + "anglePrev": 0, + "axes": { + "#": 7201 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7182 + }, + "sleepCounter": 0, + "region": { + "#": 7204 + } + }, + [ + { + "#": 7182 + } + ], + [ + { + "#": 7185 + }, + { + "#": 7186 + }, + { + "#": 7187 + }, + { + "#": 7188 + } + ], + { + "x": 300, + "y": 437.73575, + "index": 0, + "body": { + "#": 7182 + }, + "isInternal": false + }, + { + "x": 325, + "y": 437.73575, + "index": 1, + "body": { + "#": 7182 + }, + "isInternal": false + }, + { + "x": 325, + "y": 462.73575, + "index": 2, + "body": { + "#": 7182 + }, + "isInternal": false + }, + { + "x": 300, + "y": 462.73575, + "index": 3, + "body": { + "#": 7182 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7196 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7198 + }, + "max": { + "#": 7199 + } + }, + { + "x": 300, + "y": 437.73575 + }, + { + "x": 325, + "y": 462.73575 + }, + { + "x": 312.5, + "y": 447.32848 + }, + [ + { + "#": 7202 + }, + { + "#": 7203 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,9,9", + "startCol": 6, + "endCol": 6, + "startRow": 9, + "endRow": 9 + }, + { + "id": 314, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7206 + }, + "angle": 0, + "vertices": { + "#": 7207 + }, + "position": { + "#": 7212 + }, + "force": { + "#": 7213 + }, + "torque": 0, + "positionImpulse": { + "#": 7214 + }, + "constraintImpulse": { + "#": 7215 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7216 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7217 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7218 + }, + "bounds": { + "#": 7220 + }, + "positionPrev": { + "#": 7223 + }, + "anglePrev": 0, + "axes": { + "#": 7224 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7205 + }, + "sleepCounter": 0, + "region": { + "#": 7227 + } + }, + [ + { + "#": 7205 + } + ], + [ + { + "#": 7208 + }, + { + "#": 7209 + }, + { + "#": 7210 + }, + { + "#": 7211 + } + ], + { + "x": 325, + "y": 437.73575, + "index": 0, + "body": { + "#": 7205 + }, + "isInternal": false + }, + { + "x": 350, + "y": 437.73575, + "index": 1, + "body": { + "#": 7205 + }, + "isInternal": false + }, + { + "x": 350, + "y": 462.73575, + "index": 2, + "body": { + "#": 7205 + }, + "isInternal": false + }, + { + "x": 325, + "y": 462.73575, + "index": 3, + "body": { + "#": 7205 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7219 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7221 + }, + "max": { + "#": 7222 + } + }, + { + "x": 325, + "y": 437.73575 + }, + { + "x": 350, + "y": 462.73575 + }, + { + "x": 337.5, + "y": 447.32848 + }, + [ + { + "#": 7225 + }, + { + "#": 7226 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,9,9", + "startCol": 6, + "endCol": 7, + "startRow": 9, + "endRow": 9 + }, + { + "id": 315, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7229 + }, + "angle": 0, + "vertices": { + "#": 7230 + }, + "position": { + "#": 7235 + }, + "force": { + "#": 7236 + }, + "torque": 0, + "positionImpulse": { + "#": 7237 + }, + "constraintImpulse": { + "#": 7238 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7239 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7240 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7241 + }, + "bounds": { + "#": 7243 + }, + "positionPrev": { + "#": 7246 + }, + "anglePrev": 0, + "axes": { + "#": 7247 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7228 + }, + "sleepCounter": 0, + "region": { + "#": 7250 + } + }, + [ + { + "#": 7228 + } + ], + [ + { + "#": 7231 + }, + { + "#": 7232 + }, + { + "#": 7233 + }, + { + "#": 7234 + } + ], + { + "x": 350, + "y": 437.73575, + "index": 0, + "body": { + "#": 7228 + }, + "isInternal": false + }, + { + "x": 375, + "y": 437.73575, + "index": 1, + "body": { + "#": 7228 + }, + "isInternal": false + }, + { + "x": 375, + "y": 462.73575, + "index": 2, + "body": { + "#": 7228 + }, + "isInternal": false + }, + { + "x": 350, + "y": 462.73575, + "index": 3, + "body": { + "#": 7228 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7242 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7244 + }, + "max": { + "#": 7245 + } + }, + { + "x": 350, + "y": 437.73575 + }, + { + "x": 375, + "y": 462.73575 + }, + { + "x": 362.5, + "y": 447.32848 + }, + [ + { + "#": 7248 + }, + { + "#": 7249 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,9,9", + "startCol": 7, + "endCol": 7, + "startRow": 9, + "endRow": 9 + }, + { + "id": 316, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7252 + }, + "angle": 0, + "vertices": { + "#": 7253 + }, + "position": { + "#": 7258 + }, + "force": { + "#": 7259 + }, + "torque": 0, + "positionImpulse": { + "#": 7260 + }, + "constraintImpulse": { + "#": 7261 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7262 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7263 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7264 + }, + "bounds": { + "#": 7266 + }, + "positionPrev": { + "#": 7269 + }, + "anglePrev": 0, + "axes": { + "#": 7270 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7251 + }, + "sleepCounter": 0, + "region": { + "#": 7273 + } + }, + [ + { + "#": 7251 + } + ], + [ + { + "#": 7254 + }, + { + "#": 7255 + }, + { + "#": 7256 + }, + { + "#": 7257 + } + ], + { + "x": 375, + "y": 437.73575, + "index": 0, + "body": { + "#": 7251 + }, + "isInternal": false + }, + { + "x": 400, + "y": 437.73575, + "index": 1, + "body": { + "#": 7251 + }, + "isInternal": false + }, + { + "x": 400, + "y": 462.73575, + "index": 2, + "body": { + "#": 7251 + }, + "isInternal": false + }, + { + "x": 375, + "y": 462.73575, + "index": 3, + "body": { + "#": 7251 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7265 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7267 + }, + "max": { + "#": 7268 + } + }, + { + "x": 375, + "y": 437.73575 + }, + { + "x": 400, + "y": 462.73575 + }, + { + "x": 387.5, + "y": 447.32848 + }, + [ + { + "#": 7271 + }, + { + "#": 7272 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,9,9", + "startCol": 7, + "endCol": 8, + "startRow": 9, + "endRow": 9 + }, + { + "id": 317, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7275 + }, + "angle": 0, + "vertices": { + "#": 7276 + }, + "position": { + "#": 7281 + }, + "force": { + "#": 7282 + }, + "torque": 0, + "positionImpulse": { + "#": 7283 + }, + "constraintImpulse": { + "#": 7284 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7285 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7286 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7287 + }, + "bounds": { + "#": 7289 + }, + "positionPrev": { + "#": 7292 + }, + "anglePrev": 0, + "axes": { + "#": 7293 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7274 + }, + "sleepCounter": 0, + "region": { + "#": 7296 + } + }, + [ + { + "#": 7274 + } + ], + [ + { + "#": 7277 + }, + { + "#": 7278 + }, + { + "#": 7279 + }, + { + "#": 7280 + } + ], + { + "x": 400, + "y": 437.73575, + "index": 0, + "body": { + "#": 7274 + }, + "isInternal": false + }, + { + "x": 425, + "y": 437.73575, + "index": 1, + "body": { + "#": 7274 + }, + "isInternal": false + }, + { + "x": 425, + "y": 462.73575, + "index": 2, + "body": { + "#": 7274 + }, + "isInternal": false + }, + { + "x": 400, + "y": 462.73575, + "index": 3, + "body": { + "#": 7274 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7288 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7290 + }, + "max": { + "#": 7291 + } + }, + { + "x": 400, + "y": 437.73575 + }, + { + "x": 425, + "y": 462.73575 + }, + { + "x": 412.5, + "y": 447.32848 + }, + [ + { + "#": 7294 + }, + { + "#": 7295 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,8,9,9", + "startCol": 8, + "endCol": 8, + "startRow": 9, + "endRow": 9 + }, + { + "id": 318, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7298 + }, + "angle": 0, + "vertices": { + "#": 7299 + }, + "position": { + "#": 7304 + }, + "force": { + "#": 7305 + }, + "torque": 0, + "positionImpulse": { + "#": 7306 + }, + "constraintImpulse": { + "#": 7307 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7308 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7309 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7310 + }, + "bounds": { + "#": 7312 + }, + "positionPrev": { + "#": 7315 + }, + "anglePrev": 0, + "axes": { + "#": 7316 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7297 + }, + "sleepCounter": 0, + "region": { + "#": 7319 + } + }, + [ + { + "#": 7297 + } + ], + [ + { + "#": 7300 + }, + { + "#": 7301 + }, + { + "#": 7302 + }, + { + "#": 7303 + } + ], + { + "x": 425, + "y": 437.73575, + "index": 0, + "body": { + "#": 7297 + }, + "isInternal": false + }, + { + "x": 450, + "y": 437.73575, + "index": 1, + "body": { + "#": 7297 + }, + "isInternal": false + }, + { + "x": 450, + "y": 462.73575, + "index": 2, + "body": { + "#": 7297 + }, + "isInternal": false + }, + { + "x": 425, + "y": 462.73575, + "index": 3, + "body": { + "#": 7297 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7311 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7313 + }, + "max": { + "#": 7314 + } + }, + { + "x": 425, + "y": 437.73575 + }, + { + "x": 450, + "y": 462.73575 + }, + { + "x": 437.5, + "y": 447.32848 + }, + [ + { + "#": 7317 + }, + { + "#": 7318 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,9,9", + "startCol": 8, + "endCol": 9, + "startRow": 9, + "endRow": 9 + }, + { + "id": 319, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7321 + }, + "angle": 0, + "vertices": { + "#": 7322 + }, + "position": { + "#": 7327 + }, + "force": { + "#": 7328 + }, + "torque": 0, + "positionImpulse": { + "#": 7329 + }, + "constraintImpulse": { + "#": 7330 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7331 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7332 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7333 + }, + "bounds": { + "#": 7335 + }, + "positionPrev": { + "#": 7338 + }, + "anglePrev": 0, + "axes": { + "#": 7339 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7320 + }, + "sleepCounter": 0, + "region": { + "#": 7342 + } + }, + [ + { + "#": 7320 + } + ], + [ + { + "#": 7323 + }, + { + "#": 7324 + }, + { + "#": 7325 + }, + { + "#": 7326 + } + ], + { + "x": 450, + "y": 437.73575, + "index": 0, + "body": { + "#": 7320 + }, + "isInternal": false + }, + { + "x": 475, + "y": 437.73575, + "index": 1, + "body": { + "#": 7320 + }, + "isInternal": false + }, + { + "x": 475, + "y": 462.73575, + "index": 2, + "body": { + "#": 7320 + }, + "isInternal": false + }, + { + "x": 450, + "y": 462.73575, + "index": 3, + "body": { + "#": 7320 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7334 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7336 + }, + "max": { + "#": 7337 + } + }, + { + "x": 450, + "y": 437.73575 + }, + { + "x": 475, + "y": 462.73575 + }, + { + "x": 462.5, + "y": 447.32848 + }, + [ + { + "#": 7340 + }, + { + "#": 7341 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,9,9", + "startCol": 9, + "endCol": 9, + "startRow": 9, + "endRow": 9 + }, + { + "id": 320, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7344 + }, + "angle": 0, + "vertices": { + "#": 7345 + }, + "position": { + "#": 7350 + }, + "force": { + "#": 7351 + }, + "torque": 0, + "positionImpulse": { + "#": 7352 + }, + "constraintImpulse": { + "#": 7353 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7354 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7355 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7356 + }, + "bounds": { + "#": 7358 + }, + "positionPrev": { + "#": 7361 + }, + "anglePrev": 0, + "axes": { + "#": 7362 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7343 + }, + "sleepCounter": 0, + "region": { + "#": 7365 + } + }, + [ + { + "#": 7343 + } + ], + [ + { + "#": 7346 + }, + { + "#": 7347 + }, + { + "#": 7348 + }, + { + "#": 7349 + } + ], + { + "x": 475, + "y": 437.73575, + "index": 0, + "body": { + "#": 7343 + }, + "isInternal": false + }, + { + "x": 500, + "y": 437.73575, + "index": 1, + "body": { + "#": 7343 + }, + "isInternal": false + }, + { + "x": 500, + "y": 462.73575, + "index": 2, + "body": { + "#": 7343 + }, + "isInternal": false + }, + { + "x": 475, + "y": 462.73575, + "index": 3, + "body": { + "#": 7343 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7357 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7359 + }, + "max": { + "#": 7360 + } + }, + { + "x": 475, + "y": 437.73575 + }, + { + "x": 500, + "y": 462.73575 + }, + { + "x": 487.5, + "y": 447.32848 + }, + [ + { + "#": 7363 + }, + { + "#": 7364 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,9,9", + "startCol": 9, + "endCol": 10, + "startRow": 9, + "endRow": 9 + }, + { + "id": 321, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7367 + }, + "angle": 0, + "vertices": { + "#": 7368 + }, + "position": { + "#": 7373 + }, + "force": { + "#": 7374 + }, + "torque": 0, + "positionImpulse": { + "#": 7375 + }, + "constraintImpulse": { + "#": 7376 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7377 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7378 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7379 + }, + "bounds": { + "#": 7381 + }, + "positionPrev": { + "#": 7384 + }, + "anglePrev": 0, + "axes": { + "#": 7385 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7366 + }, + "sleepCounter": 0, + "region": { + "#": 7388 + } + }, + [ + { + "#": 7366 + } + ], + [ + { + "#": 7369 + }, + { + "#": 7370 + }, + { + "#": 7371 + }, + { + "#": 7372 + } + ], + { + "x": 500, + "y": 437.73575, + "index": 0, + "body": { + "#": 7366 + }, + "isInternal": false + }, + { + "x": 525, + "y": 437.73575, + "index": 1, + "body": { + "#": 7366 + }, + "isInternal": false + }, + { + "x": 525, + "y": 462.73575, + "index": 2, + "body": { + "#": 7366 + }, + "isInternal": false + }, + { + "x": 500, + "y": 462.73575, + "index": 3, + "body": { + "#": 7366 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7380 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7382 + }, + "max": { + "#": 7383 + } + }, + { + "x": 500, + "y": 437.73575 + }, + { + "x": 525, + "y": 462.73575 + }, + { + "x": 512.5, + "y": 447.32848 + }, + [ + { + "#": 7386 + }, + { + "#": 7387 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,9,9", + "startCol": 10, + "endCol": 10, + "startRow": 9, + "endRow": 9 + }, + { + "id": 322, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7390 + }, + "angle": 0, + "vertices": { + "#": 7391 + }, + "position": { + "#": 7396 + }, + "force": { + "#": 7397 + }, + "torque": 0, + "positionImpulse": { + "#": 7398 + }, + "constraintImpulse": { + "#": 7399 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7400 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7401 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7402 + }, + "bounds": { + "#": 7404 + }, + "positionPrev": { + "#": 7407 + }, + "anglePrev": 0, + "axes": { + "#": 7408 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7389 + }, + "sleepCounter": 0, + "region": { + "#": 7411 + } + }, + [ + { + "#": 7389 + } + ], + [ + { + "#": 7392 + }, + { + "#": 7393 + }, + { + "#": 7394 + }, + { + "#": 7395 + } + ], + { + "x": 525, + "y": 437.73575, + "index": 0, + "body": { + "#": 7389 + }, + "isInternal": false + }, + { + "x": 550, + "y": 437.73575, + "index": 1, + "body": { + "#": 7389 + }, + "isInternal": false + }, + { + "x": 550, + "y": 462.73575, + "index": 2, + "body": { + "#": 7389 + }, + "isInternal": false + }, + { + "x": 525, + "y": 462.73575, + "index": 3, + "body": { + "#": 7389 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7403 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7405 + }, + "max": { + "#": 7406 + } + }, + { + "x": 525, + "y": 437.73575 + }, + { + "x": 550, + "y": 462.73575 + }, + { + "x": 537.5, + "y": 447.32848 + }, + [ + { + "#": 7409 + }, + { + "#": 7410 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,9,9", + "startCol": 10, + "endCol": 11, + "startRow": 9, + "endRow": 9 + }, + { + "id": 323, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7413 + }, + "angle": 0, + "vertices": { + "#": 7414 + }, + "position": { + "#": 7419 + }, + "force": { + "#": 7420 + }, + "torque": 0, + "positionImpulse": { + "#": 7421 + }, + "constraintImpulse": { + "#": 7422 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7423 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7424 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7425 + }, + "bounds": { + "#": 7427 + }, + "positionPrev": { + "#": 7430 + }, + "anglePrev": 0, + "axes": { + "#": 7431 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7412 + }, + "sleepCounter": 0, + "region": { + "#": 7434 + } + }, + [ + { + "#": 7412 + } + ], + [ + { + "#": 7415 + }, + { + "#": 7416 + }, + { + "#": 7417 + }, + { + "#": 7418 + } + ], + { + "x": 550, + "y": 437.73575, + "index": 0, + "body": { + "#": 7412 + }, + "isInternal": false + }, + { + "x": 575, + "y": 437.73575, + "index": 1, + "body": { + "#": 7412 + }, + "isInternal": false + }, + { + "x": 575, + "y": 462.73575, + "index": 2, + "body": { + "#": 7412 + }, + "isInternal": false + }, + { + "x": 550, + "y": 462.73575, + "index": 3, + "body": { + "#": 7412 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7426 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7428 + }, + "max": { + "#": 7429 + } + }, + { + "x": 550, + "y": 437.73575 + }, + { + "x": 575, + "y": 462.73575 + }, + { + "x": 562.5, + "y": 447.32848 + }, + [ + { + "#": 7432 + }, + { + "#": 7433 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,11,9,9", + "startCol": 11, + "endCol": 11, + "startRow": 9, + "endRow": 9 + }, + { + "id": 324, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7436 + }, + "angle": 0, + "vertices": { + "#": 7437 + }, + "position": { + "#": 7442 + }, + "force": { + "#": 7443 + }, + "torque": 0, + "positionImpulse": { + "#": 7444 + }, + "constraintImpulse": { + "#": 7445 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7446 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7447 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7448 + }, + "bounds": { + "#": 7450 + }, + "positionPrev": { + "#": 7453 + }, + "anglePrev": 0, + "axes": { + "#": 7454 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7435 + }, + "sleepCounter": 0, + "region": { + "#": 7457 + } + }, + [ + { + "#": 7435 + } + ], + [ + { + "#": 7438 + }, + { + "#": 7439 + }, + { + "#": 7440 + }, + { + "#": 7441 + } + ], + { + "x": 575, + "y": 437.73575, + "index": 0, + "body": { + "#": 7435 + }, + "isInternal": false + }, + { + "x": 600, + "y": 437.73575, + "index": 1, + "body": { + "#": 7435 + }, + "isInternal": false + }, + { + "x": 600, + "y": 462.73575, + "index": 2, + "body": { + "#": 7435 + }, + "isInternal": false + }, + { + "x": 575, + "y": 462.73575, + "index": 3, + "body": { + "#": 7435 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7449 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7451 + }, + "max": { + "#": 7452 + } + }, + { + "x": 575, + "y": 437.73575 + }, + { + "x": 600, + "y": 462.73575 + }, + { + "x": 587.5, + "y": 447.32848 + }, + [ + { + "#": 7455 + }, + { + "#": 7456 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,9,9", + "startCol": 11, + "endCol": 12, + "startRow": 9, + "endRow": 9 + }, + { + "id": 325, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7459 + }, + "angle": 0, + "vertices": { + "#": 7460 + }, + "position": { + "#": 7465 + }, + "force": { + "#": 7466 + }, + "torque": 0, + "positionImpulse": { + "#": 7467 + }, + "constraintImpulse": { + "#": 7468 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7469 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7470 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7471 + }, + "bounds": { + "#": 7473 + }, + "positionPrev": { + "#": 7476 + }, + "anglePrev": 0, + "axes": { + "#": 7477 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7458 + }, + "sleepCounter": 0, + "region": { + "#": 7480 + } + }, + [ + { + "#": 7458 + } + ], + [ + { + "#": 7461 + }, + { + "#": 7462 + }, + { + "#": 7463 + }, + { + "#": 7464 + } + ], + { + "x": 600, + "y": 437.73575, + "index": 0, + "body": { + "#": 7458 + }, + "isInternal": false + }, + { + "x": 625, + "y": 437.73575, + "index": 1, + "body": { + "#": 7458 + }, + "isInternal": false + }, + { + "x": 625, + "y": 462.73575, + "index": 2, + "body": { + "#": 7458 + }, + "isInternal": false + }, + { + "x": 600, + "y": 462.73575, + "index": 3, + "body": { + "#": 7458 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7472 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7474 + }, + "max": { + "#": 7475 + } + }, + { + "x": 600, + "y": 437.73575 + }, + { + "x": 625, + "y": 462.73575 + }, + { + "x": 612.5, + "y": 447.32848 + }, + [ + { + "#": 7478 + }, + { + "#": 7479 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,9,9", + "startCol": 12, + "endCol": 13, + "startRow": 9, + "endRow": 9 + }, + { + "id": 326, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7482 + }, + "angle": 0, + "vertices": { + "#": 7483 + }, + "position": { + "#": 7488 + }, + "force": { + "#": 7489 + }, + "torque": 0, + "positionImpulse": { + "#": 7490 + }, + "constraintImpulse": { + "#": 7491 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7492 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7493 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7494 + }, + "bounds": { + "#": 7496 + }, + "positionPrev": { + "#": 7499 + }, + "anglePrev": 0, + "axes": { + "#": 7500 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7481 + }, + "sleepCounter": 0, + "region": { + "#": 7503 + } + }, + [ + { + "#": 7481 + } + ], + [ + { + "#": 7484 + }, + { + "#": 7485 + }, + { + "#": 7486 + }, + { + "#": 7487 + } + ], + { + "x": 625, + "y": 437.73575, + "index": 0, + "body": { + "#": 7481 + }, + "isInternal": false + }, + { + "x": 650, + "y": 437.73575, + "index": 1, + "body": { + "#": 7481 + }, + "isInternal": false + }, + { + "x": 650, + "y": 462.73575, + "index": 2, + "body": { + "#": 7481 + }, + "isInternal": false + }, + { + "x": 625, + "y": 462.73575, + "index": 3, + "body": { + "#": 7481 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7495 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7497 + }, + "max": { + "#": 7498 + } + }, + { + "x": 625, + "y": 437.73575 + }, + { + "x": 650, + "y": 462.73575 + }, + { + "x": 637.5, + "y": 447.32848 + }, + [ + { + "#": 7501 + }, + { + "#": 7502 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,13,9,9", + "startCol": 13, + "endCol": 13, + "startRow": 9, + "endRow": 9 + }, + { + "id": 327, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7505 + }, + "angle": 0, + "vertices": { + "#": 7506 + }, + "position": { + "#": 7511 + }, + "force": { + "#": 7512 + }, + "torque": 0, + "positionImpulse": { + "#": 7513 + }, + "constraintImpulse": { + "#": 7514 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7515 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7516 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7517 + }, + "bounds": { + "#": 7519 + }, + "positionPrev": { + "#": 7522 + }, + "anglePrev": 0, + "axes": { + "#": 7523 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7504 + }, + "sleepCounter": 0, + "region": { + "#": 7526 + } + }, + [ + { + "#": 7504 + } + ], + [ + { + "#": 7507 + }, + { + "#": 7508 + }, + { + "#": 7509 + }, + { + "#": 7510 + } + ], + { + "x": 650, + "y": 437.73575, + "index": 0, + "body": { + "#": 7504 + }, + "isInternal": false + }, + { + "x": 675, + "y": 437.73575, + "index": 1, + "body": { + "#": 7504 + }, + "isInternal": false + }, + { + "x": 675, + "y": 462.73575, + "index": 2, + "body": { + "#": 7504 + }, + "isInternal": false + }, + { + "x": 650, + "y": 462.73575, + "index": 3, + "body": { + "#": 7504 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7518 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7520 + }, + "max": { + "#": 7521 + } + }, + { + "x": 650, + "y": 437.73575 + }, + { + "x": 675, + "y": 462.73575 + }, + { + "x": 662.5, + "y": 447.32848 + }, + [ + { + "#": 7524 + }, + { + "#": 7525 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,9,9", + "startCol": 13, + "endCol": 14, + "startRow": 9, + "endRow": 9 + }, + { + "id": 328, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7528 + }, + "angle": 0, + "vertices": { + "#": 7529 + }, + "position": { + "#": 7534 + }, + "force": { + "#": 7535 + }, + "torque": 0, + "positionImpulse": { + "#": 7536 + }, + "constraintImpulse": { + "#": 7537 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7538 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7539 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7540 + }, + "bounds": { + "#": 7542 + }, + "positionPrev": { + "#": 7545 + }, + "anglePrev": 0, + "axes": { + "#": 7546 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7527 + }, + "sleepCounter": 0, + "region": { + "#": 7549 + } + }, + [ + { + "#": 7527 + } + ], + [ + { + "#": 7530 + }, + { + "#": 7531 + }, + { + "#": 7532 + }, + { + "#": 7533 + } + ], + { + "x": 675, + "y": 437.73575, + "index": 0, + "body": { + "#": 7527 + }, + "isInternal": false + }, + { + "x": 700, + "y": 437.73575, + "index": 1, + "body": { + "#": 7527 + }, + "isInternal": false + }, + { + "x": 700, + "y": 462.73575, + "index": 2, + "body": { + "#": 7527 + }, + "isInternal": false + }, + { + "x": 675, + "y": 462.73575, + "index": 3, + "body": { + "#": 7527 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7541 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7543 + }, + "max": { + "#": 7544 + } + }, + { + "x": 675, + "y": 437.73575 + }, + { + "x": 700, + "y": 462.73575 + }, + { + "x": 687.5, + "y": 447.32848 + }, + [ + { + "#": 7547 + }, + { + "#": 7548 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,14,9,9", + "startCol": 14, + "endCol": 14, + "startRow": 9, + "endRow": 9 + }, + { + "id": 329, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7551 + }, + "angle": 0, + "vertices": { + "#": 7552 + }, + "position": { + "#": 7557 + }, + "force": { + "#": 7558 + }, + "torque": 0, + "positionImpulse": { + "#": 7559 + }, + "constraintImpulse": { + "#": 7560 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7561 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7562 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7563 + }, + "bounds": { + "#": 7565 + }, + "positionPrev": { + "#": 7568 + }, + "anglePrev": 0, + "axes": { + "#": 7569 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7550 + }, + "sleepCounter": 0, + "region": { + "#": 7572 + } + }, + [ + { + "#": 7550 + } + ], + [ + { + "#": 7553 + }, + { + "#": 7554 + }, + { + "#": 7555 + }, + { + "#": 7556 + } + ], + { + "x": 700, + "y": 437.73575, + "index": 0, + "body": { + "#": 7550 + }, + "isInternal": false + }, + { + "x": 725, + "y": 437.73575, + "index": 1, + "body": { + "#": 7550 + }, + "isInternal": false + }, + { + "x": 725, + "y": 462.73575, + "index": 2, + "body": { + "#": 7550 + }, + "isInternal": false + }, + { + "x": 700, + "y": 462.73575, + "index": 3, + "body": { + "#": 7550 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 450.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7564 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7566 + }, + "max": { + "#": 7567 + } + }, + { + "x": 700, + "y": 437.73575 + }, + { + "x": 725, + "y": 462.73575 + }, + { + "x": 712.5, + "y": 447.32848 + }, + [ + { + "#": 7570 + }, + { + "#": 7571 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,9,9", + "startCol": 14, + "endCol": 15, + "startRow": 9, + "endRow": 9 + }, + { + "id": 330, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7574 + }, + "angle": 0, + "vertices": { + "#": 7575 + }, + "position": { + "#": 7580 + }, + "force": { + "#": 7581 + }, + "torque": 0, + "positionImpulse": { + "#": 7582 + }, + "constraintImpulse": { + "#": 7583 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7584 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7585 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7586 + }, + "bounds": { + "#": 7588 + }, + "positionPrev": { + "#": 7591 + }, + "anglePrev": 0, + "axes": { + "#": 7592 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7573 + }, + "sleepCounter": 0, + "region": { + "#": 7595 + } + }, + [ + { + "#": 7573 + } + ], + [ + { + "#": 7576 + }, + { + "#": 7577 + }, + { + "#": 7578 + }, + { + "#": 7579 + } + ], + { + "x": 100, + "y": 462.73575, + "index": 0, + "body": { + "#": 7573 + }, + "isInternal": false + }, + { + "x": 125, + "y": 462.73575, + "index": 1, + "body": { + "#": 7573 + }, + "isInternal": false + }, + { + "x": 125, + "y": 487.73575, + "index": 2, + "body": { + "#": 7573 + }, + "isInternal": false + }, + { + "x": 100, + "y": 487.73575, + "index": 3, + "body": { + "#": 7573 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7587 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7589 + }, + "max": { + "#": 7590 + } + }, + { + "x": 100, + "y": 462.73575 + }, + { + "x": 125, + "y": 487.73575 + }, + { + "x": 112.5, + "y": 472.32848 + }, + [ + { + "#": 7593 + }, + { + "#": 7594 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,9,10", + "startCol": 2, + "endCol": 2, + "startRow": 9, + "endRow": 10 + }, + { + "id": 331, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7597 + }, + "angle": 0, + "vertices": { + "#": 7598 + }, + "position": { + "#": 7603 + }, + "force": { + "#": 7604 + }, + "torque": 0, + "positionImpulse": { + "#": 7605 + }, + "constraintImpulse": { + "#": 7606 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7607 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7608 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7609 + }, + "bounds": { + "#": 7611 + }, + "positionPrev": { + "#": 7614 + }, + "anglePrev": 0, + "axes": { + "#": 7615 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7596 + }, + "sleepCounter": 0, + "region": { + "#": 7618 + } + }, + [ + { + "#": 7596 + } + ], + [ + { + "#": 7599 + }, + { + "#": 7600 + }, + { + "#": 7601 + }, + { + "#": 7602 + } + ], + { + "x": 125, + "y": 462.73575, + "index": 0, + "body": { + "#": 7596 + }, + "isInternal": false + }, + { + "x": 150, + "y": 462.73575, + "index": 1, + "body": { + "#": 7596 + }, + "isInternal": false + }, + { + "x": 150, + "y": 487.73575, + "index": 2, + "body": { + "#": 7596 + }, + "isInternal": false + }, + { + "x": 125, + "y": 487.73575, + "index": 3, + "body": { + "#": 7596 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7610 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7612 + }, + "max": { + "#": 7613 + } + }, + { + "x": 125, + "y": 462.73575 + }, + { + "x": 150, + "y": 487.73575 + }, + { + "x": 137.5, + "y": 472.32848 + }, + [ + { + "#": 7616 + }, + { + "#": 7617 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,9,10", + "startCol": 2, + "endCol": 3, + "startRow": 9, + "endRow": 10 + }, + { + "id": 332, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7620 + }, + "angle": 0, + "vertices": { + "#": 7621 + }, + "position": { + "#": 7626 + }, + "force": { + "#": 7627 + }, + "torque": 0, + "positionImpulse": { + "#": 7628 + }, + "constraintImpulse": { + "#": 7629 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7630 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7631 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7632 + }, + "bounds": { + "#": 7634 + }, + "positionPrev": { + "#": 7637 + }, + "anglePrev": 0, + "axes": { + "#": 7638 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7619 + }, + "sleepCounter": 0, + "region": { + "#": 7641 + } + }, + [ + { + "#": 7619 + } + ], + [ + { + "#": 7622 + }, + { + "#": 7623 + }, + { + "#": 7624 + }, + { + "#": 7625 + } + ], + { + "x": 150, + "y": 462.73575, + "index": 0, + "body": { + "#": 7619 + }, + "isInternal": false + }, + { + "x": 175, + "y": 462.73575, + "index": 1, + "body": { + "#": 7619 + }, + "isInternal": false + }, + { + "x": 175, + "y": 487.73575, + "index": 2, + "body": { + "#": 7619 + }, + "isInternal": false + }, + { + "x": 150, + "y": 487.73575, + "index": 3, + "body": { + "#": 7619 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7633 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7635 + }, + "max": { + "#": 7636 + } + }, + { + "x": 150, + "y": 462.73575 + }, + { + "x": 175, + "y": 487.73575 + }, + { + "x": 162.5, + "y": 472.32848 + }, + [ + { + "#": 7639 + }, + { + "#": 7640 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,3,9,10", + "startCol": 3, + "endCol": 3, + "startRow": 9, + "endRow": 10 + }, + { + "id": 333, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7643 + }, + "angle": 0, + "vertices": { + "#": 7644 + }, + "position": { + "#": 7649 + }, + "force": { + "#": 7650 + }, + "torque": 0, + "positionImpulse": { + "#": 7651 + }, + "constraintImpulse": { + "#": 7652 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7653 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7654 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7655 + }, + "bounds": { + "#": 7657 + }, + "positionPrev": { + "#": 7660 + }, + "anglePrev": 0, + "axes": { + "#": 7661 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7642 + }, + "sleepCounter": 0, + "region": { + "#": 7664 + } + }, + [ + { + "#": 7642 + } + ], + [ + { + "#": 7645 + }, + { + "#": 7646 + }, + { + "#": 7647 + }, + { + "#": 7648 + } + ], + { + "x": 175, + "y": 462.73575, + "index": 0, + "body": { + "#": 7642 + }, + "isInternal": false + }, + { + "x": 200, + "y": 462.73575, + "index": 1, + "body": { + "#": 7642 + }, + "isInternal": false + }, + { + "x": 200, + "y": 487.73575, + "index": 2, + "body": { + "#": 7642 + }, + "isInternal": false + }, + { + "x": 175, + "y": 487.73575, + "index": 3, + "body": { + "#": 7642 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7656 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7658 + }, + "max": { + "#": 7659 + } + }, + { + "x": 175, + "y": 462.73575 + }, + { + "x": 200, + "y": 487.73575 + }, + { + "x": 187.5, + "y": 472.32848 + }, + [ + { + "#": 7662 + }, + { + "#": 7663 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,9,10", + "startCol": 3, + "endCol": 4, + "startRow": 9, + "endRow": 10 + }, + { + "id": 334, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7666 + }, + "angle": 0, + "vertices": { + "#": 7667 + }, + "position": { + "#": 7672 + }, + "force": { + "#": 7673 + }, + "torque": 0, + "positionImpulse": { + "#": 7674 + }, + "constraintImpulse": { + "#": 7675 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7676 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7677 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7678 + }, + "bounds": { + "#": 7680 + }, + "positionPrev": { + "#": 7683 + }, + "anglePrev": 0, + "axes": { + "#": 7684 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7665 + }, + "sleepCounter": 0, + "region": { + "#": 7687 + } + }, + [ + { + "#": 7665 + } + ], + [ + { + "#": 7668 + }, + { + "#": 7669 + }, + { + "#": 7670 + }, + { + "#": 7671 + } + ], + { + "x": 200, + "y": 462.73575, + "index": 0, + "body": { + "#": 7665 + }, + "isInternal": false + }, + { + "x": 225, + "y": 462.73575, + "index": 1, + "body": { + "#": 7665 + }, + "isInternal": false + }, + { + "x": 225, + "y": 487.73575, + "index": 2, + "body": { + "#": 7665 + }, + "isInternal": false + }, + { + "x": 200, + "y": 487.73575, + "index": 3, + "body": { + "#": 7665 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7679 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7681 + }, + "max": { + "#": 7682 + } + }, + { + "x": 200, + "y": 462.73575 + }, + { + "x": 225, + "y": 487.73575 + }, + { + "x": 212.5, + "y": 472.32848 + }, + [ + { + "#": 7685 + }, + { + "#": 7686 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,9,10", + "startCol": 4, + "endCol": 4, + "startRow": 9, + "endRow": 10 + }, + { + "id": 335, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7689 + }, + "angle": 0, + "vertices": { + "#": 7690 + }, + "position": { + "#": 7695 + }, + "force": { + "#": 7696 + }, + "torque": 0, + "positionImpulse": { + "#": 7697 + }, + "constraintImpulse": { + "#": 7698 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7699 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7700 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7701 + }, + "bounds": { + "#": 7703 + }, + "positionPrev": { + "#": 7706 + }, + "anglePrev": 0, + "axes": { + "#": 7707 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7688 + }, + "sleepCounter": 0, + "region": { + "#": 7710 + } + }, + [ + { + "#": 7688 + } + ], + [ + { + "#": 7691 + }, + { + "#": 7692 + }, + { + "#": 7693 + }, + { + "#": 7694 + } + ], + { + "x": 225, + "y": 462.73575, + "index": 0, + "body": { + "#": 7688 + }, + "isInternal": false + }, + { + "x": 250, + "y": 462.73575, + "index": 1, + "body": { + "#": 7688 + }, + "isInternal": false + }, + { + "x": 250, + "y": 487.73575, + "index": 2, + "body": { + "#": 7688 + }, + "isInternal": false + }, + { + "x": 225, + "y": 487.73575, + "index": 3, + "body": { + "#": 7688 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7702 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7704 + }, + "max": { + "#": 7705 + } + }, + { + "x": 225, + "y": 462.73575 + }, + { + "x": 250, + "y": 487.73575 + }, + { + "x": 237.5, + "y": 472.32848 + }, + [ + { + "#": 7708 + }, + { + "#": 7709 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,9,10", + "startCol": 4, + "endCol": 5, + "startRow": 9, + "endRow": 10 + }, + { + "id": 336, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7712 + }, + "angle": 0, + "vertices": { + "#": 7713 + }, + "position": { + "#": 7718 + }, + "force": { + "#": 7719 + }, + "torque": 0, + "positionImpulse": { + "#": 7720 + }, + "constraintImpulse": { + "#": 7721 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7722 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7723 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7724 + }, + "bounds": { + "#": 7726 + }, + "positionPrev": { + "#": 7729 + }, + "anglePrev": 0, + "axes": { + "#": 7730 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7711 + }, + "sleepCounter": 0, + "region": { + "#": 7733 + } + }, + [ + { + "#": 7711 + } + ], + [ + { + "#": 7714 + }, + { + "#": 7715 + }, + { + "#": 7716 + }, + { + "#": 7717 + } + ], + { + "x": 250, + "y": 462.73575, + "index": 0, + "body": { + "#": 7711 + }, + "isInternal": false + }, + { + "x": 275, + "y": 462.73575, + "index": 1, + "body": { + "#": 7711 + }, + "isInternal": false + }, + { + "x": 275, + "y": 487.73575, + "index": 2, + "body": { + "#": 7711 + }, + "isInternal": false + }, + { + "x": 250, + "y": 487.73575, + "index": 3, + "body": { + "#": 7711 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7725 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7727 + }, + "max": { + "#": 7728 + } + }, + { + "x": 250, + "y": 462.73575 + }, + { + "x": 275, + "y": 487.73575 + }, + { + "x": 262.5, + "y": 472.32848 + }, + [ + { + "#": 7731 + }, + { + "#": 7732 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,9,10", + "startCol": 5, + "endCol": 5, + "startRow": 9, + "endRow": 10 + }, + { + "id": 337, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7735 + }, + "angle": 0, + "vertices": { + "#": 7736 + }, + "position": { + "#": 7741 + }, + "force": { + "#": 7742 + }, + "torque": 0, + "positionImpulse": { + "#": 7743 + }, + "constraintImpulse": { + "#": 7744 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7745 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7746 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7747 + }, + "bounds": { + "#": 7749 + }, + "positionPrev": { + "#": 7752 + }, + "anglePrev": 0, + "axes": { + "#": 7753 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7734 + }, + "sleepCounter": 0, + "region": { + "#": 7756 + } + }, + [ + { + "#": 7734 + } + ], + [ + { + "#": 7737 + }, + { + "#": 7738 + }, + { + "#": 7739 + }, + { + "#": 7740 + } + ], + { + "x": 275, + "y": 462.73575, + "index": 0, + "body": { + "#": 7734 + }, + "isInternal": false + }, + { + "x": 300, + "y": 462.73575, + "index": 1, + "body": { + "#": 7734 + }, + "isInternal": false + }, + { + "x": 300, + "y": 487.73575, + "index": 2, + "body": { + "#": 7734 + }, + "isInternal": false + }, + { + "x": 275, + "y": 487.73575, + "index": 3, + "body": { + "#": 7734 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7748 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7750 + }, + "max": { + "#": 7751 + } + }, + { + "x": 275, + "y": 462.73575 + }, + { + "x": 300, + "y": 487.73575 + }, + { + "x": 287.5, + "y": 472.32848 + }, + [ + { + "#": 7754 + }, + { + "#": 7755 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,9,10", + "startCol": 5, + "endCol": 6, + "startRow": 9, + "endRow": 10 + }, + { + "id": 338, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7758 + }, + "angle": 0, + "vertices": { + "#": 7759 + }, + "position": { + "#": 7764 + }, + "force": { + "#": 7765 + }, + "torque": 0, + "positionImpulse": { + "#": 7766 + }, + "constraintImpulse": { + "#": 7767 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7768 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7769 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7770 + }, + "bounds": { + "#": 7772 + }, + "positionPrev": { + "#": 7775 + }, + "anglePrev": 0, + "axes": { + "#": 7776 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7757 + }, + "sleepCounter": 0, + "region": { + "#": 7779 + } + }, + [ + { + "#": 7757 + } + ], + [ + { + "#": 7760 + }, + { + "#": 7761 + }, + { + "#": 7762 + }, + { + "#": 7763 + } + ], + { + "x": 300, + "y": 462.73575, + "index": 0, + "body": { + "#": 7757 + }, + "isInternal": false + }, + { + "x": 325, + "y": 462.73575, + "index": 1, + "body": { + "#": 7757 + }, + "isInternal": false + }, + { + "x": 325, + "y": 487.73575, + "index": 2, + "body": { + "#": 7757 + }, + "isInternal": false + }, + { + "x": 300, + "y": 487.73575, + "index": 3, + "body": { + "#": 7757 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7771 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7773 + }, + "max": { + "#": 7774 + } + }, + { + "x": 300, + "y": 462.73575 + }, + { + "x": 325, + "y": 487.73575 + }, + { + "x": 312.5, + "y": 472.32848 + }, + [ + { + "#": 7777 + }, + { + "#": 7778 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,9,10", + "startCol": 6, + "endCol": 6, + "startRow": 9, + "endRow": 10 + }, + { + "id": 339, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7781 + }, + "angle": 0, + "vertices": { + "#": 7782 + }, + "position": { + "#": 7787 + }, + "force": { + "#": 7788 + }, + "torque": 0, + "positionImpulse": { + "#": 7789 + }, + "constraintImpulse": { + "#": 7790 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7791 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7792 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7793 + }, + "bounds": { + "#": 7795 + }, + "positionPrev": { + "#": 7798 + }, + "anglePrev": 0, + "axes": { + "#": 7799 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7780 + }, + "sleepCounter": 0, + "region": { + "#": 7802 + } + }, + [ + { + "#": 7780 + } + ], + [ + { + "#": 7783 + }, + { + "#": 7784 + }, + { + "#": 7785 + }, + { + "#": 7786 + } + ], + { + "x": 325, + "y": 462.73575, + "index": 0, + "body": { + "#": 7780 + }, + "isInternal": false + }, + { + "x": 350, + "y": 462.73575, + "index": 1, + "body": { + "#": 7780 + }, + "isInternal": false + }, + { + "x": 350, + "y": 487.73575, + "index": 2, + "body": { + "#": 7780 + }, + "isInternal": false + }, + { + "x": 325, + "y": 487.73575, + "index": 3, + "body": { + "#": 7780 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7794 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7796 + }, + "max": { + "#": 7797 + } + }, + { + "x": 325, + "y": 462.73575 + }, + { + "x": 350, + "y": 487.73575 + }, + { + "x": 337.5, + "y": 472.32848 + }, + [ + { + "#": 7800 + }, + { + "#": 7801 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,9,10", + "startCol": 6, + "endCol": 7, + "startRow": 9, + "endRow": 10 + }, + { + "id": 340, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7804 + }, + "angle": 0, + "vertices": { + "#": 7805 + }, + "position": { + "#": 7810 + }, + "force": { + "#": 7811 + }, + "torque": 0, + "positionImpulse": { + "#": 7812 + }, + "constraintImpulse": { + "#": 7813 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7814 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7815 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7816 + }, + "bounds": { + "#": 7818 + }, + "positionPrev": { + "#": 7821 + }, + "anglePrev": 0, + "axes": { + "#": 7822 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7803 + }, + "sleepCounter": 0, + "region": { + "#": 7825 + } + }, + [ + { + "#": 7803 + } + ], + [ + { + "#": 7806 + }, + { + "#": 7807 + }, + { + "#": 7808 + }, + { + "#": 7809 + } + ], + { + "x": 350, + "y": 462.73575, + "index": 0, + "body": { + "#": 7803 + }, + "isInternal": false + }, + { + "x": 375, + "y": 462.73575, + "index": 1, + "body": { + "#": 7803 + }, + "isInternal": false + }, + { + "x": 375, + "y": 487.73575, + "index": 2, + "body": { + "#": 7803 + }, + "isInternal": false + }, + { + "x": 350, + "y": 487.73575, + "index": 3, + "body": { + "#": 7803 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7817 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7819 + }, + "max": { + "#": 7820 + } + }, + { + "x": 350, + "y": 462.73575 + }, + { + "x": 375, + "y": 487.73575 + }, + { + "x": 362.5, + "y": 472.32848 + }, + [ + { + "#": 7823 + }, + { + "#": 7824 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,9,10", + "startCol": 7, + "endCol": 7, + "startRow": 9, + "endRow": 10 + }, + { + "id": 341, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7827 + }, + "angle": 0, + "vertices": { + "#": 7828 + }, + "position": { + "#": 7833 + }, + "force": { + "#": 7834 + }, + "torque": 0, + "positionImpulse": { + "#": 7835 + }, + "constraintImpulse": { + "#": 7836 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7837 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7838 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7839 + }, + "bounds": { + "#": 7841 + }, + "positionPrev": { + "#": 7844 + }, + "anglePrev": 0, + "axes": { + "#": 7845 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7826 + }, + "sleepCounter": 0, + "region": { + "#": 7848 + } + }, + [ + { + "#": 7826 + } + ], + [ + { + "#": 7829 + }, + { + "#": 7830 + }, + { + "#": 7831 + }, + { + "#": 7832 + } + ], + { + "x": 375, + "y": 462.73575, + "index": 0, + "body": { + "#": 7826 + }, + "isInternal": false + }, + { + "x": 400, + "y": 462.73575, + "index": 1, + "body": { + "#": 7826 + }, + "isInternal": false + }, + { + "x": 400, + "y": 487.73575, + "index": 2, + "body": { + "#": 7826 + }, + "isInternal": false + }, + { + "x": 375, + "y": 487.73575, + "index": 3, + "body": { + "#": 7826 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7840 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7842 + }, + "max": { + "#": 7843 + } + }, + { + "x": 375, + "y": 462.73575 + }, + { + "x": 400, + "y": 487.73575 + }, + { + "x": 387.5, + "y": 472.32848 + }, + [ + { + "#": 7846 + }, + { + "#": 7847 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,9,10", + "startCol": 7, + "endCol": 8, + "startRow": 9, + "endRow": 10 + }, + { + "id": 342, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7850 + }, + "angle": 0, + "vertices": { + "#": 7851 + }, + "position": { + "#": 7856 + }, + "force": { + "#": 7857 + }, + "torque": 0, + "positionImpulse": { + "#": 7858 + }, + "constraintImpulse": { + "#": 7859 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7860 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7861 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7862 + }, + "bounds": { + "#": 7864 + }, + "positionPrev": { + "#": 7867 + }, + "anglePrev": 0, + "axes": { + "#": 7868 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7849 + }, + "sleepCounter": 0, + "region": { + "#": 7871 + } + }, + [ + { + "#": 7849 + } + ], + [ + { + "#": 7852 + }, + { + "#": 7853 + }, + { + "#": 7854 + }, + { + "#": 7855 + } + ], + { + "x": 400, + "y": 462.73575, + "index": 0, + "body": { + "#": 7849 + }, + "isInternal": false + }, + { + "x": 425, + "y": 462.73575, + "index": 1, + "body": { + "#": 7849 + }, + "isInternal": false + }, + { + "x": 425, + "y": 487.73575, + "index": 2, + "body": { + "#": 7849 + }, + "isInternal": false + }, + { + "x": 400, + "y": 487.73575, + "index": 3, + "body": { + "#": 7849 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7863 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7865 + }, + "max": { + "#": 7866 + } + }, + { + "x": 400, + "y": 462.73575 + }, + { + "x": 425, + "y": 487.73575 + }, + { + "x": 412.5, + "y": 472.32848 + }, + [ + { + "#": 7869 + }, + { + "#": 7870 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,8,9,10", + "startCol": 8, + "endCol": 8, + "startRow": 9, + "endRow": 10 + }, + { + "id": 343, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7873 + }, + "angle": 0, + "vertices": { + "#": 7874 + }, + "position": { + "#": 7879 + }, + "force": { + "#": 7880 + }, + "torque": 0, + "positionImpulse": { + "#": 7881 + }, + "constraintImpulse": { + "#": 7882 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7883 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7884 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7885 + }, + "bounds": { + "#": 7887 + }, + "positionPrev": { + "#": 7890 + }, + "anglePrev": 0, + "axes": { + "#": 7891 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7872 + }, + "sleepCounter": 0, + "region": { + "#": 7894 + } + }, + [ + { + "#": 7872 + } + ], + [ + { + "#": 7875 + }, + { + "#": 7876 + }, + { + "#": 7877 + }, + { + "#": 7878 + } + ], + { + "x": 425, + "y": 462.73575, + "index": 0, + "body": { + "#": 7872 + }, + "isInternal": false + }, + { + "x": 450, + "y": 462.73575, + "index": 1, + "body": { + "#": 7872 + }, + "isInternal": false + }, + { + "x": 450, + "y": 487.73575, + "index": 2, + "body": { + "#": 7872 + }, + "isInternal": false + }, + { + "x": 425, + "y": 487.73575, + "index": 3, + "body": { + "#": 7872 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7886 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7888 + }, + "max": { + "#": 7889 + } + }, + { + "x": 425, + "y": 462.73575 + }, + { + "x": 450, + "y": 487.73575 + }, + { + "x": 437.5, + "y": 472.32848 + }, + [ + { + "#": 7892 + }, + { + "#": 7893 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,9,10", + "startCol": 8, + "endCol": 9, + "startRow": 9, + "endRow": 10 + }, + { + "id": 344, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7896 + }, + "angle": 0, + "vertices": { + "#": 7897 + }, + "position": { + "#": 7902 + }, + "force": { + "#": 7903 + }, + "torque": 0, + "positionImpulse": { + "#": 7904 + }, + "constraintImpulse": { + "#": 7905 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7906 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7907 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7908 + }, + "bounds": { + "#": 7910 + }, + "positionPrev": { + "#": 7913 + }, + "anglePrev": 0, + "axes": { + "#": 7914 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7895 + }, + "sleepCounter": 0, + "region": { + "#": 7917 + } + }, + [ + { + "#": 7895 + } + ], + [ + { + "#": 7898 + }, + { + "#": 7899 + }, + { + "#": 7900 + }, + { + "#": 7901 + } + ], + { + "x": 450, + "y": 462.73575, + "index": 0, + "body": { + "#": 7895 + }, + "isInternal": false + }, + { + "x": 475, + "y": 462.73575, + "index": 1, + "body": { + "#": 7895 + }, + "isInternal": false + }, + { + "x": 475, + "y": 487.73575, + "index": 2, + "body": { + "#": 7895 + }, + "isInternal": false + }, + { + "x": 450, + "y": 487.73575, + "index": 3, + "body": { + "#": 7895 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7909 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7911 + }, + "max": { + "#": 7912 + } + }, + { + "x": 450, + "y": 462.73575 + }, + { + "x": 475, + "y": 487.73575 + }, + { + "x": 462.5, + "y": 472.32848 + }, + [ + { + "#": 7915 + }, + { + "#": 7916 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,9,10", + "startCol": 9, + "endCol": 9, + "startRow": 9, + "endRow": 10 + }, + { + "id": 345, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7919 + }, + "angle": 0, + "vertices": { + "#": 7920 + }, + "position": { + "#": 7925 + }, + "force": { + "#": 7926 + }, + "torque": 0, + "positionImpulse": { + "#": 7927 + }, + "constraintImpulse": { + "#": 7928 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7929 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7930 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7931 + }, + "bounds": { + "#": 7933 + }, + "positionPrev": { + "#": 7936 + }, + "anglePrev": 0, + "axes": { + "#": 7937 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7918 + }, + "sleepCounter": 0, + "region": { + "#": 7940 + } + }, + [ + { + "#": 7918 + } + ], + [ + { + "#": 7921 + }, + { + "#": 7922 + }, + { + "#": 7923 + }, + { + "#": 7924 + } + ], + { + "x": 475, + "y": 462.73575, + "index": 0, + "body": { + "#": 7918 + }, + "isInternal": false + }, + { + "x": 500, + "y": 462.73575, + "index": 1, + "body": { + "#": 7918 + }, + "isInternal": false + }, + { + "x": 500, + "y": 487.73575, + "index": 2, + "body": { + "#": 7918 + }, + "isInternal": false + }, + { + "x": 475, + "y": 487.73575, + "index": 3, + "body": { + "#": 7918 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7932 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7934 + }, + "max": { + "#": 7935 + } + }, + { + "x": 475, + "y": 462.73575 + }, + { + "x": 500, + "y": 487.73575 + }, + { + "x": 487.5, + "y": 472.32848 + }, + [ + { + "#": 7938 + }, + { + "#": 7939 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,9,10", + "startCol": 9, + "endCol": 10, + "startRow": 9, + "endRow": 10 + }, + { + "id": 346, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7942 + }, + "angle": 0, + "vertices": { + "#": 7943 + }, + "position": { + "#": 7948 + }, + "force": { + "#": 7949 + }, + "torque": 0, + "positionImpulse": { + "#": 7950 + }, + "constraintImpulse": { + "#": 7951 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7952 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7953 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7954 + }, + "bounds": { + "#": 7956 + }, + "positionPrev": { + "#": 7959 + }, + "anglePrev": 0, + "axes": { + "#": 7960 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7941 + }, + "sleepCounter": 0, + "region": { + "#": 7963 + } + }, + [ + { + "#": 7941 + } + ], + [ + { + "#": 7944 + }, + { + "#": 7945 + }, + { + "#": 7946 + }, + { + "#": 7947 + } + ], + { + "x": 500, + "y": 462.73575, + "index": 0, + "body": { + "#": 7941 + }, + "isInternal": false + }, + { + "x": 525, + "y": 462.73575, + "index": 1, + "body": { + "#": 7941 + }, + "isInternal": false + }, + { + "x": 525, + "y": 487.73575, + "index": 2, + "body": { + "#": 7941 + }, + "isInternal": false + }, + { + "x": 500, + "y": 487.73575, + "index": 3, + "body": { + "#": 7941 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7955 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7957 + }, + "max": { + "#": 7958 + } + }, + { + "x": 500, + "y": 462.73575 + }, + { + "x": 525, + "y": 487.73575 + }, + { + "x": 512.5, + "y": 472.32848 + }, + [ + { + "#": 7961 + }, + { + "#": 7962 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,9,10", + "startCol": 10, + "endCol": 10, + "startRow": 9, + "endRow": 10 + }, + { + "id": 347, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7965 + }, + "angle": 0, + "vertices": { + "#": 7966 + }, + "position": { + "#": 7971 + }, + "force": { + "#": 7972 + }, + "torque": 0, + "positionImpulse": { + "#": 7973 + }, + "constraintImpulse": { + "#": 7974 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7975 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7976 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 7977 + }, + "bounds": { + "#": 7979 + }, + "positionPrev": { + "#": 7982 + }, + "anglePrev": 0, + "axes": { + "#": 7983 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7964 + }, + "sleepCounter": 0, + "region": { + "#": 7986 + } + }, + [ + { + "#": 7964 + } + ], + [ + { + "#": 7967 + }, + { + "#": 7968 + }, + { + "#": 7969 + }, + { + "#": 7970 + } + ], + { + "x": 525, + "y": 462.73575, + "index": 0, + "body": { + "#": 7964 + }, + "isInternal": false + }, + { + "x": 550, + "y": 462.73575, + "index": 1, + "body": { + "#": 7964 + }, + "isInternal": false + }, + { + "x": 550, + "y": 487.73575, + "index": 2, + "body": { + "#": 7964 + }, + "isInternal": false + }, + { + "x": 525, + "y": 487.73575, + "index": 3, + "body": { + "#": 7964 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 7978 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 7980 + }, + "max": { + "#": 7981 + } + }, + { + "x": 525, + "y": 462.73575 + }, + { + "x": 550, + "y": 487.73575 + }, + { + "x": 537.5, + "y": 472.32848 + }, + [ + { + "#": 7984 + }, + { + "#": 7985 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,9,10", + "startCol": 10, + "endCol": 11, + "startRow": 9, + "endRow": 10 + }, + { + "id": 348, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 7988 + }, + "angle": 0, + "vertices": { + "#": 7989 + }, + "position": { + "#": 7994 + }, + "force": { + "#": 7995 + }, + "torque": 0, + "positionImpulse": { + "#": 7996 + }, + "constraintImpulse": { + "#": 7997 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 7998 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 7999 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8000 + }, + "bounds": { + "#": 8002 + }, + "positionPrev": { + "#": 8005 + }, + "anglePrev": 0, + "axes": { + "#": 8006 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 7987 + }, + "sleepCounter": 0, + "region": { + "#": 8009 + } + }, + [ + { + "#": 7987 + } + ], + [ + { + "#": 7990 + }, + { + "#": 7991 + }, + { + "#": 7992 + }, + { + "#": 7993 + } + ], + { + "x": 550, + "y": 462.73575, + "index": 0, + "body": { + "#": 7987 + }, + "isInternal": false + }, + { + "x": 575, + "y": 462.73575, + "index": 1, + "body": { + "#": 7987 + }, + "isInternal": false + }, + { + "x": 575, + "y": 487.73575, + "index": 2, + "body": { + "#": 7987 + }, + "isInternal": false + }, + { + "x": 550, + "y": 487.73575, + "index": 3, + "body": { + "#": 7987 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8001 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8003 + }, + "max": { + "#": 8004 + } + }, + { + "x": 550, + "y": 462.73575 + }, + { + "x": 575, + "y": 487.73575 + }, + { + "x": 562.5, + "y": 472.32848 + }, + [ + { + "#": 8007 + }, + { + "#": 8008 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,11,9,10", + "startCol": 11, + "endCol": 11, + "startRow": 9, + "endRow": 10 + }, + { + "id": 349, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8011 + }, + "angle": 0, + "vertices": { + "#": 8012 + }, + "position": { + "#": 8017 + }, + "force": { + "#": 8018 + }, + "torque": 0, + "positionImpulse": { + "#": 8019 + }, + "constraintImpulse": { + "#": 8020 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8021 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8022 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8023 + }, + "bounds": { + "#": 8025 + }, + "positionPrev": { + "#": 8028 + }, + "anglePrev": 0, + "axes": { + "#": 8029 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8010 + }, + "sleepCounter": 0, + "region": { + "#": 8032 + } + }, + [ + { + "#": 8010 + } + ], + [ + { + "#": 8013 + }, + { + "#": 8014 + }, + { + "#": 8015 + }, + { + "#": 8016 + } + ], + { + "x": 575, + "y": 462.73575, + "index": 0, + "body": { + "#": 8010 + }, + "isInternal": false + }, + { + "x": 600, + "y": 462.73575, + "index": 1, + "body": { + "#": 8010 + }, + "isInternal": false + }, + { + "x": 600, + "y": 487.73575, + "index": 2, + "body": { + "#": 8010 + }, + "isInternal": false + }, + { + "x": 575, + "y": 487.73575, + "index": 3, + "body": { + "#": 8010 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8024 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8026 + }, + "max": { + "#": 8027 + } + }, + { + "x": 575, + "y": 462.73575 + }, + { + "x": 600, + "y": 487.73575 + }, + { + "x": 587.5, + "y": 472.32848 + }, + [ + { + "#": 8030 + }, + { + "#": 8031 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,9,10", + "startCol": 11, + "endCol": 12, + "startRow": 9, + "endRow": 10 + }, + { + "id": 350, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8034 + }, + "angle": 0, + "vertices": { + "#": 8035 + }, + "position": { + "#": 8040 + }, + "force": { + "#": 8041 + }, + "torque": 0, + "positionImpulse": { + "#": 8042 + }, + "constraintImpulse": { + "#": 8043 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8044 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8045 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8046 + }, + "bounds": { + "#": 8048 + }, + "positionPrev": { + "#": 8051 + }, + "anglePrev": 0, + "axes": { + "#": 8052 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8033 + }, + "sleepCounter": 0, + "region": { + "#": 8055 + } + }, + [ + { + "#": 8033 + } + ], + [ + { + "#": 8036 + }, + { + "#": 8037 + }, + { + "#": 8038 + }, + { + "#": 8039 + } + ], + { + "x": 600, + "y": 462.73575, + "index": 0, + "body": { + "#": 8033 + }, + "isInternal": false + }, + { + "x": 625, + "y": 462.73575, + "index": 1, + "body": { + "#": 8033 + }, + "isInternal": false + }, + { + "x": 625, + "y": 487.73575, + "index": 2, + "body": { + "#": 8033 + }, + "isInternal": false + }, + { + "x": 600, + "y": 487.73575, + "index": 3, + "body": { + "#": 8033 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8047 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8049 + }, + "max": { + "#": 8050 + } + }, + { + "x": 600, + "y": 462.73575 + }, + { + "x": 625, + "y": 487.73575 + }, + { + "x": 612.5, + "y": 472.32848 + }, + [ + { + "#": 8053 + }, + { + "#": 8054 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,9,10", + "startCol": 12, + "endCol": 13, + "startRow": 9, + "endRow": 10 + }, + { + "id": 351, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8057 + }, + "angle": 0, + "vertices": { + "#": 8058 + }, + "position": { + "#": 8063 + }, + "force": { + "#": 8064 + }, + "torque": 0, + "positionImpulse": { + "#": 8065 + }, + "constraintImpulse": { + "#": 8066 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8067 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8068 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8069 + }, + "bounds": { + "#": 8071 + }, + "positionPrev": { + "#": 8074 + }, + "anglePrev": 0, + "axes": { + "#": 8075 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8056 + }, + "sleepCounter": 0, + "region": { + "#": 8078 + } + }, + [ + { + "#": 8056 + } + ], + [ + { + "#": 8059 + }, + { + "#": 8060 + }, + { + "#": 8061 + }, + { + "#": 8062 + } + ], + { + "x": 625, + "y": 462.73575, + "index": 0, + "body": { + "#": 8056 + }, + "isInternal": false + }, + { + "x": 650, + "y": 462.73575, + "index": 1, + "body": { + "#": 8056 + }, + "isInternal": false + }, + { + "x": 650, + "y": 487.73575, + "index": 2, + "body": { + "#": 8056 + }, + "isInternal": false + }, + { + "x": 625, + "y": 487.73575, + "index": 3, + "body": { + "#": 8056 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8070 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8072 + }, + "max": { + "#": 8073 + } + }, + { + "x": 625, + "y": 462.73575 + }, + { + "x": 650, + "y": 487.73575 + }, + { + "x": 637.5, + "y": 472.32848 + }, + [ + { + "#": 8076 + }, + { + "#": 8077 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,13,9,10", + "startCol": 13, + "endCol": 13, + "startRow": 9, + "endRow": 10 + }, + { + "id": 352, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8080 + }, + "angle": 0, + "vertices": { + "#": 8081 + }, + "position": { + "#": 8086 + }, + "force": { + "#": 8087 + }, + "torque": 0, + "positionImpulse": { + "#": 8088 + }, + "constraintImpulse": { + "#": 8089 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8090 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8091 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8092 + }, + "bounds": { + "#": 8094 + }, + "positionPrev": { + "#": 8097 + }, + "anglePrev": 0, + "axes": { + "#": 8098 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8079 + }, + "sleepCounter": 0, + "region": { + "#": 8101 + } + }, + [ + { + "#": 8079 + } + ], + [ + { + "#": 8082 + }, + { + "#": 8083 + }, + { + "#": 8084 + }, + { + "#": 8085 + } + ], + { + "x": 650, + "y": 462.73575, + "index": 0, + "body": { + "#": 8079 + }, + "isInternal": false + }, + { + "x": 675, + "y": 462.73575, + "index": 1, + "body": { + "#": 8079 + }, + "isInternal": false + }, + { + "x": 675, + "y": 487.73575, + "index": 2, + "body": { + "#": 8079 + }, + "isInternal": false + }, + { + "x": 650, + "y": 487.73575, + "index": 3, + "body": { + "#": 8079 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8093 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8095 + }, + "max": { + "#": 8096 + } + }, + { + "x": 650, + "y": 462.73575 + }, + { + "x": 675, + "y": 487.73575 + }, + { + "x": 662.5, + "y": 472.32848 + }, + [ + { + "#": 8099 + }, + { + "#": 8100 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,9,10", + "startCol": 13, + "endCol": 14, + "startRow": 9, + "endRow": 10 + }, + { + "id": 353, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8103 + }, + "angle": 0, + "vertices": { + "#": 8104 + }, + "position": { + "#": 8109 + }, + "force": { + "#": 8110 + }, + "torque": 0, + "positionImpulse": { + "#": 8111 + }, + "constraintImpulse": { + "#": 8112 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8113 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8114 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8115 + }, + "bounds": { + "#": 8117 + }, + "positionPrev": { + "#": 8120 + }, + "anglePrev": 0, + "axes": { + "#": 8121 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8102 + }, + "sleepCounter": 0, + "region": { + "#": 8124 + } + }, + [ + { + "#": 8102 + } + ], + [ + { + "#": 8105 + }, + { + "#": 8106 + }, + { + "#": 8107 + }, + { + "#": 8108 + } + ], + { + "x": 675, + "y": 462.73575, + "index": 0, + "body": { + "#": 8102 + }, + "isInternal": false + }, + { + "x": 700, + "y": 462.73575, + "index": 1, + "body": { + "#": 8102 + }, + "isInternal": false + }, + { + "x": 700, + "y": 487.73575, + "index": 2, + "body": { + "#": 8102 + }, + "isInternal": false + }, + { + "x": 675, + "y": 487.73575, + "index": 3, + "body": { + "#": 8102 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8116 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8118 + }, + "max": { + "#": 8119 + } + }, + { + "x": 675, + "y": 462.73575 + }, + { + "x": 700, + "y": 487.73575 + }, + { + "x": 687.5, + "y": 472.32848 + }, + [ + { + "#": 8122 + }, + { + "#": 8123 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,14,9,10", + "startCol": 14, + "endCol": 14, + "startRow": 9, + "endRow": 10 + }, + { + "id": 354, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8126 + }, + "angle": 0, + "vertices": { + "#": 8127 + }, + "position": { + "#": 8132 + }, + "force": { + "#": 8133 + }, + "torque": 0, + "positionImpulse": { + "#": 8134 + }, + "constraintImpulse": { + "#": 8135 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8136 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8137 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8138 + }, + "bounds": { + "#": 8140 + }, + "positionPrev": { + "#": 8143 + }, + "anglePrev": 0, + "axes": { + "#": 8144 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8125 + }, + "sleepCounter": 0, + "region": { + "#": 8147 + } + }, + [ + { + "#": 8125 + } + ], + [ + { + "#": 8128 + }, + { + "#": 8129 + }, + { + "#": 8130 + }, + { + "#": 8131 + } + ], + { + "x": 700, + "y": 462.73575, + "index": 0, + "body": { + "#": 8125 + }, + "isInternal": false + }, + { + "x": 725, + "y": 462.73575, + "index": 1, + "body": { + "#": 8125 + }, + "isInternal": false + }, + { + "x": 725, + "y": 487.73575, + "index": 2, + "body": { + "#": 8125 + }, + "isInternal": false + }, + { + "x": 700, + "y": 487.73575, + "index": 3, + "body": { + "#": 8125 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 475.23575 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 2.90727 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8139 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8141 + }, + "max": { + "#": 8142 + } + }, + { + "x": 700, + "y": 462.73575 + }, + { + "x": 725, + "y": 487.73575 + }, + { + "x": 712.5, + "y": 472.32848 + }, + [ + { + "#": 8145 + }, + { + "#": 8146 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,9,10", + "startCol": 14, + "endCol": 15, + "startRow": 9, + "endRow": 10 + }, + { + "id": 355, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8149 + }, + "angle": 0, + "vertices": { + "#": 8150 + }, + "position": { + "#": 8155 + }, + "force": { + "#": 8156 + }, + "torque": 0, + "positionImpulse": { + "#": 8157 + }, + "constraintImpulse": { + "#": 8158 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8159 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8160 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8161 + }, + "bounds": { + "#": 8163 + }, + "positionPrev": { + "#": 8166 + }, + "anglePrev": 0, + "axes": { + "#": 8167 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8148 + }, + "sleepCounter": 0, + "region": { + "#": 8170 + } + }, + [ + { + "#": 8148 + } + ], + [ + { + "#": 8151 + }, + { + "#": 8152 + }, + { + "#": 8153 + }, + { + "#": 8154 + } + ], + { + "x": 100, + "y": 483.62625, + "index": 0, + "body": { + "#": 8148 + }, + "isInternal": false + }, + { + "x": 125, + "y": 483.62625, + "index": 1, + "body": { + "#": 8148 + }, + "isInternal": false + }, + { + "x": 125, + "y": 508.62625, + "index": 2, + "body": { + "#": 8148 + }, + "isInternal": false + }, + { + "x": 100, + "y": 508.62625, + "index": 3, + "body": { + "#": 8148 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8162 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8164 + }, + "max": { + "#": 8165 + } + }, + { + "x": 100, + "y": 483.62625 + }, + { + "x": 125, + "y": 511.53352 + }, + { + "x": 112.5, + "y": 494.99261 + }, + [ + { + "#": 8168 + }, + { + "#": 8169 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,10,10", + "startCol": 2, + "endCol": 2, + "startRow": 10, + "endRow": 10 + }, + { + "id": 356, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8172 + }, + "angle": 0, + "vertices": { + "#": 8173 + }, + "position": { + "#": 8178 + }, + "force": { + "#": 8179 + }, + "torque": 0, + "positionImpulse": { + "#": 8180 + }, + "constraintImpulse": { + "#": 8181 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8182 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8183 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8184 + }, + "bounds": { + "#": 8186 + }, + "positionPrev": { + "#": 8189 + }, + "anglePrev": 0, + "axes": { + "#": 8190 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8171 + }, + "sleepCounter": 0, + "region": { + "#": 8193 + } + }, + [ + { + "#": 8171 + } + ], + [ + { + "#": 8174 + }, + { + "#": 8175 + }, + { + "#": 8176 + }, + { + "#": 8177 + } + ], + { + "x": 125, + "y": 483.62625, + "index": 0, + "body": { + "#": 8171 + }, + "isInternal": false + }, + { + "x": 150, + "y": 483.62625, + "index": 1, + "body": { + "#": 8171 + }, + "isInternal": false + }, + { + "x": 150, + "y": 508.62625, + "index": 2, + "body": { + "#": 8171 + }, + "isInternal": false + }, + { + "x": 125, + "y": 508.62625, + "index": 3, + "body": { + "#": 8171 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8185 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8187 + }, + "max": { + "#": 8188 + } + }, + { + "x": 125, + "y": 483.62625 + }, + { + "x": 150, + "y": 511.53352 + }, + { + "x": 137.5, + "y": 494.99261 + }, + [ + { + "#": 8191 + }, + { + "#": 8192 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,10,10", + "startCol": 2, + "endCol": 3, + "startRow": 10, + "endRow": 10 + }, + { + "id": 357, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8195 + }, + "angle": 0, + "vertices": { + "#": 8196 + }, + "position": { + "#": 8201 + }, + "force": { + "#": 8202 + }, + "torque": 0, + "positionImpulse": { + "#": 8203 + }, + "constraintImpulse": { + "#": 8204 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8205 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8206 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8207 + }, + "bounds": { + "#": 8209 + }, + "positionPrev": { + "#": 8212 + }, + "anglePrev": 0, + "axes": { + "#": 8213 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8194 + }, + "sleepCounter": 0, + "region": { + "#": 8216 + } + }, + [ + { + "#": 8194 + } + ], + [ + { + "#": 8197 + }, + { + "#": 8198 + }, + { + "#": 8199 + }, + { + "#": 8200 + } + ], + { + "x": 150, + "y": 483.62625, + "index": 0, + "body": { + "#": 8194 + }, + "isInternal": false + }, + { + "x": 175, + "y": 483.62625, + "index": 1, + "body": { + "#": 8194 + }, + "isInternal": false + }, + { + "x": 175, + "y": 508.62625, + "index": 2, + "body": { + "#": 8194 + }, + "isInternal": false + }, + { + "x": 150, + "y": 508.62625, + "index": 3, + "body": { + "#": 8194 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8208 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8210 + }, + "max": { + "#": 8211 + } + }, + { + "x": 150, + "y": 483.62625 + }, + { + "x": 175, + "y": 511.53352 + }, + { + "x": 162.5, + "y": 494.99261 + }, + [ + { + "#": 8214 + }, + { + "#": 8215 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,3,10,10", + "startCol": 3, + "endCol": 3, + "startRow": 10, + "endRow": 10 + }, + { + "id": 358, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8218 + }, + "angle": 0, + "vertices": { + "#": 8219 + }, + "position": { + "#": 8224 + }, + "force": { + "#": 8225 + }, + "torque": 0, + "positionImpulse": { + "#": 8226 + }, + "constraintImpulse": { + "#": 8227 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8228 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8229 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8230 + }, + "bounds": { + "#": 8232 + }, + "positionPrev": { + "#": 8235 + }, + "anglePrev": 0, + "axes": { + "#": 8236 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8217 + }, + "sleepCounter": 0, + "region": { + "#": 8239 + } + }, + [ + { + "#": 8217 + } + ], + [ + { + "#": 8220 + }, + { + "#": 8221 + }, + { + "#": 8222 + }, + { + "#": 8223 + } + ], + { + "x": 175, + "y": 483.62625, + "index": 0, + "body": { + "#": 8217 + }, + "isInternal": false + }, + { + "x": 200, + "y": 483.62625, + "index": 1, + "body": { + "#": 8217 + }, + "isInternal": false + }, + { + "x": 200, + "y": 508.62625, + "index": 2, + "body": { + "#": 8217 + }, + "isInternal": false + }, + { + "x": 175, + "y": 508.62625, + "index": 3, + "body": { + "#": 8217 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8231 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8233 + }, + "max": { + "#": 8234 + } + }, + { + "x": 175, + "y": 483.62625 + }, + { + "x": 200, + "y": 511.53352 + }, + { + "x": 187.5, + "y": 494.99261 + }, + [ + { + "#": 8237 + }, + { + "#": 8238 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,10,10", + "startCol": 3, + "endCol": 4, + "startRow": 10, + "endRow": 10 + }, + { + "id": 359, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8241 + }, + "angle": 0, + "vertices": { + "#": 8242 + }, + "position": { + "#": 8247 + }, + "force": { + "#": 8248 + }, + "torque": 0, + "positionImpulse": { + "#": 8249 + }, + "constraintImpulse": { + "#": 8250 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8251 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8252 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8253 + }, + "bounds": { + "#": 8255 + }, + "positionPrev": { + "#": 8258 + }, + "anglePrev": 0, + "axes": { + "#": 8259 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8240 + }, + "sleepCounter": 0, + "region": { + "#": 8262 + } + }, + [ + { + "#": 8240 + } + ], + [ + { + "#": 8243 + }, + { + "#": 8244 + }, + { + "#": 8245 + }, + { + "#": 8246 + } + ], + { + "x": 200, + "y": 483.62625, + "index": 0, + "body": { + "#": 8240 + }, + "isInternal": false + }, + { + "x": 225, + "y": 483.62625, + "index": 1, + "body": { + "#": 8240 + }, + "isInternal": false + }, + { + "x": 225, + "y": 508.62625, + "index": 2, + "body": { + "#": 8240 + }, + "isInternal": false + }, + { + "x": 200, + "y": 508.62625, + "index": 3, + "body": { + "#": 8240 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8254 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8256 + }, + "max": { + "#": 8257 + } + }, + { + "x": 200, + "y": 483.62625 + }, + { + "x": 225, + "y": 511.53352 + }, + { + "x": 212.5, + "y": 494.99261 + }, + [ + { + "#": 8260 + }, + { + "#": 8261 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,10,10", + "startCol": 4, + "endCol": 4, + "startRow": 10, + "endRow": 10 + }, + { + "id": 360, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8264 + }, + "angle": 0, + "vertices": { + "#": 8265 + }, + "position": { + "#": 8270 + }, + "force": { + "#": 8271 + }, + "torque": 0, + "positionImpulse": { + "#": 8272 + }, + "constraintImpulse": { + "#": 8273 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8274 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8275 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8276 + }, + "bounds": { + "#": 8278 + }, + "positionPrev": { + "#": 8281 + }, + "anglePrev": 0, + "axes": { + "#": 8282 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8263 + }, + "sleepCounter": 0, + "region": { + "#": 8285 + } + }, + [ + { + "#": 8263 + } + ], + [ + { + "#": 8266 + }, + { + "#": 8267 + }, + { + "#": 8268 + }, + { + "#": 8269 + } + ], + { + "x": 225, + "y": 483.62625, + "index": 0, + "body": { + "#": 8263 + }, + "isInternal": false + }, + { + "x": 250, + "y": 483.62625, + "index": 1, + "body": { + "#": 8263 + }, + "isInternal": false + }, + { + "x": 250, + "y": 508.62625, + "index": 2, + "body": { + "#": 8263 + }, + "isInternal": false + }, + { + "x": 225, + "y": 508.62625, + "index": 3, + "body": { + "#": 8263 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8277 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8279 + }, + "max": { + "#": 8280 + } + }, + { + "x": 225, + "y": 483.62625 + }, + { + "x": 250, + "y": 511.53352 + }, + { + "x": 237.5, + "y": 494.99261 + }, + [ + { + "#": 8283 + }, + { + "#": 8284 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,10,10", + "startCol": 4, + "endCol": 5, + "startRow": 10, + "endRow": 10 + }, + { + "id": 361, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8287 + }, + "angle": 0, + "vertices": { + "#": 8288 + }, + "position": { + "#": 8293 + }, + "force": { + "#": 8294 + }, + "torque": 0, + "positionImpulse": { + "#": 8295 + }, + "constraintImpulse": { + "#": 8296 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8297 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8298 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8299 + }, + "bounds": { + "#": 8301 + }, + "positionPrev": { + "#": 8304 + }, + "anglePrev": 0, + "axes": { + "#": 8305 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8286 + }, + "sleepCounter": 0, + "region": { + "#": 8308 + } + }, + [ + { + "#": 8286 + } + ], + [ + { + "#": 8289 + }, + { + "#": 8290 + }, + { + "#": 8291 + }, + { + "#": 8292 + } + ], + { + "x": 250, + "y": 483.62625, + "index": 0, + "body": { + "#": 8286 + }, + "isInternal": false + }, + { + "x": 275, + "y": 483.62625, + "index": 1, + "body": { + "#": 8286 + }, + "isInternal": false + }, + { + "x": 275, + "y": 508.62625, + "index": 2, + "body": { + "#": 8286 + }, + "isInternal": false + }, + { + "x": 250, + "y": 508.62625, + "index": 3, + "body": { + "#": 8286 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8300 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8302 + }, + "max": { + "#": 8303 + } + }, + { + "x": 250, + "y": 483.62625 + }, + { + "x": 275, + "y": 511.53352 + }, + { + "x": 262.5, + "y": 494.99261 + }, + [ + { + "#": 8306 + }, + { + "#": 8307 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,10,10", + "startCol": 5, + "endCol": 5, + "startRow": 10, + "endRow": 10 + }, + { + "id": 362, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8310 + }, + "angle": 0, + "vertices": { + "#": 8311 + }, + "position": { + "#": 8316 + }, + "force": { + "#": 8317 + }, + "torque": 0, + "positionImpulse": { + "#": 8318 + }, + "constraintImpulse": { + "#": 8319 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8320 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8321 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8322 + }, + "bounds": { + "#": 8324 + }, + "positionPrev": { + "#": 8327 + }, + "anglePrev": 0, + "axes": { + "#": 8328 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8309 + }, + "sleepCounter": 0, + "region": { + "#": 8331 + } + }, + [ + { + "#": 8309 + } + ], + [ + { + "#": 8312 + }, + { + "#": 8313 + }, + { + "#": 8314 + }, + { + "#": 8315 + } + ], + { + "x": 275, + "y": 483.62625, + "index": 0, + "body": { + "#": 8309 + }, + "isInternal": false + }, + { + "x": 300, + "y": 483.62625, + "index": 1, + "body": { + "#": 8309 + }, + "isInternal": false + }, + { + "x": 300, + "y": 508.62625, + "index": 2, + "body": { + "#": 8309 + }, + "isInternal": false + }, + { + "x": 275, + "y": 508.62625, + "index": 3, + "body": { + "#": 8309 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8323 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8325 + }, + "max": { + "#": 8326 + } + }, + { + "x": 275, + "y": 483.62625 + }, + { + "x": 300, + "y": 511.53352 + }, + { + "x": 287.5, + "y": 494.99261 + }, + [ + { + "#": 8329 + }, + { + "#": 8330 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,10,10", + "startCol": 5, + "endCol": 6, + "startRow": 10, + "endRow": 10 + }, + { + "id": 363, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8333 + }, + "angle": 0, + "vertices": { + "#": 8334 + }, + "position": { + "#": 8339 + }, + "force": { + "#": 8340 + }, + "torque": 0, + "positionImpulse": { + "#": 8341 + }, + "constraintImpulse": { + "#": 8342 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8343 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8344 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8345 + }, + "bounds": { + "#": 8347 + }, + "positionPrev": { + "#": 8350 + }, + "anglePrev": 0, + "axes": { + "#": 8351 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8332 + }, + "sleepCounter": 0, + "region": { + "#": 8354 + } + }, + [ + { + "#": 8332 + } + ], + [ + { + "#": 8335 + }, + { + "#": 8336 + }, + { + "#": 8337 + }, + { + "#": 8338 + } + ], + { + "x": 300, + "y": 483.62625, + "index": 0, + "body": { + "#": 8332 + }, + "isInternal": false + }, + { + "x": 325, + "y": 483.62625, + "index": 1, + "body": { + "#": 8332 + }, + "isInternal": false + }, + { + "x": 325, + "y": 508.62625, + "index": 2, + "body": { + "#": 8332 + }, + "isInternal": false + }, + { + "x": 300, + "y": 508.62625, + "index": 3, + "body": { + "#": 8332 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8346 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8348 + }, + "max": { + "#": 8349 + } + }, + { + "x": 300, + "y": 483.62625 + }, + { + "x": 325, + "y": 511.53352 + }, + { + "x": 312.5, + "y": 494.99261 + }, + [ + { + "#": 8352 + }, + { + "#": 8353 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,10,10", + "startCol": 6, + "endCol": 6, + "startRow": 10, + "endRow": 10 + }, + { + "id": 364, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8356 + }, + "angle": 0, + "vertices": { + "#": 8357 + }, + "position": { + "#": 8362 + }, + "force": { + "#": 8363 + }, + "torque": 0, + "positionImpulse": { + "#": 8364 + }, + "constraintImpulse": { + "#": 8365 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8366 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8367 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8368 + }, + "bounds": { + "#": 8370 + }, + "positionPrev": { + "#": 8373 + }, + "anglePrev": 0, + "axes": { + "#": 8374 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8355 + }, + "sleepCounter": 0, + "region": { + "#": 8377 + } + }, + [ + { + "#": 8355 + } + ], + [ + { + "#": 8358 + }, + { + "#": 8359 + }, + { + "#": 8360 + }, + { + "#": 8361 + } + ], + { + "x": 325, + "y": 483.62625, + "index": 0, + "body": { + "#": 8355 + }, + "isInternal": false + }, + { + "x": 350, + "y": 483.62625, + "index": 1, + "body": { + "#": 8355 + }, + "isInternal": false + }, + { + "x": 350, + "y": 508.62625, + "index": 2, + "body": { + "#": 8355 + }, + "isInternal": false + }, + { + "x": 325, + "y": 508.62625, + "index": 3, + "body": { + "#": 8355 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8369 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8371 + }, + "max": { + "#": 8372 + } + }, + { + "x": 325, + "y": 483.62625 + }, + { + "x": 350, + "y": 511.53352 + }, + { + "x": 337.5, + "y": 494.99261 + }, + [ + { + "#": 8375 + }, + { + "#": 8376 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,10,10", + "startCol": 6, + "endCol": 7, + "startRow": 10, + "endRow": 10 + }, + { + "id": 365, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8379 + }, + "angle": 0, + "vertices": { + "#": 8380 + }, + "position": { + "#": 8385 + }, + "force": { + "#": 8386 + }, + "torque": 0, + "positionImpulse": { + "#": 8387 + }, + "constraintImpulse": { + "#": 8388 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8389 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8390 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8391 + }, + "bounds": { + "#": 8393 + }, + "positionPrev": { + "#": 8396 + }, + "anglePrev": 0, + "axes": { + "#": 8397 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8378 + }, + "sleepCounter": 0, + "region": { + "#": 8400 + } + }, + [ + { + "#": 8378 + } + ], + [ + { + "#": 8381 + }, + { + "#": 8382 + }, + { + "#": 8383 + }, + { + "#": 8384 + } + ], + { + "x": 350, + "y": 483.62625, + "index": 0, + "body": { + "#": 8378 + }, + "isInternal": false + }, + { + "x": 375, + "y": 483.62625, + "index": 1, + "body": { + "#": 8378 + }, + "isInternal": false + }, + { + "x": 375, + "y": 508.62625, + "index": 2, + "body": { + "#": 8378 + }, + "isInternal": false + }, + { + "x": 350, + "y": 508.62625, + "index": 3, + "body": { + "#": 8378 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8392 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8394 + }, + "max": { + "#": 8395 + } + }, + { + "x": 350, + "y": 483.62625 + }, + { + "x": 375, + "y": 511.53352 + }, + { + "x": 362.5, + "y": 494.99261 + }, + [ + { + "#": 8398 + }, + { + "#": 8399 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,10,10", + "startCol": 7, + "endCol": 7, + "startRow": 10, + "endRow": 10 + }, + { + "id": 366, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8402 + }, + "angle": 0, + "vertices": { + "#": 8403 + }, + "position": { + "#": 8408 + }, + "force": { + "#": 8409 + }, + "torque": 0, + "positionImpulse": { + "#": 8410 + }, + "constraintImpulse": { + "#": 8411 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8412 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8413 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8414 + }, + "bounds": { + "#": 8416 + }, + "positionPrev": { + "#": 8419 + }, + "anglePrev": 0, + "axes": { + "#": 8420 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8401 + }, + "sleepCounter": 0, + "region": { + "#": 8423 + } + }, + [ + { + "#": 8401 + } + ], + [ + { + "#": 8404 + }, + { + "#": 8405 + }, + { + "#": 8406 + }, + { + "#": 8407 + } + ], + { + "x": 375, + "y": 483.62625, + "index": 0, + "body": { + "#": 8401 + }, + "isInternal": false + }, + { + "x": 400, + "y": 483.62625, + "index": 1, + "body": { + "#": 8401 + }, + "isInternal": false + }, + { + "x": 400, + "y": 508.62625, + "index": 2, + "body": { + "#": 8401 + }, + "isInternal": false + }, + { + "x": 375, + "y": 508.62625, + "index": 3, + "body": { + "#": 8401 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8415 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8417 + }, + "max": { + "#": 8418 + } + }, + { + "x": 375, + "y": 483.62625 + }, + { + "x": 400, + "y": 511.53352 + }, + { + "x": 387.5, + "y": 494.99261 + }, + [ + { + "#": 8421 + }, + { + "#": 8422 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,10,10", + "startCol": 7, + "endCol": 8, + "startRow": 10, + "endRow": 10 + }, + { + "id": 367, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8425 + }, + "angle": 0, + "vertices": { + "#": 8426 + }, + "position": { + "#": 8431 + }, + "force": { + "#": 8432 + }, + "torque": 0, + "positionImpulse": { + "#": 8433 + }, + "constraintImpulse": { + "#": 8434 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8435 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8436 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8437 + }, + "bounds": { + "#": 8439 + }, + "positionPrev": { + "#": 8442 + }, + "anglePrev": 0, + "axes": { + "#": 8443 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8424 + }, + "sleepCounter": 0, + "region": { + "#": 8446 + } + }, + [ + { + "#": 8424 + } + ], + [ + { + "#": 8427 + }, + { + "#": 8428 + }, + { + "#": 8429 + }, + { + "#": 8430 + } + ], + { + "x": 400, + "y": 483.62625, + "index": 0, + "body": { + "#": 8424 + }, + "isInternal": false + }, + { + "x": 425, + "y": 483.62625, + "index": 1, + "body": { + "#": 8424 + }, + "isInternal": false + }, + { + "x": 425, + "y": 508.62625, + "index": 2, + "body": { + "#": 8424 + }, + "isInternal": false + }, + { + "x": 400, + "y": 508.62625, + "index": 3, + "body": { + "#": 8424 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8438 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8440 + }, + "max": { + "#": 8441 + } + }, + { + "x": 400, + "y": 483.62625 + }, + { + "x": 425, + "y": 511.53352 + }, + { + "x": 412.5, + "y": 494.99261 + }, + [ + { + "#": 8444 + }, + { + "#": 8445 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,8,10,10", + "startCol": 8, + "endCol": 8, + "startRow": 10, + "endRow": 10 + }, + { + "id": 368, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8448 + }, + "angle": 0, + "vertices": { + "#": 8449 + }, + "position": { + "#": 8454 + }, + "force": { + "#": 8455 + }, + "torque": 0, + "positionImpulse": { + "#": 8456 + }, + "constraintImpulse": { + "#": 8457 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8458 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8459 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8460 + }, + "bounds": { + "#": 8462 + }, + "positionPrev": { + "#": 8465 + }, + "anglePrev": 0, + "axes": { + "#": 8466 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8447 + }, + "sleepCounter": 0, + "region": { + "#": 8469 + } + }, + [ + { + "#": 8447 + } + ], + [ + { + "#": 8450 + }, + { + "#": 8451 + }, + { + "#": 8452 + }, + { + "#": 8453 + } + ], + { + "x": 425, + "y": 483.62625, + "index": 0, + "body": { + "#": 8447 + }, + "isInternal": false + }, + { + "x": 450, + "y": 483.62625, + "index": 1, + "body": { + "#": 8447 + }, + "isInternal": false + }, + { + "x": 450, + "y": 508.62625, + "index": 2, + "body": { + "#": 8447 + }, + "isInternal": false + }, + { + "x": 425, + "y": 508.62625, + "index": 3, + "body": { + "#": 8447 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8461 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8463 + }, + "max": { + "#": 8464 + } + }, + { + "x": 425, + "y": 483.62625 + }, + { + "x": 450, + "y": 511.53352 + }, + { + "x": 437.5, + "y": 494.99261 + }, + [ + { + "#": 8467 + }, + { + "#": 8468 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,10,10", + "startCol": 8, + "endCol": 9, + "startRow": 10, + "endRow": 10 + }, + { + "id": 369, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8471 + }, + "angle": 0, + "vertices": { + "#": 8472 + }, + "position": { + "#": 8477 + }, + "force": { + "#": 8478 + }, + "torque": 0, + "positionImpulse": { + "#": 8479 + }, + "constraintImpulse": { + "#": 8480 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8481 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8482 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8483 + }, + "bounds": { + "#": 8485 + }, + "positionPrev": { + "#": 8488 + }, + "anglePrev": 0, + "axes": { + "#": 8489 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8470 + }, + "sleepCounter": 0, + "region": { + "#": 8492 + } + }, + [ + { + "#": 8470 + } + ], + [ + { + "#": 8473 + }, + { + "#": 8474 + }, + { + "#": 8475 + }, + { + "#": 8476 + } + ], + { + "x": 450, + "y": 483.62625, + "index": 0, + "body": { + "#": 8470 + }, + "isInternal": false + }, + { + "x": 475, + "y": 483.62625, + "index": 1, + "body": { + "#": 8470 + }, + "isInternal": false + }, + { + "x": 475, + "y": 508.62625, + "index": 2, + "body": { + "#": 8470 + }, + "isInternal": false + }, + { + "x": 450, + "y": 508.62625, + "index": 3, + "body": { + "#": 8470 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8484 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8486 + }, + "max": { + "#": 8487 + } + }, + { + "x": 450, + "y": 483.62625 + }, + { + "x": 475, + "y": 511.53352 + }, + { + "x": 462.5, + "y": 494.99261 + }, + [ + { + "#": 8490 + }, + { + "#": 8491 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,10,10", + "startCol": 9, + "endCol": 9, + "startRow": 10, + "endRow": 10 + }, + { + "id": 370, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8494 + }, + "angle": 0, + "vertices": { + "#": 8495 + }, + "position": { + "#": 8500 + }, + "force": { + "#": 8501 + }, + "torque": 0, + "positionImpulse": { + "#": 8502 + }, + "constraintImpulse": { + "#": 8503 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8504 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8505 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8506 + }, + "bounds": { + "#": 8508 + }, + "positionPrev": { + "#": 8511 + }, + "anglePrev": 0, + "axes": { + "#": 8512 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8493 + }, + "sleepCounter": 0, + "region": { + "#": 8515 + } + }, + [ + { + "#": 8493 + } + ], + [ + { + "#": 8496 + }, + { + "#": 8497 + }, + { + "#": 8498 + }, + { + "#": 8499 + } + ], + { + "x": 475, + "y": 483.62625, + "index": 0, + "body": { + "#": 8493 + }, + "isInternal": false + }, + { + "x": 500, + "y": 483.62625, + "index": 1, + "body": { + "#": 8493 + }, + "isInternal": false + }, + { + "x": 500, + "y": 508.62625, + "index": 2, + "body": { + "#": 8493 + }, + "isInternal": false + }, + { + "x": 475, + "y": 508.62625, + "index": 3, + "body": { + "#": 8493 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8507 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8509 + }, + "max": { + "#": 8510 + } + }, + { + "x": 475, + "y": 483.62625 + }, + { + "x": 500, + "y": 511.53352 + }, + { + "x": 487.5, + "y": 494.99261 + }, + [ + { + "#": 8513 + }, + { + "#": 8514 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,10,10", + "startCol": 9, + "endCol": 10, + "startRow": 10, + "endRow": 10 + }, + { + "id": 371, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8517 + }, + "angle": 0, + "vertices": { + "#": 8518 + }, + "position": { + "#": 8523 + }, + "force": { + "#": 8524 + }, + "torque": 0, + "positionImpulse": { + "#": 8525 + }, + "constraintImpulse": { + "#": 8526 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8527 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8528 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8529 + }, + "bounds": { + "#": 8531 + }, + "positionPrev": { + "#": 8534 + }, + "anglePrev": 0, + "axes": { + "#": 8535 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8516 + }, + "sleepCounter": 0, + "region": { + "#": 8538 + } + }, + [ + { + "#": 8516 + } + ], + [ + { + "#": 8519 + }, + { + "#": 8520 + }, + { + "#": 8521 + }, + { + "#": 8522 + } + ], + { + "x": 500, + "y": 483.62625, + "index": 0, + "body": { + "#": 8516 + }, + "isInternal": false + }, + { + "x": 525, + "y": 483.62625, + "index": 1, + "body": { + "#": 8516 + }, + "isInternal": false + }, + { + "x": 525, + "y": 508.62625, + "index": 2, + "body": { + "#": 8516 + }, + "isInternal": false + }, + { + "x": 500, + "y": 508.62625, + "index": 3, + "body": { + "#": 8516 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8530 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8532 + }, + "max": { + "#": 8533 + } + }, + { + "x": 500, + "y": 483.62625 + }, + { + "x": 525, + "y": 511.53352 + }, + { + "x": 512.5, + "y": 494.99261 + }, + [ + { + "#": 8536 + }, + { + "#": 8537 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,10,10", + "startCol": 10, + "endCol": 10, + "startRow": 10, + "endRow": 10 + }, + { + "id": 372, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8540 + }, + "angle": 0, + "vertices": { + "#": 8541 + }, + "position": { + "#": 8546 + }, + "force": { + "#": 8547 + }, + "torque": 0, + "positionImpulse": { + "#": 8548 + }, + "constraintImpulse": { + "#": 8549 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8550 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8551 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8552 + }, + "bounds": { + "#": 8554 + }, + "positionPrev": { + "#": 8557 + }, + "anglePrev": 0, + "axes": { + "#": 8558 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8539 + }, + "sleepCounter": 0, + "region": { + "#": 8561 + } + }, + [ + { + "#": 8539 + } + ], + [ + { + "#": 8542 + }, + { + "#": 8543 + }, + { + "#": 8544 + }, + { + "#": 8545 + } + ], + { + "x": 525, + "y": 483.62625, + "index": 0, + "body": { + "#": 8539 + }, + "isInternal": false + }, + { + "x": 550, + "y": 483.62625, + "index": 1, + "body": { + "#": 8539 + }, + "isInternal": false + }, + { + "x": 550, + "y": 508.62625, + "index": 2, + "body": { + "#": 8539 + }, + "isInternal": false + }, + { + "x": 525, + "y": 508.62625, + "index": 3, + "body": { + "#": 8539 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8553 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8555 + }, + "max": { + "#": 8556 + } + }, + { + "x": 525, + "y": 483.62625 + }, + { + "x": 550, + "y": 511.53352 + }, + { + "x": 537.5, + "y": 494.99261 + }, + [ + { + "#": 8559 + }, + { + "#": 8560 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,10,10", + "startCol": 10, + "endCol": 11, + "startRow": 10, + "endRow": 10 + }, + { + "id": 373, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8563 + }, + "angle": 0, + "vertices": { + "#": 8564 + }, + "position": { + "#": 8569 + }, + "force": { + "#": 8570 + }, + "torque": 0, + "positionImpulse": { + "#": 8571 + }, + "constraintImpulse": { + "#": 8572 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8573 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8574 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8575 + }, + "bounds": { + "#": 8577 + }, + "positionPrev": { + "#": 8580 + }, + "anglePrev": 0, + "axes": { + "#": 8581 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8562 + }, + "sleepCounter": 0, + "region": { + "#": 8584 + } + }, + [ + { + "#": 8562 + } + ], + [ + { + "#": 8565 + }, + { + "#": 8566 + }, + { + "#": 8567 + }, + { + "#": 8568 + } + ], + { + "x": 550, + "y": 483.62625, + "index": 0, + "body": { + "#": 8562 + }, + "isInternal": false + }, + { + "x": 575, + "y": 483.62625, + "index": 1, + "body": { + "#": 8562 + }, + "isInternal": false + }, + { + "x": 575, + "y": 508.62625, + "index": 2, + "body": { + "#": 8562 + }, + "isInternal": false + }, + { + "x": 550, + "y": 508.62625, + "index": 3, + "body": { + "#": 8562 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8576 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8578 + }, + "max": { + "#": 8579 + } + }, + { + "x": 550, + "y": 483.62625 + }, + { + "x": 575, + "y": 511.53352 + }, + { + "x": 562.5, + "y": 494.99261 + }, + [ + { + "#": 8582 + }, + { + "#": 8583 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,11,10,10", + "startCol": 11, + "endCol": 11, + "startRow": 10, + "endRow": 10 + }, + { + "id": 374, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8586 + }, + "angle": 0, + "vertices": { + "#": 8587 + }, + "position": { + "#": 8592 + }, + "force": { + "#": 8593 + }, + "torque": 0, + "positionImpulse": { + "#": 8594 + }, + "constraintImpulse": { + "#": 8595 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8596 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8597 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8598 + }, + "bounds": { + "#": 8600 + }, + "positionPrev": { + "#": 8603 + }, + "anglePrev": 0, + "axes": { + "#": 8604 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8585 + }, + "sleepCounter": 0, + "region": { + "#": 8607 + } + }, + [ + { + "#": 8585 + } + ], + [ + { + "#": 8588 + }, + { + "#": 8589 + }, + { + "#": 8590 + }, + { + "#": 8591 + } + ], + { + "x": 575, + "y": 483.62625, + "index": 0, + "body": { + "#": 8585 + }, + "isInternal": false + }, + { + "x": 600, + "y": 483.62625, + "index": 1, + "body": { + "#": 8585 + }, + "isInternal": false + }, + { + "x": 600, + "y": 508.62625, + "index": 2, + "body": { + "#": 8585 + }, + "isInternal": false + }, + { + "x": 575, + "y": 508.62625, + "index": 3, + "body": { + "#": 8585 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8599 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8601 + }, + "max": { + "#": 8602 + } + }, + { + "x": 575, + "y": 483.62625 + }, + { + "x": 600, + "y": 511.53352 + }, + { + "x": 587.5, + "y": 494.99261 + }, + [ + { + "#": 8605 + }, + { + "#": 8606 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,10,10", + "startCol": 11, + "endCol": 12, + "startRow": 10, + "endRow": 10 + }, + { + "id": 375, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8609 + }, + "angle": 0, + "vertices": { + "#": 8610 + }, + "position": { + "#": 8615 + }, + "force": { + "#": 8616 + }, + "torque": 0, + "positionImpulse": { + "#": 8617 + }, + "constraintImpulse": { + "#": 8618 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8619 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8620 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8621 + }, + "bounds": { + "#": 8623 + }, + "positionPrev": { + "#": 8626 + }, + "anglePrev": 0, + "axes": { + "#": 8627 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8608 + }, + "sleepCounter": 0, + "region": { + "#": 8630 + } + }, + [ + { + "#": 8608 + } + ], + [ + { + "#": 8611 + }, + { + "#": 8612 + }, + { + "#": 8613 + }, + { + "#": 8614 + } + ], + { + "x": 600, + "y": 483.62625, + "index": 0, + "body": { + "#": 8608 + }, + "isInternal": false + }, + { + "x": 625, + "y": 483.62625, + "index": 1, + "body": { + "#": 8608 + }, + "isInternal": false + }, + { + "x": 625, + "y": 508.62625, + "index": 2, + "body": { + "#": 8608 + }, + "isInternal": false + }, + { + "x": 600, + "y": 508.62625, + "index": 3, + "body": { + "#": 8608 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8622 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8624 + }, + "max": { + "#": 8625 + } + }, + { + "x": 600, + "y": 483.62625 + }, + { + "x": 625, + "y": 511.53352 + }, + { + "x": 612.5, + "y": 494.99261 + }, + [ + { + "#": 8628 + }, + { + "#": 8629 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,10,10", + "startCol": 12, + "endCol": 13, + "startRow": 10, + "endRow": 10 + }, + { + "id": 376, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8632 + }, + "angle": 0, + "vertices": { + "#": 8633 + }, + "position": { + "#": 8638 + }, + "force": { + "#": 8639 + }, + "torque": 0, + "positionImpulse": { + "#": 8640 + }, + "constraintImpulse": { + "#": 8641 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8642 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8643 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8644 + }, + "bounds": { + "#": 8646 + }, + "positionPrev": { + "#": 8649 + }, + "anglePrev": 0, + "axes": { + "#": 8650 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8631 + }, + "sleepCounter": 0, + "region": { + "#": 8653 + } + }, + [ + { + "#": 8631 + } + ], + [ + { + "#": 8634 + }, + { + "#": 8635 + }, + { + "#": 8636 + }, + { + "#": 8637 + } + ], + { + "x": 625, + "y": 483.62625, + "index": 0, + "body": { + "#": 8631 + }, + "isInternal": false + }, + { + "x": 650, + "y": 483.62625, + "index": 1, + "body": { + "#": 8631 + }, + "isInternal": false + }, + { + "x": 650, + "y": 508.62625, + "index": 2, + "body": { + "#": 8631 + }, + "isInternal": false + }, + { + "x": 625, + "y": 508.62625, + "index": 3, + "body": { + "#": 8631 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8645 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8647 + }, + "max": { + "#": 8648 + } + }, + { + "x": 625, + "y": 483.62625 + }, + { + "x": 650, + "y": 511.53352 + }, + { + "x": 637.5, + "y": 494.99261 + }, + [ + { + "#": 8651 + }, + { + "#": 8652 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,13,10,10", + "startCol": 13, + "endCol": 13, + "startRow": 10, + "endRow": 10 + }, + { + "id": 377, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8655 + }, + "angle": 0, + "vertices": { + "#": 8656 + }, + "position": { + "#": 8661 + }, + "force": { + "#": 8662 + }, + "torque": 0, + "positionImpulse": { + "#": 8663 + }, + "constraintImpulse": { + "#": 8664 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8665 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8666 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8667 + }, + "bounds": { + "#": 8669 + }, + "positionPrev": { + "#": 8672 + }, + "anglePrev": 0, + "axes": { + "#": 8673 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8654 + }, + "sleepCounter": 0, + "region": { + "#": 8676 + } + }, + [ + { + "#": 8654 + } + ], + [ + { + "#": 8657 + }, + { + "#": 8658 + }, + { + "#": 8659 + }, + { + "#": 8660 + } + ], + { + "x": 650, + "y": 483.62625, + "index": 0, + "body": { + "#": 8654 + }, + "isInternal": false + }, + { + "x": 675, + "y": 483.62625, + "index": 1, + "body": { + "#": 8654 + }, + "isInternal": false + }, + { + "x": 675, + "y": 508.62625, + "index": 2, + "body": { + "#": 8654 + }, + "isInternal": false + }, + { + "x": 650, + "y": 508.62625, + "index": 3, + "body": { + "#": 8654 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8668 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8670 + }, + "max": { + "#": 8671 + } + }, + { + "x": 650, + "y": 483.62625 + }, + { + "x": 675, + "y": 511.53352 + }, + { + "x": 662.5, + "y": 494.99261 + }, + [ + { + "#": 8674 + }, + { + "#": 8675 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,10,10", + "startCol": 13, + "endCol": 14, + "startRow": 10, + "endRow": 10 + }, + { + "id": 378, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8678 + }, + "angle": 0, + "vertices": { + "#": 8679 + }, + "position": { + "#": 8684 + }, + "force": { + "#": 8685 + }, + "torque": 0, + "positionImpulse": { + "#": 8686 + }, + "constraintImpulse": { + "#": 8687 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8688 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8689 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8690 + }, + "bounds": { + "#": 8692 + }, + "positionPrev": { + "#": 8695 + }, + "anglePrev": 0, + "axes": { + "#": 8696 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8677 + }, + "sleepCounter": 0, + "region": { + "#": 8699 + } + }, + [ + { + "#": 8677 + } + ], + [ + { + "#": 8680 + }, + { + "#": 8681 + }, + { + "#": 8682 + }, + { + "#": 8683 + } + ], + { + "x": 675, + "y": 483.62625, + "index": 0, + "body": { + "#": 8677 + }, + "isInternal": false + }, + { + "x": 700, + "y": 483.62625, + "index": 1, + "body": { + "#": 8677 + }, + "isInternal": false + }, + { + "x": 700, + "y": 508.62625, + "index": 2, + "body": { + "#": 8677 + }, + "isInternal": false + }, + { + "x": 675, + "y": 508.62625, + "index": 3, + "body": { + "#": 8677 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8691 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8693 + }, + "max": { + "#": 8694 + } + }, + { + "x": 675, + "y": 483.62625 + }, + { + "x": 700, + "y": 511.53352 + }, + { + "x": 687.5, + "y": 494.99261 + }, + [ + { + "#": 8697 + }, + { + "#": 8698 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,14,10,10", + "startCol": 14, + "endCol": 14, + "startRow": 10, + "endRow": 10 + }, + { + "id": 379, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8701 + }, + "angle": 0, + "vertices": { + "#": 8702 + }, + "position": { + "#": 8707 + }, + "force": { + "#": 8708 + }, + "torque": 0, + "positionImpulse": { + "#": 8709 + }, + "constraintImpulse": { + "#": 8710 + }, + "totalContacts": 0, + "speed": 2.90727, + "angularSpeed": 0, + "velocity": { + "#": 8711 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8712 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8713 + }, + "bounds": { + "#": 8715 + }, + "positionPrev": { + "#": 8718 + }, + "anglePrev": 0, + "axes": { + "#": 8719 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8700 + }, + "sleepCounter": 0, + "region": { + "#": 8722 + } + }, + [ + { + "#": 8700 + } + ], + [ + { + "#": 8703 + }, + { + "#": 8704 + }, + { + "#": 8705 + }, + { + "#": 8706 + } + ], + { + "x": 700, + "y": 483.62625, + "index": 0, + "body": { + "#": 8700 + }, + "isInternal": false + }, + { + "x": 725, + "y": 483.62625, + "index": 1, + "body": { + "#": 8700 + }, + "isInternal": false + }, + { + "x": 725, + "y": 508.62625, + "index": 2, + "body": { + "#": 8700 + }, + "isInternal": false + }, + { + "x": 700, + "y": 508.62625, + "index": 3, + "body": { + "#": 8700 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 496.12625 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.28741 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8714 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8716 + }, + "max": { + "#": 8717 + } + }, + { + "x": 700, + "y": 483.62625 + }, + { + "x": 725, + "y": 511.53352 + }, + { + "x": 712.5, + "y": 494.99261 + }, + [ + { + "#": 8720 + }, + { + "#": 8721 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,10,10", + "startCol": 14, + "endCol": 15, + "startRow": 10, + "endRow": 10 + }, + { + "id": 380, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8724 + }, + "angle": 0, + "vertices": { + "#": 8725 + }, + "position": { + "#": 8730 + }, + "force": { + "#": 8731 + }, + "torque": 0, + "positionImpulse": { + "#": 8732 + }, + "constraintImpulse": { + "#": 8733 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 8734 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8735 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8736 + }, + "bounds": { + "#": 8738 + }, + "positionPrev": { + "#": 8741 + }, + "anglePrev": 0, + "axes": { + "#": 8742 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8723 + }, + "sleepCounter": 0, + "region": { + "#": 8745 + } + }, + [ + { + "#": 8723 + } + ], + [ + { + "#": 8726 + }, + { + "#": 8727 + }, + { + "#": 8728 + }, + { + "#": 8729 + } + ], + { + "x": 100, + "y": 508.1678, + "index": 0, + "body": { + "#": 8723 + }, + "isInternal": false + }, + { + "x": 125, + "y": 508.1678, + "index": 1, + "body": { + "#": 8723 + }, + "isInternal": false + }, + { + "x": 125, + "y": 533.1678, + "index": 2, + "body": { + "#": 8723 + }, + "isInternal": false + }, + { + "x": 100, + "y": 533.1678, + "index": 3, + "body": { + "#": 8723 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8737 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8739 + }, + "max": { + "#": 8740 + } + }, + { + "x": 100, + "y": 508.1678 + }, + { + "x": 125, + "y": 534.29444 + }, + { + "x": 112.5, + "y": 519.64948 + }, + [ + { + "#": 8743 + }, + { + "#": 8744 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,10,11", + "startCol": 2, + "endCol": 2, + "startRow": 10, + "endRow": 11 + }, + { + "id": 381, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8747 + }, + "angle": 0, + "vertices": { + "#": 8748 + }, + "position": { + "#": 8753 + }, + "force": { + "#": 8754 + }, + "torque": 0, + "positionImpulse": { + "#": 8755 + }, + "constraintImpulse": { + "#": 8756 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 8757 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8758 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8759 + }, + "bounds": { + "#": 8761 + }, + "positionPrev": { + "#": 8764 + }, + "anglePrev": 0, + "axes": { + "#": 8765 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8746 + }, + "sleepCounter": 0, + "region": { + "#": 8768 + } + }, + [ + { + "#": 8746 + } + ], + [ + { + "#": 8749 + }, + { + "#": 8750 + }, + { + "#": 8751 + }, + { + "#": 8752 + } + ], + { + "x": 125, + "y": 508.1678, + "index": 0, + "body": { + "#": 8746 + }, + "isInternal": false + }, + { + "x": 150, + "y": 508.1678, + "index": 1, + "body": { + "#": 8746 + }, + "isInternal": false + }, + { + "x": 150, + "y": 533.1678, + "index": 2, + "body": { + "#": 8746 + }, + "isInternal": false + }, + { + "x": 125, + "y": 533.1678, + "index": 3, + "body": { + "#": 8746 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8760 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8762 + }, + "max": { + "#": 8763 + } + }, + { + "x": 125, + "y": 508.1678 + }, + { + "x": 150, + "y": 534.29444 + }, + { + "x": 137.5, + "y": 519.64948 + }, + [ + { + "#": 8766 + }, + { + "#": 8767 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,10,11", + "startCol": 2, + "endCol": 3, + "startRow": 10, + "endRow": 11 + }, + { + "id": 382, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8770 + }, + "angle": 0, + "vertices": { + "#": 8771 + }, + "position": { + "#": 8776 + }, + "force": { + "#": 8777 + }, + "torque": 0, + "positionImpulse": { + "#": 8778 + }, + "constraintImpulse": { + "#": 8779 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 8780 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8781 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8782 + }, + "bounds": { + "#": 8784 + }, + "positionPrev": { + "#": 8787 + }, + "anglePrev": 0, + "axes": { + "#": 8788 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8769 + }, + "sleepCounter": 0, + "region": { + "#": 8791 + } + }, + [ + { + "#": 8769 + } + ], + [ + { + "#": 8772 + }, + { + "#": 8773 + }, + { + "#": 8774 + }, + { + "#": 8775 + } + ], + { + "x": 150, + "y": 508.1678, + "index": 0, + "body": { + "#": 8769 + }, + "isInternal": false + }, + { + "x": 175, + "y": 508.1678, + "index": 1, + "body": { + "#": 8769 + }, + "isInternal": false + }, + { + "x": 175, + "y": 533.1678, + "index": 2, + "body": { + "#": 8769 + }, + "isInternal": false + }, + { + "x": 150, + "y": 533.1678, + "index": 3, + "body": { + "#": 8769 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8783 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8785 + }, + "max": { + "#": 8786 + } + }, + { + "x": 150, + "y": 508.1678 + }, + { + "x": 175, + "y": 534.29444 + }, + { + "x": 162.5, + "y": 519.64948 + }, + [ + { + "#": 8789 + }, + { + "#": 8790 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,3,10,11", + "startCol": 3, + "endCol": 3, + "startRow": 10, + "endRow": 11 + }, + { + "id": 383, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8793 + }, + "angle": 0, + "vertices": { + "#": 8794 + }, + "position": { + "#": 8799 + }, + "force": { + "#": 8800 + }, + "torque": 0, + "positionImpulse": { + "#": 8801 + }, + "constraintImpulse": { + "#": 8802 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 8803 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8804 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8805 + }, + "bounds": { + "#": 8807 + }, + "positionPrev": { + "#": 8810 + }, + "anglePrev": 0, + "axes": { + "#": 8811 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8792 + }, + "sleepCounter": 0, + "region": { + "#": 8814 + } + }, + [ + { + "#": 8792 + } + ], + [ + { + "#": 8795 + }, + { + "#": 8796 + }, + { + "#": 8797 + }, + { + "#": 8798 + } + ], + { + "x": 175, + "y": 508.1678, + "index": 0, + "body": { + "#": 8792 + }, + "isInternal": false + }, + { + "x": 200, + "y": 508.1678, + "index": 1, + "body": { + "#": 8792 + }, + "isInternal": false + }, + { + "x": 200, + "y": 533.1678, + "index": 2, + "body": { + "#": 8792 + }, + "isInternal": false + }, + { + "x": 175, + "y": 533.1678, + "index": 3, + "body": { + "#": 8792 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8806 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8808 + }, + "max": { + "#": 8809 + } + }, + { + "x": 175, + "y": 508.1678 + }, + { + "x": 200, + "y": 534.29444 + }, + { + "x": 187.5, + "y": 519.64948 + }, + [ + { + "#": 8812 + }, + { + "#": 8813 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,10,11", + "startCol": 3, + "endCol": 4, + "startRow": 10, + "endRow": 11 + }, + { + "id": 384, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8816 + }, + "angle": 0, + "vertices": { + "#": 8817 + }, + "position": { + "#": 8822 + }, + "force": { + "#": 8823 + }, + "torque": 0, + "positionImpulse": { + "#": 8824 + }, + "constraintImpulse": { + "#": 8825 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 8826 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8827 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8828 + }, + "bounds": { + "#": 8830 + }, + "positionPrev": { + "#": 8833 + }, + "anglePrev": 0, + "axes": { + "#": 8834 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8815 + }, + "sleepCounter": 0, + "region": { + "#": 8837 + } + }, + [ + { + "#": 8815 + } + ], + [ + { + "#": 8818 + }, + { + "#": 8819 + }, + { + "#": 8820 + }, + { + "#": 8821 + } + ], + { + "x": 200, + "y": 508.1678, + "index": 0, + "body": { + "#": 8815 + }, + "isInternal": false + }, + { + "x": 225, + "y": 508.1678, + "index": 1, + "body": { + "#": 8815 + }, + "isInternal": false + }, + { + "x": 225, + "y": 533.1678, + "index": 2, + "body": { + "#": 8815 + }, + "isInternal": false + }, + { + "x": 200, + "y": 533.1678, + "index": 3, + "body": { + "#": 8815 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8829 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8831 + }, + "max": { + "#": 8832 + } + }, + { + "x": 200, + "y": 508.1678 + }, + { + "x": 225, + "y": 534.29444 + }, + { + "x": 212.5, + "y": 519.64948 + }, + [ + { + "#": 8835 + }, + { + "#": 8836 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,10,11", + "startCol": 4, + "endCol": 4, + "startRow": 10, + "endRow": 11 + }, + { + "id": 385, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8839 + }, + "angle": 0, + "vertices": { + "#": 8840 + }, + "position": { + "#": 8845 + }, + "force": { + "#": 8846 + }, + "torque": 0, + "positionImpulse": { + "#": 8847 + }, + "constraintImpulse": { + "#": 8848 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 8849 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8850 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8851 + }, + "bounds": { + "#": 8853 + }, + "positionPrev": { + "#": 8856 + }, + "anglePrev": 0, + "axes": { + "#": 8857 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8838 + }, + "sleepCounter": 0, + "region": { + "#": 8860 + } + }, + [ + { + "#": 8838 + } + ], + [ + { + "#": 8841 + }, + { + "#": 8842 + }, + { + "#": 8843 + }, + { + "#": 8844 + } + ], + { + "x": 225, + "y": 508.1678, + "index": 0, + "body": { + "#": 8838 + }, + "isInternal": false + }, + { + "x": 250, + "y": 508.1678, + "index": 1, + "body": { + "#": 8838 + }, + "isInternal": false + }, + { + "x": 250, + "y": 533.1678, + "index": 2, + "body": { + "#": 8838 + }, + "isInternal": false + }, + { + "x": 225, + "y": 533.1678, + "index": 3, + "body": { + "#": 8838 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8852 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8854 + }, + "max": { + "#": 8855 + } + }, + { + "x": 225, + "y": 508.1678 + }, + { + "x": 250, + "y": 534.29444 + }, + { + "x": 237.5, + "y": 519.64948 + }, + [ + { + "#": 8858 + }, + { + "#": 8859 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,10,11", + "startCol": 4, + "endCol": 5, + "startRow": 10, + "endRow": 11 + }, + { + "id": 386, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8862 + }, + "angle": 0, + "vertices": { + "#": 8863 + }, + "position": { + "#": 8868 + }, + "force": { + "#": 8869 + }, + "torque": 0, + "positionImpulse": { + "#": 8870 + }, + "constraintImpulse": { + "#": 8871 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 8872 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8873 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8874 + }, + "bounds": { + "#": 8876 + }, + "positionPrev": { + "#": 8879 + }, + "anglePrev": 0, + "axes": { + "#": 8880 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8861 + }, + "sleepCounter": 0, + "region": { + "#": 8883 + } + }, + [ + { + "#": 8861 + } + ], + [ + { + "#": 8864 + }, + { + "#": 8865 + }, + { + "#": 8866 + }, + { + "#": 8867 + } + ], + { + "x": 250, + "y": 508.1678, + "index": 0, + "body": { + "#": 8861 + }, + "isInternal": false + }, + { + "x": 275, + "y": 508.1678, + "index": 1, + "body": { + "#": 8861 + }, + "isInternal": false + }, + { + "x": 275, + "y": 533.1678, + "index": 2, + "body": { + "#": 8861 + }, + "isInternal": false + }, + { + "x": 250, + "y": 533.1678, + "index": 3, + "body": { + "#": 8861 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8875 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8877 + }, + "max": { + "#": 8878 + } + }, + { + "x": 250, + "y": 508.1678 + }, + { + "x": 275, + "y": 534.29444 + }, + { + "x": 262.5, + "y": 519.64948 + }, + [ + { + "#": 8881 + }, + { + "#": 8882 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,10,11", + "startCol": 5, + "endCol": 5, + "startRow": 10, + "endRow": 11 + }, + { + "id": 387, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8885 + }, + "angle": 0, + "vertices": { + "#": 8886 + }, + "position": { + "#": 8891 + }, + "force": { + "#": 8892 + }, + "torque": 0, + "positionImpulse": { + "#": 8893 + }, + "constraintImpulse": { + "#": 8894 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 8895 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8896 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8897 + }, + "bounds": { + "#": 8899 + }, + "positionPrev": { + "#": 8902 + }, + "anglePrev": 0, + "axes": { + "#": 8903 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8884 + }, + "sleepCounter": 0, + "region": { + "#": 8906 + } + }, + [ + { + "#": 8884 + } + ], + [ + { + "#": 8887 + }, + { + "#": 8888 + }, + { + "#": 8889 + }, + { + "#": 8890 + } + ], + { + "x": 275, + "y": 508.1678, + "index": 0, + "body": { + "#": 8884 + }, + "isInternal": false + }, + { + "x": 300, + "y": 508.1678, + "index": 1, + "body": { + "#": 8884 + }, + "isInternal": false + }, + { + "x": 300, + "y": 533.1678, + "index": 2, + "body": { + "#": 8884 + }, + "isInternal": false + }, + { + "x": 275, + "y": 533.1678, + "index": 3, + "body": { + "#": 8884 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8898 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8900 + }, + "max": { + "#": 8901 + } + }, + { + "x": 275, + "y": 508.1678 + }, + { + "x": 300, + "y": 534.29444 + }, + { + "x": 287.5, + "y": 519.64948 + }, + [ + { + "#": 8904 + }, + { + "#": 8905 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,10,11", + "startCol": 5, + "endCol": 6, + "startRow": 10, + "endRow": 11 + }, + { + "id": 388, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8908 + }, + "angle": 0, + "vertices": { + "#": 8909 + }, + "position": { + "#": 8914 + }, + "force": { + "#": 8915 + }, + "torque": 0, + "positionImpulse": { + "#": 8916 + }, + "constraintImpulse": { + "#": 8917 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 8918 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8919 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8920 + }, + "bounds": { + "#": 8922 + }, + "positionPrev": { + "#": 8925 + }, + "anglePrev": 0, + "axes": { + "#": 8926 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8907 + }, + "sleepCounter": 0, + "region": { + "#": 8929 + } + }, + [ + { + "#": 8907 + } + ], + [ + { + "#": 8910 + }, + { + "#": 8911 + }, + { + "#": 8912 + }, + { + "#": 8913 + } + ], + { + "x": 300, + "y": 508.1678, + "index": 0, + "body": { + "#": 8907 + }, + "isInternal": false + }, + { + "x": 325, + "y": 508.1678, + "index": 1, + "body": { + "#": 8907 + }, + "isInternal": false + }, + { + "x": 325, + "y": 533.1678, + "index": 2, + "body": { + "#": 8907 + }, + "isInternal": false + }, + { + "x": 300, + "y": 533.1678, + "index": 3, + "body": { + "#": 8907 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8921 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8923 + }, + "max": { + "#": 8924 + } + }, + { + "x": 300, + "y": 508.1678 + }, + { + "x": 325, + "y": 534.29444 + }, + { + "x": 312.5, + "y": 519.64948 + }, + [ + { + "#": 8927 + }, + { + "#": 8928 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,10,11", + "startCol": 6, + "endCol": 6, + "startRow": 10, + "endRow": 11 + }, + { + "id": 389, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8931 + }, + "angle": 0, + "vertices": { + "#": 8932 + }, + "position": { + "#": 8937 + }, + "force": { + "#": 8938 + }, + "torque": 0, + "positionImpulse": { + "#": 8939 + }, + "constraintImpulse": { + "#": 8940 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 8941 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8942 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8943 + }, + "bounds": { + "#": 8945 + }, + "positionPrev": { + "#": 8948 + }, + "anglePrev": 0, + "axes": { + "#": 8949 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8930 + }, + "sleepCounter": 0, + "region": { + "#": 8952 + } + }, + [ + { + "#": 8930 + } + ], + [ + { + "#": 8933 + }, + { + "#": 8934 + }, + { + "#": 8935 + }, + { + "#": 8936 + } + ], + { + "x": 325, + "y": 508.1678, + "index": 0, + "body": { + "#": 8930 + }, + "isInternal": false + }, + { + "x": 350, + "y": 508.1678, + "index": 1, + "body": { + "#": 8930 + }, + "isInternal": false + }, + { + "x": 350, + "y": 533.1678, + "index": 2, + "body": { + "#": 8930 + }, + "isInternal": false + }, + { + "x": 325, + "y": 533.1678, + "index": 3, + "body": { + "#": 8930 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8944 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8946 + }, + "max": { + "#": 8947 + } + }, + { + "x": 325, + "y": 508.1678 + }, + { + "x": 350, + "y": 534.29444 + }, + { + "x": 337.5, + "y": 519.64948 + }, + [ + { + "#": 8950 + }, + { + "#": 8951 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,10,11", + "startCol": 6, + "endCol": 7, + "startRow": 10, + "endRow": 11 + }, + { + "id": 390, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8954 + }, + "angle": 0, + "vertices": { + "#": 8955 + }, + "position": { + "#": 8960 + }, + "force": { + "#": 8961 + }, + "torque": 0, + "positionImpulse": { + "#": 8962 + }, + "constraintImpulse": { + "#": 8963 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 8964 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8965 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8966 + }, + "bounds": { + "#": 8968 + }, + "positionPrev": { + "#": 8971 + }, + "anglePrev": 0, + "axes": { + "#": 8972 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8953 + }, + "sleepCounter": 0, + "region": { + "#": 8975 + } + }, + [ + { + "#": 8953 + } + ], + [ + { + "#": 8956 + }, + { + "#": 8957 + }, + { + "#": 8958 + }, + { + "#": 8959 + } + ], + { + "x": 350, + "y": 508.1678, + "index": 0, + "body": { + "#": 8953 + }, + "isInternal": false + }, + { + "x": 375, + "y": 508.1678, + "index": 1, + "body": { + "#": 8953 + }, + "isInternal": false + }, + { + "x": 375, + "y": 533.1678, + "index": 2, + "body": { + "#": 8953 + }, + "isInternal": false + }, + { + "x": 350, + "y": 533.1678, + "index": 3, + "body": { + "#": 8953 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8967 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8969 + }, + "max": { + "#": 8970 + } + }, + { + "x": 350, + "y": 508.1678 + }, + { + "x": 375, + "y": 534.29444 + }, + { + "x": 362.5, + "y": 519.64948 + }, + [ + { + "#": 8973 + }, + { + "#": 8974 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,10,11", + "startCol": 7, + "endCol": 7, + "startRow": 10, + "endRow": 11 + }, + { + "id": 391, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 8977 + }, + "angle": 0, + "vertices": { + "#": 8978 + }, + "position": { + "#": 8983 + }, + "force": { + "#": 8984 + }, + "torque": 0, + "positionImpulse": { + "#": 8985 + }, + "constraintImpulse": { + "#": 8986 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 8987 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 8988 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 8989 + }, + "bounds": { + "#": 8991 + }, + "positionPrev": { + "#": 8994 + }, + "anglePrev": 0, + "axes": { + "#": 8995 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8976 + }, + "sleepCounter": 0, + "region": { + "#": 8998 + } + }, + [ + { + "#": 8976 + } + ], + [ + { + "#": 8979 + }, + { + "#": 8980 + }, + { + "#": 8981 + }, + { + "#": 8982 + } + ], + { + "x": 375, + "y": 508.1678, + "index": 0, + "body": { + "#": 8976 + }, + "isInternal": false + }, + { + "x": 400, + "y": 508.1678, + "index": 1, + "body": { + "#": 8976 + }, + "isInternal": false + }, + { + "x": 400, + "y": 533.1678, + "index": 2, + "body": { + "#": 8976 + }, + "isInternal": false + }, + { + "x": 375, + "y": 533.1678, + "index": 3, + "body": { + "#": 8976 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 8990 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 8992 + }, + "max": { + "#": 8993 + } + }, + { + "x": 375, + "y": 508.1678 + }, + { + "x": 400, + "y": 534.29444 + }, + { + "x": 387.5, + "y": 519.64948 + }, + [ + { + "#": 8996 + }, + { + "#": 8997 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,10,11", + "startCol": 7, + "endCol": 8, + "startRow": 10, + "endRow": 11 + }, + { + "id": 392, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9000 + }, + "angle": 0, + "vertices": { + "#": 9001 + }, + "position": { + "#": 9006 + }, + "force": { + "#": 9007 + }, + "torque": 0, + "positionImpulse": { + "#": 9008 + }, + "constraintImpulse": { + "#": 9009 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 9010 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9011 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9012 + }, + "bounds": { + "#": 9014 + }, + "positionPrev": { + "#": 9017 + }, + "anglePrev": 0, + "axes": { + "#": 9018 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 8999 + }, + "sleepCounter": 0, + "region": { + "#": 9021 + } + }, + [ + { + "#": 8999 + } + ], + [ + { + "#": 9002 + }, + { + "#": 9003 + }, + { + "#": 9004 + }, + { + "#": 9005 + } + ], + { + "x": 400, + "y": 508.1678, + "index": 0, + "body": { + "#": 8999 + }, + "isInternal": false + }, + { + "x": 425, + "y": 508.1678, + "index": 1, + "body": { + "#": 8999 + }, + "isInternal": false + }, + { + "x": 425, + "y": 533.1678, + "index": 2, + "body": { + "#": 8999 + }, + "isInternal": false + }, + { + "x": 400, + "y": 533.1678, + "index": 3, + "body": { + "#": 8999 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9013 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9015 + }, + "max": { + "#": 9016 + } + }, + { + "x": 400, + "y": 508.1678 + }, + { + "x": 425, + "y": 534.29444 + }, + { + "x": 412.5, + "y": 519.64948 + }, + [ + { + "#": 9019 + }, + { + "#": 9020 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,8,10,11", + "startCol": 8, + "endCol": 8, + "startRow": 10, + "endRow": 11 + }, + { + "id": 393, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9023 + }, + "angle": 0, + "vertices": { + "#": 9024 + }, + "position": { + "#": 9029 + }, + "force": { + "#": 9030 + }, + "torque": 0, + "positionImpulse": { + "#": 9031 + }, + "constraintImpulse": { + "#": 9032 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 9033 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9034 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9035 + }, + "bounds": { + "#": 9037 + }, + "positionPrev": { + "#": 9040 + }, + "anglePrev": 0, + "axes": { + "#": 9041 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9022 + }, + "sleepCounter": 0, + "region": { + "#": 9044 + } + }, + [ + { + "#": 9022 + } + ], + [ + { + "#": 9025 + }, + { + "#": 9026 + }, + { + "#": 9027 + }, + { + "#": 9028 + } + ], + { + "x": 425, + "y": 508.1678, + "index": 0, + "body": { + "#": 9022 + }, + "isInternal": false + }, + { + "x": 450, + "y": 508.1678, + "index": 1, + "body": { + "#": 9022 + }, + "isInternal": false + }, + { + "x": 450, + "y": 533.1678, + "index": 2, + "body": { + "#": 9022 + }, + "isInternal": false + }, + { + "x": 425, + "y": 533.1678, + "index": 3, + "body": { + "#": 9022 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9036 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9038 + }, + "max": { + "#": 9039 + } + }, + { + "x": 425, + "y": 508.1678 + }, + { + "x": 450, + "y": 534.29444 + }, + { + "x": 437.5, + "y": 519.64948 + }, + [ + { + "#": 9042 + }, + { + "#": 9043 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,10,11", + "startCol": 8, + "endCol": 9, + "startRow": 10, + "endRow": 11 + }, + { + "id": 394, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9046 + }, + "angle": 0, + "vertices": { + "#": 9047 + }, + "position": { + "#": 9052 + }, + "force": { + "#": 9053 + }, + "torque": 0, + "positionImpulse": { + "#": 9054 + }, + "constraintImpulse": { + "#": 9055 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 9056 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9057 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9058 + }, + "bounds": { + "#": 9060 + }, + "positionPrev": { + "#": 9063 + }, + "anglePrev": 0, + "axes": { + "#": 9064 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9045 + }, + "sleepCounter": 0, + "region": { + "#": 9067 + } + }, + [ + { + "#": 9045 + } + ], + [ + { + "#": 9048 + }, + { + "#": 9049 + }, + { + "#": 9050 + }, + { + "#": 9051 + } + ], + { + "x": 450, + "y": 508.1678, + "index": 0, + "body": { + "#": 9045 + }, + "isInternal": false + }, + { + "x": 475, + "y": 508.1678, + "index": 1, + "body": { + "#": 9045 + }, + "isInternal": false + }, + { + "x": 475, + "y": 533.1678, + "index": 2, + "body": { + "#": 9045 + }, + "isInternal": false + }, + { + "x": 450, + "y": 533.1678, + "index": 3, + "body": { + "#": 9045 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9059 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9061 + }, + "max": { + "#": 9062 + } + }, + { + "x": 450, + "y": 508.1678 + }, + { + "x": 475, + "y": 534.29444 + }, + { + "x": 462.5, + "y": 519.64948 + }, + [ + { + "#": 9065 + }, + { + "#": 9066 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,10,11", + "startCol": 9, + "endCol": 9, + "startRow": 10, + "endRow": 11 + }, + { + "id": 395, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9069 + }, + "angle": 0, + "vertices": { + "#": 9070 + }, + "position": { + "#": 9075 + }, + "force": { + "#": 9076 + }, + "torque": 0, + "positionImpulse": { + "#": 9077 + }, + "constraintImpulse": { + "#": 9078 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 9079 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9080 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9081 + }, + "bounds": { + "#": 9083 + }, + "positionPrev": { + "#": 9086 + }, + "anglePrev": 0, + "axes": { + "#": 9087 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9068 + }, + "sleepCounter": 0, + "region": { + "#": 9090 + } + }, + [ + { + "#": 9068 + } + ], + [ + { + "#": 9071 + }, + { + "#": 9072 + }, + { + "#": 9073 + }, + { + "#": 9074 + } + ], + { + "x": 475, + "y": 508.1678, + "index": 0, + "body": { + "#": 9068 + }, + "isInternal": false + }, + { + "x": 500, + "y": 508.1678, + "index": 1, + "body": { + "#": 9068 + }, + "isInternal": false + }, + { + "x": 500, + "y": 533.1678, + "index": 2, + "body": { + "#": 9068 + }, + "isInternal": false + }, + { + "x": 475, + "y": 533.1678, + "index": 3, + "body": { + "#": 9068 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9082 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9084 + }, + "max": { + "#": 9085 + } + }, + { + "x": 475, + "y": 508.1678 + }, + { + "x": 500, + "y": 534.29444 + }, + { + "x": 487.5, + "y": 519.64948 + }, + [ + { + "#": 9088 + }, + { + "#": 9089 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,10,11", + "startCol": 9, + "endCol": 10, + "startRow": 10, + "endRow": 11 + }, + { + "id": 396, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9092 + }, + "angle": 0, + "vertices": { + "#": 9093 + }, + "position": { + "#": 9098 + }, + "force": { + "#": 9099 + }, + "torque": 0, + "positionImpulse": { + "#": 9100 + }, + "constraintImpulse": { + "#": 9101 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 9102 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9103 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9104 + }, + "bounds": { + "#": 9106 + }, + "positionPrev": { + "#": 9109 + }, + "anglePrev": 0, + "axes": { + "#": 9110 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9091 + }, + "sleepCounter": 0, + "region": { + "#": 9113 + } + }, + [ + { + "#": 9091 + } + ], + [ + { + "#": 9094 + }, + { + "#": 9095 + }, + { + "#": 9096 + }, + { + "#": 9097 + } + ], + { + "x": 500, + "y": 508.1678, + "index": 0, + "body": { + "#": 9091 + }, + "isInternal": false + }, + { + "x": 525, + "y": 508.1678, + "index": 1, + "body": { + "#": 9091 + }, + "isInternal": false + }, + { + "x": 525, + "y": 533.1678, + "index": 2, + "body": { + "#": 9091 + }, + "isInternal": false + }, + { + "x": 500, + "y": 533.1678, + "index": 3, + "body": { + "#": 9091 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9105 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9107 + }, + "max": { + "#": 9108 + } + }, + { + "x": 500, + "y": 508.1678 + }, + { + "x": 525, + "y": 534.29444 + }, + { + "x": 512.5, + "y": 519.64948 + }, + [ + { + "#": 9111 + }, + { + "#": 9112 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,10,11", + "startCol": 10, + "endCol": 10, + "startRow": 10, + "endRow": 11 + }, + { + "id": 397, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9115 + }, + "angle": 0, + "vertices": { + "#": 9116 + }, + "position": { + "#": 9121 + }, + "force": { + "#": 9122 + }, + "torque": 0, + "positionImpulse": { + "#": 9123 + }, + "constraintImpulse": { + "#": 9124 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 9125 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9126 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9127 + }, + "bounds": { + "#": 9129 + }, + "positionPrev": { + "#": 9132 + }, + "anglePrev": 0, + "axes": { + "#": 9133 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9114 + }, + "sleepCounter": 0, + "region": { + "#": 9136 + } + }, + [ + { + "#": 9114 + } + ], + [ + { + "#": 9117 + }, + { + "#": 9118 + }, + { + "#": 9119 + }, + { + "#": 9120 + } + ], + { + "x": 525, + "y": 508.1678, + "index": 0, + "body": { + "#": 9114 + }, + "isInternal": false + }, + { + "x": 550, + "y": 508.1678, + "index": 1, + "body": { + "#": 9114 + }, + "isInternal": false + }, + { + "x": 550, + "y": 533.1678, + "index": 2, + "body": { + "#": 9114 + }, + "isInternal": false + }, + { + "x": 525, + "y": 533.1678, + "index": 3, + "body": { + "#": 9114 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9128 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9130 + }, + "max": { + "#": 9131 + } + }, + { + "x": 525, + "y": 508.1678 + }, + { + "x": 550, + "y": 534.29444 + }, + { + "x": 537.5, + "y": 519.64948 + }, + [ + { + "#": 9134 + }, + { + "#": 9135 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,10,11", + "startCol": 10, + "endCol": 11, + "startRow": 10, + "endRow": 11 + }, + { + "id": 398, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9138 + }, + "angle": 0, + "vertices": { + "#": 9139 + }, + "position": { + "#": 9144 + }, + "force": { + "#": 9145 + }, + "torque": 0, + "positionImpulse": { + "#": 9146 + }, + "constraintImpulse": { + "#": 9147 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 9148 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9149 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9150 + }, + "bounds": { + "#": 9152 + }, + "positionPrev": { + "#": 9155 + }, + "anglePrev": 0, + "axes": { + "#": 9156 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9137 + }, + "sleepCounter": 0, + "region": { + "#": 9159 + } + }, + [ + { + "#": 9137 + } + ], + [ + { + "#": 9140 + }, + { + "#": 9141 + }, + { + "#": 9142 + }, + { + "#": 9143 + } + ], + { + "x": 550, + "y": 508.1678, + "index": 0, + "body": { + "#": 9137 + }, + "isInternal": false + }, + { + "x": 575, + "y": 508.1678, + "index": 1, + "body": { + "#": 9137 + }, + "isInternal": false + }, + { + "x": 575, + "y": 533.1678, + "index": 2, + "body": { + "#": 9137 + }, + "isInternal": false + }, + { + "x": 550, + "y": 533.1678, + "index": 3, + "body": { + "#": 9137 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9151 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9153 + }, + "max": { + "#": 9154 + } + }, + { + "x": 550, + "y": 508.1678 + }, + { + "x": 575, + "y": 534.29444 + }, + { + "x": 562.5, + "y": 519.64948 + }, + [ + { + "#": 9157 + }, + { + "#": 9158 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,11,10,11", + "startCol": 11, + "endCol": 11, + "startRow": 10, + "endRow": 11 + }, + { + "id": 399, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9161 + }, + "angle": 0, + "vertices": { + "#": 9162 + }, + "position": { + "#": 9167 + }, + "force": { + "#": 9168 + }, + "torque": 0, + "positionImpulse": { + "#": 9169 + }, + "constraintImpulse": { + "#": 9170 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 9171 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9172 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9173 + }, + "bounds": { + "#": 9175 + }, + "positionPrev": { + "#": 9178 + }, + "anglePrev": 0, + "axes": { + "#": 9179 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9160 + }, + "sleepCounter": 0, + "region": { + "#": 9182 + } + }, + [ + { + "#": 9160 + } + ], + [ + { + "#": 9163 + }, + { + "#": 9164 + }, + { + "#": 9165 + }, + { + "#": 9166 + } + ], + { + "x": 575, + "y": 508.1678, + "index": 0, + "body": { + "#": 9160 + }, + "isInternal": false + }, + { + "x": 600, + "y": 508.1678, + "index": 1, + "body": { + "#": 9160 + }, + "isInternal": false + }, + { + "x": 600, + "y": 533.1678, + "index": 2, + "body": { + "#": 9160 + }, + "isInternal": false + }, + { + "x": 575, + "y": 533.1678, + "index": 3, + "body": { + "#": 9160 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9174 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9176 + }, + "max": { + "#": 9177 + } + }, + { + "x": 575, + "y": 508.1678 + }, + { + "x": 600, + "y": 534.29444 + }, + { + "x": 587.5, + "y": 519.64948 + }, + [ + { + "#": 9180 + }, + { + "#": 9181 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,10,11", + "startCol": 11, + "endCol": 12, + "startRow": 10, + "endRow": 11 + }, + { + "id": 400, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9184 + }, + "angle": 0, + "vertices": { + "#": 9185 + }, + "position": { + "#": 9190 + }, + "force": { + "#": 9191 + }, + "torque": 0, + "positionImpulse": { + "#": 9192 + }, + "constraintImpulse": { + "#": 9193 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 9194 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9195 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9196 + }, + "bounds": { + "#": 9198 + }, + "positionPrev": { + "#": 9201 + }, + "anglePrev": 0, + "axes": { + "#": 9202 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9183 + }, + "sleepCounter": 0, + "region": { + "#": 9205 + } + }, + [ + { + "#": 9183 + } + ], + [ + { + "#": 9186 + }, + { + "#": 9187 + }, + { + "#": 9188 + }, + { + "#": 9189 + } + ], + { + "x": 600, + "y": 508.1678, + "index": 0, + "body": { + "#": 9183 + }, + "isInternal": false + }, + { + "x": 625, + "y": 508.1678, + "index": 1, + "body": { + "#": 9183 + }, + "isInternal": false + }, + { + "x": 625, + "y": 533.1678, + "index": 2, + "body": { + "#": 9183 + }, + "isInternal": false + }, + { + "x": 600, + "y": 533.1678, + "index": 3, + "body": { + "#": 9183 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9197 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9199 + }, + "max": { + "#": 9200 + } + }, + { + "x": 600, + "y": 508.1678 + }, + { + "x": 625, + "y": 534.29444 + }, + { + "x": 612.5, + "y": 519.64948 + }, + [ + { + "#": 9203 + }, + { + "#": 9204 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,10,11", + "startCol": 12, + "endCol": 13, + "startRow": 10, + "endRow": 11 + }, + { + "id": 401, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9207 + }, + "angle": 0, + "vertices": { + "#": 9208 + }, + "position": { + "#": 9213 + }, + "force": { + "#": 9214 + }, + "torque": 0, + "positionImpulse": { + "#": 9215 + }, + "constraintImpulse": { + "#": 9216 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 9217 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9218 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9219 + }, + "bounds": { + "#": 9221 + }, + "positionPrev": { + "#": 9224 + }, + "anglePrev": 0, + "axes": { + "#": 9225 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9206 + }, + "sleepCounter": 0, + "region": { + "#": 9228 + } + }, + [ + { + "#": 9206 + } + ], + [ + { + "#": 9209 + }, + { + "#": 9210 + }, + { + "#": 9211 + }, + { + "#": 9212 + } + ], + { + "x": 625, + "y": 508.1678, + "index": 0, + "body": { + "#": 9206 + }, + "isInternal": false + }, + { + "x": 650, + "y": 508.1678, + "index": 1, + "body": { + "#": 9206 + }, + "isInternal": false + }, + { + "x": 650, + "y": 533.1678, + "index": 2, + "body": { + "#": 9206 + }, + "isInternal": false + }, + { + "x": 625, + "y": 533.1678, + "index": 3, + "body": { + "#": 9206 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9220 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9222 + }, + "max": { + "#": 9223 + } + }, + { + "x": 625, + "y": 508.1678 + }, + { + "x": 650, + "y": 534.29444 + }, + { + "x": 637.5, + "y": 519.64948 + }, + [ + { + "#": 9226 + }, + { + "#": 9227 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,13,10,11", + "startCol": 13, + "endCol": 13, + "startRow": 10, + "endRow": 11 + }, + { + "id": 402, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9230 + }, + "angle": 0, + "vertices": { + "#": 9231 + }, + "position": { + "#": 9236 + }, + "force": { + "#": 9237 + }, + "torque": 0, + "positionImpulse": { + "#": 9238 + }, + "constraintImpulse": { + "#": 9239 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 9240 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9241 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9242 + }, + "bounds": { + "#": 9244 + }, + "positionPrev": { + "#": 9247 + }, + "anglePrev": 0, + "axes": { + "#": 9248 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9229 + }, + "sleepCounter": 0, + "region": { + "#": 9251 + } + }, + [ + { + "#": 9229 + } + ], + [ + { + "#": 9232 + }, + { + "#": 9233 + }, + { + "#": 9234 + }, + { + "#": 9235 + } + ], + { + "x": 650, + "y": 508.1678, + "index": 0, + "body": { + "#": 9229 + }, + "isInternal": false + }, + { + "x": 675, + "y": 508.1678, + "index": 1, + "body": { + "#": 9229 + }, + "isInternal": false + }, + { + "x": 675, + "y": 533.1678, + "index": 2, + "body": { + "#": 9229 + }, + "isInternal": false + }, + { + "x": 650, + "y": 533.1678, + "index": 3, + "body": { + "#": 9229 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9243 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9245 + }, + "max": { + "#": 9246 + } + }, + { + "x": 650, + "y": 508.1678 + }, + { + "x": 675, + "y": 534.29444 + }, + { + "x": 662.5, + "y": 519.64948 + }, + [ + { + "#": 9249 + }, + { + "#": 9250 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,10,11", + "startCol": 13, + "endCol": 14, + "startRow": 10, + "endRow": 11 + }, + { + "id": 403, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9253 + }, + "angle": 0, + "vertices": { + "#": 9254 + }, + "position": { + "#": 9259 + }, + "force": { + "#": 9260 + }, + "torque": 0, + "positionImpulse": { + "#": 9261 + }, + "constraintImpulse": { + "#": 9262 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 9263 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9264 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9265 + }, + "bounds": { + "#": 9267 + }, + "positionPrev": { + "#": 9270 + }, + "anglePrev": 0, + "axes": { + "#": 9271 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9252 + }, + "sleepCounter": 0, + "region": { + "#": 9274 + } + }, + [ + { + "#": 9252 + } + ], + [ + { + "#": 9255 + }, + { + "#": 9256 + }, + { + "#": 9257 + }, + { + "#": 9258 + } + ], + { + "x": 675, + "y": 508.1678, + "index": 0, + "body": { + "#": 9252 + }, + "isInternal": false + }, + { + "x": 700, + "y": 508.1678, + "index": 1, + "body": { + "#": 9252 + }, + "isInternal": false + }, + { + "x": 700, + "y": 533.1678, + "index": 2, + "body": { + "#": 9252 + }, + "isInternal": false + }, + { + "x": 675, + "y": 533.1678, + "index": 3, + "body": { + "#": 9252 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9266 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9268 + }, + "max": { + "#": 9269 + } + }, + { + "x": 675, + "y": 508.1678 + }, + { + "x": 700, + "y": 534.29444 + }, + { + "x": 687.5, + "y": 519.64948 + }, + [ + { + "#": 9272 + }, + { + "#": 9273 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,14,10,11", + "startCol": 14, + "endCol": 14, + "startRow": 10, + "endRow": 11 + }, + { + "id": 404, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9276 + }, + "angle": 0, + "vertices": { + "#": 9277 + }, + "position": { + "#": 9282 + }, + "force": { + "#": 9283 + }, + "torque": 0, + "positionImpulse": { + "#": 9284 + }, + "constraintImpulse": { + "#": 9285 + }, + "totalContacts": 0, + "speed": 1.12664, + "angularSpeed": 0, + "velocity": { + "#": 9286 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9287 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9288 + }, + "bounds": { + "#": 9290 + }, + "positionPrev": { + "#": 9293 + }, + "anglePrev": 0, + "axes": { + "#": 9294 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9275 + }, + "sleepCounter": 0, + "region": { + "#": 9297 + } + }, + [ + { + "#": 9275 + } + ], + [ + { + "#": 9278 + }, + { + "#": 9279 + }, + { + "#": 9280 + }, + { + "#": 9281 + } + ], + { + "x": 700, + "y": 508.1678, + "index": 0, + "body": { + "#": 9275 + }, + "isInternal": false + }, + { + "x": 725, + "y": 508.1678, + "index": 1, + "body": { + "#": 9275 + }, + "isInternal": false + }, + { + "x": 725, + "y": 533.1678, + "index": 2, + "body": { + "#": 9275 + }, + "isInternal": false + }, + { + "x": 700, + "y": 533.1678, + "index": 3, + "body": { + "#": 9275 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 520.6678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.3425 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.86455 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9289 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9291 + }, + "max": { + "#": 9292 + } + }, + { + "x": 700, + "y": 508.1678 + }, + { + "x": 725, + "y": 534.29444 + }, + { + "x": 712.5, + "y": 519.64948 + }, + [ + { + "#": 9295 + }, + { + "#": 9296 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,10,11", + "startCol": 14, + "endCol": 15, + "startRow": 10, + "endRow": 11 + }, + { + "id": 405, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9299 + }, + "angle": 0, + "vertices": { + "#": 9300 + }, + "position": { + "#": 9305 + }, + "force": { + "#": 9306 + }, + "torque": 0, + "positionImpulse": { + "#": 9307 + }, + "constraintImpulse": { + "#": 9308 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9309 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9310 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9311 + }, + "bounds": { + "#": 9313 + }, + "positionPrev": { + "#": 9316 + }, + "anglePrev": 0, + "axes": { + "#": 9317 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9298 + }, + "sleepCounter": 0, + "region": { + "#": 9320 + } + }, + [ + { + "#": 9298 + } + ], + [ + { + "#": 9301 + }, + { + "#": 9302 + }, + { + "#": 9303 + }, + { + "#": 9304 + } + ], + { + "x": 100, + "y": 532.04384, + "index": 0, + "body": { + "#": 9298 + }, + "isInternal": false + }, + { + "x": 125, + "y": 532.04384, + "index": 1, + "body": { + "#": 9298 + }, + "isInternal": false + }, + { + "x": 125, + "y": 557.04384, + "index": 2, + "body": { + "#": 9298 + }, + "isInternal": false + }, + { + "x": 100, + "y": 557.04384, + "index": 3, + "body": { + "#": 9298 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9312 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9314 + }, + "max": { + "#": 9315 + } + }, + { + "x": 100, + "y": 532.04384 + }, + { + "x": 125, + "y": 558.05264 + }, + { + "x": 112.5, + "y": 543.86683 + }, + [ + { + "#": 9318 + }, + { + "#": 9319 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,11,11", + "startCol": 2, + "endCol": 2, + "startRow": 11, + "endRow": 11 + }, + { + "id": 406, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9322 + }, + "angle": 0, + "vertices": { + "#": 9323 + }, + "position": { + "#": 9328 + }, + "force": { + "#": 9329 + }, + "torque": 0, + "positionImpulse": { + "#": 9330 + }, + "constraintImpulse": { + "#": 9331 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9332 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9333 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9334 + }, + "bounds": { + "#": 9336 + }, + "positionPrev": { + "#": 9339 + }, + "anglePrev": 0, + "axes": { + "#": 9340 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9321 + }, + "sleepCounter": 0, + "region": { + "#": 9343 + } + }, + [ + { + "#": 9321 + } + ], + [ + { + "#": 9324 + }, + { + "#": 9325 + }, + { + "#": 9326 + }, + { + "#": 9327 + } + ], + { + "x": 125, + "y": 532.04384, + "index": 0, + "body": { + "#": 9321 + }, + "isInternal": false + }, + { + "x": 150, + "y": 532.04384, + "index": 1, + "body": { + "#": 9321 + }, + "isInternal": false + }, + { + "x": 150, + "y": 557.04384, + "index": 2, + "body": { + "#": 9321 + }, + "isInternal": false + }, + { + "x": 125, + "y": 557.04384, + "index": 3, + "body": { + "#": 9321 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9335 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9337 + }, + "max": { + "#": 9338 + } + }, + { + "x": 125, + "y": 532.04384 + }, + { + "x": 150, + "y": 558.05264 + }, + { + "x": 137.5, + "y": 543.86683 + }, + [ + { + "#": 9341 + }, + { + "#": 9342 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,11,11", + "startCol": 2, + "endCol": 3, + "startRow": 11, + "endRow": 11 + }, + { + "id": 407, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9345 + }, + "angle": 0, + "vertices": { + "#": 9346 + }, + "position": { + "#": 9351 + }, + "force": { + "#": 9352 + }, + "torque": 0, + "positionImpulse": { + "#": 9353 + }, + "constraintImpulse": { + "#": 9354 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9355 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9356 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9357 + }, + "bounds": { + "#": 9359 + }, + "positionPrev": { + "#": 9362 + }, + "anglePrev": 0, + "axes": { + "#": 9363 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9344 + }, + "sleepCounter": 0, + "region": { + "#": 9366 + } + }, + [ + { + "#": 9344 + } + ], + [ + { + "#": 9347 + }, + { + "#": 9348 + }, + { + "#": 9349 + }, + { + "#": 9350 + } + ], + { + "x": 150, + "y": 532.04384, + "index": 0, + "body": { + "#": 9344 + }, + "isInternal": false + }, + { + "x": 175, + "y": 532.04384, + "index": 1, + "body": { + "#": 9344 + }, + "isInternal": false + }, + { + "x": 175, + "y": 557.04384, + "index": 2, + "body": { + "#": 9344 + }, + "isInternal": false + }, + { + "x": 150, + "y": 557.04384, + "index": 3, + "body": { + "#": 9344 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9358 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9360 + }, + "max": { + "#": 9361 + } + }, + { + "x": 150, + "y": 532.04384 + }, + { + "x": 175, + "y": 558.05264 + }, + { + "x": 162.5, + "y": 543.86683 + }, + [ + { + "#": 9364 + }, + { + "#": 9365 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,3,11,11", + "startCol": 3, + "endCol": 3, + "startRow": 11, + "endRow": 11 + }, + { + "id": 408, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9368 + }, + "angle": 0, + "vertices": { + "#": 9369 + }, + "position": { + "#": 9374 + }, + "force": { + "#": 9375 + }, + "torque": 0, + "positionImpulse": { + "#": 9376 + }, + "constraintImpulse": { + "#": 9377 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9378 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9379 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9380 + }, + "bounds": { + "#": 9382 + }, + "positionPrev": { + "#": 9385 + }, + "anglePrev": 0, + "axes": { + "#": 9386 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9367 + }, + "sleepCounter": 0, + "region": { + "#": 9389 + } + }, + [ + { + "#": 9367 + } + ], + [ + { + "#": 9370 + }, + { + "#": 9371 + }, + { + "#": 9372 + }, + { + "#": 9373 + } + ], + { + "x": 175, + "y": 532.04384, + "index": 0, + "body": { + "#": 9367 + }, + "isInternal": false + }, + { + "x": 200, + "y": 532.04384, + "index": 1, + "body": { + "#": 9367 + }, + "isInternal": false + }, + { + "x": 200, + "y": 557.04384, + "index": 2, + "body": { + "#": 9367 + }, + "isInternal": false + }, + { + "x": 175, + "y": 557.04384, + "index": 3, + "body": { + "#": 9367 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9381 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9383 + }, + "max": { + "#": 9384 + } + }, + { + "x": 175, + "y": 532.04384 + }, + { + "x": 200, + "y": 558.05264 + }, + { + "x": 187.5, + "y": 543.86683 + }, + [ + { + "#": 9387 + }, + { + "#": 9388 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,11,11", + "startCol": 3, + "endCol": 4, + "startRow": 11, + "endRow": 11 + }, + { + "id": 409, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9391 + }, + "angle": 0, + "vertices": { + "#": 9392 + }, + "position": { + "#": 9397 + }, + "force": { + "#": 9398 + }, + "torque": 0, + "positionImpulse": { + "#": 9399 + }, + "constraintImpulse": { + "#": 9400 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9401 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9402 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9403 + }, + "bounds": { + "#": 9405 + }, + "positionPrev": { + "#": 9408 + }, + "anglePrev": 0, + "axes": { + "#": 9409 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9390 + }, + "sleepCounter": 0, + "region": { + "#": 9412 + } + }, + [ + { + "#": 9390 + } + ], + [ + { + "#": 9393 + }, + { + "#": 9394 + }, + { + "#": 9395 + }, + { + "#": 9396 + } + ], + { + "x": 200, + "y": 532.04384, + "index": 0, + "body": { + "#": 9390 + }, + "isInternal": false + }, + { + "x": 225, + "y": 532.04384, + "index": 1, + "body": { + "#": 9390 + }, + "isInternal": false + }, + { + "x": 225, + "y": 557.04384, + "index": 2, + "body": { + "#": 9390 + }, + "isInternal": false + }, + { + "x": 200, + "y": 557.04384, + "index": 3, + "body": { + "#": 9390 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9404 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9406 + }, + "max": { + "#": 9407 + } + }, + { + "x": 200, + "y": 532.04384 + }, + { + "x": 225, + "y": 558.05264 + }, + { + "x": 212.5, + "y": 543.86683 + }, + [ + { + "#": 9410 + }, + { + "#": 9411 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,11,11", + "startCol": 4, + "endCol": 4, + "startRow": 11, + "endRow": 11 + }, + { + "id": 410, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9414 + }, + "angle": 0, + "vertices": { + "#": 9415 + }, + "position": { + "#": 9420 + }, + "force": { + "#": 9421 + }, + "torque": 0, + "positionImpulse": { + "#": 9422 + }, + "constraintImpulse": { + "#": 9423 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9424 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9425 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9426 + }, + "bounds": { + "#": 9428 + }, + "positionPrev": { + "#": 9431 + }, + "anglePrev": 0, + "axes": { + "#": 9432 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9413 + }, + "sleepCounter": 0, + "region": { + "#": 9435 + } + }, + [ + { + "#": 9413 + } + ], + [ + { + "#": 9416 + }, + { + "#": 9417 + }, + { + "#": 9418 + }, + { + "#": 9419 + } + ], + { + "x": 225, + "y": 532.04384, + "index": 0, + "body": { + "#": 9413 + }, + "isInternal": false + }, + { + "x": 250, + "y": 532.04384, + "index": 1, + "body": { + "#": 9413 + }, + "isInternal": false + }, + { + "x": 250, + "y": 557.04384, + "index": 2, + "body": { + "#": 9413 + }, + "isInternal": false + }, + { + "x": 225, + "y": 557.04384, + "index": 3, + "body": { + "#": 9413 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9427 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9429 + }, + "max": { + "#": 9430 + } + }, + { + "x": 225, + "y": 532.04384 + }, + { + "x": 250, + "y": 558.05264 + }, + { + "x": 237.5, + "y": 543.86683 + }, + [ + { + "#": 9433 + }, + { + "#": 9434 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,11,11", + "startCol": 4, + "endCol": 5, + "startRow": 11, + "endRow": 11 + }, + { + "id": 411, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9437 + }, + "angle": 0, + "vertices": { + "#": 9438 + }, + "position": { + "#": 9443 + }, + "force": { + "#": 9444 + }, + "torque": 0, + "positionImpulse": { + "#": 9445 + }, + "constraintImpulse": { + "#": 9446 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9447 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9448 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9449 + }, + "bounds": { + "#": 9451 + }, + "positionPrev": { + "#": 9454 + }, + "anglePrev": 0, + "axes": { + "#": 9455 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9436 + }, + "sleepCounter": 0, + "region": { + "#": 9458 + } + }, + [ + { + "#": 9436 + } + ], + [ + { + "#": 9439 + }, + { + "#": 9440 + }, + { + "#": 9441 + }, + { + "#": 9442 + } + ], + { + "x": 250, + "y": 532.04384, + "index": 0, + "body": { + "#": 9436 + }, + "isInternal": false + }, + { + "x": 275, + "y": 532.04384, + "index": 1, + "body": { + "#": 9436 + }, + "isInternal": false + }, + { + "x": 275, + "y": 557.04384, + "index": 2, + "body": { + "#": 9436 + }, + "isInternal": false + }, + { + "x": 250, + "y": 557.04384, + "index": 3, + "body": { + "#": 9436 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9450 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9452 + }, + "max": { + "#": 9453 + } + }, + { + "x": 250, + "y": 532.04384 + }, + { + "x": 275, + "y": 558.05264 + }, + { + "x": 262.5, + "y": 543.86683 + }, + [ + { + "#": 9456 + }, + { + "#": 9457 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,11,11", + "startCol": 5, + "endCol": 5, + "startRow": 11, + "endRow": 11 + }, + { + "id": 412, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9460 + }, + "angle": 0, + "vertices": { + "#": 9461 + }, + "position": { + "#": 9466 + }, + "force": { + "#": 9467 + }, + "torque": 0, + "positionImpulse": { + "#": 9468 + }, + "constraintImpulse": { + "#": 9469 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9470 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9471 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9472 + }, + "bounds": { + "#": 9474 + }, + "positionPrev": { + "#": 9477 + }, + "anglePrev": 0, + "axes": { + "#": 9478 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9459 + }, + "sleepCounter": 0, + "region": { + "#": 9481 + } + }, + [ + { + "#": 9459 + } + ], + [ + { + "#": 9462 + }, + { + "#": 9463 + }, + { + "#": 9464 + }, + { + "#": 9465 + } + ], + { + "x": 275, + "y": 532.04384, + "index": 0, + "body": { + "#": 9459 + }, + "isInternal": false + }, + { + "x": 300, + "y": 532.04384, + "index": 1, + "body": { + "#": 9459 + }, + "isInternal": false + }, + { + "x": 300, + "y": 557.04384, + "index": 2, + "body": { + "#": 9459 + }, + "isInternal": false + }, + { + "x": 275, + "y": 557.04384, + "index": 3, + "body": { + "#": 9459 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9473 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9475 + }, + "max": { + "#": 9476 + } + }, + { + "x": 275, + "y": 532.04384 + }, + { + "x": 300, + "y": 558.05264 + }, + { + "x": 287.5, + "y": 543.86683 + }, + [ + { + "#": 9479 + }, + { + "#": 9480 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,11,11", + "startCol": 5, + "endCol": 6, + "startRow": 11, + "endRow": 11 + }, + { + "id": 413, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9483 + }, + "angle": 0, + "vertices": { + "#": 9484 + }, + "position": { + "#": 9489 + }, + "force": { + "#": 9490 + }, + "torque": 0, + "positionImpulse": { + "#": 9491 + }, + "constraintImpulse": { + "#": 9492 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9493 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9494 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9495 + }, + "bounds": { + "#": 9497 + }, + "positionPrev": { + "#": 9500 + }, + "anglePrev": 0, + "axes": { + "#": 9501 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9482 + }, + "sleepCounter": 0, + "region": { + "#": 9504 + } + }, + [ + { + "#": 9482 + } + ], + [ + { + "#": 9485 + }, + { + "#": 9486 + }, + { + "#": 9487 + }, + { + "#": 9488 + } + ], + { + "x": 300, + "y": 532.04384, + "index": 0, + "body": { + "#": 9482 + }, + "isInternal": false + }, + { + "x": 325, + "y": 532.04384, + "index": 1, + "body": { + "#": 9482 + }, + "isInternal": false + }, + { + "x": 325, + "y": 557.04384, + "index": 2, + "body": { + "#": 9482 + }, + "isInternal": false + }, + { + "x": 300, + "y": 557.04384, + "index": 3, + "body": { + "#": 9482 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9496 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9498 + }, + "max": { + "#": 9499 + } + }, + { + "x": 300, + "y": 532.04384 + }, + { + "x": 325, + "y": 558.05264 + }, + { + "x": 312.5, + "y": 543.86683 + }, + [ + { + "#": 9502 + }, + { + "#": 9503 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,11,11", + "startCol": 6, + "endCol": 6, + "startRow": 11, + "endRow": 11 + }, + { + "id": 414, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9506 + }, + "angle": 0, + "vertices": { + "#": 9507 + }, + "position": { + "#": 9512 + }, + "force": { + "#": 9513 + }, + "torque": 0, + "positionImpulse": { + "#": 9514 + }, + "constraintImpulse": { + "#": 9515 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9516 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9517 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9518 + }, + "bounds": { + "#": 9520 + }, + "positionPrev": { + "#": 9523 + }, + "anglePrev": 0, + "axes": { + "#": 9524 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9505 + }, + "sleepCounter": 0, + "region": { + "#": 9527 + } + }, + [ + { + "#": 9505 + } + ], + [ + { + "#": 9508 + }, + { + "#": 9509 + }, + { + "#": 9510 + }, + { + "#": 9511 + } + ], + { + "x": 325, + "y": 532.04384, + "index": 0, + "body": { + "#": 9505 + }, + "isInternal": false + }, + { + "x": 350, + "y": 532.04384, + "index": 1, + "body": { + "#": 9505 + }, + "isInternal": false + }, + { + "x": 350, + "y": 557.04384, + "index": 2, + "body": { + "#": 9505 + }, + "isInternal": false + }, + { + "x": 325, + "y": 557.04384, + "index": 3, + "body": { + "#": 9505 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9519 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9521 + }, + "max": { + "#": 9522 + } + }, + { + "x": 325, + "y": 532.04384 + }, + { + "x": 350, + "y": 558.05264 + }, + { + "x": 337.5, + "y": 543.86683 + }, + [ + { + "#": 9525 + }, + { + "#": 9526 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,11,11", + "startCol": 6, + "endCol": 7, + "startRow": 11, + "endRow": 11 + }, + { + "id": 415, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9529 + }, + "angle": 0, + "vertices": { + "#": 9530 + }, + "position": { + "#": 9535 + }, + "force": { + "#": 9536 + }, + "torque": 0, + "positionImpulse": { + "#": 9537 + }, + "constraintImpulse": { + "#": 9538 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9539 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9540 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9541 + }, + "bounds": { + "#": 9543 + }, + "positionPrev": { + "#": 9546 + }, + "anglePrev": 0, + "axes": { + "#": 9547 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9528 + }, + "sleepCounter": 0, + "region": { + "#": 9550 + } + }, + [ + { + "#": 9528 + } + ], + [ + { + "#": 9531 + }, + { + "#": 9532 + }, + { + "#": 9533 + }, + { + "#": 9534 + } + ], + { + "x": 350, + "y": 532.04384, + "index": 0, + "body": { + "#": 9528 + }, + "isInternal": false + }, + { + "x": 375, + "y": 532.04384, + "index": 1, + "body": { + "#": 9528 + }, + "isInternal": false + }, + { + "x": 375, + "y": 557.04384, + "index": 2, + "body": { + "#": 9528 + }, + "isInternal": false + }, + { + "x": 350, + "y": 557.04384, + "index": 3, + "body": { + "#": 9528 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9542 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9544 + }, + "max": { + "#": 9545 + } + }, + { + "x": 350, + "y": 532.04384 + }, + { + "x": 375, + "y": 558.05264 + }, + { + "x": 362.5, + "y": 543.86683 + }, + [ + { + "#": 9548 + }, + { + "#": 9549 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,11,11", + "startCol": 7, + "endCol": 7, + "startRow": 11, + "endRow": 11 + }, + { + "id": 416, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9552 + }, + "angle": 0, + "vertices": { + "#": 9553 + }, + "position": { + "#": 9558 + }, + "force": { + "#": 9559 + }, + "torque": 0, + "positionImpulse": { + "#": 9560 + }, + "constraintImpulse": { + "#": 9561 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9562 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9563 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9564 + }, + "bounds": { + "#": 9566 + }, + "positionPrev": { + "#": 9569 + }, + "anglePrev": 0, + "axes": { + "#": 9570 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9551 + }, + "sleepCounter": 0, + "region": { + "#": 9573 + } + }, + [ + { + "#": 9551 + } + ], + [ + { + "#": 9554 + }, + { + "#": 9555 + }, + { + "#": 9556 + }, + { + "#": 9557 + } + ], + { + "x": 375, + "y": 532.04384, + "index": 0, + "body": { + "#": 9551 + }, + "isInternal": false + }, + { + "x": 400, + "y": 532.04384, + "index": 1, + "body": { + "#": 9551 + }, + "isInternal": false + }, + { + "x": 400, + "y": 557.04384, + "index": 2, + "body": { + "#": 9551 + }, + "isInternal": false + }, + { + "x": 375, + "y": 557.04384, + "index": 3, + "body": { + "#": 9551 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9565 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9567 + }, + "max": { + "#": 9568 + } + }, + { + "x": 375, + "y": 532.04384 + }, + { + "x": 400, + "y": 558.05264 + }, + { + "x": 387.5, + "y": 543.86683 + }, + [ + { + "#": 9571 + }, + { + "#": 9572 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,11,11", + "startCol": 7, + "endCol": 8, + "startRow": 11, + "endRow": 11 + }, + { + "id": 417, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9575 + }, + "angle": 0, + "vertices": { + "#": 9576 + }, + "position": { + "#": 9581 + }, + "force": { + "#": 9582 + }, + "torque": 0, + "positionImpulse": { + "#": 9583 + }, + "constraintImpulse": { + "#": 9584 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9585 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9586 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9587 + }, + "bounds": { + "#": 9589 + }, + "positionPrev": { + "#": 9592 + }, + "anglePrev": 0, + "axes": { + "#": 9593 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9574 + }, + "sleepCounter": 0, + "region": { + "#": 9596 + } + }, + [ + { + "#": 9574 + } + ], + [ + { + "#": 9577 + }, + { + "#": 9578 + }, + { + "#": 9579 + }, + { + "#": 9580 + } + ], + { + "x": 400, + "y": 532.04384, + "index": 0, + "body": { + "#": 9574 + }, + "isInternal": false + }, + { + "x": 425, + "y": 532.04384, + "index": 1, + "body": { + "#": 9574 + }, + "isInternal": false + }, + { + "x": 425, + "y": 557.04384, + "index": 2, + "body": { + "#": 9574 + }, + "isInternal": false + }, + { + "x": 400, + "y": 557.04384, + "index": 3, + "body": { + "#": 9574 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9588 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9590 + }, + "max": { + "#": 9591 + } + }, + { + "x": 400, + "y": 532.04384 + }, + { + "x": 425, + "y": 558.05264 + }, + { + "x": 412.5, + "y": 543.86683 + }, + [ + { + "#": 9594 + }, + { + "#": 9595 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,8,11,11", + "startCol": 8, + "endCol": 8, + "startRow": 11, + "endRow": 11 + }, + { + "id": 418, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9598 + }, + "angle": 0, + "vertices": { + "#": 9599 + }, + "position": { + "#": 9604 + }, + "force": { + "#": 9605 + }, + "torque": 0, + "positionImpulse": { + "#": 9606 + }, + "constraintImpulse": { + "#": 9607 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9608 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9609 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9610 + }, + "bounds": { + "#": 9612 + }, + "positionPrev": { + "#": 9615 + }, + "anglePrev": 0, + "axes": { + "#": 9616 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9597 + }, + "sleepCounter": 0, + "region": { + "#": 9619 + } + }, + [ + { + "#": 9597 + } + ], + [ + { + "#": 9600 + }, + { + "#": 9601 + }, + { + "#": 9602 + }, + { + "#": 9603 + } + ], + { + "x": 425, + "y": 532.04384, + "index": 0, + "body": { + "#": 9597 + }, + "isInternal": false + }, + { + "x": 450, + "y": 532.04384, + "index": 1, + "body": { + "#": 9597 + }, + "isInternal": false + }, + { + "x": 450, + "y": 557.04384, + "index": 2, + "body": { + "#": 9597 + }, + "isInternal": false + }, + { + "x": 425, + "y": 557.04384, + "index": 3, + "body": { + "#": 9597 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9611 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9613 + }, + "max": { + "#": 9614 + } + }, + { + "x": 425, + "y": 532.04384 + }, + { + "x": 450, + "y": 558.05264 + }, + { + "x": 437.5, + "y": 543.86683 + }, + [ + { + "#": 9617 + }, + { + "#": 9618 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,11,11", + "startCol": 8, + "endCol": 9, + "startRow": 11, + "endRow": 11 + }, + { + "id": 419, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9621 + }, + "angle": 0, + "vertices": { + "#": 9622 + }, + "position": { + "#": 9627 + }, + "force": { + "#": 9628 + }, + "torque": 0, + "positionImpulse": { + "#": 9629 + }, + "constraintImpulse": { + "#": 9630 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9631 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9632 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9633 + }, + "bounds": { + "#": 9635 + }, + "positionPrev": { + "#": 9638 + }, + "anglePrev": 0, + "axes": { + "#": 9639 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9620 + }, + "sleepCounter": 0, + "region": { + "#": 9642 + } + }, + [ + { + "#": 9620 + } + ], + [ + { + "#": 9623 + }, + { + "#": 9624 + }, + { + "#": 9625 + }, + { + "#": 9626 + } + ], + { + "x": 450, + "y": 532.04384, + "index": 0, + "body": { + "#": 9620 + }, + "isInternal": false + }, + { + "x": 475, + "y": 532.04384, + "index": 1, + "body": { + "#": 9620 + }, + "isInternal": false + }, + { + "x": 475, + "y": 557.04384, + "index": 2, + "body": { + "#": 9620 + }, + "isInternal": false + }, + { + "x": 450, + "y": 557.04384, + "index": 3, + "body": { + "#": 9620 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9634 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9636 + }, + "max": { + "#": 9637 + } + }, + { + "x": 450, + "y": 532.04384 + }, + { + "x": 475, + "y": 558.05264 + }, + { + "x": 462.5, + "y": 543.86683 + }, + [ + { + "#": 9640 + }, + { + "#": 9641 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,11,11", + "startCol": 9, + "endCol": 9, + "startRow": 11, + "endRow": 11 + }, + { + "id": 420, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9644 + }, + "angle": 0, + "vertices": { + "#": 9645 + }, + "position": { + "#": 9650 + }, + "force": { + "#": 9651 + }, + "torque": 0, + "positionImpulse": { + "#": 9652 + }, + "constraintImpulse": { + "#": 9653 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9654 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9655 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9656 + }, + "bounds": { + "#": 9658 + }, + "positionPrev": { + "#": 9661 + }, + "anglePrev": 0, + "axes": { + "#": 9662 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9643 + }, + "sleepCounter": 0, + "region": { + "#": 9665 + } + }, + [ + { + "#": 9643 + } + ], + [ + { + "#": 9646 + }, + { + "#": 9647 + }, + { + "#": 9648 + }, + { + "#": 9649 + } + ], + { + "x": 475, + "y": 532.04384, + "index": 0, + "body": { + "#": 9643 + }, + "isInternal": false + }, + { + "x": 500, + "y": 532.04384, + "index": 1, + "body": { + "#": 9643 + }, + "isInternal": false + }, + { + "x": 500, + "y": 557.04384, + "index": 2, + "body": { + "#": 9643 + }, + "isInternal": false + }, + { + "x": 475, + "y": 557.04384, + "index": 3, + "body": { + "#": 9643 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9657 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9659 + }, + "max": { + "#": 9660 + } + }, + { + "x": 475, + "y": 532.04384 + }, + { + "x": 500, + "y": 558.05264 + }, + { + "x": 487.5, + "y": 543.86683 + }, + [ + { + "#": 9663 + }, + { + "#": 9664 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,11,11", + "startCol": 9, + "endCol": 10, + "startRow": 11, + "endRow": 11 + }, + { + "id": 421, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9667 + }, + "angle": 0, + "vertices": { + "#": 9668 + }, + "position": { + "#": 9673 + }, + "force": { + "#": 9674 + }, + "torque": 0, + "positionImpulse": { + "#": 9675 + }, + "constraintImpulse": { + "#": 9676 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9677 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9678 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9679 + }, + "bounds": { + "#": 9681 + }, + "positionPrev": { + "#": 9684 + }, + "anglePrev": 0, + "axes": { + "#": 9685 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9666 + }, + "sleepCounter": 0, + "region": { + "#": 9688 + } + }, + [ + { + "#": 9666 + } + ], + [ + { + "#": 9669 + }, + { + "#": 9670 + }, + { + "#": 9671 + }, + { + "#": 9672 + } + ], + { + "x": 500, + "y": 532.04384, + "index": 0, + "body": { + "#": 9666 + }, + "isInternal": false + }, + { + "x": 525, + "y": 532.04384, + "index": 1, + "body": { + "#": 9666 + }, + "isInternal": false + }, + { + "x": 525, + "y": 557.04384, + "index": 2, + "body": { + "#": 9666 + }, + "isInternal": false + }, + { + "x": 500, + "y": 557.04384, + "index": 3, + "body": { + "#": 9666 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9680 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9682 + }, + "max": { + "#": 9683 + } + }, + { + "x": 500, + "y": 532.04384 + }, + { + "x": 525, + "y": 558.05264 + }, + { + "x": 512.5, + "y": 543.86683 + }, + [ + { + "#": 9686 + }, + { + "#": 9687 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,11,11", + "startCol": 10, + "endCol": 10, + "startRow": 11, + "endRow": 11 + }, + { + "id": 422, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9690 + }, + "angle": 0, + "vertices": { + "#": 9691 + }, + "position": { + "#": 9696 + }, + "force": { + "#": 9697 + }, + "torque": 0, + "positionImpulse": { + "#": 9698 + }, + "constraintImpulse": { + "#": 9699 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9700 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9701 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9702 + }, + "bounds": { + "#": 9704 + }, + "positionPrev": { + "#": 9707 + }, + "anglePrev": 0, + "axes": { + "#": 9708 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9689 + }, + "sleepCounter": 0, + "region": { + "#": 9711 + } + }, + [ + { + "#": 9689 + } + ], + [ + { + "#": 9692 + }, + { + "#": 9693 + }, + { + "#": 9694 + }, + { + "#": 9695 + } + ], + { + "x": 525, + "y": 532.04384, + "index": 0, + "body": { + "#": 9689 + }, + "isInternal": false + }, + { + "x": 550, + "y": 532.04384, + "index": 1, + "body": { + "#": 9689 + }, + "isInternal": false + }, + { + "x": 550, + "y": 557.04384, + "index": 2, + "body": { + "#": 9689 + }, + "isInternal": false + }, + { + "x": 525, + "y": 557.04384, + "index": 3, + "body": { + "#": 9689 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9703 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9705 + }, + "max": { + "#": 9706 + } + }, + { + "x": 525, + "y": 532.04384 + }, + { + "x": 550, + "y": 558.05264 + }, + { + "x": 537.5, + "y": 543.86683 + }, + [ + { + "#": 9709 + }, + { + "#": 9710 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,11,11", + "startCol": 10, + "endCol": 11, + "startRow": 11, + "endRow": 11 + }, + { + "id": 423, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9713 + }, + "angle": 0, + "vertices": { + "#": 9714 + }, + "position": { + "#": 9719 + }, + "force": { + "#": 9720 + }, + "torque": 0, + "positionImpulse": { + "#": 9721 + }, + "constraintImpulse": { + "#": 9722 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9723 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9724 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9725 + }, + "bounds": { + "#": 9727 + }, + "positionPrev": { + "#": 9730 + }, + "anglePrev": 0, + "axes": { + "#": 9731 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9712 + }, + "sleepCounter": 0, + "region": { + "#": 9734 + } + }, + [ + { + "#": 9712 + } + ], + [ + { + "#": 9715 + }, + { + "#": 9716 + }, + { + "#": 9717 + }, + { + "#": 9718 + } + ], + { + "x": 550, + "y": 532.04384, + "index": 0, + "body": { + "#": 9712 + }, + "isInternal": false + }, + { + "x": 575, + "y": 532.04384, + "index": 1, + "body": { + "#": 9712 + }, + "isInternal": false + }, + { + "x": 575, + "y": 557.04384, + "index": 2, + "body": { + "#": 9712 + }, + "isInternal": false + }, + { + "x": 550, + "y": 557.04384, + "index": 3, + "body": { + "#": 9712 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9726 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9728 + }, + "max": { + "#": 9729 + } + }, + { + "x": 550, + "y": 532.04384 + }, + { + "x": 575, + "y": 558.05264 + }, + { + "x": 562.5, + "y": 543.86683 + }, + [ + { + "#": 9732 + }, + { + "#": 9733 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,11,11,11", + "startCol": 11, + "endCol": 11, + "startRow": 11, + "endRow": 11 + }, + { + "id": 424, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9736 + }, + "angle": 0, + "vertices": { + "#": 9737 + }, + "position": { + "#": 9742 + }, + "force": { + "#": 9743 + }, + "torque": 0, + "positionImpulse": { + "#": 9744 + }, + "constraintImpulse": { + "#": 9745 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9746 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9747 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9748 + }, + "bounds": { + "#": 9750 + }, + "positionPrev": { + "#": 9753 + }, + "anglePrev": 0, + "axes": { + "#": 9754 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9735 + }, + "sleepCounter": 0, + "region": { + "#": 9757 + } + }, + [ + { + "#": 9735 + } + ], + [ + { + "#": 9738 + }, + { + "#": 9739 + }, + { + "#": 9740 + }, + { + "#": 9741 + } + ], + { + "x": 575, + "y": 532.04384, + "index": 0, + "body": { + "#": 9735 + }, + "isInternal": false + }, + { + "x": 600, + "y": 532.04384, + "index": 1, + "body": { + "#": 9735 + }, + "isInternal": false + }, + { + "x": 600, + "y": 557.04384, + "index": 2, + "body": { + "#": 9735 + }, + "isInternal": false + }, + { + "x": 575, + "y": 557.04384, + "index": 3, + "body": { + "#": 9735 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9749 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9751 + }, + "max": { + "#": 9752 + } + }, + { + "x": 575, + "y": 532.04384 + }, + { + "x": 600, + "y": 558.05264 + }, + { + "x": 587.5, + "y": 543.86683 + }, + [ + { + "#": 9755 + }, + { + "#": 9756 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,11,11", + "startCol": 11, + "endCol": 12, + "startRow": 11, + "endRow": 11 + }, + { + "id": 425, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9759 + }, + "angle": 0, + "vertices": { + "#": 9760 + }, + "position": { + "#": 9765 + }, + "force": { + "#": 9766 + }, + "torque": 0, + "positionImpulse": { + "#": 9767 + }, + "constraintImpulse": { + "#": 9768 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9769 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9770 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9771 + }, + "bounds": { + "#": 9773 + }, + "positionPrev": { + "#": 9776 + }, + "anglePrev": 0, + "axes": { + "#": 9777 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9758 + }, + "sleepCounter": 0, + "region": { + "#": 9780 + } + }, + [ + { + "#": 9758 + } + ], + [ + { + "#": 9761 + }, + { + "#": 9762 + }, + { + "#": 9763 + }, + { + "#": 9764 + } + ], + { + "x": 600, + "y": 532.04384, + "index": 0, + "body": { + "#": 9758 + }, + "isInternal": false + }, + { + "x": 625, + "y": 532.04384, + "index": 1, + "body": { + "#": 9758 + }, + "isInternal": false + }, + { + "x": 625, + "y": 557.04384, + "index": 2, + "body": { + "#": 9758 + }, + "isInternal": false + }, + { + "x": 600, + "y": 557.04384, + "index": 3, + "body": { + "#": 9758 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9772 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9774 + }, + "max": { + "#": 9775 + } + }, + { + "x": 600, + "y": 532.04384 + }, + { + "x": 625, + "y": 558.05264 + }, + { + "x": 612.5, + "y": 543.86683 + }, + [ + { + "#": 9778 + }, + { + "#": 9779 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,11,11", + "startCol": 12, + "endCol": 13, + "startRow": 11, + "endRow": 11 + }, + { + "id": 426, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9782 + }, + "angle": 0, + "vertices": { + "#": 9783 + }, + "position": { + "#": 9788 + }, + "force": { + "#": 9789 + }, + "torque": 0, + "positionImpulse": { + "#": 9790 + }, + "constraintImpulse": { + "#": 9791 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9792 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9793 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9794 + }, + "bounds": { + "#": 9796 + }, + "positionPrev": { + "#": 9799 + }, + "anglePrev": 0, + "axes": { + "#": 9800 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9781 + }, + "sleepCounter": 0, + "region": { + "#": 9803 + } + }, + [ + { + "#": 9781 + } + ], + [ + { + "#": 9784 + }, + { + "#": 9785 + }, + { + "#": 9786 + }, + { + "#": 9787 + } + ], + { + "x": 625, + "y": 532.04384, + "index": 0, + "body": { + "#": 9781 + }, + "isInternal": false + }, + { + "x": 650, + "y": 532.04384, + "index": 1, + "body": { + "#": 9781 + }, + "isInternal": false + }, + { + "x": 650, + "y": 557.04384, + "index": 2, + "body": { + "#": 9781 + }, + "isInternal": false + }, + { + "x": 625, + "y": 557.04384, + "index": 3, + "body": { + "#": 9781 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9795 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9797 + }, + "max": { + "#": 9798 + } + }, + { + "x": 625, + "y": 532.04384 + }, + { + "x": 650, + "y": 558.05264 + }, + { + "x": 637.5, + "y": 543.86683 + }, + [ + { + "#": 9801 + }, + { + "#": 9802 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,13,11,11", + "startCol": 13, + "endCol": 13, + "startRow": 11, + "endRow": 11 + }, + { + "id": 427, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9805 + }, + "angle": 0, + "vertices": { + "#": 9806 + }, + "position": { + "#": 9811 + }, + "force": { + "#": 9812 + }, + "torque": 0, + "positionImpulse": { + "#": 9813 + }, + "constraintImpulse": { + "#": 9814 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9815 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9816 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9817 + }, + "bounds": { + "#": 9819 + }, + "positionPrev": { + "#": 9822 + }, + "anglePrev": 0, + "axes": { + "#": 9823 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9804 + }, + "sleepCounter": 0, + "region": { + "#": 9826 + } + }, + [ + { + "#": 9804 + } + ], + [ + { + "#": 9807 + }, + { + "#": 9808 + }, + { + "#": 9809 + }, + { + "#": 9810 + } + ], + { + "x": 650, + "y": 532.04384, + "index": 0, + "body": { + "#": 9804 + }, + "isInternal": false + }, + { + "x": 675, + "y": 532.04384, + "index": 1, + "body": { + "#": 9804 + }, + "isInternal": false + }, + { + "x": 675, + "y": 557.04384, + "index": 2, + "body": { + "#": 9804 + }, + "isInternal": false + }, + { + "x": 650, + "y": 557.04384, + "index": 3, + "body": { + "#": 9804 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9818 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9820 + }, + "max": { + "#": 9821 + } + }, + { + "x": 650, + "y": 532.04384 + }, + { + "x": 675, + "y": 558.05264 + }, + { + "x": 662.5, + "y": 543.86683 + }, + [ + { + "#": 9824 + }, + { + "#": 9825 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,11,11", + "startCol": 13, + "endCol": 14, + "startRow": 11, + "endRow": 11 + }, + { + "id": 428, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9828 + }, + "angle": 0, + "vertices": { + "#": 9829 + }, + "position": { + "#": 9834 + }, + "force": { + "#": 9835 + }, + "torque": 0, + "positionImpulse": { + "#": 9836 + }, + "constraintImpulse": { + "#": 9837 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9838 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9839 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9840 + }, + "bounds": { + "#": 9842 + }, + "positionPrev": { + "#": 9845 + }, + "anglePrev": 0, + "axes": { + "#": 9846 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9827 + }, + "sleepCounter": 0, + "region": { + "#": 9849 + } + }, + [ + { + "#": 9827 + } + ], + [ + { + "#": 9830 + }, + { + "#": 9831 + }, + { + "#": 9832 + }, + { + "#": 9833 + } + ], + { + "x": 675, + "y": 532.04384, + "index": 0, + "body": { + "#": 9827 + }, + "isInternal": false + }, + { + "x": 700, + "y": 532.04384, + "index": 1, + "body": { + "#": 9827 + }, + "isInternal": false + }, + { + "x": 700, + "y": 557.04384, + "index": 2, + "body": { + "#": 9827 + }, + "isInternal": false + }, + { + "x": 675, + "y": 557.04384, + "index": 3, + "body": { + "#": 9827 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9841 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9843 + }, + "max": { + "#": 9844 + } + }, + { + "x": 675, + "y": 532.04384 + }, + { + "x": 700, + "y": 558.05264 + }, + { + "x": 687.5, + "y": 543.86683 + }, + [ + { + "#": 9847 + }, + { + "#": 9848 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,14,11,11", + "startCol": 14, + "endCol": 14, + "startRow": 11, + "endRow": 11 + }, + { + "id": 429, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9851 + }, + "angle": 0, + "vertices": { + "#": 9852 + }, + "position": { + "#": 9857 + }, + "force": { + "#": 9858 + }, + "torque": 0, + "positionImpulse": { + "#": 9859 + }, + "constraintImpulse": { + "#": 9860 + }, + "totalContacts": 0, + "speed": 1.0088, + "angularSpeed": 0, + "velocity": { + "#": 9861 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9862 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9863 + }, + "bounds": { + "#": 9865 + }, + "positionPrev": { + "#": 9868 + }, + "anglePrev": 0, + "axes": { + "#": 9869 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9850 + }, + "sleepCounter": 0, + "region": { + "#": 9872 + } + }, + [ + { + "#": 9850 + } + ], + [ + { + "#": 9853 + }, + { + "#": 9854 + }, + { + "#": 9855 + }, + { + "#": 9856 + } + ], + { + "x": 700, + "y": 532.04384, + "index": 0, + "body": { + "#": 9850 + }, + "isInternal": false + }, + { + "x": 725, + "y": 532.04384, + "index": 1, + "body": { + "#": 9850 + }, + "isInternal": false + }, + { + "x": 725, + "y": 557.04384, + "index": 2, + "body": { + "#": 9850 + }, + "isInternal": false + }, + { + "x": 700, + "y": 557.04384, + "index": 3, + "body": { + "#": 9850 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 544.54384 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.42693 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9864 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9866 + }, + "max": { + "#": 9867 + } + }, + { + "x": 700, + "y": 532.04384 + }, + { + "x": 725, + "y": 558.05264 + }, + { + "x": 712.5, + "y": 543.86683 + }, + [ + { + "#": 9870 + }, + { + "#": 9871 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,11,11", + "startCol": 14, + "endCol": 15, + "startRow": 11, + "endRow": 11 + }, + { + "id": 430, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9874 + }, + "angle": 0, + "vertices": { + "#": 9875 + }, + "position": { + "#": 9880 + }, + "force": { + "#": 9881 + }, + "torque": 0, + "positionImpulse": { + "#": 9882 + }, + "constraintImpulse": { + "#": 9883 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 9884 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9885 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9886 + }, + "bounds": { + "#": 9888 + }, + "positionPrev": { + "#": 9891 + }, + "anglePrev": 0, + "axes": { + "#": 9892 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9873 + }, + "sleepCounter": 0, + "region": { + "#": 9895 + } + }, + [ + { + "#": 9873 + } + ], + [ + { + "#": 9876 + }, + { + "#": 9877 + }, + { + "#": 9878 + }, + { + "#": 9879 + } + ], + { + "x": 100, + "y": 555.56416, + "index": 0, + "body": { + "#": 9873 + }, + "isInternal": false + }, + { + "x": 125, + "y": 555.56416, + "index": 1, + "body": { + "#": 9873 + }, + "isInternal": false + }, + { + "x": 125, + "y": 580.56416, + "index": 2, + "body": { + "#": 9873 + }, + "isInternal": false + }, + { + "x": 100, + "y": 580.56416, + "index": 3, + "body": { + "#": 9873 + }, + "isInternal": false + }, + { + "x": 112.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9887 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9889 + }, + "max": { + "#": 9890 + } + }, + { + "x": 100, + "y": 555.56416 + }, + { + "x": 125, + "y": 581.21541 + }, + { + "x": 112.5, + "y": 567.79821 + }, + [ + { + "#": 9893 + }, + { + "#": 9894 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,2,11,12", + "startCol": 2, + "endCol": 2, + "startRow": 11, + "endRow": 12 + }, + { + "id": 431, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9897 + }, + "angle": 0, + "vertices": { + "#": 9898 + }, + "position": { + "#": 9903 + }, + "force": { + "#": 9904 + }, + "torque": 0, + "positionImpulse": { + "#": 9905 + }, + "constraintImpulse": { + "#": 9906 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 9907 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9908 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9909 + }, + "bounds": { + "#": 9911 + }, + "positionPrev": { + "#": 9914 + }, + "anglePrev": 0, + "axes": { + "#": 9915 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9896 + }, + "sleepCounter": 0, + "region": { + "#": 9918 + } + }, + [ + { + "#": 9896 + } + ], + [ + { + "#": 9899 + }, + { + "#": 9900 + }, + { + "#": 9901 + }, + { + "#": 9902 + } + ], + { + "x": 125, + "y": 555.56416, + "index": 0, + "body": { + "#": 9896 + }, + "isInternal": false + }, + { + "x": 150, + "y": 555.56416, + "index": 1, + "body": { + "#": 9896 + }, + "isInternal": false + }, + { + "x": 150, + "y": 580.56416, + "index": 2, + "body": { + "#": 9896 + }, + "isInternal": false + }, + { + "x": 125, + "y": 580.56416, + "index": 3, + "body": { + "#": 9896 + }, + "isInternal": false + }, + { + "x": 137.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9910 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9912 + }, + "max": { + "#": 9913 + } + }, + { + "x": 125, + "y": 555.56416 + }, + { + "x": 150, + "y": 581.21541 + }, + { + "x": 137.5, + "y": 567.79821 + }, + [ + { + "#": 9916 + }, + { + "#": 9917 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,11,12", + "startCol": 2, + "endCol": 3, + "startRow": 11, + "endRow": 12 + }, + { + "id": 432, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9920 + }, + "angle": 0, + "vertices": { + "#": 9921 + }, + "position": { + "#": 9926 + }, + "force": { + "#": 9927 + }, + "torque": 0, + "positionImpulse": { + "#": 9928 + }, + "constraintImpulse": { + "#": 9929 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 9930 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9931 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9932 + }, + "bounds": { + "#": 9934 + }, + "positionPrev": { + "#": 9937 + }, + "anglePrev": 0, + "axes": { + "#": 9938 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9919 + }, + "sleepCounter": 0, + "region": { + "#": 9941 + } + }, + [ + { + "#": 9919 + } + ], + [ + { + "#": 9922 + }, + { + "#": 9923 + }, + { + "#": 9924 + }, + { + "#": 9925 + } + ], + { + "x": 150, + "y": 555.56416, + "index": 0, + "body": { + "#": 9919 + }, + "isInternal": false + }, + { + "x": 175, + "y": 555.56416, + "index": 1, + "body": { + "#": 9919 + }, + "isInternal": false + }, + { + "x": 175, + "y": 580.56416, + "index": 2, + "body": { + "#": 9919 + }, + "isInternal": false + }, + { + "x": 150, + "y": 580.56416, + "index": 3, + "body": { + "#": 9919 + }, + "isInternal": false + }, + { + "x": 162.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9933 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9935 + }, + "max": { + "#": 9936 + } + }, + { + "x": 150, + "y": 555.56416 + }, + { + "x": 175, + "y": 581.21541 + }, + { + "x": 162.5, + "y": 567.79821 + }, + [ + { + "#": 9939 + }, + { + "#": 9940 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,3,11,12", + "startCol": 3, + "endCol": 3, + "startRow": 11, + "endRow": 12 + }, + { + "id": 433, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9943 + }, + "angle": 0, + "vertices": { + "#": 9944 + }, + "position": { + "#": 9949 + }, + "force": { + "#": 9950 + }, + "torque": 0, + "positionImpulse": { + "#": 9951 + }, + "constraintImpulse": { + "#": 9952 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 9953 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9954 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9955 + }, + "bounds": { + "#": 9957 + }, + "positionPrev": { + "#": 9960 + }, + "anglePrev": 0, + "axes": { + "#": 9961 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9942 + }, + "sleepCounter": 0, + "region": { + "#": 9964 + } + }, + [ + { + "#": 9942 + } + ], + [ + { + "#": 9945 + }, + { + "#": 9946 + }, + { + "#": 9947 + }, + { + "#": 9948 + } + ], + { + "x": 175, + "y": 555.56416, + "index": 0, + "body": { + "#": 9942 + }, + "isInternal": false + }, + { + "x": 200, + "y": 555.56416, + "index": 1, + "body": { + "#": 9942 + }, + "isInternal": false + }, + { + "x": 200, + "y": 580.56416, + "index": 2, + "body": { + "#": 9942 + }, + "isInternal": false + }, + { + "x": 175, + "y": 580.56416, + "index": 3, + "body": { + "#": 9942 + }, + "isInternal": false + }, + { + "x": 187.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9956 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9958 + }, + "max": { + "#": 9959 + } + }, + { + "x": 175, + "y": 555.56416 + }, + { + "x": 200, + "y": 581.21541 + }, + { + "x": 187.5, + "y": 567.79821 + }, + [ + { + "#": 9962 + }, + { + "#": 9963 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,11,12", + "startCol": 3, + "endCol": 4, + "startRow": 11, + "endRow": 12 + }, + { + "id": 434, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9966 + }, + "angle": 0, + "vertices": { + "#": 9967 + }, + "position": { + "#": 9972 + }, + "force": { + "#": 9973 + }, + "torque": 0, + "positionImpulse": { + "#": 9974 + }, + "constraintImpulse": { + "#": 9975 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 9976 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 9977 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 9978 + }, + "bounds": { + "#": 9980 + }, + "positionPrev": { + "#": 9983 + }, + "anglePrev": 0, + "axes": { + "#": 9984 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9965 + }, + "sleepCounter": 0, + "region": { + "#": 9987 + } + }, + [ + { + "#": 9965 + } + ], + [ + { + "#": 9968 + }, + { + "#": 9969 + }, + { + "#": 9970 + }, + { + "#": 9971 + } + ], + { + "x": 200, + "y": 555.56416, + "index": 0, + "body": { + "#": 9965 + }, + "isInternal": false + }, + { + "x": 225, + "y": 555.56416, + "index": 1, + "body": { + "#": 9965 + }, + "isInternal": false + }, + { + "x": 225, + "y": 580.56416, + "index": 2, + "body": { + "#": 9965 + }, + "isInternal": false + }, + { + "x": 200, + "y": 580.56416, + "index": 3, + "body": { + "#": 9965 + }, + "isInternal": false + }, + { + "x": 212.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 9979 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 9981 + }, + "max": { + "#": 9982 + } + }, + { + "x": 200, + "y": 555.56416 + }, + { + "x": 225, + "y": 581.21541 + }, + { + "x": 212.5, + "y": 567.79821 + }, + [ + { + "#": 9985 + }, + { + "#": 9986 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,4,11,12", + "startCol": 4, + "endCol": 4, + "startRow": 11, + "endRow": 12 + }, + { + "id": 435, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 9989 + }, + "angle": 0, + "vertices": { + "#": 9990 + }, + "position": { + "#": 9995 + }, + "force": { + "#": 9996 + }, + "torque": 0, + "positionImpulse": { + "#": 9997 + }, + "constraintImpulse": { + "#": 9998 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 9999 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 10000 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 10001 + }, + "bounds": { + "#": 10003 + }, + "positionPrev": { + "#": 10006 + }, + "anglePrev": 0, + "axes": { + "#": 10007 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 9988 + }, + "sleepCounter": 0, + "region": { + "#": 10010 + } + }, + [ + { + "#": 9988 + } + ], + [ + { + "#": 9991 + }, + { + "#": 9992 + }, + { + "#": 9993 + }, + { + "#": 9994 + } + ], + { + "x": 225, + "y": 555.56416, + "index": 0, + "body": { + "#": 9988 + }, + "isInternal": false + }, + { + "x": 250, + "y": 555.56416, + "index": 1, + "body": { + "#": 9988 + }, + "isInternal": false + }, + { + "x": 250, + "y": 580.56416, + "index": 2, + "body": { + "#": 9988 + }, + "isInternal": false + }, + { + "x": 225, + "y": 580.56416, + "index": 3, + "body": { + "#": 9988 + }, + "isInternal": false + }, + { + "x": 237.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 10002 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 10004 + }, + "max": { + "#": 10005 + } + }, + { + "x": 225, + "y": 555.56416 + }, + { + "x": 250, + "y": 581.21541 + }, + { + "x": 237.5, + "y": 567.79821 + }, + [ + { + "#": 10008 + }, + { + "#": 10009 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,5,11,12", + "startCol": 4, + "endCol": 5, + "startRow": 11, + "endRow": 12 + }, + { + "id": 436, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 10012 + }, + "angle": 0, + "vertices": { + "#": 10013 + }, + "position": { + "#": 10018 + }, + "force": { + "#": 10019 + }, + "torque": 0, + "positionImpulse": { + "#": 10020 + }, + "constraintImpulse": { + "#": 10021 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 10022 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 10023 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 10024 + }, + "bounds": { + "#": 10026 + }, + "positionPrev": { + "#": 10029 + }, + "anglePrev": 0, + "axes": { + "#": 10030 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 10011 + }, + "sleepCounter": 0, + "region": { + "#": 10033 + } + }, + [ + { + "#": 10011 + } + ], + [ + { + "#": 10014 + }, + { + "#": 10015 + }, + { + "#": 10016 + }, + { + "#": 10017 + } + ], + { + "x": 250, + "y": 555.56416, + "index": 0, + "body": { + "#": 10011 + }, + "isInternal": false + }, + { + "x": 275, + "y": 555.56416, + "index": 1, + "body": { + "#": 10011 + }, + "isInternal": false + }, + { + "x": 275, + "y": 580.56416, + "index": 2, + "body": { + "#": 10011 + }, + "isInternal": false + }, + { + "x": 250, + "y": 580.56416, + "index": 3, + "body": { + "#": 10011 + }, + "isInternal": false + }, + { + "x": 262.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 10025 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 10027 + }, + "max": { + "#": 10028 + } + }, + { + "x": 250, + "y": 555.56416 + }, + { + "x": 275, + "y": 581.21541 + }, + { + "x": 262.5, + "y": 567.79821 + }, + [ + { + "#": 10031 + }, + { + "#": 10032 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,5,11,12", + "startCol": 5, + "endCol": 5, + "startRow": 11, + "endRow": 12 + }, + { + "id": 437, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 10035 + }, + "angle": 0, + "vertices": { + "#": 10036 + }, + "position": { + "#": 10041 + }, + "force": { + "#": 10042 + }, + "torque": 0, + "positionImpulse": { + "#": 10043 + }, + "constraintImpulse": { + "#": 10044 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 10045 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 10046 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 10047 + }, + "bounds": { + "#": 10049 + }, + "positionPrev": { + "#": 10052 + }, + "anglePrev": 0, + "axes": { + "#": 10053 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 10034 + }, + "sleepCounter": 0, + "region": { + "#": 10056 + } + }, + [ + { + "#": 10034 + } + ], + [ + { + "#": 10037 + }, + { + "#": 10038 + }, + { + "#": 10039 + }, + { + "#": 10040 + } + ], + { + "x": 275, + "y": 555.56416, + "index": 0, + "body": { + "#": 10034 + }, + "isInternal": false + }, + { + "x": 300, + "y": 555.56416, + "index": 1, + "body": { + "#": 10034 + }, + "isInternal": false + }, + { + "x": 300, + "y": 580.56416, + "index": 2, + "body": { + "#": 10034 + }, + "isInternal": false + }, + { + "x": 275, + "y": 580.56416, + "index": 3, + "body": { + "#": 10034 + }, + "isInternal": false + }, + { + "x": 287.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 10048 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 10050 + }, + "max": { + "#": 10051 + } + }, + { + "x": 275, + "y": 555.56416 + }, + { + "x": 300, + "y": 581.21541 + }, + { + "x": 287.5, + "y": 567.79821 + }, + [ + { + "#": 10054 + }, + { + "#": 10055 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "5,6,11,12", + "startCol": 5, + "endCol": 6, + "startRow": 11, + "endRow": 12 + }, + { + "id": 438, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 10058 + }, + "angle": 0, + "vertices": { + "#": 10059 + }, + "position": { + "#": 10064 + }, + "force": { + "#": 10065 + }, + "torque": 0, + "positionImpulse": { + "#": 10066 + }, + "constraintImpulse": { + "#": 10067 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 10068 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 10069 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 10070 + }, + "bounds": { + "#": 10072 + }, + "positionPrev": { + "#": 10075 + }, + "anglePrev": 0, + "axes": { + "#": 10076 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 10057 + }, + "sleepCounter": 0, + "region": { + "#": 10079 + } + }, + [ + { + "#": 10057 + } + ], + [ + { + "#": 10060 + }, + { + "#": 10061 + }, + { + "#": 10062 + }, + { + "#": 10063 + } + ], + { + "x": 300, + "y": 555.56416, + "index": 0, + "body": { + "#": 10057 + }, + "isInternal": false + }, + { + "x": 325, + "y": 555.56416, + "index": 1, + "body": { + "#": 10057 + }, + "isInternal": false + }, + { + "x": 325, + "y": 580.56416, + "index": 2, + "body": { + "#": 10057 + }, + "isInternal": false + }, + { + "x": 300, + "y": 580.56416, + "index": 3, + "body": { + "#": 10057 + }, + "isInternal": false + }, + { + "x": 312.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 10071 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 10073 + }, + "max": { + "#": 10074 + } + }, + { + "x": 300, + "y": 555.56416 + }, + { + "x": 325, + "y": 581.21541 + }, + { + "x": 312.5, + "y": 567.79821 + }, + [ + { + "#": 10077 + }, + { + "#": 10078 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,11,12", + "startCol": 6, + "endCol": 6, + "startRow": 11, + "endRow": 12 + }, + { + "id": 439, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 10081 + }, + "angle": 0, + "vertices": { + "#": 10082 + }, + "position": { + "#": 10087 + }, + "force": { + "#": 10088 + }, + "torque": 0, + "positionImpulse": { + "#": 10089 + }, + "constraintImpulse": { + "#": 10090 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 10091 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 10092 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 10093 + }, + "bounds": { + "#": 10095 + }, + "positionPrev": { + "#": 10098 + }, + "anglePrev": 0, + "axes": { + "#": 10099 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 10080 + }, + "sleepCounter": 0, + "region": { + "#": 10102 + } + }, + [ + { + "#": 10080 + } + ], + [ + { + "#": 10083 + }, + { + "#": 10084 + }, + { + "#": 10085 + }, + { + "#": 10086 + } + ], + { + "x": 325, + "y": 555.56416, + "index": 0, + "body": { + "#": 10080 + }, + "isInternal": false + }, + { + "x": 350, + "y": 555.56416, + "index": 1, + "body": { + "#": 10080 + }, + "isInternal": false + }, + { + "x": 350, + "y": 580.56416, + "index": 2, + "body": { + "#": 10080 + }, + "isInternal": false + }, + { + "x": 325, + "y": 580.56416, + "index": 3, + "body": { + "#": 10080 + }, + "isInternal": false + }, + { + "x": 337.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 10094 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 10096 + }, + "max": { + "#": 10097 + } + }, + { + "x": 325, + "y": 555.56416 + }, + { + "x": 350, + "y": 581.21541 + }, + { + "x": 337.5, + "y": 567.79821 + }, + [ + { + "#": 10100 + }, + { + "#": 10101 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,11,12", + "startCol": 6, + "endCol": 7, + "startRow": 11, + "endRow": 12 + }, + { + "id": 440, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 10104 + }, + "angle": 0, + "vertices": { + "#": 10105 + }, + "position": { + "#": 10110 + }, + "force": { + "#": 10111 + }, + "torque": 0, + "positionImpulse": { + "#": 10112 + }, + "constraintImpulse": { + "#": 10113 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 10114 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 10115 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 10116 + }, + "bounds": { + "#": 10118 + }, + "positionPrev": { + "#": 10121 + }, + "anglePrev": 0, + "axes": { + "#": 10122 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 10103 + }, + "sleepCounter": 0, + "region": { + "#": 10125 + } + }, + [ + { + "#": 10103 + } + ], + [ + { + "#": 10106 + }, + { + "#": 10107 + }, + { + "#": 10108 + }, + { + "#": 10109 + } + ], + { + "x": 350, + "y": 555.56416, + "index": 0, + "body": { + "#": 10103 + }, + "isInternal": false + }, + { + "x": 375, + "y": 555.56416, + "index": 1, + "body": { + "#": 10103 + }, + "isInternal": false + }, + { + "x": 375, + "y": 580.56416, + "index": 2, + "body": { + "#": 10103 + }, + "isInternal": false + }, + { + "x": 350, + "y": 580.56416, + "index": 3, + "body": { + "#": 10103 + }, + "isInternal": false + }, + { + "x": 362.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 10117 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 10119 + }, + "max": { + "#": 10120 + } + }, + { + "x": 350, + "y": 555.56416 + }, + { + "x": 375, + "y": 581.21541 + }, + { + "x": 362.5, + "y": 567.79821 + }, + [ + { + "#": 10123 + }, + { + "#": 10124 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,7,11,12", + "startCol": 7, + "endCol": 7, + "startRow": 11, + "endRow": 12 + }, + { + "id": 441, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 10127 + }, + "angle": 0, + "vertices": { + "#": 10128 + }, + "position": { + "#": 10133 + }, + "force": { + "#": 10134 + }, + "torque": 0, + "positionImpulse": { + "#": 10135 + }, + "constraintImpulse": { + "#": 10136 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 10137 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 10138 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 10139 + }, + "bounds": { + "#": 10141 + }, + "positionPrev": { + "#": 10144 + }, + "anglePrev": 0, + "axes": { + "#": 10145 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 10126 + }, + "sleepCounter": 0, + "region": { + "#": 10148 + } + }, + [ + { + "#": 10126 + } + ], + [ + { + "#": 10129 + }, + { + "#": 10130 + }, + { + "#": 10131 + }, + { + "#": 10132 + } + ], + { + "x": 375, + "y": 555.56416, + "index": 0, + "body": { + "#": 10126 + }, + "isInternal": false + }, + { + "x": 400, + "y": 555.56416, + "index": 1, + "body": { + "#": 10126 + }, + "isInternal": false + }, + { + "x": 400, + "y": 580.56416, + "index": 2, + "body": { + "#": 10126 + }, + "isInternal": false + }, + { + "x": 375, + "y": 580.56416, + "index": 3, + "body": { + "#": 10126 + }, + "isInternal": false + }, + { + "x": 387.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 10140 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 10142 + }, + "max": { + "#": 10143 + } + }, + { + "x": 375, + "y": 555.56416 + }, + { + "x": 400, + "y": 581.21541 + }, + { + "x": 387.5, + "y": 567.79821 + }, + [ + { + "#": 10146 + }, + { + "#": 10147 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,11,12", + "startCol": 7, + "endCol": 8, + "startRow": 11, + "endRow": 12 + }, + { + "id": 442, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 10150 + }, + "angle": 0, + "vertices": { + "#": 10151 + }, + "position": { + "#": 10156 + }, + "force": { + "#": 10157 + }, + "torque": 0, + "positionImpulse": { + "#": 10158 + }, + "constraintImpulse": { + "#": 10159 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 10160 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 10161 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 10162 + }, + "bounds": { + "#": 10164 + }, + "positionPrev": { + "#": 10167 + }, + "anglePrev": 0, + "axes": { + "#": 10168 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 10149 + }, + "sleepCounter": 0, + "region": { + "#": 10171 + } + }, + [ + { + "#": 10149 + } + ], + [ + { + "#": 10152 + }, + { + "#": 10153 + }, + { + "#": 10154 + }, + { + "#": 10155 + } + ], + { + "x": 400, + "y": 555.56416, + "index": 0, + "body": { + "#": 10149 + }, + "isInternal": false + }, + { + "x": 425, + "y": 555.56416, + "index": 1, + "body": { + "#": 10149 + }, + "isInternal": false + }, + { + "x": 425, + "y": 580.56416, + "index": 2, + "body": { + "#": 10149 + }, + "isInternal": false + }, + { + "x": 400, + "y": 580.56416, + "index": 3, + "body": { + "#": 10149 + }, + "isInternal": false + }, + { + "x": 412.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 10163 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 10165 + }, + "max": { + "#": 10166 + } + }, + { + "x": 400, + "y": 555.56416 + }, + { + "x": 425, + "y": 581.21541 + }, + { + "x": 412.5, + "y": 567.79821 + }, + [ + { + "#": 10169 + }, + { + "#": 10170 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,8,11,12", + "startCol": 8, + "endCol": 8, + "startRow": 11, + "endRow": 12 + }, + { + "id": 443, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 10173 + }, + "angle": 0, + "vertices": { + "#": 10174 + }, + "position": { + "#": 10179 + }, + "force": { + "#": 10180 + }, + "torque": 0, + "positionImpulse": { + "#": 10181 + }, + "constraintImpulse": { + "#": 10182 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 10183 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 10184 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 10185 + }, + "bounds": { + "#": 10187 + }, + "positionPrev": { + "#": 10190 + }, + "anglePrev": 0, + "axes": { + "#": 10191 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 10172 + }, + "sleepCounter": 0, + "region": { + "#": 10194 + } + }, + [ + { + "#": 10172 + } + ], + [ + { + "#": 10175 + }, + { + "#": 10176 + }, + { + "#": 10177 + }, + { + "#": 10178 + } + ], + { + "x": 425, + "y": 555.56416, + "index": 0, + "body": { + "#": 10172 + }, + "isInternal": false + }, + { + "x": 450, + "y": 555.56416, + "index": 1, + "body": { + "#": 10172 + }, + "isInternal": false + }, + { + "x": 450, + "y": 580.56416, + "index": 2, + "body": { + "#": 10172 + }, + "isInternal": false + }, + { + "x": 425, + "y": 580.56416, + "index": 3, + "body": { + "#": 10172 + }, + "isInternal": false + }, + { + "x": 437.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 10186 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 10188 + }, + "max": { + "#": 10189 + } + }, + { + "x": 425, + "y": 555.56416 + }, + { + "x": 450, + "y": 581.21541 + }, + { + "x": 437.5, + "y": 567.79821 + }, + [ + { + "#": 10192 + }, + { + "#": 10193 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,11,12", + "startCol": 8, + "endCol": 9, + "startRow": 11, + "endRow": 12 + }, + { + "id": 444, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 10196 + }, + "angle": 0, + "vertices": { + "#": 10197 + }, + "position": { + "#": 10202 + }, + "force": { + "#": 10203 + }, + "torque": 0, + "positionImpulse": { + "#": 10204 + }, + "constraintImpulse": { + "#": 10205 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 10206 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 10207 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 10208 + }, + "bounds": { + "#": 10210 + }, + "positionPrev": { + "#": 10213 + }, + "anglePrev": 0, + "axes": { + "#": 10214 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 10195 + }, + "sleepCounter": 0, + "region": { + "#": 10217 + } + }, + [ + { + "#": 10195 + } + ], + [ + { + "#": 10198 + }, + { + "#": 10199 + }, + { + "#": 10200 + }, + { + "#": 10201 + } + ], + { + "x": 450, + "y": 555.56416, + "index": 0, + "body": { + "#": 10195 + }, + "isInternal": false + }, + { + "x": 475, + "y": 555.56416, + "index": 1, + "body": { + "#": 10195 + }, + "isInternal": false + }, + { + "x": 475, + "y": 580.56416, + "index": 2, + "body": { + "#": 10195 + }, + "isInternal": false + }, + { + "x": 450, + "y": 580.56416, + "index": 3, + "body": { + "#": 10195 + }, + "isInternal": false + }, + { + "x": 462.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 10209 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 10211 + }, + "max": { + "#": 10212 + } + }, + { + "x": 450, + "y": 555.56416 + }, + { + "x": 475, + "y": 581.21541 + }, + { + "x": 462.5, + "y": 567.79821 + }, + [ + { + "#": 10215 + }, + { + "#": 10216 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,9,11,12", + "startCol": 9, + "endCol": 9, + "startRow": 11, + "endRow": 12 + }, + { + "id": 445, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 10219 + }, + "angle": 0, + "vertices": { + "#": 10220 + }, + "position": { + "#": 10225 + }, + "force": { + "#": 10226 + }, + "torque": 0, + "positionImpulse": { + "#": 10227 + }, + "constraintImpulse": { + "#": 10228 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 10229 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 10230 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 10231 + }, + "bounds": { + "#": 10233 + }, + "positionPrev": { + "#": 10236 + }, + "anglePrev": 0, + "axes": { + "#": 10237 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 10218 + }, + "sleepCounter": 0, + "region": { + "#": 10240 + } + }, + [ + { + "#": 10218 + } + ], + [ + { + "#": 10221 + }, + { + "#": 10222 + }, + { + "#": 10223 + }, + { + "#": 10224 + } + ], + { + "x": 475, + "y": 555.56416, + "index": 0, + "body": { + "#": 10218 + }, + "isInternal": false + }, + { + "x": 500, + "y": 555.56416, + "index": 1, + "body": { + "#": 10218 + }, + "isInternal": false + }, + { + "x": 500, + "y": 580.56416, + "index": 2, + "body": { + "#": 10218 + }, + "isInternal": false + }, + { + "x": 475, + "y": 580.56416, + "index": 3, + "body": { + "#": 10218 + }, + "isInternal": false + }, + { + "x": 487.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 10232 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 10234 + }, + "max": { + "#": 10235 + } + }, + { + "x": 475, + "y": 555.56416 + }, + { + "x": 500, + "y": 581.21541 + }, + { + "x": 487.5, + "y": 567.79821 + }, + [ + { + "#": 10238 + }, + { + "#": 10239 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,11,12", + "startCol": 9, + "endCol": 10, + "startRow": 11, + "endRow": 12 + }, + { + "id": 446, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 10242 + }, + "angle": 0, + "vertices": { + "#": 10243 + }, + "position": { + "#": 10248 + }, + "force": { + "#": 10249 + }, + "torque": 0, + "positionImpulse": { + "#": 10250 + }, + "constraintImpulse": { + "#": 10251 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 10252 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 10253 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 10254 + }, + "bounds": { + "#": 10256 + }, + "positionPrev": { + "#": 10259 + }, + "anglePrev": 0, + "axes": { + "#": 10260 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 10241 + }, + "sleepCounter": 0, + "region": { + "#": 10263 + } + }, + [ + { + "#": 10241 + } + ], + [ + { + "#": 10244 + }, + { + "#": 10245 + }, + { + "#": 10246 + }, + { + "#": 10247 + } + ], + { + "x": 500, + "y": 555.56416, + "index": 0, + "body": { + "#": 10241 + }, + "isInternal": false + }, + { + "x": 525, + "y": 555.56416, + "index": 1, + "body": { + "#": 10241 + }, + "isInternal": false + }, + { + "x": 525, + "y": 580.56416, + "index": 2, + "body": { + "#": 10241 + }, + "isInternal": false + }, + { + "x": 500, + "y": 580.56416, + "index": 3, + "body": { + "#": 10241 + }, + "isInternal": false + }, + { + "x": 512.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 10255 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 10257 + }, + "max": { + "#": 10258 + } + }, + { + "x": 500, + "y": 555.56416 + }, + { + "x": 525, + "y": 581.21541 + }, + { + "x": 512.5, + "y": 567.79821 + }, + [ + { + "#": 10261 + }, + { + "#": 10262 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,11,12", + "startCol": 10, + "endCol": 10, + "startRow": 11, + "endRow": 12 + }, + { + "id": 447, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 10265 + }, + "angle": 0, + "vertices": { + "#": 10266 + }, + "position": { + "#": 10271 + }, + "force": { + "#": 10272 + }, + "torque": 0, + "positionImpulse": { + "#": 10273 + }, + "constraintImpulse": { + "#": 10274 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 10275 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 10276 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 10277 + }, + "bounds": { + "#": 10279 + }, + "positionPrev": { + "#": 10282 + }, + "anglePrev": 0, + "axes": { + "#": 10283 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 10264 + }, + "sleepCounter": 0, + "region": { + "#": 10286 + } + }, + [ + { + "#": 10264 + } + ], + [ + { + "#": 10267 + }, + { + "#": 10268 + }, + { + "#": 10269 + }, + { + "#": 10270 + } + ], + { + "x": 525, + "y": 555.56416, + "index": 0, + "body": { + "#": 10264 + }, + "isInternal": false + }, + { + "x": 550, + "y": 555.56416, + "index": 1, + "body": { + "#": 10264 + }, + "isInternal": false + }, + { + "x": 550, + "y": 580.56416, + "index": 2, + "body": { + "#": 10264 + }, + "isInternal": false + }, + { + "x": 525, + "y": 580.56416, + "index": 3, + "body": { + "#": 10264 + }, + "isInternal": false + }, + { + "x": 537.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 10278 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 10280 + }, + "max": { + "#": 10281 + } + }, + { + "x": 525, + "y": 555.56416 + }, + { + "x": 550, + "y": 581.21541 + }, + { + "x": 537.5, + "y": 567.79821 + }, + [ + { + "#": 10284 + }, + { + "#": 10285 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,11,12", + "startCol": 10, + "endCol": 11, + "startRow": 11, + "endRow": 12 + }, + { + "id": 448, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 10288 + }, + "angle": 0, + "vertices": { + "#": 10289 + }, + "position": { + "#": 10294 + }, + "force": { + "#": 10295 + }, + "torque": 0, + "positionImpulse": { + "#": 10296 + }, + "constraintImpulse": { + "#": 10297 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 10298 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 10299 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 10300 + }, + "bounds": { + "#": 10302 + }, + "positionPrev": { + "#": 10305 + }, + "anglePrev": 0, + "axes": { + "#": 10306 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 10287 + }, + "sleepCounter": 0, + "region": { + "#": 10309 + } + }, + [ + { + "#": 10287 + } + ], + [ + { + "#": 10290 + }, + { + "#": 10291 + }, + { + "#": 10292 + }, + { + "#": 10293 + } + ], + { + "x": 550, + "y": 555.56416, + "index": 0, + "body": { + "#": 10287 + }, + "isInternal": false + }, + { + "x": 575, + "y": 555.56416, + "index": 1, + "body": { + "#": 10287 + }, + "isInternal": false + }, + { + "x": 575, + "y": 580.56416, + "index": 2, + "body": { + "#": 10287 + }, + "isInternal": false + }, + { + "x": 550, + "y": 580.56416, + "index": 3, + "body": { + "#": 10287 + }, + "isInternal": false + }, + { + "x": 562.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 10301 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 10303 + }, + "max": { + "#": 10304 + } + }, + { + "x": 550, + "y": 555.56416 + }, + { + "x": 575, + "y": 581.21541 + }, + { + "x": 562.5, + "y": 567.79821 + }, + [ + { + "#": 10307 + }, + { + "#": 10308 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,11,11,12", + "startCol": 11, + "endCol": 11, + "startRow": 11, + "endRow": 12 + }, + { + "id": 449, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 10311 + }, + "angle": 0, + "vertices": { + "#": 10312 + }, + "position": { + "#": 10317 + }, + "force": { + "#": 10318 + }, + "torque": 0, + "positionImpulse": { + "#": 10319 + }, + "constraintImpulse": { + "#": 10320 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 10321 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 10322 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 10323 + }, + "bounds": { + "#": 10325 + }, + "positionPrev": { + "#": 10328 + }, + "anglePrev": 0, + "axes": { + "#": 10329 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 10310 + }, + "sleepCounter": 0, + "region": { + "#": 10332 + } + }, + [ + { + "#": 10310 + } + ], + [ + { + "#": 10313 + }, + { + "#": 10314 + }, + { + "#": 10315 + }, + { + "#": 10316 + } + ], + { + "x": 575, + "y": 555.56416, + "index": 0, + "body": { + "#": 10310 + }, + "isInternal": false + }, + { + "x": 600, + "y": 555.56416, + "index": 1, + "body": { + "#": 10310 + }, + "isInternal": false + }, + { + "x": 600, + "y": 580.56416, + "index": 2, + "body": { + "#": 10310 + }, + "isInternal": false + }, + { + "x": 575, + "y": 580.56416, + "index": 3, + "body": { + "#": 10310 + }, + "isInternal": false + }, + { + "x": 587.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 10324 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 10326 + }, + "max": { + "#": 10327 + } + }, + { + "x": 575, + "y": 555.56416 + }, + { + "x": 600, + "y": 581.21541 + }, + { + "x": 587.5, + "y": 567.79821 + }, + [ + { + "#": 10330 + }, + { + "#": 10331 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,11,12", + "startCol": 11, + "endCol": 12, + "startRow": 11, + "endRow": 12 + }, + { + "id": 450, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 10334 + }, + "angle": 0, + "vertices": { + "#": 10335 + }, + "position": { + "#": 10340 + }, + "force": { + "#": 10341 + }, + "torque": 0, + "positionImpulse": { + "#": 10342 + }, + "constraintImpulse": { + "#": 10343 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 10344 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 10345 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 10346 + }, + "bounds": { + "#": 10348 + }, + "positionPrev": { + "#": 10351 + }, + "anglePrev": 0, + "axes": { + "#": 10352 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 10333 + }, + "sleepCounter": 0, + "region": { + "#": 10355 + } + }, + [ + { + "#": 10333 + } + ], + [ + { + "#": 10336 + }, + { + "#": 10337 + }, + { + "#": 10338 + }, + { + "#": 10339 + } + ], + { + "x": 600, + "y": 555.56416, + "index": 0, + "body": { + "#": 10333 + }, + "isInternal": false + }, + { + "x": 625, + "y": 555.56416, + "index": 1, + "body": { + "#": 10333 + }, + "isInternal": false + }, + { + "x": 625, + "y": 580.56416, + "index": 2, + "body": { + "#": 10333 + }, + "isInternal": false + }, + { + "x": 600, + "y": 580.56416, + "index": 3, + "body": { + "#": 10333 + }, + "isInternal": false + }, + { + "x": 612.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 10347 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 10349 + }, + "max": { + "#": 10350 + } + }, + { + "x": 600, + "y": 555.56416 + }, + { + "x": 625, + "y": 581.21541 + }, + { + "x": 612.5, + "y": 567.79821 + }, + [ + { + "#": 10353 + }, + { + "#": 10354 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "12,13,11,12", + "startCol": 12, + "endCol": 13, + "startRow": 11, + "endRow": 12 + }, + { + "id": 451, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 10357 + }, + "angle": 0, + "vertices": { + "#": 10358 + }, + "position": { + "#": 10363 + }, + "force": { + "#": 10364 + }, + "torque": 0, + "positionImpulse": { + "#": 10365 + }, + "constraintImpulse": { + "#": 10366 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 10367 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 10368 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 10369 + }, + "bounds": { + "#": 10371 + }, + "positionPrev": { + "#": 10374 + }, + "anglePrev": 0, + "axes": { + "#": 10375 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 10356 + }, + "sleepCounter": 0, + "region": { + "#": 10378 + } + }, + [ + { + "#": 10356 + } + ], + [ + { + "#": 10359 + }, + { + "#": 10360 + }, + { + "#": 10361 + }, + { + "#": 10362 + } + ], + { + "x": 625, + "y": 555.56416, + "index": 0, + "body": { + "#": 10356 + }, + "isInternal": false + }, + { + "x": 650, + "y": 555.56416, + "index": 1, + "body": { + "#": 10356 + }, + "isInternal": false + }, + { + "x": 650, + "y": 580.56416, + "index": 2, + "body": { + "#": 10356 + }, + "isInternal": false + }, + { + "x": 625, + "y": 580.56416, + "index": 3, + "body": { + "#": 10356 + }, + "isInternal": false + }, + { + "x": 637.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 10370 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 10372 + }, + "max": { + "#": 10373 + } + }, + { + "x": 625, + "y": 555.56416 + }, + { + "x": 650, + "y": 581.21541 + }, + { + "x": 637.5, + "y": 567.79821 + }, + [ + { + "#": 10376 + }, + { + "#": 10377 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,13,11,12", + "startCol": 13, + "endCol": 13, + "startRow": 11, + "endRow": 12 + }, + { + "id": 452, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 10380 + }, + "angle": 0, + "vertices": { + "#": 10381 + }, + "position": { + "#": 10386 + }, + "force": { + "#": 10387 + }, + "torque": 0, + "positionImpulse": { + "#": 10388 + }, + "constraintImpulse": { + "#": 10389 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 10390 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 10391 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 10392 + }, + "bounds": { + "#": 10394 + }, + "positionPrev": { + "#": 10397 + }, + "anglePrev": 0, + "axes": { + "#": 10398 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 10379 + }, + "sleepCounter": 0, + "region": { + "#": 10401 + } + }, + [ + { + "#": 10379 + } + ], + [ + { + "#": 10382 + }, + { + "#": 10383 + }, + { + "#": 10384 + }, + { + "#": 10385 + } + ], + { + "x": 650, + "y": 555.56416, + "index": 0, + "body": { + "#": 10379 + }, + "isInternal": false + }, + { + "x": 675, + "y": 555.56416, + "index": 1, + "body": { + "#": 10379 + }, + "isInternal": false + }, + { + "x": 675, + "y": 580.56416, + "index": 2, + "body": { + "#": 10379 + }, + "isInternal": false + }, + { + "x": 650, + "y": 580.56416, + "index": 3, + "body": { + "#": 10379 + }, + "isInternal": false + }, + { + "x": 662.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 10393 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 10395 + }, + "max": { + "#": 10396 + } + }, + { + "x": 650, + "y": 555.56416 + }, + { + "x": 675, + "y": 581.21541 + }, + { + "x": 662.5, + "y": 567.79821 + }, + [ + { + "#": 10399 + }, + { + "#": 10400 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "13,14,11,12", + "startCol": 13, + "endCol": 14, + "startRow": 11, + "endRow": 12 + }, + { + "id": 453, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 10403 + }, + "angle": 0, + "vertices": { + "#": 10404 + }, + "position": { + "#": 10409 + }, + "force": { + "#": 10410 + }, + "torque": 0, + "positionImpulse": { + "#": 10411 + }, + "constraintImpulse": { + "#": 10412 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 10413 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 10414 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 10415 + }, + "bounds": { + "#": 10417 + }, + "positionPrev": { + "#": 10420 + }, + "anglePrev": 0, + "axes": { + "#": 10421 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 10402 + }, + "sleepCounter": 0, + "region": { + "#": 10424 + } + }, + [ + { + "#": 10402 + } + ], + [ + { + "#": 10405 + }, + { + "#": 10406 + }, + { + "#": 10407 + }, + { + "#": 10408 + } + ], + { + "x": 675, + "y": 555.56416, + "index": 0, + "body": { + "#": 10402 + }, + "isInternal": false + }, + { + "x": 700, + "y": 555.56416, + "index": 1, + "body": { + "#": 10402 + }, + "isInternal": false + }, + { + "x": 700, + "y": 580.56416, + "index": 2, + "body": { + "#": 10402 + }, + "isInternal": false + }, + { + "x": 675, + "y": 580.56416, + "index": 3, + "body": { + "#": 10402 + }, + "isInternal": false + }, + { + "x": 687.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 10416 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 10418 + }, + "max": { + "#": 10419 + } + }, + { + "x": 675, + "y": 555.56416 + }, + { + "x": 700, + "y": 581.21541 + }, + { + "x": 687.5, + "y": 567.79821 + }, + [ + { + "#": 10422 + }, + { + "#": 10423 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,14,11,12", + "startCol": 14, + "endCol": 14, + "startRow": 11, + "endRow": 12 + }, + { + "id": 454, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 10426 + }, + "angle": 0, + "vertices": { + "#": 10427 + }, + "position": { + "#": 10432 + }, + "force": { + "#": 10433 + }, + "torque": 0, + "positionImpulse": { + "#": 10434 + }, + "constraintImpulse": { + "#": 10435 + }, + "totalContacts": 0, + "speed": 0.65125, + "angularSpeed": 0, + "velocity": { + "#": 10436 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 10437 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 10438 + }, + "bounds": { + "#": 10440 + }, + "positionPrev": { + "#": 10443 + }, + "anglePrev": 0, + "axes": { + "#": 10444 + }, + "area": 625, + "mass": 0.625, + "inverseMass": 1.6, + "inertia": 260.41667, + "inverseInertia": 0.00384, + "parent": { + "#": 10425 + }, + "sleepCounter": 0, + "region": { + "#": 10447 + } + }, + [ + { + "#": 10425 + } + ], + [ + { + "#": 10428 + }, + { + "#": 10429 + }, + { + "#": 10430 + }, + { + "#": 10431 + } + ], + { + "x": 700, + "y": 555.56416, + "index": 0, + "body": { + "#": 10425 + }, + "isInternal": false + }, + { + "x": 725, + "y": 555.56416, + "index": 1, + "body": { + "#": 10425 + }, + "isInternal": false + }, + { + "x": 725, + "y": 580.56416, + "index": 2, + "body": { + "#": 10425 + }, + "isInternal": false + }, + { + "x": 700, + "y": 580.56416, + "index": 3, + "body": { + "#": 10425 + }, + "isInternal": false + }, + { + "x": 712.5, + "y": 568.06416 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05132 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 10439 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 10441 + }, + "max": { + "#": 10442 + } + }, + { + "x": 700, + "y": 555.56416 + }, + { + "x": 725, + "y": 581.21541 + }, + { + "x": 712.5, + "y": 567.79821 + }, + [ + { + "#": 10445 + }, + { + "#": 10446 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "14,15,11,12", + "startCol": 14, + "endCol": 15, + "startRow": 11, + "endRow": 12 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 10452 + }, + "max": { + "#": 10453 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/timescale/timescale-0.json b/test/node/refs/timescale/timescale-0.json new file mode 100644 index 00000000..b042040b --- /dev/null +++ b/test/node/refs/timescale/timescale-0.json @@ -0,0 +1,24086 @@ +[ + { + "id": 12, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 90 + }, + "composites": { + "#": 91 + }, + "label": "World", + "gravity": { + "#": 2513 + }, + "bounds": { + "#": 2514 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [ + { + "#": 92 + }, + { + "#": 1914 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 93 + }, + "constraints": { + "#": 1912 + }, + "composites": { + "#": 1913 + }, + "label": "Stack" + }, + [ + { + "#": 94 + }, + { + "#": 131 + }, + { + "#": 171 + }, + { + "#": 217 + }, + { + "#": 254 + }, + { + "#": 300 + }, + { + "#": 334 + }, + { + "#": 377 + }, + { + "#": 417 + }, + { + "#": 457 + }, + { + "#": 494 + }, + { + "#": 537 + }, + { + "#": 574 + }, + { + "#": 620 + }, + { + "#": 666 + }, + { + "#": 709 + }, + { + "#": 746 + }, + { + "#": 780 + }, + { + "#": 826 + }, + { + "#": 863 + }, + { + "#": 909 + }, + { + "#": 952 + }, + { + "#": 986 + }, + { + "#": 1029 + }, + { + "#": 1075 + }, + { + "#": 1109 + }, + { + "#": 1149 + }, + { + "#": 1186 + }, + { + "#": 1223 + }, + { + "#": 1269 + }, + { + "#": 1315 + }, + { + "#": 1355 + }, + { + "#": 1392 + }, + { + "#": 1429 + }, + { + "#": 1472 + }, + { + "#": 1518 + }, + { + "#": 1558 + }, + { + "#": 1595 + }, + { + "#": 1641 + }, + { + "#": 1675 + }, + { + "#": 1718 + }, + { + "#": 1764 + }, + { + "#": 1801 + }, + { + "#": 1835 + }, + { + "#": 1869 + } + ], + { + "id": 5, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 96 + }, + "position": { + "#": 111 + }, + "force": { + "#": 112 + }, + "torque": 0, + "positionImpulse": { + "#": 113 + }, + "constraintImpulse": { + "#": 114 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 115 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 116 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 117 + }, + "circleRadius": 12.11321, + "bounds": { + "#": 119 + }, + "positionPrev": { + "#": 122 + }, + "anglePrev": 0, + "axes": { + "#": 123 + }, + "area": 445.64723, + "mass": 0.44565, + "inverseMass": 2.24393, + "inertia": 126.46281, + "inverseInertia": 0.00791, + "parent": { + "#": 94 + }, + "sleepCounter": 0 + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + } + ], + { + "x": 43.62, + "y": 114.808, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 41.28, + "y": 119.665, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 37.066, + "y": 123.027, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 31.81, + "y": 124.226, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 26.554, + "y": 123.027, + "index": 4, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 22.34, + "y": 119.665, + "index": 5, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 20, + "y": 114.808, + "index": 6, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 20, + "y": 109.418, + "index": 7, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 22.34, + "y": 104.561, + "index": 8, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 26.554, + "y": 101.199, + "index": 9, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 31.81, + "y": 100, + "index": 10, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 37.066, + "y": 101.199, + "index": 11, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 41.28, + "y": 104.561, + "index": 12, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 43.62, + "y": 109.418, + "index": 13, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 31.81, + "y": 112.113 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 118 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 120 + }, + "max": { + "#": 121 + } + }, + { + "x": 20, + "y": 100 + }, + { + "x": 43.62, + "y": 124.226 + }, + { + "x": 31.81, + "y": 112.113 + }, + [ + { + "#": 124 + }, + { + "#": 125 + }, + { + "#": 126 + }, + { + "#": 127 + }, + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + } + ], + { + "x": -0.9009, + "y": -0.43403 + }, + { + "x": -0.62365, + "y": -0.7817 + }, + { + "x": -0.22241, + "y": -0.97495 + }, + { + "x": 0.22241, + "y": -0.97495 + }, + { + "x": 0.62365, + "y": -0.7817 + }, + { + "x": 0.9009, + "y": -0.43403 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 132 + }, + "angle": 0, + "vertices": { + "#": 133 + }, + "position": { + "#": 150 + }, + "force": { + "#": 151 + }, + "torque": 0, + "positionImpulse": { + "#": 152 + }, + "constraintImpulse": { + "#": 153 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 154 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 155 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 156 + }, + "circleRadius": 15.46772, + "bounds": { + "#": 158 + }, + "positionPrev": { + "#": 161 + }, + "anglePrev": 0, + "axes": { + "#": 162 + }, + "area": 732.47528, + "mass": 0.73248, + "inverseMass": 1.36523, + "inertia": 341.60523, + "inverseInertia": 0.00293, + "parent": { + "#": 131 + }, + "sleepCounter": 0 + }, + [ + { + "#": 131 + } + ], + [ + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + } + ], + { + "x": 93.962, + "y": 118.189, + "index": 0, + "body": { + "#": 131 + }, + "isInternal": false + }, + { + "x": 91.652, + "y": 123.764, + "index": 1, + "body": { + "#": 131 + }, + "isInternal": false + }, + { + "x": 87.384, + "y": 128.032, + "index": 2, + "body": { + "#": 131 + }, + "isInternal": false + }, + { + "x": 81.809, + "y": 130.342, + "index": 3, + "body": { + "#": 131 + }, + "isInternal": false + }, + { + "x": 75.773, + "y": 130.342, + "index": 4, + "body": { + "#": 131 + }, + "isInternal": false + }, + { + "x": 70.198, + "y": 128.032, + "index": 5, + "body": { + "#": 131 + }, + "isInternal": false + }, + { + "x": 65.93, + "y": 123.764, + "index": 6, + "body": { + "#": 131 + }, + "isInternal": false + }, + { + "x": 63.62, + "y": 118.189, + "index": 7, + "body": { + "#": 131 + }, + "isInternal": false + }, + { + "x": 63.62, + "y": 112.153, + "index": 8, + "body": { + "#": 131 + }, + "isInternal": false + }, + { + "x": 65.93, + "y": 106.578, + "index": 9, + "body": { + "#": 131 + }, + "isInternal": false + }, + { + "x": 70.198, + "y": 102.31, + "index": 10, + "body": { + "#": 131 + }, + "isInternal": false + }, + { + "x": 75.773, + "y": 100, + "index": 11, + "body": { + "#": 131 + }, + "isInternal": false + }, + { + "x": 81.809, + "y": 100, + "index": 12, + "body": { + "#": 131 + }, + "isInternal": false + }, + { + "x": 87.384, + "y": 102.31, + "index": 13, + "body": { + "#": 131 + }, + "isInternal": false + }, + { + "x": 91.652, + "y": 106.578, + "index": 14, + "body": { + "#": 131 + }, + "isInternal": false + }, + { + "x": 93.962, + "y": 112.153, + "index": 15, + "body": { + "#": 131 + }, + "isInternal": false + }, + { + "x": 78.791, + "y": 115.171 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 157 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 159 + }, + "max": { + "#": 160 + } + }, + { + "x": 63.62, + "y": 100 + }, + { + "x": 93.962, + "y": 130.342 + }, + { + "x": 78.791, + "y": 115.171 + }, + [ + { + "#": 163 + }, + { + "#": 164 + }, + { + "#": 165 + }, + { + "#": 166 + }, + { + "#": 167 + }, + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + } + ], + { + "x": -0.92384, + "y": -0.38279 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38279, + "y": -0.92384 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38279, + "y": -0.92384 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92384, + "y": -0.38279 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 172 + }, + "angle": 0, + "vertices": { + "#": 173 + }, + "position": { + "#": 194 + }, + "force": { + "#": 195 + }, + "torque": 0, + "positionImpulse": { + "#": 196 + }, + "constraintImpulse": { + "#": 197 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 198 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 199 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 200 + }, + "circleRadius": 18.19466, + "bounds": { + "#": 202 + }, + "positionPrev": { + "#": 205 + }, + "anglePrev": 0, + "axes": { + "#": 206 + }, + "area": 1023.02802, + "mass": 1.02303, + "inverseMass": 0.97749, + "inertia": 666.31404, + "inverseInertia": 0.0015, + "parent": { + "#": 171 + }, + "sleepCounter": 0 + }, + [ + { + "#": 171 + } + ], + [ + { + "#": 174 + }, + { + "#": 175 + }, + { + "#": 176 + }, + { + "#": 177 + }, + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + } + ], + { + "x": 149.904, + "y": 120.817, + "index": 0, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 148.145, + "y": 126.231, + "index": 1, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 144.799, + "y": 130.837, + "index": 2, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 140.193, + "y": 134.183, + "index": 3, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 134.779, + "y": 135.942, + "index": 4, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 129.087, + "y": 135.942, + "index": 5, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 123.673, + "y": 134.183, + "index": 6, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 119.067, + "y": 130.837, + "index": 7, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 115.721, + "y": 126.231, + "index": 8, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 113.962, + "y": 120.817, + "index": 9, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 113.962, + "y": 115.125, + "index": 10, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 115.721, + "y": 109.711, + "index": 11, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 119.067, + "y": 105.105, + "index": 12, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 123.673, + "y": 101.759, + "index": 13, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 129.087, + "y": 100, + "index": 14, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 134.779, + "y": 100, + "index": 15, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 140.193, + "y": 101.759, + "index": 16, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 144.799, + "y": 105.105, + "index": 17, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 148.145, + "y": 109.711, + "index": 18, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 149.904, + "y": 115.125, + "index": 19, + "body": { + "#": 171 + }, + "isInternal": false + }, + { + "x": 131.933, + "y": 117.971 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 201 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 203 + }, + "max": { + "#": 204 + } + }, + { + "x": 113.962, + "y": 100 + }, + { + "x": 149.904, + "y": 135.942 + }, + { + "x": 131.933, + "y": 117.971 + }, + [ + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + }, + { + "#": 211 + }, + { + "#": 212 + }, + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + } + ], + { + "x": -0.95106, + "y": -0.309 + }, + { + "x": -0.80905, + "y": -0.58773 + }, + { + "x": -0.58773, + "y": -0.80905 + }, + { + "x": -0.309, + "y": -0.95106 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.309, + "y": -0.95106 + }, + { + "x": 0.58773, + "y": -0.80905 + }, + { + "x": 0.80905, + "y": -0.58773 + }, + { + "x": 0.95106, + "y": -0.309 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 218 + }, + "angle": 0, + "vertices": { + "#": 219 + }, + "position": { + "#": 234 + }, + "force": { + "#": 235 + }, + "torque": 0, + "positionImpulse": { + "#": 236 + }, + "constraintImpulse": { + "#": 237 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 238 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 239 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 240 + }, + "circleRadius": 13.75081, + "bounds": { + "#": 242 + }, + "positionPrev": { + "#": 245 + }, + "anglePrev": 0, + "axes": { + "#": 246 + }, + "area": 574.28005, + "mass": 0.57428, + "inverseMass": 1.74131, + "inertia": 210.00414, + "inverseInertia": 0.00476, + "parent": { + "#": 217 + }, + "sleepCounter": 0 + }, + [ + { + "#": 217 + } + ], + [ + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + }, + { + "#": 226 + }, + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + } + ], + { + "x": 196.716, + "y": 116.811, + "index": 0, + "body": { + "#": 217 + }, + "isInternal": false + }, + { + "x": 194.061, + "y": 122.324, + "index": 1, + "body": { + "#": 217 + }, + "isInternal": false + }, + { + "x": 189.276, + "y": 126.14, + "index": 2, + "body": { + "#": 217 + }, + "isInternal": false + }, + { + "x": 183.31, + "y": 127.502, + "index": 3, + "body": { + "#": 217 + }, + "isInternal": false + }, + { + "x": 177.344, + "y": 126.14, + "index": 4, + "body": { + "#": 217 + }, + "isInternal": false + }, + { + "x": 172.559, + "y": 122.324, + "index": 5, + "body": { + "#": 217 + }, + "isInternal": false + }, + { + "x": 169.904, + "y": 116.811, + "index": 6, + "body": { + "#": 217 + }, + "isInternal": false + }, + { + "x": 169.904, + "y": 110.691, + "index": 7, + "body": { + "#": 217 + }, + "isInternal": false + }, + { + "x": 172.559, + "y": 105.178, + "index": 8, + "body": { + "#": 217 + }, + "isInternal": false + }, + { + "x": 177.344, + "y": 101.362, + "index": 9, + "body": { + "#": 217 + }, + "isInternal": false + }, + { + "x": 183.31, + "y": 100, + "index": 10, + "body": { + "#": 217 + }, + "isInternal": false + }, + { + "x": 189.276, + "y": 101.362, + "index": 11, + "body": { + "#": 217 + }, + "isInternal": false + }, + { + "x": 194.061, + "y": 105.178, + "index": 12, + "body": { + "#": 217 + }, + "isInternal": false + }, + { + "x": 196.716, + "y": 110.691, + "index": 13, + "body": { + "#": 217 + }, + "isInternal": false + }, + { + "x": 183.31, + "y": 113.751 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 241 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 243 + }, + "max": { + "#": 244 + } + }, + { + "x": 169.904, + "y": 100 + }, + { + "x": 196.716, + "y": 127.502 + }, + { + "x": 183.31, + "y": 113.751 + }, + [ + { + "#": 247 + }, + { + "#": 248 + }, + { + "#": 249 + }, + { + "#": 250 + }, + { + "#": 251 + }, + { + "#": 252 + }, + { + "#": 253 + } + ], + { + "x": -0.90096, + "y": -0.43389 + }, + { + "x": -0.6235, + "y": -0.78182 + }, + { + "x": -0.22257, + "y": -0.97492 + }, + { + "x": 0.22257, + "y": -0.97492 + }, + { + "x": 0.6235, + "y": -0.78182 + }, + { + "x": 0.90096, + "y": -0.43389 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 255 + }, + "angle": 0, + "vertices": { + "#": 256 + }, + "position": { + "#": 277 + }, + "force": { + "#": 278 + }, + "torque": 0, + "positionImpulse": { + "#": 279 + }, + "constraintImpulse": { + "#": 280 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 281 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 282 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 283 + }, + "circleRadius": 19.66705, + "bounds": { + "#": 285 + }, + "positionPrev": { + "#": 288 + }, + "anglePrev": 0, + "axes": { + "#": 289 + }, + "area": 1195.26015, + "mass": 1.19526, + "inverseMass": 0.83664, + "inertia": 909.55462, + "inverseInertia": 0.0011, + "parent": { + "#": 254 + }, + "sleepCounter": 0 + }, + [ + { + "#": 254 + } + ], + [ + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + }, + { + "#": 261 + }, + { + "#": 262 + }, + { + "#": 263 + }, + { + "#": 264 + }, + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + } + ], + { + "x": 255.566, + "y": 122.502, + "index": 0, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 253.664, + "y": 128.354, + "index": 1, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 250.048, + "y": 133.332, + "index": 2, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 245.07, + "y": 136.948, + "index": 3, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 239.218, + "y": 138.85, + "index": 4, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 233.064, + "y": 138.85, + "index": 5, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 227.212, + "y": 136.948, + "index": 6, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 222.234, + "y": 133.332, + "index": 7, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 218.618, + "y": 128.354, + "index": 8, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 216.716, + "y": 122.502, + "index": 9, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 216.716, + "y": 116.348, + "index": 10, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 218.618, + "y": 110.496, + "index": 11, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 222.234, + "y": 105.518, + "index": 12, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 227.212, + "y": 101.902, + "index": 13, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 233.064, + "y": 100, + "index": 14, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 239.218, + "y": 100, + "index": 15, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 245.07, + "y": 101.902, + "index": 16, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 250.048, + "y": 105.518, + "index": 17, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 253.664, + "y": 110.496, + "index": 18, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 255.566, + "y": 116.348, + "index": 19, + "body": { + "#": 254 + }, + "isInternal": false + }, + { + "x": 236.141, + "y": 119.425 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 284 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 286 + }, + "max": { + "#": 287 + } + }, + { + "x": 216.716, + "y": 100 + }, + { + "x": 255.566, + "y": 138.85 + }, + { + "x": 236.141, + "y": 119.425 + }, + [ + { + "#": 290 + }, + { + "#": 291 + }, + { + "#": 292 + }, + { + "#": 293 + }, + { + "#": 294 + }, + { + "#": 295 + }, + { + "#": 296 + }, + { + "#": 297 + }, + { + "#": 298 + }, + { + "#": 299 + } + ], + { + "x": -0.95103, + "y": -0.3091 + }, + { + "x": -0.80907, + "y": -0.58771 + }, + { + "x": -0.58771, + "y": -0.80907 + }, + { + "x": -0.3091, + "y": -0.95103 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3091, + "y": -0.95103 + }, + { + "x": 0.58771, + "y": -0.80907 + }, + { + "x": 0.80907, + "y": -0.58771 + }, + { + "x": 0.95103, + "y": -0.3091 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 10, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 301 + }, + "angle": 0, + "vertices": { + "#": 302 + }, + "position": { + "#": 315 + }, + "force": { + "#": 316 + }, + "torque": 0, + "positionImpulse": { + "#": 317 + }, + "constraintImpulse": { + "#": 318 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 319 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 320 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 321 + }, + "circleRadius": 11.99276, + "bounds": { + "#": 323 + }, + "positionPrev": { + "#": 326 + }, + "anglePrev": 0, + "axes": { + "#": 327 + }, + "area": 431.46854, + "mass": 0.43147, + "inverseMass": 2.31767, + "inertia": 118.56754, + "inverseInertia": 0.00843, + "parent": { + "#": 300 + }, + "sleepCounter": 0 + }, + [ + { + "#": 300 + } + ], + [ + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + }, + { + "#": 308 + }, + { + "#": 309 + }, + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + } + ], + { + "x": 298.734, + "y": 114.688, + "index": 0, + "body": { + "#": 300 + }, + "isInternal": false + }, + { + "x": 295.63, + "y": 120.064, + "index": 1, + "body": { + "#": 300 + }, + "isInternal": false + }, + { + "x": 290.254, + "y": 123.168, + "index": 2, + "body": { + "#": 300 + }, + "isInternal": false + }, + { + "x": 284.046, + "y": 123.168, + "index": 3, + "body": { + "#": 300 + }, + "isInternal": false + }, + { + "x": 278.67, + "y": 120.064, + "index": 4, + "body": { + "#": 300 + }, + "isInternal": false + }, + { + "x": 275.566, + "y": 114.688, + "index": 5, + "body": { + "#": 300 + }, + "isInternal": false + }, + { + "x": 275.566, + "y": 108.48, + "index": 6, + "body": { + "#": 300 + }, + "isInternal": false + }, + { + "x": 278.67, + "y": 103.104, + "index": 7, + "body": { + "#": 300 + }, + "isInternal": false + }, + { + "x": 284.046, + "y": 100, + "index": 8, + "body": { + "#": 300 + }, + "isInternal": false + }, + { + "x": 290.254, + "y": 100, + "index": 9, + "body": { + "#": 300 + }, + "isInternal": false + }, + { + "x": 295.63, + "y": 103.104, + "index": 10, + "body": { + "#": 300 + }, + "isInternal": false + }, + { + "x": 298.734, + "y": 108.48, + "index": 11, + "body": { + "#": 300 + }, + "isInternal": false + }, + { + "x": 287.15, + "y": 111.584 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 322 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 324 + }, + "max": { + "#": 325 + } + }, + { + "x": 275.566, + "y": 100 + }, + { + "x": 298.734, + "y": 123.168 + }, + { + "x": 287.15, + "y": 111.584 + }, + [ + { + "#": 328 + }, + { + "#": 329 + }, + { + "#": 330 + }, + { + "#": 331 + }, + { + "#": 332 + }, + { + "#": 333 + } + ], + { + "x": -0.86601, + "y": -0.50002 + }, + { + "x": -0.50002, + "y": -0.86601 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.50002, + "y": -0.86601 + }, + { + "x": 0.86601, + "y": -0.50002 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 11, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 335 + }, + "angle": 0, + "vertices": { + "#": 336 + }, + "position": { + "#": 355 + }, + "force": { + "#": 356 + }, + "torque": 0, + "positionImpulse": { + "#": 357 + }, + "constraintImpulse": { + "#": 358 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 359 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 360 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 361 + }, + "circleRadius": 16.40694, + "bounds": { + "#": 363 + }, + "positionPrev": { + "#": 366 + }, + "anglePrev": 0, + "axes": { + "#": 367 + }, + "area": 828.5976, + "mass": 0.8286, + "inverseMass": 1.20686, + "inertia": 437.12315, + "inverseInertia": 0.00229, + "parent": { + "#": 334 + }, + "sleepCounter": 0 + }, + [ + { + "#": 334 + } + ], + [ + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + }, + { + "#": 343 + }, + { + "#": 344 + }, + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + } + ], + { + "x": 351.05, + "y": 119.256, + "index": 0, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 349.101, + "y": 124.61, + "index": 1, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 345.438, + "y": 128.975, + "index": 2, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 340.504, + "y": 131.824, + "index": 3, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 334.892, + "y": 132.814, + "index": 4, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 329.28, + "y": 131.824, + "index": 5, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 324.346, + "y": 128.975, + "index": 6, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 320.683, + "y": 124.61, + "index": 7, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 318.734, + "y": 119.256, + "index": 8, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 318.734, + "y": 113.558, + "index": 9, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 320.683, + "y": 108.204, + "index": 10, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 324.346, + "y": 103.839, + "index": 11, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 329.28, + "y": 100.99, + "index": 12, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 334.892, + "y": 100, + "index": 13, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 340.504, + "y": 100.99, + "index": 14, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 345.438, + "y": 103.839, + "index": 15, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 349.101, + "y": 108.204, + "index": 16, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 351.05, + "y": 113.558, + "index": 17, + "body": { + "#": 334 + }, + "isInternal": false + }, + { + "x": 334.892, + "y": 116.407 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 362 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 364 + }, + "max": { + "#": 365 + } + }, + { + "x": 318.734, + "y": 100 + }, + { + "x": 351.05, + "y": 132.814 + }, + { + "x": 334.892, + "y": 116.407 + }, + [ + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + }, + { + "#": 372 + }, + { + "#": 373 + }, + { + "#": 374 + }, + { + "#": 375 + }, + { + "#": 376 + } + ], + { + "x": -0.93968, + "y": -0.34207 + }, + { + "x": -0.76602, + "y": -0.64282 + }, + { + "x": -0.50005, + "y": -0.866 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.50005, + "y": -0.866 + }, + { + "x": 0.76602, + "y": -0.64282 + }, + { + "x": 0.93968, + "y": -0.34207 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 12, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 378 + }, + "angle": 0, + "vertices": { + "#": 379 + }, + "position": { + "#": 396 + }, + "force": { + "#": 397 + }, + "torque": 0, + "positionImpulse": { + "#": 398 + }, + "constraintImpulse": { + "#": 399 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 400 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 401 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 402 + }, + "circleRadius": 15.99601, + "bounds": { + "#": 404 + }, + "positionPrev": { + "#": 407 + }, + "anglePrev": 0, + "axes": { + "#": 408 + }, + "area": 783.35931, + "mass": 0.78336, + "inverseMass": 1.27655, + "inertia": 390.71545, + "inverseInertia": 0.00256, + "parent": { + "#": 377 + }, + "sleepCounter": 0 + }, + [ + { + "#": 377 + } + ], + [ + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + }, + { + "#": 387 + }, + { + "#": 388 + }, + { + "#": 389 + }, + { + "#": 390 + }, + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + } + ], + { + "x": 402.428, + "y": 118.81, + "index": 0, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 400.039, + "y": 124.576, + "index": 1, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 395.626, + "y": 128.989, + "index": 2, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 389.86, + "y": 131.378, + "index": 3, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 383.618, + "y": 131.378, + "index": 4, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 377.852, + "y": 128.989, + "index": 5, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 373.439, + "y": 124.576, + "index": 6, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 371.05, + "y": 118.81, + "index": 7, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 371.05, + "y": 112.568, + "index": 8, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 373.439, + "y": 106.802, + "index": 9, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 377.852, + "y": 102.389, + "index": 10, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 383.618, + "y": 100, + "index": 11, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 389.86, + "y": 100, + "index": 12, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 395.626, + "y": 102.389, + "index": 13, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 400.039, + "y": 106.802, + "index": 14, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 402.428, + "y": 112.568, + "index": 15, + "body": { + "#": 377 + }, + "isInternal": false + }, + { + "x": 386.739, + "y": 115.689 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 403 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 405 + }, + "max": { + "#": 406 + } + }, + { + "x": 371.05, + "y": 100 + }, + { + "x": 402.428, + "y": 131.378 + }, + { + "x": 386.739, + "y": 115.689 + }, + [ + { + "#": 409 + }, + { + "#": 410 + }, + { + "#": 411 + }, + { + "#": 412 + }, + { + "#": 413 + }, + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + } + ], + { + "x": -0.92384, + "y": -0.38277 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38277, + "y": -0.92384 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38277, + "y": -0.92384 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92384, + "y": -0.38277 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 13, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 418 + }, + "angle": 0, + "vertices": { + "#": 419 + }, + "position": { + "#": 436 + }, + "force": { + "#": 437 + }, + "torque": 0, + "positionImpulse": { + "#": 438 + }, + "constraintImpulse": { + "#": 439 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 440 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 441 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 442 + }, + "circleRadius": 15.69826, + "bounds": { + "#": 444 + }, + "positionPrev": { + "#": 447 + }, + "anglePrev": 0, + "axes": { + "#": 448 + }, + "area": 754.47757, + "mass": 0.75448, + "inverseMass": 1.32542, + "inertia": 362.43592, + "inverseInertia": 0.00276, + "parent": { + "#": 417 + }, + "sleepCounter": 0 + }, + [ + { + "#": 417 + } + ], + [ + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + }, + { + "#": 428 + }, + { + "#": 429 + }, + { + "#": 430 + }, + { + "#": 431 + }, + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + } + ], + { + "x": 453.222, + "y": 118.46, + "index": 0, + "body": { + "#": 417 + }, + "isInternal": false + }, + { + "x": 450.878, + "y": 124.118, + "index": 1, + "body": { + "#": 417 + }, + "isInternal": false + }, + { + "x": 446.546, + "y": 128.45, + "index": 2, + "body": { + "#": 417 + }, + "isInternal": false + }, + { + "x": 440.888, + "y": 130.794, + "index": 3, + "body": { + "#": 417 + }, + "isInternal": false + }, + { + "x": 434.762, + "y": 130.794, + "index": 4, + "body": { + "#": 417 + }, + "isInternal": false + }, + { + "x": 429.104, + "y": 128.45, + "index": 5, + "body": { + "#": 417 + }, + "isInternal": false + }, + { + "x": 424.772, + "y": 124.118, + "index": 6, + "body": { + "#": 417 + }, + "isInternal": false + }, + { + "x": 422.428, + "y": 118.46, + "index": 7, + "body": { + "#": 417 + }, + "isInternal": false + }, + { + "x": 422.428, + "y": 112.334, + "index": 8, + "body": { + "#": 417 + }, + "isInternal": false + }, + { + "x": 424.772, + "y": 106.676, + "index": 9, + "body": { + "#": 417 + }, + "isInternal": false + }, + { + "x": 429.104, + "y": 102.344, + "index": 10, + "body": { + "#": 417 + }, + "isInternal": false + }, + { + "x": 434.762, + "y": 100, + "index": 11, + "body": { + "#": 417 + }, + "isInternal": false + }, + { + "x": 440.888, + "y": 100, + "index": 12, + "body": { + "#": 417 + }, + "isInternal": false + }, + { + "x": 446.546, + "y": 102.344, + "index": 13, + "body": { + "#": 417 + }, + "isInternal": false + }, + { + "x": 450.878, + "y": 106.676, + "index": 14, + "body": { + "#": 417 + }, + "isInternal": false + }, + { + "x": 453.222, + "y": 112.334, + "index": 15, + "body": { + "#": 417 + }, + "isInternal": false + }, + { + "x": 437.825, + "y": 115.397 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 443 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 445 + }, + "max": { + "#": 446 + } + }, + { + "x": 422.428, + "y": 100 + }, + { + "x": 453.222, + "y": 130.794 + }, + { + "x": 437.825, + "y": 115.397 + }, + [ + { + "#": 449 + }, + { + "#": 450 + }, + { + "#": 451 + }, + { + "#": 452 + }, + { + "#": 453 + }, + { + "#": 454 + }, + { + "#": 455 + }, + { + "#": 456 + } + ], + { + "x": -0.92386, + "y": -0.38274 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38274, + "y": -0.92386 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38274, + "y": -0.92386 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92386, + "y": -0.38274 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 14, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 458 + }, + "angle": 0, + "vertices": { + "#": 459 + }, + "position": { + "#": 474 + }, + "force": { + "#": 475 + }, + "torque": 0, + "positionImpulse": { + "#": 476 + }, + "constraintImpulse": { + "#": 477 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 478 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 479 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 480 + }, + "circleRadius": 13.41491, + "bounds": { + "#": 482 + }, + "positionPrev": { + "#": 485 + }, + "anglePrev": 0, + "axes": { + "#": 486 + }, + "area": 546.57346, + "mass": 0.54657, + "inverseMass": 1.82958, + "inertia": 190.22933, + "inverseInertia": 0.00526, + "parent": { + "#": 457 + }, + "sleepCounter": 0 + }, + [ + { + "#": 457 + } + ], + [ + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + }, + { + "#": 469 + }, + { + "#": 470 + }, + { + "#": 471 + }, + { + "#": 472 + }, + { + "#": 473 + } + ], + { + "x": 499.38, + "y": 116.4, + "index": 0, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 496.789, + "y": 121.779, + "index": 1, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 492.122, + "y": 125.501, + "index": 2, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 486.301, + "y": 126.83, + "index": 3, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 480.48, + "y": 125.501, + "index": 4, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 475.813, + "y": 121.779, + "index": 5, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 473.222, + "y": 116.4, + "index": 6, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 473.222, + "y": 110.43, + "index": 7, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 475.813, + "y": 105.051, + "index": 8, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 480.48, + "y": 101.329, + "index": 9, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 486.301, + "y": 100, + "index": 10, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 492.122, + "y": 101.329, + "index": 11, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 496.789, + "y": 105.051, + "index": 12, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 499.38, + "y": 110.43, + "index": 13, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 486.301, + "y": 113.415 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 481 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 483 + }, + "max": { + "#": 484 + } + }, + { + "x": 473.222, + "y": 100 + }, + { + "x": 499.38, + "y": 126.83 + }, + { + "x": 486.301, + "y": 113.415 + }, + [ + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + }, + { + "#": 490 + }, + { + "#": 491 + }, + { + "#": 492 + }, + { + "#": 493 + } + ], + { + "x": -0.90093, + "y": -0.43397 + }, + { + "x": -0.62351, + "y": -0.78182 + }, + { + "x": -0.22258, + "y": -0.97491 + }, + { + "x": 0.22258, + "y": -0.97491 + }, + { + "x": 0.62351, + "y": -0.78182 + }, + { + "x": 0.90093, + "y": -0.43397 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 15, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 495 + }, + "angle": 0, + "vertices": { + "#": 496 + }, + "position": { + "#": 515 + }, + "force": { + "#": 516 + }, + "torque": 0, + "positionImpulse": { + "#": 517 + }, + "constraintImpulse": { + "#": 518 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 519 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 520 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 521 + }, + "circleRadius": 17.78794, + "bounds": { + "#": 523 + }, + "positionPrev": { + "#": 526 + }, + "anglePrev": 0, + "axes": { + "#": 527 + }, + "area": 973.9752, + "mass": 0.97398, + "inverseMass": 1.02672, + "inertia": 603.96569, + "inverseInertia": 0.00166, + "parent": { + "#": 494 + }, + "sleepCounter": 0 + }, + [ + { + "#": 494 + } + ], + [ + { + "#": 497 + }, + { + "#": 498 + }, + { + "#": 499 + }, + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + } + ], + { + "x": 554.416, + "y": 120.877, + "index": 0, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 552.303, + "y": 126.682, + "index": 1, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 548.332, + "y": 131.414, + "index": 2, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 542.982, + "y": 134.503, + "index": 3, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 536.898, + "y": 135.576, + "index": 4, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 530.814, + "y": 134.503, + "index": 5, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 525.464, + "y": 131.414, + "index": 6, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 521.493, + "y": 126.682, + "index": 7, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 519.38, + "y": 120.877, + "index": 8, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 519.38, + "y": 114.699, + "index": 9, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 521.493, + "y": 108.894, + "index": 10, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 525.464, + "y": 104.162, + "index": 11, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 530.814, + "y": 101.073, + "index": 12, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 536.898, + "y": 100, + "index": 13, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 542.982, + "y": 101.073, + "index": 14, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 548.332, + "y": 104.162, + "index": 15, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 552.303, + "y": 108.894, + "index": 16, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 554.416, + "y": 114.699, + "index": 17, + "body": { + "#": 494 + }, + "isInternal": false + }, + { + "x": 536.898, + "y": 117.788 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 522 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 524 + }, + "max": { + "#": 525 + } + }, + { + "x": 519.38, + "y": 100 + }, + { + "x": 554.416, + "y": 135.576 + }, + { + "x": 536.898, + "y": 117.788 + }, + [ + { + "#": 528 + }, + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + }, + { + "#": 534 + }, + { + "#": 535 + }, + { + "#": 536 + } + ], + { + "x": -0.93968, + "y": -0.34204 + }, + { + "x": -0.76601, + "y": -0.64282 + }, + { + "x": -0.50002, + "y": -0.86601 + }, + { + "x": -0.17368, + "y": -0.9848 + }, + { + "x": 0.17368, + "y": -0.9848 + }, + { + "x": 0.50002, + "y": -0.86601 + }, + { + "x": 0.76601, + "y": -0.64282 + }, + { + "x": 0.93968, + "y": -0.34204 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 16, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 538 + }, + "angle": 0, + "vertices": { + "#": 539 + }, + "position": { + "#": 554 + }, + "force": { + "#": 555 + }, + "torque": 0, + "positionImpulse": { + "#": 556 + }, + "constraintImpulse": { + "#": 557 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 558 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 559 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 560 + }, + "circleRadius": 12.6445, + "bounds": { + "#": 562 + }, + "positionPrev": { + "#": 565 + }, + "anglePrev": 0, + "axes": { + "#": 566 + }, + "area": 485.5904, + "mass": 0.48559, + "inverseMass": 2.05935, + "inertia": 150.14836, + "inverseInertia": 0.00666, + "parent": { + "#": 537 + }, + "sleepCounter": 0 + }, + [ + { + "#": 537 + } + ], + [ + { + "#": 540 + }, + { + "#": 541 + }, + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + }, + { + "#": 551 + }, + { + "#": 552 + }, + { + "#": 553 + } + ], + { + "x": 599.07, + "y": 115.459, + "index": 0, + "body": { + "#": 537 + }, + "isInternal": false + }, + { + "x": 596.629, + "y": 120.529, + "index": 1, + "body": { + "#": 537 + }, + "isInternal": false + }, + { + "x": 592.229, + "y": 124.037, + "index": 2, + "body": { + "#": 537 + }, + "isInternal": false + }, + { + "x": 586.743, + "y": 125.29, + "index": 3, + "body": { + "#": 537 + }, + "isInternal": false + }, + { + "x": 581.257, + "y": 124.037, + "index": 4, + "body": { + "#": 537 + }, + "isInternal": false + }, + { + "x": 576.857, + "y": 120.529, + "index": 5, + "body": { + "#": 537 + }, + "isInternal": false + }, + { + "x": 574.416, + "y": 115.459, + "index": 6, + "body": { + "#": 537 + }, + "isInternal": false + }, + { + "x": 574.416, + "y": 109.831, + "index": 7, + "body": { + "#": 537 + }, + "isInternal": false + }, + { + "x": 576.857, + "y": 104.761, + "index": 8, + "body": { + "#": 537 + }, + "isInternal": false + }, + { + "x": 581.257, + "y": 101.253, + "index": 9, + "body": { + "#": 537 + }, + "isInternal": false + }, + { + "x": 586.743, + "y": 100, + "index": 10, + "body": { + "#": 537 + }, + "isInternal": false + }, + { + "x": 592.229, + "y": 101.253, + "index": 11, + "body": { + "#": 537 + }, + "isInternal": false + }, + { + "x": 596.629, + "y": 104.761, + "index": 12, + "body": { + "#": 537 + }, + "isInternal": false + }, + { + "x": 599.07, + "y": 109.831, + "index": 13, + "body": { + "#": 537 + }, + "isInternal": false + }, + { + "x": 586.743, + "y": 112.645 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 561 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 563 + }, + "max": { + "#": 564 + } + }, + { + "x": 574.416, + "y": 100 + }, + { + "x": 599.07, + "y": 125.29 + }, + { + "x": 586.743, + "y": 112.645 + }, + [ + { + "#": 567 + }, + { + "#": 568 + }, + { + "#": 569 + }, + { + "#": 570 + }, + { + "#": 571 + }, + { + "#": 572 + }, + { + "#": 573 + } + ], + { + "x": -0.90101, + "y": -0.4338 + }, + { + "x": -0.62339, + "y": -0.78191 + }, + { + "x": -0.22267, + "y": -0.97489 + }, + { + "x": 0.22267, + "y": -0.97489 + }, + { + "x": 0.62339, + "y": -0.78191 + }, + { + "x": 0.90101, + "y": -0.4338 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 17, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 575 + }, + "angle": 0, + "vertices": { + "#": 576 + }, + "position": { + "#": 597 + }, + "force": { + "#": 598 + }, + "torque": 0, + "positionImpulse": { + "#": 599 + }, + "constraintImpulse": { + "#": 600 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 601 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 602 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 603 + }, + "circleRadius": 18.10807, + "bounds": { + "#": 605 + }, + "positionPrev": { + "#": 608 + }, + "anglePrev": 0, + "axes": { + "#": 609 + }, + "area": 1013.24488, + "mass": 1.01324, + "inverseMass": 0.98693, + "inertia": 653.63115, + "inverseInertia": 0.00153, + "parent": { + "#": 574 + }, + "sleepCounter": 0 + }, + [ + { + "#": 574 + } + ], + [ + { + "#": 577 + }, + { + "#": 578 + }, + { + "#": 579 + }, + { + "#": 580 + }, + { + "#": 581 + }, + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + }, + { + "#": 589 + }, + { + "#": 590 + }, + { + "#": 591 + }, + { + "#": 592 + }, + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + } + ], + { + "x": 654.84, + "y": 120.718, + "index": 0, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 653.089, + "y": 126.106, + "index": 1, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 649.759, + "y": 130.689, + "index": 2, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 645.176, + "y": 134.019, + "index": 3, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 639.788, + "y": 135.77, + "index": 4, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 634.122, + "y": 135.77, + "index": 5, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 628.734, + "y": 134.019, + "index": 6, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 624.151, + "y": 130.689, + "index": 7, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 620.821, + "y": 126.106, + "index": 8, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 619.07, + "y": 120.718, + "index": 9, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 619.07, + "y": 115.052, + "index": 10, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 620.821, + "y": 109.664, + "index": 11, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 624.151, + "y": 105.081, + "index": 12, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 628.734, + "y": 101.751, + "index": 13, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 634.122, + "y": 100, + "index": 14, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 639.788, + "y": 100, + "index": 15, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 645.176, + "y": 101.751, + "index": 16, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 649.759, + "y": 105.081, + "index": 17, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 653.089, + "y": 109.664, + "index": 18, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 654.84, + "y": 115.052, + "index": 19, + "body": { + "#": 574 + }, + "isInternal": false + }, + { + "x": 636.955, + "y": 117.885 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 604 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 606 + }, + "max": { + "#": 607 + } + }, + { + "x": 619.07, + "y": 100 + }, + { + "x": 654.84, + "y": 135.77 + }, + { + "x": 636.955, + "y": 117.885 + }, + [ + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + }, + { + "#": 613 + }, + { + "#": 614 + }, + { + "#": 615 + }, + { + "#": 616 + }, + { + "#": 617 + }, + { + "#": 618 + }, + { + "#": 619 + } + ], + { + "x": -0.95104, + "y": -0.30907 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30907, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30907, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30907 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 18, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 621 + }, + "angle": 0, + "vertices": { + "#": 622 + }, + "position": { + "#": 643 + }, + "force": { + "#": 644 + }, + "torque": 0, + "positionImpulse": { + "#": 645 + }, + "constraintImpulse": { + "#": 646 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 647 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 648 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 649 + }, + "circleRadius": 18.37616, + "bounds": { + "#": 651 + }, + "positionPrev": { + "#": 654 + }, + "anglePrev": 0, + "axes": { + "#": 655 + }, + "area": 1043.50458, + "mass": 1.0435, + "inverseMass": 0.95831, + "inertia": 693.25438, + "inverseInertia": 0.00144, + "parent": { + "#": 620 + }, + "sleepCounter": 0 + }, + [ + { + "#": 620 + } + ], + [ + { + "#": 623 + }, + { + "#": 624 + }, + { + "#": 625 + }, + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + }, + { + "#": 636 + }, + { + "#": 637 + }, + { + "#": 638 + }, + { + "#": 639 + }, + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + } + ], + { + "x": 711.14, + "y": 121.025, + "index": 0, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 709.363, + "y": 126.493, + "index": 1, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 705.984, + "y": 131.144, + "index": 2, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 701.333, + "y": 134.523, + "index": 3, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 695.865, + "y": 136.3, + "index": 4, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 690.115, + "y": 136.3, + "index": 5, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 684.647, + "y": 134.523, + "index": 6, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 679.996, + "y": 131.144, + "index": 7, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 676.617, + "y": 126.493, + "index": 8, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 674.84, + "y": 121.025, + "index": 9, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 674.84, + "y": 115.275, + "index": 10, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 676.617, + "y": 109.807, + "index": 11, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 679.996, + "y": 105.156, + "index": 12, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 684.647, + "y": 101.777, + "index": 13, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 690.115, + "y": 100, + "index": 14, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 695.865, + "y": 100, + "index": 15, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 701.333, + "y": 101.777, + "index": 16, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 705.984, + "y": 105.156, + "index": 17, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 709.363, + "y": 109.807, + "index": 18, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 711.14, + "y": 115.275, + "index": 19, + "body": { + "#": 620 + }, + "isInternal": false + }, + { + "x": 692.99, + "y": 118.15 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 650 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 652 + }, + "max": { + "#": 653 + } + }, + { + "x": 674.84, + "y": 100 + }, + { + "x": 711.14, + "y": 136.3 + }, + { + "x": 692.99, + "y": 118.15 + }, + [ + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + }, + { + "#": 660 + }, + { + "#": 661 + }, + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + } + ], + { + "x": -0.95104, + "y": -0.30907 + }, + { + "x": -0.80903, + "y": -0.58777 + }, + { + "x": -0.58777, + "y": -0.80903 + }, + { + "x": -0.30907, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30907, + "y": -0.95104 + }, + { + "x": 0.58777, + "y": -0.80903 + }, + { + "x": 0.80903, + "y": -0.58777 + }, + { + "x": 0.95104, + "y": -0.30907 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 19, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 667 + }, + "angle": 0, + "vertices": { + "#": 668 + }, + "position": { + "#": 687 + }, + "force": { + "#": 688 + }, + "torque": 0, + "positionImpulse": { + "#": 689 + }, + "constraintImpulse": { + "#": 690 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 691 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 692 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 693 + }, + "circleRadius": 16.16482, + "bounds": { + "#": 695 + }, + "positionPrev": { + "#": 698 + }, + "anglePrev": 0, + "axes": { + "#": 699 + }, + "area": 804.33264, + "mass": 0.80433, + "inverseMass": 1.24327, + "inertia": 411.89627, + "inverseInertia": 0.00243, + "parent": { + "#": 666 + }, + "sleepCounter": 0 + }, + [ + { + "#": 666 + } + ], + [ + { + "#": 669 + }, + { + "#": 670 + }, + { + "#": 671 + }, + { + "#": 672 + }, + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + }, + { + "#": 683 + }, + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + } + ], + { + "x": 762.978, + "y": 118.972, + "index": 0, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 761.058, + "y": 124.247, + "index": 1, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 757.45, + "y": 128.548, + "index": 2, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 752.588, + "y": 131.355, + "index": 3, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 747.059, + "y": 132.33, + "index": 4, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 741.53, + "y": 131.355, + "index": 5, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 736.668, + "y": 128.548, + "index": 6, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 733.06, + "y": 124.247, + "index": 7, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 731.14, + "y": 118.972, + "index": 8, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 731.14, + "y": 113.358, + "index": 9, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 733.06, + "y": 108.083, + "index": 10, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 736.668, + "y": 103.782, + "index": 11, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 741.53, + "y": 100.975, + "index": 12, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 747.059, + "y": 100, + "index": 13, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 752.588, + "y": 100.975, + "index": 14, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 757.45, + "y": 103.782, + "index": 15, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 761.058, + "y": 108.083, + "index": 16, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 762.978, + "y": 113.358, + "index": 17, + "body": { + "#": 666 + }, + "isInternal": false + }, + { + "x": 747.059, + "y": 116.165 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 694 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 696 + }, + "max": { + "#": 697 + } + }, + { + "x": 731.14, + "y": 100 + }, + { + "x": 762.978, + "y": 132.33 + }, + { + "x": 747.059, + "y": 116.165 + }, + [ + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + }, + { + "#": 705 + }, + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + } + ], + { + "x": -0.93969, + "y": -0.34203 + }, + { + "x": -0.76613, + "y": -0.64269 + }, + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": -0.17366, + "y": -0.98481 + }, + { + "x": 0.17366, + "y": -0.98481 + }, + { + "x": 0.49999, + "y": -0.86603 + }, + { + "x": 0.76613, + "y": -0.64269 + }, + { + "x": 0.93969, + "y": -0.34203 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 20, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 710 + }, + "angle": 0, + "vertices": { + "#": 711 + }, + "position": { + "#": 726 + }, + "force": { + "#": 727 + }, + "torque": 0, + "positionImpulse": { + "#": 728 + }, + "constraintImpulse": { + "#": 729 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 730 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 731 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 732 + }, + "circleRadius": 13.81974, + "bounds": { + "#": 734 + }, + "positionPrev": { + "#": 737 + }, + "anglePrev": 0, + "axes": { + "#": 738 + }, + "area": 580.04741, + "mass": 0.58005, + "inverseMass": 1.724, + "inertia": 214.24337, + "inverseInertia": 0.00467, + "parent": { + "#": 709 + }, + "sleepCounter": 0 + }, + [ + { + "#": 709 + } + ], + [ + { + "#": 712 + }, + { + "#": 713 + }, + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + }, + { + "#": 717 + }, + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + } + ], + { + "x": 46.946, + "y": 195.745, + "index": 0, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 44.278, + "y": 201.286, + "index": 1, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 39.469, + "y": 205.121, + "index": 2, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 33.473, + "y": 206.49, + "index": 3, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 27.477, + "y": 205.121, + "index": 4, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 22.668, + "y": 201.286, + "index": 5, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 20, + "y": 195.745, + "index": 6, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 20, + "y": 189.595, + "index": 7, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 22.668, + "y": 184.054, + "index": 8, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 27.477, + "y": 180.219, + "index": 9, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 33.473, + "y": 178.85, + "index": 10, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 39.469, + "y": 180.219, + "index": 11, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 44.278, + "y": 184.054, + "index": 12, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 46.946, + "y": 189.595, + "index": 13, + "body": { + "#": 709 + }, + "isInternal": false + }, + { + "x": 33.473, + "y": 192.67 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 733 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 735 + }, + "max": { + "#": 736 + } + }, + { + "x": 20, + "y": 178.85 + }, + { + "x": 46.946, + "y": 206.49 + }, + { + "x": 33.473, + "y": 192.67 + }, + [ + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + }, + { + "#": 745 + } + ], + { + "x": -0.90099, + "y": -0.43383 + }, + { + "x": -0.62348, + "y": -0.78184 + }, + { + "x": -0.22259, + "y": -0.97491 + }, + { + "x": 0.22259, + "y": -0.97491 + }, + { + "x": 0.62348, + "y": -0.78184 + }, + { + "x": 0.90099, + "y": -0.43383 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 21, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 747 + }, + "angle": 0, + "vertices": { + "#": 748 + }, + "position": { + "#": 761 + }, + "force": { + "#": 762 + }, + "torque": 0, + "positionImpulse": { + "#": 763 + }, + "constraintImpulse": { + "#": 764 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 765 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 766 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 767 + }, + "circleRadius": 11.09401, + "bounds": { + "#": 769 + }, + "positionPrev": { + "#": 772 + }, + "anglePrev": 0, + "axes": { + "#": 773 + }, + "area": 369.23864, + "mass": 0.36924, + "inverseMass": 2.70828, + "inertia": 86.8324, + "inverseInertia": 0.01152, + "parent": { + "#": 746 + }, + "sleepCounter": 0 + }, + [ + { + "#": 746 + } + ], + [ + { + "#": 749 + }, + { + "#": 750 + }, + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + }, + { + "#": 754 + }, + { + "#": 755 + }, + { + "#": 756 + }, + { + "#": 757 + }, + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + } + ], + { + "x": 88.378, + "y": 192.437, + "index": 0, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 85.507, + "y": 197.411, + "index": 1, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 80.533, + "y": 200.282, + "index": 2, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 74.791, + "y": 200.282, + "index": 3, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 69.817, + "y": 197.411, + "index": 4, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 66.946, + "y": 192.437, + "index": 5, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 66.946, + "y": 186.695, + "index": 6, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 69.817, + "y": 181.721, + "index": 7, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 74.791, + "y": 178.85, + "index": 8, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 80.533, + "y": 178.85, + "index": 9, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 85.507, + "y": 181.721, + "index": 10, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 88.378, + "y": 186.695, + "index": 11, + "body": { + "#": 746 + }, + "isInternal": false + }, + { + "x": 77.662, + "y": 189.566 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 768 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 770 + }, + "max": { + "#": 771 + } + }, + { + "x": 66.946, + "y": 178.85 + }, + { + "x": 88.378, + "y": 200.282 + }, + { + "x": 77.662, + "y": 189.566 + }, + [ + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + }, + { + "#": 777 + }, + { + "#": 778 + }, + { + "#": 779 + } + ], + { + "x": -0.86608, + "y": -0.4999 + }, + { + "x": -0.4999, + "y": -0.86608 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.4999, + "y": -0.86608 + }, + { + "x": 0.86608, + "y": -0.4999 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 22, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 781 + }, + "angle": 0, + "vertices": { + "#": 782 + }, + "position": { + "#": 803 + }, + "force": { + "#": 804 + }, + "torque": 0, + "positionImpulse": { + "#": 805 + }, + "constraintImpulse": { + "#": 806 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 807 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 808 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 809 + }, + "circleRadius": 19.59255, + "bounds": { + "#": 811 + }, + "positionPrev": { + "#": 814 + }, + "anglePrev": 0, + "axes": { + "#": 815 + }, + "area": 1186.20081, + "mass": 1.1862, + "inverseMass": 0.84303, + "inertia": 895.81914, + "inverseInertia": 0.00112, + "parent": { + "#": 780 + }, + "sleepCounter": 0 + }, + [ + { + "#": 780 + } + ], + [ + { + "#": 783 + }, + { + "#": 784 + }, + { + "#": 785 + }, + { + "#": 786 + }, + { + "#": 787 + }, + { + "#": 788 + }, + { + "#": 789 + }, + { + "#": 790 + }, + { + "#": 791 + }, + { + "#": 792 + }, + { + "#": 793 + }, + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + }, + { + "#": 800 + }, + { + "#": 801 + }, + { + "#": 802 + } + ], + { + "x": 147.08, + "y": 201.266, + "index": 0, + "body": { + "#": 780 + }, + "isInternal": false + }, + { + "x": 145.186, + "y": 207.096, + "index": 1, + "body": { + "#": 780 + }, + "isInternal": false + }, + { + "x": 141.583, + "y": 212.055, + "index": 2, + "body": { + "#": 780 + }, + "isInternal": false + }, + { + "x": 136.624, + "y": 215.658, + "index": 3, + "body": { + "#": 780 + }, + "isInternal": false + }, + { + "x": 130.794, + "y": 217.552, + "index": 4, + "body": { + "#": 780 + }, + "isInternal": false + }, + { + "x": 124.664, + "y": 217.552, + "index": 5, + "body": { + "#": 780 + }, + "isInternal": false + }, + { + "x": 118.834, + "y": 215.658, + "index": 6, + "body": { + "#": 780 + }, + "isInternal": false + }, + { + "x": 113.875, + "y": 212.055, + "index": 7, + "body": { + "#": 780 + }, + "isInternal": false + }, + { + "x": 110.272, + "y": 207.096, + "index": 8, + "body": { + "#": 780 + }, + "isInternal": false + }, + { + "x": 108.378, + "y": 201.266, + "index": 9, + "body": { + "#": 780 + }, + "isInternal": false + }, + { + "x": 108.378, + "y": 195.136, + "index": 10, + "body": { + "#": 780 + }, + "isInternal": false + }, + { + "x": 110.272, + "y": 189.306, + "index": 11, + "body": { + "#": 780 + }, + "isInternal": false + }, + { + "x": 113.875, + "y": 184.347, + "index": 12, + "body": { + "#": 780 + }, + "isInternal": false + }, + { + "x": 118.834, + "y": 180.744, + "index": 13, + "body": { + "#": 780 + }, + "isInternal": false + }, + { + "x": 124.664, + "y": 178.85, + "index": 14, + "body": { + "#": 780 + }, + "isInternal": false + }, + { + "x": 130.794, + "y": 178.85, + "index": 15, + "body": { + "#": 780 + }, + "isInternal": false + }, + { + "x": 136.624, + "y": 180.744, + "index": 16, + "body": { + "#": 780 + }, + "isInternal": false + }, + { + "x": 141.583, + "y": 184.347, + "index": 17, + "body": { + "#": 780 + }, + "isInternal": false + }, + { + "x": 145.186, + "y": 189.306, + "index": 18, + "body": { + "#": 780 + }, + "isInternal": false + }, + { + "x": 147.08, + "y": 195.136, + "index": 19, + "body": { + "#": 780 + }, + "isInternal": false + }, + { + "x": 127.729, + "y": 198.201 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 810 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 812 + }, + "max": { + "#": 813 + } + }, + { + "x": 108.378, + "y": 178.85 + }, + { + "x": 147.08, + "y": 217.552 + }, + { + "x": 127.729, + "y": 198.201 + }, + [ + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + }, + { + "#": 824 + }, + { + "#": 825 + } + ], + { + "x": -0.95107, + "y": -0.30898 + }, + { + "x": -0.80901, + "y": -0.58779 + }, + { + "x": -0.58779, + "y": -0.80901 + }, + { + "x": -0.30898, + "y": -0.95107 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30898, + "y": -0.95107 + }, + { + "x": 0.58779, + "y": -0.80901 + }, + { + "x": 0.80901, + "y": -0.58779 + }, + { + "x": 0.95107, + "y": -0.30898 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 23, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 827 + }, + "angle": 0, + "vertices": { + "#": 828 + }, + "position": { + "#": 843 + }, + "force": { + "#": 844 + }, + "torque": 0, + "positionImpulse": { + "#": 845 + }, + "constraintImpulse": { + "#": 846 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 847 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 848 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 849 + }, + "circleRadius": 13.88327, + "bounds": { + "#": 851 + }, + "positionPrev": { + "#": 854 + }, + "anglePrev": 0, + "axes": { + "#": 855 + }, + "area": 585.3797, + "mass": 0.58538, + "inverseMass": 1.70829, + "inertia": 218.20048, + "inverseInertia": 0.00458, + "parent": { + "#": 826 + }, + "sleepCounter": 0 + }, + [ + { + "#": 826 + } + ], + [ + { + "#": 829 + }, + { + "#": 830 + }, + { + "#": 831 + }, + { + "#": 832 + }, + { + "#": 833 + }, + { + "#": 834 + }, + { + "#": 835 + }, + { + "#": 836 + }, + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + } + ], + { + "x": 194.15, + "y": 195.822, + "index": 0, + "body": { + "#": 826 + }, + "isInternal": false + }, + { + "x": 191.469, + "y": 201.389, + "index": 1, + "body": { + "#": 826 + }, + "isInternal": false + }, + { + "x": 186.639, + "y": 205.241, + "index": 2, + "body": { + "#": 826 + }, + "isInternal": false + }, + { + "x": 180.615, + "y": 206.616, + "index": 3, + "body": { + "#": 826 + }, + "isInternal": false + }, + { + "x": 174.591, + "y": 205.241, + "index": 4, + "body": { + "#": 826 + }, + "isInternal": false + }, + { + "x": 169.761, + "y": 201.389, + "index": 5, + "body": { + "#": 826 + }, + "isInternal": false + }, + { + "x": 167.08, + "y": 195.822, + "index": 6, + "body": { + "#": 826 + }, + "isInternal": false + }, + { + "x": 167.08, + "y": 189.644, + "index": 7, + "body": { + "#": 826 + }, + "isInternal": false + }, + { + "x": 169.761, + "y": 184.077, + "index": 8, + "body": { + "#": 826 + }, + "isInternal": false + }, + { + "x": 174.591, + "y": 180.225, + "index": 9, + "body": { + "#": 826 + }, + "isInternal": false + }, + { + "x": 180.615, + "y": 178.85, + "index": 10, + "body": { + "#": 826 + }, + "isInternal": false + }, + { + "x": 186.639, + "y": 180.225, + "index": 11, + "body": { + "#": 826 + }, + "isInternal": false + }, + { + "x": 191.469, + "y": 184.077, + "index": 12, + "body": { + "#": 826 + }, + "isInternal": false + }, + { + "x": 194.15, + "y": 189.644, + "index": 13, + "body": { + "#": 826 + }, + "isInternal": false + }, + { + "x": 180.615, + "y": 192.733 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 850 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 852 + }, + "max": { + "#": 853 + } + }, + { + "x": 167.08, + "y": 178.85 + }, + { + "x": 194.15, + "y": 206.616 + }, + { + "x": 180.615, + "y": 192.733 + }, + [ + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + }, + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + } + ], + { + "x": -0.90096, + "y": -0.43389 + }, + { + "x": -0.62351, + "y": -0.78182 + }, + { + "x": -0.22253, + "y": -0.97493 + }, + { + "x": 0.22253, + "y": -0.97493 + }, + { + "x": 0.62351, + "y": -0.78182 + }, + { + "x": 0.90096, + "y": -0.43389 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 24, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 864 + }, + "angle": 0, + "vertices": { + "#": 865 + }, + "position": { + "#": 886 + }, + "force": { + "#": 887 + }, + "torque": 0, + "positionImpulse": { + "#": 888 + }, + "constraintImpulse": { + "#": 889 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 890 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 891 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 892 + }, + "circleRadius": 19.27482, + "bounds": { + "#": 894 + }, + "positionPrev": { + "#": 897 + }, + "anglePrev": 0, + "axes": { + "#": 898 + }, + "area": 1148.07426, + "mass": 1.14807, + "inverseMass": 0.87102, + "inertia": 839.15824, + "inverseInertia": 0.00119, + "parent": { + "#": 863 + }, + "sleepCounter": 0 + }, + [ + { + "#": 863 + } + ], + [ + { + "#": 866 + }, + { + "#": 867 + }, + { + "#": 868 + }, + { + "#": 869 + }, + { + "#": 870 + }, + { + "#": 871 + }, + { + "#": 872 + }, + { + "#": 873 + }, + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + }, + { + "#": 877 + }, + { + "#": 878 + }, + { + "#": 879 + }, + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + } + ], + { + "x": 252.226, + "y": 200.903, + "index": 0, + "body": { + "#": 863 + }, + "isInternal": false + }, + { + "x": 250.362, + "y": 206.639, + "index": 1, + "body": { + "#": 863 + }, + "isInternal": false + }, + { + "x": 246.817, + "y": 211.517, + "index": 2, + "body": { + "#": 863 + }, + "isInternal": false + }, + { + "x": 241.939, + "y": 215.062, + "index": 3, + "body": { + "#": 863 + }, + "isInternal": false + }, + { + "x": 236.203, + "y": 216.926, + "index": 4, + "body": { + "#": 863 + }, + "isInternal": false + }, + { + "x": 230.173, + "y": 216.926, + "index": 5, + "body": { + "#": 863 + }, + "isInternal": false + }, + { + "x": 224.437, + "y": 215.062, + "index": 6, + "body": { + "#": 863 + }, + "isInternal": false + }, + { + "x": 219.559, + "y": 211.517, + "index": 7, + "body": { + "#": 863 + }, + "isInternal": false + }, + { + "x": 216.014, + "y": 206.639, + "index": 8, + "body": { + "#": 863 + }, + "isInternal": false + }, + { + "x": 214.15, + "y": 200.903, + "index": 9, + "body": { + "#": 863 + }, + "isInternal": false + }, + { + "x": 214.15, + "y": 194.873, + "index": 10, + "body": { + "#": 863 + }, + "isInternal": false + }, + { + "x": 216.014, + "y": 189.137, + "index": 11, + "body": { + "#": 863 + }, + "isInternal": false + }, + { + "x": 219.559, + "y": 184.259, + "index": 12, + "body": { + "#": 863 + }, + "isInternal": false + }, + { + "x": 224.437, + "y": 180.714, + "index": 13, + "body": { + "#": 863 + }, + "isInternal": false + }, + { + "x": 230.173, + "y": 178.85, + "index": 14, + "body": { + "#": 863 + }, + "isInternal": false + }, + { + "x": 236.203, + "y": 178.85, + "index": 15, + "body": { + "#": 863 + }, + "isInternal": false + }, + { + "x": 241.939, + "y": 180.714, + "index": 16, + "body": { + "#": 863 + }, + "isInternal": false + }, + { + "x": 246.817, + "y": 184.259, + "index": 17, + "body": { + "#": 863 + }, + "isInternal": false + }, + { + "x": 250.362, + "y": 189.137, + "index": 18, + "body": { + "#": 863 + }, + "isInternal": false + }, + { + "x": 252.226, + "y": 194.873, + "index": 19, + "body": { + "#": 863 + }, + "isInternal": false + }, + { + "x": 233.188, + "y": 197.888 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 893 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 895 + }, + "max": { + "#": 896 + } + }, + { + "x": 214.15, + "y": 178.85 + }, + { + "x": 252.226, + "y": 216.926 + }, + { + "x": 233.188, + "y": 197.888 + }, + [ + { + "#": 899 + }, + { + "#": 900 + }, + { + "#": 901 + }, + { + "#": 902 + }, + { + "#": 903 + }, + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + } + ], + { + "x": -0.95104, + "y": -0.30906 + }, + { + "x": -0.80894, + "y": -0.58789 + }, + { + "x": -0.58789, + "y": -0.80894 + }, + { + "x": -0.30906, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30906, + "y": -0.95104 + }, + { + "x": 0.58789, + "y": -0.80894 + }, + { + "x": 0.80894, + "y": -0.58789 + }, + { + "x": 0.95104, + "y": -0.30906 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 25, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 910 + }, + "angle": 0, + "vertices": { + "#": 911 + }, + "position": { + "#": 930 + }, + "force": { + "#": 931 + }, + "torque": 0, + "positionImpulse": { + "#": 932 + }, + "constraintImpulse": { + "#": 933 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 934 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 935 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 936 + }, + "circleRadius": 16.26102, + "bounds": { + "#": 938 + }, + "positionPrev": { + "#": 941 + }, + "anglePrev": 0, + "axes": { + "#": 942 + }, + "area": 813.92894, + "mass": 0.81393, + "inverseMass": 1.22861, + "inertia": 421.78337, + "inverseInertia": 0.00237, + "parent": { + "#": 909 + }, + "sleepCounter": 0 + }, + [ + { + "#": 909 + } + ], + [ + { + "#": 912 + }, + { + "#": 913 + }, + { + "#": 914 + }, + { + "#": 915 + }, + { + "#": 916 + }, + { + "#": 917 + }, + { + "#": 918 + }, + { + "#": 919 + }, + { + "#": 920 + }, + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + }, + { + "#": 924 + }, + { + "#": 925 + }, + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + }, + { + "#": 929 + } + ], + { + "x": 304.254, + "y": 197.935, + "index": 0, + "body": { + "#": 909 + }, + "isInternal": false + }, + { + "x": 302.322, + "y": 203.242, + "index": 1, + "body": { + "#": 909 + }, + "isInternal": false + }, + { + "x": 298.692, + "y": 207.568, + "index": 2, + "body": { + "#": 909 + }, + "isInternal": false + }, + { + "x": 293.802, + "y": 210.391, + "index": 3, + "body": { + "#": 909 + }, + "isInternal": false + }, + { + "x": 288.24, + "y": 211.372, + "index": 4, + "body": { + "#": 909 + }, + "isInternal": false + }, + { + "x": 282.678, + "y": 210.391, + "index": 5, + "body": { + "#": 909 + }, + "isInternal": false + }, + { + "x": 277.788, + "y": 207.568, + "index": 6, + "body": { + "#": 909 + }, + "isInternal": false + }, + { + "x": 274.158, + "y": 203.242, + "index": 7, + "body": { + "#": 909 + }, + "isInternal": false + }, + { + "x": 272.226, + "y": 197.935, + "index": 8, + "body": { + "#": 909 + }, + "isInternal": false + }, + { + "x": 272.226, + "y": 192.287, + "index": 9, + "body": { + "#": 909 + }, + "isInternal": false + }, + { + "x": 274.158, + "y": 186.98, + "index": 10, + "body": { + "#": 909 + }, + "isInternal": false + }, + { + "x": 277.788, + "y": 182.654, + "index": 11, + "body": { + "#": 909 + }, + "isInternal": false + }, + { + "x": 282.678, + "y": 179.831, + "index": 12, + "body": { + "#": 909 + }, + "isInternal": false + }, + { + "x": 288.24, + "y": 178.85, + "index": 13, + "body": { + "#": 909 + }, + "isInternal": false + }, + { + "x": 293.802, + "y": 179.831, + "index": 14, + "body": { + "#": 909 + }, + "isInternal": false + }, + { + "x": 298.692, + "y": 182.654, + "index": 15, + "body": { + "#": 909 + }, + "isInternal": false + }, + { + "x": 302.322, + "y": 186.98, + "index": 16, + "body": { + "#": 909 + }, + "isInternal": false + }, + { + "x": 304.254, + "y": 192.287, + "index": 17, + "body": { + "#": 909 + }, + "isInternal": false + }, + { + "x": 288.24, + "y": 195.111 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 937 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 939 + }, + "max": { + "#": 940 + } + }, + { + "x": 272.226, + "y": 178.85 + }, + { + "x": 304.254, + "y": 211.372 + }, + { + "x": 288.24, + "y": 195.111 + }, + [ + { + "#": 943 + }, + { + "#": 944 + }, + { + "#": 945 + }, + { + "#": 946 + }, + { + "#": 947 + }, + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + } + ], + { + "x": -0.93967, + "y": -0.34208 + }, + { + "x": -0.76604, + "y": -0.64279 + }, + { + "x": -0.49997, + "y": -0.86604 + }, + { + "x": -0.17369, + "y": -0.9848 + }, + { + "x": 0.17369, + "y": -0.9848 + }, + { + "x": 0.49997, + "y": -0.86604 + }, + { + "x": 0.76604, + "y": -0.64279 + }, + { + "x": 0.93967, + "y": -0.34208 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 26, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 953 + }, + "angle": 0, + "vertices": { + "#": 954 + }, + "position": { + "#": 967 + }, + "force": { + "#": 968 + }, + "torque": 0, + "positionImpulse": { + "#": 969 + }, + "constraintImpulse": { + "#": 970 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 971 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 972 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 973 + }, + "circleRadius": 11.63199, + "bounds": { + "#": 975 + }, + "positionPrev": { + "#": 978 + }, + "anglePrev": 0, + "axes": { + "#": 979 + }, + "area": 405.92888, + "mass": 0.40593, + "inverseMass": 2.46349, + "inertia": 104.94637, + "inverseInertia": 0.00953, + "parent": { + "#": 952 + }, + "sleepCounter": 0 + }, + [ + { + "#": 952 + } + ], + [ + { + "#": 955 + }, + { + "#": 956 + }, + { + "#": 957 + }, + { + "#": 958 + }, + { + "#": 959 + }, + { + "#": 960 + }, + { + "#": 961 + }, + { + "#": 962 + }, + { + "#": 963 + }, + { + "#": 964 + }, + { + "#": 965 + }, + { + "#": 966 + } + ], + { + "x": 346.726, + "y": 193.097, + "index": 0, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 343.715, + "y": 198.311, + "index": 1, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 338.501, + "y": 201.322, + "index": 2, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 332.479, + "y": 201.322, + "index": 3, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 327.265, + "y": 198.311, + "index": 4, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 324.254, + "y": 193.097, + "index": 5, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 324.254, + "y": 187.075, + "index": 6, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 327.265, + "y": 181.861, + "index": 7, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 332.479, + "y": 178.85, + "index": 8, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 338.501, + "y": 178.85, + "index": 9, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 343.715, + "y": 181.861, + "index": 10, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 346.726, + "y": 187.075, + "index": 11, + "body": { + "#": 952 + }, + "isInternal": false + }, + { + "x": 335.49, + "y": 190.086 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 974 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 976 + }, + "max": { + "#": 977 + } + }, + { + "x": 324.254, + "y": 178.85 + }, + { + "x": 346.726, + "y": 201.322 + }, + { + "x": 335.49, + "y": 190.086 + }, + [ + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + }, + { + "#": 985 + } + ], + { + "x": -0.86598, + "y": -0.50009 + }, + { + "x": -0.50009, + "y": -0.86598 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.50009, + "y": -0.86598 + }, + { + "x": 0.86598, + "y": -0.50009 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 27, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 987 + }, + "angle": 0, + "vertices": { + "#": 988 + }, + "position": { + "#": 1007 + }, + "force": { + "#": 1008 + }, + "torque": 0, + "positionImpulse": { + "#": 1009 + }, + "constraintImpulse": { + "#": 1010 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1011 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1012 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1013 + }, + "circleRadius": 16.25193, + "bounds": { + "#": 1015 + }, + "positionPrev": { + "#": 1018 + }, + "anglePrev": 0, + "axes": { + "#": 1019 + }, + "area": 813.04524, + "mass": 0.81305, + "inverseMass": 1.22994, + "inertia": 420.86798, + "inverseInertia": 0.00238, + "parent": { + "#": 986 + }, + "sleepCounter": 0 + }, + [ + { + "#": 986 + } + ], + [ + { + "#": 989 + }, + { + "#": 990 + }, + { + "#": 991 + }, + { + "#": 992 + }, + { + "#": 993 + }, + { + "#": 994 + }, + { + "#": 995 + }, + { + "#": 996 + }, + { + "#": 997 + }, + { + "#": 998 + }, + { + "#": 999 + }, + { + "#": 1000 + }, + { + "#": 1001 + }, + { + "#": 1002 + }, + { + "#": 1003 + }, + { + "#": 1004 + }, + { + "#": 1005 + }, + { + "#": 1006 + } + ], + { + "x": 398.736, + "y": 197.924, + "index": 0, + "body": { + "#": 986 + }, + "isInternal": false + }, + { + "x": 396.806, + "y": 203.228, + "index": 1, + "body": { + "#": 986 + }, + "isInternal": false + }, + { + "x": 393.178, + "y": 207.552, + "index": 2, + "body": { + "#": 986 + }, + "isInternal": false + }, + { + "x": 388.289, + "y": 210.374, + "index": 3, + "body": { + "#": 986 + }, + "isInternal": false + }, + { + "x": 382.731, + "y": 211.354, + "index": 4, + "body": { + "#": 986 + }, + "isInternal": false + }, + { + "x": 377.173, + "y": 210.374, + "index": 5, + "body": { + "#": 986 + }, + "isInternal": false + }, + { + "x": 372.284, + "y": 207.552, + "index": 6, + "body": { + "#": 986 + }, + "isInternal": false + }, + { + "x": 368.656, + "y": 203.228, + "index": 7, + "body": { + "#": 986 + }, + "isInternal": false + }, + { + "x": 366.726, + "y": 197.924, + "index": 8, + "body": { + "#": 986 + }, + "isInternal": false + }, + { + "x": 366.726, + "y": 192.28, + "index": 9, + "body": { + "#": 986 + }, + "isInternal": false + }, + { + "x": 368.656, + "y": 186.976, + "index": 10, + "body": { + "#": 986 + }, + "isInternal": false + }, + { + "x": 372.284, + "y": 182.652, + "index": 11, + "body": { + "#": 986 + }, + "isInternal": false + }, + { + "x": 377.173, + "y": 179.83, + "index": 12, + "body": { + "#": 986 + }, + "isInternal": false + }, + { + "x": 382.731, + "y": 178.85, + "index": 13, + "body": { + "#": 986 + }, + "isInternal": false + }, + { + "x": 388.289, + "y": 179.83, + "index": 14, + "body": { + "#": 986 + }, + "isInternal": false + }, + { + "x": 393.178, + "y": 182.652, + "index": 15, + "body": { + "#": 986 + }, + "isInternal": false + }, + { + "x": 396.806, + "y": 186.976, + "index": 16, + "body": { + "#": 986 + }, + "isInternal": false + }, + { + "x": 398.736, + "y": 192.28, + "index": 17, + "body": { + "#": 986 + }, + "isInternal": false + }, + { + "x": 382.731, + "y": 195.102 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1014 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1016 + }, + "max": { + "#": 1017 + } + }, + { + "x": 366.726, + "y": 178.85 + }, + { + "x": 398.736, + "y": 211.354 + }, + { + "x": 382.731, + "y": 195.102 + }, + [ + { + "#": 1020 + }, + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + }, + { + "#": 1026 + }, + { + "#": 1027 + }, + { + "#": 1028 + } + ], + { + "x": -0.93972, + "y": -0.34194 + }, + { + "x": -0.76607, + "y": -0.64276 + }, + { + "x": -0.49991, + "y": -0.86608 + }, + { + "x": -0.17364, + "y": -0.98481 + }, + { + "x": 0.17364, + "y": -0.98481 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.76607, + "y": -0.64276 + }, + { + "x": 0.93972, + "y": -0.34194 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 28, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1030 + }, + "angle": 0, + "vertices": { + "#": 1031 + }, + "position": { + "#": 1052 + }, + "force": { + "#": 1053 + }, + "torque": 0, + "positionImpulse": { + "#": 1054 + }, + "constraintImpulse": { + "#": 1055 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1056 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1057 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1058 + }, + "circleRadius": 19.50356, + "bounds": { + "#": 1060 + }, + "positionPrev": { + "#": 1063 + }, + "anglePrev": 0, + "axes": { + "#": 1064 + }, + "area": 1175.44088, + "mass": 1.17544, + "inverseMass": 0.85074, + "inertia": 879.64105, + "inverseInertia": 0.00114, + "parent": { + "#": 1029 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1029 + } + ], + [ + { + "#": 1032 + }, + { + "#": 1033 + }, + { + "#": 1034 + }, + { + "#": 1035 + }, + { + "#": 1036 + }, + { + "#": 1037 + }, + { + "#": 1038 + }, + { + "#": 1039 + }, + { + "#": 1040 + }, + { + "#": 1041 + }, + { + "#": 1042 + }, + { + "#": 1043 + }, + { + "#": 1044 + }, + { + "#": 1045 + }, + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + } + ], + { + "x": 457.262, + "y": 201.164, + "index": 0, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 455.377, + "y": 206.967, + "index": 1, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 451.79, + "y": 211.904, + "index": 2, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 446.853, + "y": 215.491, + "index": 3, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 441.05, + "y": 217.376, + "index": 4, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 434.948, + "y": 217.376, + "index": 5, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 429.145, + "y": 215.491, + "index": 6, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 424.208, + "y": 211.904, + "index": 7, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 420.621, + "y": 206.967, + "index": 8, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 418.736, + "y": 201.164, + "index": 9, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 418.736, + "y": 195.062, + "index": 10, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 420.621, + "y": 189.259, + "index": 11, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 424.208, + "y": 184.322, + "index": 12, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 429.145, + "y": 180.735, + "index": 13, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 434.948, + "y": 178.85, + "index": 14, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 441.05, + "y": 178.85, + "index": 15, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 446.853, + "y": 180.735, + "index": 16, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 451.79, + "y": 184.322, + "index": 17, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 455.377, + "y": 189.259, + "index": 18, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 457.262, + "y": 195.062, + "index": 19, + "body": { + "#": 1029 + }, + "isInternal": false + }, + { + "x": 437.999, + "y": 198.113 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1059 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1061 + }, + "max": { + "#": 1062 + } + }, + { + "x": 418.736, + "y": 178.85 + }, + { + "x": 457.262, + "y": 217.376 + }, + { + "x": 437.999, + "y": 198.113 + }, + [ + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + }, + { + "#": 1074 + } + ], + { + "x": -0.95108, + "y": -0.30894 + }, + { + "x": -0.80901, + "y": -0.58779 + }, + { + "x": -0.58779, + "y": -0.80901 + }, + { + "x": -0.30894, + "y": -0.95108 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30894, + "y": -0.95108 + }, + { + "x": 0.58779, + "y": -0.80901 + }, + { + "x": 0.80901, + "y": -0.58779 + }, + { + "x": 0.95108, + "y": -0.30894 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 29, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1076 + }, + "angle": 0, + "vertices": { + "#": 1077 + }, + "position": { + "#": 1090 + }, + "force": { + "#": 1091 + }, + "torque": 0, + "positionImpulse": { + "#": 1092 + }, + "constraintImpulse": { + "#": 1093 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1094 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1095 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1096 + }, + "circleRadius": 10.39922, + "bounds": { + "#": 1098 + }, + "positionPrev": { + "#": 1101 + }, + "anglePrev": 0, + "axes": { + "#": 1102 + }, + "area": 324.431, + "mass": 0.32443, + "inverseMass": 3.08232, + "inertia": 67.03663, + "inverseInertia": 0.01492, + "parent": { + "#": 1075 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1075 + } + ], + [ + { + "#": 1078 + }, + { + "#": 1079 + }, + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + }, + { + "#": 1085 + }, + { + "#": 1086 + }, + { + "#": 1087 + }, + { + "#": 1088 + }, + { + "#": 1089 + } + ], + { + "x": 497.352, + "y": 191.587, + "index": 0, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 494.66, + "y": 196.248, + "index": 1, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 489.999, + "y": 198.94, + "index": 2, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 484.615, + "y": 198.94, + "index": 3, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 479.954, + "y": 196.248, + "index": 4, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 477.262, + "y": 191.587, + "index": 5, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 477.262, + "y": 186.203, + "index": 6, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 479.954, + "y": 181.542, + "index": 7, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 484.615, + "y": 178.85, + "index": 8, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 489.999, + "y": 178.85, + "index": 9, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 494.66, + "y": 181.542, + "index": 10, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 497.352, + "y": 186.203, + "index": 11, + "body": { + "#": 1075 + }, + "isInternal": false + }, + { + "x": 487.307, + "y": 188.895 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1097 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1099 + }, + "max": { + "#": 1100 + } + }, + { + "x": 477.262, + "y": 178.85 + }, + { + "x": 497.352, + "y": 198.94 + }, + { + "x": 487.307, + "y": 188.895 + }, + [ + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + }, + { + "#": 1108 + } + ], + { + "x": -0.86595, + "y": -0.50014 + }, + { + "x": -0.50014, + "y": -0.86595 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.50014, + "y": -0.86595 + }, + { + "x": 0.86595, + "y": -0.50014 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 30, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1110 + }, + "angle": 0, + "vertices": { + "#": 1111 + }, + "position": { + "#": 1128 + }, + "force": { + "#": 1129 + }, + "torque": 0, + "positionImpulse": { + "#": 1130 + }, + "constraintImpulse": { + "#": 1131 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1132 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1133 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1134 + }, + "circleRadius": 15.35867, + "bounds": { + "#": 1136 + }, + "positionPrev": { + "#": 1139 + }, + "anglePrev": 0, + "axes": { + "#": 1140 + }, + "area": 722.17737, + "mass": 0.72218, + "inverseMass": 1.3847, + "inertia": 332.06746, + "inverseInertia": 0.00301, + "parent": { + "#": 1109 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1109 + } + ], + [ + { + "#": 1112 + }, + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + }, + { + "#": 1118 + }, + { + "#": 1119 + }, + { + "#": 1120 + }, + { + "#": 1121 + }, + { + "#": 1122 + }, + { + "#": 1123 + }, + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + } + ], + { + "x": 547.48, + "y": 196.91, + "index": 0, + "body": { + "#": 1109 + }, + "isInternal": false + }, + { + "x": 545.186, + "y": 202.447, + "index": 1, + "body": { + "#": 1109 + }, + "isInternal": false + }, + { + "x": 540.949, + "y": 206.684, + "index": 2, + "body": { + "#": 1109 + }, + "isInternal": false + }, + { + "x": 535.412, + "y": 208.978, + "index": 3, + "body": { + "#": 1109 + }, + "isInternal": false + }, + { + "x": 529.42, + "y": 208.978, + "index": 4, + "body": { + "#": 1109 + }, + "isInternal": false + }, + { + "x": 523.883, + "y": 206.684, + "index": 5, + "body": { + "#": 1109 + }, + "isInternal": false + }, + { + "x": 519.646, + "y": 202.447, + "index": 6, + "body": { + "#": 1109 + }, + "isInternal": false + }, + { + "x": 517.352, + "y": 196.91, + "index": 7, + "body": { + "#": 1109 + }, + "isInternal": false + }, + { + "x": 517.352, + "y": 190.918, + "index": 8, + "body": { + "#": 1109 + }, + "isInternal": false + }, + { + "x": 519.646, + "y": 185.381, + "index": 9, + "body": { + "#": 1109 + }, + "isInternal": false + }, + { + "x": 523.883, + "y": 181.144, + "index": 10, + "body": { + "#": 1109 + }, + "isInternal": false + }, + { + "x": 529.42, + "y": 178.85, + "index": 11, + "body": { + "#": 1109 + }, + "isInternal": false + }, + { + "x": 535.412, + "y": 178.85, + "index": 12, + "body": { + "#": 1109 + }, + "isInternal": false + }, + { + "x": 540.949, + "y": 181.144, + "index": 13, + "body": { + "#": 1109 + }, + "isInternal": false + }, + { + "x": 545.186, + "y": 185.381, + "index": 14, + "body": { + "#": 1109 + }, + "isInternal": false + }, + { + "x": 547.48, + "y": 190.918, + "index": 15, + "body": { + "#": 1109 + }, + "isInternal": false + }, + { + "x": 532.416, + "y": 193.914 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1135 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1137 + }, + "max": { + "#": 1138 + } + }, + { + "x": 517.352, + "y": 178.85 + }, + { + "x": 547.48, + "y": 208.978 + }, + { + "x": 532.416, + "y": 193.914 + }, + [ + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + } + ], + { + "x": -0.92385, + "y": -0.38275 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38275, + "y": -0.92385 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38275, + "y": -0.92385 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92385, + "y": -0.38275 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 31, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1150 + }, + "angle": 0, + "vertices": { + "#": 1151 + }, + "position": { + "#": 1166 + }, + "force": { + "#": 1167 + }, + "torque": 0, + "positionImpulse": { + "#": 1168 + }, + "constraintImpulse": { + "#": 1169 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1170 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1171 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1172 + }, + "circleRadius": 12.65351, + "bounds": { + "#": 1174 + }, + "positionPrev": { + "#": 1177 + }, + "anglePrev": 0, + "axes": { + "#": 1178 + }, + "area": 486.27648, + "mass": 0.48628, + "inverseMass": 2.05644, + "inertia": 150.57294, + "inverseInertia": 0.00664, + "parent": { + "#": 1149 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1149 + } + ], + [ + { + "#": 1152 + }, + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + }, + { + "#": 1156 + }, + { + "#": 1157 + }, + { + "#": 1158 + }, + { + "#": 1159 + }, + { + "#": 1160 + }, + { + "#": 1161 + }, + { + "#": 1162 + }, + { + "#": 1163 + }, + { + "#": 1164 + }, + { + "#": 1165 + } + ], + { + "x": 592.152, + "y": 194.32, + "index": 0, + "body": { + "#": 1149 + }, + "isInternal": false + }, + { + "x": 589.709, + "y": 199.393, + "index": 1, + "body": { + "#": 1149 + }, + "isInternal": false + }, + { + "x": 585.306, + "y": 202.904, + "index": 2, + "body": { + "#": 1149 + }, + "isInternal": false + }, + { + "x": 579.816, + "y": 204.158, + "index": 3, + "body": { + "#": 1149 + }, + "isInternal": false + }, + { + "x": 574.326, + "y": 202.904, + "index": 4, + "body": { + "#": 1149 + }, + "isInternal": false + }, + { + "x": 569.923, + "y": 199.393, + "index": 5, + "body": { + "#": 1149 + }, + "isInternal": false + }, + { + "x": 567.48, + "y": 194.32, + "index": 6, + "body": { + "#": 1149 + }, + "isInternal": false + }, + { + "x": 567.48, + "y": 188.688, + "index": 7, + "body": { + "#": 1149 + }, + "isInternal": false + }, + { + "x": 569.923, + "y": 183.615, + "index": 8, + "body": { + "#": 1149 + }, + "isInternal": false + }, + { + "x": 574.326, + "y": 180.104, + "index": 9, + "body": { + "#": 1149 + }, + "isInternal": false + }, + { + "x": 579.816, + "y": 178.85, + "index": 10, + "body": { + "#": 1149 + }, + "isInternal": false + }, + { + "x": 585.306, + "y": 180.104, + "index": 11, + "body": { + "#": 1149 + }, + "isInternal": false + }, + { + "x": 589.709, + "y": 183.615, + "index": 12, + "body": { + "#": 1149 + }, + "isInternal": false + }, + { + "x": 592.152, + "y": 188.688, + "index": 13, + "body": { + "#": 1149 + }, + "isInternal": false + }, + { + "x": 579.816, + "y": 191.504 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1173 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1175 + }, + "max": { + "#": 1176 + } + }, + { + "x": 567.48, + "y": 178.85 + }, + { + "x": 592.152, + "y": 204.158 + }, + { + "x": 579.816, + "y": 191.504 + }, + [ + { + "#": 1179 + }, + { + "#": 1180 + }, + { + "#": 1181 + }, + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + } + ], + { + "x": -0.90097, + "y": -0.43388 + }, + { + "x": -0.62346, + "y": -0.78186 + }, + { + "x": -0.22268, + "y": -0.97489 + }, + { + "x": 0.22268, + "y": -0.97489 + }, + { + "x": 0.62346, + "y": -0.78186 + }, + { + "x": 0.90097, + "y": -0.43388 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 32, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1187 + }, + "angle": 0, + "vertices": { + "#": 1188 + }, + "position": { + "#": 1203 + }, + "force": { + "#": 1204 + }, + "torque": 0, + "positionImpulse": { + "#": 1205 + }, + "constraintImpulse": { + "#": 1206 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1207 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1208 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1209 + }, + "circleRadius": 13.5183, + "bounds": { + "#": 1211 + }, + "positionPrev": { + "#": 1214 + }, + "anglePrev": 0, + "axes": { + "#": 1215 + }, + "area": 555.02815, + "mass": 0.55503, + "inverseMass": 1.80171, + "inertia": 196.15998, + "inverseInertia": 0.0051, + "parent": { + "#": 1186 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1186 + } + ], + [ + { + "#": 1189 + }, + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + }, + { + "#": 1194 + }, + { + "#": 1195 + }, + { + "#": 1196 + }, + { + "#": 1197 + }, + { + "#": 1198 + }, + { + "#": 1199 + }, + { + "#": 1200 + }, + { + "#": 1201 + }, + { + "#": 1202 + } + ], + { + "x": 638.51, + "y": 195.376, + "index": 0, + "body": { + "#": 1186 + }, + "isInternal": false + }, + { + "x": 635.9, + "y": 200.797, + "index": 1, + "body": { + "#": 1186 + }, + "isInternal": false + }, + { + "x": 631.196, + "y": 204.548, + "index": 2, + "body": { + "#": 1186 + }, + "isInternal": false + }, + { + "x": 625.331, + "y": 205.886, + "index": 3, + "body": { + "#": 1186 + }, + "isInternal": false + }, + { + "x": 619.466, + "y": 204.548, + "index": 4, + "body": { + "#": 1186 + }, + "isInternal": false + }, + { + "x": 614.762, + "y": 200.797, + "index": 5, + "body": { + "#": 1186 + }, + "isInternal": false + }, + { + "x": 612.152, + "y": 195.376, + "index": 6, + "body": { + "#": 1186 + }, + "isInternal": false + }, + { + "x": 612.152, + "y": 189.36, + "index": 7, + "body": { + "#": 1186 + }, + "isInternal": false + }, + { + "x": 614.762, + "y": 183.939, + "index": 8, + "body": { + "#": 1186 + }, + "isInternal": false + }, + { + "x": 619.466, + "y": 180.188, + "index": 9, + "body": { + "#": 1186 + }, + "isInternal": false + }, + { + "x": 625.331, + "y": 178.85, + "index": 10, + "body": { + "#": 1186 + }, + "isInternal": false + }, + { + "x": 631.196, + "y": 180.188, + "index": 11, + "body": { + "#": 1186 + }, + "isInternal": false + }, + { + "x": 635.9, + "y": 183.939, + "index": 12, + "body": { + "#": 1186 + }, + "isInternal": false + }, + { + "x": 638.51, + "y": 189.36, + "index": 13, + "body": { + "#": 1186 + }, + "isInternal": false + }, + { + "x": 625.331, + "y": 192.368 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1210 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1212 + }, + "max": { + "#": 1213 + } + }, + { + "x": 612.152, + "y": 178.85 + }, + { + "x": 638.51, + "y": 205.886 + }, + { + "x": 625.331, + "y": 192.368 + }, + [ + { + "#": 1216 + }, + { + "#": 1217 + }, + { + "#": 1218 + }, + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + } + ], + { + "x": -0.90101, + "y": -0.4338 + }, + { + "x": -0.62346, + "y": -0.78186 + }, + { + "x": -0.22242, + "y": -0.97495 + }, + { + "x": 0.22242, + "y": -0.97495 + }, + { + "x": 0.62346, + "y": -0.78186 + }, + { + "x": 0.90101, + "y": -0.4338 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 33, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1224 + }, + "angle": 0, + "vertices": { + "#": 1225 + }, + "position": { + "#": 1246 + }, + "force": { + "#": 1247 + }, + "torque": 0, + "positionImpulse": { + "#": 1248 + }, + "constraintImpulse": { + "#": 1249 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1250 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1251 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1252 + }, + "circleRadius": 19.92837, + "bounds": { + "#": 1254 + }, + "positionPrev": { + "#": 1257 + }, + "anglePrev": 0, + "axes": { + "#": 1258 + }, + "area": 1227.18832, + "mass": 1.22719, + "inverseMass": 0.81487, + "inertia": 958.79625, + "inverseInertia": 0.00104, + "parent": { + "#": 1223 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1223 + } + ], + [ + { + "#": 1226 + }, + { + "#": 1227 + }, + { + "#": 1228 + }, + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + }, + { + "#": 1232 + }, + { + "#": 1233 + }, + { + "#": 1234 + }, + { + "#": 1235 + }, + { + "#": 1236 + }, + { + "#": 1237 + }, + { + "#": 1238 + }, + { + "#": 1239 + }, + { + "#": 1240 + }, + { + "#": 1241 + }, + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + } + ], + { + "x": 697.876, + "y": 201.65, + "index": 0, + "body": { + "#": 1223 + }, + "isInternal": false + }, + { + "x": 695.949, + "y": 207.58, + "index": 1, + "body": { + "#": 1223 + }, + "isInternal": false + }, + { + "x": 692.284, + "y": 212.624, + "index": 2, + "body": { + "#": 1223 + }, + "isInternal": false + }, + { + "x": 687.24, + "y": 216.289, + "index": 3, + "body": { + "#": 1223 + }, + "isInternal": false + }, + { + "x": 681.31, + "y": 218.216, + "index": 4, + "body": { + "#": 1223 + }, + "isInternal": false + }, + { + "x": 675.076, + "y": 218.216, + "index": 5, + "body": { + "#": 1223 + }, + "isInternal": false + }, + { + "x": 669.146, + "y": 216.289, + "index": 6, + "body": { + "#": 1223 + }, + "isInternal": false + }, + { + "x": 664.102, + "y": 212.624, + "index": 7, + "body": { + "#": 1223 + }, + "isInternal": false + }, + { + "x": 660.437, + "y": 207.58, + "index": 8, + "body": { + "#": 1223 + }, + "isInternal": false + }, + { + "x": 658.51, + "y": 201.65, + "index": 9, + "body": { + "#": 1223 + }, + "isInternal": false + }, + { + "x": 658.51, + "y": 195.416, + "index": 10, + "body": { + "#": 1223 + }, + "isInternal": false + }, + { + "x": 660.437, + "y": 189.486, + "index": 11, + "body": { + "#": 1223 + }, + "isInternal": false + }, + { + "x": 664.102, + "y": 184.442, + "index": 12, + "body": { + "#": 1223 + }, + "isInternal": false + }, + { + "x": 669.146, + "y": 180.777, + "index": 13, + "body": { + "#": 1223 + }, + "isInternal": false + }, + { + "x": 675.076, + "y": 178.85, + "index": 14, + "body": { + "#": 1223 + }, + "isInternal": false + }, + { + "x": 681.31, + "y": 178.85, + "index": 15, + "body": { + "#": 1223 + }, + "isInternal": false + }, + { + "x": 687.24, + "y": 180.777, + "index": 16, + "body": { + "#": 1223 + }, + "isInternal": false + }, + { + "x": 692.284, + "y": 184.442, + "index": 17, + "body": { + "#": 1223 + }, + "isInternal": false + }, + { + "x": 695.949, + "y": 189.486, + "index": 18, + "body": { + "#": 1223 + }, + "isInternal": false + }, + { + "x": 697.876, + "y": 195.416, + "index": 19, + "body": { + "#": 1223 + }, + "isInternal": false + }, + { + "x": 678.193, + "y": 198.533 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1253 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1255 + }, + "max": { + "#": 1256 + } + }, + { + "x": 658.51, + "y": 178.85 + }, + { + "x": 697.876, + "y": 218.216 + }, + { + "x": 678.193, + "y": 198.533 + }, + [ + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + }, + { + "#": 1263 + }, + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + }, + { + "#": 1267 + }, + { + "#": 1268 + } + ], + { + "x": -0.95105, + "y": -0.30905 + }, + { + "x": -0.80899, + "y": -0.58782 + }, + { + "x": -0.58782, + "y": -0.80899 + }, + { + "x": -0.30905, + "y": -0.95105 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30905, + "y": -0.95105 + }, + { + "x": 0.58782, + "y": -0.80899 + }, + { + "x": 0.80899, + "y": -0.58782 + }, + { + "x": 0.95105, + "y": -0.30905 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 34, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1270 + }, + "angle": 0, + "vertices": { + "#": 1271 + }, + "position": { + "#": 1292 + }, + "force": { + "#": 1293 + }, + "torque": 0, + "positionImpulse": { + "#": 1294 + }, + "constraintImpulse": { + "#": 1295 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1296 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1297 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1298 + }, + "circleRadius": 19.0442, + "bounds": { + "#": 1300 + }, + "positionPrev": { + "#": 1303 + }, + "anglePrev": 0, + "axes": { + "#": 1304 + }, + "area": 1120.77247, + "mass": 1.12077, + "inverseMass": 0.89224, + "inertia": 799.72157, + "inverseInertia": 0.00125, + "parent": { + "#": 1269 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1269 + } + ], + [ + { + "#": 1272 + }, + { + "#": 1273 + }, + { + "#": 1274 + }, + { + "#": 1275 + }, + { + "#": 1276 + }, + { + "#": 1277 + }, + { + "#": 1278 + }, + { + "#": 1279 + }, + { + "#": 1280 + }, + { + "#": 1281 + }, + { + "#": 1282 + }, + { + "#": 1283 + }, + { + "#": 1284 + }, + { + "#": 1285 + }, + { + "#": 1286 + }, + { + "#": 1287 + }, + { + "#": 1288 + }, + { + "#": 1289 + }, + { + "#": 1290 + }, + { + "#": 1291 + } + ], + { + "x": 755.496, + "y": 200.639, + "index": 0, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 753.655, + "y": 206.306, + "index": 1, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 750.152, + "y": 211.126, + "index": 2, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 745.332, + "y": 214.629, + "index": 3, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 739.665, + "y": 216.47, + "index": 4, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 733.707, + "y": 216.47, + "index": 5, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 728.04, + "y": 214.629, + "index": 6, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 723.22, + "y": 211.126, + "index": 7, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 719.717, + "y": 206.306, + "index": 8, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 717.876, + "y": 200.639, + "index": 9, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 717.876, + "y": 194.681, + "index": 10, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 719.717, + "y": 189.014, + "index": 11, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 723.22, + "y": 184.194, + "index": 12, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 728.04, + "y": 180.691, + "index": 13, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 733.707, + "y": 178.85, + "index": 14, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 739.665, + "y": 178.85, + "index": 15, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 745.332, + "y": 180.691, + "index": 16, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 750.152, + "y": 184.194, + "index": 17, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 753.655, + "y": 189.014, + "index": 18, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 755.496, + "y": 194.681, + "index": 19, + "body": { + "#": 1269 + }, + "isInternal": false + }, + { + "x": 736.686, + "y": 197.66 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1299 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1301 + }, + "max": { + "#": 1302 + } + }, + { + "x": 717.876, + "y": 178.85 + }, + { + "x": 755.496, + "y": 216.47 + }, + { + "x": 736.686, + "y": 197.66 + }, + [ + { + "#": 1305 + }, + { + "#": 1306 + }, + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + }, + { + "#": 1310 + }, + { + "#": 1311 + }, + { + "#": 1312 + }, + { + "#": 1313 + }, + { + "#": 1314 + } + ], + { + "x": -0.95107, + "y": -0.30897 + }, + { + "x": -0.80893, + "y": -0.5879 + }, + { + "x": -0.5879, + "y": -0.80893 + }, + { + "x": -0.30897, + "y": -0.95107 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30897, + "y": -0.95107 + }, + { + "x": 0.5879, + "y": -0.80893 + }, + { + "x": 0.80893, + "y": -0.5879 + }, + { + "x": 0.95107, + "y": -0.30897 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 35, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1316 + }, + "angle": 0, + "vertices": { + "#": 1317 + }, + "position": { + "#": 1334 + }, + "force": { + "#": 1335 + }, + "torque": 0, + "positionImpulse": { + "#": 1336 + }, + "constraintImpulse": { + "#": 1337 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1338 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1339 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1340 + }, + "circleRadius": 14.32257, + "bounds": { + "#": 1342 + }, + "positionPrev": { + "#": 1345 + }, + "anglePrev": 0, + "axes": { + "#": 1346 + }, + "area": 628.00307, + "mass": 0.628, + "inverseMass": 1.59235, + "inertia": 251.1089, + "inverseInertia": 0.00398, + "parent": { + "#": 1315 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1315 + } + ], + [ + { + "#": 1318 + }, + { + "#": 1319 + }, + { + "#": 1320 + }, + { + "#": 1321 + }, + { + "#": 1322 + }, + { + "#": 1323 + }, + { + "#": 1324 + }, + { + "#": 1325 + }, + { + "#": 1326 + }, + { + "#": 1327 + }, + { + "#": 1328 + }, + { + "#": 1329 + }, + { + "#": 1330 + }, + { + "#": 1331 + }, + { + "#": 1332 + }, + { + "#": 1333 + } + ], + { + "x": 48.094, + "y": 275.057, + "index": 0, + "body": { + "#": 1315 + }, + "isInternal": false + }, + { + "x": 45.956, + "y": 280.22, + "index": 1, + "body": { + "#": 1315 + }, + "isInternal": false + }, + { + "x": 42.004, + "y": 284.172, + "index": 2, + "body": { + "#": 1315 + }, + "isInternal": false + }, + { + "x": 36.841, + "y": 286.31, + "index": 3, + "body": { + "#": 1315 + }, + "isInternal": false + }, + { + "x": 31.253, + "y": 286.31, + "index": 4, + "body": { + "#": 1315 + }, + "isInternal": false + }, + { + "x": 26.09, + "y": 284.172, + "index": 5, + "body": { + "#": 1315 + }, + "isInternal": false + }, + { + "x": 22.138, + "y": 280.22, + "index": 6, + "body": { + "#": 1315 + }, + "isInternal": false + }, + { + "x": 20, + "y": 275.057, + "index": 7, + "body": { + "#": 1315 + }, + "isInternal": false + }, + { + "x": 20, + "y": 269.469, + "index": 8, + "body": { + "#": 1315 + }, + "isInternal": false + }, + { + "x": 22.138, + "y": 264.306, + "index": 9, + "body": { + "#": 1315 + }, + "isInternal": false + }, + { + "x": 26.09, + "y": 260.354, + "index": 10, + "body": { + "#": 1315 + }, + "isInternal": false + }, + { + "x": 31.253, + "y": 258.216, + "index": 11, + "body": { + "#": 1315 + }, + "isInternal": false + }, + { + "x": 36.841, + "y": 258.216, + "index": 12, + "body": { + "#": 1315 + }, + "isInternal": false + }, + { + "x": 42.004, + "y": 260.354, + "index": 13, + "body": { + "#": 1315 + }, + "isInternal": false + }, + { + "x": 45.956, + "y": 264.306, + "index": 14, + "body": { + "#": 1315 + }, + "isInternal": false + }, + { + "x": 48.094, + "y": 269.469, + "index": 15, + "body": { + "#": 1315 + }, + "isInternal": false + }, + { + "x": 34.047, + "y": 272.263 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1341 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1343 + }, + "max": { + "#": 1344 + } + }, + { + "x": 20, + "y": 258.216 + }, + { + "x": 48.094, + "y": 286.31 + }, + { + "x": 34.047, + "y": 272.263 + }, + [ + { + "#": 1347 + }, + { + "#": 1348 + }, + { + "#": 1349 + }, + { + "#": 1350 + }, + { + "#": 1351 + }, + { + "#": 1352 + }, + { + "#": 1353 + }, + { + "#": 1354 + } + ], + { + "x": -0.92392, + "y": -0.38259 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38259, + "y": -0.92392 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38259, + "y": -0.92392 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92392, + "y": -0.38259 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 36, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1356 + }, + "angle": 0, + "vertices": { + "#": 1357 + }, + "position": { + "#": 1372 + }, + "force": { + "#": 1373 + }, + "torque": 0, + "positionImpulse": { + "#": 1374 + }, + "constraintImpulse": { + "#": 1375 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1376 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1377 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1378 + }, + "circleRadius": 13.29437, + "bounds": { + "#": 1380 + }, + "positionPrev": { + "#": 1383 + }, + "anglePrev": 0, + "axes": { + "#": 1384 + }, + "area": 536.79017, + "mass": 0.53679, + "inverseMass": 1.86293, + "inertia": 183.48033, + "inverseInertia": 0.00545, + "parent": { + "#": 1355 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1355 + } + ], + [ + { + "#": 1358 + }, + { + "#": 1359 + }, + { + "#": 1360 + }, + { + "#": 1361 + }, + { + "#": 1362 + }, + { + "#": 1363 + }, + { + "#": 1364 + }, + { + "#": 1365 + }, + { + "#": 1366 + }, + { + "#": 1367 + }, + { + "#": 1368 + }, + { + "#": 1369 + }, + { + "#": 1370 + }, + { + "#": 1371 + } + ], + { + "x": 94.016, + "y": 274.468, + "index": 0, + "body": { + "#": 1355 + }, + "isInternal": false + }, + { + "x": 91.449, + "y": 279.799, + "index": 1, + "body": { + "#": 1355 + }, + "isInternal": false + }, + { + "x": 86.823, + "y": 283.488, + "index": 2, + "body": { + "#": 1355 + }, + "isInternal": false + }, + { + "x": 81.055, + "y": 284.804, + "index": 3, + "body": { + "#": 1355 + }, + "isInternal": false + }, + { + "x": 75.287, + "y": 283.488, + "index": 4, + "body": { + "#": 1355 + }, + "isInternal": false + }, + { + "x": 70.661, + "y": 279.799, + "index": 5, + "body": { + "#": 1355 + }, + "isInternal": false + }, + { + "x": 68.094, + "y": 274.468, + "index": 6, + "body": { + "#": 1355 + }, + "isInternal": false + }, + { + "x": 68.094, + "y": 268.552, + "index": 7, + "body": { + "#": 1355 + }, + "isInternal": false + }, + { + "x": 70.661, + "y": 263.221, + "index": 8, + "body": { + "#": 1355 + }, + "isInternal": false + }, + { + "x": 75.287, + "y": 259.532, + "index": 9, + "body": { + "#": 1355 + }, + "isInternal": false + }, + { + "x": 81.055, + "y": 258.216, + "index": 10, + "body": { + "#": 1355 + }, + "isInternal": false + }, + { + "x": 86.823, + "y": 259.532, + "index": 11, + "body": { + "#": 1355 + }, + "isInternal": false + }, + { + "x": 91.449, + "y": 263.221, + "index": 12, + "body": { + "#": 1355 + }, + "isInternal": false + }, + { + "x": 94.016, + "y": 268.552, + "index": 13, + "body": { + "#": 1355 + }, + "isInternal": false + }, + { + "x": 81.055, + "y": 271.51 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1379 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1381 + }, + "max": { + "#": 1382 + } + }, + { + "x": 68.094, + "y": 258.216 + }, + { + "x": 94.016, + "y": 284.804 + }, + { + "x": 81.055, + "y": 271.51 + }, + [ + { + "#": 1385 + }, + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + }, + { + "#": 1389 + }, + { + "#": 1390 + }, + { + "#": 1391 + } + ], + { + "x": -0.90099, + "y": -0.43385 + }, + { + "x": -0.62348, + "y": -0.78184 + }, + { + "x": -0.22244, + "y": -0.97495 + }, + { + "x": 0.22244, + "y": -0.97495 + }, + { + "x": 0.62348, + "y": -0.78184 + }, + { + "x": 0.90099, + "y": -0.43385 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 37, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1393 + }, + "angle": 0, + "vertices": { + "#": 1394 + }, + "position": { + "#": 1409 + }, + "force": { + "#": 1410 + }, + "torque": 0, + "positionImpulse": { + "#": 1411 + }, + "constraintImpulse": { + "#": 1412 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1413 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1414 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1415 + }, + "circleRadius": 12.00896, + "bounds": { + "#": 1417 + }, + "positionPrev": { + "#": 1420 + }, + "anglePrev": 0, + "axes": { + "#": 1421 + }, + "area": 438.00553, + "mass": 0.43801, + "inverseMass": 2.28308, + "inertia": 122.16297, + "inverseInertia": 0.00819, + "parent": { + "#": 1392 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1392 + } + ], + [ + { + "#": 1395 + }, + { + "#": 1396 + }, + { + "#": 1397 + }, + { + "#": 1398 + }, + { + "#": 1399 + }, + { + "#": 1400 + }, + { + "#": 1401 + }, + { + "#": 1402 + }, + { + "#": 1403 + }, + { + "#": 1404 + }, + { + "#": 1405 + }, + { + "#": 1406 + }, + { + "#": 1407 + }, + { + "#": 1408 + } + ], + { + "x": 137.432, + "y": 272.897, + "index": 0, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 135.113, + "y": 277.712, + "index": 1, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 130.934, + "y": 281.045, + "index": 2, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 125.724, + "y": 282.234, + "index": 3, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 120.514, + "y": 281.045, + "index": 4, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 116.335, + "y": 277.712, + "index": 5, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 114.016, + "y": 272.897, + "index": 6, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 114.016, + "y": 267.553, + "index": 7, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 116.335, + "y": 262.738, + "index": 8, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 120.514, + "y": 259.405, + "index": 9, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 125.724, + "y": 258.216, + "index": 10, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 130.934, + "y": 259.405, + "index": 11, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 135.113, + "y": 262.738, + "index": 12, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 137.432, + "y": 267.553, + "index": 13, + "body": { + "#": 1392 + }, + "isInternal": false + }, + { + "x": 125.724, + "y": 270.225 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1416 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1418 + }, + "max": { + "#": 1419 + } + }, + { + "x": 114.016, + "y": 258.216 + }, + { + "x": 137.432, + "y": 282.234 + }, + { + "x": 125.724, + "y": 270.225 + }, + [ + { + "#": 1422 + }, + { + "#": 1423 + }, + { + "#": 1424 + }, + { + "#": 1425 + }, + { + "#": 1426 + }, + { + "#": 1427 + }, + { + "#": 1428 + } + ], + { + "x": -0.90095, + "y": -0.43392 + }, + { + "x": -0.62353, + "y": -0.7818 + }, + { + "x": -0.22249, + "y": -0.97493 + }, + { + "x": 0.22249, + "y": -0.97493 + }, + { + "x": 0.62353, + "y": -0.7818 + }, + { + "x": 0.90095, + "y": -0.43392 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 38, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1430 + }, + "angle": 0, + "vertices": { + "#": 1431 + }, + "position": { + "#": 1450 + }, + "force": { + "#": 1451 + }, + "torque": 0, + "positionImpulse": { + "#": 1452 + }, + "constraintImpulse": { + "#": 1453 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1454 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1455 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1456 + }, + "circleRadius": 16.14536, + "bounds": { + "#": 1458 + }, + "positionPrev": { + "#": 1461 + }, + "anglePrev": 0, + "axes": { + "#": 1462 + }, + "area": 802.39633, + "mass": 0.8024, + "inverseMass": 1.24627, + "inertia": 409.91549, + "inverseInertia": 0.00244, + "parent": { + "#": 1429 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1429 + } + ], + [ + { + "#": 1432 + }, + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + }, + { + "#": 1438 + }, + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + }, + { + "#": 1442 + }, + { + "#": 1443 + }, + { + "#": 1444 + }, + { + "#": 1445 + }, + { + "#": 1446 + }, + { + "#": 1447 + }, + { + "#": 1448 + }, + { + "#": 1449 + } + ], + { + "x": 189.232, + "y": 277.165, + "index": 0, + "body": { + "#": 1429 + }, + "isInternal": false + }, + { + "x": 187.314, + "y": 282.434, + "index": 1, + "body": { + "#": 1429 + }, + "isInternal": false + }, + { + "x": 183.71, + "y": 286.729, + "index": 2, + "body": { + "#": 1429 + }, + "isInternal": false + }, + { + "x": 178.854, + "y": 289.533, + "index": 3, + "body": { + "#": 1429 + }, + "isInternal": false + }, + { + "x": 173.332, + "y": 290.506, + "index": 4, + "body": { + "#": 1429 + }, + "isInternal": false + }, + { + "x": 167.81, + "y": 289.533, + "index": 5, + "body": { + "#": 1429 + }, + "isInternal": false + }, + { + "x": 162.954, + "y": 286.729, + "index": 6, + "body": { + "#": 1429 + }, + "isInternal": false + }, + { + "x": 159.35, + "y": 282.434, + "index": 7, + "body": { + "#": 1429 + }, + "isInternal": false + }, + { + "x": 157.432, + "y": 277.165, + "index": 8, + "body": { + "#": 1429 + }, + "isInternal": false + }, + { + "x": 157.432, + "y": 271.557, + "index": 9, + "body": { + "#": 1429 + }, + "isInternal": false + }, + { + "x": 159.35, + "y": 266.288, + "index": 10, + "body": { + "#": 1429 + }, + "isInternal": false + }, + { + "x": 162.954, + "y": 261.993, + "index": 11, + "body": { + "#": 1429 + }, + "isInternal": false + }, + { + "x": 167.81, + "y": 259.189, + "index": 12, + "body": { + "#": 1429 + }, + "isInternal": false + }, + { + "x": 173.332, + "y": 258.216, + "index": 13, + "body": { + "#": 1429 + }, + "isInternal": false + }, + { + "x": 178.854, + "y": 259.189, + "index": 14, + "body": { + "#": 1429 + }, + "isInternal": false + }, + { + "x": 183.71, + "y": 261.993, + "index": 15, + "body": { + "#": 1429 + }, + "isInternal": false + }, + { + "x": 187.314, + "y": 266.288, + "index": 16, + "body": { + "#": 1429 + }, + "isInternal": false + }, + { + "x": 189.232, + "y": 271.557, + "index": 17, + "body": { + "#": 1429 + }, + "isInternal": false + }, + { + "x": 173.332, + "y": 274.361 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1457 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1459 + }, + "max": { + "#": 1460 + } + }, + { + "x": 157.432, + "y": 258.216 + }, + { + "x": 189.232, + "y": 290.506 + }, + { + "x": 173.332, + "y": 274.361 + }, + [ + { + "#": 1463 + }, + { + "#": 1464 + }, + { + "#": 1465 + }, + { + "#": 1466 + }, + { + "#": 1467 + }, + { + "#": 1468 + }, + { + "#": 1469 + }, + { + "#": 1470 + }, + { + "#": 1471 + } + ], + { + "x": -0.93968, + "y": -0.34206 + }, + { + "x": -0.76604, + "y": -0.64279 + }, + { + "x": -0.50005, + "y": -0.866 + }, + { + "x": -0.17353, + "y": -0.98483 + }, + { + "x": 0.17353, + "y": -0.98483 + }, + { + "x": 0.50005, + "y": -0.866 + }, + { + "x": 0.76604, + "y": -0.64279 + }, + { + "x": 0.93968, + "y": -0.34206 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 39, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1473 + }, + "angle": 0, + "vertices": { + "#": 1474 + }, + "position": { + "#": 1495 + }, + "force": { + "#": 1496 + }, + "torque": 0, + "positionImpulse": { + "#": 1497 + }, + "constraintImpulse": { + "#": 1498 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1499 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1500 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1501 + }, + "circleRadius": 18.78999, + "bounds": { + "#": 1503 + }, + "positionPrev": { + "#": 1506 + }, + "anglePrev": 0, + "axes": { + "#": 1507 + }, + "area": 1091.04511, + "mass": 1.09105, + "inverseMass": 0.91655, + "inertia": 757.86058, + "inverseInertia": 0.00132, + "parent": { + "#": 1472 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1472 + } + ], + [ + { + "#": 1475 + }, + { + "#": 1476 + }, + { + "#": 1477 + }, + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + }, + { + "#": 1481 + }, + { + "#": 1482 + }, + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + }, + { + "#": 1487 + }, + { + "#": 1488 + }, + { + "#": 1489 + }, + { + "#": 1490 + }, + { + "#": 1491 + }, + { + "#": 1492 + }, + { + "#": 1493 + }, + { + "#": 1494 + } + ], + { + "x": 246.35, + "y": 279.714, + "index": 0, + "body": { + "#": 1472 + }, + "isInternal": false + }, + { + "x": 244.533, + "y": 285.305, + "index": 1, + "body": { + "#": 1472 + }, + "isInternal": false + }, + { + "x": 241.078, + "y": 290.062, + "index": 2, + "body": { + "#": 1472 + }, + "isInternal": false + }, + { + "x": 236.321, + "y": 293.517, + "index": 3, + "body": { + "#": 1472 + }, + "isInternal": false + }, + { + "x": 230.73, + "y": 295.334, + "index": 4, + "body": { + "#": 1472 + }, + "isInternal": false + }, + { + "x": 224.852, + "y": 295.334, + "index": 5, + "body": { + "#": 1472 + }, + "isInternal": false + }, + { + "x": 219.261, + "y": 293.517, + "index": 6, + "body": { + "#": 1472 + }, + "isInternal": false + }, + { + "x": 214.504, + "y": 290.062, + "index": 7, + "body": { + "#": 1472 + }, + "isInternal": false + }, + { + "x": 211.049, + "y": 285.305, + "index": 8, + "body": { + "#": 1472 + }, + "isInternal": false + }, + { + "x": 209.232, + "y": 279.714, + "index": 9, + "body": { + "#": 1472 + }, + "isInternal": false + }, + { + "x": 209.232, + "y": 273.836, + "index": 10, + "body": { + "#": 1472 + }, + "isInternal": false + }, + { + "x": 211.049, + "y": 268.245, + "index": 11, + "body": { + "#": 1472 + }, + "isInternal": false + }, + { + "x": 214.504, + "y": 263.488, + "index": 12, + "body": { + "#": 1472 + }, + "isInternal": false + }, + { + "x": 219.261, + "y": 260.033, + "index": 13, + "body": { + "#": 1472 + }, + "isInternal": false + }, + { + "x": 224.852, + "y": 258.216, + "index": 14, + "body": { + "#": 1472 + }, + "isInternal": false + }, + { + "x": 230.73, + "y": 258.216, + "index": 15, + "body": { + "#": 1472 + }, + "isInternal": false + }, + { + "x": 236.321, + "y": 260.033, + "index": 16, + "body": { + "#": 1472 + }, + "isInternal": false + }, + { + "x": 241.078, + "y": 263.488, + "index": 17, + "body": { + "#": 1472 + }, + "isInternal": false + }, + { + "x": 244.533, + "y": 268.245, + "index": 18, + "body": { + "#": 1472 + }, + "isInternal": false + }, + { + "x": 246.35, + "y": 273.836, + "index": 19, + "body": { + "#": 1472 + }, + "isInternal": false + }, + { + "x": 227.791, + "y": 276.775 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1502 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1504 + }, + "max": { + "#": 1505 + } + }, + { + "x": 209.232, + "y": 258.216 + }, + { + "x": 246.35, + "y": 295.334 + }, + { + "x": 227.791, + "y": 276.775 + }, + [ + { + "#": 1508 + }, + { + "#": 1509 + }, + { + "#": 1510 + }, + { + "#": 1511 + }, + { + "#": 1512 + }, + { + "#": 1513 + }, + { + "#": 1514 + }, + { + "#": 1515 + }, + { + "#": 1516 + }, + { + "#": 1517 + } + ], + { + "x": -0.95104, + "y": -0.30907 + }, + { + "x": -0.80911, + "y": -0.58766 + }, + { + "x": -0.58766, + "y": -0.80911 + }, + { + "x": -0.30907, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30907, + "y": -0.95104 + }, + { + "x": 0.58766, + "y": -0.80911 + }, + { + "x": 0.80911, + "y": -0.58766 + }, + { + "x": 0.95104, + "y": -0.30907 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 40, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1519 + }, + "angle": 0, + "vertices": { + "#": 1520 + }, + "position": { + "#": 1537 + }, + "force": { + "#": 1538 + }, + "torque": 0, + "positionImpulse": { + "#": 1539 + }, + "constraintImpulse": { + "#": 1540 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1541 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1542 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1543 + }, + "circleRadius": 14.88113, + "bounds": { + "#": 1545 + }, + "positionPrev": { + "#": 1548 + }, + "anglePrev": 0, + "axes": { + "#": 1549 + }, + "area": 677.95031, + "mass": 0.67795, + "inverseMass": 1.47503, + "inertia": 292.64041, + "inverseInertia": 0.00342, + "parent": { + "#": 1518 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1518 + } + ], + [ + { + "#": 1521 + }, + { + "#": 1522 + }, + { + "#": 1523 + }, + { + "#": 1524 + }, + { + "#": 1525 + }, + { + "#": 1526 + }, + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + }, + { + "#": 1533 + }, + { + "#": 1534 + }, + { + "#": 1535 + }, + { + "#": 1536 + } + ], + { + "x": 295.54, + "y": 275.714, + "index": 0, + "body": { + "#": 1518 + }, + "isInternal": false + }, + { + "x": 293.318, + "y": 281.079, + "index": 1, + "body": { + "#": 1518 + }, + "isInternal": false + }, + { + "x": 289.213, + "y": 285.184, + "index": 2, + "body": { + "#": 1518 + }, + "isInternal": false + }, + { + "x": 283.848, + "y": 287.406, + "index": 3, + "body": { + "#": 1518 + }, + "isInternal": false + }, + { + "x": 278.042, + "y": 287.406, + "index": 4, + "body": { + "#": 1518 + }, + "isInternal": false + }, + { + "x": 272.677, + "y": 285.184, + "index": 5, + "body": { + "#": 1518 + }, + "isInternal": false + }, + { + "x": 268.572, + "y": 281.079, + "index": 6, + "body": { + "#": 1518 + }, + "isInternal": false + }, + { + "x": 266.35, + "y": 275.714, + "index": 7, + "body": { + "#": 1518 + }, + "isInternal": false + }, + { + "x": 266.35, + "y": 269.908, + "index": 8, + "body": { + "#": 1518 + }, + "isInternal": false + }, + { + "x": 268.572, + "y": 264.543, + "index": 9, + "body": { + "#": 1518 + }, + "isInternal": false + }, + { + "x": 272.677, + "y": 260.438, + "index": 10, + "body": { + "#": 1518 + }, + "isInternal": false + }, + { + "x": 278.042, + "y": 258.216, + "index": 11, + "body": { + "#": 1518 + }, + "isInternal": false + }, + { + "x": 283.848, + "y": 258.216, + "index": 12, + "body": { + "#": 1518 + }, + "isInternal": false + }, + { + "x": 289.213, + "y": 260.438, + "index": 13, + "body": { + "#": 1518 + }, + "isInternal": false + }, + { + "x": 293.318, + "y": 264.543, + "index": 14, + "body": { + "#": 1518 + }, + "isInternal": false + }, + { + "x": 295.54, + "y": 269.908, + "index": 15, + "body": { + "#": 1518 + }, + "isInternal": false + }, + { + "x": 280.945, + "y": 272.811 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1544 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1546 + }, + "max": { + "#": 1547 + } + }, + { + "x": 266.35, + "y": 258.216 + }, + { + "x": 295.54, + "y": 287.406 + }, + { + "x": 280.945, + "y": 272.811 + }, + [ + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + }, + { + "#": 1553 + }, + { + "#": 1554 + }, + { + "#": 1555 + }, + { + "#": 1556 + }, + { + "#": 1557 + } + ], + { + "x": -0.9239, + "y": -0.38265 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38265, + "y": -0.9239 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38265, + "y": -0.9239 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.9239, + "y": -0.38265 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 41, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1559 + }, + "angle": 0, + "vertices": { + "#": 1560 + }, + "position": { + "#": 1575 + }, + "force": { + "#": 1576 + }, + "torque": 0, + "positionImpulse": { + "#": 1577 + }, + "constraintImpulse": { + "#": 1578 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1579 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1580 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1581 + }, + "circleRadius": 12.32, + "bounds": { + "#": 1583 + }, + "positionPrev": { + "#": 1586 + }, + "anglePrev": 0, + "axes": { + "#": 1587 + }, + "area": 460.97597, + "mass": 0.46098, + "inverseMass": 2.16931, + "inertia": 135.3122, + "inverseInertia": 0.00739, + "parent": { + "#": 1558 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1558 + } + ], + [ + { + "#": 1561 + }, + { + "#": 1562 + }, + { + "#": 1563 + }, + { + "#": 1564 + }, + { + "#": 1565 + }, + { + "#": 1566 + }, + { + "#": 1567 + }, + { + "#": 1568 + }, + { + "#": 1569 + }, + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + } + ], + { + "x": 339.562, + "y": 273.277, + "index": 0, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 337.183, + "y": 278.217, + "index": 1, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 332.896, + "y": 281.636, + "index": 2, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 327.551, + "y": 282.856, + "index": 3, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 322.206, + "y": 281.636, + "index": 4, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 317.919, + "y": 278.217, + "index": 5, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 315.54, + "y": 273.277, + "index": 6, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 315.54, + "y": 267.795, + "index": 7, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 317.919, + "y": 262.855, + "index": 8, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 322.206, + "y": 259.436, + "index": 9, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 327.551, + "y": 258.216, + "index": 10, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 332.896, + "y": 259.436, + "index": 11, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 337.183, + "y": 262.855, + "index": 12, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 339.562, + "y": 267.795, + "index": 13, + "body": { + "#": 1558 + }, + "isInternal": false + }, + { + "x": 327.551, + "y": 270.536 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1582 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1584 + }, + "max": { + "#": 1585 + } + }, + { + "x": 315.54, + "y": 258.216 + }, + { + "x": 339.562, + "y": 282.856 + }, + { + "x": 327.551, + "y": 270.536 + }, + [ + { + "#": 1588 + }, + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + }, + { + "#": 1592 + }, + { + "#": 1593 + }, + { + "#": 1594 + } + ], + { + "x": -0.90097, + "y": -0.43389 + }, + { + "x": -0.62352, + "y": -0.78181 + }, + { + "x": -0.22253, + "y": -0.97493 + }, + { + "x": 0.22253, + "y": -0.97493 + }, + { + "x": 0.62352, + "y": -0.78181 + }, + { + "x": 0.90097, + "y": -0.43389 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 42, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1596 + }, + "angle": 0, + "vertices": { + "#": 1597 + }, + "position": { + "#": 1618 + }, + "force": { + "#": 1619 + }, + "torque": 0, + "positionImpulse": { + "#": 1620 + }, + "constraintImpulse": { + "#": 1621 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1622 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1623 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1624 + }, + "circleRadius": 19.74859, + "bounds": { + "#": 1626 + }, + "positionPrev": { + "#": 1629 + }, + "anglePrev": 0, + "axes": { + "#": 1630 + }, + "area": 1205.1522, + "mass": 1.20515, + "inverseMass": 0.82977, + "inertia": 924.67199, + "inverseInertia": 0.00108, + "parent": { + "#": 1595 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1595 + } + ], + [ + { + "#": 1598 + }, + { + "#": 1599 + }, + { + "#": 1600 + }, + { + "#": 1601 + }, + { + "#": 1602 + }, + { + "#": 1603 + }, + { + "#": 1604 + }, + { + "#": 1605 + }, + { + "#": 1606 + }, + { + "#": 1607 + }, + { + "#": 1608 + }, + { + "#": 1609 + }, + { + "#": 1610 + }, + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + }, + { + "#": 1614 + }, + { + "#": 1615 + }, + { + "#": 1616 + }, + { + "#": 1617 + } + ], + { + "x": 398.572, + "y": 280.81, + "index": 0, + "body": { + "#": 1595 + }, + "isInternal": false + }, + { + "x": 396.663, + "y": 286.687, + "index": 1, + "body": { + "#": 1595 + }, + "isInternal": false + }, + { + "x": 393.031, + "y": 291.685, + "index": 2, + "body": { + "#": 1595 + }, + "isInternal": false + }, + { + "x": 388.033, + "y": 295.317, + "index": 3, + "body": { + "#": 1595 + }, + "isInternal": false + }, + { + "x": 382.156, + "y": 297.226, + "index": 4, + "body": { + "#": 1595 + }, + "isInternal": false + }, + { + "x": 375.978, + "y": 297.226, + "index": 5, + "body": { + "#": 1595 + }, + "isInternal": false + }, + { + "x": 370.101, + "y": 295.317, + "index": 6, + "body": { + "#": 1595 + }, + "isInternal": false + }, + { + "x": 365.103, + "y": 291.685, + "index": 7, + "body": { + "#": 1595 + }, + "isInternal": false + }, + { + "x": 361.471, + "y": 286.687, + "index": 8, + "body": { + "#": 1595 + }, + "isInternal": false + }, + { + "x": 359.562, + "y": 280.81, + "index": 9, + "body": { + "#": 1595 + }, + "isInternal": false + }, + { + "x": 359.562, + "y": 274.632, + "index": 10, + "body": { + "#": 1595 + }, + "isInternal": false + }, + { + "x": 361.471, + "y": 268.755, + "index": 11, + "body": { + "#": 1595 + }, + "isInternal": false + }, + { + "x": 365.103, + "y": 263.757, + "index": 12, + "body": { + "#": 1595 + }, + "isInternal": false + }, + { + "x": 370.101, + "y": 260.125, + "index": 13, + "body": { + "#": 1595 + }, + "isInternal": false + }, + { + "x": 375.978, + "y": 258.216, + "index": 14, + "body": { + "#": 1595 + }, + "isInternal": false + }, + { + "x": 382.156, + "y": 258.216, + "index": 15, + "body": { + "#": 1595 + }, + "isInternal": false + }, + { + "x": 388.033, + "y": 260.125, + "index": 16, + "body": { + "#": 1595 + }, + "isInternal": false + }, + { + "x": 393.031, + "y": 263.757, + "index": 17, + "body": { + "#": 1595 + }, + "isInternal": false + }, + { + "x": 396.663, + "y": 268.755, + "index": 18, + "body": { + "#": 1595 + }, + "isInternal": false + }, + { + "x": 398.572, + "y": 274.632, + "index": 19, + "body": { + "#": 1595 + }, + "isInternal": false + }, + { + "x": 379.067, + "y": 277.721 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1625 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1627 + }, + "max": { + "#": 1628 + } + }, + { + "x": 359.562, + "y": 258.216 + }, + { + "x": 398.572, + "y": 297.226 + }, + { + "x": 379.067, + "y": 277.721 + }, + [ + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + }, + { + "#": 1635 + }, + { + "#": 1636 + }, + { + "#": 1637 + }, + { + "#": 1638 + }, + { + "#": 1639 + }, + { + "#": 1640 + } + ], + { + "x": -0.95108, + "y": -0.30894 + }, + { + "x": -0.80896, + "y": -0.58786 + }, + { + "x": -0.58786, + "y": -0.80896 + }, + { + "x": -0.30894, + "y": -0.95108 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30894, + "y": -0.95108 + }, + { + "x": 0.58786, + "y": -0.80896 + }, + { + "x": 0.80896, + "y": -0.58786 + }, + { + "x": 0.95108, + "y": -0.30894 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 43, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1642 + }, + "angle": 0, + "vertices": { + "#": 1643 + }, + "position": { + "#": 1656 + }, + "force": { + "#": 1657 + }, + "torque": 0, + "positionImpulse": { + "#": 1658 + }, + "constraintImpulse": { + "#": 1659 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1660 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1661 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1662 + }, + "circleRadius": 10.99404, + "bounds": { + "#": 1664 + }, + "positionPrev": { + "#": 1667 + }, + "anglePrev": 0, + "axes": { + "#": 1668 + }, + "area": 362.58452, + "mass": 0.36258, + "inverseMass": 2.75798, + "inertia": 83.73096, + "inverseInertia": 0.01194, + "parent": { + "#": 1641 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1641 + } + ], + [ + { + "#": 1644 + }, + { + "#": 1645 + }, + { + "#": 1646 + }, + { + "#": 1647 + }, + { + "#": 1648 + }, + { + "#": 1649 + }, + { + "#": 1650 + }, + { + "#": 1651 + }, + { + "#": 1652 + }, + { + "#": 1653 + }, + { + "#": 1654 + }, + { + "#": 1655 + } + ], + { + "x": 439.81, + "y": 271.68, + "index": 0, + "body": { + "#": 1641 + }, + "isInternal": false + }, + { + "x": 436.965, + "y": 276.609, + "index": 1, + "body": { + "#": 1641 + }, + "isInternal": false + }, + { + "x": 432.036, + "y": 279.454, + "index": 2, + "body": { + "#": 1641 + }, + "isInternal": false + }, + { + "x": 426.346, + "y": 279.454, + "index": 3, + "body": { + "#": 1641 + }, + "isInternal": false + }, + { + "x": 421.417, + "y": 276.609, + "index": 4, + "body": { + "#": 1641 + }, + "isInternal": false + }, + { + "x": 418.572, + "y": 271.68, + "index": 5, + "body": { + "#": 1641 + }, + "isInternal": false + }, + { + "x": 418.572, + "y": 265.99, + "index": 6, + "body": { + "#": 1641 + }, + "isInternal": false + }, + { + "x": 421.417, + "y": 261.061, + "index": 7, + "body": { + "#": 1641 + }, + "isInternal": false + }, + { + "x": 426.346, + "y": 258.216, + "index": 8, + "body": { + "#": 1641 + }, + "isInternal": false + }, + { + "x": 432.036, + "y": 258.216, + "index": 9, + "body": { + "#": 1641 + }, + "isInternal": false + }, + { + "x": 436.965, + "y": 261.061, + "index": 10, + "body": { + "#": 1641 + }, + "isInternal": false + }, + { + "x": 439.81, + "y": 265.99, + "index": 11, + "body": { + "#": 1641 + }, + "isInternal": false + }, + { + "x": 429.191, + "y": 268.835 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1663 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1665 + }, + "max": { + "#": 1666 + } + }, + { + "x": 418.572, + "y": 258.216 + }, + { + "x": 439.81, + "y": 279.454 + }, + { + "x": 429.191, + "y": 268.835 + }, + [ + { + "#": 1669 + }, + { + "#": 1670 + }, + { + "#": 1671 + }, + { + "#": 1672 + }, + { + "#": 1673 + }, + { + "#": 1674 + } + ], + { + "x": -0.86608, + "y": -0.4999 + }, + { + "x": -0.4999, + "y": -0.86608 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.4999, + "y": -0.86608 + }, + { + "x": 0.86608, + "y": -0.4999 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 44, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1676 + }, + "angle": 0, + "vertices": { + "#": 1677 + }, + "position": { + "#": 1696 + }, + "force": { + "#": 1697 + }, + "torque": 0, + "positionImpulse": { + "#": 1698 + }, + "constraintImpulse": { + "#": 1699 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1700 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1701 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1702 + }, + "circleRadius": 16.17983, + "bounds": { + "#": 1704 + }, + "positionPrev": { + "#": 1707 + }, + "anglePrev": 0, + "axes": { + "#": 1708 + }, + "area": 805.81786, + "mass": 0.80582, + "inverseMass": 1.24098, + "inertia": 413.41883, + "inverseInertia": 0.00242, + "parent": { + "#": 1675 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1675 + } + ], + [ + { + "#": 1678 + }, + { + "#": 1679 + }, + { + "#": 1680 + }, + { + "#": 1681 + }, + { + "#": 1682 + }, + { + "#": 1683 + }, + { + "#": 1684 + }, + { + "#": 1685 + }, + { + "#": 1686 + }, + { + "#": 1687 + }, + { + "#": 1688 + }, + { + "#": 1689 + }, + { + "#": 1690 + }, + { + "#": 1691 + }, + { + "#": 1692 + }, + { + "#": 1693 + }, + { + "#": 1694 + }, + { + "#": 1695 + } + ], + { + "x": 491.678, + "y": 277.206, + "index": 0, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 489.756, + "y": 282.486, + "index": 1, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 486.144, + "y": 286.79, + "index": 2, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 481.278, + "y": 289.6, + "index": 3, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 475.744, + "y": 290.576, + "index": 4, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 470.21, + "y": 289.6, + "index": 5, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 465.344, + "y": 286.79, + "index": 6, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 461.732, + "y": 282.486, + "index": 7, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 459.81, + "y": 277.206, + "index": 8, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 459.81, + "y": 271.586, + "index": 9, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 461.732, + "y": 266.306, + "index": 10, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 465.344, + "y": 262.002, + "index": 11, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 470.21, + "y": 259.192, + "index": 12, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 475.744, + "y": 258.216, + "index": 13, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 481.278, + "y": 259.192, + "index": 14, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 486.144, + "y": 262.002, + "index": 15, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 489.756, + "y": 266.306, + "index": 16, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 491.678, + "y": 271.586, + "index": 17, + "body": { + "#": 1675 + }, + "isInternal": false + }, + { + "x": 475.744, + "y": 274.396 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1703 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1705 + }, + "max": { + "#": 1706 + } + }, + { + "x": 459.81, + "y": 258.216 + }, + { + "x": 491.678, + "y": 290.576 + }, + { + "x": 475.744, + "y": 274.396 + }, + [ + { + "#": 1709 + }, + { + "#": 1710 + }, + { + "#": 1711 + }, + { + "#": 1712 + }, + { + "#": 1713 + }, + { + "#": 1714 + }, + { + "#": 1715 + }, + { + "#": 1716 + }, + { + "#": 1717 + } + ], + { + "x": -0.93968, + "y": -0.34206 + }, + { + "x": -0.766, + "y": -0.64284 + }, + { + "x": -0.50008, + "y": -0.86598 + }, + { + "x": -0.17368, + "y": -0.9848 + }, + { + "x": 0.17368, + "y": -0.9848 + }, + { + "x": 0.50008, + "y": -0.86598 + }, + { + "x": 0.766, + "y": -0.64284 + }, + { + "x": 0.93968, + "y": -0.34206 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 45, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1719 + }, + "angle": 0, + "vertices": { + "#": 1720 + }, + "position": { + "#": 1741 + }, + "force": { + "#": 1742 + }, + "torque": 0, + "positionImpulse": { + "#": 1743 + }, + "constraintImpulse": { + "#": 1744 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1745 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1746 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1747 + }, + "circleRadius": 19.50347, + "bounds": { + "#": 1749 + }, + "positionPrev": { + "#": 1752 + }, + "anglePrev": 0, + "axes": { + "#": 1753 + }, + "area": 1175.44088, + "mass": 1.17544, + "inverseMass": 0.85074, + "inertia": 879.64105, + "inverseInertia": 0.00114, + "parent": { + "#": 1718 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1718 + } + ], + [ + { + "#": 1721 + }, + { + "#": 1722 + }, + { + "#": 1723 + }, + { + "#": 1724 + }, + { + "#": 1725 + }, + { + "#": 1726 + }, + { + "#": 1727 + }, + { + "#": 1728 + }, + { + "#": 1729 + }, + { + "#": 1730 + }, + { + "#": 1731 + }, + { + "#": 1732 + }, + { + "#": 1733 + }, + { + "#": 1734 + }, + { + "#": 1735 + }, + { + "#": 1736 + }, + { + "#": 1737 + }, + { + "#": 1738 + }, + { + "#": 1739 + }, + { + "#": 1740 + } + ], + { + "x": 550.204, + "y": 280.53, + "index": 0, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 548.319, + "y": 286.333, + "index": 1, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 544.732, + "y": 291.27, + "index": 2, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 539.795, + "y": 294.857, + "index": 3, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 533.992, + "y": 296.742, + "index": 4, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 527.89, + "y": 296.742, + "index": 5, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 522.087, + "y": 294.857, + "index": 6, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 517.15, + "y": 291.27, + "index": 7, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 513.563, + "y": 286.333, + "index": 8, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 511.678, + "y": 280.53, + "index": 9, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 511.678, + "y": 274.428, + "index": 10, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 513.563, + "y": 268.625, + "index": 11, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 517.15, + "y": 263.688, + "index": 12, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 522.087, + "y": 260.101, + "index": 13, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 527.89, + "y": 258.216, + "index": 14, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 533.992, + "y": 258.216, + "index": 15, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 539.795, + "y": 260.101, + "index": 16, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 544.732, + "y": 263.688, + "index": 17, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 548.319, + "y": 268.625, + "index": 18, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 550.204, + "y": 274.428, + "index": 19, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 530.941, + "y": 277.479 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1748 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1750 + }, + "max": { + "#": 1751 + } + }, + { + "x": 511.678, + "y": 258.216 + }, + { + "x": 550.204, + "y": 296.742 + }, + { + "x": 530.941, + "y": 277.479 + }, + [ + { + "#": 1754 + }, + { + "#": 1755 + }, + { + "#": 1756 + }, + { + "#": 1757 + }, + { + "#": 1758 + }, + { + "#": 1759 + }, + { + "#": 1760 + }, + { + "#": 1761 + }, + { + "#": 1762 + }, + { + "#": 1763 + } + ], + { + "x": -0.95108, + "y": -0.30894 + }, + { + "x": -0.80901, + "y": -0.58779 + }, + { + "x": -0.58779, + "y": -0.80901 + }, + { + "x": -0.30894, + "y": -0.95108 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30894, + "y": -0.95108 + }, + { + "x": 0.58779, + "y": -0.80901 + }, + { + "x": 0.80901, + "y": -0.58779 + }, + { + "x": 0.95108, + "y": -0.30894 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 46, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1765 + }, + "angle": 0, + "vertices": { + "#": 1766 + }, + "position": { + "#": 1781 + }, + "force": { + "#": 1782 + }, + "torque": 0, + "positionImpulse": { + "#": 1783 + }, + "constraintImpulse": { + "#": 1784 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1785 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1786 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1787 + }, + "circleRadius": 13.68103, + "bounds": { + "#": 1789 + }, + "positionPrev": { + "#": 1792 + }, + "anglePrev": 0, + "axes": { + "#": 1793 + }, + "area": 568.46124, + "mass": 0.56846, + "inverseMass": 1.75913, + "inertia": 205.77003, + "inverseInertia": 0.00486, + "parent": { + "#": 1764 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1764 + } + ], + [ + { + "#": 1767 + }, + { + "#": 1768 + }, + { + "#": 1769 + }, + { + "#": 1770 + }, + { + "#": 1771 + }, + { + "#": 1772 + }, + { + "#": 1773 + }, + { + "#": 1774 + }, + { + "#": 1775 + }, + { + "#": 1776 + }, + { + "#": 1777 + }, + { + "#": 1778 + }, + { + "#": 1779 + }, + { + "#": 1780 + } + ], + { + "x": 596.88, + "y": 274.941, + "index": 0, + "body": { + "#": 1764 + }, + "isInternal": false + }, + { + "x": 594.238, + "y": 280.427, + "index": 1, + "body": { + "#": 1764 + }, + "isInternal": false + }, + { + "x": 589.478, + "y": 284.223, + "index": 2, + "body": { + "#": 1764 + }, + "isInternal": false + }, + { + "x": 583.542, + "y": 285.578, + "index": 3, + "body": { + "#": 1764 + }, + "isInternal": false + }, + { + "x": 577.606, + "y": 284.223, + "index": 4, + "body": { + "#": 1764 + }, + "isInternal": false + }, + { + "x": 572.846, + "y": 280.427, + "index": 5, + "body": { + "#": 1764 + }, + "isInternal": false + }, + { + "x": 570.204, + "y": 274.941, + "index": 6, + "body": { + "#": 1764 + }, + "isInternal": false + }, + { + "x": 570.204, + "y": 268.853, + "index": 7, + "body": { + "#": 1764 + }, + "isInternal": false + }, + { + "x": 572.846, + "y": 263.367, + "index": 8, + "body": { + "#": 1764 + }, + "isInternal": false + }, + { + "x": 577.606, + "y": 259.571, + "index": 9, + "body": { + "#": 1764 + }, + "isInternal": false + }, + { + "x": 583.542, + "y": 258.216, + "index": 10, + "body": { + "#": 1764 + }, + "isInternal": false + }, + { + "x": 589.478, + "y": 259.571, + "index": 11, + "body": { + "#": 1764 + }, + "isInternal": false + }, + { + "x": 594.238, + "y": 263.367, + "index": 12, + "body": { + "#": 1764 + }, + "isInternal": false + }, + { + "x": 596.88, + "y": 268.853, + "index": 13, + "body": { + "#": 1764 + }, + "isInternal": false + }, + { + "x": 583.542, + "y": 271.897 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1788 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1790 + }, + "max": { + "#": 1791 + } + }, + { + "x": 570.204, + "y": 258.216 + }, + { + "x": 596.88, + "y": 285.578 + }, + { + "x": 583.542, + "y": 271.897 + }, + [ + { + "#": 1794 + }, + { + "#": 1795 + }, + { + "#": 1796 + }, + { + "#": 1797 + }, + { + "#": 1798 + }, + { + "#": 1799 + }, + { + "#": 1800 + } + ], + { + "x": -0.90096, + "y": -0.43389 + }, + { + "x": -0.62349, + "y": -0.78183 + }, + { + "x": -0.22254, + "y": -0.97492 + }, + { + "x": 0.22254, + "y": -0.97492 + }, + { + "x": 0.62349, + "y": -0.78183 + }, + { + "x": 0.90096, + "y": -0.43389 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 47, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1802 + }, + "angle": 0, + "vertices": { + "#": 1803 + }, + "position": { + "#": 1816 + }, + "force": { + "#": 1817 + }, + "torque": 0, + "positionImpulse": { + "#": 1818 + }, + "constraintImpulse": { + "#": 1819 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1820 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1821 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1822 + }, + "circleRadius": 11.05817, + "bounds": { + "#": 1824 + }, + "positionPrev": { + "#": 1827 + }, + "anglePrev": 0, + "axes": { + "#": 1828 + }, + "area": 366.82313, + "mass": 0.36682, + "inverseMass": 2.72611, + "inertia": 85.70003, + "inverseInertia": 0.01167, + "parent": { + "#": 1801 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1801 + } + ], + [ + { + "#": 1804 + }, + { + "#": 1805 + }, + { + "#": 1806 + }, + { + "#": 1807 + }, + { + "#": 1808 + }, + { + "#": 1809 + }, + { + "#": 1810 + }, + { + "#": 1811 + }, + { + "#": 1812 + }, + { + "#": 1813 + }, + { + "#": 1814 + }, + { + "#": 1815 + } + ], + { + "x": 638.242, + "y": 271.759, + "index": 0, + "body": { + "#": 1801 + }, + "isInternal": false + }, + { + "x": 635.38, + "y": 276.716, + "index": 1, + "body": { + "#": 1801 + }, + "isInternal": false + }, + { + "x": 630.423, + "y": 279.578, + "index": 2, + "body": { + "#": 1801 + }, + "isInternal": false + }, + { + "x": 624.699, + "y": 279.578, + "index": 3, + "body": { + "#": 1801 + }, + "isInternal": false + }, + { + "x": 619.742, + "y": 276.716, + "index": 4, + "body": { + "#": 1801 + }, + "isInternal": false + }, + { + "x": 616.88, + "y": 271.759, + "index": 5, + "body": { + "#": 1801 + }, + "isInternal": false + }, + { + "x": 616.88, + "y": 266.035, + "index": 6, + "body": { + "#": 1801 + }, + "isInternal": false + }, + { + "x": 619.742, + "y": 261.078, + "index": 7, + "body": { + "#": 1801 + }, + "isInternal": false + }, + { + "x": 624.699, + "y": 258.216, + "index": 8, + "body": { + "#": 1801 + }, + "isInternal": false + }, + { + "x": 630.423, + "y": 258.216, + "index": 9, + "body": { + "#": 1801 + }, + "isInternal": false + }, + { + "x": 635.38, + "y": 261.078, + "index": 10, + "body": { + "#": 1801 + }, + "isInternal": false + }, + { + "x": 638.242, + "y": 266.035, + "index": 11, + "body": { + "#": 1801 + }, + "isInternal": false + }, + { + "x": 627.561, + "y": 268.897 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1823 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1825 + }, + "max": { + "#": 1826 + } + }, + { + "x": 616.88, + "y": 258.216 + }, + { + "x": 638.242, + "y": 279.578 + }, + { + "x": 627.561, + "y": 268.897 + }, + [ + { + "#": 1829 + }, + { + "#": 1830 + }, + { + "#": 1831 + }, + { + "#": 1832 + }, + { + "#": 1833 + }, + { + "#": 1834 + } + ], + { + "x": -0.86602, + "y": -0.50001 + }, + { + "x": -0.50001, + "y": -0.86602 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.50001, + "y": -0.86602 + }, + { + "x": 0.86602, + "y": -0.50001 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 48, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1836 + }, + "angle": 0, + "vertices": { + "#": 1837 + }, + "position": { + "#": 1850 + }, + "force": { + "#": 1851 + }, + "torque": 0, + "positionImpulse": { + "#": 1852 + }, + "constraintImpulse": { + "#": 1853 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1854 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1855 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1856 + }, + "circleRadius": 11.38799, + "bounds": { + "#": 1858 + }, + "positionPrev": { + "#": 1861 + }, + "anglePrev": 0, + "axes": { + "#": 1862 + }, + "area": 389.07124, + "mass": 0.38907, + "inverseMass": 2.57022, + "inertia": 96.41082, + "inverseInertia": 0.01037, + "parent": { + "#": 1835 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1835 + } + ], + [ + { + "#": 1838 + }, + { + "#": 1839 + }, + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + }, + { + "#": 1844 + }, + { + "#": 1845 + }, + { + "#": 1846 + }, + { + "#": 1847 + }, + { + "#": 1848 + }, + { + "#": 1849 + } + ], + { + "x": 680.242, + "y": 272.163, + "index": 0, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 677.295, + "y": 277.269, + "index": 1, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 672.189, + "y": 280.216, + "index": 2, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 666.295, + "y": 280.216, + "index": 3, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 661.189, + "y": 277.269, + "index": 4, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 658.242, + "y": 272.163, + "index": 5, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 658.242, + "y": 266.269, + "index": 6, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 661.189, + "y": 261.163, + "index": 7, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 666.295, + "y": 258.216, + "index": 8, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 672.189, + "y": 258.216, + "index": 9, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 677.295, + "y": 261.163, + "index": 10, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 680.242, + "y": 266.269, + "index": 11, + "body": { + "#": 1835 + }, + "isInternal": false + }, + { + "x": 669.242, + "y": 269.216 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1857 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1859 + }, + "max": { + "#": 1860 + } + }, + { + "x": 658.242, + "y": 258.216 + }, + { + "x": 680.242, + "y": 280.216 + }, + { + "x": 669.242, + "y": 269.216 + }, + [ + { + "#": 1863 + }, + { + "#": 1864 + }, + { + "#": 1865 + }, + { + "#": 1866 + }, + { + "#": 1867 + }, + { + "#": 1868 + } + ], + { + "x": -0.8661, + "y": -0.49988 + }, + { + "x": -0.49988, + "y": -0.8661 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.49988, + "y": -0.8661 + }, + { + "x": 0.8661, + "y": -0.49988 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 49, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1870 + }, + "angle": 0, + "vertices": { + "#": 1871 + }, + "position": { + "#": 1890 + }, + "force": { + "#": 1891 + }, + "torque": 0, + "positionImpulse": { + "#": 1892 + }, + "constraintImpulse": { + "#": 1893 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1894 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1895 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1896 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 1898 + }, + "positionPrev": { + "#": 1901 + }, + "anglePrev": 0, + "axes": { + "#": 1902 + }, + "area": 815.38925, + "mass": 0.81539, + "inverseMass": 1.22641, + "inertia": 423.29821, + "inverseInertia": 0.00236, + "parent": { + "#": 1869 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1869 + } + ], + [ + { + "#": 1872 + }, + { + "#": 1873 + }, + { + "#": 1874 + }, + { + "#": 1875 + }, + { + "#": 1876 + }, + { + "#": 1877 + }, + { + "#": 1878 + }, + { + "#": 1879 + }, + { + "#": 1880 + }, + { + "#": 1881 + }, + { + "#": 1882 + }, + { + "#": 1883 + }, + { + "#": 1884 + }, + { + "#": 1885 + }, + { + "#": 1886 + }, + { + "#": 1887 + }, + { + "#": 1888 + }, + { + "#": 1889 + } + ], + { + "x": 732.298, + "y": 277.317, + "index": 0, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 730.365, + "y": 282.629, + "index": 1, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 726.732, + "y": 286.959, + "index": 2, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 721.837, + "y": 289.785, + "index": 3, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 716.27, + "y": 290.766, + "index": 4, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 710.703, + "y": 289.785, + "index": 5, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 705.808, + "y": 286.959, + "index": 6, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 702.175, + "y": 282.629, + "index": 7, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 700.242, + "y": 277.317, + "index": 8, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 700.242, + "y": 271.665, + "index": 9, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 702.175, + "y": 266.353, + "index": 10, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 705.808, + "y": 262.023, + "index": 11, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 710.703, + "y": 259.197, + "index": 12, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 716.27, + "y": 258.216, + "index": 13, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 721.837, + "y": 259.197, + "index": 14, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 726.732, + "y": 262.023, + "index": 15, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 730.365, + "y": 266.353, + "index": 16, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 732.298, + "y": 271.665, + "index": 17, + "body": { + "#": 1869 + }, + "isInternal": false + }, + { + "x": 716.27, + "y": 274.491 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1897 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1899 + }, + "max": { + "#": 1900 + } + }, + { + "x": 700.242, + "y": 258.216 + }, + { + "x": 732.298, + "y": 290.766 + }, + { + "x": 716.27, + "y": 274.491 + }, + [ + { + "#": 1903 + }, + { + "#": 1904 + }, + { + "#": 1905 + }, + { + "#": 1906 + }, + { + "#": 1907 + }, + { + "#": 1908 + }, + { + "#": 1909 + }, + { + "#": 1910 + }, + { + "#": 1911 + } + ], + { + "x": -0.93972, + "y": -0.34196 + }, + { + "x": -0.76607, + "y": -0.64276 + }, + { + "x": -0.49998, + "y": -0.86604 + }, + { + "x": -0.17354, + "y": -0.98483 + }, + { + "x": 0.17354, + "y": -0.98483 + }, + { + "x": 0.49998, + "y": -0.86604 + }, + { + "x": 0.76607, + "y": -0.64276 + }, + { + "x": 0.93972, + "y": -0.34196 + }, + { + "x": 1, + "y": 0 + }, + [], + [], + { + "id": 50, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 1915 + }, + "constraints": { + "#": 2511 + }, + "composites": { + "#": 2512 + }, + "label": "Stack" + }, + [ + { + "#": 1916 + }, + { + "#": 1938 + }, + { + "#": 1960 + }, + { + "#": 1982 + }, + { + "#": 2004 + }, + { + "#": 2034 + }, + { + "#": 2064 + }, + { + "#": 2086 + }, + { + "#": 2116 + }, + { + "#": 2141 + }, + { + "#": 2171 + }, + { + "#": 2193 + }, + { + "#": 2215 + }, + { + "#": 2237 + }, + { + "#": 2265 + }, + { + "#": 2287 + }, + { + "#": 2313 + }, + { + "#": 2335 + }, + { + "#": 2357 + }, + { + "#": 2383 + }, + { + "#": 2405 + }, + { + "#": 2427 + }, + { + "#": 2455 + }, + { + "#": 2481 + } + ], + { + "id": 51, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1917 + }, + "angle": 0, + "vertices": { + "#": 1918 + }, + "position": { + "#": 1923 + }, + "force": { + "#": 1924 + }, + "torque": 0, + "positionImpulse": { + "#": 1925 + }, + "constraintImpulse": { + "#": 1926 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1927 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1928 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1929 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 1931 + }, + "positionPrev": { + "#": 1934 + }, + "anglePrev": 0, + "axes": { + "#": 1935 + }, + "area": 1021.44914, + "mass": 1.02145, + "inverseMass": 0.979, + "inertia": 893.33114, + "inverseInertia": 0.00112, + "parent": { + "#": 1916 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1916 + } + ], + [ + { + "#": 1919 + }, + { + "#": 1920 + }, + { + "#": 1921 + }, + { + "#": 1922 + } + ], + { + "x": 50, + "y": 50, + "index": 0, + "body": { + "#": 1916 + }, + "isInternal": false + }, + { + "x": 96.2064, + "y": 50, + "index": 1, + "body": { + "#": 1916 + }, + "isInternal": false + }, + { + "x": 96.2064, + "y": 72.10622, + "index": 2, + "body": { + "#": 1916 + }, + "isInternal": false + }, + { + "x": 50, + "y": 72.10622, + "index": 3, + "body": { + "#": 1916 + }, + "isInternal": false + }, + { + "x": 73.1032, + "y": 61.05311 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1930 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1932 + }, + "max": { + "#": 1933 + } + }, + { + "x": 50, + "y": 50 + }, + { + "x": 96.2064, + "y": 72.10622 + }, + { + "x": 73.1032, + "y": 61.05311 + }, + [ + { + "#": 1936 + }, + { + "#": 1937 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 52, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1939 + }, + "angle": 0, + "vertices": { + "#": 1940 + }, + "position": { + "#": 1945 + }, + "force": { + "#": 1946 + }, + "torque": 0, + "positionImpulse": { + "#": 1947 + }, + "constraintImpulse": { + "#": 1948 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1949 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1950 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1951 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 1953 + }, + "positionPrev": { + "#": 1956 + }, + "anglePrev": 0, + "axes": { + "#": 1957 + }, + "area": 1125.04029, + "mass": 1.12504, + "inverseMass": 0.88886, + "inertia": 845.55611, + "inverseInertia": 0.00118, + "parent": { + "#": 1938 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1938 + } + ], + [ + { + "#": 1941 + }, + { + "#": 1942 + }, + { + "#": 1943 + }, + { + "#": 1944 + } + ], + { + "x": 96.2064, + "y": 50, + "index": 0, + "body": { + "#": 1938 + }, + "isInternal": false + }, + { + "x": 128.6866, + "y": 50, + "index": 1, + "body": { + "#": 1938 + }, + "isInternal": false + }, + { + "x": 128.6866, + "y": 84.63773, + "index": 2, + "body": { + "#": 1938 + }, + "isInternal": false + }, + { + "x": 96.2064, + "y": 84.63773, + "index": 3, + "body": { + "#": 1938 + }, + "isInternal": false + }, + { + "x": 112.4465, + "y": 67.31887 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1952 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1954 + }, + "max": { + "#": 1955 + } + }, + { + "x": 96.2064, + "y": 50 + }, + { + "x": 128.6866, + "y": 84.63773 + }, + { + "x": 112.4465, + "y": 67.31887 + }, + [ + { + "#": 1958 + }, + { + "#": 1959 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 53, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1961 + }, + "angle": 0, + "vertices": { + "#": 1962 + }, + "position": { + "#": 1967 + }, + "force": { + "#": 1968 + }, + "torque": 0, + "positionImpulse": { + "#": 1969 + }, + "constraintImpulse": { + "#": 1970 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1971 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1972 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1973 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 1975 + }, + "positionPrev": { + "#": 1978 + }, + "anglePrev": 0, + "axes": { + "#": 1979 + }, + "area": 1489.78438, + "mass": 1.48978, + "inverseMass": 0.67124, + "inertia": 1501.63859, + "inverseInertia": 0.00067, + "parent": { + "#": 1960 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1960 + } + ], + [ + { + "#": 1963 + }, + { + "#": 1964 + }, + { + "#": 1965 + }, + { + "#": 1966 + } + ], + { + "x": 128.6866, + "y": 50, + "index": 0, + "body": { + "#": 1960 + }, + "isInternal": false + }, + { + "x": 164.09954, + "y": 50, + "index": 1, + "body": { + "#": 1960 + }, + "isInternal": false + }, + { + "x": 164.09954, + "y": 92.06893, + "index": 2, + "body": { + "#": 1960 + }, + "isInternal": false + }, + { + "x": 128.6866, + "y": 92.06893, + "index": 3, + "body": { + "#": 1960 + }, + "isInternal": false + }, + { + "x": 146.39307, + "y": 71.03447 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1974 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1976 + }, + "max": { + "#": 1977 + } + }, + { + "x": 128.6866, + "y": 50 + }, + { + "x": 164.09954, + "y": 92.06893 + }, + { + "x": 146.39307, + "y": 71.03447 + }, + [ + { + "#": 1980 + }, + { + "#": 1981 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 54, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1983 + }, + "angle": 0, + "vertices": { + "#": 1984 + }, + "position": { + "#": 1989 + }, + "force": { + "#": 1990 + }, + "torque": 0, + "positionImpulse": { + "#": 1991 + }, + "constraintImpulse": { + "#": 1992 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1993 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1994 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1995 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 1997 + }, + "positionPrev": { + "#": 2000 + }, + "anglePrev": 0, + "axes": { + "#": 2001 + }, + "area": 1765.36753, + "mass": 1.76537, + "inverseMass": 0.56645, + "inertia": 2077.83253, + "inverseInertia": 0.00048, + "parent": { + "#": 1982 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1982 + } + ], + [ + { + "#": 1985 + }, + { + "#": 1986 + }, + { + "#": 1987 + }, + { + "#": 1988 + } + ], + { + "x": 164.09954, + "y": 50, + "index": 0, + "body": { + "#": 1982 + }, + "isInternal": false + }, + { + "x": 205.86343, + "y": 50, + "index": 1, + "body": { + "#": 1982 + }, + "isInternal": false + }, + { + "x": 205.86343, + "y": 92.27019, + "index": 2, + "body": { + "#": 1982 + }, + "isInternal": false + }, + { + "x": 164.09954, + "y": 92.27019, + "index": 3, + "body": { + "#": 1982 + }, + "isInternal": false + }, + { + "x": 184.98148, + "y": 71.1351 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1996 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1998 + }, + "max": { + "#": 1999 + } + }, + { + "x": 164.09954, + "y": 50 + }, + { + "x": 205.86343, + "y": 92.27019 + }, + { + "x": 184.98148, + "y": 71.1351 + }, + [ + { + "#": 2002 + }, + { + "#": 2003 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 55, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2005 + }, + "angle": 0, + "vertices": { + "#": 2006 + }, + "position": { + "#": 2014 + }, + "force": { + "#": 2015 + }, + "torque": 0, + "positionImpulse": { + "#": 2016 + }, + "constraintImpulse": { + "#": 2017 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2018 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2019 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2020 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2022 + }, + "positionPrev": { + "#": 2025 + }, + "anglePrev": 0, + "axes": { + "#": 2026 + }, + "area": 2021.67819, + "mass": 2.02168, + "inverseMass": 0.49464, + "inertia": 2612.34767, + "inverseInertia": 0.00038, + "parent": { + "#": 2004 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2004 + } + ], + [ + { + "#": 2007 + }, + { + "#": 2008 + }, + { + "#": 2009 + }, + { + "#": 2010 + }, + { + "#": 2011 + }, + { + "#": 2012 + }, + { + "#": 2013 + } + ], + { + "x": 256.18757, + "y": 88.293, + "index": 0, + "body": { + "#": 2004 + }, + "isInternal": false + }, + { + "x": 237.74657, + "y": 103, + "index": 1, + "body": { + "#": 2004 + }, + "isInternal": false + }, + { + "x": 214.75157, + "y": 97.751, + "index": 2, + "body": { + "#": 2004 + }, + "isInternal": false + }, + { + "x": 204.51757, + "y": 76.5, + "index": 3, + "body": { + "#": 2004 + }, + "isInternal": false + }, + { + "x": 214.75157, + "y": 55.249, + "index": 4, + "body": { + "#": 2004 + }, + "isInternal": false + }, + { + "x": 237.74657, + "y": 50, + "index": 5, + "body": { + "#": 2004 + }, + "isInternal": false + }, + { + "x": 256.18757, + "y": 64.707, + "index": 6, + "body": { + "#": 2004 + }, + "isInternal": false + }, + { + "x": 231.69843, + "y": 76.5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2021 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2023 + }, + "max": { + "#": 2024 + } + }, + { + "x": 204.51757, + "y": 50 + }, + { + "x": 256.18757, + "y": 103 + }, + { + "x": 231.69843, + "y": 76.5 + }, + [ + { + "#": 2027 + }, + { + "#": 2028 + }, + { + "#": 2029 + }, + { + "#": 2030 + }, + { + "#": 2031 + }, + { + "#": 2032 + }, + { + "#": 2033 + } + ], + { + "x": 0.62351, + "y": 0.78182 + }, + { + "x": -0.22254, + "y": 0.97492 + }, + { + "x": -0.90097, + "y": 0.43389 + }, + { + "x": -0.90097, + "y": -0.43389 + }, + { + "x": -0.22254, + "y": -0.97492 + }, + { + "x": 0.62351, + "y": -0.78182 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 56, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2035 + }, + "angle": 0, + "vertices": { + "#": 2036 + }, + "position": { + "#": 2044 + }, + "force": { + "#": 2045 + }, + "torque": 0, + "positionImpulse": { + "#": 2046 + }, + "constraintImpulse": { + "#": 2047 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2048 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2049 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2050 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2052 + }, + "positionPrev": { + "#": 2055 + }, + "anglePrev": 0, + "axes": { + "#": 2056 + }, + "area": 6374.47951, + "mass": 6.37448, + "inverseMass": 0.15688, + "inertia": 25971.46102, + "inverseInertia": 0.00004, + "parent": { + "#": 2034 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2034 + } + ], + [ + { + "#": 2037 + }, + { + "#": 2038 + }, + { + "#": 2039 + }, + { + "#": 2040 + }, + { + "#": 2041 + }, + { + "#": 2042 + }, + { + "#": 2043 + } + ], + { + "x": 345.54777, + "y": 117.996, + "index": 0, + "body": { + "#": 2034 + }, + "isInternal": false + }, + { + "x": 312.80277, + "y": 144.11, + "index": 1, + "body": { + "#": 2034 + }, + "isInternal": false + }, + { + "x": 271.96977, + "y": 134.79, + "index": 2, + "body": { + "#": 2034 + }, + "isInternal": false + }, + { + "x": 253.79777, + "y": 97.055, + "index": 3, + "body": { + "#": 2034 + }, + "isInternal": false + }, + { + "x": 271.96977, + "y": 59.32, + "index": 4, + "body": { + "#": 2034 + }, + "isInternal": false + }, + { + "x": 312.80277, + "y": 50, + "index": 5, + "body": { + "#": 2034 + }, + "isInternal": false + }, + { + "x": 345.54777, + "y": 76.114, + "index": 6, + "body": { + "#": 2034 + }, + "isInternal": false + }, + { + "x": 302.06257, + "y": 97.055 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2051 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2053 + }, + "max": { + "#": 2054 + } + }, + { + "x": 253.79777, + "y": 50 + }, + { + "x": 345.54777, + "y": 144.11 + }, + { + "x": 302.06257, + "y": 97.055 + }, + [ + { + "#": 2057 + }, + { + "#": 2058 + }, + { + "#": 2059 + }, + { + "#": 2060 + }, + { + "#": 2061 + }, + { + "#": 2062 + }, + { + "#": 2063 + } + ], + { + "x": 0.6235, + "y": 0.78182 + }, + { + "x": -0.22252, + "y": 0.97493 + }, + { + "x": -0.90097, + "y": 0.43388 + }, + { + "x": -0.90097, + "y": -0.43388 + }, + { + "x": -0.22252, + "y": -0.97493 + }, + { + "x": 0.6235, + "y": -0.78182 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 57, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2065 + }, + "angle": 0, + "vertices": { + "#": 2066 + }, + "position": { + "#": 2071 + }, + "force": { + "#": 2072 + }, + "torque": 0, + "positionImpulse": { + "#": 2073 + }, + "constraintImpulse": { + "#": 2074 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2075 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2076 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2077 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2079 + }, + "positionPrev": { + "#": 2082 + }, + "anglePrev": 0, + "axes": { + "#": 2083 + }, + "area": 2220.02331, + "mass": 2.22002, + "inverseMass": 0.45045, + "inertia": 3297.61061, + "inverseInertia": 0.0003, + "parent": { + "#": 2064 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2064 + } + ], + [ + { + "#": 2067 + }, + { + "#": 2068 + }, + { + "#": 2069 + }, + { + "#": 2070 + } + ], + { + "x": 345.54777, + "y": 50, + "index": 0, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 390.69914, + "y": 50, + "index": 1, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 390.69914, + "y": 99.16847, + "index": 2, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 345.54777, + "y": 99.16847, + "index": 3, + "body": { + "#": 2064 + }, + "isInternal": false + }, + { + "x": 368.12346, + "y": 74.58423 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2078 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2080 + }, + "max": { + "#": 2081 + } + }, + { + "x": 345.54777, + "y": 50 + }, + { + "x": 390.69914, + "y": 99.16847 + }, + { + "x": 368.12346, + "y": 74.58423 + }, + [ + { + "#": 2084 + }, + { + "#": 2085 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 58, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2087 + }, + "angle": 0, + "vertices": { + "#": 2088 + }, + "position": { + "#": 2096 + }, + "force": { + "#": 2097 + }, + "torque": 0, + "positionImpulse": { + "#": 2098 + }, + "constraintImpulse": { + "#": 2099 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2100 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2101 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2102 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2104 + }, + "positionPrev": { + "#": 2107 + }, + "anglePrev": 0, + "axes": { + "#": 2108 + }, + "area": 2739.61989, + "mass": 2.73962, + "inverseMass": 0.36501, + "inertia": 4797.19688, + "inverseInertia": 0.00021, + "parent": { + "#": 2086 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2086 + } + ], + [ + { + "#": 2089 + }, + { + "#": 2090 + }, + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + }, + { + "#": 2094 + }, + { + "#": 2095 + } + ], + { + "x": 449.28137, + "y": 94.577, + "index": 0, + "body": { + "#": 2086 + }, + "isInternal": false + }, + { + "x": 427.81437, + "y": 111.696, + "index": 1, + "body": { + "#": 2086 + }, + "isInternal": false + }, + { + "x": 401.04537, + "y": 105.586, + "index": 2, + "body": { + "#": 2086 + }, + "isInternal": false + }, + { + "x": 389.13237, + "y": 80.848, + "index": 3, + "body": { + "#": 2086 + }, + "isInternal": false + }, + { + "x": 401.04537, + "y": 56.11, + "index": 4, + "body": { + "#": 2086 + }, + "isInternal": false + }, + { + "x": 427.81437, + "y": 50, + "index": 5, + "body": { + "#": 2086 + }, + "isInternal": false + }, + { + "x": 449.28137, + "y": 67.119, + "index": 6, + "body": { + "#": 2086 + }, + "isInternal": false + }, + { + "x": 420.77364, + "y": 80.848 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2103 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2105 + }, + "max": { + "#": 2106 + } + }, + { + "x": 389.13237, + "y": 50 + }, + { + "x": 449.28137, + "y": 111.696 + }, + { + "x": 420.77364, + "y": 80.848 + }, + [ + { + "#": 2109 + }, + { + "#": 2110 + }, + { + "#": 2111 + }, + { + "#": 2112 + }, + { + "#": 2113 + }, + { + "#": 2114 + }, + { + "#": 2115 + } + ], + { + "x": 0.62348, + "y": 0.78184 + }, + { + "x": -0.22253, + "y": 0.97493 + }, + { + "x": -0.90097, + "y": 0.43388 + }, + { + "x": -0.90097, + "y": -0.43388 + }, + { + "x": -0.22253, + "y": -0.97493 + }, + { + "x": 0.62348, + "y": -0.78184 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 59, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2117 + }, + "angle": 0, + "vertices": { + "#": 2118 + }, + "position": { + "#": 2125 + }, + "force": { + "#": 2126 + }, + "torque": 0, + "positionImpulse": { + "#": 2127 + }, + "constraintImpulse": { + "#": 2128 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2129 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2130 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2131 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2133 + }, + "positionPrev": { + "#": 2136 + }, + "anglePrev": 0, + "axes": { + "#": 2137 + }, + "area": 1836.0045, + "mass": 1.836, + "inverseMass": 0.54466, + "inertia": 2162.44139, + "inverseInertia": 0.00046, + "parent": { + "#": 2116 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2116 + } + ], + [ + { + "#": 2119 + }, + { + "#": 2120 + }, + { + "#": 2121 + }, + { + "#": 2122 + }, + { + "#": 2123 + }, + { + "#": 2124 + } + ], + { + "x": 96.044, + "y": 183.985, + "index": 0, + "body": { + "#": 2116 + }, + "isInternal": false + }, + { + "x": 73.022, + "y": 197.276, + "index": 1, + "body": { + "#": 2116 + }, + "isInternal": false + }, + { + "x": 50, + "y": 183.985, + "index": 2, + "body": { + "#": 2116 + }, + "isInternal": false + }, + { + "x": 50, + "y": 157.401, + "index": 3, + "body": { + "#": 2116 + }, + "isInternal": false + }, + { + "x": 73.022, + "y": 144.11, + "index": 4, + "body": { + "#": 2116 + }, + "isInternal": false + }, + { + "x": 96.044, + "y": 157.401, + "index": 5, + "body": { + "#": 2116 + }, + "isInternal": false + }, + { + "x": 73.022, + "y": 170.693 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2132 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2134 + }, + "max": { + "#": 2135 + } + }, + { + "x": 50, + "y": 144.11 + }, + { + "x": 96.044, + "y": 197.276 + }, + { + "x": 73.022, + "y": 170.693 + }, + [ + { + "#": 2138 + }, + { + "#": 2139 + }, + { + "#": 2140 + } + ], + { + "x": -0.49998, + "y": -0.86604 + }, + { + "x": 0.49998, + "y": -0.86604 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 60, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2142 + }, + "angle": 0, + "vertices": { + "#": 2143 + }, + "position": { + "#": 2151 + }, + "force": { + "#": 2152 + }, + "torque": 0, + "positionImpulse": { + "#": 2153 + }, + "constraintImpulse": { + "#": 2154 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2155 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2156 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2157 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2159 + }, + "positionPrev": { + "#": 2162 + }, + "anglePrev": 0, + "axes": { + "#": 2163 + }, + "area": 5751.50872, + "mass": 5.75151, + "inverseMass": 0.17387, + "inertia": 21143.18879, + "inverseInertia": 0.00005, + "parent": { + "#": 2141 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2141 + } + ], + [ + { + "#": 2144 + }, + { + "#": 2145 + }, + { + "#": 2146 + }, + { + "#": 2147 + }, + { + "#": 2148 + }, + { + "#": 2149 + }, + { + "#": 2150 + } + ], + { + "x": 180.92583, + "y": 208.698, + "index": 0, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 149.82183, + "y": 233.502, + "index": 1, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 111.03583, + "y": 224.65, + "index": 2, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 93.77383, + "y": 188.806, + "index": 3, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 111.03583, + "y": 152.962, + "index": 4, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 149.82183, + "y": 144.11, + "index": 5, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 180.92583, + "y": 168.914, + "index": 6, + "body": { + "#": 2141 + }, + "isInternal": false + }, + { + "x": 139.62, + "y": 188.806 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2158 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2160 + }, + "max": { + "#": 2161 + } + }, + { + "x": 93.77383, + "y": 144.11 + }, + { + "x": 180.92583, + "y": 233.502 + }, + { + "x": 139.62, + "y": 188.806 + }, + [ + { + "#": 2164 + }, + { + "#": 2165 + }, + { + "#": 2166 + }, + { + "#": 2167 + }, + { + "#": 2168 + }, + { + "#": 2169 + }, + { + "#": 2170 + } + ], + { + "x": 0.62348, + "y": 0.78184 + }, + { + "x": -0.22251, + "y": 0.97493 + }, + { + "x": -0.90096, + "y": 0.43389 + }, + { + "x": -0.90096, + "y": -0.43389 + }, + { + "x": -0.22251, + "y": -0.97493 + }, + { + "x": 0.62348, + "y": -0.78184 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 61, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2172 + }, + "angle": 0, + "vertices": { + "#": 2173 + }, + "position": { + "#": 2178 + }, + "force": { + "#": 2179 + }, + "torque": 0, + "positionImpulse": { + "#": 2180 + }, + "constraintImpulse": { + "#": 2181 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2182 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2183 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2184 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2186 + }, + "positionPrev": { + "#": 2189 + }, + "anglePrev": 0, + "axes": { + "#": 2190 + }, + "area": 451.61379, + "mass": 0.45161, + "inverseMass": 2.21428, + "inertia": 136.71143, + "inverseInertia": 0.00731, + "parent": { + "#": 2171 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2171 + } + ], + [ + { + "#": 2174 + }, + { + "#": 2175 + }, + { + "#": 2176 + }, + { + "#": 2177 + } + ], + { + "x": 180.92583, + "y": 144.11, + "index": 0, + "body": { + "#": 2171 + }, + "isInternal": false + }, + { + "x": 201.09635, + "y": 144.11, + "index": 1, + "body": { + "#": 2171 + }, + "isInternal": false + }, + { + "x": 201.09635, + "y": 166.49979, + "index": 2, + "body": { + "#": 2171 + }, + "isInternal": false + }, + { + "x": 180.92583, + "y": 166.49979, + "index": 3, + "body": { + "#": 2171 + }, + "isInternal": false + }, + { + "x": 191.01109, + "y": 155.30489 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2185 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2187 + }, + "max": { + "#": 2188 + } + }, + { + "x": 180.92583, + "y": 144.11 + }, + { + "x": 201.09635, + "y": 166.49979 + }, + { + "x": 191.01109, + "y": 155.30489 + }, + [ + { + "#": 2191 + }, + { + "#": 2192 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 62, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2194 + }, + "angle": 0, + "vertices": { + "#": 2195 + }, + "position": { + "#": 2200 + }, + "force": { + "#": 2201 + }, + "torque": 0, + "positionImpulse": { + "#": 2202 + }, + "constraintImpulse": { + "#": 2203 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2204 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2205 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2206 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2208 + }, + "positionPrev": { + "#": 2211 + }, + "anglePrev": 0, + "axes": { + "#": 2212 + }, + "area": 3021.67907, + "mass": 3.02168, + "inverseMass": 0.33094, + "inertia": 11331.77016, + "inverseInertia": 0.00009, + "parent": { + "#": 2193 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2193 + } + ], + [ + { + "#": 2196 + }, + { + "#": 2197 + }, + { + "#": 2198 + }, + { + "#": 2199 + } + ], + { + "x": 201.09635, + "y": 144.11, + "index": 0, + "body": { + "#": 2193 + }, + "isInternal": false + }, + { + "x": 302.92951, + "y": 144.11, + "index": 1, + "body": { + "#": 2193 + }, + "isInternal": false + }, + { + "x": 302.92951, + "y": 173.78284, + "index": 2, + "body": { + "#": 2193 + }, + "isInternal": false + }, + { + "x": 201.09635, + "y": 173.78284, + "index": 3, + "body": { + "#": 2193 + }, + "isInternal": false + }, + { + "x": 252.01293, + "y": 158.94642 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2207 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2209 + }, + "max": { + "#": 2210 + } + }, + { + "x": 201.09635, + "y": 144.11 + }, + { + "x": 302.92951, + "y": 173.78284 + }, + { + "x": 252.01293, + "y": 158.94642 + }, + [ + { + "#": 2213 + }, + { + "#": 2214 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 63, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2216 + }, + "angle": 0, + "vertices": { + "#": 2217 + }, + "position": { + "#": 2222 + }, + "force": { + "#": 2223 + }, + "torque": 0, + "positionImpulse": { + "#": 2224 + }, + "constraintImpulse": { + "#": 2225 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2226 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2227 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2228 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2230 + }, + "positionPrev": { + "#": 2233 + }, + "anglePrev": 0, + "axes": { + "#": 2234 + }, + "area": 856.73964, + "mass": 0.85674, + "inverseMass": 1.16722, + "inertia": 589.10598, + "inverseInertia": 0.0017, + "parent": { + "#": 2215 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2215 + } + ], + [ + { + "#": 2218 + }, + { + "#": 2219 + }, + { + "#": 2220 + }, + { + "#": 2221 + } + ], + { + "x": 302.92951, + "y": 144.11, + "index": 0, + "body": { + "#": 2215 + }, + "isInternal": false + }, + { + "x": 343.00102, + "y": 144.11, + "index": 1, + "body": { + "#": 2215 + }, + "isInternal": false + }, + { + "x": 343.00102, + "y": 165.49027, + "index": 2, + "body": { + "#": 2215 + }, + "isInternal": false + }, + { + "x": 302.92951, + "y": 165.49027, + "index": 3, + "body": { + "#": 2215 + }, + "isInternal": false + }, + { + "x": 322.96527, + "y": 154.80014 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2229 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2231 + }, + "max": { + "#": 2232 + } + }, + { + "x": 302.92951, + "y": 144.11 + }, + { + "x": 343.00102, + "y": 165.49027 + }, + { + "x": 322.96527, + "y": 154.80014 + }, + [ + { + "#": 2235 + }, + { + "#": 2236 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 64, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2238 + }, + "angle": 0, + "vertices": { + "#": 2239 + }, + "position": { + "#": 2248 + }, + "force": { + "#": 2249 + }, + "torque": 0, + "positionImpulse": { + "#": 2250 + }, + "constraintImpulse": { + "#": 2251 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2252 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2253 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2254 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2256 + }, + "positionPrev": { + "#": 2259 + }, + "anglePrev": 0, + "axes": { + "#": 2260 + }, + "area": 4088.59995, + "mass": 4.0886, + "inverseMass": 0.24458, + "inertia": 10666.41244, + "inverseInertia": 0.00009, + "parent": { + "#": 2237 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2237 + } + ], + [ + { + "#": 2240 + }, + { + "#": 2241 + }, + { + "#": 2242 + }, + { + "#": 2243 + }, + { + "#": 2244 + }, + { + "#": 2245 + }, + { + "#": 2246 + }, + { + "#": 2247 + } + ], + { + "x": 413.25302, + "y": 193.786, + "index": 0, + "body": { + "#": 2237 + }, + "isInternal": false + }, + { + "x": 392.67702, + "y": 214.362, + "index": 1, + "body": { + "#": 2237 + }, + "isInternal": false + }, + { + "x": 363.57702, + "y": 214.362, + "index": 2, + "body": { + "#": 2237 + }, + "isInternal": false + }, + { + "x": 343.00102, + "y": 193.786, + "index": 3, + "body": { + "#": 2237 + }, + "isInternal": false + }, + { + "x": 343.00102, + "y": 164.686, + "index": 4, + "body": { + "#": 2237 + }, + "isInternal": false + }, + { + "x": 363.57702, + "y": 144.11, + "index": 5, + "body": { + "#": 2237 + }, + "isInternal": false + }, + { + "x": 392.67702, + "y": 144.11, + "index": 6, + "body": { + "#": 2237 + }, + "isInternal": false + }, + { + "x": 413.25302, + "y": 164.686, + "index": 7, + "body": { + "#": 2237 + }, + "isInternal": false + }, + { + "x": 378.12702, + "y": 179.236 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2255 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2257 + }, + "max": { + "#": 2258 + } + }, + { + "x": 343.00102, + "y": 144.11 + }, + { + "x": 413.25302, + "y": 214.362 + }, + { + "x": 378.12702, + "y": 179.236 + }, + [ + { + "#": 2261 + }, + { + "#": 2262 + }, + { + "#": 2263 + }, + { + "#": 2264 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 65, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2266 + }, + "angle": 0, + "vertices": { + "#": 2267 + }, + "position": { + "#": 2272 + }, + "force": { + "#": 2273 + }, + "torque": 0, + "positionImpulse": { + "#": 2274 + }, + "constraintImpulse": { + "#": 2275 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2276 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2277 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2278 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2280 + }, + "positionPrev": { + "#": 2283 + }, + "anglePrev": 0, + "axes": { + "#": 2284 + }, + "area": 1965.14243, + "mass": 1.96514, + "inverseMass": 0.50887, + "inertia": 5563.36836, + "inverseInertia": 0.00018, + "parent": { + "#": 2265 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2265 + } + ], + [ + { + "#": 2268 + }, + { + "#": 2269 + }, + { + "#": 2270 + }, + { + "#": 2271 + } + ], + { + "x": 413.25302, + "y": 144.11, + "index": 0, + "body": { + "#": 2265 + }, + "isInternal": false + }, + { + "x": 502.7573, + "y": 144.11, + "index": 1, + "body": { + "#": 2265 + }, + "isInternal": false + }, + { + "x": 502.7573, + "y": 166.06585, + "index": 2, + "body": { + "#": 2265 + }, + "isInternal": false + }, + { + "x": 413.25302, + "y": 166.06585, + "index": 3, + "body": { + "#": 2265 + }, + "isInternal": false + }, + { + "x": 458.00516, + "y": 155.08792 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2279 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2281 + }, + "max": { + "#": 2282 + } + }, + { + "x": 413.25302, + "y": 144.11 + }, + { + "x": 502.7573, + "y": 166.06585 + }, + { + "x": 458.00516, + "y": 155.08792 + }, + [ + { + "#": 2285 + }, + { + "#": 2286 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 66, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2288 + }, + "angle": 0, + "vertices": { + "#": 2289 + }, + "position": { + "#": 2295 + }, + "force": { + "#": 2296 + }, + "torque": 0, + "positionImpulse": { + "#": 2297 + }, + "constraintImpulse": { + "#": 2298 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2299 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2300 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2301 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2303 + }, + "positionPrev": { + "#": 2306 + }, + "anglePrev": 0, + "axes": { + "#": 2307 + }, + "area": 2731.71037, + "mass": 2.73171, + "inverseMass": 0.36607, + "inertia": 4831.24253, + "inverseInertia": 0.00021, + "parent": { + "#": 2287 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2287 + } + ], + [ + { + "#": 2290 + }, + { + "#": 2291 + }, + { + "#": 2292 + }, + { + "#": 2293 + }, + { + "#": 2294 + } + ], + { + "x": 560.83853, + "y": 196.27, + "index": 0, + "body": { + "#": 2287 + }, + "isInternal": false + }, + { + "x": 522.94253, + "y": 208.584, + "index": 1, + "body": { + "#": 2287 + }, + "isInternal": false + }, + { + "x": 499.52053, + "y": 176.347, + "index": 2, + "body": { + "#": 2287 + }, + "isInternal": false + }, + { + "x": 522.94253, + "y": 144.11, + "index": 3, + "body": { + "#": 2287 + }, + "isInternal": false + }, + { + "x": 560.83853, + "y": 156.424, + "index": 4, + "body": { + "#": 2287 + }, + "isInternal": false + }, + { + "x": 533.4163, + "y": 176.347 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2302 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2304 + }, + "max": { + "#": 2305 + } + }, + { + "x": 499.52053, + "y": 144.11 + }, + { + "x": 560.83853, + "y": 208.584 + }, + { + "x": 533.4163, + "y": 176.347 + }, + [ + { + "#": 2308 + }, + { + "#": 2309 + }, + { + "#": 2310 + }, + { + "#": 2311 + }, + { + "#": 2312 + } + ], + { + "x": 0.30904, + "y": 0.95105 + }, + { + "x": -0.80901, + "y": 0.58779 + }, + { + "x": -0.80901, + "y": -0.58779 + }, + { + "x": 0.30904, + "y": -0.95105 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 67, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2314 + }, + "angle": 0, + "vertices": { + "#": 2315 + }, + "position": { + "#": 2320 + }, + "force": { + "#": 2321 + }, + "torque": 0, + "positionImpulse": { + "#": 2322 + }, + "constraintImpulse": { + "#": 2323 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2324 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2325 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2326 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2328 + }, + "positionPrev": { + "#": 2331 + }, + "anglePrev": 0, + "axes": { + "#": 2332 + }, + "area": 942.00657, + "mass": 0.94201, + "inverseMass": 1.06156, + "inertia": 767.50816, + "inverseInertia": 0.0013, + "parent": { + "#": 2313 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2313 + } + ], + [ + { + "#": 2316 + }, + { + "#": 2317 + }, + { + "#": 2318 + }, + { + "#": 2319 + } + ], + { + "x": 50, + "y": 233.502, + "index": 0, + "body": { + "#": 2313 + }, + "isInternal": false + }, + { + "x": 71.05993, + "y": 233.502, + "index": 1, + "body": { + "#": 2313 + }, + "isInternal": false + }, + { + "x": 71.05993, + "y": 278.23181, + "index": 2, + "body": { + "#": 2313 + }, + "isInternal": false + }, + { + "x": 50, + "y": 278.23181, + "index": 3, + "body": { + "#": 2313 + }, + "isInternal": false + }, + { + "x": 60.52996, + "y": 255.8669 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2327 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2329 + }, + "max": { + "#": 2330 + } + }, + { + "x": 50, + "y": 233.502 + }, + { + "x": 71.05993, + "y": 278.23181 + }, + { + "x": 60.52996, + "y": 255.8669 + }, + [ + { + "#": 2333 + }, + { + "#": 2334 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 68, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2336 + }, + "angle": 0, + "vertices": { + "#": 2337 + }, + "position": { + "#": 2342 + }, + "force": { + "#": 2343 + }, + "torque": 0, + "positionImpulse": { + "#": 2344 + }, + "constraintImpulse": { + "#": 2345 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2346 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2347 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2348 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2350 + }, + "positionPrev": { + "#": 2353 + }, + "anglePrev": 0, + "axes": { + "#": 2354 + }, + "area": 2898.41559, + "mass": 2.89842, + "inverseMass": 0.34502, + "inertia": 12806.46533, + "inverseInertia": 0.00008, + "parent": { + "#": 2335 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2335 + } + ], + [ + { + "#": 2338 + }, + { + "#": 2339 + }, + { + "#": 2340 + }, + { + "#": 2341 + } + ], + { + "x": 71.05993, + "y": 233.502, + "index": 0, + "body": { + "#": 2335 + }, + "isInternal": false + }, + { + "x": 183.25592, + "y": 233.502, + "index": 1, + "body": { + "#": 2335 + }, + "isInternal": false + }, + { + "x": 183.25592, + "y": 259.3355, + "index": 2, + "body": { + "#": 2335 + }, + "isInternal": false + }, + { + "x": 71.05993, + "y": 259.3355, + "index": 3, + "body": { + "#": 2335 + }, + "isInternal": false + }, + { + "x": 127.15792, + "y": 246.41875 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2349 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2351 + }, + "max": { + "#": 2352 + } + }, + { + "x": 71.05993, + "y": 233.502 + }, + { + "x": 183.25592, + "y": 259.3355 + }, + { + "x": 127.15792, + "y": 246.41875 + }, + [ + { + "#": 2355 + }, + { + "#": 2356 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 69, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2358 + }, + "angle": 0, + "vertices": { + "#": 2359 + }, + "position": { + "#": 2365 + }, + "force": { + "#": 2366 + }, + "torque": 0, + "positionImpulse": { + "#": 2367 + }, + "constraintImpulse": { + "#": 2368 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2369 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2370 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2371 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2373 + }, + "positionPrev": { + "#": 2376 + }, + "anglePrev": 0, + "axes": { + "#": 2377 + }, + "area": 1542.07381, + "mass": 1.54207, + "inverseMass": 0.64848, + "inertia": 1539.57148, + "inverseInertia": 0.00065, + "parent": { + "#": 2357 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2357 + } + ], + [ + { + "#": 2360 + }, + { + "#": 2361 + }, + { + "#": 2362 + }, + { + "#": 2363 + }, + { + "#": 2364 + } + ], + { + "x": 226.89417, + "y": 272.692, + "index": 0, + "body": { + "#": 2357 + }, + "isInternal": false + }, + { + "x": 198.42117, + "y": 281.944, + "index": 1, + "body": { + "#": 2357 + }, + "isInternal": false + }, + { + "x": 180.82417, + "y": 257.723, + "index": 2, + "body": { + "#": 2357 + }, + "isInternal": false + }, + { + "x": 198.42117, + "y": 233.502, + "index": 3, + "body": { + "#": 2357 + }, + "isInternal": false + }, + { + "x": 226.89417, + "y": 242.754, + "index": 4, + "body": { + "#": 2357 + }, + "isInternal": false + }, + { + "x": 206.29092, + "y": 257.723 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2372 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2374 + }, + "max": { + "#": 2375 + } + }, + { + "x": 180.82417, + "y": 233.502 + }, + { + "x": 226.89417, + "y": 281.944 + }, + { + "x": 206.29092, + "y": 257.723 + }, + [ + { + "#": 2378 + }, + { + "#": 2379 + }, + { + "#": 2380 + }, + { + "#": 2381 + }, + { + "#": 2382 + } + ], + { + "x": 0.30903, + "y": 0.95105 + }, + { + "x": -0.80903, + "y": 0.58777 + }, + { + "x": -0.80903, + "y": -0.58777 + }, + { + "x": 0.30903, + "y": -0.95105 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 70, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2384 + }, + "angle": 0, + "vertices": { + "#": 2385 + }, + "position": { + "#": 2390 + }, + "force": { + "#": 2391 + }, + "torque": 0, + "positionImpulse": { + "#": 2392 + }, + "constraintImpulse": { + "#": 2393 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2394 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2395 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2396 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2398 + }, + "positionPrev": { + "#": 2401 + }, + "anglePrev": 0, + "axes": { + "#": 2402 + }, + "area": 4282.3936, + "mass": 4.28239, + "inverseMass": 0.23351, + "inertia": 12225.92996, + "inverseInertia": 0.00008, + "parent": { + "#": 2383 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2383 + } + ], + [ + { + "#": 2386 + }, + { + "#": 2387 + }, + { + "#": 2388 + }, + { + "#": 2389 + } + ], + { + "x": 292.33417, + "y": 298.942, + "index": 0, + "body": { + "#": 2383 + }, + "isInternal": false + }, + { + "x": 226.89417, + "y": 298.942, + "index": 1, + "body": { + "#": 2383 + }, + "isInternal": false + }, + { + "x": 226.89417, + "y": 233.502, + "index": 2, + "body": { + "#": 2383 + }, + "isInternal": false + }, + { + "x": 292.33417, + "y": 233.502, + "index": 3, + "body": { + "#": 2383 + }, + "isInternal": false + }, + { + "x": 259.61417, + "y": 266.222 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2397 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2399 + }, + "max": { + "#": 2400 + } + }, + { + "x": 226.89417, + "y": 233.502 + }, + { + "x": 292.33417, + "y": 298.942 + }, + { + "x": 259.61417, + "y": 266.222 + }, + [ + { + "#": 2403 + }, + { + "#": 2404 + } + ], + { + "x": 0, + "y": -1 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 71, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2406 + }, + "angle": 0, + "vertices": { + "#": 2407 + }, + "position": { + "#": 2412 + }, + "force": { + "#": 2413 + }, + "torque": 0, + "positionImpulse": { + "#": 2414 + }, + "constraintImpulse": { + "#": 2415 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2416 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2417 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2418 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2420 + }, + "positionPrev": { + "#": 2423 + }, + "anglePrev": 0, + "axes": { + "#": 2424 + }, + "area": 1051.31113, + "mass": 1.05131, + "inverseMass": 0.95119, + "inertia": 749.58313, + "inverseInertia": 0.00133, + "parent": { + "#": 2405 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2405 + } + ], + [ + { + "#": 2408 + }, + { + "#": 2409 + }, + { + "#": 2410 + }, + { + "#": 2411 + } + ], + { + "x": 292.33417, + "y": 233.502, + "index": 0, + "body": { + "#": 2405 + }, + "isInternal": false + }, + { + "x": 321.88252, + "y": 233.502, + "index": 1, + "body": { + "#": 2405 + }, + "isInternal": false + }, + { + "x": 321.88252, + "y": 269.08135, + "index": 2, + "body": { + "#": 2405 + }, + "isInternal": false + }, + { + "x": 292.33417, + "y": 269.08135, + "index": 3, + "body": { + "#": 2405 + }, + "isInternal": false + }, + { + "x": 307.10834, + "y": 251.29167 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2419 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2421 + }, + "max": { + "#": 2422 + } + }, + { + "x": 292.33417, + "y": 233.502 + }, + { + "x": 321.88252, + "y": 269.08135 + }, + { + "x": 307.10834, + "y": 251.29167 + }, + [ + { + "#": 2425 + }, + { + "#": 2426 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 72, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2428 + }, + "angle": 0, + "vertices": { + "#": 2429 + }, + "position": { + "#": 2438 + }, + "force": { + "#": 2439 + }, + "torque": 0, + "positionImpulse": { + "#": 2440 + }, + "constraintImpulse": { + "#": 2441 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2442 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2443 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2444 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2446 + }, + "positionPrev": { + "#": 2449 + }, + "anglePrev": 0, + "axes": { + "#": 2450 + }, + "area": 6455.5867, + "mass": 6.45559, + "inverseMass": 0.1549, + "inertia": 26591.36131, + "inverseInertia": 0.00004, + "parent": { + "#": 2427 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2427 + } + ], + [ + { + "#": 2430 + }, + { + "#": 2431 + }, + { + "#": 2432 + }, + { + "#": 2433 + }, + { + "#": 2434 + }, + { + "#": 2435 + }, + { + "#": 2436 + }, + { + "#": 2437 + } + ], + { + "x": 410.15852, + "y": 295.922, + "index": 0, + "body": { + "#": 2427 + }, + "isInternal": false + }, + { + "x": 384.30252, + "y": 321.778, + "index": 1, + "body": { + "#": 2427 + }, + "isInternal": false + }, + { + "x": 347.73852, + "y": 321.778, + "index": 2, + "body": { + "#": 2427 + }, + "isInternal": false + }, + { + "x": 321.88252, + "y": 295.922, + "index": 3, + "body": { + "#": 2427 + }, + "isInternal": false + }, + { + "x": 321.88252, + "y": 259.358, + "index": 4, + "body": { + "#": 2427 + }, + "isInternal": false + }, + { + "x": 347.73852, + "y": 233.502, + "index": 5, + "body": { + "#": 2427 + }, + "isInternal": false + }, + { + "x": 384.30252, + "y": 233.502, + "index": 6, + "body": { + "#": 2427 + }, + "isInternal": false + }, + { + "x": 410.15852, + "y": 259.358, + "index": 7, + "body": { + "#": 2427 + }, + "isInternal": false + }, + { + "x": 366.02052, + "y": 277.64 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2445 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2447 + }, + "max": { + "#": 2448 + } + }, + { + "x": 321.88252, + "y": 233.502 + }, + { + "x": 410.15852, + "y": 321.778 + }, + { + "x": 366.02052, + "y": 277.64 + }, + [ + { + "#": 2451 + }, + { + "#": 2452 + }, + { + "#": 2453 + }, + { + "#": 2454 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 73, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2456 + }, + "angle": 0, + "vertices": { + "#": 2457 + }, + "position": { + "#": 2463 + }, + "force": { + "#": 2464 + }, + "torque": 0, + "positionImpulse": { + "#": 2465 + }, + "constraintImpulse": { + "#": 2466 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2467 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2468 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2469 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2471 + }, + "positionPrev": { + "#": 2474 + }, + "anglePrev": 0, + "axes": { + "#": 2475 + }, + "area": 2014.12665, + "mass": 2.01413, + "inverseMass": 0.49649, + "inertia": 2626.41342, + "inverseInertia": 0.00038, + "parent": { + "#": 2455 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2455 + } + ], + [ + { + "#": 2458 + }, + { + "#": 2459 + }, + { + "#": 2460 + }, + { + "#": 2461 + }, + { + "#": 2462 + } + ], + { + "x": 460.0302, + "y": 278.291, + "index": 0, + "body": { + "#": 2455 + }, + "isInternal": false + }, + { + "x": 427.4902, + "y": 288.864, + "index": 1, + "body": { + "#": 2455 + }, + "isInternal": false + }, + { + "x": 407.3792, + "y": 261.183, + "index": 2, + "body": { + "#": 2455 + }, + "isInternal": false + }, + { + "x": 427.4902, + "y": 233.502, + "index": 3, + "body": { + "#": 2455 + }, + "isInternal": false + }, + { + "x": 460.0302, + "y": 244.075, + "index": 4, + "body": { + "#": 2455 + }, + "isInternal": false + }, + { + "x": 436.48402, + "y": 261.183 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2470 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2472 + }, + "max": { + "#": 2473 + } + }, + { + "x": 407.3792, + "y": 233.502 + }, + { + "x": 460.0302, + "y": 288.864 + }, + { + "x": 436.48402, + "y": 261.183 + }, + [ + { + "#": 2476 + }, + { + "#": 2477 + }, + { + "#": 2478 + }, + { + "#": 2479 + }, + { + "#": 2480 + } + ], + { + "x": 0.30902, + "y": 0.95106 + }, + { + "x": -0.80902, + "y": 0.58778 + }, + { + "x": -0.80902, + "y": -0.58778 + }, + { + "x": 0.30902, + "y": -0.95106 + }, + { + "x": 1, + "y": 0 + }, + { + "id": 74, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2482 + }, + "angle": 0, + "vertices": { + "#": 2483 + }, + "position": { + "#": 2491 + }, + "force": { + "#": 2492 + }, + "torque": 0, + "positionImpulse": { + "#": 2493 + }, + "constraintImpulse": { + "#": 2494 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 2495 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2496 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2497 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2499 + }, + "positionPrev": { + "#": 2502 + }, + "anglePrev": 0, + "axes": { + "#": 2503 + }, + "area": 4695.38663, + "mass": 4.69539, + "inverseMass": 0.21298, + "inertia": 14091.25388, + "inverseInertia": 0.00007, + "parent": { + "#": 2481 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2481 + } + ], + [ + { + "#": 2484 + }, + { + "#": 2485 + }, + { + "#": 2486 + }, + { + "#": 2487 + }, + { + "#": 2488 + }, + { + "#": 2489 + }, + { + "#": 2490 + } + ], + { + "x": 536.72307, + "y": 291.86, + "index": 0, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 508.62007, + "y": 314.272, + "index": 1, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 473.57507, + "y": 306.273, + "index": 2, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 457.97907, + "y": 273.887, + "index": 3, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 473.57507, + "y": 241.501, + "index": 4, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 508.62007, + "y": 233.502, + "index": 5, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 536.72307, + "y": 255.914, + "index": 6, + "body": { + "#": 2481 + }, + "isInternal": false + }, + { + "x": 499.4022, + "y": 273.887 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2498 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2500 + }, + "max": { + "#": 2501 + } + }, + { + "x": 457.97907, + "y": 233.502 + }, + { + "x": 536.72307, + "y": 314.272 + }, + { + "x": 499.4022, + "y": 273.887 + }, + [ + { + "#": 2504 + }, + { + "#": 2505 + }, + { + "#": 2506 + }, + { + "#": 2507 + }, + { + "#": 2508 + }, + { + "#": 2509 + }, + { + "#": 2510 + } + ], + { + "x": 0.6235, + "y": 0.78182 + }, + { + "x": -0.22253, + "y": 0.97493 + }, + { + "x": -0.90097, + "y": 0.43388 + }, + { + "x": -0.90097, + "y": -0.43388 + }, + { + "x": -0.22253, + "y": -0.97493 + }, + { + "x": 0.6235, + "y": -0.78182 + }, + { + "x": 1, + "y": 0 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 2515 + }, + "max": { + "#": 2516 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/timescale/timescale-10.json b/test/node/refs/timescale/timescale-10.json new file mode 100644 index 00000000..e335ed35 --- /dev/null +++ b/test/node/refs/timescale/timescale-10.json @@ -0,0 +1,24816 @@ +[ + { + "id": 12, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 94 + }, + "composites": { + "#": 95 + }, + "label": "World", + "gravity": { + "#": 2586 + }, + "bounds": { + "#": 2587 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + [], + [ + { + "#": 96 + }, + { + "#": 1963 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 97 + }, + "constraints": { + "#": 1961 + }, + "composites": { + "#": 1962 + }, + "label": "Stack" + }, + [ + { + "#": 98 + }, + { + "#": 136 + }, + { + "#": 177 + }, + { + "#": 224 + }, + { + "#": 262 + }, + { + "#": 309 + }, + { + "#": 344 + }, + { + "#": 388 + }, + { + "#": 429 + }, + { + "#": 470 + }, + { + "#": 508 + }, + { + "#": 552 + }, + { + "#": 590 + }, + { + "#": 637 + }, + { + "#": 684 + }, + { + "#": 728 + }, + { + "#": 766 + }, + { + "#": 801 + }, + { + "#": 848 + }, + { + "#": 886 + }, + { + "#": 933 + }, + { + "#": 977 + }, + { + "#": 1012 + }, + { + "#": 1056 + }, + { + "#": 1103 + }, + { + "#": 1138 + }, + { + "#": 1179 + }, + { + "#": 1217 + }, + { + "#": 1255 + }, + { + "#": 1302 + }, + { + "#": 1349 + }, + { + "#": 1390 + }, + { + "#": 1428 + }, + { + "#": 1466 + }, + { + "#": 1510 + }, + { + "#": 1557 + }, + { + "#": 1598 + }, + { + "#": 1636 + }, + { + "#": 1683 + }, + { + "#": 1718 + }, + { + "#": 1762 + }, + { + "#": 1809 + }, + { + "#": 1847 + }, + { + "#": 1882 + }, + { + "#": 1917 + } + ], + { + "id": 5, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 99 + }, + "angle": 0.00031, + "vertices": { + "#": 100 + }, + "position": { + "#": 115 + }, + "force": { + "#": 116 + }, + "torque": 0, + "positionImpulse": { + "#": 117 + }, + "constraintImpulse": { + "#": 118 + }, + "totalContacts": 0, + "speed": 3.05474, + "angularSpeed": 0.00003, + "velocity": { + "#": 119 + }, + "angularVelocity": 0.00003, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 120 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 121 + }, + "circleRadius": 12.11321, + "bounds": { + "#": 123 + }, + "positionPrev": { + "#": 126 + }, + "anglePrev": 0.00028, + "axes": { + "#": 127 + }, + "area": 445.64723, + "mass": 0.44565, + "inverseMass": 2.24393, + "inertia": 126.46281, + "inverseInertia": 0.00791, + "parent": { + "#": 98 + }, + "sleepCounter": 0, + "region": { + "#": 135 + } + }, + [ + { + "#": 98 + } + ], + [ + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + } + ], + { + "x": 44.53401, + "y": 133.13738, + "index": 0, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 42.19251, + "y": 137.99365, + "index": 1, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 37.97747, + "y": 141.35435, + "index": 2, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 32.7211, + "y": 142.55172, + "index": 3, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 27.46547, + "y": 141.35109, + "index": 4, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 23.25251, + "y": 137.98779, + "index": 5, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 20.91402, + "y": 133.13006, + "index": 6, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 20.91568, + "y": 127.74006, + "index": 7, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 23.25719, + "y": 122.88379, + "index": 8, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 27.47223, + "y": 119.52309, + "index": 9, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 32.7286, + "y": 118.32572, + "index": 10, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 37.98423, + "y": 119.52635, + "index": 11, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 42.19719, + "y": 122.88965, + "index": 12, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 44.53568, + "y": 127.74738, + "index": 13, + "body": { + "#": 98 + }, + "isInternal": false + }, + { + "x": 32.72485, + "y": 130.43872 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.01718, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00008, + "y": 3.05474 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 122 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 124 + }, + "max": { + "#": 125 + } + }, + { + "x": 20.91402, + "y": 118.32572 + }, + { + "x": 44.53576, + "y": 145.60646 + }, + { + "x": 32.72477, + "y": 127.38398 + }, + [ + { + "#": 128 + }, + { + "#": 129 + }, + { + "#": 130 + }, + { + "#": 131 + }, + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + } + ], + { + "x": -0.90076, + "y": -0.43431 + }, + { + "x": -0.62341, + "y": -0.78189 + }, + { + "x": -0.2221, + "y": -0.97502 + }, + { + "x": 0.22271, + "y": -0.97489 + }, + { + "x": 0.6239, + "y": -0.78151 + }, + { + "x": 0.90103, + "y": -0.43375 + }, + { + "x": 1, + "y": 0.00031 + }, + { + "id": "0,0,2,2", + "startCol": 0, + "endCol": 0, + "startRow": 2, + "endRow": 2 + }, + { + "id": 6, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 137 + }, + "angle": 0, + "vertices": { + "#": 138 + }, + "position": { + "#": 155 + }, + "force": { + "#": 156 + }, + "torque": 0, + "positionImpulse": { + "#": 157 + }, + "constraintImpulse": { + "#": 158 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 159 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 160 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 161 + }, + "circleRadius": 15.46772, + "bounds": { + "#": 163 + }, + "positionPrev": { + "#": 166 + }, + "anglePrev": 0, + "axes": { + "#": 167 + }, + "area": 732.47528, + "mass": 0.73248, + "inverseMass": 1.36523, + "inertia": 341.60523, + "inverseInertia": 0.00293, + "parent": { + "#": 136 + }, + "sleepCounter": 0, + "region": { + "#": 176 + } + }, + [ + { + "#": 136 + } + ], + [ + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + }, + { + "#": 149 + }, + { + "#": 150 + }, + { + "#": 151 + }, + { + "#": 152 + }, + { + "#": 153 + }, + { + "#": 154 + } + ], + { + "x": 93.962, + "y": 136.52233, + "index": 0, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 91.652, + "y": 142.09733, + "index": 1, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 87.384, + "y": 146.36533, + "index": 2, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 81.809, + "y": 148.67533, + "index": 3, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 75.773, + "y": 148.67533, + "index": 4, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 70.198, + "y": 146.36533, + "index": 5, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 65.93, + "y": 142.09733, + "index": 6, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 63.62, + "y": 136.52233, + "index": 7, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 63.62, + "y": 130.48633, + "index": 8, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 65.93, + "y": 124.91133, + "index": 9, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 70.198, + "y": 120.64333, + "index": 10, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 75.773, + "y": 118.33333, + "index": 11, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 81.809, + "y": 118.33333, + "index": 12, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 87.384, + "y": 120.64333, + "index": 13, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 91.652, + "y": 124.91133, + "index": 14, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 93.962, + "y": 130.48633, + "index": 15, + "body": { + "#": 136 + }, + "isInternal": false + }, + { + "x": 78.791, + "y": 133.50433 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 162 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 164 + }, + "max": { + "#": 165 + } + }, + { + "x": 63.62, + "y": 118.33333 + }, + { + "x": 93.962, + "y": 148.67533 + }, + { + "x": 78.791, + "y": 130.44878 + }, + [ + { + "#": 168 + }, + { + "#": 169 + }, + { + "#": 170 + }, + { + "#": 171 + }, + { + "#": 172 + }, + { + "#": 173 + }, + { + "#": 174 + }, + { + "#": 175 + } + ], + { + "x": -0.92384, + "y": -0.38279 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38279, + "y": -0.92384 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38279, + "y": -0.92384 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92384, + "y": -0.38279 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "1,1,2,3", + "startCol": 1, + "endCol": 1, + "startRow": 2, + "endRow": 3 + }, + { + "id": 7, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 178 + }, + "angle": 0, + "vertices": { + "#": 179 + }, + "position": { + "#": 200 + }, + "force": { + "#": 201 + }, + "torque": 0, + "positionImpulse": { + "#": 202 + }, + "constraintImpulse": { + "#": 203 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 204 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 205 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 206 + }, + "circleRadius": 18.19466, + "bounds": { + "#": 208 + }, + "positionPrev": { + "#": 211 + }, + "anglePrev": 0, + "axes": { + "#": 212 + }, + "area": 1023.02802, + "mass": 1.02303, + "inverseMass": 0.97749, + "inertia": 666.31404, + "inverseInertia": 0.0015, + "parent": { + "#": 177 + }, + "sleepCounter": 0, + "region": { + "#": 223 + } + }, + [ + { + "#": 177 + } + ], + [ + { + "#": 180 + }, + { + "#": 181 + }, + { + "#": 182 + }, + { + "#": 183 + }, + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + }, + { + "#": 188 + }, + { + "#": 189 + }, + { + "#": 190 + }, + { + "#": 191 + }, + { + "#": 192 + }, + { + "#": 193 + }, + { + "#": 194 + }, + { + "#": 195 + }, + { + "#": 196 + }, + { + "#": 197 + }, + { + "#": 198 + }, + { + "#": 199 + } + ], + { + "x": 149.904, + "y": 139.15033, + "index": 0, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 148.145, + "y": 144.56433, + "index": 1, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 144.799, + "y": 149.17033, + "index": 2, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 140.193, + "y": 152.51633, + "index": 3, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 134.779, + "y": 154.27533, + "index": 4, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 129.087, + "y": 154.27533, + "index": 5, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 123.673, + "y": 152.51633, + "index": 6, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 119.067, + "y": 149.17033, + "index": 7, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 115.721, + "y": 144.56433, + "index": 8, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 113.962, + "y": 139.15033, + "index": 9, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 113.962, + "y": 133.45833, + "index": 10, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 115.721, + "y": 128.04433, + "index": 11, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 119.067, + "y": 123.43833, + "index": 12, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 123.673, + "y": 120.09233, + "index": 13, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 129.087, + "y": 118.33333, + "index": 14, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 134.779, + "y": 118.33333, + "index": 15, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 140.193, + "y": 120.09233, + "index": 16, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 144.799, + "y": 123.43833, + "index": 17, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 148.145, + "y": 128.04433, + "index": 18, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 149.904, + "y": 133.45833, + "index": 19, + "body": { + "#": 177 + }, + "isInternal": false + }, + { + "x": 131.933, + "y": 136.30433 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 207 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 209 + }, + "max": { + "#": 210 + } + }, + { + "x": 113.962, + "y": 118.33333 + }, + { + "x": 149.904, + "y": 154.27533 + }, + { + "x": 131.933, + "y": 133.24878 + }, + [ + { + "#": 213 + }, + { + "#": 214 + }, + { + "#": 215 + }, + { + "#": 216 + }, + { + "#": 217 + }, + { + "#": 218 + }, + { + "#": 219 + }, + { + "#": 220 + }, + { + "#": 221 + }, + { + "#": 222 + } + ], + { + "x": -0.95106, + "y": -0.309 + }, + { + "x": -0.80905, + "y": -0.58773 + }, + { + "x": -0.58773, + "y": -0.80905 + }, + { + "x": -0.309, + "y": -0.95106 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.309, + "y": -0.95106 + }, + { + "x": 0.58773, + "y": -0.80905 + }, + { + "x": 0.80905, + "y": -0.58773 + }, + { + "x": 0.95106, + "y": -0.309 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,3,2,3", + "startCol": 2, + "endCol": 3, + "startRow": 2, + "endRow": 3 + }, + { + "id": 8, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 225 + }, + "angle": 0, + "vertices": { + "#": 226 + }, + "position": { + "#": 241 + }, + "force": { + "#": 242 + }, + "torque": 0, + "positionImpulse": { + "#": 243 + }, + "constraintImpulse": { + "#": 244 + }, + "totalContacts": 0, + "speed": 3.05558, + "angularSpeed": 0, + "velocity": { + "#": 245 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 246 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 247 + }, + "circleRadius": 13.75081, + "bounds": { + "#": 249 + }, + "positionPrev": { + "#": 252 + }, + "anglePrev": 0, + "axes": { + "#": 253 + }, + "area": 574.28005, + "mass": 0.57428, + "inverseMass": 1.74131, + "inertia": 210.00414, + "inverseInertia": 0.00476, + "parent": { + "#": 224 + }, + "sleepCounter": 0, + "region": { + "#": 261 + } + }, + [ + { + "#": 224 + } + ], + [ + { + "#": 227 + }, + { + "#": 228 + }, + { + "#": 229 + }, + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + }, + { + "#": 234 + }, + { + "#": 235 + }, + { + "#": 236 + }, + { + "#": 237 + }, + { + "#": 238 + }, + { + "#": 239 + }, + { + "#": 240 + } + ], + { + "x": 192.36386, + "y": 133.04853, + "index": 0, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 189.70884, + "y": 138.56152, + "index": 1, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 184.92383, + "y": 142.37751, + "index": 2, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 178.95783, + "y": 143.73949, + "index": 3, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 172.99183, + "y": 142.37747, + "index": 4, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 168.20684, + "y": 138.56146, + "index": 5, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 165.55186, + "y": 133.04845, + "index": 6, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 165.55188, + "y": 126.92845, + "index": 7, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 168.2069, + "y": 121.41546, + "index": 8, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 172.99191, + "y": 117.59947, + "index": 9, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 178.95792, + "y": 116.23749, + "index": 10, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 184.92391, + "y": 117.59951, + "index": 11, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 189.7089, + "y": 121.41552, + "index": 12, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 192.36388, + "y": 126.92853, + "index": 13, + "body": { + "#": 224 + }, + "isInternal": false + }, + { + "x": 178.95787, + "y": 129.98849 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00002, + "y": 3.05558 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 248 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 250 + }, + "max": { + "#": 251 + } + }, + { + "x": 165.55186, + "y": 116.23749 + }, + { + "x": 192.36388, + "y": 143.73949 + }, + { + "x": 178.95789, + "y": 126.93291 + }, + [ + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + }, + { + "#": 257 + }, + { + "#": 258 + }, + { + "#": 259 + }, + { + "#": 260 + } + ], + { + "x": -0.90096, + "y": -0.4339 + }, + { + "x": -0.6235, + "y": -0.78183 + }, + { + "x": -0.22256, + "y": -0.97492 + }, + { + "x": 0.22257, + "y": -0.97492 + }, + { + "x": 0.6235, + "y": -0.78182 + }, + { + "x": 0.90097, + "y": -0.43389 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,2,2", + "startCol": 3, + "endCol": 4, + "startRow": 2, + "endRow": 2 + }, + { + "id": 9, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 263 + }, + "angle": 0, + "vertices": { + "#": 264 + }, + "position": { + "#": 285 + }, + "force": { + "#": 286 + }, + "torque": 0, + "positionImpulse": { + "#": 287 + }, + "constraintImpulse": { + "#": 288 + }, + "totalContacts": 0, + "speed": 3.05552, + "angularSpeed": 0, + "velocity": { + "#": 289 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 290 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 291 + }, + "circleRadius": 19.66705, + "bounds": { + "#": 293 + }, + "positionPrev": { + "#": 296 + }, + "anglePrev": 0, + "axes": { + "#": 297 + }, + "area": 1195.26015, + "mass": 1.19526, + "inverseMass": 0.83664, + "inertia": 909.55462, + "inverseInertia": 0.0011, + "parent": { + "#": 262 + }, + "sleepCounter": 0, + "region": { + "#": 308 + } + }, + [ + { + "#": 262 + } + ], + [ + { + "#": 265 + }, + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + }, + { + "#": 270 + }, + { + "#": 271 + }, + { + "#": 272 + }, + { + "#": 273 + }, + { + "#": 274 + }, + { + "#": 275 + }, + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + }, + { + "#": 280 + }, + { + "#": 281 + }, + { + "#": 282 + }, + { + "#": 283 + }, + { + "#": 284 + } + ], + { + "x": 226.75418, + "y": 150.68616, + "index": 0, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 224.85218, + "y": 156.53816, + "index": 1, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 221.23617, + "y": 161.51616, + "index": 2, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 216.25817, + "y": 165.13215, + "index": 3, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 210.40617, + "y": 167.03415, + "index": 4, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 204.25217, + "y": 167.03414, + "index": 5, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 198.40017, + "y": 165.13214, + "index": 6, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 193.42217, + "y": 161.51613, + "index": 7, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 189.80618, + "y": 156.53813, + "index": 8, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 187.90418, + "y": 150.68613, + "index": 9, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 187.90419, + "y": 144.53213, + "index": 10, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 189.80619, + "y": 138.68013, + "index": 11, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 193.4222, + "y": 133.70213, + "index": 12, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 198.4002, + "y": 130.08614, + "index": 13, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 204.2522, + "y": 128.18414, + "index": 14, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 210.4062, + "y": 128.18415, + "index": 15, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 216.2582, + "y": 130.08615, + "index": 16, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 221.2362, + "y": 133.70216, + "index": 17, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 224.85219, + "y": 138.68016, + "index": 18, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 226.75419, + "y": 144.53216, + "index": 19, + "body": { + "#": 262 + }, + "isInternal": false + }, + { + "x": 207.32918, + "y": 147.60915 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.08364, + "y": 0.19799 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00001, + "y": 3.05552 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 292 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 294 + }, + "max": { + "#": 295 + } + }, + { + "x": 187.90418, + "y": 128.18414 + }, + { + "x": 226.7542, + "y": 170.08967 + }, + { + "x": 207.32917, + "y": 144.55362 + }, + [ + { + "#": 298 + }, + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + }, + { + "#": 303 + }, + { + "#": 304 + }, + { + "#": 305 + }, + { + "#": 306 + }, + { + "#": 307 + } + ], + { + "x": -0.95103, + "y": -0.3091 + }, + { + "x": -0.80907, + "y": -0.58771 + }, + { + "x": -0.58771, + "y": -0.80907 + }, + { + "x": -0.3091, + "y": -0.95103 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.3091, + "y": -0.95103 + }, + { + "x": 0.58771, + "y": -0.80907 + }, + { + "x": 0.80907, + "y": -0.58771 + }, + { + "x": 0.95103, + "y": -0.3091 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,2,3", + "startCol": 3, + "endCol": 4, + "startRow": 2, + "endRow": 3 + }, + { + "id": 10, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 310 + }, + "angle": -0.00001, + "vertices": { + "#": 311 + }, + "position": { + "#": 324 + }, + "force": { + "#": 325 + }, + "torque": 0, + "positionImpulse": { + "#": 326 + }, + "constraintImpulse": { + "#": 327 + }, + "totalContacts": 0, + "speed": 3.05555, + "angularSpeed": 0, + "velocity": { + "#": 328 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 329 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 330 + }, + "circleRadius": 11.99276, + "bounds": { + "#": 332 + }, + "positionPrev": { + "#": 335 + }, + "anglePrev": -0.00001, + "axes": { + "#": 336 + }, + "area": 431.46854, + "mass": 0.43147, + "inverseMass": 2.31767, + "inertia": 118.56754, + "inverseInertia": 0.00843, + "parent": { + "#": 309 + }, + "sleepCounter": 0, + "region": { + "#": 343 + } + }, + [ + { + "#": 309 + } + ], + [ + { + "#": 312 + }, + { + "#": 313 + }, + { + "#": 314 + }, + { + "#": 315 + }, + { + "#": 316 + }, + { + "#": 317 + }, + { + "#": 318 + }, + { + "#": 319 + }, + { + "#": 320 + }, + { + "#": 321 + }, + { + "#": 322 + }, + { + "#": 323 + } + ], + { + "x": 257.19249, + "y": 156.78061, + "index": 0, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 254.08855, + "y": 162.15664, + "index": 1, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 248.71258, + "y": 165.2607, + "index": 2, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 242.50458, + "y": 165.26077, + "index": 3, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 237.12855, + "y": 162.15683, + "index": 4, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 234.02449, + "y": 156.78087, + "index": 5, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 234.02442, + "y": 150.57287, + "index": 6, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 237.12836, + "y": 145.19683, + "index": 7, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 242.50432, + "y": 142.09277, + "index": 8, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 248.71232, + "y": 142.0927, + "index": 9, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 254.08836, + "y": 145.19664, + "index": 10, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 257.19242, + "y": 150.57261, + "index": 11, + "body": { + "#": 309 + }, + "isInternal": false + }, + { + "x": 245.60845, + "y": 153.67674 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00004, + "y": 3.05555 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 331 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 333 + }, + "max": { + "#": 334 + } + }, + { + "x": 234.02442, + "y": 142.0927 + }, + { + "x": 257.19249, + "y": 165.26077 + }, + { + "x": 245.60841, + "y": 150.62119 + }, + [ + { + "#": 337 + }, + { + "#": 338 + }, + { + "#": 339 + }, + { + "#": 340 + }, + { + "#": 341 + }, + { + "#": 342 + } + ], + { + "x": -0.86602, + "y": -0.50001 + }, + { + "x": -0.50003, + "y": -0.86601 + }, + { + "x": -0.00001, + "y": -1 + }, + { + "x": 0.50001, + "y": -0.86602 + }, + { + "x": 0.86601, + "y": -0.50003 + }, + { + "x": 1, + "y": -0.00001 + }, + { + "id": "4,5,2,3", + "startCol": 4, + "endCol": 5, + "startRow": 2, + "endRow": 3 + }, + { + "id": 11, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 345 + }, + "angle": 0, + "vertices": { + "#": 346 + }, + "position": { + "#": 365 + }, + "force": { + "#": 366 + }, + "torque": 0, + "positionImpulse": { + "#": 367 + }, + "constraintImpulse": { + "#": 368 + }, + "totalContacts": 0, + "speed": 3.05555, + "angularSpeed": 0, + "velocity": { + "#": 369 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 370 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 371 + }, + "circleRadius": 16.40694, + "bounds": { + "#": 373 + }, + "positionPrev": { + "#": 376 + }, + "anglePrev": 0, + "axes": { + "#": 377 + }, + "area": 828.5976, + "mass": 0.8286, + "inverseMass": 1.20686, + "inertia": 437.12315, + "inverseInertia": 0.00229, + "parent": { + "#": 344 + }, + "sleepCounter": 0, + "region": { + "#": 387 + } + }, + [ + { + "#": 344 + } + ], + [ + { + "#": 347 + }, + { + "#": 348 + }, + { + "#": 349 + }, + { + "#": 350 + }, + { + "#": 351 + }, + { + "#": 352 + }, + { + "#": 353 + }, + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + }, + { + "#": 358 + }, + { + "#": 359 + }, + { + "#": 360 + }, + { + "#": 361 + }, + { + "#": 362 + }, + { + "#": 363 + }, + { + "#": 364 + } + ], + { + "x": 372.80753, + "y": 159.04007, + "index": 0, + "body": { + "#": 344 + }, + "isInternal": false + }, + { + "x": 370.85853, + "y": 164.39407, + "index": 1, + "body": { + "#": 344 + }, + "isInternal": false + }, + { + "x": 367.19553, + "y": 168.75907, + "index": 2, + "body": { + "#": 344 + }, + "isInternal": false + }, + { + "x": 362.26153, + "y": 171.60807, + "index": 3, + "body": { + "#": 344 + }, + "isInternal": false + }, + { + "x": 356.64953, + "y": 172.59807, + "index": 4, + "body": { + "#": 344 + }, + "isInternal": false + }, + { + "x": 351.03753, + "y": 171.60807, + "index": 5, + "body": { + "#": 344 + }, + "isInternal": false + }, + { + "x": 346.10353, + "y": 168.75907, + "index": 6, + "body": { + "#": 344 + }, + "isInternal": false + }, + { + "x": 342.44053, + "y": 164.39407, + "index": 7, + "body": { + "#": 344 + }, + "isInternal": false + }, + { + "x": 340.49153, + "y": 159.04007, + "index": 8, + "body": { + "#": 344 + }, + "isInternal": false + }, + { + "x": 340.49153, + "y": 153.34207, + "index": 9, + "body": { + "#": 344 + }, + "isInternal": false + }, + { + "x": 342.44053, + "y": 147.98807, + "index": 10, + "body": { + "#": 344 + }, + "isInternal": false + }, + { + "x": 346.10353, + "y": 143.62307, + "index": 11, + "body": { + "#": 344 + }, + "isInternal": false + }, + { + "x": 351.03753, + "y": 140.77407, + "index": 12, + "body": { + "#": 344 + }, + "isInternal": false + }, + { + "x": 356.64953, + "y": 139.78407, + "index": 13, + "body": { + "#": 344 + }, + "isInternal": false + }, + { + "x": 362.26153, + "y": 140.77407, + "index": 14, + "body": { + "#": 344 + }, + "isInternal": false + }, + { + "x": 367.19553, + "y": 143.62307, + "index": 15, + "body": { + "#": 344 + }, + "isInternal": false + }, + { + "x": 370.85853, + "y": 147.98807, + "index": 16, + "body": { + "#": 344 + }, + "isInternal": false + }, + { + "x": 372.80753, + "y": 153.34207, + "index": 17, + "body": { + "#": 344 + }, + "isInternal": false + }, + { + "x": 356.64953, + "y": 156.19107 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.20045, + "y": 0.12468 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05555 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 372 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 374 + }, + "max": { + "#": 375 + } + }, + { + "x": 340.49153, + "y": 139.78407 + }, + { + "x": 372.80753, + "y": 175.65362 + }, + { + "x": 356.64953, + "y": 153.13552 + }, + [ + { + "#": 378 + }, + { + "#": 379 + }, + { + "#": 380 + }, + { + "#": 381 + }, + { + "#": 382 + }, + { + "#": 383 + }, + { + "#": 384 + }, + { + "#": 385 + }, + { + "#": 386 + } + ], + { + "x": -0.93968, + "y": -0.34207 + }, + { + "x": -0.76602, + "y": -0.64282 + }, + { + "x": -0.50005, + "y": -0.866 + }, + { + "x": -0.17373, + "y": -0.98479 + }, + { + "x": 0.17373, + "y": -0.98479 + }, + { + "x": 0.50005, + "y": -0.866 + }, + { + "x": 0.76602, + "y": -0.64282 + }, + { + "x": 0.93968, + "y": -0.34207 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,7,2,3", + "startCol": 7, + "endCol": 7, + "startRow": 2, + "endRow": 3 + }, + { + "id": 12, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 389 + }, + "angle": 0, + "vertices": { + "#": 390 + }, + "position": { + "#": 407 + }, + "force": { + "#": 408 + }, + "torque": 0, + "positionImpulse": { + "#": 409 + }, + "constraintImpulse": { + "#": 410 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 411 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 412 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 413 + }, + "circleRadius": 15.99601, + "bounds": { + "#": 415 + }, + "positionPrev": { + "#": 418 + }, + "anglePrev": 0, + "axes": { + "#": 419 + }, + "area": 783.35931, + "mass": 0.78336, + "inverseMass": 1.27655, + "inertia": 390.71545, + "inverseInertia": 0.00256, + "parent": { + "#": 388 + }, + "sleepCounter": 0, + "region": { + "#": 428 + } + }, + [ + { + "#": 388 + } + ], + [ + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + }, + { + "#": 395 + }, + { + "#": 396 + }, + { + "#": 397 + }, + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + }, + { + "#": 402 + }, + { + "#": 403 + }, + { + "#": 404 + }, + { + "#": 405 + }, + { + "#": 406 + } + ], + { + "x": 402.428, + "y": 137.14333, + "index": 0, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 400.039, + "y": 142.90933, + "index": 1, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 395.626, + "y": 147.32233, + "index": 2, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 389.86, + "y": 149.71133, + "index": 3, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 383.618, + "y": 149.71133, + "index": 4, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 377.852, + "y": 147.32233, + "index": 5, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 373.439, + "y": 142.90933, + "index": 6, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 371.05, + "y": 137.14333, + "index": 7, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 371.05, + "y": 130.90133, + "index": 8, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 373.439, + "y": 125.13533, + "index": 9, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 377.852, + "y": 120.72233, + "index": 10, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 383.618, + "y": 118.33333, + "index": 11, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 389.86, + "y": 118.33333, + "index": 12, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 395.626, + "y": 120.72233, + "index": 13, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 400.039, + "y": 125.13533, + "index": 14, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 402.428, + "y": 130.90133, + "index": 15, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 386.739, + "y": 134.02233 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 414 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 416 + }, + "max": { + "#": 417 + } + }, + { + "x": 371.05, + "y": 118.33333 + }, + { + "x": 402.428, + "y": 149.71133 + }, + { + "x": 386.739, + "y": 130.96678 + }, + [ + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + }, + { + "#": 424 + }, + { + "#": 425 + }, + { + "#": 426 + }, + { + "#": 427 + } + ], + { + "x": -0.92384, + "y": -0.38277 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38277, + "y": -0.92384 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38277, + "y": -0.92384 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92384, + "y": -0.38277 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,2,3", + "startCol": 7, + "endCol": 8, + "startRow": 2, + "endRow": 3 + }, + { + "id": 13, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 430 + }, + "angle": 0, + "vertices": { + "#": 431 + }, + "position": { + "#": 448 + }, + "force": { + "#": 449 + }, + "torque": 0, + "positionImpulse": { + "#": 450 + }, + "constraintImpulse": { + "#": 451 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 452 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 453 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 454 + }, + "circleRadius": 15.69826, + "bounds": { + "#": 456 + }, + "positionPrev": { + "#": 459 + }, + "anglePrev": 0, + "axes": { + "#": 460 + }, + "area": 754.47757, + "mass": 0.75448, + "inverseMass": 1.32542, + "inertia": 362.43592, + "inverseInertia": 0.00276, + "parent": { + "#": 429 + }, + "sleepCounter": 0, + "region": { + "#": 469 + } + }, + [ + { + "#": 429 + } + ], + [ + { + "#": 432 + }, + { + "#": 433 + }, + { + "#": 434 + }, + { + "#": 435 + }, + { + "#": 436 + }, + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + }, + { + "#": 441 + }, + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + }, + { + "#": 446 + }, + { + "#": 447 + } + ], + { + "x": 465.11829, + "y": 149.742, + "index": 0, + "body": { + "#": 429 + }, + "isInternal": false + }, + { + "x": 462.77429, + "y": 155.40001, + "index": 1, + "body": { + "#": 429 + }, + "isInternal": false + }, + { + "x": 458.44229, + "y": 159.73201, + "index": 2, + "body": { + "#": 429 + }, + "isInternal": false + }, + { + "x": 452.78429, + "y": 162.07601, + "index": 3, + "body": { + "#": 429 + }, + "isInternal": false + }, + { + "x": 446.65829, + "y": 162.07601, + "index": 4, + "body": { + "#": 429 + }, + "isInternal": false + }, + { + "x": 441.00029, + "y": 159.73201, + "index": 5, + "body": { + "#": 429 + }, + "isInternal": false + }, + { + "x": 436.66829, + "y": 155.40001, + "index": 6, + "body": { + "#": 429 + }, + "isInternal": false + }, + { + "x": 434.32429, + "y": 149.74201, + "index": 7, + "body": { + "#": 429 + }, + "isInternal": false + }, + { + "x": 434.32429, + "y": 143.61601, + "index": 8, + "body": { + "#": 429 + }, + "isInternal": false + }, + { + "x": 436.66829, + "y": 137.95801, + "index": 9, + "body": { + "#": 429 + }, + "isInternal": false + }, + { + "x": 441.00029, + "y": 133.62601, + "index": 10, + "body": { + "#": 429 + }, + "isInternal": false + }, + { + "x": 446.65829, + "y": 131.28201, + "index": 11, + "body": { + "#": 429 + }, + "isInternal": false + }, + { + "x": 452.78429, + "y": 131.28201, + "index": 12, + "body": { + "#": 429 + }, + "isInternal": false + }, + { + "x": 458.44229, + "y": 133.62601, + "index": 13, + "body": { + "#": 429 + }, + "isInternal": false + }, + { + "x": 462.77429, + "y": 137.95801, + "index": 14, + "body": { + "#": 429 + }, + "isInternal": false + }, + { + "x": 465.11829, + "y": 143.616, + "index": 15, + "body": { + "#": 429 + }, + "isInternal": false + }, + { + "x": 449.72129, + "y": 146.67901 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.22358, + "y": 0.14019 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 455 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 457 + }, + "max": { + "#": 458 + } + }, + { + "x": 434.32429, + "y": 131.28201 + }, + { + "x": 465.11829, + "y": 165.13156 + }, + { + "x": 449.72129, + "y": 143.62345 + }, + [ + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + }, + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + }, + { + "#": 468 + } + ], + { + "x": -0.92386, + "y": -0.38274 + }, + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": -0.38274, + "y": -0.92386 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38274, + "y": -0.92386 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 0.92386, + "y": -0.38274 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,2,3", + "startCol": 9, + "endCol": 9, + "startRow": 2, + "endRow": 3 + }, + { + "id": 14, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 471 + }, + "angle": 0, + "vertices": { + "#": 472 + }, + "position": { + "#": 487 + }, + "force": { + "#": 488 + }, + "torque": 0, + "positionImpulse": { + "#": 489 + }, + "constraintImpulse": { + "#": 490 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 491 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 492 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 493 + }, + "circleRadius": 13.41491, + "bounds": { + "#": 495 + }, + "positionPrev": { + "#": 498 + }, + "anglePrev": 0, + "axes": { + "#": 499 + }, + "area": 546.57346, + "mass": 0.54657, + "inverseMass": 1.82958, + "inertia": 190.22933, + "inverseInertia": 0.00526, + "parent": { + "#": 470 + }, + "sleepCounter": 0, + "region": { + "#": 507 + } + }, + [ + { + "#": 470 + } + ], + [ + { + "#": 473 + }, + { + "#": 474 + }, + { + "#": 475 + }, + { + "#": 476 + }, + { + "#": 477 + }, + { + "#": 478 + }, + { + "#": 479 + }, + { + "#": 480 + }, + { + "#": 481 + }, + { + "#": 482 + }, + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + } + ], + { + "x": 499.38, + "y": 134.73333, + "index": 0, + "body": { + "#": 470 + }, + "isInternal": false + }, + { + "x": 496.789, + "y": 140.11233, + "index": 1, + "body": { + "#": 470 + }, + "isInternal": false + }, + { + "x": 492.122, + "y": 143.83433, + "index": 2, + "body": { + "#": 470 + }, + "isInternal": false + }, + { + "x": 486.301, + "y": 145.16333, + "index": 3, + "body": { + "#": 470 + }, + "isInternal": false + }, + { + "x": 480.48, + "y": 143.83433, + "index": 4, + "body": { + "#": 470 + }, + "isInternal": false + }, + { + "x": 475.813, + "y": 140.11233, + "index": 5, + "body": { + "#": 470 + }, + "isInternal": false + }, + { + "x": 473.222, + "y": 134.73333, + "index": 6, + "body": { + "#": 470 + }, + "isInternal": false + }, + { + "x": 473.222, + "y": 128.76333, + "index": 7, + "body": { + "#": 470 + }, + "isInternal": false + }, + { + "x": 475.813, + "y": 123.38433, + "index": 8, + "body": { + "#": 470 + }, + "isInternal": false + }, + { + "x": 480.48, + "y": 119.66233, + "index": 9, + "body": { + "#": 470 + }, + "isInternal": false + }, + { + "x": 486.301, + "y": 118.33333, + "index": 10, + "body": { + "#": 470 + }, + "isInternal": false + }, + { + "x": 492.122, + "y": 119.66233, + "index": 11, + "body": { + "#": 470 + }, + "isInternal": false + }, + { + "x": 496.789, + "y": 123.38433, + "index": 12, + "body": { + "#": 470 + }, + "isInternal": false + }, + { + "x": 499.38, + "y": 128.76333, + "index": 13, + "body": { + "#": 470 + }, + "isInternal": false + }, + { + "x": 486.301, + "y": 131.74833 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 494 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 496 + }, + "max": { + "#": 497 + } + }, + { + "x": 473.222, + "y": 118.33333 + }, + { + "x": 499.38, + "y": 145.16333 + }, + { + "x": 486.301, + "y": 128.69278 + }, + [ + { + "#": 500 + }, + { + "#": 501 + }, + { + "#": 502 + }, + { + "#": 503 + }, + { + "#": 504 + }, + { + "#": 505 + }, + { + "#": 506 + } + ], + { + "x": -0.90093, + "y": -0.43397 + }, + { + "x": -0.62351, + "y": -0.78182 + }, + { + "x": -0.22258, + "y": -0.97491 + }, + { + "x": 0.22258, + "y": -0.97491 + }, + { + "x": 0.62351, + "y": -0.78182 + }, + { + "x": 0.90093, + "y": -0.43397 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,2,3", + "startCol": 9, + "endCol": 10, + "startRow": 2, + "endRow": 3 + }, + { + "id": 15, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 509 + }, + "angle": 0, + "vertices": { + "#": 510 + }, + "position": { + "#": 529 + }, + "force": { + "#": 530 + }, + "torque": 0, + "positionImpulse": { + "#": 531 + }, + "constraintImpulse": { + "#": 532 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 533 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 534 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 535 + }, + "circleRadius": 17.78794, + "bounds": { + "#": 537 + }, + "positionPrev": { + "#": 540 + }, + "anglePrev": 0, + "axes": { + "#": 541 + }, + "area": 973.9752, + "mass": 0.97398, + "inverseMass": 1.02672, + "inertia": 603.96569, + "inverseInertia": 0.00166, + "parent": { + "#": 508 + }, + "sleepCounter": 0, + "region": { + "#": 551 + } + }, + [ + { + "#": 508 + } + ], + [ + { + "#": 511 + }, + { + "#": 512 + }, + { + "#": 513 + }, + { + "#": 514 + }, + { + "#": 515 + }, + { + "#": 516 + }, + { + "#": 517 + }, + { + "#": 518 + }, + { + "#": 519 + }, + { + "#": 520 + }, + { + "#": 521 + }, + { + "#": 522 + }, + { + "#": 523 + }, + { + "#": 524 + }, + { + "#": 525 + }, + { + "#": 526 + }, + { + "#": 527 + }, + { + "#": 528 + } + ], + { + "x": 554.416, + "y": 139.21033, + "index": 0, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 552.303, + "y": 145.01533, + "index": 1, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 548.332, + "y": 149.74733, + "index": 2, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 542.982, + "y": 152.83633, + "index": 3, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 536.898, + "y": 153.90933, + "index": 4, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 530.814, + "y": 152.83633, + "index": 5, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 525.464, + "y": 149.74733, + "index": 6, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 521.493, + "y": 145.01533, + "index": 7, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 519.38, + "y": 139.21033, + "index": 8, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 519.38, + "y": 133.03233, + "index": 9, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 521.493, + "y": 127.22733, + "index": 10, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 525.464, + "y": 122.49533, + "index": 11, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 530.814, + "y": 119.40633, + "index": 12, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 536.898, + "y": 118.33333, + "index": 13, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 542.982, + "y": 119.40633, + "index": 14, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 548.332, + "y": 122.49533, + "index": 15, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 552.303, + "y": 127.22733, + "index": 16, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 554.416, + "y": 133.03233, + "index": 17, + "body": { + "#": 508 + }, + "isInternal": false + }, + { + "x": 536.898, + "y": 136.12133 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 536 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 538 + }, + "max": { + "#": 539 + } + }, + { + "x": 519.38, + "y": 118.33333 + }, + { + "x": 554.416, + "y": 153.90933 + }, + { + "x": 536.898, + "y": 133.06578 + }, + [ + { + "#": 542 + }, + { + "#": 543 + }, + { + "#": 544 + }, + { + "#": 545 + }, + { + "#": 546 + }, + { + "#": 547 + }, + { + "#": 548 + }, + { + "#": 549 + }, + { + "#": 550 + } + ], + { + "x": -0.93968, + "y": -0.34204 + }, + { + "x": -0.76601, + "y": -0.64282 + }, + { + "x": -0.50002, + "y": -0.86601 + }, + { + "x": -0.17368, + "y": -0.9848 + }, + { + "x": 0.17368, + "y": -0.9848 + }, + { + "x": 0.50002, + "y": -0.86601 + }, + { + "x": 0.76601, + "y": -0.64282 + }, + { + "x": 0.93968, + "y": -0.34204 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,2,3", + "startCol": 10, + "endCol": 11, + "startRow": 2, + "endRow": 3 + }, + { + "id": 16, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 553 + }, + "angle": 0, + "vertices": { + "#": 554 + }, + "position": { + "#": 569 + }, + "force": { + "#": 570 + }, + "torque": 0, + "positionImpulse": { + "#": 571 + }, + "constraintImpulse": { + "#": 572 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 573 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 574 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 575 + }, + "circleRadius": 12.6445, + "bounds": { + "#": 577 + }, + "positionPrev": { + "#": 580 + }, + "anglePrev": 0, + "axes": { + "#": 581 + }, + "area": 485.5904, + "mass": 0.48559, + "inverseMass": 2.05935, + "inertia": 150.14836, + "inverseInertia": 0.00666, + "parent": { + "#": 552 + }, + "sleepCounter": 0, + "region": { + "#": 589 + } + }, + [ + { + "#": 552 + } + ], + [ + { + "#": 555 + }, + { + "#": 556 + }, + { + "#": 557 + }, + { + "#": 558 + }, + { + "#": 559 + }, + { + "#": 560 + }, + { + "#": 561 + }, + { + "#": 562 + }, + { + "#": 563 + }, + { + "#": 564 + }, + { + "#": 565 + }, + { + "#": 566 + }, + { + "#": 567 + }, + { + "#": 568 + } + ], + { + "x": 599.07, + "y": 133.79233, + "index": 0, + "body": { + "#": 552 + }, + "isInternal": false + }, + { + "x": 596.629, + "y": 138.86233, + "index": 1, + "body": { + "#": 552 + }, + "isInternal": false + }, + { + "x": 592.229, + "y": 142.37033, + "index": 2, + "body": { + "#": 552 + }, + "isInternal": false + }, + { + "x": 586.743, + "y": 143.62333, + "index": 3, + "body": { + "#": 552 + }, + "isInternal": false + }, + { + "x": 581.257, + "y": 142.37033, + "index": 4, + "body": { + "#": 552 + }, + "isInternal": false + }, + { + "x": 576.857, + "y": 138.86233, + "index": 5, + "body": { + "#": 552 + }, + "isInternal": false + }, + { + "x": 574.416, + "y": 133.79233, + "index": 6, + "body": { + "#": 552 + }, + "isInternal": false + }, + { + "x": 574.416, + "y": 128.16433, + "index": 7, + "body": { + "#": 552 + }, + "isInternal": false + }, + { + "x": 576.857, + "y": 123.09433, + "index": 8, + "body": { + "#": 552 + }, + "isInternal": false + }, + { + "x": 581.257, + "y": 119.58633, + "index": 9, + "body": { + "#": 552 + }, + "isInternal": false + }, + { + "x": 586.743, + "y": 118.33333, + "index": 10, + "body": { + "#": 552 + }, + "isInternal": false + }, + { + "x": 592.229, + "y": 119.58633, + "index": 11, + "body": { + "#": 552 + }, + "isInternal": false + }, + { + "x": 596.629, + "y": 123.09433, + "index": 12, + "body": { + "#": 552 + }, + "isInternal": false + }, + { + "x": 599.07, + "y": 128.16433, + "index": 13, + "body": { + "#": 552 + }, + "isInternal": false + }, + { + "x": 586.743, + "y": 130.97833 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 576 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 578 + }, + "max": { + "#": 579 + } + }, + { + "x": 574.416, + "y": 118.33333 + }, + { + "x": 599.07, + "y": 143.62333 + }, + { + "x": 586.743, + "y": 127.92278 + }, + [ + { + "#": 582 + }, + { + "#": 583 + }, + { + "#": 584 + }, + { + "#": 585 + }, + { + "#": 586 + }, + { + "#": 587 + }, + { + "#": 588 + } + ], + { + "x": -0.90101, + "y": -0.4338 + }, + { + "x": -0.62339, + "y": -0.78191 + }, + { + "x": -0.22267, + "y": -0.97489 + }, + { + "x": 0.22267, + "y": -0.97489 + }, + { + "x": 0.62339, + "y": -0.78191 + }, + { + "x": 0.90101, + "y": -0.4338 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,2,2", + "startCol": 11, + "endCol": 12, + "startRow": 2, + "endRow": 2 + }, + { + "id": 17, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 591 + }, + "angle": 0, + "vertices": { + "#": 592 + }, + "position": { + "#": 613 + }, + "force": { + "#": 614 + }, + "torque": 0, + "positionImpulse": { + "#": 615 + }, + "constraintImpulse": { + "#": 616 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 617 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 618 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 619 + }, + "circleRadius": 18.10807, + "bounds": { + "#": 621 + }, + "positionPrev": { + "#": 624 + }, + "anglePrev": 0, + "axes": { + "#": 625 + }, + "area": 1013.24488, + "mass": 1.01324, + "inverseMass": 0.98693, + "inertia": 653.63115, + "inverseInertia": 0.00153, + "parent": { + "#": 590 + }, + "sleepCounter": 0, + "region": { + "#": 636 + } + }, + [ + { + "#": 590 + } + ], + [ + { + "#": 593 + }, + { + "#": 594 + }, + { + "#": 595 + }, + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + }, + { + "#": 602 + }, + { + "#": 603 + }, + { + "#": 604 + }, + { + "#": 605 + }, + { + "#": 606 + }, + { + "#": 607 + }, + { + "#": 608 + }, + { + "#": 609 + }, + { + "#": 610 + }, + { + "#": 611 + }, + { + "#": 612 + } + ], + { + "x": 654.84, + "y": 139.05133, + "index": 0, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 653.089, + "y": 144.43933, + "index": 1, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 649.759, + "y": 149.02233, + "index": 2, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 645.176, + "y": 152.35233, + "index": 3, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 639.788, + "y": 154.10333, + "index": 4, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 634.122, + "y": 154.10333, + "index": 5, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 628.734, + "y": 152.35233, + "index": 6, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 624.151, + "y": 149.02233, + "index": 7, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 620.821, + "y": 144.43933, + "index": 8, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 619.07, + "y": 139.05133, + "index": 9, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 619.07, + "y": 133.38533, + "index": 10, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 620.821, + "y": 127.99733, + "index": 11, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 624.151, + "y": 123.41433, + "index": 12, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 628.734, + "y": 120.08433, + "index": 13, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 634.122, + "y": 118.33333, + "index": 14, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 639.788, + "y": 118.33333, + "index": 15, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 645.176, + "y": 120.08433, + "index": 16, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 649.759, + "y": 123.41433, + "index": 17, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 653.089, + "y": 127.99733, + "index": 18, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 654.84, + "y": 133.38533, + "index": 19, + "body": { + "#": 590 + }, + "isInternal": false + }, + { + "x": 636.955, + "y": 136.21833 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 620 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 622 + }, + "max": { + "#": 623 + } + }, + { + "x": 619.07, + "y": 118.33333 + }, + { + "x": 654.84, + "y": 154.10333 + }, + { + "x": 636.955, + "y": 133.16278 + }, + [ + { + "#": 626 + }, + { + "#": 627 + }, + { + "#": 628 + }, + { + "#": 629 + }, + { + "#": 630 + }, + { + "#": 631 + }, + { + "#": 632 + }, + { + "#": 633 + }, + { + "#": 634 + }, + { + "#": 635 + } + ], + { + "x": -0.95104, + "y": -0.30907 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": -0.58781, + "y": -0.809 + }, + { + "x": -0.30907, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30907, + "y": -0.95104 + }, + { + "x": 0.58781, + "y": -0.809 + }, + { + "x": 0.809, + "y": -0.58781 + }, + { + "x": 0.95104, + "y": -0.30907 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,13,2,3", + "startCol": 12, + "endCol": 13, + "startRow": 2, + "endRow": 3 + }, + { + "id": 18, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 638 + }, + "angle": 0, + "vertices": { + "#": 639 + }, + "position": { + "#": 660 + }, + "force": { + "#": 661 + }, + "torque": 0, + "positionImpulse": { + "#": 662 + }, + "constraintImpulse": { + "#": 663 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 664 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 665 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 666 + }, + "circleRadius": 18.37616, + "bounds": { + "#": 668 + }, + "positionPrev": { + "#": 671 + }, + "anglePrev": 0, + "axes": { + "#": 672 + }, + "area": 1043.50458, + "mass": 1.0435, + "inverseMass": 0.95831, + "inertia": 693.25438, + "inverseInertia": 0.00144, + "parent": { + "#": 637 + }, + "sleepCounter": 0, + "region": { + "#": 683 + } + }, + [ + { + "#": 637 + } + ], + [ + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + }, + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + }, + { + "#": 648 + }, + { + "#": 649 + }, + { + "#": 650 + }, + { + "#": 651 + }, + { + "#": 652 + }, + { + "#": 653 + }, + { + "#": 654 + }, + { + "#": 655 + }, + { + "#": 656 + }, + { + "#": 657 + }, + { + "#": 658 + }, + { + "#": 659 + } + ], + { + "x": 711.14, + "y": 139.35833, + "index": 0, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 709.363, + "y": 144.82633, + "index": 1, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 705.984, + "y": 149.47733, + "index": 2, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 701.333, + "y": 152.85633, + "index": 3, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 695.865, + "y": 154.63333, + "index": 4, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 690.115, + "y": 154.63333, + "index": 5, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 684.647, + "y": 152.85633, + "index": 6, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 679.996, + "y": 149.47733, + "index": 7, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 676.617, + "y": 144.82633, + "index": 8, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 674.84, + "y": 139.35833, + "index": 9, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 674.84, + "y": 133.60833, + "index": 10, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 676.617, + "y": 128.14033, + "index": 11, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 679.996, + "y": 123.48933, + "index": 12, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 684.647, + "y": 120.11033, + "index": 13, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 690.115, + "y": 118.33333, + "index": 14, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 695.865, + "y": 118.33333, + "index": 15, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 701.333, + "y": 120.11033, + "index": 16, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 705.984, + "y": 123.48933, + "index": 17, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 709.363, + "y": 128.14033, + "index": 18, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 711.14, + "y": 133.60833, + "index": 19, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 692.99, + "y": 136.48333 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 667 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 669 + }, + "max": { + "#": 670 + } + }, + { + "x": 674.84, + "y": 118.33333 + }, + { + "x": 711.14, + "y": 154.63333 + }, + { + "x": 692.99, + "y": 133.42778 + }, + [ + { + "#": 673 + }, + { + "#": 674 + }, + { + "#": 675 + }, + { + "#": 676 + }, + { + "#": 677 + }, + { + "#": 678 + }, + { + "#": 679 + }, + { + "#": 680 + }, + { + "#": 681 + }, + { + "#": 682 + } + ], + { + "x": -0.95104, + "y": -0.30907 + }, + { + "x": -0.80903, + "y": -0.58777 + }, + { + "x": -0.58777, + "y": -0.80903 + }, + { + "x": -0.30907, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30907, + "y": -0.95104 + }, + { + "x": 0.58777, + "y": -0.80903 + }, + { + "x": 0.80903, + "y": -0.58777 + }, + { + "x": 0.95104, + "y": -0.30907 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "14,14,2,3", + "startCol": 14, + "endCol": 14, + "startRow": 2, + "endRow": 3 + }, + { + "id": 19, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 685 + }, + "angle": 0, + "vertices": { + "#": 686 + }, + "position": { + "#": 705 + }, + "force": { + "#": 706 + }, + "torque": 0, + "positionImpulse": { + "#": 707 + }, + "constraintImpulse": { + "#": 708 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 709 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 710 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 711 + }, + "circleRadius": 16.16482, + "bounds": { + "#": 713 + }, + "positionPrev": { + "#": 716 + }, + "anglePrev": 0, + "axes": { + "#": 717 + }, + "area": 804.33264, + "mass": 0.80433, + "inverseMass": 1.24327, + "inertia": 411.89627, + "inverseInertia": 0.00243, + "parent": { + "#": 684 + }, + "sleepCounter": 0, + "region": { + "#": 727 + } + }, + [ + { + "#": 684 + } + ], + [ + { + "#": 687 + }, + { + "#": 688 + }, + { + "#": 689 + }, + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + }, + { + "#": 694 + }, + { + "#": 695 + }, + { + "#": 696 + }, + { + "#": 697 + }, + { + "#": 698 + }, + { + "#": 699 + }, + { + "#": 700 + }, + { + "#": 701 + }, + { + "#": 702 + }, + { + "#": 703 + }, + { + "#": 704 + } + ], + { + "x": 762.978, + "y": 137.30533, + "index": 0, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 761.058, + "y": 142.58033, + "index": 1, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 757.45, + "y": 146.88133, + "index": 2, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 752.588, + "y": 149.68833, + "index": 3, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 747.059, + "y": 150.66333, + "index": 4, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 741.53, + "y": 149.68833, + "index": 5, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 736.668, + "y": 146.88133, + "index": 6, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 733.06, + "y": 142.58033, + "index": 7, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 731.14, + "y": 137.30533, + "index": 8, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 731.14, + "y": 131.69133, + "index": 9, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 733.06, + "y": 126.41633, + "index": 10, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 736.668, + "y": 122.11533, + "index": 11, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 741.53, + "y": 119.30833, + "index": 12, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 747.059, + "y": 118.33333, + "index": 13, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 752.588, + "y": 119.30833, + "index": 14, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 757.45, + "y": 122.11533, + "index": 15, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 761.058, + "y": 126.41633, + "index": 16, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 762.978, + "y": 131.69133, + "index": 17, + "body": { + "#": 684 + }, + "isInternal": false + }, + { + "x": 747.059, + "y": 134.49833 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 712 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 714 + }, + "max": { + "#": 715 + } + }, + { + "x": 731.14, + "y": 118.33333 + }, + { + "x": 762.978, + "y": 150.66333 + }, + { + "x": 747.059, + "y": 131.44278 + }, + [ + { + "#": 718 + }, + { + "#": 719 + }, + { + "#": 720 + }, + { + "#": 721 + }, + { + "#": 722 + }, + { + "#": 723 + }, + { + "#": 724 + }, + { + "#": 725 + }, + { + "#": 726 + } + ], + { + "x": -0.93969, + "y": -0.34203 + }, + { + "x": -0.76613, + "y": -0.64269 + }, + { + "x": -0.49999, + "y": -0.86603 + }, + { + "x": -0.17366, + "y": -0.98481 + }, + { + "x": 0.17366, + "y": -0.98481 + }, + { + "x": 0.49999, + "y": -0.86603 + }, + { + "x": 0.76613, + "y": -0.64269 + }, + { + "x": 0.93969, + "y": -0.34203 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "15,15,2,3", + "startCol": 15, + "endCol": 15, + "startRow": 2, + "endRow": 3 + }, + { + "id": 20, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 729 + }, + "angle": 0.00025, + "vertices": { + "#": 730 + }, + "position": { + "#": 745 + }, + "force": { + "#": 746 + }, + "torque": 0, + "positionImpulse": { + "#": 747 + }, + "constraintImpulse": { + "#": 748 + }, + "totalContacts": 0, + "speed": 3.05481, + "angularSpeed": 0.00003, + "velocity": { + "#": 749 + }, + "angularVelocity": 0.00003, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 750 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 751 + }, + "circleRadius": 13.81974, + "bounds": { + "#": 753 + }, + "positionPrev": { + "#": 756 + }, + "anglePrev": 0.00022, + "axes": { + "#": 757 + }, + "area": 580.04741, + "mass": 0.58005, + "inverseMass": 1.724, + "inertia": 214.24337, + "inverseInertia": 0.00467, + "parent": { + "#": 728 + }, + "sleepCounter": 0, + "region": { + "#": 765 + } + }, + [ + { + "#": 728 + } + ], + [ + { + "#": 731 + }, + { + "#": 732 + }, + { + "#": 733 + }, + { + "#": 734 + }, + { + "#": 735 + }, + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + }, + { + "#": 740 + }, + { + "#": 741 + }, + { + "#": 742 + }, + { + "#": 743 + }, + { + "#": 744 + } + ], + { + "x": 47.86002, + "y": 214.07471, + "index": 0, + "body": { + "#": 728 + }, + "isInternal": false + }, + { + "x": 45.19064, + "y": 219.61505, + "index": 1, + "body": { + "#": 728 + }, + "isInternal": false + }, + { + "x": 40.38069, + "y": 223.44885, + "index": 2, + "body": { + "#": 728 + }, + "isInternal": false + }, + { + "x": 34.38435, + "y": 224.81636, + "index": 3, + "body": { + "#": 728 + }, + "isInternal": false + }, + { + "x": 28.38869, + "y": 223.44587, + "index": 4, + "body": { + "#": 728 + }, + "isInternal": false + }, + { + "x": 23.58064, + "y": 219.60967, + "index": 5, + "body": { + "#": 728 + }, + "isInternal": false + }, + { + "x": 20.91402, + "y": 214.06801, + "index": 6, + "body": { + "#": 728 + }, + "isInternal": false + }, + { + "x": 20.91555, + "y": 207.91801, + "index": 7, + "body": { + "#": 728 + }, + "isInternal": false + }, + { + "x": 23.58493, + "y": 202.37767, + "index": 8, + "body": { + "#": 728 + }, + "isInternal": false + }, + { + "x": 28.39488, + "y": 198.54387, + "index": 9, + "body": { + "#": 728 + }, + "isInternal": false + }, + { + "x": 34.39122, + "y": 197.17636, + "index": 10, + "body": { + "#": 728 + }, + "isInternal": false + }, + { + "x": 40.38688, + "y": 198.54685, + "index": 11, + "body": { + "#": 728 + }, + "isInternal": false + }, + { + "x": 45.19493, + "y": 202.38305, + "index": 12, + "body": { + "#": 728 + }, + "isInternal": false + }, + { + "x": 47.86155, + "y": 207.92471, + "index": 13, + "body": { + "#": 728 + }, + "isInternal": false + }, + { + "x": 34.38779, + "y": 210.99636 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.01718, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00007, + "y": 3.05481 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 752 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 754 + }, + "max": { + "#": 755 + } + }, + { + "x": 20.91402, + "y": 197.17636 + }, + { + "x": 47.86163, + "y": 227.87117 + }, + { + "x": 34.38771, + "y": 207.94155 + }, + [ + { + "#": 758 + }, + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + }, + { + "#": 763 + }, + { + "#": 764 + } + ], + { + "x": -0.90089, + "y": -0.43405 + }, + { + "x": -0.62329, + "y": -0.78199 + }, + { + "x": -0.22235, + "y": -0.97497 + }, + { + "x": 0.22283, + "y": -0.97486 + }, + { + "x": 0.62368, + "y": -0.78168 + }, + { + "x": 0.9011, + "y": -0.43361 + }, + { + "x": 1, + "y": 0.00025 + }, + { + "id": "0,0,4,4", + "startCol": 0, + "endCol": 0, + "startRow": 4, + "endRow": 4 + }, + { + "id": 21, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 767 + }, + "angle": 0.00001, + "vertices": { + "#": 768 + }, + "position": { + "#": 781 + }, + "force": { + "#": 782 + }, + "torque": 0, + "positionImpulse": { + "#": 783 + }, + "constraintImpulse": { + "#": 784 + }, + "totalContacts": 0, + "speed": 3.0555, + "angularSpeed": 0, + "velocity": { + "#": 785 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 786 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 787 + }, + "circleRadius": 11.09401, + "bounds": { + "#": 789 + }, + "positionPrev": { + "#": 792 + }, + "anglePrev": 0.00001, + "axes": { + "#": 793 + }, + "area": 369.23864, + "mass": 0.36924, + "inverseMass": 2.70828, + "inertia": 86.8324, + "inverseInertia": 0.01152, + "parent": { + "#": 766 + }, + "sleepCounter": 0, + "region": { + "#": 800 + } + }, + [ + { + "#": 766 + } + ], + [ + { + "#": 769 + }, + { + "#": 770 + }, + { + "#": 771 + }, + { + "#": 772 + }, + { + "#": 773 + }, + { + "#": 774 + }, + { + "#": 775 + }, + { + "#": 776 + }, + { + "#": 777 + }, + { + "#": 778 + }, + { + "#": 779 + }, + { + "#": 780 + } + ], + { + "x": 90.5984, + "y": 215.25493, + "index": 0, + "body": { + "#": 766 + }, + "isInternal": false + }, + { + "x": 87.72734, + "y": 220.2289, + "index": 1, + "body": { + "#": 766 + }, + "isInternal": false + }, + { + "x": 82.7533, + "y": 223.09983, + "index": 2, + "body": { + "#": 766 + }, + "isInternal": false + }, + { + "x": 77.0113, + "y": 223.09976, + "index": 3, + "body": { + "#": 766 + }, + "isInternal": false + }, + { + "x": 72.03734, + "y": 220.2287, + "index": 4, + "body": { + "#": 766 + }, + "isInternal": false + }, + { + "x": 69.1664, + "y": 215.25466, + "index": 5, + "body": { + "#": 766 + }, + "isInternal": false + }, + { + "x": 69.16647, + "y": 209.51266, + "index": 6, + "body": { + "#": 766 + }, + "isInternal": false + }, + { + "x": 72.03754, + "y": 204.5387, + "index": 7, + "body": { + "#": 766 + }, + "isInternal": false + }, + { + "x": 77.01157, + "y": 201.66776, + "index": 8, + "body": { + "#": 766 + }, + "isInternal": false + }, + { + "x": 82.75357, + "y": 201.66783, + "index": 9, + "body": { + "#": 766 + }, + "isInternal": false + }, + { + "x": 87.72754, + "y": 204.5389, + "index": 10, + "body": { + "#": 766 + }, + "isInternal": false + }, + { + "x": 90.59847, + "y": 209.51293, + "index": 11, + "body": { + "#": 766 + }, + "isInternal": false + }, + { + "x": 79.88244, + "y": 212.3838 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.08075, + "y": 0.05183 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00002, + "y": 3.0555 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 788 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 790 + }, + "max": { + "#": 791 + } + }, + { + "x": 69.1664, + "y": 201.66776 + }, + { + "x": 90.59849, + "y": 226.15533 + }, + { + "x": 79.88242, + "y": 209.3283 + }, + [ + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + }, + { + "#": 798 + }, + { + "#": 799 + } + ], + { + "x": -0.86607, + "y": -0.49991 + }, + { + "x": -0.49989, + "y": -0.86609 + }, + { + "x": 0.00001, + "y": -1 + }, + { + "x": 0.49991, + "y": -0.86607 + }, + { + "x": 0.86609, + "y": -0.49989 + }, + { + "x": 1, + "y": 0.00001 + }, + { + "id": "1,1,4,4", + "startCol": 1, + "endCol": 1, + "startRow": 4, + "endRow": 4 + }, + { + "id": 22, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 802 + }, + "angle": 0.00001, + "vertices": { + "#": 803 + }, + "position": { + "#": 824 + }, + "force": { + "#": 825 + }, + "torque": 0, + "positionImpulse": { + "#": 826 + }, + "constraintImpulse": { + "#": 827 + }, + "totalContacts": 0, + "speed": 3.05552, + "angularSpeed": 0, + "velocity": { + "#": 828 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 829 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 830 + }, + "circleRadius": 19.59255, + "bounds": { + "#": 832 + }, + "positionPrev": { + "#": 835 + }, + "anglePrev": 0.00001, + "axes": { + "#": 836 + }, + "area": 1186.20081, + "mass": 1.1862, + "inverseMass": 0.84303, + "inertia": 895.81914, + "inverseInertia": 0.00112, + "parent": { + "#": 801 + }, + "sleepCounter": 0, + "region": { + "#": 847 + } + }, + [ + { + "#": 801 + } + ], + [ + { + "#": 804 + }, + { + "#": 805 + }, + { + "#": 806 + }, + { + "#": 807 + }, + { + "#": 808 + }, + { + "#": 809 + }, + { + "#": 810 + }, + { + "#": 811 + }, + { + "#": 812 + }, + { + "#": 813 + }, + { + "#": 814 + }, + { + "#": 815 + }, + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + }, + { + "#": 820 + }, + { + "#": 821 + }, + { + "#": 822 + }, + { + "#": 823 + } + ], + { + "x": 85.99243, + "y": 244.95405, + "index": 0, + "body": { + "#": 801 + }, + "isInternal": false + }, + { + "x": 84.09839, + "y": 250.78404, + "index": 1, + "body": { + "#": 801 + }, + "isInternal": false + }, + { + "x": 80.49536, + "y": 255.74302, + "index": 2, + "body": { + "#": 801 + }, + "isInternal": false + }, + { + "x": 75.53634, + "y": 259.34599, + "index": 3, + "body": { + "#": 801 + }, + "isInternal": false + }, + { + "x": 69.70632, + "y": 261.23995, + "index": 4, + "body": { + "#": 801 + }, + "isInternal": false + }, + { + "x": 63.57632, + "y": 261.23991, + "index": 5, + "body": { + "#": 801 + }, + "isInternal": false + }, + { + "x": 57.74634, + "y": 259.34588, + "index": 6, + "body": { + "#": 801 + }, + "isInternal": false + }, + { + "x": 52.78736, + "y": 255.74285, + "index": 7, + "body": { + "#": 801 + }, + "isInternal": false + }, + { + "x": 49.18439, + "y": 250.78382, + "index": 8, + "body": { + "#": 801 + }, + "isInternal": false + }, + { + "x": 47.29043, + "y": 244.95381, + "index": 9, + "body": { + "#": 801 + }, + "isInternal": false + }, + { + "x": 47.29046, + "y": 238.82381, + "index": 10, + "body": { + "#": 801 + }, + "isInternal": false + }, + { + "x": 49.1845, + "y": 232.99382, + "index": 11, + "body": { + "#": 801 + }, + "isInternal": false + }, + { + "x": 52.78753, + "y": 228.03485, + "index": 12, + "body": { + "#": 801 + }, + "isInternal": false + }, + { + "x": 57.74655, + "y": 224.43188, + "index": 13, + "body": { + "#": 801 + }, + "isInternal": false + }, + { + "x": 63.57657, + "y": 222.53791, + "index": 14, + "body": { + "#": 801 + }, + "isInternal": false + }, + { + "x": 69.70657, + "y": 222.53795, + "index": 15, + "body": { + "#": 801 + }, + "isInternal": false + }, + { + "x": 75.53655, + "y": 224.43199, + "index": 16, + "body": { + "#": 801 + }, + "isInternal": false + }, + { + "x": 80.49553, + "y": 228.03502, + "index": 17, + "body": { + "#": 801 + }, + "isInternal": false + }, + { + "x": 84.0985, + "y": 232.99404, + "index": 18, + "body": { + "#": 801 + }, + "isInternal": false + }, + { + "x": 85.99246, + "y": 238.82405, + "index": 19, + "body": { + "#": 801 + }, + "isInternal": false + }, + { + "x": 66.64144, + "y": 241.88893 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.03661, + "y": 0.11269 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00003, + "y": 3.05552 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 831 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 833 + }, + "max": { + "#": 834 + } + }, + { + "x": 47.29043, + "y": 222.53791 + }, + { + "x": 85.99249, + "y": 264.29547 + }, + { + "x": 66.64142, + "y": 238.83342 + }, + [ + { + "#": 837 + }, + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + }, + { + "#": 842 + }, + { + "#": 843 + }, + { + "#": 844 + }, + { + "#": 845 + }, + { + "#": 846 + } + ], + { + "x": -0.95107, + "y": -0.30898 + }, + { + "x": -0.80901, + "y": -0.5878 + }, + { + "x": -0.58779, + "y": -0.80901 + }, + { + "x": -0.30897, + "y": -0.95107 + }, + { + "x": 0.00001, + "y": -1 + }, + { + "x": 0.30898, + "y": -0.95107 + }, + { + "x": 0.5878, + "y": -0.80901 + }, + { + "x": 0.80901, + "y": -0.58779 + }, + { + "x": 0.95107, + "y": -0.30897 + }, + { + "x": 1, + "y": 0.00001 + }, + { + "id": "0,1,4,5", + "startCol": 0, + "endCol": 1, + "startRow": 4, + "endRow": 5 + }, + { + "id": 23, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 849 + }, + "angle": 0, + "vertices": { + "#": 850 + }, + "position": { + "#": 865 + }, + "force": { + "#": 866 + }, + "torque": 0, + "positionImpulse": { + "#": 867 + }, + "constraintImpulse": { + "#": 868 + }, + "totalContacts": 0, + "speed": 3.05557, + "angularSpeed": 0, + "velocity": { + "#": 869 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 870 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 871 + }, + "circleRadius": 13.88327, + "bounds": { + "#": 873 + }, + "positionPrev": { + "#": 876 + }, + "anglePrev": 0, + "axes": { + "#": 877 + }, + "area": 585.3797, + "mass": 0.58538, + "inverseMass": 1.70829, + "inertia": 218.20048, + "inverseInertia": 0.00458, + "parent": { + "#": 848 + }, + "sleepCounter": 0, + "region": { + "#": 885 + } + }, + [ + { + "#": 848 + } + ], + [ + { + "#": 851 + }, + { + "#": 852 + }, + { + "#": 853 + }, + { + "#": 854 + }, + { + "#": 855 + }, + { + "#": 856 + }, + { + "#": 857 + }, + { + "#": 858 + }, + { + "#": 859 + }, + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + }, + { + "#": 864 + } + ], + { + "x": 229.3125, + "y": 221.5892, + "index": 0, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 226.6315, + "y": 227.15621, + "index": 1, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 221.80151, + "y": 231.00821, + "index": 2, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 215.77751, + "y": 232.38321, + "index": 3, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 209.75351, + "y": 231.00821, + "index": 4, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 204.9235, + "y": 227.15622, + "index": 5, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 202.2425, + "y": 221.58922, + "index": 6, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 202.2425, + "y": 215.41122, + "index": 7, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 204.9235, + "y": 209.84422, + "index": 8, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 209.75349, + "y": 205.99221, + "index": 9, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 215.77749, + "y": 204.61721, + "index": 10, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 221.80149, + "y": 205.99221, + "index": 11, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 226.6315, + "y": 209.84421, + "index": 12, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 229.3125, + "y": 215.4112, + "index": 13, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 215.7775, + "y": 218.50021 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0.61408 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00003, + "y": 3.05557 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 872 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 874 + }, + "max": { + "#": 875 + } + }, + { + "x": 202.2425, + "y": 204.61721 + }, + { + "x": 229.31253, + "y": 235.43878 + }, + { + "x": 215.77747, + "y": 215.44464 + }, + [ + { + "#": 878 + }, + { + "#": 879 + }, + { + "#": 880 + }, + { + "#": 881 + }, + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + } + ], + { + "x": -0.90096, + "y": -0.43389 + }, + { + "x": -0.62351, + "y": -0.78182 + }, + { + "x": -0.22253, + "y": -0.97493 + }, + { + "x": 0.22253, + "y": -0.97493 + }, + { + "x": 0.62351, + "y": -0.78182 + }, + { + "x": 0.90096, + "y": -0.43389 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,4,4,4", + "startCol": 4, + "endCol": 4, + "startRow": 4, + "endRow": 4 + }, + { + "id": 24, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 887 + }, + "angle": -0.00003, + "vertices": { + "#": 888 + }, + "position": { + "#": 909 + }, + "force": { + "#": 910 + }, + "torque": 0, + "positionImpulse": { + "#": 911 + }, + "constraintImpulse": { + "#": 912 + }, + "totalContacts": 0, + "speed": 3.05561, + "angularSpeed": 0.00001, + "velocity": { + "#": 913 + }, + "angularVelocity": -0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 914 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 915 + }, + "circleRadius": 19.27482, + "bounds": { + "#": 917 + }, + "positionPrev": { + "#": 920 + }, + "anglePrev": -0.00002, + "axes": { + "#": 921 + }, + "area": 1148.07426, + "mass": 1.14807, + "inverseMass": 0.87102, + "inertia": 839.15824, + "inverseInertia": 0.00119, + "parent": { + "#": 886 + }, + "sleepCounter": 0, + "region": { + "#": 932 + } + }, + [ + { + "#": 886 + } + ], + [ + { + "#": 889 + }, + { + "#": 890 + }, + { + "#": 891 + }, + { + "#": 892 + }, + { + "#": 893 + }, + { + "#": 894 + }, + { + "#": 895 + }, + { + "#": 896 + }, + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + }, + { + "#": 901 + }, + { + "#": 902 + }, + { + "#": 903 + }, + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + }, + { + "#": 908 + } + ], + { + "x": 286.36694, + "y": 238.17276, + "index": 0, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 284.5031, + "y": 243.90881, + "index": 1, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 280.95824, + "y": 248.78691, + "index": 2, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 276.08034, + "y": 252.33205, + "index": 3, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 270.34439, + "y": 254.19621, + "index": 4, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 264.31439, + "y": 254.19638, + "index": 5, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 258.57834, + "y": 252.33254, + "index": 6, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 253.70024, + "y": 248.78767, + "index": 7, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 250.1551, + "y": 243.90977, + "index": 8, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 248.29094, + "y": 238.17382, + "index": 9, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 248.29077, + "y": 232.14382, + "index": 10, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 250.15461, + "y": 226.40777, + "index": 11, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 253.69948, + "y": 221.52967, + "index": 12, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 258.57738, + "y": 217.98454, + "index": 13, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 264.31333, + "y": 216.12038, + "index": 14, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 270.34333, + "y": 216.12021, + "index": 15, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 276.07938, + "y": 217.98405, + "index": 16, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 280.95748, + "y": 221.52891, + "index": 17, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 284.50261, + "y": 226.40681, + "index": 18, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 286.36677, + "y": 232.14276, + "index": 19, + "body": { + "#": 886 + }, + "isInternal": false + }, + { + "x": 267.32886, + "y": 235.15829 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.28195, + "y": 0.15732 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00028, + "y": 3.05561 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 916 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 918 + }, + "max": { + "#": 919 + } + }, + { + "x": 248.29077, + "y": 216.12021 + }, + { + "x": 286.36722, + "y": 257.25198 + }, + { + "x": 267.32858, + "y": 232.10268 + }, + [ + { + "#": 922 + }, + { + "#": 923 + }, + { + "#": 924 + }, + { + "#": 925 + }, + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + }, + { + "#": 929 + }, + { + "#": 930 + }, + { + "#": 931 + } + ], + { + "x": -0.95105, + "y": -0.30903 + }, + { + "x": -0.80896, + "y": -0.58786 + }, + { + "x": -0.58791, + "y": -0.80893 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": -0.00003, + "y": -1 + }, + { + "x": 0.30903, + "y": -0.95105 + }, + { + "x": 0.58786, + "y": -0.80896 + }, + { + "x": 0.80893, + "y": -0.58791 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": -0.00003 + }, + { + "id": "5,5,4,5", + "startCol": 5, + "endCol": 5, + "startRow": 4, + "endRow": 5 + }, + { + "id": 25, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 934 + }, + "angle": 0, + "vertices": { + "#": 935 + }, + "position": { + "#": 954 + }, + "force": { + "#": 955 + }, + "torque": 0, + "positionImpulse": { + "#": 956 + }, + "constraintImpulse": { + "#": 957 + }, + "totalContacts": 0, + "speed": 3.05549, + "angularSpeed": 0, + "velocity": { + "#": 958 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 959 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 960 + }, + "circleRadius": 16.26102, + "bounds": { + "#": 962 + }, + "positionPrev": { + "#": 965 + }, + "anglePrev": 0, + "axes": { + "#": 966 + }, + "area": 813.92894, + "mass": 0.81393, + "inverseMass": 1.22861, + "inertia": 421.78337, + "inverseInertia": 0.00237, + "parent": { + "#": 933 + }, + "sleepCounter": 0, + "region": { + "#": 976 + } + }, + [ + { + "#": 933 + } + ], + [ + { + "#": 936 + }, + { + "#": 937 + }, + { + "#": 938 + }, + { + "#": 939 + }, + { + "#": 940 + }, + { + "#": 941 + }, + { + "#": 942 + }, + { + "#": 943 + }, + { + "#": 944 + }, + { + "#": 945 + }, + { + "#": 946 + }, + { + "#": 947 + }, + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + }, + { + "#": 952 + }, + { + "#": 953 + } + ], + { + "x": 311.58156, + "y": 216.69609, + "index": 0, + "body": { + "#": 933 + }, + "isInternal": false + }, + { + "x": 309.64958, + "y": 222.0031, + "index": 1, + "body": { + "#": 933 + }, + "isInternal": false + }, + { + "x": 306.0196, + "y": 226.32911, + "index": 2, + "body": { + "#": 933 + }, + "isInternal": false + }, + { + "x": 301.12961, + "y": 229.15213, + "index": 3, + "body": { + "#": 933 + }, + "isInternal": false + }, + { + "x": 295.56762, + "y": 230.13316, + "index": 4, + "body": { + "#": 933 + }, + "isInternal": false + }, + { + "x": 290.00561, + "y": 229.15218, + "index": 5, + "body": { + "#": 933 + }, + "isInternal": false + }, + { + "x": 285.1156, + "y": 226.3292, + "index": 6, + "body": { + "#": 933 + }, + "isInternal": false + }, + { + "x": 281.48558, + "y": 222.00321, + "index": 7, + "body": { + "#": 933 + }, + "isInternal": false + }, + { + "x": 279.55356, + "y": 216.69622, + "index": 8, + "body": { + "#": 933 + }, + "isInternal": false + }, + { + "x": 279.55354, + "y": 211.04822, + "index": 9, + "body": { + "#": 933 + }, + "isInternal": false + }, + { + "x": 281.48552, + "y": 205.74121, + "index": 10, + "body": { + "#": 933 + }, + "isInternal": false + }, + { + "x": 285.1155, + "y": 201.4152, + "index": 11, + "body": { + "#": 933 + }, + "isInternal": false + }, + { + "x": 290.00549, + "y": 198.59218, + "index": 12, + "body": { + "#": 933 + }, + "isInternal": false + }, + { + "x": 295.56748, + "y": 197.61116, + "index": 13, + "body": { + "#": 933 + }, + "isInternal": false + }, + { + "x": 301.12949, + "y": 198.59213, + "index": 14, + "body": { + "#": 933 + }, + "isInternal": false + }, + { + "x": 306.0195, + "y": 201.41511, + "index": 15, + "body": { + "#": 933 + }, + "isInternal": false + }, + { + "x": 309.64952, + "y": 205.7411, + "index": 16, + "body": { + "#": 933 + }, + "isInternal": false + }, + { + "x": 311.58154, + "y": 211.04809, + "index": 17, + "body": { + "#": 933 + }, + "isInternal": false + }, + { + "x": 295.56755, + "y": 213.87216 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.32942, + "y": 0.10265 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00016, + "y": 3.05549 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 961 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 963 + }, + "max": { + "#": 964 + } + }, + { + "x": 279.55354, + "y": 197.61116 + }, + { + "x": 311.58172, + "y": 233.18865 + }, + { + "x": 295.56739, + "y": 210.81667 + }, + [ + { + "#": 967 + }, + { + "#": 968 + }, + { + "#": 969 + }, + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + }, + { + "#": 973 + }, + { + "#": 974 + }, + { + "#": 975 + } + ], + { + "x": -0.93967, + "y": -0.34208 + }, + { + "x": -0.76604, + "y": -0.64279 + }, + { + "x": -0.49997, + "y": -0.86604 + }, + { + "x": -0.1737, + "y": -0.9848 + }, + { + "x": 0.17369, + "y": -0.9848 + }, + { + "x": 0.49996, + "y": -0.86605 + }, + { + "x": 0.76604, + "y": -0.6428 + }, + { + "x": 0.93967, + "y": -0.34209 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,6,4,4", + "startCol": 5, + "endCol": 6, + "startRow": 4, + "endRow": 4 + }, + { + "id": 26, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 978 + }, + "angle": 0.00001, + "vertices": { + "#": 979 + }, + "position": { + "#": 992 + }, + "force": { + "#": 993 + }, + "torque": 0, + "positionImpulse": { + "#": 994 + }, + "constraintImpulse": { + "#": 995 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 996 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 997 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 998 + }, + "circleRadius": 11.63199, + "bounds": { + "#": 1000 + }, + "positionPrev": { + "#": 1003 + }, + "anglePrev": 0.00001, + "axes": { + "#": 1004 + }, + "area": 405.92888, + "mass": 0.40593, + "inverseMass": 2.46349, + "inertia": 104.94637, + "inverseInertia": 0.00953, + "parent": { + "#": 977 + }, + "sleepCounter": 0, + "region": { + "#": 1011 + } + }, + [ + { + "#": 977 + } + ], + [ + { + "#": 980 + }, + { + "#": 981 + }, + { + "#": 982 + }, + { + "#": 983 + }, + { + "#": 984 + }, + { + "#": 985 + }, + { + "#": 986 + }, + { + "#": 987 + }, + { + "#": 988 + }, + { + "#": 989 + }, + { + "#": 990 + }, + { + "#": 991 + } + ], + { + "x": 335.54168, + "y": 227.02069, + "index": 0, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 332.53064, + "y": 232.23466, + "index": 1, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 327.31661, + "y": 235.24562, + "index": 2, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 321.29461, + "y": 235.24557, + "index": 3, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 316.08064, + "y": 232.23453, + "index": 4, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 313.06968, + "y": 227.0205, + "index": 5, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 313.06973, + "y": 220.9985, + "index": 6, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 316.08077, + "y": 215.78453, + "index": 7, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 321.2948, + "y": 212.77357, + "index": 8, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 327.3168, + "y": 212.77362, + "index": 9, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 332.53077, + "y": 215.78466, + "index": 10, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 335.54173, + "y": 220.99869, + "index": 11, + "body": { + "#": 977 + }, + "isInternal": false + }, + { + "x": 324.30571, + "y": 224.0096 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.2102, + "y": 0.82743 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00004, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 999 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1001 + }, + "max": { + "#": 1002 + } + }, + { + "x": 313.06968, + "y": 212.77357 + }, + { + "x": 335.54177, + "y": 238.30118 + }, + { + "x": 324.30567, + "y": 220.95404 + }, + [ + { + "#": 1005 + }, + { + "#": 1006 + }, + { + "#": 1007 + }, + { + "#": 1008 + }, + { + "#": 1009 + }, + { + "#": 1010 + } + ], + { + "x": -0.86597, + "y": -0.50009 + }, + { + "x": -0.50008, + "y": -0.86598 + }, + { + "x": 0.00001, + "y": -1 + }, + { + "x": 0.50009, + "y": -0.86597 + }, + { + "x": 0.86598, + "y": -0.50008 + }, + { + "x": 1, + "y": 0.00001 + }, + { + "id": "6,6,4,4", + "startCol": 6, + "endCol": 6, + "startRow": 4, + "endRow": 4 + }, + { + "id": 27, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1013 + }, + "angle": -0.00004, + "vertices": { + "#": 1014 + }, + "position": { + "#": 1033 + }, + "force": { + "#": 1034 + }, + "torque": 0, + "positionImpulse": { + "#": 1035 + }, + "constraintImpulse": { + "#": 1036 + }, + "totalContacts": 0, + "speed": 3.05554, + "angularSpeed": 0.00001, + "velocity": { + "#": 1037 + }, + "angularVelocity": -0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1038 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1039 + }, + "circleRadius": 16.25193, + "bounds": { + "#": 1041 + }, + "positionPrev": { + "#": 1044 + }, + "anglePrev": -0.00003, + "axes": { + "#": 1045 + }, + "area": 813.04524, + "mass": 0.81305, + "inverseMass": 1.22994, + "inertia": 420.86798, + "inverseInertia": 0.00238, + "parent": { + "#": 1012 + }, + "sleepCounter": 0, + "region": { + "#": 1055 + } + }, + [ + { + "#": 1012 + } + ], + [ + { + "#": 1015 + }, + { + "#": 1016 + }, + { + "#": 1017 + }, + { + "#": 1018 + }, + { + "#": 1019 + }, + { + "#": 1020 + }, + { + "#": 1021 + }, + { + "#": 1022 + }, + { + "#": 1023 + }, + { + "#": 1024 + }, + { + "#": 1025 + }, + { + "#": 1026 + }, + { + "#": 1027 + }, + { + "#": 1028 + }, + { + "#": 1029 + }, + { + "#": 1030 + }, + { + "#": 1031 + }, + { + "#": 1032 + } + ], + { + "x": 417.02211, + "y": 259.74434, + "index": 0, + "body": { + "#": 1012 + }, + "isInternal": false + }, + { + "x": 415.09234, + "y": 265.04843, + "index": 1, + "body": { + "#": 1012 + }, + "isInternal": false + }, + { + "x": 411.46453, + "y": 269.37258, + "index": 2, + "body": { + "#": 1012 + }, + "isInternal": false + }, + { + "x": 406.57565, + "y": 272.1948, + "index": 3, + "body": { + "#": 1012 + }, + "isInternal": false + }, + { + "x": 401.01769, + "y": 273.17504, + "index": 4, + "body": { + "#": 1012 + }, + "isInternal": false + }, + { + "x": 395.45965, + "y": 272.19528, + "index": 5, + "body": { + "#": 1012 + }, + "isInternal": false + }, + { + "x": 390.57053, + "y": 269.37349, + "index": 6, + "body": { + "#": 1012 + }, + "isInternal": false + }, + { + "x": 386.94234, + "y": 265.04964, + "index": 7, + "body": { + "#": 1012 + }, + "isInternal": false + }, + { + "x": 385.01211, + "y": 259.74573, + "index": 8, + "body": { + "#": 1012 + }, + "isInternal": false + }, + { + "x": 385.01187, + "y": 254.10173, + "index": 9, + "body": { + "#": 1012 + }, + "isInternal": false + }, + { + "x": 386.94164, + "y": 248.79764, + "index": 10, + "body": { + "#": 1012 + }, + "isInternal": false + }, + { + "x": 390.56945, + "y": 244.47349, + "index": 11, + "body": { + "#": 1012 + }, + "isInternal": false + }, + { + "x": 395.45833, + "y": 241.65128, + "index": 12, + "body": { + "#": 1012 + }, + "isInternal": false + }, + { + "x": 401.01629, + "y": 240.67104, + "index": 13, + "body": { + "#": 1012 + }, + "isInternal": false + }, + { + "x": 406.57433, + "y": 241.6508, + "index": 14, + "body": { + "#": 1012 + }, + "isInternal": false + }, + { + "x": 411.46345, + "y": 244.47258, + "index": 15, + "body": { + "#": 1012 + }, + "isInternal": false + }, + { + "x": 415.09164, + "y": 248.79643, + "index": 16, + "body": { + "#": 1012 + }, + "isInternal": false + }, + { + "x": 417.02187, + "y": 254.10034, + "index": 17, + "body": { + "#": 1012 + }, + "isInternal": false + }, + { + "x": 401.01699, + "y": 256.92304 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.67025, + "y": 0.34628 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00014, + "y": 3.05554 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1040 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1042 + }, + "max": { + "#": 1043 + } + }, + { + "x": 385.01187, + "y": 240.67104 + }, + { + "x": 417.02227, + "y": 276.23057 + }, + { + "x": 401.0168, + "y": 253.8675 + }, + [ + { + "#": 1046 + }, + { + "#": 1047 + }, + { + "#": 1048 + }, + { + "#": 1049 + }, + { + "#": 1050 + }, + { + "#": 1051 + }, + { + "#": 1052 + }, + { + "#": 1053 + }, + { + "#": 1054 + } + ], + { + "x": -0.93974, + "y": -0.3419 + }, + { + "x": -0.7661, + "y": -0.64273 + }, + { + "x": -0.49995, + "y": -0.86605 + }, + { + "x": -0.17369, + "y": -0.9848 + }, + { + "x": 0.1736, + "y": -0.98482 + }, + { + "x": 0.49987, + "y": -0.8661 + }, + { + "x": 0.76604, + "y": -0.64279 + }, + { + "x": 0.93971, + "y": -0.34198 + }, + { + "x": 1, + "y": -0.00004 + }, + { + "id": "8,8,5,5", + "startCol": 8, + "endCol": 8, + "startRow": 5, + "endRow": 5 + }, + { + "id": 28, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1057 + }, + "angle": 0, + "vertices": { + "#": 1058 + }, + "position": { + "#": 1079 + }, + "force": { + "#": 1080 + }, + "torque": 0, + "positionImpulse": { + "#": 1081 + }, + "constraintImpulse": { + "#": 1082 + }, + "totalContacts": 0, + "speed": 3.05552, + "angularSpeed": 0, + "velocity": { + "#": 1083 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1084 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1085 + }, + "circleRadius": 19.50356, + "bounds": { + "#": 1087 + }, + "positionPrev": { + "#": 1090 + }, + "anglePrev": 0, + "axes": { + "#": 1091 + }, + "area": 1175.44088, + "mass": 1.17544, + "inverseMass": 0.85074, + "inertia": 879.64105, + "inverseInertia": 0.00114, + "parent": { + "#": 1056 + }, + "sleepCounter": 0, + "region": { + "#": 1102 + } + }, + [ + { + "#": 1056 + } + ], + [ + { + "#": 1059 + }, + { + "#": 1060 + }, + { + "#": 1061 + }, + { + "#": 1062 + }, + { + "#": 1063 + }, + { + "#": 1064 + }, + { + "#": 1065 + }, + { + "#": 1066 + }, + { + "#": 1067 + }, + { + "#": 1068 + }, + { + "#": 1069 + }, + { + "#": 1070 + }, + { + "#": 1071 + }, + { + "#": 1072 + }, + { + "#": 1073 + }, + { + "#": 1074 + }, + { + "#": 1075 + }, + { + "#": 1076 + }, + { + "#": 1077 + }, + { + "#": 1078 + } + ], + { + "x": 463.10573, + "y": 219.49725, + "index": 0, + "body": { + "#": 1056 + }, + "isInternal": false + }, + { + "x": 461.22071, + "y": 225.30025, + "index": 1, + "body": { + "#": 1056 + }, + "isInternal": false + }, + { + "x": 457.63369, + "y": 230.23723, + "index": 2, + "body": { + "#": 1056 + }, + "isInternal": false + }, + { + "x": 452.69667, + "y": 233.82421, + "index": 3, + "body": { + "#": 1056 + }, + "isInternal": false + }, + { + "x": 446.89367, + "y": 235.70919, + "index": 4, + "body": { + "#": 1056 + }, + "isInternal": false + }, + { + "x": 440.79167, + "y": 235.70917, + "index": 5, + "body": { + "#": 1056 + }, + "isInternal": false + }, + { + "x": 434.98867, + "y": 233.82414, + "index": 6, + "body": { + "#": 1056 + }, + "isInternal": false + }, + { + "x": 430.05169, + "y": 230.23713, + "index": 7, + "body": { + "#": 1056 + }, + "isInternal": false + }, + { + "x": 426.46471, + "y": 225.30011, + "index": 8, + "body": { + "#": 1056 + }, + "isInternal": false + }, + { + "x": 424.57973, + "y": 219.4971, + "index": 9, + "body": { + "#": 1056 + }, + "isInternal": false + }, + { + "x": 424.57975, + "y": 213.3951, + "index": 10, + "body": { + "#": 1056 + }, + "isInternal": false + }, + { + "x": 426.46478, + "y": 207.59211, + "index": 11, + "body": { + "#": 1056 + }, + "isInternal": false + }, + { + "x": 430.0518, + "y": 202.65513, + "index": 12, + "body": { + "#": 1056 + }, + "isInternal": false + }, + { + "x": 434.98881, + "y": 199.06814, + "index": 13, + "body": { + "#": 1056 + }, + "isInternal": false + }, + { + "x": 440.79182, + "y": 197.18317, + "index": 14, + "body": { + "#": 1056 + }, + "isInternal": false + }, + { + "x": 446.89382, + "y": 197.18319, + "index": 15, + "body": { + "#": 1056 + }, + "isInternal": false + }, + { + "x": 452.69681, + "y": 199.06821, + "index": 16, + "body": { + "#": 1056 + }, + "isInternal": false + }, + { + "x": 457.6338, + "y": 202.65523, + "index": 17, + "body": { + "#": 1056 + }, + "isInternal": false + }, + { + "x": 461.22078, + "y": 207.59225, + "index": 18, + "body": { + "#": 1056 + }, + "isInternal": false + }, + { + "x": 463.10575, + "y": 213.39525, + "index": 19, + "body": { + "#": 1056 + }, + "isInternal": false + }, + { + "x": 443.84274, + "y": 216.44618 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.41522, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00002, + "y": 3.05552 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1086 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1088 + }, + "max": { + "#": 1089 + } + }, + { + "x": 424.57973, + "y": 197.18317 + }, + { + "x": 463.10577, + "y": 238.76471 + }, + { + "x": 443.84272, + "y": 213.39066 + }, + [ + { + "#": 1092 + }, + { + "#": 1093 + }, + { + "#": 1094 + }, + { + "#": 1095 + }, + { + "#": 1096 + }, + { + "#": 1097 + }, + { + "#": 1098 + }, + { + "#": 1099 + }, + { + "#": 1100 + }, + { + "#": 1101 + } + ], + { + "x": -0.95108, + "y": -0.30895 + }, + { + "x": -0.80901, + "y": -0.58779 + }, + { + "x": -0.58779, + "y": -0.80901 + }, + { + "x": -0.30894, + "y": -0.95108 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30895, + "y": -0.95108 + }, + { + "x": 0.58779, + "y": -0.80901 + }, + { + "x": 0.80901, + "y": -0.58779 + }, + { + "x": 0.95108, + "y": -0.30894 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,4,4", + "startCol": 8, + "endCol": 9, + "startRow": 4, + "endRow": 4 + }, + { + "id": 29, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1104 + }, + "angle": 0, + "vertices": { + "#": 1105 + }, + "position": { + "#": 1118 + }, + "force": { + "#": 1119 + }, + "torque": 0, + "positionImpulse": { + "#": 1120 + }, + "constraintImpulse": { + "#": 1121 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 1122 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1123 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1124 + }, + "circleRadius": 10.39922, + "bounds": { + "#": 1126 + }, + "positionPrev": { + "#": 1129 + }, + "anglePrev": 0, + "axes": { + "#": 1130 + }, + "area": 324.431, + "mass": 0.32443, + "inverseMass": 3.08232, + "inertia": 67.03663, + "inverseInertia": 0.01492, + "parent": { + "#": 1103 + }, + "sleepCounter": 0, + "region": { + "#": 1137 + } + }, + [ + { + "#": 1103 + } + ], + [ + { + "#": 1106 + }, + { + "#": 1107 + }, + { + "#": 1108 + }, + { + "#": 1109 + }, + { + "#": 1110 + }, + { + "#": 1111 + }, + { + "#": 1112 + }, + { + "#": 1113 + }, + { + "#": 1114 + }, + { + "#": 1115 + }, + { + "#": 1116 + }, + { + "#": 1117 + } + ], + { + "x": 497.352, + "y": 209.92033, + "index": 0, + "body": { + "#": 1103 + }, + "isInternal": false + }, + { + "x": 494.66, + "y": 214.58133, + "index": 1, + "body": { + "#": 1103 + }, + "isInternal": false + }, + { + "x": 489.999, + "y": 217.27333, + "index": 2, + "body": { + "#": 1103 + }, + "isInternal": false + }, + { + "x": 484.615, + "y": 217.27333, + "index": 3, + "body": { + "#": 1103 + }, + "isInternal": false + }, + { + "x": 479.954, + "y": 214.58133, + "index": 4, + "body": { + "#": 1103 + }, + "isInternal": false + }, + { + "x": 477.262, + "y": 209.92033, + "index": 5, + "body": { + "#": 1103 + }, + "isInternal": false + }, + { + "x": 477.262, + "y": 204.53633, + "index": 6, + "body": { + "#": 1103 + }, + "isInternal": false + }, + { + "x": 479.954, + "y": 199.87533, + "index": 7, + "body": { + "#": 1103 + }, + "isInternal": false + }, + { + "x": 484.615, + "y": 197.18333, + "index": 8, + "body": { + "#": 1103 + }, + "isInternal": false + }, + { + "x": 489.999, + "y": 197.18333, + "index": 9, + "body": { + "#": 1103 + }, + "isInternal": false + }, + { + "x": 494.66, + "y": 199.87533, + "index": 10, + "body": { + "#": 1103 + }, + "isInternal": false + }, + { + "x": 497.352, + "y": 204.53633, + "index": 11, + "body": { + "#": 1103 + }, + "isInternal": false + }, + { + "x": 487.307, + "y": 207.22833 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1125 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1127 + }, + "max": { + "#": 1128 + } + }, + { + "x": 477.262, + "y": 197.18333 + }, + { + "x": 497.352, + "y": 217.27333 + }, + { + "x": 487.307, + "y": 204.17278 + }, + [ + { + "#": 1131 + }, + { + "#": 1132 + }, + { + "#": 1133 + }, + { + "#": 1134 + }, + { + "#": 1135 + }, + { + "#": 1136 + } + ], + { + "x": -0.86595, + "y": -0.50014 + }, + { + "x": -0.50014, + "y": -0.86595 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.50014, + "y": -0.86595 + }, + { + "x": 0.86595, + "y": -0.50014 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,10,4,4", + "startCol": 9, + "endCol": 10, + "startRow": 4, + "endRow": 4 + }, + { + "id": 30, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1139 + }, + "angle": 0, + "vertices": { + "#": 1140 + }, + "position": { + "#": 1157 + }, + "force": { + "#": 1158 + }, + "torque": 0, + "positionImpulse": { + "#": 1159 + }, + "constraintImpulse": { + "#": 1160 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 1161 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1162 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1163 + }, + "circleRadius": 15.35867, + "bounds": { + "#": 1165 + }, + "positionPrev": { + "#": 1168 + }, + "anglePrev": 0, + "axes": { + "#": 1169 + }, + "area": 722.17737, + "mass": 0.72218, + "inverseMass": 1.3847, + "inertia": 332.06746, + "inverseInertia": 0.00301, + "parent": { + "#": 1138 + }, + "sleepCounter": 0, + "region": { + "#": 1178 + } + }, + [ + { + "#": 1138 + } + ], + [ + { + "#": 1141 + }, + { + "#": 1142 + }, + { + "#": 1143 + }, + { + "#": 1144 + }, + { + "#": 1145 + }, + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + }, + { + "#": 1150 + }, + { + "#": 1151 + }, + { + "#": 1152 + }, + { + "#": 1153 + }, + { + "#": 1154 + }, + { + "#": 1155 + }, + { + "#": 1156 + } + ], + { + "x": 565.28635, + "y": 251.9218, + "index": 0, + "body": { + "#": 1138 + }, + "isInternal": false + }, + { + "x": 562.99237, + "y": 257.45881, + "index": 1, + "body": { + "#": 1138 + }, + "isInternal": false + }, + { + "x": 558.75538, + "y": 261.69582, + "index": 2, + "body": { + "#": 1138 + }, + "isInternal": false + }, + { + "x": 553.21839, + "y": 263.98984, + "index": 3, + "body": { + "#": 1138 + }, + "isInternal": false + }, + { + "x": 547.22639, + "y": 263.98986, + "index": 4, + "body": { + "#": 1138 + }, + "isInternal": false + }, + { + "x": 541.68938, + "y": 261.69588, + "index": 5, + "body": { + "#": 1138 + }, + "isInternal": false + }, + { + "x": 537.45237, + "y": 257.45889, + "index": 6, + "body": { + "#": 1138 + }, + "isInternal": false + }, + { + "x": 535.15835, + "y": 251.9219, + "index": 7, + "body": { + "#": 1138 + }, + "isInternal": false + }, + { + "x": 535.15833, + "y": 245.9299, + "index": 8, + "body": { + "#": 1138 + }, + "isInternal": false + }, + { + "x": 537.45231, + "y": 240.39289, + "index": 9, + "body": { + "#": 1138 + }, + "isInternal": false + }, + { + "x": 541.6893, + "y": 236.15588, + "index": 10, + "body": { + "#": 1138 + }, + "isInternal": false + }, + { + "x": 547.22629, + "y": 233.86186, + "index": 11, + "body": { + "#": 1138 + }, + "isInternal": false + }, + { + "x": 553.21829, + "y": 233.86184, + "index": 12, + "body": { + "#": 1138 + }, + "isInternal": false + }, + { + "x": 558.7553, + "y": 236.15582, + "index": 13, + "body": { + "#": 1138 + }, + "isInternal": false + }, + { + "x": 562.99231, + "y": 240.39281, + "index": 14, + "body": { + "#": 1138 + }, + "isInternal": false + }, + { + "x": 565.28633, + "y": 245.9298, + "index": 15, + "body": { + "#": 1138 + }, + "isInternal": false + }, + { + "x": 550.22234, + "y": 248.92585 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00002, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1164 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1166 + }, + "max": { + "#": 1167 + } + }, + { + "x": 535.15833, + "y": 233.86184 + }, + { + "x": 565.28635, + "y": 263.98986 + }, + { + "x": 550.22232, + "y": 245.87028 + }, + [ + { + "#": 1170 + }, + { + "#": 1171 + }, + { + "#": 1172 + }, + { + "#": 1173 + }, + { + "#": 1174 + }, + { + "#": 1175 + }, + { + "#": 1176 + }, + { + "#": 1177 + } + ], + { + "x": -0.92385, + "y": -0.38275 + }, + { + "x": -0.70711, + "y": -0.7071 + }, + { + "x": -0.38276, + "y": -0.92385 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.38275, + "y": -0.92385 + }, + { + "x": 0.7071, + "y": -0.70711 + }, + { + "x": 0.92385, + "y": -0.38276 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,11,4,5", + "startCol": 11, + "endCol": 11, + "startRow": 4, + "endRow": 5 + }, + { + "id": 31, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1180 + }, + "angle": 0, + "vertices": { + "#": 1181 + }, + "position": { + "#": 1196 + }, + "force": { + "#": 1197 + }, + "torque": 0, + "positionImpulse": { + "#": 1198 + }, + "constraintImpulse": { + "#": 1199 + }, + "totalContacts": 0, + "speed": 3.05557, + "angularSpeed": 0, + "velocity": { + "#": 1200 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1201 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1202 + }, + "circleRadius": 12.65351, + "bounds": { + "#": 1204 + }, + "positionPrev": { + "#": 1207 + }, + "anglePrev": 0, + "axes": { + "#": 1208 + }, + "area": 486.27648, + "mass": 0.48628, + "inverseMass": 2.05644, + "inertia": 150.57294, + "inverseInertia": 0.00664, + "parent": { + "#": 1179 + }, + "sleepCounter": 0, + "region": { + "#": 1216 + } + }, + [ + { + "#": 1179 + } + ], + [ + { + "#": 1182 + }, + { + "#": 1183 + }, + { + "#": 1184 + }, + { + "#": 1185 + }, + { + "#": 1186 + }, + { + "#": 1187 + }, + { + "#": 1188 + }, + { + "#": 1189 + }, + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + }, + { + "#": 1194 + }, + { + "#": 1195 + } + ], + { + "x": 599.49015, + "y": 212.65335, + "index": 0, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 597.04716, + "y": 217.72636, + "index": 1, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 592.64417, + "y": 221.23737, + "index": 2, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 587.15417, + "y": 222.49137, + "index": 3, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 581.66417, + "y": 221.23738, + "index": 4, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 577.26116, + "y": 217.72639, + "index": 5, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 574.81815, + "y": 212.65339, + "index": 6, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 574.81815, + "y": 207.02139, + "index": 7, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 577.26114, + "y": 201.94839, + "index": 8, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 581.66413, + "y": 198.43738, + "index": 9, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 587.15413, + "y": 197.18337, + "index": 10, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 592.64413, + "y": 198.43737, + "index": 11, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 597.04714, + "y": 201.94836, + "index": 12, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 599.49015, + "y": 207.02135, + "index": 13, + "body": { + "#": 1179 + }, + "isInternal": false + }, + { + "x": 587.15415, + "y": 209.83737 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.52142, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05557 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1203 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1205 + }, + "max": { + "#": 1206 + } + }, + { + "x": 574.81815, + "y": 197.18337 + }, + { + "x": 599.49015, + "y": 225.54694 + }, + { + "x": 587.15415, + "y": 206.78181 + }, + [ + { + "#": 1209 + }, + { + "#": 1210 + }, + { + "#": 1211 + }, + { + "#": 1212 + }, + { + "#": 1213 + }, + { + "#": 1214 + }, + { + "#": 1215 + } + ], + { + "x": -0.90097, + "y": -0.43388 + }, + { + "x": -0.62346, + "y": -0.78185 + }, + { + "x": -0.22268, + "y": -0.97489 + }, + { + "x": 0.22268, + "y": -0.97489 + }, + { + "x": 0.62346, + "y": -0.78186 + }, + { + "x": 0.90097, + "y": -0.43388 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "11,12,4,4", + "startCol": 11, + "endCol": 12, + "startRow": 4, + "endRow": 4 + }, + { + "id": 32, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1218 + }, + "angle": 0, + "vertices": { + "#": 1219 + }, + "position": { + "#": 1234 + }, + "force": { + "#": 1235 + }, + "torque": 0, + "positionImpulse": { + "#": 1236 + }, + "constraintImpulse": { + "#": 1237 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 1238 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1239 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1240 + }, + "circleRadius": 13.5183, + "bounds": { + "#": 1242 + }, + "positionPrev": { + "#": 1245 + }, + "anglePrev": 0, + "axes": { + "#": 1246 + }, + "area": 555.02815, + "mass": 0.55503, + "inverseMass": 1.80171, + "inertia": 196.15998, + "inverseInertia": 0.0051, + "parent": { + "#": 1217 + }, + "sleepCounter": 0, + "region": { + "#": 1254 + } + }, + [ + { + "#": 1217 + } + ], + [ + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + }, + { + "#": 1223 + }, + { + "#": 1224 + }, + { + "#": 1225 + }, + { + "#": 1226 + }, + { + "#": 1227 + }, + { + "#": 1228 + }, + { + "#": 1229 + }, + { + "#": 1230 + }, + { + "#": 1231 + }, + { + "#": 1232 + }, + { + "#": 1233 + } + ], + { + "x": 638.51, + "y": 213.70933, + "index": 0, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 635.9, + "y": 219.13033, + "index": 1, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 631.196, + "y": 222.88133, + "index": 2, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 625.331, + "y": 224.21933, + "index": 3, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 619.466, + "y": 222.88133, + "index": 4, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 614.762, + "y": 219.13033, + "index": 5, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 612.152, + "y": 213.70933, + "index": 6, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 612.152, + "y": 207.69333, + "index": 7, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 614.762, + "y": 202.27233, + "index": 8, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 619.466, + "y": 198.52133, + "index": 9, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 625.331, + "y": 197.18333, + "index": 10, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 631.196, + "y": 198.52133, + "index": 11, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 635.9, + "y": 202.27233, + "index": 12, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 638.51, + "y": 207.69333, + "index": 13, + "body": { + "#": 1217 + }, + "isInternal": false + }, + { + "x": 625.331, + "y": 210.70133 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1241 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1243 + }, + "max": { + "#": 1244 + } + }, + { + "x": 612.152, + "y": 197.18333 + }, + { + "x": 638.51, + "y": 224.21933 + }, + { + "x": 625.331, + "y": 207.64578 + }, + [ + { + "#": 1247 + }, + { + "#": 1248 + }, + { + "#": 1249 + }, + { + "#": 1250 + }, + { + "#": 1251 + }, + { + "#": 1252 + }, + { + "#": 1253 + } + ], + { + "x": -0.90101, + "y": -0.4338 + }, + { + "x": -0.62346, + "y": -0.78186 + }, + { + "x": -0.22242, + "y": -0.97495 + }, + { + "x": 0.22242, + "y": -0.97495 + }, + { + "x": 0.62346, + "y": -0.78186 + }, + { + "x": 0.90101, + "y": -0.4338 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,13,4,4", + "startCol": 12, + "endCol": 13, + "startRow": 4, + "endRow": 4 + }, + { + "id": 33, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1256 + }, + "angle": 0, + "vertices": { + "#": 1257 + }, + "position": { + "#": 1278 + }, + "force": { + "#": 1279 + }, + "torque": 0, + "positionImpulse": { + "#": 1280 + }, + "constraintImpulse": { + "#": 1281 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 1282 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1283 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1284 + }, + "circleRadius": 19.92837, + "bounds": { + "#": 1286 + }, + "positionPrev": { + "#": 1289 + }, + "anglePrev": 0, + "axes": { + "#": 1290 + }, + "area": 1227.18832, + "mass": 1.22719, + "inverseMass": 0.81487, + "inertia": 958.79625, + "inverseInertia": 0.00104, + "parent": { + "#": 1255 + }, + "sleepCounter": 0, + "region": { + "#": 1301 + } + }, + [ + { + "#": 1255 + } + ], + [ + { + "#": 1258 + }, + { + "#": 1259 + }, + { + "#": 1260 + }, + { + "#": 1261 + }, + { + "#": 1262 + }, + { + "#": 1263 + }, + { + "#": 1264 + }, + { + "#": 1265 + }, + { + "#": 1266 + }, + { + "#": 1267 + }, + { + "#": 1268 + }, + { + "#": 1269 + }, + { + "#": 1270 + }, + { + "#": 1271 + }, + { + "#": 1272 + }, + { + "#": 1273 + }, + { + "#": 1274 + }, + { + "#": 1275 + }, + { + "#": 1276 + }, + { + "#": 1277 + } + ], + { + "x": 697.876, + "y": 219.98333, + "index": 0, + "body": { + "#": 1255 + }, + "isInternal": false + }, + { + "x": 695.949, + "y": 225.91333, + "index": 1, + "body": { + "#": 1255 + }, + "isInternal": false + }, + { + "x": 692.284, + "y": 230.95733, + "index": 2, + "body": { + "#": 1255 + }, + "isInternal": false + }, + { + "x": 687.24, + "y": 234.62233, + "index": 3, + "body": { + "#": 1255 + }, + "isInternal": false + }, + { + "x": 681.31, + "y": 236.54933, + "index": 4, + "body": { + "#": 1255 + }, + "isInternal": false + }, + { + "x": 675.076, + "y": 236.54933, + "index": 5, + "body": { + "#": 1255 + }, + "isInternal": false + }, + { + "x": 669.146, + "y": 234.62233, + "index": 6, + "body": { + "#": 1255 + }, + "isInternal": false + }, + { + "x": 664.102, + "y": 230.95733, + "index": 7, + "body": { + "#": 1255 + }, + "isInternal": false + }, + { + "x": 660.437, + "y": 225.91333, + "index": 8, + "body": { + "#": 1255 + }, + "isInternal": false + }, + { + "x": 658.51, + "y": 219.98333, + "index": 9, + "body": { + "#": 1255 + }, + "isInternal": false + }, + { + "x": 658.51, + "y": 213.74933, + "index": 10, + "body": { + "#": 1255 + }, + "isInternal": false + }, + { + "x": 660.437, + "y": 207.81933, + "index": 11, + "body": { + "#": 1255 + }, + "isInternal": false + }, + { + "x": 664.102, + "y": 202.77533, + "index": 12, + "body": { + "#": 1255 + }, + "isInternal": false + }, + { + "x": 669.146, + "y": 199.11033, + "index": 13, + "body": { + "#": 1255 + }, + "isInternal": false + }, + { + "x": 675.076, + "y": 197.18333, + "index": 14, + "body": { + "#": 1255 + }, + "isInternal": false + }, + { + "x": 681.31, + "y": 197.18333, + "index": 15, + "body": { + "#": 1255 + }, + "isInternal": false + }, + { + "x": 687.24, + "y": 199.11033, + "index": 16, + "body": { + "#": 1255 + }, + "isInternal": false + }, + { + "x": 692.284, + "y": 202.77533, + "index": 17, + "body": { + "#": 1255 + }, + "isInternal": false + }, + { + "x": 695.949, + "y": 207.81933, + "index": 18, + "body": { + "#": 1255 + }, + "isInternal": false + }, + { + "x": 697.876, + "y": 213.74933, + "index": 19, + "body": { + "#": 1255 + }, + "isInternal": false + }, + { + "x": 678.193, + "y": 216.86633 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1285 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1287 + }, + "max": { + "#": 1288 + } + }, + { + "x": 658.51, + "y": 197.18333 + }, + { + "x": 697.876, + "y": 236.54933 + }, + { + "x": 678.193, + "y": 213.81078 + }, + [ + { + "#": 1291 + }, + { + "#": 1292 + }, + { + "#": 1293 + }, + { + "#": 1294 + }, + { + "#": 1295 + }, + { + "#": 1296 + }, + { + "#": 1297 + }, + { + "#": 1298 + }, + { + "#": 1299 + }, + { + "#": 1300 + } + ], + { + "x": -0.95105, + "y": -0.30905 + }, + { + "x": -0.80899, + "y": -0.58782 + }, + { + "x": -0.58782, + "y": -0.80899 + }, + { + "x": -0.30905, + "y": -0.95105 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30905, + "y": -0.95105 + }, + { + "x": 0.58782, + "y": -0.80899 + }, + { + "x": 0.80899, + "y": -0.58782 + }, + { + "x": 0.95105, + "y": -0.30905 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "13,14,4,4", + "startCol": 13, + "endCol": 14, + "startRow": 4, + "endRow": 4 + }, + { + "id": 34, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1303 + }, + "angle": 0, + "vertices": { + "#": 1304 + }, + "position": { + "#": 1325 + }, + "force": { + "#": 1326 + }, + "torque": 0, + "positionImpulse": { + "#": 1327 + }, + "constraintImpulse": { + "#": 1328 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 1329 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1330 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1331 + }, + "circleRadius": 19.0442, + "bounds": { + "#": 1333 + }, + "positionPrev": { + "#": 1336 + }, + "anglePrev": 0, + "axes": { + "#": 1337 + }, + "area": 1120.77247, + "mass": 1.12077, + "inverseMass": 0.89224, + "inertia": 799.72157, + "inverseInertia": 0.00125, + "parent": { + "#": 1302 + }, + "sleepCounter": 0, + "region": { + "#": 1348 + } + }, + [ + { + "#": 1302 + } + ], + [ + { + "#": 1305 + }, + { + "#": 1306 + }, + { + "#": 1307 + }, + { + "#": 1308 + }, + { + "#": 1309 + }, + { + "#": 1310 + }, + { + "#": 1311 + }, + { + "#": 1312 + }, + { + "#": 1313 + }, + { + "#": 1314 + }, + { + "#": 1315 + }, + { + "#": 1316 + }, + { + "#": 1317 + }, + { + "#": 1318 + }, + { + "#": 1319 + }, + { + "#": 1320 + }, + { + "#": 1321 + }, + { + "#": 1322 + }, + { + "#": 1323 + }, + { + "#": 1324 + } + ], + { + "x": 755.496, + "y": 218.97233, + "index": 0, + "body": { + "#": 1302 + }, + "isInternal": false + }, + { + "x": 753.655, + "y": 224.63933, + "index": 1, + "body": { + "#": 1302 + }, + "isInternal": false + }, + { + "x": 750.152, + "y": 229.45933, + "index": 2, + "body": { + "#": 1302 + }, + "isInternal": false + }, + { + "x": 745.332, + "y": 232.96233, + "index": 3, + "body": { + "#": 1302 + }, + "isInternal": false + }, + { + "x": 739.665, + "y": 234.80333, + "index": 4, + "body": { + "#": 1302 + }, + "isInternal": false + }, + { + "x": 733.707, + "y": 234.80333, + "index": 5, + "body": { + "#": 1302 + }, + "isInternal": false + }, + { + "x": 728.04, + "y": 232.96233, + "index": 6, + "body": { + "#": 1302 + }, + "isInternal": false + }, + { + "x": 723.22, + "y": 229.45933, + "index": 7, + "body": { + "#": 1302 + }, + "isInternal": false + }, + { + "x": 719.717, + "y": 224.63933, + "index": 8, + "body": { + "#": 1302 + }, + "isInternal": false + }, + { + "x": 717.876, + "y": 218.97233, + "index": 9, + "body": { + "#": 1302 + }, + "isInternal": false + }, + { + "x": 717.876, + "y": 213.01433, + "index": 10, + "body": { + "#": 1302 + }, + "isInternal": false + }, + { + "x": 719.717, + "y": 207.34733, + "index": 11, + "body": { + "#": 1302 + }, + "isInternal": false + }, + { + "x": 723.22, + "y": 202.52733, + "index": 12, + "body": { + "#": 1302 + }, + "isInternal": false + }, + { + "x": 728.04, + "y": 199.02433, + "index": 13, + "body": { + "#": 1302 + }, + "isInternal": false + }, + { + "x": 733.707, + "y": 197.18333, + "index": 14, + "body": { + "#": 1302 + }, + "isInternal": false + }, + { + "x": 739.665, + "y": 197.18333, + "index": 15, + "body": { + "#": 1302 + }, + "isInternal": false + }, + { + "x": 745.332, + "y": 199.02433, + "index": 16, + "body": { + "#": 1302 + }, + "isInternal": false + }, + { + "x": 750.152, + "y": 202.52733, + "index": 17, + "body": { + "#": 1302 + }, + "isInternal": false + }, + { + "x": 753.655, + "y": 207.34733, + "index": 18, + "body": { + "#": 1302 + }, + "isInternal": false + }, + { + "x": 755.496, + "y": 213.01433, + "index": 19, + "body": { + "#": 1302 + }, + "isInternal": false + }, + { + "x": 736.686, + "y": 215.99333 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1332 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1334 + }, + "max": { + "#": 1335 + } + }, + { + "x": 717.876, + "y": 197.18333 + }, + { + "x": 755.496, + "y": 234.80333 + }, + { + "x": 736.686, + "y": 212.93778 + }, + [ + { + "#": 1338 + }, + { + "#": 1339 + }, + { + "#": 1340 + }, + { + "#": 1341 + }, + { + "#": 1342 + }, + { + "#": 1343 + }, + { + "#": 1344 + }, + { + "#": 1345 + }, + { + "#": 1346 + }, + { + "#": 1347 + } + ], + { + "x": -0.95107, + "y": -0.30897 + }, + { + "x": -0.80893, + "y": -0.5879 + }, + { + "x": -0.5879, + "y": -0.80893 + }, + { + "x": -0.30897, + "y": -0.95107 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30897, + "y": -0.95107 + }, + { + "x": 0.5879, + "y": -0.80893 + }, + { + "x": 0.80893, + "y": -0.5879 + }, + { + "x": 0.95107, + "y": -0.30897 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "14,15,4,4", + "startCol": 14, + "endCol": 15, + "startRow": 4, + "endRow": 4 + }, + { + "id": 35, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1350 + }, + "angle": 0.00148, + "vertices": { + "#": 1351 + }, + "position": { + "#": 1368 + }, + "force": { + "#": 1369 + }, + "torque": 0, + "positionImpulse": { + "#": 1370 + }, + "constraintImpulse": { + "#": 1371 + }, + "totalContacts": 0, + "speed": 3.04803, + "angularSpeed": 0.00033, + "velocity": { + "#": 1372 + }, + "angularVelocity": 0.00037, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1373 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1374 + }, + "circleRadius": 14.32257, + "bounds": { + "#": 1376 + }, + "positionPrev": { + "#": 1379 + }, + "anglePrev": 0.00111, + "axes": { + "#": 1380 + }, + "area": 628.00307, + "mass": 0.628, + "inverseMass": 1.59235, + "inertia": 251.1089, + "inverseInertia": 0.00398, + "parent": { + "#": 1349 + }, + "sleepCounter": 0, + "region": { + "#": 1389 + } + }, + [ + { + "#": 1349 + } + ], + [ + { + "#": 1352 + }, + { + "#": 1353 + }, + { + "#": 1354 + }, + { + "#": 1355 + }, + { + "#": 1356 + }, + { + "#": 1357 + }, + { + "#": 1358 + }, + { + "#": 1359 + }, + { + "#": 1360 + }, + { + "#": 1361 + }, + { + "#": 1362 + }, + { + "#": 1363 + }, + { + "#": 1364 + }, + { + "#": 1365 + }, + { + "#": 1366 + }, + { + "#": 1367 + } + ], + { + "x": 48.52213, + "y": 293.3824, + "index": 0, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 46.37649, + "y": 298.54223, + "index": 1, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 42.41865, + "y": 302.48837, + "index": 2, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 37.25249, + "y": 304.61873, + "index": 3, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 31.6645, + "y": 304.61047, + "index": 4, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 26.50467, + "y": 302.46483, + "index": 5, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 22.55852, + "y": 298.50699, + "index": 6, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 20.42816, + "y": 293.34083, + "index": 7, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 20.43643, + "y": 287.75283, + "index": 8, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 22.58207, + "y": 282.593, + "index": 9, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 26.53991, + "y": 278.64685, + "index": 10, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 31.70607, + "y": 276.5165, + "index": 11, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 37.29406, + "y": 276.52476, + "index": 12, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 42.45389, + "y": 278.6704, + "index": 13, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 46.40004, + "y": 282.62824, + "index": 14, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 48.5304, + "y": 287.7944, + "index": 15, + "body": { + "#": 1349 + }, + "isInternal": false + }, + { + "x": 34.47928, + "y": 290.56761 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.27448, + "y": -0.00006 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00102, + "y": 3.04578 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1375 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1377 + }, + "max": { + "#": 1378 + } + }, + { + "x": 20.42816, + "y": 276.5165 + }, + { + "x": 48.53126, + "y": 307.66676 + }, + { + "x": 34.47832, + "y": 287.52179 + }, + [ + { + "#": 1381 + }, + { + "#": 1382 + }, + { + "#": 1383 + }, + { + "#": 1384 + }, + { + "#": 1385 + }, + { + "#": 1386 + }, + { + "#": 1387 + }, + { + "#": 1388 + } + ], + { + "x": -0.92335, + "y": -0.38396 + }, + { + "x": -0.70606, + "y": -0.70815 + }, + { + "x": -0.38123, + "y": -0.92448 + }, + { + "x": 0.00148, + "y": -1 + }, + { + "x": 0.38396, + "y": -0.92335 + }, + { + "x": 0.70815, + "y": -0.70606 + }, + { + "x": 0.92448, + "y": -0.38123 + }, + { + "x": 1, + "y": 0.00148 + }, + { + "id": "0,1,5,6", + "startCol": 0, + "endCol": 1, + "startRow": 5, + "endRow": 6 + }, + { + "id": 36, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1391 + }, + "angle": 0.00001, + "vertices": { + "#": 1392 + }, + "position": { + "#": 1407 + }, + "force": { + "#": 1408 + }, + "torque": 0, + "positionImpulse": { + "#": 1409 + }, + "constraintImpulse": { + "#": 1410 + }, + "totalContacts": 0, + "speed": 3.05554, + "angularSpeed": 0, + "velocity": { + "#": 1411 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1412 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1413 + }, + "circleRadius": 13.29437, + "bounds": { + "#": 1415 + }, + "positionPrev": { + "#": 1418 + }, + "anglePrev": 0.00001, + "axes": { + "#": 1419 + }, + "area": 536.79017, + "mass": 0.53679, + "inverseMass": 1.86293, + "inertia": 183.48033, + "inverseInertia": 0.00545, + "parent": { + "#": 1390 + }, + "sleepCounter": 0, + "region": { + "#": 1427 + } + }, + [ + { + "#": 1390 + } + ], + [ + { + "#": 1393 + }, + { + "#": 1394 + }, + { + "#": 1395 + }, + { + "#": 1396 + }, + { + "#": 1397 + }, + { + "#": 1398 + }, + { + "#": 1399 + }, + { + "#": 1400 + }, + { + "#": 1401 + }, + { + "#": 1402 + }, + { + "#": 1403 + }, + { + "#": 1404 + }, + { + "#": 1405 + }, + { + "#": 1406 + } + ], + { + "x": 99.34622, + "y": 324.2746, + "index": 0, + "body": { + "#": 1390 + }, + "isInternal": false + }, + { + "x": 96.77918, + "y": 329.60559, + "index": 1, + "body": { + "#": 1390 + }, + "isInternal": false + }, + { + "x": 92.15315, + "y": 333.29455, + "index": 2, + "body": { + "#": 1390 + }, + "isInternal": false + }, + { + "x": 86.38514, + "y": 334.61051, + "index": 3, + "body": { + "#": 1390 + }, + "isInternal": false + }, + { + "x": 80.61715, + "y": 333.29446, + "index": 4, + "body": { + "#": 1390 + }, + "isInternal": false + }, + { + "x": 75.99118, + "y": 329.60543, + "index": 5, + "body": { + "#": 1390 + }, + "isInternal": false + }, + { + "x": 73.42422, + "y": 324.27441, + "index": 6, + "body": { + "#": 1390 + }, + "isInternal": false + }, + { + "x": 73.42426, + "y": 318.35841, + "index": 7, + "body": { + "#": 1390 + }, + "isInternal": false + }, + { + "x": 75.9913, + "y": 313.02743, + "index": 8, + "body": { + "#": 1390 + }, + "isInternal": false + }, + { + "x": 80.61733, + "y": 309.33846, + "index": 9, + "body": { + "#": 1390 + }, + "isInternal": false + }, + { + "x": 86.38534, + "y": 308.02251, + "index": 10, + "body": { + "#": 1390 + }, + "isInternal": false + }, + { + "x": 92.15333, + "y": 309.33855, + "index": 11, + "body": { + "#": 1390 + }, + "isInternal": false + }, + { + "x": 96.7793, + "y": 313.02759, + "index": 12, + "body": { + "#": 1390 + }, + "isInternal": false + }, + { + "x": 99.34626, + "y": 318.3586, + "index": 13, + "body": { + "#": 1390 + }, + "isInternal": false + }, + { + "x": 86.38524, + "y": 321.31651 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.10017, + "y": 0.83164 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00008, + "y": 3.05554 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1414 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1416 + }, + "max": { + "#": 1417 + } + }, + { + "x": 73.42422, + "y": 308.02251 + }, + { + "x": 99.34634, + "y": 337.66605 + }, + { + "x": 86.38516, + "y": 318.26097 + }, + [ + { + "#": 1420 + }, + { + "#": 1421 + }, + { + "#": 1422 + }, + { + "#": 1423 + }, + { + "#": 1424 + }, + { + "#": 1425 + }, + { + "#": 1426 + } + ], + { + "x": -0.90098, + "y": -0.43385 + }, + { + "x": -0.62347, + "y": -0.78185 + }, + { + "x": -0.22243, + "y": -0.97495 + }, + { + "x": 0.22245, + "y": -0.97494 + }, + { + "x": 0.62348, + "y": -0.78184 + }, + { + "x": 0.90099, + "y": -0.43384 + }, + { + "x": 1, + "y": 0.00001 + }, + { + "id": "1,2,6,6", + "startCol": 1, + "endCol": 2, + "startRow": 6, + "endRow": 6 + }, + { + "id": 37, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1429 + }, + "angle": 0, + "vertices": { + "#": 1430 + }, + "position": { + "#": 1445 + }, + "force": { + "#": 1446 + }, + "torque": 0, + "positionImpulse": { + "#": 1447 + }, + "constraintImpulse": { + "#": 1448 + }, + "totalContacts": 0, + "speed": 3.05536, + "angularSpeed": 0.00001, + "velocity": { + "#": 1449 + }, + "angularVelocity": -0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1450 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1451 + }, + "circleRadius": 12.00896, + "bounds": { + "#": 1453 + }, + "positionPrev": { + "#": 1456 + }, + "anglePrev": 0.00001, + "axes": { + "#": 1457 + }, + "area": 438.00553, + "mass": 0.43801, + "inverseMass": 2.28308, + "inertia": 122.16297, + "inverseInertia": 0.00819, + "parent": { + "#": 1428 + }, + "sleepCounter": 0, + "region": { + "#": 1465 + } + }, + [ + { + "#": 1428 + } + ], + [ + { + "#": 1431 + }, + { + "#": 1432 + }, + { + "#": 1433 + }, + { + "#": 1434 + }, + { + "#": 1435 + }, + { + "#": 1436 + }, + { + "#": 1437 + }, + { + "#": 1438 + }, + { + "#": 1439 + }, + { + "#": 1440 + }, + { + "#": 1441 + }, + { + "#": 1442 + }, + { + "#": 1443 + }, + { + "#": 1444 + } + ], + { + "x": 134.86282, + "y": 331.18113, + "index": 0, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 132.5438, + "y": 335.99612, + "index": 1, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 128.36479, + "y": 339.3291, + "index": 2, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 123.15478, + "y": 340.51808, + "index": 3, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 117.94479, + "y": 339.32906, + "index": 4, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 113.7658, + "y": 335.99604, + "index": 5, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 111.44682, + "y": 331.18103, + "index": 6, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 111.44685, + "y": 325.83703, + "index": 7, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 113.76587, + "y": 321.02204, + "index": 8, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 117.94488, + "y": 317.68906, + "index": 9, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 123.15489, + "y": 316.50008, + "index": 10, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 128.36488, + "y": 317.6891, + "index": 11, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 132.54387, + "y": 321.02212, + "index": 12, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 134.86285, + "y": 325.83713, + "index": 13, + "body": { + "#": 1428 + }, + "isInternal": false + }, + { + "x": 123.15484, + "y": 328.50908 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.91359, + "y": 1.18495 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00004, + "y": 3.05531 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1452 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1454 + }, + "max": { + "#": 1455 + } + }, + { + "x": 111.44682, + "y": 316.50008 + }, + { + "x": 134.86289, + "y": 343.57344 + }, + { + "x": 123.1548, + "y": 325.45372 + }, + [ + { + "#": 1458 + }, + { + "#": 1459 + }, + { + "#": 1460 + }, + { + "#": 1461 + }, + { + "#": 1462 + }, + { + "#": 1463 + }, + { + "#": 1464 + } + ], + { + "x": -0.90095, + "y": -0.43392 + }, + { + "x": -0.62353, + "y": -0.7818 + }, + { + "x": -0.22249, + "y": -0.97493 + }, + { + "x": 0.2225, + "y": -0.97493 + }, + { + "x": 0.62353, + "y": -0.7818 + }, + { + "x": 0.90095, + "y": -0.43391 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,2,6,7", + "startCol": 2, + "endCol": 2, + "startRow": 6, + "endRow": 7 + }, + { + "id": 38, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1467 + }, + "angle": 0.00006, + "vertices": { + "#": 1468 + }, + "position": { + "#": 1487 + }, + "force": { + "#": 1488 + }, + "torque": 0, + "positionImpulse": { + "#": 1489 + }, + "constraintImpulse": { + "#": 1490 + }, + "totalContacts": 0, + "speed": 3.05565, + "angularSpeed": 0.00002, + "velocity": { + "#": 1491 + }, + "angularVelocity": 0.00003, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1492 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1493 + }, + "circleRadius": 16.14536, + "bounds": { + "#": 1495 + }, + "positionPrev": { + "#": 1498 + }, + "anglePrev": 0.00003, + "axes": { + "#": 1499 + }, + "area": 802.39633, + "mass": 0.8024, + "inverseMass": 1.24627, + "inertia": 409.91549, + "inverseInertia": 0.00244, + "parent": { + "#": 1466 + }, + "sleepCounter": 0, + "region": { + "#": 1509 + } + }, + [ + { + "#": 1466 + } + ], + [ + { + "#": 1469 + }, + { + "#": 1470 + }, + { + "#": 1471 + }, + { + "#": 1472 + }, + { + "#": 1473 + }, + { + "#": 1474 + }, + { + "#": 1475 + }, + { + "#": 1476 + }, + { + "#": 1477 + }, + { + "#": 1478 + }, + { + "#": 1479 + }, + { + "#": 1480 + }, + { + "#": 1481 + }, + { + "#": 1482 + }, + { + "#": 1483 + }, + { + "#": 1484 + }, + { + "#": 1485 + }, + { + "#": 1486 + } + ], + { + "x": 167.61484, + "y": 327.36958, + "index": 0, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 165.69651, + "y": 332.63846, + "index": 1, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 162.09224, + "y": 336.93324, + "index": 2, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 157.23606, + "y": 339.73693, + "index": 3, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 151.714, + "y": 340.70958, + "index": 4, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 146.19206, + "y": 339.73623, + "index": 5, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 141.33624, + "y": 336.93192, + "index": 6, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 137.73251, + "y": 332.63669, + "index": 7, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 135.81484, + "y": 327.36757, + "index": 8, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 135.8152, + "y": 321.75957, + "index": 9, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 137.73353, + "y": 316.49069, + "index": 10, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 141.3378, + "y": 312.19592, + "index": 11, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 146.19398, + "y": 309.39223, + "index": 12, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 151.71604, + "y": 308.41958, + "index": 13, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 157.23798, + "y": 309.39293, + "index": 14, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 162.0938, + "y": 312.19724, + "index": 15, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 165.69753, + "y": 316.49246, + "index": 16, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 167.6152, + "y": 321.76158, + "index": 17, + "body": { + "#": 1466 + }, + "isInternal": false + }, + { + "x": 151.71502, + "y": 324.56458 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.1121, + "y": 1.63176 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.001, + "y": 3.05568 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1494 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1496 + }, + "max": { + "#": 1497 + } + }, + { + "x": 135.81484, + "y": 308.41958 + }, + { + "x": 167.61601, + "y": 343.76523 + }, + { + "x": 151.71401, + "y": 321.50893 + }, + [ + { + "#": 1500 + }, + { + "#": 1501 + }, + { + "#": 1502 + }, + { + "#": 1503 + }, + { + "#": 1504 + }, + { + "#": 1505 + }, + { + "#": 1506 + }, + { + "#": 1507 + }, + { + "#": 1508 + } + ], + { + "x": -0.93966, + "y": -0.34212 + }, + { + "x": -0.766, + "y": -0.64284 + }, + { + "x": -0.5, + "y": -0.86603 + }, + { + "x": -0.17347, + "y": -0.98484 + }, + { + "x": 0.17359, + "y": -0.98482 + }, + { + "x": 0.50011, + "y": -0.86596 + }, + { + "x": 0.76608, + "y": -0.64275 + }, + { + "x": 0.9397, + "y": -0.342 + }, + { + "x": 1, + "y": 0.00006 + }, + { + "id": "2,3,6,7", + "startCol": 2, + "endCol": 3, + "startRow": 6, + "endRow": 7 + }, + { + "id": 39, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1511 + }, + "angle": 0, + "vertices": { + "#": 1512 + }, + "position": { + "#": 1533 + }, + "force": { + "#": 1534 + }, + "torque": 0, + "positionImpulse": { + "#": 1535 + }, + "constraintImpulse": { + "#": 1536 + }, + "totalContacts": 0, + "speed": 3.05555, + "angularSpeed": 0, + "velocity": { + "#": 1537 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1538 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1539 + }, + "circleRadius": 18.78999, + "bounds": { + "#": 1541 + }, + "positionPrev": { + "#": 1544 + }, + "anglePrev": 0, + "axes": { + "#": 1545 + }, + "area": 1091.04511, + "mass": 1.09105, + "inverseMass": 0.91655, + "inertia": 757.86058, + "inverseInertia": 0.00132, + "parent": { + "#": 1510 + }, + "sleepCounter": 0, + "region": { + "#": 1556 + } + }, + [ + { + "#": 1510 + } + ], + [ + { + "#": 1513 + }, + { + "#": 1514 + }, + { + "#": 1515 + }, + { + "#": 1516 + }, + { + "#": 1517 + }, + { + "#": 1518 + }, + { + "#": 1519 + }, + { + "#": 1520 + }, + { + "#": 1521 + }, + { + "#": 1522 + }, + { + "#": 1523 + }, + { + "#": 1524 + }, + { + "#": 1525 + }, + { + "#": 1526 + }, + { + "#": 1527 + }, + { + "#": 1528 + }, + { + "#": 1529 + }, + { + "#": 1530 + }, + { + "#": 1531 + }, + { + "#": 1532 + } + ], + { + "x": 210.18775, + "y": 354.36926, + "index": 0, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 208.37076, + "y": 359.96027, + "index": 1, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 204.91578, + "y": 364.71728, + "index": 2, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 200.15879, + "y": 368.17229, + "index": 3, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 194.56779, + "y": 369.98931, + "index": 4, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 188.68979, + "y": 369.98932, + "index": 5, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 183.09879, + "y": 368.17234, + "index": 6, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 178.34178, + "y": 364.71736, + "index": 7, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 174.88676, + "y": 359.96037, + "index": 8, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 173.06975, + "y": 354.36937, + "index": 9, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 173.06973, + "y": 348.49137, + "index": 10, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 174.88671, + "y": 342.90037, + "index": 11, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 178.3417, + "y": 338.14336, + "index": 12, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 183.09869, + "y": 334.68834, + "index": 13, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 188.68968, + "y": 332.87132, + "index": 14, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 194.56768, + "y": 332.87131, + "index": 15, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 200.15869, + "y": 334.68829, + "index": 16, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 204.9157, + "y": 338.14328, + "index": 17, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 208.37071, + "y": 342.90027, + "index": 18, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 210.18773, + "y": 348.49126, + "index": 19, + "body": { + "#": 1510 + }, + "isInternal": false + }, + { + "x": 191.62874, + "y": 351.43032 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.25568, + "y": 1.21287 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00002, + "y": 3.05555 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1540 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1542 + }, + "max": { + "#": 1543 + } + }, + { + "x": 173.06973, + "y": 332.87131 + }, + { + "x": 210.18776, + "y": 373.04487 + }, + { + "x": 191.62872, + "y": 348.37477 + }, + [ + { + "#": 1546 + }, + { + "#": 1547 + }, + { + "#": 1548 + }, + { + "#": 1549 + }, + { + "#": 1550 + }, + { + "#": 1551 + }, + { + "#": 1552 + }, + { + "#": 1553 + }, + { + "#": 1554 + }, + { + "#": 1555 + } + ], + { + "x": -0.95104, + "y": -0.30907 + }, + { + "x": -0.80911, + "y": -0.58765 + }, + { + "x": -0.58766, + "y": -0.80911 + }, + { + "x": -0.30908, + "y": -0.95104 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30907, + "y": -0.95104 + }, + { + "x": 0.58765, + "y": -0.80911 + }, + { + "x": 0.80911, + "y": -0.58766 + }, + { + "x": 0.95104, + "y": -0.30908 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "3,4,6,7", + "startCol": 3, + "endCol": 4, + "startRow": 6, + "endRow": 7 + }, + { + "id": 40, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1558 + }, + "angle": -0.00001, + "vertices": { + "#": 1559 + }, + "position": { + "#": 1576 + }, + "force": { + "#": 1577 + }, + "torque": 0, + "positionImpulse": { + "#": 1578 + }, + "constraintImpulse": { + "#": 1579 + }, + "totalContacts": 0, + "speed": 3.05583, + "angularSpeed": 0, + "velocity": { + "#": 1580 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1581 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1582 + }, + "circleRadius": 14.88113, + "bounds": { + "#": 1584 + }, + "positionPrev": { + "#": 1587 + }, + "anglePrev": -0.00001, + "axes": { + "#": 1588 + }, + "area": 677.95031, + "mass": 0.67795, + "inverseMass": 1.47503, + "inertia": 292.64041, + "inverseInertia": 0.00342, + "parent": { + "#": 1557 + }, + "sleepCounter": 0, + "region": { + "#": 1597 + } + }, + [ + { + "#": 1557 + } + ], + [ + { + "#": 1560 + }, + { + "#": 1561 + }, + { + "#": 1562 + }, + { + "#": 1563 + }, + { + "#": 1564 + }, + { + "#": 1565 + }, + { + "#": 1566 + }, + { + "#": 1567 + }, + { + "#": 1568 + }, + { + "#": 1569 + }, + { + "#": 1570 + }, + { + "#": 1571 + }, + { + "#": 1572 + }, + { + "#": 1573 + }, + { + "#": 1574 + }, + { + "#": 1575 + } + ], + { + "x": 310.61002, + "y": 313.33703, + "index": 0, + "body": { + "#": 1557 + }, + "isInternal": false + }, + { + "x": 308.38808, + "y": 318.70206, + "index": 1, + "body": { + "#": 1557 + }, + "isInternal": false + }, + { + "x": 304.28313, + "y": 322.80711, + "index": 2, + "body": { + "#": 1557 + }, + "isInternal": false + }, + { + "x": 298.91815, + "y": 325.02917, + "index": 3, + "body": { + "#": 1557 + }, + "isInternal": false + }, + { + "x": 293.11215, + "y": 325.02924, + "index": 4, + "body": { + "#": 1557 + }, + "isInternal": false + }, + { + "x": 287.74713, + "y": 322.8073, + "index": 5, + "body": { + "#": 1557 + }, + "isInternal": false + }, + { + "x": 283.64208, + "y": 318.70235, + "index": 6, + "body": { + "#": 1557 + }, + "isInternal": false + }, + { + "x": 281.42002, + "y": 313.33737, + "index": 7, + "body": { + "#": 1557 + }, + "isInternal": false + }, + { + "x": 281.41995, + "y": 307.53137, + "index": 8, + "body": { + "#": 1557 + }, + "isInternal": false + }, + { + "x": 283.64189, + "y": 302.16635, + "index": 9, + "body": { + "#": 1557 + }, + "isInternal": false + }, + { + "x": 287.74684, + "y": 298.0613, + "index": 10, + "body": { + "#": 1557 + }, + "isInternal": false + }, + { + "x": 293.11181, + "y": 295.83924, + "index": 11, + "body": { + "#": 1557 + }, + "isInternal": false + }, + { + "x": 298.91781, + "y": 295.83917, + "index": 12, + "body": { + "#": 1557 + }, + "isInternal": false + }, + { + "x": 304.28284, + "y": 298.06111, + "index": 13, + "body": { + "#": 1557 + }, + "isInternal": false + }, + { + "x": 308.38789, + "y": 302.16606, + "index": 14, + "body": { + "#": 1557 + }, + "isInternal": false + }, + { + "x": 310.60995, + "y": 307.53103, + "index": 15, + "body": { + "#": 1557 + }, + "isInternal": false + }, + { + "x": 296.01498, + "y": 310.4342 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.66538, + "y": 0.36254 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00053, + "y": 3.05583 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1583 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1585 + }, + "max": { + "#": 1586 + } + }, + { + "x": 281.41995, + "y": 295.83917 + }, + { + "x": 310.61054, + "y": 328.08507 + }, + { + "x": 296.01446, + "y": 307.37837 + }, + [ + { + "#": 1589 + }, + { + "#": 1590 + }, + { + "#": 1591 + }, + { + "#": 1592 + }, + { + "#": 1593 + }, + { + "#": 1594 + }, + { + "#": 1595 + }, + { + "#": 1596 + } + ], + { + "x": -0.9239, + "y": -0.38264 + }, + { + "x": -0.70712, + "y": -0.7071 + }, + { + "x": -0.38266, + "y": -0.92389 + }, + { + "x": -0.00001, + "y": -1 + }, + { + "x": 0.38264, + "y": -0.9239 + }, + { + "x": 0.7071, + "y": -0.70712 + }, + { + "x": 0.92389, + "y": -0.38266 + }, + { + "x": 1, + "y": -0.00001 + }, + { + "id": "5,6,6,6", + "startCol": 5, + "endCol": 6, + "startRow": 6, + "endRow": 6 + }, + { + "id": 41, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1599 + }, + "angle": -0.00002, + "vertices": { + "#": 1600 + }, + "position": { + "#": 1615 + }, + "force": { + "#": 1616 + }, + "torque": 0, + "positionImpulse": { + "#": 1617 + }, + "constraintImpulse": { + "#": 1618 + }, + "totalContacts": 0, + "speed": 3.05569, + "angularSpeed": 0, + "velocity": { + "#": 1619 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1620 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1621 + }, + "circleRadius": 12.32, + "bounds": { + "#": 1623 + }, + "positionPrev": { + "#": 1626 + }, + "anglePrev": -0.00002, + "axes": { + "#": 1627 + }, + "area": 460.97597, + "mass": 0.46098, + "inverseMass": 2.16931, + "inertia": 135.3122, + "inverseInertia": 0.00739, + "parent": { + "#": 1598 + }, + "sleepCounter": 0, + "region": { + "#": 1635 + } + }, + [ + { + "#": 1598 + } + ], + [ + { + "#": 1601 + }, + { + "#": 1602 + }, + { + "#": 1603 + }, + { + "#": 1604 + }, + { + "#": 1605 + }, + { + "#": 1606 + }, + { + "#": 1607 + }, + { + "#": 1608 + }, + { + "#": 1609 + }, + { + "#": 1610 + }, + { + "#": 1611 + }, + { + "#": 1612 + }, + { + "#": 1613 + }, + { + "#": 1614 + } + ], + { + "x": 335.47904, + "y": 315.04326, + "index": 0, + "body": { + "#": 1598 + }, + "isInternal": false + }, + { + "x": 333.10013, + "y": 319.9833, + "index": 1, + "body": { + "#": 1598 + }, + "isInternal": false + }, + { + "x": 328.81319, + "y": 323.40238, + "index": 2, + "body": { + "#": 1598 + }, + "isInternal": false + }, + { + "x": 323.46822, + "y": 324.62248, + "index": 3, + "body": { + "#": 1598 + }, + "isInternal": false + }, + { + "x": 318.12319, + "y": 323.40258, + "index": 4, + "body": { + "#": 1598 + }, + "isInternal": false + }, + { + "x": 313.83613, + "y": 319.98366, + "index": 5, + "body": { + "#": 1598 + }, + "isInternal": false + }, + { + "x": 311.45704, + "y": 315.0437, + "index": 6, + "body": { + "#": 1598 + }, + "isInternal": false + }, + { + "x": 311.45694, + "y": 309.5617, + "index": 7, + "body": { + "#": 1598 + }, + "isInternal": false + }, + { + "x": 313.83585, + "y": 304.62166, + "index": 8, + "body": { + "#": 1598 + }, + "isInternal": false + }, + { + "x": 318.12279, + "y": 301.20258, + "index": 9, + "body": { + "#": 1598 + }, + "isInternal": false + }, + { + "x": 323.46776, + "y": 299.98248, + "index": 10, + "body": { + "#": 1598 + }, + "isInternal": false + }, + { + "x": 328.81279, + "y": 301.20238, + "index": 11, + "body": { + "#": 1598 + }, + "isInternal": false + }, + { + "x": 333.09985, + "y": 304.6213, + "index": 12, + "body": { + "#": 1598 + }, + "isInternal": false + }, + { + "x": 335.47894, + "y": 309.56126, + "index": 13, + "body": { + "#": 1598 + }, + "isInternal": false + }, + { + "x": 323.46799, + "y": 312.30248 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.95348, + "y": 0.44039 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00035, + "y": 3.05569 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1622 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1624 + }, + "max": { + "#": 1625 + } + }, + { + "x": 311.45694, + "y": 299.98248 + }, + { + "x": 335.47939, + "y": 327.67817 + }, + { + "x": 323.46764, + "y": 309.24678 + }, + [ + { + "#": 1628 + }, + { + "#": 1629 + }, + { + "#": 1630 + }, + { + "#": 1631 + }, + { + "#": 1632 + }, + { + "#": 1633 + }, + { + "#": 1634 + } + ], + { + "x": -0.90098, + "y": -0.43387 + }, + { + "x": -0.62353, + "y": -0.7818 + }, + { + "x": -0.22255, + "y": -0.97492 + }, + { + "x": 0.22251, + "y": -0.97493 + }, + { + "x": 0.6235, + "y": -0.78182 + }, + { + "x": 0.90096, + "y": -0.4339 + }, + { + "x": 1, + "y": -0.00002 + }, + { + "id": "6,6,6,6", + "startCol": 6, + "endCol": 6, + "startRow": 6, + "endRow": 6 + }, + { + "id": 42, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1637 + }, + "angle": 0, + "vertices": { + "#": 1638 + }, + "position": { + "#": 1659 + }, + "force": { + "#": 1660 + }, + "torque": 0, + "positionImpulse": { + "#": 1661 + }, + "constraintImpulse": { + "#": 1662 + }, + "totalContacts": 0, + "speed": 3.05562, + "angularSpeed": 0, + "velocity": { + "#": 1663 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1664 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1665 + }, + "circleRadius": 19.74859, + "bounds": { + "#": 1667 + }, + "positionPrev": { + "#": 1670 + }, + "anglePrev": 0, + "axes": { + "#": 1671 + }, + "area": 1205.1522, + "mass": 1.20515, + "inverseMass": 0.82977, + "inertia": 924.67199, + "inverseInertia": 0.00108, + "parent": { + "#": 1636 + }, + "sleepCounter": 0, + "region": { + "#": 1682 + } + }, + [ + { + "#": 1636 + } + ], + [ + { + "#": 1639 + }, + { + "#": 1640 + }, + { + "#": 1641 + }, + { + "#": 1642 + }, + { + "#": 1643 + }, + { + "#": 1644 + }, + { + "#": 1645 + }, + { + "#": 1646 + }, + { + "#": 1647 + }, + { + "#": 1648 + }, + { + "#": 1649 + }, + { + "#": 1650 + }, + { + "#": 1651 + }, + { + "#": 1652 + }, + { + "#": 1653 + }, + { + "#": 1654 + }, + { + "#": 1655 + }, + { + "#": 1656 + }, + { + "#": 1657 + }, + { + "#": 1658 + } + ], + { + "x": 478.20127, + "y": 365.59225, + "index": 0, + "body": { + "#": 1636 + }, + "isInternal": false + }, + { + "x": 476.29227, + "y": 371.46925, + "index": 1, + "body": { + "#": 1636 + }, + "isInternal": false + }, + { + "x": 472.66027, + "y": 376.46725, + "index": 2, + "body": { + "#": 1636 + }, + "isInternal": false + }, + { + "x": 467.66227, + "y": 380.09925, + "index": 3, + "body": { + "#": 1636 + }, + "isInternal": false + }, + { + "x": 461.78527, + "y": 382.00825, + "index": 4, + "body": { + "#": 1636 + }, + "isInternal": false + }, + { + "x": 455.60727, + "y": 382.00825, + "index": 5, + "body": { + "#": 1636 + }, + "isInternal": false + }, + { + "x": 449.73027, + "y": 380.09925, + "index": 6, + "body": { + "#": 1636 + }, + "isInternal": false + }, + { + "x": 444.73227, + "y": 376.46725, + "index": 7, + "body": { + "#": 1636 + }, + "isInternal": false + }, + { + "x": 441.10027, + "y": 371.46925, + "index": 8, + "body": { + "#": 1636 + }, + "isInternal": false + }, + { + "x": 439.19127, + "y": 365.59225, + "index": 9, + "body": { + "#": 1636 + }, + "isInternal": false + }, + { + "x": 439.19127, + "y": 359.41425, + "index": 10, + "body": { + "#": 1636 + }, + "isInternal": false + }, + { + "x": 441.10027, + "y": 353.53725, + "index": 11, + "body": { + "#": 1636 + }, + "isInternal": false + }, + { + "x": 444.73227, + "y": 348.53925, + "index": 12, + "body": { + "#": 1636 + }, + "isInternal": false + }, + { + "x": 449.73027, + "y": 344.90725, + "index": 13, + "body": { + "#": 1636 + }, + "isInternal": false + }, + { + "x": 455.60727, + "y": 342.99825, + "index": 14, + "body": { + "#": 1636 + }, + "isInternal": false + }, + { + "x": 461.78527, + "y": 342.99825, + "index": 15, + "body": { + "#": 1636 + }, + "isInternal": false + }, + { + "x": 467.66227, + "y": 344.90725, + "index": 16, + "body": { + "#": 1636 + }, + "isInternal": false + }, + { + "x": 472.66027, + "y": 348.53925, + "index": 17, + "body": { + "#": 1636 + }, + "isInternal": false + }, + { + "x": 476.29227, + "y": 353.53725, + "index": 18, + "body": { + "#": 1636 + }, + "isInternal": false + }, + { + "x": 478.20127, + "y": 359.41425, + "index": 19, + "body": { + "#": 1636 + }, + "isInternal": false + }, + { + "x": 458.69627, + "y": 362.50325 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.81651, + "y": 1.59862 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00012, + "y": 3.05562 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1666 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1668 + }, + "max": { + "#": 1669 + } + }, + { + "x": 439.19127, + "y": 342.99825 + }, + { + "x": 478.20139, + "y": 385.06387 + }, + { + "x": 458.69615, + "y": 359.44763 + }, + [ + { + "#": 1672 + }, + { + "#": 1673 + }, + { + "#": 1674 + }, + { + "#": 1675 + }, + { + "#": 1676 + }, + { + "#": 1677 + }, + { + "#": 1678 + }, + { + "#": 1679 + }, + { + "#": 1680 + }, + { + "#": 1681 + } + ], + { + "x": -0.95108, + "y": -0.30894 + }, + { + "x": -0.80896, + "y": -0.58786 + }, + { + "x": -0.58786, + "y": -0.80896 + }, + { + "x": -0.30894, + "y": -0.95108 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30894, + "y": -0.95108 + }, + { + "x": 0.58786, + "y": -0.80896 + }, + { + "x": 0.80896, + "y": -0.58786 + }, + { + "x": 0.95108, + "y": -0.30894 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,9,7,7", + "startCol": 9, + "endCol": 9, + "startRow": 7, + "endRow": 7 + }, + { + "id": 43, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1684 + }, + "angle": 0.00001, + "vertices": { + "#": 1685 + }, + "position": { + "#": 1698 + }, + "force": { + "#": 1699 + }, + "torque": 0, + "positionImpulse": { + "#": 1700 + }, + "constraintImpulse": { + "#": 1701 + }, + "totalContacts": 0, + "speed": 3.05559, + "angularSpeed": 0, + "velocity": { + "#": 1702 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1703 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1704 + }, + "circleRadius": 10.99404, + "bounds": { + "#": 1706 + }, + "positionPrev": { + "#": 1709 + }, + "anglePrev": 0.00001, + "axes": { + "#": 1710 + }, + "area": 362.58452, + "mass": 0.36258, + "inverseMass": 2.75798, + "inertia": 83.73096, + "inverseInertia": 0.01194, + "parent": { + "#": 1683 + }, + "sleepCounter": 0, + "region": { + "#": 1717 + } + }, + [ + { + "#": 1683 + } + ], + [ + { + "#": 1686 + }, + { + "#": 1687 + }, + { + "#": 1688 + }, + { + "#": 1689 + }, + { + "#": 1690 + }, + { + "#": 1691 + }, + { + "#": 1692 + }, + { + "#": 1693 + }, + { + "#": 1694 + }, + { + "#": 1695 + }, + { + "#": 1696 + }, + { + "#": 1697 + } + ], + { + "x": 441.73496, + "y": 349.04903, + "index": 0, + "body": { + "#": 1683 + }, + "isInternal": false + }, + { + "x": 438.88992, + "y": 353.978, + "index": 1, + "body": { + "#": 1683 + }, + "isInternal": false + }, + { + "x": 433.9609, + "y": 356.82296, + "index": 2, + "body": { + "#": 1683 + }, + "isInternal": false + }, + { + "x": 428.2709, + "y": 356.82291, + "index": 3, + "body": { + "#": 1683 + }, + "isInternal": false + }, + { + "x": 423.34192, + "y": 353.97787, + "index": 4, + "body": { + "#": 1683 + }, + "isInternal": false + }, + { + "x": 420.49696, + "y": 349.04885, + "index": 5, + "body": { + "#": 1683 + }, + "isInternal": false + }, + { + "x": 420.49701, + "y": 343.35885, + "index": 6, + "body": { + "#": 1683 + }, + "isInternal": false + }, + { + "x": 423.34205, + "y": 338.42987, + "index": 7, + "body": { + "#": 1683 + }, + "isInternal": false + }, + { + "x": 428.27108, + "y": 335.58491, + "index": 8, + "body": { + "#": 1683 + }, + "isInternal": false + }, + { + "x": 433.96108, + "y": 335.58496, + "index": 9, + "body": { + "#": 1683 + }, + "isInternal": false + }, + { + "x": 438.89005, + "y": 338.43, + "index": 10, + "body": { + "#": 1683 + }, + "isInternal": false + }, + { + "x": 441.73501, + "y": 343.35903, + "index": 11, + "body": { + "#": 1683 + }, + "isInternal": false + }, + { + "x": 431.11599, + "y": 346.20394 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.91142, + "y": 1.17255 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00029, + "y": 3.05559 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1705 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1707 + }, + "max": { + "#": 1708 + } + }, + { + "x": 420.49696, + "y": 335.58491 + }, + { + "x": 441.7353, + "y": 359.87856 + }, + { + "x": 431.1157, + "y": 343.14834 + }, + [ + { + "#": 1711 + }, + { + "#": 1712 + }, + { + "#": 1713 + }, + { + "#": 1714 + }, + { + "#": 1715 + }, + { + "#": 1716 + } + ], + { + "x": -0.86608, + "y": -0.49991 + }, + { + "x": -0.49989, + "y": -0.86609 + }, + { + "x": 0.00001, + "y": -1 + }, + { + "x": 0.49991, + "y": -0.86608 + }, + { + "x": 0.86609, + "y": -0.49989 + }, + { + "x": 1, + "y": 0.00001 + }, + { + "id": "8,9,6,7", + "startCol": 8, + "endCol": 9, + "startRow": 6, + "endRow": 7 + }, + { + "id": 44, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1719 + }, + "angle": -0.00001, + "vertices": { + "#": 1720 + }, + "position": { + "#": 1739 + }, + "force": { + "#": 1740 + }, + "torque": 0, + "positionImpulse": { + "#": 1741 + }, + "constraintImpulse": { + "#": 1742 + }, + "totalContacts": 0, + "speed": 3.05559, + "angularSpeed": 0, + "velocity": { + "#": 1743 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1744 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1745 + }, + "circleRadius": 16.17983, + "bounds": { + "#": 1747 + }, + "positionPrev": { + "#": 1750 + }, + "anglePrev": -0.00001, + "axes": { + "#": 1751 + }, + "area": 805.81786, + "mass": 0.80582, + "inverseMass": 1.24098, + "inertia": 413.41883, + "inverseInertia": 0.00242, + "parent": { + "#": 1718 + }, + "sleepCounter": 0, + "region": { + "#": 1761 + } + }, + [ + { + "#": 1718 + } + ], + [ + { + "#": 1721 + }, + { + "#": 1722 + }, + { + "#": 1723 + }, + { + "#": 1724 + }, + { + "#": 1725 + }, + { + "#": 1726 + }, + { + "#": 1727 + }, + { + "#": 1728 + }, + { + "#": 1729 + }, + { + "#": 1730 + }, + { + "#": 1731 + }, + { + "#": 1732 + }, + { + "#": 1733 + }, + { + "#": 1734 + }, + { + "#": 1735 + }, + { + "#": 1736 + }, + { + "#": 1737 + }, + { + "#": 1738 + } + ], + { + "x": 519.20808, + "y": 365.66941, + "index": 0, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 517.28614, + "y": 370.94943, + "index": 1, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 513.67418, + "y": 375.25347, + "index": 2, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 508.80821, + "y": 378.06352, + "index": 3, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 503.27422, + "y": 379.03958, + "index": 4, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 497.74021, + "y": 378.06364, + "index": 5, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 492.87418, + "y": 375.25369, + "index": 6, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 489.26214, + "y": 370.94973, + "index": 7, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 487.34008, + "y": 365.66975, + "index": 8, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 487.34002, + "y": 360.04975, + "index": 9, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 489.26197, + "y": 354.76973, + "index": 10, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 492.87392, + "y": 350.46569, + "index": 11, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 497.73989, + "y": 347.65564, + "index": 12, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 503.27388, + "y": 346.67958, + "index": 13, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 508.80789, + "y": 347.65552, + "index": 14, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 513.67392, + "y": 350.46547, + "index": 15, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 517.28597, + "y": 354.76943, + "index": 16, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 519.20802, + "y": 360.04941, + "index": 17, + "body": { + "#": 1718 + }, + "isInternal": false + }, + { + "x": 503.27405, + "y": 362.85958 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1.10692, + "y": 2.15055 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00001, + "y": 3.05559 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1746 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1748 + }, + "max": { + "#": 1749 + } + }, + { + "x": 487.34002, + "y": 346.67958 + }, + { + "x": 519.20809, + "y": 382.09517 + }, + { + "x": 503.27404, + "y": 359.804 + }, + [ + { + "#": 1752 + }, + { + "#": 1753 + }, + { + "#": 1754 + }, + { + "#": 1755 + }, + { + "#": 1756 + }, + { + "#": 1757 + }, + { + "#": 1758 + }, + { + "#": 1759 + }, + { + "#": 1760 + } + ], + { + "x": -0.93968, + "y": -0.34205 + }, + { + "x": -0.76601, + "y": -0.64283 + }, + { + "x": -0.50009, + "y": -0.86597 + }, + { + "x": -0.17369, + "y": -0.9848 + }, + { + "x": 0.17367, + "y": -0.9848 + }, + { + "x": 0.50007, + "y": -0.86598 + }, + { + "x": 0.76599, + "y": -0.64285 + }, + { + "x": 0.93968, + "y": -0.34207 + }, + { + "x": 1, + "y": -0.00001 + }, + { + "id": "10,10,7,7", + "startCol": 10, + "endCol": 10, + "startRow": 7, + "endRow": 7 + }, + { + "id": 45, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1763 + }, + "angle": 0, + "vertices": { + "#": 1764 + }, + "position": { + "#": 1785 + }, + "force": { + "#": 1786 + }, + "torque": 0, + "positionImpulse": { + "#": 1787 + }, + "constraintImpulse": { + "#": 1788 + }, + "totalContacts": 0, + "speed": 3.05555, + "angularSpeed": 0, + "velocity": { + "#": 1789 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1790 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1791 + }, + "circleRadius": 19.50347, + "bounds": { + "#": 1793 + }, + "positionPrev": { + "#": 1796 + }, + "anglePrev": 0, + "axes": { + "#": 1797 + }, + "area": 1175.44088, + "mass": 1.17544, + "inverseMass": 0.85074, + "inertia": 879.64105, + "inverseInertia": 0.00114, + "parent": { + "#": 1762 + }, + "sleepCounter": 0, + "region": { + "#": 1808 + } + }, + [ + { + "#": 1762 + } + ], + [ + { + "#": 1765 + }, + { + "#": 1766 + }, + { + "#": 1767 + }, + { + "#": 1768 + }, + { + "#": 1769 + }, + { + "#": 1770 + }, + { + "#": 1771 + }, + { + "#": 1772 + }, + { + "#": 1773 + }, + { + "#": 1774 + }, + { + "#": 1775 + }, + { + "#": 1776 + }, + { + "#": 1777 + }, + { + "#": 1778 + }, + { + "#": 1779 + }, + { + "#": 1780 + }, + { + "#": 1781 + }, + { + "#": 1782 + }, + { + "#": 1783 + }, + { + "#": 1784 + } + ], + { + "x": 625.17998, + "y": 330.82967, + "index": 0, + "body": { + "#": 1762 + }, + "isInternal": false + }, + { + "x": 623.29497, + "y": 336.63267, + "index": 1, + "body": { + "#": 1762 + }, + "isInternal": false + }, + { + "x": 619.70797, + "y": 341.56966, + "index": 2, + "body": { + "#": 1762 + }, + "isInternal": false + }, + { + "x": 614.77097, + "y": 345.15666, + "index": 3, + "body": { + "#": 1762 + }, + "isInternal": false + }, + { + "x": 608.96797, + "y": 347.04166, + "index": 4, + "body": { + "#": 1762 + }, + "isInternal": false + }, + { + "x": 602.86597, + "y": 347.04165, + "index": 5, + "body": { + "#": 1762 + }, + "isInternal": false + }, + { + "x": 597.06297, + "y": 345.15665, + "index": 6, + "body": { + "#": 1762 + }, + "isInternal": false + }, + { + "x": 592.12597, + "y": 341.56965, + "index": 7, + "body": { + "#": 1762 + }, + "isInternal": false + }, + { + "x": 588.53897, + "y": 336.63264, + "index": 8, + "body": { + "#": 1762 + }, + "isInternal": false + }, + { + "x": 586.65398, + "y": 330.82964, + "index": 9, + "body": { + "#": 1762 + }, + "isInternal": false + }, + { + "x": 586.65398, + "y": 324.72764, + "index": 10, + "body": { + "#": 1762 + }, + "isInternal": false + }, + { + "x": 588.53898, + "y": 318.92464, + "index": 11, + "body": { + "#": 1762 + }, + "isInternal": false + }, + { + "x": 592.12599, + "y": 313.98765, + "index": 12, + "body": { + "#": 1762 + }, + "isInternal": false + }, + { + "x": 597.06299, + "y": 310.40065, + "index": 13, + "body": { + "#": 1762 + }, + "isInternal": false + }, + { + "x": 602.86599, + "y": 308.51565, + "index": 14, + "body": { + "#": 1762 + }, + "isInternal": false + }, + { + "x": 608.96799, + "y": 308.51566, + "index": 15, + "body": { + "#": 1762 + }, + "isInternal": false + }, + { + "x": 614.77099, + "y": 310.40066, + "index": 16, + "body": { + "#": 1762 + }, + "isInternal": false + }, + { + "x": 619.70799, + "y": 313.98766, + "index": 17, + "body": { + "#": 1762 + }, + "isInternal": false + }, + { + "x": 623.29498, + "y": 318.92467, + "index": 18, + "body": { + "#": 1762 + }, + "isInternal": false + }, + { + "x": 625.17998, + "y": 324.72767, + "index": 19, + "body": { + "#": 1762 + }, + "isInternal": false + }, + { + "x": 605.91698, + "y": 327.77866 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.87399, + "y": 1.05893 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05555 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1792 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1794 + }, + "max": { + "#": 1795 + } + }, + { + "x": 586.65398, + "y": 308.51565 + }, + { + "x": 625.17998, + "y": 350.09721 + }, + { + "x": 605.91698, + "y": 324.7231 + }, + [ + { + "#": 1798 + }, + { + "#": 1799 + }, + { + "#": 1800 + }, + { + "#": 1801 + }, + { + "#": 1802 + }, + { + "#": 1803 + }, + { + "#": 1804 + }, + { + "#": 1805 + }, + { + "#": 1806 + }, + { + "#": 1807 + } + ], + { + "x": -0.95108, + "y": -0.30894 + }, + { + "x": -0.80901, + "y": -0.58779 + }, + { + "x": -0.58779, + "y": -0.80901 + }, + { + "x": -0.30894, + "y": -0.95108 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.30894, + "y": -0.95108 + }, + { + "x": 0.58779, + "y": -0.80901 + }, + { + "x": 0.80901, + "y": -0.58779 + }, + { + "x": 0.95108, + "y": -0.30894 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,13,6,7", + "startCol": 12, + "endCol": 13, + "startRow": 6, + "endRow": 7 + }, + { + "id": 46, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1810 + }, + "angle": 0, + "vertices": { + "#": 1811 + }, + "position": { + "#": 1826 + }, + "force": { + "#": 1827 + }, + "torque": 0, + "positionImpulse": { + "#": 1828 + }, + "constraintImpulse": { + "#": 1829 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 1830 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1831 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1832 + }, + "circleRadius": 13.68103, + "bounds": { + "#": 1834 + }, + "positionPrev": { + "#": 1837 + }, + "anglePrev": 0, + "axes": { + "#": 1838 + }, + "area": 568.46124, + "mass": 0.56846, + "inverseMass": 1.75913, + "inertia": 205.77003, + "inverseInertia": 0.00486, + "parent": { + "#": 1809 + }, + "sleepCounter": 0, + "region": { + "#": 1846 + } + }, + [ + { + "#": 1809 + } + ], + [ + { + "#": 1812 + }, + { + "#": 1813 + }, + { + "#": 1814 + }, + { + "#": 1815 + }, + { + "#": 1816 + }, + { + "#": 1817 + }, + { + "#": 1818 + }, + { + "#": 1819 + }, + { + "#": 1820 + }, + { + "#": 1821 + }, + { + "#": 1822 + }, + { + "#": 1823 + }, + { + "#": 1824 + }, + { + "#": 1825 + } + ], + { + "x": 618.97351, + "y": 282.25532, + "index": 0, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 616.33151, + "y": 287.74132, + "index": 1, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 611.5715, + "y": 291.53731, + "index": 2, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 605.6355, + "y": 292.8923, + "index": 3, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 599.6995, + "y": 291.53729, + "index": 4, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 594.93951, + "y": 287.74128, + "index": 5, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 592.29751, + "y": 282.25528, + "index": 6, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 592.29752, + "y": 276.16728, + "index": 7, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 594.93953, + "y": 270.68128, + "index": 8, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 599.69954, + "y": 266.88529, + "index": 9, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 605.63554, + "y": 265.5303, + "index": 10, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 611.57154, + "y": 266.88531, + "index": 11, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 616.33153, + "y": 270.68132, + "index": 12, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 618.97352, + "y": 276.16732, + "index": 13, + "body": { + "#": 1809 + }, + "isInternal": false + }, + { + "x": 605.63552, + "y": 279.2113 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1833 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1835 + }, + "max": { + "#": 1836 + } + }, + { + "x": 592.29751, + "y": 265.5303 + }, + { + "x": 618.97352, + "y": 292.8923 + }, + { + "x": 605.63552, + "y": 276.15574 + }, + [ + { + "#": 1839 + }, + { + "#": 1840 + }, + { + "#": 1841 + }, + { + "#": 1842 + }, + { + "#": 1843 + }, + { + "#": 1844 + }, + { + "#": 1845 + } + ], + { + "x": -0.90096, + "y": -0.4339 + }, + { + "x": -0.62349, + "y": -0.78183 + }, + { + "x": -0.22254, + "y": -0.97492 + }, + { + "x": 0.22255, + "y": -0.97492 + }, + { + "x": 0.62349, + "y": -0.78183 + }, + { + "x": 0.90096, + "y": -0.43389 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,12,5,6", + "startCol": 12, + "endCol": 12, + "startRow": 5, + "endRow": 6 + }, + { + "id": 47, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1848 + }, + "angle": 0, + "vertices": { + "#": 1849 + }, + "position": { + "#": 1862 + }, + "force": { + "#": 1863 + }, + "torque": 0, + "positionImpulse": { + "#": 1864 + }, + "constraintImpulse": { + "#": 1865 + }, + "totalContacts": 0, + "speed": 3.05554, + "angularSpeed": 0, + "velocity": { + "#": 1866 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1867 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1868 + }, + "circleRadius": 11.05817, + "bounds": { + "#": 1870 + }, + "positionPrev": { + "#": 1873 + }, + "anglePrev": 0, + "axes": { + "#": 1874 + }, + "area": 366.82313, + "mass": 0.36682, + "inverseMass": 2.72611, + "inertia": 85.70003, + "inverseInertia": 0.01167, + "parent": { + "#": 1847 + }, + "sleepCounter": 0, + "region": { + "#": 1881 + } + }, + [ + { + "#": 1847 + } + ], + [ + { + "#": 1850 + }, + { + "#": 1851 + }, + { + "#": 1852 + }, + { + "#": 1853 + }, + { + "#": 1854 + }, + { + "#": 1855 + }, + { + "#": 1856 + }, + { + "#": 1857 + }, + { + "#": 1858 + }, + { + "#": 1859 + }, + { + "#": 1860 + }, + { + "#": 1861 + } + ], + { + "x": 641.51497, + "y": 291.66853, + "index": 0, + "body": { + "#": 1847 + }, + "isInternal": false + }, + { + "x": 638.65296, + "y": 296.62552, + "index": 1, + "body": { + "#": 1847 + }, + "isInternal": false + }, + { + "x": 633.69595, + "y": 299.48751, + "index": 2, + "body": { + "#": 1847 + }, + "isInternal": false + }, + { + "x": 627.97195, + "y": 299.48749, + "index": 3, + "body": { + "#": 1847 + }, + "isInternal": false + }, + { + "x": 623.01496, + "y": 296.62548, + "index": 4, + "body": { + "#": 1847 + }, + "isInternal": false + }, + { + "x": 620.15297, + "y": 291.66847, + "index": 5, + "body": { + "#": 1847 + }, + "isInternal": false + }, + { + "x": 620.15299, + "y": 285.94447, + "index": 6, + "body": { + "#": 1847 + }, + "isInternal": false + }, + { + "x": 623.015, + "y": 280.98748, + "index": 7, + "body": { + "#": 1847 + }, + "isInternal": false + }, + { + "x": 627.97201, + "y": 278.12549, + "index": 8, + "body": { + "#": 1847 + }, + "isInternal": false + }, + { + "x": 633.69601, + "y": 278.12551, + "index": 9, + "body": { + "#": 1847 + }, + "isInternal": false + }, + { + "x": 638.653, + "y": 280.98752, + "index": 10, + "body": { + "#": 1847 + }, + "isInternal": false + }, + { + "x": 641.51499, + "y": 285.94453, + "index": 11, + "body": { + "#": 1847 + }, + "isInternal": false + }, + { + "x": 630.83398, + "y": 288.8065 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.17371, + "y": 0.08366 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00001, + "y": 3.05554 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1869 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1871 + }, + "max": { + "#": 1872 + } + }, + { + "x": 620.15297, + "y": 278.12549 + }, + { + "x": 641.51499, + "y": 302.54305 + }, + { + "x": 630.83398, + "y": 285.75095 + }, + [ + { + "#": 1875 + }, + { + "#": 1876 + }, + { + "#": 1877 + }, + { + "#": 1878 + }, + { + "#": 1879 + }, + { + "#": 1880 + } + ], + { + "x": -0.86602, + "y": -0.50001 + }, + { + "x": -0.50001, + "y": -0.86602 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.50001, + "y": -0.86602 + }, + { + "x": 0.86602, + "y": -0.50001 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "12,13,5,6", + "startCol": 12, + "endCol": 13, + "startRow": 5, + "endRow": 6 + }, + { + "id": 48, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1883 + }, + "angle": 0, + "vertices": { + "#": 1884 + }, + "position": { + "#": 1897 + }, + "force": { + "#": 1898 + }, + "torque": 0, + "positionImpulse": { + "#": 1899 + }, + "constraintImpulse": { + "#": 1900 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 1901 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1902 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1903 + }, + "circleRadius": 11.38799, + "bounds": { + "#": 1905 + }, + "positionPrev": { + "#": 1908 + }, + "anglePrev": 0, + "axes": { + "#": 1909 + }, + "area": 389.07124, + "mass": 0.38907, + "inverseMass": 2.57022, + "inertia": 96.41082, + "inverseInertia": 0.01037, + "parent": { + "#": 1882 + }, + "sleepCounter": 0, + "region": { + "#": 1916 + } + }, + [ + { + "#": 1882 + } + ], + [ + { + "#": 1885 + }, + { + "#": 1886 + }, + { + "#": 1887 + }, + { + "#": 1888 + }, + { + "#": 1889 + }, + { + "#": 1890 + }, + { + "#": 1891 + }, + { + "#": 1892 + }, + { + "#": 1893 + }, + { + "#": 1894 + }, + { + "#": 1895 + }, + { + "#": 1896 + } + ], + { + "x": 680.242, + "y": 290.49633, + "index": 0, + "body": { + "#": 1882 + }, + "isInternal": false + }, + { + "x": 677.295, + "y": 295.60233, + "index": 1, + "body": { + "#": 1882 + }, + "isInternal": false + }, + { + "x": 672.189, + "y": 298.54933, + "index": 2, + "body": { + "#": 1882 + }, + "isInternal": false + }, + { + "x": 666.295, + "y": 298.54933, + "index": 3, + "body": { + "#": 1882 + }, + "isInternal": false + }, + { + "x": 661.189, + "y": 295.60233, + "index": 4, + "body": { + "#": 1882 + }, + "isInternal": false + }, + { + "x": 658.242, + "y": 290.49633, + "index": 5, + "body": { + "#": 1882 + }, + "isInternal": false + }, + { + "x": 658.242, + "y": 284.60233, + "index": 6, + "body": { + "#": 1882 + }, + "isInternal": false + }, + { + "x": 661.189, + "y": 279.49633, + "index": 7, + "body": { + "#": 1882 + }, + "isInternal": false + }, + { + "x": 666.295, + "y": 276.54933, + "index": 8, + "body": { + "#": 1882 + }, + "isInternal": false + }, + { + "x": 672.189, + "y": 276.54933, + "index": 9, + "body": { + "#": 1882 + }, + "isInternal": false + }, + { + "x": 677.295, + "y": 279.49633, + "index": 10, + "body": { + "#": 1882 + }, + "isInternal": false + }, + { + "x": 680.242, + "y": 284.60233, + "index": 11, + "body": { + "#": 1882 + }, + "isInternal": false + }, + { + "x": 669.242, + "y": 287.54933 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1904 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1906 + }, + "max": { + "#": 1907 + } + }, + { + "x": 658.242, + "y": 276.54933 + }, + { + "x": 680.242, + "y": 298.54933 + }, + { + "x": 669.242, + "y": 284.49378 + }, + [ + { + "#": 1910 + }, + { + "#": 1911 + }, + { + "#": 1912 + }, + { + "#": 1913 + }, + { + "#": 1914 + }, + { + "#": 1915 + } + ], + { + "x": -0.8661, + "y": -0.49988 + }, + { + "x": -0.49988, + "y": -0.8661 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.49988, + "y": -0.8661 + }, + { + "x": 0.8661, + "y": -0.49988 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "13,14,5,6", + "startCol": 13, + "endCol": 14, + "startRow": 5, + "endRow": 6 + }, + { + "id": 49, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1918 + }, + "angle": 0, + "vertices": { + "#": 1919 + }, + "position": { + "#": 1938 + }, + "force": { + "#": 1939 + }, + "torque": 0, + "positionImpulse": { + "#": 1940 + }, + "constraintImpulse": { + "#": 1941 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 1942 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1943 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1944 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 1946 + }, + "positionPrev": { + "#": 1949 + }, + "anglePrev": 0, + "axes": { + "#": 1950 + }, + "area": 815.38925, + "mass": 0.81539, + "inverseMass": 1.22641, + "inertia": 423.29821, + "inverseInertia": 0.00236, + "parent": { + "#": 1917 + }, + "sleepCounter": 0, + "region": { + "#": 1960 + } + }, + [ + { + "#": 1917 + } + ], + [ + { + "#": 1920 + }, + { + "#": 1921 + }, + { + "#": 1922 + }, + { + "#": 1923 + }, + { + "#": 1924 + }, + { + "#": 1925 + }, + { + "#": 1926 + }, + { + "#": 1927 + }, + { + "#": 1928 + }, + { + "#": 1929 + }, + { + "#": 1930 + }, + { + "#": 1931 + }, + { + "#": 1932 + }, + { + "#": 1933 + }, + { + "#": 1934 + }, + { + "#": 1935 + }, + { + "#": 1936 + }, + { + "#": 1937 + } + ], + { + "x": 732.298, + "y": 295.65033, + "index": 0, + "body": { + "#": 1917 + }, + "isInternal": false + }, + { + "x": 730.365, + "y": 300.96233, + "index": 1, + "body": { + "#": 1917 + }, + "isInternal": false + }, + { + "x": 726.732, + "y": 305.29233, + "index": 2, + "body": { + "#": 1917 + }, + "isInternal": false + }, + { + "x": 721.837, + "y": 308.11833, + "index": 3, + "body": { + "#": 1917 + }, + "isInternal": false + }, + { + "x": 716.27, + "y": 309.09933, + "index": 4, + "body": { + "#": 1917 + }, + "isInternal": false + }, + { + "x": 710.703, + "y": 308.11833, + "index": 5, + "body": { + "#": 1917 + }, + "isInternal": false + }, + { + "x": 705.808, + "y": 305.29233, + "index": 6, + "body": { + "#": 1917 + }, + "isInternal": false + }, + { + "x": 702.175, + "y": 300.96233, + "index": 7, + "body": { + "#": 1917 + }, + "isInternal": false + }, + { + "x": 700.242, + "y": 295.65033, + "index": 8, + "body": { + "#": 1917 + }, + "isInternal": false + }, + { + "x": 700.242, + "y": 289.99833, + "index": 9, + "body": { + "#": 1917 + }, + "isInternal": false + }, + { + "x": 702.175, + "y": 284.68633, + "index": 10, + "body": { + "#": 1917 + }, + "isInternal": false + }, + { + "x": 705.808, + "y": 280.35633, + "index": 11, + "body": { + "#": 1917 + }, + "isInternal": false + }, + { + "x": 710.703, + "y": 277.53033, + "index": 12, + "body": { + "#": 1917 + }, + "isInternal": false + }, + { + "x": 716.27, + "y": 276.54933, + "index": 13, + "body": { + "#": 1917 + }, + "isInternal": false + }, + { + "x": 721.837, + "y": 277.53033, + "index": 14, + "body": { + "#": 1917 + }, + "isInternal": false + }, + { + "x": 726.732, + "y": 280.35633, + "index": 15, + "body": { + "#": 1917 + }, + "isInternal": false + }, + { + "x": 730.365, + "y": 284.68633, + "index": 16, + "body": { + "#": 1917 + }, + "isInternal": false + }, + { + "x": 732.298, + "y": 289.99833, + "index": 17, + "body": { + "#": 1917 + }, + "isInternal": false + }, + { + "x": 716.27, + "y": 292.82433 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1945 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1947 + }, + "max": { + "#": 1948 + } + }, + { + "x": 700.242, + "y": 276.54933 + }, + { + "x": 732.298, + "y": 309.09933 + }, + { + "x": 716.27, + "y": 289.76878 + }, + [ + { + "#": 1951 + }, + { + "#": 1952 + }, + { + "#": 1953 + }, + { + "#": 1954 + }, + { + "#": 1955 + }, + { + "#": 1956 + }, + { + "#": 1957 + }, + { + "#": 1958 + }, + { + "#": 1959 + } + ], + { + "x": -0.93972, + "y": -0.34196 + }, + { + "x": -0.76607, + "y": -0.64276 + }, + { + "x": -0.49998, + "y": -0.86604 + }, + { + "x": -0.17354, + "y": -0.98483 + }, + { + "x": 0.17354, + "y": -0.98483 + }, + { + "x": 0.49998, + "y": -0.86604 + }, + { + "x": 0.76607, + "y": -0.64276 + }, + { + "x": 0.93972, + "y": -0.34196 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "14,15,5,6", + "startCol": 14, + "endCol": 15, + "startRow": 5, + "endRow": 6 + }, + [], + [], + { + "id": 50, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 1964 + }, + "constraints": { + "#": 2584 + }, + "composites": { + "#": 2585 + }, + "label": "Stack" + }, + [ + { + "#": 1965 + }, + { + "#": 1988 + }, + { + "#": 2011 + }, + { + "#": 2034 + }, + { + "#": 2057 + }, + { + "#": 2088 + }, + { + "#": 2119 + }, + { + "#": 2142 + }, + { + "#": 2173 + }, + { + "#": 2199 + }, + { + "#": 2230 + }, + { + "#": 2253 + }, + { + "#": 2276 + }, + { + "#": 2299 + }, + { + "#": 2328 + }, + { + "#": 2351 + }, + { + "#": 2378 + }, + { + "#": 2401 + }, + { + "#": 2424 + }, + { + "#": 2451 + }, + { + "#": 2474 + }, + { + "#": 2497 + }, + { + "#": 2526 + }, + { + "#": 2553 + } + ], + { + "id": 51, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1966 + }, + "angle": 0, + "vertices": { + "#": 1967 + }, + "position": { + "#": 1972 + }, + "force": { + "#": 1973 + }, + "torque": 0, + "positionImpulse": { + "#": 1974 + }, + "constraintImpulse": { + "#": 1975 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 1976 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 1977 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1978 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 1980 + }, + "positionPrev": { + "#": 1983 + }, + "anglePrev": 0, + "axes": { + "#": 1984 + }, + "area": 1021.44914, + "mass": 1.02145, + "inverseMass": 0.979, + "inertia": 893.33114, + "inverseInertia": 0.00112, + "parent": { + "#": 1965 + }, + "sleepCounter": 0, + "region": { + "#": 1987 + } + }, + [ + { + "#": 1965 + } + ], + [ + { + "#": 1968 + }, + { + "#": 1969 + }, + { + "#": 1970 + }, + { + "#": 1971 + } + ], + { + "x": 41.7775, + "y": 68.33333, + "index": 0, + "body": { + "#": 1965 + }, + "isInternal": false + }, + { + "x": 87.9839, + "y": 68.33333, + "index": 1, + "body": { + "#": 1965 + }, + "isInternal": false + }, + { + "x": 87.9839, + "y": 90.43956, + "index": 2, + "body": { + "#": 1965 + }, + "isInternal": false + }, + { + "x": 41.7775, + "y": 90.43956, + "index": 3, + "body": { + "#": 1965 + }, + "isInternal": false + }, + { + "x": 64.8807, + "y": 79.38645 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.46881, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1979 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1981 + }, + "max": { + "#": 1982 + } + }, + { + "x": 41.7775, + "y": 68.33333 + }, + { + "x": 87.9839, + "y": 93.49511 + }, + { + "x": 64.8807, + "y": 76.33089 + }, + [ + { + "#": 1985 + }, + { + "#": 1986 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "0,1,1,1", + "startCol": 0, + "endCol": 1, + "startRow": 1, + "endRow": 1 + }, + { + "id": 52, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 1989 + }, + "angle": 0, + "vertices": { + "#": 1990 + }, + "position": { + "#": 1995 + }, + "force": { + "#": 1996 + }, + "torque": 0, + "positionImpulse": { + "#": 1997 + }, + "constraintImpulse": { + "#": 1998 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 1999 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2000 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2001 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2003 + }, + "positionPrev": { + "#": 2006 + }, + "anglePrev": 0, + "axes": { + "#": 2007 + }, + "area": 1125.04029, + "mass": 1.12504, + "inverseMass": 0.88886, + "inertia": 845.55611, + "inverseInertia": 0.00118, + "parent": { + "#": 1988 + }, + "sleepCounter": 0, + "region": { + "#": 2010 + } + }, + [ + { + "#": 1988 + } + ], + [ + { + "#": 1991 + }, + { + "#": 1992 + }, + { + "#": 1993 + }, + { + "#": 1994 + } + ], + { + "x": 91.31135, + "y": 68.33333, + "index": 0, + "body": { + "#": 1988 + }, + "isInternal": false + }, + { + "x": 123.79154, + "y": 68.33333, + "index": 1, + "body": { + "#": 1988 + }, + "isInternal": false + }, + { + "x": 123.79154, + "y": 102.97106, + "index": 2, + "body": { + "#": 1988 + }, + "isInternal": false + }, + { + "x": 91.31135, + "y": 102.97106, + "index": 3, + "body": { + "#": 1988 + }, + "isInternal": false + }, + { + "x": 107.55145, + "y": 85.6522 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2002 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2004 + }, + "max": { + "#": 2005 + } + }, + { + "x": 91.31135, + "y": 68.33333 + }, + { + "x": 123.79154, + "y": 102.97106 + }, + { + "x": 107.55145, + "y": 82.59664 + }, + [ + { + "#": 2008 + }, + { + "#": 2009 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "1,2,1,2", + "startCol": 1, + "endCol": 2, + "startRow": 1, + "endRow": 2 + }, + { + "id": 53, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2012 + }, + "angle": 0, + "vertices": { + "#": 2013 + }, + "position": { + "#": 2018 + }, + "force": { + "#": 2019 + }, + "torque": 0, + "positionImpulse": { + "#": 2020 + }, + "constraintImpulse": { + "#": 2021 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 2022 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2023 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2024 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2026 + }, + "positionPrev": { + "#": 2029 + }, + "anglePrev": 0, + "axes": { + "#": 2030 + }, + "area": 1489.78438, + "mass": 1.48978, + "inverseMass": 0.67124, + "inertia": 1501.63859, + "inverseInertia": 0.00067, + "parent": { + "#": 2011 + }, + "sleepCounter": 0, + "region": { + "#": 2033 + } + }, + [ + { + "#": 2011 + } + ], + [ + { + "#": 2014 + }, + { + "#": 2015 + }, + { + "#": 2016 + }, + { + "#": 2017 + } + ], + { + "x": 125.17208, + "y": 68.33333, + "index": 0, + "body": { + "#": 2011 + }, + "isInternal": false + }, + { + "x": 160.58501, + "y": 68.33333, + "index": 1, + "body": { + "#": 2011 + }, + "isInternal": false + }, + { + "x": 160.58501, + "y": 110.40226, + "index": 2, + "body": { + "#": 2011 + }, + "isInternal": false + }, + { + "x": 125.17208, + "y": 110.40226, + "index": 3, + "body": { + "#": 2011 + }, + "isInternal": false + }, + { + "x": 142.87855, + "y": 89.3678 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00323, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2025 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2027 + }, + "max": { + "#": 2028 + } + }, + { + "x": 125.17208, + "y": 68.33333 + }, + { + "x": 160.58501, + "y": 113.45782 + }, + { + "x": 142.87855, + "y": 86.31224 + }, + [ + { + "#": 2031 + }, + { + "#": 2032 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "2,3,1,2", + "startCol": 2, + "endCol": 3, + "startRow": 1, + "endRow": 2 + }, + { + "id": 54, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2035 + }, + "angle": 0, + "vertices": { + "#": 2036 + }, + "position": { + "#": 2041 + }, + "force": { + "#": 2042 + }, + "torque": 0, + "positionImpulse": { + "#": 2043 + }, + "constraintImpulse": { + "#": 2044 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 2045 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2046 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2047 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2049 + }, + "positionPrev": { + "#": 2052 + }, + "anglePrev": 0, + "axes": { + "#": 2053 + }, + "area": 1765.36753, + "mass": 1.76537, + "inverseMass": 0.56645, + "inertia": 2077.83253, + "inverseInertia": 0.00048, + "parent": { + "#": 2034 + }, + "sleepCounter": 0, + "region": { + "#": 2056 + } + }, + [ + { + "#": 2034 + } + ], + [ + { + "#": 2037 + }, + { + "#": 2038 + }, + { + "#": 2039 + }, + { + "#": 2040 + } + ], + { + "x": 160.52419, + "y": 68.33333, + "index": 0, + "body": { + "#": 2034 + }, + "isInternal": false + }, + { + "x": 202.28808, + "y": 68.33333, + "index": 1, + "body": { + "#": 2034 + }, + "isInternal": false + }, + { + "x": 202.28808, + "y": 110.60352, + "index": 2, + "body": { + "#": 2034 + }, + "isInternal": false + }, + { + "x": 160.52419, + "y": 110.60352, + "index": 3, + "body": { + "#": 2034 + }, + "isInternal": false + }, + { + "x": 181.40614, + "y": 89.46843 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.00932, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2048 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2050 + }, + "max": { + "#": 2051 + } + }, + { + "x": 160.52419, + "y": 68.33333 + }, + { + "x": 202.28808, + "y": 113.65908 + }, + { + "x": 181.40614, + "y": 86.41287 + }, + [ + { + "#": 2054 + }, + { + "#": 2055 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "3,4,1,2", + "startCol": 3, + "endCol": 4, + "startRow": 1, + "endRow": 2 + }, + { + "id": 55, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2058 + }, + "angle": 0, + "vertices": { + "#": 2059 + }, + "position": { + "#": 2067 + }, + "force": { + "#": 2068 + }, + "torque": 0, + "positionImpulse": { + "#": 2069 + }, + "constraintImpulse": { + "#": 2070 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 2071 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2072 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2073 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2075 + }, + "positionPrev": { + "#": 2078 + }, + "anglePrev": 0, + "axes": { + "#": 2079 + }, + "area": 2021.67819, + "mass": 2.02168, + "inverseMass": 0.49464, + "inertia": 2612.34767, + "inverseInertia": 0.00038, + "parent": { + "#": 2057 + }, + "sleepCounter": 0, + "region": { + "#": 2087 + } + }, + [ + { + "#": 2057 + } + ], + [ + { + "#": 2060 + }, + { + "#": 2061 + }, + { + "#": 2062 + }, + { + "#": 2063 + }, + { + "#": 2064 + }, + { + "#": 2065 + }, + { + "#": 2066 + } + ], + { + "x": 253.87977, + "y": 105.44662, + "index": 0, + "body": { + "#": 2057 + }, + "isInternal": false + }, + { + "x": 235.43877, + "y": 120.15362, + "index": 1, + "body": { + "#": 2057 + }, + "isInternal": false + }, + { + "x": 212.44377, + "y": 114.90462, + "index": 2, + "body": { + "#": 2057 + }, + "isInternal": false + }, + { + "x": 202.20977, + "y": 93.65362, + "index": 3, + "body": { + "#": 2057 + }, + "isInternal": false + }, + { + "x": 212.44377, + "y": 72.40262, + "index": 4, + "body": { + "#": 2057 + }, + "isInternal": false + }, + { + "x": 235.43877, + "y": 67.15362, + "index": 5, + "body": { + "#": 2057 + }, + "isInternal": false + }, + { + "x": 253.87977, + "y": 81.86062, + "index": 6, + "body": { + "#": 2057 + }, + "isInternal": false + }, + { + "x": 229.39063, + "y": 93.65362 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2074 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2076 + }, + "max": { + "#": 2077 + } + }, + { + "x": 202.20977, + "y": 67.15362 + }, + { + "x": 253.87977, + "y": 123.20918 + }, + { + "x": 229.39063, + "y": 90.59807 + }, + [ + { + "#": 2080 + }, + { + "#": 2081 + }, + { + "#": 2082 + }, + { + "#": 2083 + }, + { + "#": 2084 + }, + { + "#": 2085 + }, + { + "#": 2086 + } + ], + { + "x": 0.62351, + "y": 0.78182 + }, + { + "x": -0.22254, + "y": 0.97492 + }, + { + "x": -0.90097, + "y": 0.43389 + }, + { + "x": -0.90097, + "y": -0.43389 + }, + { + "x": -0.22254, + "y": -0.97492 + }, + { + "x": 0.62351, + "y": -0.78182 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "4,5,1,2", + "startCol": 4, + "endCol": 5, + "startRow": 1, + "endRow": 2 + }, + { + "id": 56, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2089 + }, + "angle": 0, + "vertices": { + "#": 2090 + }, + "position": { + "#": 2098 + }, + "force": { + "#": 2099 + }, + "torque": 0, + "positionImpulse": { + "#": 2100 + }, + "constraintImpulse": { + "#": 2101 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 2102 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2103 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2104 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2106 + }, + "positionPrev": { + "#": 2109 + }, + "anglePrev": 0, + "axes": { + "#": 2110 + }, + "area": 6374.47951, + "mass": 6.37448, + "inverseMass": 0.15688, + "inertia": 25971.46102, + "inverseInertia": 0.00004, + "parent": { + "#": 2088 + }, + "sleepCounter": 0, + "region": { + "#": 2118 + } + }, + [ + { + "#": 2088 + } + ], + [ + { + "#": 2091 + }, + { + "#": 2092 + }, + { + "#": 2093 + }, + { + "#": 2094 + }, + { + "#": 2095 + }, + { + "#": 2096 + }, + { + "#": 2097 + } + ], + { + "x": 345.54985, + "y": 123.90325, + "index": 0, + "body": { + "#": 2088 + }, + "isInternal": false + }, + { + "x": 312.80485, + "y": 150.01725, + "index": 1, + "body": { + "#": 2088 + }, + "isInternal": false + }, + { + "x": 271.97185, + "y": 140.69725, + "index": 2, + "body": { + "#": 2088 + }, + "isInternal": false + }, + { + "x": 253.79985, + "y": 102.96225, + "index": 3, + "body": { + "#": 2088 + }, + "isInternal": false + }, + { + "x": 271.97185, + "y": 65.22725, + "index": 4, + "body": { + "#": 2088 + }, + "isInternal": false + }, + { + "x": 312.80485, + "y": 55.90725, + "index": 5, + "body": { + "#": 2088 + }, + "isInternal": false + }, + { + "x": 345.54985, + "y": 82.02125, + "index": 6, + "body": { + "#": 2088 + }, + "isInternal": false + }, + { + "x": 302.06464, + "y": 102.96225 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2105 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2107 + }, + "max": { + "#": 2108 + } + }, + { + "x": 253.79985, + "y": 55.90725 + }, + { + "x": 345.54985, + "y": 153.07281 + }, + { + "x": 302.06464, + "y": 99.9067 + }, + [ + { + "#": 2111 + }, + { + "#": 2112 + }, + { + "#": 2113 + }, + { + "#": 2114 + }, + { + "#": 2115 + }, + { + "#": 2116 + }, + { + "#": 2117 + } + ], + { + "x": 0.6235, + "y": 0.78182 + }, + { + "x": -0.22252, + "y": 0.97493 + }, + { + "x": -0.90097, + "y": 0.43388 + }, + { + "x": -0.90097, + "y": -0.43388 + }, + { + "x": -0.22252, + "y": -0.97493 + }, + { + "x": 0.6235, + "y": -0.78182 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "5,7,1,3", + "startCol": 5, + "endCol": 7, + "startRow": 1, + "endRow": 3 + }, + { + "id": 57, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2120 + }, + "angle": 0, + "vertices": { + "#": 2121 + }, + "position": { + "#": 2126 + }, + "force": { + "#": 2127 + }, + "torque": 0, + "positionImpulse": { + "#": 2128 + }, + "constraintImpulse": { + "#": 2129 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 2130 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2131 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2132 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2134 + }, + "positionPrev": { + "#": 2137 + }, + "anglePrev": 0, + "axes": { + "#": 2138 + }, + "area": 2220.02331, + "mass": 2.22002, + "inverseMass": 0.45045, + "inertia": 3297.61061, + "inverseInertia": 0.0003, + "parent": { + "#": 2119 + }, + "sleepCounter": 0, + "region": { + "#": 2141 + } + }, + [ + { + "#": 2119 + } + ], + [ + { + "#": 2122 + }, + { + "#": 2123 + }, + { + "#": 2124 + }, + { + "#": 2125 + } + ], + { + "x": 345.4815, + "y": 68.33333, + "index": 0, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 390.63287, + "y": 68.33333, + "index": 1, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 390.63287, + "y": 117.5018, + "index": 2, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 345.4815, + "y": 117.5018, + "index": 3, + "body": { + "#": 2119 + }, + "isInternal": false + }, + { + "x": 368.05719, + "y": 92.91757 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2133 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2135 + }, + "max": { + "#": 2136 + } + }, + { + "x": 345.4815, + "y": 68.33333 + }, + { + "x": 390.63287, + "y": 120.55736 + }, + { + "x": 368.05719, + "y": 89.86201 + }, + [ + { + "#": 2139 + }, + { + "#": 2140 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "7,8,1,2", + "startCol": 7, + "endCol": 8, + "startRow": 1, + "endRow": 2 + }, + { + "id": 58, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2143 + }, + "angle": 0, + "vertices": { + "#": 2144 + }, + "position": { + "#": 2152 + }, + "force": { + "#": 2153 + }, + "torque": 0, + "positionImpulse": { + "#": 2154 + }, + "constraintImpulse": { + "#": 2155 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 2156 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2157 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2158 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2160 + }, + "positionPrev": { + "#": 2163 + }, + "anglePrev": 0, + "axes": { + "#": 2164 + }, + "area": 2739.61989, + "mass": 2.73962, + "inverseMass": 0.36501, + "inertia": 4797.19688, + "inverseInertia": 0.00021, + "parent": { + "#": 2142 + }, + "sleepCounter": 0, + "region": { + "#": 2172 + } + }, + [ + { + "#": 2142 + } + ], + [ + { + "#": 2145 + }, + { + "#": 2146 + }, + { + "#": 2147 + }, + { + "#": 2148 + }, + { + "#": 2149 + }, + { + "#": 2150 + }, + { + "#": 2151 + } + ], + { + "x": 455.7199, + "y": 110.73438, + "index": 0, + "body": { + "#": 2142 + }, + "isInternal": false + }, + { + "x": 434.2529, + "y": 127.85338, + "index": 1, + "body": { + "#": 2142 + }, + "isInternal": false + }, + { + "x": 407.4839, + "y": 121.74338, + "index": 2, + "body": { + "#": 2142 + }, + "isInternal": false + }, + { + "x": 395.5709, + "y": 97.00538, + "index": 3, + "body": { + "#": 2142 + }, + "isInternal": false + }, + { + "x": 407.4839, + "y": 72.26738, + "index": 4, + "body": { + "#": 2142 + }, + "isInternal": false + }, + { + "x": 434.2529, + "y": 66.15738, + "index": 5, + "body": { + "#": 2142 + }, + "isInternal": false + }, + { + "x": 455.7199, + "y": 83.27638, + "index": 6, + "body": { + "#": 2142 + }, + "isInternal": false + }, + { + "x": 427.21216, + "y": 97.00538 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2159 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2161 + }, + "max": { + "#": 2162 + } + }, + { + "x": 395.5709, + "y": 66.15738 + }, + { + "x": 455.7199, + "y": 127.85338 + }, + { + "x": 427.21216, + "y": 93.94983 + }, + [ + { + "#": 2165 + }, + { + "#": 2166 + }, + { + "#": 2167 + }, + { + "#": 2168 + }, + { + "#": 2169 + }, + { + "#": 2170 + }, + { + "#": 2171 + } + ], + { + "x": 0.62348, + "y": 0.78184 + }, + { + "x": -0.22253, + "y": 0.97493 + }, + { + "x": -0.90097, + "y": 0.43388 + }, + { + "x": -0.90097, + "y": -0.43388 + }, + { + "x": -0.22253, + "y": -0.97493 + }, + { + "x": 0.62348, + "y": -0.78184 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,1,2", + "startCol": 8, + "endCol": 9, + "startRow": 1, + "endRow": 2 + }, + { + "id": 59, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2174 + }, + "angle": 0, + "vertices": { + "#": 2175 + }, + "position": { + "#": 2182 + }, + "force": { + "#": 2183 + }, + "torque": 0, + "positionImpulse": { + "#": 2184 + }, + "constraintImpulse": { + "#": 2185 + }, + "totalContacts": 0, + "speed": 3.05553, + "angularSpeed": 0, + "velocity": { + "#": 2186 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2187 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2188 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2190 + }, + "positionPrev": { + "#": 2193 + }, + "anglePrev": 0, + "axes": { + "#": 2194 + }, + "area": 1836.0045, + "mass": 1.836, + "inverseMass": 0.54466, + "inertia": 2162.44139, + "inverseInertia": 0.00046, + "parent": { + "#": 2173 + }, + "sleepCounter": 0, + "region": { + "#": 2198 + } + }, + [ + { + "#": 2173 + } + ], + [ + { + "#": 2176 + }, + { + "#": 2177 + }, + { + "#": 2178 + }, + { + "#": 2179 + }, + { + "#": 2180 + }, + { + "#": 2181 + } + ], + { + "x": 89.97212, + "y": 191.80087, + "index": 0, + "body": { + "#": 2173 + }, + "isInternal": false + }, + { + "x": 66.95011, + "y": 205.09186, + "index": 1, + "body": { + "#": 2173 + }, + "isInternal": false + }, + { + "x": 43.92812, + "y": 191.80085, + "index": 2, + "body": { + "#": 2173 + }, + "isInternal": false + }, + { + "x": 43.92813, + "y": 165.21685, + "index": 3, + "body": { + "#": 2173 + }, + "isInternal": false + }, + { + "x": 66.95013, + "y": 151.92586, + "index": 4, + "body": { + "#": 2173 + }, + "isInternal": false + }, + { + "x": 89.97213, + "y": 165.21687, + "index": 5, + "body": { + "#": 2173 + }, + "isInternal": false + }, + { + "x": 66.95012, + "y": 178.50886 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00001, + "y": 3.05553 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2189 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2191 + }, + "max": { + "#": 2192 + } + }, + { + "x": 43.92812, + "y": 151.92586 + }, + { + "x": 89.97213, + "y": 205.09186 + }, + { + "x": 66.95013, + "y": 175.45333 + }, + [ + { + "#": 2195 + }, + { + "#": 2196 + }, + { + "#": 2197 + } + ], + { + "x": -0.49998, + "y": -0.86604 + }, + { + "x": 0.49998, + "y": -0.86604 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "0,1,3,4", + "startCol": 0, + "endCol": 1, + "startRow": 3, + "endRow": 4 + }, + { + "id": 60, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2200 + }, + "angle": 0, + "vertices": { + "#": 2201 + }, + "position": { + "#": 2209 + }, + "force": { + "#": 2210 + }, + "torque": 0, + "positionImpulse": { + "#": 2211 + }, + "constraintImpulse": { + "#": 2212 + }, + "totalContacts": 0, + "speed": 3.05555, + "angularSpeed": 0, + "velocity": { + "#": 2213 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2214 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2215 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2217 + }, + "positionPrev": { + "#": 2220 + }, + "anglePrev": 0, + "axes": { + "#": 2221 + }, + "area": 5751.50872, + "mass": 5.75151, + "inverseMass": 0.17387, + "inertia": 21143.18879, + "inverseInertia": 0.00005, + "parent": { + "#": 2199 + }, + "sleepCounter": 0, + "region": { + "#": 2229 + } + }, + [ + { + "#": 2199 + } + ], + [ + { + "#": 2202 + }, + { + "#": 2203 + }, + { + "#": 2204 + }, + { + "#": 2205 + }, + { + "#": 2206 + }, + { + "#": 2207 + }, + { + "#": 2208 + } + ], + { + "x": 183.32092, + "y": 219.18521, + "index": 0, + "body": { + "#": 2199 + }, + "isInternal": false + }, + { + "x": 152.21692, + "y": 243.98921, + "index": 1, + "body": { + "#": 2199 + }, + "isInternal": false + }, + { + "x": 113.43092, + "y": 235.13721, + "index": 2, + "body": { + "#": 2199 + }, + "isInternal": false + }, + { + "x": 96.16892, + "y": 199.29321, + "index": 3, + "body": { + "#": 2199 + }, + "isInternal": false + }, + { + "x": 113.43092, + "y": 163.44921, + "index": 4, + "body": { + "#": 2199 + }, + "isInternal": false + }, + { + "x": 152.21692, + "y": 154.59721, + "index": 5, + "body": { + "#": 2199 + }, + "isInternal": false + }, + { + "x": 183.32092, + "y": 179.40121, + "index": 6, + "body": { + "#": 2199 + }, + "isInternal": false + }, + { + "x": 142.01509, + "y": 199.29321 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.03098, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2216 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2218 + }, + "max": { + "#": 2219 + } + }, + { + "x": 96.16892, + "y": 154.59721 + }, + { + "x": 183.32092, + "y": 247.04477 + }, + { + "x": 142.01509, + "y": 196.23766 + }, + [ + { + "#": 2222 + }, + { + "#": 2223 + }, + { + "#": 2224 + }, + { + "#": 2225 + }, + { + "#": 2226 + }, + { + "#": 2227 + }, + { + "#": 2228 + } + ], + { + "x": 0.62348, + "y": 0.78184 + }, + { + "x": -0.22251, + "y": 0.97493 + }, + { + "x": -0.90096, + "y": 0.43389 + }, + { + "x": -0.90096, + "y": -0.43389 + }, + { + "x": -0.22251, + "y": -0.97493 + }, + { + "x": 0.62348, + "y": -0.78184 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "2,3,3,5", + "startCol": 2, + "endCol": 3, + "startRow": 3, + "endRow": 5 + }, + { + "id": 61, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2231 + }, + "angle": 0.00001, + "vertices": { + "#": 2232 + }, + "position": { + "#": 2237 + }, + "force": { + "#": 2238 + }, + "torque": 0, + "positionImpulse": { + "#": 2239 + }, + "constraintImpulse": { + "#": 2240 + }, + "totalContacts": 0, + "speed": 3.05562, + "angularSpeed": 0, + "velocity": { + "#": 2241 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2242 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2243 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2245 + }, + "positionPrev": { + "#": 2248 + }, + "anglePrev": 0.00001, + "axes": { + "#": 2249 + }, + "area": 451.61379, + "mass": 0.45161, + "inverseMass": 2.21428, + "inertia": 136.71143, + "inverseInertia": 0.00731, + "parent": { + "#": 2230 + }, + "sleepCounter": 0, + "region": { + "#": 2252 + } + }, + [ + { + "#": 2230 + } + ], + [ + { + "#": 2233 + }, + { + "#": 2234 + }, + { + "#": 2235 + }, + { + "#": 2236 + } + ], + { + "x": 183.27122, + "y": 170.4456, + "index": 0, + "body": { + "#": 2230 + }, + "isInternal": false + }, + { + "x": 203.44174, + "y": 170.44587, + "index": 1, + "body": { + "#": 2230 + }, + "isInternal": false + }, + { + "x": 203.44144, + "y": 192.83566, + "index": 2, + "body": { + "#": 2230 + }, + "isInternal": false + }, + { + "x": 183.27092, + "y": 192.83539, + "index": 3, + "body": { + "#": 2230 + }, + "isInternal": false + }, + { + "x": 193.35633, + "y": 181.64063 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.031, + "y": 0.56861 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00003, + "y": 3.05558 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2244 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2246 + }, + "max": { + "#": 2247 + } + }, + { + "x": 183.27092, + "y": 170.4456 + }, + { + "x": 203.44178, + "y": 195.89128 + }, + { + "x": 193.3563, + "y": 178.58505 + }, + [ + { + "#": 2250 + }, + { + "#": 2251 + } + ], + { + "x": -0.00001, + "y": 1 + }, + { + "x": -1, + "y": -0.00001 + }, + { + "id": "3,4,3,4", + "startCol": 3, + "endCol": 4, + "startRow": 3, + "endRow": 4 + }, + { + "id": 62, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2254 + }, + "angle": 0, + "vertices": { + "#": 2255 + }, + "position": { + "#": 2260 + }, + "force": { + "#": 2261 + }, + "torque": 0, + "positionImpulse": { + "#": 2262 + }, + "constraintImpulse": { + "#": 2263 + }, + "totalContacts": 0, + "speed": 3.05548, + "angularSpeed": 0, + "velocity": { + "#": 2264 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2265 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2266 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2268 + }, + "positionPrev": { + "#": 2271 + }, + "anglePrev": 0, + "axes": { + "#": 2272 + }, + "area": 3021.67907, + "mass": 3.02168, + "inverseMass": 0.33094, + "inertia": 11331.77016, + "inverseInertia": 0.00009, + "parent": { + "#": 2253 + }, + "sleepCounter": 0, + "region": { + "#": 2275 + } + }, + [ + { + "#": 2253 + } + ], + [ + { + "#": 2256 + }, + { + "#": 2257 + }, + { + "#": 2258 + }, + { + "#": 2259 + } + ], + { + "x": 209.98685, + "y": 167.58063, + "index": 0, + "body": { + "#": 2253 + }, + "isInternal": false + }, + { + "x": 311.82001, + "y": 167.58047, + "index": 1, + "body": { + "#": 2253 + }, + "isInternal": false + }, + { + "x": 311.82005, + "y": 197.25331, + "index": 2, + "body": { + "#": 2253 + }, + "isInternal": false + }, + { + "x": 209.98689, + "y": 197.25347, + "index": 3, + "body": { + "#": 2253 + }, + "isInternal": false + }, + { + "x": 260.90345, + "y": 182.41697 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00003, + "y": 3.05548 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2267 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2269 + }, + "max": { + "#": 2270 + } + }, + { + "x": 209.98685, + "y": 167.58047 + }, + { + "x": 311.82005, + "y": 197.25347 + }, + { + "x": 260.90342, + "y": 179.36149 + }, + [ + { + "#": 2273 + }, + { + "#": 2274 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "4,6,3,4", + "startCol": 4, + "endCol": 6, + "startRow": 3, + "endRow": 4 + }, + { + "id": 63, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2277 + }, + "angle": 0, + "vertices": { + "#": 2278 + }, + "position": { + "#": 2283 + }, + "force": { + "#": 2284 + }, + "torque": 0, + "positionImpulse": { + "#": 2285 + }, + "constraintImpulse": { + "#": 2286 + }, + "totalContacts": 0, + "speed": 3.05557, + "angularSpeed": 0, + "velocity": { + "#": 2287 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2288 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2289 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2291 + }, + "positionPrev": { + "#": 2294 + }, + "anglePrev": 0, + "axes": { + "#": 2295 + }, + "area": 856.73964, + "mass": 0.85674, + "inverseMass": 1.16722, + "inertia": 589.10598, + "inverseInertia": 0.0017, + "parent": { + "#": 2276 + }, + "sleepCounter": 0, + "region": { + "#": 2298 + } + }, + [ + { + "#": 2276 + } + ], + [ + { + "#": 2279 + }, + { + "#": 2280 + }, + { + "#": 2281 + }, + { + "#": 2282 + } + ], + { + "x": 313.10495, + "y": 185.5071, + "index": 0, + "body": { + "#": 2276 + }, + "isInternal": false + }, + { + "x": 353.17645, + "y": 185.50696, + "index": 1, + "body": { + "#": 2276 + }, + "isInternal": false + }, + { + "x": 353.17653, + "y": 206.88723, + "index": 2, + "body": { + "#": 2276 + }, + "isInternal": false + }, + { + "x": 313.10502, + "y": 206.88737, + "index": 3, + "body": { + "#": 2276 + }, + "isInternal": false + }, + { + "x": 333.14074, + "y": 196.19716 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.26868, + "y": 0.40408 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": -0.00001, + "y": 3.05557 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2290 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2292 + }, + "max": { + "#": 2293 + } + }, + { + "x": 313.10494, + "y": 185.50696 + }, + { + "x": 353.17653, + "y": 209.94294 + }, + { + "x": 333.14074, + "y": 193.1416 + }, + [ + { + "#": 2296 + }, + { + "#": 2297 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,7,3,4", + "startCol": 6, + "endCol": 7, + "startRow": 3, + "endRow": 4 + }, + { + "id": 64, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2300 + }, + "angle": 0, + "vertices": { + "#": 2301 + }, + "position": { + "#": 2310 + }, + "force": { + "#": 2311 + }, + "torque": 0, + "positionImpulse": { + "#": 2312 + }, + "constraintImpulse": { + "#": 2313 + }, + "totalContacts": 0, + "speed": 3.05554, + "angularSpeed": 0, + "velocity": { + "#": 2314 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2315 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2316 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2318 + }, + "positionPrev": { + "#": 2321 + }, + "anglePrev": 0, + "axes": { + "#": 2322 + }, + "area": 4088.59995, + "mass": 4.0886, + "inverseMass": 0.24458, + "inertia": 10666.41244, + "inverseInertia": 0.00009, + "parent": { + "#": 2299 + }, + "sleepCounter": 0, + "region": { + "#": 2327 + } + }, + [ + { + "#": 2299 + } + ], + [ + { + "#": 2302 + }, + { + "#": 2303 + }, + { + "#": 2304 + }, + { + "#": 2305 + }, + { + "#": 2306 + }, + { + "#": 2307 + }, + { + "#": 2308 + }, + { + "#": 2309 + } + ], + { + "x": 423.69768, + "y": 220.14143, + "index": 0, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 403.12172, + "y": 240.71747, + "index": 1, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 374.02172, + "y": 240.71753, + "index": 2, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 353.44568, + "y": 220.14156, + "index": 3, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 353.44563, + "y": 191.04156, + "index": 4, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 374.02159, + "y": 170.46553, + "index": 5, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 403.12159, + "y": 170.46547, + "index": 6, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 423.69763, + "y": 191.04143, + "index": 7, + "body": { + "#": 2299 + }, + "isInternal": false + }, + { + "x": 388.57165, + "y": 205.5915 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.31725, + "y": 0.35358 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00002, + "y": 3.05554 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2317 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2319 + }, + "max": { + "#": 2320 + } + }, + { + "x": 353.44563, + "y": 170.46547 + }, + { + "x": 423.6977, + "y": 243.77306 + }, + { + "x": 388.57164, + "y": 202.53596 + }, + [ + { + "#": 2323 + }, + { + "#": 2324 + }, + { + "#": 2325 + }, + { + "#": 2326 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "7,8,3,5", + "startCol": 7, + "endCol": 8, + "startRow": 3, + "endRow": 5 + }, + { + "id": 65, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2329 + }, + "angle": 0, + "vertices": { + "#": 2330 + }, + "position": { + "#": 2335 + }, + "force": { + "#": 2336 + }, + "torque": 0, + "positionImpulse": { + "#": 2337 + }, + "constraintImpulse": { + "#": 2338 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 2339 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2340 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2341 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2343 + }, + "positionPrev": { + "#": 2346 + }, + "anglePrev": 0, + "axes": { + "#": 2347 + }, + "area": 1965.14243, + "mass": 1.96514, + "inverseMass": 0.50887, + "inertia": 5563.36836, + "inverseInertia": 0.00018, + "parent": { + "#": 2328 + }, + "sleepCounter": 0, + "region": { + "#": 2350 + } + }, + [ + { + "#": 2328 + } + ], + [ + { + "#": 2331 + }, + { + "#": 2332 + }, + { + "#": 2333 + }, + { + "#": 2334 + } + ], + { + "x": 425.45095, + "y": 162.02601, + "index": 0, + "body": { + "#": 2328 + }, + "isInternal": false + }, + { + "x": 514.95523, + "y": 162.02599, + "index": 1, + "body": { + "#": 2328 + }, + "isInternal": false + }, + { + "x": 514.95524, + "y": 183.98184, + "index": 2, + "body": { + "#": 2328 + }, + "isInternal": false + }, + { + "x": 425.45095, + "y": 183.98186, + "index": 3, + "body": { + "#": 2328 + }, + "isInternal": false + }, + { + "x": 470.20309, + "y": 173.00393 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.34812, + "y": 0.14018 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2342 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2344 + }, + "max": { + "#": 2345 + } + }, + { + "x": 425.45095, + "y": 162.02599 + }, + { + "x": 514.95524, + "y": 187.03742 + }, + { + "x": 470.20309, + "y": 169.94837 + }, + [ + { + "#": 2348 + }, + { + "#": 2349 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,10,3,3", + "startCol": 8, + "endCol": 10, + "startRow": 3, + "endRow": 3 + }, + { + "id": 66, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2352 + }, + "angle": 0, + "vertices": { + "#": 2353 + }, + "position": { + "#": 2359 + }, + "force": { + "#": 2360 + }, + "torque": 0, + "positionImpulse": { + "#": 2361 + }, + "constraintImpulse": { + "#": 2362 + }, + "totalContacts": 0, + "speed": 3.05555, + "angularSpeed": 0, + "velocity": { + "#": 2363 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2364 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2365 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2367 + }, + "positionPrev": { + "#": 2370 + }, + "anglePrev": 0, + "axes": { + "#": 2371 + }, + "area": 2731.71037, + "mass": 2.73171, + "inverseMass": 0.36607, + "inertia": 4831.24253, + "inverseInertia": 0.00021, + "parent": { + "#": 2351 + }, + "sleepCounter": 0, + "region": { + "#": 2377 + } + }, + [ + { + "#": 2351 + } + ], + [ + { + "#": 2354 + }, + { + "#": 2355 + }, + { + "#": 2356 + }, + { + "#": 2357 + }, + { + "#": 2358 + } + ], + { + "x": 568.99408, + "y": 216.33327, + "index": 0, + "body": { + "#": 2351 + }, + "isInternal": false + }, + { + "x": 531.09808, + "y": 228.64728, + "index": 1, + "body": { + "#": 2351 + }, + "isInternal": false + }, + { + "x": 507.67608, + "y": 196.41028, + "index": 2, + "body": { + "#": 2351 + }, + "isInternal": false + }, + { + "x": 531.09807, + "y": 164.17328, + "index": 3, + "body": { + "#": 2351 + }, + "isInternal": false + }, + { + "x": 568.99407, + "y": 176.48727, + "index": 4, + "body": { + "#": 2351 + }, + "isInternal": false + }, + { + "x": 541.57186, + "y": 196.41028 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.05117, + "y": 0.34166 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05555 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2366 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2368 + }, + "max": { + "#": 2369 + } + }, + { + "x": 507.67608, + "y": 164.17328 + }, + { + "x": 568.99408, + "y": 231.70283 + }, + { + "x": 541.57186, + "y": 193.35472 + }, + [ + { + "#": 2372 + }, + { + "#": 2373 + }, + { + "#": 2374 + }, + { + "#": 2375 + }, + { + "#": 2376 + } + ], + { + "x": 0.30904, + "y": 0.95105 + }, + { + "x": -0.80901, + "y": 0.58779 + }, + { + "x": -0.80901, + "y": -0.58779 + }, + { + "x": 0.30904, + "y": -0.95105 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "10,11,3,4", + "startCol": 10, + "endCol": 11, + "startRow": 3, + "endRow": 4 + }, + { + "id": 67, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2379 + }, + "angle": 0.00007, + "vertices": { + "#": 2380 + }, + "position": { + "#": 2385 + }, + "force": { + "#": 2386 + }, + "torque": 0, + "positionImpulse": { + "#": 2387 + }, + "constraintImpulse": { + "#": 2388 + }, + "totalContacts": 0, + "speed": 3.05456, + "angularSpeed": 0.00002, + "velocity": { + "#": 2389 + }, + "angularVelocity": 0.00002, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2390 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2391 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2393 + }, + "positionPrev": { + "#": 2396 + }, + "anglePrev": 0.00005, + "axes": { + "#": 2397 + }, + "area": 942.00657, + "mass": 0.94201, + "inverseMass": 1.06156, + "inertia": 767.50816, + "inverseInertia": 0.0013, + "parent": { + "#": 2378 + }, + "sleepCounter": 0, + "region": { + "#": 2400 + } + }, + [ + { + "#": 2378 + } + ], + [ + { + "#": 2381 + }, + { + "#": 2382 + }, + { + "#": 2383 + }, + { + "#": 2384 + } + ], + { + "x": 48.89679, + "y": 283.21724, + "index": 0, + "body": { + "#": 2378 + }, + "isInternal": false + }, + { + "x": 69.95672, + "y": 283.2187, + "index": 1, + "body": { + "#": 2378 + }, + "isInternal": false + }, + { + "x": 69.95361, + "y": 327.94851, + "index": 2, + "body": { + "#": 2378 + }, + "isInternal": false + }, + { + "x": 48.89368, + "y": 327.94705, + "index": 3, + "body": { + "#": 2378 + }, + "isInternal": false + }, + { + "x": 59.4252, + "y": 305.58287 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.78033, + "y": 0.9732 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.0017, + "y": 3.05447 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2392 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2394 + }, + "max": { + "#": 2395 + } + }, + { + "x": 48.89368, + "y": 283.21724 + }, + { + "x": 69.95814, + "y": 331.00307 + }, + { + "x": 59.42353, + "y": 302.52845 + }, + [ + { + "#": 2398 + }, + { + "#": 2399 + } + ], + { + "x": -0.00007, + "y": 1 + }, + { + "x": -1, + "y": -0.00007 + }, + { + "id": "0,1,5,6", + "startCol": 0, + "endCol": 1, + "startRow": 5, + "endRow": 6 + }, + { + "id": 68, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2402 + }, + "angle": 0.00003, + "vertices": { + "#": 2403 + }, + "position": { + "#": 2408 + }, + "force": { + "#": 2409 + }, + "torque": 0, + "positionImpulse": { + "#": 2410 + }, + "constraintImpulse": { + "#": 2411 + }, + "totalContacts": 0, + "speed": 3.05518, + "angularSpeed": 0.00001, + "velocity": { + "#": 2412 + }, + "angularVelocity": 0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2413 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2414 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2416 + }, + "positionPrev": { + "#": 2419 + }, + "anglePrev": 0.00002, + "axes": { + "#": 2420 + }, + "area": 2898.41559, + "mass": 2.89842, + "inverseMass": 0.34502, + "inertia": 12806.46533, + "inverseInertia": 0.00008, + "parent": { + "#": 2401 + }, + "sleepCounter": 0, + "region": { + "#": 2423 + } + }, + [ + { + "#": 2401 + } + ], + [ + { + "#": 2404 + }, + { + "#": 2405 + }, + { + "#": 2406 + }, + { + "#": 2407 + } + ], + { + "x": 70.19144, + "y": 282.63522, + "index": 0, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 182.38742, + "y": 282.63905, + "index": 1, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 182.38654, + "y": 308.47256, + "index": 2, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 70.19055, + "y": 308.46873, + "index": 3, + "body": { + "#": 2401 + }, + "isInternal": false + }, + { + "x": 126.28899, + "y": 295.55389 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1.13974, + "y": 1.61059 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00183, + "y": 3.05513 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2415 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2417 + }, + "max": { + "#": 2418 + } + }, + { + "x": 70.19055, + "y": 282.63522 + }, + { + "x": 182.38904, + "y": 311.52774 + }, + { + "x": 126.28715, + "y": 292.49875 + }, + [ + { + "#": 2421 + }, + { + "#": 2422 + } + ], + { + "x": -0.00003, + "y": 1 + }, + { + "x": -1, + "y": -0.00003 + }, + { + "id": "1,3,5,6", + "startCol": 1, + "endCol": 3, + "startRow": 5, + "endRow": 6 + }, + { + "id": 69, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2425 + }, + "angle": 0.00004, + "vertices": { + "#": 2426 + }, + "position": { + "#": 2432 + }, + "force": { + "#": 2433 + }, + "torque": 0, + "positionImpulse": { + "#": 2434 + }, + "constraintImpulse": { + "#": 2435 + }, + "totalContacts": 0, + "speed": 3.05486, + "angularSpeed": 0.00001, + "velocity": { + "#": 2436 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2437 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2438 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2440 + }, + "positionPrev": { + "#": 2443 + }, + "anglePrev": 0.00004, + "axes": { + "#": 2444 + }, + "area": 1542.07381, + "mass": 1.54207, + "inverseMass": 0.64848, + "inertia": 1539.57148, + "inverseInertia": 0.00065, + "parent": { + "#": 2424 + }, + "sleepCounter": 0, + "region": { + "#": 2450 + } + }, + [ + { + "#": 2424 + } + ], + [ + { + "#": 2427 + }, + { + "#": 2428 + }, + { + "#": 2429 + }, + { + "#": 2430 + }, + { + "#": 2431 + } + ], + { + "x": 215.01321, + "y": 279.19292, + "index": 0, + "body": { + "#": 2424 + }, + "isInternal": false + }, + { + "x": 186.5398, + "y": 288.44364, + "index": 1, + "body": { + "#": 2424 + }, + "isInternal": false + }, + { + "x": 168.94388, + "y": 264.22186, + "index": 2, + "body": { + "#": 2424 + }, + "isInternal": false + }, + { + "x": 186.54196, + "y": 240.00164, + "index": 3, + "body": { + "#": 2424 + }, + "isInternal": false + }, + { + "x": 215.01455, + "y": 249.25492, + "index": 4, + "body": { + "#": 2424 + }, + "isInternal": false + }, + { + "x": 194.41063, + "y": 264.22299 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.0013, + "y": 3.0549 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2439 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2441 + }, + "max": { + "#": 2442 + } + }, + { + "x": 168.94388, + "y": 240.00164 + }, + { + "x": 215.01558, + "y": 291.49851 + }, + { + "x": 194.40936, + "y": 261.16814 + }, + [ + { + "#": 2445 + }, + { + "#": 2446 + }, + { + "#": 2447 + }, + { + "#": 2448 + }, + { + "#": 2449 + } + ], + { + "x": 0.30899, + "y": 0.95106 + }, + { + "x": -0.80905, + "y": 0.58774 + }, + { + "x": -0.809, + "y": -0.58781 + }, + { + "x": 0.30908, + "y": -0.95104 + }, + { + "x": 1, + "y": 0.00004 + }, + { + "id": "3,4,5,6", + "startCol": 3, + "endCol": 4, + "startRow": 5, + "endRow": 6 + }, + { + "id": 70, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2452 + }, + "angle": 0.00005, + "vertices": { + "#": 2453 + }, + "position": { + "#": 2458 + }, + "force": { + "#": 2459 + }, + "torque": 0, + "positionImpulse": { + "#": 2460 + }, + "constraintImpulse": { + "#": 2461 + }, + "totalContacts": 0, + "speed": 3.05543, + "angularSpeed": 0.00001, + "velocity": { + "#": 2462 + }, + "angularVelocity": 0.00001, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2463 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2464 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2466 + }, + "positionPrev": { + "#": 2469 + }, + "anglePrev": 0.00004, + "axes": { + "#": 2470 + }, + "area": 4282.3936, + "mass": 4.28239, + "inverseMass": 0.23351, + "inertia": 12225.92996, + "inverseInertia": 0.00008, + "parent": { + "#": 2451 + }, + "sleepCounter": 0, + "region": { + "#": 2473 + } + }, + [ + { + "#": 2451 + } + ], + [ + { + "#": 2454 + }, + { + "#": 2455 + }, + { + "#": 2456 + }, + { + "#": 2457 + } + ], + { + "x": 280.81737, + "y": 321.24886, + "index": 0, + "body": { + "#": 2451 + }, + "isInternal": false + }, + { + "x": 215.37737, + "y": 321.24555, + "index": 1, + "body": { + "#": 2451 + }, + "isInternal": false + }, + { + "x": 215.38067, + "y": 255.80555, + "index": 2, + "body": { + "#": 2451 + }, + "isInternal": false + }, + { + "x": 280.82067, + "y": 255.80886, + "index": 3, + "body": { + "#": 2451 + }, + "isInternal": false + }, + { + "x": 248.09902, + "y": 288.52721 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0.38721, + "y": 0.55115 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00109, + "y": 3.0554 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2465 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2467 + }, + "max": { + "#": 2468 + } + }, + { + "x": 215.37737, + "y": 255.80555 + }, + { + "x": 280.82146, + "y": 324.30428 + }, + { + "x": 248.09791, + "y": 285.47179 + }, + [ + { + "#": 2471 + }, + { + "#": 2472 + } + ], + { + "x": 0.00005, + "y": -1 + }, + { + "x": 1, + "y": 0.00005 + }, + { + "id": "4,5,5,6", + "startCol": 4, + "endCol": 5, + "startRow": 5, + "endRow": 6 + }, + { + "id": 71, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2475 + }, + "angle": 0, + "vertices": { + "#": 2476 + }, + "position": { + "#": 2481 + }, + "force": { + "#": 2482 + }, + "torque": 0, + "positionImpulse": { + "#": 2483 + }, + "constraintImpulse": { + "#": 2484 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 2485 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2486 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2487 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2489 + }, + "positionPrev": { + "#": 2492 + }, + "anglePrev": 0, + "axes": { + "#": 2493 + }, + "area": 1051.31113, + "mass": 1.05131, + "inverseMass": 0.95119, + "inertia": 749.58313, + "inverseInertia": 0.00133, + "parent": { + "#": 2474 + }, + "sleepCounter": 0, + "region": { + "#": 2496 + } + }, + [ + { + "#": 2474 + } + ], + [ + { + "#": 2477 + }, + { + "#": 2478 + }, + { + "#": 2479 + }, + { + "#": 2480 + } + ], + { + "x": 290.63943, + "y": 241.24995, + "index": 0, + "body": { + "#": 2474 + }, + "isInternal": false + }, + { + "x": 320.18778, + "y": 241.24997, + "index": 1, + "body": { + "#": 2474 + }, + "isInternal": false + }, + { + "x": 320.18776, + "y": 276.82932, + "index": 2, + "body": { + "#": 2474 + }, + "isInternal": false + }, + { + "x": 290.6394, + "y": 276.8293, + "index": 3, + "body": { + "#": 2474 + }, + "isInternal": false + }, + { + "x": 305.41359, + "y": 259.03963 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2488 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2490 + }, + "max": { + "#": 2491 + } + }, + { + "x": 290.6394, + "y": 241.24995 + }, + { + "x": 320.18778, + "y": 276.82932 + }, + { + "x": 305.41359, + "y": 255.98408 + }, + [ + { + "#": 2494 + }, + { + "#": 2495 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "6,6,5,5", + "startCol": 6, + "endCol": 6, + "startRow": 5, + "endRow": 5 + }, + { + "id": 72, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2498 + }, + "angle": 0, + "vertices": { + "#": 2499 + }, + "position": { + "#": 2508 + }, + "force": { + "#": 2509 + }, + "torque": 0, + "positionImpulse": { + "#": 2510 + }, + "constraintImpulse": { + "#": 2511 + }, + "totalContacts": 0, + "speed": 3.05558, + "angularSpeed": 0, + "velocity": { + "#": 2512 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2513 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2514 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2516 + }, + "positionPrev": { + "#": 2519 + }, + "anglePrev": 0, + "axes": { + "#": 2520 + }, + "area": 6455.5867, + "mass": 6.45559, + "inverseMass": 0.1549, + "inertia": 26591.36131, + "inverseInertia": 0.00004, + "parent": { + "#": 2497 + }, + "sleepCounter": 0, + "region": { + "#": 2525 + } + }, + [ + { + "#": 2497 + } + ], + [ + { + "#": 2500 + }, + { + "#": 2501 + }, + { + "#": 2502 + }, + { + "#": 2503 + }, + { + "#": 2504 + }, + { + "#": 2505 + }, + { + "#": 2506 + }, + { + "#": 2507 + } + ], + { + "x": 424.37916, + "y": 336.61989, + "index": 0, + "body": { + "#": 2497 + }, + "isInternal": false + }, + { + "x": 398.52315, + "y": 362.47587, + "index": 1, + "body": { + "#": 2497 + }, + "isInternal": false + }, + { + "x": 361.95915, + "y": 362.47586, + "index": 2, + "body": { + "#": 2497 + }, + "isInternal": false + }, + { + "x": 336.10316, + "y": 336.61984, + "index": 3, + "body": { + "#": 2497 + }, + "isInternal": false + }, + { + "x": 336.10318, + "y": 300.05584, + "index": 4, + "body": { + "#": 2497 + }, + "isInternal": false + }, + { + "x": 361.95919, + "y": 274.19986, + "index": 5, + "body": { + "#": 2497 + }, + "isInternal": false + }, + { + "x": 398.52319, + "y": 274.19987, + "index": 6, + "body": { + "#": 2497 + }, + "isInternal": false + }, + { + "x": 424.37918, + "y": 300.05589, + "index": 7, + "body": { + "#": 2497 + }, + "isInternal": false + }, + { + "x": 380.24117, + "y": 318.33787 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 1.15377, + "y": 0.71241 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00031, + "y": 3.05558 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2515 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2517 + }, + "max": { + "#": 2518 + } + }, + { + "x": 336.10316, + "y": 274.19986 + }, + { + "x": 424.37949, + "y": 365.53145 + }, + { + "x": 380.24086, + "y": 315.28229 + }, + [ + { + "#": 2521 + }, + { + "#": 2522 + }, + { + "#": 2523 + }, + { + "#": 2524 + } + ], + { + "x": -0.70711, + "y": -0.70711 + }, + { + "x": 0, + "y": -1 + }, + { + "x": 0.70711, + "y": -0.70711 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "6,8,5,7", + "startCol": 6, + "endCol": 8, + "startRow": 5, + "endRow": 7 + }, + { + "id": 73, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2527 + }, + "angle": 0, + "vertices": { + "#": 2528 + }, + "position": { + "#": 2534 + }, + "force": { + "#": 2535 + }, + "torque": 0, + "positionImpulse": { + "#": 2536 + }, + "constraintImpulse": { + "#": 2537 + }, + "totalContacts": 0, + "speed": 3.05553, + "angularSpeed": 0, + "velocity": { + "#": 2538 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2539 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2540 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2542 + }, + "positionPrev": { + "#": 2545 + }, + "anglePrev": 0, + "axes": { + "#": 2546 + }, + "area": 2014.12665, + "mass": 2.01413, + "inverseMass": 0.49649, + "inertia": 2626.41342, + "inverseInertia": 0.00038, + "parent": { + "#": 2526 + }, + "sleepCounter": 0, + "region": { + "#": 2552 + } + }, + [ + { + "#": 2526 + } + ], + [ + { + "#": 2529 + }, + { + "#": 2530 + }, + { + "#": 2531 + }, + { + "#": 2532 + }, + { + "#": 2533 + } + ], + { + "x": 471.01478, + "y": 280.64854, + "index": 0, + "body": { + "#": 2526 + }, + "isInternal": false + }, + { + "x": 438.47481, + "y": 291.22164, + "index": 1, + "body": { + "#": 2526 + }, + "isInternal": false + }, + { + "x": 418.36373, + "y": 263.5407, + "index": 2, + "body": { + "#": 2526 + }, + "isInternal": false + }, + { + "x": 438.47464, + "y": 235.85964, + "index": 3, + "body": { + "#": 2526 + }, + "isInternal": false + }, + { + "x": 471.01468, + "y": 246.43254, + "index": 4, + "body": { + "#": 2526 + }, + "isInternal": false + }, + { + "x": 447.46855, + "y": 263.54061 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00002, + "y": 3.05553 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2541 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2543 + }, + "max": { + "#": 2544 + } + }, + { + "x": 418.36373, + "y": 235.85964 + }, + { + "x": 471.01478, + "y": 291.22164 + }, + { + "x": 447.46853, + "y": 260.48508 + }, + [ + { + "#": 2547 + }, + { + "#": 2548 + }, + { + "#": 2549 + }, + { + "#": 2550 + }, + { + "#": 2551 + } + ], + { + "x": 0.30902, + "y": 0.95105 + }, + { + "x": -0.80902, + "y": 0.58778 + }, + { + "x": -0.80902, + "y": -0.58777 + }, + { + "x": 0.30902, + "y": -0.95106 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "8,9,4,6", + "startCol": 8, + "endCol": 9, + "startRow": 4, + "endRow": 6 + }, + { + "id": 74, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 2554 + }, + "angle": 0, + "vertices": { + "#": 2555 + }, + "position": { + "#": 2563 + }, + "force": { + "#": 2564 + }, + "torque": 0, + "positionImpulse": { + "#": 2565 + }, + "constraintImpulse": { + "#": 2566 + }, + "totalContacts": 0, + "speed": 3.05556, + "angularSpeed": 0, + "velocity": { + "#": 2567 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0.8, + "friction": 0.0001, + "frictionStatic": 0.5, + "frictionAir": 0, + "collisionFilter": { + "#": 2568 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 2569 + }, + "circleRadius": 16.27542, + "bounds": { + "#": 2571 + }, + "positionPrev": { + "#": 2574 + }, + "anglePrev": 0, + "axes": { + "#": 2575 + }, + "area": 4695.38663, + "mass": 4.69539, + "inverseMass": 0.21298, + "inertia": 14091.25388, + "inverseInertia": 0.00007, + "parent": { + "#": 2553 + }, + "sleepCounter": 0, + "region": { + "#": 2583 + } + }, + [ + { + "#": 2553 + } + ], + [ + { + "#": 2556 + }, + { + "#": 2557 + }, + { + "#": 2558 + }, + { + "#": 2559 + }, + { + "#": 2560 + }, + { + "#": 2561 + }, + { + "#": 2562 + } + ], + { + "x": 542.6104, + "y": 314.60176, + "index": 0, + "body": { + "#": 2553 + }, + "isInternal": false + }, + { + "x": 514.50744, + "y": 337.0138, + "index": 1, + "body": { + "#": 2553 + }, + "isInternal": false + }, + { + "x": 479.46243, + "y": 329.01485, + "index": 2, + "body": { + "#": 2553 + }, + "isInternal": false + }, + { + "x": 463.86638, + "y": 296.62888, + "index": 3, + "body": { + "#": 2553 + }, + "isInternal": false + }, + { + "x": 479.46233, + "y": 264.24285, + "index": 4, + "body": { + "#": 2553 + }, + "isInternal": false + }, + { + "x": 514.50731, + "y": 256.2438, + "index": 5, + "body": { + "#": 2553 + }, + "isInternal": false + }, + { + "x": 542.61035, + "y": 278.65576, + "index": 6, + "body": { + "#": 2553 + }, + "isInternal": false + }, + { + "x": 505.2895, + "y": 296.62881 + }, + { + "x": 0, + "y": 0 + }, + { + "x": -0.75329, + "y": 0.55671 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0.00001, + "y": 3.05556 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 2570 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 2572 + }, + "max": { + "#": 2573 + } + }, + { + "x": 463.86638, + "y": 256.2438 + }, + { + "x": 542.61041, + "y": 340.06936 + }, + { + "x": 505.28949, + "y": 293.57326 + }, + [ + { + "#": 2576 + }, + { + "#": 2577 + }, + { + "#": 2578 + }, + { + "#": 2579 + }, + { + "#": 2580 + }, + { + "#": 2581 + }, + { + "#": 2582 + } + ], + { + "x": 0.6235, + "y": 0.78182 + }, + { + "x": -0.22252, + "y": 0.97493 + }, + { + "x": -0.90097, + "y": 0.43388 + }, + { + "x": -0.90097, + "y": -0.43388 + }, + { + "x": -0.22253, + "y": -0.97493 + }, + { + "x": 0.6235, + "y": -0.78182 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "9,11,5,7", + "startCol": 9, + "endCol": 11, + "startRow": 5, + "endRow": 7 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 2588 + }, + "max": { + "#": 2589 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/wreckingBall/wreckingBall-0.json b/test/node/refs/wreckingBall/wreckingBall-0.json new file mode 100644 index 00000000..5f2b9667 --- /dev/null +++ b/test/node/refs/wreckingBall/wreckingBall-0.json @@ -0,0 +1,11592 @@ +[ + { + "id": 30, + "type": "composite", + "parent": null, + "isModified": true, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 145 + }, + "composites": { + "#": 150 + }, + "label": "World", + "gravity": { + "#": 1255 + }, + "bounds": { + "#": 1256 + } + }, + [ + { + "#": 2 + }, + { + "#": 24 + }, + { + "#": 46 + }, + { + "#": 68 + }, + { + "#": 90 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0 + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 25 + }, + "angle": 0, + "vertices": { + "#": 26 + }, + "position": { + "#": 31 + }, + "force": { + "#": 32 + }, + "torque": 0, + "positionImpulse": { + "#": 33 + }, + "constraintImpulse": { + "#": 34 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 35 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 36 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 37 + }, + "bounds": { + "#": 39 + }, + "positionPrev": { + "#": 42 + }, + "anglePrev": 0, + "axes": { + "#": 43 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 24 + }, + "sleepCounter": 0 + }, + [ + { + "#": 24 + } + ], + [ + { + "#": 27 + }, + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 24 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 38 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 40 + }, + "max": { + "#": 41 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 44 + }, + { + "#": 45 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 47 + }, + "angle": 0, + "vertices": { + "#": 48 + }, + "position": { + "#": 53 + }, + "force": { + "#": 54 + }, + "torque": 0, + "positionImpulse": { + "#": 55 + }, + "constraintImpulse": { + "#": 56 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 57 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 58 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 59 + }, + "bounds": { + "#": 61 + }, + "positionPrev": { + "#": 64 + }, + "anglePrev": 0, + "axes": { + "#": 65 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 46 + }, + "sleepCounter": 0 + }, + [ + { + "#": 46 + } + ], + [ + { + "#": 49 + }, + { + "#": 50 + }, + { + "#": 51 + }, + { + "#": 52 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 46 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 60 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 62 + }, + "max": { + "#": 63 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 66 + }, + { + "#": 67 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 69 + }, + "angle": 0, + "vertices": { + "#": 70 + }, + "position": { + "#": 75 + }, + "force": { + "#": 76 + }, + "torque": 0, + "positionImpulse": { + "#": 77 + }, + "constraintImpulse": { + "#": 78 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 79 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 80 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 81 + }, + "bounds": { + "#": 83 + }, + "positionPrev": { + "#": 86 + }, + "anglePrev": 0, + "axes": { + "#": 87 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 68 + }, + "sleepCounter": 0 + }, + [ + { + "#": 68 + } + ], + [ + { + "#": 71 + }, + { + "#": 72 + }, + { + "#": 73 + }, + { + "#": 74 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 68 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 82 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 84 + }, + "max": { + "#": 85 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 88 + }, + { + "#": 89 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 55, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 91 + }, + "angle": 0, + "vertices": { + "#": 92 + }, + "position": { + "#": 119 + }, + "force": { + "#": 120 + }, + "torque": 0, + "positionImpulse": { + "#": 121 + }, + "constraintImpulse": { + "#": 122 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 123 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.04, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.005, + "collisionFilter": { + "#": 124 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 125 + }, + "circleRadius": 50, + "bounds": { + "#": 127 + }, + "positionPrev": { + "#": 130 + }, + "anglePrev": 0, + "axes": { + "#": 131 + }, + "area": 7777.74467, + "mass": 311.10979, + "inverseMass": 0.00321, + "inertia": 1540478.93493, + "inverseInertia": 0, + "parent": { + "#": 90 + }, + "sleepCounter": 0 + }, + [ + { + "#": 90 + } + ], + [ + { + "#": 93 + }, + { + "#": 94 + }, + { + "#": 95 + }, + { + "#": 96 + }, + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + } + ], + { + "x": 149.635, + "y": 406.027, + "index": 0, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 146.751, + "y": 417.73, + "index": 1, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 141.149, + "y": 428.403, + "index": 2, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 133.156, + "y": 437.426, + "index": 3, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 123.236, + "y": 444.273, + "index": 4, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 111.966, + "y": 448.547, + "index": 5, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 100, + "y": 450, + "index": 6, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 88.034, + "y": 448.547, + "index": 7, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 76.764, + "y": 444.273, + "index": 8, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 66.844, + "y": 437.426, + "index": 9, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 58.851, + "y": 428.403, + "index": 10, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 53.249, + "y": 417.73, + "index": 11, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 50.365, + "y": 406.027, + "index": 12, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 50.365, + "y": 393.973, + "index": 13, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 53.249, + "y": 382.27, + "index": 14, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 58.851, + "y": 371.597, + "index": 15, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 66.844, + "y": 362.574, + "index": 16, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 76.764, + "y": 355.727, + "index": 17, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 88.034, + "y": 351.453, + "index": 18, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 100, + "y": 350, + "index": 19, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 111.966, + "y": 351.453, + "index": 20, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 123.236, + "y": 355.727, + "index": 21, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 133.156, + "y": 362.574, + "index": 22, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 141.149, + "y": 371.597, + "index": 23, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 146.751, + "y": 382.27, + "index": 24, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 149.635, + "y": 393.973, + "index": 25, + "body": { + "#": 90 + }, + "isInternal": false + }, + { + "x": 100, + "y": 400 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 126 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 128 + }, + "max": { + "#": 129 + } + }, + { + "x": 50.365, + "y": 350 + }, + { + "x": 149.635, + "y": 450 + }, + { + "x": 100, + "y": 400 + }, + [ + { + "#": 132 + }, + { + "#": 133 + }, + { + "#": 134 + }, + { + "#": 135 + }, + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + } + ], + { + "x": -0.97095, + "y": -0.23927 + }, + { + "x": -0.88544, + "y": -0.46475 + }, + { + "x": -0.74854, + "y": -0.66309 + }, + { + "x": -0.56805, + "y": -0.82299 + }, + { + "x": -0.35459, + "y": -0.93502 + }, + { + "x": -0.12054, + "y": -0.99271 + }, + { + "x": 0.12054, + "y": -0.99271 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.56805, + "y": -0.82299 + }, + { + "x": 0.74854, + "y": -0.66309 + }, + { + "x": 0.88544, + "y": -0.46475 + }, + { + "x": 0.97095, + "y": -0.23927 + }, + { + "x": 1, + "y": 0 + }, + [ + { + "#": 146 + } + ], + { + "pointA": { + "#": 147 + }, + "bodyB": { + "#": 90 + }, + "pointB": { + "#": 148 + }, + "length": 360.55513, + "render": { + "#": 149 + }, + "id": 56, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 300, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [ + { + "#": 151 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": true, + "bodies": { + "#": 152 + }, + "constraints": { + "#": 1253 + }, + "composites": { + "#": 1254 + }, + "label": "Stack" + }, + [ + { + "#": 153 + }, + { + "#": 175 + }, + { + "#": 197 + }, + { + "#": 219 + }, + { + "#": 241 + }, + { + "#": 263 + }, + { + "#": 285 + }, + { + "#": 307 + }, + { + "#": 329 + }, + { + "#": 351 + }, + { + "#": 373 + }, + { + "#": 395 + }, + { + "#": 417 + }, + { + "#": 439 + }, + { + "#": 461 + }, + { + "#": 483 + }, + { + "#": 505 + }, + { + "#": 527 + }, + { + "#": 549 + }, + { + "#": 571 + }, + { + "#": 593 + }, + { + "#": 615 + }, + { + "#": 637 + }, + { + "#": 659 + }, + { + "#": 681 + }, + { + "#": 703 + }, + { + "#": 725 + }, + { + "#": 747 + }, + { + "#": 769 + }, + { + "#": 791 + }, + { + "#": 813 + }, + { + "#": 835 + }, + { + "#": 857 + }, + { + "#": 879 + }, + { + "#": 901 + }, + { + "#": 923 + }, + { + "#": 945 + }, + { + "#": 967 + }, + { + "#": 989 + }, + { + "#": 1011 + }, + { + "#": 1033 + }, + { + "#": 1055 + }, + { + "#": 1077 + }, + { + "#": 1099 + }, + { + "#": 1121 + }, + { + "#": 1143 + }, + { + "#": 1165 + }, + { + "#": 1187 + }, + { + "#": 1209 + }, + { + "#": 1231 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 154 + }, + "angle": 0, + "vertices": { + "#": 155 + }, + "position": { + "#": 160 + }, + "force": { + "#": 161 + }, + "torque": 0, + "positionImpulse": { + "#": 162 + }, + "constraintImpulse": { + "#": 163 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 164 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 165 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 166 + }, + "bounds": { + "#": 168 + }, + "positionPrev": { + "#": 171 + }, + "anglePrev": 0, + "axes": { + "#": 172 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 153 + }, + "sleepCounter": 0 + }, + [ + { + "#": 153 + } + ], + [ + { + "#": 156 + }, + { + "#": 157 + }, + { + "#": 158 + }, + { + "#": 159 + } + ], + { + "x": 400, + "y": 179, + "index": 0, + "body": { + "#": 153 + }, + "isInternal": false + }, + { + "x": 440, + "y": 179, + "index": 1, + "body": { + "#": 153 + }, + "isInternal": false + }, + { + "x": 440, + "y": 219, + "index": 2, + "body": { + "#": 153 + }, + "isInternal": false + }, + { + "x": 400, + "y": 219, + "index": 3, + "body": { + "#": 153 + }, + "isInternal": false + }, + { + "x": 420, + "y": 199 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 167 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 169 + }, + "max": { + "#": 170 + } + }, + { + "x": 400, + "y": 179 + }, + { + "x": 440, + "y": 219 + }, + { + "x": 420, + "y": 199 + }, + [ + { + "#": 173 + }, + { + "#": 174 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 176 + }, + "angle": 0, + "vertices": { + "#": 177 + }, + "position": { + "#": 182 + }, + "force": { + "#": 183 + }, + "torque": 0, + "positionImpulse": { + "#": 184 + }, + "constraintImpulse": { + "#": 185 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 186 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 187 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 188 + }, + "bounds": { + "#": 190 + }, + "positionPrev": { + "#": 193 + }, + "anglePrev": 0, + "axes": { + "#": 194 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 175 + }, + "sleepCounter": 0 + }, + [ + { + "#": 175 + } + ], + [ + { + "#": 178 + }, + { + "#": 179 + }, + { + "#": 180 + }, + { + "#": 181 + } + ], + { + "x": 440, + "y": 179, + "index": 0, + "body": { + "#": 175 + }, + "isInternal": false + }, + { + "x": 480, + "y": 179, + "index": 1, + "body": { + "#": 175 + }, + "isInternal": false + }, + { + "x": 480, + "y": 219, + "index": 2, + "body": { + "#": 175 + }, + "isInternal": false + }, + { + "x": 440, + "y": 219, + "index": 3, + "body": { + "#": 175 + }, + "isInternal": false + }, + { + "x": 460, + "y": 199 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 189 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 191 + }, + "max": { + "#": 192 + } + }, + { + "x": 440, + "y": 179 + }, + { + "x": 480, + "y": 219 + }, + { + "x": 460, + "y": 199 + }, + [ + { + "#": 195 + }, + { + "#": 196 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 198 + }, + "angle": 0, + "vertices": { + "#": 199 + }, + "position": { + "#": 204 + }, + "force": { + "#": 205 + }, + "torque": 0, + "positionImpulse": { + "#": 206 + }, + "constraintImpulse": { + "#": 207 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 208 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 209 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 210 + }, + "bounds": { + "#": 212 + }, + "positionPrev": { + "#": 215 + }, + "anglePrev": 0, + "axes": { + "#": 216 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 197 + }, + "sleepCounter": 0 + }, + [ + { + "#": 197 + } + ], + [ + { + "#": 200 + }, + { + "#": 201 + }, + { + "#": 202 + }, + { + "#": 203 + } + ], + { + "x": 480, + "y": 179, + "index": 0, + "body": { + "#": 197 + }, + "isInternal": false + }, + { + "x": 520, + "y": 179, + "index": 1, + "body": { + "#": 197 + }, + "isInternal": false + }, + { + "x": 520, + "y": 219, + "index": 2, + "body": { + "#": 197 + }, + "isInternal": false + }, + { + "x": 480, + "y": 219, + "index": 3, + "body": { + "#": 197 + }, + "isInternal": false + }, + { + "x": 500, + "y": 199 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 211 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 213 + }, + "max": { + "#": 214 + } + }, + { + "x": 480, + "y": 179 + }, + { + "x": 520, + "y": 219 + }, + { + "x": 500, + "y": 199 + }, + [ + { + "#": 217 + }, + { + "#": 218 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 220 + }, + "angle": 0, + "vertices": { + "#": 221 + }, + "position": { + "#": 226 + }, + "force": { + "#": 227 + }, + "torque": 0, + "positionImpulse": { + "#": 228 + }, + "constraintImpulse": { + "#": 229 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 230 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 231 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 232 + }, + "bounds": { + "#": 234 + }, + "positionPrev": { + "#": 237 + }, + "anglePrev": 0, + "axes": { + "#": 238 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 219 + }, + "sleepCounter": 0 + }, + [ + { + "#": 219 + } + ], + [ + { + "#": 222 + }, + { + "#": 223 + }, + { + "#": 224 + }, + { + "#": 225 + } + ], + { + "x": 520, + "y": 179, + "index": 0, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 560, + "y": 179, + "index": 1, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 560, + "y": 219, + "index": 2, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 520, + "y": 219, + "index": 3, + "body": { + "#": 219 + }, + "isInternal": false + }, + { + "x": 540, + "y": 199 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 233 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 235 + }, + "max": { + "#": 236 + } + }, + { + "x": 520, + "y": 179 + }, + { + "x": 560, + "y": 219 + }, + { + "x": 540, + "y": 199 + }, + [ + { + "#": 239 + }, + { + "#": 240 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 242 + }, + "angle": 0, + "vertices": { + "#": 243 + }, + "position": { + "#": 248 + }, + "force": { + "#": 249 + }, + "torque": 0, + "positionImpulse": { + "#": 250 + }, + "constraintImpulse": { + "#": 251 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 252 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 253 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 254 + }, + "bounds": { + "#": 256 + }, + "positionPrev": { + "#": 259 + }, + "anglePrev": 0, + "axes": { + "#": 260 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 241 + }, + "sleepCounter": 0 + }, + [ + { + "#": 241 + } + ], + [ + { + "#": 244 + }, + { + "#": 245 + }, + { + "#": 246 + }, + { + "#": 247 + } + ], + { + "x": 560, + "y": 179, + "index": 0, + "body": { + "#": 241 + }, + "isInternal": false + }, + { + "x": 600, + "y": 179, + "index": 1, + "body": { + "#": 241 + }, + "isInternal": false + }, + { + "x": 600, + "y": 219, + "index": 2, + "body": { + "#": 241 + }, + "isInternal": false + }, + { + "x": 560, + "y": 219, + "index": 3, + "body": { + "#": 241 + }, + "isInternal": false + }, + { + "x": 580, + "y": 199 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 255 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 257 + }, + "max": { + "#": 258 + } + }, + { + "x": 560, + "y": 179 + }, + { + "x": 600, + "y": 219 + }, + { + "x": 580, + "y": 199 + }, + [ + { + "#": 261 + }, + { + "#": 262 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 264 + }, + "angle": 0, + "vertices": { + "#": 265 + }, + "position": { + "#": 270 + }, + "force": { + "#": 271 + }, + "torque": 0, + "positionImpulse": { + "#": 272 + }, + "constraintImpulse": { + "#": 273 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 274 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 275 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 276 + }, + "bounds": { + "#": 278 + }, + "positionPrev": { + "#": 281 + }, + "anglePrev": 0, + "axes": { + "#": 282 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 263 + }, + "sleepCounter": 0 + }, + [ + { + "#": 263 + } + ], + [ + { + "#": 266 + }, + { + "#": 267 + }, + { + "#": 268 + }, + { + "#": 269 + } + ], + { + "x": 400, + "y": 219, + "index": 0, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 440, + "y": 219, + "index": 1, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 440, + "y": 259, + "index": 2, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 400, + "y": 259, + "index": 3, + "body": { + "#": 263 + }, + "isInternal": false + }, + { + "x": 420, + "y": 239 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 277 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 279 + }, + "max": { + "#": 280 + } + }, + { + "x": 400, + "y": 219 + }, + { + "x": 440, + "y": 259 + }, + { + "x": 420, + "y": 239 + }, + [ + { + "#": 283 + }, + { + "#": 284 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 286 + }, + "angle": 0, + "vertices": { + "#": 287 + }, + "position": { + "#": 292 + }, + "force": { + "#": 293 + }, + "torque": 0, + "positionImpulse": { + "#": 294 + }, + "constraintImpulse": { + "#": 295 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 296 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 297 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 298 + }, + "bounds": { + "#": 300 + }, + "positionPrev": { + "#": 303 + }, + "anglePrev": 0, + "axes": { + "#": 304 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 285 + }, + "sleepCounter": 0 + }, + [ + { + "#": 285 + } + ], + [ + { + "#": 288 + }, + { + "#": 289 + }, + { + "#": 290 + }, + { + "#": 291 + } + ], + { + "x": 440, + "y": 219, + "index": 0, + "body": { + "#": 285 + }, + "isInternal": false + }, + { + "x": 480, + "y": 219, + "index": 1, + "body": { + "#": 285 + }, + "isInternal": false + }, + { + "x": 480, + "y": 259, + "index": 2, + "body": { + "#": 285 + }, + "isInternal": false + }, + { + "x": 440, + "y": 259, + "index": 3, + "body": { + "#": 285 + }, + "isInternal": false + }, + { + "x": 460, + "y": 239 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 299 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 301 + }, + "max": { + "#": 302 + } + }, + { + "x": 440, + "y": 219 + }, + { + "x": 480, + "y": 259 + }, + { + "x": 460, + "y": 239 + }, + [ + { + "#": 305 + }, + { + "#": 306 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 308 + }, + "angle": 0, + "vertices": { + "#": 309 + }, + "position": { + "#": 314 + }, + "force": { + "#": 315 + }, + "torque": 0, + "positionImpulse": { + "#": 316 + }, + "constraintImpulse": { + "#": 317 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 318 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 319 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 320 + }, + "bounds": { + "#": 322 + }, + "positionPrev": { + "#": 325 + }, + "anglePrev": 0, + "axes": { + "#": 326 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 307 + }, + "sleepCounter": 0 + }, + [ + { + "#": 307 + } + ], + [ + { + "#": 310 + }, + { + "#": 311 + }, + { + "#": 312 + }, + { + "#": 313 + } + ], + { + "x": 480, + "y": 219, + "index": 0, + "body": { + "#": 307 + }, + "isInternal": false + }, + { + "x": 520, + "y": 219, + "index": 1, + "body": { + "#": 307 + }, + "isInternal": false + }, + { + "x": 520, + "y": 259, + "index": 2, + "body": { + "#": 307 + }, + "isInternal": false + }, + { + "x": 480, + "y": 259, + "index": 3, + "body": { + "#": 307 + }, + "isInternal": false + }, + { + "x": 500, + "y": 239 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 321 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 323 + }, + "max": { + "#": 324 + } + }, + { + "x": 480, + "y": 219 + }, + { + "x": 520, + "y": 259 + }, + { + "x": 500, + "y": 239 + }, + [ + { + "#": 327 + }, + { + "#": 328 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 330 + }, + "angle": 0, + "vertices": { + "#": 331 + }, + "position": { + "#": 336 + }, + "force": { + "#": 337 + }, + "torque": 0, + "positionImpulse": { + "#": 338 + }, + "constraintImpulse": { + "#": 339 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 340 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 341 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 342 + }, + "bounds": { + "#": 344 + }, + "positionPrev": { + "#": 347 + }, + "anglePrev": 0, + "axes": { + "#": 348 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 329 + }, + "sleepCounter": 0 + }, + [ + { + "#": 329 + } + ], + [ + { + "#": 332 + }, + { + "#": 333 + }, + { + "#": 334 + }, + { + "#": 335 + } + ], + { + "x": 520, + "y": 219, + "index": 0, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 560, + "y": 219, + "index": 1, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 560, + "y": 259, + "index": 2, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 520, + "y": 259, + "index": 3, + "body": { + "#": 329 + }, + "isInternal": false + }, + { + "x": 540, + "y": 239 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 343 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 345 + }, + "max": { + "#": 346 + } + }, + { + "x": 520, + "y": 219 + }, + { + "x": 560, + "y": 259 + }, + { + "x": 540, + "y": 239 + }, + [ + { + "#": 349 + }, + { + "#": 350 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 352 + }, + "angle": 0, + "vertices": { + "#": 353 + }, + "position": { + "#": 358 + }, + "force": { + "#": 359 + }, + "torque": 0, + "positionImpulse": { + "#": 360 + }, + "constraintImpulse": { + "#": 361 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 362 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 363 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 364 + }, + "bounds": { + "#": 366 + }, + "positionPrev": { + "#": 369 + }, + "anglePrev": 0, + "axes": { + "#": 370 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 351 + }, + "sleepCounter": 0 + }, + [ + { + "#": 351 + } + ], + [ + { + "#": 354 + }, + { + "#": 355 + }, + { + "#": 356 + }, + { + "#": 357 + } + ], + { + "x": 560, + "y": 219, + "index": 0, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 600, + "y": 219, + "index": 1, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 600, + "y": 259, + "index": 2, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 560, + "y": 259, + "index": 3, + "body": { + "#": 351 + }, + "isInternal": false + }, + { + "x": 580, + "y": 239 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 365 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 367 + }, + "max": { + "#": 368 + } + }, + { + "x": 560, + "y": 219 + }, + { + "x": 600, + "y": 259 + }, + { + "x": 580, + "y": 239 + }, + [ + { + "#": 371 + }, + { + "#": 372 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 15, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 374 + }, + "angle": 0, + "vertices": { + "#": 375 + }, + "position": { + "#": 380 + }, + "force": { + "#": 381 + }, + "torque": 0, + "positionImpulse": { + "#": 382 + }, + "constraintImpulse": { + "#": 383 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 384 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 385 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 386 + }, + "bounds": { + "#": 388 + }, + "positionPrev": { + "#": 391 + }, + "anglePrev": 0, + "axes": { + "#": 392 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 373 + }, + "sleepCounter": 0 + }, + [ + { + "#": 373 + } + ], + [ + { + "#": 376 + }, + { + "#": 377 + }, + { + "#": 378 + }, + { + "#": 379 + } + ], + { + "x": 400, + "y": 259, + "index": 0, + "body": { + "#": 373 + }, + "isInternal": false + }, + { + "x": 440, + "y": 259, + "index": 1, + "body": { + "#": 373 + }, + "isInternal": false + }, + { + "x": 440, + "y": 299, + "index": 2, + "body": { + "#": 373 + }, + "isInternal": false + }, + { + "x": 400, + "y": 299, + "index": 3, + "body": { + "#": 373 + }, + "isInternal": false + }, + { + "x": 420, + "y": 279 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 387 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 389 + }, + "max": { + "#": 390 + } + }, + { + "x": 400, + "y": 259 + }, + { + "x": 440, + "y": 299 + }, + { + "x": 420, + "y": 279 + }, + [ + { + "#": 393 + }, + { + "#": 394 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 16, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 396 + }, + "angle": 0, + "vertices": { + "#": 397 + }, + "position": { + "#": 402 + }, + "force": { + "#": 403 + }, + "torque": 0, + "positionImpulse": { + "#": 404 + }, + "constraintImpulse": { + "#": 405 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 406 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 407 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 408 + }, + "bounds": { + "#": 410 + }, + "positionPrev": { + "#": 413 + }, + "anglePrev": 0, + "axes": { + "#": 414 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 395 + }, + "sleepCounter": 0 + }, + [ + { + "#": 395 + } + ], + [ + { + "#": 398 + }, + { + "#": 399 + }, + { + "#": 400 + }, + { + "#": 401 + } + ], + { + "x": 440, + "y": 259, + "index": 0, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 480, + "y": 259, + "index": 1, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 480, + "y": 299, + "index": 2, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 440, + "y": 299, + "index": 3, + "body": { + "#": 395 + }, + "isInternal": false + }, + { + "x": 460, + "y": 279 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 409 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 411 + }, + "max": { + "#": 412 + } + }, + { + "x": 440, + "y": 259 + }, + { + "x": 480, + "y": 299 + }, + { + "x": 460, + "y": 279 + }, + [ + { + "#": 415 + }, + { + "#": 416 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 17, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 418 + }, + "angle": 0, + "vertices": { + "#": 419 + }, + "position": { + "#": 424 + }, + "force": { + "#": 425 + }, + "torque": 0, + "positionImpulse": { + "#": 426 + }, + "constraintImpulse": { + "#": 427 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 428 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 429 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 430 + }, + "bounds": { + "#": 432 + }, + "positionPrev": { + "#": 435 + }, + "anglePrev": 0, + "axes": { + "#": 436 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 417 + }, + "sleepCounter": 0 + }, + [ + { + "#": 417 + } + ], + [ + { + "#": 420 + }, + { + "#": 421 + }, + { + "#": 422 + }, + { + "#": 423 + } + ], + { + "x": 480, + "y": 259, + "index": 0, + "body": { + "#": 417 + }, + "isInternal": false + }, + { + "x": 520, + "y": 259, + "index": 1, + "body": { + "#": 417 + }, + "isInternal": false + }, + { + "x": 520, + "y": 299, + "index": 2, + "body": { + "#": 417 + }, + "isInternal": false + }, + { + "x": 480, + "y": 299, + "index": 3, + "body": { + "#": 417 + }, + "isInternal": false + }, + { + "x": 500, + "y": 279 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 431 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 433 + }, + "max": { + "#": 434 + } + }, + { + "x": 480, + "y": 259 + }, + { + "x": 520, + "y": 299 + }, + { + "x": 500, + "y": 279 + }, + [ + { + "#": 437 + }, + { + "#": 438 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 18, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 440 + }, + "angle": 0, + "vertices": { + "#": 441 + }, + "position": { + "#": 446 + }, + "force": { + "#": 447 + }, + "torque": 0, + "positionImpulse": { + "#": 448 + }, + "constraintImpulse": { + "#": 449 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 450 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 451 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 452 + }, + "bounds": { + "#": 454 + }, + "positionPrev": { + "#": 457 + }, + "anglePrev": 0, + "axes": { + "#": 458 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 439 + }, + "sleepCounter": 0 + }, + [ + { + "#": 439 + } + ], + [ + { + "#": 442 + }, + { + "#": 443 + }, + { + "#": 444 + }, + { + "#": 445 + } + ], + { + "x": 520, + "y": 259, + "index": 0, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 560, + "y": 259, + "index": 1, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 560, + "y": 299, + "index": 2, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 520, + "y": 299, + "index": 3, + "body": { + "#": 439 + }, + "isInternal": false + }, + { + "x": 540, + "y": 279 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 453 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 455 + }, + "max": { + "#": 456 + } + }, + { + "x": 520, + "y": 259 + }, + { + "x": 560, + "y": 299 + }, + { + "x": 540, + "y": 279 + }, + [ + { + "#": 459 + }, + { + "#": 460 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 19, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 462 + }, + "angle": 0, + "vertices": { + "#": 463 + }, + "position": { + "#": 468 + }, + "force": { + "#": 469 + }, + "torque": 0, + "positionImpulse": { + "#": 470 + }, + "constraintImpulse": { + "#": 471 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 472 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 473 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 474 + }, + "bounds": { + "#": 476 + }, + "positionPrev": { + "#": 479 + }, + "anglePrev": 0, + "axes": { + "#": 480 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 461 + }, + "sleepCounter": 0 + }, + [ + { + "#": 461 + } + ], + [ + { + "#": 464 + }, + { + "#": 465 + }, + { + "#": 466 + }, + { + "#": 467 + } + ], + { + "x": 560, + "y": 259, + "index": 0, + "body": { + "#": 461 + }, + "isInternal": false + }, + { + "x": 600, + "y": 259, + "index": 1, + "body": { + "#": 461 + }, + "isInternal": false + }, + { + "x": 600, + "y": 299, + "index": 2, + "body": { + "#": 461 + }, + "isInternal": false + }, + { + "x": 560, + "y": 299, + "index": 3, + "body": { + "#": 461 + }, + "isInternal": false + }, + { + "x": 580, + "y": 279 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 475 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 477 + }, + "max": { + "#": 478 + } + }, + { + "x": 560, + "y": 259 + }, + { + "x": 600, + "y": 299 + }, + { + "x": 580, + "y": 279 + }, + [ + { + "#": 481 + }, + { + "#": 482 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 20, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 484 + }, + "angle": 0, + "vertices": { + "#": 485 + }, + "position": { + "#": 490 + }, + "force": { + "#": 491 + }, + "torque": 0, + "positionImpulse": { + "#": 492 + }, + "constraintImpulse": { + "#": 493 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 494 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 495 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 496 + }, + "bounds": { + "#": 498 + }, + "positionPrev": { + "#": 501 + }, + "anglePrev": 0, + "axes": { + "#": 502 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 483 + }, + "sleepCounter": 0 + }, + [ + { + "#": 483 + } + ], + [ + { + "#": 486 + }, + { + "#": 487 + }, + { + "#": 488 + }, + { + "#": 489 + } + ], + { + "x": 400, + "y": 299, + "index": 0, + "body": { + "#": 483 + }, + "isInternal": false + }, + { + "x": 440, + "y": 299, + "index": 1, + "body": { + "#": 483 + }, + "isInternal": false + }, + { + "x": 440, + "y": 339, + "index": 2, + "body": { + "#": 483 + }, + "isInternal": false + }, + { + "x": 400, + "y": 339, + "index": 3, + "body": { + "#": 483 + }, + "isInternal": false + }, + { + "x": 420, + "y": 319 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 497 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 499 + }, + "max": { + "#": 500 + } + }, + { + "x": 400, + "y": 299 + }, + { + "x": 440, + "y": 339 + }, + { + "x": 420, + "y": 319 + }, + [ + { + "#": 503 + }, + { + "#": 504 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 21, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 506 + }, + "angle": 0, + "vertices": { + "#": 507 + }, + "position": { + "#": 512 + }, + "force": { + "#": 513 + }, + "torque": 0, + "positionImpulse": { + "#": 514 + }, + "constraintImpulse": { + "#": 515 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 516 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 517 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 518 + }, + "bounds": { + "#": 520 + }, + "positionPrev": { + "#": 523 + }, + "anglePrev": 0, + "axes": { + "#": 524 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 505 + }, + "sleepCounter": 0 + }, + [ + { + "#": 505 + } + ], + [ + { + "#": 508 + }, + { + "#": 509 + }, + { + "#": 510 + }, + { + "#": 511 + } + ], + { + "x": 440, + "y": 299, + "index": 0, + "body": { + "#": 505 + }, + "isInternal": false + }, + { + "x": 480, + "y": 299, + "index": 1, + "body": { + "#": 505 + }, + "isInternal": false + }, + { + "x": 480, + "y": 339, + "index": 2, + "body": { + "#": 505 + }, + "isInternal": false + }, + { + "x": 440, + "y": 339, + "index": 3, + "body": { + "#": 505 + }, + "isInternal": false + }, + { + "x": 460, + "y": 319 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 519 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 521 + }, + "max": { + "#": 522 + } + }, + { + "x": 440, + "y": 299 + }, + { + "x": 480, + "y": 339 + }, + { + "x": 460, + "y": 319 + }, + [ + { + "#": 525 + }, + { + "#": 526 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 22, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 528 + }, + "angle": 0, + "vertices": { + "#": 529 + }, + "position": { + "#": 534 + }, + "force": { + "#": 535 + }, + "torque": 0, + "positionImpulse": { + "#": 536 + }, + "constraintImpulse": { + "#": 537 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 538 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 539 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 540 + }, + "bounds": { + "#": 542 + }, + "positionPrev": { + "#": 545 + }, + "anglePrev": 0, + "axes": { + "#": 546 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 527 + }, + "sleepCounter": 0 + }, + [ + { + "#": 527 + } + ], + [ + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + }, + { + "#": 533 + } + ], + { + "x": 480, + "y": 299, + "index": 0, + "body": { + "#": 527 + }, + "isInternal": false + }, + { + "x": 520, + "y": 299, + "index": 1, + "body": { + "#": 527 + }, + "isInternal": false + }, + { + "x": 520, + "y": 339, + "index": 2, + "body": { + "#": 527 + }, + "isInternal": false + }, + { + "x": 480, + "y": 339, + "index": 3, + "body": { + "#": 527 + }, + "isInternal": false + }, + { + "x": 500, + "y": 319 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 541 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 543 + }, + "max": { + "#": 544 + } + }, + { + "x": 480, + "y": 299 + }, + { + "x": 520, + "y": 339 + }, + { + "x": 500, + "y": 319 + }, + [ + { + "#": 547 + }, + { + "#": 548 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 23, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 550 + }, + "angle": 0, + "vertices": { + "#": 551 + }, + "position": { + "#": 556 + }, + "force": { + "#": 557 + }, + "torque": 0, + "positionImpulse": { + "#": 558 + }, + "constraintImpulse": { + "#": 559 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 560 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 561 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 562 + }, + "bounds": { + "#": 564 + }, + "positionPrev": { + "#": 567 + }, + "anglePrev": 0, + "axes": { + "#": 568 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 549 + }, + "sleepCounter": 0 + }, + [ + { + "#": 549 + } + ], + [ + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + } + ], + { + "x": 520, + "y": 299, + "index": 0, + "body": { + "#": 549 + }, + "isInternal": false + }, + { + "x": 560, + "y": 299, + "index": 1, + "body": { + "#": 549 + }, + "isInternal": false + }, + { + "x": 560, + "y": 339, + "index": 2, + "body": { + "#": 549 + }, + "isInternal": false + }, + { + "x": 520, + "y": 339, + "index": 3, + "body": { + "#": 549 + }, + "isInternal": false + }, + { + "x": 540, + "y": 319 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 563 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 565 + }, + "max": { + "#": 566 + } + }, + { + "x": 520, + "y": 299 + }, + { + "x": 560, + "y": 339 + }, + { + "x": 540, + "y": 319 + }, + [ + { + "#": 569 + }, + { + "#": 570 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 24, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 572 + }, + "angle": 0, + "vertices": { + "#": 573 + }, + "position": { + "#": 578 + }, + "force": { + "#": 579 + }, + "torque": 0, + "positionImpulse": { + "#": 580 + }, + "constraintImpulse": { + "#": 581 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 582 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 583 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 584 + }, + "bounds": { + "#": 586 + }, + "positionPrev": { + "#": 589 + }, + "anglePrev": 0, + "axes": { + "#": 590 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 571 + }, + "sleepCounter": 0 + }, + [ + { + "#": 571 + } + ], + [ + { + "#": 574 + }, + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + } + ], + { + "x": 560, + "y": 299, + "index": 0, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 600, + "y": 299, + "index": 1, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 600, + "y": 339, + "index": 2, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 560, + "y": 339, + "index": 3, + "body": { + "#": 571 + }, + "isInternal": false + }, + { + "x": 580, + "y": 319 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 585 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 587 + }, + "max": { + "#": 588 + } + }, + { + "x": 560, + "y": 299 + }, + { + "x": 600, + "y": 339 + }, + { + "x": 580, + "y": 319 + }, + [ + { + "#": 591 + }, + { + "#": 592 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 25, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 594 + }, + "angle": 0, + "vertices": { + "#": 595 + }, + "position": { + "#": 600 + }, + "force": { + "#": 601 + }, + "torque": 0, + "positionImpulse": { + "#": 602 + }, + "constraintImpulse": { + "#": 603 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 604 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 605 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 606 + }, + "bounds": { + "#": 608 + }, + "positionPrev": { + "#": 611 + }, + "anglePrev": 0, + "axes": { + "#": 612 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 593 + }, + "sleepCounter": 0 + }, + [ + { + "#": 593 + } + ], + [ + { + "#": 596 + }, + { + "#": 597 + }, + { + "#": 598 + }, + { + "#": 599 + } + ], + { + "x": 400, + "y": 339, + "index": 0, + "body": { + "#": 593 + }, + "isInternal": false + }, + { + "x": 440, + "y": 339, + "index": 1, + "body": { + "#": 593 + }, + "isInternal": false + }, + { + "x": 440, + "y": 379, + "index": 2, + "body": { + "#": 593 + }, + "isInternal": false + }, + { + "x": 400, + "y": 379, + "index": 3, + "body": { + "#": 593 + }, + "isInternal": false + }, + { + "x": 420, + "y": 359 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 607 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 609 + }, + "max": { + "#": 610 + } + }, + { + "x": 400, + "y": 339 + }, + { + "x": 440, + "y": 379 + }, + { + "x": 420, + "y": 359 + }, + [ + { + "#": 613 + }, + { + "#": 614 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 26, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 616 + }, + "angle": 0, + "vertices": { + "#": 617 + }, + "position": { + "#": 622 + }, + "force": { + "#": 623 + }, + "torque": 0, + "positionImpulse": { + "#": 624 + }, + "constraintImpulse": { + "#": 625 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 626 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 627 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 628 + }, + "bounds": { + "#": 630 + }, + "positionPrev": { + "#": 633 + }, + "anglePrev": 0, + "axes": { + "#": 634 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 615 + }, + "sleepCounter": 0 + }, + [ + { + "#": 615 + } + ], + [ + { + "#": 618 + }, + { + "#": 619 + }, + { + "#": 620 + }, + { + "#": 621 + } + ], + { + "x": 440, + "y": 339, + "index": 0, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 480, + "y": 339, + "index": 1, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 480, + "y": 379, + "index": 2, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 440, + "y": 379, + "index": 3, + "body": { + "#": 615 + }, + "isInternal": false + }, + { + "x": 460, + "y": 359 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 629 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 631 + }, + "max": { + "#": 632 + } + }, + { + "x": 440, + "y": 339 + }, + { + "x": 480, + "y": 379 + }, + { + "x": 460, + "y": 359 + }, + [ + { + "#": 635 + }, + { + "#": 636 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 27, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 638 + }, + "angle": 0, + "vertices": { + "#": 639 + }, + "position": { + "#": 644 + }, + "force": { + "#": 645 + }, + "torque": 0, + "positionImpulse": { + "#": 646 + }, + "constraintImpulse": { + "#": 647 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 648 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 649 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 650 + }, + "bounds": { + "#": 652 + }, + "positionPrev": { + "#": 655 + }, + "anglePrev": 0, + "axes": { + "#": 656 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 637 + }, + "sleepCounter": 0 + }, + [ + { + "#": 637 + } + ], + [ + { + "#": 640 + }, + { + "#": 641 + }, + { + "#": 642 + }, + { + "#": 643 + } + ], + { + "x": 480, + "y": 339, + "index": 0, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 520, + "y": 339, + "index": 1, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 520, + "y": 379, + "index": 2, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 480, + "y": 379, + "index": 3, + "body": { + "#": 637 + }, + "isInternal": false + }, + { + "x": 500, + "y": 359 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 651 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 653 + }, + "max": { + "#": 654 + } + }, + { + "x": 480, + "y": 339 + }, + { + "x": 520, + "y": 379 + }, + { + "x": 500, + "y": 359 + }, + [ + { + "#": 657 + }, + { + "#": 658 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 28, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 660 + }, + "angle": 0, + "vertices": { + "#": 661 + }, + "position": { + "#": 666 + }, + "force": { + "#": 667 + }, + "torque": 0, + "positionImpulse": { + "#": 668 + }, + "constraintImpulse": { + "#": 669 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 670 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 671 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 672 + }, + "bounds": { + "#": 674 + }, + "positionPrev": { + "#": 677 + }, + "anglePrev": 0, + "axes": { + "#": 678 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 659 + }, + "sleepCounter": 0 + }, + [ + { + "#": 659 + } + ], + [ + { + "#": 662 + }, + { + "#": 663 + }, + { + "#": 664 + }, + { + "#": 665 + } + ], + { + "x": 520, + "y": 339, + "index": 0, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 560, + "y": 339, + "index": 1, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 560, + "y": 379, + "index": 2, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 520, + "y": 379, + "index": 3, + "body": { + "#": 659 + }, + "isInternal": false + }, + { + "x": 540, + "y": 359 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 673 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 675 + }, + "max": { + "#": 676 + } + }, + { + "x": 520, + "y": 339 + }, + { + "x": 560, + "y": 379 + }, + { + "x": 540, + "y": 359 + }, + [ + { + "#": 679 + }, + { + "#": 680 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 29, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 682 + }, + "angle": 0, + "vertices": { + "#": 683 + }, + "position": { + "#": 688 + }, + "force": { + "#": 689 + }, + "torque": 0, + "positionImpulse": { + "#": 690 + }, + "constraintImpulse": { + "#": 691 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 692 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 693 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 694 + }, + "bounds": { + "#": 696 + }, + "positionPrev": { + "#": 699 + }, + "anglePrev": 0, + "axes": { + "#": 700 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 681 + }, + "sleepCounter": 0 + }, + [ + { + "#": 681 + } + ], + [ + { + "#": 684 + }, + { + "#": 685 + }, + { + "#": 686 + }, + { + "#": 687 + } + ], + { + "x": 560, + "y": 339, + "index": 0, + "body": { + "#": 681 + }, + "isInternal": false + }, + { + "x": 600, + "y": 339, + "index": 1, + "body": { + "#": 681 + }, + "isInternal": false + }, + { + "x": 600, + "y": 379, + "index": 2, + "body": { + "#": 681 + }, + "isInternal": false + }, + { + "x": 560, + "y": 379, + "index": 3, + "body": { + "#": 681 + }, + "isInternal": false + }, + { + "x": 580, + "y": 359 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 695 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 697 + }, + "max": { + "#": 698 + } + }, + { + "x": 560, + "y": 339 + }, + { + "x": 600, + "y": 379 + }, + { + "x": 580, + "y": 359 + }, + [ + { + "#": 701 + }, + { + "#": 702 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 30, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 704 + }, + "angle": 0, + "vertices": { + "#": 705 + }, + "position": { + "#": 710 + }, + "force": { + "#": 711 + }, + "torque": 0, + "positionImpulse": { + "#": 712 + }, + "constraintImpulse": { + "#": 713 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 714 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 715 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 716 + }, + "bounds": { + "#": 718 + }, + "positionPrev": { + "#": 721 + }, + "anglePrev": 0, + "axes": { + "#": 722 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 703 + }, + "sleepCounter": 0 + }, + [ + { + "#": 703 + } + ], + [ + { + "#": 706 + }, + { + "#": 707 + }, + { + "#": 708 + }, + { + "#": 709 + } + ], + { + "x": 400, + "y": 379, + "index": 0, + "body": { + "#": 703 + }, + "isInternal": false + }, + { + "x": 440, + "y": 379, + "index": 1, + "body": { + "#": 703 + }, + "isInternal": false + }, + { + "x": 440, + "y": 419, + "index": 2, + "body": { + "#": 703 + }, + "isInternal": false + }, + { + "x": 400, + "y": 419, + "index": 3, + "body": { + "#": 703 + }, + "isInternal": false + }, + { + "x": 420, + "y": 399 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 717 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 719 + }, + "max": { + "#": 720 + } + }, + { + "x": 400, + "y": 379 + }, + { + "x": 440, + "y": 419 + }, + { + "x": 420, + "y": 399 + }, + [ + { + "#": 723 + }, + { + "#": 724 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 31, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 726 + }, + "angle": 0, + "vertices": { + "#": 727 + }, + "position": { + "#": 732 + }, + "force": { + "#": 733 + }, + "torque": 0, + "positionImpulse": { + "#": 734 + }, + "constraintImpulse": { + "#": 735 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 736 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 737 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 738 + }, + "bounds": { + "#": 740 + }, + "positionPrev": { + "#": 743 + }, + "anglePrev": 0, + "axes": { + "#": 744 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 725 + }, + "sleepCounter": 0 + }, + [ + { + "#": 725 + } + ], + [ + { + "#": 728 + }, + { + "#": 729 + }, + { + "#": 730 + }, + { + "#": 731 + } + ], + { + "x": 440, + "y": 379, + "index": 0, + "body": { + "#": 725 + }, + "isInternal": false + }, + { + "x": 480, + "y": 379, + "index": 1, + "body": { + "#": 725 + }, + "isInternal": false + }, + { + "x": 480, + "y": 419, + "index": 2, + "body": { + "#": 725 + }, + "isInternal": false + }, + { + "x": 440, + "y": 419, + "index": 3, + "body": { + "#": 725 + }, + "isInternal": false + }, + { + "x": 460, + "y": 399 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 739 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 741 + }, + "max": { + "#": 742 + } + }, + { + "x": 440, + "y": 379 + }, + { + "x": 480, + "y": 419 + }, + { + "x": 460, + "y": 399 + }, + [ + { + "#": 745 + }, + { + "#": 746 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 32, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 748 + }, + "angle": 0, + "vertices": { + "#": 749 + }, + "position": { + "#": 754 + }, + "force": { + "#": 755 + }, + "torque": 0, + "positionImpulse": { + "#": 756 + }, + "constraintImpulse": { + "#": 757 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 758 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 759 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 760 + }, + "bounds": { + "#": 762 + }, + "positionPrev": { + "#": 765 + }, + "anglePrev": 0, + "axes": { + "#": 766 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 747 + }, + "sleepCounter": 0 + }, + [ + { + "#": 747 + } + ], + [ + { + "#": 750 + }, + { + "#": 751 + }, + { + "#": 752 + }, + { + "#": 753 + } + ], + { + "x": 480, + "y": 379, + "index": 0, + "body": { + "#": 747 + }, + "isInternal": false + }, + { + "x": 520, + "y": 379, + "index": 1, + "body": { + "#": 747 + }, + "isInternal": false + }, + { + "x": 520, + "y": 419, + "index": 2, + "body": { + "#": 747 + }, + "isInternal": false + }, + { + "x": 480, + "y": 419, + "index": 3, + "body": { + "#": 747 + }, + "isInternal": false + }, + { + "x": 500, + "y": 399 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 761 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 763 + }, + "max": { + "#": 764 + } + }, + { + "x": 480, + "y": 379 + }, + { + "x": 520, + "y": 419 + }, + { + "x": 500, + "y": 399 + }, + [ + { + "#": 767 + }, + { + "#": 768 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 33, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 770 + }, + "angle": 0, + "vertices": { + "#": 771 + }, + "position": { + "#": 776 + }, + "force": { + "#": 777 + }, + "torque": 0, + "positionImpulse": { + "#": 778 + }, + "constraintImpulse": { + "#": 779 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 780 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 781 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 782 + }, + "bounds": { + "#": 784 + }, + "positionPrev": { + "#": 787 + }, + "anglePrev": 0, + "axes": { + "#": 788 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 769 + }, + "sleepCounter": 0 + }, + [ + { + "#": 769 + } + ], + [ + { + "#": 772 + }, + { + "#": 773 + }, + { + "#": 774 + }, + { + "#": 775 + } + ], + { + "x": 520, + "y": 379, + "index": 0, + "body": { + "#": 769 + }, + "isInternal": false + }, + { + "x": 560, + "y": 379, + "index": 1, + "body": { + "#": 769 + }, + "isInternal": false + }, + { + "x": 560, + "y": 419, + "index": 2, + "body": { + "#": 769 + }, + "isInternal": false + }, + { + "x": 520, + "y": 419, + "index": 3, + "body": { + "#": 769 + }, + "isInternal": false + }, + { + "x": 540, + "y": 399 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 783 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 785 + }, + "max": { + "#": 786 + } + }, + { + "x": 520, + "y": 379 + }, + { + "x": 560, + "y": 419 + }, + { + "x": 540, + "y": 399 + }, + [ + { + "#": 789 + }, + { + "#": 790 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 34, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 792 + }, + "angle": 0, + "vertices": { + "#": 793 + }, + "position": { + "#": 798 + }, + "force": { + "#": 799 + }, + "torque": 0, + "positionImpulse": { + "#": 800 + }, + "constraintImpulse": { + "#": 801 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 802 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 803 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 804 + }, + "bounds": { + "#": 806 + }, + "positionPrev": { + "#": 809 + }, + "anglePrev": 0, + "axes": { + "#": 810 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 791 + }, + "sleepCounter": 0 + }, + [ + { + "#": 791 + } + ], + [ + { + "#": 794 + }, + { + "#": 795 + }, + { + "#": 796 + }, + { + "#": 797 + } + ], + { + "x": 560, + "y": 379, + "index": 0, + "body": { + "#": 791 + }, + "isInternal": false + }, + { + "x": 600, + "y": 379, + "index": 1, + "body": { + "#": 791 + }, + "isInternal": false + }, + { + "x": 600, + "y": 419, + "index": 2, + "body": { + "#": 791 + }, + "isInternal": false + }, + { + "x": 560, + "y": 419, + "index": 3, + "body": { + "#": 791 + }, + "isInternal": false + }, + { + "x": 580, + "y": 399 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 805 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 807 + }, + "max": { + "#": 808 + } + }, + { + "x": 560, + "y": 379 + }, + { + "x": 600, + "y": 419 + }, + { + "x": 580, + "y": 399 + }, + [ + { + "#": 811 + }, + { + "#": 812 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 35, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 814 + }, + "angle": 0, + "vertices": { + "#": 815 + }, + "position": { + "#": 820 + }, + "force": { + "#": 821 + }, + "torque": 0, + "positionImpulse": { + "#": 822 + }, + "constraintImpulse": { + "#": 823 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 824 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 825 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 826 + }, + "bounds": { + "#": 828 + }, + "positionPrev": { + "#": 831 + }, + "anglePrev": 0, + "axes": { + "#": 832 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 813 + }, + "sleepCounter": 0 + }, + [ + { + "#": 813 + } + ], + [ + { + "#": 816 + }, + { + "#": 817 + }, + { + "#": 818 + }, + { + "#": 819 + } + ], + { + "x": 400, + "y": 419, + "index": 0, + "body": { + "#": 813 + }, + "isInternal": false + }, + { + "x": 440, + "y": 419, + "index": 1, + "body": { + "#": 813 + }, + "isInternal": false + }, + { + "x": 440, + "y": 459, + "index": 2, + "body": { + "#": 813 + }, + "isInternal": false + }, + { + "x": 400, + "y": 459, + "index": 3, + "body": { + "#": 813 + }, + "isInternal": false + }, + { + "x": 420, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 827 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 829 + }, + "max": { + "#": 830 + } + }, + { + "x": 400, + "y": 419 + }, + { + "x": 440, + "y": 459 + }, + { + "x": 420, + "y": 439 + }, + [ + { + "#": 833 + }, + { + "#": 834 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 36, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 836 + }, + "angle": 0, + "vertices": { + "#": 837 + }, + "position": { + "#": 842 + }, + "force": { + "#": 843 + }, + "torque": 0, + "positionImpulse": { + "#": 844 + }, + "constraintImpulse": { + "#": 845 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 846 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 847 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 848 + }, + "bounds": { + "#": 850 + }, + "positionPrev": { + "#": 853 + }, + "anglePrev": 0, + "axes": { + "#": 854 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 835 + }, + "sleepCounter": 0 + }, + [ + { + "#": 835 + } + ], + [ + { + "#": 838 + }, + { + "#": 839 + }, + { + "#": 840 + }, + { + "#": 841 + } + ], + { + "x": 440, + "y": 419, + "index": 0, + "body": { + "#": 835 + }, + "isInternal": false + }, + { + "x": 480, + "y": 419, + "index": 1, + "body": { + "#": 835 + }, + "isInternal": false + }, + { + "x": 480, + "y": 459, + "index": 2, + "body": { + "#": 835 + }, + "isInternal": false + }, + { + "x": 440, + "y": 459, + "index": 3, + "body": { + "#": 835 + }, + "isInternal": false + }, + { + "x": 460, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 849 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 851 + }, + "max": { + "#": 852 + } + }, + { + "x": 440, + "y": 419 + }, + { + "x": 480, + "y": 459 + }, + { + "x": 460, + "y": 439 + }, + [ + { + "#": 855 + }, + { + "#": 856 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 37, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 858 + }, + "angle": 0, + "vertices": { + "#": 859 + }, + "position": { + "#": 864 + }, + "force": { + "#": 865 + }, + "torque": 0, + "positionImpulse": { + "#": 866 + }, + "constraintImpulse": { + "#": 867 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 868 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 869 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 870 + }, + "bounds": { + "#": 872 + }, + "positionPrev": { + "#": 875 + }, + "anglePrev": 0, + "axes": { + "#": 876 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 857 + }, + "sleepCounter": 0 + }, + [ + { + "#": 857 + } + ], + [ + { + "#": 860 + }, + { + "#": 861 + }, + { + "#": 862 + }, + { + "#": 863 + } + ], + { + "x": 480, + "y": 419, + "index": 0, + "body": { + "#": 857 + }, + "isInternal": false + }, + { + "x": 520, + "y": 419, + "index": 1, + "body": { + "#": 857 + }, + "isInternal": false + }, + { + "x": 520, + "y": 459, + "index": 2, + "body": { + "#": 857 + }, + "isInternal": false + }, + { + "x": 480, + "y": 459, + "index": 3, + "body": { + "#": 857 + }, + "isInternal": false + }, + { + "x": 500, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 871 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 873 + }, + "max": { + "#": 874 + } + }, + { + "x": 480, + "y": 419 + }, + { + "x": 520, + "y": 459 + }, + { + "x": 500, + "y": 439 + }, + [ + { + "#": 877 + }, + { + "#": 878 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 38, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 880 + }, + "angle": 0, + "vertices": { + "#": 881 + }, + "position": { + "#": 886 + }, + "force": { + "#": 887 + }, + "torque": 0, + "positionImpulse": { + "#": 888 + }, + "constraintImpulse": { + "#": 889 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 890 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 891 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 892 + }, + "bounds": { + "#": 894 + }, + "positionPrev": { + "#": 897 + }, + "anglePrev": 0, + "axes": { + "#": 898 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 879 + }, + "sleepCounter": 0 + }, + [ + { + "#": 879 + } + ], + [ + { + "#": 882 + }, + { + "#": 883 + }, + { + "#": 884 + }, + { + "#": 885 + } + ], + { + "x": 520, + "y": 419, + "index": 0, + "body": { + "#": 879 + }, + "isInternal": false + }, + { + "x": 560, + "y": 419, + "index": 1, + "body": { + "#": 879 + }, + "isInternal": false + }, + { + "x": 560, + "y": 459, + "index": 2, + "body": { + "#": 879 + }, + "isInternal": false + }, + { + "x": 520, + "y": 459, + "index": 3, + "body": { + "#": 879 + }, + "isInternal": false + }, + { + "x": 540, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 893 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 895 + }, + "max": { + "#": 896 + } + }, + { + "x": 520, + "y": 419 + }, + { + "x": 560, + "y": 459 + }, + { + "x": 540, + "y": 439 + }, + [ + { + "#": 899 + }, + { + "#": 900 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 39, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 902 + }, + "angle": 0, + "vertices": { + "#": 903 + }, + "position": { + "#": 908 + }, + "force": { + "#": 909 + }, + "torque": 0, + "positionImpulse": { + "#": 910 + }, + "constraintImpulse": { + "#": 911 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 912 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 913 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 914 + }, + "bounds": { + "#": 916 + }, + "positionPrev": { + "#": 919 + }, + "anglePrev": 0, + "axes": { + "#": 920 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 901 + }, + "sleepCounter": 0 + }, + [ + { + "#": 901 + } + ], + [ + { + "#": 904 + }, + { + "#": 905 + }, + { + "#": 906 + }, + { + "#": 907 + } + ], + { + "x": 560, + "y": 419, + "index": 0, + "body": { + "#": 901 + }, + "isInternal": false + }, + { + "x": 600, + "y": 419, + "index": 1, + "body": { + "#": 901 + }, + "isInternal": false + }, + { + "x": 600, + "y": 459, + "index": 2, + "body": { + "#": 901 + }, + "isInternal": false + }, + { + "x": 560, + "y": 459, + "index": 3, + "body": { + "#": 901 + }, + "isInternal": false + }, + { + "x": 580, + "y": 439 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 915 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 917 + }, + "max": { + "#": 918 + } + }, + { + "x": 560, + "y": 419 + }, + { + "x": 600, + "y": 459 + }, + { + "x": 580, + "y": 439 + }, + [ + { + "#": 921 + }, + { + "#": 922 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 40, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 924 + }, + "angle": 0, + "vertices": { + "#": 925 + }, + "position": { + "#": 930 + }, + "force": { + "#": 931 + }, + "torque": 0, + "positionImpulse": { + "#": 932 + }, + "constraintImpulse": { + "#": 933 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 934 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 935 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 936 + }, + "bounds": { + "#": 938 + }, + "positionPrev": { + "#": 941 + }, + "anglePrev": 0, + "axes": { + "#": 942 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 923 + }, + "sleepCounter": 0 + }, + [ + { + "#": 923 + } + ], + [ + { + "#": 926 + }, + { + "#": 927 + }, + { + "#": 928 + }, + { + "#": 929 + } + ], + { + "x": 400, + "y": 459, + "index": 0, + "body": { + "#": 923 + }, + "isInternal": false + }, + { + "x": 440, + "y": 459, + "index": 1, + "body": { + "#": 923 + }, + "isInternal": false + }, + { + "x": 440, + "y": 499, + "index": 2, + "body": { + "#": 923 + }, + "isInternal": false + }, + { + "x": 400, + "y": 499, + "index": 3, + "body": { + "#": 923 + }, + "isInternal": false + }, + { + "x": 420, + "y": 479 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 937 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 939 + }, + "max": { + "#": 940 + } + }, + { + "x": 400, + "y": 459 + }, + { + "x": 440, + "y": 499 + }, + { + "x": 420, + "y": 479 + }, + [ + { + "#": 943 + }, + { + "#": 944 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 41, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 946 + }, + "angle": 0, + "vertices": { + "#": 947 + }, + "position": { + "#": 952 + }, + "force": { + "#": 953 + }, + "torque": 0, + "positionImpulse": { + "#": 954 + }, + "constraintImpulse": { + "#": 955 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 956 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 957 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 958 + }, + "bounds": { + "#": 960 + }, + "positionPrev": { + "#": 963 + }, + "anglePrev": 0, + "axes": { + "#": 964 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 945 + }, + "sleepCounter": 0 + }, + [ + { + "#": 945 + } + ], + [ + { + "#": 948 + }, + { + "#": 949 + }, + { + "#": 950 + }, + { + "#": 951 + } + ], + { + "x": 440, + "y": 459, + "index": 0, + "body": { + "#": 945 + }, + "isInternal": false + }, + { + "x": 480, + "y": 459, + "index": 1, + "body": { + "#": 945 + }, + "isInternal": false + }, + { + "x": 480, + "y": 499, + "index": 2, + "body": { + "#": 945 + }, + "isInternal": false + }, + { + "x": 440, + "y": 499, + "index": 3, + "body": { + "#": 945 + }, + "isInternal": false + }, + { + "x": 460, + "y": 479 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 959 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 961 + }, + "max": { + "#": 962 + } + }, + { + "x": 440, + "y": 459 + }, + { + "x": 480, + "y": 499 + }, + { + "x": 460, + "y": 479 + }, + [ + { + "#": 965 + }, + { + "#": 966 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 42, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 968 + }, + "angle": 0, + "vertices": { + "#": 969 + }, + "position": { + "#": 974 + }, + "force": { + "#": 975 + }, + "torque": 0, + "positionImpulse": { + "#": 976 + }, + "constraintImpulse": { + "#": 977 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 978 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 979 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 980 + }, + "bounds": { + "#": 982 + }, + "positionPrev": { + "#": 985 + }, + "anglePrev": 0, + "axes": { + "#": 986 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 967 + }, + "sleepCounter": 0 + }, + [ + { + "#": 967 + } + ], + [ + { + "#": 970 + }, + { + "#": 971 + }, + { + "#": 972 + }, + { + "#": 973 + } + ], + { + "x": 480, + "y": 459, + "index": 0, + "body": { + "#": 967 + }, + "isInternal": false + }, + { + "x": 520, + "y": 459, + "index": 1, + "body": { + "#": 967 + }, + "isInternal": false + }, + { + "x": 520, + "y": 499, + "index": 2, + "body": { + "#": 967 + }, + "isInternal": false + }, + { + "x": 480, + "y": 499, + "index": 3, + "body": { + "#": 967 + }, + "isInternal": false + }, + { + "x": 500, + "y": 479 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 981 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 983 + }, + "max": { + "#": 984 + } + }, + { + "x": 480, + "y": 459 + }, + { + "x": 520, + "y": 499 + }, + { + "x": 500, + "y": 479 + }, + [ + { + "#": 987 + }, + { + "#": 988 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 43, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 990 + }, + "angle": 0, + "vertices": { + "#": 991 + }, + "position": { + "#": 996 + }, + "force": { + "#": 997 + }, + "torque": 0, + "positionImpulse": { + "#": 998 + }, + "constraintImpulse": { + "#": 999 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1000 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1001 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1002 + }, + "bounds": { + "#": 1004 + }, + "positionPrev": { + "#": 1007 + }, + "anglePrev": 0, + "axes": { + "#": 1008 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 989 + }, + "sleepCounter": 0 + }, + [ + { + "#": 989 + } + ], + [ + { + "#": 992 + }, + { + "#": 993 + }, + { + "#": 994 + }, + { + "#": 995 + } + ], + { + "x": 520, + "y": 459, + "index": 0, + "body": { + "#": 989 + }, + "isInternal": false + }, + { + "x": 560, + "y": 459, + "index": 1, + "body": { + "#": 989 + }, + "isInternal": false + }, + { + "x": 560, + "y": 499, + "index": 2, + "body": { + "#": 989 + }, + "isInternal": false + }, + { + "x": 520, + "y": 499, + "index": 3, + "body": { + "#": 989 + }, + "isInternal": false + }, + { + "x": 540, + "y": 479 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1003 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1005 + }, + "max": { + "#": 1006 + } + }, + { + "x": 520, + "y": 459 + }, + { + "x": 560, + "y": 499 + }, + { + "x": 540, + "y": 479 + }, + [ + { + "#": 1009 + }, + { + "#": 1010 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 44, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1012 + }, + "angle": 0, + "vertices": { + "#": 1013 + }, + "position": { + "#": 1018 + }, + "force": { + "#": 1019 + }, + "torque": 0, + "positionImpulse": { + "#": 1020 + }, + "constraintImpulse": { + "#": 1021 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1022 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1023 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1024 + }, + "bounds": { + "#": 1026 + }, + "positionPrev": { + "#": 1029 + }, + "anglePrev": 0, + "axes": { + "#": 1030 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1011 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1011 + } + ], + [ + { + "#": 1014 + }, + { + "#": 1015 + }, + { + "#": 1016 + }, + { + "#": 1017 + } + ], + { + "x": 560, + "y": 459, + "index": 0, + "body": { + "#": 1011 + }, + "isInternal": false + }, + { + "x": 600, + "y": 459, + "index": 1, + "body": { + "#": 1011 + }, + "isInternal": false + }, + { + "x": 600, + "y": 499, + "index": 2, + "body": { + "#": 1011 + }, + "isInternal": false + }, + { + "x": 560, + "y": 499, + "index": 3, + "body": { + "#": 1011 + }, + "isInternal": false + }, + { + "x": 580, + "y": 479 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1025 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1027 + }, + "max": { + "#": 1028 + } + }, + { + "x": 560, + "y": 459 + }, + { + "x": 600, + "y": 499 + }, + { + "x": 580, + "y": 479 + }, + [ + { + "#": 1031 + }, + { + "#": 1032 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 45, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1034 + }, + "angle": 0, + "vertices": { + "#": 1035 + }, + "position": { + "#": 1040 + }, + "force": { + "#": 1041 + }, + "torque": 0, + "positionImpulse": { + "#": 1042 + }, + "constraintImpulse": { + "#": 1043 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1044 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1045 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1046 + }, + "bounds": { + "#": 1048 + }, + "positionPrev": { + "#": 1051 + }, + "anglePrev": 0, + "axes": { + "#": 1052 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1033 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1033 + } + ], + [ + { + "#": 1036 + }, + { + "#": 1037 + }, + { + "#": 1038 + }, + { + "#": 1039 + } + ], + { + "x": 400, + "y": 499, + "index": 0, + "body": { + "#": 1033 + }, + "isInternal": false + }, + { + "x": 440, + "y": 499, + "index": 1, + "body": { + "#": 1033 + }, + "isInternal": false + }, + { + "x": 440, + "y": 539, + "index": 2, + "body": { + "#": 1033 + }, + "isInternal": false + }, + { + "x": 400, + "y": 539, + "index": 3, + "body": { + "#": 1033 + }, + "isInternal": false + }, + { + "x": 420, + "y": 519 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1047 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1049 + }, + "max": { + "#": 1050 + } + }, + { + "x": 400, + "y": 499 + }, + { + "x": 440, + "y": 539 + }, + { + "x": 420, + "y": 519 + }, + [ + { + "#": 1053 + }, + { + "#": 1054 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 46, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1056 + }, + "angle": 0, + "vertices": { + "#": 1057 + }, + "position": { + "#": 1062 + }, + "force": { + "#": 1063 + }, + "torque": 0, + "positionImpulse": { + "#": 1064 + }, + "constraintImpulse": { + "#": 1065 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1066 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1067 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1068 + }, + "bounds": { + "#": 1070 + }, + "positionPrev": { + "#": 1073 + }, + "anglePrev": 0, + "axes": { + "#": 1074 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1055 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1055 + } + ], + [ + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + }, + { + "#": 1061 + } + ], + { + "x": 440, + "y": 499, + "index": 0, + "body": { + "#": 1055 + }, + "isInternal": false + }, + { + "x": 480, + "y": 499, + "index": 1, + "body": { + "#": 1055 + }, + "isInternal": false + }, + { + "x": 480, + "y": 539, + "index": 2, + "body": { + "#": 1055 + }, + "isInternal": false + }, + { + "x": 440, + "y": 539, + "index": 3, + "body": { + "#": 1055 + }, + "isInternal": false + }, + { + "x": 460, + "y": 519 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1069 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1071 + }, + "max": { + "#": 1072 + } + }, + { + "x": 440, + "y": 499 + }, + { + "x": 480, + "y": 539 + }, + { + "x": 460, + "y": 519 + }, + [ + { + "#": 1075 + }, + { + "#": 1076 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 47, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1078 + }, + "angle": 0, + "vertices": { + "#": 1079 + }, + "position": { + "#": 1084 + }, + "force": { + "#": 1085 + }, + "torque": 0, + "positionImpulse": { + "#": 1086 + }, + "constraintImpulse": { + "#": 1087 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1088 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1089 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1090 + }, + "bounds": { + "#": 1092 + }, + "positionPrev": { + "#": 1095 + }, + "anglePrev": 0, + "axes": { + "#": 1096 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1077 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1077 + } + ], + [ + { + "#": 1080 + }, + { + "#": 1081 + }, + { + "#": 1082 + }, + { + "#": 1083 + } + ], + { + "x": 480, + "y": 499, + "index": 0, + "body": { + "#": 1077 + }, + "isInternal": false + }, + { + "x": 520, + "y": 499, + "index": 1, + "body": { + "#": 1077 + }, + "isInternal": false + }, + { + "x": 520, + "y": 539, + "index": 2, + "body": { + "#": 1077 + }, + "isInternal": false + }, + { + "x": 480, + "y": 539, + "index": 3, + "body": { + "#": 1077 + }, + "isInternal": false + }, + { + "x": 500, + "y": 519 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1091 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1093 + }, + "max": { + "#": 1094 + } + }, + { + "x": 480, + "y": 499 + }, + { + "x": 520, + "y": 539 + }, + { + "x": 500, + "y": 519 + }, + [ + { + "#": 1097 + }, + { + "#": 1098 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 48, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1100 + }, + "angle": 0, + "vertices": { + "#": 1101 + }, + "position": { + "#": 1106 + }, + "force": { + "#": 1107 + }, + "torque": 0, + "positionImpulse": { + "#": 1108 + }, + "constraintImpulse": { + "#": 1109 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1110 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1111 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1112 + }, + "bounds": { + "#": 1114 + }, + "positionPrev": { + "#": 1117 + }, + "anglePrev": 0, + "axes": { + "#": 1118 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1099 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1099 + } + ], + [ + { + "#": 1102 + }, + { + "#": 1103 + }, + { + "#": 1104 + }, + { + "#": 1105 + } + ], + { + "x": 520, + "y": 499, + "index": 0, + "body": { + "#": 1099 + }, + "isInternal": false + }, + { + "x": 560, + "y": 499, + "index": 1, + "body": { + "#": 1099 + }, + "isInternal": false + }, + { + "x": 560, + "y": 539, + "index": 2, + "body": { + "#": 1099 + }, + "isInternal": false + }, + { + "x": 520, + "y": 539, + "index": 3, + "body": { + "#": 1099 + }, + "isInternal": false + }, + { + "x": 540, + "y": 519 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1113 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1115 + }, + "max": { + "#": 1116 + } + }, + { + "x": 520, + "y": 499 + }, + { + "x": 560, + "y": 539 + }, + { + "x": 540, + "y": 519 + }, + [ + { + "#": 1119 + }, + { + "#": 1120 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 49, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1122 + }, + "angle": 0, + "vertices": { + "#": 1123 + }, + "position": { + "#": 1128 + }, + "force": { + "#": 1129 + }, + "torque": 0, + "positionImpulse": { + "#": 1130 + }, + "constraintImpulse": { + "#": 1131 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1132 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1133 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1134 + }, + "bounds": { + "#": 1136 + }, + "positionPrev": { + "#": 1139 + }, + "anglePrev": 0, + "axes": { + "#": 1140 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1121 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1121 + } + ], + [ + { + "#": 1124 + }, + { + "#": 1125 + }, + { + "#": 1126 + }, + { + "#": 1127 + } + ], + { + "x": 560, + "y": 499, + "index": 0, + "body": { + "#": 1121 + }, + "isInternal": false + }, + { + "x": 600, + "y": 499, + "index": 1, + "body": { + "#": 1121 + }, + "isInternal": false + }, + { + "x": 600, + "y": 539, + "index": 2, + "body": { + "#": 1121 + }, + "isInternal": false + }, + { + "x": 560, + "y": 539, + "index": 3, + "body": { + "#": 1121 + }, + "isInternal": false + }, + { + "x": 580, + "y": 519 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1135 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1137 + }, + "max": { + "#": 1138 + } + }, + { + "x": 560, + "y": 499 + }, + { + "x": 600, + "y": 539 + }, + { + "x": 580, + "y": 519 + }, + [ + { + "#": 1141 + }, + { + "#": 1142 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 50, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1144 + }, + "angle": 0, + "vertices": { + "#": 1145 + }, + "position": { + "#": 1150 + }, + "force": { + "#": 1151 + }, + "torque": 0, + "positionImpulse": { + "#": 1152 + }, + "constraintImpulse": { + "#": 1153 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1154 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1155 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1156 + }, + "bounds": { + "#": 1158 + }, + "positionPrev": { + "#": 1161 + }, + "anglePrev": 0, + "axes": { + "#": 1162 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1143 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1143 + } + ], + [ + { + "#": 1146 + }, + { + "#": 1147 + }, + { + "#": 1148 + }, + { + "#": 1149 + } + ], + { + "x": 400, + "y": 539, + "index": 0, + "body": { + "#": 1143 + }, + "isInternal": false + }, + { + "x": 440, + "y": 539, + "index": 1, + "body": { + "#": 1143 + }, + "isInternal": false + }, + { + "x": 440, + "y": 579, + "index": 2, + "body": { + "#": 1143 + }, + "isInternal": false + }, + { + "x": 400, + "y": 579, + "index": 3, + "body": { + "#": 1143 + }, + "isInternal": false + }, + { + "x": 420, + "y": 559 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1157 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1159 + }, + "max": { + "#": 1160 + } + }, + { + "x": 400, + "y": 539 + }, + { + "x": 440, + "y": 579 + }, + { + "x": 420, + "y": 559 + }, + [ + { + "#": 1163 + }, + { + "#": 1164 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 51, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1166 + }, + "angle": 0, + "vertices": { + "#": 1167 + }, + "position": { + "#": 1172 + }, + "force": { + "#": 1173 + }, + "torque": 0, + "positionImpulse": { + "#": 1174 + }, + "constraintImpulse": { + "#": 1175 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1176 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1177 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1178 + }, + "bounds": { + "#": 1180 + }, + "positionPrev": { + "#": 1183 + }, + "anglePrev": 0, + "axes": { + "#": 1184 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1165 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1165 + } + ], + [ + { + "#": 1168 + }, + { + "#": 1169 + }, + { + "#": 1170 + }, + { + "#": 1171 + } + ], + { + "x": 440, + "y": 539, + "index": 0, + "body": { + "#": 1165 + }, + "isInternal": false + }, + { + "x": 480, + "y": 539, + "index": 1, + "body": { + "#": 1165 + }, + "isInternal": false + }, + { + "x": 480, + "y": 579, + "index": 2, + "body": { + "#": 1165 + }, + "isInternal": false + }, + { + "x": 440, + "y": 579, + "index": 3, + "body": { + "#": 1165 + }, + "isInternal": false + }, + { + "x": 460, + "y": 559 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1179 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1181 + }, + "max": { + "#": 1182 + } + }, + { + "x": 440, + "y": 539 + }, + { + "x": 480, + "y": 579 + }, + { + "x": 460, + "y": 559 + }, + [ + { + "#": 1185 + }, + { + "#": 1186 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 52, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1188 + }, + "angle": 0, + "vertices": { + "#": 1189 + }, + "position": { + "#": 1194 + }, + "force": { + "#": 1195 + }, + "torque": 0, + "positionImpulse": { + "#": 1196 + }, + "constraintImpulse": { + "#": 1197 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1198 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1199 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1200 + }, + "bounds": { + "#": 1202 + }, + "positionPrev": { + "#": 1205 + }, + "anglePrev": 0, + "axes": { + "#": 1206 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1187 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1187 + } + ], + [ + { + "#": 1190 + }, + { + "#": 1191 + }, + { + "#": 1192 + }, + { + "#": 1193 + } + ], + { + "x": 480, + "y": 539, + "index": 0, + "body": { + "#": 1187 + }, + "isInternal": false + }, + { + "x": 520, + "y": 539, + "index": 1, + "body": { + "#": 1187 + }, + "isInternal": false + }, + { + "x": 520, + "y": 579, + "index": 2, + "body": { + "#": 1187 + }, + "isInternal": false + }, + { + "x": 480, + "y": 579, + "index": 3, + "body": { + "#": 1187 + }, + "isInternal": false + }, + { + "x": 500, + "y": 559 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1201 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1203 + }, + "max": { + "#": 1204 + } + }, + { + "x": 480, + "y": 539 + }, + { + "x": 520, + "y": 579 + }, + { + "x": 500, + "y": 559 + }, + [ + { + "#": 1207 + }, + { + "#": 1208 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 53, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1210 + }, + "angle": 0, + "vertices": { + "#": 1211 + }, + "position": { + "#": 1216 + }, + "force": { + "#": 1217 + }, + "torque": 0, + "positionImpulse": { + "#": 1218 + }, + "constraintImpulse": { + "#": 1219 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1220 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1221 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1222 + }, + "bounds": { + "#": 1224 + }, + "positionPrev": { + "#": 1227 + }, + "anglePrev": 0, + "axes": { + "#": 1228 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1209 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1209 + } + ], + [ + { + "#": 1212 + }, + { + "#": 1213 + }, + { + "#": 1214 + }, + { + "#": 1215 + } + ], + { + "x": 520, + "y": 539, + "index": 0, + "body": { + "#": 1209 + }, + "isInternal": false + }, + { + "x": 560, + "y": 539, + "index": 1, + "body": { + "#": 1209 + }, + "isInternal": false + }, + { + "x": 560, + "y": 579, + "index": 2, + "body": { + "#": 1209 + }, + "isInternal": false + }, + { + "x": 520, + "y": 579, + "index": 3, + "body": { + "#": 1209 + }, + "isInternal": false + }, + { + "x": 540, + "y": 559 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1223 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1225 + }, + "max": { + "#": 1226 + } + }, + { + "x": 520, + "y": 539 + }, + { + "x": 560, + "y": 579 + }, + { + "x": 540, + "y": 559 + }, + [ + { + "#": 1229 + }, + { + "#": 1230 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": 54, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1232 + }, + "angle": 0, + "vertices": { + "#": 1233 + }, + "position": { + "#": 1238 + }, + "force": { + "#": 1239 + }, + "torque": 0, + "positionImpulse": { + "#": 1240 + }, + "constraintImpulse": { + "#": 1241 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 1242 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1243 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1244 + }, + "bounds": { + "#": 1246 + }, + "positionPrev": { + "#": 1249 + }, + "anglePrev": 0, + "axes": { + "#": 1250 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1231 + }, + "sleepCounter": 0 + }, + [ + { + "#": 1231 + } + ], + [ + { + "#": 1234 + }, + { + "#": 1235 + }, + { + "#": 1236 + }, + { + "#": 1237 + } + ], + { + "x": 560, + "y": 539, + "index": 0, + "body": { + "#": 1231 + }, + "isInternal": false + }, + { + "x": 600, + "y": 539, + "index": 1, + "body": { + "#": 1231 + }, + "isInternal": false + }, + { + "x": 600, + "y": 579, + "index": 2, + "body": { + "#": 1231 + }, + "isInternal": false + }, + { + "x": 560, + "y": 579, + "index": 3, + "body": { + "#": 1231 + }, + "isInternal": false + }, + { + "x": 580, + "y": 559 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1245 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1247 + }, + "max": { + "#": 1248 + } + }, + { + "x": 560, + "y": 539 + }, + { + "x": 600, + "y": 579 + }, + { + "x": 580, + "y": 559 + }, + [ + { + "#": 1251 + }, + { + "#": 1252 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 1257 + }, + "max": { + "#": 1258 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file diff --git a/test/node/refs/wreckingBall/wreckingBall-10.json b/test/node/refs/wreckingBall/wreckingBall-10.json new file mode 100644 index 00000000..a71dccae --- /dev/null +++ b/test/node/refs/wreckingBall/wreckingBall-10.json @@ -0,0 +1,12142 @@ +[ + { + "id": 30, + "type": "composite", + "parent": null, + "isModified": false, + "bodies": { + "#": 1 + }, + "constraints": { + "#": 150 + }, + "composites": { + "#": 155 + }, + "label": "World", + "gravity": { + "#": 1310 + }, + "bounds": { + "#": 1311 + } + }, + [ + { + "#": 2 + }, + { + "#": 25 + }, + { + "#": 48 + }, + { + "#": 71 + }, + { + "#": 94 + } + ], + { + "id": 0, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 3 + }, + "angle": 0, + "vertices": { + "#": 4 + }, + "position": { + "#": 9 + }, + "force": { + "#": 10 + }, + "torque": 0, + "positionImpulse": { + "#": 11 + }, + "constraintImpulse": { + "#": 12 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 13 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 14 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 15 + }, + "bounds": { + "#": 17 + }, + "positionPrev": { + "#": 20 + }, + "anglePrev": 0, + "axes": { + "#": 21 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 2 + }, + "sleepCounter": 0, + "region": { + "#": 24 + } + }, + [ + { + "#": 2 + } + ], + [ + { + "#": 5 + }, + { + "#": 6 + }, + { + "#": 7 + }, + { + "#": 8 + } + ], + { + "x": -5.25, + "y": -30.25, + "index": 0, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": -30.25, + "index": 1, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 20.25, + "index": 2, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 20.25, + "index": 3, + "body": { + "#": 2 + }, + "isInternal": false + }, + { + "x": 400, + "y": -5 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 16 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 18 + }, + "max": { + "#": 19 + } + }, + { + "x": -5.25, + "y": -30.25 + }, + { + "x": 805.25, + "y": 20.25 + }, + { + "x": 400, + "y": -5 + }, + [ + { + "#": 22 + }, + { + "#": 23 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,-1,0", + "startCol": -1, + "endCol": 16, + "startRow": -1, + "endRow": 0 + }, + { + "id": 1, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 26 + }, + "angle": 0, + "vertices": { + "#": 27 + }, + "position": { + "#": 32 + }, + "force": { + "#": 33 + }, + "torque": 0, + "positionImpulse": { + "#": 34 + }, + "constraintImpulse": { + "#": 35 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 36 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 37 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 38 + }, + "bounds": { + "#": 40 + }, + "positionPrev": { + "#": 43 + }, + "anglePrev": 0, + "axes": { + "#": 44 + }, + "area": 40930.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 25 + }, + "sleepCounter": 0, + "region": { + "#": 47 + } + }, + [ + { + "#": 25 + } + ], + [ + { + "#": 28 + }, + { + "#": 29 + }, + { + "#": 30 + }, + { + "#": 31 + } + ], + { + "x": -5.25, + "y": 579.75, + "index": 0, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 579.75, + "index": 1, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 805.25, + "y": 630.25, + "index": 2, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": -5.25, + "y": 630.25, + "index": 3, + "body": { + "#": 25 + }, + "isInternal": false + }, + { + "x": 400, + "y": 605 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 39 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 41 + }, + "max": { + "#": 42 + } + }, + { + "x": -5.25, + "y": 579.75 + }, + { + "x": 805.25, + "y": 630.25 + }, + { + "x": 400, + "y": 605 + }, + [ + { + "#": 45 + }, + { + "#": 46 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,16,12,13", + "startCol": -1, + "endCol": 16, + "startRow": 12, + "endRow": 13 + }, + { + "id": 2, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 49 + }, + "angle": 0, + "vertices": { + "#": 50 + }, + "position": { + "#": 55 + }, + "force": { + "#": 56 + }, + "torque": 0, + "positionImpulse": { + "#": 57 + }, + "constraintImpulse": { + "#": 58 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 59 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 60 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 61 + }, + "bounds": { + "#": 63 + }, + "positionPrev": { + "#": 66 + }, + "anglePrev": 0, + "axes": { + "#": 67 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 48 + }, + "sleepCounter": 0, + "region": { + "#": 70 + } + }, + [ + { + "#": 48 + } + ], + [ + { + "#": 51 + }, + { + "#": 52 + }, + { + "#": 53 + }, + { + "#": 54 + } + ], + { + "x": 779.75, + "y": -5.25, + "index": 0, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": -5.25, + "index": 1, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 830.25, + "y": 605.25, + "index": 2, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 779.75, + "y": 605.25, + "index": 3, + "body": { + "#": 48 + }, + "isInternal": false + }, + { + "x": 805, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 62 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 64 + }, + "max": { + "#": 65 + } + }, + { + "x": 779.75, + "y": -5.25 + }, + { + "x": 830.25, + "y": 605.25 + }, + { + "x": 805, + "y": 300 + }, + [ + { + "#": 68 + }, + { + "#": 69 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "16,17,-1,12", + "startCol": 16, + "endCol": 17, + "startRow": -1, + "endRow": 12 + }, + { + "id": 3, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 72 + }, + "angle": 0, + "vertices": { + "#": 73 + }, + "position": { + "#": 78 + }, + "force": { + "#": 79 + }, + "torque": 0, + "positionImpulse": { + "#": 80 + }, + "constraintImpulse": { + "#": 81 + }, + "totalContacts": 0, + "speed": 0, + "angularSpeed": 0, + "velocity": { + "#": 82 + }, + "angularVelocity": 0, + "isStatic": true, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "restitution": 0, + "friction": 1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 83 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 84 + }, + "bounds": { + "#": 86 + }, + "positionPrev": { + "#": 89 + }, + "anglePrev": 0, + "axes": { + "#": 90 + }, + "area": 30830.25, + "mass": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseMass": 0, + "inertia": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "inverseInertia": 0, + "parent": { + "#": 71 + }, + "sleepCounter": 0, + "region": { + "#": 93 + } + }, + [ + { + "#": 71 + } + ], + [ + { + "#": 74 + }, + { + "#": 75 + }, + { + "#": 76 + }, + { + "#": 77 + } + ], + { + "x": -30.25, + "y": -5.25, + "index": 0, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": -5.25, + "index": 1, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": 20.25, + "y": 605.25, + "index": 2, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -30.25, + "y": 605.25, + "index": 3, + "body": { + "#": 71 + }, + "isInternal": false + }, + { + "x": -5, + "y": 300 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 85 + }, + "lineWidth": 1.5, + "fillStyle": "#eeeeee", + "strokeStyle": "#bbbbbb" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 87 + }, + "max": { + "#": 88 + } + }, + { + "x": -30.25, + "y": -5.25 + }, + { + "x": 20.25, + "y": 605.25 + }, + { + "x": -5, + "y": 300 + }, + [ + { + "#": 91 + }, + { + "#": 92 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "-1,0,-1,12", + "startCol": -1, + "endCol": 0, + "startRow": -1, + "endRow": 12 + }, + { + "id": 55, + "type": "body", + "label": "Circle Body", + "parts": { + "#": 95 + }, + "angle": 0, + "vertices": { + "#": 96 + }, + "position": { + "#": 123 + }, + "force": { + "#": 124 + }, + "torque": 0, + "positionImpulse": { + "#": 125 + }, + "constraintImpulse": { + "#": 126 + }, + "totalContacts": 0, + "speed": 1.64508, + "angularSpeed": 0, + "velocity": { + "#": 127 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.04, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.005, + "collisionFilter": { + "#": 128 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 129 + }, + "circleRadius": 50, + "bounds": { + "#": 131 + }, + "positionPrev": { + "#": 134 + }, + "anglePrev": 0, + "axes": { + "#": 135 + }, + "area": 7777.74467, + "mass": 311.10979, + "inverseMass": 0.00321, + "inertia": 1540478.93493, + "inverseInertia": 0, + "parent": { + "#": 94 + }, + "sleepCounter": 0, + "region": { + "#": 149 + } + }, + [ + { + "#": 94 + } + ], + [ + { + "#": 97 + }, + { + "#": 98 + }, + { + "#": 99 + }, + { + "#": 100 + }, + { + "#": 101 + }, + { + "#": 102 + }, + { + "#": 103 + }, + { + "#": 104 + }, + { + "#": 105 + }, + { + "#": 106 + }, + { + "#": 107 + }, + { + "#": 108 + }, + { + "#": 109 + }, + { + "#": 110 + }, + { + "#": 111 + }, + { + "#": 112 + }, + { + "#": 113 + }, + { + "#": 114 + }, + { + "#": 115 + }, + { + "#": 116 + }, + { + "#": 117 + }, + { + "#": 118 + }, + { + "#": 119 + }, + { + "#": 120 + }, + { + "#": 121 + }, + { + "#": 122 + } + ], + { + "x": 157.81201, + "y": 411.61326, + "index": 0, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 154.92801, + "y": 423.31626, + "index": 1, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 149.32601, + "y": 433.98926, + "index": 2, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 141.33301, + "y": 443.01226, + "index": 3, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 131.41301, + "y": 449.85926, + "index": 4, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 120.14301, + "y": 454.13326, + "index": 5, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 108.17701, + "y": 455.58626, + "index": 6, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 96.21101, + "y": 454.13326, + "index": 7, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 84.94101, + "y": 449.85926, + "index": 8, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 75.02101, + "y": 443.01226, + "index": 9, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 67.02801, + "y": 433.98926, + "index": 10, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 61.42601, + "y": 423.31626, + "index": 11, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 58.54201, + "y": 411.61326, + "index": 12, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 58.54201, + "y": 399.55926, + "index": 13, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 61.42601, + "y": 387.85626, + "index": 14, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 67.02801, + "y": 377.18326, + "index": 15, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 75.02101, + "y": 368.16026, + "index": 16, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 84.94101, + "y": 361.31326, + "index": 17, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 96.21101, + "y": 357.03926, + "index": 18, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 108.17701, + "y": 355.58626, + "index": 19, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 120.14301, + "y": 357.03926, + "index": 20, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 131.41301, + "y": 361.31326, + "index": 21, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 141.33301, + "y": 368.16026, + "index": 22, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 149.32601, + "y": 377.18326, + "index": 23, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 154.92801, + "y": 387.85626, + "index": 24, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 157.81201, + "y": 399.55926, + "index": 25, + "body": { + "#": 94 + }, + "isInternal": false + }, + { + "x": 108.17701, + "y": 405.58626 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 1.24185, + "y": 1.07894 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 130 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 132 + }, + "max": { + "#": 133 + } + }, + { + "x": 58.54201, + "y": 355.58626 + }, + { + "x": 157.81201, + "y": 455.58626 + }, + { + "x": 106.80323, + "y": 404.71751 + }, + [ + { + "#": 136 + }, + { + "#": 137 + }, + { + "#": 138 + }, + { + "#": 139 + }, + { + "#": 140 + }, + { + "#": 141 + }, + { + "#": 142 + }, + { + "#": 143 + }, + { + "#": 144 + }, + { + "#": 145 + }, + { + "#": 146 + }, + { + "#": 147 + }, + { + "#": 148 + } + ], + { + "x": -0.97095, + "y": -0.23927 + }, + { + "x": -0.88544, + "y": -0.46475 + }, + { + "x": -0.74854, + "y": -0.66309 + }, + { + "x": -0.56805, + "y": -0.82299 + }, + { + "x": -0.35459, + "y": -0.93502 + }, + { + "x": -0.12054, + "y": -0.99271 + }, + { + "x": 0.12054, + "y": -0.99271 + }, + { + "x": 0.35459, + "y": -0.93502 + }, + { + "x": 0.56805, + "y": -0.82299 + }, + { + "x": 0.74854, + "y": -0.66309 + }, + { + "x": 0.88544, + "y": -0.46475 + }, + { + "x": 0.97095, + "y": -0.23927 + }, + { + "x": 1, + "y": 0 + }, + { + "id": "1,3,7,9", + "startCol": 1, + "endCol": 3, + "startRow": 7, + "endRow": 9 + }, + [ + { + "#": 151 + } + ], + { + "pointA": { + "#": 152 + }, + "bodyB": { + "#": 94 + }, + "pointB": { + "#": 153 + }, + "length": 360.55513, + "render": { + "#": 154 + }, + "id": 56, + "label": "Constraint", + "type": "constraint", + "stiffness": 1, + "angularStiffness": 0, + "angleA": { + "#": -1 + }, + "angleB": 0 + }, + { + "x": 300, + "y": 100 + }, + { + "x": 0, + "y": 0 + }, + { + "visible": true, + "lineWidth": 2, + "strokeStyle": "#666" + }, + [ + { + "#": 156 + } + ], + { + "id": 4, + "type": "composite", + "parent": { + "#": 0 + }, + "isModified": false, + "bodies": { + "#": 157 + }, + "constraints": { + "#": 1308 + }, + "composites": { + "#": 1309 + }, + "label": "Stack" + }, + [ + { + "#": 158 + }, + { + "#": 181 + }, + { + "#": 204 + }, + { + "#": 227 + }, + { + "#": 250 + }, + { + "#": 273 + }, + { + "#": 296 + }, + { + "#": 319 + }, + { + "#": 342 + }, + { + "#": 365 + }, + { + "#": 388 + }, + { + "#": 411 + }, + { + "#": 434 + }, + { + "#": 457 + }, + { + "#": 480 + }, + { + "#": 503 + }, + { + "#": 526 + }, + { + "#": 549 + }, + { + "#": 572 + }, + { + "#": 595 + }, + { + "#": 618 + }, + { + "#": 641 + }, + { + "#": 664 + }, + { + "#": 687 + }, + { + "#": 710 + }, + { + "#": 733 + }, + { + "#": 756 + }, + { + "#": 779 + }, + { + "#": 802 + }, + { + "#": 825 + }, + { + "#": 848 + }, + { + "#": 871 + }, + { + "#": 894 + }, + { + "#": 917 + }, + { + "#": 940 + }, + { + "#": 963 + }, + { + "#": 986 + }, + { + "#": 1009 + }, + { + "#": 1032 + }, + { + "#": 1055 + }, + { + "#": 1078 + }, + { + "#": 1101 + }, + { + "#": 1124 + }, + { + "#": 1147 + }, + { + "#": 1170 + }, + { + "#": 1193 + }, + { + "#": 1216 + }, + { + "#": 1239 + }, + { + "#": 1262 + }, + { + "#": 1285 + } + ], + { + "id": 5, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 159 + }, + "angle": 0, + "vertices": { + "#": 160 + }, + "position": { + "#": 165 + }, + "force": { + "#": 166 + }, + "torque": 0, + "positionImpulse": { + "#": 167 + }, + "constraintImpulse": { + "#": 168 + }, + "totalContacts": 0, + "speed": 1.77615, + "angularSpeed": 0, + "velocity": { + "#": 169 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 170 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 171 + }, + "bounds": { + "#": 173 + }, + "positionPrev": { + "#": 176 + }, + "anglePrev": 0, + "axes": { + "#": 177 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 158 + }, + "sleepCounter": 0, + "region": { + "#": 180 + } + }, + [ + { + "#": 158 + } + ], + [ + { + "#": 161 + }, + { + "#": 162 + }, + { + "#": 163 + }, + { + "#": 164 + } + ], + { + "x": 400, + "y": 193.22383, + "index": 0, + "body": { + "#": 158 + }, + "isInternal": false + }, + { + "x": 440, + "y": 193.22383, + "index": 1, + "body": { + "#": 158 + }, + "isInternal": false + }, + { + "x": 440, + "y": 233.22383, + "index": 2, + "body": { + "#": 158 + }, + "isInternal": false + }, + { + "x": 400, + "y": 233.22383, + "index": 3, + "body": { + "#": 158 + }, + "isInternal": false + }, + { + "x": 420, + "y": 213.22383 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.15098 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 172 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 174 + }, + "max": { + "#": 175 + } + }, + { + "x": 400, + "y": 193.22383 + }, + { + "x": 440, + "y": 234.99998 + }, + { + "x": 420, + "y": 212.07774 + }, + [ + { + "#": 178 + }, + { + "#": 179 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,4,4", + "startCol": 8, + "endCol": 9, + "startRow": 4, + "endRow": 4 + }, + { + "id": 6, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 182 + }, + "angle": 0, + "vertices": { + "#": 183 + }, + "position": { + "#": 188 + }, + "force": { + "#": 189 + }, + "torque": 0, + "positionImpulse": { + "#": 190 + }, + "constraintImpulse": { + "#": 191 + }, + "totalContacts": 0, + "speed": 1.77615, + "angularSpeed": 0, + "velocity": { + "#": 192 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 193 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 194 + }, + "bounds": { + "#": 196 + }, + "positionPrev": { + "#": 199 + }, + "anglePrev": 0, + "axes": { + "#": 200 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 181 + }, + "sleepCounter": 0, + "region": { + "#": 203 + } + }, + [ + { + "#": 181 + } + ], + [ + { + "#": 184 + }, + { + "#": 185 + }, + { + "#": 186 + }, + { + "#": 187 + } + ], + { + "x": 440, + "y": 193.22383, + "index": 0, + "body": { + "#": 181 + }, + "isInternal": false + }, + { + "x": 480, + "y": 193.22383, + "index": 1, + "body": { + "#": 181 + }, + "isInternal": false + }, + { + "x": 480, + "y": 233.22383, + "index": 2, + "body": { + "#": 181 + }, + "isInternal": false + }, + { + "x": 440, + "y": 233.22383, + "index": 3, + "body": { + "#": 181 + }, + "isInternal": false + }, + { + "x": 460, + "y": 213.22383 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.15098 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 195 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 197 + }, + "max": { + "#": 198 + } + }, + { + "x": 440, + "y": 193.22383 + }, + { + "x": 480, + "y": 234.99998 + }, + { + "x": 460, + "y": 212.07774 + }, + [ + { + "#": 201 + }, + { + "#": 202 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,4,4", + "startCol": 9, + "endCol": 10, + "startRow": 4, + "endRow": 4 + }, + { + "id": 7, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 205 + }, + "angle": 0, + "vertices": { + "#": 206 + }, + "position": { + "#": 211 + }, + "force": { + "#": 212 + }, + "torque": 0, + "positionImpulse": { + "#": 213 + }, + "constraintImpulse": { + "#": 214 + }, + "totalContacts": 0, + "speed": 1.77615, + "angularSpeed": 0, + "velocity": { + "#": 215 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 216 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 217 + }, + "bounds": { + "#": 219 + }, + "positionPrev": { + "#": 222 + }, + "anglePrev": 0, + "axes": { + "#": 223 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 204 + }, + "sleepCounter": 0, + "region": { + "#": 226 + } + }, + [ + { + "#": 204 + } + ], + [ + { + "#": 207 + }, + { + "#": 208 + }, + { + "#": 209 + }, + { + "#": 210 + } + ], + { + "x": 480, + "y": 193.22383, + "index": 0, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 520, + "y": 193.22383, + "index": 1, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 520, + "y": 233.22383, + "index": 2, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 480, + "y": 233.22383, + "index": 3, + "body": { + "#": 204 + }, + "isInternal": false + }, + { + "x": 500, + "y": 213.22383 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.15098 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 218 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 220 + }, + "max": { + "#": 221 + } + }, + { + "x": 480, + "y": 193.22383 + }, + { + "x": 520, + "y": 234.99998 + }, + { + "x": 500, + "y": 212.07774 + }, + [ + { + "#": 224 + }, + { + "#": 225 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,4,4", + "startCol": 10, + "endCol": 10, + "startRow": 4, + "endRow": 4 + }, + { + "id": 8, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 228 + }, + "angle": 0, + "vertices": { + "#": 229 + }, + "position": { + "#": 234 + }, + "force": { + "#": 235 + }, + "torque": 0, + "positionImpulse": { + "#": 236 + }, + "constraintImpulse": { + "#": 237 + }, + "totalContacts": 0, + "speed": 1.77615, + "angularSpeed": 0, + "velocity": { + "#": 238 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 239 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 240 + }, + "bounds": { + "#": 242 + }, + "positionPrev": { + "#": 245 + }, + "anglePrev": 0, + "axes": { + "#": 246 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 227 + }, + "sleepCounter": 0, + "region": { + "#": 249 + } + }, + [ + { + "#": 227 + } + ], + [ + { + "#": 230 + }, + { + "#": 231 + }, + { + "#": 232 + }, + { + "#": 233 + } + ], + { + "x": 520, + "y": 193.22383, + "index": 0, + "body": { + "#": 227 + }, + "isInternal": false + }, + { + "x": 560, + "y": 193.22383, + "index": 1, + "body": { + "#": 227 + }, + "isInternal": false + }, + { + "x": 560, + "y": 233.22383, + "index": 2, + "body": { + "#": 227 + }, + "isInternal": false + }, + { + "x": 520, + "y": 233.22383, + "index": 3, + "body": { + "#": 227 + }, + "isInternal": false + }, + { + "x": 540, + "y": 213.22383 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.15098 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 241 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 243 + }, + "max": { + "#": 244 + } + }, + { + "x": 520, + "y": 193.22383 + }, + { + "x": 560, + "y": 234.99998 + }, + { + "x": 540, + "y": 212.07774 + }, + [ + { + "#": 247 + }, + { + "#": 248 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,4,4", + "startCol": 10, + "endCol": 11, + "startRow": 4, + "endRow": 4 + }, + { + "id": 9, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 251 + }, + "angle": 0, + "vertices": { + "#": 252 + }, + "position": { + "#": 257 + }, + "force": { + "#": 258 + }, + "torque": 0, + "positionImpulse": { + "#": 259 + }, + "constraintImpulse": { + "#": 260 + }, + "totalContacts": 0, + "speed": 1.77615, + "angularSpeed": 0, + "velocity": { + "#": 261 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 262 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 263 + }, + "bounds": { + "#": 265 + }, + "positionPrev": { + "#": 268 + }, + "anglePrev": 0, + "axes": { + "#": 269 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 250 + }, + "sleepCounter": 0, + "region": { + "#": 272 + } + }, + [ + { + "#": 250 + } + ], + [ + { + "#": 253 + }, + { + "#": 254 + }, + { + "#": 255 + }, + { + "#": 256 + } + ], + { + "x": 560, + "y": 193.22383, + "index": 0, + "body": { + "#": 250 + }, + "isInternal": false + }, + { + "x": 600, + "y": 193.22383, + "index": 1, + "body": { + "#": 250 + }, + "isInternal": false + }, + { + "x": 600, + "y": 233.22383, + "index": 2, + "body": { + "#": 250 + }, + "isInternal": false + }, + { + "x": 560, + "y": 233.22383, + "index": 3, + "body": { + "#": 250 + }, + "isInternal": false + }, + { + "x": 580, + "y": 213.22383 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.15098 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 264 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 266 + }, + "max": { + "#": 267 + } + }, + { + "x": 560, + "y": 193.22383 + }, + { + "x": 600, + "y": 234.99998 + }, + { + "x": 580, + "y": 212.07774 + }, + [ + { + "#": 270 + }, + { + "#": 271 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,4,4", + "startCol": 11, + "endCol": 12, + "startRow": 4, + "endRow": 4 + }, + { + "id": 10, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 274 + }, + "angle": 0, + "vertices": { + "#": 275 + }, + "position": { + "#": 280 + }, + "force": { + "#": 281 + }, + "torque": 0, + "positionImpulse": { + "#": 282 + }, + "constraintImpulse": { + "#": 283 + }, + "totalContacts": 0, + "speed": 1.75475, + "angularSpeed": 0, + "velocity": { + "#": 284 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 285 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 286 + }, + "bounds": { + "#": 288 + }, + "positionPrev": { + "#": 291 + }, + "anglePrev": 0, + "axes": { + "#": 292 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 273 + }, + "sleepCounter": 0, + "region": { + "#": 295 + } + }, + [ + { + "#": 273 + } + ], + [ + { + "#": 276 + }, + { + "#": 277 + }, + { + "#": 278 + }, + { + "#": 279 + } + ], + { + "x": 400, + "y": 232.97538, + "index": 0, + "body": { + "#": 273 + }, + "isInternal": false + }, + { + "x": 440, + "y": 232.97538, + "index": 1, + "body": { + "#": 273 + }, + "isInternal": false + }, + { + "x": 440, + "y": 272.97538, + "index": 2, + "body": { + "#": 273 + }, + "isInternal": false + }, + { + "x": 400, + "y": 272.97538, + "index": 3, + "body": { + "#": 273 + }, + "isInternal": false + }, + { + "x": 420, + "y": 252.97538 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.13753 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 287 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 289 + }, + "max": { + "#": 290 + } + }, + { + "x": 400, + "y": 232.97538 + }, + { + "x": 440, + "y": 274.73013 + }, + { + "x": 420, + "y": 251.83296 + }, + [ + { + "#": 293 + }, + { + "#": 294 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,4,5", + "startCol": 8, + "endCol": 9, + "startRow": 4, + "endRow": 5 + }, + { + "id": 11, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 297 + }, + "angle": 0, + "vertices": { + "#": 298 + }, + "position": { + "#": 303 + }, + "force": { + "#": 304 + }, + "torque": 0, + "positionImpulse": { + "#": 305 + }, + "constraintImpulse": { + "#": 306 + }, + "totalContacts": 0, + "speed": 1.75475, + "angularSpeed": 0, + "velocity": { + "#": 307 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 308 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 309 + }, + "bounds": { + "#": 311 + }, + "positionPrev": { + "#": 314 + }, + "anglePrev": 0, + "axes": { + "#": 315 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 296 + }, + "sleepCounter": 0, + "region": { + "#": 318 + } + }, + [ + { + "#": 296 + } + ], + [ + { + "#": 299 + }, + { + "#": 300 + }, + { + "#": 301 + }, + { + "#": 302 + } + ], + { + "x": 440, + "y": 232.97538, + "index": 0, + "body": { + "#": 296 + }, + "isInternal": false + }, + { + "x": 480, + "y": 232.97538, + "index": 1, + "body": { + "#": 296 + }, + "isInternal": false + }, + { + "x": 480, + "y": 272.97538, + "index": 2, + "body": { + "#": 296 + }, + "isInternal": false + }, + { + "x": 440, + "y": 272.97538, + "index": 3, + "body": { + "#": 296 + }, + "isInternal": false + }, + { + "x": 460, + "y": 252.97538 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.13753 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 310 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 312 + }, + "max": { + "#": 313 + } + }, + { + "x": 440, + "y": 232.97538 + }, + { + "x": 480, + "y": 274.73013 + }, + { + "x": 460, + "y": 251.83296 + }, + [ + { + "#": 316 + }, + { + "#": 317 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,4,5", + "startCol": 9, + "endCol": 10, + "startRow": 4, + "endRow": 5 + }, + { + "id": 12, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 320 + }, + "angle": 0, + "vertices": { + "#": 321 + }, + "position": { + "#": 326 + }, + "force": { + "#": 327 + }, + "torque": 0, + "positionImpulse": { + "#": 328 + }, + "constraintImpulse": { + "#": 329 + }, + "totalContacts": 0, + "speed": 1.75475, + "angularSpeed": 0, + "velocity": { + "#": 330 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 331 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 332 + }, + "bounds": { + "#": 334 + }, + "positionPrev": { + "#": 337 + }, + "anglePrev": 0, + "axes": { + "#": 338 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 319 + }, + "sleepCounter": 0, + "region": { + "#": 341 + } + }, + [ + { + "#": 319 + } + ], + [ + { + "#": 322 + }, + { + "#": 323 + }, + { + "#": 324 + }, + { + "#": 325 + } + ], + { + "x": 480, + "y": 232.97538, + "index": 0, + "body": { + "#": 319 + }, + "isInternal": false + }, + { + "x": 520, + "y": 232.97538, + "index": 1, + "body": { + "#": 319 + }, + "isInternal": false + }, + { + "x": 520, + "y": 272.97538, + "index": 2, + "body": { + "#": 319 + }, + "isInternal": false + }, + { + "x": 480, + "y": 272.97538, + "index": 3, + "body": { + "#": 319 + }, + "isInternal": false + }, + { + "x": 500, + "y": 252.97538 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.13753 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 333 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 335 + }, + "max": { + "#": 336 + } + }, + { + "x": 480, + "y": 232.97538 + }, + { + "x": 520, + "y": 274.73013 + }, + { + "x": 500, + "y": 251.83296 + }, + [ + { + "#": 339 + }, + { + "#": 340 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,4,5", + "startCol": 10, + "endCol": 10, + "startRow": 4, + "endRow": 5 + }, + { + "id": 13, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 343 + }, + "angle": 0, + "vertices": { + "#": 344 + }, + "position": { + "#": 349 + }, + "force": { + "#": 350 + }, + "torque": 0, + "positionImpulse": { + "#": 351 + }, + "constraintImpulse": { + "#": 352 + }, + "totalContacts": 0, + "speed": 1.75475, + "angularSpeed": 0, + "velocity": { + "#": 353 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 354 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 355 + }, + "bounds": { + "#": 357 + }, + "positionPrev": { + "#": 360 + }, + "anglePrev": 0, + "axes": { + "#": 361 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 342 + }, + "sleepCounter": 0, + "region": { + "#": 364 + } + }, + [ + { + "#": 342 + } + ], + [ + { + "#": 345 + }, + { + "#": 346 + }, + { + "#": 347 + }, + { + "#": 348 + } + ], + { + "x": 520, + "y": 232.97538, + "index": 0, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 560, + "y": 232.97538, + "index": 1, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 560, + "y": 272.97538, + "index": 2, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 520, + "y": 272.97538, + "index": 3, + "body": { + "#": 342 + }, + "isInternal": false + }, + { + "x": 540, + "y": 252.97538 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.13753 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 356 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 358 + }, + "max": { + "#": 359 + } + }, + { + "x": 520, + "y": 232.97538 + }, + { + "x": 560, + "y": 274.73013 + }, + { + "x": 540, + "y": 251.83296 + }, + [ + { + "#": 362 + }, + { + "#": 363 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,4,5", + "startCol": 10, + "endCol": 11, + "startRow": 4, + "endRow": 5 + }, + { + "id": 14, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 366 + }, + "angle": 0, + "vertices": { + "#": 367 + }, + "position": { + "#": 372 + }, + "force": { + "#": 373 + }, + "torque": 0, + "positionImpulse": { + "#": 374 + }, + "constraintImpulse": { + "#": 375 + }, + "totalContacts": 0, + "speed": 1.75475, + "angularSpeed": 0, + "velocity": { + "#": 376 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 377 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 378 + }, + "bounds": { + "#": 380 + }, + "positionPrev": { + "#": 383 + }, + "anglePrev": 0, + "axes": { + "#": 384 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 365 + }, + "sleepCounter": 0, + "region": { + "#": 387 + } + }, + [ + { + "#": 365 + } + ], + [ + { + "#": 368 + }, + { + "#": 369 + }, + { + "#": 370 + }, + { + "#": 371 + } + ], + { + "x": 560, + "y": 232.97538, + "index": 0, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 600, + "y": 232.97538, + "index": 1, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 600, + "y": 272.97538, + "index": 2, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 560, + "y": 272.97538, + "index": 3, + "body": { + "#": 365 + }, + "isInternal": false + }, + { + "x": 580, + "y": 252.97538 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.13753 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 379 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 381 + }, + "max": { + "#": 382 + } + }, + { + "x": 560, + "y": 232.97538 + }, + { + "x": 600, + "y": 274.73013 + }, + { + "x": 580, + "y": 251.83296 + }, + [ + { + "#": 385 + }, + { + "#": 386 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,4,5", + "startCol": 11, + "endCol": 12, + "startRow": 4, + "endRow": 5 + }, + { + "id": 15, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 389 + }, + "angle": 0, + "vertices": { + "#": 390 + }, + "position": { + "#": 395 + }, + "force": { + "#": 396 + }, + "torque": 0, + "positionImpulse": { + "#": 397 + }, + "constraintImpulse": { + "#": 398 + }, + "totalContacts": 0, + "speed": 1.61403, + "angularSpeed": 0, + "velocity": { + "#": 399 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 400 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 401 + }, + "bounds": { + "#": 403 + }, + "positionPrev": { + "#": 406 + }, + "anglePrev": 0, + "axes": { + "#": 407 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 388 + }, + "sleepCounter": 0, + "region": { + "#": 410 + } + }, + [ + { + "#": 388 + } + ], + [ + { + "#": 391 + }, + { + "#": 392 + }, + { + "#": 393 + }, + { + "#": 394 + } + ], + { + "x": 400, + "y": 272.3492, + "index": 0, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 440, + "y": 272.3492, + "index": 1, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 440, + "y": 312.3492, + "index": 2, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 400, + "y": 312.3492, + "index": 3, + "body": { + "#": 388 + }, + "isInternal": false + }, + { + "x": 420, + "y": 292.3492 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.12878 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 402 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 404 + }, + "max": { + "#": 405 + } + }, + { + "x": 400, + "y": 272.3492 + }, + { + "x": 440, + "y": 313.96323 + }, + { + "x": 420, + "y": 291.24718 + }, + [ + { + "#": 408 + }, + { + "#": 409 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,5,6", + "startCol": 8, + "endCol": 9, + "startRow": 5, + "endRow": 6 + }, + { + "id": 16, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 412 + }, + "angle": 0, + "vertices": { + "#": 413 + }, + "position": { + "#": 418 + }, + "force": { + "#": 419 + }, + "torque": 0, + "positionImpulse": { + "#": 420 + }, + "constraintImpulse": { + "#": 421 + }, + "totalContacts": 0, + "speed": 1.61403, + "angularSpeed": 0, + "velocity": { + "#": 422 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 423 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 424 + }, + "bounds": { + "#": 426 + }, + "positionPrev": { + "#": 429 + }, + "anglePrev": 0, + "axes": { + "#": 430 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 411 + }, + "sleepCounter": 0, + "region": { + "#": 433 + } + }, + [ + { + "#": 411 + } + ], + [ + { + "#": 414 + }, + { + "#": 415 + }, + { + "#": 416 + }, + { + "#": 417 + } + ], + { + "x": 440, + "y": 272.3492, + "index": 0, + "body": { + "#": 411 + }, + "isInternal": false + }, + { + "x": 480, + "y": 272.3492, + "index": 1, + "body": { + "#": 411 + }, + "isInternal": false + }, + { + "x": 480, + "y": 312.3492, + "index": 2, + "body": { + "#": 411 + }, + "isInternal": false + }, + { + "x": 440, + "y": 312.3492, + "index": 3, + "body": { + "#": 411 + }, + "isInternal": false + }, + { + "x": 460, + "y": 292.3492 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.12878 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 425 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 427 + }, + "max": { + "#": 428 + } + }, + { + "x": 440, + "y": 272.3492 + }, + { + "x": 480, + "y": 313.96323 + }, + { + "x": 460, + "y": 291.24718 + }, + [ + { + "#": 431 + }, + { + "#": 432 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,5,6", + "startCol": 9, + "endCol": 10, + "startRow": 5, + "endRow": 6 + }, + { + "id": 17, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 435 + }, + "angle": 0, + "vertices": { + "#": 436 + }, + "position": { + "#": 441 + }, + "force": { + "#": 442 + }, + "torque": 0, + "positionImpulse": { + "#": 443 + }, + "constraintImpulse": { + "#": 444 + }, + "totalContacts": 0, + "speed": 1.61403, + "angularSpeed": 0, + "velocity": { + "#": 445 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 446 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 447 + }, + "bounds": { + "#": 449 + }, + "positionPrev": { + "#": 452 + }, + "anglePrev": 0, + "axes": { + "#": 453 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 434 + }, + "sleepCounter": 0, + "region": { + "#": 456 + } + }, + [ + { + "#": 434 + } + ], + [ + { + "#": 437 + }, + { + "#": 438 + }, + { + "#": 439 + }, + { + "#": 440 + } + ], + { + "x": 480, + "y": 272.3492, + "index": 0, + "body": { + "#": 434 + }, + "isInternal": false + }, + { + "x": 520, + "y": 272.3492, + "index": 1, + "body": { + "#": 434 + }, + "isInternal": false + }, + { + "x": 520, + "y": 312.3492, + "index": 2, + "body": { + "#": 434 + }, + "isInternal": false + }, + { + "x": 480, + "y": 312.3492, + "index": 3, + "body": { + "#": 434 + }, + "isInternal": false + }, + { + "x": 500, + "y": 292.3492 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.12878 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 448 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 450 + }, + "max": { + "#": 451 + } + }, + { + "x": 480, + "y": 272.3492 + }, + { + "x": 520, + "y": 313.96323 + }, + { + "x": 500, + "y": 291.24718 + }, + [ + { + "#": 454 + }, + { + "#": 455 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,5,6", + "startCol": 10, + "endCol": 10, + "startRow": 5, + "endRow": 6 + }, + { + "id": 18, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 458 + }, + "angle": 0, + "vertices": { + "#": 459 + }, + "position": { + "#": 464 + }, + "force": { + "#": 465 + }, + "torque": 0, + "positionImpulse": { + "#": 466 + }, + "constraintImpulse": { + "#": 467 + }, + "totalContacts": 0, + "speed": 1.61403, + "angularSpeed": 0, + "velocity": { + "#": 468 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 469 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 470 + }, + "bounds": { + "#": 472 + }, + "positionPrev": { + "#": 475 + }, + "anglePrev": 0, + "axes": { + "#": 476 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 457 + }, + "sleepCounter": 0, + "region": { + "#": 479 + } + }, + [ + { + "#": 457 + } + ], + [ + { + "#": 460 + }, + { + "#": 461 + }, + { + "#": 462 + }, + { + "#": 463 + } + ], + { + "x": 520, + "y": 272.3492, + "index": 0, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 560, + "y": 272.3492, + "index": 1, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 560, + "y": 312.3492, + "index": 2, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 520, + "y": 312.3492, + "index": 3, + "body": { + "#": 457 + }, + "isInternal": false + }, + { + "x": 540, + "y": 292.3492 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.12878 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 471 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 473 + }, + "max": { + "#": 474 + } + }, + { + "x": 520, + "y": 272.3492 + }, + { + "x": 560, + "y": 313.96323 + }, + { + "x": 540, + "y": 291.24718 + }, + [ + { + "#": 477 + }, + { + "#": 478 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,5,6", + "startCol": 10, + "endCol": 11, + "startRow": 5, + "endRow": 6 + }, + { + "id": 19, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 481 + }, + "angle": 0, + "vertices": { + "#": 482 + }, + "position": { + "#": 487 + }, + "force": { + "#": 488 + }, + "torque": 0, + "positionImpulse": { + "#": 489 + }, + "constraintImpulse": { + "#": 490 + }, + "totalContacts": 0, + "speed": 1.61403, + "angularSpeed": 0, + "velocity": { + "#": 491 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 492 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 493 + }, + "bounds": { + "#": 495 + }, + "positionPrev": { + "#": 498 + }, + "anglePrev": 0, + "axes": { + "#": 499 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 480 + }, + "sleepCounter": 0, + "region": { + "#": 502 + } + }, + [ + { + "#": 480 + } + ], + [ + { + "#": 483 + }, + { + "#": 484 + }, + { + "#": 485 + }, + { + "#": 486 + } + ], + { + "x": 560, + "y": 272.3492, + "index": 0, + "body": { + "#": 480 + }, + "isInternal": false + }, + { + "x": 600, + "y": 272.3492, + "index": 1, + "body": { + "#": 480 + }, + "isInternal": false + }, + { + "x": 600, + "y": 312.3492, + "index": 2, + "body": { + "#": 480 + }, + "isInternal": false + }, + { + "x": 560, + "y": 312.3492, + "index": 3, + "body": { + "#": 480 + }, + "isInternal": false + }, + { + "x": 580, + "y": 292.3492 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.12878 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 494 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 496 + }, + "max": { + "#": 497 + } + }, + { + "x": 560, + "y": 272.3492 + }, + { + "x": 600, + "y": 313.96323 + }, + { + "x": 580, + "y": 291.24718 + }, + [ + { + "#": 500 + }, + { + "#": 501 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,5,6", + "startCol": 11, + "endCol": 12, + "startRow": 5, + "endRow": 6 + }, + { + "id": 20, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 504 + }, + "angle": 0, + "vertices": { + "#": 505 + }, + "position": { + "#": 510 + }, + "force": { + "#": 511 + }, + "torque": 0, + "positionImpulse": { + "#": 512 + }, + "constraintImpulse": { + "#": 513 + }, + "totalContacts": 0, + "speed": 1.47718, + "angularSpeed": 0, + "velocity": { + "#": 514 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 515 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 516 + }, + "bounds": { + "#": 518 + }, + "positionPrev": { + "#": 521 + }, + "anglePrev": 0, + "axes": { + "#": 522 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 503 + }, + "sleepCounter": 0, + "region": { + "#": 525 + } + }, + [ + { + "#": 503 + } + ], + [ + { + "#": 506 + }, + { + "#": 507 + }, + { + "#": 508 + }, + { + "#": 509 + } + ], + { + "x": 400, + "y": 311.39153, + "index": 0, + "body": { + "#": 503 + }, + "isInternal": false + }, + { + "x": 440, + "y": 311.39153, + "index": 1, + "body": { + "#": 503 + }, + "isInternal": false + }, + { + "x": 440, + "y": 351.39153, + "index": 2, + "body": { + "#": 503 + }, + "isInternal": false + }, + { + "x": 400, + "y": 351.39153, + "index": 3, + "body": { + "#": 503 + }, + "isInternal": false + }, + { + "x": 420, + "y": 331.39153 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.08193 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 517 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 519 + }, + "max": { + "#": 520 + } + }, + { + "x": 400, + "y": 311.39153 + }, + { + "x": 440, + "y": 352.8687 + }, + { + "x": 420, + "y": 330.3549 + }, + [ + { + "#": 523 + }, + { + "#": 524 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,6,7", + "startCol": 8, + "endCol": 9, + "startRow": 6, + "endRow": 7 + }, + { + "id": 21, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 527 + }, + "angle": 0, + "vertices": { + "#": 528 + }, + "position": { + "#": 533 + }, + "force": { + "#": 534 + }, + "torque": 0, + "positionImpulse": { + "#": 535 + }, + "constraintImpulse": { + "#": 536 + }, + "totalContacts": 0, + "speed": 1.47718, + "angularSpeed": 0, + "velocity": { + "#": 537 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 538 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 539 + }, + "bounds": { + "#": 541 + }, + "positionPrev": { + "#": 544 + }, + "anglePrev": 0, + "axes": { + "#": 545 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 526 + }, + "sleepCounter": 0, + "region": { + "#": 548 + } + }, + [ + { + "#": 526 + } + ], + [ + { + "#": 529 + }, + { + "#": 530 + }, + { + "#": 531 + }, + { + "#": 532 + } + ], + { + "x": 440, + "y": 311.39153, + "index": 0, + "body": { + "#": 526 + }, + "isInternal": false + }, + { + "x": 480, + "y": 311.39153, + "index": 1, + "body": { + "#": 526 + }, + "isInternal": false + }, + { + "x": 480, + "y": 351.39153, + "index": 2, + "body": { + "#": 526 + }, + "isInternal": false + }, + { + "x": 440, + "y": 351.39153, + "index": 3, + "body": { + "#": 526 + }, + "isInternal": false + }, + { + "x": 460, + "y": 331.39153 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.08193 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 540 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 542 + }, + "max": { + "#": 543 + } + }, + { + "x": 440, + "y": 311.39153 + }, + { + "x": 480, + "y": 352.8687 + }, + { + "x": 460, + "y": 330.3549 + }, + [ + { + "#": 546 + }, + { + "#": 547 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,6,7", + "startCol": 9, + "endCol": 10, + "startRow": 6, + "endRow": 7 + }, + { + "id": 22, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 550 + }, + "angle": 0, + "vertices": { + "#": 551 + }, + "position": { + "#": 556 + }, + "force": { + "#": 557 + }, + "torque": 0, + "positionImpulse": { + "#": 558 + }, + "constraintImpulse": { + "#": 559 + }, + "totalContacts": 0, + "speed": 1.47718, + "angularSpeed": 0, + "velocity": { + "#": 560 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 561 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 562 + }, + "bounds": { + "#": 564 + }, + "positionPrev": { + "#": 567 + }, + "anglePrev": 0, + "axes": { + "#": 568 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 549 + }, + "sleepCounter": 0, + "region": { + "#": 571 + } + }, + [ + { + "#": 549 + } + ], + [ + { + "#": 552 + }, + { + "#": 553 + }, + { + "#": 554 + }, + { + "#": 555 + } + ], + { + "x": 480, + "y": 311.39153, + "index": 0, + "body": { + "#": 549 + }, + "isInternal": false + }, + { + "x": 520, + "y": 311.39153, + "index": 1, + "body": { + "#": 549 + }, + "isInternal": false + }, + { + "x": 520, + "y": 351.39153, + "index": 2, + "body": { + "#": 549 + }, + "isInternal": false + }, + { + "x": 480, + "y": 351.39153, + "index": 3, + "body": { + "#": 549 + }, + "isInternal": false + }, + { + "x": 500, + "y": 331.39153 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.08193 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 563 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 565 + }, + "max": { + "#": 566 + } + }, + { + "x": 480, + "y": 311.39153 + }, + { + "x": 520, + "y": 352.8687 + }, + { + "x": 500, + "y": 330.3549 + }, + [ + { + "#": 569 + }, + { + "#": 570 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,6,7", + "startCol": 10, + "endCol": 10, + "startRow": 6, + "endRow": 7 + }, + { + "id": 23, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 573 + }, + "angle": 0, + "vertices": { + "#": 574 + }, + "position": { + "#": 579 + }, + "force": { + "#": 580 + }, + "torque": 0, + "positionImpulse": { + "#": 581 + }, + "constraintImpulse": { + "#": 582 + }, + "totalContacts": 0, + "speed": 1.47718, + "angularSpeed": 0, + "velocity": { + "#": 583 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 584 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 585 + }, + "bounds": { + "#": 587 + }, + "positionPrev": { + "#": 590 + }, + "anglePrev": 0, + "axes": { + "#": 591 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 572 + }, + "sleepCounter": 0, + "region": { + "#": 594 + } + }, + [ + { + "#": 572 + } + ], + [ + { + "#": 575 + }, + { + "#": 576 + }, + { + "#": 577 + }, + { + "#": 578 + } + ], + { + "x": 520, + "y": 311.39153, + "index": 0, + "body": { + "#": 572 + }, + "isInternal": false + }, + { + "x": 560, + "y": 311.39153, + "index": 1, + "body": { + "#": 572 + }, + "isInternal": false + }, + { + "x": 560, + "y": 351.39153, + "index": 2, + "body": { + "#": 572 + }, + "isInternal": false + }, + { + "x": 520, + "y": 351.39153, + "index": 3, + "body": { + "#": 572 + }, + "isInternal": false + }, + { + "x": 540, + "y": 331.39153 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.08193 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 586 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 588 + }, + "max": { + "#": 589 + } + }, + { + "x": 520, + "y": 311.39153 + }, + { + "x": 560, + "y": 352.8687 + }, + { + "x": 540, + "y": 330.3549 + }, + [ + { + "#": 592 + }, + { + "#": 593 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,6,7", + "startCol": 10, + "endCol": 11, + "startRow": 6, + "endRow": 7 + }, + { + "id": 24, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 596 + }, + "angle": 0, + "vertices": { + "#": 597 + }, + "position": { + "#": 602 + }, + "force": { + "#": 603 + }, + "torque": 0, + "positionImpulse": { + "#": 604 + }, + "constraintImpulse": { + "#": 605 + }, + "totalContacts": 0, + "speed": 1.47718, + "angularSpeed": 0, + "velocity": { + "#": 606 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 607 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 608 + }, + "bounds": { + "#": 610 + }, + "positionPrev": { + "#": 613 + }, + "anglePrev": 0, + "axes": { + "#": 614 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 595 + }, + "sleepCounter": 0, + "region": { + "#": 617 + } + }, + [ + { + "#": 595 + } + ], + [ + { + "#": 598 + }, + { + "#": 599 + }, + { + "#": 600 + }, + { + "#": 601 + } + ], + { + "x": 560, + "y": 311.39153, + "index": 0, + "body": { + "#": 595 + }, + "isInternal": false + }, + { + "x": 600, + "y": 311.39153, + "index": 1, + "body": { + "#": 595 + }, + "isInternal": false + }, + { + "x": 600, + "y": 351.39153, + "index": 2, + "body": { + "#": 595 + }, + "isInternal": false + }, + { + "x": 560, + "y": 351.39153, + "index": 3, + "body": { + "#": 595 + }, + "isInternal": false + }, + { + "x": 580, + "y": 331.39153 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 1.08193 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 609 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 611 + }, + "max": { + "#": 612 + } + }, + { + "x": 560, + "y": 311.39153 + }, + { + "x": 600, + "y": 352.8687 + }, + { + "x": 580, + "y": 330.3549 + }, + [ + { + "#": 615 + }, + { + "#": 616 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,6,7", + "startCol": 11, + "endCol": 12, + "startRow": 6, + "endRow": 7 + }, + { + "id": 25, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 619 + }, + "angle": 0, + "vertices": { + "#": 620 + }, + "position": { + "#": 625 + }, + "force": { + "#": 626 + }, + "torque": 0, + "positionImpulse": { + "#": 627 + }, + "constraintImpulse": { + "#": 628 + }, + "totalContacts": 0, + "speed": 1.41443, + "angularSpeed": 0, + "velocity": { + "#": 629 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 630 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 631 + }, + "bounds": { + "#": 633 + }, + "positionPrev": { + "#": 636 + }, + "anglePrev": 0, + "axes": { + "#": 637 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 618 + }, + "sleepCounter": 0, + "region": { + "#": 640 + } + }, + [ + { + "#": 618 + } + ], + [ + { + "#": 621 + }, + { + "#": 622 + }, + { + "#": 623 + }, + { + "#": 624 + } + ], + { + "x": 400, + "y": 350.15315, + "index": 0, + "body": { + "#": 618 + }, + "isInternal": false + }, + { + "x": 440, + "y": 350.15315, + "index": 1, + "body": { + "#": 618 + }, + "isInternal": false + }, + { + "x": 440, + "y": 390.15315, + "index": 2, + "body": { + "#": 618 + }, + "isInternal": false + }, + { + "x": 400, + "y": 390.15315, + "index": 3, + "body": { + "#": 618 + }, + "isInternal": false + }, + { + "x": 420, + "y": 370.15315 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.95733 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 632 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 634 + }, + "max": { + "#": 635 + } + }, + { + "x": 400, + "y": 350.15315 + }, + { + "x": 440, + "y": 391.56757 + }, + { + "x": 420, + "y": 369.15051 + }, + [ + { + "#": 638 + }, + { + "#": 639 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,7,8", + "startCol": 8, + "endCol": 9, + "startRow": 7, + "endRow": 8 + }, + { + "id": 26, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 642 + }, + "angle": 0, + "vertices": { + "#": 643 + }, + "position": { + "#": 648 + }, + "force": { + "#": 649 + }, + "torque": 0, + "positionImpulse": { + "#": 650 + }, + "constraintImpulse": { + "#": 651 + }, + "totalContacts": 0, + "speed": 1.41443, + "angularSpeed": 0, + "velocity": { + "#": 652 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 653 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 654 + }, + "bounds": { + "#": 656 + }, + "positionPrev": { + "#": 659 + }, + "anglePrev": 0, + "axes": { + "#": 660 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 641 + }, + "sleepCounter": 0, + "region": { + "#": 663 + } + }, + [ + { + "#": 641 + } + ], + [ + { + "#": 644 + }, + { + "#": 645 + }, + { + "#": 646 + }, + { + "#": 647 + } + ], + { + "x": 440, + "y": 350.15315, + "index": 0, + "body": { + "#": 641 + }, + "isInternal": false + }, + { + "x": 480, + "y": 350.15315, + "index": 1, + "body": { + "#": 641 + }, + "isInternal": false + }, + { + "x": 480, + "y": 390.15315, + "index": 2, + "body": { + "#": 641 + }, + "isInternal": false + }, + { + "x": 440, + "y": 390.15315, + "index": 3, + "body": { + "#": 641 + }, + "isInternal": false + }, + { + "x": 460, + "y": 370.15315 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.95733 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 655 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 657 + }, + "max": { + "#": 658 + } + }, + { + "x": 440, + "y": 350.15315 + }, + { + "x": 480, + "y": 391.56757 + }, + { + "x": 460, + "y": 369.15051 + }, + [ + { + "#": 661 + }, + { + "#": 662 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,7,8", + "startCol": 9, + "endCol": 10, + "startRow": 7, + "endRow": 8 + }, + { + "id": 27, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 665 + }, + "angle": 0, + "vertices": { + "#": 666 + }, + "position": { + "#": 671 + }, + "force": { + "#": 672 + }, + "torque": 0, + "positionImpulse": { + "#": 673 + }, + "constraintImpulse": { + "#": 674 + }, + "totalContacts": 0, + "speed": 1.41443, + "angularSpeed": 0, + "velocity": { + "#": 675 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 676 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 677 + }, + "bounds": { + "#": 679 + }, + "positionPrev": { + "#": 682 + }, + "anglePrev": 0, + "axes": { + "#": 683 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 664 + }, + "sleepCounter": 0, + "region": { + "#": 686 + } + }, + [ + { + "#": 664 + } + ], + [ + { + "#": 667 + }, + { + "#": 668 + }, + { + "#": 669 + }, + { + "#": 670 + } + ], + { + "x": 480, + "y": 350.15315, + "index": 0, + "body": { + "#": 664 + }, + "isInternal": false + }, + { + "x": 520, + "y": 350.15315, + "index": 1, + "body": { + "#": 664 + }, + "isInternal": false + }, + { + "x": 520, + "y": 390.15315, + "index": 2, + "body": { + "#": 664 + }, + "isInternal": false + }, + { + "x": 480, + "y": 390.15315, + "index": 3, + "body": { + "#": 664 + }, + "isInternal": false + }, + { + "x": 500, + "y": 370.15315 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.95733 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 678 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 680 + }, + "max": { + "#": 681 + } + }, + { + "x": 480, + "y": 350.15315 + }, + { + "x": 520, + "y": 391.56757 + }, + { + "x": 500, + "y": 369.15051 + }, + [ + { + "#": 684 + }, + { + "#": 685 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,7,8", + "startCol": 10, + "endCol": 10, + "startRow": 7, + "endRow": 8 + }, + { + "id": 28, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 688 + }, + "angle": 0, + "vertices": { + "#": 689 + }, + "position": { + "#": 694 + }, + "force": { + "#": 695 + }, + "torque": 0, + "positionImpulse": { + "#": 696 + }, + "constraintImpulse": { + "#": 697 + }, + "totalContacts": 0, + "speed": 1.41443, + "angularSpeed": 0, + "velocity": { + "#": 698 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 699 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 700 + }, + "bounds": { + "#": 702 + }, + "positionPrev": { + "#": 705 + }, + "anglePrev": 0, + "axes": { + "#": 706 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 687 + }, + "sleepCounter": 0, + "region": { + "#": 709 + } + }, + [ + { + "#": 687 + } + ], + [ + { + "#": 690 + }, + { + "#": 691 + }, + { + "#": 692 + }, + { + "#": 693 + } + ], + { + "x": 520, + "y": 350.15315, + "index": 0, + "body": { + "#": 687 + }, + "isInternal": false + }, + { + "x": 560, + "y": 350.15315, + "index": 1, + "body": { + "#": 687 + }, + "isInternal": false + }, + { + "x": 560, + "y": 390.15315, + "index": 2, + "body": { + "#": 687 + }, + "isInternal": false + }, + { + "x": 520, + "y": 390.15315, + "index": 3, + "body": { + "#": 687 + }, + "isInternal": false + }, + { + "x": 540, + "y": 370.15315 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.95733 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 701 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 703 + }, + "max": { + "#": 704 + } + }, + { + "x": 520, + "y": 350.15315 + }, + { + "x": 560, + "y": 391.56757 + }, + { + "x": 540, + "y": 369.15051 + }, + [ + { + "#": 707 + }, + { + "#": 708 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,7,8", + "startCol": 10, + "endCol": 11, + "startRow": 7, + "endRow": 8 + }, + { + "id": 29, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 711 + }, + "angle": 0, + "vertices": { + "#": 712 + }, + "position": { + "#": 717 + }, + "force": { + "#": 718 + }, + "torque": 0, + "positionImpulse": { + "#": 719 + }, + "constraintImpulse": { + "#": 720 + }, + "totalContacts": 0, + "speed": 1.41443, + "angularSpeed": 0, + "velocity": { + "#": 721 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 722 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 723 + }, + "bounds": { + "#": 725 + }, + "positionPrev": { + "#": 728 + }, + "anglePrev": 0, + "axes": { + "#": 729 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 710 + }, + "sleepCounter": 0, + "region": { + "#": 732 + } + }, + [ + { + "#": 710 + } + ], + [ + { + "#": 713 + }, + { + "#": 714 + }, + { + "#": 715 + }, + { + "#": 716 + } + ], + { + "x": 560, + "y": 350.15315, + "index": 0, + "body": { + "#": 710 + }, + "isInternal": false + }, + { + "x": 600, + "y": 350.15315, + "index": 1, + "body": { + "#": 710 + }, + "isInternal": false + }, + { + "x": 600, + "y": 390.15315, + "index": 2, + "body": { + "#": 710 + }, + "isInternal": false + }, + { + "x": 560, + "y": 390.15315, + "index": 3, + "body": { + "#": 710 + }, + "isInternal": false + }, + { + "x": 580, + "y": 370.15315 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.95733 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 724 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 726 + }, + "max": { + "#": 727 + } + }, + { + "x": 560, + "y": 350.15315 + }, + { + "x": 600, + "y": 391.56757 + }, + { + "x": 580, + "y": 369.15051 + }, + [ + { + "#": 730 + }, + { + "#": 731 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,7,8", + "startCol": 11, + "endCol": 12, + "startRow": 7, + "endRow": 8 + }, + { + "id": 30, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 734 + }, + "angle": 0, + "vertices": { + "#": 735 + }, + "position": { + "#": 740 + }, + "force": { + "#": 741 + }, + "torque": 0, + "positionImpulse": { + "#": 742 + }, + "constraintImpulse": { + "#": 743 + }, + "totalContacts": 0, + "speed": 1.25881, + "angularSpeed": 0, + "velocity": { + "#": 744 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 745 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 746 + }, + "bounds": { + "#": 748 + }, + "positionPrev": { + "#": 751 + }, + "anglePrev": 0, + "axes": { + "#": 752 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 733 + }, + "sleepCounter": 0, + "region": { + "#": 755 + } + }, + [ + { + "#": 733 + } + ], + [ + { + "#": 736 + }, + { + "#": 737 + }, + { + "#": 738 + }, + { + "#": 739 + } + ], + { + "x": 400, + "y": 388.67537, + "index": 0, + "body": { + "#": 733 + }, + "isInternal": false + }, + { + "x": 440, + "y": 388.67537, + "index": 1, + "body": { + "#": 733 + }, + "isInternal": false + }, + { + "x": 440, + "y": 428.67537, + "index": 2, + "body": { + "#": 733 + }, + "isInternal": false + }, + { + "x": 400, + "y": 428.67537, + "index": 3, + "body": { + "#": 733 + }, + "isInternal": false + }, + { + "x": 420, + "y": 408.67537 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.84386 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 747 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 749 + }, + "max": { + "#": 750 + } + }, + { + "x": 400, + "y": 388.67537 + }, + { + "x": 440, + "y": 429.93419 + }, + { + "x": 420, + "y": 407.76667 + }, + [ + { + "#": 753 + }, + { + "#": 754 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,8,8", + "startCol": 8, + "endCol": 9, + "startRow": 8, + "endRow": 8 + }, + { + "id": 31, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 757 + }, + "angle": 0, + "vertices": { + "#": 758 + }, + "position": { + "#": 763 + }, + "force": { + "#": 764 + }, + "torque": 0, + "positionImpulse": { + "#": 765 + }, + "constraintImpulse": { + "#": 766 + }, + "totalContacts": 0, + "speed": 1.25881, + "angularSpeed": 0, + "velocity": { + "#": 767 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 768 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 769 + }, + "bounds": { + "#": 771 + }, + "positionPrev": { + "#": 774 + }, + "anglePrev": 0, + "axes": { + "#": 775 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 756 + }, + "sleepCounter": 0, + "region": { + "#": 778 + } + }, + [ + { + "#": 756 + } + ], + [ + { + "#": 759 + }, + { + "#": 760 + }, + { + "#": 761 + }, + { + "#": 762 + } + ], + { + "x": 440, + "y": 388.67537, + "index": 0, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 480, + "y": 388.67537, + "index": 1, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 480, + "y": 428.67537, + "index": 2, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 440, + "y": 428.67537, + "index": 3, + "body": { + "#": 756 + }, + "isInternal": false + }, + { + "x": 460, + "y": 408.67537 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.84386 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 770 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 772 + }, + "max": { + "#": 773 + } + }, + { + "x": 440, + "y": 388.67537 + }, + { + "x": 480, + "y": 429.93419 + }, + { + "x": 460, + "y": 407.76667 + }, + [ + { + "#": 776 + }, + { + "#": 777 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,8,8", + "startCol": 9, + "endCol": 10, + "startRow": 8, + "endRow": 8 + }, + { + "id": 32, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 780 + }, + "angle": 0, + "vertices": { + "#": 781 + }, + "position": { + "#": 786 + }, + "force": { + "#": 787 + }, + "torque": 0, + "positionImpulse": { + "#": 788 + }, + "constraintImpulse": { + "#": 789 + }, + "totalContacts": 0, + "speed": 1.25881, + "angularSpeed": 0, + "velocity": { + "#": 790 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 791 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 792 + }, + "bounds": { + "#": 794 + }, + "positionPrev": { + "#": 797 + }, + "anglePrev": 0, + "axes": { + "#": 798 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 779 + }, + "sleepCounter": 0, + "region": { + "#": 801 + } + }, + [ + { + "#": 779 + } + ], + [ + { + "#": 782 + }, + { + "#": 783 + }, + { + "#": 784 + }, + { + "#": 785 + } + ], + { + "x": 480, + "y": 388.67537, + "index": 0, + "body": { + "#": 779 + }, + "isInternal": false + }, + { + "x": 520, + "y": 388.67537, + "index": 1, + "body": { + "#": 779 + }, + "isInternal": false + }, + { + "x": 520, + "y": 428.67537, + "index": 2, + "body": { + "#": 779 + }, + "isInternal": false + }, + { + "x": 480, + "y": 428.67537, + "index": 3, + "body": { + "#": 779 + }, + "isInternal": false + }, + { + "x": 500, + "y": 408.67537 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.84386 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 793 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 795 + }, + "max": { + "#": 796 + } + }, + { + "x": 480, + "y": 388.67537 + }, + { + "x": 520, + "y": 429.93419 + }, + { + "x": 500, + "y": 407.76667 + }, + [ + { + "#": 799 + }, + { + "#": 800 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,8,8", + "startCol": 10, + "endCol": 10, + "startRow": 8, + "endRow": 8 + }, + { + "id": 33, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 803 + }, + "angle": 0, + "vertices": { + "#": 804 + }, + "position": { + "#": 809 + }, + "force": { + "#": 810 + }, + "torque": 0, + "positionImpulse": { + "#": 811 + }, + "constraintImpulse": { + "#": 812 + }, + "totalContacts": 0, + "speed": 1.25881, + "angularSpeed": 0, + "velocity": { + "#": 813 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 814 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 815 + }, + "bounds": { + "#": 817 + }, + "positionPrev": { + "#": 820 + }, + "anglePrev": 0, + "axes": { + "#": 821 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 802 + }, + "sleepCounter": 0, + "region": { + "#": 824 + } + }, + [ + { + "#": 802 + } + ], + [ + { + "#": 805 + }, + { + "#": 806 + }, + { + "#": 807 + }, + { + "#": 808 + } + ], + { + "x": 520, + "y": 388.67537, + "index": 0, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 560, + "y": 388.67537, + "index": 1, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 560, + "y": 428.67537, + "index": 2, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 520, + "y": 428.67537, + "index": 3, + "body": { + "#": 802 + }, + "isInternal": false + }, + { + "x": 540, + "y": 408.67537 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.84386 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 816 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 818 + }, + "max": { + "#": 819 + } + }, + { + "x": 520, + "y": 388.67537 + }, + { + "x": 560, + "y": 429.93419 + }, + { + "x": 540, + "y": 407.76667 + }, + [ + { + "#": 822 + }, + { + "#": 823 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,8,8", + "startCol": 10, + "endCol": 11, + "startRow": 8, + "endRow": 8 + }, + { + "id": 34, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 826 + }, + "angle": 0, + "vertices": { + "#": 827 + }, + "position": { + "#": 832 + }, + "force": { + "#": 833 + }, + "torque": 0, + "positionImpulse": { + "#": 834 + }, + "constraintImpulse": { + "#": 835 + }, + "totalContacts": 0, + "speed": 1.25881, + "angularSpeed": 0, + "velocity": { + "#": 836 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 837 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 838 + }, + "bounds": { + "#": 840 + }, + "positionPrev": { + "#": 843 + }, + "anglePrev": 0, + "axes": { + "#": 844 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 825 + }, + "sleepCounter": 0, + "region": { + "#": 847 + } + }, + [ + { + "#": 825 + } + ], + [ + { + "#": 828 + }, + { + "#": 829 + }, + { + "#": 830 + }, + { + "#": 831 + } + ], + { + "x": 560, + "y": 388.67537, + "index": 0, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 600, + "y": 388.67537, + "index": 1, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 600, + "y": 428.67537, + "index": 2, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 560, + "y": 428.67537, + "index": 3, + "body": { + "#": 825 + }, + "isInternal": false + }, + { + "x": 580, + "y": 408.67537 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.84386 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 839 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 841 + }, + "max": { + "#": 842 + } + }, + { + "x": 560, + "y": 388.67537 + }, + { + "x": 600, + "y": 429.93419 + }, + { + "x": 580, + "y": 407.76667 + }, + [ + { + "#": 845 + }, + { + "#": 846 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,8,8", + "startCol": 11, + "endCol": 12, + "startRow": 8, + "endRow": 8 + }, + { + "id": 35, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 849 + }, + "angle": 0, + "vertices": { + "#": 850 + }, + "position": { + "#": 855 + }, + "force": { + "#": 856 + }, + "torque": 0, + "positionImpulse": { + "#": 857 + }, + "constraintImpulse": { + "#": 858 + }, + "totalContacts": 0, + "speed": 1.08179, + "angularSpeed": 0, + "velocity": { + "#": 859 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 860 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 861 + }, + "bounds": { + "#": 863 + }, + "positionPrev": { + "#": 866 + }, + "anglePrev": 0, + "axes": { + "#": 867 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 848 + }, + "sleepCounter": 0, + "region": { + "#": 870 + } + }, + [ + { + "#": 848 + } + ], + [ + { + "#": 851 + }, + { + "#": 852 + }, + { + "#": 853 + }, + { + "#": 854 + } + ], + { + "x": 400, + "y": 426.98864, + "index": 0, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 440, + "y": 426.98864, + "index": 1, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 440, + "y": 466.98864, + "index": 2, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 400, + "y": 466.98864, + "index": 3, + "body": { + "#": 848 + }, + "isInternal": false + }, + { + "x": 420, + "y": 446.98864 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.69393 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 862 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 864 + }, + "max": { + "#": 865 + } + }, + { + "x": 400, + "y": 426.98864 + }, + { + "x": 440, + "y": 468.07043 + }, + { + "x": 420, + "y": 446.20904 + }, + [ + { + "#": 868 + }, + { + "#": 869 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,8,9", + "startCol": 8, + "endCol": 9, + "startRow": 8, + "endRow": 9 + }, + { + "id": 36, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 872 + }, + "angle": 0, + "vertices": { + "#": 873 + }, + "position": { + "#": 878 + }, + "force": { + "#": 879 + }, + "torque": 0, + "positionImpulse": { + "#": 880 + }, + "constraintImpulse": { + "#": 881 + }, + "totalContacts": 0, + "speed": 1.08179, + "angularSpeed": 0, + "velocity": { + "#": 882 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 883 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 884 + }, + "bounds": { + "#": 886 + }, + "positionPrev": { + "#": 889 + }, + "anglePrev": 0, + "axes": { + "#": 890 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 871 + }, + "sleepCounter": 0, + "region": { + "#": 893 + } + }, + [ + { + "#": 871 + } + ], + [ + { + "#": 874 + }, + { + "#": 875 + }, + { + "#": 876 + }, + { + "#": 877 + } + ], + { + "x": 440, + "y": 426.98864, + "index": 0, + "body": { + "#": 871 + }, + "isInternal": false + }, + { + "x": 480, + "y": 426.98864, + "index": 1, + "body": { + "#": 871 + }, + "isInternal": false + }, + { + "x": 480, + "y": 466.98864, + "index": 2, + "body": { + "#": 871 + }, + "isInternal": false + }, + { + "x": 440, + "y": 466.98864, + "index": 3, + "body": { + "#": 871 + }, + "isInternal": false + }, + { + "x": 460, + "y": 446.98864 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.69393 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 885 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 887 + }, + "max": { + "#": 888 + } + }, + { + "x": 440, + "y": 426.98864 + }, + { + "x": 480, + "y": 468.07043 + }, + { + "x": 460, + "y": 446.20904 + }, + [ + { + "#": 891 + }, + { + "#": 892 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,8,9", + "startCol": 9, + "endCol": 10, + "startRow": 8, + "endRow": 9 + }, + { + "id": 37, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 895 + }, + "angle": 0, + "vertices": { + "#": 896 + }, + "position": { + "#": 901 + }, + "force": { + "#": 902 + }, + "torque": 0, + "positionImpulse": { + "#": 903 + }, + "constraintImpulse": { + "#": 904 + }, + "totalContacts": 0, + "speed": 1.08179, + "angularSpeed": 0, + "velocity": { + "#": 905 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 906 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 907 + }, + "bounds": { + "#": 909 + }, + "positionPrev": { + "#": 912 + }, + "anglePrev": 0, + "axes": { + "#": 913 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 894 + }, + "sleepCounter": 0, + "region": { + "#": 916 + } + }, + [ + { + "#": 894 + } + ], + [ + { + "#": 897 + }, + { + "#": 898 + }, + { + "#": 899 + }, + { + "#": 900 + } + ], + { + "x": 480, + "y": 426.98864, + "index": 0, + "body": { + "#": 894 + }, + "isInternal": false + }, + { + "x": 520, + "y": 426.98864, + "index": 1, + "body": { + "#": 894 + }, + "isInternal": false + }, + { + "x": 520, + "y": 466.98864, + "index": 2, + "body": { + "#": 894 + }, + "isInternal": false + }, + { + "x": 480, + "y": 466.98864, + "index": 3, + "body": { + "#": 894 + }, + "isInternal": false + }, + { + "x": 500, + "y": 446.98864 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.69393 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 908 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 910 + }, + "max": { + "#": 911 + } + }, + { + "x": 480, + "y": 426.98864 + }, + { + "x": 520, + "y": 468.07043 + }, + { + "x": 500, + "y": 446.20904 + }, + [ + { + "#": 914 + }, + { + "#": 915 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,8,9", + "startCol": 10, + "endCol": 10, + "startRow": 8, + "endRow": 9 + }, + { + "id": 38, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 918 + }, + "angle": 0, + "vertices": { + "#": 919 + }, + "position": { + "#": 924 + }, + "force": { + "#": 925 + }, + "torque": 0, + "positionImpulse": { + "#": 926 + }, + "constraintImpulse": { + "#": 927 + }, + "totalContacts": 0, + "speed": 1.08179, + "angularSpeed": 0, + "velocity": { + "#": 928 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 929 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 930 + }, + "bounds": { + "#": 932 + }, + "positionPrev": { + "#": 935 + }, + "anglePrev": 0, + "axes": { + "#": 936 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 917 + }, + "sleepCounter": 0, + "region": { + "#": 939 + } + }, + [ + { + "#": 917 + } + ], + [ + { + "#": 920 + }, + { + "#": 921 + }, + { + "#": 922 + }, + { + "#": 923 + } + ], + { + "x": 520, + "y": 426.98864, + "index": 0, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 560, + "y": 426.98864, + "index": 1, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 560, + "y": 466.98864, + "index": 2, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 520, + "y": 466.98864, + "index": 3, + "body": { + "#": 917 + }, + "isInternal": false + }, + { + "x": 540, + "y": 446.98864 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.69393 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 931 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 933 + }, + "max": { + "#": 934 + } + }, + { + "x": 520, + "y": 426.98864 + }, + { + "x": 560, + "y": 468.07043 + }, + { + "x": 540, + "y": 446.20904 + }, + [ + { + "#": 937 + }, + { + "#": 938 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,8,9", + "startCol": 10, + "endCol": 11, + "startRow": 8, + "endRow": 9 + }, + { + "id": 39, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 941 + }, + "angle": 0, + "vertices": { + "#": 942 + }, + "position": { + "#": 947 + }, + "force": { + "#": 948 + }, + "torque": 0, + "positionImpulse": { + "#": 949 + }, + "constraintImpulse": { + "#": 950 + }, + "totalContacts": 0, + "speed": 1.08179, + "angularSpeed": 0, + "velocity": { + "#": 951 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 952 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 953 + }, + "bounds": { + "#": 955 + }, + "positionPrev": { + "#": 958 + }, + "anglePrev": 0, + "axes": { + "#": 959 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 940 + }, + "sleepCounter": 0, + "region": { + "#": 962 + } + }, + [ + { + "#": 940 + } + ], + [ + { + "#": 943 + }, + { + "#": 944 + }, + { + "#": 945 + }, + { + "#": 946 + } + ], + { + "x": 560, + "y": 426.98864, + "index": 0, + "body": { + "#": 940 + }, + "isInternal": false + }, + { + "x": 600, + "y": 426.98864, + "index": 1, + "body": { + "#": 940 + }, + "isInternal": false + }, + { + "x": 600, + "y": 466.98864, + "index": 2, + "body": { + "#": 940 + }, + "isInternal": false + }, + { + "x": 560, + "y": 466.98864, + "index": 3, + "body": { + "#": 940 + }, + "isInternal": false + }, + { + "x": 580, + "y": 446.98864 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.69393 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 954 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 956 + }, + "max": { + "#": 957 + } + }, + { + "x": 560, + "y": 426.98864 + }, + { + "x": 600, + "y": 468.07043 + }, + { + "x": 580, + "y": 446.20904 + }, + [ + { + "#": 960 + }, + { + "#": 961 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,8,9", + "startCol": 11, + "endCol": 12, + "startRow": 8, + "endRow": 9 + }, + { + "id": 40, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 964 + }, + "angle": 0, + "vertices": { + "#": 965 + }, + "position": { + "#": 970 + }, + "force": { + "#": 971 + }, + "torque": 0, + "positionImpulse": { + "#": 972 + }, + "constraintImpulse": { + "#": 973 + }, + "totalContacts": 0, + "speed": 0.88358, + "angularSpeed": 0, + "velocity": { + "#": 974 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 975 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 976 + }, + "bounds": { + "#": 978 + }, + "positionPrev": { + "#": 981 + }, + "anglePrev": 0, + "axes": { + "#": 982 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 963 + }, + "sleepCounter": 0, + "region": { + "#": 985 + } + }, + [ + { + "#": 963 + } + ], + [ + { + "#": 966 + }, + { + "#": 967 + }, + { + "#": 968 + }, + { + "#": 969 + } + ], + { + "x": 400, + "y": 465.11371, + "index": 0, + "body": { + "#": 963 + }, + "isInternal": false + }, + { + "x": 440, + "y": 465.11371, + "index": 1, + "body": { + "#": 963 + }, + "isInternal": false + }, + { + "x": 440, + "y": 505.11371, + "index": 2, + "body": { + "#": 963 + }, + "isInternal": false + }, + { + "x": 400, + "y": 505.11371, + "index": 3, + "body": { + "#": 963 + }, + "isInternal": false + }, + { + "x": 420, + "y": 485.11371 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.50894 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 977 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 979 + }, + "max": { + "#": 980 + } + }, + { + "x": 400, + "y": 465.11371 + }, + { + "x": 440, + "y": 505.99729 + }, + { + "x": 420, + "y": 484.49906 + }, + [ + { + "#": 983 + }, + { + "#": 984 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,9,10", + "startCol": 8, + "endCol": 9, + "startRow": 9, + "endRow": 10 + }, + { + "id": 41, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 987 + }, + "angle": 0, + "vertices": { + "#": 988 + }, + "position": { + "#": 993 + }, + "force": { + "#": 994 + }, + "torque": 0, + "positionImpulse": { + "#": 995 + }, + "constraintImpulse": { + "#": 996 + }, + "totalContacts": 0, + "speed": 0.88358, + "angularSpeed": 0, + "velocity": { + "#": 997 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 998 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 999 + }, + "bounds": { + "#": 1001 + }, + "positionPrev": { + "#": 1004 + }, + "anglePrev": 0, + "axes": { + "#": 1005 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 986 + }, + "sleepCounter": 0, + "region": { + "#": 1008 + } + }, + [ + { + "#": 986 + } + ], + [ + { + "#": 989 + }, + { + "#": 990 + }, + { + "#": 991 + }, + { + "#": 992 + } + ], + { + "x": 440, + "y": 465.11371, + "index": 0, + "body": { + "#": 986 + }, + "isInternal": false + }, + { + "x": 480, + "y": 465.11371, + "index": 1, + "body": { + "#": 986 + }, + "isInternal": false + }, + { + "x": 480, + "y": 505.11371, + "index": 2, + "body": { + "#": 986 + }, + "isInternal": false + }, + { + "x": 440, + "y": 505.11371, + "index": 3, + "body": { + "#": 986 + }, + "isInternal": false + }, + { + "x": 460, + "y": 485.11371 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.50894 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1000 + }, + "lineWidth": 1.5, + "fillStyle": "#4ECDC4", + "strokeStyle": "#1b9a91" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1002 + }, + "max": { + "#": 1003 + } + }, + { + "x": 440, + "y": 465.11371 + }, + { + "x": 480, + "y": 505.99729 + }, + { + "x": 460, + "y": 484.49906 + }, + [ + { + "#": 1006 + }, + { + "#": 1007 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,9,10", + "startCol": 9, + "endCol": 10, + "startRow": 9, + "endRow": 10 + }, + { + "id": 42, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1010 + }, + "angle": 0, + "vertices": { + "#": 1011 + }, + "position": { + "#": 1016 + }, + "force": { + "#": 1017 + }, + "torque": 0, + "positionImpulse": { + "#": 1018 + }, + "constraintImpulse": { + "#": 1019 + }, + "totalContacts": 0, + "speed": 0.88358, + "angularSpeed": 0, + "velocity": { + "#": 1020 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1021 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1022 + }, + "bounds": { + "#": 1024 + }, + "positionPrev": { + "#": 1027 + }, + "anglePrev": 0, + "axes": { + "#": 1028 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1009 + }, + "sleepCounter": 0, + "region": { + "#": 1031 + } + }, + [ + { + "#": 1009 + } + ], + [ + { + "#": 1012 + }, + { + "#": 1013 + }, + { + "#": 1014 + }, + { + "#": 1015 + } + ], + { + "x": 480, + "y": 465.11371, + "index": 0, + "body": { + "#": 1009 + }, + "isInternal": false + }, + { + "x": 520, + "y": 465.11371, + "index": 1, + "body": { + "#": 1009 + }, + "isInternal": false + }, + { + "x": 520, + "y": 505.11371, + "index": 2, + "body": { + "#": 1009 + }, + "isInternal": false + }, + { + "x": 480, + "y": 505.11371, + "index": 3, + "body": { + "#": 1009 + }, + "isInternal": false + }, + { + "x": 500, + "y": 485.11371 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.50894 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1023 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1025 + }, + "max": { + "#": 1026 + } + }, + { + "x": 480, + "y": 465.11371 + }, + { + "x": 520, + "y": 505.99729 + }, + { + "x": 500, + "y": 484.49906 + }, + [ + { + "#": 1029 + }, + { + "#": 1030 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,9,10", + "startCol": 10, + "endCol": 10, + "startRow": 9, + "endRow": 10 + }, + { + "id": 43, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1033 + }, + "angle": 0, + "vertices": { + "#": 1034 + }, + "position": { + "#": 1039 + }, + "force": { + "#": 1040 + }, + "torque": 0, + "positionImpulse": { + "#": 1041 + }, + "constraintImpulse": { + "#": 1042 + }, + "totalContacts": 0, + "speed": 0.88358, + "angularSpeed": 0, + "velocity": { + "#": 1043 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1044 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1045 + }, + "bounds": { + "#": 1047 + }, + "positionPrev": { + "#": 1050 + }, + "anglePrev": 0, + "axes": { + "#": 1051 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1032 + }, + "sleepCounter": 0, + "region": { + "#": 1054 + } + }, + [ + { + "#": 1032 + } + ], + [ + { + "#": 1035 + }, + { + "#": 1036 + }, + { + "#": 1037 + }, + { + "#": 1038 + } + ], + { + "x": 520, + "y": 465.11371, + "index": 0, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 560, + "y": 465.11371, + "index": 1, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 560, + "y": 505.11371, + "index": 2, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 520, + "y": 505.11371, + "index": 3, + "body": { + "#": 1032 + }, + "isInternal": false + }, + { + "x": 540, + "y": 485.11371 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.50894 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1046 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1048 + }, + "max": { + "#": 1049 + } + }, + { + "x": 520, + "y": 465.11371 + }, + { + "x": 560, + "y": 505.99729 + }, + { + "x": 540, + "y": 484.49906 + }, + [ + { + "#": 1052 + }, + { + "#": 1053 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,9,10", + "startCol": 10, + "endCol": 11, + "startRow": 9, + "endRow": 10 + }, + { + "id": 44, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1056 + }, + "angle": 0, + "vertices": { + "#": 1057 + }, + "position": { + "#": 1062 + }, + "force": { + "#": 1063 + }, + "torque": 0, + "positionImpulse": { + "#": 1064 + }, + "constraintImpulse": { + "#": 1065 + }, + "totalContacts": 0, + "speed": 0.88358, + "angularSpeed": 0, + "velocity": { + "#": 1066 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1067 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1068 + }, + "bounds": { + "#": 1070 + }, + "positionPrev": { + "#": 1073 + }, + "anglePrev": 0, + "axes": { + "#": 1074 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1055 + }, + "sleepCounter": 0, + "region": { + "#": 1077 + } + }, + [ + { + "#": 1055 + } + ], + [ + { + "#": 1058 + }, + { + "#": 1059 + }, + { + "#": 1060 + }, + { + "#": 1061 + } + ], + { + "x": 560, + "y": 465.11371, + "index": 0, + "body": { + "#": 1055 + }, + "isInternal": false + }, + { + "x": 600, + "y": 465.11371, + "index": 1, + "body": { + "#": 1055 + }, + "isInternal": false + }, + { + "x": 600, + "y": 505.11371, + "index": 2, + "body": { + "#": 1055 + }, + "isInternal": false + }, + { + "x": 560, + "y": 505.11371, + "index": 3, + "body": { + "#": 1055 + }, + "isInternal": false + }, + { + "x": 580, + "y": 485.11371 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.50894 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1069 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1071 + }, + "max": { + "#": 1072 + } + }, + { + "x": 560, + "y": 465.11371 + }, + { + "x": 600, + "y": 505.99729 + }, + { + "x": 580, + "y": 484.49906 + }, + [ + { + "#": 1075 + }, + { + "#": 1076 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,9,10", + "startCol": 11, + "endCol": 12, + "startRow": 9, + "endRow": 10 + }, + { + "id": 45, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1079 + }, + "angle": 0, + "vertices": { + "#": 1080 + }, + "position": { + "#": 1085 + }, + "force": { + "#": 1086 + }, + "torque": 0, + "positionImpulse": { + "#": 1087 + }, + "constraintImpulse": { + "#": 1088 + }, + "totalContacts": 0, + "speed": 0.66837, + "angularSpeed": 0, + "velocity": { + "#": 1089 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1090 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1091 + }, + "bounds": { + "#": 1093 + }, + "positionPrev": { + "#": 1096 + }, + "anglePrev": 0, + "axes": { + "#": 1097 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1078 + }, + "sleepCounter": 0, + "region": { + "#": 1100 + } + }, + [ + { + "#": 1078 + } + ], + [ + { + "#": 1081 + }, + { + "#": 1082 + }, + { + "#": 1083 + }, + { + "#": 1084 + } + ], + { + "x": 400, + "y": 503.06816, + "index": 0, + "body": { + "#": 1078 + }, + "isInternal": false + }, + { + "x": 440, + "y": 503.06816, + "index": 1, + "body": { + "#": 1078 + }, + "isInternal": false + }, + { + "x": 440, + "y": 543.06816, + "index": 2, + "body": { + "#": 1078 + }, + "isInternal": false + }, + { + "x": 400, + "y": 543.06816, + "index": 3, + "body": { + "#": 1078 + }, + "isInternal": false + }, + { + "x": 420, + "y": 523.06816 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.2931 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1092 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1094 + }, + "max": { + "#": 1095 + } + }, + { + "x": 400, + "y": 503.06816 + }, + { + "x": 440, + "y": 543.73653 + }, + { + "x": 420, + "y": 522.65173 + }, + [ + { + "#": 1098 + }, + { + "#": 1099 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,10,11", + "startCol": 8, + "endCol": 9, + "startRow": 10, + "endRow": 11 + }, + { + "id": 46, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1102 + }, + "angle": 0, + "vertices": { + "#": 1103 + }, + "position": { + "#": 1108 + }, + "force": { + "#": 1109 + }, + "torque": 0, + "positionImpulse": { + "#": 1110 + }, + "constraintImpulse": { + "#": 1111 + }, + "totalContacts": 0, + "speed": 0.66837, + "angularSpeed": 0, + "velocity": { + "#": 1112 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1113 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1114 + }, + "bounds": { + "#": 1116 + }, + "positionPrev": { + "#": 1119 + }, + "anglePrev": 0, + "axes": { + "#": 1120 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1101 + }, + "sleepCounter": 0, + "region": { + "#": 1123 + } + }, + [ + { + "#": 1101 + } + ], + [ + { + "#": 1104 + }, + { + "#": 1105 + }, + { + "#": 1106 + }, + { + "#": 1107 + } + ], + { + "x": 440, + "y": 503.06816, + "index": 0, + "body": { + "#": 1101 + }, + "isInternal": false + }, + { + "x": 480, + "y": 503.06816, + "index": 1, + "body": { + "#": 1101 + }, + "isInternal": false + }, + { + "x": 480, + "y": 543.06816, + "index": 2, + "body": { + "#": 1101 + }, + "isInternal": false + }, + { + "x": 440, + "y": 543.06816, + "index": 3, + "body": { + "#": 1101 + }, + "isInternal": false + }, + { + "x": 460, + "y": 523.06816 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.2931 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1115 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1117 + }, + "max": { + "#": 1118 + } + }, + { + "x": 440, + "y": 503.06816 + }, + { + "x": 480, + "y": 543.73653 + }, + { + "x": 460, + "y": 522.65173 + }, + [ + { + "#": 1121 + }, + { + "#": 1122 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,10,11", + "startCol": 9, + "endCol": 10, + "startRow": 10, + "endRow": 11 + }, + { + "id": 47, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1125 + }, + "angle": 0, + "vertices": { + "#": 1126 + }, + "position": { + "#": 1131 + }, + "force": { + "#": 1132 + }, + "torque": 0, + "positionImpulse": { + "#": 1133 + }, + "constraintImpulse": { + "#": 1134 + }, + "totalContacts": 0, + "speed": 0.66837, + "angularSpeed": 0, + "velocity": { + "#": 1135 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1136 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1137 + }, + "bounds": { + "#": 1139 + }, + "positionPrev": { + "#": 1142 + }, + "anglePrev": 0, + "axes": { + "#": 1143 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1124 + }, + "sleepCounter": 0, + "region": { + "#": 1146 + } + }, + [ + { + "#": 1124 + } + ], + [ + { + "#": 1127 + }, + { + "#": 1128 + }, + { + "#": 1129 + }, + { + "#": 1130 + } + ], + { + "x": 480, + "y": 503.06816, + "index": 0, + "body": { + "#": 1124 + }, + "isInternal": false + }, + { + "x": 520, + "y": 503.06816, + "index": 1, + "body": { + "#": 1124 + }, + "isInternal": false + }, + { + "x": 520, + "y": 543.06816, + "index": 2, + "body": { + "#": 1124 + }, + "isInternal": false + }, + { + "x": 480, + "y": 543.06816, + "index": 3, + "body": { + "#": 1124 + }, + "isInternal": false + }, + { + "x": 500, + "y": 523.06816 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.2931 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1138 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1140 + }, + "max": { + "#": 1141 + } + }, + { + "x": 480, + "y": 503.06816 + }, + { + "x": 520, + "y": 543.73653 + }, + { + "x": 500, + "y": 522.65173 + }, + [ + { + "#": 1144 + }, + { + "#": 1145 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,10,11", + "startCol": 10, + "endCol": 10, + "startRow": 10, + "endRow": 11 + }, + { + "id": 48, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1148 + }, + "angle": 0, + "vertices": { + "#": 1149 + }, + "position": { + "#": 1154 + }, + "force": { + "#": 1155 + }, + "torque": 0, + "positionImpulse": { + "#": 1156 + }, + "constraintImpulse": { + "#": 1157 + }, + "totalContacts": 0, + "speed": 0.66837, + "angularSpeed": 0, + "velocity": { + "#": 1158 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1159 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1160 + }, + "bounds": { + "#": 1162 + }, + "positionPrev": { + "#": 1165 + }, + "anglePrev": 0, + "axes": { + "#": 1166 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1147 + }, + "sleepCounter": 0, + "region": { + "#": 1169 + } + }, + [ + { + "#": 1147 + } + ], + [ + { + "#": 1150 + }, + { + "#": 1151 + }, + { + "#": 1152 + }, + { + "#": 1153 + } + ], + { + "x": 520, + "y": 503.06816, + "index": 0, + "body": { + "#": 1147 + }, + "isInternal": false + }, + { + "x": 560, + "y": 503.06816, + "index": 1, + "body": { + "#": 1147 + }, + "isInternal": false + }, + { + "x": 560, + "y": 543.06816, + "index": 2, + "body": { + "#": 1147 + }, + "isInternal": false + }, + { + "x": 520, + "y": 543.06816, + "index": 3, + "body": { + "#": 1147 + }, + "isInternal": false + }, + { + "x": 540, + "y": 523.06816 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.2931 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1161 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1163 + }, + "max": { + "#": 1164 + } + }, + { + "x": 520, + "y": 503.06816 + }, + { + "x": 560, + "y": 543.73653 + }, + { + "x": 540, + "y": 522.65173 + }, + [ + { + "#": 1167 + }, + { + "#": 1168 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,10,11", + "startCol": 10, + "endCol": 11, + "startRow": 10, + "endRow": 11 + }, + { + "id": 49, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1171 + }, + "angle": 0, + "vertices": { + "#": 1172 + }, + "position": { + "#": 1177 + }, + "force": { + "#": 1178 + }, + "torque": 0, + "positionImpulse": { + "#": 1179 + }, + "constraintImpulse": { + "#": 1180 + }, + "totalContacts": 0, + "speed": 0.66837, + "angularSpeed": 0, + "velocity": { + "#": 1181 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1182 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1183 + }, + "bounds": { + "#": 1185 + }, + "positionPrev": { + "#": 1188 + }, + "anglePrev": 0, + "axes": { + "#": 1189 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1170 + }, + "sleepCounter": 0, + "region": { + "#": 1192 + } + }, + [ + { + "#": 1170 + } + ], + [ + { + "#": 1173 + }, + { + "#": 1174 + }, + { + "#": 1175 + }, + { + "#": 1176 + } + ], + { + "x": 560, + "y": 503.06816, + "index": 0, + "body": { + "#": 1170 + }, + "isInternal": false + }, + { + "x": 600, + "y": 503.06816, + "index": 1, + "body": { + "#": 1170 + }, + "isInternal": false + }, + { + "x": 600, + "y": 543.06816, + "index": 2, + "body": { + "#": 1170 + }, + "isInternal": false + }, + { + "x": 560, + "y": 543.06816, + "index": 3, + "body": { + "#": 1170 + }, + "isInternal": false + }, + { + "x": 580, + "y": 523.06816 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.2931 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1184 + }, + "lineWidth": 1.5, + "fillStyle": "#FF6B6B", + "strokeStyle": "#cc3838" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1186 + }, + "max": { + "#": 1187 + } + }, + { + "x": 560, + "y": 503.06816 + }, + { + "x": 600, + "y": 543.73653 + }, + { + "x": 580, + "y": 522.65173 + }, + [ + { + "#": 1190 + }, + { + "#": 1191 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,10,11", + "startCol": 11, + "endCol": 12, + "startRow": 10, + "endRow": 11 + }, + { + "id": 50, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1194 + }, + "angle": 0, + "vertices": { + "#": 1195 + }, + "position": { + "#": 1200 + }, + "force": { + "#": 1201 + }, + "torque": 0, + "positionImpulse": { + "#": 1202 + }, + "constraintImpulse": { + "#": 1203 + }, + "totalContacts": 0, + "speed": 0.44785, + "angularSpeed": 0, + "velocity": { + "#": 1204 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1205 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1206 + }, + "bounds": { + "#": 1208 + }, + "positionPrev": { + "#": 1211 + }, + "anglePrev": 0, + "axes": { + "#": 1212 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1193 + }, + "sleepCounter": 0, + "region": { + "#": 1215 + } + }, + [ + { + "#": 1193 + } + ], + [ + { + "#": 1196 + }, + { + "#": 1197 + }, + { + "#": 1198 + }, + { + "#": 1199 + } + ], + { + "x": 400, + "y": 540.89007, + "index": 0, + "body": { + "#": 1193 + }, + "isInternal": false + }, + { + "x": 440, + "y": 540.89007, + "index": 1, + "body": { + "#": 1193 + }, + "isInternal": false + }, + { + "x": 440, + "y": 580.89007, + "index": 2, + "body": { + "#": 1193 + }, + "isInternal": false + }, + { + "x": 400, + "y": 580.89007, + "index": 3, + "body": { + "#": 1193 + }, + "isInternal": false + }, + { + "x": 420, + "y": 560.89007 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05379 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1207 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1209 + }, + "max": { + "#": 1210 + } + }, + { + "x": 400, + "y": 540.89007 + }, + { + "x": 440, + "y": 581.33792 + }, + { + "x": 420, + "y": 560.69953 + }, + [ + { + "#": 1213 + }, + { + "#": 1214 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "8,9,11,12", + "startCol": 8, + "endCol": 9, + "startRow": 11, + "endRow": 12 + }, + { + "id": 51, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1217 + }, + "angle": 0, + "vertices": { + "#": 1218 + }, + "position": { + "#": 1223 + }, + "force": { + "#": 1224 + }, + "torque": 0, + "positionImpulse": { + "#": 1225 + }, + "constraintImpulse": { + "#": 1226 + }, + "totalContacts": 0, + "speed": 0.44785, + "angularSpeed": 0, + "velocity": { + "#": 1227 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1228 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1229 + }, + "bounds": { + "#": 1231 + }, + "positionPrev": { + "#": 1234 + }, + "anglePrev": 0, + "axes": { + "#": 1235 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1216 + }, + "sleepCounter": 0, + "region": { + "#": 1238 + } + }, + [ + { + "#": 1216 + } + ], + [ + { + "#": 1219 + }, + { + "#": 1220 + }, + { + "#": 1221 + }, + { + "#": 1222 + } + ], + { + "x": 440, + "y": 540.89007, + "index": 0, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 480, + "y": 540.89007, + "index": 1, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 480, + "y": 580.89007, + "index": 2, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 440, + "y": 580.89007, + "index": 3, + "body": { + "#": 1216 + }, + "isInternal": false + }, + { + "x": 460, + "y": 560.89007 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05379 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1230 + }, + "lineWidth": 1.5, + "fillStyle": "#C44D58", + "strokeStyle": "#911a25" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1232 + }, + "max": { + "#": 1233 + } + }, + { + "x": 440, + "y": 540.89007 + }, + { + "x": 480, + "y": 581.33792 + }, + { + "x": 460, + "y": 560.69953 + }, + [ + { + "#": 1236 + }, + { + "#": 1237 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "9,10,11,12", + "startCol": 9, + "endCol": 10, + "startRow": 11, + "endRow": 12 + }, + { + "id": 52, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1240 + }, + "angle": 0, + "vertices": { + "#": 1241 + }, + "position": { + "#": 1246 + }, + "force": { + "#": 1247 + }, + "torque": 0, + "positionImpulse": { + "#": 1248 + }, + "constraintImpulse": { + "#": 1249 + }, + "totalContacts": 0, + "speed": 0.44785, + "angularSpeed": 0, + "velocity": { + "#": 1250 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1251 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1252 + }, + "bounds": { + "#": 1254 + }, + "positionPrev": { + "#": 1257 + }, + "anglePrev": 0, + "axes": { + "#": 1258 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1239 + }, + "sleepCounter": 0, + "region": { + "#": 1261 + } + }, + [ + { + "#": 1239 + } + ], + [ + { + "#": 1242 + }, + { + "#": 1243 + }, + { + "#": 1244 + }, + { + "#": 1245 + } + ], + { + "x": 480, + "y": 540.89007, + "index": 0, + "body": { + "#": 1239 + }, + "isInternal": false + }, + { + "x": 520, + "y": 540.89007, + "index": 1, + "body": { + "#": 1239 + }, + "isInternal": false + }, + { + "x": 520, + "y": 580.89007, + "index": 2, + "body": { + "#": 1239 + }, + "isInternal": false + }, + { + "x": 480, + "y": 580.89007, + "index": 3, + "body": { + "#": 1239 + }, + "isInternal": false + }, + { + "x": 500, + "y": 560.89007 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05379 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1253 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1255 + }, + "max": { + "#": 1256 + } + }, + { + "x": 480, + "y": 540.89007 + }, + { + "x": 520, + "y": 581.33792 + }, + { + "x": 500, + "y": 560.69953 + }, + [ + { + "#": 1259 + }, + { + "#": 1260 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,10,11,12", + "startCol": 10, + "endCol": 10, + "startRow": 11, + "endRow": 12 + }, + { + "id": 53, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1263 + }, + "angle": 0, + "vertices": { + "#": 1264 + }, + "position": { + "#": 1269 + }, + "force": { + "#": 1270 + }, + "torque": 0, + "positionImpulse": { + "#": 1271 + }, + "constraintImpulse": { + "#": 1272 + }, + "totalContacts": 0, + "speed": 0.44785, + "angularSpeed": 0, + "velocity": { + "#": 1273 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1274 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1275 + }, + "bounds": { + "#": 1277 + }, + "positionPrev": { + "#": 1280 + }, + "anglePrev": 0, + "axes": { + "#": 1281 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1262 + }, + "sleepCounter": 0, + "region": { + "#": 1284 + } + }, + [ + { + "#": 1262 + } + ], + [ + { + "#": 1265 + }, + { + "#": 1266 + }, + { + "#": 1267 + }, + { + "#": 1268 + } + ], + { + "x": 520, + "y": 540.89007, + "index": 0, + "body": { + "#": 1262 + }, + "isInternal": false + }, + { + "x": 560, + "y": 540.89007, + "index": 1, + "body": { + "#": 1262 + }, + "isInternal": false + }, + { + "x": 560, + "y": 580.89007, + "index": 2, + "body": { + "#": 1262 + }, + "isInternal": false + }, + { + "x": 520, + "y": 580.89007, + "index": 3, + "body": { + "#": 1262 + }, + "isInternal": false + }, + { + "x": 540, + "y": 560.89007 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05379 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1276 + }, + "lineWidth": 1.5, + "fillStyle": "#556270", + "strokeStyle": "#222f3d" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1278 + }, + "max": { + "#": 1279 + } + }, + { + "x": 520, + "y": 540.89007 + }, + { + "x": 560, + "y": 581.33792 + }, + { + "x": 540, + "y": 560.69953 + }, + [ + { + "#": 1282 + }, + { + "#": 1283 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "10,11,11,12", + "startCol": 10, + "endCol": 11, + "startRow": 11, + "endRow": 12 + }, + { + "id": 54, + "type": "body", + "label": "Rectangle Body", + "parts": { + "#": 1286 + }, + "angle": 0, + "vertices": { + "#": 1287 + }, + "position": { + "#": 1292 + }, + "force": { + "#": 1293 + }, + "torque": 0, + "positionImpulse": { + "#": 1294 + }, + "constraintImpulse": { + "#": 1295 + }, + "totalContacts": 0, + "speed": 0.44785, + "angularSpeed": 0, + "velocity": { + "#": 1296 + }, + "angularVelocity": 0, + "isStatic": false, + "isSleeping": false, + "motion": 0, + "sleepThreshold": 60, + "density": 0.001, + "restitution": 0, + "friction": 0.1, + "frictionStatic": 0.5, + "frictionAir": 0.01, + "collisionFilter": { + "#": 1297 + }, + "slop": 0.05, + "timeScale": 1, + "render": { + "#": 1298 + }, + "bounds": { + "#": 1300 + }, + "positionPrev": { + "#": 1303 + }, + "anglePrev": 0, + "axes": { + "#": 1304 + }, + "area": 1600, + "mass": 1.6, + "inverseMass": 0.625, + "inertia": 1706.66667, + "inverseInertia": 0.00059, + "parent": { + "#": 1285 + }, + "sleepCounter": 0, + "region": { + "#": 1307 + } + }, + [ + { + "#": 1285 + } + ], + [ + { + "#": 1288 + }, + { + "#": 1289 + }, + { + "#": 1290 + }, + { + "#": 1291 + } + ], + { + "x": 560, + "y": 540.89007, + "index": 0, + "body": { + "#": 1285 + }, + "isInternal": false + }, + { + "x": 600, + "y": 540.89007, + "index": 1, + "body": { + "#": 1285 + }, + "isInternal": false + }, + { + "x": 600, + "y": 580.89007, + "index": 2, + "body": { + "#": 1285 + }, + "isInternal": false + }, + { + "x": 560, + "y": 580.89007, + "index": 3, + "body": { + "#": 1285 + }, + "isInternal": false + }, + { + "x": 580, + "y": 560.89007 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0 + }, + { + "x": 0, + "y": 0, + "angle": 0 + }, + { + "x": 0, + "y": 0.05379 + }, + { + "category": 1, + "mask": 4294967295, + "group": 0 + }, + { + "visible": true, + "sprite": { + "#": 1299 + }, + "lineWidth": 1.5, + "fillStyle": "#C7F464", + "strokeStyle": "#94c131" + }, + { + "xScale": 1, + "yScale": 1 + }, + { + "min": { + "#": 1301 + }, + "max": { + "#": 1302 + } + }, + { + "x": 560, + "y": 540.89007 + }, + { + "x": 600, + "y": 581.33792 + }, + { + "x": 580, + "y": 560.69953 + }, + [ + { + "#": 1305 + }, + { + "#": 1306 + } + ], + { + "x": 0, + "y": 1 + }, + { + "x": -1, + "y": 0 + }, + { + "id": "11,12,11,12", + "startCol": 11, + "endCol": 12, + "startRow": 11, + "endRow": 12 + }, + [], + [], + { + "x": 0, + "y": 1 + }, + { + "min": { + "#": 1312 + }, + "max": { + "#": 1313 + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "-Infinity" + ] + } + }, + { + "x": { + "#.": "Number", + "#v": [ + "Infinity" + ] + }, + "y": { + "#.": "Number", + "#v": [ + "Infinity" + ] + } + } +] \ No newline at end of file From b0f72ab1a3ae0ac0ce231ab7776418ed6daa314b Mon Sep 17 00:00:00 2001 From: liabru Date: Mon, 17 Aug 2015 01:01:08 +0100 Subject: [PATCH 7/7] fix jshint --- .jshintrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.jshintrc b/.jshintrc index 749f70f3..20192677 100644 --- a/.jshintrc +++ b/.jshintrc @@ -30,6 +30,7 @@ // variables "undef": true, "-W079": true, // Silence redefinition errors (they are false positives). + "-W020": true, // Silence readonly error (needed to simplify support for node). "predef": [ "Matter", "window", "document", "Element", "MatterTools", "phantom", "process", "HTMLElement", "require", "PIXI",